Home
last modified time | relevance | path

Searched refs:StVT (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp544 EVT StVT = ST->getMemoryVT(); in LegalizeStoreOps() local
545 TypeSize StWidth = StVT.getSizeInBits(); in LegalizeStoreOps()
546 TypeSize StSize = StVT.getStoreSizeInBits(); in LegalizeStoreOps()
554 Value = DAG.getZeroExtendInReg(Value, dl, StVT); in LegalizeStoreOps()
559 } else if (!StVT.isVector() && !isPowerOf2_64(StWidth.getFixedSize())) { in LegalizeStoreOps()
561 assert(!StVT.isVector() && "Unsupported truncstore!"); in LegalizeStoreOps()
617 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { in LegalizeStoreOps()
637 assert(!StVT.isVector() && in LegalizeStoreOps()
643 if (TLI.isTypeLegal(StVT)) { in LegalizeStoreOps()
644 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value); in LegalizeStoreOps()
[all …]
H A DLegalizeVectorOps.cpp290 EVT StVT = ST->getMemoryVT(); in LegalizeOp() local
292 if (StVT.isVector() && ST->isTruncatingStore()) { in LegalizeOp()
295 switch (TLI.getTruncStoreAction(ValVT, StVT)) { in LegalizeOp()
H A DLegalizeVectorTypes.cpp5457 EVT StVT = ST->getMemoryVT(); in GenWidenVectorStores() local
5458 TypeSize StWidth = StVT.getSizeInBits(); in GenWidenVectorStores()
5463 assert(StVT.getVectorElementType() == ValEltVT); in GenWidenVectorStores()
5464 assert(StVT.isScalableVector() == ValVT.isScalableVector() && in GenWidenVectorStores()
H A DTargetLowering.cpp7389 EVT StVT = ST->getMemoryVT(); in scalarizeVectorStore() local
7391 if (StVT.isScalableVector()) in scalarizeVectorStore()
7399 EVT MemSclVT = StVT.getScalarType(); in scalarizeVectorStore()
7401 unsigned NumElem = StVT.getVectorNumElements(); in scalarizeVectorStore()
7410 unsigned NumBits = StVT.getSizeInBits(); in scalarizeVectorStore()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp24274 MVT StVT = Subtarget.is64Bit() && StoreVT.isInteger() ? MVT::i64 : MVT::f64; in LowerStore() local
24275 MVT CastVT = MVT::getVectorVT(StVT, 2); in LowerStore()
24277 StoredVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, StVT, StoredVal, in LowerStore()
29787 MVT StVT = Subtarget.hasSSE2() ? MVT::v2i64 : MVT::v4f32; in LowerATOMIC_STORE() local
29788 SclToVec = DAG.getBitcast(StVT, SclToVec); in LowerATOMIC_STORE()
45820 EVT StVT = St->getMemoryVT(); in combineStore() local
45827 if (!Subtarget.hasAVX512() && VT == StVT && VT.isVector() && in combineStore()
45840 if (VT == MVT::v1i1 && VT == StVT && Subtarget.hasAVX512() && in combineStore()
45853 if ((VT == MVT::v1i1 || VT == MVT::v2i1 || VT == MVT::v4i1) && VT == StVT && in combineStore()
45867 VT == MVT::v64i1) && VT == StVT && TLI.isTypeLegal(VT) && in combineStore()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15144 EVT StVT = St->getMemoryVT(); in PerformTruncatingStoreCombine() local
15146 assert(StVT != VT && "Cannot truncate to the same type"); in PerformTruncatingStoreCombine()
15148 unsigned ToEltSz = StVT.getScalarSizeInBits(); in PerformTruncatingStoreCombine()
15163 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), in PerformTruncatingStoreCombine()