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
/
CodeGen
/
LiveIntervalAnalysis.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
All remat'ed loads cannot be folded into two-address code. Not just argument ...
Evan Cheng
2008-02-25
1
-4
/
+4
*
Correctly determine whether a argument load can be folded into its uses.
Evan Cheng
2008-02-25
1
-45
/
+52
*
Rematerialization logic was overly conservative when it comes to loads from f...
Evan Cheng
2008-02-23
1
-20
/
+6
*
If remating a machine instr with virtual register operand, make sure the vr i...
Evan Cheng
2008-02-23
1
-2
/
+1
*
Recognize loads of arguments as re-materializable first. Therefore if isReall...
Evan Cheng
2008-02-23
1
-24
/
+26
*
Fix spill weight updating bug.
Evan Cheng
2008-02-23
1
-15
/
+27
*
Enable re-materialization of instructions which have virtual register operand...
Evan Cheng
2008-02-22
1
-28
/
+155
*
Clean up some spilling code using MachineRegisterInfo.
Evan Cheng
2008-02-21
1
-22
/
+51
*
New helper function getMBBFromIndex() that given an index in any instruction ...
Roman Levenstein
2008-02-18
1
-16
/
+0
*
- Removing the infamous r2rMap_ and rep() method. Now the coalescer will update
Evan Cheng
2008-02-15
1
-28
/
+36
*
Fix a potential serious problem where kills belonging to the val# defined by ...
Evan Cheng
2008-02-13
1
-3
/
+2
*
Rename MRegisterInfo to TargetRegisterInfo.
Dan Gohman
2008-02-10
1
-22
/
+22
*
Forgot these files.
Evan Cheng
2008-02-08
1
-2
/
+2
*
Move some functionality for adding flags to MachineInstr's into methods on Ma...
Owen Anderson
2008-01-24
1
-1
/
+1
*
Only remat loads from immutable stack slots.
Evan Cheng
2008-01-10
1
-2
/
+2
*
Simplify some code.
Evan Cheng
2008-01-10
1
-8
/
+2
*
Don't use LiveVariables::VarInfo::DefInst.
Owen Anderson
2008-01-10
1
-1
/
+8
*
rename TargetInstrDescriptor -> TargetInstrDesc.
Chris Lattner
2008-01-07
1
-10
/
+10
*
simplify some code using new predicates
Chris Lattner
2008-01-07
1
-3
/
+2
*
Rename MachineInstr::getInstrDescriptor -> getDesc(), which reflects
Chris Lattner
2008-01-07
1
-7
/
+7
*
Update CodeGen for MRegisterInfo --> TargetInstrInfo changes.
Owen Anderson
2008-01-07
1
-3
/
+3
*
rename isLoad -> isSimpleLoad due to evan's desire to have such a predicate.
Chris Lattner
2008-01-06
1
-5
/
+4
*
Don't recalculate the loop info and loop dominators analyses if they're
Bill Wendling
2008-01-04
1
-0
/
+2
*
Rename SSARegMap -> MachineRegisterInfo in keeping with the idea
Chris Lattner
2007-12-31
1
-10
/
+10
*
More cleanups for MachineOperand:
Chris Lattner
2007-12-30
1
-1
/
+1
*
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-12-29
1
-2
/
+2
*
Implicit def instructions, e.g. X86::IMPLICIT_DEF_GR32, are always re-materia...
Evan Cheng
2007-12-12
1
-3
/
+15
*
Switch over to MachineLoopInfo.
Evan Cheng
2007-12-11
1
-5
/
+5
*
Reverting 44702. It wasn't correct to rename them.
Bill Wendling
2007-12-08
1
-1
/
+1
*
Renaming:
Bill Wendling
2007-12-08
1
-1
/
+1
*
Turning simple splitting on. Start testing new coalescer heuristics as new ll...
Evan Cheng
2007-12-06
1
-1
/
+1
*
Fix for PR1831: if all defs of an interval are re-materializable, then it's a...
Evan Cheng
2007-12-06
1
-4
/
+34
*
MachineInstr can change. Store indexes instead.
Evan Cheng
2007-12-05
1
-2
/
+12
*
If a split live interval is spilled again, remove the kill marker on its last...
Evan Cheng
2007-12-05
1
-1
/
+4
*
Clobber more bugs.
Evan Cheng
2007-12-05
1
-2
/
+3
*
Fix kill info for split intervals.
Evan Cheng
2007-12-05
1
-10
/
+20
*
- Mark last use of a split interval as kill instead of letting spiller track it.
Evan Cheng
2007-12-05
1
-26
/
+73
*
Discard split intervals made empty due to folding.
Evan Cheng
2007-12-04
1
-5
/
+16
*
Typo
Evan Cheng
2007-12-03
1
-1
/
+1
*
Update kill info for uses of split intervals.
Evan Cheng
2007-12-03
1
-3
/
+2
*
Remove redundant foldMemoryOperand variants and other code clean up.
Evan Cheng
2007-12-02
1
-70
/
+72
*
Fix a bug where splitting cause some unnecessary spilling.
Evan Cheng
2007-12-01
1
-2
/
+12
*
Allow some reloads to be folded in multi-use cases. Specifically testl r, r -...
Evan Cheng
2007-12-01
1
-22
/
+32
*
Do not fold reload into an instruction with multiple uses. It issues one extr...
Evan Cheng
2007-11-30
1
-75
/
+86
*
Do not lose rematerialization info when spilling already split live intervals.
Evan Cheng
2007-11-29
1
-14
/
+9
*
Fix a major performance issue with splitting. If there is a def (not def/use)
Evan Cheng
2007-11-29
1
-60
/
+133
*
Replace the odd kill# hack with something less fragile.
Evan Cheng
2007-11-29
1
-15
/
+10
*
Fixed various live interval splitting bugs / compile time issues.
Evan Cheng
2007-11-29
1
-110
/
+200
*
Recover compile time regression.
Evan Cheng
2007-11-28
1
-15
/
+25
*
Live interval splitting:
Evan Cheng
2007-11-17
1
-61
/
+294
[next]