Remove attribution from file headers, per discussion on llvmdev.
[oota-llvm.git] / lib / CodeGen / SelectionDAG / ScheduleDAGList.cpp
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-10-15 Evan ChengMake CalcLatency() non-recursive.
2007-09-28 Evan ChengTrim some unneeded fields.
2007-09-25 Evan ChengAdded major new capabilities to scheduler (only BURR...
2007-09-19 Evan ChengUse struct SDep instead of std::pair for SUnit pred...
2007-07-13 Dale JohannesenSkeleton of post-RA scheduler; doesn't do anything...
2007-02-03 Chris Lattnerswitch the sched unit map over to use a DenseMap instea...
2006-12-19 Chris LattnerEliminate static ctors from Statistics
2006-12-07 Bill WendlingRemoving even more <iostream> includes.
2006-12-06 Chris LattnerDetemplatize the Statistic class. The only type it...
2006-11-04 Evan ChengChanges to use operand constraints to process two-addre...
2006-08-27 Chris Lattners|llvm/Support/Visibility.h|llvm/Support/Compiler.h|
2006-08-17 Chris Lattnerswitch the SUnit pred/succ sets from being std::sets...
2006-08-02 Jim LaskeyFinal polish on machine pass registries.
2006-08-01 Jim Laskey1. Change use of "Cache" to "Default".
2006-08-01 Jim LaskeyIntroducing plugable register allocators and instructio...
2006-07-20 Andrew LenharthReduce number of exported symbols
2006-06-28 Chris LattnerShave another 27K off libllvmgcc.dylib with visibility...
2006-05-30 Evan ChengWhen a priority_queue is empty, the behavior of top...
2006-05-12 Owen AndersonRefactor a bunch of includes so that TargetMachine...
2006-05-11 Evan ChengRefactor scheduler code. Move register-reduction list...
2006-05-10 Evan ChengTemplatify RegReductionPriorityQueue
2006-05-09 Evan ChengAdd pseudo dependency to force a def&use operand to...
2006-05-05 Jeff CohenFix VC++ compilation error.
2006-05-04 Evan ChengInitial support for register pressure aware scheduling...
2006-05-03 Evan ChengBottom up register pressure reduction work: clean up...
2006-05-01 Evan ChengDis-favor stores more
2006-05-01 Evan ChengBottom up register-pressure reduction scheduler now...
2006-05-01 Evan ChengDidn't mean ScheduleDAGList.cpp to make the last checkin.
2006-05-01 Evan ChengRemove temp. option -spiller-check-liveout, it didn...
2006-03-12 Chris LattnerDon't advance the hazard recognizer when there are...
2006-03-12 Chris LattnerChain operands aren't real uses: they don't require...
2006-03-12 Chris LattnerAs a pending queue data structure to keep track of...
2006-03-11 Chris Lattnerrename priorityqueue -> availablequeue. When a node...
2006-03-11 Chris LattnerMake CurrCycle a local var instead of an instance var
2006-03-11 Chris LattnerMove some methods around so that BU specific code is...
2006-03-11 Chris Lattnermerge preds/chainpreds -> preds set
2006-03-10 Chris LattnerMove some simple-sched-specific instance vars to the...
2006-03-10 Chris LattnerMake EmitNode take a SDNode instead of a NodeInfo*
2006-03-10 Chris LattnerMove the VRBase field from NodeInfo to being a separate...
2006-03-10 Chris Lattnerno need to build groups anymore
2006-03-10 Chris LattnerCreate SUnits directly from the SelectionDAG.
2006-03-10 Chris LattnerPush PrepareNodeInfo/IdentifyGroups down the inheritanc...
2006-03-10 Chris LattnerTeach the latency scheduler some new tricks. In partic...
2006-03-10 Chris Lattneradd an aggregate method for reinserting scheduled nodes...
2006-03-10 Jeff CohenFix VC++ build breakage.
2006-03-09 Chris Lattnerremove temporary option
2006-03-09 Chris Lattneryes yes, enabled debug output is bad
2006-03-09 Chris Lattnerswitch the t-d scheduler to use a really dumb and trivi...
2006-03-09 Chris LattnerPull latency information for target instructions out...
2006-03-09 Chris LattnerPriorityQueue is an instance var, use it.
2006-03-09 Chris Lattneradd some comments
2006-03-09 Chris LattnerRefactor the priority mechanism one step further: now...
2006-03-08 Chris LattnerSplit the priority function computation and priority...
2006-03-08 Chris Lattnerswitch from an explicitly managed list of SUnits to...
2006-03-08 Chris LattnerShrinkify some fields, fit to 80 columns
2006-03-08 Chris Lattnerremove "Slot", it is dead
2006-03-08 Chris LattnerChange the interface for getting a target HazardRecogni...
2006-03-07 Chris LattnerFix some formatting, when looking for hazards, prefer...
2006-03-06 Chris Lattnerupdate file comment
2006-03-06 Evan ChengRemove some code that doesn't make sense
2006-03-06 Evan ChengRemove SUnit::Priority1: it is re-calculated on demand...
2006-03-06 Chris LattnerHoist the HazardRecognizer out of the ScheduleDAGList...
2006-03-05 Chris LattnerComment fixes
2006-03-05 Chris LattnerWhen a hazard recognizer needs noops to be inserted...
2006-03-05 Chris LattnerImplement G5HazardRecognizer as a trivial thing that...
2006-03-05 Chris LattnerAdd basic hazard recognizer support. noop insertion...
2006-03-05 Chris LattnerSplit the list scheduler into top-down and bottom-up...
2006-03-05 Chris LattnerMove the available queue to being inside the ListSchedu...
2006-03-03 Evan ChengA bit more tweaking
2006-03-03 Jeff CohenFix VC++ compilation errors.
2006-03-02 Evan Cheng- Fixed some priority calculation bugs that were causin...
2006-02-02 Chris Lattnermake -debug output less newliney
2006-01-26 Evan ChengClean up some code; improve efficiency; and fixed a...
2006-01-25 Reid SpencerDon't break the optimized build (by incorrect placement...
2006-01-25 Jeff CohenFix VC++ compilation error.
2006-01-25 Evan ChengBottom up register usage reducing list scheduler.
2006-01-23 Evan ChengSkeleton of the list schedule.