index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
InstCombine
Commit message (
Expand
)
Author
Age
Files
Lines
*
Apply the InstCombine fptrunc sqrt optimization to llvm.sqrt
Hal Finkel
2013-11-16
1
-6
/
+11
*
InstCombine: fold (A >> C) == (B >> C) --> (A^B) < (1 << C) for constant Cs.
Benjamin Kramer
2013-11-16
1
-0
/
+18
*
Add instcombine visitor for addrspacecast
Matt Arsenault
2013-11-15
2
-0
/
+5
*
Update the docs to match the function name.
Nadav Rotem
2013-11-13
1
-1
/
+1
*
Fold (iszero(A&K1) | iszero(A&K2)) -> (A&(K1|K2)) != (K1|K2) if we know that...
Nadav Rotem
2013-11-12
1
-3
/
+50
*
Scalarize select vector arguments when extracted.
Matt Arsenault
2013-11-04
1
-0
/
+32
*
Remove x86_sse42_crc32_64_8 intrinsic. It has no functional difference from x...
Craig Topper
2013-10-15
1
-1
/
+0
*
Pull fptrunc's upwards through selects when one of the select's selectands wa...
Owen Anderson
2013-10-03
1
-0
/
+13
*
Make gep i8* X, -(ptrtoint Y) transform work with address spaces
Matt Arsenault
2013-10-03
1
-8
/
+10
*
Use right address space size in InstCombineCompares
Matt Arsenault
2013-09-30
1
-3
/
+6
*
Constant fold ptrtoint + compare with address spaces
Matt Arsenault
2013-09-30
1
-1
/
+1
*
InstCombine: Replace manual fast math flag copying with the new IRBuilder RAI...
Benjamin Kramer
2013-09-30
1
-22
/
+20
*
Fix a bug in InstCombine where it attempted to cast a Value* to an Instruction*
Joey Gouly
2013-09-30
1
-2
/
+2
*
Use type helper functions
Matt Arsenault
2013-09-27
2
-3
/
+2
*
InstCombine: Only foldSelectICmpAndOr for integer types
Justin Bogner
2013-09-27
1
-1
/
+1
*
Push analysis passes to InstSimplify when they're around anyways.
Benjamin Kramer
2013-09-24
1
-1
/
+1
*
InstCombine: Remove unused argument. No functionality change.
Benjamin Kramer
2013-09-20
2
-12
/
+6
*
InstCombine: Canonicalize (gep i8* X, -(ptrtoint Y)) to (sub (ptrtoint X), (p...
Benjamin Kramer
2013-09-20
1
-0
/
+14
*
[Fast-math] Disable "(C1/X)*C2 => (C1*C2)/X" if C1/X has multiple uses.
Shuxin Yang
2013-09-19
1
-3
/
+6
*
InstCombine: Don't allow turning vector-of-pointer loads into vector-of-integer.
Benjamin Kramer
2013-09-19
1
-1
/
+2
*
Revert the load slicing done in r190870.
Quentin Colombet
2013-09-17
1
-285
/
+0
*
Cleanup handling of constant function casts.
Matt Arsenault
2013-09-17
1
-24
/
+8
*
[InstCombiner] Slice a big load in two loads when the elements are next to each
Quentin Colombet
2013-09-17
1
-0
/
+285
*
Get rid of unused isPodLike definitions.
Eli Friedman
2013-09-11
1
-2
/
+0
*
[InstCombiner] Expose opportunities to merge subtract and comparison.
Quentin Colombet
2013-09-09
1
-1
/
+46
*
Use type helper functions.
Matt Arsenault
2013-09-06
1
-1
/
+1
*
Consistently use dbgs() in debug printing
Matt Arsenault
2013-09-05
4
-17
/
+17
*
InstCombine: allow unmasked icmps to be combined with logical ops
Tim Northover
2013-09-04
1
-9
/
+29
*
InstCombine: look for masked compares with subset relation
Tim Northover
2013-09-04
1
-11
/
+75
*
Teach InstCombineLoadCast about address spaces.
Matt Arsenault
2013-09-03
1
-2
/
+2
*
Use type form of getIntPtrType in alloca visitor.
Matt Arsenault
2013-09-03
1
-2
/
+2
*
InstCombine: Check for zero shift amounts before subtracting one causing inte...
Benjamin Kramer
2013-08-30
1
-10
/
+15
*
Fix typo.
Matt Arsenault
2013-08-28
1
-2
/
+2
*
Teach InstCombine about address spaces
Matt Arsenault
2013-08-21
2
-21
/
+33
*
Use pop_back_val() instead of both back() and pop_back().
Jakub Staszak
2013-08-19
1
-2
/
+1
*
Teach InstCombine visitGetElementPtr about address spaces
Matt Arsenault
2013-08-19
3
-20
/
+26
*
Cleanup visitGetElementPtr to make address space change easier
Matt Arsenault
2013-08-19
1
-11
/
+13
*
commonPointerCast cleanups to make address space change easier
Matt Arsenault
2013-08-19
1
-5
/
+11
*
Revert non-test parts of r188507
Matt Arsenault
2013-08-19
1
-1
/
+9
*
InstCombine: Use isAllOnesValue() instead of explicit -1.
Jim Grosbach
2013-08-16
1
-1
/
+1
*
InstCombine: Simplify if(x!=0 && x!=-1).
Jim Grosbach
2013-08-16
1
-1
/
+6
*
Don't do FoldCmpLoadFromIndexedGlobal for non inbounds GEPs
Matt Arsenault
2013-08-15
1
-9
/
+2
*
Fix always creating GEP with i32 indices
Matt Arsenault
2013-08-14
2
-10
/
+16
*
Use type helper functions instead of cast
Matt Arsenault
2013-08-14
2
-11
/
+8
*
Use array initializer, space around operator
Matt Arsenault
2013-08-14
1
-5
/
+3
*
Fix big-endian handling of integer-to-vector bitcasts in InstCombine
Richard Sandiford
2013-08-12
1
-20
/
+32
*
Fix missing -*- C++ -*-s
Matt Arsenault
2013-08-06
1
-1
/
+1
*
Preserve fast-math flags when folding (fsub x, (fneg y)) to (fadd x, y).
Owen Anderson
2013-07-30
1
-4
/
+11
*
Change behavior of calling bitcasted alias functions.
Matt Arsenault
2013-07-30
1
-9
/
+9
*
Fix variable name.
Owen Anderson
2013-07-26
1
-2
/
+2
[next]