Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp192 uint64_t ScalarSizeInBytes = ScalarSize / 8; in vectorizeLoadInsert() local
193 if (Offset.urem(ScalarSizeInBytes) != 0) in vectorizeLoadInsert()
197 OffsetEltIndex = Offset.udiv(ScalarSizeInBytes).getZExtValue(); in vectorizeLoadInsert()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1093 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; in createBSWAPShuffleMask() local
1095 for (int J = ScalarSizeInBytes - 1; J >= 0; --J) in createBSWAPShuffleMask()
1096 ShuffleMask.push_back((I * ScalarSizeInBytes) + J); in createBSWAPShuffleMask()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp18903 unsigned ScalarSizeInBytes) { in isValidImmForSVEVecImmAddrMode() argument
18905 if (OffsetInBytes % ScalarSizeInBytes) in isValidImmForSVEVecImmAddrMode()
18909 if (OffsetInBytes / ScalarSizeInBytes > 31) in isValidImmForSVEVecImmAddrMode()
18923 unsigned ScalarSizeInBytes) { in isValidImmForSVEVecImmAddrMode() argument
18926 OffsetConst->getZExtValue(), ScalarSizeInBytes); in isValidImmForSVEVecImmAddrMode()
19291 unsigned ScalarSizeInBytes) { in combineSVEPrefetchVecBaseImmOff() argument
19294 if (isValidImmForSVEVecImmAddrMode(N->getOperand(ImmPos), ScalarSizeInBytes)) in combineSVEPrefetchVecBaseImmOff()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp31473 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; in LowerBITREVERSE_XOP() local
31488 for (int j = ScalarSizeInBytes - 1; j >= 0; --j) { in LowerBITREVERSE_XOP()
31489 int SourceByte = 16 + (i * ScalarSizeInBytes) + j; in LowerBITREVERSE_XOP()