| Age | Commit message (Expand) | Author | Files | Lines |
| 2011-07-26 | Migrate 'Instantiation' data and API bits of SLocEntry to 'Expansion' | Chandler Carruth | 1 | -3/+2 |
| 2011-07-26 | Convert InstantiationInfo and much of the related code to ExpansionInfo | Chandler Carruth | 1 | -2/+2 |
| 2011-07-26 | Rename create(MacroArg)InstantiationLoc to create(MacroArg)ExpansionLoc. | Chandler Carruth | 1 | -4/+4 |
| 2011-07-25 | Rename SourceManager::getImmediateInstantiationRange to | Chandler Carruth | 1 | -1/+1 |
| 2011-07-25 | Rename SourceManager::getInstantiationRange to getExpansionRange. | Chandler Carruth | 1 | -1/+1 |
| 2011-07-25 | Mechanically rename SourceManager::getInstantiationLoc and | Chandler Carruth | 1 | -1/+1 |
| 2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 1 | -15/+15 |
| 2011-07-20 | Spelling | Joerg Sonnenberger | 1 | -1/+1 |
| 2011-07-19 | Revamp the SourceManager to separate the representation of parsed | Douglas Gregor | 1 | -3/+3 |
| 2011-07-14 | Convert terminology in the Lexer from 'instantiate' and variants to | Chandler Carruth | 1 | -26/+27 |
| 2011-07-07 | Move SourceManager::isAt[Start/End]OfMacroInstantiation functions to the Lexe... | Argyrios Kyrtzidis | 1 | -1/+52 |
| 2011-07-07 | Make the Preprocessor more memory efficient and improve macro instantiation d... | Argyrios Kyrtzidis | 1 | -1/+1 |
| 2011-06-24 | Allow Lexer::getLocForEndOfToken to return the location just passed the macro... | Argyrios Kyrtzidis | 1 | -2/+10 |
| 2011-05-10 | Don't strlen() every file before parsing it. | Eli Friedman | 1 | -1/+2 |
| 2011-04-15 | fix a bunch of comment typos found by codespell. Patch by | Chris Lattner | 1 | -1/+1 |
| 2011-04-14 | Implement C++0x [lex.pptoken]p3's handling of <::. | Richard Smith | 1 | -0/+15 |
| 2011-04-09 | Eat the UTF-8 BOM at the beginning of a file since it's ignored anyhow. | Eric Christopher | 1 | -1/+14 |
| 2011-04-06 | Fix getLocForEndOfToken to not double-count spurious internal characters | John McCall | 1 | -1/+1 |
| 2011-03-18 | Lexer: Add extremely limited support for -traditional-cpp, ignoring BCPL | Daniel Dunbar | 1 | -3/+5 |
| 2011-03-08 | Fix my earlier commit to work with escaped newlines and leave breadcrumbs | John McCall | 1 | -0/+48 |
| 2011-02-28 | Rename tok::eom to tok::eod. | Peter Collingbourne | 1 | -7/+7 |
| 2011-02-15 | Warn for missing terminating " or ' instead of error for gcc compatibility. F... | Argyrios Kyrtzidis | 1 | -2/+2 |
| 2011-02-09 | Lexer: add CUDA kernel call tokens | Peter Collingbourne | 1 | -0/+8 |
| 2011-01-31 | Harden Lexer::GetBeginningOfToken() against bogus source locations and | Douglas Gregor | 1 | -0/+6 |
| 2010-12-22 | Introduced raw_identifier token kind. | Abramo Bagnara | 1 | -25/+24 |
| 2010-11-17 | move getSpelling from Preprocessor to Lexer, which it is more conceptually re... | Chris Lattner | 1 | -0/+101 |
| 2010-11-17 | move AdvanceToTokenCharacter and getLocForEndOfToken from | Chris Lattner | 1 | -0/+77 |
| 2010-10-23 | Update remaining attribute macros to new style. | Chandler Carruth | 1 | -4/+2 |
| 2010-09-30 | In MeasureTokenLength, the FileLoc supplied to the lexer must point to the st... | Sebastian Redl | 1 | -1/+2 |
| 2010-08-31 | improve isHexaLiteral to work with escaped newlines and trigraphs, | Chris Lattner | 1 | -7/+8 |
| 2010-08-30 | silence a warning | Chris Lattner | 1 | -1/+1 |
| 2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 1 | -29/+2 |
| 2010-08-30 | add a fixme. | Chris Lattner | 1 | -1/+5 |
| 2010-08-30 | use 'features' instead of 'PP->getLangOptions'. | Chris Lattner | 1 | -8/+8 |
| 2010-08-30 | In Microsoft compatibility mode, don't parse the exponent as part of | Douglas Gregor | 1 | -1/+10 |
| 2010-08-29 | Implement C++0x user-defined string literals. | Alexis Hunt | 1 | -2/+29 |
| 2010-08-25 | Introduce a preprocessor code-completion hook for contexts where we | Douglas Gregor | 1 | -6/+22 |
| 2010-08-24 | Introduce basic code-completion support for preprocessor directives, | Douglas Gregor | 1 | -18/+18 |
| 2010-08-12 | Don't emit end-of-file diagnostics like "unterminated conditional" or | Douglas Gregor | 1 | -4/+7 |
| 2010-08-11 | Random temporary string cleanup. | Benjamin Kramer | 1 | -1/+1 |
| 2010-08-09 | Use precompiled preambles for in-process code completion. | Douglas Gregor | 1 | -2/+16 |
| 2010-07-26 | Introduce basic support for loading a precompiled preamble while | Douglas Gregor | 1 | -2/+13 |
| 2010-07-22 | Improve performance during cursor traversal when a region of interest | Douglas Gregor | 1 | -0/+53 |
| 2010-07-20 | Introduce a new lexer function to compute the "preamble" of a file, | Douglas Gregor | 1 | -0/+125 |
| 2010-07-07 | fix PR4499, patch by Kyle Dean! | Chris Lattner | 1 | -24/+16 |
| 2010-05-30 | simpler fix for rdar://8044135 - escaped newlines have already | Chris Lattner | 1 | -10/+7 |
| 2010-05-30 | Improve our handling of NULL after an escaping '\' in a string | Douglas Gregor | 1 | -2/+7 |
| 2010-05-25 | Improve code completion in failure cases in two ways: | Douglas Gregor | 1 | -0/+3 |
| 2010-05-17 | robustify the conflict marker stuff. Don't add 7 twice, which would | Chris Lattner | 1 | -1/+2 |
| 2010-05-16 | when code completing inside a C-style block comment, don't emit errors about | Chris Lattner | 1 | -2/+3 |