Home
last modified time | relevance | path

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

/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10681 unsigned ByteShift = MaskInfo.second; in ShrinkLoadReplaceStoreWithStore() local
10687 ByteShift*8, (ByteShift+NumBytes)*8); in ShrinkLoadReplaceStoreWithStore()
10699 if (ByteShift) { in ShrinkLoadReplaceStoreWithStore()
10702 DAG.getConstant(ByteShift*8, DL, in ShrinkLoadReplaceStoreWithStore()
10711 StOffset = ByteShift; in ShrinkLoadReplaceStoreWithStore()
10713 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp7451 bool ByteShift = ShiftEltBits > 64; in lowerVectorShuffleAsShift() local
7452 unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI) in lowerVectorShuffleAsShift()
7453 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI); in lowerVectorShuffleAsShift()
7454 int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1); in lowerVectorShuffleAsShift()
7458 Scale = ByteShift ? Scale / 2 : Scale; in lowerVectorShuffleAsShift()