Age | Commit message (Expand) | Author |
2008-07-01 | Do not use computationally expensive scheduling heuristics with -fast. | Evan Cheng |
2008-06-23 | Use the new PriorityQueue in ScheduleDAGList too, which also | Dan Gohman |
2008-06-21 | Remove ScheduleDAG's SUnitMap altogether. Instead, use SDNode's NodeId | Dan Gohman |
2008-06-21 | Change ScheduleDAG's SUnitMap from DenseMap<SDNode*, vector<SUnit*> > | Dan Gohman |
2008-04-15 | Treat EntryToken nodes as "passive" so that they aren't added to the | Dan Gohman |
2008-02-10 | Rename MRegisterInfo to TargetRegisterInfo. | Dan Gohman |
2008-01-29 | Use empty() instead of comparing size() with zero. | Dan Gohman |
2007-12-31 | Rename SSARegMap -> MachineRegisterInfo in keeping with the idea | Chris Lattner |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner |
2007-10-15 | Make CalcLatency() non-recursive. | Evan Cheng |
2007-09-28 | Trim some unneeded fields. | Evan Cheng |
2007-09-25 | Added major new capabilities to scheduler (only BURR for now) to support phys... | Evan Cheng |
2007-09-19 | Use struct SDep instead of std::pair for SUnit pred and succ lists. First step | Evan Cheng |
2007-07-13 | Skeleton of post-RA scheduler; doesn't do anything yet. | Dale Johannesen |
2007-02-03 | switch the sched unit map over to use a DenseMap instead of std::map. This | Chris Lattner |
2006-12-19 | Eliminate static ctors from Statistics | Chris Lattner |
2006-12-07 | Removing even more <iostream> includes. | Bill Wendling |
2006-12-06 | Detemplatize the Statistic class. The only type it is instantiated with | Chris Lattner |
2006-11-04 | Changes to use operand constraints to process two-address instructions. | Evan Cheng |
2006-08-27 | s|llvm/Support/Visibility.h|llvm/Support/Compiler.h| | Chris Lattner |
2006-08-17 | switch the SUnit pred/succ sets from being std::sets to being smallvectors. | Chris Lattner |
2006-08-02 | Final polish on machine pass registries. | Jim Laskey |
2006-08-01 | 1. Change use of "Cache" to "Default". | Jim Laskey |
2006-08-01 | Introducing plugable register allocators and instruction schedulers. | Jim Laskey |
2006-07-20 | Reduce number of exported symbols | Andrew Lenharth |
2006-06-28 | Shave another 27K off libllvmgcc.dylib with visibility hidden | Chris Lattner |
2006-05-30 | When a priority_queue is empty, the behavior of top() operator is | Evan Cheng |
2006-05-12 | Refactor a bunch of includes so that TargetMachine.h doesn't have to include | Owen Anderson |
2006-05-11 | Refactor scheduler code. Move register-reduction list scheduler to a | Evan Cheng |
2006-05-10 | Templatify RegReductionPriorityQueue | Evan Cheng |
2006-05-09 | Add pseudo dependency to force a def&use operand to be scheduled last (unless | Evan Cheng |
2006-05-05 | Fix VC++ compilation error. | Jeff Cohen |
2006-05-04 | Initial support for register pressure aware scheduling. The register reduction | Evan Cheng |
2006-05-03 | Bottom up register pressure reduction work: clean up some hacks and enhanced | Evan Cheng |
2006-05-01 | Dis-favor stores more | Evan Cheng |
2006-05-01 | Bottom up register-pressure reduction scheduler now pushes store operations | Evan Cheng |
2006-05-01 | Didn't mean ScheduleDAGList.cpp to make the last checkin. | Evan Cheng |
2006-05-01 | Remove temp. option -spiller-check-liveout, it didn't cause any failure nor p... | Evan Cheng |
2006-03-12 | Don't advance the hazard recognizer when there are no hazards and no instruct... | Chris Lattner |
2006-03-12 | Chain operands aren't real uses: they don't require the full latency of the | Chris Lattner |
2006-03-12 | As a pending queue data structure to keep track of instructions whose | Chris Lattner |
2006-03-11 | rename priorityqueue -> availablequeue. When a node is scheduled, remember | Chris Lattner |
2006-03-11 | Make CurrCycle a local var instead of an instance var | Chris Lattner |
2006-03-11 | Move some methods around so that BU specific code is together, TD specific code | Chris Lattner |
2006-03-11 | merge preds/chainpreds -> preds set | Chris Lattner |
2006-03-10 | Move some simple-sched-specific instance vars to the simple scheduler. | Chris Lattner |
2006-03-10 | Make EmitNode take a SDNode instead of a NodeInfo* | Chris Lattner |
2006-03-10 | Move the VRBase field from NodeInfo to being a separate, explicit, map. | Chris Lattner |
2006-03-10 | no need to build groups anymore | Chris Lattner |
2006-03-10 | Create SUnits directly from the SelectionDAG. | Chris Lattner |