1. 3b2c58c minor changes, collect the range of an expr before rewriting the subexprs by Chris Lattner · 16 years ago
  2. 1a2b90d Make sure method definitions get output with -ast-dump. by Steve Naroff · 16 years ago
  3. 1d3cce3 Update driver include paths to work on darwin10. by Ted Kremenek · 16 years ago
  4. 63e2dcc Explicitly #include Support/Streams.h when using llvm::cout and friends. by Dan Gohman · 16 years ago
  5. 5f1adf8 Fix the destruction "properly" in the sense that we actually destroy the by Eli Friedman · 16 years ago
  6. 73b17cd Fix rewriter bug <rdar://problem/5929344> clang ObjC rewriter: "extern int __CFConstantStringClassReference[];" should be extern "C". by Steve Naroff · 16 years ago
  7. ec92156 Implement -rewrite-macros, which is a crazy macro expander that expands by Chris Lattner · 16 years ago
  8. 0951052 make #if 0 code compile, even though it still isn't very useful. by Chris Lattner · 16 years ago
  9. 580ca78 Fix <rdar://problem/5924225> clang ObjC rewriter: objc_exception_throw declaration in preamble does not match objc/objc-exception.h. by Steve Naroff · 16 years ago
  10. 1284db8 Make sure the prototype for objc_msgSend_fpret() returns a double. by Steve Naroff · 16 years ago
  11. f075761 Fix <rdar://problem/5879237> clang objc rewriter: ivars not accessible in structure generated for class by Steve Naroff · 16 years ago
  12. e8b9f5b 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
  13. 56cf96b Remove the ending "." from clang options descriptions. by Sanjiv Gupta · 16 years ago
  14. b57e3d4 start implementation of a macro rewriter, this is currently just stubbed out. by Chris Lattner · 16 years ago
  15. 5df5b76 Fix <rdar://problem/5887874> clang ObjC rewriter: Use a different name for 'offsetof' macro by Steve Naroff · 16 years ago
  16. 33de3f0 This patch introduces declaration of getter methods for ObjC2's by Fariborz Jahanian · 16 years ago
  17. 1919032 Fix <rdar://problem/5908598> clang ObjC rewriter: typo in #pragma at end by Steve Naroff · 16 years ago
  18. ea17d6a Improve HTMLDiagnostics by understanding the "Below" hint. by Ted Kremenek · 16 years ago
  19. 9f52597 Fix <rdar://problem/5879237> clang objc rewriter: ivars not accessible in structure generated for class by Steve Naroff · 16 years ago
  20. b89ca23 Print ObjC methods of ObjC classes. by Fariborz Jahanian · 16 years ago
  21. 69c827f Fix <rdar://problem/5888515> clang ObjC rewriter: Use objc.h for declarations instead of putting them in the preamble? by Steve Naroff · 16 years ago
  22. fbfe825 Fix <rdar://problem/5881225> clang ObjC Rewriter: Protocol structure defined twice when two interfaces use it in same file by Steve Naroff · 16 years ago
  23. 5251e13 Patch to refactor setter/getter names of property attributes into Selector by Fariborz Jahanian · 16 years ago
  24. 37d1084 Add support for -Wimplicit-function-declaration, rdar://5907433 by Chris Lattner · 16 years ago
  25. 46b55e5 percolate @optional/@required protocols down to ASTs for by Fariborz Jahanian · 16 years ago
  26. 8aedf19 Fix PR2281: these two warnings should be promoted to error on by Chris Lattner · 16 years ago
  27. 7a4648d Output better paths to display in bug reports and compute a common by Ted Kremenek · 16 years ago
  28. 9f74161 When running the reference count checker twice (GC and non-GC mode), only emit by Ted Kremenek · 16 years ago
  29. 072192b added preliminary diagnostics in scan-build results to denote whether by Ted Kremenek · 16 years ago
  30. e5c3012 Provide the option to run the CF-retain checker in GC enabled mode. by Ted Kremenek · 17 years ago
  31. 01d9dbf Add -fobjc-gc and -fobjc-gc-only options to the driver. by Ted Kremenek · 17 years ago
  32. 7fc8957 Better handling for directory names in HTML diagnostics. Work in progress. by Ted Kremenek · 17 years ago
  33. c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 17 years ago
  34. 628b96f Patch to build AST for property implementation declarations and by Fariborz Jahanian · 17 years ago
  35. 5585114 PathDiagnosticClients now retain ownership of passed PathDiagnostics, requiring by Ted Kremenek · 17 years ago
  36. 7414dc0 html::EscapeText (using the Rewriter) now replaces tabs by default. by Ted Kremenek · 17 years ago
  37. 51574ea simplify the return of InitializePreprocessor to be bool instead of a fileid by Chris Lattner · 17 years ago
  38. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 17 years ago
  39. fa8ec62 Remove bogus cast (<rdar://problem/5874848> clang objc-rewriter: structure with list of protocols has wrong cast). by Steve Naroff · 17 years ago
  40. 84472a8 Implement FIXME discoved by <rdar://problem/5874876> Rewriter: Explicit ivar refs outside a method are being rewritten by Steve Naroff · 17 years ago
  41. 543409e Fix <rdar://problem/5874697> Rewriter: method arguments with complex types not being rewritten properly. by Steve Naroff · 17 years ago
  42. bef5c8b Restore macro expansion for HTMLPrint by using the original Preprocessor. by Ted Kremenek · 17 years ago
  43. 12fc014 Fixed range highlighting bug in HTML diagnostics. by Ted Kremenek · 17 years ago
  44. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 17 years ago
  45. 1ee8d6f Handle text escaping (e.g. & -> &amp;) last, to avoid interactions between 'replace' operations and insert operations. This fixes a problem with "&;&" on line 666 of the gcc.c example I sent out. by Chris Lattner · 17 years ago
  46. a42cf2e Generate the Preprocessor using a local PreprocessorFactory object. by Ted Kremenek · 17 years ago
  47. 9e8829b Temporarily disable macro expansion in the HTML output of HTMLDiagnostics to by Ted Kremenek · 17 years ago
  48. b747814 HAve HTMLDiagnostics use html::HighlightRange to highlight message ranges. by Ted Kremenek · 17 years ago
  49. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
  50. 165b954 Allow redirecting text diagnostic printer output to any llvm::OStream, rather by Nate Begeman · 17 years ago
  51. ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
  52. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
  53. a760f5f Added fixme. by Ted Kremenek · 17 years ago
  54. 47abe76 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 17 years ago
  55. c54d50a split syntax highlighting of macros from keywords and comments, by Chris Lattner · 17 years ago
  56. 3245a0a Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 17 years ago
  57. 8ac661c Add -o support for -emit-html, make it not produce a file on an error. by Chris Lattner · 17 years ago
  58. fdbe679 Remove "--html-test" driver option and its corresponding code; all of this by Ted Kremenek · 17 years ago
  59. b9bc3ec speed up -emit-html in a release build by 6.5% by avoiding std::string. by Chris Lattner · 17 years ago
  60. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  61. 4b0f813 For HTML diagnostics, output more information about a bug report. by Ted Kremenek · 17 years ago
  62. 24bd3c4 Handle "__private_extern__" storage class when printing FunctionDecls. by Ted Kremenek · 17 years ago
  63. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
  64. 0d4e963 Remove bogus token... by Steve Naroff · 17 years ago
  65. 8beca11 Rename a file and update the Xcode project. by Steve Naroff · 17 years ago
  66. b29b427 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
  67. e93705f Fix comment. by Steve Naroff · 17 years ago
  68. cf7e958 Use isFromMainFile instead of comparing FileIDs directly. by Ted Kremenek · 17 years ago
  69. 080c40b Use SourceManager::isFromMainFile() by Ted Kremenek · 17 years ago
  70. 3004be0 Convert over to new SourceManager::isFromMainFile() instead of doing direct by Ted Kremenek · 17 years ago
  71. 5dd0041 HTMLDiagnostics now uses the new "getCanonicalID()", "isFromMainFileID()" methods from by Ted Kremenek · 17 years ago
  72. 55af98c Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 17 years ago
  73. 1102d6b Handle -D and -U options in order, so that they can cancel each other out when by Sam Bishop · 17 years ago
  74. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  75. 8808f00 Fix rdar://5843510 don't assert and die when an invalid output by Chris Lattner · 17 years ago
  76. 3ea0b6a Fix some bonehead bugs in summary generation in CFRefCount. by Ted Kremenek · 17 years ago
  77. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
  78. f5749aa For -emit-html, use the Rewriter to expand tabs. by Ted Kremenek · 17 years ago
  79. fa5be36 Don't expand tabs in EscapeText, but rather expand them when writing out by Ted Kremenek · 17 years ago
  80. dab4ead Improve range highlighting in HTMLDiagnostic to correctly highlight ranges by Ted Kremenek · 17 years ago
  81. 0676751 silence some warnings when assertions are disabled. by Chris Lattner · 17 years ago
  82. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  83. 5db17c9 Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error. by Chris Lattner · 17 years ago
  84. b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
  85. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  86. b10f273 Avoid implicitly including any header files (requested by ckane). by Steve Naroff · 17 years ago
  87. c5e3277 Rewrite @package (an ObjC 2.0 idiom). by Steve Naroff · 17 years ago
  88. 563b828 Fix MS-specific bug in RewriteTest::RewriteObjCMethodDecl(). by Steve Naroff · 17 years ago
  89. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago
  90. 344f7e3 Use logical line number for BUGLINE. by Ted Kremenek · 17 years ago
  91. 7e76944 Added guard for printing out PathDiagnostics whose last element ends with by Ted Kremenek · 17 years ago
  92. 4ccea1a Call delete on the deserialized TranslationUnit object. by Sam Bishop · 17 years ago
  93. 718ceb1 Added path sequence numbers in HTML output of PathDiagnostics. by Ted Kremenek · 17 years ago
  94. b947639 Embed BUGLINE, BUGFILE, BUGPATHLENGTH in the emitted HTML file. by Ted Kremenek · 17 years ago
  95. 86b4381 Put "BUGDESC" comment tag on its own line. by Ted Kremenek · 17 years ago
  96. 0761540 Embed "DESC" tag in HTML reports. by Ted Kremenek · 17 years ago
  97. 35de512 Update to match simplified llvm MemoryBuffer interfaces for files. by Chris Lattner · 17 years ago
  98. 33bd942 Embed linkable IDs in message bubbles. by Ted Kremenek · 17 years ago
  99. 8fb0016 Better handling for tabs with message bubbles. by Ted Kremenek · 17 years ago
  100. 2aa13b5 When emitting HTML messages, take into account margin fusing due to tabs. by Ted Kremenek · 17 years ago