index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
CodeGen
/
CGCall.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Take advantage of noreturn attribute to add unreachable instruction &
Daniel Dunbar
2009-02-20
1
-0
/
+12
*
Set call attribute for direct calls (i.e. noreturn).
Daniel Dunbar
2009-02-20
1
-3
/
+3
*
switch ObjCMethodDecl's parameter list from being explicitly managed to an Ob...
Chris Lattner
2009-02-20
1
-1
/
+1
*
i386 ABI: Offset computation in va_arg was incorrect for sizeof(Ty)>4.
Daniel Dunbar
2009-02-18
1
-6
/
+3
*
x86_64 ABI: Fix thinko in computation of bound for "passed in SSE regs" test.
Daniel Dunbar
2009-02-18
1
-1
/
+1
*
x86_64 ABI: "is passed in regs" computation for va_arg was broken for
Daniel Dunbar
2009-02-18
1
-1
/
+1
*
x86_64 ABI: Two bug fixes.
Daniel Dunbar
2009-02-18
1
-4
/
+36
*
x86_64 ABI: Fix assert on return of _Complex long double.
Daniel Dunbar
2009-02-17
1
-5
/
+6
*
x86_64 ABI: Implement classification for bit-fields.
Daniel Dunbar
2009-02-17
1
-2
/
+26
*
x86_64 ABI: Handle va_arg arguments with alignment > 8.
Daniel Dunbar
2009-02-16
1
-4
/
+15
*
x86_64 ABI: Need to use canonical types when comparing against
Daniel Dunbar
2009-02-14
1
-2
/
+6
*
x86_64 ABI: Pass simple types directly when possible. This is
Daniel Dunbar
2009-02-14
1
-2
/
+32
*
x86_64 ABI: Support va_arg passed in mixed registers.
Daniel Dunbar
2009-02-13
1
-1
/
+22
*
x86_64: Initial varargs support.
Daniel Dunbar
2009-02-12
1
-1
/
+153
*
Pull CodeGenFunction::EmitVAArg into target specific ABIInfo classes.
Daniel Dunbar
2009-02-10
1
-3
/
+55
*
Tweak x86-64 ABI to allow reuse for vararg handling.
Daniel Dunbar
2009-02-10
1
-22
/
+26
*
ABI: Correctly handle load/store of values which have a different LLVM
Daniel Dunbar
2009-02-10
1
-21
/
+22
*
Make sure to initialize local variables, even if they were ignored by
Daniel Dunbar
2009-02-10
1
-0
/
+7
*
Set load/store alignment when doing ABI coercions.
Daniel Dunbar
2009-02-07
1
-4
/
+14
*
Implement Direct ABIInfo semantics.
Daniel Dunbar
2009-02-05
1
-17
/
+29
*
Simplify test for whether we need an alloca to hold an indirect return
Daniel Dunbar
2009-02-05
1
-11
/
+1
*
Implement ABI Indirect sematics for arguments.
Daniel Dunbar
2009-02-05
1
-6
/
+32
*
Merge ABIInfo StructRet/ByVal into Indirect.
Daniel Dunbar
2009-02-05
1
-46
/
+30
*
Pull CodeGenFunction::GetUndefRValue() out of EmitUnsupportedRValue.
Daniel Dunbar
2009-02-05
1
-9
/
+3
*
x86-32: Use Ignore to avoid passing empty structs (instead of Expand).
Daniel Dunbar
2009-02-05
1
-2
/
+2
*
Honor ByVal alignment. Patch by Nate Begeman!
Daniel Dunbar
2009-02-05
1
-2
/
+3
*
Unbreak CGFunctionInfo::Profile method and reenable caching of ABI
Daniel Dunbar
2009-02-05
1
-3
/
+1
*
Add ABIArgInfo::dump()
Daniel Dunbar
2009-02-04
1
-0
/
+31
*
Temporarily disable caching of ABI results; this is going horribly
Daniel Dunbar
2009-02-04
1
-1
/
+3
*
Add asserts that the function signature matches the other arguments provide
Daniel Dunbar
2009-02-04
1
-0
/
+4
*
Handle demotion of coerced arguments (as in void a(x) short x; { ... }).
Daniel Dunbar
2009-02-04
1
-1
/
+7
*
Use ConvertTypeForMem when creating alloca for scalar argument.
Daniel Dunbar
2009-02-03
1
-1
/
+1
*
x86_64 ABI: Initial implementation of ABI compliant parameter passing.
Daniel Dunbar
2009-02-03
1
-18
/
+119
*
ABI handling: Implement coercion for argument types (in addition to
Daniel Dunbar
2009-02-03
1
-4
/
+39
*
Change ABIInfo to compute information for a full signature at a time
Daniel Dunbar
2009-02-03
1
-41
/
+38
*
Remove ABIArgInfo::Default kind, ABI is now responsible for specifying
Daniel Dunbar
2009-02-03
1
-33
/
+28
*
Add ABIArgInfo::Direct kind, which passes arguments using whatever the
Daniel Dunbar
2009-02-03
1
-1
/
+18
*
Add two FIXMEs.
Daniel Dunbar
2009-02-03
1
-0
/
+5
*
Always use CGFunctionInfo to access ABI information.
Daniel Dunbar
2009-02-03
1
-14
/
+16
*
Move ABIArgInfo into CGFunctionInfo, computed on creation.
Daniel Dunbar
2009-02-03
1
-25
/
+31
*
Move ABIInfo/ABIArgInfo classes into ABIInfo.h
Daniel Dunbar
2009-02-03
1
-103
/
+3
*
Memoize CGFunctionInfo construction.
Daniel Dunbar
2009-02-03
1
-1
/
+12
*
Change CGFunctionInfo args iterator to not include the return type.
Daniel Dunbar
2009-02-02
1
-14
/
+14
*
Thread CGFunctionInfo construction through CodeGenTypes.
Daniel Dunbar
2009-02-02
1
-26
/
+46
*
More ABI API cleanup.
Daniel Dunbar
2009-02-02
1
-13
/
+12
*
ABI handling API changes.
Daniel Dunbar
2009-02-02
1
-29
/
+22
*
Shuffle some functions around, no functionality change.
Daniel Dunbar
2009-02-02
1
-65
/
+65
*
Add FIXME.
Daniel Dunbar
2009-02-02
1
-0
/
+4
*
Remove unused overload of GetFunctionType.
Daniel Dunbar
2009-01-31
1
-8
/
+2
*
Initialize CGFunctionInfo isVariadic bit correctly.
Daniel Dunbar
2009-01-31
1
-2
/
+4
[next]