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
/
test
/
Transforms
/
InstCombine
Commit message (
Expand
)
Author
Age
Files
Lines
*
Teach InstCombine to optimize extract of a value from a vector add operation ...
Nadav Rotem
2013-01-15
1
-0
/
+10
*
1. Hoist minus sign as high as possible in an attempt to reveal
Shuxin Yang
2013-01-15
2
-33
/
+92
*
This change is to implement following rules under the condition C_A and/or C_R
Shuxin Yang
2013-01-14
1
-0
/
+96
*
Teach InstCombine to hoist FABS and FNEG through FPTRUNC instructions. The a...
Owen Anderson
2013-01-10
1
-0
/
+19
*
Consider expression "0.0 - X" as the negation of X if
Shuxin Yang
2013-01-09
1
-2
/
+13
*
This change is to implement following rules:
Shuxin Yang
2013-01-07
1
-0
/
+85
*
When code size is the priority (Oz, MinSize attribute), help llvm
Quentin Colombet
2013-01-07
1
-0
/
+29
*
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...
Dmitri Gribenko
2013-01-01
2
-2
/
+2
*
recommit r171298 (add support for PHI nodes to ObjectSizeOffsetVisitor). Hope...
Nuno Lopes
2012-12-31
1
-0
/
+128
*
Revert "add support for PHI nodes to ObjectSizeOffsetVisitor"
Benjamin Kramer
2012-12-31
1
-54
/
+0
*
Add extra CHECK to make sure that 'or' instruction was replaced.
Jakub Staszak
2012-12-31
1
-0
/
+1
*
add support for PHI nodes to ObjectSizeOffsetVisitor
Nuno Lopes
2012-12-31
1
-0
/
+54
*
teach instcombine to preserve TBAA tag when merging two stores, part of
Chris Lattner
2012-12-31
1
-0
/
+34
*
Transform (A == C1 || A == C2) into (A & ~(C1 ^ C2)) == C1
Jakub Staszak
2012-12-31
1
-0
/
+11
*
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...
Dmitri Gribenko
2012-12-30
1
-2
/
+2
*
Tests: rewrite 'opt ... %s' to 'opt ... < %s' so that opt does not emit a Mod...
Dmitri Gribenko
2012-12-30
8
-8
/
+8
*
Transform (x&C)>V into (x&C)!=0 where possible
Paul Redmond
2012-12-19
1
-0
/
+17
*
rdar://12801297
Shuxin Yang
2012-12-18
1
-0
/
+102
*
Add back FoldOpIntoPhi optimizations with fix. Included test cases to help ca...
Michael Ilseman
2012-12-14
1
-0
/
+39
*
Fix a crash in ValueTracking on vectors of pointers.
Nadav Rotem
2012-12-14
1
-0
/
+10
*
rdar://12753946
Shuxin Yang
2012-12-14
1
-6
/
+34
*
Revert r170020, "Simplify negated bit test", for now.
NAKAMURA Takumi
2012-12-13
1
-26
/
+0
*
unHECKify test fixed by Jacob in r159003.
Jakub Staszak
2012-12-12
1
-8
/
+6
*
Simplify negated bit test
David Majnemer
2012-12-12
1
-0
/
+26
*
- Fix a problematic way in creating all-the-1 APInt.
Shuxin Yang
2012-12-12
1
-0
/
+10
*
Fix typos in CHECK lines.
Dmitri Gribenko
2012-12-06
1
-1
/
+1
*
fix a typo
Shuxin Yang
2012-12-05
1
-1
/
+1
*
For rdar://12329730, last piece.
Shuxin Yang
2012-12-04
3
-4
/
+20
*
rdar://12329730 (2nd part, revised)
Shuxin Yang
2012-12-04
1
-1
/
+1
*
rdar://12329730 (2nd part)
Shuxin Yang
2012-12-04
3
-4
/
+80
*
instcombine: Migrate puts optimizations
Meador Inge
2012-11-29
1
-0
/
+31
*
fix a typo
Shuxin Yang
2012-11-29
1
-1
/
+1
*
instcombine: Migrate fputs optimizations
Meador Inge
2012-11-29
2
-1
/
+45
*
instcombine: Migrate fwrite optimizations
Meador Inge
2012-11-29
1
-0
/
+57
*
instcombine: Migrate fprintf optimizations
Meador Inge
2012-11-29
2
-0
/
+109
*
Instruction::isAssociative() returns true for fmul/fadd if they are tagged "u...
Shuxin Yang
2012-11-29
1
-0
/
+32
*
instcombine: Don't replace all uses for instructions with no uses
Meador Inge
2012-11-27
1
-0
/
+41
*
Move sprintf simplifier tests to test/Transforms/InstCombine
Meador Inge
2012-11-27
1
-6
/
+26
*
instcombine: Migrate sprintf optimizations
Meador Inge
2012-11-27
2
-0
/
+100
*
Get rid of the getPointeeAlignment helper function from
Eli Friedman
2012-11-26
1
-0
/
+10
*
rdar://12329730 (defect 2)
Shuxin Yang
2012-11-26
1
-0
/
+15
*
instcombine: Migrate printf optimizations
Meador Inge
2012-11-26
2
-0
/
+143
*
instcombine: Migrate toascii optimizations
Meador Inge
2012-11-26
1
-0
/
+59
*
instcombine: Migrate isascii optimizations
Meador Inge
2012-11-26
1
-0
/
+32
*
instcombine: Migrate isdigit optimizations
Meador Inge
2012-11-26
1
-0
/
+48
*
Fix bogus comment; no functional change.
Meador Inge
2012-11-26
1
-1
/
+2
*
instcombine: Migrate *abs optimizations
Meador Inge
2012-11-26
1
-0
/
+41
*
instcombine: Migrate ffs* optimizations
Meador Inge
2012-11-25
1
-0
/
+133
*
Disallow the undocumented practice of starting the datalayout string with '-'.
Patrik Hägglund
2012-11-23
1
-1
/
+1
*
Add more functions to the target library information.
Meador Inge
2012-11-22
1
-0
/
+99
[next]