1. af37833 Added DeclSerialization.cpp to XCode project. by Ted Kremenek · 17 years ago
  2. cf89c7e Refactored several meta data for reusability. by Fariborz Jahanian · 17 years ago
  3. c3aa5c4 Convert one type of metadata to use std::string instead of printf as an example. by Chris Lattner · 17 years ago
  4. 2cf7a5c Added SourceLocation.cpp to XCode project. by Ted Kremenek · 17 years ago
  5. f624cd2 Add a new ChooseExpr::isConditionTrue method to unify some code. by Chris Lattner · 17 years ago
  6. 9b4e4ff Refactord instance and class metadata emission. Refactored protocols metadata emission. by Fariborz Jahanian · 17 years ago
  7. e978058 by Steve Naroff · 17 years ago
  8. 4c4abed by Steve Naroff · 17 years ago
  9. 0445519 This patch generates protocol metadata and all its sub-metadata. by Fariborz Jahanian · 17 years ago
  10. 96f136d by Steve Naroff · 17 years ago
  11. 8995b8a Added StmtIterator.cpp and StmtIterator.h to the XCode project. by Ted Kremenek · 17 years ago
  12. 2edd56e by Steve Naroff · 17 years ago
  13. 4bcd384 Added Driver/SerializationTest.cpp to the XCode project. by Ted Kremenek · 17 years ago
  14. 957448a Fix location processing of @selector: the range should include the @ sign. by Fariborz Jahanian · 17 years ago
  15. 6fe8b27 Add a new Rewriter::getRangeSize method. by Chris Lattner · 17 years ago
  16. 080f3d0 Patch to diagnose duplicate method implementations. by Fariborz Jahanian · 17 years ago
  17. 74db168 Push the rewriter forward a bit more. Now it rewrites by Chris Lattner · 17 years ago
  18. f807c20 Patch to implement AST generation for objective-c's @selector expression. by Fariborz Jahanian · 17 years ago
  19. 134c350 by Steve Naroff · 17 years ago
  20. 056c6b0 Patch to parse @selector expressions. by Fariborz Jahanian · 17 years ago
  21. 85f0dc5 by Steve Naroff · 17 years ago
  22. 55bfe0d Add support for Pascal strings. by Anders Carlsson · 17 years ago
  23. f5e7f84 Woo, tab deletion now works. Next lets see if we can insert stuff. by Chris Lattner · 17 years ago
  24. 550e050 Check and diagnose that objective-c objects may not be statically allocated. by Fariborz Jahanian · 17 years ago
  25. a4da5f6 by Steve Naroff · 17 years ago
  26. 23f968b Fixed a bug whereby, struct tag name matches a typedef/objc-class name by Fariborz Jahanian · 17 years ago
  27. f7f9214 add RewriterTest.cpp to xcode project. by Chris Lattner · 17 years ago
  28. 91193f6 Patch to create protocol conforming class types. by Fariborz Jahanian · 17 years ago
  29. 7aeeda0 Refinements to Sema::GetObjcIdType()... by Steve Naroff · 17 years ago
  30. 663733e Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  31. 77cec47 resolve a fixme, by moving __builtin_va_list to a more logical by Chris Lattner · 17 years ago
  32. 9637a9b by Steve Naroff · 17 years ago
  33. ac142de Remove addition of protocol names to declaration scopes, use a separate by Fariborz Jahanian · 17 years ago
  34. 4d7d234 switch more code to use Token::is/isNot where possible. by Chris Lattner · 17 years ago
  35. ea14870 rename some "Parse" actions to "ActOn". Move code around in by Chris Lattner · 17 years ago
  36. c04aff1 Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
  37. 3fc5419 by Steve Naroff · 17 years ago
  38. c363d79 Move identifierTable.h to the right folder. by Chris Lattner · 17 years ago
  39. 7711ee3 by Steve Naroff · 17 years ago
  40. 935877d Removed unnecessary base class from some of objective-c classes: by Fariborz Jahanian · 17 years ago
  41. 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  42. eb8c963 Rename ASTStreamers.* -> ASTConsumers.* by Chris Lattner · 17 years ago
  43. 8c9d29f speed up clang startup time by about 23% by avoiding lots of by Chris Lattner · 17 years ago
  44. 6f11f6a Modifications to XCode project: by Ted Kremenek · 17 years ago
  45. a096e1d This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  46. f9e80db by Steve Naroff · 17 years ago
  47. 67907bd Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  48. 84082af More tab removal activity. by Fariborz Jahanian · 17 years ago
  49. d77ce0e minor cleanups, make code more defensive, less branchy in Selector ctor. by Chris Lattner · 17 years ago
  50. fa601d5 Fixed all my recent test cases to have the RUN command and by Fariborz Jahanian · 17 years ago
  51. a84a126 move DeclObjc.h down to be alphabetically organized by Chris Lattner · 17 years ago
  52. 25aace8 by Steve Naroff · 17 years ago
  53. 78adb39 Renamed getCatLoc() to getLocation() to be consistant for such getter names. by Fariborz Jahanian · 17 years ago
  54. b4dfe36 by Steve Naroff · 17 years ago
  55. 1c095a7 Unified such names as protocol references, instance methods and class methods by Fariborz Jahanian · 17 years ago
  56. fa465d1 by Steve Naroff · 17 years ago
  57. a91aa32 This patch introduces the ObjcCategoryImplDecl class and does the checking related to by Fariborz Jahanian · 17 years ago
  58. 3fafa10 by Steve Naroff · 17 years ago
  59. 0c5affb Removed use of hash table for class decls and do a name look up directly. by Fariborz Jahanian · 17 years ago
  60. 6cb1d36 by Steve Naroff · 17 years ago
  61. 1e4e82f Patch for method implementation. It populates ObjcImplementationDecl object with method implementation declarations . by Fariborz Jahanian · 17 years ago
  62. 99f5f0b objc messages have side effects, return true from hasLocalSideEffect, fixing: by Chris Lattner · 17 years ago
  63. 6f324ee Updated XCode project to reflect that DataflowValues.h and DataflowSolver.h have by Ted Kremenek · 17 years ago
  64. c091b5d This patch introduces a new class to keep track of class implementation info. It also adds more by Fariborz Jahanian · 17 years ago
  65. 766afb8 Make case sorting deterministic by not depending on pointer by Chris Lattner · 17 years ago
  66. 6ee700e Updated XCode project with locations of "Analysis" visitor header files. by Ted Kremenek · 17 years ago
  67. b6976a2 Added support to clang driver to view ASTs using GraphViz. This by Ted Kremenek · 17 years ago
  68. c39ca26 by Steve Naroff · 17 years ago
  69. ca8c600 Re-added UninitializedValues.cpp to the XCode project because the file was renamed. by Ted Kremenek · 17 years ago
  70. 253118b by Steve Naroff · 17 years ago
  71. 75fe3b1 Added ASTConsumer.h to XCode project. by Ted Kremenek · 17 years ago
  72. 948fd37 by Steve Naroff · 17 years ago
  73. 129758d switch the llvm emitter to ASTConsumer interface. by Chris Lattner · 17 years ago
  74. 5762937 Initial checkin of rewriter interface. It is just stubbed out for now. by Chris Lattner · 17 years ago
  75. 0acc9c9 by Steve Naroff · 17 years ago
  76. e79832f Added several files to XCode project file... by Ted Kremenek · 17 years ago
  77. 9bb759f by Steve Naroff · 17 years ago
  78. ebcc9b6 Patch to store ivars into interface class object. by Fariborz Jahanian · 17 years ago
  79. 2591e1b by Steve Naroff · 17 years ago
  80. 3957dae Patch for collecting ivars before running action on them. by Fariborz Jahanian · 17 years ago
  81. f7f1a1f by Steve Naroff · 17 years ago
  82. 95af50a Added files CFGStmtVisitor and DataflowStmtVisitor to XCode project. by Ted Kremenek · 17 years ago
  83. 7549489 by Steve Naroff · 17 years ago
  84. 4d627f5 Change ObjcMethodDecl class derivation. by Fariborz Jahanian · 17 years ago
  85. faed3bf Some small tweaks to the recent Objc support... by Steve Naroff · 17 years ago
  86. e805c4a Added "Dead Stores", a flow-sensitive checker that checks for stores by Ted Kremenek · 17 years ago
  87. aa04c51 Added an early implementation of Live-Variables analysis built on by Ted Kremenek · 17 years ago
  88. 304ed39 by Steve Naroff · 17 years ago
  89. 4f91099 by Steve Naroff · 17 years ago
  90. f2b0757 Fix a bug/missing-feature Ted noticed: the 'unused' warning should not by Chris Lattner · 17 years ago
  91. 08176a5 Added "PrinterHelper" interface (include/AST/PrinterHelper) that can by Ted Kremenek · 17 years ago
  92. 99b994b Teach the stmtdumper to dump location/range info when a SourceMgr is available. by Chris Lattner · 17 years ago
  93. ca01d0a Implement GCC-compatible layout and typing of enum constants and enum decl. by Chris Lattner · 17 years ago
  94. 209689a by Steve Naroff · 17 years ago
  95. 1de66eb add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  96. f7b2e55 refactor enough of the top-level parsing logic to parse and by Chris Lattner · 17 years ago
  97. 660e31d Teach emit-llvm for scalars to properly handle compound assignment by Chris Lattner · 17 years ago
  98. 744ebfe Added ExprCXX.cpp by Ted Kremenek · 17 years ago
  99. 9fba49a completely refactor codegen of scalar expressions out into its own CGExprScalar.cpp file. by Chris Lattner · 17 years ago
  100. 820dce8 rename two files. by Chris Lattner · 17 years ago