1. 5fe4d9d Change ExplodedNode to have its NodeGroups all BumpPtrAllocated, avoiding malloc() traffic when adding successors/predecessors to a node. This was done by introducing BumpVector, which is essentially SmallVector with all memory being BumpPtrAllocated (this can certainly be cleaned up or moved into llvm/ADT). by Ted Kremenek · 15 years ago
  2. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  3. cc02553 Remove Decl and CFG from ExplodedGraph. This leads to a series small changes. by Zhongxing Xu · 15 years ago
  4. 17fd863 To make the analysis independent on the locally stored liveness and cfg by Zhongxing Xu · 15 years ago
  5. 25e695b Extend the ProgramPoint to include the context information LocationContext, by Zhongxing Xu · 15 years ago
  6. 031ccc0 Last step of template cleanup: merge *BuilderImpl to *Builder. by Zhongxing Xu · 15 years ago
  7. 0111f57 Core analysis engine template cleanup step 2: by Zhongxing Xu · 15 years ago
  8. 38b02b9 Core analysis engine template cleanup step 2: by Zhongxing Xu · 15 years ago
  9. c5619d9 As GRState seems general enough, it is time to merge some template classes by Zhongxing Xu · 15 years ago
  10. 5f85e17 Refactor 'PostStmt' and 'PreStmt' to subclass a common parent 'StmtPoint'. by Ted Kremenek · 15 years ago
  11. e01ac57 Add support for 'PreStmt' program points to GRCoreEngine and GRStmtNodeBuilder. by Ted Kremenek · 15 years ago
  12. 5200354 Enhance GRBranchNodeBuilderImpl (part of GRCoreEngine) to understand the case by Ted Kremenek · 15 years ago
  13. 785d29d Delete extra whitespaces. by Zhongxing Xu · 15 years ago
  14. 80c2418 More hacking on autorelease errors. We now can emit basic errors (disabled for by Ted Kremenek · 15 years ago
  15. ab422d1 Make BlockEntrace program points taggable. by Ted Kremenek · 15 years ago
  16. 7090d54 analyzer: Add ProgramPoint 'PostLValue' just to distinguish (for by Ted Kremenek · 15 years ago
  17. 8ff59e8 Add a new BFS GRWorkList and make it the default worklist model for by Ted Kremenek · 15 years ago
  18. 1670e40 Implement analyzer support for OSCompareAndSwap. This required pushing "tagged" by Ted Kremenek · 15 years ago
  19. 58e899b Added a new method to GRStmtNodeBuilder to build nodes using an arbitrary by Ted Kremenek · 16 years ago
  20. e1efd4d Add new GRWorkList class that uses two queues: by Ted Kremenek · 16 years ago
  21. af33741 Add (preliminary) transfer function support for ObjCForCollectionStmt. Still need to flesh out some logic. by Ted Kremenek · 16 years ago
  22. bf4e419 Fixed an elusive caching bug in ExplodedGraph construction when a PostStmtKind was used instead of a PostStoreKind. by Ted Kremenek · 16 years ago
  23. d452758 ProgramPoint now takes the space of two pointers instead of one. This change was by Ted Kremenek · 16 years ago
  24. 38a23ba Remove default value for 'Pred' argument to GRCoreEngineImpl::GenerateNode(). by Ted Kremenek · 16 years ago
  25. 5c135b4 Fix memory leak found by Sam Bishop: delete WList in the dstor of GRCoreEngineImpl. by Ted Kremenek · 16 years ago
  26. 4323a57 Refactored most of the "Store" piece of ValueState into a Store type. The by Ted Kremenek · 16 years ago
  27. 1a654b6 Modified the dead stores checker to... by Ted Kremenek · 16 years ago
  28. 331b0ac Added a new ProgramPoint: PostPurgeDeadSymbols. This new program point distinguishes between the cases when we just evaluated the transfer function of a Stmt* (PostStmt) or performed a load (PostLoad). This solves a caching bug observed in a recent bug report. by Ted Kremenek · 16 years ago
  29. 1b8bd4d Major rewrite/refactoring of static analysis engine. We now use by Ted Kremenek · 16 years ago
  30. b053396 Fixed more caching bugs related to the one fixed in r49914. Silence by Ted Kremenek · 16 years ago
  31. 4f28515 Fixed bug in GREndPathNodeBuilder: only return a node if it wasn't in the node cache. by Ted Kremenek · 16 years ago
  32. 5eb1044 Bug fix in GREndPathNodeBuilderImpl: Use the specified state to construct by Ted Kremenek · 16 years ago
  33. 11062b1 Added "GREndPathNodeBuilder", a new node builder that will be used for by Ted Kremenek · 16 years ago
  34. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Analysis/GRCoreEngine.cpp]
  35. 3bbad55 More edge-case handling with using liveness information to prune dead state values. by Ted Kremenek · 16 years ago
  36. 8ecfc85 Minor cleanups (mainly indentation). by Ted Kremenek · 16 years ago
  37. 6a6719a "Refinement" of hack to bound loop-traversals: visit any block at a maximum of 3 times along a given path. by Ted Kremenek · 16 years ago
  38. daeb9a7 Added support to GRCoreEngine/GRExprEngine for processing control-flow by Ted Kremenek · 17 years ago
  39. a82799e Renamed files to match class renaming in r47070: by Ted Kremenek · 17 years ago[Renamed from Analysis/GREngine.cpp]
  40. 4d4dd85 Renamed class GREngine => GRCoreEngine. by Ted Kremenek · 17 years ago
  41. 24f1a96 Simplify GRIndirectGotoNodeBuilder. by Ted Kremenek · 17 years ago
  42. a58e833 Added GREngine support for "break" and "continue". by Ted Kremenek · 17 years ago
  43. 754607e Added support to GREngine/GRConstants for handling computed gotos. by Ted Kremenek · 17 years ago
  44. f810869 Added GREngine support for GotoStmt. by Ted Kremenek · 17 years ago
  45. 8e49dd6 Added GRBlockCounter class, which tracks the number of times blocks by Ted Kremenek · 17 years ago
  46. f233d48 Implemented initial transfer function support for '&&', '||', '?', and by Ted Kremenek · 17 years ago
  47. 3b4f670 We now delay adding nodes created by GRBranchNodeBuilder to the analysis by Ted Kremenek · 17 years ago
  48. b38911f Implemented some branch pruning in GRConstants using != and == for by Ted Kremenek · 17 years ago
  49. 71c29bd Implemented more boilerplate in GREngine for processing branches. Now by Ted Kremenek · 17 years ago
  50. 7d7fe6d Added boilerplate logic in GREngine for processing branches. by Ted Kremenek · 17 years ago
  51. f4b7a69 Renamed GRNodeBuilder to GRStmtNodeBuilder. by Ted Kremenek · 17 years ago
  52. cb48b9c Driver now passes the top-level FunctionDecl* to GRConstants. by Ted Kremenek · 17 years ago
  53. 160760e Fixed iterator bug in ExplodedNodeImpl::NodeGroup::end(); we would improperly by Ted Kremenek · 17 years ago
  54. ee98546 Hooked up the GRConstants analysis to the driver. by Ted Kremenek · 17 years ago
  55. 425c08c Removed implicit transitions to a "BlockExit" location; we now handle by Ted Kremenek · 17 years ago
  56. f24af5b Added prototype implementation of path-sens. analysis core engine. by Ted Kremenek · 17 years ago