Home
last modified time | relevance | path

Searched refs:LoVT (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp1163 EVT LoVT, HiVT; in SplitVecRes_BITCAST() local
1164 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); in SplitVecRes_BITCAST()
1185 if (LoVT == HiVT) { in SplitVecRes_BITCAST()
1189 Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo); in SplitVecRes_BITCAST()
1198 Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo); in SplitVecRes_BITCAST()
1206 EVT LoIntVT = EVT::getIntegerVT(*DAG.getContext(), LoVT.getSizeInBits()); in SplitVecRes_BITCAST()
1215 Lo = DAG.getNode(ISD::BITCAST, dl, LoVT, Lo); in SplitVecRes_BITCAST()
1221 EVT LoVT, HiVT; in SplitVecRes_BUILD_VECTOR() local
1223 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); in SplitVecRes_BUILD_VECTOR()
1224 unsigned LoNumElts = LoVT.getVectorNumElements(); in SplitVecRes_BUILD_VECTOR()
[all …]
H A DLegalizeTypesGeneric.cpp91 EVT LoVT, HiVT; in ExpandRes_BITCAST() local
92 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(InVT); in ExpandRes_BITCAST()
93 std::tie(Lo, Hi) = DAG.SplitVector(InOp, dl, LoVT, HiVT); in ExpandRes_BITCAST()
560 EVT LoVT, HiVT; in SplitRes_UNDEF() local
561 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); in SplitRes_UNDEF()
562 Lo = DAG.getUNDEF(LoVT); in SplitRes_UNDEF()
H A DLegalizeTypes.cpp1019 EVT LoVT, EVT HiVT, in SplitInteger() argument
1022 assert(LoVT.getSizeInBits() + HiVT.getSizeInBits() == in SplitInteger()
1024 Lo = DAG.getNode(ISD::TRUNCATE, dl, LoVT, Op); in SplitInteger()
1032 DAG.getConstant(LoVT.getSizeInBits(), dl, ShiftAmountTy)); in SplitInteger()
H A DSelectionDAG.cpp10102 EVT LoVT, HiVT; in GetSplitDestVTs() local
10104 LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT); in GetSplitDestVTs()
10106 LoVT = HiVT = VT.getHalfNumVectorElementsVT(*getContext()); in GetSplitDestVTs()
10108 return std::make_pair(LoVT, HiVT); in GetSplitDestVTs()
10127 EVT LoVT, HiVT; in GetDependentSplitDestVTs() local
10129 LoVT = EnvVT; in GetDependentSplitDestVTs()
10135 LoVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts); in GetDependentSplitDestVTs()
10139 return std::make_pair(LoVT, HiVT); in GetDependentSplitDestVTs()
10145 SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, in SplitVector() argument
10147 assert(LoVT.isScalableVector() == HiVT.isScalableVector() && in SplitVector()
[all …]
H A DLegalizeTypes.h237 void SplitInteger(SDValue Op, EVT LoVT, EVT HiVT,
H A DLegalizeIntegerTypes.cpp4363 EVT LoVT = LHSLo.getValueType(); in IntegerExpandSetCCOperands() local
4364 SDVTList VTList = DAG.getVTList(LoVT, getSetCCResultType(LoVT)); in IntegerExpandSetCCOperands()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1489 EVT LoVT, HiVT; in getSplitDestVTs() local
1493 LoVT = EVT::getVectorVT(*DAG.getContext(), EltVT, LoNumElts); in getSplitDestVTs()
1497 return std::make_pair(LoVT, HiVT); in getSplitDestVTs()
1504 const EVT &LoVT, const EVT &HiVT, in splitVector() argument
1506 assert(LoVT.getVectorNumElements() + in splitVector()
1510 SDValue Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N, in splitVector()
1514 HiVT, N, DAG.getVectorIdxConstant(LoVT.getVectorNumElements(), DL)); in splitVector()
1538 EVT LoVT, HiVT; in SplitVectorLoad() local
1542 std::tie(LoVT, HiVT) = getSplitDestVTs(VT, DAG); in SplitVectorLoad()
1544 std::tie(Lo, Hi) = splitVector(Op, SL, LoVT, HiVT, DAG); in SplitVectorLoad()
[all …]
H A DAMDGPUISelLowering.h118 const EVT &LoVT, const EVT &HighVT,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1891 const EVT &LoVT, const EVT &HiVT);
1895 EVT LoVT, HiVT;
1896 std::tie(LoVT, HiVT) = GetSplitDestVTs(N.getValueType());
1897 return SplitVector(N, DL, LoVT, HiVT);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6067 EVT LoVT, HiVT; in splitVectorIntUnary() local
6068 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT); in splitVectorIntUnary()
6070 DAG.getNode(Op.getOpcode(), dl, LoVT, Lo), in splitVectorIntUnary()
6094 EVT LoVT, HiVT; in splitVectorIntBinary() local
6095 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT); in splitVectorIntBinary()
6097 DAG.getNode(Op.getOpcode(), dl, LoVT, LHS1, RHS1), in splitVectorIntBinary()
21096 EVT LoVT, HiVT; in LowerTRUNCATE() local
21097 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VT); in LowerTRUNCATE()
21099 Lo = DAG.getNode(ISD::TRUNCATE, DL, LoVT, Lo); in LowerTRUNCATE()
22772 EVT LoVT, HiVT; in splitIntVSETCC() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.cpp3999 EVT LoVT, HiVT; in lowerVECTOR_REVERSE() local
4000 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(VecVT); in lowerVECTOR_REVERSE()
4001 Lo = DAG.getNode(ISD::VECTOR_REVERSE, DL, LoVT, Lo); in lowerVECTOR_REVERSE()
4010 DAG.getIntPtrConstant(LoVT.getVectorMinNumElements(), DL)); in lowerVECTOR_REVERSE()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp16547 EVT LoVT, HiVT; in ReplaceReductionResults() local
16550 std::tie(LoVT, HiVT) = DAG.GetSplitDestVTs(N->getValueType(0)); in ReplaceReductionResults()
16552 SDValue InterVal = DAG.getNode(InterOp, dl, LoVT, Lo, Hi); in ReplaceReductionResults()
16553 SDValue SplitVal = DAG.getNode(AcrossOp, dl, LoVT, InterVal); in ReplaceReductionResults()