[SROA] Fix a nasty pile of bugs to do with big-endian, different alloca
[oota-llvm.git] / test / Transforms / SROA / basictest.ll
2015-07-22 Chandler Carruth[SROA] Fix a nasty pile of bugs to do with big-endian...
2015-07-14 David Majnemer[SROA] Don't de-atomic volatile loads and stores
2015-02-27 David Blaikie[opaque pointer type] Add textual IR support for explic...
2015-02-27 David Blaikie[opaque pointer type] Add textual IR support for explic...
2015-01-05 Chandler Carruth[SROA] Apply a somewhat heavy and unpleasant hammer...
2015-01-02 Chandler Carruth[SROA] Teach SROA to be more aggressive in splitting...
2015-01-02 Chandler Carruth[SROA] Add a test case for r225068 / PR22080.
2015-01-01 Chandler Carruth[SROA] Teach SROA how to much more intelligently handle...
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-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-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-17 Chandler CarruthFix another SROA crasher, PR14601.
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.
2012-12-10 Chandler CarruthFix PR14548: SROA was crashing on a mixture of i1 and...
2012-12-01 Benjamin KramerSROA: Avoid struct and array types early to avoid creat...
2012-11-20 Chandler CarruthRework the rewriting of loads and stores for vector...
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-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-02 Chandler CarruthTeach the new SROA to handle cases where an alloca...
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-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-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-15 Chandler CarruthPort the SSAUpdater-based promotion logic from the...
2012-09-14 Chandler CarruthIntroduce a new SROA implementation.