| Commit message (Expand) | Author | Age | Files | Lines |
* | fix infinite loop in instcombine with more than 4GB memcpy | Michael Liao | 2012-08-15 | 1 | -6/+4 |
* | make all Emit*() functions consult the TargetLibraryInfo information before c... | Nuno Lopes | 2012-07-25 | 1 | -1/+1 |
* | instcombine: merge the functions that remove dead allocas and dead mallocs/ca... | Nuno Lopes | 2012-07-09 | 1 | -1/+1 |
* | instcombine: disable optimization of 'invoke null/undef'. I'll move this fun... | Nuno Lopes | 2012-06-21 | 1 | -11/+11 |
* | Add support for invoke to the MemoryBuiltin analysid. | Nuno Lopes | 2012-06-21 | 1 | -2/+3 |
* | refactor the MemoryBuiltin analysis: | Nuno Lopes | 2012-06-21 | 1 | -80/+6 |
* | switch AttrListPtr::get to take an ArrayRef, simplifying a lot of clients. | Chris Lattner | 2012-05-28 | 1 | -4/+2 |
* | revert my previous patches that introduced an additional parameter to the obj... | Nuno Lopes | 2012-05-22 | 1 | -106/+60 |
* | objectsize: add a few more tests and fix a bug | Nuno Lopes | 2012-05-11 | 1 | -1/+1 |
* | objectsize: add support for GEPs with non-constant indexes | Nuno Lopes | 2012-05-10 | 1 | -31/+30 |
* | objectsize: | Nuno Lopes | 2012-05-09 | 1 | -55/+96 |
* | remove calls to calloc if the allocated memory is not used (it was already be... | Nuno Lopes | 2012-05-03 | 1 | -1/+1 |
* | add support for calloc to objectsize lowering | Nuno Lopes | 2012-05-03 | 1 | -5/+17 |
* | replace 'break's with 'return 0' in visitCallInst code for objectsize, since ... | Nuno Lopes | 2012-05-03 | 1 | -5/+5 |
* | Add support for llvm.arm.neon.vmull* intrinsics to InstCombine. Fixes | Lang Hames | 2012-05-01 | 1 | -0/+51 |
* | Reverting r155468. Chris and Chandler have convinced me that it's dangerous and | Lang Hames | 2012-04-25 | 1 | -35/+0 |
* | Add support for llvm.arm.neon.vmull* intrinsics to InstCombine. This fixes | Lang Hames | 2012-04-24 | 1 | -0/+35 |
* | Always compute all the bits in ComputeMaskedBits. | Rafael Espindola | 2012-04-04 | 1 | -10/+6 |
* | [unwind removal] We no longer have 'unwind' instructions being generated, so | Bill Wendling | 2012-02-06 | 1 | -2/+1 |
* | Narrow test further. Make bot and test happy. | Jim Grosbach | 2012-02-03 | 1 | -1/+3 |
* | Tidy up. Trailing whitespace. | Jim Grosbach | 2012-02-03 | 1 | -55/+55 |
* | Restrict InstCombine from converting varargs to or from fixed args. | Jim Grosbach | 2012-02-03 | 1 | -0/+7 |
* | Revert "Disable InstCombine unsafe folding bitcasts of calls w/ varargs." | Jim Grosbach | 2012-02-03 | 1 | -5/+14 |
* | Disable InstCombine unsafe folding bitcasts of calls w/ varargs. | Jim Grosbach | 2012-02-01 | 1 | -14/+5 |
* | continue making the world safe for ConstantDataVector. At this point, | Chris Lattner | 2012-01-27 | 1 | -6/+9 |
* | Extend Attributes to 64 bits | Kostya Serebryany | 2012-01-20 | 1 | -2/+1 |
* | Add support for vectors of pointers. | Nadav Rotem | 2011-12-05 | 1 | -0/+2 |
* | Zap some completely ridiculous code. There's probably a miscompile here, but... | Eli Friedman | 2011-11-29 | 1 | -1/+1 |
* | Refactor code to use new attribute getters on CallSite for NoCapture and ByVal. | Nick Lewycky | 2011-11-20 | 1 | -2/+2 |
* | Stop emitting instructions with the name "tmp" they eat up memory and have to... | Benjamin Kramer | 2011-09-27 | 1 | -8/+6 |
* | Split the init.trampoline intrinsic, which currently combines GCC's | Duncan Sands | 2011-09-06 | 1 | -10/+87 |
* | When inserting new instructions, use getFirstInsertionPt instead of | Bill Wendling | 2011-08-25 | 1 | -1/+1 |
* | Add the 'resume' instruction for the new EH rewrite. | Bill Wendling | 2011-07-31 | 1 | -3/+5 |
* | Revert r136253, r136263, r136269, r136313, r136325, r136326, r136329, r136338, | Bill Wendling | 2011-07-30 | 1 | -5/+3 |
* | Merge the contents from exception-handling-rewrite to the mainline. | Bill Wendling | 2011-07-27 | 1 | -3/+5 |
* | Convert TargetData::getIndexedOffset to use ArrayRef. | Jay Foad | 2011-07-19 | 1 | -2/+1 |
* | land David Blaikie's patch to de-constify Type, with a few tweaks. | Chris Lattner | 2011-07-18 | 1 | -34/+34 |
* | Convert CallInst and InvokeInst APIs to use ArrayRef. | Jay Foad | 2011-07-15 | 1 | -4/+4 |
* | Change Intrinsic::getDeclaration and friends to take an ArrayRef. | Benjamin Kramer | 2011-07-14 | 1 | -1/+1 |
* | Second attempt at de-constifying LLVM Types in FunctionType::get(), | Jay Foad | 2011-07-12 | 1 | -5/+5 |
* | Revert r134893 and r134888 (and related patches in other trees). It was causing | Bill Wendling | 2011-07-12 | 1 | -5/+5 |
* | De-constify Types in FunctionType::get(). | Jay Foad | 2011-07-11 | 1 | -5/+5 |
* | Generalize @llvm.ctlz, @llvm.cttz, and @llvm.ctpop to work on vectors of inte... | Owen Anderson | 2011-07-01 | 1 | -2/+6 |
* | Revamp the "ConstantStruct::get" methods. Previously, these were scattered | Chris Lattner | 2011-06-20 | 1 | -6/+11 |
* | Final step of instcombine debuginfo; switch a couple more places over to Inse... | Eli Friedman | 2011-05-27 | 1 | -0/+1 |
* | Revert "InstCombine: Turn mul.with.overflow(X, 2) into the cheaper add.with.o... | Benjamin Kramer | 2011-05-21 | 1 | -14/+0 |
* | InstCombine: Turn mul.with.overflow(X, 2) into the cheaper add.with.overflow(... | Benjamin Kramer | 2011-05-21 | 1 | -0/+14 |
* | Add comment. | Evan Cheng | 2011-05-19 | 1 | -0/+1 |
* | More instcombine cleanup, towards improving debug line info. | Eli Friedman | 2011-05-18 | 1 | -1/+1 |
* | More instcombine cleanup aimed towards improving debug line info. | Eli Friedman | 2011-05-18 | 1 | -21/+18 |