index
:
~nh/llvm
fold-subregs
images
latest
master
mimg
tablegen-name-resolution
wip
Misc LLVM things, mostly radeonsi (AMDGPU)
nh
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
PHIElimination.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2015-06-11
[PHIElim] Use ranges and const-ify, NFC.
Arnaud A. de Grandmaison
1
-12
/
+11
2015-03-23
Re-sort includes with sort-includes.py and insert raw_ostream.h where it's used.
Benjamin Kramer
1
-0
/
+1
2015-03-03
During PHI elimination, split critical edges that move copies out of loops.
Daniel Jasper
1
-7
/
+13
2014-11-19
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
1
-1
/
+1
2014-10-14
Remove unnecessary TargetMachine.h includes.
Eric Christopher
1
-1
/
+0
2014-08-24
Use range based for loops to avoid needing to re-mention SmallPtrSet size.
Craig Topper
1
-3
/
+1
2014-08-05
Have MachineFunction cache a pointer to the subtarget to make lookups
Eric Christopher
1
-2
/
+1
2014-08-04
Remove the TargetMachine forwards for TargetSubtargetInfo based
Eric Christopher
1
-1
/
+3
2014-04-30
Convert more loops to range-based equivalents
Alexey Samsonov
1
-5
/
+7
2014-04-30
Convert several loops over MachineFunction basic blocks to range-based loops
Alexey Samsonov
1
-3
/
+2
2014-04-22
[Modules] Remove potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
1
-1
/
+2
2014-04-14
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
1
-3
/
+3
2014-03-17
Switch a number of loops in lib/CodeGen over to range-based for-loops, now that
Owen Anderson
1
-4
/
+2
2014-03-13
Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changing
Owen Anderson
1
-2
/
+3
2014-03-07
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
1
-2
/
+2
2014-03-02
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
1
-6
/
+6
2014-01-22
Fix typo
Matt Arsenault
1
-1
/
+1
2013-10-10
Rename LiveRange to LiveInterval::Segment
Matthias Braun
1
-8
/
+8
2013-08-14
Auto-compute live intervals on demand.
Mark Lacey
1
-1
/
+1
2013-07-01
Fix the build after r185363. Use llvm::next instead of raw next.
Cameron Zwarich
1
-1
/
+1
2013-07-01
Fix PR16508.
Cameron Zwarich
1
-4
/
+8
2013-02-21
Don't rely on the isDead() MachineOperand flag when updating LiveIntervals.
Cameron Zwarich
1
-1
/
+3
2013-02-21
Use getInterval() instead of getOrCreateInterval().
Cameron Zwarich
1
-1
/
+1
2013-02-20
Remove verification after PHIElimination when using LiveIntervals, and move it
Cameron Zwarich
1
-3
/
+0
2013-02-20
Avoid recomputing an inserted instruction's SlotIndex.
Cameron Zwarich
1
-2
/
+1
2013-02-20
Add preservation of SlotIndexes to PHIElimination.
Cameron Zwarich
1
-0
/
+1
2013-02-12
Don't consider definitions by other PHIs live-in when trimming a PHI source's
Cameron Zwarich
1
-1
/
+5
2013-02-12
Fix indentation.
Cameron Zwarich
1
-2
/
+2
2013-02-12
Add a hidden option to PHIElimination to split all critical edges. This is
Cameron Zwarich
1
-4
/
+9
2013-02-11
Add support for updating LiveIntervals to MachineBasicBlock::SplitCriticalEdg...
Cameron Zwarich
1
-1
/
+1
2013-02-10
Abstract the liveness checking in PHIElimination::SplitPHIEdges() to support
Cameron Zwarich
1
-2
/
+37
2013-02-10
Add support for updating LiveIntervals to PHIElimination. If LiveIntervals are
Cameron Zwarich
1
-29
/
+142
2013-02-10
Remove ancient references to 'atomic' phis in PHIElimination that don't really
Cameron Zwarich
1
-12
/
+8
2013-02-10
Make LiveVariables an instance variable of PHIElimination.
Cameron Zwarich
1
-11
/
+9
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
1
-1
/
+1
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
1
-6
/
+6
2012-07-20
Split loop exiting edges more aggressively.
Jakob Stoklund Olesen
1
-13
/
+56
2012-07-04
Allow multiple terminators to read virtual registers.
Jakob Stoklund Olesen
1
-33
/
+29
2012-06-25
Teach PHIElimination to handle <undef> operands.
Jakob Stoklund Olesen
1
-19
/
+34
2012-02-10
RegAlloc superpass: includes phi elimination, coalescing, and scheduling.
Andrew Trick
1
-3
/
+7
2012-01-20
Delete an unused member variable.
Jakob Stoklund Olesen
1
-1
/
+0
2011-12-06
First chunk of MachineInstr bundle support.
Evan Cheng
1
-1
/
+1
2011-07-29
Add an isSSA() flag to MachineRegisterInfo.
Jakob Stoklund Olesen
1
-0
/
+3
2011-04-23
Remove unused STL header includes.
Jay Foad
1
-1
/
+0
2011-03-10
Add an option to disable critical edge splitting in PHIElimination.
Cameron Zwarich
1
-4
/
+12
2011-02-17
Adjust indenting of arguments.
Cameron Zwarich
1
-3
/
+3
2011-02-17
Return Changed from SplitPHIEdges rather than always returning true.
Cameron Zwarich
1
-1
/
+1
2011-02-14
Add a statistic to PHIElimination tracking the number of critical edges split.
Cameron Zwarich
1
-2
/
+7
2011-01-14
Try for the third time to teach getFirstTerminator() about debug values.
Jakob Stoklund Olesen
1
-2
/
+8
2011-01-14
Revert r123419. It still breaks llvm-gcc-i386-linux-selfhost.
Jakob Stoklund Olesen
1
-8
/
+2
[next]