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

/external/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp753 Value *RHSV = B.CreateZExt(B.CreateLoad(CastToCStr(RHS, B), "rhsc"), local
755 return B.CreateSub(LHSV, RHSV, "chardiff");
/external/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp2477 unsigned RHSV = C->getZExtValue(); local
2478 if (!RHSV) break;
2479 if (isPowerOf2_32(RHSV-1)) { // 2^n+1?
2480 unsigned ShImm = Log2_32(RHSV-1);
2495 if (isPowerOf2_32(RHSV+1)) { // 2^n-1?
2496 unsigned ShImm = Log2_32(RHSV+1);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp658 Value *RHSV = GEPRHS->getOperand(DiffOperand); local
660 return new ICmpInst(ICmpInst::getSignedPredicate(Cond), LHSV, RHSV);
995 const APInt &RHSV = RHS->getValue(); local
1023 if ((ICI.getPredicate() == ICmpInst::ICMP_SLT && RHSV == 0) ||
1024 (ICI.getPredicate() == ICmpInst::ICMP_SGT && RHSV.isAllOnesValue())) {
1058 RHSV ^ SignBit));
1070 RHSV ^ NotSignBit));
1089 (!AndCST->isNegative() && RHSV.isNonNegative())) {
1105 if (ICI.isEquality() && RHSV.getActiveBits() <= Ty->getBitWidth()) {
1183 if (Shift && Shift->hasOneUse() && RHSV
[all...]

Completed in 332 milliseconds