| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix some typos in a comment. | Dan Gohman | 2009-07-17 | 1 | -7/+7 |
* | Add a new Operator class, for handling Instructions and ConstantExprs | Dan Gohman | 2009-07-17 | 1 | -13/+3 |
* | Revert yesterday's change by removing the LLVMContext parameter to AllocaInst... | Owen Anderson | 2009-07-15 | 1 | -6/+4 |
* | Don't restrict the set of instructions where we try to constant-fold the | Eli Friedman | 2009-07-15 | 1 | -3/+1 |
* | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -10/+18 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -37/+37 |
* | Fix trivial todo in instcombine. | Eli Friedman | 2009-07-14 | 1 | -1/+2 |
* | PR4548: optimize zext+udiv+trunc to udiv. | Eli Friedman | 2009-07-13 | 1 | -1/+20 |
* | Canonicalize boolean +/- a constant to a select. | Eli Friedman | 2009-07-13 | 1 | -6/+8 |
* | These don't really need contexts either. | Owen Anderson | 2009-07-13 | 1 | -4/+4 |
* | Misc simplifications to InstCombiner::commonIntCastTransforms. Most of | Eli Friedman | 2009-07-13 | 1 | -60/+17 |
* | Fix comment. | Eli Friedman | 2009-07-13 | 1 | -3/+2 |
* | Move more functionality over to LLVMContext. | Owen Anderson | 2009-07-13 | 1 | -23/+29 |
* | Don't bother to call commonIntCastTransforms for bitcasts; int->int | Eli Friedman | 2009-07-13 | 1 | -7/+3 |
* | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 2009-07-13 | 1 | -18/+27 |
* | Remove check which is duplicated in | Eli Friedman | 2009-07-12 | 1 | -20/+0 |
* | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -35/+35 |
* | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -3/+3 |
* | Push LLVMContext through the PatternMatch API. | Owen Anderson | 2009-07-10 | 1 | -110/+132 |
* | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 1 | -139/+153 |
* | A little bit more LLVMContextification. | Owen Anderson | 2009-07-09 | 1 | -2/+4 |
* | "LLVMContext* " --> "LLVMContext *" | Owen Anderson | 2009-07-06 | 1 | -31/+31 |
* | Thread LLVMContext through the constant folding APIs, which touches a lot of ... | Owen Anderson | 2009-07-06 | 1 | -4/+6 |
* | Convert the first batch of passes to use LLVMContext. | Owen Anderson | 2009-07-03 | 1 | -612/+695 |
* | Fix an instcombine abort on a scalar-to-vector bitcast. This fixes PR4487. | Dan Gohman | 2009-07-01 | 1 | -1/+15 |
* | Generalize the zext(trunc(t) & C) instcombine to work even with | Dan Gohman | 2009-06-18 | 1 | -8/+21 |
* | Instcombine zext(trunc(x) & mask) to x&mask, even if the trunc has | Dan Gohman | 2009-06-17 | 1 | -0/+14 |
* | PR3439: Correct a silly mistake in the SimplifyDemandedUseBits code for | Eli Friedman | 2009-06-17 | 1 | -1/+1 |
* | Generalize a few more instcombines to be vector/scalar-independent. | Dan Gohman | 2009-06-16 | 1 | -18/+17 |
* | Generalize instcombine's isSafeToLoadUnconditionally() function | Chris Lattner | 2009-06-16 | 1 | -39/+0 |
* | Support vector casts in more places, fixing a variety of assertion | Dan Gohman | 2009-06-15 | 1 | -126/+155 |
* | Fix old-style type names in comments. | Dan Gohman | 2009-06-14 | 1 | -6/+6 |
* | Don't do (x - (y - z)) --> (x + (z - y)) on floating-point types, because | Dan Gohman | 2009-06-12 | 1 | -15/+0 |
* | Fix 4366: store to null in non-default addr space should not be | Chris Lattner | 2009-06-11 | 1 | -1/+2 |
* | PR4340: Run SimplifyDemandedVectorElts on insertelement instructions; | Eli Friedman | 2009-06-06 | 1 | -0/+6 |
* | Split the Add, Sub, and Mul instruction opcodes into separate | Dan Gohman | 2009-06-04 | 1 | -53/+163 |
* | Don't do the X * 0.0 -> 0.0 transformation in instcombine, because | Dan Gohman | 2009-06-04 | 1 | -5/+5 |
* | Fix bug in FoldFCmp_IntToFP_Cst. If inttofp is a uintofp, use unsigned instea... | Evan Cheng | 2009-05-22 | 1 | -61/+67 |
* | Teach ValueTracking a new way to analyze PHI nodes, and and teach | Dan Gohman | 2009-05-21 | 1 | -2/+4 |
* | calls in nothrow functions can be marked nothrow even if the callee | Chris Lattner | 2009-05-13 | 1 | -0/+10 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -15/+15 |
* | This transform requires valid TargetData info. Wrap it in 'if (TD)' in | Nick Lewycky | 2009-05-08 | 1 | -25/+27 |
* | Perform constant folding on operands of instructions with non-void | Dan Gohman | 2009-05-07 | 1 | -1/+3 |
* | Allow readonly functions to unwind exceptions. Teach | Duncan Sands | 2009-05-06 | 1 | -1/+1 |
* | Return null instead of false, as appropriate. | Dan Gohman | 2009-04-25 | 1 | -3/+3 |
* | Add several more icmp simplifications. Transform signed comparisons | Dan Gohman | 2009-04-25 | 1 | -82/+159 |
* | Allow i16 type indices to gep. | Sanjiv Gupta | 2009-04-24 | 1 | -6/+1 |
* | Before trying to introduce/eliminate cast/ext/trunc to make indices type as | Sanjiv Gupta | 2009-04-20 | 1 | -1/+6 |
* | Instcombine should not promote whole computation trees to "strange" | Chris Lattner | 2009-04-08 | 1 | -0/+20 |
* | fix rdar://6762290, a crash compiling cxx filt with clang. | Chris Lattner | 2009-04-07 | 1 | -3/+4 |