aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
AgeCommit message (Expand)Author
2008-10-25SDNodes may have at most one Flag result. Update this commentDan Gohman
2008-09-03Separate MachineInstr-emitting routines from actual schedulingDan Gohman
2008-08-28erect abstraction boundaries for accessing SDValue members, rename Val -> Nod...Gabor Greif
2008-08-27Optimize ScheduleDAG's ComputeDepths and ComputeHeights to not needDan Gohman
2008-08-26disallow direct access to SDValue::ResNo, provide a getter insteadGabor Greif
2008-07-27Rename SDOperand to SDValue.Dan Gohman
2008-07-27Tidy SDNode::use_iterator, and complete the transition to have itDan Gohman
2008-07-17Add a new function, ReplaceAllUsesOfValuesWith, which handles bulkDan Gohman
2008-07-14Reapply 53476 and 53480, with a fix so that it properly updatesDan Gohman
2008-07-12Back out 53476 and 53480 for now. Somehow they cause llc to miscompile 179.art.Evan Cheng
2008-07-11Fix an obsolete top-level comment.Dan Gohman
2008-07-11Factor out debugging code into the common base class.Dan Gohman
2008-07-07Pool-allocation for MachineInstrs, MachineBasicBlocks, andDan Gohman
2008-07-07Make DenseMap's insert return a pair, to more closely resemble std::map.Dan Gohman
2008-07-02Replace a few uses of SelectionDAG::getTargetNode withDan Gohman
2008-07-02- Use a faster priority comparison function if -fast.Evan Cheng
2008-07-01Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminatingDan Gohman
2008-06-21Remove a redundant return.Dan Gohman
2008-06-21Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeIdDan Gohman
2008-06-21Add a priority queue class, which is a wrapper around std::priority_queueDan Gohman
2008-06-21Change ScheduleDAG's SUnitMap from DenseMap<SDNode*, vector<SUnit*> >Dan Gohman
2008-06-20Clean up some uses of std::distance, now that we have allnodes_size.Dan Gohman
2008-06-06Wrap MVT::ValueType in a struct to get type safetyDuncan Sands
2008-05-14Use a better idiom to silence compiler warnings.Evan Cheng
2008-05-14Really silence compiler warnings.Evan Cheng
2008-05-14Silence some compiler warnings.Evan Cheng
2008-04-20Switch to using Simplified ConstantFP::get API.Chris Lattner
2008-04-16Ongoing work on improving the instruction selection infrastructure:Roman Levenstein
2008-04-15Treat EntryToken nodes as "passive" so that they aren't added to theDan Gohman
2008-04-07Rename MemOperand to MachineMemOperand. This was suggested byDan Gohman
2008-04-07Re-commit of the r48822, where the infinite looping problem discoveredRoman Levenstein
2008-04-03Start of a series of patches related to implicit_def.Evan Cheng
2008-04-03Backing out 48222 temporarily.Evan Cheng
2008-03-26Use a linked data structure for the uses lists of an SDNode, just like Roman Levenstein
2008-03-25A quick nm audit turned up several fixed tables and objects that wereDan Gohman
2008-03-16Make insert_subreg a two-address instruction, vastly simplifying LowerSubregs...Christopher Lamb
2008-03-15Replace all target specific implicit def instructions with a target independe...Evan Cheng
2008-03-14Livein copy scheduling fixes: do not coalesce physical register copies, corre...Evan Cheng
2008-03-12Experimental scheduler change to schedule / coalesce the copies added for fun...Evan Cheng
2008-03-11Recommitting parts of r48130. These do not appear to cause the observed failu...Christopher Lamb
2008-03-11When the register allocator runs out of registers, spill a physical register ...Evan Cheng
2008-03-11variadic instructions don't have operand info for variadic arguments.Chris Lattner
2008-03-11If a register operand comes from the variadic part of a node, don'tChris Lattner
2008-03-10Correctly clone FlaggedNodes.Dan Gohman
2008-03-10Revert 48125, 48126, and 48130 for now to unbreak some x86-64 tests.Evan Cheng
2008-03-10Allow insert_subreg into implicit, target-specific values. Christopher Lamb
2008-03-09teach X86InstrInfo::copyRegToReg how to copy into ST(0) from Chris Lattner
2008-03-09Add ScheduleDAG support for copytoreg where the src/dst register areChris Lattner
2008-03-09fix 80 col violationChris Lattner
2008-03-04Some improvements related to the computation of heights, depths of SUnits.Roman Levenstein