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