Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:LHSBits

869         SmallVector<ValueBit, 64> LHSBits(Bits.size());
870 getValueBits(V.getOperand(0), LHSBits);
873 Bits[i] = LHSBits[i < RotAmt ? i + (Bits.size() - RotAmt) : i - RotAmt];
882 SmallVector<ValueBit, 64> LHSBits(Bits.size());
883 getValueBits(V.getOperand(0), LHSBits);
886 Bits[i] = LHSBits[i - ShiftAmt];
898 SmallVector<ValueBit, 64> LHSBits(Bits.size());
899 getValueBits(V.getOperand(0), LHSBits);
902 Bits[i] = LHSBits[i + ShiftAmt];
914 SmallVector<ValueBit, 64> LHSBits(Bits.size());
915 bool LHSTrivial = getValueBits(V.getOperand(0), LHSBits);
919 Bits[i] = LHSBits[i];
931 SmallVector<ValueBit, 64> LHSBits(Bits.size()), RHSBits(Bits.size());
932 getValueBits(V.getOperand(0), LHSBits);
937 if (LHSBits[i].isZero())
940 Bits[i] = LHSBits[i];