aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/ScheduleDAG.h
AgeCommit message (Expand)Author
2009-03-19Fix the Win32 VS2008 build:Sebastian Redl
2009-02-14Unbreak the build on win32.Cedric Venet
2009-02-11When scheduling a block in parts, keep track of the overallDan Gohman
2009-02-10Factor out more code for computing register live-range informationforDan Gohman
2009-02-07Constify TargetInstrInfo::EmitInstrWithCustomInserter, allowingDan Gohman
2009-02-06Tidy up the ScheduleDAG class definition a little. Make a fewDan Gohman
2009-01-16Instead of adding dependence edges between terminator instructionsDan Gohman
2009-01-16CreateVirtualRegisters does trivial copy coalescing. If a node def is used by...Evan Cheng
2009-01-15Move a few containers out of ScheduleDAGInstrs::BuildSchedGraphDan Gohman
2009-01-12Fix PR3241: Currently EmitCopyFromReg emits a copy from the physical register...Evan Cheng
2008-12-23Rename BuildSchedUnits to BuildSchedGraph, and refactor theDan Gohman
2008-12-22Add an accesor for the isNormalMemory field in the SDep class.Dan Gohman
2008-12-17Fix the comments for getDepth and getHeight.Dan Gohman
2008-12-16Add initial support for back-scheduling address computations,Dan Gohman
2008-12-16Fix some register-alias-related bugs in the post-RA scheduler livenessDan Gohman
2008-12-16Move addPred and removePred out-of-line.Dan Gohman
2008-12-16Make addPred and removePred return void, since the return value is notDan Gohman
2008-12-16Add a getSDep() access function to SUnitIterator to return theDan Gohman
2008-12-16Reorder some SDep methods. No functionality change.Dan Gohman
2008-12-16SDep's operator== should compare the Latency field too.Dan Gohman
2008-12-09Rewrite the SDep class, and simplify some of the related code.Dan Gohman
2008-11-25Initial support for anti-dependence breaking. Currently this code does notDan Gohman
2008-11-24Fix an unused-parameter warning.Dan Gohman
2008-11-24Check in the rest of this change. The isAntiDep flag needs to be passedDan Gohman
2008-11-21Add a flag to SDep for tracking which edges are anti-dependence edges.Dan Gohman
2008-11-21Rename SDep's isSpecial to isArtificial, to make this field a littleDan Gohman
2008-11-20Factor out the code for verifying the work of the scheduler,Dan Gohman
2008-11-19Experimental post-pass scheduling support. Post-pass schedulingDan Gohman
2008-11-19Move the code for printing a graph node label for an SUnit intoDan Gohman
2008-11-19Convert SUnit's dump method into a print method and implementDan Gohman
2008-11-18Change SUnit's dump method to take a ScheduleDAG* instead ofDan Gohman
2008-11-18There is no InstrStage class.Dan Gohman
2008-11-14Add support for building a ScheduleDAG from MachineInstrs. This is currentlyDan Gohman
2008-11-14Add a version of NewSUnit for creating units with MachineInstrs.Dan Gohman
2008-11-14Initial support for carrying MachineInstrs in SUnits.Dan Gohman
2008-11-13Clarify the comment about NumPreds and NumSuccs to reflect that they onlyDan Gohman
2008-11-13Remove the FlaggedNodes member from SUnit. Instead of requiring each SUnitDan Gohman
2008-11-13Make the Node member of SUnit private, and add accessors.Dan Gohman
2008-11-13Change ScheduleDAG's DAG member from a reference to a pointer, to prepareDan Gohman
2008-11-11Change the scheduler accessor methods to accept an explicit TargetMachineDan Gohman
2008-09-24Next round of earlyclobber handling. Approach theDale Johannesen
2008-09-18Add a new "fast" scheduler. This is currently basically just aDan Gohman
2008-09-17Add a bit to mark operands of asm's that conflictDale Johannesen
2008-09-16Reverting r56249. On further investigation, this functionality isn't needed.Bill Wendling
2008-09-16- Change "ExternalSymbolSDNode" to "SymbolSDNode".Bill Wendling
2008-07-27Rename SDOperand to SDValue.Dan Gohman
2008-07-14Reapply 53476 and 53480, with a fix so that it properly updatesDan Gohman
2008-07-01Do not use computationally expensive scheduling heuristics with -fast.Evan Cheng
2008-06-24Comment fixes, and make Schedule() pure virtual.Dan Gohman
2008-06-21Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeIdDan Gohman