- cdd808e abstract out buffer type a bit better by Chris Lattner · 17 years ago
- 28d1fe8 use insert instead of replacing 0 bytes with text :) by Chris Lattner · 17 years ago
- d425a27 minor cleanups by Chris Lattner · 17 years ago
- 74a0c77 use std::copy instead of memcpy for abstraction. by Chris Lattner · 17 years ago
- 116c089 Fix a rewriter bug that fariborz hit, when an @interface was the very very very by Chris Lattner · 17 years ago
- 103fc81 Revised serialization of CaseStmt to emit all of the owned pointers (its by Ted Kremenek · 17 years ago
- 83efb15 Implemented serialization of CompoundAssignOperator. by Ted Kremenek · 17 years ago
- 9b591f6 Add assert for the case that is not handled. struct { char a; short b:2; }; by Devang Patel · 17 years ago
- 1049436 Implemented serialization of UnaryOperator. by Ted Kremenek · 17 years ago
- b93f03a Keep track of beginning offset for the bit field that does not start at byte boundry. by Devang Patel · 17 years ago
- d7fe4ea Implemented serialization of CallExpr. by Ted Kremenek · 17 years ago
- 96fa54f Implemented serialization of ArraySubscriptExpr. by Ted Kremenek · 17 years ago
- 9971c9a Implemented serialization of CastExpr. by Ted Kremenek · 17 years ago
- a7c20dd Implemented serialization of ImplicitCastExpr. by Ted Kremenek · 17 years ago
- 28f3d80 Modified serialization of BinaryOperator and CaseStmt to use the new by Ted Kremenek · 17 years ago
- b70a88e Stay within 80 columns. by Devang Patel · 17 years ago
- 1c93c4e Updated VC++ build system by Hartmut Kaiser · 17 years ago
- 7febad7 Implemented serialization of StringLiteral. by Ted Kremenek · 17 years ago
- 1c72de1 Implemented serialization of ImaginaryLiteral. by Ted Kremenek · 17 years ago
- 612c9b9 Implemented serialization of FloatingLiteral. by Ted Kremenek · 17 years ago
- 21867b1 by Steve Naroff · 17 years ago
- 4402d81 Emit objective-c's meta-data at the end of rewriting to stdout. by Fariborz Jahanian · 17 years ago
- 45ecd5d by Steve Naroff · 17 years ago
- 89079ea Fixed an array overflow bug. by Fariborz Jahanian · 17 years ago
- 564576b Fixed typo. by Fariborz Jahanian · 17 years ago
- 7338a82 Implemented serialization of CharacterLiteral. by Ted Kremenek · 17 years ago
- 1ba485e Implemented serialiation of PreDefinedExpr. by Ted Kremenek · 17 years ago
- 96f2242 Implemented serialization of ContinueStmt. by Ted Kremenek · 17 years ago
- 225a2d9 Implemented serialization of IndirectGotoStmt. by Ted Kremenek · 17 years ago
- 2bd0392 by Steve Naroff · 17 years ago
- 3f0767b Implemented serialization of GotoStmt. by Ted Kremenek · 17 years ago
- 07ba046 Implemented serialization for ForStmt. by Ted Kremenek · 17 years ago
- e3299ef Implemented serialization of DoStmt. by Ted Kremenek · 17 years ago
- 5572b94 Implemented serialization for WhileStmt. by Ted Kremenek · 17 years ago
- 4210f3d Implemented serialization of IfStmt. by Ted Kremenek · 17 years ago
- ab37309 by Steve Naroff · 17 years ago
- 9eea2ca Implemented serialization of SwitchStmt, CaseStmt, BreakStmt, DefaultStmt, by Ted Kremenek · 17 years ago
- 7573098 by Steve Naroff · 17 years ago
- 39f8f15 AST for objective-c's @throw statement and its pretty-printing. by Fariborz Jahanian · 17 years ago
- 159e330 Start struct bit field laout work. This is far from complete. by Devang Patel · 17 years ago
- b15132f Implemented serialization of LabelStmts. by Ted Kremenek · 17 years ago
- 1e7eab4 Fixed a pretty-printer bug whereby a @try statement with no @finally seg faulted. by Fariborz Jahanian · 17 years ago
- 4927be6 Added serialization/deserialization of NullStmts. by Ted Kremenek · 17 years ago
- 0965f44 Added serialization/deserialization of DeclStmts. by Ted Kremenek · 17 years ago
- 2dc9ac7 Overhauled serialization of statements. We no longer use specialized SerializeTrait<> classes, by Ted Kremenek · 17 years ago
- f623c85 Added static inline method "ReadVal" to QualType for more succinct by Ted Kremenek · 17 years ago
- 957cf65 Rewrite for properties. by Fariborz Jahanian · 17 years ago
- 07c0fd9 Fixed typo in the name of "ReadPreamble". by Ted Kremenek · 17 years ago
- 24abb10 Fix an inverted conditional, by Fariborz Jahanian · 17 years ago
- a4559c3 Started work on new serialization approach within ASTContext to by Ted Kremenek · 17 years ago
- 31354ca QualType deserialization now requires that the underlying pointer type by Ted Kremenek · 17 years ago
- e00e28f Bug fix: inverted test condition to see if a serialized AST-bitcode by Ted Kremenek · 17 years ago
- 82a5fe3 Patch for objc2's property ASTs, as well as pretty-priting the ASTs. by Fariborz Jahanian · 17 years ago
- 2ebc89f Misc. serialization changes to ASTContext and Decls. Serialization by Ted Kremenek · 17 years ago
- 018b395 Revampled Serialization Tester to serialize and deserialize out an entire ASTContext and top-level decls. by Ted Kremenek · 17 years ago
- ccdbc5c by Steve Naroff · 17 years ago
- e3995fe improve decl merging logic to be more correct with by Chris Lattner · 17 years ago
- fcc2d26 Add better validation for array types when merging decls. Patch by Chris Lattner · 17 years ago
- c19b998 Added registration to deserialization engine of IdentifierInfo* as by Ted Kremenek · 17 years ago
- f7bf411 Implemented serialization of TypedefDecls. by Ted Kremenek · 17 years ago
- 4ac8121 In driver code implemented serialization of ASTContext. Working on serialization of simple ASTs. by Ted Kremenek · 17 years ago
- 8af8fe3 Added skeleton for dispatch of Decl serialization. by Ted Kremenek · 17 years ago
- b8712eb For serialization of ASTContext, added special-casing of serialization by Ted Kremenek · 17 years ago
- 909f02a Misc. fixes. 1) Resurrect meta-data generation turned off by a previous patch. by Fariborz Jahanian · 17 years ago
- aa499b6 Made methods "Emit" and "Materialize" in ASTContext (used for serialization) public. by Ted Kremenek · 17 years ago
- 8c35a9b Added TypeSerialization.cpp and DeclSerialization.cpp to the XCode project. by Ted Kremenek · 17 years ago
- 945c0a8 by Steve Naroff · 17 years ago
- e3abbf5 by Steve Naroff · 17 years ago
- b42f841 by Steve Naroff · 17 years ago
- 352336b by Steve Naroff · 17 years ago
- f11b7d0 by Steve Naroff · 17 years ago
- ab972d3 by Steve Naroff · 17 years ago
- db611d5 by Steve Naroff · 17 years ago
- beaf299 by Steve Naroff · 17 years ago
- 31e6c7d Fix ownership model of ParseAST to allow the dtor of by Chris Lattner · 17 years ago
- 8aab17e Provide both const and non-const accessor methods for @try and @finally ASTs. by Fariborz Jahanian · 17 years ago
- 606efdf Provide const and none-const version of methods accessing various @catch nodes by Fariborz Jahanian · 17 years ago
- 7794cb8 pretty-print @try/@catch/@finally from AST as the validation of AST. by Fariborz Jahanian · 17 years ago
- 0497331 Added most of the boilerplate code for Decl serialization. Still a few by Ted Kremenek · 17 years ago
- 54a2f07 Expose InsertText, fixing an oversight. by Chris Lattner · 17 years ago
- a1ff3e9 Generate code for member exprs. by Anders Carlsson · 17 years ago
- bd49a64 AST for @try statement. by Fariborz Jahanian · 17 years ago
- 524233c Updated VC++ build system by Hartmut Kaiser · 17 years ago
- 161a9c5 AST for @finally statement. by Fariborz Jahanian · 17 years ago
- 3b1191d AST build for @catch clause (this is work in progress). by Fariborz Jahanian · 17 years ago
- beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 17 years ago
- b210bd0 Bunch of class declarations for objective-c's @try-catch statement. by Fariborz Jahanian · 17 years ago
- 88a981b Rename classes and collections that maintain record layout information. by Devang Patel · 17 years ago
- a9a4a24 Implemented serialization of QualTypes within ASTContext. Clarified by Ted Kremenek · 17 years ago
- ecb01e6 Remaining work to collect objective-c's type qualifiers and use them to encode by Fariborz Jahanian · 17 years ago
- 0496005 by Steve Naroff · 17 years ago
- 4c00c26 Changed serialization/deserialization of BuiltinTypes to explicitly serialize by Ted Kremenek · 17 years ago
- 385cdaa Reverted unnecessary inlining of operator!=, since negating operator== is by Ted Kremenek · 17 years ago
- 54e6235 Propagate bitfield info. by Devang Patel · 17 years ago
- d5255f5 by Steve Naroff · 17 years ago
- 770951b add support for vector type compatibility checking. Patch by Nate Begeman. by Chris Lattner · 17 years ago
- 6c6a2db by Steve Naroff · 17 years ago
- 4ef8dd6 Implement test/Sema/init.c by treating functions as constants. by Chris Lattner · 17 years ago
- 0c67829 Put constant CFStrings in the __DATA,__cfstring section. by Anders Carlsson · 17 years ago
- d6a275f Stub out codegen for __builtin_constant_p. Remove any implicit cast exprs in the call to __builtin___CFStringMakeConstantString. by Anders Carlsson · 17 years ago