1. 2f1e36b Rename tok::eom to tok::eod. by Peter Collingbourne · 15 years ago
  2. 27734fd Frontend: Factor out header include dumping (-H) into its own preprocessor by Daniel Dunbar · 15 years ago
  3. 1a9ca21 Several PPCallbacks take an SourceLocation + IdentifierInfo, rather by Craig Silverstein · 15 years ago
  4. 453b012 Make sure to always check the result of by Douglas Gregor · 15 years ago
  5. 49609d5 make sure #pragma clang is treated the same way as #pragma gcc in -E mode, by Chris Lattner · 15 years ago
  6. 6174ca4 Handle '#line' in '-E' that has an empty file name. Fixes <rdar://problem/8439412>. by Ted Kremenek · 15 years ago
  7. ca3682d Make sure we're producing a newline in the preprocessed output before by Douglas Gregor · 15 years ago
  8. c7d6576 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 15 years ago
  9. 04ebde0 Frontend/-H: Add comment on why I used a temporary string here. by Daniel Dunbar · 15 years ago
  10. d435275 Frontend: Add basic -H support. by Daniel Dunbar · 15 years ago
  11. d05f31d Push location through the MacroUndefined PPCallback and use it to print #undefs in -dD mode. (PR7818) by Benjamin Kramer · 15 years ago
  12. 36745fd Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 15 years ago
  13. 30c924b Implement support for #pragma message, patch by Michael Spencer! by Chris Lattner · 15 years ago
  14. bba37f4 fix the various buildbot failures by ensuring that tokens are really completely initialized. by Chris Lattner · 15 years ago
  15. 4e18a2b fix an uninitialized variable, patch by Michael Spencer! by Chris Lattner · 15 years ago
  16. bc6bcab fix PR7360: -P mode turns off line markers, but not blank space. by Chris Lattner · 15 years ago
  17. d839e77 Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. by Daniel Dunbar · 15 years ago
  18. fb24a3a push some source location information down through the compiler, by Chris Lattner · 16 years ago
  19. 6e8427e Remove this hard-coded buffer size. In some basic experiments preprocessing by Dan Gohman · 16 years ago
  20. c745cec Improve line marker directive locations, patch by Jordy Rose by Chris Lattner · 16 years ago
  21. 0384e635 make the token paste avoidance logic turn "..." into ".. ." instead of ". . ." by Chris Lattner · 16 years ago
  22. 9d94f04 cache the PP's SourceManager. by Chris Lattner · 16 years ago
  23. 5dbefc6 make the preprocessor listen to linemarker directives in -E mode, by Chris Lattner · 16 years ago
  24. 4ad3da2 Entering the main source file in the preprocessor can fail if the by Douglas Gregor · 16 years ago
  25. ba2c652 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 16 years ago
  26. 752a124 Rename to addPPCallbacks since we're effectively adding a callback and maybe chaining it to an existing one by Kovarththanan Rajaratnam · 16 years ago
  27. 718f722 Revert 97324. Chris says this cleanup could hurt -E performance. by Benjamin Kramer · 16 years ago
  28. b14e0b6 Simplify code. by Benjamin Kramer · 16 years ago
  29. 0a1abd4 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 16 years ago
  30. fb5f40f Avoid an instantiation of std::sort. by Benjamin Kramer · 16 years ago
  31. 53d80e2 Neil points out that this could be simplified, do it. by Chris Lattner · 16 years ago
  32. 9dfed9f fix -dM with variadic macros, PR5699 by Chris Lattner · 16 years ago
  33. 76b4445 some code cleanup. by Chris Lattner · 16 years ago
  34. 66aaa39 Integrate the following from the 'objective-rewrite' branch: by Steve Naroff · 16 years ago
  35. 22bdabf Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 16 years ago
  36. 531f6c6 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 16 years ago
  37. 66791d5 Fix buffer overflow in PrintMacroDefinition() by inverting the check to see if the target buffer needs to be resized. Fixes <rdar://problem/7255377>. by Ted Kremenek · 16 years ago
  38. 07d0785 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 16 years ago
  39. 70e7ead Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 16 years ago
  40. 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  41. a5e6775 no really, add the lines :) by Chris Lattner · 16 years ago
  42. f2d49da9 Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 16 years ago
  43. fd80b2a PR4288: Make -dD (dump macros with preprocessed source) play nicely with by Eli Friedman · 16 years ago
  44. 7d0479f Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
  45. cec35d7 Clean up some unnecessary includes. by Eli Friedman · 16 years ago
  46. 16b7b6f Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp by Eli Friedman · 16 years ago[Renamed (99%) from clang/tools/clang-cc/PrintPreprocessedOutput.cpp]
  47. 6af494b Move options for -E mode from PrintPreprocessedOutput.cpp to clang-cc.cpp. by Eli Friedman · 16 years ago
  48. 26c672b Refactor -dM mode out of the main routine for -E handling. by Eli Friedman · 16 years ago
  49. fcb57d5 Switch some utilities in clang-cc to take a stream instead of a by Eli Friedman · 16 years ago
  50. d980371 Integrate 3 months of ObjC rewriter fixes (from the Apple/objective-rewrite branch). by Steve Naroff · 16 years ago
  51. cac63f3 Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 17 years ago
  52. 7b4df3c Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 17 years ago
  53. 839150e push line markers through -E mode. by Chris Lattner · 17 years ago
  54. e5a7ecc Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 17 years ago[Renamed from clang/Driver/PrintPreprocessedOutput.cpp]
  55. b45c23a0 fix test/Preprocessor/macro_paste_mscomment.c. by Chris Lattner · 17 years ago
  56. 644d452 factor token concatenation avoidance logic out of by Chris Lattner · 17 years ago
  57. 1ec246d make -dM emit macros in a deterministic (sorted) order instead of by Chris Lattner · 17 years ago
  58. 8ac6373 use efficient form of getSpelling, this speeds up -dM by 16%. by Chris Lattner · 17 years ago
  59. 1630c3c Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 17 years ago
  60. fc001b0 factor some code out into a helper function. by Chris Lattner · 17 years ago
  61. 88ea93e lower the interface to getLineNumber like we did for by Chris Lattner · 17 years ago
  62. d8cc884 avoid emitting a bogus line marker for the top level #include by Chris Lattner · 17 years ago
  63. f1ca7d3 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 17 years ago
  64. 9892ea2 minor speedups/cleanups for -E mode. by Chris Lattner · 17 years ago
  65. 5a7971e This change refactors some of the low-level lexer interfaces a bit. by Chris Lattner · 17 years ago
  66. dde6eb3 Make sure to escape " when it occurs in a string in pragma comment by Chris Lattner · 17 years ago
  67. 5eef507 Make -E mode propagate #pragma comment's into the output. by Chris Lattner · 17 years ago
  68. 8a42586 more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 17 years ago
  69. 53e384f Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 17 years ago
  70. 1ee543e make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ is enabled by Chris Lattner · 17 years ago
  71. f3502db [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that by Daniel Dunbar · 17 years ago
  72. 66a740e Rename Characteristic_t to CharacteristicKind by Chris Lattner · 17 years ago
  73. b03dc76 clean up a bunch of fixme's I added, by moving by Chris Lattner · 17 years ago
  74. 71efd81 fit in 80 cols. by Chris Lattner · 17 years ago
  75. e778131 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 17 years ago
  76. 98e0e53 Workaround gcc bug causing crash on our preprocessed outputs. by Daniel Dunbar · 17 years ago
  77. cdceb08 Use raw_ostream to output an unsigned. by Chris Lattner · 17 years ago
  78. 286e5e6 printing with an unspecified dest means to print to stdout. by Chris Lattner · 17 years ago
  79. b52817bf don't delete a variable on the stack by Chris Lattner · 17 years ago
  80. 7459c86 simplify this code a bit more. by Chris Lattner · 17 years ago
  81. 068529a remove global variables for output stream. by Chris Lattner · 17 years ago
  82. b5a92f8 by Chris Lattner · 17 years ago
  83. 47fb9ef Fix rdar://5843510 don't assert and die when an invalid output by Chris Lattner · 18 years ago
  84. 2163265 Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error. by Chris Lattner · 18 years ago
  85. 02bf444 Make -o work with -E, patch contributed by Shantonu Sen! by Chris Lattner · 18 years ago
  86. 15346fa avoid pasting L + "foo" into L"foo". by Chris Lattner · 18 years ago
  87. 877ca77 avoid token pasting between identifiers and wide strings: by Chris Lattner · 18 years ago
  88. 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
  89. 230bd91 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 18 years ago
  90. 60a288a simplify the interfaces to ProcessInputFile and InitializePreprocessor by Chris Lattner · 18 years ago
  91. 3ed83c1 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 18 years ago
  92. 84f4507 Fix a pretty big but subtle bug counting the number of newlines to emit. by Chris Lattner · 18 years ago
  93. 7b4ab65 fix a bunch of regressions I introduced :( by Chris Lattner · 18 years ago
  94. 3ff2e69 clang -E should not print tokens from the predefines buffer. by Chris Lattner · 18 years ago
  95. 1f1b0db Make a significant change to invert the control flow handling by Chris Lattner · 18 years ago
  96. 3c69f12 convert driver over to use Token::is/isNot APIs. fwew, all done. by Chris Lattner · 18 years ago
  97. cd1e8d2 Add #ifdefs to make the source portable to windows. Patch contributed by Chris Lattner · 18 years ago
  98. 1af0e01 avoid std::string yet again. by Chris Lattner · 18 years ago
  99. 4c4a245 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 18 years ago
  100. d63c8a5 Fix two paste-avoidance bugs I introduced last night. Patch by Chris Lattner · 18 years ago