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
/
Analysis
/
ConstantFolding.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
teach libanalysis to fold int and fp loads from almost arbitrary
Chris Lattner
2009-10-23
1
-8
/
+185
*
move another load optimization from instcombine -> libanalysis.
Chris Lattner
2009-10-22
1
-34
/
+48
*
move 'loading i32 from string' optimization from instcombine
Chris Lattner
2009-10-22
1
-6
/
+35
*
Move some constant folding logic for loads out of instcombine into
Chris Lattner
2009-10-22
1
-0
/
+35
*
Extend ConstantFolding to understand signed overflow variants
Evan Phoenix
2009-10-05
1
-0
/
+24
*
Remove an unnnecessary LLVMContext argument in
Dan Gohman
2009-10-05
1
-2
/
+1
*
teach the optimizer how to constant fold uadd/usub intrinsics.
Chris Lattner
2009-10-05
1
-1
/
+29
*
simplify this code a bunch.
Chris Lattner
2009-10-05
1
-14
/
+14
*
code simplifications.
Chris Lattner
2009-10-05
1
-16
/
+25
*
simplify some code
Chris Lattner
2009-09-16
1
-6
/
+5
*
Teach lib/VMCore/ConstantFold.cpp how to set the inbounds keyword and
Dan Gohman
2009-09-11
1
-6
/
+2
*
Give these files top-level comments that describe the current code.
Dan Gohman
2009-09-10
1
-3
/
+7
*
Revert 80959. It isn't sufficient to solve the full problem. And it
Dan Gohman
2009-09-03
1
-12
/
+6
*
Remove the API for creating ConstantExprs with the nsw, nuw, inbounds,
Dan Gohman
2009-09-03
1
-6
/
+12
*
fix PR4848 an infinite loop when indexing down through a recursive gep
Chris Lattner
2009-09-02
1
-1
/
+1
*
Don't assume that the operand of an inttoptr is an pointer-sized integer.
Dan Gohman
2009-08-21
1
-1
/
+3
*
Change getelementptr folding to use APInt instead of uint64_t for
Dan Gohman
2009-08-21
1
-11
/
+15
*
Various comment and whitespace cleanups.
Dan Gohman
2009-08-20
1
-1
/
+1
*
Fix a bug in the over-index constant folding. When over-indexing an
Dan Gohman
2009-08-19
1
-8
/
+24
*
Canonicalize indices in a constantexpr GEP. If Indices exceed the
Dan Gohman
2009-08-19
1
-4
/
+48
*
Push LLVMContexts through the IntegerType APIs.
Owen Anderson
2009-08-13
1
-14
/
+17
*
Move a few more APIs back to 2.5 forms. The only remaining ones left to chan...
Owen Anderson
2009-07-31
1
-9
/
+9
*
Move more code back to 2.5 APIs.
Owen Anderson
2009-07-30
1
-4
/
+4
*
Move types back to the 2.5 API.
Owen Anderson
2009-07-29
1
-4
/
+4
*
Move ConstantExpr to 2.5 API.
Owen Anderson
2009-07-29
1
-26
/
+26
*
Return ConstantVector to 2.5 API.
Owen Anderson
2009-07-28
1
-1
/
+1
*
Move ConstantFP construction back to the 2.5-ish API.
Owen Anderson
2009-07-27
1
-6
/
+6
*
Remove Value::getNameLen
Daniel Dunbar
2009-07-26
1
-78
/
+44
*
Revert the ConstantInt constructors back to their 2.5 forms where possible, t...
Owen Anderson
2009-07-24
1
-10
/
+10
*
Get rid of the Pass+Context magic.
Owen Anderson
2009-07-22
1
-71
/
+71
*
llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.
Torok Edwin
2009-07-14
1
-3
/
+3
*
assert(0) -> LLVM_UNREACHABLE.
Torok Edwin
2009-07-11
1
-3
/
+4
*
Remove the vicmp and vfcmp instructions. Because we never had a release with
Nick Lewycky
2009-07-08
1
-2
/
+0
*
"LLVMContext* " --> "LLVMContext *"
Owen Anderson
2009-07-06
1
-11
/
+11
*
Thread LLVMContext through the constant folding APIs, which touches a lot of ...
Owen Anderson
2009-07-06
1
-102
/
+120
*
Support vector casts in more places, fixing a variety of assertion
Dan Gohman
2009-06-15
1
-2
/
+2
*
Change ConstantFoldConstantExpression to accept a null
Dan Gohman
2009-06-02
1
-2
/
+0
*
Use v.data() instead of &v[0] when SmallVector v might be empty.
Jay Foad
2009-05-21
1
-5
/
+5
*
Rename PaddedSize to AllocSize, in the hope that this
Duncan Sands
2009-05-09
1
-3
/
+3
*
Revert 71165. It did more than just revert 71158 and it introduced
Dan Gohman
2009-05-07
1
-4
/
+36
*
Temporarily revert r71158. It was causing a failure during a full bootstrap:
Bill Wendling
2009-05-07
1
-36
/
+4
*
Constant-fold ptrtoint+add+inttoptr to gep when the pointer is an
Dan Gohman
2009-05-07
1
-4
/
+36
*
use higher level APIs.
Chris Lattner
2009-04-03
1
-8
/
+6
*
Rename getABITypeSize to getTypePaddedSize, as
Duncan Sands
2009-01-12
1
-1
/
+1
*
Fix whitespace in comment.
Nick Lewycky
2008-12-15
1
-2
/
+1
*
undef beats zero. Fix this missed optimization opportunity. Patch by Matt Elder!
Nick Lewycky
2008-11-20
1
-1
/
+1
*
Don't try to create a mask when we don't need one. Fixes a crash.
Nick Lewycky
2008-10-24
1
-4
/
+6
*
Teach constant folding that an inttoptr of a
Duncan Sands
2008-08-13
1
-0
/
+13
*
Fix minor issues with VICmp/VFCmp constant expressions
Nate Begeman
2008-07-25
1
-1
/
+3
*
"ret (constexpr)" can't be folded into a Constant. Add a method to
Nick Lewycky
2008-05-25
1
-16
/
+45
[prev]
[next]