aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGDecl.cpp
AgeCommit message (Expand)Author
2009-11-23Teach CodeGenFunction::EmitDecl to ignore Using and UsingShadow decls.Daniel Dunbar
2009-11-18Trim whitespace.Mike Stump
2009-11-12Move CompileOptions -> CodeGenOptions, and sink it into the CodeGen library.Chandler Carruth
2009-11-09Make sure that Type::getAs<ArrayType>() (or Type::getAs<subclass ofDouglas Gregor
2009-11-04This patch extends CleanupScope to support destructionFariborz Jahanian
2009-11-04Merge constant array and structures. This will create a global variables for ...Tanya Lattner
2009-11-03Refine volatile handling, specifically, we must have the canonicalMike Stump
2009-10-29Patch for destruction of array of objects on block exit.Fariborz Jahanian
2009-10-21Fix 80-col violation.Mike Stump
2009-10-16ignore 'using' directive in CodeGenFunction::EmitDecl(). this fixes PR5085Nuno Lopes
2009-10-13Simplify pointer creation with the new Type::getInt*Ptr methods.Benjamin Kramer
2009-10-09Revert 83567.Devang Patel
2009-10-08Record location info before emiting alloca for arguments. This allows argumen...Devang Patel
2009-09-26Set alignment on static function level decls and VLAs. Fixes PR5060.Anders Carlsson
2009-09-22Improve debug info generation for __block variables.Mike Stump
2009-09-13Fix another byref bug. This should hopefully get QuickLookPlugins building su...Anders Carlsson
2009-09-12Add FIXME for alignments that won't be honored.Mike Stump
2009-09-12Add support for __block variables with alignment greater than __alignof(void *).Anders Carlsson
2009-09-12For __block variables, cache the LLVM types as well as which LLVM field where...Anders Carlsson
2009-09-10GlobalDecl doesn't have an explicit constructor anymore.Anders Carlsson
2009-09-10Make the forwarding member of block byref structs be a pointer to the block b...Anders Carlsson
2009-09-09Suppress build warning.Daniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-09-09Make BuildByRefType take a ValueDecl instead of a QualType and an alignment.Anders Carlsson
2009-08-17Remove an ErrorUnsupported call.Anders Carlsson
2009-08-16Add an IsInitializer flag to EmitAnyExpr. This is used to prevent temporaries...Anders Carlsson
2009-08-13Update for LLVM API change.Owen Anderson
2009-08-08Refactor some code and implement support for global destructors for static va...Anders Carlsson
2009-08-05Update for LLVM API change.Owen Anderson
2009-08-03assert(nyi) on attempt to destruct an array of objects.Fariborz Jahanian
2009-08-03ir-gen for destructor calls.Fariborz Jahanian
2009-08-02use CodeGenModule::EmitNullConstant in a couple of places.Anders Carlsson
2009-07-31Update for LLVM API change.Owen Anderson
2009-07-30Canonicalize else spacing.Mike Stump
2009-07-29Update for LLVM API change.Owen Anderson
2009-07-29Update for LLVM API change.Owen Anderson
2009-07-26Switch to using llvm::Value::getName()Daniel Dunbar
2009-07-24Update for LLVM API change.Owen Anderson
2009-07-19Fix thinko.Daniel Dunbar
2009-07-19Avoid generation of dead code in a few more situations.Daniel Dunbar
2009-07-14Update for LLVM API change, and contextify a bunch of related stuff.Owen Anderson
2009-07-13Update for LLVM API change.Owen Anderson
2009-07-08Update for LLVM API change.Owen Anderson
2009-07-08Update for LLVM API change.Owen Anderson
2009-06-30Remove the ASTContext parameter from the attribute-related methods of Decl.Argyrios Kyrtzidis
2009-06-26typoDevang Patel
2009-06-18Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.Douglas Gregor
2009-06-05As an optimization, we maintain a cache of generatedMike Stump
2009-05-27Add IRGen support for local variables of reference type.Eli Friedman
2009-05-22Targets like PIC16 generate Static decls for automatic variables, emit the ap...Sanjiv Gupta