aboutsummaryrefslogtreecommitdiff
path: root/lib/ARCMigrate/Transforms.cpp
AgeCommit message (Expand)Author
2013-03-07Add a hasExternalLinkage helper. No functionality change.Rafael Espindola
2013-01-04[arcmt] Allow removing an -autorelease of a variable initialized in the previ...Argyrios Kyrtzidis
2013-01-04[arcmt] Adds brackets in case statements that "contain" initialization of ret...Argyrios Kyrtzidis
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-12-01Don't include Type.h in DeclarationName.h.Benjamin Kramer
2012-11-14s/tranform/transform/Benjamin Kramer
2012-08-23Fix undefined behavior: member function calls where 'this' is a null pointer.Richard Smith
2012-08-21Screw around with ObjCRuntime some more, changing theJohn McCall
2012-07-04Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h.Benjamin Kramer
2012-06-01[arcmt] Use CFBridgingRetain/CFBridgingRelease instead of __bridge_retained/_...Argyrios Kyrtzidis
2012-05-23[arcmt] Remove an unused -autorelease, without failing with error, for thisArgyrios Kyrtzidis
2012-04-30Remove the ref/value inconsistency in filter_decl_iterator.David Blaikie
2012-03-17Kill cocoa::deriveNamingConvention and cocoa::followsFundamentalRule. They ar...Jordy Rose
2012-03-16[arcmt] The hard-coded list of weak-incompatible classes is no longer necessary.Argyrios Kyrtzidis
2012-03-16[arcmt] iOS is always safe to use 'weak'. rdar://10950825Argyrios Kyrtzidis
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-10Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr toJohn McCall
2012-03-05[arcmt]Argyrios Kyrtzidis
2012-01-26objc-arc: introduce -no-finalize-removal which in gc mode,Fariborz Jahanian
2012-01-19For Lexer's isAt[Start/End]OfMacroExpansion add an out parameter for the macroArgyrios Kyrtzidis
2011-12-15Keep track of all declarations of an Objective-C class (both forwardDouglas Gregor
2011-11-28[arcmt] Integrate GC __weak into property attributes even when we don't haveArgyrios Kyrtzidis
2011-11-08[arcmt] NSViewController does not support weak.Argyrios Kyrtzidis
2011-11-07[arcmt] Fix handling NSMakeCollectable inside an objc method.Argyrios Kyrtzidis
2011-11-07[arcmt] In GC, handle (assign) @properties.Argyrios Kyrtzidis
2011-11-07[arcmt] In GC, change '__weak' -> '__unsafe_unretained' when appliedArgyrios Kyrtzidis
2011-11-06[arcmt] Collect all the places where GC attributes __strong/__weak occur.Argyrios Kyrtzidis
2011-11-06[arcmt] Refactor PropertiesRewriter to use MigrationContext.Argyrios Kyrtzidis
2011-11-04[arcmt] In GC, error out when there is a call that returns a pointer toArgyrios Kyrtzidis
2011-11-04[arcmt] For GC, cleanup and turn -finalize to -dealloc.Argyrios Kyrtzidis
2011-11-04[arcmt] In GC, transform NSMakeCollectable to CFBridgingRelease.Argyrios Kyrtzidis
2011-09-19Rename SourceLocation::getFileLocWithOffset -> getLocWithOffset.Argyrios Kyrtzidis
2011-09-01[arcmt] Fix test/ARCMT/remove-statements.m regression due toArgyrios Kyrtzidis
2011-07-27[arcmt] More automatic transformations and safety improvements; rdar://9615812 :Argyrios Kyrtzidis
2011-07-25Rename SourceManager::getInstantiationRange to getExpansionRange.Chandler Carruth
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-18[arcmt] NSInvocation's [get/set]ReturnValue and [get/set]Argument are only safeArgyrios Kyrtzidis
2011-07-14[arcmt] Don't remove retains/releases on a global variable, flag them with er...Argyrios Kyrtzidis
2011-07-14Convert terminology in the Lexer from 'instantiate' and variants toChandler Carruth
2011-07-13[arcmt] For properties rewrite 'assign' -> 'weak or unsafe_unretained', 'reta...Argyrios Kyrtzidis
2011-07-12[arcmt] Also avoid 'weak' for forward references to objc classes.Argyrios Kyrtzidis
2011-07-12[arcmt] Before applying '__weak' check whether the objc class is annotated wi...Argyrios Kyrtzidis
2011-07-07Move SourceManager::isAt[Start/End]OfMacroInstantiation functions to the Lexe...Argyrios Kyrtzidis
2011-07-07In ARC, reclaim all return values of retainable type, not just thoseJohn McCall
2011-07-07Make the Preprocessor more memory efficient and improve macro instantiation d...Argyrios Kyrtzidis
2011-06-23[arcmt] Remove rewriteAllocCopyWithZone transformation; not needed anymore.Argyrios Kyrtzidis
2011-06-21[arcmt] Merge 'removeEmptyStatements' and 'removeDeallocMethod' passes to cut...Argyrios Kyrtzidis
2011-06-21[arcmt] Break apart Transforms.cpp.Argyrios Kyrtzidis
2011-06-20[arcmt] Always add '__bridge' cast when 'self' is cast to a C pointer. rdar:...Argyrios Kyrtzidis
2011-06-17Objective-C fast enumeration loop variables are not retained in ARC, butJohn McCall