| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 1 | // GRSimpleVals.cpp - Transfer functions for tracking simple values -*- C++ -*-- | 
|  | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 | // | 
| Gabor Greif | 843e934 | 2008-03-06 10:40:09 +0000 | [diff] [blame] | 10 | //  This file defines GRSimpleVals, a sub-class of GRTransferFuncs that | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 11 | //  provides transfer functions for performing simple value tracking with | 
|  | 12 | //  limited support for symbolics. | 
|  | 13 | // | 
|  | 14 | //===----------------------------------------------------------------------===// | 
|  | 15 |  | 
|  | 16 | #include "GRSimpleVals.h" | 
| Ted Kremenek | 5275561 | 2008-03-27 17:17:22 +0000 | [diff] [blame] | 17 | #include "BasicObjCFoundationChecks.h" | 
| Ted Kremenek | 87abc03 | 2008-04-02 22:03:53 +0000 | [diff] [blame] | 18 | #include "clang/Basic/SourceManager.h" | 
| Ted Kremenek | 4dc41cc | 2008-03-31 18:26:32 +0000 | [diff] [blame] | 19 | #include "clang/Analysis/PathDiagnostic.h" | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 20 | #include "clang/Analysis/PathSensitive/ValueState.h" | 
|  | 21 | #include "clang/Analysis/PathSensitive/BugReporter.h" | 
|  | 22 | #include "llvm/Support/Compiler.h" | 
| Ted Kremenek | 5c06121 | 2008-02-27 17:56:16 +0000 | [diff] [blame] | 23 | #include <sstream> | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 24 |  | 
|  | 25 | using namespace clang; | 
|  | 26 |  | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 27 | //===----------------------------------------------------------------------===// | 
|  | 28 | // Bug Descriptions. | 
|  | 29 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | d87a321 | 2008-02-26 21:31:18 +0000 | [diff] [blame] | 30 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 31 | namespace { | 
|  | 32 |  | 
|  | 33 | class VISIBILITY_HIDDEN NullDeref : public BugDescription { | 
|  | 34 | public: | 
|  | 35 | virtual const char* getName() const { | 
|  | 36 | return "null dereference"; | 
|  | 37 | } | 
|  | 38 | virtual const char* getDescription() const { | 
|  | 39 | return "Dereference of null pointer."; | 
|  | 40 | } | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 41 | }; | 
|  | 42 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 43 | class VISIBILITY_HIDDEN UndefDeref : public BugDescription { | 
|  | 44 | public: | 
|  | 45 | virtual const char* getName() const { | 
|  | 46 | return "bad dereference"; | 
|  | 47 | } | 
|  | 48 | virtual const char* getDescription() const { | 
|  | 49 | return "Dereference of undefined value."; | 
|  | 50 | } | 
|  | 51 | }; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 52 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 53 | class VISIBILITY_HIDDEN UndefBranch : public BugDescription { | 
|  | 54 | public: | 
|  | 55 | virtual const char* getName() const { | 
|  | 56 | return "uninitialized value"; | 
|  | 57 | } | 
|  | 58 | virtual const char* getDescription() const { | 
|  | 59 | return "Branch condition evaluates to an uninitialized value."; | 
|  | 60 | } | 
|  | 61 | }; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 62 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 63 | class VISIBILITY_HIDDEN DivZero : public BugDescription { | 
|  | 64 | public: | 
|  | 65 | virtual const char* getName() const { | 
|  | 66 | return "divide-by-zero"; | 
|  | 67 | } | 
|  | 68 | virtual const char* getDescription() const { | 
|  | 69 | return "Division by zero/undefined value."; | 
|  | 70 | } | 
|  | 71 | }; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 72 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 73 | class VISIBILITY_HIDDEN UndefResult : public BugDescription { | 
|  | 74 | public: | 
|  | 75 | virtual const char* getName() const { | 
|  | 76 | return "undefined result"; | 
|  | 77 | } | 
|  | 78 | virtual const char* getDescription() const { | 
|  | 79 | return "Result of operation is undefined."; | 
|  | 80 | } | 
|  | 81 | }; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 82 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 83 | class VISIBILITY_HIDDEN BadCall : public BugDescription { | 
|  | 84 | public: | 
|  | 85 | virtual const char* getName() const { | 
|  | 86 | return "invalid function call"; | 
|  | 87 | } | 
|  | 88 | virtual const char* getDescription() const { | 
|  | 89 | return "Called function is a NULL or undefined function pointer value."; | 
|  | 90 | } | 
|  | 91 | }; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 92 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 93 | class VISIBILITY_HIDDEN BadArg : public BugDescription { | 
|  | 94 | public: | 
|  | 95 | virtual const char* getName() const { | 
|  | 96 | return "bad argument"; | 
|  | 97 | } | 
|  | 98 | virtual const char* getDescription() const { | 
|  | 99 | return "Pass-by-value argument in function is undefined."; | 
|  | 100 | } | 
|  | 101 | }; | 
|  | 102 |  | 
|  | 103 | class VISIBILITY_HIDDEN BadMsgExprArg : public BugDescription { | 
|  | 104 | public: | 
|  | 105 | virtual const char* getName() const { | 
|  | 106 | return "bad argument"; | 
|  | 107 | } | 
|  | 108 | virtual const char* getDescription() const { | 
|  | 109 | return "Pass-by-value argument in message expression is undefined."; | 
|  | 110 | } | 
|  | 111 | }; | 
|  | 112 |  | 
|  | 113 | class VISIBILITY_HIDDEN BadReceiver : public BugDescription { | 
|  | 114 | public: | 
|  | 115 | virtual const char* getName() const { | 
|  | 116 | return "invalid message expression"; | 
|  | 117 | } | 
|  | 118 | virtual const char* getDescription() const { | 
|  | 119 | return "Receiver in message expression is an uninitialized value."; | 
|  | 120 | } | 
|  | 121 | }; | 
|  | 122 |  | 
|  | 123 | class VISIBILITY_HIDDEN RetStack : public BugDescription { | 
|  | 124 | public: | 
|  | 125 | virtual const char* getName() const { | 
|  | 126 | return "return of stack address"; | 
|  | 127 | } | 
|  | 128 | virtual const char* getDescription() const { | 
|  | 129 | return "Address of stack-allocated variable returned."; | 
|  | 130 | } | 
|  | 131 | }; | 
|  | 132 |  | 
|  | 133 | } // end anonymous namespace | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 134 |  | 
|  | 135 | //===----------------------------------------------------------------------===// | 
|  | 136 | // Utility functions. | 
|  | 137 | //===----------------------------------------------------------------------===// | 
|  | 138 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 139 | template <typename ITERATOR> static inline | 
|  | 140 | ExplodedNode<ValueState>* GetNode(ITERATOR I) { | 
| Ted Kremenek | 503d613 | 2008-04-02 05:15:22 +0000 | [diff] [blame] | 141 | return *I; | 
|  | 142 | } | 
|  | 143 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 144 | template <> static inline | 
|  | 145 | ExplodedNode<ValueState>* GetNode(GRExprEngine::undef_arg_iterator I) { | 
| Ted Kremenek | 503d613 | 2008-04-02 05:15:22 +0000 | [diff] [blame] | 146 | return I->first; | 
|  | 147 | } | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 148 |  | 
|  | 149 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | 503d613 | 2008-04-02 05:15:22 +0000 | [diff] [blame] | 150 | // Analysis Driver. | 
|  | 151 | //===----------------------------------------------------------------------===// | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 152 |  | 
|  | 153 | template <typename ITERATOR> | 
|  | 154 | static void EmitWarning(Diagnostic& Diag, PathDiagnosticClient* PD, | 
|  | 155 | ASTContext& Ctx, BugReporter& BR, | 
|  | 156 | const BugDescription& Desc, | 
|  | 157 | ExplodedGraph<GRExprEngine>& G, | 
|  | 158 | ITERATOR I, ITERATOR E) { | 
| Ted Kremenek | 503d613 | 2008-04-02 05:15:22 +0000 | [diff] [blame] | 159 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 160 | for (; I != E; ++I) | 
|  | 161 | BR.EmitPathWarning(Diag, PD, Ctx, Desc, G, GetNode(I)); | 
|  | 162 | } | 
|  | 163 |  | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 164 | namespace clang { | 
|  | 165 |  | 
| Ted Kremenek | 63bbe53 | 2008-03-14 17:31:00 +0000 | [diff] [blame] | 166 | unsigned RunGRSimpleVals(CFG& cfg, Decl& CD, ASTContext& Ctx, | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 167 | Diagnostic& Diag, PathDiagnosticClient* PD, | 
|  | 168 | bool Visualize, bool TrimGraph) { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 169 |  | 
| Ted Kremenek | 63bbe53 | 2008-03-14 17:31:00 +0000 | [diff] [blame] | 170 | GRCoreEngine<GRExprEngine> Eng(cfg, CD, Ctx); | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 171 | GRExprEngine* CS = &Eng.getCheckerState(); | 
| Ted Kremenek | 5275561 | 2008-03-27 17:17:22 +0000 | [diff] [blame] | 172 |  | 
|  | 173 | // Set base transfer functions. | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 174 | GRSimpleVals GRSV; | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 175 | CS->setTransferFunctions(GRSV); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 176 |  | 
| Ted Kremenek | 5275561 | 2008-03-27 17:17:22 +0000 | [diff] [blame] | 177 | // Add extra checkers. | 
|  | 178 | llvm::OwningPtr<GRSimpleAPICheck> FoundationCheck( | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 179 | CreateBasicObjCFoundationChecks(Ctx, &CS->getStateManager())); | 
| Ted Kremenek | 5275561 | 2008-03-27 17:17:22 +0000 | [diff] [blame] | 180 |  | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 181 | CS->AddObjCMessageExprCheck(FoundationCheck.get()); | 
| Ted Kremenek | 5275561 | 2008-03-27 17:17:22 +0000 | [diff] [blame] | 182 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 183 | // Execute the worklist algorithm. | 
| Ted Kremenek | 4dc41cc | 2008-03-31 18:26:32 +0000 | [diff] [blame] | 184 | Eng.ExecuteWorkList(120000); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 185 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 186 | BugReporter BR; | 
|  | 187 | ExplodedGraph<GRExprEngine>& G = Eng.getGraph(); | 
|  | 188 |  | 
|  | 189 | EmitWarning(Diag, PD, Ctx, BR, NullDeref(), G, | 
|  | 190 | CS->null_derefs_begin(), CS->null_derefs_end()); | 
| Ted Kremenek | d87a321 | 2008-02-26 21:31:18 +0000 | [diff] [blame] | 191 |  | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 192 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 193 | EmitWarning(Diag, PD, Ctx, BR, UndefDeref(), G, | 
|  | 194 | CS->undef_derefs_begin(), CS->undef_derefs_end()); | 
|  | 195 |  | 
|  | 196 | EmitWarning(Diag, PD, Ctx, BR, UndefBranch(), G, | 
|  | 197 | CS->undef_branches_begin(), CS->undef_branches_end()); | 
| Ted Kremenek | d87a321 | 2008-02-26 21:31:18 +0000 | [diff] [blame] | 198 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 199 | EmitWarning(Diag, PD, Ctx, BR, DivZero(), G, | 
|  | 200 | CS->explicit_bad_divides_begin(), CS->explicit_bad_divides_end()); | 
| Ted Kremenek | d87a321 | 2008-02-26 21:31:18 +0000 | [diff] [blame] | 201 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 202 | EmitWarning(Diag, PD, Ctx, BR, UndefResult(), G, | 
|  | 203 | CS->undef_results_begin(), CS->undef_results_end()); | 
| Ted Kremenek | d87a321 | 2008-02-26 21:31:18 +0000 | [diff] [blame] | 204 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 205 | EmitWarning(Diag, PD, Ctx, BR, BadCall(), G, | 
|  | 206 | CS->bad_calls_begin(), CS->bad_calls_end()); | 
| Ted Kremenek | 8cc13ea | 2008-02-28 20:32:03 +0000 | [diff] [blame] | 207 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 208 | EmitWarning(Diag, PD, Ctx, BR, BadArg(), G, | 
|  | 209 | CS->undef_arg_begin(), CS->undef_arg_end()); | 
| Ted Kremenek | 5e03fcb | 2008-02-29 23:14:48 +0000 | [diff] [blame] | 210 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 211 | EmitWarning(Diag, PD, Ctx, BR, BadMsgExprArg(), G, | 
|  | 212 | CS->msg_expr_undef_arg_begin(), CS->msg_expr_undef_arg_end()); | 
| Ted Kremenek | 2ded35a | 2008-02-29 23:53:11 +0000 | [diff] [blame] | 213 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 214 | EmitWarning(Diag, PD, Ctx, BR, BadReceiver(), G, | 
|  | 215 | CS->undef_receivers_begin(), CS->undef_receivers_end()); | 
| Ted Kremenek | 1b9df4c | 2008-03-14 18:14:50 +0000 | [diff] [blame] | 216 |  | 
| Ted Kremenek | 61f3e05 | 2008-04-03 04:42:52 +0000 | [diff] [blame^] | 217 | EmitWarning(Diag, PD, Ctx, BR, RetStack(), G, | 
|  | 218 | CS->ret_stackaddr_begin(), CS->ret_stackaddr_end()); | 
| Ted Kremenek | dbfe41a | 2008-03-25 16:40:05 +0000 | [diff] [blame] | 219 |  | 
| Ted Kremenek | e5d5c20 | 2008-03-27 21:15:17 +0000 | [diff] [blame] | 220 | FoundationCheck.get()->ReportResults(Diag); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 221 | #ifndef NDEBUG | 
| Ted Kremenek | dd59811 | 2008-04-02 07:05:46 +0000 | [diff] [blame] | 222 | if (Visualize) CS->ViewGraph(TrimGraph); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 223 | #endif | 
|  | 224 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 225 | return Eng.getGraph().size(); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 226 | } | 
|  | 227 |  | 
| Ted Kremenek | e01c987 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 228 | } // end clang namespace | 
|  | 229 |  | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 230 | //===----------------------------------------------------------------------===// | 
|  | 231 | // Transfer function for Casts. | 
|  | 232 | //===----------------------------------------------------------------------===// | 
|  | 233 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 234 | RVal GRSimpleVals::EvalCast(GRExprEngine& Eng, NonLVal X, QualType T) { | 
| Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 235 |  | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 236 | if (!isa<nonlval::ConcreteInt>(X)) | 
|  | 237 | return UnknownVal(); | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 238 |  | 
|  | 239 | BasicValueFactory& BasicVals = Eng.getBasicVals(); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 240 |  | 
|  | 241 | llvm::APSInt V = cast<nonlval::ConcreteInt>(X).getValue(); | 
| Ted Kremenek | 1b9df4c | 2008-03-14 18:14:50 +0000 | [diff] [blame] | 242 | V.setIsUnsigned(T->isUnsignedIntegerType() || T->isPointerType() | 
|  | 243 | || T->isObjCQualifiedIdType()); | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 244 | V.extOrTrunc(Eng.getContext().getTypeSize(T)); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 245 |  | 
| Ted Kremenek | 9ef1ec9 | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 246 | if (T->isPointerType()) | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 247 | return lval::ConcreteInt(BasicVals.getValue(V)); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 248 | else | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 249 | return nonlval::ConcreteInt(BasicVals.getValue(V)); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 250 | } | 
|  | 251 |  | 
|  | 252 | // Casts. | 
|  | 253 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 254 | RVal GRSimpleVals::EvalCast(GRExprEngine& Eng, LVal X, QualType T) { | 
| Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 255 |  | 
| Chris Lattner | 423a3c9 | 2008-04-02 17:45:06 +0000 | [diff] [blame] | 256 | if (T->isPointerLikeType() || T->isObjCQualifiedIdType()) | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 257 | return X; | 
|  | 258 |  | 
| Ted Kremenek | 9ef1ec9 | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 259 | assert (T->isIntegerType()); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 260 |  | 
|  | 261 | if (!isa<lval::ConcreteInt>(X)) | 
|  | 262 | return UnknownVal(); | 
|  | 263 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 264 | BasicValueFactory& BasicVals = Eng.getBasicVals(); | 
|  | 265 |  | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 266 | llvm::APSInt V = cast<lval::ConcreteInt>(X).getValue(); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 267 | V.setIsUnsigned(T->isUnsignedIntegerType() || T->isPointerType()); | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 268 | V.extOrTrunc(Eng.getContext().getTypeSize(T)); | 
| Ted Kremenek | d59cccc | 2008-02-14 18:28:23 +0000 | [diff] [blame] | 269 |  | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 270 | return nonlval::ConcreteInt(BasicVals.getValue(V)); | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 271 | } | 
|  | 272 |  | 
|  | 273 | // Unary operators. | 
|  | 274 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 275 | RVal GRSimpleVals::EvalMinus(GRExprEngine& Eng, UnaryOperator* U, NonLVal X){ | 
| Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 276 |  | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 277 | switch (X.getSubKind()) { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 278 |  | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 279 | case nonlval::ConcreteIntKind: | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 280 | return cast<nonlval::ConcreteInt>(X).EvalMinus(Eng.getBasicVals(), U); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 281 |  | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 282 | default: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 283 | return UnknownVal(); | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 284 | } | 
|  | 285 | } | 
|  | 286 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 287 | RVal GRSimpleVals::EvalComplement(GRExprEngine& Eng, NonLVal X) { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 288 |  | 
| Ted Kremenek | 90e4203 | 2008-02-20 04:12:31 +0000 | [diff] [blame] | 289 | switch (X.getSubKind()) { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 290 |  | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 291 | case nonlval::ConcreteIntKind: | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 292 | return cast<nonlval::ConcreteInt>(X).EvalComplement(Eng.getBasicVals()); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 293 |  | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 294 | default: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 295 | return UnknownVal(); | 
| Ted Kremenek | c3f261d | 2008-02-14 18:40:24 +0000 | [diff] [blame] | 296 | } | 
|  | 297 | } | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 298 |  | 
|  | 299 | // Binary operators. | 
|  | 300 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 301 | RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, | 
|  | 302 | NonLVal L, NonLVal R)  { | 
|  | 303 |  | 
|  | 304 | BasicValueFactory& BasicVals = Eng.getBasicVals(); | 
|  | 305 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 306 | while (1) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 307 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 308 | switch (L.getSubKind()) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 309 | default: | 
| Ted Kremenek | 9258a64 | 2008-02-21 19:10:12 +0000 | [diff] [blame] | 310 | return UnknownVal(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 311 |  | 
|  | 312 | case nonlval::ConcreteIntKind: | 
|  | 313 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 314 | if (isa<nonlval::ConcreteInt>(R)) { | 
|  | 315 | const nonlval::ConcreteInt& L_CI = cast<nonlval::ConcreteInt>(L); | 
|  | 316 | const nonlval::ConcreteInt& R_CI = cast<nonlval::ConcreteInt>(R); | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 317 | return L_CI.EvalBinOp(BasicVals, Op, R_CI); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 318 | } | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 319 | else { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 320 | NonLVal tmp = R; | 
|  | 321 | R = L; | 
|  | 322 | L = tmp; | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 323 | continue; | 
|  | 324 | } | 
|  | 325 |  | 
|  | 326 | case nonlval::SymbolValKind: { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 327 |  | 
|  | 328 | if (isa<nonlval::ConcreteInt>(R)) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 329 | const SymIntConstraint& C = | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 330 | BasicVals.getConstraint(cast<nonlval::SymbolVal>(L).getSymbol(), Op, | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 331 | cast<nonlval::ConcreteInt>(R).getValue()); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 332 |  | 
|  | 333 | return nonlval::SymIntConstraintVal(C); | 
|  | 334 | } | 
|  | 335 | else | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 336 | return UnknownVal(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 337 | } | 
|  | 338 | } | 
|  | 339 | } | 
|  | 340 | } | 
|  | 341 |  | 
| Ted Kremenek | b640b3b | 2008-02-15 00:52:26 +0000 | [diff] [blame] | 342 |  | 
| Ted Kremenek | c6fbdcd | 2008-02-15 23:15:23 +0000 | [diff] [blame] | 343 | // Binary Operators (except assignments and comma). | 
|  | 344 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 345 | RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 346 | LVal L, LVal R) { | 
| Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 347 |  | 
| Ted Kremenek | c6fbdcd | 2008-02-15 23:15:23 +0000 | [diff] [blame] | 348 | switch (Op) { | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 349 |  | 
| Ted Kremenek | c6fbdcd | 2008-02-15 23:15:23 +0000 | [diff] [blame] | 350 | default: | 
|  | 351 | return UnknownVal(); | 
|  | 352 |  | 
|  | 353 | case BinaryOperator::EQ: | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 354 | return EvalEQ(Eng, L, R); | 
| Ted Kremenek | c6fbdcd | 2008-02-15 23:15:23 +0000 | [diff] [blame] | 355 |  | 
|  | 356 | case BinaryOperator::NE: | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 357 | return EvalNE(Eng, L, R); | 
| Ted Kremenek | c6fbdcd | 2008-02-15 23:15:23 +0000 | [diff] [blame] | 358 | } | 
|  | 359 | } | 
|  | 360 |  | 
| Ted Kremenek | b640b3b | 2008-02-15 00:52:26 +0000 | [diff] [blame] | 361 | // Pointer arithmetic. | 
|  | 362 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 363 | RVal GRSimpleVals::EvalBinOp(GRExprEngine& Eng, BinaryOperator::Opcode Op, | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 364 | LVal L, NonLVal R) { | 
|  | 365 | return UnknownVal(); | 
| Ted Kremenek | b640b3b | 2008-02-15 00:52:26 +0000 | [diff] [blame] | 366 | } | 
|  | 367 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 368 | // Equality operators for LVals. | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 369 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 370 | RVal GRSimpleVals::EvalEQ(GRExprEngine& Eng, LVal L, LVal R) { | 
|  | 371 |  | 
|  | 372 | BasicValueFactory& BasicVals = Eng.getBasicVals(); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 373 |  | 
|  | 374 | switch (L.getSubKind()) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 375 |  | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 376 | default: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 377 | assert(false && "EQ not implemented for this LVal."); | 
|  | 378 | return UnknownVal(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 379 |  | 
|  | 380 | case lval::ConcreteIntKind: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 381 |  | 
|  | 382 | if (isa<lval::ConcreteInt>(R)) { | 
|  | 383 | bool b = cast<lval::ConcreteInt>(L).getValue() == | 
|  | 384 | cast<lval::ConcreteInt>(R).getValue(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 385 |  | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 386 | return NonLVal::MakeIntTruthVal(BasicVals, b); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 387 | } | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 388 | else if (isa<lval::SymbolVal>(R)) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 389 |  | 
|  | 390 | const SymIntConstraint& C = | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 391 | BasicVals.getConstraint(cast<lval::SymbolVal>(R).getSymbol(), | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 392 | BinaryOperator::EQ, | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 393 | cast<lval::ConcreteInt>(L).getValue()); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 394 |  | 
|  | 395 | return nonlval::SymIntConstraintVal(C); | 
|  | 396 | } | 
|  | 397 |  | 
|  | 398 | break; | 
|  | 399 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 400 | case lval::SymbolValKind: { | 
|  | 401 |  | 
|  | 402 | if (isa<lval::ConcreteInt>(R)) { | 
|  | 403 | const SymIntConstraint& C = | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 404 | BasicVals.getConstraint(cast<lval::SymbolVal>(L).getSymbol(), | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 405 | BinaryOperator::EQ, | 
|  | 406 | cast<lval::ConcreteInt>(R).getValue()); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 407 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 408 | return nonlval::SymIntConstraintVal(C); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 409 | } | 
|  | 410 |  | 
| Ted Kremenek | f700df2 | 2008-02-22 18:41:59 +0000 | [diff] [blame] | 411 | // FIXME: Implement == for lval Symbols.  This is mainly useful | 
|  | 412 | //  in iterator loops when traversing a buffer, e.g. while(z != zTerm). | 
|  | 413 | //  Since this is not useful for many checkers we'll punt on this for | 
|  | 414 | //  now. | 
|  | 415 |  | 
|  | 416 | return UnknownVal(); | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 417 | } | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 418 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 419 | case lval::DeclValKind: | 
| Ted Kremenek | dc3936b | 2008-02-22 00:54:56 +0000 | [diff] [blame] | 420 | case lval::FuncValKind: | 
|  | 421 | case lval::GotoLabelKind: | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 422 | return NonLVal::MakeIntTruthVal(BasicVals, L == R); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 423 | } | 
|  | 424 |  | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 425 | return NonLVal::MakeIntTruthVal(BasicVals, false); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 426 | } | 
|  | 427 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 428 | RVal GRSimpleVals::EvalNE(GRExprEngine& Eng, LVal L, LVal R) { | 
| Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 429 |  | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 430 | BasicValueFactory& BasicVals = Eng.getBasicVals(); | 
|  | 431 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 432 | switch (L.getSubKind()) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 433 |  | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 434 | default: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 435 | assert(false && "NE not implemented for this LVal."); | 
|  | 436 | return UnknownVal(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 437 |  | 
|  | 438 | case lval::ConcreteIntKind: | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 439 |  | 
|  | 440 | if (isa<lval::ConcreteInt>(R)) { | 
|  | 441 | bool b = cast<lval::ConcreteInt>(L).getValue() != | 
|  | 442 | cast<lval::ConcreteInt>(R).getValue(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 443 |  | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 444 | return NonLVal::MakeIntTruthVal(BasicVals, b); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 445 | } | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 446 | else if (isa<lval::SymbolVal>(R)) { | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 447 | const SymIntConstraint& C = | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 448 | BasicVals.getConstraint(cast<lval::SymbolVal>(R).getSymbol(), | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 449 | BinaryOperator::NE, | 
|  | 450 | cast<lval::ConcreteInt>(L).getValue()); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 451 |  | 
|  | 452 | return nonlval::SymIntConstraintVal(C); | 
|  | 453 | } | 
|  | 454 |  | 
|  | 455 | break; | 
|  | 456 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 457 | case lval::SymbolValKind: { | 
|  | 458 | if (isa<lval::ConcreteInt>(R)) { | 
|  | 459 | const SymIntConstraint& C = | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 460 | BasicVals.getConstraint(cast<lval::SymbolVal>(L).getSymbol(), | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 461 | BinaryOperator::NE, | 
|  | 462 | cast<lval::ConcreteInt>(R).getValue()); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 463 |  | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 464 | return nonlval::SymIntConstraintVal(C); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 465 | } | 
|  | 466 |  | 
| Ted Kremenek | f700df2 | 2008-02-22 18:41:59 +0000 | [diff] [blame] | 467 | // FIXME: Implement != for lval Symbols.  This is mainly useful | 
|  | 468 | //  in iterator loops when traversing a buffer, e.g. while(z != zTerm). | 
|  | 469 | //  Since this is not useful for many checkers we'll punt on this for | 
|  | 470 | //  now. | 
|  | 471 |  | 
|  | 472 | return UnknownVal(); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 473 |  | 
|  | 474 | break; | 
| Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 475 | } | 
|  | 476 |  | 
|  | 477 | case lval::DeclValKind: | 
| Ted Kremenek | dc3936b | 2008-02-22 00:54:56 +0000 | [diff] [blame] | 478 | case lval::FuncValKind: | 
|  | 479 | case lval::GotoLabelKind: | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 480 | return NonLVal::MakeIntTruthVal(BasicVals, L != R); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 481 | } | 
|  | 482 |  | 
| Ted Kremenek | 240f1f0 | 2008-03-07 20:13:31 +0000 | [diff] [blame] | 483 | return NonLVal::MakeIntTruthVal(BasicVals, true); | 
| Ted Kremenek | 6cb0b54 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 484 | } | 
| Ted Kremenek | 0674769 | 2008-02-26 23:04:29 +0000 | [diff] [blame] | 485 |  | 
|  | 486 | //===----------------------------------------------------------------------===// | 
|  | 487 | // Transfer function for Function Calls. | 
|  | 488 | //===----------------------------------------------------------------------===// | 
|  | 489 |  | 
| Ted Kremenek | 330dddd | 2008-03-05 00:33:14 +0000 | [diff] [blame] | 490 | void GRSimpleVals::EvalCall(ExplodedNodeSet<ValueState>& Dst, | 
| Ted Kremenek | 00a3a5f | 2008-03-12 01:21:45 +0000 | [diff] [blame] | 491 | GRExprEngine& Eng, | 
| Ted Kremenek | 330dddd | 2008-03-05 00:33:14 +0000 | [diff] [blame] | 492 | GRStmtNodeBuilder<ValueState>& Builder, | 
| Ted Kremenek | 330dddd | 2008-03-05 00:33:14 +0000 | [diff] [blame] | 493 | CallExpr* CE, LVal L, | 
|  | 494 | ExplodedNode<ValueState>* Pred) { | 
|  | 495 |  | 
| Ted Kremenek | f923a91 | 2008-03-12 21:04:07 +0000 | [diff] [blame] | 496 | ValueStateManager& StateMgr = Eng.getStateManager(); | 
|  | 497 | ValueState* St = Builder.GetState(Pred); | 
| Ted Kremenek | 0674769 | 2008-02-26 23:04:29 +0000 | [diff] [blame] | 498 |  | 
|  | 499 | // Invalidate all arguments passed in by reference (LVals). | 
|  | 500 |  | 
|  | 501 | for (CallExpr::arg_iterator I = CE->arg_begin(), E = CE->arg_end(); | 
|  | 502 | I != E; ++I) { | 
|  | 503 |  | 
| Ted Kremenek | f923a91 | 2008-03-12 21:04:07 +0000 | [diff] [blame] | 504 | RVal V = StateMgr.GetRVal(St, *I); | 
| Ted Kremenek | 0674769 | 2008-02-26 23:04:29 +0000 | [diff] [blame] | 505 |  | 
|  | 506 | if (isa<LVal>(V)) | 
| Ted Kremenek | f923a91 | 2008-03-12 21:04:07 +0000 | [diff] [blame] | 507 | St = StateMgr.SetRVal(St, cast<LVal>(V), UnknownVal()); | 
| Ted Kremenek | 0674769 | 2008-02-26 23:04:29 +0000 | [diff] [blame] | 508 | } | 
| Ted Kremenek | f923a91 | 2008-03-12 21:04:07 +0000 | [diff] [blame] | 509 |  | 
|  | 510 | // Make up a symbol for the return value of this function. | 
|  | 511 |  | 
|  | 512 | if (CE->getType() != Eng.getContext().VoidTy) { | 
|  | 513 | unsigned Count = Builder.getCurrentBlockCount(); | 
| Ted Kremenek | 361fa8e | 2008-03-12 21:45:47 +0000 | [diff] [blame] | 514 | SymbolID Sym = Eng.getSymbolManager().getConjuredSymbol(CE, Count); | 
| Ted Kremenek | f923a91 | 2008-03-12 21:04:07 +0000 | [diff] [blame] | 515 |  | 
|  | 516 | RVal X = CE->getType()->isPointerType() | 
|  | 517 | ? cast<RVal>(lval::SymbolVal(Sym)) | 
|  | 518 | : cast<RVal>(nonlval::SymbolVal(Sym)); | 
|  | 519 |  | 
|  | 520 | St = StateMgr.SetRVal(St, CE, X, Eng.getCFG().isBlkExpr(CE), false); | 
|  | 521 | } | 
| Ted Kremenek | 330dddd | 2008-03-05 00:33:14 +0000 | [diff] [blame] | 522 |  | 
| Ted Kremenek | 0e561a3 | 2008-03-21 21:30:14 +0000 | [diff] [blame] | 523 | Builder.MakeNode(Dst, CE, Pred, St); | 
| Ted Kremenek | 0674769 | 2008-02-26 23:04:29 +0000 | [diff] [blame] | 524 | } |