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
*
Move the static DeclAttrs map into ASTContext. Fixes <rdar://problem/6983177>.
Douglas Gregor
2009-06-18
1
-5
/
+6
*
Fix PR4372, another case where non-prototyped functions can prevent
Chris Lattner
2009-06-13
1
-4
/
+36
*
Add new ABIArgInfo kind: Extend. This allows target to implement its own argu...
Anton Korobeynikov
2009-06-06
1
-20
/
+26
*
Factor out TargetABIInfo stuff into separate file. No functionality change.
Anton Korobeynikov
2009-06-05
1
-1368
/
+0
*
Set function Attribute::NoImplicitFloat appropriately.
Devang Patel
2009-06-05
1
-0
/
+2
*
ABI handling: Fix nasty thinko where IRgen could generate an out-of-bounds read
Daniel Dunbar
2009-06-05
1
-7
/
+8
*
Set function attribute llvm::Attribute::NoRedZone appropriately.
Devang Patel
2009-06-04
1
-0
/
+4
*
When trying to pass an argument on the stack, assume LLVM will do the right
Daniel Dunbar
2009-05-26
1
-3
/
+19
*
x86_64 ABI: Account for sret parameters consuming an integer register.
Daniel Dunbar
2009-05-22
1
-0
/
+5
*
Set correct calling convention even if there is a bitcast in the way.
Torok Edwin
2009-05-22
1
-1
/
+1
*
Use v.data() instead of &v[0] when SmallVector v might be empty.
Jay Foad
2009-05-21
1
-2
/
+2
*
Add EmitReferenceBindingToExpr. Have EmitCallArg use it for now. Doesn't supp...
Anders Carlsson
2009-05-20
1
-0
/
+3
*
Pass the destination QualType to EmitStoreOfScalar. No functionality change.
Anders Carlsson
2009-05-19
1
-3
/
+3
*
Clean up some unnecessary includes.
Eli Friedman
2009-05-19
1
-2
/
+0
*
Reflow some comments.
Mike Stump
2009-05-16
1
-52
/
+45
*
ABI handling: Fix invalid assertion, it is possible for a valid
Daniel Dunbar
2009-05-13
1
-6
/
+16
*
static methods don't get this pointers.
Chris Lattner
2009-05-12
1
-4
/
+4
*
Darwin x86-32 ABI: Now that structure passing is farther along, we
Daniel Dunbar
2009-05-12
1
-12
/
+5
*
x86-64 ABI: clang incorrectly passes union { long double, float } in
Daniel Dunbar
2009-05-12
1
-1
/
+2
*
Darwin x86-32: Multi-dimensional arrays were not handled correctly,
Daniel Dunbar
2009-05-11
1
-9
/
+12
*
Darwin x86_32: Treat records with unnamed bit-fields as "empty".
Daniel Dunbar
2009-05-11
1
-19
/
+27
*
Correct for renaming PaddedSize -> AllocSize in
Duncan Sands
2009-05-09
1
-4
/
+4
*
x86_64 ABI: Ignore padding bit-fields during classification.
Daniel Dunbar
2009-05-08
1
-2
/
+5
*
Darwin x86_32: When coercing a "single element" structure, make sure
Daniel Dunbar
2009-05-08
1
-4
/
+8
*
Darwin x86_32: Ignore padding bit-fields when looking for "single
Daniel Dunbar
2009-05-08
1
-4
/
+8
*
Darwin x86_32: Improve bit-field handling for returning records.
Daniel Dunbar
2009-05-08
1
-4
/
+0
*
Darwin x86_32: Ignore arrays of empty structures inside records.
Daniel Dunbar
2009-05-08
1
-0
/
+7
*
fix i128 to return in 2 64-bit registers (rax/rdx on x86-64)
Chris Lattner
2009-04-30
1
-2
/
+2
*
initial support for __[u]int128_t, which should be basically
Chris Lattner
2009-04-30
1
-1
/
+3
*
x86-32 ABI: Fix crash on return of structure with flexible array
Daniel Dunbar
2009-04-27
1
-4
/
+10
*
Remove getIntegerConstantExprValue in favor of using EvaluateAsInt.
Eli Friedman
2009-04-26
1
-2
/
+1
*
Pass and return aggregate types directly to function calls.
Sanjiv Gupta
2009-04-21
1
-0
/
+41
*
Make CodeGenFunction::EmitCallArgs a template function that takes a generic "...
Anders Carlsson
2009-04-18
1
-32
/
+0
*
Update to use hasAttr() instead of getAttr().
Daniel Dunbar
2009-04-13
1
-4
/
+4
*
Don't set both readnone and readonly.
Daniel Dunbar
2009-04-10
1
-2
/
+2
*
Propagate the ASTContext to various AST traversal and lookup functions.
Douglas Gregor
2009-04-09
1
-22
/
+24
*
Add code for emitting call arguments (not used yet).
Anders Carlsson
2009-04-08
1
-0
/
+36
*
Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379.
Anders Carlsson
2009-04-08
1
-13
/
+0
*
Add a getFunctionInfo that takes a BlockPointerType.
Anders Carlsson
2009-04-06
1
-0
/
+13
*
Basic support for regparm codegen
Anton Korobeynikov
2009-04-04
1
-3
/
+22
*
Add a getFunctionInfo that takes a CXXMethodDecl.
Anders Carlsson
2009-04-03
1
-0
/
+17
*
x86-32 Darwin ABI: Handle small structures correctly.
Daniel Dunbar
2009-04-01
1
-2
/
+68
*
x86-32 Darwin ABI: Single element arrays can be part of "single
Daniel Dunbar
2009-04-01
1
-18
/
+26
*
x86-32 Darwin ABI: Handle direct return of vectors.
Daniel Dunbar
2009-04-01
1
-0
/
+22
*
x86_32 Darwin ABI: Treat empty unions like empty structures.
Daniel Dunbar
2009-03-31
1
-5
/
+5
*
Initial implementation of ARM ABI. Mostly untested. Note that I'm not
Eli Friedman
2009-03-29
1
-0
/
+88
*
Fix the ABI convention for struct returns on x86 outside of Darwin.
Eli Friedman
2009-03-23
1
-1
/
+9
*
don't set the name of a call instruction to "call" in release-asserts
Chris Lattner
2009-03-22
1
-10
/
+9
*
PR3835: Interaction with ABI structure passing can inhibit
Daniel Dunbar
2009-03-18
1
-0
/
+6
*
x86_32 ABI: Don't try and expand structures with bitfields.
Daniel Dunbar
2009-03-11
1
-7
/
+7
[next]