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
/
Scalar
/
InstructionCombining.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Tone down an overzealous optimization.
Dale Johannesen
2007-10-03
1
-3
/
+21
*
Improve comment.
Duncan Sands
2007-09-19
1
-1
/
+2
*
A global variable with external weak linkage can be null, while
Duncan Sands
2007-09-19
1
-2
/
+6
*
Instcombine x-((x/y)*y) into a remainder operator.
Dan Gohman
2007-09-17
1
-1
/
+12
*
Factor the trampoline transformation into a subroutine.
Duncan Sands
2007-09-17
1
-137
/
+148
*
Remove the assumption that FP's are either float or
Dale Johannesen
2007-09-14
1
-3
/
+6
*
silence a bogus gcc warning.
Chris Lattner
2007-09-14
1
-1
/
+1
*
Turn calls to trampolines into calls to the underlying
Duncan Sands
2007-09-11
1
-0
/
+138
*
remove some dead code, this is handled by constant folding.
Chris Lattner
2007-09-10
1
-8
/
+1
*
Don't zap back to back volatile load/stores
Chris Lattner
2007-09-07
1
-1
/
+1
*
Next round of APFloat changes.
Dale Johannesen
2007-09-06
1
-1
/
+1
*
Use isTrueWhenEqual. Thanks Chris!
Nick Lewycky
2007-09-06
1
-8
/
+13
*
When the two operands of an icmp are equal, there are five possible predicates
Nick Lewycky
2007-09-06
1
-1
/
+3
*
Forgot to obey 80 column rule. Fixing that.
Chuck Rose III
2007-09-05
1
-1
/
+2
*
Added default parameters to GetElementPtrInstr constructor call. Visual Stud...
Chuck Rose III
2007-09-05
1
-1
/
+1
*
Update GEP constructors to use an iterator interface to fix
David Greene
2007-09-04
1
-10
/
+18
*
Cut off crazy computation. This helps PR1622 slightly.
Chris Lattner
2007-08-28
1
-0
/
+4
*
Update InvokeInst to work like CallInst
David Greene
2007-08-27
1
-1
/
+1
*
Transform a load from an undef/zero global into an undef/global even if we
Chris Lattner
2007-08-11
1
-0
/
+33
*
when we see a unaligned load from an insufficiently aligned global or
Chris Lattner
2007-08-09
1
-21
/
+39
*
It's safe to fold not of fcmp.
Nick Lewycky
2007-08-06
1
-3
/
+8
*
at the end of instcombine, explicitly clear WorklistMap.
Chris Lattner
2007-08-05
1
-7
/
+9
*
This is the patch to provide clean intrinsic function overloading support in ...
Chandler Carruth
2007-08-04
1
-2
/
+2
*
Replacing a cast with another one does not reduce the number of
Chris Lattner
2007-08-02
1
-5
/
+3
*
Disable an xform that causes an infinite loop. This fixes PR1594
Chris Lattner
2007-08-02
1
-0
/
+1
*
wrap some long lines. Major offenders that are left include
Chris Lattner
2007-08-02
1
-1
/
+2
*
Enhance instcombine to be more aggressive about folding casts of
Chris Lattner
2007-08-02
1
-32
/
+42
*
New CallInst interface to address GLIBCXX_DEBUG errors caused by
David Greene
2007-08-01
1
-1
/
+1
*
Fix a bug in GetKnownAlignment of packed structs.
Lauro Ramos Venancio
2007-07-31
1
-3
/
+5
*
Fix a typo/thinko.
Reid Spencer
2007-07-30
1
-1
/
+1
*
completely remove a transformation that is unsafe in the face of
Chris Lattner
2007-07-23
1
-36
/
+0
*
Apply temporary work around to fix llvm mis-compilation
Devang Patel
2007-07-21
1
-1
/
+3
*
this xform is already done by the constant folder.
Chris Lattner
2007-07-20
1
-6
/
+1
*
Optimize alignment of loads and stores.
Dan Gohman
2007-07-20
1
-0
/
+10
*
Fix comments about vectors to use the current wording.
Dan Gohman
2007-07-16
1
-5
/
+5
*
Repair a regression in Transforms/InstCombine/mul.ll that Reid noticed.
Chris Lattner
2007-07-16
1
-0
/
+13
*
Implement shift-simplify.ll:test[45].
Chris Lattner
2007-07-15
1
-11
/
+23
*
Implement shift-simplify.ll:test3, turning:
Chris Lattner
2007-07-15
1
-103
/
+116
*
Significantly improve the documentation of the instcombine divide/compare
Chris Lattner
2007-06-21
1
-35
/
+51
*
refactor a bunch of code out of visitICmpInstWithInstAndIntCst into its own
Chris Lattner
2007-06-20
1
-123
/
+134
*
silence a bogus warning Duraid ran into.
Chris Lattner
2007-06-19
1
-1
/
+1
*
Generalize many transforms to work on ~ of vectors in addition to ~ of
Chris Lattner
2007-06-15
1
-29
/
+31
*
Implement two xforms:
Chris Lattner
2007-06-15
1
-6
/
+26
*
delete some obviously dead vector operations, which deletes a few thousand
Chris Lattner
2007-06-15
1
-1
/
+12
*
Fix PR1499.
Lauro Ramos Venancio
2007-06-06
1
-0
/
+4
*
fix a miscompilation when passing a float through varargs
Chris Lattner
2007-05-23
1
-2
/
+1
*
Fix Transforms/InstCombine/2007-05-18-CastFoldBug.ll, a bug that devastates
Chris Lattner
2007-05-19
1
-0
/
+8
*
Fix Transforms/InstCombine/2007-05-14-Crash.ll
Chris Lattner
2007-05-15
1
-7
/
+16
*
Fix typos.
Dan Gohman
2007-05-11
1
-1
/
+1
*
fix regressions from my previous checking, including
Chris Lattner
2007-05-11
1
-2
/
+2
[next]