Searched refs:RHSOp (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenInstruction.cpp284 std::pair<unsigned,unsigned> RHSOp = Ops.ParseOperandName(RHSOpName, false); local
288 bool FirstIsDest = (LHSOp < RHSOp);
289 std::pair<unsigned,unsigned> DestOp = (FirstIsDest ? LHSOp : RHSOp);
291 std::pair<unsigned,unsigned> SrcOp = (FirstIsDest ? RHSOp : LHSOp);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp2010 Value *LHSOp, *RHSOp; local
2012 match(Op1, m_PtrToInt(m_Value(RHSOp))))
2013 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(),
2019 match(Op1, m_Trunc(m_PtrToInt(m_Value(RHSOp)))))
2020 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp319 SDValue RHSOp = RHS.getOperand(i);
321 bool RHSUndef = AllowUndefs && RHSOp.isUndef();
323 auto *RHSCst = dyn_cast<ConstantSDNode>(RHSOp);
327 LHSOp.getValueType() != RHSOp.getValueType()))

Completed in 79 milliseconds