| Commit message (Expand) | Author | Age | Files | Lines |
* | In the latest episode of "Deserializing bugs caused by accessors" the series ... | Argyrios Kyrtzidis | 2011-01-03 | 1 | -9/+9 |
* | Add an AST representation for non-type template parameter | Douglas Gregor | 2010-12-23 | 1 | -1/+2 |
* | Eliminate the branching in QualType::getTypePtr() by providing a | Douglas Gregor | 2010-12-10 | 1 | -2/+2 |
* | When an "inline" declaration was followed by a definition not marked | Douglas Gregor | 2010-12-09 | 1 | -1/+2 |
* | Re-implement caching for the linkage calculation of declarations. | Douglas Gregor | 2010-12-06 | 1 | -2/+2 |
* | Revert r120808, my previous implementation of caching for the linkage | Douglas Gregor | 2010-12-06 | 1 | -2/+2 |
* | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -0/+1 |
* | Implement caching for the linkage and visibility calculations of | Douglas Gregor | 2010-12-03 | 1 | -2/+2 |
* | Major anonymous union/struct redesign. | Francois Pichet | 2010-11-21 | 1 | -0/+16 |
* | For an Objective-C @synthesize statement, e.g., | Douglas Gregor | 2010-11-17 | 1 | -3/+5 |
* | Replace UsingDecl's SmallPtrSet of UsingShadowDecls with a linked list to avo... | Argyrios Kyrtzidis | 2010-11-10 | 1 | -11/+2 |
* | Remove broken support for variadic templates, along with the various | Douglas Gregor | 2010-11-07 | 1 | -3/+5 |
* | Make the deserialization of C++ base class specifiers lazy, improving | Douglas Gregor | 2010-10-29 | 1 | -14/+8 |
* | Remove an assertion that hit on legitimate cases. A redeclaration may have lo... | Argyrios Kyrtzidis | 2010-10-28 | 1 | -6/+0 |
* | Use the ASTMutationListener to track added template specializations in a chai... | Argyrios Kyrtzidis | 2010-10-28 | 1 | -14/+4 |
* | Make AST deserialization for class template specializations lazier, by | Douglas Gregor | 2010-10-27 | 1 | -16/+31 |
* | Lazily load the next friend in the chain of FriendDecls, to eliminate | Douglas Gregor | 2010-10-27 | 1 | -1/+1 |
* | Lazily load the "next" namespace in the chain of NamespaceDecls, to | Douglas Gregor | 2010-10-27 | 1 | -4/+3 |
* | Keep track in chained PCH of implicit members that were added after the defin... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -0/+4 |
* | Start fleshing out ASTMutationListener; notify when a tag definition is compl... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -1/+13 |
* | Refactoring. | Argyrios Kyrtzidis | 2010-10-24 | 1 | -8/+23 |
* | Put the mechanism in place to track modifications in an AST entity that were ... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -0/+29 |
* | Simplify and "robust-ify" the way that CXXRecord references point to the defi... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -40/+27 |
* | Minor refactoring; Pull reading/writing DefinitionData out into a function. | Argyrios Kyrtzidis | 2010-10-24 | 1 | -49/+54 |
* | Modify the assumptions of an assert; the updated latest redeclaration can hav... | Argyrios Kyrtzidis | 2010-10-20 | 1 | -6/+6 |
* | Minor optimization; Try to iterator over redeclarations only when necessary. | Argyrios Kyrtzidis | 2010-10-20 | 1 | -9/+8 |
* | Fix issue with chained PCH where forward references did not pick up later def... | Argyrios Kyrtzidis | 2010-10-20 | 1 | -0/+18 |
* | Read/write declaration attributes from/to PCH properly. Embed them in the dec... | Argyrios Kyrtzidis | 2010-10-18 | 1 | -16/+5 |
* | White-listing templated-scope friend decls is a good idea, but doing it | John McCall | 2010-10-16 | 1 | -0/+1 |
* | Read/write to/from PCH DeclarationNameLocs, DeclarationNameInfos and Qualifie... | Argyrios Kyrtzidis | 2010-10-15 | 1 | -10/+30 |
* | Store in PCH the key function of C++ class to avoid deserializing the complet... | Argyrios Kyrtzidis | 2010-10-14 | 1 | -0/+9 |
* | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -1/+6 |
* | Serialize the "inline" bit for namespaces. Fixes <rdar://problem/8515069>. | Douglas Gregor | 2010-10-05 | 1 | -0/+1 |
* | Give every file that ASTReader loads a type: module, PCH, precompiled preambl... | Sebastian Redl | 2010-10-05 | 1 | -1/+1 |
* | Thread PerFileData through the ASTReader again, this time with the LLVM changes. | Sebastian Redl | 2010-10-05 | 1 | -98/+110 |
* | Revert r115336 ("Thread PerFileData through everything."), because | Douglas Gregor | 2010-10-01 | 1 | -110/+98 |
* | Thread PerFileData through everything. This allows us to remap stuff later. | Sebastian Redl | 2010-10-01 | 1 | -98/+110 |
* | Kill FunctionDecl's IsCopyAssignment bit; it duplicated what could | Douglas Gregor | 2010-09-27 | 1 | -1/+0 |
* | Fix C++ PCH issue. | Argyrios Kyrtzidis | 2010-09-13 | 1 | -3/+7 |
* | Avoid setters in ASTDeclReader::VisitClassTemplatePartialSpecializationDecl. | Argyrios Kyrtzidis | 2010-09-13 | 1 | -11/+13 |
* | Avoid setters in ASTDeclReader::VisitClassTemplateSpecializationDecl. | Argyrios Kyrtzidis | 2010-09-13 | 1 | -12/+21 |
* | Avoid setters in ASTDeclReader::VisitCXXRecordDecl. | Argyrios Kyrtzidis | 2010-09-13 | 1 | -4/+5 |
* | Fix C++ PCH issue. | Argyrios Kyrtzidis | 2010-09-09 | 1 | -14/+21 |
* | Re-enable CheckAccessDeclContext and make sure it doesn't trigger assertions. | Argyrios Kyrtzidis | 2010-09-08 | 1 | -2/+1 |
* | Fix C++ PCH issues. | Argyrios Kyrtzidis | 2010-09-08 | 1 | -13/+32 |
* | Implement libclang support for using declarations. Clang actually uses | Douglas Gregor | 2010-09-01 | 1 | -4/+4 |
* | Implement libclang support for using directives (cursor + visitation + | Douglas Gregor | 2010-09-01 | 1 | -7/+6 |
* | Split ObjCInterfaceDecl::ReferencedProtocols into two lists: ReferencedProtoc... | Ted Kremenek | 2010-09-01 | 1 | -0/+13 |
* | Improve location information in the representation of namespace | Douglas Gregor | 2010-09-01 | 1 | -4/+3 |
* | De-memberify the VarDecl and FunctionDecl StorageClass enums. | John McCall | 2010-08-26 | 1 | -6/+6 |