aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.cpp
AgeCommit message (Expand)Author
2009-01-20Slight cleanup, and fix for va_arg on architectures where va_list is a Eli Friedman
2009-01-09Block pointer types are not aggregate types.Daniel Dunbar
2008-12-20Handle typedefs to VLAs (Emit the size expr when we encounter the typedefAnders Carlsson
2008-12-20Make sure to generate code for arguments that have a variably modified type.Anders Carlsson
2008-12-20Change EmitVLASize to take a QualType that must be a variably modified type.Anders Carlsson
2008-12-20Split up emitting of VLA sizes and getting the size of a VLA.Anders Carlsson
2008-12-12Add map of VLA types and their sizesAnders Carlsson
2008-12-01Change more code over to using the new Expr::EvaluateAnders Carlsson
2008-11-24Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make itChris Lattner
2008-11-22An expression is not foldable if it can't be fully evaluated. Fixes PR3060Anders Carlsson
2008-11-17Introduction the DeclarationName class, as a single, general method ofDouglas Gregor
2008-11-16rename Expr::tryEvaluate to Expr::Evaluate.Chris Lattner
2008-11-13Normalize many BasicBlock names.Daniel Dunbar
2008-11-12Quick fix for crash in IRgen when we can tryEvaluate a condition toDaniel Dunbar
2008-11-12Handle ?: in EmitBranchOnBoolExpr.Daniel Dunbar
2008-11-12Handle Unary ! in EmitBranchOnBoolExpr, so that we can efficientlyChris Lattner
2008-11-12Move EmitBranchOnBoolExpr and ConstantFoldsToSimpleInteger toChris Lattner
2008-11-11Rework IRgen invariant w.r.t. current insert point.Daniel Dunbar
2008-11-11Emit debug region end in unified return block.Daniel Dunbar
2008-11-11short circuit && and || when possible. This substantially reducesChris Lattner
2008-11-11Remove CodeGenFunction::StartBlock.Daniel Dunbar
2008-11-11Centralize basic block creation in CodeGenFunction::createBasicBlock.Daniel Dunbar
2008-11-04Implement lowering of va_arg in clang directly. (This is 32-bit X86 only for ...Anders Carlsson
2008-10-28Don't run the verifier as part of IRgen, this is now down (per module)Daniel Dunbar
2008-10-18Debug info bug fix, function start wasn't getting generated correctlyDaniel Dunbar
2008-10-17Change CGDebugInfo::setLocation to just ignore invalid locations. ThisDaniel Dunbar
2008-09-27Simplify code to emit the unified return block and move it to the endDaniel Dunbar
2008-09-17Print current function on verification failures.Daniel Dunbar
2008-09-11Make sure to store the exception in the catch parameter.Anders Carlsson
2008-09-09Move ABI specific code for functions / calls to CGCall.cpp:Daniel Dunbar
2008-09-09Factor CodeGenFunction::StartFunction out of GenerateCode andDaniel Dunbar
2008-09-09Use a unified return block.Daniel Dunbar
2008-09-04Avoid superfluous errors regarding variable-length arrays (casts).Daniel Dunbar
2008-08-30Stub out CodeGenFunction::EmitObjCForCollectionStmt.Anders Carlsson
2008-08-26Objective-C @synthesize support.Daniel Dunbar
2008-08-25Do typechecking and codegen for K&R-style function declarations Eli Friedman
2008-08-16Change WarnUnsupported to ErrorUnsupported (in name and in practice).Daniel Dunbar
2008-08-11More #include cleaningDaniel Dunbar
2008-08-11More #include cleaningDaniel Dunbar
2008-08-11More #include cleaningDaniel Dunbar
2008-08-04Avoid creating dummy block when no indirect gotos are present.Daniel Dunbar
2008-08-04Add CodeGen support for indirect goto.Daniel Dunbar
2008-07-29Rework codegen emission of globalsDaniel Dunbar
2008-07-25Fix rdar://6103124, the only dummy blocks are ones without names. Named blocksChris Lattner
2008-07-04Fixed bugzilla bug# 2489.Sanjiv Gupta
2008-06-17Change self/_cmd to be instances of ImplicitParamDecl instead of ParmVarDecl.Chris Lattner
2008-06-13Basic support for volatile loads and stores. Stores the volatile Eli Friedman
2008-06-01First cut at setting attributes for functions and calls; this puts us Eli Friedman
2008-06-01Support for code generation of Objective-C top-level language constructs.Anton Korobeynikov
2008-05-25Generate subprogram debug info with -g.Sanjiv Gupta