| Commit message (Expand) | Author | Age | Files | Lines |
| * | Flush statements after writing each DECL_CXX_BASE_SPECIFIERS node | Douglas Gregor | 2010-10-30 | 2 | -3/+3 |
| * | Make the deserialization of macro definitions lazy, so that we can | Douglas Gregor | 2010-10-30 | 1 | -1/+50 |
| * | Make the deserialization of C++ base class specifiers lazy, improving | Douglas Gregor | 2010-10-29 | 4 | -22/+162 |
| * | Switch case IDs conflict between chained PCHs; since there is no need to be g... | Argyrios Kyrtzidis | 2010-10-28 | 3 | -0/+14 |
| * | 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 when a named decl gets added to a DeclCo... | Argyrios Kyrtzidis | 2010-10-28 | 2 | -18/+23 |
| * | Properly add chained template specializations. | Argyrios Kyrtzidis | 2010-10-28 | 1 | -0/+2 |
| * | Fix the re-serializing decls in a chained PCH mechanism. | Argyrios Kyrtzidis | 2010-10-28 | 1 | -5/+4 |
| * | Use the ASTMutationListener to track added template specializations in a chai... | Argyrios Kyrtzidis | 2010-10-28 | 5 | -45/+16 |
| * | 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 | 2 | -2/+2 |
| * | Lazily load the "next" namespace in the chain of NamespaceDecls, to | Douglas Gregor | 2010-10-27 | 1 | -4/+3 |
| * | No really, we don't have a retain/release system for statements/expressions | John McCall | 2010-10-26 | 1 | -3/+0 |
| * | When de-serializing a type that is supposed to be canonical, call | Douglas Gregor | 2010-10-26 | 1 | -0/+4 |
| * | Improve the tracking of source locations for parentheses in constructor calls. | Chandler Carruth | 2010-10-25 | 2 | -5/+9 |
| * | Keep track in chained PCH of implicit members that were added after the defin... | Argyrios Kyrtzidis | 2010-10-24 | 3 | -1/+20 |
| * | Start fleshing out ASTMutationListener; notify when a tag definition is compl... | Argyrios Kyrtzidis | 2010-10-24 | 3 | -1/+46 |
| * | Introduce a DeclsToRewrite field in ASTWrite, used for collecting the decls t... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -0/+7 |
| * | Some method renaming, no functionality change. | Argyrios Kyrtzidis | 2010-10-24 | 1 | -4/+4 |
| * | Refactoring. | Argyrios Kyrtzidis | 2010-10-24 | 3 | -82/+96 |
| * | Put the mechanism in place to track modifications in an AST entity that were ... | Argyrios Kyrtzidis | 2010-10-24 | 4 | -16/+94 |
| * | Simplify and "robust-ify" the way that CXXRecord references point to the defi... | Argyrios Kyrtzidis | 2010-10-24 | 3 | -58/+35 |
| * | Minor refactoring; Pull reading/writing DefinitionData out into a function. | Argyrios Kyrtzidis | 2010-10-24 | 2 | -89/+96 |
| * | Substantially revise how clang computes the visibility of a declaration to | John McCall | 2010-10-22 | 1 | -1/+1 |
| * | Reorganize predefined macros for all Windows targets. | Michael J. Spencer | 2010-10-21 | 2 | -0/+3 |
| * | Fix Whitespace. | Michael J. Spencer | 2010-10-21 | 2 | -65/+65 |
| * | Modify the assumptions of an assert; the updated latest redeclaration can hav... | Argyrios Kyrtzidis | 2010-10-20 | 1 | -6/+6 |
| * | Extend the preprocessing record and libclang with support for | Douglas Gregor | 2010-10-20 | 2 | -17/+84 |
| * | Fix chained PCH issue; make sure all visible decls that will be put into a UP... | Argyrios Kyrtzidis | 2010-10-20 | 1 | -1/+18 |
| * | 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 |
| * | Putting back safe fixes 116836,116837,116838 | Andrew Trick | 2010-10-19 | 1 | -1/+1 |
| * | Reverting 116836,116837,116838 until we resolve the getLangStandardForKind fa... | Andrew Trick | 2010-10-19 | 1 | -1/+1 |
| * | Fix up the comments for creating ParmVarDeclAbbrev to reflect reality. | Argyrios Kyrtzidis | 2010-10-19 | 1 | -1/+1 |
| * | Read/write declaration attributes from/to PCH properly. Embed them in the dec... | Argyrios Kyrtzidis | 2010-10-18 | 3 | -25/+9 |
| * | White-listing templated-scope friend decls is a good idea, but doing it | John McCall | 2010-10-16 | 2 | -0/+2 |
| * | Eradicate IsSuper field from ObjCImplicitSetterGetterRefExprClass | Fariborz Jahanian | 2010-10-15 | 2 | -2/+0 |
| * | Read/write to/from PCH DeclarationNameLocs, DeclarationNameInfos and Qualifie... | Argyrios Kyrtzidis | 2010-10-15 | 6 | -36/+166 |
| * | When performing typo correction, look through the set of known | Douglas Gregor | 2010-10-14 | 1 | -0/+62 |
| * | At Fariborz's request, a somewhat cleaner bit-combining hack. | John McCall | 2010-10-14 | 1 | -3/+3 |
| * | Store in PCH the key function of C++ class to avoid deserializing the complet... | Argyrios Kyrtzidis | 2010-10-14 | 2 | -0/+14 |
| * | Allow deserialization of just the fields of a record, when we want to iterate... | Argyrios Kyrtzidis | 2010-10-14 | 2 | -13/+18 |
| * | Give a default implementation for ASTDeserializationListener's methods, no fu... | Argyrios Kyrtzidis | 2010-10-14 | 1 | -0/+4 |
| * | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian | 2010-10-14 | 3 | -19/+19 |
| * | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 2 | -2/+11 |
| * | Implement -fshort-enums (rdar://8490496). | Argyrios Kyrtzidis | 2010-10-08 | 1 | -0/+1 |
| * | Serialize the "inline" bit for namespaces. Fixes <rdar://problem/8515069>. | Douglas Gregor | 2010-10-05 | 2 | -0/+2 |
| * | Fix a marvelous chained AST writing bug, where we end up with the | Douglas Gregor | 2010-10-05 | 2 | -6/+13 |
| * | Give every file that ASTReader loads a type: module, PCH, precompiled preambl... | Sebastian Redl | 2010-10-05 | 2 | -9/+11 |
| * | Thread PerFileData through the ASTReader again, this time with the LLVM changes. | Sebastian Redl | 2010-10-05 | 3 | -474/+508 |