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
/
ABIInfo.h
Age
Commit message (
Expand
)
Author
2013-04-16
Standardize accesses to the TargetInfo in IR-gen.
John McCall
2013-02-28
Use the actual ABI-determined C calling convention for runtime
John McCall
2013-01-31
Add support for AArch64 target.
Tim Northover
2013-01-02
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to
Chandler Carruth
2012-10-24
Add padding inreg registers to cause llvm to skip ecx when needed with
Rafael Espindola
2012-10-19
Fix handling of the regparm attribute in the presence of classes with copy
Rafael Espindola
2012-10-08
Move TargetData to DataLayout.
Micah Villmow
2012-07-31
Handle functions with struct arguments or return types and the regparm
Rafael Espindola
2012-07-24
ABIArgInfo's constructor is private and only used by the static get* methods.
Rafael Espindola
2012-01-07
Add field PaddingType to ABIArgInfo which specifies the type of padding that
Akira Hatanaka
2011-07-09
clang side to match the LLVM IR type system rewrite patch.
Chris Lattner
2010-10-19
Fix Whitespace.
Michael J. Spencer
2010-09-16
IRgen/ABI: Add support for realigning structures which are passed by indirect
Daniel Dunbar
2010-07-30
fix PR5179 and correctly fix PR5831 to not miscompile.
Chris Lattner
2010-07-29
move the last hunk of getCoerceResult into the place
Chris Lattner
2010-07-29
fix a builder, why didn't clang++ catch this?
Chris Lattner
2010-07-29
Kill off the 'coerce' ABI passing form. Now 'direct' and 'extend' always
Chris Lattner
2010-07-29
dissolve some more complexity: make the x86-64 abi lowering code
Chris Lattner
2010-07-29
now that ABIInfo depends on CGT, it has trivial access to such
Chris Lattner
2010-07-29
cave in to reality and make ABIInfo depend on CodeGenTypes.
Chris Lattner
2010-07-28
tidy up
Chris Lattner
2010-06-29
change ABIArgInfo to hold its llvm type with PATypeHolder so that
Chris Lattner
2010-06-29
Pass the LLVM IR version of argument types down into computeInfo.
Chris Lattner
2009-09-16
x86-64 ABI: If a type is a C++ record with either a non-trivial destructor or...
Anders Carlsson
2009-08-11
LLVMContext is a class now.
Benjamin Kramer
2009-08-05
Update for LLVM API change.
Owen Anderson
2009-07-14
Update for LLVM API change, and contextify a bunch of related stuff.
Owen Anderson
2009-06-06
Add new ABIArgInfo kind: Extend. This allows target to implement its own argu...
Anton Korobeynikov
2009-06-05
Factor out TargetABIInfo stuff into separate file. No functionality change.
Anton Korobeynikov
2009-02-10
Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes.
Daniel Dunbar
2009-02-05
Merge ABIInfo StructRet/ByVal into Indirect.
Daniel Dunbar
2009-02-05
Initialize alignment field for ByVal ABIInfo correctly.
Daniel Dunbar
2009-02-04
Add ABIArgInfo::dump()
Daniel Dunbar
2009-02-03
Change ABIInfo to compute information for a full signature at a time
Daniel Dunbar
2009-02-03
Remove ABIArgInfo::Default kind, ABI is now responsible for specifying
Daniel Dunbar
2009-02-03
Add ABIArgInfo::Direct kind, which passes arguments using whatever the
Daniel Dunbar
2009-02-03
Move ABIArgInfo into CGFunctionInfo, computed on creation.
Daniel Dunbar
2009-02-03
Move ABIInfo/ABIArgInfo classes into ABIInfo.h
Daniel Dunbar