1. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  2. 25bb03b Don't crash when code-completing after "#include <". It would be far by Douglas Gregor · 14 years ago
  3. 2aa9267 Several PPCallbacks take an SourceLocation + IdentifierInfo, rather by Craig Silverstein · 14 years ago
  4. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  5. 08985b9 Add PPCallbacks for #if/#ifdef/etc. by Craig Silverstein · 14 years ago
  6. ecdcb88 Extend the preprocessing record and libclang with support for by Douglas Gregor · 14 years ago
  7. 9714a23 Really^2 fix <rdar://problem/8361834>, this time without crashing. by Ted Kremenek · 14 years ago
  8. 52a4ff6 Revert most of r116862. It isn't quite the right fix for a memory leak in Preprocessor. by Ted Kremenek · 14 years ago
  9. ea35f77 Really fix: <rdar://problem/8361834> MacroInfo::AddTokenToBody() leaks memory by Ted Kremenek · 14 years ago
  10. af8fa25 Simplify lifetime management of MacroInfo objects in Preprocessor by having the Preprocessor maintain them in a linked by Ted Kremenek · 14 years ago
  11. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  12. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 14 years ago
  13. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 14 years ago
  14. a7e6845 Detabify. by Eli Friedman · 14 years ago
  15. 2c1ab90 no need to pass bumppointer allocator into macroinfo::destroy by Chris Lattner · 14 years ago
  16. f47724b Implement #pragma push_macro, patch by Francois Pichet! by Chris Lattner · 14 years ago
  17. 2d474ba Don't emit end-of-file diagnostics like "unterminated conditional" or by Douglas Gregor · 14 years ago
  18. 10fe93d Revert r110440, the fix for PR4897. Chris claims to have a better way. by Douglas Gregor · 14 years ago
  19. 2f05449 Push location through the MacroUndefined PPCallback and use it to print #undefs in -dD mode. (PR7818) by Benjamin Kramer · 14 years ago
  20. 91db30a Fix the #include search path when reading from stdin, from Jon Simons! by Douglas Gregor · 14 years ago
  21. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  22. 6fbe3eb add a PPCallback handler for a skipped #include, patch by Zhanyong Wan! by Chris Lattner · 14 years ago
  23. 86d0ef7 Improve line marker directive locations, patch by Jordy Rose by Chris Lattner · 14 years ago
  24. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 14 years ago
  25. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 14 years ago
  26. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 14 years ago
  27. 453091c Audit all Preprocessor::getSpelling() callers, improving failure by Douglas Gregor · 14 years ago
  28. a543016 Audit all callers of SourceManager::getCharacterData(); update some of by Douglas Gregor · 14 years ago
  29. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 14 years ago
  30. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 14 years ago
  31. 13d283d Fix PR6282: the include guard optimization cannot happen if the by Chris Lattner · 14 years ago
  32. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 14 years ago
  33. 2c6b193 simplify the code for skipping in a #if 0 block. The CurLexer by Chris Lattner · 14 years ago
  34. a139481 stringref'ize a bunch of filename handling logic. Much by Chris Lattner · 15 years ago
  35. c1abafc clarify comment. by Chris Lattner · 15 years ago
  36. 804f652 implement rdar://7520940: published framework headers should by Chris Lattner · 15 years ago
  37. b939a4e Convert to StringRef, avoid a memcpy in the common case. by Benjamin Kramer · 15 years ago
  38. 1d9c54d formatting changes. by Chris Lattner · 15 years ago
  39. 63ceaa3 Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients should be forced to deal with error conditions. by Daniel Dunbar · 15 years ago
  40. 39d9841 pass the reason for failure up from MemoryBuffer and report it by Chris Lattner · 15 years ago
  41. 6e29014 Fix PR5633 by making the preprocessor handle the case where we can by Chris Lattner · 15 years ago
  42. a28cc09 Re-arranged some internal functions for coming __has_include changes. by John Thompson · 15 years ago
  43. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 15 years ago
  44. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  45. 3d399a0 There is no need to value initialize this array. by Daniel Dunbar · 15 years ago
  46. 3240469 Fix a couple of bugs: by Chris Lattner · 15 years ago
  47. c25d805 In assembler-with-cpp mode, don't error on '#' (stringize) operator applied to by Daniel Dunbar · 15 years ago
  48. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  49. 2451b52 improve MacroInfo to track the source range of the macro definition, by Chris Lattner · 15 years ago
  50. 41c1747 add a preprocessor callback function for #undef, patch by Alexei Svitkine! by Chris Lattner · 15 years ago
  51. 8fde597 Fix PR4006, incorrect handling of __VA_ARGS__ when it was the first token by Chris Lattner · 15 years ago
  52. dc8c90d more fun with line markers: the digit string is required to be interpreted by Chris Lattner · 15 years ago
  53. bc81682 second half of PR3940: #line requires simple digit sequence. by Chris Lattner · 15 years ago
  54. 6272bcf enforce requirements imposed by C90 6.8 TC1, fixing PR3919. by Chris Lattner · 15 years ago
  55. 8fe00e7 Fix PR3938 by taking into account C99 6.10p4. by Chris Lattner · 15 years ago
  56. 9cb51ce Fix two problems from PR3916, and one problem I noticed while hacking by Chris Lattner · 15 years ago
  57. 58e91d5 implement PR3940: #line numbers not fully checked by Chris Lattner · 15 years ago
  58. ab82f41 #line is allowed to have macros that expand to nothing after them. by Chris Lattner · 15 years ago
  59. 959875a Offer a fixit hint for our warning about tokens at the end of a directive: by Chris Lattner · 15 years ago
  60. 35410d5 Fix the #import / #include_next "extra tokens at end of #foo directive" by Chris Lattner · 15 years ago
  61. 8533bd5 Fix assertion failure in PTH when tokens followed a closing #endif. by Daniel Dunbar · 15 years ago
  62. f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 15 years ago
  63. fd10511 finish the implementation of -imacros. The driver still needs to be hooked up. by Chris Lattner · 15 years ago
  64. de07665 reject the #__include_macros directive unless it comes from the by Chris Lattner · 15 years ago
  65. b8e240e Add initial support for -imacros. Right now it has the same semantics as by Chris Lattner · 15 years ago
  66. 1662938 push line markers through -E mode. by Chris Lattner · 15 years ago
  67. 42aa16c when preprocessing a .S file, unknown directives should just be passed through, by Chris Lattner · 15 years ago
  68. 5f607c4 This is not considered a preprocessor directive in .S files: # 4 by Chris Lattner · 15 years ago
  69. 7f549df use accessor instead of poking ivar directly by Chris Lattner · 15 years ago
  70. b627c8d #import is not considered an extension for ObjC. by Chris Lattner · 15 years ago
  71. 685befe switch the macroinfo argument lists from being allocated off the heap by Chris Lattner · 15 years ago
  72. cf29e07 detemplatify setArgumentList and some other cleanups. by Chris Lattner · 15 years ago
  73. 0301b3f require the MAcroInfo objects are explcitly destroyed. by Chris Lattner · 15 years ago
  74. be5c64d Fix PR3464 by searching for headers from the predefines by Chris Lattner · 15 years ago
  75. 137b6a6 Implement handling of file entry/exit notifications from GNU by Chris Lattner · 15 years ago
  76. 9d79eba propagate linemarker flags down into the the line table, currently by Chris Lattner · 15 years ago
  77. 4c4ea17 stub out basic #line handling calls. by Chris Lattner · 15 years ago
  78. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 15 years ago
  79. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 15 years ago
  80. 202fd2c Fix a bug that I noticed by inspection. by Chris Lattner · 15 years ago
  81. e768988 remove my hacks that aggressively threw away multiple by Chris Lattner · 15 years ago
  82. 5b9a504 start plumbing together the line table information. So far we just by Chris Lattner · 15 years ago
  83. 478a18e add parsing and constraint enforcement for GNU line marker directives. by Chris Lattner · 15 years ago
  84. 099dd05 a few minor cleanups by Chris Lattner · 15 years ago
  85. 359cc44 parse and enforce required constraints on #line directives. Right now by Chris Lattner · 15 years ago
  86. 9bd0d59 Eagerly resolve the spelling location of the tokens in a definition by Chris Lattner · 15 years ago
  87. 693faa6 do not use SourceManager::getFileCharacteristic(FileID), it is not by Chris Lattner · 15 years ago
  88. 2b2453a this massive patch introduces a simple new abstraction: it makes by Chris Lattner · 15 years ago
  89. 41c3ae1 As a performance optimization, don't bother calling MacroInfo::isIdenticalTo by Chris Lattner · 15 years ago
  90. e5680f3 PTH: by Ted Kremenek · 16 years ago
  91. 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
  92. 9485d23 eliminate the isCXXNamedOperator function and some string compares and by Chris Lattner · 16 years ago
  93. 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
  94. 08631c5 Convert IdentifierInfo's to be printed the same as DeclarationNames by Chris Lattner · 16 years ago
  95. 81d24e1 Rename IsNonPragmaNonMacroLexer to IsFileLexer. by Ted Kremenek · 16 years ago
  96. 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
  97. 17ff58a When using a PTHLexer, use DiscardToEndOfLine() instead of ReadToEndOfLine(). by Ted Kremenek · 16 years ago
  98. 41938c8 - Move static function IsNonPragmaNonMacroLexer into Preprocessor.h. by Ted Kremenek · 16 years ago
  99. 6cf3ed7 don't turn identifierinfo's into strings in diagnostics. by Chris Lattner · 16 years ago
  100. 2df37b8 Revert 59574 (caused tests to fail). by Ted Kremenek · 16 years ago