1. 3d399a0 There is no need to value initialize this array. by Daniel Dunbar · 15 years ago
  2. 3240469 Fix a couple of bugs: by Chris Lattner · 15 years ago
  3. c25d805 In assembler-with-cpp mode, don't error on '#' (stringize) operator applied to by Daniel Dunbar · 15 years ago
  4. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  5. 2451b52 improve MacroInfo to track the source range of the macro definition, by Chris Lattner · 15 years ago
  6. 41c1747 add a preprocessor callback function for #undef, patch by Alexei Svitkine! by Chris Lattner · 15 years ago
  7. 8fde597 Fix PR4006, incorrect handling of __VA_ARGS__ when it was the first token by Chris Lattner · 15 years ago
  8. dc8c90d more fun with line markers: the digit string is required to be interpreted by Chris Lattner · 15 years ago
  9. bc81682 second half of PR3940: #line requires simple digit sequence. by Chris Lattner · 15 years ago
  10. 6272bcf enforce requirements imposed by C90 6.8 TC1, fixing PR3919. by Chris Lattner · 15 years ago
  11. 8fe00e7 Fix PR3938 by taking into account C99 6.10p4. by Chris Lattner · 15 years ago
  12. 9cb51ce Fix two problems from PR3916, and one problem I noticed while hacking by Chris Lattner · 15 years ago
  13. 58e91d5 implement PR3940: #line numbers not fully checked by Chris Lattner · 15 years ago
  14. ab82f41 #line is allowed to have macros that expand to nothing after them. by Chris Lattner · 15 years ago
  15. 959875a Offer a fixit hint for our warning about tokens at the end of a directive: by Chris Lattner · 15 years ago
  16. 35410d5 Fix the #import / #include_next "extra tokens at end of #foo directive" by Chris Lattner · 15 years ago
  17. 8533bd5 Fix assertion failure in PTH when tokens followed a closing #endif. by Daniel Dunbar · 15 years ago
  18. f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 15 years ago
  19. fd10511 finish the implementation of -imacros. The driver still needs to be hooked up. by Chris Lattner · 15 years ago
  20. de07665 reject the #__include_macros directive unless it comes from the by Chris Lattner · 15 years ago
  21. b8e240e Add initial support for -imacros. Right now it has the same semantics as by Chris Lattner · 15 years ago
  22. 1662938 push line markers through -E mode. by Chris Lattner · 15 years ago
  23. 42aa16c when preprocessing a .S file, unknown directives should just be passed through, by Chris Lattner · 15 years ago
  24. 5f607c4 This is not considered a preprocessor directive in .S files: # 4 by Chris Lattner · 15 years ago
  25. 7f549df use accessor instead of poking ivar directly by Chris Lattner · 15 years ago
  26. b627c8d #import is not considered an extension for ObjC. by Chris Lattner · 16 years ago
  27. 685befe switch the macroinfo argument lists from being allocated off the heap by Chris Lattner · 16 years ago
  28. cf29e07 detemplatify setArgumentList and some other cleanups. by Chris Lattner · 16 years ago
  29. 0301b3f require the MAcroInfo objects are explcitly destroyed. by Chris Lattner · 16 years ago
  30. be5c64d Fix PR3464 by searching for headers from the predefines by Chris Lattner · 16 years ago
  31. 137b6a6 Implement handling of file entry/exit notifications from GNU by Chris Lattner · 16 years ago
  32. 9d79eba propagate linemarker flags down into the the line table, currently by Chris Lattner · 16 years ago
  33. 4c4ea17 stub out basic #line handling calls. by Chris Lattner · 16 years ago
  34. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  35. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  36. 202fd2c Fix a bug that I noticed by inspection. by Chris Lattner · 16 years ago
  37. e768988 remove my hacks that aggressively threw away multiple by Chris Lattner · 16 years ago
  38. 5b9a504 start plumbing together the line table information. So far we just by Chris Lattner · 16 years ago
  39. 478a18e add parsing and constraint enforcement for GNU line marker directives. by Chris Lattner · 16 years ago
  40. 099dd05 a few minor cleanups by Chris Lattner · 16 years ago
  41. 359cc44 parse and enforce required constraints on #line directives. Right now by Chris Lattner · 16 years ago
  42. 9bd0d59 Eagerly resolve the spelling location of the tokens in a definition by Chris Lattner · 16 years ago
  43. 693faa6 do not use SourceManager::getFileCharacteristic(FileID), it is not by Chris Lattner · 16 years ago
  44. 2b2453a this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 16 years ago
  45. 41c3ae1 As a performance optimization, don't bother calling MacroInfo::isIdenticalTo by Chris Lattner · 16 years ago
  46. e5680f3 PTH: by Ted Kremenek · 16 years ago
  47. 0ea7672 Preprocessor: Allocate MacroInfo objects using a BumpPtrAllocator instead using new/delete. This speeds up -Eonly on Cocoa.h using the regular lexer by 1.8% and the PTHLexer by 3%. by Ted Kremenek · 16 years ago
  48. 9485d23 eliminate the isCXXNamedOperator function and some string compares and by Chris Lattner · 16 years ago
  49. 268ee70 Added PTH optimization to not process entire blocks of tokens that appear in skipped preprocessor blocks. This improves PTH speed by 6%. The code for this optimization itself is not very optimized, and will get cleaned up. by Ted Kremenek · 16 years ago
  50. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  51. 81d24e1 Rename IsNonPragmaNonMacroLexer to IsFileLexer. by Ted Kremenek · 16 years ago
  52. ac80c6e Use PreprocessorLexer::getFileID() instead of Lexer::getFileLoc(). This is an intermediate step to having getCurrentLexer() return a PreprocessorLexer* instead of a Lexer*. by Ted Kremenek · 16 years ago
  53. 17ff58a When using a PTHLexer, use DiscardToEndOfLine() instead of ReadToEndOfLine(). by Ted Kremenek · 16 years ago
  54. 41938c8 - Move static function IsNonPragmaNonMacroLexer into Preprocessor.h. by Ted Kremenek · 16 years ago
  55. 6cf3ed7 don't turn identifierinfo's into strings in diagnostics. by Chris Lattner · 16 years ago
  56. 2df37b8 Revert 59574 (caused tests to fail). by Ted Kremenek · 16 years ago
  57. 0a36264 - Move static function IsNonPragmaNonMacroLexer into Preprocessor.h. by Ted Kremenek · 16 years ago
  58. 204b2fe Remove the last of the old-style Preprocessor::Diag methods. by Chris Lattner · 16 years ago
  59. 56b05c8 remove one more Preprocessor::Diag method. by Chris Lattner · 16 years ago
  60. 3692b09 Convert the lexer and start converting the PP over to using canonical Diag methods. by Chris Lattner · 16 years ago
  61. f6452c5 Add hooks to use PTHLexer::Lex instead of Lexer::Lex when CurLexer is null. by Ted Kremenek · 16 years ago
  62. ac6b06d Added conditional guard 'if (CurLexer)' when using SetCommentRetentionState(). by Ted Kremenek · 16 years ago
  63. 60e45d4 Change a bunch of uses of 'CurLexer->' to 'CurPPLexer->', which should be the by Ted Kremenek · 16 years ago
  64. 9d72851 Rename Characteristic_t to CharacteristicKind by Chris Lattner · 16 years ago
  65. aea3ad0 Stop the preprocessor from poking the lexer's private parts. by Chris Lattner · 16 years ago
  66. 0b9e736 clean up a bunch of fixme's I added, by moving by Chris Lattner · 16 years ago
  67. 7218183 Fix the rest of rdar://6243860 hopefully. This requires changing FileIDInfo by Chris Lattner · 16 years ago
  68. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  69. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  70. 0049db6 fix PR2357 (#ifs didnt invalidate the multiple-inclusion optimization state) by Nuno Lopes · 16 years ago
  71. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from Lex/PPDirectives.cpp]
  72. 1072509 move PP::LookupFile from PPLexerChange -> PPDirectives.cpp by Chris Lattner · 17 years ago
  73. a3b605e split macro expansion support out of Preprocessor.cpp into PPMacroExpansion.cpp by Chris Lattner · 17 years ago[Renamed (99%) from Lex/Directives.cpp]
  74. 6cfe759 rename some MacroExpander-related ivars to TokenLexer. by Chris Lattner · 17 years ago
  75. 141e71f split preprocesor directive handling out of Preprocessor.cpp into Directives.cpp by Chris Lattner · 17 years ago