- 2a3009a Semantic analysis, ASTs, and unqualified name lookup support for C++ by Douglas Gregor · 17 years ago
- 64650af Add a macro-based enumeration of all of the Decl nodes (like we do by Douglas Gregor · 17 years ago
- 3e97049 Remove many references to ASTContext::getAllocator(), replacing them with calls to the recently added placement new (which uses ASTContext's allocator for memory). Also added ASTContext::Deallocate(). by Steve Naroff · 17 years ago
- ddf32da Static Analyzer: When generating plists for errors reports, generate one plist file per translation unit that contains all of the diagnostics. by Ted Kremenek · 17 years ago
- 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 17 years ago
- 6037fcb Replace DeclContext's vector of ScopedDecl pointers with a linked list by Douglas Gregor · 17 years ago
- bcbffc4 Initial implementation of anonymous unions (and, as a GNU extension, by Douglas Gregor · 17 years ago
- 074149e Introduce support for "transparent" DeclContexts, which are by Douglas Gregor · 17 years ago
- 6b54bd1 Fix an uninitialized-variable warning by Douglas Gregor · 17 years ago
- 4306d3c Finish up saving original parameter type and by Fariborz Jahanian · 17 years ago
- 73da9e4 introducing ParmVarWithOriginalTypeDecl class to by Fariborz Jahanian · 17 years ago
- f44515a Make linkage-specifications hold on to all of their declarations by Douglas Gregor · 17 years ago
- 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 17 years ago
- 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 17 years ago
- e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 17 years ago
- 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 17 years ago
- b0b847e Use ReadPtr, not ReadUIntPtr through a reinterpret_cast. by Argyrios Kyrtzidis · 17 years ago
- 5239304 Introduce ScopedDecl::getLexicalDeclContext() which is different from ScopedDecl::getDeclContext() when there are nested-names. by Argyrios Kyrtzidis · 17 years ago
- dc5ddbf Properly deserialize ParamInfo of FunctionDecl. by Argyrios Kyrtzidis · 17 years ago
- 8e9bebd Preliminary support for function overloading by Douglas Gregor · 17 years ago
- 35bc082 Simplify handling of struct/union/class tags. by Argyrios Kyrtzidis · 17 years ago
- 33d34a6 silence some release-assert warnings. by Chris Lattner · 17 years ago
- 56ee689 - Add BlockDecl AST node. - Modify BlockExpr to reference the BlockDecl. by Steve Naroff · 17 years ago
- df042e6 Remove "NextDecl" from RecordDecl. This change touches many files that where RecordDecl or CXXRecordDecl was constructed, always with an argument of 'NULL' for the previous declaration. by Ted Kremenek · 17 years ago
- 6812a73 RecordDecl serialization: by Ted Kremenek · 17 years ago
- 7643536 -Add DeclChain member to DeclContext. by Argyrios Kyrtzidis · 17 years ago
- d3bb44f Added new C++ AST Decl subclasses. by Argyrios Kyrtzidis · 17 years ago
- 3bbc198 When serializing FunctionDecl, serialize out a reference to the previous declaration. by Ted Kremenek · 17 years ago
- adbb619 Unbreak build. by Ted Kremenek · 17 years ago
- 81edea8 Grammar cleanup in comment. Remove redundant assignment. by Ted Kremenek · 17 years ago
- 9f3e89a When reading in the DeclCtx during deserialization, register the DeclCtx of the by Ted Kremenek · 17 years ago
- 2d1c5d3 Parsing of namespaces: by Argyrios Kyrtzidis · 17 years ago
- 9fdf9c6 "This patch renames by Chris Lattner · 17 years ago
- ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
- 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
- f3c63ae Use the ASTContext allocator when creating deserialized Decl objects. by Sam Bishop · 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
- b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
- b6e64c5 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 17 years ago
- 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
- 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 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/DeclSerialization.cpp]
- a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago
- 843e934 fix typos by Gabor Greif · 17 years ago
- dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 18 years ago
- 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 18 years ago
- 61900f0 Handle top-level asm declarations. by Anders Carlsson · 18 years ago
- c6fdc34 Add first pieces of support for parsing and representing by Chris Lattner · 18 years ago
- a526c5c Substituted all instances of the string "Objc" for "ObjC". This fixes by Ted Kremenek · 18 years ago
- 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
- 137bd91 Updated serialization of ParmVarDecl to serialize out objcDeclQualifier. by Ted Kremenek · 18 years ago
- de7b4cd Moved ObjcDeclQualifier to ParmVarDecl from VarDecl. by Fariborz Jahanian · 18 years ago
- da25685 Fixed bug in the serialization of FunctionDecls. We would incorrectly by Ted Kremenek · 18 years ago
- 049b168 Fixed bug in serialization of EnumConstantDecl where we improperly by Ted Kremenek · 18 years ago
- 21d50e1 Added QualType::ReadBackpatch to allow QualType initialization with by Ted Kremenek · 18 years ago
- 5f670ed Added serialization of Union decls. by Ted Kremenek · 18 years ago
- 583e008 Implemented serialization of EnumDecl and EnumConstantDecl. by Ted Kremenek · 18 years ago
- f9d56c8 Implemented serialization of FieldDecls. by Ted Kremenek · 18 years ago
- aad48b6 Implemented serialization of RecordDecls. Changed serialization of TagType to by Ted Kremenek · 18 years ago
- d437f23 Fixed bug in FunctionDecl serialization where we crashed when the by Ted Kremenek · 18 years ago
- 928fd7f Restructured serialization code for decls to make it cleaner, easier to by Ted Kremenek · 18 years ago
- 2ebc89f Misc. serialization changes to ASTContext and Decls. Serialization by Ted Kremenek · 18 years ago
- f7bf411 Implemented serialization of TypedefDecls. by Ted Kremenek · 18 years ago
- 8af8fe3 Added skeleton for dispatch of Decl serialization. by Ted Kremenek · 18 years ago
- 0497331 Added most of the boilerplate code for Decl serialization. Still a few by Ted Kremenek · 18 years ago
- beb7713 Simplified Serialization code for SourceLocation and SourceRange, and by Ted Kremenek · 18 years ago
- 2f1f8cb Added skeleton for Decl serialization. by Ted Kremenek · 18 years ago