Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineAndOrXor.cpp1555 unsigned ByteShift = ShAmt >> 3; in CollectBSwapParts() local
1558 OverallLeftShift += ByteShift; in CollectBSwapParts()
1559 ByteMask >>= ByteShift; in CollectBSwapParts()
1562 OverallLeftShift -= ByteShift; in CollectBSwapParts()
1563 ByteMask <<= ByteShift; in CollectBSwapParts()
/NextBSD/contrib/llvm/lib/CodeGen/SelectionDAG/
HDDAGCombiner.cpp10302 unsigned ByteShift = MaskInfo.second; in ShrinkLoadReplaceStoreWithStore() local
10308 ByteShift*8, (ByteShift+NumBytes)*8); in ShrinkLoadReplaceStoreWithStore()
10320 if (ByteShift) { in ShrinkLoadReplaceStoreWithStore()
10323 DAG.getConstant(ByteShift*8, DL, in ShrinkLoadReplaceStoreWithStore()
10332 StOffset = ByteShift; in ShrinkLoadReplaceStoreWithStore()
10334 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86ISelLowering.cpp6925 bool ByteShift = ShiftEltBits > 64; in lowerVectorShuffleAsShift() local
6926 unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI) in lowerVectorShuffleAsShift()
6927 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI); in lowerVectorShuffleAsShift()
6928 int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1); in lowerVectorShuffleAsShift()
6932 Scale = ByteShift ? Scale / 2 : Scale; in lowerVectorShuffleAsShift()