[SeparateConstOffsetFromGEP] Fixed a bug related to unsigned modulo
[oota-llvm.git] / test / Transforms / SROA /
2014-10-18 Chandler Carruth[SROA] Change how SROA does vector-based promotion...
2014-09-01 David MajnemerSROA: Don't insert instructions before a PHI
2014-08-22 Yunzhong GaoAdd a test case for SROA where the store size is bigger...
2014-08-22 Jingyue Wu[SROA] Fold a PHI node if all its incoming values are...
2014-08-22 Reid KlecknerSROA: Handle a case of store size being smaller than...
2014-08-07 Owen AndersonFix a case in SROA where lifetime intrinsics could...
2014-06-17 Duncan P. N. Exon... SROA: Only split loads on byte boundaries
2014-02-26 Chandler Carruth[SROA] Use the correct index integer size in GEPs throu...
2014-02-26 Chandler Carruth[SROA] Teach SROA how to handle pointers from address...
2014-02-26 Chandler Carruth[SROA] Split the alignment computation complete for...
2014-02-26 Chandler Carruth[SROA] Fix PR18615 with some long overdue simplificatio...
2014-02-25 Chandler Carruth[SROA] Fix another instability in SROA with respect...
2014-01-19 Chandler CarruthFix a really nasty SROA bug with how we handled out...
2013-11-19 Chandler CarruthFix an issue where SROA computed different results...
2013-09-21 Benjamin KramerSROA: Handle casts involving vectors of pointers and...
2013-08-16 Daniel Dunbar[tests] Cleanup initialization of test suffixes.
2013-07-24 Chandler CarruthFix a problem I introduced in r187029 where we would...
2013-07-24 Chandler CarruthFix PR16687 where we were incorrectly promoting an...
2013-07-19 Chandler CarruthFix another assert failure very similar to PR16651...
2013-07-19 Chandler CarruthFix PR16651, an assert introduced in my recent re-work...
2013-07-18 Chandler CarruthReapply r186316 with a fix for one bug where the code...
2013-07-15 Chandler CarruthRevert r186316 while I track down an ASan failure and...
2013-07-15 Chandler CarruthReimplement SROA yet again. Same fundamental principle...
2013-07-14 Stephen LinUpdate Transforms tests to use CHECK-LABEL for easier...
2013-05-01 Nadav RotemSROA: Generate selects instead of shuffles when blendin...
2013-04-21 Benjamin KramerSROA: Don't crash on a select with two identical operands.
2013-04-07 Chandler CarruthFix PR15674 (and PR15603): a SROA think-o.
2013-03-14 Chandler CarruthPR14972: SROA vs. GVN exposed a really bad bug in SROA.
2012-12-18 Nadav RotemRename the test so that we can add additional vectors...
2012-12-18 Nadav RotemSROA: Replace calls to getScalarSizeInBits to DataLayou...
2012-12-17 Chandler CarruthFix another SROA crasher, PR14601.
2012-12-17 Chandler CarruthTeach the rewriting of memcpy calls to support subvecto...
2012-12-17 Chandler CarruthFix a secondary bug I introduced while fixing the first...
2012-12-17 Chandler CarruthFix the first part of PR14478: memset now works.
2012-12-15 Chandler CarruthAdd a corollary test for PR14572. We got this code...
2012-12-15 Chandler CarruthRelax an overly aggressive assert to fix PR14572.
2012-12-12 Jakub StaszakFix typo in test-case.
2012-12-12 Jakub StaszakFix typo.
2012-12-10 Chandler CarruthFix PR14548: SROA was crashing on a mixture of i1 and...
2012-12-06 Dmitri GribenkoFix typos in CHECK lines.
2012-12-01 Benjamin KramerSROA: Avoid struct and array types early to avoid creat...
2012-11-21 Chandler CarruthPR14055: Implement support for sub-vector operations...
2012-11-20 Chandler CarruthFix PR14132 and handle OOB loads speculated throuh...
2012-11-20 Chandler CarruthRework the rewriting of loads and stores for vector...
2012-11-17 Evan ChengTeach SROA rewriteVectorizedStoreInst to handle cases...
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.