aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-01-29Add RTTIBuilder::GetAddrOfTypeName which uses the newly added CreateOrReplace...Anders Carlsson1-0/+4
2011-01-29Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum ins...Anders Carlsson1-2/+3
2011-01-29Replace an isa/cast with a dyn_cast.Anders Carlsson1-2/+2
2011-01-29Get rid of an unneeded parameter from setGlobalVisibility.Anders Carlsson1-7/+5
2011-01-29Use CGM.CreateOrReplaceCXXRuntimeVariable in CGVTables.cppAnders Carlsson1-1/+1
2011-01-29Add a new function, to be used by CGRTTI, CGVTables and CGVTT (which each has...Anders Carlsson1-0/+39
2011-01-29Replace a literal '8' with getCharWidth().Ken Dyck1-2/+3
2011-01-29Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true.Anders Carlsson1-3/+2
2011-01-24Mark VTables and RTTI data linkonce_odr instead of weak_odr, with the excepti...Anders Carlsson1-6/+10
2011-01-22Use a FunctionType::get overload that doesn't require an empty vector.Benjamin Kramer1-5/+2
2011-01-18Add unnamed_addr in CreateRuntimeVariable.Rafael Espindola1-2/+7
2011-01-18Replace calls to CharUnits::fromQuantity() with ones to Ken Dyck1-2/+2
2011-01-17More unnamed_addr.Rafael Espindola1-0/+1
2011-01-17merge strings created byRafael Espindola1-0/+1
2011-01-17Add unnamed_addr to the special strings created byRafael Espindola1-0/+1
2011-01-13Move name mangling support from CodeGen to AST. In thePeter Collingbourne1-6/+14
2011-01-11Set unnamed_addr for type infos that we are confortable marking as hidden. IRafael Espindola1-0/+1
2011-01-11Add unnamed_addr to constructors and destructors.Rafael Espindola1-0/+3
2011-01-10Add unnamed_addr when creating artificial string globals. For example, inRafael Espindola1-3/+6
2010-12-30Simplify mem{cpy, move, set} creation with IRBuilder.Benjamin Kramer1-21/+0
2010-12-15Set the "implicitly inline" bit on a method as soon as we see a definitionJohn McCall1-23/+24
2010-12-02Add support for the common and nocommon attributes.Eric Christopher1-1/+3
2010-11-06Simplify the logic for emitting guard variables for template staticJohn McCall1-1/+4
2010-11-02Ensure that static local variables in function templates inherit theJohn McCall1-0/+7
2010-10-30Better solution: calculate the visibility of functions and variablesJohn McCall1-10/+23
2010-10-29Restore r117644, this time properly ignoring -fvisibility and type visibilityJohn McCall1-17/+23
2010-10-29Revert r117644, "Apply visibility in IR gen to variables that are merelyDaniel Dunbar1-23/+17
2010-10-29Apply visibility in IR gen to variables that are merely declaredJohn McCall1-17/+23
2010-10-27Do the guarding of instantiated static data membersFariborz Jahanian1-19/+28
2010-10-22Substantially revise how clang computes the visibility of a declaration toJohn McCall1-65/+10
2010-10-19This patch implements Next's IRGen for -fconstant-string-class=class-name.Fariborz Jahanian1-10/+21
2010-10-15Experimental TBAA support for enum types.Dan Gohman1-1/+2
2010-10-15Don't leak the TBAA object.Dan Gohman1-0/+1
2010-10-14Experimental TBAA support.Dan Gohman1-0/+17
2010-10-11lib/CodeGen/CodeGenModule.cpp: DLLImportLinkage should be processed also on d...NAKAMURA Takumi1-1/+3
2010-09-29Add support for attribute((naked)), patch by Zoxc on cfe-commits!Daniel Dunbar1-0/+3
2010-09-27Kill FunctionDecl's IsCopyAssignment bit; it duplicated what couldDouglas Gregor1-1/+1
2010-09-16Opportunistically use the C++ personality function in ObjC++John McCall1-0/+2
2010-09-07get rid of a warning.Fariborz Jahanian1-3/+3
2010-09-07Have Sema check for validity of CGString literalFariborz Jahanian1-9/+0
2010-08-31Teach IR generation to return 'this' from constructors and destructorsJohn McCall1-7/+8
2010-08-26De-memberify the VarDecl and FunctionDecl StorageClass enums.John McCall1-2/+2
2010-08-23Support for IRGen of synthesize bitfield ivars inFariborz Jahanian1-1/+10
2010-08-22Go back to asking CodeGenTypes whether a type is zero-initializable.John McCall1-21/+15
2010-08-21The ARM C++ ABI is sufficiently different from the Itanium C++ ABI thatJohn McCall1-1/+5
2010-08-19Add some enum goodness as requested by Chris. Now instead of storing theCharles Davis1-3/+6
2010-08-18Generate Attr subclasses with TableGen.Alexis Hunt1-9/+7
2010-08-17Convert all uses of StringLiteral::getStrData() to StringLiteral::getString()Benjamin Kramer1-10/+6
2010-08-12Just disable the hidden-visibility optimization for now by hiding it behindJohn McCall1-1/+4
2010-08-08Thread local variables aren't considered common linkage.Eric Christopher1-1/+2