aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGObjCGNU.cpp
AgeCommit message (Expand)Author
2010-07-21Don't crash when sending a message inside a block with the non-fragile ABI (G...David Chisnall
2010-07-21Mark the load after calling objc_msg_lookup_sender() so that it doesn't get o...David Chisnall
2010-07-21Rename LazyCleanup -> Cleanup. No functionality change for these last threeJohn McCall
2010-07-21Convert the ObjC @synchronized cleanups to laziness. This is not actuallyJohn McCall
2010-07-20Adopt objc_assign_threadlocal() for __thread variables of GC types.Fariborz Jahanian
2010-07-13Teach IR generation how to lazily emit cleanups. This has a lot of advantages,John McCall
2010-07-06Validated by nightly-test runs on x86 and x86-64 darwin, including afterJohn McCall
2010-06-17Objective-c++ IRGen. Support for @selector expression asFariborz Jahanian
2010-06-16Give Type::isIntegralType() an ASTContext parameter, so that itDouglas Gregor
2010-06-15Patch adds support for copying of thoseFariborz Jahanian
2010-05-22Push a return-value slot throughout ObjC message-send codegen. Will beJohn McCall
2010-05-20Fix my inability to spell 'continue' and a case where message sends returning...David Chisnall
2010-05-17Clean up some more uses of getAs<ObjCInterfaceType>() that Fariborz pointedJohn McCall
2010-05-15Substantially alter the design of the Objective C type AST by introducingJohn McCall
2010-05-09Tweaked selector mangling again (GNU runtime).David Chisnall
2010-05-08Fixed linkage problem from last commit (GNU runtime).David Chisnall
2010-05-08Tweaked selector generation (GNU runtime). Removed the use of GlobalAliases ...David Chisnall
2010-05-02As per Chris' request, return the Instruction from EmitCall and add the metad...David Chisnall
2010-05-01Attach message send metadata to the lookup as well as to the call (GNU runtime).David Chisnall
2010-05-01Make super message lookups cacheable (GNUstep Runtime)David Chisnall
2010-05-01Tweaked EmitCall() to permit the caller to provide some metadata to attach to...David Chisnall
2010-04-30Fixed incorrect type of alloca (GNU runtime).David Chisnall
2010-04-28Changed signature of GenerateMessageSend() function to pass the ObjCInterface...David Chisnall
2010-04-28Remove unused function.Benjamin Kramer
2010-04-28Emit the correct symbol name for the class (GNU runtime).David Chisnall
2010-04-27Fixed message send to void (broken by my last commit - GNU runtime).David Chisnall
2010-04-27Ensure return from a message to nil is always 0 (GNU runtime).David Chisnall
2010-04-26Make the static type of the exception variable in an Objective-CDouglas Gregor
2010-04-23Improve the AST representation of Objective-C @try/@catch/@finallyDouglas Gregor
2010-04-19Fix -Wcast-qual warnings.Dan Gohman
2010-04-19Don't just emit ivar metadata - emit CORRECT ivar metadata. (GNU runtime)David Chisnall
2010-04-19Fix emitting ivar metadata for synthesized ivars and some 64-bit fixes. (GNU ...David Chisnall
2010-04-12Add some API code for future work.Fariborz Jahanian
2010-03-30the big refactoring bits of PR3782.Rafael Espindola
2010-03-20Fixed synthesizing properties declared in properties (GNU runtime).David Chisnall
2010-03-13Fixed copy-and-paste error causing categories to contain the protocols declar...David Chisnall
2010-02-26Don't generate method metadata for @dynamic properties. Fixes PR6354.David Chisnall
2010-02-26Use the power of types to track down another canonicalization bug inJohn McCall
2010-02-09StringRefize two random methods, remove a dead variable and a weird construct...Benjamin Kramer
2010-02-05Standardize the parsing of function type attributes in a way thatJohn McCall
2010-02-03Revert "Numerous changes to selector handling:", this breaks a whole bunch ofDaniel Dunbar
2010-02-03First pass at adding GC support for GNU runtime. GC ivar maps not yet constr...David Chisnall
2010-02-03Numerous changes to selector handling:David Chisnall
2010-01-27Unique ObjC strings (GNU Runtime); fix for PR6142. Note: Doing this in the r...David Chisnall
2010-01-23Created __builtin___NSStringMakeConstantString() builtin, which generates con...David Chisnall
2010-01-14Made ObjC method name mangling match GCC (which does it in a stupid and broke...David Chisnall
2010-01-11Fix type mismatch on 64-bit platforms (GNU ObjC).David Chisnall
2010-01-08Export a public symbol for classes with the GNU runtime. David Chisnall
2010-01-06Fix for PR5691David Chisnall
2009-12-24Pass ReturnValueSlot to EmitCall. No functionality change yet.Anders Carlsson