1. b8bef26 Simplify. by Daniel Dunbar · 15 years ago
  2. f51ac1b Factor out a LangStandard class and coalesce the information about the standards into LangStandards.def by Daniel Dunbar · 15 years ago
  3. 1a50628 Add a missing include <cstdio> by Daniel Dunbar · 15 years ago
  4. aa7dd81 Sort CMakeLists.txt by Kovarththanan Rajaratnam · 15 years ago
  5. 33a33d8 Sketch the rest of the clang -cc1 option definitions, aka fun with C-x C-(. by Daniel Dunbar · 15 years ago
  6. e2814d8 Add clang -cc1 parsing of analyzer options. by Daniel Dunbar · 15 years ago
  7. 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
  8. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  9. 33b26ea3 clang-cc: Lift setForcedLangOptions out of options initialization. by Daniel Dunbar · 15 years ago
  10. d5dc9f3 Add a workaround to silence a bogus g++-4.4 -pedantic warning. by Benjamin Kramer · 15 years ago
  11. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  12. 6cef99d Try yet again to de-bork CMake Windows build w.r.t. clang++ by Douglas Gregor · 15 years ago
  13. 234e162 Try to fix CMake clang++ creation on Windows by Douglas Gregor · 15 years ago
  14. 217acbf Sketch some 'clang -cc1' support, for testing parts of CompilerInvocation. by Daniel Dunbar · 15 years ago
  15. c720a4d CMake goop to create clang++ symlink by Douglas Gregor · 15 years ago
  16. c59dc92 clang-cc: Remove some more llvm::cl::init arguments, by only setting values when by Daniel Dunbar · 15 years ago
  17. 4db166b Change -code-completion-debug-printer to -no-code-completion-debug-printer. by Daniel Dunbar · 15 years ago
  18. 53e8484 Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... variants instead of using llvm::cl::init(true) arguments. by Daniel Dunbar · 15 years ago
  19. 48c4c1f clang-cc: Remove superfluous llvm::cl::init(false) arguments. by Daniel Dunbar · 15 years ago
  20. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  21. f4961da Use TOOLALIAS so that clang++ gets 'built'. by Daniel Dunbar · 15 years ago
  22. 1d5fdf3 Add special clang_getCursor() support for @class. Handles <rdar://problem/7383421>. by Ted Kremenek · 15 years ago
  23. 67f401b Fix -Asserts warning. by Daniel Dunbar · 15 years ago
  24. a9933b9 fgetln is a BSDism; replace it with more portable code. by Benjamin Kramer · 15 years ago
  25. 1c6da17 Add c-index-test mode "-test-file-scan", which scans a source file and calls clang_getCursor() on every character. by Ted Kremenek · 15 years ago
  26. 7388555 Add clang_getNullCursor() and clang_equalCursors() (the latter for comparing cursors). by Ted Kremenek · 15 years ago
  27. 4633d1b Allow "source_filename" to be an optional argument (the client can provide NULL). This allows the client to put the source_filename in the command_line_args without fear of the file being named twice. by Ted Kremenek · 15 years ago
  28. 0d43519 Organize c-index-test into logic sections, and add section headers. by Ted Kremenek · 15 years ago
  29. f5d9c93 Clean up c-index-test command line usage a bit by requiring a "-test-load-tu" option when testing clang_loadTranslationUnit(). Running c-index-test without the correct arguments now also prints a useful summary of its correct usage. by Ted Kremenek · 15 years ago
  30. cd1b5cb Remove stale reference to old WPA dir, patch by Kovarththanan Rajaratnam. by Daniel Dunbar · 15 years ago
  31. 2fc430d Eliminate TargetInfo::getDefaultLangOptions, this kind of logic is better done by Daniel Dunbar · 15 years ago
  32. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  33. ef7fdc6 Sort visitor methods. No functionality change. by Ted Kremenek · 15 years ago
  34. 049d3a0 Simplify PreprocessorOptions, it doesn't need abstracted field access. by Daniel Dunbar · 15 years ago
  35. 9298cfc Have clang_getCursorSource() return NULL when the source location is invalid or refers to a built-in buffer. Implements <rdar://problem/7296243>. by Ted Kremenek · 15 years ago
  36. 223ebe3 Move InitializeAnalyzerOptions for consistency. by Daniel Dunbar · 15 years ago
  37. 962b8b4 Remove unused NoPreprocess variable. by Daniel Dunbar · 15 years ago
  38. 1b483e7 Remove unused IsCXXAware and IgnoreSysRoots option from HeaderSearchOptions::Entry. by Daniel Dunbar · 15 years ago
  39. 9119e7e Trim includes. by Daniel Dunbar · 15 years ago
  40. c363cb1 Store more information in HeaderSearchOptions so that its initialization is not by Daniel Dunbar · 15 years ago
  41. 6143ea2 clang-cc: Eliminate cyclic dependency in initializing CodeGenOptions. by Daniel Dunbar · 15 years ago
  42. d58c03f Add TargetOptions and use it when constructing targets. by Daniel Dunbar · 15 years ago
  43. 297b083 Add examples dir, built with BUILD_EXAMPLES=1 (Makefiles, no CMake equivalent yet). by Daniel Dunbar · 15 years ago
  44. d10c5b8 Add pluggable action support to clang-cc, via -plugin command line option. by Daniel Dunbar · 15 years ago
  45. 9a8a83b Move the program action enum to FrontendOptions. by Daniel Dunbar · 15 years ago
  46. 4fdba99 clang-cc: Switch to using FrontendAction. Whee. by Daniel Dunbar · 15 years ago
  47. ccb6cb6 Add CompilerInstance::InitializeSourceManager. by Daniel Dunbar · 15 years ago
  48. 79b55f9 Turn -fixit it back into a mode, but make -fixit-at imply that mode this time by Daniel Dunbar · 15 years ago
  49. f79dced Switch -verify implementation to use VerifyDiagnosticClient. by Daniel Dunbar · 15 years ago
  50. 7d90199 Pass Preprocessor through DiagnosticClient::BeginSourceFile. by Daniel Dunbar · 15 years ago
  51. 8382cf5 Add clang-cc option "--analyzer-experimental-internal-checks". This by Ted Kremenek · 15 years ago
  52. f482d59 Add CompilerInstance utility functions for creating output files. by Daniel Dunbar · 15 years ago
  53. a920483 Add output file list to CompilerInstance, so that it can track them instead of by Daniel Dunbar · 15 years ago
  54. 84c639a clang-cc: Move output file initialization closer to use. by Daniel Dunbar · 15 years ago
  55. 3d0dab3 Simplify, in anticipation of introducing explicit action instances. by Daniel Dunbar · 15 years ago
  56. c2f484f Add CodeCompletion consumer to CompilerInvocation. by Daniel Dunbar · 15 years ago
  57. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  58. 0f80039 Add CompilerInstance::createPCHExternalASTSource. by Daniel Dunbar · 15 years ago
  59. 704e48a Add CompilerInstance::has* methods for testing if the instance has a particular by Daniel Dunbar · 15 years ago
  60. 5eb8100 Add ASTContext to CompilerInstance. by Daniel Dunbar · 15 years ago
  61. 0fbb3d9 Add CompilerInstance::createDiagnostics, and move clang-cc to it. by Daniel Dunbar · 15 years ago
  62. f819b25 Add a FIXME. by Daniel Dunbar · 15 years ago
  63. 22dacfa Add Preprocessor to CompilerInstance, and move clang-cc CreatePreprocessor to by Daniel Dunbar · 15 years ago
  64. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  65. 16b7449 Add {File,Source}Manager to CompilerInstance. by Daniel Dunbar · 15 years ago
  66. 2a79e16 Add CompilerInstance, and starting moving clang-cc to it. by Daniel Dunbar · 15 years ago
  67. fbe2faf Move input kind identification (-x) into FrontendOptions. by Daniel Dunbar · 15 years ago
  68. eb94113 Add clang-cc option "-analyzer-experimental-checks" to enable experimental path-sensitive checks. The idea is to separate "barely working" or "skunkworks" checks from ones that should always run. Later we need more fine-grain checker control. by Ted Kremenek · 15 years ago
  69. 21dac5e Move -target-{triple,abi} options into FrontendOptions. by Daniel Dunbar · 15 years ago
  70. 914474c Move code completion options to clang-cc by Daniel Dunbar · 15 years ago
  71. c86804b Move FixItAtLocations into FrontendOptions by Daniel Dunbar · 15 years ago
  72. 1417c74 clang-cc: Keep Verbose option with HeaderSearchOptions, for now. by Daniel Dunbar · 15 years ago
  73. 2626688 Add FrontendOptions, and starting moving clang-cc to it. by Daniel Dunbar · 15 years ago
  74. 2811ccf Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 15 years ago
  75. e0c4ff2 Disallow FIX-ITs when generating code. by Daniel Dunbar · 15 years ago
  76. aa57614 clang-cc: Coalesce frontend options further. by Daniel Dunbar · 15 years ago
  77. 6907943 Move warning options into DiagnosticOptions. by Daniel Dunbar · 15 years ago
  78. 11e729d Move dump-build-information option into DiagnosticOptions. by Daniel Dunbar · 15 years ago
  79. 00e5b8d clang-cc: Factor CreateDiagnosticEngine out of main. by Daniel Dunbar · 15 years ago
  80. bfbeadb clang-cc: -fixit is actually option, not an action, although its use with non by Daniel Dunbar · 15 years ago
  81. 32358e2 Simplify. by Daniel Dunbar · 15 years ago
  82. b3cb98e Move TokenCache option to PreprocessorOptions. by Daniel Dunbar · 15 years ago
  83. 3574f46 Switch PTHManager to using diagnostics for most errors. by Daniel Dunbar · 15 years ago
  84. c67a5f9 Simplify. by Daniel Dunbar · 15 years ago
  85. d1e7a96 clang-cc: Refactor ParseInputFollow to clearly split on the two primary cases, by Daniel Dunbar · 15 years ago
  86. 975790e clang-cc: Factor ReadPCHFile out of ProcessInputFile. by Daniel Dunbar · 15 years ago
  87. 6606864 Simplify. by Daniel Dunbar · 15 years ago
  88. b4373b2 clang-cc: Unify InitializeSourceManager calls. by Daniel Dunbar · 15 years ago
  89. 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
  90. 1ea5294 Fix PCH/preprocess test to be more useful, and unbreak -E mode with implicit by Daniel Dunbar · 15 years ago
  91. c8daaa4 Tweak formatting. by Daniel Dunbar · 15 years ago
  92. 5746f1f Move AnalyzerOptions into CompilerInvocation. by Daniel Dunbar · 15 years ago
  93. 6a6742a Fix clang executable path for Windows by John Thompson · 15 years ago
  94. 961c76e Always initialize the header search object as part of InitializePreprocessor; by Daniel Dunbar · 15 years ago
  95. 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
  96. ca11f61 Sink AttachDependencyFileGen into CreatePreprocessor. by Daniel Dunbar · 15 years ago
  97. 0e0bae8 Add DependencyOutputOptions to wrap -M... options, and propogate to by Daniel Dunbar · 15 years ago
  98. 387ecbd Simplify. by Daniel Dunbar · 15 years ago
  99. e26bd90 Fix unsafe use of StringRef I introduced. by Daniel Dunbar · 15 years ago
  100. 29cf746 Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 15 years ago