blob: 185256fd1befaaeb7aa24fc252d7f8d25b4ed153 [file] [log] [blame]
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +00001//===-- X86ShuffleDecode.h - X86 shuffle decode logic -----------*-C++-*---===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Define several functions to decode x86 specific shuffle semantics into a
11// generic vector mask.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_TARGET_X86_UTILS_X86SHUFFLEDECODE_H
16#define LLVM_LIB_TARGET_X86_UTILS_X86SHUFFLEDECODE_H
17
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/ArrayRef.h"
20
21//===----------------------------------------------------------------------===//
22// Vector Mask Decoding
23//===----------------------------------------------------------------------===//
24
25namespace llvm {
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000026class MVT;
27
28enum { SM_SentinelUndef = -1, SM_SentinelZero = -2 };
29
30void DecodeINSERTPSMask(unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
31
32// <3,1> or <6,7,2,3>
33void DecodeMOVHLPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask);
34
35// <0,2> or <0,1,4,5>
36void DecodeMOVLHPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask);
37
38void DecodeMOVSLDUPMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
39
40void DecodeMOVSHDUPMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
41
42void DecodeMOVDDUPMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
43
44void DecodePSLLDQMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
45
46void DecodePSRLDQMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
47
48void DecodePALIGNRMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
49
50void DecodePSHUFMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
51
52void DecodePSHUFHWMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
53
54void DecodePSHUFLWMask(MVT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
55
Simon Pilgrimf8f86ab2015-09-13 11:28:45 +000056/// \brief Decodes a PSWAPD 3DNow! instruction.
57void DecodePSWAPMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
58
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000059/// DecodeSHUFPMask - This decodes the shuffle masks for shufp*. VT indicates
60/// the type of the vector allowing it to handle different datatypes and vector
61/// widths.
62void DecodeSHUFPMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
63
64/// DecodeUNPCKHMask - This decodes the shuffle masks for unpckhps/unpckhpd
65/// and punpckh*. VT indicates the type of the vector allowing it to handle
66/// different datatypes and vector widths.
67void DecodeUNPCKHMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
68
69/// DecodeUNPCKLMask - This decodes the shuffle masks for unpcklps/unpcklpd
70/// and punpckl*. VT indicates the type of the vector allowing it to handle
71/// different datatypes and vector widths.
72void DecodeUNPCKLMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
73
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000074/// \brief Decode a PSHUFB mask from a raw array of constants such as from
75/// BUILD_VECTOR.
76void DecodePSHUFBMask(ArrayRef<uint64_t> RawMask,
77 SmallVectorImpl<int> &ShuffleMask);
78
79/// \brief Decode a BLEND immediate mask into a shuffle mask.
80void DecodeBLENDMask(MVT VT, unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
81
82void DecodeVPERM2X128Mask(MVT VT, unsigned Imm,
83 SmallVectorImpl<int> &ShuffleMask);
84
Igor Bregerd7bae452015-10-15 13:29:07 +000085/// \brief Decode a shuffle packed values at 128-bit granularity
86/// immediate mask into a shuffle mask.
87void decodeVSHUF64x2FamilyMask(MVT VT, unsigned Imm,
88 SmallVectorImpl<int> &ShuffleMask);
89
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000090/// DecodeVPERMMask - this decodes the shuffle masks for VPERMQ/VPERMPD.
91/// No VT provided since it only works on 256-bit, 4 element vectors.
92void DecodeVPERMMask(unsigned Imm, SmallVectorImpl<int> &ShuffleMask);
93
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000094/// \brief Decode a zero extension instruction as a shuffle mask.
Simon Pilgrime1b6db92016-02-06 16:33:42 +000095void DecodeZeroExtendMask(MVT SrcScalarVT, MVT DstVT,
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +000096 SmallVectorImpl<int> &ShuffleMask);
97
98/// \brief Decode a move lower and zero upper instruction as a shuffle mask.
99void DecodeZeroMoveLowMask(MVT VT, SmallVectorImpl<int> &ShuffleMask);
100
101/// \brief Decode a scalar float move instruction as a shuffle mask.
102void DecodeScalarMoveMask(MVT VT, bool IsLoad,
103 SmallVectorImpl<int> &ShuffleMask);
Simon Pilgrimd85cae32015-07-06 20:46:41 +0000104
105/// \brief Decode a SSE4A EXTRQ instruction as a v16i8 shuffle mask.
106void DecodeEXTRQIMask(int Len, int Idx,
107 SmallVectorImpl<int> &ShuffleMask);
108
109/// \brief Decode a SSE4A INSERTQ instruction as a v16i8 shuffle mask.
110void DecodeINSERTQIMask(int Len, int Idx,
111 SmallVectorImpl<int> &ShuffleMask);
Elena Demikhovskye88038f2015-09-08 06:38:21 +0000112
Elena Demikhovskye88038f2015-09-08 06:38:21 +0000113/// \brief Decode a VPERM W/D/Q/PS/PD mask from a raw array of constants.
114void DecodeVPERMVMask(ArrayRef<uint64_t> RawMask,
115 SmallVectorImpl<int> &ShuffleMask);
116
Elena Demikhovskye88038f2015-09-08 06:38:21 +0000117/// \brief Decode a VPERMT2 W/D/Q/PS/PD mask from a raw array of constants.
118void DecodeVPERMV3Mask(ArrayRef<uint64_t> RawMask,
119 SmallVectorImpl<int> &ShuffleMask);
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000120} // llvm namespace
NAKAMURA Takumifb3bd712015-05-25 01:43:23 +0000121
122#endif