aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGCall.h
AgeCommit message (Expand)Author
2013-03-23Under ARC, when we're passing the address of a strong variableJohn McCall
2013-01-27Use the AttributeSet instead of AttributeWithIndex.Bill Wendling
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-02Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate toChandler Carruth
2012-12-07Fix the required args count for variadic blocks.John McCall
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-02-17Whether an argument is required (in contrast with being anJohn McCall
2011-07-20now that we have a centralized place to do so, add some using declarations forChris Lattner
2011-06-15Automatic Reference Counting.John McCall
2011-05-26Skip extra copy from aggregate where it isn't necessary; rdar://problem/81399...Eli Friedman
2011-05-07Revert r130717, which caused a regression (<rdar://problem/9402621>).Douglas Gregor
2011-05-02Skip extra copy from aggregate where it isn't necessary; rdar://problem/81399...Eli Friedman
2011-05-02Switch CallArgList from an std::pair to a new CallArg struct (which will even...Eli Friedman
2011-04-09PR8369: make __attribute((regparm(0))) work correctly. Original patch byEli Friedman
2011-03-11Use a slightly more semantic interface for emitting call arguments.John McCall
2011-03-09Use the "undergoes default argument promotion" bit on parameters toJohn McCall
2010-06-29relax the CGFunctionInfo::CGFunctionInfo ctor to allow any sequence Chris Lattner
2010-03-30Remember the regparm attribute in FunctionType::ExtInfo.Rafael Espindola
2010-03-30the big refactoring bits of PR3782.Rafael Espindola
2010-02-26Use the power of types to track down another canonicalization bug inJohn McCall
2010-02-24Canonicalize parameter and return types before computing ABI info. EliminatesJohn McCall
2010-02-05Standardize the parsing of function type attributes in a way thatJohn McCall
2009-12-24Fill in the return value slot in CGExprAgg::VisitCallExpr. This takes us half...Anders Carlsson
2009-12-24Add a ReturnValueSlot class. Change the argument order in EmitCall to match t...Anders Carlsson
2009-09-12Change CodeGenModule::ConstructTypeAttributes to return the calling conventionDaniel Dunbar
2009-09-11Add CallingConvention argument to CGFunctionInfo.Daniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-02-05Unbreak CGFunctionInfo::Profile method and reenable caching of ABIDaniel Dunbar
2009-02-04Add asserts that the function signature matches the other arguments provideDaniel Dunbar
2009-02-03Move ABIArgInfo into CGFunctionInfo, computed on creation.Daniel Dunbar
2009-02-03Memoize CGFunctionInfo construction.Daniel Dunbar
2009-02-02Change CGFunctionInfo args iterator to not include the return type.Daniel Dunbar
2009-02-02Thread CGFunctionInfo construction through CodeGenTypes.Daniel Dunbar
2009-02-02ABI handling API changes.Daniel Dunbar
2009-01-31Kill off CGCallInfo, always use CGFunctionInfo for encapsulatingDaniel Dunbar
2008-09-25 Large mechanical patch.Devang Patel
2008-09-24s/ParamAttrsWithIndex/FnAttributeWithIndex/gDevang Patel
2008-09-10Move FunctionType conversion into CGCall.cpp:Daniel Dunbar
2008-09-10Tweak CGCall functions:Daniel Dunbar
2008-09-09Factor CodeGenFunction::StartFunction out of GenerateCode andDaniel Dunbar
2008-09-09Change CodeGen to emit calls using (RValue,Type) list:Daniel Dunbar
2008-09-08Refactor parameter attribute handling:Daniel Dunbar