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

/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp812 const APInt &CmpRHSV = CmpRHS->getValue(); local
875 if (CmpRHSV == 0) { // (X / pos) op 0
879 } else if (CmpRHSV.isStrictlyPositive()) { // (X / pos) op pos
896 if (CmpRHSV == 0) { // (X / neg) op 0
904 } else if (CmpRHSV.isStrictlyPositive()) { // (X / neg) op pos
968 const APInt &CmpRHSV = cast<ConstantInt>(ICI.getOperand(1))->getValue(); local
973 uint32_t TypeBits = CmpRHSV.getBitWidth();
1021 APInt Comp = CmpRHSV << ShAmtVal;
1028 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.

Completed in 52 milliseconds