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
/
Scalar
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix Transforms/ScalarRepl/union-pointer.ll
Chris Lattner
2007-04-11
1
-6
/
+7
*
Turn stuff like:
Chris Lattner
2007-04-11
1
-9
/
+40
*
Simplify some comparisons to arithmetic, this implements:
Chris Lattner
2007-04-11
1
-0
/
+27
*
canonicalize (x <u 2147483648) -> (x >s -1) and (x >u 2147483647) -> (x <s 0)
Chris Lattner
2007-04-11
1
-25
/
+32
*
fix a miscompilation of:
Chris Lattner
2007-04-11
1
-63
/
+59
*
fix a regression introduced by my last patch.
Chris Lattner
2007-04-11
1
-14
/
+1
*
Simplify SROA conversion to integer in some ways, make it more general in oth...
Chris Lattner
2007-04-11
1
-131
/
+138
*
Strengthen the boundary conditions of this fold, implementing
Chris Lattner
2007-04-09
1
-3
/
+3
*
eliminate the last uses of some TLI methods.
Chris Lattner
2007-04-09
1
-3
/
+7
*
switch LSR to use isLegalAddressingMode instead of other simpler hooks
Chris Lattner
2007-04-09
1
-18
/
+21
*
Check _all_ PHINodes.
Devang Patel
2007-04-09
1
-1
/
+1
*
Insert new pre-header before new header. Original pre-header may
Devang Patel
2007-04-09
1
-2
/
+2
*
Preserve canonical loop form.
Devang Patel
2007-04-09
1
-5
/
+55
*
Do not create new pre-header. Reuse original pre-header.
Devang Patel
2007-04-09
1
-73
/
+57
*
Simpler for() loops.
Devang Patel
2007-04-09
1
-23
/
+17
*
Fix future bug. Of course, Chris spotted this.
Devang Patel
2007-04-09
1
-11
/
+12
*
More cosmetic changes.
Devang Patel
2007-04-09
1
-14
/
+18
*
Only cosmetic changes. Zero functionality Change.
Devang Patel
2007-04-09
1
-97
/
+100
*
Fix PR1304 and Transforms/InstCombine/2007-04-08-SingleEltVectorCrash.ll
Chris Lattner
2007-04-09
1
-2
/
+10
*
Eliminate useless insertelement instructions. This implements
Chris Lattner
2007-04-09
1
-0
/
+4
*
reenable this xform, whoops :)
Chris Lattner
2007-04-08
1
-1
/
+2
*
Fix regression on Instcombine/apint-or2.ll
Chris Lattner
2007-04-08
1
-30
/
+29
*
Generalize the code that handles (A&B)|(A&C) to work where B/C are not consta...
Chris Lattner
2007-04-08
1
-30
/
+83
*
Add support for cast instructions.
Nick Lewycky
2007-04-07
1
-17
/
+75
*
Completely purge DomSet. This is the (hopefully) final patch for PR1171.
Owen Anderson
2007-04-07
1
-1
/
+0
*
Support NE inequality in ValueRanges.
Nick Lewycky
2007-04-07
1
-3
/
+58
*
Cleanup. Refactor out the applying of value ranges to its own method.
Nick Lewycky
2007-04-07
1
-30
/
+35
*
Use TargetData to find the size of a type.
Nick Lewycky
2007-04-07
1
-13
/
+34
*
Strengthen icmp snuggling by doing 'compare-or-equal-to' to 'compare'
Nick Lewycky
2007-04-07
1
-16
/
+23
*
Add loop rotation pass.
Devang Patel
2007-04-07
1
-0
/
+431
*
implement Transforms/InstCombine/malloc2.ll and PR1313
Chris Lattner
2007-04-06
1
-1
/
+11
*
Use a worklist-driven algorithm instead of a recursive one.
Chris Lattner
2007-04-05
1
-27
/
+36
*
Prevent transformConstExprCastCall from generating conversions that assert
Dale Johannesen
2007-04-04
1
-0
/
+35
*
Fix 2007-04-04-BadFoldBitcastIntoMalloc.ll
Jeff Cohen
2007-04-04
1
-4
/
+5
*
Fix comment.
Duncan Sands
2007-04-04
1
-1
/
+1
*
Fix a bug I introduced with my patch yesterday which broke Qt (I converted
Chris Lattner
2007-04-03
1
-1
/
+1
*
reinstate the previous two patches, with a bugfix :)
Chris Lattner
2007-04-03
1
-493
/
+525
*
Reverting back to 1.723. The last two commits broke JM (and possibily others)...
Evan Cheng
2007-04-03
1
-524
/
+491
*
split some code out into a helper function
Chris Lattner
2007-04-03
1
-18
/
+30
*
Split a whole ton of code out of visitICmpInst into visitICmpInstWithInstAndI...
Chris Lattner
2007-04-03
1
-520
/
+524
*
Fix PR1253 and xor2.ll:test[01]
Chris Lattner
2007-04-03
1
-1
/
+30
*
allow -1 strides to reuse "1" strides.
Chris Lattner
2007-04-02
1
-1
/
+2
*
1. Make use of APInt operation instead of using ConstantExpr::getXXX.
Zhou Sheng
2007-04-02
1
-26
/
+19
*
Use uint32_t for bitwidth instead of unsigned.
Zhou Sheng
2007-04-02
1
-29
/
+29
*
Pass the type of the store access, not the type of the store, into the
Chris Lattner
2007-04-02
1
-2
/
+9
*
Wrap long line
Chris Lattner
2007-04-02
1
-3
/
+3
*
use more obvious function name.
Chris Lattner
2007-04-02
1
-1
/
+1
*
simplify (x+c)^signbit as (x+c+signbit), pointed out by PR1288. This implements
Chris Lattner
2007-04-02
1
-1
/
+7
*
Various passes before isel split edges and do other CFG-restructuring changes.
Chris Lattner
2007-04-02
1
-2
/
+175
*
print the type of an inserted IV in -debug mode.
Chris Lattner
2007-04-01
1
-3
/
+4
[next]