HomeSort by: relevance | last modified time | path
    Searched refs:ConstOp1 (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 1646 bool ConstOp1 = isa<Constant>(RHS);
1683 ConstOp1 ? ConstantExpr::get(Opcode, UndefScalar, CElt)
1696 if (Inst.isIntDivRem() || (Inst.isShift() && ConstOp1))
1697 NewC = getSafeVectorConstantForBinop(Opcode, NewC, ConstOp1);
1701 Value *NewLHS = ConstOp1 ? V1 : NewC;
1702 Value *NewRHS = ConstOp1 ? NewC : V1;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 2060 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1.getNode());
2061 if (!ConstOp1)
2064 int64_t Value = ConstOp1->getSExtValue();
2094 auto *ConstOp1 = cast<ConstantSDNode>(C.Op1);
2095 uint64_t Value = ConstOp1->getZExtValue();
2098 // Make sure that ConstOp1 is in range of C.Op0.
2099 int64_t SignedValue = ConstOp1->getSExtValue();
2144 Value != ConstOp1->getZExtValue())
2185 auto *ConstOp1 = dyn_cast<ConstantSDNode>(C.Op1);
2186 if (ConstOp1 && ConstOp1->getZExtValue() == 0
    [all...]

Completed in 53 milliseconds