Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp546 EVT StVT = ST->getMemoryVT(); in LegalizeStoreOps() local
547 TypeSize StWidth = StVT.getSizeInBits(); in LegalizeStoreOps()
548 TypeSize StSize = StVT.getStoreSizeInBits(); in LegalizeStoreOps()
556 Value = DAG.getZeroExtendInReg(Value, dl, StVT); in LegalizeStoreOps()
561 } else if (!StVT.isVector() && !isPowerOf2_64(StWidth.getFixedSize())) { in LegalizeStoreOps()
563 assert(!StVT.isVector() && "Unsupported truncstore!"); in LegalizeStoreOps()
619 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { in LegalizeStoreOps()
639 assert(!StVT.isVector() && in LegalizeStoreOps()
645 if (TLI.isTypeLegal(StVT)) { in LegalizeStoreOps()
646 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.cpp5462 EVT StVT = ST->getMemoryVT(); in GenWidenVectorStores() local
5463 TypeSize StWidth = StVT.getSizeInBits(); in GenWidenVectorStores()
5468 assert(StVT.getVectorElementType() == ValEltVT); in GenWidenVectorStores()
5469 assert(StVT.isScalableVector() == ValVT.isScalableVector() && in GenWidenVectorStores()
H A DTargetLowering.cpp7418 EVT StVT = ST->getMemoryVT(); in scalarizeVectorStore() local
7420 if (StVT.isScalableVector()) in scalarizeVectorStore()
7428 EVT MemSclVT = StVT.getScalarType(); in scalarizeVectorStore()
7430 unsigned NumElem = StVT.getVectorNumElements(); in scalarizeVectorStore()
7439 unsigned NumBits = StVT.getSizeInBits(); in scalarizeVectorStore()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp24443 MVT CastVT = MVT::getVectorVT(StVT, 2); in LowerStore()
24445 StoredVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, StVT, StoredVal, in LowerStore()
29966 MVT StVT = Subtarget.hasSSE2() ? MVT::v2i64 : MVT::v4f32; in LowerATOMIC_STORE() local
29967 SclToVec = DAG.getBitcast(StVT, SclToVec); in LowerATOMIC_STORE()
46142 EVT StVT = St->getMemoryVT(); in combineStore() local
46149 if (!Subtarget.hasAVX512() && VT == StVT && VT.isVector() && in combineStore()
46162 if (VT == MVT::v1i1 && VT == StVT && Subtarget.hasAVX512() && in combineStore()
46189 VT == MVT::v64i1) && VT == StVT && TLI.isTypeLegal(VT) && in combineStore()
46224 if (VT.is256BitVector() && StVT == VT && in combineStore()
46236 if (St->isNonTemporal() && StVT == VT && in combineStore()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15526 EVT StVT = St->getMemoryVT(); in PerformTruncatingStoreCombine() local
15528 assert(StVT != VT && "Cannot truncate to the same type"); in PerformTruncatingStoreCombine()
15530 unsigned ToEltSz = StVT.getScalarSizeInBits(); in PerformTruncatingStoreCombine()
15545 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), in PerformTruncatingStoreCombine()