- Mar 17, 2010
-
-
Zhongxing Xu authored
their bindings are not removed. llvm-svn: 98705
-
- Mar 16, 2010
-
-
Zhongxing Xu authored
since RemoveDeadBinding mistakenly remove the binding to CXXThisRegion. llvm-svn: 98629
-
- Mar 12, 2010
-
-
Jeffrey Yasskin authored
Tested: make CPPFLAGS=-m64 CXXFLAGS=-m64 -j8 && (cd tools/clang;make test) llvm-svn: 98399
-
- Mar 10, 2010
-
-
Ted Kremenek authored
llvm-svn: 98176
-
Ted Kremenek authored
llvm-svn: 98175
-
Ted Kremenek authored
llvm-svn: 98161
-
Ted Kremenek authored
llvm-svn: 98160
-
Ted Kremenek authored
Really apply (unnoticed weird git-svn merge conflict in 98144): Refactor RegionStore::RemoveDeadBindings to use the same core cluster analysis algorithm as RegionStore::InvalidateRegions(). Beyond simplifying the algorithm significantly, we no longer need to build subregion maps in RemoveDeadBindings(). This and other changes cause a significant speedup: the time to analyze sqlite3.c (single core) drops by 14%. llvm-svn: 98159
-
Ted Kremenek authored
cluster analysis algorithm as RegionStore::InvalidateRegions(). Beyond simplifying the algorithm significantly, we no longer need to build subregion maps in RemoveDeadBindings(). This and other changes cause a significant speedup: the time to analyze sqlite3.c (single core) drops by 14%. llvm-svn: 98144
-
Ted Kremenek authored
into a 'ClusterAnalysis' parent class. The idea is to potentially reuse this for reworking RemoveDeadBindings. llvm-svn: 98143
-
Zhongxing Xu authored
llvm-svn: 98136
-
Ted Kremenek authored
with an 'unknown' memory space. llvm-svn: 98110
-
- Mar 08, 2010
-
-
Douglas Gregor authored
of the class name. llvm-svn: 97943
-
Duncan Sands authored
llvm-svn: 97941
-
- Mar 05, 2010
-
-
Zhongxing Xu authored
information in ExplodedNode. llvm-svn: 97785
-
- Mar 04, 2010
-
-
Zhongxing Xu authored
we now may have identical states with different analysis context. Set the right AnalysisContext in state when entering and leaving a callee. With both of the above changes, we can pass the test case. llvm-svn: 97724
-
- Mar 02, 2010
-
-
Ted Kremenek authored
After discussion with Zhongxing, don't force the initializer of DeclStmts to be block-level expressions. This led to some interesting fallout: [UninitializedValues] Always visit the initializer of DeclStmts (do not assume they are block-level expressions). [BasicStore] With initializers of DeclStmts no longer block-level expressions, this causes self-referencing initializers (e.g. 'int x = x') to no longer cause the initialized variable to be live before the DeclStmt. While this is correct, it caused BasicStore::RemoveDeadBindings() to prune off the values of these variables from the initial store (where they are set to uninitialized). The fix is to back-port some (and only some) of the lazy-binding logic from RegionStore to BasicStore. Now the default values of local variables are determined lazily as opposed to explicitly initialized. llvm-svn: 97591
-
Ted Kremenek authored
llvm-svn: 97590
-
- Mar 01, 2010
-
-
Zhongxing Xu authored
no need to store a type with SymbolRegionValue. llvm-svn: 97437
-
Zhongxing Xu authored
llvm-svn: 97436
-
- Feb 28, 2010
-
-
Zhongxing Xu authored
definition. llvm-svn: 97373
-
- Feb 26, 2010
-
-
Zhongxing Xu authored
Use this information to find the returned value and bind it to CallExpr in ProcessCallExit. And there is no need to remove dead bindings in ProcessCallExit, because a. it would clean up the return value bound to CallExpr b. we still would do it in the next ProcessStmt(), where we would not misclean up the return value. llvm-svn: 97225
-
Zhongxing Xu authored
llvm-svn: 97207
-
- Feb 25, 2010
-
-
Douglas Gregor authored
Restore Zhongxing's commits r97122 r97127 r97129 r97131 which were reverted due to a Clang-on-Clang failure llvm-svn: 97162
-
Jakob Stoklund Olesen authored
They were breaking clang-x86_64-darwin10-selfhost llvm-svn: 97138
-
Zhongxing Xu authored
llvm-svn: 97131
-
Zhongxing Xu authored
llvm-svn: 97129
-
Zhongxing Xu authored
llvm-svn: 97127
-
Zhongxing Xu authored
This patch implements the CallEnter/CallExit idea of Ted. Add two interfaces to GRSubEngine: ProcessCallEnter, ProcessCallExit. The CallEnter program point uses caller's location context. The CallExit program point uses callee's location context. CallEnter is built by GRStmtNodeBuilder. CallExit is built by GREndPathNodeBuilder. llvm-svn: 97122
-
Ted Kremenek authored
to various MacOS X functions. The checks in BasicObjCFoundationChecks.cpp will gradually be migrated here. As a first check, check that when 'dispatch_once()' is passed a predicate value that has non-local storage. llvm-svn: 97116
-
Ted Kremenek authored
llvm-svn: 97115
-
Ted Kremenek authored
when it is explicitly marked as unused via __attribute__((unused)). llvm-svn: 97104
-
Ted Kremenek authored
to various unix/posix functions, e.g. 'open()'. As a first check, check that when 'open()' is passed 'O_CREAT' that it has a third argument. llvm-svn: 97086
-
Ted Kremenek authored
llvm-svn: 97085
-
Ted Kremenek authored
llvm-svn: 97084
-
Ted Kremenek authored
llvm-svn: 97083
-
Ted Kremenek authored
llvm-svn: 97082
-
- Feb 23, 2010
-
-
Ted Kremenek authored
pointer (for defensive programming). This matches the behavior with assigning NULL to a regular pointer. Fixes <rdar://problem/7631278>. llvm-svn: 96985
-
- Feb 18, 2010
-
-
Ted Kremenek authored
in the static analyzer. llvm-svn: 96539
-
Ted Kremenek authored
llvm-svn: 96537
-