1. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  2. 5e97d4b Added GraphTraits template specialization for Stmt* to treat ASTs like graphs. by Ted Kremenek · 17 years ago
  3. b297754 More refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
  4. ba0c5d6 Added two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
  5. 21d5a95 by Steve Naroff · 17 years ago
  6. 2cc62aa by Steve Naroff · 17 years ago
  7. 660fa00 Remove alloca import... by Steve Naroff · 17 years ago
  8. 563477d by Steve Naroff · 17 years ago
  9. fe1b1e6 DataflowSolver now acccepts an "_Equal" template parameter that allows the user by Ted Kremenek · 17 years ago
  10. f5a9518 Fixed bug where getBitRef would incorrectly grab the bit from the by Ted Kremenek · 17 years ago
  11. 44e4026 Changed solver to use "==" operator when comparing dataflow values by Ted Kremenek · 17 years ago
  12. 59d1827 Minor performance fix in transfer function logic. Previously we by Ted Kremenek · 17 years ago
  13. 43a1698 More refactoring and code reduction. by Ted Kremenek · 17 years ago
  14. 294a7c9 Add overloaded versions of DataflowSolver::runOnBlock to simplify by Ted Kremenek · 17 years ago
  15. a90b0d1 Added member template CFG::VisitBlockStmts to provide a succinct way by Ted Kremenek · 17 years ago
  16. a36c654 Additional comments and cosmetic cleanups. by Ted Kremenek · 17 years ago
  17. fd225cc Patch for object creation and handling of category declarations. by Fariborz Jahanian · 17 years ago
  18. 8e28065 Moved TransferFunction object within DataflowSolver to be a instance by Ted Kremenek · 17 years ago
  19. 105bfee Modified DataFlowValues and DataflowSolver to associate dataflow value by Ted Kremenek · 17 years ago
  20. 4c64e8e Added type "CFG::Edge" to encapsulate the notion of directed-edges by Ted Kremenek · 17 years ago
  21. 2f94f3c alloca.h doesn't exist on Windows. by Hartmut Kaiser · 17 years ago
  22. 7ffc9ed alloca.h is needed on Solaris by Gabor Greif · 17 years ago
  23. 0093359 Uses more description name for method implementation kind argument. by Fariborz Jahanian · 17 years ago
  24. efb65ec Updated VC++ project files after file rename. by Hartmut Kaiser · 17 years ago
  25. 146fbb0 Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl by Fariborz Jahanian · 17 years ago
  26. 2a9d82a Bug fix to merging of data flow values (merge incorrectly made values by Ted Kremenek · 17 years ago
  27. 6d6cfbf Add a comment and remove unused constructors. by Steve Naroff · 17 years ago
  28. 91a0c62 Made driver flag --check-uninit-values more self-explanatory. by Ted Kremenek · 17 years ago
  29. 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 · 17 years ago
  30. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  31. 708391a by Steve Naroff · 17 years ago
  32. 475d4aa Re-added UninitializedValues.cpp to the XCode project because the file was renamed. by Ted Kremenek · 17 years ago
  33. 599e29c Renamed file due to mispelling. by Ted Kremenek · 17 years ago
  34. 2bf5514 UninitialuzedValues now only tracks BlockVarDecls; obviating false positives with by Ted Kremenek · 17 years ago
  35. 37387c9 by Steve Naroff · 17 years ago
  36. cd5860c More progress on UnitializedValues checker. We now have preliminary support by Ted Kremenek · 17 years ago
  37. 20ee4fb Split tracking of unitialized values for Decls and CFGBlock-level expressions. by Ted Kremenek · 17 years ago
  38. 56d516d Removed "ObserverTy" from core DataflowValues types. The observer by Ted Kremenek · 17 years ago
  39. 1225966 Removed check for NULL CFG. Bad CFGs will fire an assertion failure by Ted Kremenek · 17 years ago
  40. 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
  41. d2aecc3 Added ASTConsumer.h to XCode project. by Ted Kremenek · 17 years ago
  42. d16245b Fix a few 80 column violations. by Steve Naroff · 17 years ago
  43. e5ea380 Add const to debug hook... by Steve Naroff · 17 years ago
  44. 3f128ad by Steve Naroff · 17 years ago
  45. 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
  46. 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
  47. 86fd355 Silenced a VC++ warning. Updated VC++ project files. by Hartmut Kaiser · 17 years ago
  48. 4b1aa81 remove some obsolete interfaces. by Chris Lattner · 17 years ago
  49. 580980b switch the llvm emitter to ASTConsumer interface. by Chris Lattner · 17 years ago
  50. dce7bd6 From Justin Handville: by Chris Lattner · 17 years ago
  51. 8438624 Fix html problem, patch by Justin Handville by Chris Lattner · 17 years ago
  52. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  53. 7341c33 decl counting isn't implemented yet for objc. -stats probably crashes for it. by Chris Lattner · 17 years ago
  54. 9e6622d Fix a GCC warning, patch by Justin Handville by Chris Lattner · 17 years ago
  55. f874c13 fix warning. by Chris Lattner · 17 years ago
  56. 8c9f13e Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  57. 1b273c4 Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  58. f69936d Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  59. 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  60. bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  61. 1ff4f0c Updated VC++ build system. Silenced a couple of VC++ warnings. by Hartmut Kaiser · 17 years ago
  62. c0508f9 switch the various CFG-based stuff over to using ASTConsumer interface, by Chris Lattner · 17 years ago
  63. 3d4997d convert ast printer and dumper ocver to ASTConsumer interface, by Chris Lattner · 17 years ago
  64. 556beb7 add a new ASTConsumer consumer to simplify stuff in the driver. by Chris Lattner · 17 years ago
  65. 8bd12b8 Initial checkin of rewriter interface. It is just stubbed out for now. by Chris Lattner · 17 years ago
  66. 8bdcc47 pretty print some nodes more nicely. by Chris Lattner · 17 years ago
  67. 30df93b fix comment by Chris Lattner · 17 years ago
  68. 08d92e4 by Steve Naroff · 17 years ago
  69. e107647 Couple of new classes for objective-c's @protocol typings. by Fariborz Jahanian · 17 years ago
  70. a1dff2e Added several files to XCode project file... by Ted Kremenek · 17 years ago
  71. f13271f by Steve Naroff · 17 years ago
  72. 13ed7fe Prototype implementation of new template-based dataflow solver. by Ted Kremenek · 17 years ago
  73. 7421664 by Steve Naroff · 17 years ago
  74. b04a021 Patch to store ivars into interface class object. by Fariborz Jahanian · 17 years ago
  75. e267ab6 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  76. f38661e by Steve Naroff · 17 years ago
  77. 9474504 by Steve Naroff · 17 years ago
  78. 8e74c93 by Steve Naroff · 17 years ago
  79. 7d6402f Patch for collecting ivars before running action on them. by Fariborz Jahanian · 17 years ago
  80. c752d04 by Steve Naroff · 17 years ago
  81. ca2617c update to match llvm mainline api by Chris Lattner · 17 years ago
  82. 191396c adjust to a change in the LLVM APIs, this is still very hackish until by Chris Lattner · 17 years ago
  83. 419ea7e When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  84. b800dc2 make the sourcemgr available through ASTContext. by Chris Lattner · 17 years ago
  85. a9aa5e6 by Steve Naroff · 17 years ago
  86. 97487a0 Minor space tightening. by Ted Kremenek · 17 years ago
  87. 410e3e2 Remove a FIXME. Replace a couple asserts with an appropriate error by Steve Naroff · 17 years ago
  88. 37f9701 Fixed recursion bug: should call Visit on child instead of VisitStmt. by Ted Kremenek · 17 years ago
  89. 85d28b4 Fixed logic bug in recursion to visiting child statements. by Ted Kremenek · 17 years ago
  90. 8b2d2fd Added files CFGStmtVisitor and DataflowStmtVisitor to XCode project. by Ted Kremenek · 17 years ago
  91. f175805 Migrated LiveVariables to use the new DataflowStmtVisitor interface. The code by Ted Kremenek · 17 years ago
  92. 73c80c2 Added extensions (subclasses) to the StmtVisitor class that by Ted Kremenek · 17 years ago
  93. e55cd00 Patch for building method declaration nodes. Also fixed a segfault in cocoa.m due by Fariborz Jahanian · 17 years ago
  94. 3494725 Removed clang solution file for VC++, which didn't work properly because of hard coded paths in the llvm project files. by Hartmut Kaiser · 17 years ago
  95. bb20469 by Steve Naroff · 17 years ago
  96. 155383b Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
  97. f50ec10 Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
  98. 4473921 by Steve Naroff · 17 years ago
  99. 8a4010d Change ObjcMethodDecl class derivation. by Fariborz Jahanian · 17 years ago
  100. ce1cab9 For looking at "dead stores" in declarations, we now check to see by Ted Kremenek · 17 years ago