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
/
MachineLICM.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Small cleanup of MachineLICM.cpp
Daniel Jasper
2015-02-05
1
-15
/
+12
*
[MachineLICM] A command-line option to hoist even cheap instructions
Hal Finkel
2015-01-08
1
-1
/
+6
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-2
/
+2
*
Remove the use and member variable of the TargetMachine from
Eric Christopher
2014-10-14
1
-6
/
+4
*
Eliminate some deep std::vector copies. NFC.
Benjamin Kramer
2014-10-03
1
-17
/
+3
*
Remove the TargetMachine forwards for TargetSubtargetInfo based
Eric Christopher
2014-08-04
1
-4
/
+5
*
Add TargetInstrInfo interface isAsCheapAsAMove.
Jiangning Liu
2014-07-29
1
-1
/
+1
*
[Modules] Remove potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
2014-04-22
1
-1
/
+2
*
Break PseudoSourceValue out of the Value hierarchy. It is now the root of its...
Nick Lewycky
2014-04-15
1
-6
/
+5
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-14
1
-14
/
+14
*
Disable each MachineFunctionPass for 'optnone' functions, unless that
Paul Robinson
2014-03-31
1
-0
/
+3
*
Switch a number of loops in lib/CodeGen over to range-based for-loops, now that
Owen Anderson
2014-03-17
1
-18
/
+12
*
Phase 2 of the great MachineRegisterInfo cleanup. This time, we're changing
Owen Anderson
2014-03-13
1
-4
/
+6
*
[C++11] Add 'override' keyword to virtual methods that override their base cl...
Craig Topper
2014-03-07
1
-3
/
+3
*
Replace some unnecessary vector copies with references.
Benjamin Kramer
2013-09-15
1
-2
/
+2
*
Fix overly pessimistic shortcut in post-RA MachineLICM
Richard Sandiford
2013-08-20
1
-4
/
+4
*
Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector s...
Craig Topper
2013-07-11
1
-4
/
+4
*
Split TargetLowering into a CodeGen and a SelectionDAG part.
Benjamin Kramer
2013-01-11
1
-1
/
+1
*
Change TargetLowering::getRepRegClassFor to take an MVT, instead of
Patrik Hagglund
2012-12-13
1
-1
/
+1
*
Revert EVT->MVT changes, r169836-169851, due to buildbot failures.
Patrik Hagglund
2012-12-11
1
-1
/
+1
*
Change TargetLowering::getRepRegClassFor to take an MVT, instead of
Patrik Hagglund
2012-12-11
1
-1
/
+1
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
1
-8
/
+8
*
Add a getName function to MachineFunction. Use it in places that previously d...
Craig Topper
2012-08-22
1
-1
/
+1
*
Switch all register list clients to the new MC*Iterator interface.
Jakob Stoklund Olesen
2012-06-01
1
-7
/
+7
*
Add an MF argument to TRI::getPointerRegClass() and TII::getRegClass().
Jakob Stoklund Olesen
2012-05-07
1
-2
/
+2
*
Tweak MachineLICM heuristics for cheap instructions.
Jakob Stoklund Olesen
2012-04-11
1
-69
/
+89
*
Only check for PHI uses inside the current loop.
Jakob Stoklund Olesen
2012-04-11
1
-27
/
+51
*
Post-ra LICM should take care not to hoist an instruction that would clobber a
Evan Cheng
2012-03-27
1
-4
/
+28
*
Use uint16_t to store register overlaps to reduce static data.
Craig Topper
2012-03-04
1
-3
/
+3
*
Fix 80-column violation.
Chad Rosier
2012-02-28
1
-2
/
+2
*
Revert r150288, "Allow Post-RA LICM to hoist reserved register reads."
Jakob Stoklund Olesen
2012-02-17
1
-11
/
+0
*
Allow Post-RA LICM to hoist reserved register reads.
Jakob Stoklund Olesen
2012-02-11
1
-0
/
+11
*
Don't read PreRegAlloc before it is initialized.
Jakob Stoklund Olesen
2012-02-11
1
-6
/
+6
*
Codegen pass definition cleanup. No functionality.
Andrew Trick
2012-02-08
1
-6
/
+1
*
Move pass configuration out of pass constructors: MachineLICM.
Andrew Trick
2012-02-08
1
-4
/
+5
*
whitespace
Andrew Trick
2012-02-08
1
-11
/
+11
*
Require non-NULL register masks.
Jakob Stoklund Olesen
2012-02-02
1
-4
/
+1
*
Fix PR11829. PostRA LICM was too aggressive.
Jakob Stoklund Olesen
2012-01-23
1
-4
/
+4
*
Simplify debug output.
Jakob Stoklund Olesen
2012-01-23
1
-10
/
+2
*
Support register masks in MachineLICM.
Jakob Stoklund Olesen
2012-01-20
1
-23
/
+36
*
Extract method for detecting constant unallocatable physregs.
Jakob Stoklund Olesen
2012-01-16
1
-14
/
+1
*
80 col violation.
Evan Cheng
2012-01-10
1
-2
/
+2
*
Hoisted some loop invariant smallvector lookups out of a MachineLICM loop
Pete Cooper
2011-12-22
1
-1
/
+3
*
Changed MachineLICM to use a worklist list MachineCSE instead of recursion.
Pete Cooper
2011-12-22
1
-44
/
+125
*
Add bundle aware API for querying instruction properties and switch the code
Evan Cheng
2011-12-07
1
-4
/
+4
*
First chunk of MachineInstr bundle support.
Evan Cheng
2011-12-06
1
-2
/
+3
*
Rename MVT::untyped to MVT::Untyped to match similar nomenclature.
Owen Anderson
2011-11-16
1
-1
/
+1
*
Disable LICM speculation in high register pressure situation again now that D...
Evan Cheng
2011-10-26
1
-1
/
+1
*
As Evan suggested, loads from constant pool are safe to speculate.
Devang Patel
2011-10-20
1
-5
/
+5
*
Add a comment.
Devang Patel
2011-10-20
1
-1
/
+3
[next]