aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineScheduler.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-04-22[Modules] Remove potential ODR violations by sinking the DEBUG_TYPEChandler Carruth1-2/+2
2014-04-21Use unique_ptr to manage objects owned by the ScheduleDAGMI.David Blaikie1-10/+9
2014-04-14[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-24/+25
2014-03-31Disable each MachineFunctionPass for 'optnone' functions, unless thatPaul Robinson1-0/+3
2014-03-10[C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.Craig Topper1-21/+21
2014-03-07[C++11] Convert sort predicates into lambdas.Benjamin Kramer1-11/+5
2014-03-07[C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper1-15/+15
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-3/+2
2014-03-02[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.Benjamin Kramer1-11/+10
2014-03-02Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper1-17/+17
2014-01-24Fix known typosAlp Toker1-1/+1
2014-01-22Reformat a loop for basic hygeine. Self review.Andrew Trick1-5/+5
2014-01-21Fix PR18572 - llc crash during GenericScheduler::initPolicy().Andrew Trick1-4/+10
2013-12-28CodeGen: silence a C++11 feature warningSaleem Abdulrasool1-1/+1
2013-12-28Uninitialized variable (in never taken path) after factoring.Andrew Trick1-1/+1
2013-12-28Added debugging options: -misched-only-func/blockAndrew Trick1-0/+13
2013-12-28Add a PostMachineScheduler pass with generic implementation.Andrew Trick1-284/+522
2013-12-28Stub out a PostMachineScheduler pass.Andrew Trick1-0/+69
2013-12-28Factor MI-Sched in preparation for post-ra scheduling support.Andrew Trick1-186/+308
2013-12-07Factor out the SchedRemainder/SchedBoundary from GenericScheduler strategy.Andrew Trick1-616/+440
2013-12-06comment grammarAndrew Trick1-1/+1
2013-12-06Fix bug introduced in r196517.Daniel Jasper1-2/+3
2013-12-05MI-Sched: Model "reserved" processor resources.Andrew Trick1-19/+74
2013-12-05MI-Sched: handle latency of in-order operations with the new machine model.Andrew Trick1-5/+36
2013-12-05comment typo and reformatAndrew Trick1-6/+6
2013-11-19[weak vtables] Remove a bunch of weak vtablesJuergen Ributzka1-0/+4
2013-11-18Revert r194865 and r194874.Alexey Samsonov1-4/+0
2013-11-15[weak vtables] Remove a bunch of weak vtablesJuergen Ributzka1-0/+4
2013-10-10Pass LiveQueryResult by valueMatthias Braun1-3/+5
2013-09-24Comment typo.Andrew Trick1-1/+1
2013-09-20Allow subtarget selection of the default MachineScheduler and document the in...Andrew Trick1-12/+22
2013-09-19Rename ConvergingScheduler to GenericScheduler.Andrew Trick1-63/+63
2013-09-09Enable -misched-cyclicpath by default.Andrew Trick1-1/+1
2013-09-09mi-sched: smooth out the cyclicpath heuristic.Andrew Trick1-1/+4
2013-09-06mi-sched: cleanup register pressure update, remove a FIXME.Andrew Trick1-19/+26
2013-09-06mi-sched: improve regpressure tracing.Andrew Trick1-2/+7
2013-09-06mi-sched: print tree size in -view-misched-dagsAndrew Trick1-1/+5
2013-09-06mi-sched: register pressure update tracing.Andrew Trick1-0/+4
2013-09-06mi-sched: Reorder Cyclicpath (latency) and CriticalMax (pressure) heuristics.Andrew Trick1-4/+4
2013-09-06Added MachineSchedPolicy.Andrew Trick1-35/+51
2013-09-04mi-sched: Force bottom up scheduling for generic targets.Andrew Trick1-3/+23
2013-09-04comment typoAndrew Trick1-1/+1
2013-09-04Remove dead subtree limit code.Andrew Trick1-9/+0
2013-09-04-view-misched-dags, better pruning.Andrew Trick1-1/+1
2013-09-04mi-sched: DEBUG cleanup, call tracePick for unidirectional scheduling.Andrew Trick1-0/+2
2013-09-0480 columnsAndrew Trick1-2/+2
2013-09-04mi-sched: Suppress register pressure tracking when the scheduling window is t...Andrew Trick1-16/+29
2013-09-04mi-sched: Load clustering is a bit to expensive to enable unconditionally.Andrew Trick1-1/+1
2013-09-04mi-sched: Reuse an invalid HazardRecognizer to save compile time.Andrew Trick1-6/+14
2013-09-04mi-sched: bypass heuristic checks when regpressure tracking is disabled.Andrew Trick1-24/+29