Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIISelLowering.cpp11876 uint64_t ByteShift = BitShift / 8; in calculateByteProvider() local
11878 uint64_t NewIndex = (Index + ByteShift) % ConcatSizeInBytes; in calculateByteProvider()
11903 uint64_t ByteShift = BitShift / 8; in calculateByteProvider() local
11908 return BytesProvided - ByteShift > Index in calculateByteProvider()
11910 Index + ByteShift) in calculateByteProvider()
11925 uint64_t ByteShift = BitShift / 8; in calculateByteProvider() local
11931 return Index < ByteShift in calculateByteProvider()
11933 : calculateByteProvider(Op.getOperand(0), Index - ByteShift, in calculateByteProvider()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8729 uint64_t ByteShift = BitShift / 8; in calculateByteProvider() local
8734 return Index < ByteShift in calculateByteProvider()
8736 : calculateByteProvider(Op->getOperand(0), Index - ByteShift, in calculateByteProvider()
19806 unsigned ByteShift = MaskInfo.second; in ShrinkLoadReplaceStoreWithStore() local
19812 ByteShift*8, (ByteShift+NumBytes)*8); in ShrinkLoadReplaceStoreWithStore()
19842 if (ByteShift) { in ShrinkLoadReplaceStoreWithStore()
19846 DAG.getShiftAmountConstant(ByteShift * 8, IVal.getValueType(), DL)); in ShrinkLoadReplaceStoreWithStore()
19852 StOffset = ByteShift; in ShrinkLoadReplaceStoreWithStore()
19854 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6181 uint64_t ByteShift = ShiftVal / 8; in getFauxShuffleMask() local
6189 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j) in getFauxShuffleMask()
6190 Mask[i + j] = i + j - ByteShift; in getFauxShuffleMask()
6193 for (unsigned j = ByteShift; j != NumBytesPerElt; ++j) in getFauxShuffleMask()
6194 Mask[i + j - ByteShift] = i + j; in getFauxShuffleMask()
11666 bool ByteShift = ShiftEltBits > 64; in matchShuffleAsShift() local
11667 Opcode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI) in matchShuffleAsShift()
11668 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI); in matchShuffleAsShift()
11669 int ShiftAmt = Shift * ScalarSizeInBits / (ByteShift ? 8 : 1); in matchShuffleAsShift()
11673 Scale = ByteShift ? Scale / 2 : Scale; in matchShuffleAsShift()
[all …]