Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp1317 unsigned ByteShift = ShAmt >> 3; in CollectBSwapParts() local
1320 OverallLeftShift += ByteShift; in CollectBSwapParts()
1321 ByteMask >>= ByteShift; in CollectBSwapParts()
1324 OverallLeftShift -= ByteShift; in CollectBSwapParts()
1325 ByteMask <<= ByteShift; in CollectBSwapParts()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp6339 unsigned ByteShift = MaskInfo.second; in ShrinkLoadReplaceStoreWithStore() local
6345 ByteShift*8, (ByteShift+NumBytes)*8); in ShrinkLoadReplaceStoreWithStore()
6357 if (ByteShift) in ShrinkLoadReplaceStoreWithStore()
6359 DAG.getConstant(ByteShift*8, in ShrinkLoadReplaceStoreWithStore()
6367 StOffset = ByteShift; in ShrinkLoadReplaceStoreWithStore()
6369 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10799 unsigned ByteShift = MaskInfo.second; in ShrinkLoadReplaceStoreWithStore() local
10805 ByteShift*8, (ByteShift+NumBytes)*8); in ShrinkLoadReplaceStoreWithStore()
10817 if (ByteShift) { in ShrinkLoadReplaceStoreWithStore()
10820 DAG.getConstant(ByteShift*8, DL, in ShrinkLoadReplaceStoreWithStore()
10829 StOffset = ByteShift; in ShrinkLoadReplaceStoreWithStore()
10831 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp7877 bool ByteShift = ShiftEltBits > 64; in lowerVectorShuffleAsShift() local
7878 unsigned OpCode = Left ? (ByteShift ? X86ISD::VSHLDQ : X86ISD::VSHLI) in lowerVectorShuffleAsShift()
7879 : (ByteShift ? X86ISD::VSRLDQ : X86ISD::VSRLI); in lowerVectorShuffleAsShift()
7880 int ShiftAmt = Shift * VT.getScalarSizeInBits() / (ByteShift ? 8 : 1); in lowerVectorShuffleAsShift()
7884 Scale = ByteShift ? Scale / 2 : Scale; in lowerVectorShuffleAsShift()
7888 MVT ShiftVT = ByteShift ? MVT::getVectorVT(MVT::i8, VT.getSizeInBits() / 8) in lowerVectorShuffleAsShift()