aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/PostRASchedulerList.cpp
Commit message (Expand)AuthorAgeFilesLines
* Various bits of framework needed for precise machine-level selectionAndrew Trick2010-12-241-37/+37
* Teach if-converter to be more careful with predicating instructions that wouldEvan Cheng2010-09-101-1/+1
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-061-1/+1
* Revert r110396 to fix buildbots.Owen Anderson2010-08-061-1/+1
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-051-1/+1
* Use std::vector instead of TargetRegisterInfo::FirstVirtualRegister.Bill Wendling2010-07-151-2/+3
* Allow ARM if-converter to be run after post allocation scheduling.Evan Cheng2010-06-181-24/+4
* - Do away with SimpleHazardRecognizer.h. It's not used and offers little value.Evan Cheng2010-06-141-25/+0
* Allow target to provide its own hazard recognizer to post-ra scheduler.Evan Cheng2010-06-121-6/+16
* - Change MachineInstr::findRegisterDefOperandIdx so it can also look for defsEvan Cheng2010-05-211-2/+2
* Remove dbg_value workaround and associated command line optionJim Grosbach2010-05-201-20/+0
* Enable preserving debug information through post-RA schedulingJim Grosbach2010-05-191-1/+1
* 80 column and trailing whitespace cleanupJim Grosbach2010-05-141-24/+25
* add cmd line option to leave dbgvalues in during post-RA sceduling. UsefulJim Grosbach2010-05-141-5/+14
* Get rid of the EdgeMapping map. Instead, just check for BasicBlockDan Gohman2010-05-011-2/+2
* As a temporary workaround for post-RA not handling DebugValue instructions,Bob Wilson2010-04-171-0/+11
* Remove a #include.Dan Gohman2010-04-121-1/+0
* Fix some more places where dbg_value affected codegen.Dale Johannesen2010-03-051-0/+2
* Change errs() to dbgs().David Greene2010-01-051-13/+13
* <rdar://problem/7453528>. Track only physical registers that are valid for th...David Goodwin2009-12-091-1/+2
* Don't hang on to pointers or references after vector::push_back.Jakob Stoklund Olesen2009-12-031-6/+3
* Remove some old experimental code that is no longer needed. Remove additional...David Goodwin2009-11-201-112/+33
* Allow target to specify regclass for which antideps will only be broken along...David Goodwin2009-11-131-3/+3
* Rename registers to break output dependencies in addition to anti-dependencies.David Goodwin2009-11-121-3/+7
* Fixed to address code review. No functional changes.David Goodwin2009-11-101-1/+1
* Allow targets to specify register classes whose member registers should not b...David Goodwin2009-11-101-2/+3
* Break anti-dependencies using free registers in a round-robin manner to avoid...David Goodwin2009-11-051-2/+4
* Do a scheduling pass ignoring anti-dependencies to identify candidate registe...David Goodwin2009-11-031-37/+112
* Make -print-machineinstrs more readable.Dan Gohman2009-10-311-2/+2
* Make AntiDepReg.h internal.David Goodwin2009-10-281-1/+1
* Allow the aggressive anti-dep breaker to process the same region multiple tim...David Goodwin2009-10-261-6/+13
* Define virtual destructor in *.cpp file.David Goodwin2009-10-261-0/+3
* Add aggressive anti-dependence breaker. Currently it is not the default for a...David Goodwin2009-10-261-3/+5
* Break anti-dependence breaking out into its own class.David Goodwin2009-10-261-542/+43
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-251-1/+0
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-251-2/+2
* Allow the target to select the level of anti-dependence breaking that should ...David Goodwin2009-10-221-5/+16
* Revert r84658 and r84691. They were causing llvm-gcc bootstrap to fail.Dan Gohman2009-10-211-489/+319
* Respect src register allocation requirements when breaking anti-dependencies....David Goodwin2009-10-201-17/+20
* Checkpoint more aggressive anti-dependency breaking for post-ra scheduler.David Goodwin2009-10-201-310/+477
* Change createPostRAScheduler so it can be turned off at llc -O1.Evan Cheng2009-10-161-4/+6
* If post-alloc scheduler is not enabled, it should return false, not true.Evan Cheng2009-10-161-3/+3
* Add debugging output.David Goodwin2009-10-131-2/+12
* Fix a missing initialization of PostRAScheduler's AA member.Dan Gohman2009-10-101-0/+2
* Factor out LiveIntervalAnalysis' code to determine whether an instructionDan Gohman2009-10-091-5/+13
* Fix a use-after-free in post-ra-scheduling.Benjamin Kramer2009-10-021-1/+3
* All callee-saved registers are live-out of a return block.David Goodwin2009-10-011-18/+21
* Remove neonfp attribute and instead set default based on CPU string. Add -arm...David Goodwin2009-10-011-1/+1
* Restore the -post-RA-scheduler flag as an override for the target specificati...David Goodwin2009-10-011-5/+17
* Use MachineFrameInfo.getPristineRegs() to determine which callee-saved regist...David Goodwin2009-10-011-47/+30