Searched refs:RHSOp (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenInstruction.cpp | 350 std::pair<unsigned, unsigned> RHSOp = Ops.ParseOperandName(RHSOpName, 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/InstCombine/ |
H A D | InstCombineAddSub.cpp | 2544 Value *LHSOp, *RHSOp; in visitSub() local 2546 match(Op1, m_PtrToInt(m_Value(RHSOp)))) in visitSub() 2547 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub() 2553 match(Op1, m_Trunc(m_PtrToInt(m_Value(RHSOp))))) in visitSub() 2554 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub()
|
H A D | InstCombineAndOrXor.cpp | 3250 auto MatchRHSOp = [LHS0, CInt](const Value *RHSOp) { in foldAndOrOfICmpEqConstantAndICmp() argument 3251 return match(RHSOp, in foldAndOrOfICmpEqConstantAndICmp() 3253 (CInt->isZero() && RHSOp == LHS0); in foldAndOrOfICmpEqConstantAndICmp()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 409 SDValue RHSOp = RHS.getOperand(i); in matchBinaryPredicate() local 411 bool RHSUndef = AllowUndefs && RHSOp.isUndef(); in matchBinaryPredicate() 413 auto *RHSCst = dyn_cast<ConstantSDNode>(RHSOp); in matchBinaryPredicate() 417 LHSOp.getValueType() != RHSOp.getValueType())) in matchBinaryPredicate()
|