aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.h
AgeCommit message (Expand)Author
2012-09-15Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments.Dmitri Gribenko
2012-06-28Add -ftls-model command-line flag.Hans Wennborg
2012-06-26block literal irgen: several improvements on naming blockFariborz Jahanian
2012-06-23Support the tls_model attribute (PR9788)Hans Wennborg
2012-05-20CUDA: add CodeGen support for global variable address spaces.Peter Collingbourne
2012-05-01Refactor the C++ ABI code a little bit to take advantage ofJohn McCall
2012-03-30Make sure we unique static-local decls across multiple emissions ofJohn 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-26add tbaa metadata to vtable pointer loads/storesKostya Serebryany
2012-03-11Unify naming of LangOptions variable/get function across the Clang stack (Lex...David Blaikie
2012-03-09Make sure we update the static local decl address map when we are forced to r...Eli Friedman
2012-03-08Replace MarkVarRequired with a more genericRafael Espindola
2012-03-05Fix a small difference in sema and codegen views of what needs to be output.Rafael Espindola
2012-03-02Reinstate r151879, r151880, reverted in r151922, along with a bugfix forRichard Smith
2012-02-25CodeGen support for global variables of type std::initializer_list<X>.Sebastian Redl
2012-02-17Bug fix: do not emit static const local variables with mutable membersRichard Smith
2012-02-16Teach clang to add metadata tags to calls and invokes in ObjC withDan Gohman
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-02-06use cheaper llvm APIs for various bits of IR generation.Chris Lattner
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-14constexpr irgen: Add irgen support for APValue::Struct, APValue::Union,Richard Smith
2012-01-08objc++: more atomic property api code forFariborz Jahanian
2012-01-06objc++: more code gen stuff for atomic property api,Fariborz Jahanian
2011-12-19Extend the fix for PR9614 to handle inline asm in the outer decl andRafael Espindola
2011-11-22Use static storage duration for file-scope compound literals, even when theyRichard Smith
2011-11-09Remove unnecessary include.Devang Patel
2011-11-01Fix the representation of wide strings in the AST and IR so that it uses the ...Eli Friedman
2011-10-31In x86_64, when calling an Objective-C method that returns a _Complex long do...Anders Carlsson
2011-10-26Fix pr9614 by not emitting an available_externally function when it callsRafael Espindola
2011-10-14PR11124: Don't overwrite memory outside of a base class when performing zero-...Eli Friedman
2011-10-06CUDA: IR generation support for kernel call expressionsPeter Collingbourne
2011-09-26Create a VTableContext class and start moving CodeGenVTables methods to itPeter Collingbourne
2011-09-25Rename Diagnostic to DiagnosticsEngine as per issue 5397David Blaikie
2011-09-19OpenCL: introduce support for function scope __local variablesPeter Collingbourne
2011-09-10Simplify the generation of Objective-C setters, at least a little.John McCall
2011-09-09Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: canJulien Lerouge
2011-09-09Do a lookup for the blocks runtime globals to see if they were declared,Argyrios Kyrtzidis
2011-09-02Extend the ASTContext constructor to delay the initialization ofDouglas Gregor
2011-08-09Move the creation of the record type for the state of Objective-C fastDouglas Gregor
2011-08-09Move the construction of the RecordDecl representing the runtimeDouglas Gregor
2011-08-04Emit wide string literals with the appropriate alignment.John McCall
2011-07-27CodeGen: rename CodeGenModule::Runtime to ObjCRuntimePeter Collingbourne
2011-07-23Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ...Chris Lattner
2011-07-20now that we have a centralized place to do so, add some using declarations forChris Lattner
2011-07-18de-constify llvm::Type, patch by David Blaikie!Chris Lattner
2011-07-14Change intrinsic getter to take an ArrayRef, now that the underlying function...Benjamin Kramer
2011-07-09clang side to match the LLVM IR type system rewrite patch.Chris Lattner
2011-06-24Change the IR-generation of VLAs so that we capture bounds,John McCall