Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp4296 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in IntegerExpandSetCCOperands() local
4297 GetExpandedInteger(NewLHS, LHSLo, LHSHi); in IntegerExpandSetCCOperands()
4306 LHSLo.getValueType(), LHSLo, LHSHi); in IntegerExpandSetCCOperands()
4314 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); in IntegerExpandSetCCOperands()
4325 NewLHS = LHSHi; in IntegerExpandSetCCOperands()
4360 if (TLI.isTypeLegal(LHSHi.getValueType()) && in IntegerExpandSetCCOperands()
4362 HiCmp = TLI.SimplifySetCC(getSetCCResultType(LHSHi.getValueType()), LHSHi, in IntegerExpandSetCCOperands()
4366 DAG.getNode(ISD::SETCC, dl, getSetCCResultType(LHSHi.getValueType()), in IntegerExpandSetCCOperands()
4367 LHSHi, RHSHi, DAG.getCondCode(CCCode)); in IntegerExpandSetCCOperands()
4386 if (LHSHi == RHSHi) { in IntegerExpandSetCCOperands()
[all …]
DLegalizeVectorTypes.cpp1118 SDValue LHSLo, LHSHi; in SplitVecRes_BinOp() local
1119 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_BinOp()
1127 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Flags); in SplitVecRes_BinOp()
1147 SDValue LHSLo, LHSHi; in SplitVecRes_FIX() local
1148 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_FIX()
1157 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Op2, in SplitVecRes_FIX()
1346 SDValue LHSLo, LHSHi; in SplitVecRes_FCOPYSIGN() local
1347 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_FCOPYSIGN()
1360 Hi = DAG.getNode(ISD::FCOPYSIGN, DL, LHSHi.getValueType(), LHSHi, RHSHi); in SplitVecRes_FCOPYSIGN()
1365 SDValue LHSLo, LHSHi; in SplitVecRes_InregOp() local
[all …]
DLegalizeFloatTypes.cpp1814 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in FloatExpandSetCCOperands() local
1815 GetExpandedFloat(NewLHS, LHSLo, LHSHi); in FloatExpandSetCCOperands()
1826 Tmp1 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
1834 DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, RHSHi, in FloatExpandSetCCOperands()
1837 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86ISelLowering.cpp27947 SDValue LHSLo, LHSHi; in LowerMULO() local
27948 std::tie(LHSLo, LHSHi) = splitVector(A, DAG, dl); in LowerMULO()
27957 SDVTList HiVTs = DAG.getVTList(LHSHi.getValueType(), HiOvfVT); in LowerMULO()
27961 SDValue Hi = DAG.getNode(Op.getOpcode(), dl, HiVTs, LHSHi, RHSHi); in LowerMULO()