Searched refs:LHSOp (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenInstruction.cpp | 342 std::pair<unsigned, unsigned> LHSOp = Ops.ParseOperandName(LHSOpName, false); in ParseConstraint() local 354 bool FirstIsDest = (LHSOp < RHSOp); in ParseConstraint() 355 std::pair<unsigned, unsigned> DestOp = (FirstIsDest ? LHSOp : RHSOp); in ParseConstraint() 357 std::pair<unsigned, unsigned> SrcOp = (FirstIsDest ? RHSOp : LHSOp); in ParseConstraint()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | IndVarSimplify.cpp | 1462 Value *LHSOp = nullptr; in canonicalizeExitCondition() local 1463 if (!match(LHS, m_ZExt(m_Value(LHSOp))) || !ICmp->isSigned()) in canonicalizeExitCondition() 1467 const unsigned InnerBitWidth = DL.getTypeSizeInBits(LHSOp->getType()); in canonicalizeExitCondition() 1512 Value *LHSOp = nullptr; in canonicalizeExitCondition() local 1513 if (!match(LHS, m_ZExt(m_Value(LHSOp)))) in canonicalizeExitCondition() 1522 if (!LHS->hasOneUse() && !isa<SCEVAddRecExpr>(SE->getSCEV(LHSOp))) in canonicalizeExitCondition() 1532 Instruction::Trunc, RHS, LHSOp->getType(), "", in canonicalizeExitCondition() 1534 ICmp->setOperand(Swapped ? 1 : 0, LHSOp); in canonicalizeExitCondition() 1542 const unsigned InnerBitWidth = DL.getTypeSizeInBits(LHSOp->getType()); in canonicalizeExitCondition()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 2544 Value *LHSOp, *RHSOp; in visitSub() local 2545 if (match(Op0, m_PtrToInt(m_Value(LHSOp))) && in visitSub() 2547 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub() 2552 if (match(Op0, m_Trunc(m_PtrToInt(m_Value(LHSOp)))) && in visitSub() 2554 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 408 SDValue LHSOp = LHS.getOperand(i); in matchBinaryPredicate() local 410 bool LHSUndef = AllowUndefs && LHSOp.isUndef(); in matchBinaryPredicate() 412 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp); in matchBinaryPredicate() 416 if (!AllowTypeMismatch && (LHSOp.getValueType() != SVT || in matchBinaryPredicate() 417 LHSOp.getValueType() != RHSOp.getValueType())) in matchBinaryPredicate()
|