Searched refs:StVT (Results 1 – 6 of 6) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 555 EVT StVT = ST->getMemoryVT(); in LegalizeStoreOps() local 556 TypeSize StWidth = StVT.getSizeInBits(); in LegalizeStoreOps() 557 TypeSize StSize = StVT.getStoreSizeInBits(); in LegalizeStoreOps() 565 Value = DAG.getZeroExtendInReg(Value, dl, StVT); in LegalizeStoreOps() 570 } else if (!StVT.isVector() && !isPowerOf2_64(StWidth.getFixedValue())) { in LegalizeStoreOps() 572 assert(!StVT.isVector() && "Unsupported truncstore!"); in LegalizeStoreOps() 629 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) { in LegalizeStoreOps() 649 assert(!StVT.isVector() && in LegalizeStoreOps() 655 if (TLI.isTypeLegal(StVT)) { in LegalizeStoreOps() 656 Value = DAG.getNode(ISD::TRUNCATE, dl, StVT, Value); in LegalizeStoreOps() [all …]
|
| H A D | LegalizeVectorOps.cpp | 294 EVT StVT = ST->getMemoryVT(); in LegalizeOp() local 296 if (StVT.isVector() && ST->isTruncatingStore()) in LegalizeOp() 297 Action = TLI.getTruncStoreAction(ValVT, StVT); in LegalizeOp()
|
| H A D | LegalizeVectorTypes.cpp | 6487 EVT StVT = StVal.getValueType(); in WidenVecOp_STORE() local 6488 EVT WideVT = TLI.getTypeToTransformTo(*DAG.getContext(), StVT); in WidenVecOp_STORE() 6499 StVT.getVectorElementCount()); in WidenVecOp_STORE() 6502 EVL, StVT, ST->getMemOperand(), in WidenVecOp_STORE() 7241 EVT StVT = ST->getMemoryVT(); in GenWidenVectorStores() local 7242 TypeSize StWidth = StVT.getSizeInBits(); in GenWidenVectorStores() 7247 assert(StVT.getVectorElementType() == ValEltVT); in GenWidenVectorStores() 7248 assert(StVT.isScalableVector() == ValVT.isScalableVector() && in GenWidenVectorStores()
|
| H A D | TargetLowering.cpp | 9385 EVT StVT = ST->getMemoryVT(); in scalarizeVectorStore() local 9387 if (StVT.isScalableVector()) in scalarizeVectorStore() 9395 EVT MemSclVT = StVT.getScalarType(); in scalarizeVectorStore() 9397 unsigned NumElem = StVT.getVectorNumElements(); in scalarizeVectorStore() 9406 unsigned NumBits = StVT.getSizeInBits(); in scalarizeVectorStore()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 24522 MVT CastVT = MVT::getVectorVT(StVT, 2); in LowerStore() 24524 StoredVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, StVT, StoredVal, in LowerStore() 31321 MVT StVT = Subtarget.hasSSE2() ? MVT::v2i64 : MVT::v4f32; in LowerATOMIC_STORE() local 31322 SclToVec = DAG.getBitcast(StVT, SclToVec); in LowerATOMIC_STORE() 50383 EVT StVT = St->getMemoryVT(); in combineStore() local 50390 if (!Subtarget.hasAVX512() && VT == StVT && VT.isVector() && in combineStore() 50403 if (VT == MVT::v1i1 && VT == StVT && Subtarget.hasAVX512() && in combineStore() 50430 VT == MVT::v64i1) && VT == StVT && TLI.isTypeLegal(VT) && in combineStore() 50465 if (VT.is256BitVector() && StVT == VT && in combineStore() 50477 if (St->isNonTemporal() && StVT == VT && in combineStore() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 16546 EVT StVT = St->getMemoryVT(); in PerformTruncatingStoreCombine() local 16548 assert(StVT != VT && "Cannot truncate to the same type"); in PerformTruncatingStoreCombine() 16550 unsigned ToEltSz = StVT.getScalarSizeInBits(); in PerformTruncatingStoreCombine() 16565 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), in PerformTruncatingStoreCombine()
|