1. 775bee7 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 15 years ago
  2. 3e27c01 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 · 15 years ago
  3. 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
  4. 5ffe14c Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 15 years ago
  5. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  6. ed2d7c4 no really, add the lines :) by Chris Lattner · 15 years ago
  7. 3ee211f Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 15 years ago
  8. 3e753e2 PR4288: Make -dD (dump macros with preprocessed source) play nicely with by Eli Friedman · 15 years ago
  9. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  10. ac8d629 Clean up some unnecessary includes. by Eli Friedman · 15 years ago
  11. b09f6e1 Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp by Eli Friedman · 15 years ago[Renamed (99%) from tools/clang-cc/PrintPreprocessedOutput.cpp]
  12. 12d3b1d Move options for -E mode from PrintPreprocessedOutput.cpp to clang-cc.cpp. by Eli Friedman · 15 years ago
  13. f1db585 Refactor -dM mode out of the main routine for -E handling. by Eli Friedman · 15 years ago
  14. f54fce8 Switch some utilities in clang-cc to take a stream instead of a by Eli Friedman · 15 years ago
  15. 621edce Integrate 3 months of ObjC rewriter fixes (from the Apple/objective-rewrite branch). by Steve Naroff · 15 years ago
  16. d82df3a Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 15 years ago
  17. c2542b6 Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 15 years ago
  18. 1662938 push line markers through -E mode. by Chris Lattner · 15 years ago
  19. 073777f Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 15 years ago[Renamed from Driver/PrintPreprocessedOutput.cpp]
  20. 7d66ebb fix test/Preprocessor/macro_paste_mscomment.c. by Chris Lattner · 15 years ago
  21. d7038e1 factor token concatenation avoidance logic out of by Chris Lattner · 16 years ago
  22. 2a2bb18 make -dM emit macros in a deterministic (sorted) order instead of by Chris Lattner · 16 years ago
  23. eb213da use efficient form of getSpelling, this speeds up -dM by 16%. by Chris Lattner · 16 years ago
  24. f73903a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
  25. 59076ab factor some code out into a helper function. by Chris Lattner · 16 years ago
  26. 30fc933 lower the interface to getLineNumber like we did for by Chris Lattner · 16 years ago
  27. 71d8bfb avoid emitting a bogus line marker for the top level #include by Chris Lattner · 16 years ago
  28. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
  29. 33116d6 minor speedups/cleanups for -E mode. by Chris Lattner · 16 years ago
  30. 47246be This change refactors some of the low-level lexer interfaces a bit. by Chris Lattner · 16 years ago
  31. 52a3e9e Make sure to escape " when it occurs in a string in pragma comment by Chris Lattner · 16 years ago
  32. c7d945d Make -E mode propagate #pragma comment's into the output. by Chris Lattner · 16 years ago
  33. f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 16 years ago
  34. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  35. d7a7c00 make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ is enabled by Chris Lattner · 16 years ago
  36. 26fb272 [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that by Daniel Dunbar · 16 years ago
  37. 9d72851 Rename Characteristic_t to CharacteristicKind by Chris Lattner · 16 years ago
  38. 0b9e736 clean up a bunch of fixme's I added, by moving by Chris Lattner · 16 years ago
  39. 1b9ad14 fit in 80 cols. by Chris Lattner · 16 years ago
  40. fd96684 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 16 years ago
  41. 737bdb4 Workaround gcc bug causing crash on our preprocessed outputs. by Daniel Dunbar · 16 years ago
  42. e9d89d8 Use raw_ostream to output an unsigned. by Chris Lattner · 16 years ago
  43. 653201b printing with an unspecified dest means to print to stdout. by Chris Lattner · 16 years ago
  44. 76b3a72 don't delete a variable on the stack by Chris Lattner · 16 years ago
  45. 202e9ac simplify this code a bit more. by Chris Lattner · 16 years ago
  46. e96de3e remove global variables for output stream. by Chris Lattner · 16 years ago
  47. dceb6a7 by Chris Lattner · 16 years ago
  48. 8808f00 Fix rdar://5843510 don't assert and die when an invalid output by Chris Lattner · 16 years ago
  49. 5db17c9 Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error. by Chris Lattner · 16 years ago
  50. e988bc2 Make -o work with -E, patch contributed by Shantonu Sen! by Chris Lattner · 17 years ago
  51. b1a17ae avoid pasting L + "foo" into L"foo". by Chris Lattner · 17 years ago
  52. fdc0d3c avoid token pasting between identifiers and wide strings: by Chris Lattner · 17 years ago
  53. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  54. 95041a2 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  55. dee7359 simplify the interfaces to ProcessInputFile and InitializePreprocessor by Chris Lattner · 17 years ago
  56. 5f18032 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 17 years ago
  57. 5c0887c Fix a pretty big but subtle bug counting the number of newlines to emit. by Chris Lattner · 17 years ago
  58. a1a5178 fix a bunch of regressions I introduced :( by Chris Lattner · 17 years ago
  59. 6f688e1 clang -E should not print tokens from the predefines buffer. by Chris Lattner · 17 years ago
  60. 53b0dab Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  61. 057aaf6 convert driver over to use Token::is/isNot APIs. fwew, all done. by Chris Lattner · 17 years ago
  62. 6a4545e Add #ifdefs to make the source portable to windows. Patch contributed by Chris Lattner · 17 years ago
  63. 5143196 avoid std::string yet again. by Chris Lattner · 17 years ago
  64. d8e3083 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 17 years ago
  65. b638a30 Fix two paste-avoidance bugs I introduced last night. Patch by Chris Lattner · 17 years ago
  66. f063721 avoid creating std::strings in MoveToLine by Chris Lattner · 17 years ago
  67. e225e37 In OutputString, avoid calling memcpy for really tiny strings. by Chris Lattner · 17 years ago
  68. 2933f41 Avoid calling getSpelling at all for identifiers, which are by Chris Lattner · 17 years ago
  69. f0f2b29 change the concatenation avoidance algorithm to be partially table-driven by Chris Lattner · 17 years ago
  70. b19f5e8 If a token doesn't need cleaning, we can get its first character by Chris Lattner · 17 years ago
  71. 822f940 A minor tweak to -E output, speeding up -E 1.5% on 447.dealII by Chris Lattner · 17 years ago
  72. 349b42a no need to avoid pasting >* It can't form ->*, because we know the previous by Chris Lattner · 17 years ago
  73. 83769ab remove redundant test by Chris Lattner · 17 years ago
  74. 0cbc4b5 avoid a small bit of string traffic by not storing the ""'s around a string in CurFilename by Chris Lattner · 17 years ago
  75. d217773 At one point there were going to be lexer and parser tokens. by Chris Lattner · 17 years ago
  76. 9dc1f53 Reimplement SourceLocation. Instead of having a by Chris Lattner · 17 years ago
  77. 5f016e2 Stage two of getting CFE top correct. by Reid Spencer · 17 years ago