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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp863 const APInt &CmpRHSV = CmpRHS->getValue(); local
925 if (CmpRHSV == 0) { // (X / pos) op 0
929 } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos
946 if (CmpRHSV == 0) { // (X / neg) op 0
954 } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos
1018 const APInt &CmpRHSV = cast<ConstantInt>(ICI.getOperand(1))->getValue(); local
1023 uint32_t TypeBits = CmpRHSV.getBitWidth();
1070 APInt Comp = CmpRHSV << ShAmtVal;
1077 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.

Completed in 157 milliseconds