- 22bdabf Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 16 years ago
- 531f6c6 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 16 years ago
- 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
- 07d0785 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 16 years ago
- 70e7ead Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 16 years ago
- 11289f4 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
- a5e6775 no really, add the lines :) by Chris Lattner · 16 years ago
- f2d49da9 Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 16 years ago
- fd80b2a PR4288: Make -dD (dump macros with preprocessed source) play nicely with by Eli Friedman · 16 years ago
- 7d0479f Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
- cec35d7 Clean up some unnecessary includes. by Eli Friedman · 16 years ago
- 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]
- 6af494b Move options for -E mode from PrintPreprocessedOutput.cpp to clang-cc.cpp. by Eli Friedman · 16 years ago
- 26c672b Refactor -dM mode out of the main routine for -E handling. by Eli Friedman · 16 years ago
- fcb57d5 Switch some utilities in clang-cc to take a stream instead of a by Eli Friedman · 16 years ago
- d980371 Integrate 3 months of ObjC rewriter fixes (from the Apple/objective-rewrite branch). by Steve Naroff · 17 years ago
- cac63f3 Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 17 years ago
- 7b4df3c Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 17 years ago
- 839150e push line markers through -E mode. by Chris Lattner · 17 years ago
- e5a7ecc Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 17 years ago[Renamed from clang/Driver/PrintPreprocessedOutput.cpp]
- b45c23a0 fix test/Preprocessor/macro_paste_mscomment.c. by Chris Lattner · 17 years ago
- 644d452 factor token concatenation avoidance logic out of by Chris Lattner · 17 years ago
- 1ec246d make -dM emit macros in a deterministic (sorted) order instead of by Chris Lattner · 17 years ago
- 8ac6373 use efficient form of getSpelling, this speeds up -dM by 16%. by Chris Lattner · 17 years ago
- 1630c3c Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 17 years ago
- fc001b0 factor some code out into a helper function. by Chris Lattner · 17 years ago
- 88ea93e lower the interface to getLineNumber like we did for by Chris Lattner · 17 years ago
- d8cc884 avoid emitting a bogus line marker for the top level #include by Chris Lattner · 17 years ago
- f1ca7d3 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 17 years ago
- 9892ea2 minor speedups/cleanups for -E mode. by Chris Lattner · 17 years ago
- 5a7971e This change refactors some of the low-level lexer interfaces a bit. by Chris Lattner · 17 years ago
- dde6eb3 Make sure to escape " when it occurs in a string in pragma comment by Chris Lattner · 17 years ago
- 5eef507 Make -E mode propagate #pragma comment's into the output. by Chris Lattner · 17 years ago
- 8a42586 more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 17 years ago
- 53e384f Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 17 years ago
- 1ee543e make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ is enabled by Chris Lattner · 17 years ago
- f3502db [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that by Daniel Dunbar · 17 years ago
- 66a740e Rename Characteristic_t to CharacteristicKind by Chris Lattner · 17 years ago
- b03dc76 clean up a bunch of fixme's I added, by moving by Chris Lattner · 17 years ago
- 71efd81 fit in 80 cols. by Chris Lattner · 17 years ago
- e778131 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 17 years ago
- 98e0e53 Workaround gcc bug causing crash on our preprocessed outputs. by Daniel Dunbar · 17 years ago
- cdceb08 Use raw_ostream to output an unsigned. by Chris Lattner · 17 years ago
- 286e5e6 printing with an unspecified dest means to print to stdout. by Chris Lattner · 17 years ago
- b52817bf don't delete a variable on the stack by Chris Lattner · 17 years ago
- 7459c86 simplify this code a bit more. by Chris Lattner · 17 years ago
- 068529a remove global variables for output stream. by Chris Lattner · 17 years ago
- b5a92f8 by Chris Lattner · 17 years ago
- 47fb9ef Fix rdar://5843510 don't assert and die when an invalid output by Chris Lattner · 18 years ago
- 2163265 Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error. by Chris Lattner · 18 years ago
- 02bf444 Make -o work with -E, patch contributed by Shantonu Sen! by Chris Lattner · 18 years ago
- 15346fa avoid pasting L + "foo" into L"foo". by Chris Lattner · 18 years ago
- 877ca77 avoid token pasting between identifiers and wide strings: by Chris Lattner · 18 years ago
- 5b12ab8 Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 18 years ago
- 230bd91 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 18 years ago
- 60a288a simplify the interfaces to ProcessInputFile and InitializePreprocessor by Chris Lattner · 18 years ago
- 3ed83c1 The flags on tokens indicate whether they are the start of a *physical* line, by Chris Lattner · 18 years ago
- 84f4507 Fix a pretty big but subtle bug counting the number of newlines to emit. by Chris Lattner · 18 years ago
- 7b4ab65 fix a bunch of regressions I introduced :( by Chris Lattner · 18 years ago
- 3ff2e69 clang -E should not print tokens from the predefines buffer. by Chris Lattner · 18 years ago
- 1f1b0db Make a significant change to invert the control flow handling by Chris Lattner · 18 years ago
- 3c69f12 convert driver over to use Token::is/isNot APIs. fwew, all done. by Chris Lattner · 18 years ago
- cd1e8d2 Add #ifdefs to make the source portable to windows. Patch contributed by Chris Lattner · 18 years ago
- 1af0e01 avoid std::string yet again. by Chris Lattner · 18 years ago
- 4c4a245 Use a smallstring instead of an std::string in FileChanged to avoid some malloc traffic. by Chris Lattner · 18 years ago
- d63c8a5 Fix two paste-avoidance bugs I introduced last night. Patch by Chris Lattner · 18 years ago
- 5cdfebb avoid creating std::strings in MoveToLine by Chris Lattner · 18 years ago
- 93c4ea7 In OutputString, avoid calling memcpy for really tiny strings. by Chris Lattner · 18 years ago
- 0af9823 Avoid calling getSpelling at all for identifiers, which are by Chris Lattner · 18 years ago
- 4418ce1 change the concatenation avoidance algorithm to be partially table-driven by Chris Lattner · 18 years ago
- e4c566c If a token doesn't need cleaning, we can get its first character by Chris Lattner · 18 years ago
- 5f07582 A minor tweak to -E output, speeding up -E 1.5% on 447.dealII by Chris Lattner · 18 years ago
- 7dd7a1d no need to avoid pasting >* It can't form ->*, because we know the previous by Chris Lattner · 18 years ago
- 9c69170 remove redundant test by Chris Lattner · 18 years ago
- 9b79624 avoid a small bit of string traffic by not storing the ""'s around a string in CurFilename by Chris Lattner · 18 years ago
- 146762e At one point there were going to be lexer and parser tokens. by Chris Lattner · 18 years ago
- dc5c055 Reimplement SourceLocation. Instead of having a by Chris Lattner · 18 years ago
- 23b7eb6 Finally bite the bullet and make the major change: split the clang namespace by Chris Lattner · 18 years ago
- 2ea9dd7 ProcessInputFile no longer mutates LangInfo. by Chris Lattner · 19 years ago
- b352e3e Change KeepComments/KeepMacroComments modes to be facets of the preprocessor by Chris Lattner · 19 years ago
- 96327ea first step refactoring driver so that it can process multiple input files by Chris Lattner · 19 years ago
- 87f267e eliminate global variables now that PPCallbacks can have state by Chris Lattner · 19 years ago
- b8d6d5a Formalize preprocessor callbacks together into a PPCallbacks structure, instead by Chris Lattner · 19 years ago
- 9916c5c Remove GNU C++ min/max operator extension support, they have been removed by Chris Lattner · 19 years ago
- 9f547a4 Fix regression in my last commit by Chris Lattner · 19 years ago
- 8fd6ee1 silence warning by Chris Lattner · 19 years ago
- 4beb038 Trigraphs are not enabled in -fpreprocessed mode. by Chris Lattner · 19 years ago
- cd028fc Fix -E mode to enter the main file *after* -E mode configures the preprocessor. by Chris Lattner · 19 years ago
- 457fc15 Implement comment saving mode: the -C and -CC options. by Chris Lattner · 19 years ago
- 331ad77 Implement paste avoidance, implementing Preprocessor/output_paste_avoid.c by Chris Lattner · 19 years ago
- ecc39e9 Change Lexer::Stringify to not add ""'s around the string. by Chris Lattner · 19 years ago
- 67c3848 Cleanup some obsolete comments. by Chris Lattner · 19 years ago
- ef9eae1 Change the Preprocessor::getSpelling interface to let it be zero-copy in by Chris Lattner · 19 years ago
- f46be6c Switch to using unix "write" when available, instead of stdio. This speeds up by Chris Lattner · 19 years ago
- 728b4dc improve comments by Chris Lattner · 19 years ago
- ff3f5f4 fix compile error by Chris Lattner · 19 years ago
- 03cbe1f Minor code cleanup by Chris Lattner · 19 years ago
- 3338ba8 Make -P mode faster and closer to GCC output by not emitting newlines at all. by Chris Lattner · 19 years ago
- 73b6a2f Match GCC behavior better in -P mode. by Chris Lattner · 19 years ago
- deb3701 Switch from using iostreams to using stdio for -E mode output. This speeds by Chris Lattner · 19 years ago