aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGObjCMac.cpp
AgeCommit message (Expand)Author
2010-04-12Add some API code for future work.Fariborz Jahanian
2010-04-08IRgen: Move the bit-field access type into CGBitFieldInfo, and change bit-fie...Daniel Dunbar
2010-04-06IRgen: Move BitFieldIsSigned bit into CGBitFieldInfo.Daniel Dunbar
2010-04-05IRgen: Move BitField LValues to just hold a reference to the CGBitFieldInfo.Daniel Dunbar
2010-04-05IRgen: Lift BitFieldInfo to CGBitFieldInfo at namespace level.Daniel Dunbar
2010-04-05Add a FIXME and reduce nesting.Daniel Dunbar
2010-04-02IRgen/NeXT: Remove my refactoring-enabling asserts, and add a FIXME.Daniel Dunbar
2010-04-02IRgen/Obj-C: Eliminate FindIvarInterface, now that ivar's are in the right De...Daniel Dunbar
2010-04-02CG/NeXT: Assert some invariants on an ivar's containing decl context that I a...Daniel Dunbar
2010-03-31IRGen: Move the auxiliary data structures tracking AST -> LLVM mappings out o...Daniel Dunbar
2010-03-30the big refactoring bits of PR3782.Rafael Espindola
2010-02-26Use the power of types to track down another canonicalization bug inJohn McCall
2010-02-19Patch removes IVars list from ObjCInterfaceDecl andFariborz Jahanian
2010-02-11Eliminate a bunch of unnecessary ASTContexts from members functions ofDouglas Gregor
2010-02-10Switch to using -fsjlj-exceptions instead of hard-coding it. Notably, this fixesDaniel Dunbar
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-03Numerous changes to selector handling:David Chisnall
2010-02-01NeXT: Add support for -fobjc-legacy-dispatch.Daniel Dunbar
2010-01-23Created __builtin___NSStringMakeConstantString() builtin, which generates con...David Chisnall
2009-12-25Remove some dead variables clang-analyzer found.Benjamin Kramer
2009-12-24Pass ReturnValueSlot to EmitCall. No functionality change yet.Anders Carlsson
2009-12-14Patch to fix 32-bit @try failure with internal assertion when compiling Fariborz Jahanian
2009-12-12patch to add a property from a protocol to a class that adopts the protocol.Fariborz Jahanian
2009-12-01(objc2 nonfragile-abi specific). If the translation unit includes an implemen...Fariborz Jahanian
2009-11-29Don't pass false (default) for isVolatile parameter to CreateLoad.Daniel Dunbar
2009-11-17This patch finalizes implementatin of weak_importFariborz Jahanian
2009-11-17More cases for weak_import objective-c2 classes.Fariborz Jahanian
2009-11-17More support for weak_import objective-c2 class.Fariborz Jahanian
2009-11-14Generate the old API when sending message to superFariborz Jahanian
2009-11-12Fix a code gen bug in i386-apple-darwin (objc fragile abi), sendingFariborz Jahanian
2009-10-19Avoid std::string concatenation.Daniel Dunbar
2009-10-18PR5218: Replace IdentifierInfo::getName with StringRef version, now that clientsDaniel Dunbar
2009-10-18Twinify CGObjCMac, this simplifies the code and should reduce std::stringDaniel Dunbar
2009-10-14There is now only one version of eh.selector and eh.typeid.for.Duncan Sands
2009-10-13Simplify pointer creation with the new Type::getInt*Ptr methods.Benjamin Kramer
2009-09-24Patch fixes a code gen. bug in generation of objc_assign_ivarFariborz Jahanian
2009-09-24Refactor the representation of qualifiers to bring ExtQualType out of theJohn McCall
2009-09-21Change all the Type::getAsFoo() methods to specializations of Type::getAs().John McCall
2009-09-19Make clang stop relying on ConstantStruct::get's default value for isPackedNick Lewycky
2009-09-17IRgen/ObjC: Correctly construct the function info for variadic message sends.Daniel Dunbar
2009-09-17IRgen/ObjC: Make the target method decl available to GenerateMessageSendSuper.Daniel Dunbar
2009-09-16patch for generating objc'2 objc_assign_ivar. WIP.Fariborz Jahanian
2009-09-11Fixes a regression in objc GC layout bitmap involvingFariborz Jahanian
2009-09-10Get the size of object to pass to objc_memmove_collectable()Fariborz Jahanian
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-07Remove unnecessary #include <sstream>.Benjamin Kramer
2009-09-07Use a SetVector for tracking some Obj-C metadata, to ensure deterministicDaniel Dunbar
2009-08-31Re-implemented generation of objc_memmove_collectableFariborz Jahanian
2009-08-25Fix ivar layout map generation (hopefully).Anders Carlsson