1. a9be127 Remove unused program action. by Daniel Dunbar · 15 years ago
  2. 35ffe2f Rename CompilerInvocation::DiagOpts -> DiagnosticOpts for consistency. by Daniel Dunbar · 15 years ago
  3. 093333a Add missing defaults to AnalyzerOptions. by Daniel Dunbar · 15 years ago
  4. 1b483e7 Remove unused IsCXXAware and IgnoreSysRoots option from HeaderSearchOptions::Entry. by Daniel Dunbar · 15 years ago
  5. 9f853df Unify the way destructor epilogues are generated for synthesized and regular destructors. Also fix PR5529. by Anders Carlsson · 15 years ago
  6. 6a45c2b Add a comment. by Zhongxing Xu · 15 years ago
  7. fa1a06e When querying type qualifiers on QualType via one of the "non-local" by Douglas Gregor · 15 years ago
  8. a661bee Remove extra space in warn_maynot_respond diagnostic. Fixes <rdar://problem/7364274>. by Ted Kremenek · 15 years ago
  9. c363cb1 Store more information in HeaderSearchOptions so that its initialization is not by Daniel Dunbar · 15 years ago
  10. a4923eb First part of changes to eliminate problems with cv-qualifiers and by Douglas Gregor · 15 years ago
  11. d651141 Fix condition in LocationCheck::classof(). Thanks to Marius Wachtler for pointing this out! by Ted Kremenek · 15 years ago
  12. 63e963c Handle case of missing '@end' in implementation context by Fariborz Jahanian · 15 years ago
  13. 652be34 * Do the same thing to the basicstore as in r84163. by Zhongxing Xu · 15 years ago
  14. 6d70139 Make sure that virtual destructors have delete operators. by Anders Carlsson · 15 years ago
  15. 70f5bc7 Add DeclarationName::dump(). by Anders Carlsson · 15 years ago
  16. 5072430 If we find a deallocation function in the class scope, but it is a placement function we should not look for a deallocation function in the global scope. by Anders Carlsson · 15 years ago
  17. 539e9b1 Make a couple more headers standalone by Douglas Gregor · 15 years ago
  18. 88f0d00 Remove an obviously-broken header, which still tries to refer to ScopedDecl. by Douglas Gregor · 15 years ago
  19. a610663 Make some more headers standalone by Douglas Gregor · 15 years ago
  20. d58c03f Add TargetOptions and use it when constructing targets. by Daniel Dunbar · 15 years ago
  21. 7745cab Make a few headers parse standalone by Douglas Gregor · 15 years ago
  22. d10c5b8 Add pluggable action support to clang-cc, via -plugin command line option. by Daniel Dunbar · 15 years ago
  23. 9a8a83b Move the program action enum to FrontendOptions. by Daniel Dunbar · 15 years ago
  24. d02e232 Change *BugReport constructors to take StringRefs. by Benjamin Kramer · 15 years ago
  25. 5f3b997 Add FrontendActions for all preprocessor based clang-cc actions. by Daniel Dunbar · 15 years ago
  26. 8305d01 Add FrontendActions, which provides a FrontendAction interface to all the existing AST consumer based clang-cc actions. by Daniel Dunbar · 15 years ago
  27. 4ee2409 Add FrontendAction interface, for encapsulating a "clang-cc" style action. by Daniel Dunbar · 15 years ago
  28. 221c721 Shuffle VerifyDiagnosticsClient API to be less fragile. by Daniel Dunbar · 15 years ago
  29. ccb6cb6 Add CompilerInstance::InitializeSourceManager. by Daniel Dunbar · 15 years ago
  30. 79b55f9 Turn -fixit it back into a mode, but make -fixit-at imply that mode this time by Daniel Dunbar · 15 years ago
  31. 81f5a1e Add VerifyDiagnosticsClient, to replace old -verify. by Daniel Dunbar · 15 years ago
  32. 7d90199 Pass Preprocessor through DiagnosticClient::BeginSourceFile. by Daniel Dunbar · 15 years ago
  33. 12ce694 Add ASTConsumer to CompilerInstance. by Daniel Dunbar · 15 years ago
  34. 66724ea If we attempt to add a constructor template specialization that looks by Douglas Gregor · 15 years ago
  35. 0ff1042 Add static version of Preprocessor::getSpelling. by Daniel Dunbar · 15 years ago
  36. 8a9f569 Move CompilerInstance::set* methods out-of-line. by Daniel Dunbar · 15 years ago
  37. 73099bf Move definition of GRExprEngine::ProcessEndPath() out-of-line. by Ted Kremenek · 15 years ago
  38. fd47648 Revert r88718, which does NOT solve the constructor-template-as-copy-constructor issue. Big thanks to John for finding this by Douglas Gregor · 15 years ago
  39. cad84b7 A constructor template cannot be instantiated to a copy by Douglas Gregor · 15 years ago
  40. 8382cf5 Add clang-cc option "--analyzer-experimental-internal-checks". This by Ted Kremenek · 15 years ago
  41. f482d59 Add CompilerInstance utility functions for creating output files. by Daniel Dunbar · 15 years ago
  42. a920483 Add output file list to CompilerInstance, so that it can track them instead of by Daniel Dunbar · 15 years ago
  43. c2f484f Add CodeCompletion consumer to CompilerInvocation. by Daniel Dunbar · 15 years ago
  44. 3a2838d Rework Sema code completion interface. by Daniel Dunbar · 15 years ago
  45. 0f80039 Add CompilerInstance::createPCHExternalASTSource. by Daniel Dunbar · 15 years ago
  46. 704e48a Add CompilerInstance::has* methods for testing if the instance has a particular by Daniel Dunbar · 15 years ago
  47. 5eb8100 Add ASTContext to CompilerInstance. by Daniel Dunbar · 15 years ago
  48. 9400613 Check in a new interface of Checker, which will soon be used. by Zhongxing Xu · 15 years ago
  49. ccd373a GRStateManager::CurrentStmt is not used. Remove it. by Zhongxing Xu · 15 years ago
  50. 0fbb3d9 Add CompilerInstance::createDiagnostics, and move clang-cc to it. by Daniel Dunbar · 15 years ago
  51. 22dacfa Add Preprocessor to CompilerInstance, and move clang-cc CreatePreprocessor to by Daniel Dunbar · 15 years ago
  52. 444be73 Wherein the TargetInfo argument to Preprocessor is made 'const' and propogated. by Daniel Dunbar · 15 years ago
  53. 16b7449 Add {File,Source}Manager to CompilerInstance. by Daniel Dunbar · 15 years ago
  54. 2a79e16 Add CompilerInstance, and starting moving clang-cc to it. by Daniel Dunbar · 15 years ago
  55. fbe2faf Move input kind identification (-x) into FrontendOptions. by Daniel Dunbar · 15 years ago
  56. 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
  57. 21dac5e Move -target-{triple,abi} options into FrontendOptions. by Daniel Dunbar · 15 years ago
  58. 914474c Move code completion options to clang-cc by Daniel Dunbar · 15 years ago
  59. efc18e4 add a fixme, inheriting from PointerIntPair is gross :) by Chris Lattner · 15 years ago
  60. c86804b Move FixItAtLocations into FrontendOptions by Daniel Dunbar · 15 years ago
  61. 2626688 Add FrontendOptions, and starting moving clang-cc to it. by Daniel Dunbar · 15 years ago
  62. c0213f2 We need the definition of NamedDecl in DeclContextInternals.h, since Clang is type-checking the template definition more thoroughly by Douglas Gregor · 15 years ago
  63. ad5757f Spell empty StringRef correctly (0 is a null StringRef, which is not the same). by Daniel Dunbar · 15 years ago
  64. 2811ccf Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library. by Chandler Carruth · 15 years ago
  65. cffecd0 Give CanQual<T> an implicit conversion to bool, so that it can be used by Douglas Gregor · 15 years ago
  66. 11de6de Add a CK_BaseToDerived cast kind. by Anders Carlsson · 15 years ago
  67. e0c4ff2 Disallow FIX-ITs when generating code. by Daniel Dunbar · 15 years ago
  68. 00b98c2 Improve source-location information for implicitly-generated member call expressions by Douglas Gregor · 15 years ago
  69. 9184646 do not store wchar/char16/char32/intmax width/alignment info by Chris Lattner · 15 years ago
  70. 6907943 Move warning options into DiagnosticOptions. by Daniel Dunbar · 15 years ago
  71. 11e729d Move dump-build-information option into DiagnosticOptions. by Daniel Dunbar · 15 years ago
  72. 1acfe8e Remove obsolete 'struct NullDerefTag'. by Ted Kremenek · 15 years ago
  73. 31a241a Enhance Checker class (and GRExprEngine) to support PostVisitation for CallExprs. No clients (yet). by Ted Kremenek · 15 years ago
  74. 7422db3 Remove GRExprEngine::EvalCall(). It had a single callsite in GRExprEngine, and was easily inlined. by Ted Kremenek · 15 years ago
  75. af8e6ed Random const correctness, and incidentally use computeDeclContext when building by John McCall · 15 years ago
  76. b3cb98e Move TokenCache option to PreprocessorOptions. by Daniel Dunbar · 15 years ago
  77. 3574f46 Switch PTHManager to using diagnostics for most errors. by Daniel Dunbar · 15 years ago
  78. e884ff8 Make StoreManager::getSizeInElements() always return DefinedOrUnknownSVal. by Zhongxing Xu · 15 years ago
  79. 8b13c08 Improve recovery in a wonky case where one tries to specialize a by Douglas Gregor · 15 years ago
  80. 1144c21 Fix Makefile dependency bug with out-of-dir builds. by Daniel Dunbar · 15 years ago
  81. 918ac48 Tweak AnalyzerOptions for consistency, and make sure default constructed object by Daniel Dunbar · 15 years ago
  82. 5746f1f Move AnalyzerOptions into CompilerInvocation. by Daniel Dunbar · 15 years ago
  83. c8d8ac5 Add <foo> = [<bar> nextObject] to the -Widiomatic-parentheses category, by John McCall · 15 years ago
  84. c716293 Tweak PCH -include handling to make sure it matches the name as would be present by Daniel Dunbar · 15 years ago
  85. db0d4b7 Template argument deduction for template template parameters. This by Douglas Gregor · 15 years ago
  86. 7ca8b06 writable atomic property's setter/getter must be in 'lock' step of by Fariborz Jahanian · 15 years ago
  87. f35f828 Improve diagnostics when a default template argument does not match by Douglas Gregor · 15 years ago
  88. 961c76e Always initialize the header search object as part of InitializePreprocessor; by Daniel Dunbar · 15 years ago
  89. 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
  90. ca11f61 Sink AttachDependencyFileGen into CreatePreprocessor. by Daniel Dunbar · 15 years ago
  91. 0e0bae8 Add DependencyOutputOptions to wrap -M... options, and propogate to by Daniel Dunbar · 15 years ago
  92. 10f51e8 Remove some stale ErrorNodes variables in GRExprEngine and the old buffer overflow logic in GRExprEngineInternalChecks.cpp. by Ted Kremenek · 15 years ago
  93. 0059f1c After drinking caffeine, add the two files missing from the previous submit. by Chandler Carruth · 15 years ago
  94. 9148c3f Before checking a template template argument against its corresponding by Douglas Gregor · 15 years ago
  95. f465e85 Move the ManagerRegistry to the Analysis library to resolve the layering violation. by Chandler Carruth · 15 years ago
  96. d694485 Add undefined array subscript checker. by Zhongxing Xu · 15 years ago
  97. 29cf746 Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 15 years ago
  98. 775bee7 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 15 years ago
  99. 29a790b Simplifiy target feature handling by coalescing all the logic into by Daniel Dunbar · 15 years ago
  100. aea3641 Allow TextDiagnosticPrinter to have optional ownership of its output stream. by Daniel Dunbar · 15 years ago