aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenModule.h
AgeCommit message (Expand)Author
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
2011-06-15Automatic Reference Counting.John McCall
2011-06-14Move GlobalDecl to ASTPeter Collingbourne
2011-05-15Use arrays and SmallVectors instead of std::vectors when building functionJohn McCall
2011-05-05Preserve the full name of the file, so that '-c -o foo.pic.o' producesNick Lewycky
2011-05-04Record where the GCOV data files should be placed.Nick Lewycky
2011-04-12After some discussion with Doug, we decided that it made a lot more senseJohn McCall
2011-04-07Basic, untested implementation for an "unknown any" type requested by LLDB.John McCall
2011-03-31After much contemplation, I've decided that we probably shouldn't "unique"John McCall
2011-03-27We were emitting construction v-tables with internal linkage all the time.John McCall
2011-03-23Update type cache when a type is completed.Devang Patel
2011-03-18The Darwin kernel does not provide useful guard variable support.John McCall
2011-03-09Fix three of the four places where I left breadcrumbs to avoid unnecessaryJohn McCall
2011-03-09Use the "undergoes default argument promotion" bit on parameters toJohn McCall
2011-03-07DebugInfo can be enabled or disabled at function level (e.g. using an attribu...Devang Patel
2011-03-07Do not emit stop point for CXXDefaultArgExpr. It results in suboptimial user ...Devang Patel
2011-03-05StringRefify.Benjamin Kramer
2011-02-26Pretty up the emission of field l-values and use volatile and TBAA whenJohn McCall
2011-02-22Emit the structure layout of the block literal parameter to a blockJohn McCall
2011-02-22Reorganize the emission of local variables.John McCall
2011-02-15Assorted cleanup:John McCall
2011-02-08Reorganize CodeGen{Function,Module} to eliminate the unfortunateJohn McCall
2011-02-06Simplify thunks code.Anders Carlsson
2011-02-05Pass a 'ForVTable' flag to GetAddrOfThunk and pass it along to GetOrCreateLLV...Anders Carlsson
2011-02-05Re-land r124768, with a fix for PR9130.Anders Carlsson
2011-02-03More capturing of 'this': implicit member expressions. Getting thatJohn McCall
2011-02-03Revert 124768.Rafael Espindola