1. 1b6351f Patch to remove use of has table for protocol name lookup. This patch mirrors my by Fariborz Jahanian · 18 years ago
  2. 9d048ff Removed use of hash table for class decls and do a name look up directly. by Fariborz Jahanian · 18 years ago
  3. 5b6b72f by Steve Naroff · 18 years ago
  4. eb19188 Added ProgramEdge.h, which defines ProgramEdge (and subclasses) that by Ted Kremenek · 18 years ago
  5. bcfb06a by Steve Naroff · 18 years ago
  6. d9363c3 Do not codegen dummy block. Dummy block is an empty block with no predecessors. by Devang Patel · 18 years ago
  7. bcb07d5 Fixed bug where assignments to variables wrapped in parentheses would not by Ted Kremenek · 18 years ago
  8. 6ce2b63 Fixed UninitializedValues to properly propagate uninitialized "taint" by Ted Kremenek · 18 years ago
  9. c6a1faf DeadStores no longer reports warnings for stores to non-local variables. by Ted Kremenek · 18 years ago
  10. f63aa45 Significant cleanups and bug-fixes to LiveVariables. Uses new refactored by Ted Kremenek · 18 years ago
  11. ca64cef Refactored ExprDeclBitVector into two classes: by Ted Kremenek · 18 years ago
  12. 677190f Fixed bug where declaration initializer expressions were not by Ted Kremenek · 18 years ago
  13. cb152a7 Added iterator mechanism to iterator over the decls and expressions by Ted Kremenek · 18 years ago
  14. 00ae8d5 Patch to warn on umimplemented methods coming from class's protocols. by Fariborz Jahanian · 18 years ago
  15. a1de8c7 Fixed several bugs in the propagation of "uninitialized value" by Ted Kremenek · 18 years ago
  16. d064951 Patch to use case-stmt for keywords used as selectgor names. by Fariborz Jahanian · 18 years ago
  17. d0b0154 Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 18 years ago
  18. 4cbcb89 by Steve Naroff · 18 years ago
  19. aead153 Created new "ExprDeclBitVector" type bundle for dataflow analyses that need boolean by Ted Kremenek · 18 years ago
  20. 271f1a6 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 18 years ago
  21. 68d331a by Steve Naroff · 18 years ago
  22. a9c0102 objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 18 years ago
  23. c592522 Added extra guard for null Stmt* when traversing the AST using VisitChildren. by Ted Kremenek · 18 years ago
  24. 322f58d Fixed two bugs in CFG construction: by Ted Kremenek · 18 years ago
  25. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 18 years ago
  26. 41193e4 Moved "VerifyDiagnostics" variable declaration to right below ProgAction by Ted Kremenek · 18 years ago
  27. 42e04c7 Removed inclusion of <memory>, which is no longer needed since we by Ted Kremenek · 18 years ago
  28. d39bcd8 Refactored driver so that any action that is implemented using an by Ted Kremenek · 18 years ago
  29. d0b90bf This patch inserts ivars declared in @implementation in its object and verifies by Fariborz Jahanian · 18 years ago
  30. 095ffca Removed a few TODOs on things which are done. by Fariborz Jahanian · 18 years ago
  31. ccc213f Handle (int)1.0e40 as an i-c-e. by Chris Lattner · 18 years ago
  32. 27fd388 Updated VC++ build system. by Hartmut Kaiser · 18 years ago
  33. a689512 Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have by Ted Kremenek · 18 years ago
  34. 1de632b Moved "DataflowSolver.h" to the "include/" subtree. Adjusted client by Ted Kremenek · 18 years ago
  35. 0da1c10 Patch to make ObjcImplementationDecl derived from TypeDecl and supprt legacy by Fariborz Jahanian · 18 years ago
  36. c5f45e3 Fixed broken English in comment. by Ted Kremenek · 18 years ago
  37. ccb4f31 This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 18 years ago
  38. 4457978 Added "CheckASTConsumer", a function that generalizes by Ted Kremenek · 18 years ago
  39. 786d337 Changed command line options "-check-dead-stores" and by Ted Kremenek · 18 years ago
  40. e88f683 Comment formatting changes. No real content changes. by Ted Kremenek · 18 years ago
  41. 6179aaf Minor comment changes. by Ted Kremenek · 18 years ago
  42. 4cd8b3c Removed "EverKilled" class in DeadStores checker; it is no longer used. by Ted Kremenek · 18 years ago
  43. 2c9334d Updated VC++ build system by Hartmut Kaiser · 18 years ago
  44. fdd225e Further refactored DataflowSolver. Now most code for the solver is shared by Ted Kremenek · 18 years ago
  45. d9bfa8c Added extra "constness" to parameter. by Ted Kremenek · 18 years ago
  46. 92dfb47 use the right rounding mode. by Chris Lattner · 18 years ago
  47. 67cfad6 Added PersistentMap, an ADT that implements a map data structure that by Ted Kremenek · 18 years ago
  48. d33218c Added smart pointer class "IntrusiveSPtr" that handles reference by Ted Kremenek · 18 years ago
  49. f37bb25 If we see an invalid #ifdef directive, enter a conditional compilation region by Chris Lattner · 18 years ago
  50. 031b2d2 Fix for 64-bit systems. by Chris Lattner · 18 years ago
  51. a8ae51f Fixed VC++ bitfield to unsigned/signed sign propagation issue. by Hartmut Kaiser · 18 years ago
  52. 987b15d Use the APFloat routines to evaluate FP immediates as by Chris Lattner · 18 years ago
  53. 3d2313e add comments. by Chris Lattner · 18 years ago
  54. c9bec4b further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 18 years ago
  55. 1c9bdae work around bugs and missing features in apfloat. by Chris Lattner · 18 years ago
  56. 525a050 Use APFloat for the representation of FP immediates, ask the target by Chris Lattner · 18 years ago
  57. b27c156 This patch adds to new things to clang: by Fariborz Jahanian · 18 years ago
  58. 764a7ce Make case sorting deterministic by not depending on pointer by Chris Lattner · 18 years ago
  59. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 18 years ago
  60. 763051d Updated VC++ project files by Hartmut Kaiser · 18 years ago
  61. 4f5a2ab Updated XCode project with locations of "Analysis" visitor header files. by Ted Kremenek · 18 years ago
  62. 11de5cb Updated header file inlcude to new location of by Ted Kremenek · 18 years ago
  63. 57634c7 Renamed "include/clang/Analysis/CFGVisitors" "<snip>/Analysis/Visitors". by Ted Kremenek · 18 years ago
  64. adfb987 Moved include/clang/Analysis/*Visitor.h to include/clang/Analysis/CFGVisitors. by Ted Kremenek · 18 years ago
  65. bd51b87 Handle forward declaration of classes and prevent re-instantiation of by Fariborz Jahanian · 18 years ago
  66. 1d5b0e3 Match to do some semantic analysis on objective-c class decl. by Fariborz Jahanian · 18 years ago
  67. 2367e63 Updated VC++ project files. Disambiguated a variable. by Hartmut Kaiser · 18 years ago
  68. 80de08f Added support to clang driver to view ASTs using GraphViz. This by Ted Kremenek · 18 years ago
  69. d2a4a1a Moved GraphTraits<Stmt*> to StmtGraphTraits.h. This allows consumers of Stmt.h not to have to pay the cost by Ted Kremenek · 18 years ago
  70. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 18 years ago
  71. 5e97d4b Added GraphTraits template specialization for Stmt* to treat ASTs like graphs. by Ted Kremenek · 18 years ago
  72. b297754 More refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor. by Ted Kremenek · 18 years ago
  73. ba0c5d6 Added two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDeclVisitor. by Ted Kremenek · 18 years ago
  74. 21d5a95 by Steve Naroff · 18 years ago
  75. 2cc62aa by Steve Naroff · 18 years ago
  76. 660fa00 Remove alloca import... by Steve Naroff · 18 years ago
  77. 563477d by Steve Naroff · 18 years ago
  78. fe1b1e6 DataflowSolver now acccepts an "_Equal" template parameter that allows the user by Ted Kremenek · 18 years ago
  79. f5a9518 Fixed bug where getBitRef would incorrectly grab the bit from the by Ted Kremenek · 18 years ago
  80. 44e4026 Changed solver to use "==" operator when comparing dataflow values by Ted Kremenek · 18 years ago
  81. 59d1827 Minor performance fix in transfer function logic. Previously we by Ted Kremenek · 18 years ago
  82. 43a1698 More refactoring and code reduction. by Ted Kremenek · 18 years ago
  83. 294a7c9 Add overloaded versions of DataflowSolver::runOnBlock to simplify by Ted Kremenek · 18 years ago
  84. a90b0d1 Added member template CFG::VisitBlockStmts to provide a succinct way by Ted Kremenek · 18 years ago
  85. a36c654 Additional comments and cosmetic cleanups. by Ted Kremenek · 18 years ago
  86. fd225cc Patch for object creation and handling of category declarations. by Fariborz Jahanian · 18 years ago
  87. 8e28065 Moved TransferFunction object within DataflowSolver to be a instance by Ted Kremenek · 18 years ago
  88. 105bfee Modified DataFlowValues and DataflowSolver to associate dataflow value by Ted Kremenek · 18 years ago
  89. 4c64e8e Added type "CFG::Edge" to encapsulate the notion of directed-edges by Ted Kremenek · 18 years ago
  90. 2f94f3c alloca.h doesn't exist on Windows. by Hartmut Kaiser · 18 years ago
  91. 7ffc9ed alloca.h is needed on Solaris by Gabor Greif · 18 years ago
  92. 0093359 Uses more description name for method implementation kind argument. by Fariborz Jahanian · 18 years ago
  93. efb65ec Updated VC++ project files after file rename. by Hartmut Kaiser · 18 years ago
  94. 146fbb0 Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl by Fariborz Jahanian · 18 years ago
  95. 2a9d82a Bug fix to merging of data flow values (merge incorrectly made values by Ted Kremenek · 18 years ago
  96. 6d6cfbf Add a comment and remove unused constructors. by Steve Naroff · 18 years ago
  97. 91a0c62 Made driver flag --check-uninit-values more self-explanatory. by Ted Kremenek · 18 years ago
  98. 0bcccc7 Fixed a VC++ issue related to bitmasks. As it turns out the compiler fills the unused bits of the word a bitmask is stored in with '1' (or randomly, I can't tell, I've seen '1' so far only), which creates wrong results in certain cases. by Hartmut Kaiser · 18 years ago
  99. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 18 years ago
  100. 708391a by Steve Naroff · 18 years ago