Searched refs:LHSOp (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/llvm/utils/TableGen/ |
D | CodeGenInstruction.cpp | 276 std::pair<unsigned,unsigned> LHSOp = Ops.ParseOperandName(LHSOpName, false); in ParseConstraint() local 288 bool FirstIsDest = (LHSOp < RHSOp); in ParseConstraint() 289 std::pair<unsigned,unsigned> DestOp = (FirstIsDest ? LHSOp : RHSOp); in ParseConstraint() 291 std::pair<unsigned,unsigned> SrcOp = (FirstIsDest ? RHSOp : LHSOp); in ParseConstraint()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 1646 Value *LHSOp, *RHSOp; in visitSub() local 1647 if (match(Op0, m_PtrToInt(m_Value(LHSOp))) && in visitSub() 1649 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType())) in visitSub() 1653 if (match(Op0, m_Trunc(m_PtrToInt(m_Value(LHSOp)))) && in visitSub() 1655 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType())) in visitSub()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 2060 Value *LHSOp, *RHSOp; in visitSub() local 2061 if (match(Op0, m_PtrToInt(m_Value(LHSOp))) && in visitSub() 2063 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub() 2068 if (match(Op0, m_Trunc(m_PtrToInt(m_Value(LHSOp)))) && in visitSub() 2070 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 2018 Value *LHSOp, *RHSOp; in visitSub() local 2019 if (match(Op0, m_PtrToInt(m_Value(LHSOp))) && in visitSub() 2021 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub() 2026 if (match(Op0, m_Trunc(m_PtrToInt(m_Value(LHSOp)))) && in visitSub() 2028 if (Value *Res = OptimizePointerDifference(LHSOp, RHSOp, I.getType(), in visitSub()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 317 SDValue LHSOp = LHS.getOperand(i); in matchBinaryPredicate() local 319 bool LHSUndef = AllowUndefs && LHSOp.isUndef(); in matchBinaryPredicate() 321 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp); in matchBinaryPredicate() 325 if (!AllowTypeMismatch && (LHSOp.getValueType() != SVT || in matchBinaryPredicate() 326 LHSOp.getValueType() != RHSOp.getValueType())) in matchBinaryPredicate()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 328 SDValue LHSOp = LHS.getOperand(i); in matchBinaryPredicate() local 330 bool LHSUndef = AllowUndefs && LHSOp.isUndef(); in matchBinaryPredicate() 332 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp); in matchBinaryPredicate() 336 if (!AllowTypeMismatch && (LHSOp.getValueType() != SVT || in matchBinaryPredicate() 337 LHSOp.getValueType() != RHSOp.getValueType())) in matchBinaryPredicate()
|