HomeSort by: relevance | last modified time | path
    Searched defs:CRHS (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineCost.cpp 1615 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
1616 if (Constant *C = ConstantExpr::getICmp(I.getPredicate(), CLHS, CRHS)) {
1649 Constant *CRHS = ConstantInt::get(RHS->getContext(), RHSOffset);
1650 if (Constant *C = ConstantExpr::getSub(CLHS, CRHS)) {
1668 Constant *CRHS = dyn_cast<Constant>(RHS);
1669 if (!CRHS)
1670 CRHS = SimplifiedValues.lookup(RHS);
1674 SimpleV = SimplifyBinOp(I.getOpcode(), CLHS ? CLHS : LHS, CRHS ? CRHS : RHS,
1678 SimplifyBinOp(I.getOpcode(), CLHS ? CLHS : LHS, CRHS ? CRHS : RHS, DL)
    [all...]
InstructionSimplify.cpp 136 Value *CLHS = Cmp->getOperand(0), *CRHS = Cmp->getOperand(1);
137 if (CPred == Pred && CLHS == LHS && CRHS == RHS)
140 CRHS == LHS;
600 if (auto *CRHS = dyn_cast<Constant>(Op1))
601 return ConstantFoldBinaryOpOperands(Opcode, CLHS, CRHS, Q.DL);
3340 if (Constant *CRHS = dyn_cast<Constant>(RHS))
3341 return ConstantFoldCompareInstOperands(Pred, CLHS, CRHS, Q.DL, Q.TLI);
3594 if (auto *CRHS = dyn_cast<PtrToIntOperator>(RHS))
3597 Q.DL.getTypeSizeInBits(CRHS->getPointerOperandType()) ==
3598 Q.DL.getTypeSizeInBits(CRHS->getType())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 3517 ConstantFPSDNode *CRHS = dyn_cast<ConstantFPSDNode>(RHS);
3518 if ((LHS.getOpcode() == ISD::FNEG || LHS.getOpcode() == ISD::FABS) && CRHS) {
3539 else if (CRHS->isNegative())
SIISelLowering.cpp 8912 const ConstantSDNode *CRHS) const {
8913 uint64_t Val = CRHS->getZExtValue();
8920 (CRHS->hasOneUse() && !TII->isInlineConstant(CRHS->getAPIntValue()))) {
9025 const ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(RHS);
9026 if (VT == MVT::i64 && CRHS) {
9028 = splitBinaryBitConstantOp(DCI, SDLoc(N), ISD::AND, LHS, CRHS))
9032 if (CRHS && VT == MVT::i32) {
9037 uint64_t Mask = CRHS->getZExtValue();
9043 unsigned NB = CRHS->getAPIntValue().countTrailingZeros()
    [all...]

Completed in 68 milliseconds