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

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

Completed in 474 milliseconds