| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | convert fptosi(sitofp x) -> x if the fp value has enough bits in its mantissa | Chris Lattner | 2008-05-19 | 1 | -9/+27 |
* | Fold FP comparisons where one operand is converted from an integer | Chris Lattner | 2008-05-19 | 1 | -0/+160 |
* | remove debug output | Chris Lattner | 2008-05-19 | 1 | -3/+1 |
* | be more aggressive about transforming add -> or when the operands have no | Chris Lattner | 2008-05-19 | 1 | -0/+19 |
* | Fix PR2339 | Chris Lattner | 2008-05-18 | 1 | -1/+1 |
* | Move isTrueWhenEqual to ICmpInst. | Nick Lewycky | 2008-05-17 | 1 | -20/+4 |
* | API change for {BinaryOperator|CmpInst|CastInst}::create*() --> Create. Legac... | Gabor Greif | 2008-05-16 | 1 | -258/+258 |
* | implement PR2328. | Chris Lattner | 2008-05-16 | 1 | -0/+4 |
* | Fix a bunch of 80col violations that arose from the Create API change. Tweak ... | Gabor Greif | 2008-05-15 | 1 | -9/+16 |
* | Situations can arise when you have a function called that returns a 'void', but | Bill Wendling | 2008-05-14 | 1 | -2/+2 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -5/+12 |
* | don't sink invokes, even if they are readonly. This fixes a | Chris Lattner | 2008-05-09 | 1 | -1/+2 |
* | Implement PR2298. This transforms: | Chris Lattner | 2008-05-09 | 1 | -0/+13 |
* | More than just loads can read from memory: readonly calls like strlen | Chris Lattner | 2008-05-08 | 1 | -4/+4 |
* | Make instcombine's DSE respect loads as well as stores. It is not safe to | Chris Lattner | 2008-05-08 | 1 | -1/+1 |
* | Turn StripPointerCast() into a method | Anton Korobeynikov | 2008-05-07 | 1 | -1/+1 |
* | Fix a bug in the ComputeMaskedBits logic for multiply. | Dan Gohman | 2008-05-07 | 1 | -2/+2 |
* | Make StripPointerCast a common function (should we mak it method of Value ins... | Anton Korobeynikov | 2008-05-06 | 1 | -2/+1 |
* | Fix typo. | Devang Patel | 2008-05-06 | 1 | -1/+1 |
* | Correct the value of LowBits in srem and urem handling in | Dan Gohman | 2008-05-06 | 1 | -6/+6 |
* | Do not sink getresult. | Devang Patel | 2008-05-03 | 1 | -1/+3 |
* | Fix a mistake in the computation of leading zeros for udiv. | Dan Gohman | 2008-05-02 | 1 | -3/+5 |
* | Fix an overaggressive SimplifyDemandedBits optimization on urem. This | Dan Gohman | 2008-05-01 | 1 | -4/+5 |
* | move lowering of llvm.memset -> store from simplify libcalls | Chris Lattner | 2008-04-30 | 1 | -7/+49 |
* | don't eliminate load from volatile value on paths where the load is dead. | Chris Lattner | 2008-04-29 | 1 | -0/+9 |
* | fix a subtle volatile handling bug. | Chris Lattner | 2008-04-29 | 1 | -7/+12 |
* | don't delete the last store to an alloca if the store is volatile. | Chris Lattner | 2008-04-29 | 1 | -1/+1 |
* | Teach InstCombine's ComputeMaskedBits what SelectionDAG's | Dan Gohman | 2008-04-28 | 1 | -45/+100 |
* | change comments per review | Dale Johannesen | 2008-04-25 | 1 | -2/+2 |
* | Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 | Nick Lewycky | 2008-04-25 | 1 | -6/+2 |
* | Rewrite previous patch to suit Chris's preference. | Dale Johannesen | 2008-04-23 | 1 | -21/+31 |
* | Do not change the type of a ByVal argument to a | Dale Johannesen | 2008-04-23 | 1 | -4/+17 |
* | Don't do: "(X & 4) >> 1 == 2 --> (X & 4) == 4" if there are more than one us... | Evan Cheng | 2008-04-23 | 1 | -2/+3 |
* | remove dead code. | Chris Lattner | 2008-04-22 | 1 | -1/+0 |
* | optimize "p != gep p, ..." better. This allows us to compile | Chris Lattner | 2008-04-22 | 1 | -6/+119 |
* | g++-4.3 build-fix: CHAR_BIT requires <climits>. | Torok Edwin | 2008-04-20 | 1 | -0/+1 |
* | Switch to using Simplified ConstantFP::get API. | Chris Lattner | 2008-04-20 | 1 | -5/+4 |
* | Teach InstCombine's ComputeMaskedBits to handle pointer expressions | Dan Gohman | 2008-04-10 | 1 | -140/+299 |
* | API changes for class Use size reduction, wave 1. | Gabor Greif | 2008-04-06 | 1 | -54/+54 |
* | Don't eliminate bitcast instructions that change the type of a pointer | Nate Begeman | 2008-03-31 | 1 | -0/+5 |
* | Handle a special case xor undef, undef -> 0. Technically this should be trans... | Evan Cheng | 2008-03-25 | 1 | -1/+6 |
* | Transform (zext (or (icmp), (icmp))) to (or (zext (cimp), (zext icmp))) if at... | Evan Cheng | 2008-03-24 | 1 | -96/+129 |
* | Fix the build for gcc-4.2. | Duncan Sands | 2008-03-21 | 1 | -1/+2 |
* | Teach masked value is zero about add and sub, and use MVIZ to | Chris Lattner | 2008-03-21 | 1 | -34/+87 |
* | The inst combining of inttoptr into GEP with one index was using the bit size of | Bill Wendling | 2008-03-14 | 1 | -1/+1 |
* | Reimplement the parameter attributes support, phase #1. hilights: | Chris Lattner | 2008-03-12 | 1 | -39/+28 |
* | Skip functions that return multiple values. | Devang Patel | 2008-03-11 | 1 | -0/+3 |
* | Don't eliminate blocks that are only reachable by unwind_to. | Nick Lewycky | 2008-03-09 | 1 | -2/+8 |
* | Don't try to simplify urem and srem using arithmetic rules that don't work | Nick Lewycky | 2008-03-06 | 1 | -43/+96 |
* | Folding or(fcmp,fcmp) only works if the operands of the fcmps are the same fp... | Chris Lattner | 2008-02-29 | 1 | -1/+2 |