index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
CodeGen
/
MachineScheduler.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Complete the MachineScheduler fix made way back in r210390.
Andrew Trick
2015-03-27
1
-2
/
+2
*
Remove useMachineScheduler and replace it with subtarget options
Eric Christopher
2015-03-11
1
-0
/
+11
*
The subtarget is cached on the MachineFunction. Access it directly.
Eric Christopher
2015-01-27
1
-3
/
+1
*
[MIScheduler] Slightly better handling of constrainLocalCopy when both source...
Michael Kuperstein
2015-01-19
1
-4
/
+7
*
Rename argument strings of codegen passes to avoid collisions with command line
Akira Hatanaka
2014-12-13
1
-2
/
+2
*
Reapply "[MachineScheduler] Fix for PR21807: minor code difference building w...
Andrea Di Biagio
2014-12-12
1
-1
/
+3
*
Revert: [MachineScheduler] Fix for PR21807: minor code difference building wi...
Andrea Di Biagio
2014-12-12
1
-3
/
+1
*
[MachineScheduler] Fix for PR21807: minor code difference building with/witho...
Andrea Di Biagio
2014-12-12
1
-1
/
+3
*
Access the subtarget off of the MachineFunction via the DAG
Eric Christopher
2014-10-14
1
-9
/
+7
*
[MiSched] Fix a logic error in tryPressure()
Hal Finkel
2014-10-10
1
-2
/
+2
*
Debugging Utility - optional ability for dumping critical path length
Gerolf Hoflehner
2014-08-07
1
-2
/
+16
*
Have MachineFunction cache a pointer to the subtarget to make lookups
Eric Christopher
2014-08-05
1
-2
/
+1
*
Remove the TargetMachine forwards for TargetSubtargetInfo based
Eric Christopher
2014-08-04
1
-5
/
+9
*
Revert "Revert "MachineScheduler: better book-keeping for asserts.""
Chad Rosier
2014-07-02
1
-7
/
+11
*
Move remaining LLVM_ENABLE_DUMP conditionals out of the headers
Alp Toker
2014-07-01
1
-2
/
+1
*
Revert "MachineScheduler: better book-keeping for asserts."
Chad Rosier
2014-07-01
1
-7
/
+5
*
MachineScheduler: better book-keeping for asserts.
Andrew Trick
2014-07-01
1
-5
/
+7
*
Left out the NDEBUG in the previous checkin.
Andrew Trick
2014-06-27
1
-0
/
+2
*
MachineScheduler: add some book-keeping to fix an assert.
Andrew Trick
2014-06-27
1
-1
/
+7
*
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
2014-06-26
1
-1
/
+2
*
Introduce a string_ostream string builder facilty
Alp Toker
2014-06-26
1
-2
/
+1
*
Fix the scheduler's MaxObservedStall computation.
Andrew Trick
2014-06-12
1
-2
/
+6
*
Fix the MachineScheduler's logic for updating ready times for in-order.
Andrew Trick
2014-06-07
1
-32
/
+25
*
Add a subtarget hook: enablePostMachineScheduler.
Andrew Trick
2014-06-04
1
-0
/
+6
*
Move GenericScheduler and PostGenericScheduler into a header.
Andrew Trick
2014-06-04
1
-229
/
+15
*
[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final...
Craig Topper
2014-04-29
1
-5
/
+5
*
[Modules] Remove potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-2
/
+2
*
Use unique_ptr to manage objects owned by the ScheduleDAGMI.
David Blaikie
2014-04-21
1
-10
/
+9
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-14
1
-24
/
+25
*
Disable each MachineFunctionPass for 'optnone' functions, unless that
Paul Robinson
2014-03-31
1
-0
/
+3
*
[C++11] Remove 'virtual' keyword from methods marked with 'override' keyword.
Craig Topper
2014-03-10
1
-21
/
+21
*
[C++11] Convert sort predicates into lambdas.
Benjamin Kramer
2014-03-07
1
-11
/
+5
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-07
1
-15
/
+15
*
Replace OwningPtr<T> with std::unique_ptr<T>.
Ahmed Charles
2014-03-06
1
-3
/
+2
*
[C++11] Replace llvm::next and llvm::prior with std::next and std::prev.
Benjamin Kramer
2014-03-02
1
-11
/
+10
*
Switch all uses of LLVM_OVERRIDE to just use 'override' directly.
Craig Topper
2014-03-02
1
-17
/
+17
*
Fix known typos
Alp Toker
2014-01-24
1
-1
/
+1
*
Reformat a loop for basic hygeine. Self review.
Andrew Trick
2014-01-22
1
-5
/
+5
*
Fix PR18572 - llc crash during GenericScheduler::initPolicy().
Andrew Trick
2014-01-21
1
-4
/
+10
*
CodeGen: silence a C++11 feature warning
Saleem Abdulrasool
2013-12-28
1
-1
/
+1
*
Uninitialized variable (in never taken path) after factoring.
Andrew Trick
2013-12-28
1
-1
/
+1
*
Added debugging options: -misched-only-func/block
Andrew Trick
2013-12-28
1
-0
/
+13
*
Add a PostMachineScheduler pass with generic implementation.
Andrew Trick
2013-12-28
1
-284
/
+522
*
Stub out a PostMachineScheduler pass.
Andrew Trick
2013-12-28
1
-0
/
+69
*
Factor MI-Sched in preparation for post-ra scheduling support.
Andrew Trick
2013-12-28
1
-186
/
+308
*
Factor out the SchedRemainder/SchedBoundary from GenericScheduler strategy.
Andrew Trick
2013-12-07
1
-616
/
+440
*
comment grammar
Andrew Trick
2013-12-06
1
-1
/
+1
*
Fix bug introduced in r196517.
Daniel Jasper
2013-12-06
1
-2
/
+3
*
MI-Sched: Model "reserved" processor resources.
Andrew Trick
2013-12-05
1
-19
/
+74
*
MI-Sched: handle latency of in-order operations with the new machine model.
Andrew Trick
2013-12-05
1
-5
/
+36
[prev]
[next]