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

/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp685 Value *RHSV = GEPRHS->getOperand(DiffOperand); local
687 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
1022 const APInt &RHSV = RHS->getValue(); local
1049 if ((ICI.getPredicate() == ICmpInst::ICMP_SLT && RHSV == 0) ||
1050 (ICI.getPredicate() == ICmpInst::ICMP_SGT && RHSV.isAllOnesValue())) {
1084 RHSV ^ SignBit));
1096 RHSV ^ NotSignBit));
1115 (!AndCST->isNegative() && RHSV.isNonNegative())) {
1131 if (ICI.isEquality() && RHSV.getActiveBits() <= Ty->getBitWidth()) {
1209 if (Shift && Shift->hasOneUse() && RHSV
[all...]
H A DInstCombineAddSub.cpp173 if (Value *RHSV = dyn_castNegVal(RHS)) {
174 Value *NewAdd = Builder->CreateAdd(LHSV, RHSV, "sum");
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2650 unsigned RHSV = C->getZExtValue(); local
2651 if (!RHSV) break;
2652 if (isPowerOf2_32(RHSV-1)) { // 2^n+1?
2653 unsigned ShImm = Log2_32(RHSV-1);
2668 if (isPowerOf2_32(RHSV+1)) { // 2^n-1?
2669 unsigned ShImm = Log2_32(RHSV+1);
/external/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp755 Value *RHSV = B.CreateZExt(B.CreateLoad(CastToCStr(RHS, B), "rhsc"), local
757 return B.CreateSub(LHSV, RHSV, "chardiff");

Completed in 86 milliseconds