index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Checker
/
IdempotentOperationChecker.cpp
Age
Commit message (
Expand
)
Author
2010-12-22
[analyzer] Refactoring: lib/Checker -> lib/GR and libclangChecker -> libclang...
Argyrios Kyrtzidis
2010-12-22
[analyzer] Refactoring: include/clang/Checker -> include/clang/GR
Argyrios Kyrtzidis
2010-12-08
Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi...
Francois Pichet
2010-12-04
Although we currently have explicit lvalue-to-rvalue conversions, they're
John McCall
2010-11-13
Refine IdempotentOperationChecker::PathWasCompletelyAnalyzed() to also check
Ted Kremenek
2010-11-13
Teach IdempotentOperations::PathWasCompletelyAnalyzed to also consider items ...
Ted Kremenek
2010-10-29
Don't flag idempotent '+' or '-' warnings for pointer arithmetic (typically f...
Ted Kremenek
2010-09-18
Revert r114244 since it breaks a test in Analysis.
Tom Care
2010-09-18
IdempotentOperationChecker no longer reports errors that are post-dominated b...
Tom Care
2010-09-09
Rename GRState::getSVal() -> getRawSVal() and getSimplifiedSVal() -> getSVal().
Ted Kremenek
2010-09-09
Simplified reachability checking in IdempotentOperationChecker and added a he...
Tom Care
2010-09-07
Re-enabled truncation/extension checking in IdempotentOperationChecker and ad...
Tom Care
2010-09-03
"I see dead code". IdempotentOperationChecker::isTruncationExtensionAssignment
Chris Lattner
2010-09-02
Reapply 112850 and 112839 with a constructor for the BinaryOperatorData struc...
Tom Care
2010-09-02
Reverting 112850 and 112839 due to test failures on some systems
Tom Care
2010-09-02
Fixed broken build with GCC
Tom Care
2010-09-02
Improved error reporting in IdempotentOperationChecker
Tom Care
2010-08-30
Adjusted the semantics of assign checking in IdempotentOperationChecker
Tom Care
2010-08-27
Added checking of (x == x) and (x != x) to IdempotentOperationChecker and upd...
Tom Care
2010-08-27
Fix bug in IdempotentOperationChecker where an assumption would not get updat...
Tom Care
2010-08-25
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-24
Improvements to IdempotentOperationChecker and its use of PseudoConstantAnalysis
Tom Care
2010-08-23
Several small changes to PseudoConstantAnalysis and the way IdempotentOperati...
Tom Care
2010-08-18
Added psuedo-constant analysis and integrated it into the false positive redu...
Tom Care
2010-08-16
Added basic psuedoconstant checking in IdempotentOperationChecker and fixed s...
Tom Care
2010-08-13
Zap unused UnaryOperator::OffsetOf.
Eli Friedman
2010-08-12
Improved IdempotentOperationChecker false positives and false negatives.
Tom Care
2010-08-06
Removed IdempotentOperationChecker from default analysis and returned back to...
Tom Care
2010-08-03
Changed GRExprEngine to pass down a reference to itself when checkers are doi...
Tom Care
2010-08-02
'Assumption &A' gets default initialized to 'Possible' if it doesn't exist; n...
Ted Kremenek
2010-07-30
Uncomment unfinished work bailout in IdempotentOperationsChecker.
Tom Care
2010-07-27
Extracted out some useful common functions in IdempotentOperationChecker to t...
Tom Care
2010-07-27
Finesse 'idempotent operations' analyzer issues to include the opcode of the ...
Ted Kremenek
2010-07-27
Put 'Idempotent operations' static analyzer issues in the 'Dead code' category.
Ted Kremenek
2010-07-17
Fix APFloat assertion failure in IdempotentOperationChecker resulting in having
Ted Kremenek
2010-07-16
Improved false positive rate for the idempotent operations checker and moved ...
Tom Care
2010-07-07
Change explicit handling of impossible condition to call llvm_unreachable in ...
Tom Care
2010-07-07
Silence an annoying GCC warning about use of an uninitialized variable. Even
Chandler Carruth
2010-07-07
Use 'llvm_unreachable' to mark impossible code paths so that GCC doesn't
Chandler Carruth
2010-07-06
Added a path-sensitive idempotent operation checker (-analyzer-idempotent-ope...
Tom Care