aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
AgeCommit message (Expand)Author
2008-10-14Fix command-line option printing to print two spaces where needed,Dan 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-11Factor out debugging code into the common base class.Dan Gohman
2008-07-11Add support for putting NamedRegionTimers in TimerGroups, andDan Gohman
2008-07-01Do not use computationally expensive scheduling heuristics with -fast.Evan Cheng
2008-06-23Use the new PriorityQueue in ScheduleDAGList too, which alsoDan Gohman
2008-06-21Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeIdDan Gohman
2008-06-21Change ScheduleDAG's SUnitMap from DenseMap<SDNode*, vector<SUnit*> >Dan Gohman
2008-04-15Treat EntryToken nodes as "passive" so that they aren't added to theDan Gohman
2008-02-10Rename MRegisterInfo to TargetRegisterInfo.Dan Gohman
2008-01-29Use empty() instead of comparing size() with zero.Dan Gohman
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-10-15Make CalcLatency() non-recursive.Evan Cheng
2007-09-28Trim some unneeded fields.Evan Cheng
2007-09-25Added major new capabilities to scheduler (only BURR for now) to support phys...Evan Cheng
2007-09-19Use struct SDep instead of std::pair for SUnit pred and succ lists. First stepEvan Cheng
2007-07-13Skeleton of post-RA scheduler; doesn't do anything yet.Dale Johannesen
2007-02-03switch the sched unit map over to use a DenseMap instead of std::map. ThisChris Lattner
2006-12-19Eliminate static ctors from StatisticsChris Lattner
2006-12-07Removing even more <iostream> includes.Bill Wendling
2006-12-06Detemplatize the Statistic class. The only type it is instantiated withChris Lattner
2006-11-04Changes to use operand constraints to process two-address instructions.Evan Cheng
2006-08-27s|llvm/Support/Visibility.h|llvm/Support/Compiler.h|Chris Lattner
2006-08-17switch the SUnit pred/succ sets from being std::sets to being smallvectors.Chris Lattner
2006-08-02Final polish on machine pass registries.Jim Laskey
2006-08-011. Change use of "Cache" to "Default".Jim Laskey
2006-08-01Introducing plugable register allocators and instruction schedulers.Jim Laskey
2006-07-20Reduce number of exported symbolsAndrew Lenharth
2006-06-28Shave another 27K off libllvmgcc.dylib with visibility hiddenChris Lattner
2006-05-30When a priority_queue is empty, the behavior of top() operator isEvan Cheng
2006-05-12Refactor a bunch of includes so that TargetMachine.h doesn't have to includeOwen Anderson
2006-05-11Refactor scheduler code. Move register-reduction list scheduler to aEvan Cheng
2006-05-10Templatify RegReductionPriorityQueueEvan Cheng
2006-05-09Add pseudo dependency to force a def&use operand to be scheduled last (unlessEvan Cheng
2006-05-05Fix VC++ compilation error.Jeff Cohen
2006-05-04Initial support for register pressure aware scheduling. The register reductionEvan Cheng
2006-05-03Bottom up register pressure reduction work: clean up some hacks and enhancedEvan Cheng
2006-05-01Dis-favor stores moreEvan Cheng
2006-05-01Bottom up register-pressure reduction scheduler now pushes store operationsEvan Cheng
2006-05-01Didn't mean ScheduleDAGList.cpp to make the last checkin.Evan Cheng
2006-05-01Remove temp. option -spiller-check-liveout, it didn't cause any failure nor p...Evan Cheng
2006-03-12Don't advance the hazard recognizer when there are no hazards and no instruct...Chris Lattner
2006-03-12Chain operands aren't real uses: they don't require the full latency of theChris Lattner
2006-03-12As a pending queue data structure to keep track of instructions whoseChris Lattner
2006-03-11rename priorityqueue -> availablequeue. When a node is scheduled, rememberChris Lattner
2006-03-11Make CurrCycle a local var instead of an instance varChris Lattner
2006-03-11Move some methods around so that BU specific code is together, TD specific codeChris Lattner