| Commit message (Expand) | Author | Age | Files | Lines |
* | Speculatively revert commit 121905 since it looks like it might have broken the | Duncan Sands | 2010-12-16 | 1 | -27/+0 |
* | Preserve TBAA tags when doing load PRE. | Dan Gohman | 2010-12-15 | 1 | -0/+28 |
* | Add an InstCombine transform to recognize instances of manual overflow-safe a... | Owen Anderson | 2010-12-15 | 1 | -0/+27 |
* | Teach jump threading to "look through" a select when the branch direction of ... | Frits van Bommel | 2010-12-15 | 1 | -0/+123 |
* | Fix PR8790, another instance where unreachable code can cause instruction sim... | Owen Anderson | 2010-12-15 | 1 | -0/+17 |
* | - Insert new instructions before DomBlock's terminator, | Chris Lattner | 2010-12-14 | 2 | -30/+16 |
* | fix two significant issues with FoldTwoEntryPHINode: | Chris Lattner | 2010-12-14 | 1 | -2/+5 |
* | fix yet anohter broken line | Chris Lattner | 2010-12-14 | 1 | -2/+2 |
* | reapply my recent change that disables a piece of the switch formation | Chris Lattner | 2010-12-14 | 1 | -2/+1 |
* | Fix recent buildbot breakage by pulling SimplifyCFG back to its state as of r... | Owen Anderson | 2010-12-13 | 1 | -0/+1 |
* | temporarily disable part of my previous patch, which causes an iterator inval... | Chris Lattner | 2010-12-13 | 1 | -15/+36 |
* | Fix sort predicate. qsort(3)'s predicate semantics differ from std::sort's. F... | Benjamin Kramer | 2010-12-13 | 1 | -0/+39 |
* | reinstate my patch: the miscompile was caused by an inverted branch in the | Chris Lattner | 2010-12-13 | 1 | -27/+48 |
* | Completely disable the optimization I added in r121680 until | Chris Lattner | 2010-12-13 | 1 | -27/+28 |
* | Make simplifycfg reprocess newly formed "br (cond1 | cond2)" conditions | Chris Lattner | 2010-12-13 | 1 | -0/+65 |
* | fix a bug in r121680 that upset the various buildbots. | Chris Lattner | 2010-12-13 | 1 | -0/+29 |
* | make these tests a bit less fragile | Chris Lattner | 2010-12-13 | 2 | -12/+6 |
* | enhance the "change or icmp's into switch" xform to handle one value in an | Chris Lattner | 2010-12-13 | 1 | -2/+25 |
* | merge two tests | Chris Lattner | 2010-12-13 | 2 | -30/+42 |
* | Fix my previous patch to handle a degenerate case that the llvm-gcc | Chris Lattner | 2010-12-13 | 1 | -0/+23 |
* | fix a fairly serious oversight with switch formation from | Chris Lattner | 2010-12-13 | 1 | -1/+44 |
* | Generalize the and-icmp-select instcombine further by allowing selects of the... | Benjamin Kramer | 2010-12-11 | 1 | -0/+50 |
* | Factor the (x & 2^n) ? 2^m : 0 instcombine into its own method and generalize it | Benjamin Kramer | 2010-12-11 | 1 | -0/+25 |
* | enhance memcpyopt to zap memcpy's that have the same src/dst. | Chris Lattner | 2010-12-09 | 1 | -0/+9 |
* | fix PR8753, eliminating a case where we'd infinitely make a | Chris Lattner | 2010-12-09 | 1 | -3/+16 |
* | Really check that the bits that will become zero are actually already zero | Dan Gohman | 2010-12-09 | 1 | -1/+25 |
* | reapply r121100 with a tweak to constant fold ConstExprs with TargetData | Chris Lattner | 2010-12-07 | 1 | -0/+23 |
* | Temporarily revert r121100 as it's causing clang to fail | Eric Christopher | 2010-12-07 | 1 | -23/+0 |
* | fix PR8710 - teach global opt that some constantexprs are too complex to | Chris Lattner | 2010-12-07 | 1 | -0/+23 |
* | Implement jump threading of 'indirectbr' by keeping track of whether we're lo... | Frits van Bommel | 2010-12-06 | 1 | -0/+61 |
* | Fix PR8728, a miscompilation I recently introduced. When optimizing | Chris Lattner | 2010-12-06 | 1 | -1/+15 |
* | Teach SimplifyCFG to turn | Frits van Bommel | 2010-12-05 | 1 | -0/+118 |
* | fix a bozo bug I introduced in r119930, causing a miscompile of | Chris Lattner | 2010-12-01 | 1 | -0/+23 |
* | Enhance DSE to handle the variable index case in PR8657. | Chris Lattner | 2010-11-30 | 1 | -0/+17 |
* | teach DSE to use GetPointerBaseWithConstantOffset to analyze | Chris Lattner | 2010-11-30 | 1 | -0/+16 |
* | enhance isRemovable to refuse to delete volatile mem transfers | Chris Lattner | 2010-11-30 | 1 | -4/+16 |
* | Rewrite the main DSE loop to be written in terms of reasoning | Chris Lattner | 2010-11-30 | 1 | -0/+33 |
* | Add a puts optimization that converts puts() to putchar('\n'). | Anders Carlsson | 2010-11-30 | 1 | -0/+15 |
* | Fix a typo. | Anders Carlsson | 2010-11-30 | 1 | -1/+1 |
* | Rename this test to FPuts.ll since it actually tests fputs. | Anders Carlsson | 2010-11-30 | 1 | -0/+0 |
* | remove a use of llvm-dis | Chris Lattner | 2010-11-30 | 1 | -2/+1 |
* | merge one more away | Chris Lattner | 2010-11-30 | 2 | -9/+12 |
* | I already merged partial-overwrite.ll -> PartialStore.ll | Chris Lattner | 2010-11-30 | 3 | -29/+20 |
* | clean up DSE tests, removing some poorly reduced and useless old test, | Chris Lattner | 2010-11-30 | 14 | -1301/+115 |
* | enhance basicaa to return "Mod" for a memcpy call when the | Chris Lattner | 2010-11-30 | 1 | -2/+13 |
* | Teach basicaa that memset's modref set is at worst "mod" and never | Chris Lattner | 2010-11-30 | 1 | -0/+14 |
* | my previous patch would cause us to start deleting some volatile | Chris Lattner | 2010-11-30 | 1 | -0/+20 |
* | Fix some broken CHECK lines. | Benjamin Kramer | 2010-11-29 | 2 | -2/+2 |
* | fix PR8677, patch by Jakub Staszak! | Chris Lattner | 2010-11-29 | 1 | -0/+14 |
* | Transform (extractvalue (load P), ...) to (load (gep P, 0, ...)) if the load ... | Frits van Bommel | 2010-11-29 | 1 | -3/+72 |