- Sep 20, 2008
-
-
Ted Kremenek authored
GRExprEngine: Use PostStore in EvalStore. Use a second version of EvalStore in EvalBinaryOperator to associate the store with the expression on the LHS. llvm-svn: 56383
-
Daniel Dunbar authored
llvm-svn: 56382
-
Daniel Dunbar authored
- Web based interface to static analyzer. llvm-svn: 56375
-
Daniel Dunbar authored
llvm-svn: 56373
-
- Sep 19, 2008
-
-
Ted Kremenek authored
llvm-svn: 56369
-
Ted Kremenek authored
Bug fix: for the base transfer function logic for casts, handle const casts as just propagating the value. llvm-svn: 56368
-
Ted Kremenek authored
llvm-svn: 56367
-
Ted Kremenek authored
For checking if a symbol >= value, we need to check if symbol == value || symbol > value. When checking symbol > value and we know that symbol != value, the path is infeasible only if value == maximum integer. For checking if a symbol <= value, we need to check if symbol == value || symbol < value. When checking symbol < value and we know that symbol != value, the path is infeasible only if value == minimum integer. Updated test case exercising this logic: we only prune paths if the values are unsigned. llvm-svn: 56354
-
rdar://6222856Chris Lattner authored
arbitrary expr, not just a assign expr. The grammar comment was right, the code was just wrong. llvm-svn: 56353
-
Ted Kremenek authored
'symbol operator-reverse int'. This patch is a combination of code from Zhongxing Xu and myself (Zhongxing noticed this bug for the cases of relational operators). llvm-svn: 56351
-
Zhongxing Xu authored
llvm-svn: 56334
-
Ted Kremenek authored
llvm-svn: 56333
-
Ted Kremenek authored
llvm-svn: 56332
-
Ted Kremenek authored
llvm-svn: 56327
-
Ted Kremenek authored
llvm-svn: 56319
-
Ted Kremenek authored
Implement second part of PR 2600: NSError** parameter may be null, and should be checked before being dereferenced. llvm-svn: 56318
-
Ted Kremenek authored
llvm-svn: 56317
-
- Sep 18, 2008
-
-
Ted Kremenek authored
Analysis option -warn-objc-nserror-methods is no longer available. (check is done automatically with -checker-cfref) llvm-svn: 56313
-
Ted Kremenek authored
Change implementation of NSError** coding-style check to be invoked at the end of the retain/release analysis. llvm-svn: 56312
-
Steve Naroff authored
Also added a couple simple tests from the "gcc.apple" test suite. llvm-svn: 56309
-
Steve Naroff authored
Also tweaked the create function to take an explicit output file. llvm-svn: 56305
-
Ted Kremenek authored
llvm-svn: 56298
-
Ted Kremenek authored
"Method accepting NSError** argument should have non-void return value to indicate that an error occurred." Test case written, but the header needs to be delta-debugged reduced. Will commit shortly. llvm-svn: 56297
-
Ted Kremenek authored
llvm-svn: 56295
-
Ted Kremenek authored
llvm-svn: 56294
-
- Sep 17, 2008
-
-
Daniel Dunbar authored
- Enables use of ABIArgInfo::Expand when needed. This greatly improves our x86 ABI compatibility. - As the infrastructure for target specific ABI handling isn't built yet, this change means ABI compatibility on other platforms is once again broken in a different way than before. - Upcoming: Figure out how to refactor ABI handling into targets. More documentation. llvm-svn: 56293
-
Daniel Dunbar authored
llvm-svn: 56291
-
Daniel Dunbar authored
Ensure that ABIArgInfo::Default implementation for aggregrate types is sensible (StructRet on return and ByVal on arguments). No functionality change. llvm-svn: 56289
-
Steve Naroff authored
Block literals are now represented by the concrete BlockExpr class. This is cleanup (removes a FIXME). No functionality change. llvm-svn: 56288
-
Daniel Dunbar authored
llvm-svn: 56285
-
-
Ted Kremenek authored
llvm-svn: 56274
-
Zhongxing Xu authored
llvm-svn: 56271
-
Daniel Dunbar authored
- No functionality change. llvm-svn: 56269
-
Steve Naroff authored
llvm-svn: 56266
-
Daniel Dunbar authored
llvm-svn: 56262
-
Ted Kremenek authored
llvm-svn: 56261
-
Ted Kremenek authored
if we know that 'len != 0' and know that 'i == 0' then we know that 'i < len' must evaluate to true and cannot evaluate to false llvm-svn: 56260
-
Ted Kremenek authored
llvm-svn: 56259
-
Steve Naroff authored
^(expression) or ^(int arg1, float arg2)(expression) ...is no longer supported. All block literals now require a compound statement. llvm-svn: 56257
-