Age | Commit message (Expand) | Author |
2012-12-01 | Don't include Type.h in DeclarationName.h. | Benjamin Kramer |
2012-05-19 | Simplify some users of DeclarationName::getNameKind. Fold getFETokenInfoAsVoi... | Benjamin Kramer |
2012-05-04 | Synchronize the representations of DeclarationName and Selector so | Douglas Gregor |
2012-05-03 | Inline DenseMapInfo<clang::DeclarationName>::getHashValue() for a 0.4% speedu... | Douglas Gregor |
2012-05-03 | Split DeclarationName::getFETokenInfoAsVoid() into hot/cold paths and | Douglas Gregor |
2012-03-09 | Literal operator suffixes and regular names live in separate namespaces. | Richard Smith |
2012-02-07 | Revert my patches which removed Diagnostic.h includes by moving some operator... | Benjamin Kramer |
2012-02-04 | Move various diagnostic operator<< overloads out of line and remove includes ... | Benjamin Kramer |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2011-10-14 | Change operator<< for raw_ostream and NamedDecl to take a reference instead o... | Benjamin Kramer |
2011-09-23 | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie |
2011-09-23 | Switch assert(0/false) llvm_unreachable. | David Blaikie |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-01 | Introduce the notion of instantiation dependence into Clang's AST. A | Douglas Gregor |
2011-02-18 | Selector::getIdentifierInfoForSlot() can return NULL values, a fact | Douglas Gregor |
2011-01-12 | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad |
2010-12-15 | Silence GCC warning about control reaching the end of the function and explic... | Chandler Carruth |
2010-12-15 | Variadic templates: extend the Expr class with a bit that specifies | Douglas Gregor |
2010-08-11 | Added locations and type source info for DeclarationName. | Abramo Bagnara |
2010-07-25 | Make ASTContext always use the BumpPtrAllocator. | Douglas Gregor |
2010-05-10 | Allocate most of DeclarationNamesTable using ASTContext's allcocator. The on... | Ted Kremenek |
2010-05-10 | Start converting pieces of DeclarationNameTable to be allocated using ASTCont... | Ted Kremenek |
2010-04-17 | Add printName to DeclarationName which prints the human-readable name on a | Benjamin Kramer |
2010-02-13 | Switch the standard DeclarationName comparator to be a tri-valued comparator. | John McCall |
2010-01-13 | Implement semantic checking for C++ literal operators. | Sean Hunt |
2010-01-11 | Implement name lookup for conversion function template specializations | Douglas Gregor |
2009-12-23 | move a few more symbols to .rodata/.data.rel.ro | Nuno Lopes |
2009-12-10 | spread 'const' love to some variables. this considerably reduces the amount o... | Nuno Lopes |
2009-11-29 | Add DeclarationName support for C++0x operator literals. They should now work as | Sean Hunt |
2009-11-15 | Fix a missing include from r88876. | Chandler Carruth |
2009-11-15 | Add DeclarationName::dump(). | Anders Carlsson |
2009-11-04 | Give DeclarationName's operator< a more predictable, useful ordering | Douglas Gregor |
2009-10-18 | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar |
2009-10-18 | Move misc clients to IdentifierInfo StringRef API. | Daniel Dunbar |
2009-10-17 | Write the preprocessor block after we write out types + declarations, | Douglas Gregor |
2009-09-24 | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-08-05 | Introduce the canonical type smart pointers, and use them in a few places to | Douglas Gregor |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-05-15 | Make sure that we use the canonical type for the names of instantiated | Douglas Gregor |
2009-04-23 | PCH support for all of the predefined Objective-C types, such as id, | Douglas Gregor |
2009-04-22 | Remove the serialization code that predates precompiled | Douglas Gregor |
2009-03-21 | add an assertion for unreachable code. | Chris Lattner |
2009-03-14 | Remove dead DeclarationName constructors that involving knowing about the | Ted Kremenek |
2009-02-16 | fix long lines. | Chris Lattner |
2009-02-03 | Semantic analysis, ASTs, and unqualified name lookup support for C++ | Douglas Gregor |
2009-01-13 | Make sure we don't name a constructor or destructor with a qualified | Douglas Gregor |
2008-12-14 | dont call iterator::end() on every cycle and dont read already-deleted memory | Nuno Lopes |