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
/
CriticalAntiDepBreaker.cpp
Age
Commit message (
Expand
)
Author
2013-02-05
Remove special-casing of return blocks for liveness.
Jakob Stoklund Olesen
2013-01-28
This patch addresses bug 15031.
Bill Schmidt
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-11-29
Use MCPhysReg for RegisterClassInfo allocation orders.
Jakob Stoklund Olesen
2012-10-15
Remove RegisterClassInfo::isReserved() and isAllocatable().
Jakob Stoklund Olesen
2012-06-02
Fix typos found by http://github.com/lyda/misspell-check
Benjamin Kramer
2012-06-01
Switch all register list clients to the new MC*Iterator interface.
Jakob Stoklund Olesen
2012-06-01
Switch some getAliasSet clients to MCRegAliasIterator.
Jakob Stoklund Olesen
2012-05-07
Add an MF argument to TRI::getPointerRegClass() and TII::getRegClass().
Jakob Stoklund Olesen
2012-03-17
CriticalAntiDepBreaker: Replace a SmallSet of regs with a much denser BitVector.
Benjamin Kramer
2012-03-16
CriticalAntiDepBreaker: BasicBlock::size is an expensive operation, reuse the...
Benjamin Kramer
2012-03-05
Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...
Craig Topper
2012-03-04
Use uint16_t to store register overlaps to reduce static data.
Craig Topper
2012-03-04
Use uint16_t to store registers in callee saved register tables to reduce siz...
Craig Topper
2012-02-23
Handle regmasks in CriticalAntiDepBreaker.
Jakob Stoklund Olesen
2012-02-22
Initialize SUnits before DAG building.
Andrew Trick
2012-01-07
Added a late machine instruction copy propagation pass. This catches
Evan Cheng
2011-12-07
Add bundle aware API for querying instruction properties and switch the code
Evan Cheng
2011-06-27
More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.
Evan Cheng
2011-06-16
Teach antidependency breakers to use RegisterClassInfo.
Jakob Stoklund Olesen
2011-06-02
Update DBG_VALUEs while breaking anti dependencies.
Devang Patel
2011-02-08
Fix PostRA antidependence breaker.
Andrew Trick
2011-02-05
Fix an anti-dep breaker corner case.
Andrew Trick
2010-11-02
Fixes <rdar://problem/8612856>: During postRAsched, the antidependence
Andrew Trick
2010-10-02
Fix a miscompile in 186.crafty for Thumb2 that was exposed by Evan's
Bob Wilson
2010-09-10
Fix a comment typo.
Bob Wilson
2010-09-02
Anti-dependency breaking needs to be careful not to use reserved regs
Jim Grosbach
2010-07-26
Fix a use-after-free.
Dan Gohman
2010-07-15
Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This time
Bill Wendling
2010-07-15
revert bill's patches in an attempt to fix the buildbot.
Chris Lattner
2010-07-15
Use std::vector instead of a hard-coded array. The length of that array could
Bill Wendling
2010-06-16
Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...
Evan Cheng
2010-06-02
Not all entries in the range will have an SUnit. Check for that when looking
Jim Grosbach
2010-06-01
Update debug information when breaking anti-dependencies. rdar://7759363
Jim Grosbach
2010-05-14
Remove trailing whitespace
Jim Grosbach
2010-04-19
Make BreakAntiDependencies' SUnits argument const, and make the Begin
Dan Gohman
2010-03-05
Fix some more places where dbg_value affected codegen.
Dale Johannesen
2010-01-06
Anti-dependency breaking needs to be careful regarding instructions with
Jim Grosbach
2010-01-06
80 column and whitespace cleanup
Jim Grosbach
2010-01-04
Change errs() to dbgs().
David Greene
2009-12-09
<rdar://problem/7453528>. Track only physical registers that are valid for th...
David Goodwin
2009-11-20
Remove some old experimental code that is no longer needed. Remove additional...
David Goodwin
2009-11-03
Do a scheduling pass ignoring anti-dependencies to identify candidate registe...
David Goodwin
2009-10-26
Break anti-dependence breaking out into its own class.
David Goodwin