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
/
llvm
/
lib
/
Transforms
/
Coroutines
/
CoroFrame.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Alignment][NFC] Remove AllocaInst::setAlignment(unsigned)
Guillaume Chatelet
2019-09-30
1
-1
/
+1
*
[coroutine] Fixes "cannot move instruction since its users are not dominated ...
Gor Nishanov
2019-08-15
1
-58
/
+105
*
Support swifterror in coroutine lowering.
John McCall
2019-08-14
1
-0
/
+166
*
Fix a use-after-free in the coro.alloca treatment.
John McCall
2019-08-14
1
-4
/
+10
*
Add intrinsics for doing frame-bound dynamic allocations within a coroutine.
John McCall
2019-08-14
1
-0
/
+178
*
Extend coroutines to support a "returned continuation" lowering.
John McCall
2019-08-14
1
-38
/
+105
*
Fix parameter name comments using clang-tidy. NFC.
Rui Ueyama
2019-07-16
1
-1
/
+1
*
Simplify std::lower_bound with llvm::{bsearch,lower_bound}. NFC
Fangrui Song
2019-06-21
1
-1
/
+1
*
[coroutines] Fix spills of static array allocas
Gor Nishanov
2019-05-13
1
-6
/
+39
*
[opaque pointer types] Pass value type to LoadInst creation.
James Y Knight
2019-02-01
1
-3
/
+3
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[TI removal] Make `getTerminator()` return a generic `Instruction`.
Chandler Carruth
2018-10-15
1
-1
/
+1
*
llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...)
Fangrui Song
2018-09-27
1
-1
/
+1
*
[IR] Replace `isa<TerminatorInst>` with `isTerminator()`.
Chandler Carruth
2018-08-26
1
-1
/
+2
*
Move Analysis/Utils/Local.h back to Transforms
David Blaikie
2018-06-04
1
-1
/
+1
*
Rename DEBUG macro to LLVM_DEBUG.
Nicola Zaghen
2018-05-14
1
-15
/
+15
*
IWYU for llvm-config.h in llvm, additions.
Nico Weber
2018-04-30
1
-0
/
+1
*
[Transforms] Change std::sort to llvm::sort in response to r327219
Mandeep Singh Grang
2018-04-13
1
-1
/
+1
*
Make helpers static. NFC.
Benjamin Kramer
2018-04-04
1
-0
/
+2
*
[coroutines] Respect alloca alignment requirements when building coroutine frame
Gor Nishanov
2018-04-03
1
-8
/
+87
*
Fix a couple of layering violations in Transforms
David Blaikie
2018-03-21
1
-1
/
+1
*
[Coroutines] Move debug statement before assert
Brian Gesiak
2018-02-19
1
-1
/
+2
*
[coro] Make Spill a proper struct instead of deriving from pair.
Benjamin Kramer
2017-10-31
1
-12
/
+10
*
Reverting r315590; it did not include changes for llvm-tblgen, which is causi...
Aaron Ballman
2017-10-15
1
-1
/
+1
*
[dump] Remove NDEBUG from test to enable dump methods [NFC]
Don Hinton
2017-10-12
1
-1
/
+1
*
[coroutines] CoroBegin from inner coroutines should be considered for spills
Gor Nishanov
2017-08-23
1
-3
/
+3
*
[coroutines] CoroFrame.cpp conform to coding convention (s/repeat/Repeat) (NFC)
Gor Nishanov
2017-05-25
1
-3
/
+2
*
[coroutines] Allow rematerialization upto 4 times. Remove incorrect assert
Gor Nishanov
2017-05-24
1
-15
/
+19
*
[coroutines] Handle spills before catchswitch
Gor Nishanov
2017-05-17
1
-2
/
+26
*
[coroutines] Handle unwind edge splitting
Gor Nishanov
2017-05-16
1
-4
/
+96
*
[coroutines] Make CoroSplit pass deterministic
Gor Nishanov
2017-04-08
1
-2
/
+0
*
[coroutines] Insert spills of PHI instructions correctly
Gor Nishanov
2017-04-07
1
-0
/
+4
*
Remove getArgumentList() in favor of arg_begin(), args(), etc
Reid Kleckner
2017-03-16
1
-1
/
+1
*
Cleanup dump() functions.
Matthias Braun
2017-01-28
1
-0
/
+2
*
[coroutines] Spill the result of the invoke instruction correctly
Gor Nishanov
2017-01-25
1
-9
/
+21
*
Fix spelling mistakes in Transforms comments. NFC.
Simon Pilgrim
2016-11-20
1
-2
/
+2
*
[Coroutines] Part15c: Fix coro-split to correctly handle definitions between ...
Gor Nishanov
2016-09-30
1
-22
/
+26
*
[Coroutines] Part15b: Fix dbg information handling in coro-split.
Gor Nishanov
2016-09-30
1
-0
/
+5
*
[Coroutines] Part13: Handle single edge PHINodes across suspends
Gor Nishanov
2016-09-09
1
-0
/
+11
*
[Coroutines] Part12: Handle alloca address-taken
Gor Nishanov
2016-09-05
1
-1
/
+46
*
[Coroutines] Part 10: Add coroutine promise support.
Gor Nishanov
2016-08-31
1
-4
/
+25
*
[Coroutines] Part 9: Add cleanup subfunction.
Gor Nishanov
2016-08-29
1
-13
/
+12
*
[Coroutines] Fix unused var warning in release build
Gor Nishanov
2016-08-24
1
-2
/
+2
*
[Coroutines] Part 8: Coroutine Frame Building algorithm
Gor Nishanov
2016-08-24
1
-7
/
+545
*
[Coroutines] Part 7: Split coroutine into subfunctions
Gor Nishanov
2016-08-16
1
-0
/
+104