1. 8ce61b3 Break off declaration of Analysis enum into Analyses.def. The driver options in by Ted Kremenek · 16 years ago
  2. d072b89 Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  3. baf6672 add gentoo stable gcc headers path so that all tests pass here (CPATH isnt enough..) by Nuno Lopes · 16 years ago
  4. e972d85 Moved logic for -dump-cfg and -view-cfg into AnalysisConsumer. by Ted Kremenek · 16 years ago
  5. d899b0f Move -dump-live-variables logic to AnalysisConsumer. by Ted Kremenek · 16 years ago
  6. c8a5fd4 Move logic for "-checker-simple" to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  7. 1c6cd21 Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  8. 81ea799 Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  9. 25349e4 Make clang work on 32 bit powerpc linux. by Matthijs Kooijman · 16 years ago
  10. 0cb803a Patch by Anders Bergh: by Ted Kremenek · 16 years ago
  11. 8d83376 Allow -parse-noop -verify options to be used together. by Argiris Kirtzidis · 16 years ago
  12. 2a4224a Use a common SourceManager when processing multiple files. This allows us to cache the contents of source files already loaded from disk. by Ted Kremenek · 16 years ago
  13. 649465c Fix crash when running with multiple source files. This can be improved. by Ted Kremenek · 16 years ago
  14. 842126e Moved LangOptions from TranslationUnit to ASTContext. This induced a variety of cleanups in some ASTConsumers. by Ted Kremenek · 16 years ago
  15. b4d41e1 Correctly preserve the order between -F and -I options. by Ted Kremenek · 16 years ago
  16. c6e1669 Use llvm::cl::desc for description of the -Wimplicit-function-declaration option. by Ted Kremenek · 16 years ago
  17. 3a22b7c Implement support for -w, which silences all warnings. PR2384. by Chris Lattner · 16 years ago
  18. 6032d72 Update driver include paths to work on darwin10. by Ted Kremenek · 16 years ago
  19. 302b062 make #if 0 code compile, even though it still isn't very useful. by Chris Lattner · 16 years ago
  20. 40e56a1 Added -g command line options to clang for generating source level debug information. This patch currently enables generation of line number debug information (stoppoints) and region begin/end debug information. The new files CGDebugInfo.h and CGDebugInfo.cpp implements the debug info manager class CGDebugInfo. by Sanjiv Gupta · 16 years ago
  21. 6968353 Remove the ending "." from clang options descriptions. by Sanjiv Gupta · 16 years ago
  22. 1665a9f start implementation of a macro rewriter, this is currently just stubbed out. by Chris Lattner · 16 years ago
  23. dea31bf Add support for -Wimplicit-function-declaration, rdar://5907433 by Chris Lattner · 16 years ago
  24. 057a2f5 Fix PR2281: these two warnings should be promoted to error on by Chris Lattner · 16 years ago
  25. 102d42e Provide the option to run the CF-retain checker in GC enabled mode. by Ted Kremenek · 16 years ago
  26. 2658c4a Add -fobjc-gc and -fobjc-gc-only options to the driver. by Ted Kremenek · 16 years ago
  27. 863b01f TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 16 years ago
  28. 9d818a2 simplify the return of InitializePreprocessor to be bool instead of a fileid by Chris Lattner · 16 years ago
  29. 47b6a16 simplify ownership of the predefines buffer. by Chris Lattner · 16 years ago
  30. 4e9899f class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 16 years ago
  31. 01d3bf7 Generate the Preprocessor using a local PreprocessorFactory object. by Ted Kremenek · 16 years ago
  32. 675ac6f Added fixme. by Ted Kremenek · 16 years ago
  33. fe82a54 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 16 years ago
  34. 21f72d6 Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 16 years ago
  35. 5fdcc30 Add -o support for -emit-html, make it not produce a file on an error. by Chris Lattner · 16 years ago
  36. 33245d3 Remove "--html-test" driver option and its corresponding code; all of this by Ted Kremenek · 16 years ago
  37. 44e8122 Rename RewriteTest->RewriteObjC. by Steve Naroff · 16 years ago
  38. 517cb51 Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 16 years ago
  39. 61a2078 Handle -D and -U options in order, so that they can cancel each other out when by Sam Bishop · 16 years ago
  40. b1983ba Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 16 years ago
  41. 3e254fb Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  42. 6ab935b Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 16 years ago
  43. dd0126b Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 16 years ago
  44. fd75e31 Added "HTMLDiagnostic", a generic DiagnosticClient (that also implements PathDiagnostic) by Ted Kremenek · 16 years ago
  45. fccd7be debian amd64 testing by Andrew Lenharth · 16 years ago
  46. 6961ec4 debian ia32 testing by Andrew Lenharth · 16 years ago
  47. 673f2bd Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
  48. e1a79d8 Initial experimentation with adding boxed "annotations" to HTMLized source. by Ted Kremenek · 17 years ago
  49. 24612ae Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 17 years ago
  50. 2c77d85 Only compute targetinfo once and don't leak it. Patch by Sam Bishop! by Chris Lattner · 17 years ago
  51. 7fd0aff Pass LangOptions to RewriteTest(). by Steve Naroff · 17 years ago
  52. c04cf13 Fix a ted-o by Chris Lattner · 17 years ago
  53. f3d79c3 simplify triple processing code now that there can be only one arch specified. by Chris Lattner · 17 years ago
  54. 5e1e05c Added --trim-path-graph to the driver to trim paths from the ExplodedGraph by Ted Kremenek · 17 years ago
  55. 827f93b Added boilerplate to execute the CF reference count checker (which isn't yet implemented). by Ted Kremenek · 17 years ago
  56. fc45700 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  57. 716a054 avoid a warning. by Chris Lattner · 17 years ago
  58. 3ee4a2f Find clang headers in the clang headers dir, search it before by Chris Lattner · 17 years ago
  59. 4f022a7 Add support for the CPATH, C_INCLUDE_PATH, CPLUS_INCLUDE_PATH, by Chris Lattner · 17 years ago
  60. 64638a5 fix an interaction between -isystem . and isysroot. by Chris Lattner · 17 years ago
  61. 43b885f convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  62. 0297c76 enable digraphs for C94, thanks to Neil for pointing this out. by Chris Lattner · 17 years ago
  63. b278abb Modified clang driver option -dump-live-variables to (optionally) use the by Ted Kremenek · 17 years ago
  64. 83390ec clang driver options --dump-cfg and --view-cfg now (optionally) use the by Ted Kremenek · 17 years ago
  65. 0118bb5 Running -grsimple now emits diagnostics about the time spent analyzing each function. Will by Ted Kremenek · 17 years ago
  66. f6a6627 Set Ubuntu 7.10 c++ include path. by Lauro Ramos Venancio · 17 years ago
  67. 1da5b14 Added --grsimple-view option to clang driver; this is the same as by Ted Kremenek · 17 years ago
  68. 3862eb1 Renamed GRConstants => GRSimpleVals. by Ted Kremenek · 17 years ago
  69. 606f707 by Steve Naroff · 17 years ago
  70. e086636 Added proof-of-concept NULL pointer diagnostics to GRConstants. by Ted Kremenek · 17 years ago
  71. 73a0703 by Steve Naroff · 17 years ago
  72. f5e9db0 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
  73. 8d72ee0 pull .ll and .bc writing out of the ASTConsumer destructors into some top by Chris Lattner · 17 years ago
  74. 0bed6ec rename ASTSTreamer.{h|cpp} -> ParseAST.{h|cpp} by Chris Lattner · 17 years ago
  75. efd02a3 Make -o work with -E, patch contributed by Shantonu Sen! by Chris Lattner · 17 years ago
  76. a616ee3 add support for -Wundef. by Chris Lattner · 17 years ago
  77. d0515f2 Add Ubuntu 7.10 include path. by Lauro Ramos Venancio · 17 years ago
  78. 8d2080c Insert #pragma once when rewriting a header file. by Fariborz Jahanian · 17 years ago
  79. 70ecf40 Shortened driver option for running the GR-constants analysis to --grconstants. by Ted Kremenek · 17 years ago
  80. d2500ab Hooked up the GRConstants analysis to the driver. by Ted Kremenek · 17 years ago
  81. 008da78 add support for the GCC -include option. by Chris Lattner · 17 years ago
  82. 2528b5e Ted apparently likes crazy whitespace at the end of line. Crush his spirit by by Chris Lattner · 17 years ago
  83. 3b45113 Added most of the boilerplate to the driver needed to run the graph-reachability by Ted Kremenek · 17 years ago
  84. 4eac050 Fix PR1897, patch by Wilhansen Li by Chris Lattner · 17 years ago
  85. 6acbedd Rename stats to print-stats to avoid conflicting with llvm's by Nate Begeman · 17 years ago
  86. 959e5be Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  87. 550a1eb Implement -emit-llvm-bc option by Seo Sanghyeon · 17 years ago
  88. 0c7cd7a Converted uses of scoped_ptr to OwningPtr. by Ted Kremenek · 17 years ago
  89. 6d1d3ac Added methods createMainFileID() and createMainFileIDForMemBuffer() to by Ted Kremenek · 17 years ago
  90. 17861c5 Interned MainFileID within SourceManager. Since SourceManager is referenced by by Ted Kremenek · 17 years ago
  91. 0fd6e49 Typo fix. by Ted Kremenek · 17 years ago
  92. 2578dd0 Added storage of the FileID of the the main source file of a translation unit by Ted Kremenek · 17 years ago
  93. d890f6a Removed "SourceFile" from TranslationUnit. This same information will (soon) by Ted Kremenek · 17 years ago
  94. 09b3f0d Cleaned up "-o" option to print "-o=<path>" instead of "-o=<string>" when by Ted Kremenek · 17 years ago
  95. d01eae6 Added "-o" option to driver. ASTConsumers will need to be gradually by Ted Kremenek · 17 years ago
  96. ab74937 Removed storing inode and device number in TranslationUnit. by Ted Kremenek · 17 years ago
  97. bde3033 Moved generation of the name of the serialized AST file into by Ted Kremenek · 17 years ago
  98. eccf070 Moved ReadBitcodeFile and EmitBitcodeFile out of TranslationUnit and made them by Ted Kremenek · 17 years ago
  99. ac88193 Moved TranslationUnit from Driver to AST library. by Ted Kremenek · 17 years ago
  100. 9af36d3 Start reading the headermap header, drop the 'errorstr' argument to by Chris Lattner · 17 years ago