aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGRTTI.cpp
AgeCommit message (Expand)Author
2013-04-30Don't treat a non-deduced 'auto' type as being type-dependent. Instead, thereRichard Smith
2013-02-07Add OpenCL samplers as Clang builtin types and check sampler related restrict...Guy Benyei
2013-01-25The standard ARM C++ ABI dictates that inline functions areJohn McCall
2013-01-20Implement OpenCL event_t as Clang builtin type, including event_t related Ope...Guy Benyei
2012-12-18Re-commit r170428 changes with Linux style file endings.Guy Benyei
2012-12-18Revert changes from r170428, as I accidentally changed the line endings of th...Guy Benyei
2012-12-18Add OpenCL images as clang builtin types.Guy Benyei
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-01Simplify: replace getContext().getLangOpts() with just getLangOpts().Richard Smith
2012-09-27Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru
2012-09-27Fix a typo 'iff' => 'if'Sylvestre Ledru
2012-08-24Fix integer unsigned behavior in clang due to signed left shift overflow.Richard Smith
2012-08-24Fix a few -Wdocumentation warnings.Dmitri Gribenko
2012-08-22Reduce duplicated hash map lookups.Benjamin Kramer
2012-06-20Restructure how the driver communicates information about theJohn McCall
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-02-07simplify a bunch of code to use the well-known LLVM IR types computed by Code...Chris Lattner
2012-02-05reapply the patches reverted in r149477, which enable ConstantDataArray.Chris Lattner
2012-02-05Basic: import SmallString<> into clang namespaceDylan Noblesmith
2012-02-01Revert r149363 which was part a series of commits that were reverted in llvmArgyrios Kyrtzidis
2012-01-31ConstantArray::get() (for strings) is going away, useChris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2011-10-21c++: support gcc's application of weak attribute onFariborz Jahanian
2011-10-18More metaprogramming with builtin types.John McCall
2011-10-17Add a new placeholder type to represent "unbridged"John McCall
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov
2011-10-07Rename TagDecl::isDefinition -> isCompleteDefinitionJohn McCall
2011-10-06Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman
2011-09-26Create a VTableContext class and start moving CodeGenVTables methods to itPeter Collingbourne
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
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