- 8ffb159 Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDecl*. by Ted Kremenek · 16 years ago
- 34a6738 Don't use DeclStmt::getDecl() to serialize out DeclStmt; use TheDecl directly. by Ted Kremenek · 16 years ago
- 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 16 years ago
- 4eb206b Add semantic analysis for "blocks". by Steve Naroff · 16 years ago
- e66f4e3 Fix ObjCPropertRefExpr to be able to encode all the information for by Daniel Dunbar · 16 years ago
- 987a14b Add support for C++'s "type-specifier ( expression-list )" expression: by Argyrios Kyrtzidis · 16 years ago
- 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
- 76de9d7 Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). by Steve Naroff · 16 years ago
- d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
- 4958e5b Fix serialization of DeclStmt. by Ted Kremenek · 16 years ago
- a1a7824 Reorder serialization methods. by Ted Kremenek · 16 years ago
- be78424 Update serialization for ObjCMessageExpr to handle additional bit-swizziling of receiver information. by Ted Kremenek · 17 years ago
- 5549976 This patch is motivated by numerous strict-aliasing warnings when compiling by Ted Kremenek · 17 years ago
- c250aae capture whether a CharacterLiteral was wide or not in the AST. by Chris Lattner · 17 years ago
- e3e9add Fix <rdar://problem/5979875> clang on xcode: error: use of undeclared identifier 'super' by Steve Naroff · 17 years ago
- ae78407 Add basic support for properties references (a missing feature). by Steve Naroff · 17 years ago
- f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 17 years ago
- ea958e57 Use pointer swizziling to unify in ObjCMessageExpr the receiver and classname "fields". This saves us a pointer. by Ted Kremenek · 17 years ago
- 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
- 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
- e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
- bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 17 years ago[Renamed from AST/StmtSerialization.cpp]
- 81c018d improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 17 years ago
- 10c5fa3 Minor code cleanup. by Eli Friedman · 17 years ago
- 471733d Patch from Argiris Kirtzidis: by Ted Kremenek · 17 years ago
- d073987 Minor reordering of the serialization of the fields of MemberExpr to result by Ted Kremenek · 17 years ago
- 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 17 years ago
- dfab34a Handle simple asm statements correctly. by Anders Carlsson · 17 years ago
- ff98102 For ObjCAtCatchStmt, removed field 'NextAtCatchStmt' (which referenced the next @catch) by Ted Kremenek · 17 years ago
- a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
- b7e6bd7 - Hooked up deserialization of ObjCAtSynchronizedStmt Stmt::Create(). by Ted Kremenek · 17 years ago
- fa3ee8e AST for @synchronized. by Fariborz Jahanian · 17 years ago
- 34bc18b When serializing CompoundLiteralExpr, serialize out the file scope flag before by Ted Kremenek · 17 years ago
- e9b1219 by Steve Naroff · 17 years ago
- 7571228 Allow messaging expression as foreach's collection expression. by Fariborz Jahanian · 17 years ago
- a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 17 years ago
- 205712a Minor tweak to serialization of ObjcForCollectionStmt: the three owned pointers by Ted Kremenek · 17 years ago
- c3b59d3 Moved serialization code for ObjcForCollectionStmt to be in alphabetical order by Ted Kremenek · 17 years ago
- 335a2d4 Minor changes as suggested by Chris L. by Fariborz Jahanian · 17 years ago
- 0196cab New declarations/defs for Objc2's foreach-statement. This is work in progress. by Fariborz Jahanian · 17 years ago
- 0fc53df Compute the proper sourcerange for an CompoundLiteralExpr. by Chris Lattner · 17 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
- 8f6dc77 Implemented serialization of: ObjCEncodeExpr, ObjCSelectorExpr. by Ted Kremenek · 17 years ago
- 46dc0a5 Implemented serialization of ObjCStringLiteral. by Ted Kremenek · 17 years ago
- 5bdd4e3 Implemented serialization for ObjcAtThrowStmt. by Ted Kremenek · 17 years ago
- 9c1efff Implemented serialization of ObjcAtTryStmt. by Ted Kremenek · 17 years ago
- 04be5aa Implemented serialization for ObjcAtFinallyStmt. by Ted Kremenek · 17 years ago
- af52677 Implemented serialization for ObjcAtCatchStmt. by Ted Kremenek · 17 years ago
- 720c4ec Added "isExact" field to FloatingLiteral. This flag indicates whether or not by Ted Kremenek · 17 years ago
- 39c47b5 Keep track of whether the asm is volatile or not. by Anders Carlsson · 17 years ago
- 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
- 6a0ef4b Store inline asm code in the AST. by Anders Carlsson · 17 years ago
- c37bdf0 Added assertion in serialization of DeclRefExprs. DeclRefExprs can only by Ted Kremenek · 17 years ago
- 767dd4b Added hack when serializing DeclRefExprs. This should probably be fixed. by Ted Kremenek · 17 years ago
- 378c151 Started separate section for method definitions for ObjC serialization. by Ted Kremenek · 17 years ago
- 6336f8d Implemented serialization of InitListExpr. by Ted Kremenek · 17 years ago
- 4b7d9ca Implemented serialization of CompoundLiteralExpr. by Ted Kremenek · 17 years ago
- 1f85acd Implemented serialization of AsmStmt (or rather what is currently implemented by Ted Kremenek · 17 years ago
- ea2fe9b Implemented serialization for SizeOfAlignOfTypeExpr. by Ted Kremenek · 17 years ago
- bd57e7c Implemented serialization for MemberExpr. by Ted Kremenek · 17 years ago
- 0f84c00 Renamed all serialization "Materialize" methods to "Create" to conform with by Ted Kremenek · 17 years ago
- ec0aa78 In Stmt serialization, renamed directEmit to EmitImpl and by Ted Kremenek · 17 years ago
- 7779db4 by Steve Naroff · 17 years ago
- aa33763 Implemented serialization of AddrLabelExpr. by Ted Kremenek · 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
- 1049436 Implemented serialization of UnaryOperator. by Ted Kremenek · 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
- 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
- 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
- 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
- 9eea2ca Implemented serialization of SwitchStmt, CaseStmt, BreakStmt, DefaultStmt, by Ted Kremenek · 17 years ago
- b15132f Implemented serialization of LabelStmts. by Ted Kremenek · 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
- beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 17 years ago
- e522d85 Preliminary support for serializing statements. by Ted Kremenek · 17 years ago