Home
last modified time | relevance | path

Searched refs:RHSHi (Results 1 – 4 of 4) sorted by relevance

/external/llvm/test/CodeGen/X86/
Dwide-integer-cmp.ll60 ; CHECK: movl 16(%esp), [[RHSHi:%[a-z]+]]
62 ; CHECK: sbbl 8(%esp), [[RHSHi]]
79 ; CHECK: movl 16(%esp), [[RHSHi:%[a-z]+]]
81 ; CHECK: sbbl 8(%esp), [[RHSHi]]
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp2704 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in IntegerExpandSetCCOperands() local
2706 GetExpandedInteger(NewRHS, RHSLo, RHSHi); in IntegerExpandSetCCOperands()
2709 if (RHSLo == RHSHi) { in IntegerExpandSetCCOperands()
2722 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); in IntegerExpandSetCCOperands()
2734 NewRHS = RHSHi; in IntegerExpandSetCCOperands()
2769 TLI.isTypeLegal(RHSHi.getValueType())) in IntegerExpandSetCCOperands()
2771 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl); in IntegerExpandSetCCOperands()
2775 LHSHi, RHSHi, DAG.getCondCode(CCCode)); in IntegerExpandSetCCOperands()
2794 if (LHSHi == RHSHi) { in IntegerExpandSetCCOperands()
2819 std::swap(LHSHi, RHSHi); in IntegerExpandSetCCOperands()
[all …]
DLegalizeFloatTypes.cpp1520 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in FloatExpandSetCCOperands() local
1522 GetExpandedFloat(NewRHS, RHSLo, RHSHi); in FloatExpandSetCCOperands()
1533 LHSHi, RHSHi, ISD::SETOEQ); in FloatExpandSetCCOperands()
1538 LHSHi, RHSHi, ISD::SETUNE); in FloatExpandSetCCOperands()
1540 LHSHi, RHSHi, CCCode); in FloatExpandSetCCOperands()
DLegalizeVectorTypes.cpp707 SDValue RHSLo, RHSHi; in SplitVecRes_BinOp() local
708 GetSplitVector(N->getOperand(1), RHSLo, RHSHi); in SplitVecRes_BinOp()
714 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Flags); in SplitVecRes_BinOp()
891 SDValue RHSLo, RHSHi; in SplitVecRes_FCOPYSIGN() local
895 GetSplitVector(RHS, RHSLo, RHSHi); in SplitVecRes_FCOPYSIGN()
897 std::tie(RHSLo, RHSHi) = DAG.SplitVector(RHS, SDLoc(RHS)); in SplitVecRes_FCOPYSIGN()
901 Hi = DAG.getNode(ISD::FCOPYSIGN, DL, LHSHi.getValueType(), LHSHi, RHSHi); in SplitVecRes_FCOPYSIGN()