Null initialize a few variables flagged by
[oota-llvm.git] / lib / Transforms / InstCombine / InstCombineShifts.cpp
2011-01-23 Ted KremenekNull initialize a few variables flagged by
2011-01-14 Duncan SandsMove some shift transforms out of instcombine and into...
2010-12-23 Owen AndersonWhen determining if we can fold (x >> C1) << C2, the...
2010-12-09 Dan GohmanReally check that the bits that will become zero are...
2010-11-23 Benjamin KramerThe srem -> urem transform is not safe for any divisor...
2010-11-23 Benjamin KramerInstCombine: Reduce "X shift (A srem B)" to "X shift...
2010-11-10 Dale JohannesenWhen checking that the necessary bits are zero in
2010-11-01 Owen AndersonWhen folding away a (shl (shr)) pair, we need to check...
2010-08-28 Chris Lattneroptimize bitcasts from large integers to vector into...
2010-08-27 Chris LattnerEnhance the shift propagator to handle the case when...
2010-08-27 Chris LattnerImplement a pretty general logical shift propagation
2010-08-27 Chris Lattnerremove some special shift cases that have been subsumed...
2010-06-24 Gabor Greifuse ArgOperand API
2010-04-16 Eric ChristopherRevert 101465, it broke internal OpenGL testing.
2010-04-16 Gabor Greifreapply r101434
2010-04-16 Gabor Greifback out r101423 and r101397, they break llvm-gcc self...
2010-04-15 Gabor Greifreapply r101364, which has been backed out in r101368
2010-04-15 Gabor Greifback out r101364, as it trips the linux nightlybot...
2010-04-15 Gabor Greifrotate CallInst operands, i.e. move callee to the back
2010-01-23 Chris Lattnerfix a potential overflow issue Eli pointed out.
2010-01-23 Chris Lattnerimplement a simple instcombine xform that has been...
2010-01-18 Chris Lattnermy instcombine transformations to make extension elimin...
2010-01-10 Chris Lattnerchange the preferred canonical form for a sign extensio...
2010-01-10 Chris Lattnerfix indentation of switch statements, no functionality...
2010-01-08 Chris Lattnerteach instcombine to delete sign extending shift pairs...
2010-01-05 Chris Lattnersplit instcombine of shifts out to its own file.