]> granicus.if.org Git - clang/commit
Added a path-sensitive idempotent operation checker (-analyzer-idempotent-operation...
authorTom Care <tcare@apple.com>
Tue, 6 Jul 2010 21:43:29 +0000 (21:43 +0000)
committerTom Care <tcare@apple.com>
Tue, 6 Jul 2010 21:43:29 +0000 (21:43 +0000)
commitdb2fa8a7eb67b1e8f32a590b8e000e1259cff91a
tree8800214bfcdc2f28ca4c21fb12680a2ce97ebb62
parent03d98c5d592d74ae97aa3f93f80441b64960e4b6
Added a path-sensitive idempotent operation checker (-analyzer-idempotent-operation). Finds idempotent and/or tautological operations in a path sensitive context, flagging operations that have no effect or a predictable effect.

Example:
{
int a = 1;
int b = 5;
int c = b / a; // a is 1 on all paths
}

- New IdempotentOperationChecker class
- Moved recursive Stmt functions in r107675 to IdempotentOperationChecker
- Minor refactoring of SVal to allow checking for any integer
- Added command line option for check
- Added basic test cases

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107706 91177308-0d34-0410-b5e6-96231b3b80d8
12 files changed:
include/clang/AST/Stmt.h
include/clang/Checker/PathSensitive/SVals.h
include/clang/Driver/CC1Options.td
include/clang/Frontend/AnalyzerOptions.h
lib/AST/Stmt.cpp
lib/Checker/AnalysisConsumer.cpp
lib/Checker/CMakeLists.txt
lib/Checker/GRExprEngineExperimentalChecks.h
lib/Checker/IdempotentOperationChecker.cpp [new file with mode: 0644]
lib/Checker/SVals.cpp
lib/Frontend/CompilerInvocation.cpp
test/Analysis/idempotent-operations.c [new file with mode: 0644]