- 4c734c4 Fix serialization of DeclStmt. by Ted Kremenek · 17 years ago
- c50a5a3 Reorder serialization methods. by Ted Kremenek · 17 years ago
- 1f843bc Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 17 years ago
- 2719e98 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 17 years ago
- 1aaf71c capture whether a CharacterLiteral was wide or not in the AST. by Chris Lattner · 17 years ago
- 6f78625 Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 17 years ago
- 05391d2 Add basic support for properties references (a missing feature). by Steve Naroff · 17 years ago
- 9ed3e77 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 17 years ago
- d029a6f Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
- 2e33547 Extend InitListExpr API/IMPL to support arbitrary add/remove (in support of the initializer rewrite I am doing). by Steve Naroff · 17 years ago
- 3e254fb Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
- e1bf351 Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
- be1a7a0 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/StmtSerialization.cpp]
- a4ff427 improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 17 years ago
- fd67f8a Minor code cleanup. by Eli Friedman · 17 years ago
- f91bc1d Patch from Argiris Kirtzidis: by Ted Kremenek · 17 years ago
- 757155b Minor reordering of the serialization of the fields of MemberExpr to result by Ted Kremenek · 18 years ago
- 76b4983 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 18 years ago
- de6a9c4 Handle simple asm statements correctly. by Anders Carlsson · 18 years ago
- 61aa7f9 For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) by Ted Kremenek · 18 years ago
- 499bf41 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 18 years ago
- 33185e6 - Hooked up deserialization of ObjCAtSynchronizedStmt Stmt::Create(). by Ted Kremenek · 18 years ago
- c9fd4d1 AST for @synchronized. by Fariborz Jahanian · 18 years ago
- 0d44683 When serializing CompoundLiteralExpr, serialize out the file scope flag before by Ted Kremenek · 18 years ago
- be37fc0 by Steve Naroff · 18 years ago
- df2b095 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 18 years ago
- 42730c5 Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 18 years ago
- 7469aa8 Minor tweak to serialization of ObjcForCollectionStmt: the three owned pointers by Ted Kremenek · 18 years ago
- 0db972d Moved serialization code for ObjcForCollectionStmt to be in alphabetical order by Ted Kremenek · 18 years ago
- cadb070 Minor changes as suggested by Chris L. by Fariborz Jahanian · 18 years ago
- 9e920f3 New declarations/defs for Objc2's foreach-statement. This is work in progress. by Fariborz Jahanian · 18 years ago
- 386ab8a Compute the proper sourcerange for an CompoundLiteralExpr. by Chris Lattner · 18 years ago
- 959e5be Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
- 1defb8d Implemented serialization of: ObjCEncodeExpr, ObjCSelectorExpr. by Ted Kremenek · 18 years ago
- abb4f6a Implemented serialization of ObjCStringLiteral. by Ted Kremenek · 18 years ago
- 4611556 Implemented serialization for ObjcAtThrowStmt. by Ted Kremenek · 18 years ago
- b006fb3 Implemented serialization of ObjcAtTryStmt. by Ted Kremenek · 18 years ago
- 54ef3bd Implemented serialization for ObjcAtFinallyStmt. by Ted Kremenek · 18 years ago
- a0c7df3 Implemented serialization for ObjcAtCatchStmt. by Ted Kremenek · 18 years ago
- ddedbe2 Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 18 years ago
- 759f45d Keep track of whether the asm is volatile or not. by Anders Carlsson · 18 years ago
- 965d520 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 · 18 years ago
- 076c111 Store inline asm code in the AST. by Anders Carlsson · 18 years ago
- 9e30430 Added assertion in serialization of DeclRefExprs. DeclRefExprs can only by Ted Kremenek · 18 years ago
- eaf3386 Added hack when serializing DeclRefExprs. This should probably be fixed. by Ted Kremenek · 18 years ago
- a7fb3a5 Started separate section for method definitions for ObjC serialization. by Ted Kremenek · 18 years ago
- 387539f Implemented serialization of InitListExpr. by Ted Kremenek · 18 years ago
- 2d85710 Implemented serialization of CompoundLiteralExpr. by Ted Kremenek · 18 years ago
- 1dfb01c Implemented serialization of AsmStmt (or rather what is currently implemented by Ted Kremenek · 18 years ago
- deac9c3 Implemented serialization for SizeOfAlignOfTypeExpr. by Ted Kremenek · 18 years ago
- 24160d3 Implemented serialization for MemberExpr. by Ted Kremenek · 18 years ago
- acba361 Renamed all serialization "Materialize" methods to "Create" to conform with by Ted Kremenek · 18 years ago
- d732bbd In Stmt serialization, renamed directEmit to EmitImpl and by Ted Kremenek · 18 years ago
- 5eb2a4a by Steve Naroff · 18 years ago
- 3a4dfc1 Implemented serialization of AddrLabelExpr. by Ted Kremenek · 18 years ago
- 6d4adb2 Revised serialization of CaseStmt to emit all of the owned pointers (its by Ted Kremenek · 18 years ago
- dc4fc27 Implemented serialization of CompoundAssignOperator. by Ted Kremenek · 18 years ago
- e21b584 Implemented serialization of UnaryOperator. by Ted Kremenek · 18 years ago
- 7a87333 Implemented serialization of CallExpr. by Ted Kremenek · 18 years ago
- d701749 Implemented serialization of ArraySubscriptExpr. by Ted Kremenek · 18 years ago
- 705cb5d Implemented serialization of CastExpr. by Ted Kremenek · 18 years ago
- 8c9833b Implemented serialization of ImplicitCastExpr. by Ted Kremenek · 18 years ago
- b9b543d Modified serialization of BinaryOperator and CaseStmt to use the new by Ted Kremenek · 18 years ago
- efa540d Implemented serialization of StringLiteral. by Ted Kremenek · 18 years ago
- 105f21a Implemented serialization of ImaginaryLiteral. by Ted Kremenek · 18 years ago
- 18abf6b Implemented serialization of FloatingLiteral. by Ted Kremenek · 18 years ago
- 42f440c Implemented serialization of CharacterLiteral. by Ted Kremenek · 18 years ago
- 539a418 Implemented serialiation of PreDefinedExpr. by Ted Kremenek · 18 years ago
- 6c4dba7 Implemented serialization of ContinueStmt. by Ted Kremenek · 18 years ago
- e7d27d5 Implemented serialization of IndirectGotoStmt. by Ted Kremenek · 18 years ago
- affd8be Implemented serialization of GotoStmt. by Ted Kremenek · 18 years ago
- f34da90 Implemented serialization for ForStmt. by Ted Kremenek · 18 years ago
- ab97f4d Implemented serialization of DoStmt. by Ted Kremenek · 18 years ago
- 55e559a Implemented serialization for WhileStmt. by Ted Kremenek · 18 years ago
- ca22d35 Implemented serialization of IfStmt. by Ted Kremenek · 18 years ago
- 249d7cd Implemented serialization of SwitchStmt, CaseStmt, BreakStmt, DefaultStmt, by Ted Kremenek · 18 years ago
- 56a74bb Implemented serialization of LabelStmts. by Ted Kremenek · 18 years ago
- 25aaa26 Added serialization/deserialization of NullStmts. by Ted Kremenek · 18 years ago
- 2bd6e65 Added serialization/deserialization of DeclStmts. by Ted Kremenek · 18 years ago
- 4728110 Overhauled serialization of statements. We no longer use specialized SerializeTrait<> classes, by Ted Kremenek · 18 years ago
- 414bf8f Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 18 years ago
- 215c2c8 Preliminary support for serializing statements. by Ted Kremenek · 18 years ago