1. b3cb98e Move TokenCache option to PreprocessorOptions. by Daniel Dunbar · 15 years ago
  2. 3574f46 Switch PTHManager to using diagnostics for most errors. by Daniel Dunbar · 15 years ago
  3. c67a5f9 Simplify. by Daniel Dunbar · 15 years ago
  4. d1e7a96 clang-cc: Refactor ParseInputFollow to clearly split on the two primary cases, by Daniel Dunbar · 15 years ago
  5. 975790e clang-cc: Factor ReadPCHFile out of ProcessInputFile. by Daniel Dunbar · 15 years ago
  6. 6606864 Simplify. by Daniel Dunbar · 15 years ago
  7. b4373b2 clang-cc: Unify InitializeSourceManager calls. by Daniel Dunbar · 15 years ago
  8. 8e1bcb0 clang-cc: Move non-Consumer action handling to common location, to expose the massive amount of redundancy we have introduced through blind copy-and-paste. by Daniel Dunbar · 15 years ago
  9. 1ea5294 Fix PCH/preprocess test to be more useful, and unbreak -E mode with implicit by Daniel Dunbar · 15 years ago
  10. c8daaa4 Tweak formatting. by Daniel Dunbar · 15 years ago
  11. 5746f1f Move AnalyzerOptions into CompilerInvocation. by Daniel Dunbar · 15 years ago
  12. 961c76e Always initialize the header search object as part of InitializePreprocessor; by Daniel Dunbar · 15 years ago
  13. 5814e65 Allow Preprocessor to take ownership of the HeaderSearch object. I think it should probably always own the header search object, but I'm not sure... by Daniel Dunbar · 15 years ago
  14. ca11f61 Sink AttachDependencyFileGen into CreatePreprocessor. by Daniel Dunbar · 15 years ago
  15. 0e0bae8 Add DependencyOutputOptions to wrap -M... options, and propogate to by Daniel Dunbar · 15 years ago
  16. 387ecbd Simplify. by Daniel Dunbar · 15 years ago
  17. 29cf746 Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 15 years ago
  18. 775bee7 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 15 years ago
  19. 29a790b Simplifiy target feature handling by coalescing all the logic into by Daniel Dunbar · 15 years ago
  20. dc8bbac Minor formatting tweaks. by Daniel Dunbar · 15 years ago
  21. bd9f04b clang-cc: Refactor some -fixit-at handling. by Daniel Dunbar · 15 years ago
  22. aea3641 Allow TextDiagnosticPrinter to have optional ownership of its output stream. by Daniel Dunbar · 15 years ago
  23. 339c134 clang-cc: Move InitializeAnalyzerOptions into Options.cpp by Daniel Dunbar · 15 years ago
  24. d1cdcf3 clang-cc: Start coalescing "frontend" options. by Daniel Dunbar · 15 years ago
  25. 0db4b76 clang-cc: Move InitializeDiagnosticOptions to Options.cpp by Daniel Dunbar · 15 years ago
  26. f797329 clang-cc: Move HeaderSearchOptions to Options.cpp by Daniel Dunbar · 15 years ago
  27. dbf75fe Turn LoggingDiagnosticClient into a more general ChainedDiagnosticClient and by Daniel Dunbar · 15 years ago
  28. 5674908 clang-cc: Move InitializeLangOptions to Options.cpp. by Daniel Dunbar · 15 years ago
  29. d9beeaf Inline some trivial functions. by Daniel Dunbar · 15 years ago
  30. b52d243 clang-cc: Move InitializePreprocessorOptions to Options.cpp by Daniel Dunbar · 15 years ago
  31. d8daaa7 clang-cc: Simplify this code, now that predefines handling is uniform in the by Daniel Dunbar · 15 years ago
  32. 7b5a121 Redo how PCH handles its implicit include. Instead of treating this specially in by Daniel Dunbar · 15 years ago
  33. 5ee0aa7 Recognize -fsyntax-only as a "consumer only" action. by Daniel Dunbar · 15 years ago
  34. 0f9fed7 Add Diagnostic::Report method for reporting diagnostics without a location. by Daniel Dunbar · 15 years ago
  35. b6d1cc8 PreprocessorOptions: Get rid of unnecessary 'isPTH' flag for include entries. by Daniel Dunbar · 15 years ago
  36. e0a9581 Decouple more of clang-cc by moving ImplicitP[CT]H options into by Daniel Dunbar · 15 years ago
  37. 0498cfc clang-cc: Start moving "pure" option handling to Options.cpp, to separate it by Daniel Dunbar · 15 years ago
  38. 9773429 clang-cc: Sink more options inside codegenopts namespace. by Daniel Dunbar · 15 years ago
  39. e359445 Change LangOpts initialization to directly test the code generation options, by Daniel Dunbar · 15 years ago
  40. fcb0c3b Factor out parts of InitializeCompileOptions that depend on the LangOptions. by Daniel Dunbar · 15 years ago
  41. 8d35314 Localize -disable-llvm-optzns handling to BackendConsumer::CreatePasses. by Daniel Dunbar · 15 years ago
  42. bc2ea34 clang-cc: Start sinking (CodeGen) options into namespaces to limit their scope. by Daniel Dunbar · 15 years ago
  43. 9af8695 Cleanup some clang-cc FIXMEs by Daniel Dunbar · 15 years ago
  44. 36f4ec3 Add CompileOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
  45. 89f8c1d Simplify, following MemoryBuffer::getSTDIN API fix. by Daniel Dunbar · 15 years ago
  46. 9253e49 Remove some if-0'd code, we can resurrect this if we ever decide to support by Daniel Dunbar · 15 years ago
  47. 5fc7d34 Add PreprocessorOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
  48. 2cdafa8 Privatize InitHeaderSearch, this functionality is only exposed via by Daniel Dunbar · 15 years ago
  49. 26a0cac Move LangOptions, HeaderSearchOptions, and the target feature map into by Daniel Dunbar · 15 years ago
  50. 638c901 Switch Target* to Target&. by Daniel Dunbar · 15 years ago
  51. 227b238 Change clang-cc to expect that all inputs have the same language (so we can only construct a single LangInfo). This matches how it is used in practice (since the compiler only it invokes it for one file at a time). by Daniel Dunbar · 15 years ago
  52. 094a84c (llvm up) Convert clang-cc.cpp:GetLanguage to StringSwitch. by Daniel Dunbar · 15 years ago
  53. e29709f Add CompilerInvocation object, to capture all the options one needs to invoke by Daniel Dunbar · 15 years ago
  54. dd35ce9 Switch clang-cc to use ApplyHeaderSearchOptions, and fix a thinko. by Daniel Dunbar · 15 years ago
  55. e166582 Lift InitHeaderSearch::AddEnvVarPaths logic higher. by Daniel Dunbar · 15 years ago
  56. 8863b98 Rename PreprocessorInitOptions to PreprocessorOptions for consistency, and fix by Daniel Dunbar · 15 years ago
  57. 750156a Lift compiler builtin include path logic higher. by Daniel Dunbar · 15 years ago
  58. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  59. 40d1bb6 Eliminate tabls by John Thompson · 15 years ago
  60. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  61. efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
  62. efceabd Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&, and simplify. by Daniel Dunbar · 15 years ago
  63. ad451cc Remove clang-cc -html-diags option, this doesn't fit in well and we get plenty by Daniel Dunbar · 15 years ago
  64. 4cc1a25 Simplify. by Daniel Dunbar · 15 years ago
  65. 64acf1d CreatePreprocessor cannot fail by Daniel Dunbar · 15 years ago
  66. 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
  67. 593c41f Turn if chain into switch. by Daniel Dunbar · 15 years ago
  68. 938963f InitializePreprocessor cannot fail. by Daniel Dunbar · 15 years ago
  69. 468fe24 Move -undef flag into PreprocessorInitOptions by Daniel Dunbar · 15 years ago
  70. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  71. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  72. eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
  73. 59876c2 Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. by Tanya Lattner · 15 years ago
  74. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  75. 7c15e71 Remove clang-cc code for handling -mmacosx-version-min and by Daniel Dunbar · 15 years ago
  76. 8cb6562 Move some clang-cc errors to use diagnostics, and simplify. by Daniel Dunbar · 15 years ago
  77. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  78. bea5a84 Formatting fixes. by Daniel Dunbar · 15 years ago
  79. 09bdd59 clang-cc: Allow building for x86_64 with -mmacosx-version-min=10.4. by Daniel Dunbar · 15 years ago
  80. 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
  81. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  82. 8b88ca6 Simplify (move guard to caller instead of callee). by Daniel Dunbar · 15 years ago
  83. 43d8176 Set up include paths for VC++ and Cygwin headers, along with the by Mike Stump · 15 years ago
  84. 1bb15a9 Add a -nostdclanginc flag to clang-cc that prevents it from searching by Rafael Espindola · 15 years ago
  85. 214904e Set GNUMode only for the "gnu" language standard options, from Ken Dyck! by Douglas Gregor · 15 years ago
  86. 78762eb Add a -dump-record-layouts argument to clang-cc. by Anders Carlsson · 15 years ago
  87. b657f11 Replace the -code-completion-dump option with by Douglas Gregor · 15 years ago
  88. d172bf3 This FIXME is done. by Daniel Dunbar · 15 years ago
  89. b924259 Removed -fobjc-newgc-api option. clang now conforms to by Fariborz Jahanian · 15 years ago
  90. a674bf4 Switch ProcessASTInputFile to still use ParseAST. by Daniel Dunbar · 15 years ago
  91. 31b87d8 Change ASTUnit to take the Diagnostic as an argument, the client should have control of this. by Daniel Dunbar · 15 years ago
  92. 59b2172 switch command line 'parse' methods to use StringRef for efficiency, which by Chris Lattner · 15 years ago
  93. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  94. aca2ebd Initial support for code generation from .ast files. by Daniel Dunbar · 15 years ago
  95. 0794d8d clang-cc: Factor out code for creating one of the standard AST consumer actions. by Daniel Dunbar · 15 years ago
  96. 13fdf28 Simplify. by Daniel Dunbar · 15 years ago
  97. 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 15 years ago
  98. b123ea3 Starting patch to generate more specific API for objc's by Fariborz Jahanian · 15 years ago
  99. 3cbf5a0 Be sure to use the correct version instead of the wrong one. by Mike Stump · 15 years ago
  100. 73b7959 Add -target-abi clang-cc option, currently unused. by Daniel Dunbar · 15 years ago