Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DLegalizeVectorTypes.cpp5274 TypeSize NewVTWidth = NewVT.getSizeInBits(); in GenWidenVectorLoads() local
5280 if (TypeSize::isKnownLE(LdWidth, NewVTWidth)) { in GenWidenVectorLoads()
5282 unsigned NumElts = WidenWidth.getFixedSize() / NewVTWidth.getFixedSize(); in GenWidenVectorLoads()
5291 assert(WidenWidth.getFixedSize() % NewVTWidth.getFixedSize() == 0); in GenWidenVectorLoads()
5292 unsigned NumConcat = WidenWidth.getFixedSize() / NewVTWidth.getFixedSize(); in GenWidenVectorLoads()
5308 LdWidth -= NewVTWidth; in GenWidenVectorLoads()
5312 if (TypeSize::isKnownLT(LdWidth, NewVTWidth)) { in GenWidenVectorLoads()
5316 NewVTWidth = NewVT.getSizeInBits(); in GenWidenVectorLoads()
5328 } while (TypeSize::isKnownGT(LdWidth, NewVTWidth)); in GenWidenVectorLoads()
5479 TypeSize NewVTWidth = NewVT.getSizeInBits(); in GenWidenVectorStores() local
[all …]