1. 5d3f5a1 sizeof() return size in bytes, not bits, patch by Nuno Lopes! by Chris Lattner · 17 years ago
  2. 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
  3. 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
  4. 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
  5. f06273f Put back the flags field in the constant CF string type. by Anders Carlsson · 17 years ago
  6. d660322 Fixed bug in WalkaST_VisitDeclSubExprs where we failed to properly check if by Ted Kremenek · 17 years ago
  7. 9219928 by Steve Naroff · 17 years ago
  8. 91578f3 by Steve Naroff · 17 years ago
  9. c37bdf0 Added assertion in serialization of DeclRefExprs. DeclRefExprs can only by Ted Kremenek · 17 years ago
  10. da25685 Fixed bug in the serialization of FunctionDecls. We would incorrectly by Ted Kremenek · 17 years ago
  11. 767dd4b Added hack when serializing DeclRefExprs. This should probably be fixed. by Ted Kremenek · 17 years ago
  12. 378c151 Started separate section for method definitions for ObjC serialization. by Ted Kremenek · 17 years ago
  13. 49f109c by Steve Naroff · 17 years ago
  14. 049b168 Fixed bug in serialization of EnumConstantDecl where we improperly by Ted Kremenek · 17 years ago
  15. c12f51a Fixed bug when serializing QualTypes where we were serializing in the by Ted Kremenek · 17 years ago
  16. 21d50e1 Added QualType::ReadBackpatch to allow QualType initialization with by Ted Kremenek · 17 years ago
  17. 6336f8d Implemented serialization of InitListExpr. by Ted Kremenek · 17 years ago
  18. 4b7d9ca Implemented serialization of CompoundLiteralExpr. by Ted Kremenek · 17 years ago
  19. 5f670ed Added serialization of Union decls. by Ted Kremenek · 17 years ago
  20. 7e0339e Removed assertion inserted only for temporary debugging. by Ted Kremenek · 17 years ago
  21. 190eecf Added missing break statement. by Ted Kremenek · 17 years ago
  22. 583e008 Implemented serialization of EnumDecl and EnumConstantDecl. by Ted Kremenek · 17 years ago
  23. f9d56c8 Implemented serialization of FieldDecls. by Ted Kremenek · 17 years ago
  24. aad48b6 Implemented serialization of RecordDecls. Changed serialization of TagType to by Ted Kremenek · 17 years ago
  25. 2b14d46 Implemented serialization of FunctionTypeNoProto. by Ted Kremenek · 17 years ago
  26. ed1a01d Implemented serialization of VariableArrayTypes. by Ted Kremenek · 17 years ago
  27. b28166d Implemented serialization of TypedefType. by Ted Kremenek · 17 years ago
  28. da5dbb4 Implemented serialization of ConstantArrayType. by Ted Kremenek · 17 years ago
  29. a225400 Implemented serialization of TagTypes. by Ted Kremenek · 17 years ago
  30. ea0c6fb Modified ASTContext::getTagDeclType() to accept a NULL pointer for the passed by Ted Kremenek · 17 years ago
  31. 6de88a8 Type encoding for structs. by Fariborz Jahanian · 17 years ago
  32. 1f85acd Implemented serialization of AsmStmt (or rather what is currently implemented by Ted Kremenek · 17 years ago
  33. d437f23 Fixed bug in FunctionDecl serialization where we crashed when the by Ted Kremenek · 17 years ago
  34. ea2fe9b Implemented serialization for SizeOfAlignOfTypeExpr. by Ted Kremenek · 17 years ago
  35. bd57e7c Implemented serialization for MemberExpr. by Ted Kremenek · 17 years ago
  36. 03ed440 Rewrote type serialization to used the same methodology as we do for Decls. by Ted Kremenek · 17 years ago
  37. 1d09ecc improve handling of address of global when checking for by Chris Lattner · 17 years ago
  38. 0f84c00 Renamed all serialization "Materialize" methods to "Create" to conform with by Ted Kremenek · 17 years ago
  39. 928fd7f Restructured serialization code for decls to make it cleaner, easier to by Ted Kremenek · 17 years ago
  40. 232220c Patch to do statically typed ivar references. by Fariborz Jahanian · 17 years ago
  41. e1e6c0d by Steve Naroff · 17 years ago
  42. ec0aa78 In Stmt serialization, renamed directEmit to EmitImpl and by Ted Kremenek · 17 years ago
  43. 027282d by Steve Naroff · 17 years ago
  44. 7779db4 by Steve Naroff · 17 years ago
  45. 0330071 by Steve Naroff · 17 years ago
  46. 0416fb9 by Steve Naroff · 17 years ago
  47. c43d868 by Steve Naroff · 17 years ago
  48. 5d37e32 by Steve Naroff · 17 years ago
  49. 3ef5bc0 Fix backwards assert. by Chris Lattner · 17 years ago
  50. aa33763 Implemented serialization of AddrLabelExpr. by Ted Kremenek · 17 years ago
  51. 103fc81 Revised serialization of CaseStmt to emit all of the owned pointers (its by Ted Kremenek · 17 years ago
  52. 83efb15 Implemented serialization of CompoundAssignOperator. by Ted Kremenek · 17 years ago
  53. 1049436 Implemented serialization of UnaryOperator. by Ted Kremenek · 17 years ago
  54. d7fe4ea Implemented serialization of CallExpr. by Ted Kremenek · 17 years ago
  55. 96fa54f Implemented serialization of ArraySubscriptExpr. by Ted Kremenek · 17 years ago
  56. 9971c9a Implemented serialization of CastExpr. by Ted Kremenek · 17 years ago
  57. a7c20dd Implemented serialization of ImplicitCastExpr. by Ted Kremenek · 17 years ago
  58. 28f3d80 Modified serialization of BinaryOperator and CaseStmt to use the new by Ted Kremenek · 17 years ago
  59. 7febad7 Implemented serialization of StringLiteral. by Ted Kremenek · 17 years ago
  60. 1c72de1 Implemented serialization of ImaginaryLiteral. by Ted Kremenek · 17 years ago
  61. 612c9b9 Implemented serialization of FloatingLiteral. by Ted Kremenek · 17 years ago
  62. 89079ea Fixed an array overflow bug. by Fariborz Jahanian · 17 years ago
  63. 7338a82 Implemented serialization of CharacterLiteral. by Ted Kremenek · 17 years ago
  64. 1ba485e Implemented serialiation of PreDefinedExpr. by Ted Kremenek · 17 years ago
  65. 96f2242 Implemented serialization of ContinueStmt. by Ted Kremenek · 17 years ago
  66. 225a2d9 Implemented serialization of IndirectGotoStmt. by Ted Kremenek · 17 years ago
  67. 3f0767b Implemented serialization of GotoStmt. by Ted Kremenek · 17 years ago
  68. 07ba046 Implemented serialization for ForStmt. by Ted Kremenek · 17 years ago
  69. e3299ef Implemented serialization of DoStmt. by Ted Kremenek · 17 years ago
  70. 5572b94 Implemented serialization for WhileStmt. by Ted Kremenek · 17 years ago
  71. 4210f3d Implemented serialization of IfStmt. by Ted Kremenek · 17 years ago
  72. ab37309 by Steve Naroff · 17 years ago
  73. 9eea2ca Implemented serialization of SwitchStmt, CaseStmt, BreakStmt, DefaultStmt, by Ted Kremenek · 17 years ago
  74. 39f8f15 AST for objective-c's @throw statement and its pretty-printing. by Fariborz Jahanian · 17 years ago
  75. b15132f Implemented serialization of LabelStmts. by Ted Kremenek · 17 years ago
  76. 1e7eab4 Fixed a pretty-printer bug whereby a @try statement with no @finally seg faulted. by Fariborz Jahanian · 17 years ago
  77. 4927be6 Added serialization/deserialization of NullStmts. by Ted Kremenek · 17 years ago
  78. 0965f44 Added serialization/deserialization of DeclStmts. by Ted Kremenek · 17 years ago
  79. 2dc9ac7 Overhauled serialization of statements. We no longer use specialized SerializeTrait<> classes, by Ted Kremenek · 17 years ago
  80. a4559c3 Started work on new serialization approach within ASTContext to by Ted Kremenek · 17 years ago
  81. 31354ca QualType deserialization now requires that the underlying pointer type by Ted Kremenek · 17 years ago
  82. 82a5fe3 Patch for objc2's property ASTs, as well as pretty-priting the ASTs. by Fariborz Jahanian · 17 years ago
  83. 2ebc89f Misc. serialization changes to ASTContext and Decls. Serialization by Ted Kremenek · 17 years ago
  84. f7bf411 Implemented serialization of TypedefDecls. by Ted Kremenek · 17 years ago
  85. 8af8fe3 Added skeleton for dispatch of Decl serialization. by Ted Kremenek · 17 years ago
  86. b8712eb For serialization of ASTContext, added special-casing of serialization by Ted Kremenek · 17 years ago
  87. db611d5 by Steve Naroff · 17 years ago
  88. beaf299 by Steve Naroff · 17 years ago
  89. 7794cb8 pretty-print @try/@catch/@finally from AST as the validation of AST. by Fariborz Jahanian · 17 years ago
  90. 0497331 Added most of the boilerplate code for Decl serialization. Still a few by Ted Kremenek · 17 years ago
  91. 3b1191d AST build for @catch clause (this is work in progress). by Fariborz Jahanian · 17 years ago
  92. beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 17 years ago
  93. b210bd0 Bunch of class declarations for objective-c's @try-catch statement. by Fariborz Jahanian · 17 years ago
  94. 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
  95. a9a4a24 Implemented serialization of QualTypes within ASTContext. Clarified by Ted Kremenek · 17 years ago
  96. ecb01e6 Remaining work to collect objective-c's type qualifiers and use them to encode by Fariborz Jahanian · 17 years ago
  97. 4c00c26 Changed serialization/deserialization of BuiltinTypes to explicitly serialize by Ted Kremenek · 17 years ago
  98. 770951b add support for vector type compatibility checking. Patch by Nate Begeman. by Chris Lattner · 17 years ago
  99. 4ef8dd6 Implement test/Sema/init.c by treating functions as constants. by Chris Lattner · 17 years ago
  100. fee0452 Implemented more of serialization/deserialization for ASTContext. We now by Ted Kremenek · 17 years ago