instcombine: Migrate math library call simplifications
[oota-llvm.git] / test / Transforms / SROA /
2012-10-30 Chandler CarruthFix PR14212: For some strange reason I treated vectors...
2012-10-25 Chandler CarruthTeach SROA how to split whole-alloca integer loads...
2012-10-17 Chandler CarruthThis just in, it is a *bad idea* to use 'udiv' on an...
2012-10-15 Chandler CarruthUpdate the memcpy rewriting to fully support widened...
2012-10-15 Chandler CarruthFollow-up fix to r165928: handle memset rewriting for...
2012-10-15 Chandler CarruthFirst major step toward addressing PR14059. This teache...
2012-10-13 Chandler CarruthTeach SROA to cope with wrapper aggregates. These show...
2012-10-10 Duncan SandsAdd the testcase from pr13254 (the old scalarreply...
2012-10-09 Chandler CarruthFix PR14034, an infloop / heap corruption / crash bug...
2012-10-05 Chandler CarruthTeach the new SROA a new trick. Now we zap any memcpy...
2012-10-04 Chandler CarruthFix PR13969, a mini-phase-ordering issue with the new...
2012-10-04 Chandler CarruthTeach the integer-promotion rewrite strategy to be...
2012-10-03 Chandler CarruthFix an issue where we failed to adjust the alignment...
2012-10-03 Chandler CarruthTry to use a better set of abstractions for computing...
2012-10-02 Chandler CarruthTeach the new SROA to handle cases where an alloca...
2012-10-01 Chandler CarruthFix more misspellings found by Duncan during review.
2012-10-01 Chandler CarruthFix several issues with alignment. We weren't always...
2012-10-01 Chandler CarruthRefactor the PartitionUse structure to actually use...
2012-09-29 Chandler CarruthFix a somewhat surprising miscompile where code relying...
2012-09-26 Chandler CarruthWhen rewriting the pointer operand to a load or store...
2012-09-26 Chandler CarruthTeach all of the loads, stores, memsets and memcpys...
2012-09-26 Chandler CarruthRevert the business end of r164636 and try again. I...
2012-09-25 Nick LewyckyDon't drop the alignment on a memcpy intrinsic when...
2012-09-25 Nick LewyckyDon't try to promote the same alloca twice. Fixes PR13916!
2012-09-25 Chandler CarruthFix a case where SROA did not correctly detect dead...
2012-09-24 Chandler CarruthAddress one of the original FIXMEs for the new SROA...
2012-09-23 Chandler CarruthSwitch to a signed representation for the dynamic offse...
2012-09-21 Chandler CarruthFix a case where the new SROA pass failed to zap dead...
2012-09-18 Chandler CarruthFix the last crasher I've gotten a reproduction for...
2012-09-18 Chandler CarruthFix getCommonType in a different way from the way I...
2012-09-18 Benjamin KramerXFAIL SROA test until Chandler can get to it.
2012-09-18 Chandler CarruthFix a warning in release builds and a test case I forgo...
2012-09-18 Chandler CarruthAdd a major missing piece to the new SROA pass: aggress...
2012-09-15 Chandler CarruthPort the SSAUpdater-based promotion logic from the...
2012-09-14 Chandler CarruthIntroduce a new SROA implementation.