Home | History | Annotate | Download | only in PowerPC

Lines Matching refs:LHSBits

929         SmallVector<ValueBit, 64> LHSBits(Bits.size());
930 getValueBits(V.getOperand(0), LHSBits);
933 Bits[i] = LHSBits[i < RotAmt ? i + (Bits.size() - RotAmt) : i - RotAmt];
942 SmallVector<ValueBit, 64> LHSBits(Bits.size());
943 getValueBits(V.getOperand(0), LHSBits);
946 Bits[i] = LHSBits[i - ShiftAmt];
958 SmallVector<ValueBit, 64> LHSBits(Bits.size());
959 getValueBits(V.getOperand(0), LHSBits);
962 Bits[i] = LHSBits[i + ShiftAmt];
974 SmallVector<ValueBit, 64> LHSBits(Bits.size());
975 bool LHSTrivial = getValueBits(V.getOperand(0), LHSBits);
979 Bits[i] = LHSBits[i];
991 SmallVector<ValueBit, 64> LHSBits(Bits.size()), RHSBits(Bits.size());
992 getValueBits(V.getOperand(0), LHSBits);
997 if (LHSBits[i].isZero())
1000 Bits[i] = LHSBits[i];