HomeSort by relevance Sort by last modified time
    Searched refs:RHSVal (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 29 Value *RHSVal = FirstInst->getOperand(1);
32 Type *RHSType = RHSVal->getType();
67 if (I->getOperand(1) != RHSVal) RHSVal = 0;
74 if (!LHSVal && !RHSVal)
90 if (RHSVal == 0) {
95 RHSVal = NewRHS;
115 LHSVal, RHSVal);
122 BinaryOperator::Create(BinOp->getOpcode(), LHSVal, RHSVal);
    [all...]
InstCombineSimplifyDemanded.cpp 523 const APInt &RHSVal = RHS->getValue();
524 APInt CarryBits((~LHSKnownZero + RHSVal) ^ (~LHSKnownZero ^ RHSVal));
530 KnownOne = ((LHSKnownZero & RHSVal) |
531 (LHSKnownOne & ~RHSVal)) & ~CarryBits;
535 KnownZero = LHSKnownZero & ~RHSVal & ~CarryBits;
    [all...]