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
...
*
Do not reuse the debug location of the return value's store if there is autor...
Adrian Prantl
2013-05-30
1
-2
/
+4
*
Fix bad indentation.
Jakob Stoklund Olesen
2013-05-29
1
-4
/
+4
*
Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr...
Dmitri Gribenko
2013-05-05
1
-8
/
+4
*
Correctly emit certain implicit references to 'self' even within
John McCall
2013-05-03
1
-1
/
+1
*
Ensure that the line table for functions with cleanups is sequential.
Adrian Prantl
2013-05-02
1
-2
/
+5
*
Standardize accesses to the TargetInfo in IR-gen.
John McCall
2013-04-16
1
-5
/
+4
*
Fix uninitialized read of CalleeWithThisReturn.
Manman Ren
2013-03-26
1
-1
/
+1
*
Fix uninitialized read of CalleeWithThisReturn.
Evgeniy Stepanov
2013-03-26
1
-1
/
+1
*
Under ARC, when we're passing the address of a strong variable
John McCall
2013-03-23
1
-10
/
+81
*
Exploit this-return of a callsite in a this-return function.
Manman Ren
2013-03-20
1
-0
/
+25
*
revert r177211 due to its potential issues
Manman Ren
2013-03-16
1
-12
/
+0
*
Exploit this-return of a callsite in a this-return function.
Manman Ren
2013-03-16
1
-0
/
+12
*
Have these attriubtes set to 'true' or 'false'.
Bill Wendling
2013-03-13
1
-52
/
+16
*
Fix indirect byval passing of records in address spaced memory. Allocate memo...
Guy Benyei
2013-03-10
1
-2
/
+8
*
Change hasAggregateLLVMType, which conflates complex and
John McCall
2013-03-07
1
-69
/
+55
*
Don't emit calls to virtual [[noreturn]] functions as noreturn; overrides of a
Richard Smith
2013-03-05
1
-1
/
+4
*
Add more of the command line options as attribute flags.
Bill Wendling
2013-02-28
1
-0
/
+60
*
Use the actual ABI-determined C calling convention for runtime
John McCall
2013-02-28
1
-6
/
+79
*
Reapply r176133 with testcase fixes.
Bill Wendling
2013-02-27
1
-13
/
+0
*
Temporarily revert r176133 until testcases are modified.
Bill Wendling
2013-02-26
1
-0
/
+13
*
Don't set the -target-cpu and -target-features attributes just now.
Bill Wendling
2013-02-26
1
-13
/
+0
*
Revert "Add more attributes from the command line to functions."
Anna Zaks
2013-02-25
1
-59
/
+1
*
Add more attributes from the command line to functions.
Bill Wendling
2013-02-25
1
-1
/
+59
*
Revert r175912, "Add support for coldcc to clang" at John's request.
Peter Collingbourne
2013-02-23
1
-4
/
+0
*
Make sure we apply attributes to correct places.
Bill Wendling
2013-02-22
1
-13
/
+17
*
Add support for coldcc to clang
Peter Collingbourne
2013-02-22
1
-0
/
+4
*
Apply the 'nobuiltin' attribute to call sites when the user specifies `-fno-b...
Bill Wendling
2013-02-22
1
-3
/
+8
*
Temporarily revert r175471 for more review.
Bill Wendling
2013-02-19
1
-3
/
+0
*
Add a 'no-builtin' attribute if we do not want to simplify calls.
Bill Wendling
2013-02-18
1
-0
/
+3
*
Add the 'target-cpu' and 'target-features' attributes to functions.
Bill Wendling
2013-02-15
1
-0
/
+13
*
Revert accidental commit.
Bill Wendling
2013-02-14
1
-13
/
+0
*
Pass the target options through to code generation.
Bill Wendling
2013-02-14
1
-0
/
+13
*
Semantic analysis and CodeGen support for C11's _Noreturn. This is modeled as
Richard Smith
2013-01-30
1
-8
/
+6
*
Use the AttributeSet instead of AttributeWithIndex.
Bill Wendling
2013-01-27
1
-22
/
+13
*
Remove the last of uses that use the Attribute object as a collection of attr...
Bill Wendling
2013-01-23
1
-4
/
+6
*
Implement C++11 semantics for [[noreturn]] attribute. This required splitting
Richard Smith
2013-01-17
1
-1
/
+2
*
Rewrite #includes for llvm/Foo.h to llvm/IR/Foo.h as appropriate to
Chandler Carruth
2013-01-02
1
-3
/
+3
*
Remove the Function::getFnAttributes method in favor of using the AttributeSet
Bill Wendling
2012-12-30
1
-1
/
+2
*
Add intel_ocl_bicc calling convention as a function attribute to clang. The c...
Guy Benyei
2012-12-25
1
-0
/
+4
*
Rename llvm::Attributes to llvm::Attribute.
Bill Wendling
2012-12-20
1
-40
/
+40
*
Revert r170500. It over-zealously converted *ALL* things named Attributes, wh...
Bill Wendling
2012-12-20
1
-40
/
+40
*
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-12-19
1
-40
/
+40
*
s/AttrListPtr/AttributeSet/g to better label what this class is going to be i...
Bill Wendling
2012-12-07
1
-3
/
+3
*
Fix the required args count for variadic blocks.
John McCall
2012-12-07
1
-12
/
+47
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-3
/
+3
*
Merge function types in C.
Rafael Espindola
2012-11-29
1
-1
/
+9
*
ABI: comments from Eli on r168820.
Manman Ren
2012-11-28
1
-0
/
+2
*
ABI: modify CreateCoercedLoad and CreateCoercedStore to not use load or store of
Manman Ren
2012-11-28
1
-12
/
+12
*
objective-C arc: load of a __weak object happens via call to
Fariborz Jahanian
2012-11-27
1
-4
/
+12
*
Update method calls to the new interface re r168354.
Bill Wendling
2012-11-20
1
-1
/
+2
[prev]
[next]