summaryrefslogtreecommitdiff
path: root/test/Transforms
Commit message (Expand)AuthorAge
* InstCombine: creating selects from -1 and 0 is fine, they combine into a sext...Benjamin Kramer2010-12-22
* When determining whether the new instruction was already present inDuncan Sands2010-12-22
* Make this test not depend on how the variable is named.Duncan Sands2010-12-22
* Add a generic expansion transform: A op (B op' C) -> (A op B) op' (A op C)Duncan Sands2010-12-22
* Give GVN back the ability to perform simple conditional propagation on condit...Owen Anderson2010-12-21
* Add an additional InstructionSimplify factorization test.Duncan Sands2010-12-21
* While I don't think any later transforms can fire, it seems cleaner toDuncan Sands2010-12-21
* Fix typo in comment, spotted by Deewiant.Duncan Sands2010-12-21
* Teach InstructionSimplify about distributive laws. These transforms fireDuncan Sands2010-12-21
* Add generic simplification of associative operations, generalizingDuncan Sands2010-12-21
* Teach InstCombine to merge (icmp ult (X + CA), C1) | (icmp eq X, C2) into (ic...Benjamin Kramer2010-12-20
* Have SimplifyBinOp dispatch Xor, Add and Sub to the corresponding methodsDuncan Sands2010-12-20
* fix PR8807 by making transformConstExprCastCall aware of byval arguments.Chris Lattner2010-12-20
* when eliding a byval copy due to inlining a readonly function, we haveChris Lattner2010-12-20
* pull byval processing out to its own helper function.Chris Lattner2010-12-20
* fix PR8769, a miscompilation by inliner when inlining a function with a byvalChris Lattner2010-12-20
* merge two tests.Chris Lattner2010-12-20
* filecheckizeChris Lattner2010-12-20
* Test case for r122215 when InstCombine optimizes memsetMon P Wang2010-12-20
* X86 supports i8/i16 overflow ops (except i8 multiplies), we shouldChris Lattner2010-12-19
* recognize an unsigned add with overflow idiom into uadd.Chris Lattner2010-12-19
* optimize uadd(x, cst) into a comparison when the normal Chris Lattner2010-12-19
* generalize the sadd creation code to not require that theChris Lattner2010-12-19
* fix another miscompile in the llvm.sadd formation logic: it wasn't Chris Lattner2010-12-19
* fix a bug (possibly 8816) in the sadd forming xform: it isn'tChris Lattner2010-12-19
* Enhance LICM to promote alias sets whose pointers themselves are stored,Chris Lattner2010-12-19
* fix PR8602, a bug in an assertion: a volatile store *of* a pointerChris Lattner2010-12-19
* revert r122164, I'm going to go with a different approach.Chris Lattner2010-12-19
* first step to fixing PR8642: don't fold away empty basic blocksChris Lattner2010-12-19
* move this test into the ARM test so that it is only run when the arm backendChris Lattner2010-12-19
* Add vector versions of some existing scalar transforms to aid codegen in matc...Nate Begeman2010-12-17
* Reapply r121905 (automatic synthesis of @llvm.sadd.with.overflow) with a fix ...Owen Anderson2010-12-17
* SimplifyCFG: Ranges can be larger than 64 bits. Fixes Release-selfhost build.Benjamin Kramer2010-12-17
* improve switch formation to handle small range Chris Lattner2010-12-17
* Revert r64460. strtol and friends cannot be marked readonly, even withDan Gohman2010-12-17
* Speculatively revert commit 121905 since it looks like it might have broken theDuncan Sands2010-12-16
* Preserve TBAA tags when doing load PRE.Dan Gohman2010-12-15
* Add an InstCombine transform to recognize instances of manual overflow-safe a...Owen Anderson2010-12-15
* Teach jump threading to "look through" a select when the branch direction of ...Frits van Bommel2010-12-15
* Fix PR8790, another instance where unreachable code can cause instruction sim...Owen Anderson2010-12-15
* - Insert new instructions before DomBlock's terminator,Chris Lattner2010-12-14
* fix two significant issues with FoldTwoEntryPHINode:Chris Lattner2010-12-14
* fix yet anohter broken lineChris Lattner2010-12-14
* reapply my recent change that disables a piece of the switch formationChris Lattner2010-12-14
* Fix recent buildbot breakage by pulling SimplifyCFG back to its state as of r...Owen Anderson2010-12-13
* temporarily disable part of my previous patch, which causes an iterator inval...Chris Lattner2010-12-13
* Fix sort predicate. qsort(3)'s predicate semantics differ from std::sort's. F...Benjamin Kramer2010-12-13
* reinstate my patch: the miscompile was caused by an inverted branch in theChris Lattner2010-12-13
* Completely disable the optimization I added in r121680 untilChris Lattner2010-12-13
* Make simplifycfg reprocess newly formed "br (cond1 | cond2)" conditionsChris Lattner2010-12-13