| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Make sure to put template parameters into their owning template's | Douglas Gregor | 2011-03-04 | 1 | -2/+2 |
* | Provide a Decl::getNonClosureContext to look through any "closure" (i.e. | John McCall | 2011-02-22 | 1 | -0/+16 |
* | Revert all of my commits that devirtualized the Decl hierarchy, which | Douglas Gregor | 2011-02-19 | 1 | -145/+2 |
* | Remove the last virtual member function from the Decl hierarchy, | Douglas Gregor | 2011-02-17 | 1 | -3/+0 |
* | Devirtualize Decl::getNextRedeclaration(). | Douglas Gregor | 2011-02-17 | 1 | -0/+72 |
* | Simple little optimization to Decl::getCanonicalDecl(), eliminating some heav... | Douglas Gregor | 2011-02-17 | 1 | -4/+4 |
* | Devirtualize Decl::getSourceRange() | Douglas Gregor | 2011-02-17 | 1 | -1/+25 |
* | Devirtualize Decl::getCanonicalDecl(). | Douglas Gregor | 2011-02-17 | 1 | -0/+23 |
* | Step #1/N of implementing support for __label__: split labels into | Chris Lattner | 2011-02-17 | 1 | -1/+2 |
* | Devirtualize Decl::getBody() and Decl::hasBody(). | Douglas Gregor | 2011-02-17 | 1 | -0/+18 |
* | De-virtualize Decl::isOutOfLine(). | Douglas Gregor | 2011-02-17 | 1 | -0/+9 |
* | Add Decl::isParameterPack(), which covers both function and template | Douglas Gregor | 2011-01-05 | 1 | -0/+7 |
* | Implement support for template template parameter packs, e.g., | Douglas Gregor | 2011-01-05 | 1 | -1/+4 |
* | Add an AST representation for non-type template parameter | Douglas Gregor | 2010-12-23 | 1 | -1/+3 |
* | Revert r120808, my previous implementation of caching for the linkage | Douglas Gregor | 2010-12-06 | 1 | -32/+0 |
* | Implement caching for the linkage and visibility calculations of | Douglas Gregor | 2010-12-03 | 1 | -0/+32 |
* | Eliminate two uses of NDEBUG in headers that cause different symbols | Douglas Gregor | 2010-12-02 | 1 | -2/+2 |
* | Major anonymous union/struct redesign. | Francois Pichet | 2010-11-21 | 1 | -2/+3 |
* | Use the ASTMutationListener to track when a named decl gets added to a DeclCo... | Argyrios Kyrtzidis | 2010-10-28 | 1 | -0/+7 |
* | A couple of tweaks to the visibility rules: | John McCall | 2010-10-26 | 1 | -0/+11 |
* | Put the mechanism in place to track modifications in an AST entity that were ... | Argyrios Kyrtzidis | 2010-10-24 | 1 | -0/+4 |
* | Allow deserialization of just the fields of a record, when we want to iterate... | Argyrios Kyrtzidis | 2010-10-14 | 1 | -16/+30 |
* | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -1/+1 |
* | Centralize the handling of | Douglas Gregor | 2010-09-27 | 1 | -8/+5 |
* | Clean up the handling of the DeclaredDefaultConstructor and | Douglas Gregor | 2010-09-27 | 1 | -0/+8 |
* | Decl::CheckAccessDeclContext() keeps asserting. Access is not set in some cases. | Argyrios Kyrtzidis | 2010-09-08 | 1 | -4/+9 |
* | Re-enable CheckAccessDeclContext and make sure it doesn't trigger assertions. | Argyrios Kyrtzidis | 2010-09-08 | 1 | -4/+6 |
* | Make inline namespace not be transparent after all. The concept simply doesn'... | Sebastian Redl | 2010-08-31 | 1 | -10/+13 |
* | Enable inline namespaces in the AST. | Sebastian Redl | 2010-08-31 | 1 | -1/+1 |
* | Rename DeclContext::getLookupContext to getRedeclContext and change its seman... | Sebastian Redl | 2010-08-31 | 1 | -6/+24 |
* | Decl::getEnclosingNamespaceContext has no reason to explicitly skip transpare... | Sebastian Redl | 2010-08-31 | 1 | -1/+1 |
* | Fix an issue with writing to PCH another included PCH, introduced by the "usi... | Argyrios Kyrtzidis | 2010-08-20 | 1 | -0/+28 |
* | Use the AST on-disk hash table for name lookup inside a DeclContext. | Argyrios Kyrtzidis | 2010-08-20 | 1 | -91/+13 |
* | Generate Attr subclasses with TableGen. | Alexis Hunt | 2010-08-18 | 1 | -16/+6 |
* | When we are deserializing the lexical decls of a DeclContext from PCH, notify... | Argyrios Kyrtzidis | 2010-07-30 | 1 | -0/+3 |
* | - Fix recording of offsets of types in dependent PCHs. | Sebastian Redl | 2010-07-27 | 1 | -0/+8 |
* | Remove destructors from declaration nodes | Douglas Gregor | 2010-07-25 | 1 | -6/+1 |
* | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -43/+1 |
* | Instantiate attributes when first building an instantiated | Fariborz Jahanian | 2010-07-13 | 1 | -12/+0 |
* | Copy over attributes to instantiated variable. | Fariborz Jahanian | 2010-07-12 | 1 | -0/+11 |
* | Remove Decl::getCompoundBody(). | Argyrios Kyrtzidis | 2010-07-07 | 1 | -4/+0 |
* | Simplify code. CompoundStmt's RBraceLoc can be found using its SourceRange too. | Argyrios Kyrtzidis | 2010-07-07 | 1 | -8/+4 |
* | Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of... | Argyrios Kyrtzidis | 2010-07-07 | 1 | -0/+9 |
* | When adding a visible decl, deserialize the visible decls and add it. | Argyrios Kyrtzidis | 2010-07-04 | 1 | -9/+10 |
* | Lazily declare default constructors. We now delay the construction of | Douglas Gregor | 2010-07-03 | 1 | -0/+6 |
* | Disable Decl::CheckAccessDeclContext() temporarily. | Argyrios Kyrtzidis | 2010-07-02 | 1 | -4/+6 |
* | Given Decl::isUsed() a flag indicating when to consider the "used" | Douglas Gregor | 2010-06-17 | 1 | -3/+3 |
* | Fix PCH issue. Attributes of a declaration were truncated to just one when th... | Argyrios Kyrtzidis | 2010-06-11 | 1 | -0/+11 |
* | Added AccessSpecDecl node. | Abramo Bagnara | 2010-06-05 | 1 | -0/+1 |
* | Alter the ExternalASTSource interface to permit by-name lookups. PCH continu... | John McCall | 2010-06-01 | 1 | -22/+85 |