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
...
*
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
*
Fix a thinko in post-allocation coalescer.
Evan Cheng
2007-11-15
1
-3
/
+10
*
Clean up sub-register implementation by moving subReg information back to
Evan Cheng
2007-11-14
1
-8
/
+2
*
Refactor some code.
Evan Cheng
2007-11-12
1
-292
/
+327
*
Simplify my (il)logic.
Evan Cheng
2007-11-07
1
-11
/
+2
*
When the allocator rewrite a spill register with new virtual register, it rep...
Evan Cheng
2007-11-06
1
-3
/
+12
*
Fix a bug where a def use operand isn't being detected as a sub-register use.
Evan Cheng
2007-11-06
1
-4
/
+7
*
Fix PR1187.
Evan Cheng
2007-11-05
1
-1
/
+1
*
There are times when the coalescer would not coalesce away a copy but the copy
Evan Cheng
2007-11-03
1
-0
/
+33
*
Apply Chris' suggestions.
Evan Cheng
2007-10-17
1
-1
/
+1
*
Clean up code that calculate MBB live-in's.
Evan Cheng
2007-10-17
1
-0
/
+36
*
Did mean to leave this in. INSERT_SUBREG isn't being coalesced yet.
Evan Cheng
2007-10-12
1
-2
/
+1
*
EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG like
Evan Cheng
2007-10-12
1
-173
/
+127
*
Kill cycle of an live range is always the last use index + 1.
Evan Cheng
2007-10-08
1
-1
/
+1
*
Use empty() member functions when that's what's being tested for instead
Dan Gohman
2007-10-03
1
-11
/
+9
*
Remove isReg, isImm, and isMBB, and change all their users to use
Dan Gohman
2007-09-14
1
-1
/
+1
*
Fix a memory leak.
Evan Cheng
2007-09-06
1
-1
/
+2
*
Use pool allocator for all the VNInfo's to improve memory access locality. Th...
Evan Cheng
2007-09-05
1
-21
/
+22
*
Try fold re-materialized load instructions into its uses.
Evan Cheng
2007-08-30
1
-11
/
+22
*
Change LiveRange so it keeps a pointer to the VNInfo rather than an index.
Evan Cheng
2007-08-29
1
-51
/
+56
*
Fix some kill info update bugs; add hidden option -disable-rematerialization ...
Evan Cheng
2007-08-16
1
-1
/
+10
*
Re-implement trivial rematerialization. This allows def MIs whose live interv...
Evan Cheng
2007-08-13
1
-113
/
+236
*
Code to maintain kill information during register coalescing.
Evan Cheng
2007-08-11
1
-4
/
+8
*
Adding kill info to val#.
Evan Cheng
2007-08-08
1
-3
/
+10
*
- Each val# can have multiple kills.
Evan Cheng
2007-08-08
1
-4
/
+5
*
- LiveInterval value#'s now have 3 components: def instruction #,
Evan Cheng
2007-08-07
1
-7
/
+6
*
If a livein is not used in the block. It's live through.
Evan Cheng
2007-06-27
1
-5
/
+8
*
Fix an obvious bug. Old code only worked for the entry block.
Evan Cheng
2007-06-27
1
-3
/
+4
*
Replace M_REMATERIALIZIBLE and the newly-added isOtherReMaterializableLoad
Dan Gohman
2007-06-19
1
-5
/
+4
*
Add a target hook to allow loads from constant pools to be rematerialized, an...
Dan Gohman
2007-06-14
1
-2
/
+4
*
Factor live variable analysis so it does not do register coalescing
David Greene
2007-06-08
1
-1055
/
+3
*
Only worry about intervening kill if there are more than one live ranges in t...
Evan Cheng
2007-05-14
1
-3
/
+5
[prev]
[next]