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
*
Prefer SmallVector::append/insert over push_back loops. Clang edition.
Benjamin Kramer
2015-02-17
1
-4
/
+2
*
SEH: Use the SEHTryEpilogueStack instead of a separate bool
Reid Kleckner
2015-02-12
1
-1
/
+1
*
Add the 'noinline' attribute to call sites within __try bodies
Reid Kleckner
2015-02-11
1
-0
/
+6
*
Emit landing pads for SEH even if nounwind is present
Reid Kleckner
2015-02-11
1
-1
/
+2
*
DebugInfo: Refactor default arg handling into a common place (instead of hand...
David Blaikie
2015-02-09
1
-0
/
+14
*
CodeGen: Move DebugLocs.
Benjamin Kramer
2015-02-07
1
-1
/
+1
*
Sema: Add support for __declspec(restrict)
David Majnemer
2015-02-04
1
-1
/
+1
*
Remove support for pnaclcall attribute
Derek Schuff
2015-01-28
1
-3
/
+0
*
DebugInfo: Remove forced column-info workaround for inlined calls
David Blaikie
2015-01-21
1
-2
/
+1
*
Re-apply "r226548 - Introduce SPIR calling conventions" reverted in r226558.
Alexander Kornienko
2015-01-20
1
-0
/
+2
*
Reverting r226548 as one of the tests fails in some configurations.
Alexander Kornienko
2015-01-20
1
-2
/
+0
*
Introduce SPIR calling conventions.
Sameer Sahasrabuddhe
2015-01-20
1
-0
/
+2
*
Recommit r225083 (reverted in r225361) now that calls to aggregate initialize...
David Blaikie
2015-01-18
1
-8
/
+0
*
Revert r225085, it caused PR22096.
Nico Weber
2015-01-07
1
-0
/
+8
*
DebugInfo: Remove some now-unnecessary location handling around function argu...
David Blaikie
2015-01-02
1
-8
/
+0
*
Implement the __builtin_call_with_static_chain GNU extension.
Peter Collingbourne
2014-12-12
1
-35
/
+62
*
Instead of having -Os/-Oz add OptimizeForSize/MinSize first, and later
Paul Robinson
2014-12-11
1
-4
/
+11
*
CodeGen: further simplify assertion
Saleem Abdulrasool
2014-11-25
1
-4
/
+2
*
CodeGen: use a range-based for loop
Saleem Abdulrasool
2014-11-24
1
-3
/
+2
*
Update for LLVM API change to make Small(Ptr)Set::insert return pair<iterator...
David Blaikie
2014-11-19
1
-2
/
+4
*
Bundle conditions checked by UBSan with sanitizer kinds they implement.
Alexey Samsonov
2014-11-11
1
-4
/
+4
*
Propagate SanitizerKind into CodeGenFunction::EmitCheck() call.
Alexey Samsonov
2014-11-10
1
-2
/
+3
*
Introduce a SanitizerKind enum to LangOptions.
Alexey Samsonov
2014-11-07
1
-2
/
+2
*
Implement IRGen for the x86 vectorcall convention
Reid Kleckner
2014-10-31
1
-1
/
+7
*
MS ABI: Properly call global delete when invoking virtual destructors
David Majnemer
2014-10-31
1
-4
/
+10
*
Fix ARM HVA classification of classes with non-virtual bases
Reid Kleckner
2014-10-31
1
-6
/
+45
*
Get rid of SanitizerOptions::Disabled global. NFC.
Alexey Samsonov
2014-10-30
1
-2
/
+2
*
Add frontend support for __vectorcall
Reid Kleckner
2014-10-24
1
-1
/
+7
*
Promote null pointer constants used as arguments to variadic functions
Reid Kleckner
2014-10-10
1
-0
/
+23
*
Initial support for the align_value attribute
Hal Finkel
2014-10-02
1
-0
/
+19
*
Use ClangToLLVMArgsMapping in CodeGenTypes::GetFunctionType(). NFC.
Alexey Samsonov
2014-09-29
1
-178
/
+196
*
Introduce CGFunctionInfo::getNumRequiredArgs(). NFC.
Alexey Samsonov
2014-09-29
1
-6
/
+2
*
Speedup ClangToLLVMArgMapping construction. NFC.
Alexey Samsonov
2014-09-29
1
-6
/
+18
*
Refactor ABIArgInfo::Expand implementation (NFC).
Alexey Samsonov
2014-09-29
1
-120
/
+155
*
Support the assume_aligned function attribute
Hal Finkel
2014-09-26
1
-54
/
+71
*
Report source location of returns_nonnull attribute in UBSan reports.
Alexey Samsonov
2014-09-08
1
-9
/
+11
*
Implement nonnull-attribute sanitizer
Alexey Samsonov
2014-09-08
1
-11
/
+46
*
Handle constructors and destructors a bit more uniformly in CodeGen.
Rafael Espindola
2014-09-08
1
-38
/
+20
*
Don't emit prologues or epilogues for naked functions (PR18791, PR20028)
Hans Wennborg
2014-09-04
1
-0
/
+10
*
Make all virtual member pointers use variadic musttail calls
Reid Kleckner
2014-08-29
1
-0
/
+14
*
Use store size instead of alloc size when coercing.
James Molloy
2014-08-29
1
-3
/
+5
*
Properly handle multiple nonnull attributes in CodeGen
Alexey Samsonov
2014-08-28
1
-15
/
+25
*
Fix regression in r216520: don't apply nonnull to non-pointer function
Richard Smith
2014-08-27
1
-2
/
+11
*
Move some ARM-specific code from CGCall.cpp to TargetInfo.cpp
Oliver Stannard
2014-08-27
1
-36
/
+11
*
Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just...
Craig Topper
2014-08-27
1
-6
/
+5
*
CGCall: Factor out the logic mapping call arguments to LLVM IR arguments.
Alexey Samsonov
2014-08-22
1
-223
/
+314
*
Simplify some CodeGenTypes::arrangeXXX functions. No functionality change
Alexey Samsonov
2014-08-13
1
-28
/
+10
*
Simplify a few loops over CallArgList/FunctionArgList. NFC
Alexey Samsonov
2014-08-13
1
-14
/
+10
*
[UBSan] Add returns-nonnull sanitizer.
Alexey Samsonov
2014-08-13
1
-1
/
+18
*
MS ABI: Use musttail for vtable thunks that pass arguments by value
Reid Kleckner
2014-07-26
1
-13
/
+2
[next]