Searched refs:StVT (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 544 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 D | LegalizeVectorOps.cpp | 278 EVT StVT = ST->getMemoryVT(); in LegalizeOp() local 280 if (StVT.isVector() && ST->isTruncatingStore()) in LegalizeOp() 281 Action = TLI.getTruncStoreAction(ValVT, StVT); in LegalizeOp()
|
| H A D | LegalizeVectorTypes.cpp | 5850 EVT StVT = StVal.getValueType(); in WidenVecOp_STORE() local 5851 EVT WideVT = TLI.getTypeToTransformTo(*DAG.getContext(), StVT); in WidenVecOp_STORE() 5862 unsigned NumVTElts = StVT.getVectorMinNumElements(); in WidenVecOp_STORE() 6565 EVT StVT = ST->getMemoryVT(); in GenWidenVectorStores() local 6566 TypeSize StWidth = StVT.getSizeInBits(); in GenWidenVectorStores() 6571 assert(StVT.getVectorElementType() == ValEltVT); in GenWidenVectorStores() 6572 assert(StVT.isScalableVector() == ValVT.isScalableVector() && in GenWidenVectorStores()
|
| H A D | TargetLowering.cpp | 8295 EVT StVT = ST->getMemoryVT(); in scalarizeVectorStore() local 8297 if (StVT.isScalableVector()) in scalarizeVectorStore() 8305 EVT MemSclVT = StVT.getScalarType(); in scalarizeVectorStore() 8307 unsigned NumElem = StVT.getVectorNumElements(); in scalarizeVectorStore() 8316 unsigned NumBits = StVT.getSizeInBits(); in scalarizeVectorStore()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 25717 MVT CastVT = MVT::getVectorVT(StVT, 2); in LowerStore() 25719 StoredVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, StVT, StoredVal, in LowerStore() 31745 MVT StVT = Subtarget.hasSSE2() ? MVT::v2i64 : MVT::v4f32; in LowerATOMIC_STORE() local 31746 SclToVec = DAG.getBitcast(StVT, SclToVec); in LowerATOMIC_STORE() 49350 EVT StVT = St->getMemoryVT(); in combineStore() local 49357 if (!Subtarget.hasAVX512() && VT == StVT && VT.isVector() && in combineStore() 49370 if (VT == MVT::v1i1 && VT == StVT && Subtarget.hasAVX512() && in combineStore() 49397 VT == MVT::v64i1) && VT == StVT && TLI.isTypeLegal(VT) && in combineStore() 49432 if (VT.is256BitVector() && StVT == VT && in combineStore() 49444 if (St->isNonTemporal() && StVT == VT && in combineStore() [all …]
|
| /llvm-project-15.0.7/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 16354 EVT StVT = St->getMemoryVT(); in PerformTruncatingStoreCombine() local 16356 assert(StVT != VT && "Cannot truncate to the same type"); in PerformTruncatingStoreCombine() 16358 unsigned ToEltSz = StVT.getScalarSizeInBits(); in PerformTruncatingStoreCombine() 16373 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), in PerformTruncatingStoreCombine()
|