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