summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AggressiveAntiDepBreaker.cpp
Commit message (Expand)AuthorAge
* Rename TargetSubtarget to TargetSubtargetInfo for consistency.Evan Cheng2011-07-01
* More refactoring. Move getRegClass from TargetOperandInfo to TargetInstrInfo.Evan Cheng2011-06-27
* Teach antidependency breakers to use RegisterClassInfo.Jakob Stoklund Olesen2011-06-16
* Update DBG_VALUEs while breaking anti dependencies.Devang Patel2011-06-02
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Simplify AggressiveAntiDepBreaker's use of register aliases.Jakob Stoklund Olesen2010-12-14
* Anti-dependency breaking needs to be careful not to use reserved regsJim Grosbach2010-09-02
* Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister. This timeBill Wendling2010-07-15
* Reserve a goodly amount of room for the vectors.Bill Wendling2010-07-15
* Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.Bill Wendling2010-07-15
* revert bill's patches in an attempt to fix the buildbot.Chris Lattner2010-07-15
* Fix headers.Bill Wendling2010-07-15
* Use std::vector instead of a hard-coded array. The length of that array couldBill Wendling2010-07-15
* Convert the last use of getPhysicalRegisterRegClass and remove it.Rafael Espindola2010-07-12
* Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...Evan Cheng2010-06-16
* Not all entries in the range will have an SUnit. Check for that when lookingJim Grosbach2010-06-02
* Update debug information when breaking anti-dependencies. rdar://7759363Jim Grosbach2010-06-01
* Make BreakAntiDependencies' SUnits argument const, and make the BeginDan Gohman2010-04-19
* Tidy whitespace.Bob Wilson2010-04-09
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-09
* 80 column and whitespace cleanupJim Grosbach2010-01-06
* Change errs() to dbgs().David Greene2009-12-24
* <rdar://problem/7453528>. Track only physical registers that are valid for th...David Goodwin2009-12-09
* <rdar://problem/6721894>. Allow multiple registers to be renamed together (su...David Goodwin2009-11-24
* Restructure code to allow renaming of multiple-register groups for anti-dep b...David Goodwin2009-11-20
* Remove some old experimental code that is no longer needed. Remove additional...David Goodwin2009-11-20
* Fix a couple of problems with maintaining liveness information for antidep br...David Goodwin2009-11-19
* Allow target to specify regclass for which antideps will only be broken along...David Goodwin2009-11-13
* Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin2009-11-12
* Allow targets to specify register classes whose member registers should not b...David Goodwin2009-11-10
* Fix bug in aggressive antidep breaking; liveness was not updated correctly fo...David Goodwin2009-11-05
* Replace std::map.at() with std::map[].David Goodwin2009-11-05
* Break anti-dependencies using free registers in a round-robin manner to avoid...David Goodwin2009-11-05
* Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin2009-11-03
* Between scheduling regions, correctly maintain anti-dep breaking state so tha...David Goodwin2009-10-29
* Fix a couple of bugs in aggressive anti-dep breaking.David Goodwin2009-10-29
* Allow the aggressive anti-dep breaker to process the same region multiple tim...David Goodwin2009-10-26
* Add aggressive anti-dependence breaker. Currently it is not the default for a...David Goodwin2009-10-26