Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp206 uint64_t ScalarSizeInBytes = ScalarSize / 8; in vectorizeLoadInsert() local
207 if (Offset.urem(ScalarSizeInBytes) != 0) in vectorizeLoadInsert()
211 OffsetEltIndex = Offset.udiv(ScalarSizeInBytes).getZExtValue(); in vectorizeLoadInsert()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1137 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; in createBSWAPShuffleMask() local
1139 for (int J = ScalarSizeInBytes - 1; J >= 0; --J) in createBSWAPShuffleMask()
1140 ShuffleMask.push_back((I * ScalarSizeInBytes) + J); in createBSWAPShuffleMask()
/openbsd/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp20801 unsigned ScalarSizeInBytes) { in isValidImmForSVEVecImmAddrMode() argument
20803 if (OffsetInBytes % ScalarSizeInBytes) in isValidImmForSVEVecImmAddrMode()
20807 if (OffsetInBytes / ScalarSizeInBytes > 31) in isValidImmForSVEVecImmAddrMode()
20821 unsigned ScalarSizeInBytes) { in isValidImmForSVEVecImmAddrMode() argument
20824 OffsetConst->getZExtValue(), ScalarSizeInBytes); in isValidImmForSVEVecImmAddrMode()
21189 unsigned ScalarSizeInBytes) { in combineSVEPrefetchVecBaseImmOff() argument
21192 if (isValidImmForSVEVecImmAddrMode(N->getOperand(ImmPos), ScalarSizeInBytes)) in combineSVEPrefetchVecBaseImmOff()
/openbsd/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp32359 int ScalarSizeInBytes = VT.getScalarSizeInBits() / 8; in LowerBITREVERSE_XOP() local
32374 for (int j = ScalarSizeInBytes - 1; j >= 0; --j) { in LowerBITREVERSE_XOP()
32375 int SourceByte = 16 + (i * ScalarSizeInBytes) + j; in LowerBITREVERSE_XOP()