aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
AgeCommit message (Expand)Author
2008-07-02- Use a faster priority comparison function if -fast.Evan Cheng
2008-07-01Do not use computationally expensive scheduling heuristics with -fast.Evan Cheng
2008-06-23Move a DenseMap's declaration outside of a loop, and just callDan Gohman
2008-06-21canClobberPhysRegDefs shouldn't called without checking hasPhysRegDefs;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-21Simplify some template parameterization.Dan Gohman
2008-06-06Wrap MVT::ValueType in a struct to get type safetyDuncan Sands
2008-05-16Silence the compiler warning differently. TheDuncan Sands
2008-05-14Silence some compiler warnings.Evan Cheng
2008-04-29Use std::set instead of std::priority_queue for the RegReductionPriorityQueue. Roman Levenstein
2008-04-15Fix the new scheduler assertion checks to work whenDan Gohman
2008-04-15Treat EntryToken nodes as "passive" so that they aren't added to theDan Gohman
2008-03-29Cosmetic changes.Evan Cheng
2008-03-28ifdef out a dead function. Should this be removed?Chris Lattner
2008-03-27Fix spelling. Thanks, Duncan! :-)Roman Levenstein
2008-03-27Speed-up the SumOfUnscheduledPredsOfSuccs by introducing a new functionRoman Levenstein
2008-03-26Fixed some spelling errors. Thanks, Duncan!Roman Levenstein
2008-03-26Some improvements related to the computation of isReachable.Roman Levenstein
2008-03-25Fix typos.Dan Gohman
2008-03-11When the register allocator runs out of registers, spill a physical register ...Evan Cheng
2008-03-04Rename isOperand() to isOperandOf() (and other similar methods). It always co...Evan Cheng
2008-03-01Refactor / clean up code; remove td list scheduler special tie breaker (no re...Evan Cheng
2008-02-20Update gcc 4.3 warnings fix patch with recent head changesAnton Korobeynikov
2008-02-16Revert 47177, which was incorrect.Dan Gohman
2008-02-15Skip over the defs and start at the uses when looking for operandsDan Gohman
2008-02-15Use the TargetInstrDescr to determine the number of operandsDan Gohman
2008-02-10Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
2008-01-29Fix a typo in a comment.Dan Gohman
2008-01-29Fix a typo in a comment.Dan Gohman
2008-01-09Special copy SUnit's do not have SDNode's.Evan Cheng
2008-01-07rename TargetInstrDescriptor -> TargetInstrDesc.Chris Lattner
2008-01-07simplify some code.Chris Lattner
2008-01-07Rename all the M_* flags to be namespace qualified enums, and switch Chris Lattner
2008-01-07Move a bunch more accessors from TargetInstrInfo to TargetInstrDescriptorChris Lattner
2008-01-07Update CodeGen for MRegisterInfo --> TargetInstrInfo changes.Owen Anderson
2007-12-31Rename SSARegMap -> MachineRegisterInfo in keeping with the idea Chris Lattner
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-20More accurate checks for two-address constraints.Evan Cheng
2007-12-20Bring back a burr scheduling heuristic that's still needed.Evan Cheng
2007-12-18FIX for PR1799: When a load is unfolded from an instruction, check if it is a...Evan Cheng
2007-11-09Bug fix. Passive nodes are not in SUnitMap.Evan Cheng
2007-11-06Add pseudo dependency to force two-address instruction to be scheduled afterEvan Cheng
2007-10-15One mundane change: Change ReplaceAllUsesOfValueWith to *optionally* Chris Lattner
2007-10-12EXTRACT_SUBREG coalescing support. The coalescer now treats EXTRACT_SUBREG likeEvan Cheng
2007-10-05Fix a typo in a comment.Dan Gohman
2007-10-05Chain producing nodes cannot be moved, not chain reading nodes.Evan Cheng
2007-10-05Oops. Didn't mean to leave this in.Evan Cheng