aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/AggressiveAntiDepBreaker.cpp
Commit message (Expand)AuthorAgeFilesLines
* Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat...Evan Cheng2010-06-161-21/+43
* Not all entries in the range will have an SUnit. Check for that when lookingJim Grosbach2010-06-021-0/+1
* Update debug information when breaking anti-dependencies. rdar://7759363Jim Grosbach2010-06-011-0/+12
* Make BreakAntiDependencies' SUnits argument const, and make the BeginDan Gohman2010-04-191-19/+20
* Tidy whitespace.Bob Wilson2010-04-091-9/+8
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-091-4/+3
* 80 column and whitespace cleanupJim Grosbach2010-01-061-75/+84
* Change errs() to dbgs().David Greene2009-12-241-59/+59
* <rdar://problem/7453528>. Track only physical registers that are valid for th...David Goodwin2009-12-091-12/+15
* <rdar://problem/6721894>. Allow multiple registers to be renamed together (su...David Goodwin2009-11-241-6/+0
* Restructure code to allow renaming of multiple-register groups for anti-dep b...David Goodwin2009-11-201-44/+73
* Remove some old experimental code that is no longer needed. Remove additional...David Goodwin2009-11-201-62/+36
* Fix a couple of problems with maintaining liveness information for antidep br...David Goodwin2009-11-191-17/+47
* Allow target to specify regclass for which antideps will only be broken along...David Goodwin2009-11-131-25/+95
* Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin2009-11-121-2/+3
* Allow targets to specify register classes whose member registers should not b...David Goodwin2009-11-101-1/+13
* Fix bug in aggressive antidep breaking; liveness was not updated correctly fo...David Goodwin2009-11-051-10/+7
* Replace std::map.at() with std::map[].David Goodwin2009-11-051-1/+1
* Break anti-dependencies using free registers in a round-robin manner to avoid...David Goodwin2009-11-051-16/+41
* Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin2009-11-031-10/+26
* Between scheduling regions, correctly maintain anti-dep breaking state so tha...David Goodwin2009-10-291-5/+7
* Fix a couple of bugs in aggressive anti-dep breaking.David Goodwin2009-10-291-36/+61
* Allow the aggressive anti-dep breaker to process the same region multiple tim...David Goodwin2009-10-261-109/+173
* Add aggressive anti-dependence breaker. Currently it is not the default for a...David Goodwin2009-10-261-0/+687