index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
PreAllocSplitting.cpp
Age
Commit message (
Expand
)
Author
2008-12-28
Fix up kill/dead marking in the new live interval reconstruction code.
Owen Anderson
2008-12-28
Add prototype code for recomputing a live interval's ranges and valnos throug...
Owen Anderson
2008-12-18
Re-apply r61158 in a form that no longer breaks tests.
Owen Anderson
2008-12-17
Revert r61158 for now, as it caused some test failures.
Owen Anderson
2008-12-17
Fix miscompilations caused by renumbering, and enable it as part of prealloc ...
Owen Anderson
2008-12-16
Add code to renumber split intervals into new vregs. This is disabled for no...
Owen Anderson
2008-12-07
Switch to top-down mode and fix a crasher this exposed caused by an error in the
Owen Anderson
2008-12-04
Factor out some common code.
Owen Anderson
2008-12-02
Add support for folding spills into preceding defs when doing pre-alloc split...
Owen Anderson
2008-11-19
Add support for rematerialization in pre-alloc-splitting.
Owen Anderson
2008-11-18
Fix a bug introduced by my previous patch. With this change, SPEC is now cle...
Owen Anderson
2008-11-13
Don't allow the restore point to be placed after terminators. With this change,
Owen Anderson
2008-11-11
Don't walk into predecessors in which the vreg is not live when doing shrinkw...
Owen Anderson
2008-11-05
Use the new predicate to control when we do prealloc splitting. Fix a small ...
Owen Anderson
2008-11-04
First pass at checking for the creation of a new join point when doing pre-al...
Owen Anderson
2008-11-03
Revert my last patch until I consult with Evan about it.
Owen Anderson
2008-11-02
Don't do pre-splitting if doing so would create a value join that did not
Owen Anderson
2008-10-31
Add a fixme.
Evan Cheng
2008-10-29
- More pre-split fixes: spill slot live interval computation bug; restore poi...
Evan Cheng
2008-10-29
- Rewrite code that update register live interval that's split.
Evan Cheng
2008-10-28
If def is in the same mbb as the barrier, spilt the value after the last use ...
Evan Cheng
2008-10-28
Add command line option to limit the number splits to help debugging.
Evan Cheng
2008-10-28
Avoid putting a split past the end of the live range; always shrink wrap live...
Evan Cheng
2008-10-27
Silence a bogus compile time warning.
Evan Cheng
2008-10-27
Remove val# defined by a remat'ed def that is now dead.
Evan Cheng
2008-10-27
For now, don't split live intervals around x87 stack register barriers. FpGET...
Evan Cheng
2008-10-26
Do not shrink wrap live interval in a mbb if it's livein any of its successor...
Evan Cheng
2008-10-25
Handle cases where there aren't uses in the barrier mbb.
Evan Cheng
2008-10-25
If val# def is ~0U, meaning it's defined by a PHI, and it's previously split,...
Evan Cheng
2008-10-24
Fix a pasto.
Evan Cheng
2008-10-24
Fix a end() dereference; remove an abort() that wasn't meant to be left in.
Evan Cheng
2008-10-24
Avoid splitting an interval multiple times; avoid splitting re-materializable...
Evan Cheng
2008-10-23
Committing a good chunk of the pre-register allocation live interval splittin...
Evan Cheng
2008-10-20
Add skeleton for the pre-register allocation live interval splitting pass.
Evan Cheng