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
/
TargetABIInfo.cpp
Age
Commit message (
Expand
)
Author
2009-11-09
Rename areAllFields32Or64BitBasicType to canExpandIndirectArgument to closer ...
Daniel Dunbar
2009-10-21
Add AuroraUX ABI Triple in correct place.
Edward O'Callaghan
2009-10-20
Fix the 32-bit ABI to return structures with non-trivial copy ctors or dtors ...
Anders Carlsson
2009-10-20
Add missing semi-colon.
Daniel Dunbar
2009-10-20
Bring Darwin into the switch-case statement instead of its own if for readabi...
Edward O'Callaghan
2009-10-13
Simplify pointer creation with the new Type::getInt*Ptr methods.
Benjamin Kramer
2009-09-26
Use ABIArgInfo::getDirect() for all types that have a pointer representation.
Anders Carlsson
2009-09-24
Darwin/x86-32: Enumerated types and block pointer types in structures were not
Daniel Dunbar
2009-09-21
Change all the Type::getAsFoo() methods to specializations of Type::getAs().
John McCall
2009-09-16
x86-64 ABI: If a type is a C++ record with either a non-trivial destructor or...
Anders Carlsson
2009-09-14
ARM/[A]APCS: Ignore empty records passed as arguments.
Daniel Dunbar
2009-09-14
ARM/APCS: Don't treat structs w/ floating point types as "integer like".
Daniel Dunbar
2009-09-14
Some minor clang/ARM/AAPCS tweaks.
Daniel Dunbar
2009-09-14
Add TargetInfo::getABI(), and base ARM APCS vs AAPCS choice on that.
Daniel Dunbar
2009-09-13
ARM/APCS: Only "integer like" aggregates should be returned in r0 (following
Daniel Dunbar
2009-09-12
Stub out room for ARM APCS ABI implementation (and AAPCS_VFP, although you can't
Daniel Dunbar
2009-09-12
Formatting fixes.
Daniel Dunbar
2009-09-11
Swizzle the target triple based on -mthumb, and update clang-cc to recognize
Daniel Dunbar
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-09-03
Fixed bug introduced in r79900 where FreeBSD was turned into NetBSD, transpos...
David Chisnall
2009-08-24
Fix build of clang with gcc-4.4: #include <cstdio> was missing.
Torok Edwin
2009-08-24
Switch TargetInfo to store an llvm::Triple.
Daniel Dunbar
2009-08-24
Switch ABI selection to use llvm::Triple instead of string munging.
Daniel Dunbar
2009-08-17
Fixed typo in last commit pointed out by Anton.
David Chisnall
2009-08-17
Changes to TargetABIInfo to (hopefully) select the correct calling convention...
David Chisnall
2009-08-13
Update for LLVM API change.
Owen Anderson
2009-08-05
Update for LLVM API change.
Owen Anderson
2009-07-29
Update for LLVM API change.
Owen Anderson
2009-07-29
Change uses of:
Ted Kremenek
2009-07-29
No longer need to keep base class offsets in the offset
Fariborz Jahanian
2009-07-27
Some minor changes toward support of data
Fariborz Jahanian
2009-07-24
Update for LLVM API change.
Owen Anderson
2009-07-18
Revert r75641.
Anders Carlsson
2009-07-17
Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods
Ted Kremenek
2009-07-17
Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ...
Ted Kremenek
2009-07-16
Hook in s390x stuff into clang
Anton Korobeynikov
2009-07-14
Update for LLVM API change, and contextify a bunch of related stuff.
Owen Anderson
2009-07-14
Rename RecordLayout.h to ASTRecordLayout.h
Anders Carlsson
2009-06-30
De-ASTContext-ify DeclContext.
Argyrios Kyrtzidis
2009-06-13
Fix the calling convention for structs/unions containing SSE vectors on
Eli Friedman
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