1. 0bb24a0 Fix html problem, patch by Justin Handville by Chris Lattner · 17 years ago
  2. 1d2b461 fix some warnings, patch by Justin Handville by Chris Lattner · 17 years ago
  3. b15b438 decl counting isn't implemented yet for objc. -stats probably crashes for it. by Chris Lattner · 17 years ago
  4. 03c512e Fix a GCC warning, patch by Justin Handville by Chris Lattner · 17 years ago
  5. 1501e12 fix warning. by Chris Lattner · 17 years ago
  6. f0c31dd Fixes/tweaks that prevent "defaults-i.m" from compiling. by Steve Naroff · 17 years ago
  7. 5cbb02f Rename statement actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  8. 87d58b4 Rename expression actions (from Parse-prefix to ActOn-prefix). by Steve Naroff · 17 years ago
  9. f9aba31 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  10. 752a005 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  11. 612f174 Updated VC++ build system. Silenced a couple of VC++ warnings. by Hartmut Kaiser · 17 years ago
  12. 52332d0 switch the various CFG-based stuff over to using ASTConsumer interface, by Chris Lattner · 17 years ago
  13. b73abd5 convert ast printer and dumper ocver to ASTConsumer interface, by Chris Lattner · 17 years ago
  14. 1cc0171 add a new ASTConsumer consumer to simplify stuff in the driver. by Chris Lattner · 17 years ago
  15. 5762937 Initial checkin of rewriter interface. It is just stubbed out for now. by Chris Lattner · 17 years ago
  16. cfe0ff0 pretty print some nodes more nicely. by Chris Lattner · 17 years ago
  17. e5c871a fix comment by Chris Lattner · 17 years ago
  18. 0acc9c9 by Steve Naroff · 17 years ago
  19. c2e4644 Couple of new classes for objective-c's @protocol typings. by Fariborz Jahanian · 17 years ago
  20. e79832f Added several files to XCode project file... by Ted Kremenek · 17 years ago
  21. ffeaa55 by Steve Naroff · 17 years ago
  22. 7f49f50 Prototype implementation of new template-based dataflow solver. by Ted Kremenek · 17 years ago
  23. 9bb759f by Steve Naroff · 17 years ago
  24. ebcc9b6 Patch to store ivars into interface class object. by Fariborz Jahanian · 17 years ago
  25. 023a439 Semantic analysis for objective-c ivars. by Fariborz Jahanian · 17 years ago
  26. dc1ad76 by Steve Naroff · 17 years ago
  27. 2591e1b by Steve Naroff · 17 years ago
  28. cb59747 by Steve Naroff · 17 years ago
  29. 3957dae Patch for collecting ivars before running action on them. by Fariborz Jahanian · 17 years ago
  30. d21bc0d by Steve Naroff · 17 years ago
  31. b2a7dab update to match llvm mainline api by Chris Lattner · 17 years ago
  32. b0e17eb adjust to a change in the LLVM APIs, this is still very hackish until by Chris Lattner · 17 years ago
  33. 1aef621 When dumping out errors about unsupported stuff, emit loc info. by Chris Lattner · 17 years ago
  34. 409dfd1 make the sourcemgr available through ASTContext. by Chris Lattner · 17 years ago
  35. f7f1a1f by Steve Naroff · 17 years ago
  36. 45d8f0b Minor space tightening. by Ted Kremenek · 17 years ago
  37. 420d0f5 Remove a FIXME. Replace a couple asserts with an appropriate error by Steve Naroff · 17 years ago
  38. cee54de Fixed recursion bug: should call Visit on child instead of VisitStmt. by Ted Kremenek · 17 years ago
  39. de8e2bc Fixed logic bug in recursion to visiting child statements. by Ted Kremenek · 17 years ago
  40. 95af50a Added files CFGStmtVisitor and DataflowStmtVisitor to XCode project. by Ted Kremenek · 17 years ago
  41. 00b6327 Migrated LiveVariables to use the new DataflowStmtVisitor interface. The code by Ted Kremenek · 17 years ago
  42. 8cd5aba Added extensions (subclasses) to the StmtVisitor class that by Ted Kremenek · 17 years ago
  43. 86f74a4 Patch for building method declaration nodes. Also fixed a segfault in cocoa.m due by Fariborz Jahanian · 17 years ago
  44. 61adb66 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
  45. 6a0e209 by Steve Naroff · 17 years ago
  46. 999c58d Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
  47. d11620d Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
  48. 7549489 by Steve Naroff · 17 years ago
  49. 4d627f5 Change ObjcMethodDecl class derivation. by Fariborz Jahanian · 17 years ago
  50. 1278929 For looking at "dead stores" in declarations, we now check to see by Ted Kremenek · 17 years ago
  51. c0c3d73 Fixed potential NULL dereference when iterating over a chain of Decls. by Ted Kremenek · 17 years ago
  52. 61ce98c get rid of ugly "warning: no newline at end of file" by Gabor Greif · 17 years ago
  53. 74a3407 Fixed isFunctionPointerType to correctly handle typedefs. by Ted Kremenek · 17 years ago
  54. 1830be7 by Steve Naroff · 17 years ago
  55. faed3bf Some small tweaks to the recent Objc support... by Steve Naroff · 17 years ago
  56. 3dc7cbc Early patch to collect objective-c methods inserts them in class object. by Fariborz Jahanian · 17 years ago
  57. 6b2b4e3 Fixed LiveVariables to no longer track the liveness of function pointers by Ted Kremenek · 17 years ago
  58. 97a0ad5 Modified dumping of Decl information to including the Decl type. by Ted Kremenek · 17 years ago
  59. 83b0127 Added "isFunctionPointerType()" so that we can readily see if a DeclRefExpr by Ted Kremenek · 17 years ago
  60. d1d8826 Renaming of the LiveVariablesAuditor interface. Changed "Auditor" and by Ted Kremenek · 17 years ago
  61. 3d06ad9 Don't rely on ADL to find this member, patch by Justin Handville by Chris Lattner · 17 years ago
  62. 39b8c4b -check-dead-stores now no longer prints out the function declarations by Ted Kremenek · 17 years ago
  63. 1e3c202 Refactored driver options that perform analyses/work over CFGs to use by Ted Kremenek · 17 years ago
  64. 7c6f0c7 Fixed compilation on Windows. by Hartmut Kaiser · 17 years ago
  65. 42276bc Added more checking in "dead stores" for values that are initialized by Ted Kremenek · 17 years ago
  66. f63bda5 Minor bug fixes to corner cases where LiveVariables would crash on some CFGs by Ted Kremenek · 17 years ago
  67. e9646a0 Forgot to check in the actual "dead stores" checker in the last commit! by Ted Kremenek · 17 years ago
  68. e805c4a Added "Dead Stores", a flow-sensitive checker that checks for stores by Ted Kremenek · 17 years ago
  69. 0533468 LiveVariables: by Ted Kremenek · 17 years ago
  70. 81f1bba by Steve Naroff · 17 years ago
  71. a65ad46 Added LabelLoc to GotoStmt to record the source location of the label token by Ted Kremenek · 17 years ago
  72. 715172a Added libClangAnalysis by Ted Kremenek · 17 years ago
  73. aa04c51 Added an early implementation of Live-Variables analysis built on by Ted Kremenek · 17 years ago
  74. ef371a0 remove the FATAL classifier. by Chris Lattner · 17 years ago
  75. eb851e8 remove sorry. by Chris Lattner · 17 years ago
  76. 304ed39 by Steve Naroff · 17 years ago
  77. d4462f9 Patch for parsing objective-c style method calls. by Fariborz Jahanian · 17 years ago
  78. 1459457 Moved tracking of CFG block IDs into the CFG class. by Ted Kremenek · 17 years ago
  79. 1e534dc 1. Fix parsing of method prototype involving c-style argument declarations. by Fariborz Jahanian · 17 years ago
  80. 6c30fa6 Fixed a typo pointed out by Anders Calrsson. by Fariborz Jahanian · 17 years ago
  81. 4f91099 by Steve Naroff · 17 years ago
  82. b62aff3 Patch to parse objective-c's @compatibility_alias directive. by Fariborz Jahanian · 17 years ago
  83. a818522 Set eol and mime type properties for VC8 build files by Hartmut Kaiser · 17 years ago
  84. 274cd17 Updated VC8 project files. by Hartmut Kaiser · 17 years ago
  85. 7f6f4a4 Updated calls to CreateGEP to new interface in LLVM mainline. by Ted Kremenek · 17 years ago
  86. 2806720 disable this for now. by Chris Lattner · 17 years ago
  87. e6a8c9b by Steve Naroff · 17 years ago
  88. 2b8f121 updates (?) to the vc++ files, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  89. 14bba0c silence VC++ warnings, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  90. 3496d52 Silence VC++ warnings, patch by Hartmut Kaiser by Chris Lattner · 17 years ago
  91. a96e0d8 eliminate some VC++ warnings, patch contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
  92. 84fb894 add a VC++ solution file, contributed by Hartmut Kaiser by Chris Lattner · 17 years ago
  93. 509d0b5 by Steve Naroff · 17 years ago
  94. c9b4918 VC++ doesn't define S_ISDIR by Chris Lattner · 17 years ago
  95. 2157f27 Add a method required by the VC++ STL, patch by Hartmut Kaiser! by Chris Lattner · 17 years ago
  96. 1b02318 Add #include required on win32. by Chris Lattner · 17 years ago
  97. c75ccff Eliminate some VC++ warnings, patch by Hartmut Kaiser! by Chris Lattner · 17 years ago
  98. a09a2c0 Add #ifdefs to make the source portable to windows. Patch contributed by Chris Lattner · 17 years ago
  99. 37e23c9 initial checkin of vc++ project files, contributed by Hartmut Kaiser! by Chris Lattner · 17 years ago
  100. 1c9de71 by Steve Naroff · 17 years ago