| Commit message (Expand) | Author | Age | Files | Lines |
| * | "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 |
| * | Throttle back "fold select into operand" transformation. InstCombine should n... | Evan Cheng | 2009-03-31 | 1 | -52/+81 |
| * | Fix PR3874 by restoring a condition I removed, but making it more | Chris Lattner | 2009-03-25 | 1 | -1/+2 |
| * | oops, I intended to remove this, not comment it out. Thanks Duncan! | Chris Lattner | 2009-03-24 | 1 | -2/+1 |
| * | canonicalize inttoptr and ptrtoint instructions which cast pointers | Chris Lattner | 2009-03-24 | 1 | -5/+37 |
| * | two changes: | Chris Lattner | 2009-03-24 | 1 | -45/+29 |
| * | Factorize out a concept - no functionality change. | Duncan Sands | 2009-03-21 | 1 | -4/+3 |
| * | Fix instcombine to not introduce undefined shifts when merging two | Chris Lattner | 2009-03-20 | 1 | -2/+14 |
| * | Don't load values out of global constants with weak | Duncan Sands | 2009-03-20 | 1 | -3/+4 |
| * | Fix PR3826 - InstComb assert with vector shift, by not calling ComputeNumSign... | Chris Lattner | 2009-03-18 | 1 | -7/+8 |
| * | Remove a condition which is always true. | Chris Lattner | 2009-03-17 | 1 | -3/+3 |
| * | One more place where debug info affects codegen. | Dale Johannesen | 2009-03-13 | 1 | -1/+2 |
| * | Oops...I committed too much. | Bill Wendling | 2009-03-13 | 1 | -4/+3 |
| * | Temporarily XFAIL this test. | Bill Wendling | 2009-03-13 | 1 | -3/+4 |
| * | Skip interleaved debug info when fast-forwarding through | Dale Johannesen | 2009-03-11 | 1 | -2/+2 |
| * | Removing a dead debug intrinsic shouldn't trigger | Dale Johannesen | 2009-03-10 | 1 | -3/+6 |
| * | change the MemIntrinsic get/setAlignment method to take an unsigned | Chris Lattner | 2009-03-08 | 1 | -5/+5 |
| * | Introduce a new MemTransferInst pseudo class, which is a common | Chris Lattner | 2009-03-08 | 1 | -1/+1 |
| * | Fix another case where debug info was affecting | Dale Johannesen | 2009-03-05 | 1 | -4/+17 |
| * | Fix another case where a dbg.declare meant something | Dale Johannesen | 2009-03-05 | 1 | -6/+13 |
| * | Always skip ptr-to-ptr bitcasts when counting, | Dale Johannesen | 2009-03-04 | 1 | -5/+5 |
| * | Make my earlier patch to skip debug intrinsics | Dale Johannesen | 2009-03-04 | 1 | -2/+1 |