Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp4241 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in IntegerExpandSetCCOperands() local
4242 GetExpandedInteger(NewLHS, LHSLo, LHSHi); in IntegerExpandSetCCOperands()
4251 LHSLo.getValueType(), LHSLo, LHSHi); in IntegerExpandSetCCOperands()
4259 NewRHS = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi); in IntegerExpandSetCCOperands()
4270 NewLHS = LHSHi; in IntegerExpandSetCCOperands()
4305 if (TLI.isTypeLegal(LHSHi.getValueType()) && in IntegerExpandSetCCOperands()
4307 HiCmp = TLI.SimplifySetCC(getSetCCResultType(LHSHi.getValueType()), LHSHi, in IntegerExpandSetCCOperands()
4311 DAG.getNode(ISD::SETCC, dl, getSetCCResultType(LHSHi.getValueType()), in IntegerExpandSetCCOperands()
4312 LHSHi, RHSHi, DAG.getCondCode(CCCode)); in IntegerExpandSetCCOperands()
4331 if (LHSHi == RHSHi) { in IntegerExpandSetCCOperands()
[all …]
H A DLegalizeVectorTypes.cpp1116 SDValue LHSLo, LHSHi; in SplitVecRes_BinOp() local
1117 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_BinOp()
1125 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Flags); in SplitVecRes_BinOp()
1145 SDValue LHSLo, LHSHi; in SplitVecRes_FIX() local
1146 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_FIX()
1155 Hi = DAG.getNode(Opcode, dl, LHSHi.getValueType(), LHSHi, RHSHi, Op2, in SplitVecRes_FIX()
1343 SDValue LHSLo, LHSHi; in SplitVecRes_FCOPYSIGN() local
1344 GetSplitVector(N->getOperand(0), LHSLo, LHSHi); in SplitVecRes_FCOPYSIGN()
1357 Hi = DAG.getNode(ISD::FCOPYSIGN, DL, LHSHi.getValueType(), LHSHi, RHSHi); in SplitVecRes_FCOPYSIGN()
1362 SDValue LHSLo, LHSHi; in SplitVecRes_InregOp() local
[all …]
H A DLegalizeFloatTypes.cpp1809 SDValue LHSLo, LHSHi, RHSLo, RHSHi; in FloatExpandSetCCOperands() local
1810 GetExpandedFloat(NewLHS, LHSLo, LHSHi); in FloatExpandSetCCOperands()
1821 Tmp1 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
1829 DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, RHSHi, in FloatExpandSetCCOperands()
1832 Tmp2 = DAG.getSetCC(dl, getSetCCResultType(LHSHi.getValueType()), LHSHi, in FloatExpandSetCCOperands()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp27779 SDValue LHSLo, LHSHi; in LowerMULO() local
27780 std::tie(LHSLo, LHSHi) = splitVector(A, DAG, dl); in LowerMULO()
27789 SDVTList HiVTs = DAG.getVTList(LHSHi.getValueType(), HiOvfVT); in LowerMULO()
27793 SDValue Hi = DAG.getNode(Op.getOpcode(), dl, HiVTs, LHSHi, RHSHi); in LowerMULO()