| Commit message (Expand) | Author | Age | Files | Lines |
* | Stop using memdep for a check that didn't really make sense with memdep. In t... | Eli Friedman | 2011-06-15 | 1 | -11/+9 |
* | Add "unknown" results for memdep, which mean "I don't know whether a dependen... | Eli Friedman | 2011-06-15 | 1 | -1/+1 |
* | PR10067: Add missing safety check to call return transformation in MemCpyOpt:... | Eli Friedman | 2011-06-02 | 1 | -4/+21 |
* | Teach valuetracking that byval arguments with a specified alignment are | Chris Lattner | 2011-05-23 | 1 | -5/+10 |
* | Preserve line number info. | Devang Patel | 2011-05-04 | 1 | -1/+4 |
* | enhance memcpyopt to obey -fno-builtin and friends. This addresses a | Chris Lattner | 2011-05-01 | 1 | -0/+17 |
* | Fix a ton of comment typos found by codespell. Patch by | Chris Lattner | 2011-04-15 | 1 | -1/+1 |
* | Spelling fix: consequtive -> consecutive. | Duncan Sands | 2011-02-15 | 1 | -1/+1 |
* | Actually check memcpy lengths, instead of just commenting about | Dan Gohman | 2011-01-21 | 1 | -2/+4 |
* | revert 123144, reenabling the rest of memset formation. | Chris Lattner | 2011-01-12 | 1 | -3/+0 |
* | revert r123146 which disabled code that wasn't the root cause | Chris Lattner | 2011-01-12 | 1 | -2/+0 |
* | revert r123149, reenabling an improvement to memcpyopt that wasn't | Chris Lattner | 2011-01-12 | 1 | -4/+2 |
* | another random stab in the dark trying to fix llvm-gcc-i386-linux-selfhost | Chris Lattner | 2011-01-10 | 1 | -2/+4 |
* | another (more) aggressive attempt to bring llvm-gcc-i386-linux-selfhost | Chris Lattner | 2011-01-10 | 1 | -0/+2 |
* | temporarily disable memset formation from memsets in an effort to restore bui... | Chris Lattner | 2011-01-09 | 1 | -0/+3 |
* | fix a few old bugs (found by inspection) where we would zap instructions | Chris Lattner | 2011-01-09 | 1 | -1/+4 |
* | fix a latent bug in memcpyoptimizer that my recent patches exposed: it wasn't | Chris Lattner | 2011-01-08 | 1 | -2/+4 |
* | tryMergingIntoMemset can only handle constant length memsets. | Chris Lattner | 2011-01-08 | 1 | -5/+6 |
* | Merge memsets followed by neighboring memsets and other stores into | Chris Lattner | 2011-01-08 | 1 | -3/+18 |
* | fix an issue in IsPointerOffset that prevented us from recognizing that | Chris Lattner | 2011-01-08 | 1 | -3/+19 |
* | enhance memcpyopt to merge a store and a subsequent | Chris Lattner | 2011-01-08 | 1 | -53/+83 |
* | constify TargetData references. | Chris Lattner | 2011-01-08 | 1 | -86/+96 |
* | start using irbuilder to make mem intrinsics in a few passes. | Chris Lattner | 2010-12-26 | 1 | -59/+20 |
* | move isBytewiseValue out to ValueTracking.h/cpp | Chris Lattner | 2010-12-26 | 1 | -68/+1 |
* | Simplify code. | Benjamin Kramer | 2010-12-26 | 1 | -1/+1 |
* | Fix a thinko pointed out by Frits van Bommel: looking through global variable... | Benjamin Kramer | 2010-12-24 | 1 | -22/+19 |
* | MemCpyOpt: Turn memcpys from a constant into a memset if possible. | Benjamin Kramer | 2010-12-24 | 1 | -3/+45 |
* | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin | 2010-12-23 | 1 | -4/+1 |
* | Make memcpyopt TBAA-aware. | Dan Gohman | 2010-12-16 | 1 | -12/+4 |
* | enhance memcpyopt to zap memcpy's that have the same src/dst. | Chris Lattner | 2010-12-09 | 1 | -4/+13 |
* | fix PR8753, eliminating a case where we'd infinitely make a | Chris Lattner | 2010-12-09 | 1 | -0/+8 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -2/+2 |
* | fix a bozo bug I introduced in r119930, causing a miscompile of | Chris Lattner | 2010-12-01 | 1 | -1/+2 |
* | prune an llvmcontext include and simplify some code. | Chris Lattner | 2010-11-29 | 1 | -6/+3 |
* | fix comment | Chris Lattner | 2010-11-21 | 1 | -1/+0 |
* | rework some DSE paths to use the newly-public "getPointerDependencyFrom" | Chris Lattner | 2010-11-21 | 1 | -46/+37 |
* | Implement PR8644: forwarding a memcpy value to a byval, | Chris Lattner | 2010-11-21 | 1 | -44/+127 |
* | Simplify code. No change in functionality. | Benjamin Kramer | 2010-11-20 | 1 | -1/+1 |
* | slightly simplify code and substantially improve comment. Instead of | Chris Lattner | 2010-11-18 | 1 | -20/+23 |
* | remove a pointless restriction from memcpyopt. It was | Chris Lattner | 2010-11-18 | 1 | -4/+7 |
* | remove another pointless noalias check: M is a memcpy, so the | Chris Lattner | 2010-11-18 | 1 | -2/+1 |
* | use AA::isNoAlias instead of open coding it. Remove an extraneous noalias ch... | Chris Lattner | 2010-11-18 | 1 | -11/+7 |
* | rearrange some code, splitting memcpy/memcpy optimization | Chris Lattner | 2010-11-18 | 1 | -45/+56 |
* | Reapply r116831 and r116839, converting AliasAnalysis to use | Dan Gohman | 2010-10-19 | 1 | -1/+1 |
* | Revert r116831 and r116839, which are breaking selfhost builds. | Dan Gohman | 2010-10-19 | 1 | -1/+1 |
* | Oops, check in all the files for converting AliasAnalysis to | Dan Gohman | 2010-10-19 | 1 | -1/+1 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | Consistently use AliasAnalysis::UnknownSize instead of hardcoding ~0u. | Dan Gohman | 2010-10-19 | 1 | -1/+1 |
* | Generalize MemCpyOpt's handling of call slot forwarding to function properly ... | Owen Anderson | 2010-10-15 | 1 | -18/+48 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -2/+7 |