Searched defs:CmpRHSV (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp807 const APInt &CmpRHSV = CmpRHS->getValue(); local
870 if (CmpRHSV == 0) { // (X / pos) op 0
874 } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos
891 if (CmpRHSV == 0) { // (X / neg) op 0
899 } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos
963 const APInt &CmpRHSV = cast<ConstantInt>(ICI.getOperand(1))->getValue(); local
968 uint32_t TypeBits = CmpRHSV.getBitWidth();
1016 APInt Comp = CmpRHSV << ShAmtVal;
1023 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.

Completed in 66 milliseconds