aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGDeclCXX.cpp
AgeCommit message (Expand)Author
2012-10-16Transform pattern:Alexey Samsonov
2012-10-10Have 'addFnAttr' take the attribute enum value. Then have it build the attrib...Bill Wendling
2012-07-24Emit debug info for dynamic initializers. Permit __attribute__((nodebug)) onNick Lewycky
2012-06-26[asan] add missing asan instrumentation in generated global init functionsKostya Serebryany
2012-05-01Abstract the emission of global destructors into ABI-specific codeJohn McCall
2012-04-13Fix a trivial oversight with apple-kext static local destructorsJohn McCall
2012-04-06Use atexit when __cxa_atexit isn't available instead of adding aJohn McCall
2012-04-06Rename GenerateCXXGlobalDtorFunc to GenerateCXXGlobalDtorsFunc.John McCall
2012-03-30Revert r153723, and its follow-ups r153728 and r153733.Chandler Carruth
2012-03-30Do the static-locals thing properly in the face of unions andJohn McCall
2012-03-29Revert r153613 as it's causing large compile-time regressions on the nightly ...Chad Rosier
2012-03-28When we can't prove that the target of an aggregate copy isJohn McCall
2012-03-28CodeGen/CGDeclCXX.cpp: Twine-ize CreateGlobalInitOrDestructFunction().NAKAMURA Takumi
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-21Emit the exact size for the invariant intrinsics.Nick Lewycky
2012-02-17Don't emit optimization-specific intrinsic at -O0.Richard Smith
2012-02-17The clang half of r150794: after the construction of a global or static constRichard Smith
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2012-02-13Deal with a horrible C++11 special case. If a non-literal type has a constexprRichard Smith
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-01-26Use function pointers, rather than references, to pass DestroyersPeter Collingbourne
2011-12-03Switch LValue so that it exposes alignment in CharUnits. (No functional chan...Eli Friedman
2011-09-02Extend the ASTContext constructor to delay the initialization ofDouglas Gregor
2011-08-25Track whether an AggValueSlot is potentially aliased, and do notJohn McCall
2011-08-25Use stronger typing for the flags on AggValueSlot and requireJohn McCall
2011-07-29Remove some unnecessary single element array temporaries.Jay Foad
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-18de-constify llvm::Type, patch by David Blaikie!Chris Lattner
2011-07-15Convert CallInst and InvokeInst APIs to use ArrayRef.Jay Foad
2011-07-13Generalize the routine for destroying an object with staticJohn McCall
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner
2011-07-01Emit guard variables for any weak global that has a run-timeDouglas Gregor
2011-06-16Restore correct use of GC barriers.John McCall
2011-06-15Automatic Reference Counting.John McCall
2011-05-28Eliminate temporary argument vectors.Benjamin Kramer
2011-05-06Reset the emitted initializers.Axel Naumann
2011-04-12Template static data members can have weak_odr linkage, not justJohn McCall
2011-03-20__cxa_atexit does not throw.Anders Carlsson
2011-03-18The Darwin kernel does not provide useful guard variable support.John McCall
2011-03-09Use the "undergoes default argument promotion" bit on parameters toJohn McCall
2011-03-02Revert "Add CC_Win64ThisCall and set it in the necessary places."Tilmann Scheller
2011-03-02Add CC_Win64ThisCall and set it in the necessary places.Tilmann Scheller
2011-02-28Get rid of the areExceptionsEnabled() getter from LangOptions.Anders Carlsson
2011-02-20Add a LangOptions::areExceptionsEnabled and start using it.Anders Carlsson
2011-02-15In -fapple-kext mode, global object construction code Fariborz Jahanian
2011-02-08Reorganize CodeGen{Function,Module} to eliminate the unfortunateJohn McCall
2011-01-13Save getObjCGCAttrKind and use it in two placesFariborz Jahanian
2011-01-13Generate write-barriers for global objcFariborz Jahanian
2010-11-06Simplify the logic for emitting guard variables for template staticJohn McCall
2010-10-27Do the guarding of instantiated static data membersFariborz Jahanian