Searched refs:StVT (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 546 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.getFixedValue())) { 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 D | LegalizeVectorOps.cpp | 279 EVT StVT = ST->getMemoryVT(); in LegalizeOp() local 281 if (StVT.isVector() && ST->isTruncatingStore()) in LegalizeOp() 282 Action = TLI.getTruncStoreAction(ValVT, StVT); in LegalizeOp()
|
H A D | LegalizeVectorTypes.cpp | 6210 EVT StVT = StVal.getValueType(); in WidenVecOp_STORE() local 6211 EVT WideVT = TLI.getTypeToTransformTo(*DAG.getContext(), StVT); in WidenVecOp_STORE() 6222 unsigned NumVTElts = StVT.getVectorMinNumElements(); in WidenVecOp_STORE() 6958 EVT StVT = ST->getMemoryVT(); in GenWidenVectorStores() local 6959 TypeSize StWidth = StVT.getSizeInBits(); in GenWidenVectorStores() 6964 assert(StVT.getVectorElementType() == ValEltVT); in GenWidenVectorStores() 6965 assert(StVT.isScalableVector() == ValVT.isScalableVector() && in GenWidenVectorStores()
|
H A D | TargetLowering.cpp | 8965 EVT StVT = ST->getMemoryVT(); in scalarizeVectorStore() local 8967 if (StVT.isScalableVector()) in scalarizeVectorStore() 8975 EVT MemSclVT = StVT.getScalarType(); in scalarizeVectorStore() 8977 unsigned NumElem = StVT.getVectorNumElements(); in scalarizeVectorStore() 8986 unsigned NumBits = StVT.getSizeInBits(); in scalarizeVectorStore()
|
/openbsd/gnu/llvm/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.cpp | 26170 MVT CastVT = MVT::getVectorVT(StVT, 2); in LowerStore() 26172 StoredVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, StVT, StoredVal, in LowerStore() 32631 MVT StVT = Subtarget.hasSSE2() ? MVT::v2i64 : MVT::v4f32; in LowerATOMIC_STORE() local 32632 SclToVec = DAG.getBitcast(StVT, SclToVec); in LowerATOMIC_STORE() 50673 EVT StVT = St->getMemoryVT(); in combineStore() local 50680 if (!Subtarget.hasAVX512() && VT == StVT && VT.isVector() && in combineStore() 50693 if (VT == MVT::v1i1 && VT == StVT && Subtarget.hasAVX512() && in combineStore() 50720 VT == MVT::v64i1) && VT == StVT && TLI.isTypeLegal(VT) && in combineStore() 50755 if (VT.is256BitVector() && StVT == VT && in combineStore() 50767 if (St->isNonTemporal() && StVT == VT && in combineStore() [all …]
|
/openbsd/gnu/llvm/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 16431 EVT StVT = St->getMemoryVT(); in PerformTruncatingStoreCombine() local 16433 assert(StVT != VT && "Cannot truncate to the same type"); in PerformTruncatingStoreCombine() 16435 unsigned ToEltSz = StVT.getScalarSizeInBits(); in PerformTruncatingStoreCombine() 16450 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), StVT.getScalarType(), in PerformTruncatingStoreCombine()
|