1. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  2. 5baba9d More incremental progress towards not including Expr.h in Sema.h. by John McCall · 14 years ago
  3. 4087f27 StringRef'ication of lots stuff, patch by Peter Davies! by Daniel Dunbar · 14 years ago
  4. ba6f816 Remove dead code, caught by unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  5. f871d0c Store inheritance paths after CastExprs instead of inside them. by John McCall · 14 years ago
  6. 20432ef Initialize block's imported variable(s) in by Fariborz Jahanian · 14 years ago
  7. 10f8e31 Fix source location of the initializer in by Fariborz Jahanian · 14 years ago
  8. 5f371ee Fix a rewriter bug which originates in SemaInit involving by Fariborz Jahanian · 14 years ago
  9. 906082e Update ImplicitCastExpr to be able to represent an XValue. by Sebastian Redl · 14 years ago
  10. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  11. 5f1bfc1 Remove Decl::getCompoundBody(). by Argyrios Kyrtzidis · 14 years ago
  12. fa297fb Rewriter: Use the appropriate printing context instead of the default by Daniel Dunbar · 14 years ago
  13. 9b414d3 Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library configuration by Daniel Dunbar · 14 years ago[Renamed (99%) from lib/Frontend/RewriteObjC.cpp]
  14. 4fc8453 Refactoring of block-pointer type rewrite. by Fariborz Jahanian · 14 years ago
  15. 1f90622 Patch to rewrite block pointers as arguments to methods. (Radar 7987817). by Fariborz Jahanian · 14 years ago
  16. a5a7987 Fix a rewriting bug where a local static objective-c by Fariborz Jahanian · 14 years ago
  17. 73d1eb0 Fix an objective-c rewriter bug when pre-processed file's by Fariborz Jahanian · 14 years ago
  18. 506b57e Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointed by John McCall · 14 years ago
  19. 465d41b Merged Elaborated and QualifiedName types. by Abramo Bagnara · 15 years ago
  20. fb87b89 Introduce Type::isStructureOrClassType(), which does the obvious by Douglas Gregor · 15 years ago
  21. c00d8e1 Make the static type of the exception variable in an Objective-C by Douglas Gregor · 15 years ago
  22. 41b2dcd Add BasePath arguments to all cast expr constructors. by Anders Carlsson · 15 years ago
  23. f1b48b7 CastExpr should not hold a pointer to the base path. More cleanup. by Anders Carlsson · 15 years ago
  24. 8f5e3dd Improve the AST representation of Objective-C @try/@catch/@finally by Douglas Gregor · 15 years ago
  25. 88465d3 Add an InheritancePath parameter to the ImplicitCastExpr constructor. by Anders Carlsson · 15 years ago
  26. 04badcf Overhaul the AST representation of Objective-C message send by Douglas Gregor · 15 years ago
  27. 16573fa Keep track of the actual storage specifier written on a variable or by Douglas Gregor · 15 years ago
  28. 709210f Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance by Ted Kremenek · 15 years ago
  29. 553e583 make the rewriter add a #ifndef around the #define of __attribute__. by Chris Lattner · 15 years ago
  30. 264ba48 the big refactoring bits of PR3782. by Rafael Espindola · 15 years ago
  31. f6ac97b Let SourceManager::getBufferData return StringRef instead of a pair of two const char*. by Benjamin Kramer · 15 years ago
  32. f715ca1 Give SourceManager a Diagnostic object with which to report errors, by Douglas Gregor · 15 years ago
  33. aea67db Introduce a new BufferResult class to act as the return type of by Douglas Gregor · 15 years ago
  34. 6cb6eb4 Add tentative support for accessing local variables with by Fariborz Jahanian · 15 years ago
  35. d314e9e Change the 'super' messaging API in the rewriter. Fixes radar 7738452. by Fariborz Jahanian · 15 years ago
  36. 8611eb0 Patch to get around a rewriter bug rewriting storage class by Fariborz Jahanian · 15 years ago
  37. 61b82e3 Fixes a bug whereby static const block var has static by Fariborz Jahanian · 15 years ago
  38. df49652 Cast a pointer to 'long long' to satisfy all compilation models. by Fariborz Jahanian · 15 years ago
  39. 72952fc More rewriter of nested blocks fun stuff. Radar 7696893. by Fariborz Jahanian · 15 years ago
  40. d64a4f4 Prevent rewriter crash when variable type is missing. Fixes radar 7692183. by Fariborz Jahanian · 15 years ago
  41. 1276bfe Minor cleanup of the rewriter. by Fariborz Jahanian · 15 years ago
  42. 5b011b0 Removed some unused code in rewriter. by Fariborz Jahanian · 15 years ago
  43. f89c427 Fix rewriting of byref variables in nested blocks. Fixes radar 7692350. by Fariborz Jahanian · 15 years ago
  44. e7c5c93 Rewriting of imported variable from outer by Fariborz Jahanian · 15 years ago
  45. 7c63fdd Support rewriting of property synthesis with retain/copy by Fariborz Jahanian · 15 years ago
  46. 5e49b2f Implement nasty rewriting of nested blocks when inner by Fariborz Jahanian · 15 years ago
  47. 86aa9fd Fix rewriting of a method when return type is by Fariborz Jahanian · 15 years ago
  48. 5f1c45f Fixes a rewriting of qualified-id type which exposed a bigger by Fariborz Jahanian · 15 years ago
  49. 1d35b16 Fixes a rewriting of byref variable when its initializer is by Fariborz Jahanian · 15 years ago
  50. ce056bc Eliminate the default arguments to ASTContext::getFunctionType(), by Douglas Gregor · 15 years ago
  51. ba7bc55 Revert: "Change InitListExpr to allocate the array for holding references" by Ted Kremenek · 15 years ago
  52. 9f9269e Change InitListExpr to allocate the array for holding references by Ted Kremenek · 15 years ago
  53. 11062e1 Patch removes IVars list from ObjCInterfaceDecl and by Fariborz Jahanian · 15 years ago
  54. afad76f __typeof should be able to handle block pointer types when by Fariborz Jahanian · 15 years ago
  55. 210c248 Minor rewriter cleanup and a test for a block rewriting bug. by Fariborz Jahanian · 15 years ago
  56. e8c28df Fix rewriter bug when function call inside block with block parameter by Fariborz Jahanian · 15 years ago
  57. a135216 Fix a broken rewritin of @implementation keyword. (fixes radar 7649577). by Fariborz Jahanian · 15 years ago
  58. d999b37 Pass StringRefs to InsertText/ReplaceText in RewriteObjC and remove a ton of unnecessary length arguments. by Benjamin Kramer · 15 years ago
  59. 52b2e1e Fixes a rewriter bug rewriting function decl. by Fariborz Jahanian · 15 years ago
  60. bab7168 Fixes a rewriting bug where order of constructor expression arguments did not match by Fariborz Jahanian · 15 years ago
  61. eb3b324 Allocate the SubExprs array in ObjCMessageExpr using the allocator associated with ASTContext. This fixes yet another leak (<rdar://problem/7639260>). by Ted Kremenek · 15 years ago
  62. 838db38 Eliminate a bunch of unnecessary ASTContexts from members functions of by Douglas Gregor · 15 years ago
  63. e61a1d4 Patch to rewrite blocks into unique api names. Fixes radar 7630551 by Fariborz Jahanian · 15 years ago
  64. 4c863ef Provide rewriting suppport for use of __typeof__ by Fariborz Jahanian · 15 years ago
  65. 13751e3 Comment out category's property decls. in rewrite. Fixes radar 7630636. by Fariborz Jahanian · 15 years ago
  66. e50187a Add guard in RewriteObjC::HandleTopLevelSingleDecl() to not do by Ted Kremenek · 15 years ago
  67. 376338a Fixes a minor rewriter bug messaging inside a function call. by Fariborz Jahanian · 15 years ago
  68. 88906cd Some clean up of replacement text API no longer needed by my recent changes. by Fariborz Jahanian · 15 years ago
  69. 2b9b0b2 Fix a nested ivar reference rewriting bug. (Fixes radar 7607605). by Fariborz Jahanian · 15 years ago
  70. 2663f52 Fix rewriting of 'const' __block variables in by Fariborz Jahanian · 15 years ago
  71. 32132a0 Fix more rewriting of protocol-quialified 'id' type. (Fixes radar 7607413). by Fariborz Jahanian · 15 years ago
  72. 84aa946 Fix up rewriting of protocol qualified types in objc rewriter. by Fariborz Jahanian · 15 years ago
  73. 0e1c99a Fixes rewriter bug rewriting byref related API where a struct by Fariborz Jahanian · 15 years ago
  74. 7e20ffe Fixes a rewrite bug rewriting nested ivars reference. (Radar 7583971). by Fariborz Jahanian · 15 years ago
  75. ffbdead Added assert to the rewrite. by Fariborz Jahanian · 15 years ago
  76. 8f09543 Refix rewriting of an ivar access when it is by Fariborz Jahanian · 15 years ago
  77. a5d5fbc Fix a regression caused by my rewriting of cast of ivar by Fariborz Jahanian · 15 years ago
  78. 5bfc536 Fixes a rewriting bug of access ivar of a variable cast by Fariborz Jahanian · 15 years ago
  79. d050240 Patch to implement rewriting of properties. Fixes radar 7562952. by Fariborz Jahanian · 15 years ago
  80. b716633 Use the llvm coding convention for indentation for switch. by Mike Stump · 15 years ago
  81. 1d7d8d6 The type of a compound literal expression is not necessarily the same as the by John McCall · 15 years ago
  82. 1d4fca2 Rewriteing of gnu extension __typeof in objective-c rewriter. by Fariborz Jahanian · 15 years ago
  83. 42f56b5 Preserve type source information in compound literal expressions. by John McCall · 15 years ago
  84. dfa4fa0 Fix a rewriting crash and correct rewriting of __block by Fariborz Jahanian · 15 years ago
  85. 3420419 define __weak to null in rewritten source for -fms-extensions as well. by Fariborz Jahanian · 15 years ago
  86. 9d12503 Preserve type source information in explicit cast expressions. by John McCall · 15 years ago
  87. bf07012 Do not do the block-specific rewrite when there is no block literals. by Fariborz Jahanian · 15 years ago
  88. a73165e Patch to avoid duplicate declaration of byref structs by Fariborz Jahanian · 15 years ago
  89. abfd83e Fix a bug in rewrite whereby functions using blocks put extern "C" in wrong place. by Fariborz Jahanian · 15 years ago
  90. 26337b2 Improve on objective-c pointer recognition by Fariborz Jahanian · 15 years ago
  91. 66867c5 Fix rewriting of MacOS sjlj based eh. Fixes radar 7522880. by Fariborz Jahanian · 15 years ago
  92. 91fbd12 Fix rewriting for forward class declaration. (fixes radar 6969189). by Fariborz Jahanian · 15 years ago
  93. c374cd9 Fixup rewrite of ivars accessed via an explicit object by Fariborz Jahanian · 15 years ago
  94. 1211a71 Silence MSVC warning. by Benjamin Kramer · 15 years ago
  95. 4824fcd revert 91891, a workaround for PR5514. by Chris Lattner · 15 years ago
  96. 65b0aa5 clang ObjC rewriter: generated code used in "for (x in y)" loop uses by Fariborz Jahanian · 15 years ago
  97. f292fcf Fixes a bug where we were rewriting two definitions of by Fariborz Jahanian · 15 years ago
  98. d83658d Fixes a bug in my last patch (related to radar 7490331). by Fariborz Jahanian · 15 years ago
  99. c98cbb4 Avoid error when convering a pointer to integer in rewriting. by Fariborz Jahanian · 15 years ago
  100. 84ed600 Fix rewriting of ivars. Fixes radar 7490331. by Fariborz Jahanian · 15 years ago