aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGRTTI.cpp
AgeCommit message (Expand)Author
2011-07-27CodeGen: rename CodeGenModule::Runtime to ObjCRuntimePeter Collingbourne
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-07-21Convert ConstantExpr::getGetElementPtr andJay Foad
2011-07-18de-constify llvm::Type, patch by David Blaikie!Chris Lattner
2011-06-20Update to match mainline ConstantStruct::get API change. Also, use Chris Lattner
2011-04-26Make yet another placeholder type, this one marking that an expression is a b...John McCall
2011-04-09Eliminate a divide-by-8 in BuildVMIClassTypeInfo() by using CharUnits forKen Dyck
2011-04-07[Reapply r128776, modified so that it does not break debug info.]Ken Dyck
2011-04-07Basic, untested implementation for an "unknown any" type requested by LLDB.John McCall
2011-04-04Revert r128770, r128771, r128773 and r128776 for now. It breaks debug info.Devang Patel
2011-04-02Change the return type of CodeGenVTables::getVirtualBaseOffsetOffset() toKen Dyck
2011-03-20Fix Objective-C++ exceptions (GNU runtime).David Chisnall
2011-02-20Implement the C++0x deduced 'auto' feature.Richard Smith
2011-02-11For consistency, use llvm::raw_ostream in the rest of the mangle api.Rafael Espindola
2011-01-30When building with optimizations, emit vtables where the key is not in the Anders Carlsson
2011-01-29Remove dead code.Anders Carlsson
2011-01-29When emitting RTTI for a non-class type, compute the visibility of the RTTI d...Anders Carlsson
2011-01-29Add RTTIBuilder::GetAddrOfTypeName which uses the newly added CreateOrReplace...Anders Carlsson
2011-01-29Change CodeGenModule::setTypeVisibility to take a TypeVisibilityKind enum ins...Anders Carlsson
2011-01-29Make emitting a VTT a two-step process, much like emitting a VTable. You firs...Anders Carlsson
2011-01-29Remove IsDefinition from CodeGenModule::setTypeVisibility; it is always true.Anders Carlsson
2011-01-24When building a type info struct for EH, we always want it to have linkonce_o...Anders Carlsson
2011-01-24Change CodeGenModule::getVTableLinkage to be a non-static member function.Anders Carlsson
2011-01-24Mark VTables and RTTI data linkonce_odr instead of weak_odr, with the excepti...Anders Carlsson
2011-01-11Set unnamed_addr in every type info.Rafael Espindola
2011-01-11Set unnamed_addr for type infos that we are confortable marking as hidden. IRafael Espindola
2010-12-25The -fshort-wchar option causes wchar_t to become unsigned, in addition to beingChris Lattner
2010-12-17Give hidden visibility to RTTI for derived types. This is kindof a hackyJohn McCall
2010-11-04std::nullptr_t is a fundamental type for RTTI purposes.Anders Carlsson
2010-10-31Rename getBaseClassOffset to getBaseClassOffsetInBits and introduce a getBase...Anders Carlsson
2010-10-30Better solution: calculate the visibility of functions and variablesJohn McCall
2010-10-22Substantially revise how clang computes the visibility of a declaration toJohn McCall
2010-10-22More class anonymization.Benjamin Kramer
2010-10-11Make sure the VTables for template instantiations are emitted even if the key...Argyrios Kyrtzidis
2010-10-11Don't let typeinfo name symbols be 'internal hidden', it can lead to linker c...Argyrios Kyrtzidis
2010-09-04Petty optimization.John McCall
2010-08-31Teach IR generation to return 'this' from constructors and destructorsJohn McCall
2010-08-22Detabify.Eli Friedman
2010-08-15Explicitly handle every case in the switch in RTTIBuilder::BuildTypeInfo.Eli Friedman
2010-08-12Just disable the hidden-visibility optimization for now by hiding it behindJohn McCall
2010-08-12Implement RTTI generation for Objective C types. Fixes PR7864.John McCall
2010-08-11Work in progress for PR7864. Someone more familiar with ObjC++ needs to fillEli Friedman
2010-08-04Emit standard-library RTTI with external linkage, not weak_odr.John McCall
2010-07-07getBody() -> hasBody()Argyrios Kyrtzidis
2010-06-02When building RTTI descriptors for pointer types, we need to get the unqualif...Anders Carlsson
2010-04-30Fix -fno-rtti -fexceptions by forcing the emission of (non-"builtin") RTTIJohn McCall
2010-04-17Vtable -> VTable renames across the board.Anders Carlsson
2010-04-08Eliminate excessive PCH deserialization caused by the search forDouglas Gregor
2010-03-31Drastically simplify the computation of linkage for typeinfo by usingDouglas Gregor
2010-03-27When given the magic class __cxxabiv1::__fundamental_type_info, produceRafael Espindola