1. 8ffb159 Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDecl*. by Ted Kremenek · 16 years ago
  2. 34a6738 Don't use DeclStmt::getDecl() to serialize out DeclStmt; use TheDecl directly. by Ted Kremenek · 16 years ago
  3. 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 16 years ago
  4. 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 16 years ago
  5. e66f4e3 Fix ObjCPropertRefExpr to be able to encode all the information for by Daniel Dunbar · 16 years ago
  6. 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
  7. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
  8. 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 16 years ago
  9. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  10. 4958e5b Fix serialization of DeclStmt. by Ted Kremenek · 16 years ago
  11. a1a7824 Reorder serialization methods. by Ted Kremenek · 16 years ago
  12. be78424 Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 17 years ago
  13. 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 17 years ago
  14. c250aae capture whether a CharacterLiteral was wide or not in the AST. by Chris Lattner · 17 years ago
  15. e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 17 years ago
  16. ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 17 years ago
  17. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 17 years ago
  18. ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
  19. c5ae899 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 17 years ago
  20. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  21. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
  22. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/StmtSerialization.cpp]
  23. 81c018d improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 17 years ago
  24. 10c5fa3 Minor code cleanup. by Eli Friedman · 17 years ago
  25. 471733d Patch from Argiris Kirtzidis: by Ted Kremenek · 17 years ago
  26. d073987 Minor reordering of the serialization of the fields of MemberExpr to result by Ted Kremenek · 17 years ago
  27. 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 17 years ago
  28. dfab34a Handle simple asm statements correctly. by Anders Carlsson · 17 years ago
  29. ff98102 For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) by Ted Kremenek · 17 years ago
  30. a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
  31. b7e6bd7 - Hooked up deserialization of ObjCAtSynchronizedStmt Stmt::Create(). by Ted Kremenek · 17 years ago
  32. fa3ee8e AST for @synchronized. by Fariborz Jahanian · 17 years ago
  33. 34bc18b When serializing CompoundLiteralExpr, serialize out the file scope flag before by Ted Kremenek · 17 years ago
  34. e9b1219 by Steve Naroff · 17 years ago
  35. 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
  36. a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
  37. 205712a Minor tweak to serialization of ObjcForCollectionStmt: the three owned pointers by Ted Kremenek · 17 years ago
  38. c3b59d3 Moved serialization code for ObjcForCollectionStmt to be in alphabetical order by Ted Kremenek · 17 years ago
  39. 335a2d4 Minor changes as suggested by Chris L. by Fariborz Jahanian · 17 years ago
  40. 0196cab New declarations/defs for Objc2's foreach-statement. This is work in progress. by Fariborz Jahanian · 17 years ago
  41. 0fc53df Compute the proper sourcerange for an CompoundLiteralExpr. by Chris Lattner · 17 years ago
  42. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  43. 8f6dc77 Implemented serialization of: ObjCEncodeExpr, ObjCSelectorExpr. by Ted Kremenek · 17 years ago
  44. 46dc0a5 Implemented serialization of ObjCStringLiteral. by Ted Kremenek · 17 years ago
  45. 5bdd4e3 Implemented serialization for ObjcAtThrowStmt. by Ted Kremenek · 17 years ago
  46. 9c1efff Implemented serialization of ObjcAtTryStmt. by Ted Kremenek · 17 years ago
  47. 04be5aa Implemented serialization for ObjcAtFinallyStmt. by Ted Kremenek · 17 years ago
  48. af52677 Implemented serialization for ObjcAtCatchStmt. by Ted Kremenek · 17 years ago
  49. 720c4ec Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 17 years ago
  50. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  51. b235fc2 Store output and input operands as well as clobber information in the AsmStmt. Ted, could you please review the serialization/deserialization code? by Anders Carlsson · 17 years ago
  52. 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
  53. c37bdf0 Added assertion in serialization of DeclRefExprs. DeclRefExprs can only by Ted Kremenek · 17 years ago
  54. 767dd4b Added hack when serializing DeclRefExprs. This should probably be fixed. by Ted Kremenek · 17 years ago
  55. 378c151 Started separate section for method definitions for ObjC serialization. by Ted Kremenek · 17 years ago
  56. 6336f8d Implemented serialization of InitListExpr. by Ted Kremenek · 17 years ago
  57. 4b7d9ca Implemented serialization of CompoundLiteralExpr. by Ted Kremenek · 17 years ago
  58. 1f85acd Implemented serialization of AsmStmt (or rather what is currently implemented by Ted Kremenek · 17 years ago
  59. ea2fe9b Implemented serialization for SizeOfAlignOfTypeExpr. by Ted Kremenek · 17 years ago
  60. bd57e7c Implemented serialization for MemberExpr. by Ted Kremenek · 17 years ago
  61. 0f84c00 Renamed all serialization "Materialize" methods to "Create" to conform with by Ted Kremenek · 17 years ago
  62. ec0aa78 In Stmt serialization, renamed directEmit to EmitImpl and by Ted Kremenek · 17 years ago
  63. 7779db4 by Steve Naroff · 17 years ago
  64. aa33763 Implemented serialization of AddrLabelExpr. by Ted Kremenek · 17 years ago
  65. 103fc81 Revised serialization of CaseStmt to emit all of the owned pointers (its by Ted Kremenek · 17 years ago
  66. 83efb15 Implemented serialization of CompoundAssignOperator. by Ted Kremenek · 17 years ago
  67. 1049436 Implemented serialization of UnaryOperator. by Ted Kremenek · 17 years ago
  68. d7fe4ea Implemented serialization of CallExpr. by Ted Kremenek · 17 years ago
  69. 96fa54f Implemented serialization of ArraySubscriptExpr. by Ted Kremenek · 17 years ago
  70. 9971c9a Implemented serialization of CastExpr. by Ted Kremenek · 17 years ago
  71. a7c20dd Implemented serialization of ImplicitCastExpr. by Ted Kremenek · 17 years ago
  72. 28f3d80 Modified serialization of BinaryOperator and CaseStmt to use the new by Ted Kremenek · 17 years ago
  73. 7febad7 Implemented serialization of StringLiteral. by Ted Kremenek · 17 years ago
  74. 1c72de1 Implemented serialization of ImaginaryLiteral. by Ted Kremenek · 17 years ago
  75. 612c9b9 Implemented serialization of FloatingLiteral. by Ted Kremenek · 17 years ago
  76. 7338a82 Implemented serialization of CharacterLiteral. by Ted Kremenek · 17 years ago
  77. 1ba485e Implemented serialiation of PreDefinedExpr. by Ted Kremenek · 17 years ago
  78. 96f2242 Implemented serialization of ContinueStmt. by Ted Kremenek · 17 years ago
  79. 225a2d9 Implemented serialization of IndirectGotoStmt. by Ted Kremenek · 17 years ago
  80. 3f0767b Implemented serialization of GotoStmt. by Ted Kremenek · 17 years ago
  81. 07ba046 Implemented serialization for ForStmt. by Ted Kremenek · 17 years ago
  82. e3299ef Implemented serialization of DoStmt. by Ted Kremenek · 17 years ago
  83. 5572b94 Implemented serialization for WhileStmt. by Ted Kremenek · 17 years ago
  84. 4210f3d Implemented serialization of IfStmt. by Ted Kremenek · 17 years ago
  85. 9eea2ca Implemented serialization of SwitchStmt, CaseStmt, BreakStmt, DefaultStmt, by Ted Kremenek · 17 years ago
  86. b15132f Implemented serialization of LabelStmts. by Ted Kremenek · 17 years ago
  87. 4927be6 Added serialization/deserialization of NullStmts. by Ted Kremenek · 17 years ago
  88. 0965f44 Added serialization/deserialization of DeclStmts. by Ted Kremenek · 17 years ago
  89. 2dc9ac7 Overhauled serialization of statements. We no longer use specialized SerializeTrait<> classes, by Ted Kremenek · 17 years ago
  90. beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 17 years ago
  91. e522d85 Preliminary support for serializing statements. by Ted Kremenek · 17 years ago