summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
Commit message (Expand)AuthorAge
* - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo andEvan Cheng2011-06-28
* Distinguish early clobber output operands from clobbered registers.Jakob Stoklund Olesen2011-06-27
* Re-commit 127368 and 127371. They are exonerated.Evan Cheng2011-03-10
* Revert 127368 and 127371 for now.Evan Cheng2011-03-09
* Change the definition of TargetRegisterInfo::getCrossCopyRegClass to be moreEvan Cheng2011-03-09
* flags -> glue for selectiondagChris Lattner2010-12-23
* rename MVT::Flag to MVT::Glue. "Flag" is a terrible name forChris Lattner2010-12-21
* Make fast scheduler handle asm clobbers correctly.Dale Johannesen2010-08-17
* Add a VT argument to getMinimalPhysRegClass and replace the copy related usesRafael Espindola2010-06-29
* Trim unneeded includes.Evan Cheng2010-01-21
* Change errs() to dbgs().David Greene2010-01-05
* Remove includes of Support/Compiler.h that are no longer needed after theNick Lewycky2009-10-25
* Remove VISIBILITY_HIDDEN from class/struct found inside anonymous namespaces.Nick Lewycky2009-10-25
* The ScheduleDAG framework now requires an AliasAnalysis argument, thoughDan Gohman2009-10-09
* Fix integer overflow in instruction scheduling. This can happen if we haveReid Kleckner2009-09-30
* Use VerifySchedule instead of doing the work manually.Dan Gohman2009-09-28
* eliminate uses of cerr()Chris Lattner2009-08-23
* remove a few DOUTs here and there.Chris Lattner2009-08-23
* Split EVT into MVT and EVT, the former representing _just_ a primitive type, ...Owen Anderson2009-08-11
* Rename MVT to EVT, in preparation for splitting SimpleValueType out into its ...Owen Anderson2009-08-10
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11
* Convert more assert(0)+abort() -> LLVM_UNREACHABLE,Torok Edwin2009-07-11
* Instead of passing in an unsigned value for the optimization level, use an enum,Bill Wendling2009-04-29
* Second attempt:Bill Wendling2009-04-29
* r70270 isn't ready yet. Back this out. Sorry for the noise.Bill Wendling2009-04-28
* Massive check in. This changes the "-fast" flag to "-O#" in llc. If you want toBill Wendling2009-04-28
* When scheduling a block in parts, keep track of the overallDan Gohman2009-02-11
* Factor out more code for computing register live-range informationforDan Gohman2009-02-10
* Move ScheduleDAGSDNodes.h to be a private header. Front-endsDan Gohman2009-02-06
* Move a few containers out of ScheduleDAGInstrs::BuildSchedGraphDan Gohman2009-01-15
* Fix PR3241: Currently EmitCopyFromReg emits a copy from the physical register...Evan Cheng2009-01-12
* Rename BuildSchedUnits to BuildSchedGraph, and refactor theDan Gohman2008-12-23
* Fix some register-alias-related bugs in the post-RA scheduler livenessDan Gohman2008-12-16
* Make addPred and removePred return void, since the return value is notDan Gohman2008-12-16
* Rewrite the SDep class, and simplify some of the related code.Dan Gohman2008-12-09
* Check in the rest of this change. The isAntiDep flag needs to be passedDan Gohman2008-11-24
* Add a flag to SDep for tracking which edges are anti-dependence edges.Dan Gohman2008-11-21
* Rename SDep's isSpecial to isArtificial, to make this field a littleDan Gohman2008-11-21
* Change these schedulers to not emit no-ops. It turns out thatDan Gohman2008-11-21
* Simplify this code a little. In the fast scheduler, CreateNewSUnitDan Gohman2008-11-19
* Experimental post-pass scheduling support. Post-pass schedulingDan Gohman2008-11-19
* Tidy up ScheduleNodeBottomUp methods, and make them moreDan Gohman2008-11-18
* Change SUnit's dump method to take a ScheduleDAG* instead ofDan Gohman2008-11-18
* Avoid using a loop in ReleasePred and ReleaseSucc methods to compute theDan Gohman2008-11-18
* Don't bother doing latency calculations in the "fast" scheduler.Dan Gohman2008-11-17
* Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnitDan Gohman2008-11-13
* Make the Node member of SUnit private, and add accessors.Dan Gohman2008-11-13
* Change ScheduleDAG's DAG member from a reference to a pointer, to prepareDan Gohman2008-11-13
* Change the scheduler accessor methods to accept an explicit TargetMachineDan Gohman2008-11-11