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
/
Transforms
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove the old atomic instrinsics. autoupgrade functionality is included wit...
Eli Friedman
2011-10-06
1
-98
/
+1
*
PR11061: Make simplifylibcalls fold strcmp("", x) correctly.
Eli Friedman
2011-10-05
1
-13
/
+18
*
Re-commit 141203, but much more conservative.
Jim Grosbach
2011-10-05
1
-3
/
+3
*
Revert 141203. InstCombine is looping on unit tests.
Jim Grosbach
2011-10-05
1
-9
/
+8
*
Update InstCombine worklist after instruction transform is complete.
Jim Grosbach
2011-10-05
1
-8
/
+9
*
GVN does simple propagation of conditions: when it sees a conditional
Duncan Sands
2011-10-05
1
-14
/
+111
*
Generalize GVN's conditional propagation logic slightly:
Duncan Sands
2011-10-05
1
-4
/
+29
*
LSR should avoid redundant edge splitting.
Andrew Trick
2011-10-04
2
-3
/
+6
*
whitespace
Andrew Trick
2011-10-04
1
-18
/
+18
*
Add a new icmp+select optz'n. Also shows off the load(cst) folding added in
Nick Lewycky
2011-10-02
1
-0
/
+6
*
Enhance a couple places where we were doing constant folding of instructions,
Nick Lewycky
2011-10-02
2
-7
/
+8
*
Inlining and unrolling heuristics should be aware of free truncs.
Andrew Trick
2011-10-01
3
-3
/
+11
*
whitespace
Andrew Trick
2011-10-01
2
-18
/
+18
*
Don't modify constant in-place.
Jim Grosbach
2011-09-30
1
-3
/
+4
*
float comparison to double 'zero' constant can just be a float 'zero.'
Jim Grosbach
2011-09-30
1
-3
/
+6
*
Tidy up. Trailing whitespace.
Jim Grosbach
2011-09-30
1
-220
/
+220
*
Inlining often produces landingpad instructions with repeated
Duncan Sands
2011-09-30
2
-0
/
+338
*
Fold two identical set lookups into one. No functionality change.
Nick Lewycky
2011-09-29
1
-4
/
+2
*
When eliminating unnecessary retain+autorelease on return values,
Dan Gohman
2011-09-29
1
-1
/
+2
*
Don't eliminate objc_retainBlock calls on stack objects if the
Dan Gohman
2011-09-29
1
-8
/
+29
*
Clean up uses of switch instructions so they are not dependent on the operand...
Eli Friedman
2011-09-29
2
-7
/
+13
*
typo + pasto
Andrew Trick
2011-09-29
1
-2
/
+2
*
LSR: rewrite inner loops only.
Andrew Trick
2011-09-29
1
-5
/
+21
*
indvars should hoist [sz]ext because licm is not rerun.
Andrew Trick
2011-09-28
1
-17
/
+27
*
Stop emitting instructions with the name "tmp" they eat up memory and have to...
Benjamin Kramer
2011-09-27
13
-102
/
+79
*
Split the landing pad basic block with the correct function. Also merge the
Bill Wendling
2011-09-27
1
-3
/
+23
*
Disable LSR retry by default.
Andrew Trick
2011-09-27
1
-0
/
+16
*
LSR, one of the new Cost::isLoser() checks did not get merged in the previous...
Andrew Trick
2011-09-26
1
-2
/
+6
*
LSR cost metric minor fix and verification.
Andrew Trick
2011-09-26
1
-3
/
+26
*
LSR minor bug fix in RateRegister.
Andrew Trick
2011-09-23
1
-1
/
+1
*
PR10987: add a missed safety check to isSafePHIToSpeculate in scalarrepl.
Eli Friedman
2011-09-22
1
-7
/
+11
*
Make sure IPSCCP never marks a tracked call as overdefined in SCCPSolver::Res...
Eli Friedman
2011-09-20
1
-9
/
+35
*
Relax this condition.
Bill Wendling
2011-09-20
1
-2
/
+1
*
Place the check for an exit landing pad where it will be run on both code pat...
Bill Wendling
2011-09-20
1
-6
/
+15
*
Omit extracting a loop if one of the exits is a landing pad.
Bill Wendling
2011-09-20
1
-5
/
+11
*
Check the terminator, not the basic block.
Bill Wendling
2011-09-20
1
-1
/
+2
*
When extracting a basic block that ends in an 'invoke' instruction, we need to
Bill Wendling
2011-09-20
1
-7
/
+46
*
Use ArrayRef instead of an explicit 'const std::vector &'.
Bill Wendling
2011-09-20
1
-3
/
+3
*
If simple ownership works then friendship is not required.
Devang Patel
2011-09-20
1
-2
/
+1
*
Use ArrayRef instead of 'const std::vector' to pass around the list of basic ...
Bill Wendling
2011-09-20
1
-8
/
+10
*
Update GCOVLines to provide interfaces to write line table and calculate comp...
Devang Patel
2011-09-20
1
-13
/
+17
*
Fix comments.
Bill Wendling
2011-09-20
1
-4
/
+4
*
Update comment.
Devang Patel
2011-09-20
1
-2
/
+1
*
Use StringRef instead of std::string.
Devang Patel
2011-09-20
1
-1
/
+1
*
Eliminate unnecessary copy of FileName from GCOVLines.
Devang Patel
2011-09-20
1
-7
/
+6
*
There is no need to write a local utility routine to find subprogram info if ...
Devang Patel
2011-09-20
1
-10
/
+1
*
Revert r140083 and r140084 until buildbots can be fixed.
Bill Wendling
2011-09-19
1
-8
/
+1
*
If we are extracting a basic block that ends in an invoke call, we must also
Bill Wendling
2011-09-19
1
-1
/
+8
*
Fix an infinite loop where a transform in InstCombiner::visitAnd claims a con...
Eli Friedman
2011-09-19
1
-21
/
+22
*
[indvars] Fix PR10946: SCEV cannot handle Vector IVs.
Andrew Trick
2011-09-19
1
-0
/
+6
[next]