1. 031b2d2 Fix for 64-bit systems. by Chris Lattner · 17 years ago
  2. a8ae51f Fixed VC++ bitfield to unsigned/signed sign propagation issue. by Hartmut Kaiser · 17 years ago
  3. 987b15d Use the APFloat routines to evaluate FP immediates as by Chris Lattner · 17 years ago
  4. 3d2313e add comments. by Chris Lattner · 17 years ago
  5. c9bec4b further apfloat'ize the front-end, allowing codegen to pass by Chris Lattner · 17 years ago
  6. 1c9bdae work around bugs and missing features in apfloat. by Chris Lattner · 17 years ago
  7. 525a050 Use APFloat for the representation of FP immediates, ask the target by Chris Lattner · 17 years ago
  8. b27c156 This patch adds to new things to clang: by Fariborz Jahanian · 17 years ago
  9. 764a7ce Make case sorting deterministic by not depending on pointer by Chris Lattner · 17 years ago
  10. 894c57f This patch instantiates objects for forward protocols and in general handles use of by Fariborz Jahanian · 17 years ago
  11. 763051d Updated VC++ project files by Hartmut Kaiser · 17 years ago
  12. 4f5a2ab Updated XCode project with locations of "Analysis" visitor header files. by Ted Kremenek · 17 years ago
  13. 11de5cb Updated header file inlcude to new location of by Ted Kremenek · 17 years ago
  14. 57634c7 Renamed "include/clang/Analysis/CFGVisitors" "<snip>/Analysis/Visitors". by Ted Kremenek · 17 years ago
  15. adfb987 Moved include/clang/Analysis/*Visitor.h to include/clang/Analysis/CFGVisitors. by Ted Kremenek · 17 years ago
  16. bd51b87 Handle forward declaration of classes and prevent re-instantiation of by Fariborz Jahanian · 17 years ago
  17. 1d5b0e3 Match to do some semantic analysis on objective-c class decl. by Fariborz Jahanian · 17 years ago
  18. 2367e63 Updated VC++ project files. Disambiguated a variable. by Hartmut Kaiser · 17 years ago
  19. 80de08f Added support to clang driver to view ASTs using GraphViz. This by Ted Kremenek · 17 years ago
  20. d2a4a1a Moved GraphTraits<Stmt*> to StmtGraphTraits.h. This allows consumers of Stmt.h not to have to pay the cost by Ted Kremenek · 17 years ago
  21. 397fcc1 Patch to parse objective-c's @try-statement and @throw-statement. by Fariborz Jahanian · 17 years ago
  22. 5e97d4b Added GraphTraits template specialization for Stmt* to treat ASTs like graphs. by Ted Kremenek · 17 years ago
  23. b297754 More refactoring: decl and expr regisitration now uses CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
  24. ba0c5d6 Added two new visitors that extend CFGStmtVisitor: CFGRecStmtVisitor and CFGRecStmtDeclVisitor. by Ted Kremenek · 17 years ago
  25. 21d5a95 by Steve Naroff · 17 years ago
  26. 2cc62aa by Steve Naroff · 17 years ago
  27. 660fa00 Remove alloca import... by Steve Naroff · 17 years ago
  28. 563477d by Steve Naroff · 17 years ago
  29. fe1b1e6 DataflowSolver now acccepts an "_Equal" template parameter that allows the user by Ted Kremenek · 17 years ago
  30. f5a9518 Fixed bug where getBitRef would incorrectly grab the bit from the by Ted Kremenek · 17 years ago
  31. 44e4026 Changed solver to use "==" operator when comparing dataflow values by Ted Kremenek · 17 years ago
  32. 59d1827 Minor performance fix in transfer function logic. Previously we by Ted Kremenek · 17 years ago
  33. 43a1698 More refactoring and code reduction. by Ted Kremenek · 17 years ago
  34. 294a7c9 Add overloaded versions of DataflowSolver::runOnBlock to simplify by Ted Kremenek · 17 years ago
  35. a90b0d1 Added member template CFG::VisitBlockStmts to provide a succinct way by Ted Kremenek · 17 years ago
  36. a36c654 Additional comments and cosmetic cleanups. by Ted Kremenek · 17 years ago
  37. fd225cc Patch for object creation and handling of category declarations. by Fariborz Jahanian · 17 years ago
  38. 8e28065 Moved TransferFunction object within DataflowSolver to be a instance by Ted Kremenek · 17 years ago
  39. 105bfee Modified DataFlowValues and DataflowSolver to associate dataflow value by Ted Kremenek · 17 years ago
  40. 4c64e8e Added type "CFG::Edge" to encapsulate the notion of directed-edges by Ted Kremenek · 17 years ago
  41. 2f94f3c alloca.h doesn't exist on Windows. by Hartmut Kaiser · 17 years ago
  42. 7ffc9ed alloca.h is needed on Solaris by Gabor Greif · 17 years ago
  43. 0093359 Uses more description name for method implementation kind argument. by Fariborz Jahanian · 17 years ago
  44. efb65ec Updated VC++ project files after file rename. by Hartmut Kaiser · 17 years ago
  45. 146fbb0 Patch to remove ObjcProtoMethodDecl and use ObjcMethodDecl by Fariborz Jahanian · 17 years ago
  46. 2a9d82a Bug fix to merging of data flow values (merge incorrectly made values by Ted Kremenek · 17 years ago
  47. 6d6cfbf Add a comment and remove unused constructors. by Steve Naroff · 17 years ago
  48. 91a0c62 Made driver flag --check-uninit-values more self-explanatory. by Ted Kremenek · 17 years ago
  49. 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
  50. 25e077d Patch to add objective-c's @protocl type declaration. by Fariborz Jahanian · 17 years ago
  51. 708391a by Steve Naroff · 17 years ago
  52. 475d4aa Re-added UninitializedValues.cpp to the XCode project because the file was renamed. by Ted Kremenek · 17 years ago
  53. 599e29c Renamed file due to mispelling. by Ted Kremenek · 17 years ago
  54. 2bf5514 UninitialuzedValues now only tracks BlockVarDecls; obviating false positives with by Ted Kremenek · 17 years ago
  55. 37387c9 by Steve Naroff · 17 years ago
  56. cd5860c More progress on UnitializedValues checker. We now have preliminary support by Ted Kremenek · 17 years ago
  57. 20ee4fb Split tracking of unitialized values for Decls and CFGBlock-level expressions. by Ted Kremenek · 17 years ago
  58. 56d516d Removed "ObserverTy" from core DataflowValues types. The observer by Ted Kremenek · 17 years ago
  59. 1225966 Removed check for NULL CFG. Bad CFGs will fire an assertion failure by Ted Kremenek · 17 years ago
  60. 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
  61. d2aecc3 Added ASTConsumer.h to XCode project. by Ted Kremenek · 17 years ago
  62. d16245b Fix a few 80 column violations. by Steve Naroff · 17 years ago
  63. e5ea380 Add const to debug hook... by Steve Naroff · 17 years ago
  64. 3f128ad by Steve Naroff · 17 years ago
  65. 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
  66. 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
  67. 86fd355 Silenced a VC++ warning. Updated VC++ project files. by Hartmut Kaiser · 17 years ago
  68. 4b1aa81 remove some obsolete interfaces. by Chris Lattner · 17 years ago
  69. 580980b switch the llvm emitter to ASTConsumer interface. by Chris Lattner · 17 years ago
  70. dce7bd6 From Justin Handville: by Chris Lattner · 17 years ago
  71. 8438624 Fix html problem, patch by Justin Handville by Chris Lattner · 17 years ago
  72. b1776cb fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  73. 7341c33 decl counting isn't implemented yet for objc. -stats probably crashes for it. by Chris Lattner · 17 years ago
  74. 9e6622d Fix a GCC warning, patch by Justin Handville by Chris Lattner · 17 years ago
  75. f874c13 fix warning. by Chris Lattner · 17 years ago
  76. 8c9f13e Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  77. 1b273c4 Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  78. f69936d Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  79. 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  80. bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  81. 1ff4f0c Updated VC++ build system. Silenced a couple of VC++ warnings. by Hartmut Kaiser · 17 years ago
  82. c0508f9 switch the various CFG-based stuff over to using ASTConsumer interface, by Chris Lattner · 17 years ago
  83. 3d4997d convert ast printer and dumper ocver to ASTConsumer interface, by Chris Lattner · 17 years ago
  84. 556beb7 add a new ASTConsumer consumer to simplify stuff in the driver. by Chris Lattner · 17 years ago
  85. 8bd12b8 Initial checkin of rewriter interface. It is just stubbed out for now. by Chris Lattner · 17 years ago
  86. 8bdcc47 pretty print some nodes more nicely. by Chris Lattner · 17 years ago
  87. 30df93b fix comment by Chris Lattner · 17 years ago
  88. 08d92e4 by Steve Naroff · 17 years ago
  89. e107647 Couple of new classes for objective-c's @protocol typings. by Fariborz Jahanian · 17 years ago
  90. a1dff2e Added several files to XCode project file... by Ted Kremenek · 17 years ago
  91. f13271f by Steve Naroff · 17 years ago
  92. 13ed7fe Prototype implementation of new template-based dataflow solver. by Ted Kremenek · 17 years ago
  93. 7421664 by Steve Naroff · 17 years ago
  94. b04a021 Patch to store ivars into interface class object. by Fariborz Jahanian · 17 years ago
  95. e267ab6 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  96. f38661e by Steve Naroff · 17 years ago
  97. 9474504 by Steve Naroff · 17 years ago
  98. 8e74c93 by Steve Naroff · 17 years ago
  99. 7d6402f Patch for collecting ivars before running action on them. by Fariborz Jahanian · 17 years ago
  100. c752d04 by Steve Naroff · 17 years ago