aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/MachineScheduler.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-10-14Access the subtarget off of the MachineFunction via the DAGEric Christopher1-9/+7
2014-10-10[MiSched] Fix a logic error in tryPressure()Hal Finkel1-2/+2
2014-08-07Debugging Utility - optional ability for dumping critical path lengthGerolf Hoflehner1-2/+16
2014-08-05Have MachineFunction cache a pointer to the subtarget to make lookupsEric Christopher1-2/+1
2014-08-04Remove the TargetMachine forwards for TargetSubtargetInfo basedEric Christopher1-5/+9
2014-07-02Revert "Revert "MachineScheduler: better book-keeping for asserts.""Chad Rosier1-7/+11
2014-07-01Move remaining LLVM_ENABLE_DUMP conditionals out of the headersAlp Toker1-2/+1
2014-07-01Revert "MachineScheduler: better book-keeping for asserts."Chad Rosier1-7/+5
2014-07-01MachineScheduler: better book-keeping for asserts.Andrew Trick1-5/+7
2014-06-27Left out the NDEBUG in the previous checkin.Andrew Trick1-0/+2
2014-06-27MachineScheduler: add some book-keeping to fix an assert.Andrew Trick1-1/+7
2014-06-26Revert "Introduce a string_ostream string builder facilty"Alp Toker1-1/+2
2014-06-26Introduce a string_ostream string builder faciltyAlp Toker1-2/+1
2014-06-12Fix the scheduler's MaxObservedStall computation.Andrew Trick1-2/+6
2014-06-07Fix the MachineScheduler's logic for updating ready times for in-order.Andrew Trick1-32/+25
2014-06-04Add a subtarget hook: enablePostMachineScheduler.Andrew Trick1-0/+6
2014-06-04Move GenericScheduler and PostGenericScheduler into a header.Andrew Trick1-229/+15
2014-04-29[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final...Craig Topper1-5/+5
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