/src/capstonev5/arch/AArch64/AArch64AddressingModes.h
Line  | Count  | Source  | 
1  |  | //===- AArch64AddressingModes.h - AArch64 Addressing Modes ------*- 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  |  | // This file contains the AArch64 addressing mode implementation stuff.  | 
11  |  | //  | 
12  |  | //===----------------------------------------------------------------------===//  | 
13  |  |  | 
14  |  | #ifndef CS_AARCH64_ADDRESSINGMODES_H  | 
15  |  | #define CS_AARCH64_ADDRESSINGMODES_H  | 
16  |  |  | 
17  |  | /* Capstone Disassembly Engine */  | 
18  |  | /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2019 */  | 
19  |  |  | 
20  |  | #include "../../MathExtras.h"  | 
21  |  |  | 
22  |  | /// AArch64_AM - AArch64 Addressing Mode Stuff  | 
23  |  |  | 
24  |  | //===----------------------------------------------------------------------===//  | 
25  |  | // Shifts  | 
26  |  | //  | 
27  |  | typedef enum AArch64_AM_ShiftExtendType { | 
28  |  |   AArch64_AM_InvalidShiftExtend = -1,  | 
29  |  |   AArch64_AM_LSL = 0,  | 
30  |  |   AArch64_AM_LSR,  | 
31  |  |   AArch64_AM_ASR,  | 
32  |  |   AArch64_AM_ROR,  | 
33  |  |   AArch64_AM_MSL,  | 
34  |  |  | 
35  |  |   AArch64_AM_UXTB,  | 
36  |  |   AArch64_AM_UXTH,  | 
37  |  |   AArch64_AM_UXTW,  | 
38  |  |   AArch64_AM_UXTX,  | 
39  |  |  | 
40  |  |   AArch64_AM_SXTB,  | 
41  |  |   AArch64_AM_SXTH,  | 
42  |  |   AArch64_AM_SXTW,  | 
43  |  |   AArch64_AM_SXTX,  | 
44  |  | } AArch64_AM_ShiftExtendType;  | 
45  |  |  | 
46  |  | /// getShiftName - Get the string encoding for the shift type.  | 
47  |  | static inline const char *AArch64_AM_getShiftExtendName(AArch64_AM_ShiftExtendType ST)  | 
48  | 22.3k  | { | 
49  | 22.3k  |   switch (ST) { | 
50  | 0  |     default: return NULL; // never reach  | 
51  | 7.00k  |     case AArch64_AM_LSL: return "lsl";  | 
52  | 3.07k  |     case AArch64_AM_LSR: return "lsr";  | 
53  | 1.46k  |     case AArch64_AM_ASR: return "asr";  | 
54  | 1.75k  |     case AArch64_AM_ROR: return "ror";  | 
55  | 471  |     case AArch64_AM_MSL: return "msl";  | 
56  | 304  |     case AArch64_AM_UXTB: return "uxtb";  | 
57  | 1.22k  |     case AArch64_AM_UXTH: return "uxth";  | 
58  | 2.14k  |     case AArch64_AM_UXTW: return "uxtw";  | 
59  | 3.11k  |     case AArch64_AM_UXTX: return "uxtx";  | 
60  | 612  |     case AArch64_AM_SXTB: return "sxtb";  | 
61  | 589  |     case AArch64_AM_SXTH: return "sxth";  | 
62  | 135  |     case AArch64_AM_SXTW: return "sxtw";  | 
63  | 443  |     case AArch64_AM_SXTX: return "sxtx";  | 
64  | 22.3k  |   }  | 
65  | 22.3k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getShiftExtendName AArch64InstPrinter.c:AArch64_AM_getShiftExtendName Line  | Count  | Source  |  48  | 22.3k  | { |  49  | 22.3k  |   switch (ST) { |  50  | 0  |     default: return NULL; // never reach  |  51  | 7.00k  |     case AArch64_AM_LSL: return "lsl";  |  52  | 3.07k  |     case AArch64_AM_LSR: return "lsr";  |  53  | 1.46k  |     case AArch64_AM_ASR: return "asr";  |  54  | 1.75k  |     case AArch64_AM_ROR: return "ror";  |  55  | 471  |     case AArch64_AM_MSL: return "msl";  |  56  | 304  |     case AArch64_AM_UXTB: return "uxtb";  |  57  | 1.22k  |     case AArch64_AM_UXTH: return "uxth";  |  58  | 2.14k  |     case AArch64_AM_UXTW: return "uxtw";  |  59  | 3.11k  |     case AArch64_AM_UXTX: return "uxtx";  |  60  | 612  |     case AArch64_AM_SXTB: return "sxtb";  |  61  | 589  |     case AArch64_AM_SXTH: return "sxth";  |  62  | 135  |     case AArch64_AM_SXTW: return "sxtw";  |  63  | 443  |     case AArch64_AM_SXTX: return "sxtx";  |  64  | 22.3k  |   }  |  65  | 22.3k  | }  |  
  | 
66  |  |  | 
67  |  | /// getShiftType - Extract the shift type.  | 
68  |  | static inline AArch64_AM_ShiftExtendType AArch64_AM_getShiftType(unsigned Imm)  | 
69  | 69.9k  | { | 
70  | 69.9k  |   switch ((Imm >> 6) & 0x7) { | 
71  | 0  |     default: return AArch64_AM_InvalidShiftExtend;  | 
72  | 39.4k  |     case 0: return AArch64_AM_LSL;  | 
73  | 12.5k  |     case 1: return AArch64_AM_LSR;  | 
74  | 7.78k  |     case 2: return AArch64_AM_ASR;  | 
75  | 7.52k  |     case 3: return AArch64_AM_ROR;  | 
76  | 2.60k  |     case 4: return AArch64_AM_MSL;  | 
77  | 69.9k  |   }  | 
78  | 69.9k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getShiftType AArch64InstPrinter.c:AArch64_AM_getShiftType Line  | Count  | Source  |  69  | 69.9k  | { |  70  | 69.9k  |   switch ((Imm >> 6) & 0x7) { |  71  | 0  |     default: return AArch64_AM_InvalidShiftExtend;  |  72  | 39.4k  |     case 0: return AArch64_AM_LSL;  |  73  | 12.5k  |     case 1: return AArch64_AM_LSR;  |  74  | 7.78k  |     case 2: return AArch64_AM_ASR;  |  75  | 7.52k  |     case 3: return AArch64_AM_ROR;  |  76  | 2.60k  |     case 4: return AArch64_AM_MSL;  |  77  | 69.9k  |   }  |  78  | 69.9k  | }  |  
  | 
79  |  |  | 
80  |  | /// getShiftValue - Extract the shift value.  | 
81  |  | static inline unsigned AArch64_AM_getShiftValue(unsigned Imm)  | 
82  | 74.6k  | { | 
83  | 74.6k  |   return Imm & 0x3f;  | 
84  | 74.6k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getShiftValue AArch64InstPrinter.c:AArch64_AM_getShiftValue Line  | Count  | Source  |  82  | 74.6k  | { |  83  | 74.6k  |   return Imm & 0x3f;  |  84  | 74.6k  | }  |  
  | 
85  |  |  | 
86  |  | static inline unsigned AArch64_AM_getShifterImm(AArch64_AM_ShiftExtendType ST, unsigned Imm)  | 
87  | 0  | { | 
88  | 0  |   // assert((Imm & 0x3f) == Imm && "Illegal shifted immedate value!");  | 
89  | 0  |   unsigned STEnc = 0;  | 
90  | 0  | 
  | 
91  | 0  |   switch (ST) { | 
92  | 0  |     default:  // llvm_unreachable("Invalid shift requested"); | 
93  | 0  |     case AArch64_AM_LSL: STEnc = 0; break;  | 
94  | 0  |     case AArch64_AM_LSR: STEnc = 1; break;  | 
95  | 0  |     case AArch64_AM_ASR: STEnc = 2; break;  | 
96  | 0  |     case AArch64_AM_ROR: STEnc = 3; break;  | 
97  | 0  |     case AArch64_AM_MSL: STEnc = 4; break;  | 
98  | 0  |   }  | 
99  | 0  | 
  | 
100  | 0  |   return (STEnc << 6) | (Imm & 0x3f);  | 
101  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getShifterImm Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_getShifterImm  | 
102  |  |  | 
103  |  | //===----------------------------------------------------------------------===//  | 
104  |  | // Extends  | 
105  |  | //  | 
106  |  |  | 
107  |  | /// getArithShiftValue - get the arithmetic shift value.  | 
108  |  | static inline unsigned AArch64_AM_getArithShiftValue(unsigned Imm)  | 
109  | 16.4k  | { | 
110  | 16.4k  |   return Imm & 0x7;  | 
111  | 16.4k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getArithShiftValue AArch64InstPrinter.c:AArch64_AM_getArithShiftValue Line  | Count  | Source  |  109  | 16.4k  | { |  110  | 16.4k  |   return Imm & 0x7;  |  111  | 16.4k  | }  |  
  | 
112  |  |  | 
113  |  | /// getExtendType - Extract the extend type for operands of arithmetic ops.  | 
114  |  | static inline AArch64_AM_ShiftExtendType AArch64_AM_getExtendType(unsigned Imm)  | 
115  | 9.34k  | { | 
116  |  |   // assert((Imm & 0x7) == Imm && "invalid immediate!");  | 
117  | 9.34k  |   switch (Imm) { | 
118  | 0  |     default: // llvm_unreachable("Compiler bug!"); | 
119  | 304  |     case 0: return AArch64_AM_UXTB;  | 
120  | 1.22k  |     case 1: return AArch64_AM_UXTH;  | 
121  | 2.22k  |     case 2: return AArch64_AM_UXTW;  | 
122  | 3.81k  |     case 3: return AArch64_AM_UXTX;  | 
123  | 612  |     case 4: return AArch64_AM_SXTB;  | 
124  | 589  |     case 5: return AArch64_AM_SXTH;  | 
125  | 135  |     case 6: return AArch64_AM_SXTW;  | 
126  | 443  |     case 7: return AArch64_AM_SXTX;  | 
127  | 9.34k  |   }  | 
128  | 9.34k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getExtendType AArch64InstPrinter.c:AArch64_AM_getExtendType Line  | Count  | Source  |  115  | 9.34k  | { |  116  |  |   // assert((Imm & 0x7) == Imm && "invalid immediate!");  |  117  | 9.34k  |   switch (Imm) { |  118  | 0  |     default: // llvm_unreachable("Compiler bug!"); |  119  | 304  |     case 0: return AArch64_AM_UXTB;  |  120  | 1.22k  |     case 1: return AArch64_AM_UXTH;  |  121  | 2.22k  |     case 2: return AArch64_AM_UXTW;  |  122  | 3.81k  |     case 3: return AArch64_AM_UXTX;  |  123  | 612  |     case 4: return AArch64_AM_SXTB;  |  124  | 589  |     case 5: return AArch64_AM_SXTH;  |  125  | 135  |     case 6: return AArch64_AM_SXTW;  |  126  | 443  |     case 7: return AArch64_AM_SXTX;  |  127  | 9.34k  |   }  |  128  | 9.34k  | }  |  
  | 
129  |  |  | 
130  |  | static inline AArch64_AM_ShiftExtendType AArch64_AM_getArithExtendType(unsigned Imm)  | 
131  | 16.4k  | { | 
132  | 16.4k  |   return AArch64_AM_getExtendType((Imm >> 3) & 0x7);  | 
133  | 16.4k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getArithExtendType AArch64InstPrinter.c:AArch64_AM_getArithExtendType Line  | Count  | Source  |  131  | 16.4k  | { |  132  | 16.4k  |   return AArch64_AM_getExtendType((Imm >> 3) & 0x7);  |  133  | 16.4k  | }  |  
  | 
134  |  |  | 
135  |  | /// Mapping from extend bits to required operation:  | 
136  |  | ///   shifter: 000 ==> uxtb  | 
137  |  | ///            001 ==> uxth  | 
138  |  | ///            010 ==> uxtw  | 
139  |  | ///            011 ==> uxtx  | 
140  |  | ///            100 ==> sxtb  | 
141  |  | ///            101 ==> sxth  | 
142  |  | ///            110 ==> sxtw  | 
143  |  | ///            111 ==> sxtx  | 
144  |  | static inline unsigned AArch64_AM_getExtendEncoding(AArch64_AM_ShiftExtendType ET)  | 
145  | 0  | { | 
146  | 0  |   switch (ET) { | 
147  | 0  |     default: // llvm_unreachable("Invalid extend type requested"); | 
148  | 0  |     case AArch64_AM_UXTB: return 0; break;  | 
149  | 0  |     case AArch64_AM_UXTH: return 1; break;  | 
150  | 0  |     case AArch64_AM_UXTW: return 2; break;  | 
151  | 0  |     case AArch64_AM_UXTX: return 3; break;  | 
152  | 0  |     case AArch64_AM_SXTB: return 4; break;  | 
153  | 0  |     case AArch64_AM_SXTH: return 5; break;  | 
154  | 0  |     case AArch64_AM_SXTW: return 6; break;  | 
155  | 0  |     case AArch64_AM_SXTX: return 7; break;  | 
156  | 0  |   }  | 
157  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getExtendEncoding Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_getExtendEncoding  | 
158  |  |  | 
159  |  | /// getArithExtendImm - Encode the extend type and shift amount for an  | 
160  |  | ///                     arithmetic instruction:  | 
161  |  | ///   imm:     3-bit extend amount  | 
162  |  | ///   {5-3}  = shifter | 
163  |  | ///   {2-0}  = imm3 | 
164  |  | static inline unsigned AArch64_AM_getArithExtendImm(AArch64_AM_ShiftExtendType ET, unsigned Imm)  | 
165  | 0  | { | 
166  | 0  |   // assert((Imm & 0x7) == Imm && "Illegal shifted immedate value!");  | 
167  | 0  |   return (AArch64_AM_getExtendEncoding(ET) << 3) | (Imm & 0x7);  | 
168  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getArithExtendImm Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_getArithExtendImm  | 
169  |  |  | 
170  |  | /// getMemDoShift - Extract the "do shift" flag value for load/store  | 
171  |  | /// instructions.  | 
172  |  | static inline bool AArch64_AM_getMemDoShift(unsigned Imm)  | 
173  | 0  | { | 
174  | 0  |   return (Imm & 0x1) != 0;  | 
175  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getMemDoShift Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_getMemDoShift  | 
176  |  |  | 
177  |  | /// getExtendType - Extract the extend type for the offset operand of  | 
178  |  | /// loads/stores.  | 
179  |  | static inline AArch64_AM_ShiftExtendType AArch64_AM_getMemExtendType(unsigned Imm)  | 
180  | 0  | { | 
181  | 0  |   return AArch64_AM_getExtendType((Imm >> 1) & 0x7);  | 
182  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getMemExtendType Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_getMemExtendType  | 
183  |  |  | 
184  |  | static inline uint64_t ror(uint64_t elt, unsigned size)  | 
185  | 316k  | { | 
186  | 316k  |   return ((elt & 1) << (size-1)) | (elt >> 1);  | 
187  | 316k  | } Unexecuted instantiation: AArch64Disassembler.c:ror Line  | Count  | Source  |  185  | 316k  | { |  186  | 316k  |   return ((elt & 1) << (size-1)) | (elt >> 1);  |  187  | 316k  | }  |  
  | 
188  |  |  | 
189  |  | /// processLogicalImmediate - Determine if an immediate value can be encoded  | 
190  |  | /// as the immediate operand of a logical instruction for the given register  | 
191  |  | /// size.  If so, return true with "encoding" set to the encoded value in  | 
192  |  | /// the form N:immr:imms.  | 
193  |  | static inline bool AArch64_AM_processLogicalImmediate(uint64_t Imm, unsigned RegSize, uint64_t *Encoding)  | 
194  | 6.84k  | { | 
195  | 6.84k  |   unsigned Size, Immr, N;  | 
196  | 6.84k  |   uint32_t CTO, I;  | 
197  | 6.84k  |   uint64_t Mask, NImms;  | 
198  |  |  | 
199  | 6.84k  |   if (Imm == 0ULL || Imm == ~0ULL ||  | 
200  | 6.84k  |     (RegSize != 64 && (Imm >> RegSize != 0 || Imm == (~0ULL >> (64 - RegSize))))) { | 
201  | 0  |     return false;  | 
202  | 0  |   }  | 
203  |  |  | 
204  |  |   // First, determine the element size.  | 
205  | 6.84k  |   Size = RegSize;  | 
206  | 13.7k  |   do { | 
207  | 13.7k  |     uint64_t Mask;  | 
208  |  |  | 
209  | 13.7k  |     Size /= 2;  | 
210  | 13.7k  |     Mask = (1ULL << Size) - 1;  | 
211  | 13.7k  |     if ((Imm & Mask) != ((Imm >> Size) & Mask)) { | 
212  | 6.84k  |       Size *= 2;  | 
213  | 6.84k  |       break;  | 
214  | 6.84k  |     }  | 
215  | 13.7k  |   } while (Size > 2);  | 
216  |  |  | 
217  |  |   // Second, determine the rotation to make the element be: 0^m 1^n.  | 
218  | 6.84k  |   Mask = ((uint64_t)-1LL) >> (64 - Size);  | 
219  | 6.84k  |   Imm &= Mask;  | 
220  |  |  | 
221  | 6.84k  |   if (isShiftedMask_64(Imm)) { | 
222  | 4.64k  |     I = CountTrailingZeros_32(Imm);  | 
223  |  |     // assert(I < 64 && "undefined behavior");  | 
224  | 4.64k  |     CTO = CountTrailingOnes_32(Imm >> I);  | 
225  | 4.64k  |   } else { | 
226  | 2.20k  |     unsigned CLO;  | 
227  |  |  | 
228  | 2.20k  |     Imm |= ~Mask;  | 
229  | 2.20k  |     if (!isShiftedMask_64(~Imm))  | 
230  | 0  |       return false;  | 
231  |  |  | 
232  | 2.20k  |     CLO = CountLeadingOnes_32(Imm);  | 
233  | 2.20k  |     I = 64 - CLO;  | 
234  | 2.20k  |     CTO = CLO + CountTrailingOnes_32(Imm) - (64 - Size);  | 
235  | 2.20k  |   }  | 
236  |  |  | 
237  |  |   // Encode in Immr the number of RORs it would take to get *from* 0^m 1^n  | 
238  |  |   // to our target value, where I is the number of RORs to go the opposite  | 
239  |  |   // direction.  | 
240  |  |   // assert(Size > I && "I should be smaller than element size");  | 
241  | 6.84k  |   Immr = (Size - I) & (Size - 1);  | 
242  |  |  | 
243  |  |   // If size has a 1 in the n'th bit, create a value that has zeroes in  | 
244  |  |   // bits [0, n] and ones above that.  | 
245  | 6.84k  |   NImms = ~(Size-1) << 1;  | 
246  |  |  | 
247  |  |   // Or the CTO value into the low bits, which must be below the Nth bit  | 
248  |  |   // bit mentioned above.  | 
249  | 6.84k  |   NImms |= (CTO-1);  | 
250  |  |  | 
251  |  |   // Extract the seventh bit and toggle it to create the N field.  | 
252  | 6.84k  |   N = ((NImms >> 6) & 1) ^ 1;  | 
253  |  |  | 
254  | 6.84k  |   *Encoding = (N << 12) | (Immr << 6) | (NImms & 0x3f);  | 
255  |  |  | 
256  | 6.84k  |   return true;  | 
257  | 6.84k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_processLogicalImmediate AArch64InstPrinter.c:AArch64_AM_processLogicalImmediate Line  | Count  | Source  |  194  | 6.84k  | { |  195  | 6.84k  |   unsigned Size, Immr, N;  |  196  | 6.84k  |   uint32_t CTO, I;  |  197  | 6.84k  |   uint64_t Mask, NImms;  |  198  |  |  |  199  | 6.84k  |   if (Imm == 0ULL || Imm == ~0ULL ||  |  200  | 6.84k  |     (RegSize != 64 && (Imm >> RegSize != 0 || Imm == (~0ULL >> (64 - RegSize))))) { |  201  | 0  |     return false;  |  202  | 0  |   }  |  203  |  |  |  204  |  |   // First, determine the element size.  |  205  | 6.84k  |   Size = RegSize;  |  206  | 13.7k  |   do { |  207  | 13.7k  |     uint64_t Mask;  |  208  |  |  |  209  | 13.7k  |     Size /= 2;  |  210  | 13.7k  |     Mask = (1ULL << Size) - 1;  |  211  | 13.7k  |     if ((Imm & Mask) != ((Imm >> Size) & Mask)) { |  212  | 6.84k  |       Size *= 2;  |  213  | 6.84k  |       break;  |  214  | 6.84k  |     }  |  215  | 13.7k  |   } while (Size > 2);  |  216  |  |  |  217  |  |   // Second, determine the rotation to make the element be: 0^m 1^n.  |  218  | 6.84k  |   Mask = ((uint64_t)-1LL) >> (64 - Size);  |  219  | 6.84k  |   Imm &= Mask;  |  220  |  |  |  221  | 6.84k  |   if (isShiftedMask_64(Imm)) { |  222  | 4.64k  |     I = CountTrailingZeros_32(Imm);  |  223  |  |     // assert(I < 64 && "undefined behavior");  |  224  | 4.64k  |     CTO = CountTrailingOnes_32(Imm >> I);  |  225  | 4.64k  |   } else { |  226  | 2.20k  |     unsigned CLO;  |  227  |  |  |  228  | 2.20k  |     Imm |= ~Mask;  |  229  | 2.20k  |     if (!isShiftedMask_64(~Imm))  |  230  | 0  |       return false;  |  231  |  |  |  232  | 2.20k  |     CLO = CountLeadingOnes_32(Imm);  |  233  | 2.20k  |     I = 64 - CLO;  |  234  | 2.20k  |     CTO = CLO + CountTrailingOnes_32(Imm) - (64 - Size);  |  235  | 2.20k  |   }  |  236  |  |  |  237  |  |   // Encode in Immr the number of RORs it would take to get *from* 0^m 1^n  |  238  |  |   // to our target value, where I is the number of RORs to go the opposite  |  239  |  |   // direction.  |  240  |  |   // assert(Size > I && "I should be smaller than element size");  |  241  | 6.84k  |   Immr = (Size - I) & (Size - 1);  |  242  |  |  |  243  |  |   // If size has a 1 in the n'th bit, create a value that has zeroes in  |  244  |  |   // bits [0, n] and ones above that.  |  245  | 6.84k  |   NImms = ~(Size-1) << 1;  |  246  |  |  |  247  |  |   // Or the CTO value into the low bits, which must be below the Nth bit  |  248  |  |   // bit mentioned above.  |  249  | 6.84k  |   NImms |= (CTO-1);  |  250  |  |  |  251  |  |   // Extract the seventh bit and toggle it to create the N field.  |  252  | 6.84k  |   N = ((NImms >> 6) & 1) ^ 1;  |  253  |  |  |  254  | 6.84k  |   *Encoding = (N << 12) | (Immr << 6) | (NImms & 0x3f);  |  255  |  |  |  256  |  |   return true;  |  257  | 6.84k  | }  |  
  | 
258  |  |  | 
259  |  | /// isLogicalImmediate - Return true if the immediate is valid for a logical  | 
260  |  | /// immediate instruction of the given register size. Return false otherwise.  | 
261  |  | static inline bool isLogicalImmediate(uint64_t imm, unsigned regSize)  | 
262  | 2.87k  | { | 
263  | 2.87k  |   uint64_t encoding;  | 
264  | 2.87k  |   return AArch64_AM_processLogicalImmediate(imm, regSize, &encoding);  | 
265  | 2.87k  | } Unexecuted instantiation: AArch64Disassembler.c:isLogicalImmediate AArch64InstPrinter.c:isLogicalImmediate Line  | Count  | Source  |  262  | 2.87k  | { |  263  | 2.87k  |   uint64_t encoding;  |  264  | 2.87k  |   return AArch64_AM_processLogicalImmediate(imm, regSize, &encoding);  |  265  | 2.87k  | }  |  
  | 
266  |  |  | 
267  |  | /// encodeLogicalImmediate - Return the encoded immediate value for a logical  | 
268  |  | /// immediate instruction of the given register size.  | 
269  |  | static inline uint64_t AArch64_AM_encodeLogicalImmediate(uint64_t imm, unsigned regSize)  | 
270  | 0  | { | 
271  | 0  |   uint64_t encoding = 0;  | 
272  | 0  | 
  | 
273  | 0  |   bool res = AArch64_AM_processLogicalImmediate(imm, regSize, &encoding);  | 
274  | 0  |   // assert(res && "invalid logical immediate");  | 
275  | 0  |   (void)res;  | 
276  | 0  | 
  | 
277  | 0  |   return encoding;  | 
278  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeLogicalImmediate Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeLogicalImmediate  | 
279  |  |  | 
280  |  | /// decodeLogicalImmediate - Decode a logical immediate value in the form  | 
281  |  | /// "N:immr:imms" (where the immr and imms fields are each 6 bits) into the  | 
282  |  | /// integer value it represents with regSize bits.  | 
283  |  | static inline uint64_t AArch64_AM_decodeLogicalImmediate(uint64_t val, unsigned regSize)  | 
284  | 45.6k  | { | 
285  |  |   // Extract the N, imms, and immr fields.  | 
286  | 45.6k  |   unsigned N = (val >> 12) & 1;  | 
287  | 45.6k  |   unsigned immr = (val >> 6) & 0x3f;  | 
288  | 45.6k  |   unsigned imms = val & 0x3f;  | 
289  | 45.6k  |   unsigned i, size, R, S;  | 
290  | 45.6k  |   uint64_t pattern;  | 
291  |  |  | 
292  |  |   // assert((regSize == 64 || N == 0) && "undefined logical immediate encoding");  | 
293  | 45.6k  |   int len = 31 - CountLeadingZeros_32((N << 6) | (~imms & 0x3f));  | 
294  |  |  | 
295  |  |   // assert(len >= 0 && "undefined logical immediate encoding");  | 
296  | 45.6k  |   size = (1 << len);  | 
297  | 45.6k  |   R = immr & (size - 1);  | 
298  | 45.6k  |   S = imms & (size - 1);  | 
299  |  |  | 
300  |  |   // assert(S != size - 1 && "undefined logical immediate encoding");  | 
301  | 45.6k  |   pattern = (1ULL << (S + 1)) - 1;  | 
302  |  |  | 
303  | 362k  |   for (i = 0; i < R; ++i)  | 
304  | 316k  |     pattern = ror(pattern, size);  | 
305  |  |  | 
306  |  |   // Replicate the pattern to fill the regSize.  | 
307  | 89.2k  |   while (size != regSize) { | 
308  | 43.6k  |     pattern |= (pattern << size);  | 
309  | 43.6k  |     size *= 2;  | 
310  | 43.6k  |   }  | 
311  |  |  | 
312  | 45.6k  |   return pattern;  | 
313  | 45.6k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeLogicalImmediate AArch64InstPrinter.c:AArch64_AM_decodeLogicalImmediate Line  | Count  | Source  |  284  | 45.6k  | { |  285  |  |   // Extract the N, imms, and immr fields.  |  286  | 45.6k  |   unsigned N = (val >> 12) & 1;  |  287  | 45.6k  |   unsigned immr = (val >> 6) & 0x3f;  |  288  | 45.6k  |   unsigned imms = val & 0x3f;  |  289  | 45.6k  |   unsigned i, size, R, S;  |  290  | 45.6k  |   uint64_t pattern;  |  291  |  |  |  292  |  |   // assert((regSize == 64 || N == 0) && "undefined logical immediate encoding");  |  293  | 45.6k  |   int len = 31 - CountLeadingZeros_32((N << 6) | (~imms & 0x3f));  |  294  |  |  |  295  |  |   // assert(len >= 0 && "undefined logical immediate encoding");  |  296  | 45.6k  |   size = (1 << len);  |  297  | 45.6k  |   R = immr & (size - 1);  |  298  | 45.6k  |   S = imms & (size - 1);  |  299  |  |  |  300  |  |   // assert(S != size - 1 && "undefined logical immediate encoding");  |  301  | 45.6k  |   pattern = (1ULL << (S + 1)) - 1;  |  302  |  |  |  303  | 362k  |   for (i = 0; i < R; ++i)  |  304  | 316k  |     pattern = ror(pattern, size);  |  305  |  |  |  306  |  |   // Replicate the pattern to fill the regSize.  |  307  | 89.2k  |   while (size != regSize) { |  308  | 43.6k  |     pattern |= (pattern << size);  |  309  | 43.6k  |     size *= 2;  |  310  | 43.6k  |   }  |  311  |  |  |  312  | 45.6k  |   return pattern;  |  313  | 45.6k  | }  |  
  | 
314  |  |  | 
315  |  | /// isValidDecodeLogicalImmediate - Check to see if the logical immediate value  | 
316  |  | /// in the form "N:immr:imms" (where the immr and imms fields are each 6 bits)  | 
317  |  | /// is a valid encoding for an integer value with regSize bits.  | 
318  |  | static inline bool AArch64_AM_isValidDecodeLogicalImmediate(uint64_t val, unsigned regSize)  | 
319  | 30.0k  | { | 
320  | 30.0k  |   unsigned size, S;  | 
321  | 30.0k  |   int len;  | 
322  |  |   // Extract the N and imms fields needed for checking.  | 
323  | 30.0k  |   unsigned N = (val >> 12) & 1;  | 
324  | 30.0k  |   unsigned imms = val & 0x3f;  | 
325  |  |  | 
326  | 30.0k  |   if (regSize == 32 && N != 0) // undefined logical immediate encoding  | 
327  | 0  |     return false;  | 
328  | 30.0k  |   len = 31 - CountLeadingZeros_32((N << 6) | (~imms & 0x3f));  | 
329  | 30.0k  |   if (len < 0) // undefined logical immediate encoding  | 
330  | 9  |     return false;  | 
331  | 30.0k  |   size = (1 << len);  | 
332  | 30.0k  |   S = imms & (size - 1);  | 
333  | 30.0k  |   if (S == size - 1) // undefined logical immediate encoding  | 
334  | 11  |     return false;  | 
335  |  |  | 
336  | 30.0k  |   return true;  | 
337  | 30.0k  | } AArch64Disassembler.c:AArch64_AM_isValidDecodeLogicalImmediate Line  | Count  | Source  |  319  | 30.0k  | { |  320  | 30.0k  |   unsigned size, S;  |  321  | 30.0k  |   int len;  |  322  |  |   // Extract the N and imms fields needed for checking.  |  323  | 30.0k  |   unsigned N = (val >> 12) & 1;  |  324  | 30.0k  |   unsigned imms = val & 0x3f;  |  325  |  |  |  326  | 30.0k  |   if (regSize == 32 && N != 0) // undefined logical immediate encoding  |  327  | 0  |     return false;  |  328  | 30.0k  |   len = 31 - CountLeadingZeros_32((N << 6) | (~imms & 0x3f));  |  329  | 30.0k  |   if (len < 0) // undefined logical immediate encoding  |  330  | 9  |     return false;  |  331  | 30.0k  |   size = (1 << len);  |  332  | 30.0k  |   S = imms & (size - 1);  |  333  | 30.0k  |   if (S == size - 1) // undefined logical immediate encoding  |  334  | 11  |     return false;  |  335  |  |  |  336  | 30.0k  |   return true;  |  337  | 30.0k  | }  |  
 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isValidDecodeLogicalImmediate  | 
338  |  |  | 
339  |  | //===----------------------------------------------------------------------===//  | 
340  |  | // Floating-point Immediates  | 
341  |  | //  | 
342  |  | static inline float AArch64_AM_getFPImmFloat(unsigned Imm)  | 
343  | 2.32k  | { | 
344  |  |   // We expect an 8-bit binary encoding of a floating-point number here.  | 
345  | 2.32k  |   union { | 
346  | 2.32k  |     uint32_t I;  | 
347  | 2.32k  |     float F;  | 
348  | 2.32k  |   } FPUnion;  | 
349  |  |  | 
350  | 2.32k  |   uint8_t Sign = (Imm >> 7) & 0x1;  | 
351  | 2.32k  |   uint8_t Exp = (Imm >> 4) & 0x7;  | 
352  | 2.32k  |   uint8_t Mantissa = Imm & 0xf;  | 
353  |  |  | 
354  |  |   //   8-bit FP    iEEEE Float Encoding  | 
355  |  |   //   abcd efgh   aBbbbbbc defgh000 00000000 00000000  | 
356  |  |   //  | 
357  |  |   // where B = NOT(b);  | 
358  |  |  | 
359  | 2.32k  |   FPUnion.I = 0;  | 
360  | 2.32k  |   FPUnion.I |= ((uint32_t)Sign) << 31;  | 
361  | 2.32k  |   FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30;  | 
362  | 2.32k  |   FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25;  | 
363  | 2.32k  |   FPUnion.I |= (Exp & 0x3) << 23;  | 
364  | 2.32k  |   FPUnion.I |= Mantissa << 19;  | 
365  |  |  | 
366  | 2.32k  |   return FPUnion.F;  | 
367  | 2.32k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_getFPImmFloat AArch64InstPrinter.c:AArch64_AM_getFPImmFloat Line  | Count  | Source  |  343  | 2.32k  | { |  344  |  |   // We expect an 8-bit binary encoding of a floating-point number here.  |  345  | 2.32k  |   union { |  346  | 2.32k  |     uint32_t I;  |  347  | 2.32k  |     float F;  |  348  | 2.32k  |   } FPUnion;  |  349  |  |  |  350  | 2.32k  |   uint8_t Sign = (Imm >> 7) & 0x1;  |  351  | 2.32k  |   uint8_t Exp = (Imm >> 4) & 0x7;  |  352  | 2.32k  |   uint8_t Mantissa = Imm & 0xf;  |  353  |  |  |  354  |  |   //   8-bit FP    iEEEE Float Encoding  |  355  |  |   //   abcd efgh   aBbbbbbc defgh000 00000000 00000000  |  356  |  |   //  |  357  |  |   // where B = NOT(b);  |  358  |  |  |  359  | 2.32k  |   FPUnion.I = 0;  |  360  | 2.32k  |   FPUnion.I |= ((uint32_t)Sign) << 31;  |  361  | 2.32k  |   FPUnion.I |= ((Exp & 0x4) != 0 ? 0 : 1) << 30;  |  362  | 2.32k  |   FPUnion.I |= ((Exp & 0x4) != 0 ? 0x1f : 0) << 25;  |  363  | 2.32k  |   FPUnion.I |= (Exp & 0x3) << 23;  |  364  | 2.32k  |   FPUnion.I |= Mantissa << 19;  |  365  |  |  |  366  | 2.32k  |   return FPUnion.F;  |  367  | 2.32k  | }  |  
  | 
368  |  |  | 
369  |  | //===--------------------------------------------------------------------===//  | 
370  |  | // AdvSIMD Modified Immediates  | 
371  |  | //===--------------------------------------------------------------------===//  | 
372  |  |  | 
373  |  | // 0x00 0x00 0x00 abcdefgh 0x00 0x00 0x00 abcdefgh  | 
374  |  | static inline bool AArch64_AM_isAdvSIMDModImmType1(uint64_t Imm)  | 
375  | 0  | { | 
376  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
377  | 0  |     ((Imm & 0xffffff00ffffff00ULL) == 0);  | 
378  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType1 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType1  | 
379  |  |  | 
380  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType1(uint64_t Imm)  | 
381  | 0  | { | 
382  | 0  |   return (Imm & 0xffULL);  | 
383  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType1 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType1  | 
384  |  |  | 
385  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType1(uint8_t Imm)  | 
386  | 0  | { | 
387  | 0  |   uint64_t EncVal = Imm;  | 
388  | 0  | 
  | 
389  | 0  |   return (EncVal << 32) | EncVal;  | 
390  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType1 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType1  | 
391  |  |  | 
392  |  | // 0x00 0x00 abcdefgh 0x00 0x00 0x00 abcdefgh 0x00  | 
393  |  | static inline bool AArch64_AM_isAdvSIMDModImmType2(uint64_t Imm)  | 
394  | 0  | { | 
395  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
396  | 0  |     ((Imm & 0xffff00ffffff00ffULL) == 0);  | 
397  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType2 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType2  | 
398  |  |  | 
399  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType2(uint64_t Imm)  | 
400  | 0  | { | 
401  | 0  |   return (Imm & 0xff00ULL) >> 8;  | 
402  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType2 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType2  | 
403  |  |  | 
404  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType2(uint8_t Imm)  | 
405  | 0  | { | 
406  | 0  |   uint64_t EncVal = Imm;  | 
407  | 0  |   return (EncVal << 40) | (EncVal << 8);  | 
408  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType2 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType2  | 
409  |  |  | 
410  |  | // 0x00 abcdefgh 0x00 0x00 0x00 abcdefgh 0x00 0x00  | 
411  |  | static inline bool AArch64_AM_isAdvSIMDModImmType3(uint64_t Imm)  | 
412  | 0  | { | 
413  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
414  | 0  |     ((Imm & 0xff00ffffff00ffffULL) == 0);  | 
415  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType3 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType3  | 
416  |  |  | 
417  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType3(uint64_t Imm)  | 
418  | 0  | { | 
419  | 0  |   return (Imm & 0xff0000ULL) >> 16;  | 
420  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType3 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType3  | 
421  |  |  | 
422  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType3(uint8_t Imm)  | 
423  | 0  | { | 
424  | 0  |   uint64_t EncVal = Imm;  | 
425  | 0  |   return (EncVal << 48) | (EncVal << 16);  | 
426  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType3 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType3  | 
427  |  |  | 
428  |  | // abcdefgh 0x00 0x00 0x00 abcdefgh 0x00 0x00 0x00  | 
429  |  | static inline bool AArch64_AM_isAdvSIMDModImmType4(uint64_t Imm)  | 
430  | 0  | { | 
431  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
432  | 0  |     ((Imm & 0x00ffffff00ffffffULL) == 0);  | 
433  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType4 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType4  | 
434  |  |  | 
435  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType4(uint64_t Imm)  | 
436  | 0  | { | 
437  | 0  |   return (Imm & 0xff000000ULL) >> 24;  | 
438  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType4 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType4  | 
439  |  |  | 
440  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType4(uint8_t Imm)  | 
441  | 0  | { | 
442  | 0  |   uint64_t EncVal = Imm;  | 
443  | 0  |   return (EncVal << 56) | (EncVal << 24);  | 
444  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType4 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType4  | 
445  |  |  | 
446  |  | // 0x00 abcdefgh 0x00 abcdefgh 0x00 abcdefgh 0x00 abcdefgh  | 
447  |  | static inline bool AArch64_AM_isAdvSIMDModImmType5(uint64_t Imm)  | 
448  | 0  | { | 
449  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
450  | 0  |     (((Imm & 0x00ff0000ULL) >> 16) == (Imm & 0x000000ffULL)) &&  | 
451  | 0  |     ((Imm & 0xff00ff00ff00ff00ULL) == 0);  | 
452  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType5 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType5  | 
453  |  |  | 
454  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType5(uint64_t Imm)  | 
455  | 0  | { | 
456  | 0  |   return (Imm & 0xffULL);  | 
457  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType5 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType5  | 
458  |  |  | 
459  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType5(uint8_t Imm)  | 
460  | 0  | { | 
461  | 0  |   uint64_t EncVal = Imm;  | 
462  | 0  |   return (EncVal << 48) | (EncVal << 32) | (EncVal << 16) | EncVal;  | 
463  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType5 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType5  | 
464  |  |  | 
465  |  | // abcdefgh 0x00 abcdefgh 0x00 abcdefgh 0x00 abcdefgh 0x00  | 
466  |  | static inline bool AArch64_AM_isAdvSIMDModImmType6(uint64_t Imm)  | 
467  | 0  | { | 
468  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
469  | 0  |     (((Imm & 0xff000000ULL) >> 16) == (Imm & 0x0000ff00ULL)) &&  | 
470  | 0  |     ((Imm & 0x00ff00ff00ff00ffULL) == 0);  | 
471  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType6 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType6  | 
472  |  |  | 
473  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType6(uint64_t Imm)  | 
474  | 0  | { | 
475  | 0  |   return (Imm & 0xff00ULL) >> 8;  | 
476  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType6 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType6  | 
477  |  |  | 
478  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType6(uint8_t Imm)  | 
479  | 0  | { | 
480  | 0  |   uint64_t EncVal = Imm;  | 
481  | 0  |   return (EncVal << 56) | (EncVal << 40) | (EncVal << 24) | (EncVal << 8);  | 
482  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType6 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType6  | 
483  |  |  | 
484  |  | // 0x00 0x00 abcdefgh 0xFF 0x00 0x00 abcdefgh 0xFF  | 
485  |  | static inline bool AArch64_AM_isAdvSIMDModImmType7(uint64_t Imm)  | 
486  | 0  | { | 
487  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
488  | 0  |     ((Imm & 0xffff00ffffff00ffULL) == 0x000000ff000000ffULL);  | 
489  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType7 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType7  | 
490  |  |  | 
491  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType7(uint64_t Imm)  | 
492  | 0  | { | 
493  | 0  |   return (Imm & 0xff00ULL) >> 8;  | 
494  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType7 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType7  | 
495  |  |  | 
496  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType7(uint8_t Imm)  | 
497  | 0  | { | 
498  | 0  |   uint64_t EncVal = Imm;  | 
499  | 0  |   return (EncVal << 40) | (EncVal << 8) | 0x000000ff000000ffULL;  | 
500  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType7 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType7  | 
501  |  |  | 
502  |  | // 0x00 abcdefgh 0xFF 0xFF 0x00 abcdefgh 0xFF 0xFF  | 
503  |  | static inline bool AArch64_AM_isAdvSIMDModImmType8(uint64_t Imm)  | 
504  | 0  | { | 
505  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
506  | 0  |     ((Imm & 0xff00ffffff00ffffULL) == 0x0000ffff0000ffffULL);  | 
507  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType8 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType8  | 
508  |  |  | 
509  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType8(uint8_t Imm)  | 
510  | 0  | { | 
511  | 0  |   uint64_t EncVal = Imm;  | 
512  | 0  |   return (EncVal << 48) | (EncVal << 16) | 0x0000ffff0000ffffULL;  | 
513  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType8 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType8  | 
514  |  |  | 
515  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType8(uint64_t Imm)  | 
516  | 0  | { | 
517  | 0  |   return (Imm & 0x00ff0000ULL) >> 16;  | 
518  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType8 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType8  | 
519  |  |  | 
520  |  | // abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh abcdefgh  | 
521  |  | static inline bool AArch64_AM_isAdvSIMDModImmType9(uint64_t Imm)  | 
522  | 0  | { | 
523  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
524  | 0  |     ((Imm >> 48) == (Imm & 0x0000ffffULL)) &&  | 
525  | 0  |     ((Imm >> 56) == (Imm & 0x000000ffULL));  | 
526  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType9 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType9  | 
527  |  |  | 
528  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType9(uint64_t Imm)  | 
529  | 0  | { | 
530  | 0  |   return (Imm & 0xffULL);  | 
531  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType9 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType9  | 
532  |  |  | 
533  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType9(uint8_t Imm)  | 
534  | 0  | { | 
535  | 0  |   uint64_t EncVal = Imm;  | 
536  | 0  |   EncVal |= (EncVal << 8);  | 
537  | 0  |   EncVal |= (EncVal << 16);  | 
538  | 0  |   EncVal |= (EncVal << 32);  | 
539  | 0  | 
  | 
540  | 0  |   return EncVal;  | 
541  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType9 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType9  | 
542  |  |  | 
543  |  | // aaaaaaaa bbbbbbbb cccccccc dddddddd eeeeeeee ffffffff gggggggg hhhhhhhh  | 
544  |  | // cmode: 1110, op: 1  | 
545  |  | static inline bool AArch64_AM_isAdvSIMDModImmType10(uint64_t Imm)  | 
546  | 0  | { | 
547  | 0  |   uint64_t ByteA = Imm & 0xff00000000000000ULL;  | 
548  | 0  |   uint64_t ByteB = Imm & 0x00ff000000000000ULL;  | 
549  | 0  |   uint64_t ByteC = Imm & 0x0000ff0000000000ULL;  | 
550  | 0  |   uint64_t ByteD = Imm & 0x000000ff00000000ULL;  | 
551  | 0  |   uint64_t ByteE = Imm & 0x00000000ff000000ULL;  | 
552  | 0  |   uint64_t ByteF = Imm & 0x0000000000ff0000ULL;  | 
553  | 0  |   uint64_t ByteG = Imm & 0x000000000000ff00ULL;  | 
554  | 0  |   uint64_t ByteH = Imm & 0x00000000000000ffULL;  | 
555  | 0  | 
  | 
556  | 0  |   return (ByteA == 0ULL || ByteA == 0xff00000000000000ULL) &&  | 
557  | 0  |     (ByteB == 0ULL || ByteB == 0x00ff000000000000ULL) &&  | 
558  | 0  |     (ByteC == 0ULL || ByteC == 0x0000ff0000000000ULL) &&  | 
559  | 0  |     (ByteD == 0ULL || ByteD == 0x000000ff00000000ULL) &&  | 
560  | 0  |     (ByteE == 0ULL || ByteE == 0x00000000ff000000ULL) &&  | 
561  | 0  |     (ByteF == 0ULL || ByteF == 0x0000000000ff0000ULL) &&  | 
562  | 0  |     (ByteG == 0ULL || ByteG == 0x000000000000ff00ULL) &&  | 
563  | 0  |     (ByteH == 0ULL || ByteH == 0x00000000000000ffULL);  | 
564  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType10 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType10  | 
565  |  |  | 
566  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType10(uint64_t Imm)  | 
567  | 0  | { | 
568  | 0  |   uint8_t BitA = (Imm & 0xff00000000000000ULL) != 0;  | 
569  | 0  |   uint8_t BitB = (Imm & 0x00ff000000000000ULL) != 0;  | 
570  | 0  |   uint8_t BitC = (Imm & 0x0000ff0000000000ULL) != 0;  | 
571  | 0  |   uint8_t BitD = (Imm & 0x000000ff00000000ULL) != 0;  | 
572  | 0  |   uint8_t BitE = (Imm & 0x00000000ff000000ULL) != 0;  | 
573  | 0  |   uint8_t BitF = (Imm & 0x0000000000ff0000ULL) != 0;  | 
574  | 0  |   uint8_t BitG = (Imm & 0x000000000000ff00ULL) != 0;  | 
575  | 0  |   uint8_t BitH = (Imm & 0x00000000000000ffULL) != 0;  | 
576  | 0  | 
  | 
577  | 0  |   uint8_t EncVal = BitA;  | 
578  | 0  | 
  | 
579  | 0  |   EncVal <<= 1;  | 
580  | 0  |   EncVal |= BitB;  | 
581  | 0  |   EncVal <<= 1;  | 
582  | 0  |   EncVal |= BitC;  | 
583  | 0  |   EncVal <<= 1;  | 
584  | 0  |   EncVal |= BitD;  | 
585  | 0  |   EncVal <<= 1;  | 
586  | 0  |   EncVal |= BitE;  | 
587  | 0  |   EncVal <<= 1;  | 
588  | 0  |   EncVal |= BitF;  | 
589  | 0  |   EncVal <<= 1;  | 
590  | 0  |   EncVal |= BitG;  | 
591  | 0  |   EncVal <<= 1;  | 
592  | 0  |   EncVal |= BitH;  | 
593  | 0  | 
  | 
594  | 0  |   return EncVal;  | 
595  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType10 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType10  | 
596  |  |  | 
597  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType10(uint8_t Imm)  | 
598  | 4.60k  | { | 
599  | 4.60k  |   uint64_t EncVal = 0;  | 
600  |  |  | 
601  | 4.60k  |   if (Imm & 0x80)  | 
602  | 2.31k  |     EncVal |= 0xff00000000000000ULL;  | 
603  |  |  | 
604  | 4.60k  |   if (Imm & 0x40)  | 
605  | 1.56k  |     EncVal |= 0x00ff000000000000ULL;  | 
606  |  |  | 
607  | 4.60k  |   if (Imm & 0x20)  | 
608  | 2.98k  |     EncVal |= 0x0000ff0000000000ULL;  | 
609  |  |  | 
610  | 4.60k  |   if (Imm & 0x10)  | 
611  | 1.82k  |     EncVal |= 0x000000ff00000000ULL;  | 
612  |  |  | 
613  | 4.60k  |   if (Imm & 0x08)  | 
614  | 2.94k  |     EncVal |= 0x00000000ff000000ULL;  | 
615  |  |  | 
616  | 4.60k  |   if (Imm & 0x04)  | 
617  | 1.02k  |     EncVal |= 0x0000000000ff0000ULL;  | 
618  |  |  | 
619  | 4.60k  |   if (Imm & 0x02)  | 
620  | 1.71k  |     EncVal |= 0x000000000000ff00ULL;  | 
621  |  |  | 
622  | 4.60k  |   if (Imm & 0x01)  | 
623  | 3.26k  |     EncVal |= 0x00000000000000ffULL;  | 
624  |  |  | 
625  | 4.60k  |   return EncVal;  | 
626  | 4.60k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType10 AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType10 Line  | Count  | Source  |  598  | 4.60k  | { |  599  | 4.60k  |   uint64_t EncVal = 0;  |  600  |  |  |  601  | 4.60k  |   if (Imm & 0x80)  |  602  | 2.31k  |     EncVal |= 0xff00000000000000ULL;  |  603  |  |  |  604  | 4.60k  |   if (Imm & 0x40)  |  605  | 1.56k  |     EncVal |= 0x00ff000000000000ULL;  |  606  |  |  |  607  | 4.60k  |   if (Imm & 0x20)  |  608  | 2.98k  |     EncVal |= 0x0000ff0000000000ULL;  |  609  |  |  |  610  | 4.60k  |   if (Imm & 0x10)  |  611  | 1.82k  |     EncVal |= 0x000000ff00000000ULL;  |  612  |  |  |  613  | 4.60k  |   if (Imm & 0x08)  |  614  | 2.94k  |     EncVal |= 0x00000000ff000000ULL;  |  615  |  |  |  616  | 4.60k  |   if (Imm & 0x04)  |  617  | 1.02k  |     EncVal |= 0x0000000000ff0000ULL;  |  618  |  |  |  619  | 4.60k  |   if (Imm & 0x02)  |  620  | 1.71k  |     EncVal |= 0x000000000000ff00ULL;  |  621  |  |  |  622  | 4.60k  |   if (Imm & 0x01)  |  623  | 3.26k  |     EncVal |= 0x00000000000000ffULL;  |  624  |  |  |  625  | 4.60k  |   return EncVal;  |  626  | 4.60k  | }  |  
  | 
627  |  |  | 
628  |  | // aBbbbbbc defgh000 0x00 0x00 aBbbbbbc defgh000 0x00 0x00  | 
629  |  | static inline bool AArch64_AM_isAdvSIMDModImmType11(uint64_t Imm)  | 
630  | 0  | { | 
631  | 0  |   uint64_t BString = (Imm & 0x7E000000ULL) >> 25;  | 
632  | 0  | 
  | 
633  | 0  |   return ((Imm >> 32) == (Imm & 0xffffffffULL)) &&  | 
634  | 0  |     (BString == 0x1f || BString == 0x20) &&  | 
635  | 0  |     ((Imm & 0x0007ffff0007ffffULL) == 0);  | 
636  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType11 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType11  | 
637  |  |  | 
638  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType11(uint64_t Imm)  | 
639  | 0  | { | 
640  | 0  |   uint8_t BitA = (Imm & 0x80000000ULL) != 0;  | 
641  | 0  |   uint8_t BitB = (Imm & 0x20000000ULL) != 0;  | 
642  | 0  |   uint8_t BitC = (Imm & 0x01000000ULL) != 0;  | 
643  | 0  |   uint8_t BitD = (Imm & 0x00800000ULL) != 0;  | 
644  | 0  |   uint8_t BitE = (Imm & 0x00400000ULL) != 0;  | 
645  | 0  |   uint8_t BitF = (Imm & 0x00200000ULL) != 0;  | 
646  | 0  |   uint8_t BitG = (Imm & 0x00100000ULL) != 0;  | 
647  | 0  |   uint8_t BitH = (Imm & 0x00080000ULL) != 0;  | 
648  | 0  | 
  | 
649  | 0  |   uint8_t EncVal = BitA;  | 
650  | 0  |   EncVal <<= 1;  | 
651  | 0  |   EncVal |= BitB;  | 
652  | 0  |   EncVal <<= 1;  | 
653  | 0  |   EncVal |= BitC;  | 
654  | 0  |   EncVal <<= 1;  | 
655  | 0  |   EncVal |= BitD;  | 
656  | 0  |   EncVal <<= 1;  | 
657  | 0  |   EncVal |= BitE;  | 
658  | 0  |   EncVal <<= 1;  | 
659  | 0  |   EncVal |= BitF;  | 
660  | 0  |   EncVal <<= 1;  | 
661  | 0  |   EncVal |= BitG;  | 
662  | 0  |   EncVal <<= 1;  | 
663  | 0  |   EncVal |= BitH;  | 
664  | 0  | 
  | 
665  | 0  |   return EncVal;  | 
666  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType11 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType11  | 
667  |  |  | 
668  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType11(uint8_t Imm)  | 
669  | 0  | { | 
670  | 0  |   uint64_t EncVal = 0;  | 
671  | 0  | 
  | 
672  | 0  |   if (Imm & 0x80)  | 
673  | 0  |     EncVal |= 0x80000000ULL;  | 
674  | 0  | 
  | 
675  | 0  |   if (Imm & 0x40)  | 
676  | 0  |     EncVal |= 0x3e000000ULL;  | 
677  | 0  |   else  | 
678  | 0  |     EncVal |= 0x40000000ULL;  | 
679  | 0  | 
  | 
680  | 0  |   if (Imm & 0x20)  | 
681  | 0  |     EncVal |= 0x01000000ULL;  | 
682  | 0  | 
  | 
683  | 0  |   if (Imm & 0x10)  | 
684  | 0  |     EncVal |= 0x00800000ULL;  | 
685  | 0  | 
  | 
686  | 0  |   if (Imm & 0x08)  | 
687  | 0  |     EncVal |= 0x00400000ULL;  | 
688  | 0  | 
  | 
689  | 0  |   if (Imm & 0x04)  | 
690  | 0  |     EncVal |= 0x00200000ULL;  | 
691  | 0  | 
  | 
692  | 0  |   if (Imm & 0x02)  | 
693  | 0  |     EncVal |= 0x00100000ULL;  | 
694  | 0  | 
  | 
695  | 0  |   if (Imm & 0x01)  | 
696  | 0  |     EncVal |= 0x00080000ULL;  | 
697  | 0  | 
  | 
698  | 0  |   return (EncVal << 32) | EncVal;  | 
699  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType11 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType11  | 
700  |  |  | 
701  |  | // aBbbbbbb bbcdefgh 0x00 0x00 0x00 0x00 0x00 0x00  | 
702  |  | static inline bool AArch64_AM_isAdvSIMDModImmType12(uint64_t Imm)  | 
703  | 0  | { | 
704  | 0  |   uint64_t BString = (Imm & 0x7fc0000000000000ULL) >> 54;  | 
705  | 0  |   return ((BString == 0xff || BString == 0x100) &&  | 
706  | 0  |     ((Imm & 0x0000ffffffffffffULL) == 0));  | 
707  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isAdvSIMDModImmType12 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_isAdvSIMDModImmType12  | 
708  |  |  | 
709  |  | static inline uint8_t AArch64_AM_encodeAdvSIMDModImmType12(uint64_t Imm)  | 
710  | 0  | { | 
711  | 0  |   uint8_t BitA = (Imm & 0x8000000000000000ULL) != 0;  | 
712  | 0  |   uint8_t BitB = (Imm & 0x0040000000000000ULL) != 0;  | 
713  | 0  |   uint8_t BitC = (Imm & 0x0020000000000000ULL) != 0;  | 
714  | 0  |   uint8_t BitD = (Imm & 0x0010000000000000ULL) != 0;  | 
715  | 0  |   uint8_t BitE = (Imm & 0x0008000000000000ULL) != 0;  | 
716  | 0  |   uint8_t BitF = (Imm & 0x0004000000000000ULL) != 0;  | 
717  | 0  |   uint8_t BitG = (Imm & 0x0002000000000000ULL) != 0;  | 
718  | 0  |   uint8_t BitH = (Imm & 0x0001000000000000ULL) != 0;  | 
719  | 0  | 
  | 
720  | 0  |   uint8_t EncVal = BitA;  | 
721  | 0  |   EncVal <<= 1;  | 
722  | 0  |   EncVal |= BitB;  | 
723  | 0  |   EncVal <<= 1;  | 
724  | 0  |   EncVal |= BitC;  | 
725  | 0  |   EncVal <<= 1;  | 
726  | 0  |   EncVal |= BitD;  | 
727  | 0  |   EncVal <<= 1;  | 
728  | 0  |   EncVal |= BitE;  | 
729  | 0  |   EncVal <<= 1;  | 
730  | 0  |   EncVal |= BitF;  | 
731  | 0  |   EncVal <<= 1;  | 
732  | 0  |   EncVal |= BitG;  | 
733  | 0  |   EncVal <<= 1;  | 
734  | 0  |   EncVal |= BitH;  | 
735  | 0  | 
  | 
736  | 0  |   return EncVal;  | 
737  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_encodeAdvSIMDModImmType12 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_encodeAdvSIMDModImmType12  | 
738  |  |  | 
739  |  | static inline uint64_t AArch64_AM_decodeAdvSIMDModImmType12(uint8_t Imm)  | 
740  | 0  | { | 
741  | 0  |   uint64_t EncVal = 0;  | 
742  | 0  |   if (Imm & 0x80)  | 
743  | 0  |     EncVal |= 0x8000000000000000ULL;  | 
744  | 0  | 
  | 
745  | 0  |   if (Imm & 0x40)  | 
746  | 0  |     EncVal |= 0x3fc0000000000000ULL;  | 
747  | 0  |   else  | 
748  | 0  |     EncVal |= 0x4000000000000000ULL;  | 
749  | 0  | 
  | 
750  | 0  |   if (Imm & 0x20)  | 
751  | 0  |     EncVal |= 0x0020000000000000ULL;  | 
752  | 0  | 
  | 
753  | 0  |   if (Imm & 0x10)  | 
754  | 0  |     EncVal |= 0x0010000000000000ULL;  | 
755  | 0  | 
  | 
756  | 0  |   if (Imm & 0x08)  | 
757  | 0  |     EncVal |= 0x0008000000000000ULL;  | 
758  | 0  | 
  | 
759  | 0  |   if (Imm & 0x04)  | 
760  | 0  |     EncVal |= 0x0004000000000000ULL;  | 
761  | 0  | 
  | 
762  | 0  |   if (Imm & 0x02)  | 
763  | 0  |     EncVal |= 0x0002000000000000ULL;  | 
764  | 0  | 
  | 
765  | 0  |   if (Imm & 0x01)  | 
766  | 0  |     EncVal |= 0x0001000000000000ULL;  | 
767  | 0  | 
  | 
768  | 0  |   return (EncVal << 32) | EncVal;  | 
769  | 0  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_decodeAdvSIMDModImmType12 Unexecuted instantiation: AArch64InstPrinter.c:AArch64_AM_decodeAdvSIMDModImmType12  | 
770  |  |  | 
771  |  | /// Returns true if Imm is the concatenation of a repeating pattern of type T.  | 
772  |  | static inline bool AArch64_AM_isSVEMaskOfIdenticalElements8(int64_t Imm)  | 
773  | 10.3k  | { | 
774  | 36.4k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int8_t))  | 
775  | 10.3k  |   unsigned int i;  | 
776  | 10.3k  |   union { | 
777  | 10.3k  |     int64_t Whole;  | 
778  | 10.3k  |     int8_t Parts[_VECSIZE];  | 
779  | 10.3k  |   } Vec;  | 
780  |  |     | 
781  | 10.3k  |   Vec.Whole = Imm;  | 
782  |  |  | 
783  | 36.4k  |   for(i = 1; i < _VECSIZE; i++) { | 
784  | 33.2k  |     if (Vec.Parts[i] != Vec.Parts[0])  | 
785  | 7.20k  |       return false;  | 
786  | 33.2k  |   }  | 
787  | 3.18k  | #undef _VECSIZE  | 
788  |  |  | 
789  | 3.18k  |   return true;  | 
790  | 10.3k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isSVEMaskOfIdenticalElements8 AArch64InstPrinter.c:AArch64_AM_isSVEMaskOfIdenticalElements8 Line  | Count  | Source  |  773  | 10.3k  | { |  774  | 10.3k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int8_t))  |  775  | 10.3k  |   unsigned int i;  |  776  | 10.3k  |   union { |  777  | 10.3k  |     int64_t Whole;  |  778  | 10.3k  |     int8_t Parts[_VECSIZE];  |  779  | 10.3k  |   } Vec;  |  780  |  |     |  781  | 10.3k  |   Vec.Whole = Imm;  |  782  |  |  |  783  | 36.4k  |   for(i = 1; i < _VECSIZE; i++) { |  784  | 33.2k  |     if (Vec.Parts[i] != Vec.Parts[0])  |  785  | 7.20k  |       return false;  |  786  | 33.2k  |   }  |  787  | 3.18k  | #undef _VECSIZE  |  788  |  |  |  789  | 3.18k  |   return true;  |  790  | 10.3k  | }  |  
  | 
791  |  |  | 
792  |  | static inline bool AArch64_AM_isSVEMaskOfIdenticalElements16(int64_t Imm)  | 
793  | 20.9k  | { | 
794  | 55.1k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int16_t))  | 
795  | 20.9k  |   unsigned int i;  | 
796  | 20.9k  |   union { | 
797  | 20.9k  |     int64_t Whole;  | 
798  | 20.9k  |     int16_t Parts[_VECSIZE];  | 
799  | 20.9k  |   } Vec;  | 
800  |  |  | 
801  | 20.9k  |   Vec.Whole = Imm;  | 
802  |  |  | 
803  | 55.1k  |   for(i = 1; i < _VECSIZE; i++) { | 
804  | 44.4k  |     if (Vec.Parts[i] != Vec.Parts[0])  | 
805  | 10.1k  |       return false;  | 
806  | 44.4k  |   }  | 
807  | 10.7k  | #undef _VECSIZE  | 
808  |  |  | 
809  | 10.7k  |   return true;  | 
810  | 20.9k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isSVEMaskOfIdenticalElements16 AArch64InstPrinter.c:AArch64_AM_isSVEMaskOfIdenticalElements16 Line  | Count  | Source  |  793  | 20.9k  | { |  794  | 20.9k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int16_t))  |  795  | 20.9k  |   unsigned int i;  |  796  | 20.9k  |   union { |  797  | 20.9k  |     int64_t Whole;  |  798  | 20.9k  |     int16_t Parts[_VECSIZE];  |  799  | 20.9k  |   } Vec;  |  800  |  |  |  801  | 20.9k  |   Vec.Whole = Imm;  |  802  |  |  |  803  | 55.1k  |   for(i = 1; i < _VECSIZE; i++) { |  804  | 44.4k  |     if (Vec.Parts[i] != Vec.Parts[0])  |  805  | 10.1k  |       return false;  |  806  | 44.4k  |   }  |  807  | 10.7k  | #undef _VECSIZE  |  808  |  |  |  809  | 10.7k  |   return true;  |  810  | 20.9k  | }  |  
  | 
811  |  |  | 
812  |  | static inline bool AArch64_AM_isSVEMaskOfIdenticalElements32(int64_t Imm)  | 
813  | 20.8k  | { | 
814  | 36.5k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int32_t))  | 
815  | 20.8k  |   unsigned int i;  | 
816  | 20.8k  |   union { | 
817  | 20.8k  |     int64_t Whole;  | 
818  | 20.8k  |     int32_t Parts[_VECSIZE];  | 
819  | 20.8k  |   } Vec;  | 
820  |  |  | 
821  | 20.8k  |   Vec.Whole = Imm;  | 
822  |  |  | 
823  | 36.5k  |   for(i = 1; i < _VECSIZE; i++) { | 
824  | 20.8k  |     if (Vec.Parts[i] != Vec.Parts[0])  | 
825  | 5.11k  |       return false;  | 
826  | 20.8k  |   }  | 
827  | 15.7k  | #undef _VECSIZE  | 
828  |  |  | 
829  | 15.7k  |   return true;  | 
830  | 20.8k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isSVEMaskOfIdenticalElements32 AArch64InstPrinter.c:AArch64_AM_isSVEMaskOfIdenticalElements32 Line  | Count  | Source  |  813  | 20.8k  | { |  814  | 20.8k  | #define _VECSIZE (sizeof(int64_t)/sizeof(int32_t))  |  815  | 20.8k  |   unsigned int i;  |  816  | 20.8k  |   union { |  817  | 20.8k  |     int64_t Whole;  |  818  | 20.8k  |     int32_t Parts[_VECSIZE];  |  819  | 20.8k  |   } Vec;  |  820  |  |  |  821  | 20.8k  |   Vec.Whole = Imm;  |  822  |  |  |  823  | 36.5k  |   for(i = 1; i < _VECSIZE; i++) { |  824  | 20.8k  |     if (Vec.Parts[i] != Vec.Parts[0])  |  825  | 5.11k  |       return false;  |  826  | 20.8k  |   }  |  827  | 15.7k  | #undef _VECSIZE  |  828  |  |  |  829  | 15.7k  |   return true;  |  830  | 20.8k  | }  |  
  | 
831  |  |  | 
832  |  | static inline bool AArch64_AM_isSVEMaskOfIdenticalElements64(int64_t Imm)  | 
833  | 5.53k  | { | 
834  | 5.53k  |   return true;  | 
835  | 5.53k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isSVEMaskOfIdenticalElements64 AArch64InstPrinter.c:AArch64_AM_isSVEMaskOfIdenticalElements64 Line  | Count  | Source  |  833  | 5.53k  | { |  834  |  |   return true;  |  835  | 5.53k  | }  |  
  | 
836  |  |  | 
837  |  | static inline bool isSVECpyImm8(int64_t Imm)  | 
838  | 9.55k  | { | 
839  | 9.55k  |   bool IsImm8 = (int8_t)Imm == Imm;  | 
840  |  |  | 
841  | 9.55k  |   return IsImm8 || (uint8_t)Imm == Imm;  | 
842  | 9.55k  | } Unexecuted instantiation: AArch64Disassembler.c:isSVECpyImm8 AArch64InstPrinter.c:isSVECpyImm8 Line  | Count  | Source  |  838  | 9.55k  | { |  839  | 9.55k  |   bool IsImm8 = (int8_t)Imm == Imm;  |  840  |  |  |  841  | 9.55k  |   return IsImm8 || (uint8_t)Imm == Imm;  |  842  | 9.55k  | }  |  
  | 
843  |  |  | 
844  |  | static inline bool isSVECpyImm16(int64_t Imm)  | 
845  | 19.8k  | { | 
846  | 19.8k  |   bool IsImm8 = (int8_t)Imm == Imm;  | 
847  | 19.8k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  | 
848  |  |  | 
849  | 19.8k  |   return IsImm8 || IsImm16 || (uint16_t)(Imm & ~0xff) == Imm;  | 
850  | 19.8k  | } Unexecuted instantiation: AArch64Disassembler.c:isSVECpyImm16 AArch64InstPrinter.c:isSVECpyImm16 Line  | Count  | Source  |  845  | 19.8k  | { |  846  | 19.8k  |   bool IsImm8 = (int8_t)Imm == Imm;  |  847  | 19.8k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  |  848  |  |  |  849  | 19.8k  |   return IsImm8 || IsImm16 || (uint16_t)(Imm & ~0xff) == Imm;  |  850  | 19.8k  | }  |  
  | 
851  |  |  | 
852  |  | static inline bool isSVECpyImm32(int64_t Imm)  | 
853  | 25.4k  | { | 
854  | 25.4k  |   bool IsImm8 = (int8_t)Imm == Imm;  | 
855  | 25.4k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  | 
856  |  |  | 
857  | 25.4k  |   return IsImm8 || IsImm16;  | 
858  | 25.4k  | } Unexecuted instantiation: AArch64Disassembler.c:isSVECpyImm32 AArch64InstPrinter.c:isSVECpyImm32 Line  | Count  | Source  |  853  | 25.4k  | { |  854  | 25.4k  |   bool IsImm8 = (int8_t)Imm == Imm;  |  855  | 25.4k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  |  856  |  |  |  857  | 25.4k  |   return IsImm8 || IsImm16;  |  858  | 25.4k  | }  |  
  | 
859  |  |  | 
860  |  | static inline bool isSVECpyImm64(int64_t Imm)  | 
861  | 29.1k  | { | 
862  | 29.1k  |   bool IsImm8 = (int8_t)Imm == Imm;  | 
863  | 29.1k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  | 
864  |  |  | 
865  | 29.1k  |   return IsImm8 || IsImm16;  | 
866  | 29.1k  | } Unexecuted instantiation: AArch64Disassembler.c:isSVECpyImm64 AArch64InstPrinter.c:isSVECpyImm64 Line  | Count  | Source  |  861  | 29.1k  | { |  862  | 29.1k  |   bool IsImm8 = (int8_t)Imm == Imm;  |  863  | 29.1k  |   bool IsImm16 = (int16_t)(Imm & ~0xff) == Imm;  |  864  |  |  |  865  | 29.1k  |   return IsImm8 || IsImm16;  |  866  | 29.1k  | }  |  
  | 
867  |  |  | 
868  |  | /// Return true if Imm is valid for DUPM and has no single CPY/DUP equivalent.  | 
869  |  | static inline bool AArch64_AM_isSVEMoveMaskPreferredLogicalImmediate(int64_t Imm)  | 
870  | 29.1k  | { | 
871  | 29.1k  |   union { | 
872  | 29.1k  |     int64_t D;  | 
873  | 29.1k  |     int32_t S[2];  | 
874  | 29.1k  |     int16_t H[4];  | 
875  | 29.1k  |     int8_t B[8];  | 
876  | 29.1k  |   } Vec = {Imm}; | 
877  |  |  | 
878  | 29.1k  |   if (isSVECpyImm64(Vec.D))  | 
879  | 1.64k  |     return false;  | 
880  |  |  | 
881  | 27.5k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements32(Imm) &&  | 
882  | 25.4k  |       isSVECpyImm32(Vec.S[0]))  | 
883  | 2.92k  |     return false;  | 
884  |  |  | 
885  | 24.5k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements16(Imm) &&  | 
886  | 19.8k  |       isSVECpyImm16(Vec.H[0]))  | 
887  | 8.18k  |     return false;  | 
888  |  |  | 
889  | 16.4k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements8(Imm) &&  | 
890  | 9.55k  |       isSVECpyImm8(Vec.B[0]))  | 
891  | 9.55k  |     return false;  | 
892  |  |  | 
893  | 6.84k  |   return isLogicalImmediate(Vec.D, 64);  | 
894  | 16.4k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isSVEMoveMaskPreferredLogicalImmediate AArch64InstPrinter.c:AArch64_AM_isSVEMoveMaskPreferredLogicalImmediate Line  | Count  | Source  |  870  | 29.1k  | { |  871  | 29.1k  |   union { |  872  | 29.1k  |     int64_t D;  |  873  | 29.1k  |     int32_t S[2];  |  874  | 29.1k  |     int16_t H[4];  |  875  | 29.1k  |     int8_t B[8];  |  876  | 29.1k  |   } Vec = {Imm}; |  877  |  |  |  878  | 29.1k  |   if (isSVECpyImm64(Vec.D))  |  879  | 1.64k  |     return false;  |  880  |  |  |  881  | 27.5k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements32(Imm) &&  |  882  | 25.4k  |       isSVECpyImm32(Vec.S[0]))  |  883  | 2.92k  |     return false;  |  884  |  |  |  885  | 24.5k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements16(Imm) &&  |  886  | 19.8k  |       isSVECpyImm16(Vec.H[0]))  |  887  | 8.18k  |     return false;  |  888  |  |  |  889  | 16.4k  |   if (AArch64_AM_isSVEMaskOfIdenticalElements8(Imm) &&  |  890  | 9.55k  |       isSVECpyImm8(Vec.B[0]))  |  891  | 9.55k  |     return false;  |  892  |  |  |  893  | 6.84k  |   return isLogicalImmediate(Vec.D, 64);  |  894  | 16.4k  | }  |  
  | 
895  |  |  | 
896  |  | inline static bool isAnyMOVZMovAlias(uint64_t Value, int RegWidth)  | 
897  | 1.51k  | { | 
898  | 1.51k  |   int Shift;  | 
899  |  |  | 
900  | 6.91k  |   for (Shift = 0; Shift <= RegWidth - 16; Shift += 16)  | 
901  | 5.46k  |     if ((Value & ~(0xffffULL << Shift)) == 0)  | 
902  | 66  |       return true;  | 
903  |  |  | 
904  | 1.45k  |   return false;  | 
905  | 1.51k  | } Unexecuted instantiation: AArch64Disassembler.c:isAnyMOVZMovAlias AArch64InstPrinter.c:isAnyMOVZMovAlias Line  | Count  | Source  |  897  | 1.51k  | { |  898  | 1.51k  |   int Shift;  |  899  |  |  |  900  | 6.91k  |   for (Shift = 0; Shift <= RegWidth - 16; Shift += 16)  |  901  | 5.46k  |     if ((Value & ~(0xffffULL << Shift)) == 0)  |  902  | 66  |       return true;  |  903  |  |  |  904  | 1.45k  |   return false;  |  905  | 1.51k  | }  |  
  | 
906  |  |  | 
907  |  | inline static bool isMOVZMovAlias(uint64_t Value, int Shift, int RegWidth)  | 
908  | 2.66k  | { | 
909  | 2.66k  |   if (RegWidth == 32)  | 
910  | 341  |     Value &= 0xffffffffULL;  | 
911  |  |  | 
912  |  |   // "lsl #0" takes precedence: in practice this only affects "#0, lsl #0".  | 
913  | 2.66k  |   if (Value == 0 && Shift != 0)  | 
914  | 272  |     return false;  | 
915  |  |  | 
916  | 2.39k  |   return (Value & ~(0xffffULL << Shift)) == 0;  | 
917  | 2.66k  | } Unexecuted instantiation: AArch64Disassembler.c:isMOVZMovAlias AArch64InstPrinter.c:isMOVZMovAlias Line  | Count  | Source  |  908  | 2.66k  | { |  909  | 2.66k  |   if (RegWidth == 32)  |  910  | 341  |     Value &= 0xffffffffULL;  |  911  |  |  |  912  |  |   // "lsl #0" takes precedence: in practice this only affects "#0, lsl #0".  |  913  | 2.66k  |   if (Value == 0 && Shift != 0)  |  914  | 272  |     return false;  |  915  |  |  |  916  | 2.39k  |   return (Value & ~(0xffffULL << Shift)) == 0;  |  917  | 2.66k  | }  |  
  | 
918  |  |  | 
919  |  | inline static bool AArch64_AM_isMOVNMovAlias(uint64_t Value, int Shift, int RegWidth)  | 
920  | 2.27k  | { | 
921  |  |   // MOVZ takes precedence over MOVN.  | 
922  | 2.27k  |   if (isAnyMOVZMovAlias(Value, RegWidth))  | 
923  | 139  |     return false;  | 
924  |  |  | 
925  | 2.13k  |   Value = ~Value;  | 
926  | 2.13k  |   if (RegWidth == 32)  | 
927  | 321  |     Value &= 0xffffffffULL;  | 
928  |  |  | 
929  | 2.13k  |   return isMOVZMovAlias(Value, Shift, RegWidth);  | 
930  | 2.27k  | } Unexecuted instantiation: AArch64Disassembler.c:AArch64_AM_isMOVNMovAlias AArch64InstPrinter.c:AArch64_AM_isMOVNMovAlias Line  | Count  | Source  |  920  | 2.27k  | { |  921  |  |   // MOVZ takes precedence over MOVN.  |  922  | 2.27k  |   if (isAnyMOVZMovAlias(Value, RegWidth))  |  923  | 139  |     return false;  |  924  |  |  |  925  | 2.13k  |   Value = ~Value;  |  926  | 2.13k  |   if (RegWidth == 32)  |  927  | 321  |     Value &= 0xffffffffULL;  |  928  |  |  |  929  | 2.13k  |   return isMOVZMovAlias(Value, Shift, RegWidth);  |  930  | 2.27k  | }  |  
  | 
931  |  |  | 
932  |  | inline static bool AArch64_AM_isAnyMOVWMovAlias(uint64_t Value, int RegWidth)  | 
933  | 0  | { | 
934  | 0  |   if (isAnyMOVZMovAlias(Value, RegWidth))  | 
935  | 0  |     return true;  | 
936  | 0  | 
  | 
937  | 0  |   // It's not a MOVZ, but it might be a MOVN.  | 
938  | 0  |   Value = ~Value;  | 
939  | 0  |   if (RegWidth == 32)  | 
940  | 0  |     Value &= 0xffffffffULL;  | 
941  | 0  | 
  | 
942  | 0  |   return isAnyMOVZMovAlias(Value, RegWidth);  | 
943  | 0  | }  | 
944  |  |  | 
945  |  | #endif  |