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
*
Use the AttributeSet instead of AttributeWithIndex.
Bill Wendling
2013-01-27
1
-25
/
+18
*
Remove some introspection functions.
Bill Wendling
2013-01-25
1
-6
/
+8
*
Use the new 'getSlotIndex' method to retrieve the attribute's slot index.
Bill Wendling
2013-01-25
1
-1
/
+1
*
Remove trailing whitespace.
Craig Topper
2013-01-24
1
-134
/
+134
*
Revert "InstCombine: Clean up weird code that talks about a modulus that's lo...
Benjamin Kramer
2013-01-23
1
-1
/
+6
*
InstCombine: Clean up weird code that talks about a modulus that's long gone.
Benjamin Kramer
2013-01-23
1
-6
/
+1
*
Remove the last of uses that use the Attribute object as a collection of attr...
Bill Wendling
2013-01-23
1
-13
/
+21
*
Have AttributeSet::getRetAttributes() return an AttributeSet instead of Attri...
Bill Wendling
2013-01-21
1
-4
/
+4
*
Make AttributeSet::getFnAttributes() return an AttributeSet instead of an Att...
Bill Wendling
2013-01-21
1
-6
/
+7
*
Transform (sub 0, (zext bool to A)) to (sext bool to A) and
Paul Redmond
2013-01-21
1
-0
/
+10
*
Use AttributeSet accessor methods instead of Attribute accessor methods.
Bill Wendling
2013-01-18
1
-3
/
+3
*
Push some more methods down to hide the use of the Attribute class.
Bill Wendling
2013-01-18
1
-2
/
+2
*
Check for less than 0 in shuffle mask instead of -1. It's more consistent wit...
Craig Topper
2013-01-18
1
-1
/
+1
*
Remove trailing whitespace. Remove new lines between closing brace and 'else'
Craig Topper
2013-01-18
1
-7
/
+5
*
Teach InstCombine to optimize extract of a value from a vector add operation ...
Nadav Rotem
2013-01-15
1
-0
/
+9
*
1. Hoist minus sign as high as possible in an attempt to reveal
Shuxin Yang
2013-01-15
1
-31
/
+60
*
Remove trailing spaces.
Jakub Staszak
2013-01-14
2
-40
/
+40
*
This change is to implement following rules under the condition C_A and/or C_R
Shuxin Yang
2013-01-14
1
-8
/
+127
*
Fix Casting Bug
David Greene
2013-01-14
1
-1
/
+3
*
Fix typo in comment.
Nick Lewycky
2013-01-14
1
-1
/
+1
*
Teach InstCombine to hoist FABS and FNEG through FPTRUNC instructions. The a...
Owen Anderson
2013-01-10
1
-1
/
+27
*
Consider expression "0.0 - X" as the negation of X if
Shuxin Yang
2013-01-09
2
-3
/
+3
*
Cosmetical changne in order to conform to coding std.
Shuxin Yang
2013-01-07
1
-5
/
+6
*
This change is to implement following rules:
Shuxin Yang
2013-01-07
2
-0
/
+129
*
When code size is the priority (Oz, MinSize attribute), help llvm
Quentin Colombet
2013-01-07
2
-0
/
+71
*
switch from pointer equality comparison to MDNode::getMostGenericTBAA
Chris Lattner
2013-01-05
1
-4
/
+4
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
13
-19
/
+19
*
Add extra CHECK to make sure that 'or' instruction was replaced.
Jakub Staszak
2012-12-31
1
-0
/
+2
*
teach instcombine to preserve TBAA tag when merging two stores, part of
Chris Lattner
2012-12-31
1
-0
/
+7
*
Grammo.
Jakub Staszak
2012-12-31
1
-1
/
+1
*
Remove the getAttributesAtIndex and getNumAttrs methods in favor of using the...
Bill Wendling
2012-12-31
1
-3
/
+2
*
Transform (A == C1 || A == C2) into (A & ~(C1 ^ C2)) == C1
Jakub Staszak
2012-12-31
1
-0
/
+12
*
convert a bunch of callers from DataLayout::getIndexedOffset() to GEP::accumu...
Nuno Lopes
2012-12-30
2
-12
/
+8
*
Remove mid-optimizer warning. This situation should be handled differently,
Nick Lewycky
2012-12-26
1
-5
/
+2
*
Add LLVMContext::emitWarning methods and use them. <rdar://problem/12867368>
Bob Wilson
2012-12-24
1
-2
/
+3
*
Remove trailing whitespace
Craig Topper
2012-12-22
1
-126
/
+126
*
Formatting fixes. Remove some unnecessary 'else' after 'return'. No functiona...
Craig Topper
2012-12-20
1
-21
/
+14
*
Removing trailing whitespace
Craig Topper
2012-12-20
1
-146
/
+146
*
Transform (x&C)>V into (x&C)!=0 where possible
Paul Redmond
2012-12-19
1
-0
/
+10
*
Inline the 'hasIncompatibleWithVarArgsAttrs' method into its only uses. And s...
Bill Wendling
2012-12-19
1
-1
/
+2
*
Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...
Bill Wendling
2012-12-19
1
-14
/
+14
*
Make sure the buffer, which containas an instance of APFloat, has proper alig...
Shuxin Yang
2012-12-19
1
-7
/
+5
*
rdar://12801297
Shuxin Yang
2012-12-18
1
-0
/
+715
*
Add back FoldOpIntoPhi optimizations with fix. Included test cases to help ca...
Michael Ilseman
2012-12-14
1
-0
/
+4
*
rdar://12753946
Shuxin Yang
2012-12-14
1
-0
/
+32
*
Revert r170020, "Simplify negated bit test", for now.
NAKAMURA Takumi
2012-12-13
1
-18
/
+0
*
Revert "Restore the PHI optimization I accidently removed" temporarily since
Eric Christopher
2012-12-13
1
-4
/
+0
*
Missed these calls from the previous rename somehow.
Rafael Espindola
2012-12-13
1
-2
/
+2
*
Rename isPowerOfTwo to isKnownToBeAPowerOfTwo.
Rafael Espindola
2012-12-13
1
-2
/
+2
*
Pattern matching code for intrinsics.
Michael Ilseman
2012-12-13
1
-15
/
+17
[next]