1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef V8_CODEGEN_S390_CONSTANTS_S390_H_
6 #define V8_CODEGEN_S390_CONSTANTS_S390_H_
7
8 // Get the standard printf format macros for C99 stdint types.
9 #ifndef __STDC_FORMAT_MACROS
10 #define __STDC_FORMAT_MACROS
11 #endif
12 #include <inttypes.h>
13
14 #include <stdint.h>
15
16 #include "src/base/logging.h"
17 #include "src/base/macros.h"
18 #include "src/common/globals.h"
19
20 // UNIMPLEMENTED_ macro for S390.
21 #ifdef DEBUG
22 #define UNIMPLEMENTED_S390() \
23 v8::internal::PrintF("%s, \tline %d: \tfunction %s not implemented. \n", \
24 __FILE__, __LINE__, __func__)
25 #else
26 #define UNIMPLEMENTED_S390()
27 #endif
28
29 namespace v8 {
30 namespace internal {
31
32 constexpr size_t kMaxPCRelativeCodeRangeInMB = 4096;
33
34 // Number of registers
35 const int kNumRegisters = 16;
36
37 // FP support.
38 const int kNumDoubleRegisters = 16;
39
40 const int kNoRegister = -1;
41
42 // Actual value of root register is offset from the root array's start
43 // to take advantage of negative displacement values.
44 // TODO(sigurds): Choose best value.
45 constexpr int kRootRegisterBias = 128;
46
47 // sign-extend the least significant 16-bits of value <imm>
48 #define SIGN_EXT_IMM16(imm) ((static_cast<int>(imm) << 16) >> 16)
49
50 // sign-extend the least significant 26-bits of value <imm>
51 #define SIGN_EXT_IMM26(imm) ((static_cast<int>(imm) << 6) >> 6)
52
53 // -----------------------------------------------------------------------------
54 // Conditions.
55
56 // Defines constants and accessor classes to assemble, disassemble and
57 // simulate z/Architecture instructions.
58 //
59 // Section references in the code refer to the "z/Architecture Principles
60 // Of Operation" http://publibfi.boulder.ibm.com/epubs/pdf/dz9zr009.pdf
61 //
62
63 // Constants for specific fields are defined in their respective named enums.
64 // General constants are in an anonymous enum in class Instr.
65 enum Condition {
66 kNoCondition = -1,
67 eq = 0x8, // Equal.
68 ne = 0x7, // Not equal.
69 ge = 0xa, // Greater or equal.
70 lt = 0x4, // Less than.
71 gt = 0x2, // Greater than.
72 le = 0xc, // Less then or equal
73 al = 0xf, // Always.
74
75 CC_NOP = 0x0, // S390 NOP
76 CC_EQ = 0x08, // S390 condition code 0b1000
77 CC_LT = 0x04, // S390 condition code 0b0100
78 CC_LE = CC_EQ | CC_LT, // S390 condition code 0b1100
79 CC_GT = 0x02, // S390 condition code 0b0010
80 CC_GE = CC_EQ | CC_GT, // S390 condition code 0b1010
81 CC_OF = 0x01, // S390 condition code 0b0001
82 CC_NOF = 0x0E, // S390 condition code 0b1110
83 CC_ALWAYS = 0x0F, // S390 always taken branch
84 unordered = CC_OF, // Floating-point unordered
85 ordered = CC_NOF, // floating-point ordered
86 overflow = CC_OF, // Summary overflow
87 nooverflow = CC_NOF,
88
89 mask0x0 = 0, // no jumps
90 mask0x1 = 1,
91 mask0x2 = 2,
92 mask0x3 = 3,
93 mask0x4 = 4,
94 mask0x5 = 5,
95 mask0x6 = 6,
96 mask0x7 = 7,
97 mask0x8 = 8,
98 mask0x9 = 9,
99 mask0xA = 10,
100 mask0xB = 11,
101 mask0xC = 12,
102 mask0xD = 13,
103 mask0xE = 14,
104 mask0xF = 15,
105
106 // Rounding modes for floating poing facility
107 CURRENT_ROUNDING_MODE = 0,
108 ROUND_TO_NEAREST_WITH_TIES_AWAY_FROM_0 = 1,
109 ROUND_TO_PREPARE_FOR_SHORTER_PRECISION = 3,
110 ROUND_TO_NEAREST_WITH_TIES_TO_EVEN = 4,
111 ROUND_TOWARD_0 = 5,
112 ROUND_TOWARD_PLUS_INFINITE = 6,
113 ROUND_TOWARD_MINUS_INFINITE = 7
114 };
115
NegateCondition(Condition cond)116 inline Condition NegateCondition(Condition cond) {
117 DCHECK(cond != al);
118 switch (cond) {
119 case eq:
120 return ne;
121 case ne:
122 return eq;
123 case ge:
124 return lt;
125 case gt:
126 return le;
127 case le:
128 return gt;
129 case lt:
130 return ge;
131 case lt | gt:
132 return eq;
133 case le | ge:
134 return CC_OF;
135 case CC_OF:
136 return CC_NOF;
137 default:
138 DCHECK(false);
139 }
140 return al;
141 }
142
143 // -----------------------------------------------------------------------------
144 // Instructions encoding.
145
146 // Instr is merely used by the Assembler to distinguish 32bit integers
147 // representing instructions from usual 32 bit values.
148 // Instruction objects are pointers to 32bit values, and provide methods to
149 // access the various ISA fields.
150 using Instr = int32_t;
151 using TwoByteInstr = uint16_t;
152 using FourByteInstr = uint32_t;
153 using SixByteInstr = uint64_t;
154
155 #define S390_RSY_A_OPCODE_LIST(V) \
156 V(lmg, LMG, 0xEB04) /* type = RSY_A LOAD MULTIPLE (64) */ \
157 V(srag, SRAG, 0xEB0A) /* type = RSY_A SHIFT RIGHT SINGLE (64) */ \
158 V(slag, SLAG, 0xEB0B) /* type = RSY_A SHIFT LEFT SINGLE (64) */ \
159 V(srlg, SRLG, 0xEB0C) /* type = RSY_A SHIFT RIGHT SINGLE LOGICAL (64) */ \
160 V(sllg, SLLG, 0xEB0D) /* type = RSY_A SHIFT LEFT SINGLE LOGICAL (64) */ \
161 V(tracg, TRACG, 0xEB0F) /* type = RSY_A TRACE (64) */ \
162 V(csy, CSY, 0xEB14) /* type = RSY_A COMPARE AND SWAP (32) */ \
163 V(rllg, RLLG, 0xEB1C) /* type = RSY_A ROTATE LEFT SINGLE LOGICAL (64) */ \
164 V(rll, RLL, 0xEB1D) /* type = RSY_A ROTATE LEFT SINGLE LOGICAL (32) */ \
165 V(stmg, STMG, 0xEB24) /* type = RSY_A STORE MULTIPLE (64) */ \
166 V(stctg, STCTG, 0xEB25) /* type = RSY_A STORE CONTROL (64) */ \
167 V(stmh, STMH, 0xEB26) /* type = RSY_A STORE MULTIPLE HIGH (32) */ \
168 V(lctlg, LCTLG, 0xEB2F) /* type = RSY_A LOAD CONTROL (64) */ \
169 V(csg, CSG, 0xEB30) /* type = RSY_A COMPARE AND SWAP (64) */ \
170 V(cdsy, CDSY, 0xEB31) /* type = RSY_A COMPARE DOUBLE AND SWAP (32) */ \
171 V(cdsg, CDSG, 0xEB3E) /* type = RSY_A COMPARE DOUBLE AND SWAP (64) */ \
172 V(bxhg, BXHG, 0xEB44) /* type = RSY_A BRANCH ON INDEX HIGH (64) */ \
173 V(bxleg, BXLEG, 0xEB45) /* type = RSY_A BRANCH ON INDEX LOW OR EQUAL (64) */ \
174 V(ecag, ECAG, 0xEB4C) /* type = RSY_A EXTRACT CPU ATTRIBUTE */ \
175 V(mvclu, MVCLU, 0xEB8E) /* type = RSY_A MOVE LONG UNICODE */ \
176 V(clclu, CLCLU, 0xEB8F) /* type = RSY_A COMPARE LOGICAL LONG UNICODE */ \
177 V(stmy, STMY, 0xEB90) /* type = RSY_A STORE MULTIPLE (32) */ \
178 V(lmh, LMH, 0xEB96) /* type = RSY_A LOAD MULTIPLE HIGH (32) */ \
179 V(lmy, LMY, 0xEB98) /* type = RSY_A LOAD MULTIPLE (32) */ \
180 V(lamy, LAMY, 0xEB9A) /* type = RSY_A LOAD ACCESS MULTIPLE */ \
181 V(stamy, STAMY, 0xEB9B) /* type = RSY_A STORE ACCESS MULTIPLE */ \
182 V(srak, SRAK, 0xEBDC) /* type = RSY_A SHIFT RIGHT SINGLE (32) */ \
183 V(slak, SLAK, 0xEBDD) /* type = RSY_A SHIFT LEFT SINGLE (32) */ \
184 V(srlk, SRLK, 0xEBDE) /* type = RSY_A SHIFT RIGHT SINGLE LOGICAL (32) */ \
185 V(sllk, SLLK, 0xEBDF) /* type = RSY_A SHIFT LEFT SINGLE LOGICAL (32) */ \
186 V(lang, LANG, 0xEBE4) /* type = RSY_A LOAD AND AND (64) */ \
187 V(laog, LAOG, 0xEBE6) /* type = RSY_A LOAD AND OR (64) */ \
188 V(laxg, LAXG, 0xEBE7) /* type = RSY_A LOAD AND EXCLUSIVE OR (64) */ \
189 V(laag, LAAG, 0xEBE8) /* type = RSY_A LOAD AND ADD (64) */ \
190 V(laalg, LAALG, 0xEBEA) /* type = RSY_A LOAD AND ADD LOGICAL (64) */ \
191 V(lan, LAN, 0xEBF4) /* type = RSY_A LOAD AND AND (32) */ \
192 V(lao, LAO, 0xEBF6) /* type = RSY_A LOAD AND OR (32) */ \
193 V(lax, LAX, 0xEBF7) /* type = RSY_A LOAD AND EXCLUSIVE OR (32) */ \
194 V(laa, LAA, 0xEBF8) /* type = RSY_A LOAD AND ADD (32) */ \
195 V(laal, LAAL, 0xEBFA) /* type = RSY_A LOAD AND ADD LOGICAL (32) */
196
197 #define S390_RSY_B_OPCODE_LIST(V) \
198 V(clmh, CLMH, \
199 0xEB20) /* type = RSY_B COMPARE LOGICAL CHAR. UNDER MASK (high) */ \
200 V(clmy, CLMY, \
201 0xEB21) /* type = RSY_B COMPARE LOGICAL CHAR. UNDER MASK (low) */ \
202 V(clt, CLT, 0xEB23) /* type = RSY_B COMPARE LOGICAL AND TRAP (32) */ \
203 V(clgt, CLGT, 0xEB2B) /* type = RSY_B COMPARE LOGICAL AND TRAP (64) */ \
204 V(stcmh, STCMH, \
205 0xEB2C) /* type = RSY_B STORE CHARACTERS UNDER MASK (high) */ \
206 V(stcmy, STCMY, 0xEB2D) /* type = RSY_B STORE CHARACTERS UNDER MASK (low) */ \
207 V(icmh, ICMH, 0xEB80) /* type = RSY_B INSERT CHARACTERS UNDER MASK (high) */ \
208 V(icmy, ICMY, 0xEB81) /* type = RSY_B INSERT CHARACTERS UNDER MASK (low) */ \
209 V(locfh, LOCFH, 0xEBE0) /* type = RSY_B LOAD HIGH ON CONDITION (32) */ \
210 V(stocfh, STOCFH, 0xEBE1) /* type = RSY_B STORE HIGH ON CONDITION */ \
211 V(locg, LOCG, 0xEBE2) /* type = RSY_B LOAD ON CONDITION (64) */ \
212 V(stocg, STOCG, 0xEBE3) /* type = RSY_B STORE ON CONDITION (64) */ \
213 V(loc, LOC, 0xEBF2) /* type = RSY_B LOAD ON CONDITION (32) */ \
214 V(stoc, STOC, 0xEBF3) /* type = RSY_B STORE ON CONDITION (32) */
215
216 #define S390_RXE_OPCODE_LIST(V) \
217 V(lcbb, LCBB, 0xE727) /* type = RXE LOAD COUNT TO BLOCK BOUNDARY */ \
218 V(ldeb, LDEB, 0xED04) /* type = RXE LOAD LENGTHENED (short to long BFP) */ \
219 V(lxdb, LXDB, \
220 0xED05) /* type = RXE LOAD LENGTHENED (long to extended BFP) */ \
221 V(lxeb, LXEB, \
222 0xED06) /* type = RXE LOAD LENGTHENED (short to extended BFP) */ \
223 V(mxdb, MXDB, 0xED07) /* type = RXE MULTIPLY (long to extended BFP) */ \
224 V(keb, KEB, 0xED08) /* type = RXE COMPARE AND SIGNAL (short BFP) */ \
225 V(ceb, CEB, 0xED09) /* type = RXE COMPARE (short BFP) */ \
226 V(aeb, AEB, 0xED0A) /* type = RXE ADD (short BFP) */ \
227 V(seb, SEB, 0xED0B) /* type = RXE SUBTRACT (short BFP) */ \
228 V(mdeb, MDEB, 0xED0C) /* type = RXE MULTIPLY (short to long BFP) */ \
229 V(deb, DEB, 0xED0D) /* type = RXE DIVIDE (short BFP) */ \
230 V(tceb, TCEB, 0xED10) /* type = RXE TEST DATA CLASS (short BFP) */ \
231 V(tcdb, TCDB, 0xED11) /* type = RXE TEST DATA CLASS (long BFP) */ \
232 V(tcxb, TCXB, 0xED12) /* type = RXE TEST DATA CLASS (extended BFP) */ \
233 V(sqeb, SQEB, 0xED14) /* type = RXE SQUARE ROOT (short BFP) */ \
234 V(sqdb, SQDB, 0xED15) /* type = RXE SQUARE ROOT (long BFP) */ \
235 V(meeb, MEEB, 0xED17) /* type = RXE MULTIPLY (short BFP) */ \
236 V(kdb, KDB, 0xED18) /* type = RXE COMPARE AND SIGNAL (long BFP) */ \
237 V(cdb, CDB, 0xED19) /* type = RXE COMPARE (long BFP) */ \
238 V(adb, ADB, 0xED1A) /* type = RXE ADD (long BFP) */ \
239 V(sdb, SDB, 0xED1B) /* type = RXE SUBTRACT (long BFP) */ \
240 V(mdb, MDB, 0xED1C) /* type = RXE MULTIPLY (long BFP) */ \
241 V(ddb, DDB, 0xED1D) /* type = RXE DIVIDE (long BFP) */ \
242 V(lde, LDE, 0xED24) /* type = RXE LOAD LENGTHENED (short to long HFP) */ \
243 V(lxd, LXD, \
244 0xED25) /* type = RXE LOAD LENGTHENED (long to extended HFP) */ \
245 V(lxe, LXE, \
246 0xED26) /* type = RXE LOAD LENGTHENED (short to extended HFP) */ \
247 V(sqe, SQE, 0xED34) /* type = RXE SQUARE ROOT (short HFP) */ \
248 V(sqd, SQD, 0xED35) /* type = RXE SQUARE ROOT (long HFP) */ \
249 V(mee, MEE, 0xED37) /* type = RXE MULTIPLY (short HFP) */ \
250 V(tdcet, TDCET, 0xED50) /* type = RXE TEST DATA CLASS (short DFP) */ \
251 V(tdget, TDGET, 0xED51) /* type = RXE TEST DATA GROUP (short DFP) */ \
252 V(tdcdt, TDCDT, 0xED54) /* type = RXE TEST DATA CLASS (long DFP) */ \
253 V(tdgdt, TDGDT, 0xED55) /* type = RXE TEST DATA GROUP (long DFP) */ \
254 V(tdcxt, TDCXT, 0xED58) /* type = RXE TEST DATA CLASS (extended DFP) */ \
255 V(tdgxt, TDGXT, 0xED59) /* type = RXE TEST DATA GROUP (extended DFP) */
256
257 #define S390_RRF_A_OPCODE_LIST(V) \
258 V(ipte, IPTE, 0xB221) /* type = RRF_A INVALIDATE PAGE TABLE ENTRY */ \
259 V(mdtra, MDTRA, 0xB3D0) /* type = RRF_A MULTIPLY (long DFP) */ \
260 V(ddtra, DDTRA, 0xB3D1) /* type = RRF_A DIVIDE (long DFP) */ \
261 V(adtra, ADTRA, 0xB3D2) /* type = RRF_A ADD (long DFP) */ \
262 V(sdtra, SDTRA, 0xB3D3) /* type = RRF_A SUBTRACT (long DFP) */ \
263 V(mxtra, MXTRA, 0xB3D8) /* type = RRF_A MULTIPLY (extended DFP) */ \
264 V(msrkc, MSRKC, 0xB9FD) /* type = RRF_A MULTIPLY (32)*/ \
265 V(msgrkc, MSGRKC, 0xB9ED) /* type = RRF_A MULTIPLY (64)*/ \
266 V(dxtra, DXTRA, 0xB3D9) /* type = RRF_A DIVIDE (extended DFP) */ \
267 V(axtra, AXTRA, 0xB3DA) /* type = RRF_A ADD (extended DFP) */ \
268 V(sxtra, SXTRA, 0xB3DB) /* type = RRF_A SUBTRACT (extended DFP) */ \
269 V(ahhhr, AHHHR, 0xB9C8) /* type = RRF_A ADD HIGH (32) */ \
270 V(shhhr, SHHHR, 0xB9C9) /* type = RRF_A SUBTRACT HIGH (32) */ \
271 V(alhhhr, ALHHHR, 0xB9CA) /* type = RRF_A ADD LOGICAL HIGH (32) */ \
272 V(slhhhr, SLHHHR, 0xB9CB) /* type = RRF_A SUBTRACT LOGICAL HIGH (32) */ \
273 V(ahhlr, AHHLR, 0xB9D8) /* type = RRF_A ADD HIGH (32) */ \
274 V(shhlr, SHHLR, 0xB9D9) /* type = RRF_A SUBTRACT HIGH (32) */ \
275 V(alhhlr, ALHHLR, 0xB9DA) /* type = RRF_A ADD LOGICAL HIGH (32) */ \
276 V(slhhlr, SLHHLR, 0xB9DB) /* type = RRF_A SUBTRACT LOGICAL HIGH (32) */ \
277 V(ngrk, NGRK, 0xB9E4) /* type = RRF_A AND (64) */ \
278 V(ogrk, OGRK, 0xB9E6) /* type = RRF_A OR (64) */ \
279 V(xgrk, XGRK, 0xB9E7) /* type = RRF_A EXCLUSIVE OR (64) */ \
280 V(agrk, AGRK, 0xB9E8) /* type = RRF_A ADD (64) */ \
281 V(sgrk, SGRK, 0xB9E9) /* type = RRF_A SUBTRACT (64) */ \
282 V(algrk, ALGRK, 0xB9EA) /* type = RRF_A ADD LOGICAL (64) */ \
283 V(slgrk, SLGRK, 0xB9EB) /* type = RRF_A SUBTRACT LOGICAL (64) */ \
284 V(nrk, NRK, 0xB9F4) /* type = RRF_A AND (32) */ \
285 V(ork, ORK, 0xB9F6) /* type = RRF_A OR (32) */ \
286 V(xrk, XRK, 0xB9F7) /* type = RRF_A EXCLUSIVE OR (32) */ \
287 V(ark, ARK, 0xB9F8) /* type = RRF_A ADD (32) */ \
288 V(srk, SRK, 0xB9F9) /* type = RRF_A SUBTRACT (32) */ \
289 V(alrk, ALRK, 0xB9FA) /* type = RRF_A ADD LOGICAL (32) */ \
290 V(slrk, SLRK, 0xB9FB) /* type = RRF_A SUBTRACT LOGICAL (32) */
291
292 #define S390_RXF_OPCODE_LIST(V) \
293 V(maeb, MAEB, 0xED0E) /* type = RXF MULTIPLY AND ADD (short BFP) */ \
294 V(mseb, MSEB, 0xED0F) /* type = RXF MULTIPLY AND SUBTRACT (short BFP) */ \
295 V(madb, MADB, 0xED1E) /* type = RXF MULTIPLY AND ADD (long BFP) */ \
296 V(msdb, MSDB, 0xED1F) /* type = RXF MULTIPLY AND SUBTRACT (long BFP) */ \
297 V(mae, MAE, 0xED2E) /* type = RXF MULTIPLY AND ADD (short HFP) */ \
298 V(mse, MSE, 0xED2F) /* type = RXF MULTIPLY AND SUBTRACT (short HFP) */ \
299 V(mayl, MAYL, \
300 0xED38) /* type = RXF MULTIPLY AND ADD UNNRM. (long to ext. low HFP) */ \
301 V(myl, MYL, \
302 0xED39) /* type = RXF MULTIPLY UNNORM. (long to ext. low HFP) */ \
303 V(may, MAY, \
304 0xED3A) /* type = RXF MULTIPLY & ADD UNNORMALIZED (long to ext. HFP) */ \
305 V(my, MY, \
306 0xED3B) /* type = RXF MULTIPLY UNNORMALIZED (long to ext. HFP) */ \
307 V(mayh, MAYH, \
308 0xED3C) /* type = RXF MULTIPLY AND ADD UNNRM. (long to ext. high HFP) */ \
309 V(myh, MYH, \
310 0xED3D) /* type = RXF MULTIPLY UNNORM. (long to ext. high HFP) */ \
311 V(mad, MAD, 0xED3E) /* type = RXF MULTIPLY AND ADD (long HFP) */ \
312 V(msd, MSD, 0xED3F) /* type = RXF MULTIPLY AND SUBTRACT (long HFP) */ \
313 V(sldt, SLDT, 0xED40) /* type = RXF SHIFT SIGNIFICAND LEFT (long DFP) */ \
314 V(srdt, SRDT, 0xED41) /* type = RXF SHIFT SIGNIFICAND RIGHT (long DFP) */ \
315 V(slxt, SLXT, \
316 0xED48) /* type = RXF SHIFT SIGNIFICAND LEFT (extended DFP) */ \
317 V(srxt, SRXT, \
318 0xED49) /* type = RXF SHIFT SIGNIFICAND RIGHT (extended DFP) */
319
320 #define S390_IE_OPCODE_LIST(V) \
321 V(niai, NIAI, 0xB2FA) /* type = IE NEXT INSTRUCTION ACCESS INTENT */
322
323 #define S390_RRF_B_OPCODE_LIST(V) \
324 V(diebr, DIEBR, 0xB353) /* type = RRF_B DIVIDE TO INTEGER (short BFP) */ \
325 V(didbr, DIDBR, 0xB35B) /* type = RRF_B DIVIDE TO INTEGER (long BFP) */ \
326 V(cpsdr, CPSDR, 0xB372) /* type = RRF_B COPY SIGN (long) */ \
327 V(qadtr, QADTR, 0xB3F5) /* type = RRF_B QUANTIZE (long DFP) */ \
328 V(iedtr, IEDTR, \
329 0xB3F6) /* type = RRF_B INSERT BIASED EXPONENT (64 to long DFP) */ \
330 V(rrdtr, RRDTR, 0xB3F7) /* type = RRF_B REROUND (long DFP) */ \
331 V(qaxtr, QAXTR, 0xB3FD) /* type = RRF_B QUANTIZE (extended DFP) */ \
332 V(iextr, IEXTR, \
333 0xB3FE) /* type = RRF_B INSERT BIASED EXPONENT (64 to extended DFP) */ \
334 V(rrxtr, RRXTR, 0xB3FF) /* type = RRF_B REROUND (extended DFP) */ \
335 V(kmctr, KMCTR, 0xB92D) /* type = RRF_B CIPHER MESSAGE WITH COUNTER */ \
336 V(idte, IDTE, 0xB98E) /* type = RRF_B INVALIDATE DAT TABLE ENTRY */ \
337 V(crdte, CRDTE, \
338 0xB98F) /* type = RRF_B COMPARE AND REPLACE DAT TABLE ENTRY */ \
339 V(lptea, LPTEA, 0xB9AA) /* type = RRF_B LOAD PAGE TABLE ENTRY ADDRESS */
340
341 #define S390_RRF_C_OPCODE_LIST(V) \
342 V(sske, SSKE, 0xB22B) /* type = RRF_C SET STORAGE KEY EXTENDED */ \
343 V(cu21, CU21, 0xB2A6) /* type = RRF_C CONVERT UTF-16 TO UTF-8 */ \
344 V(cu12, CU12, 0xB2A7) /* type = RRF_C CONVERT UTF-8 TO UTF-16 */ \
345 V(ppa, PPA, 0xB2E8) /* type = RRF_C PERFORM PROCESSOR ASSIST */ \
346 V(cgrt, CGRT, 0xB960) /* type = RRF_C COMPARE AND TRAP (64) */ \
347 V(clgrt, CLGRT, 0xB961) /* type = RRF_C COMPARE LOGICAL AND TRAP (64) */ \
348 V(crt, CRT, 0xB972) /* type = RRF_C COMPARE AND TRAP (32) */ \
349 V(clrt, CLRT, 0xB973) /* type = RRF_C COMPARE LOGICAL AND TRAP (32) */ \
350 V(trtt, TRTT, 0xB990) /* type = RRF_C TRANSLATE TWO TO TWO */ \
351 V(trto, TRTO, 0xB991) /* type = RRF_C TRANSLATE TWO TO ONE */ \
352 V(trot, TROT, 0xB992) /* type = RRF_C TRANSLATE ONE TO TWO */ \
353 V(troo, TROO, 0xB993) /* type = RRF_C TRANSLATE ONE TO ONE */ \
354 V(cu14, CU14, 0xB9B0) /* type = RRF_C CONVERT UTF-8 TO UTF-32 */ \
355 V(cu24, CU24, 0xB9B1) /* type = RRF_C CONVERT UTF-16 TO UTF-32 */ \
356 V(trtre, TRTRE, \
357 0xB9BD) /* type = RRF_C TRANSLATE AND TEST REVERSE EXTENDED */ \
358 V(trte, TRTE, 0xB9BF) /* type = RRF_C TRANSLATE AND TEST EXTENDED */ \
359 V(locfhr, LOCFHR, 0xB9E0) /* type = RRF_C LOAD HIGH ON CONDITION (32) */ \
360 V(locgr, LOCGR, 0xB9E2) /* type = RRF_C LOAD ON CONDITION (64) */ \
361 V(locr, LOCR, 0xB9F2) /* type = RRF_C LOAD ON CONDITION (32) */
362
363 #define S390_MII_OPCODE_LIST(V) \
364 V(bprp, BPRP, 0xC5) /* type = MII BRANCH PREDICTION RELATIVE PRELOAD */
365
366 #define S390_RRF_D_OPCODE_LIST(V) \
367 V(ldetr, LDETR, \
368 0xB3D4) /* type = RRF_D LOAD LENGTHENED (short to long DFP) */ \
369 V(lxdtr, LXDTR, \
370 0xB3DC) /* type = RRF_D LOAD LENGTHENED (long to extended DFP) */ \
371 V(csdtr, CSDTR, \
372 0xB3E3) /* type = RRF_D CONVERT TO SIGNED PACKED (long DFP to 64) */ \
373 V(csxtr, CSXTR, \
374 0xB3EB) /* type = RRF_D CONVERT TO SIGNED PACKED (extended DFP to 128) */
375
376 #define S390_RRF_E_OPCODE_LIST(V) \
377 V(ledbra, LEDBRA, \
378 0xB344) /* type = RRF_E LOAD ROUNDED (long to short BFP) */ \
379 V(ldxbra, LDXBRA, \
380 0xB345) /* type = RRF_E LOAD ROUNDED (extended to long BFP) */ \
381 V(lexbra, LEXBRA, \
382 0xB346) /* type = RRF_E LOAD ROUNDED (extended to short BFP) */ \
383 V(fixbra, FIXBRA, 0xB347) /* type = RRF_E LOAD FP INTEGER (extended BFP) */ \
384 V(tbedr, TBEDR, \
385 0xB350) /* type = RRF_E CONVERT HFP TO BFP (long to short) */ \
386 V(tbdr, TBDR, 0xB351) /* type = RRF_E CONVERT HFP TO BFP (long) */ \
387 V(fiebra, FIEBRA, 0xB357) /* type = RRF_E LOAD FP INTEGER (short BFP) */ \
388 V(fidbra, FIDBRA, 0xB35F) /* type = RRF_E LOAD FP INTEGER (long BFP) */ \
389 V(celfbr, CELFBR, \
390 0xB390) /* type = RRF_E CONVERT FROM LOGICAL (32 to short BFP) */ \
391 V(cdlfbr, CDLFBR, \
392 0xB391) /* type = RRF_E CONVERT FROM LOGICAL (32 to long BFP) */ \
393 V(cxlfbr, CXLFBR, \
394 0xB392) /* type = RRF_E CONVERT FROM LOGICAL (32 to extended BFP) */ \
395 V(cefbra, CEFBRA, \
396 0xB394) /* type = RRF_E CONVERT FROM FIXED (32 to short BFP) */ \
397 V(cdfbra, CDFBRA, \
398 0xB395) /* type = RRF_E CONVERT FROM FIXED (32 to long BFP) */ \
399 V(cxfbra, CXFBRA, \
400 0xB396) /* type = RRF_E CONVERT FROM FIXED (32 to extended BFP) */ \
401 V(cfebra, CFEBRA, \
402 0xB398) /* type = RRF_E CONVERT TO FIXED (short BFP to 32) */ \
403 V(cfdbra, CFDBRA, \
404 0xB399) /* type = RRF_E CONVERT TO FIXED (long BFP to 32) */ \
405 V(cfxbra, CFXBRA, \
406 0xB39A) /* type = RRF_E CONVERT TO FIXED (extended BFP to 32) */ \
407 V(clfebr, CLFEBR, \
408 0xB39C) /* type = RRF_E CONVERT TO LOGICAL (short BFP to 32) */ \
409 V(clfdbr, CLFDBR, \
410 0xB39D) /* type = RRF_E CONVERT TO LOGICAL (long BFP to 32) */ \
411 V(clfxbr, CLFXBR, \
412 0xB39E) /* type = RRF_E CONVERT TO LOGICAL (extended BFP to 32) */ \
413 V(celgbr, CELGBR, \
414 0xB3A0) /* type = RRF_E CONVERT FROM LOGICAL (64 to short BFP) */ \
415 V(cdlgbr, CDLGBR, \
416 0xB3A1) /* type = RRF_E CONVERT FROM LOGICAL (64 to long BFP) */ \
417 V(cxlgbr, CXLGBR, \
418 0xB3A2) /* type = RRF_E CONVERT FROM LOGICAL (64 to extended BFP) */ \
419 V(cegbra, CEGBRA, \
420 0xB3A4) /* type = RRF_E CONVERT FROM FIXED (64 to short BFP) */ \
421 V(cdgbra, CDGBRA, \
422 0xB3A5) /* type = RRF_E CONVERT FROM FIXED (64 to long BFP) */ \
423 V(cxgbra, CXGBRA, \
424 0xB3A6) /* type = RRF_E CONVERT FROM FIXED (64 to extended BFP) */ \
425 V(cgebra, CGEBRA, \
426 0xB3A8) /* type = RRF_E CONVERT TO FIXED (short BFP to 64) */ \
427 V(cgdbra, CGDBRA, \
428 0xB3A9) /* type = RRF_E CONVERT TO FIXED (long BFP to 64) */ \
429 V(cgxbra, CGXBRA, \
430 0xB3AA) /* type = RRF_E CONVERT TO FIXED (extended BFP to 64) */ \
431 V(clgebr, CLGEBR, \
432 0xB3AC) /* type = RRF_E CONVERT TO LOGICAL (short BFP to 64) */ \
433 V(clgdbr, CLGDBR, \
434 0xB3AD) /* type = RRF_E CONVERT TO LOGICAL (long BFP to 64) */ \
435 V(clgxbr, CLGXBR, \
436 0xB3AE) /* type = RRF_E CONVERT TO LOGICAL (extended BFP to 64) */ \
437 V(cfer, CFER, 0xB3B8) /* type = RRF_E CONVERT TO FIXED (short HFP to 32) */ \
438 V(cfdr, CFDR, 0xB3B9) /* type = RRF_E CONVERT TO FIXED (long HFP to 32) */ \
439 V(cfxr, CFXR, \
440 0xB3BA) /* type = RRF_E CONVERT TO FIXED (extended HFP to 32) */ \
441 V(cger, CGER, 0xB3C8) /* type = RRF_E CONVERT TO FIXED (short HFP to 64) */ \
442 V(cgdr, CGDR, 0xB3C9) /* type = RRF_E CONVERT TO FIXED (long HFP to 64) */ \
443 V(cgxr, CGXR, \
444 0xB3CA) /* type = RRF_E CONVERT TO FIXED (extended HFP to 64) */ \
445 V(ledtr, LEDTR, 0xB3D5) /* type = RRF_E LOAD ROUNDED (long to short DFP) */ \
446 V(fidtr, FIDTR, 0xB3D7) /* type = RRF_E LOAD FP INTEGER (long DFP) */ \
447 V(ldxtr, LDXTR, \
448 0xB3DD) /* type = RRF_E LOAD ROUNDED (extended to long DFP) */ \
449 V(fixtr, FIXTR, 0xB3DF) /* type = RRF_E LOAD FP INTEGER (extended DFP) */ \
450 V(cgdtra, CGDTRA, \
451 0xB3E1) /* type = RRF_E CONVERT TO FIXED (long DFP to 64) */ \
452 V(cgxtra, CGXTRA, \
453 0xB3E9) /* type = RRF_E CONVERT TO FIXED (extended DFP to 64) */ \
454 V(cdgtra, CDGTRA, \
455 0xB3F1) /* type = RRF_E CONVERT FROM FIXED (64 to long DFP) */ \
456 V(cxgtra, CXGTRA, \
457 0xB3F9) /* type = RRF_E CONVERT FROM FIXED (64 to extended DFP) */ \
458 V(cfdtr, CFDTR, 0xB941) /* type = RRF_E CONVERT TO FIXED (long DFP to 32) */ \
459 V(clgdtr, CLGDTR, \
460 0xB942) /* type = RRF_E CONVERT TO LOGICAL (long DFP to 64) */ \
461 V(clfdtr, CLFDTR, \
462 0xB943) /* type = RRF_E CONVERT TO LOGICAL (long DFP to 32) */ \
463 V(cfxtr, CFXTR, \
464 0xB949) /* type = RRF_E CONVERT TO FIXED (extended DFP to 32) */ \
465 V(clgxtr, CLGXTR, \
466 0xB94A) /* type = RRF_E CONVERT TO LOGICAL (extended DFP to 64) */ \
467 V(clfxtr, CLFXTR, \
468 0xB94B) /* type = RRF_E CONVERT TO LOGICAL (extended DFP to 32) */ \
469 V(cdlgtr, CDLGTR, \
470 0xB952) /* type = RRF_E CONVERT FROM LOGICAL (64 to long DFP) */ \
471 V(cdlftr, CDLFTR, \
472 0xB953) /* type = RRF_E CONVERT FROM LOGICAL (32 to long DFP) */ \
473 V(cxlgtr, CXLGTR, \
474 0xB95A) /* type = RRF_E CONVERT FROM LOGICAL (64 to extended DFP) */ \
475 V(cxlftr, CXLFTR, \
476 0xB95B) /* type = RRF_E CONVERT FROM LOGICAL (32 to extended DFP) */
477
478 #define S390_VRR_A_OPCODE_LIST(V) \
479 V(vpopct, VPOPCT, 0xE750) /* type = VRR_A VECTOR POPULATION COUNT */ \
480 V(vctz, VCTZ, 0xE752) /* type = VRR_A VECTOR COUNT TRAILING ZEROS */ \
481 V(vclz, VCLZ, 0xE753) /* type = VRR_A VECTOR COUNT LEADING ZEROS */ \
482 V(vlr, VLR, 0xE756) /* type = VRR_A VECTOR LOAD */ \
483 V(vistr, VISTR, 0xE75C) /* type = VRR_A VECTOR ISOLATE STRING */ \
484 V(vseg, VSEG, 0xE75F) /* type = VRR_A VECTOR SIGN EXTEND TO DOUBLEWORD */ \
485 V(vclgd, VCLGD, \
486 0xE7C0) /* type = VRR_A VECTOR FP CONVERT TO LOGICAL 64-BIT */ \
487 V(vcdlg, VCDLG, \
488 0xE7C1) /* type = VRR_A VECTOR FP CONVERT FROM LOGICAL 64-BIT */ \
489 V(vcgd, VCGD, 0xE7C2) /* type = VRR_A VECTOR FP CONVERT TO FIXED 64-BIT */ \
490 V(vcdg, VCDG, 0xE7C3) /* type = VRR_A VECTOR FP CONVERT FROM FIXED 64-BIT */ \
491 V(vlde, VLDE, 0xE7C4) /* type = VRR_A VECTOR FP LOAD LENGTHENED */ \
492 V(vled, VLED, 0xE7C5) /* type = VRR_A VECTOR FP LOAD ROUNDED */ \
493 V(vfi, VFI, 0xE7C7) /* type = VRR_A VECTOR LOAD FP INTEGER */ \
494 V(wfk, WFK, 0xE7CA) /* type = VRR_A VECTOR FP COMPARE AND SIGNAL SCALAR */ \
495 V(wfc, WFC, 0xE7CB) /* type = VRR_A VECTOR FP COMPARE SCALAR */ \
496 V(vfpso, VFPSO, 0xE7CC) /* type = VRR_A VECTOR FP PERFORM SIGN OPERATION */ \
497 V(vfsq, VFSQ, 0xE7CE) /* type = VRR_A VECTOR FP SQUARE ROOT */ \
498 V(vupll, VUPLL, 0xE7D4) /* type = VRR_A VECTOR UNPACK LOGICAL LOW */ \
499 V(vuplh, VUPLH, 0xE7D5) /* type = VRR_A VECTOR UNPACK LOGICAL HIGH */ \
500 V(vupl, VUPL, 0xE7D6) /* type = VRR_A VECTOR UNPACK LOW */ \
501 V(vuph, VUPH, 0xE7D7) /* type = VRR_A VECTOR UNPACK HIGH */ \
502 V(vtm, VTM, 0xE7D8) /* type = VRR_A VECTOR TEST UNDER MASK */ \
503 V(vecl, VECL, 0xE7D9) /* type = VRR_A VECTOR ELEMENT COMPARE LOGICAL */ \
504 V(vec, VEC, 0xE7DB) /* type = VRR_A VECTOR ELEMENT COMPARE */ \
505 V(vlc, VLC, 0xE7DE) /* type = VRR_A VECTOR LOAD COMPLEMENT */ \
506 V(vlp, VLP, 0xE7DF) /* type = VRR_A VECTOR LOAD POSITIVE */
507
508 #define S390_VRR_B_OPCODE_LIST(V) \
509 V(vfee, VFEE, 0xE780) /* type = VRR_B VECTOR FIND ELEMENT EQUAL */ \
510 V(vfene, VFENE, 0xE781) /* type = VRR_B VECTOR FIND ELEMENT NOT EQUAL */ \
511 V(vfae, VFAE, 0xE782) /* type = VRR_B VECTOR FIND ANY ELEMENT EQUAL */ \
512 V(vpkls, VPKLS, 0xE795) /* type = VRR_B VECTOR PACK LOGICAL SATURATE */ \
513 V(vpks, VPKS, 0xE797) /* type = VRR_B VECTOR PACK SATURATE */ \
514 V(vceq, VCEQ, 0xE7F8) /* type = VRR_B VECTOR COMPARE EQUAL */ \
515 V(vchl, VCHL, 0xE7F9) /* type = VRR_B VECTOR COMPARE HIGH LOGICAL */ \
516 V(vch, VCH, 0xE7FB) /* type = VRR_B VECTOR COMPARE HIGH */
517
518 #define S390_VRR_C_OPCODE_LIST(V) \
519 V(vmrl, VMRL, 0xE760) /* type = VRR_C VECTOR MERGE LOW */ \
520 V(vmrh, VMRH, 0xE761) /* type = VRR_C VECTOR MERGE HIGH */ \
521 V(vsum, VSUM, 0xE764) /* type = VRR_C VECTOR SUM ACROSS WORD */ \
522 V(vsumg, VSUMG, 0xE765) /* type = VRR_C VECTOR SUM ACROSS DOUBLEWORD */ \
523 V(vcksm, VCKSM, 0xE766) /* type = VRR_C VECTOR CHECKSUM */ \
524 V(vsumq, VSUMQ, 0xE767) /* type = VRR_C VECTOR SUM ACROSS QUADWORD */ \
525 V(vn, VN, 0xE768) /* type = VRR_C VECTOR AND */ \
526 V(vnc, VNC, 0xE769) /* type = VRR_C VECTOR AND WITH COMPLEMENT */ \
527 V(vo, VO, 0xE76A) /* type = VRR_C VECTOR OR */ \
528 V(vno, VNO, 0xE76B) /* type = VRR_C VECTOR NOR */ \
529 V(vx, VX, 0xE76D) /* type = VRR_C VECTOR EXCLUSIVE OR */ \
530 V(veslv, VESLV, 0xE770) /* type = VRR_C VECTOR ELEMENT SHIFT LEFT */ \
531 V(verllv, VERLLV, \
532 0xE773) /* type = VRR_C VECTOR ELEMENT ROTATE LEFT LOGICAL */ \
533 V(vsl, VSL, 0xE774) /* type = VRR_C VECTOR SHIFT LEFT */ \
534 V(vslb, VSLB, 0xE775) /* type = VRR_C VECTOR SHIFT LEFT BY BYTE */ \
535 V(vesrlv, VESRLV, \
536 0xE778) /* type = VRR_C VECTOR ELEMENT SHIFT RIGHT LOGICAL */ \
537 V(vesrav, VESRAV, \
538 0xE77A) /* type = VRR_C VECTOR ELEMENT SHIFT RIGHT ARITHMETIC */ \
539 V(vsrl, VSRL, 0xE77C) /* type = VRR_C VECTOR SHIFT RIGHT LOGICAL */ \
540 V(vsrlb, VSRLB, \
541 0xE77D) /* type = VRR_C VECTOR SHIFT RIGHT LOGICAL BY BYTE */ \
542 V(vsra, VSRA, 0xE77E) /* type = VRR_C VECTOR SHIFT RIGHT ARITHMETIC */ \
543 V(vsrab, VSRAB, \
544 0xE77F) /* type = VRR_C VECTOR SHIFT RIGHT ARITHMETIC BY BYTE */ \
545 V(vpdi, VPDI, 0xE784) /* type = VRR_C VECTOR PERMUTE DOUBLEWORD IMMEDIATE */ \
546 V(vpk, VPK, 0xE794) /* type = VRR_C VECTOR PACK */ \
547 V(vmlh, VMLH, 0xE7A1) /* type = VRR_C VECTOR MULTIPLY LOGICAL HIGH */ \
548 V(vml, VML, 0xE7A2) /* type = VRR_C VECTOR MULTIPLY LOW */ \
549 V(vmh, VMH, 0xE7A3) /* type = VRR_C VECTOR MULTIPLY HIGH */ \
550 V(vmle, VMLE, 0xE7A4) /* type = VRR_C VECTOR MULTIPLY LOGICAL EVEN */ \
551 V(vmlo, VMLO, 0xE7A5) /* type = VRR_C VECTOR MULTIPLY LOGICAL ODD */ \
552 V(vme, VME, 0xE7A6) /* type = VRR_C VECTOR MULTIPLY EVEN */ \
553 V(vmo, VMO, 0xE7A7) /* type = VRR_C VECTOR MULTIPLY ODD */ \
554 V(vgfm, VGFM, 0xE7B4) /* type = VRR_C VECTOR GALOIS FIELD MULTIPLY SUM */ \
555 V(vfs, VFS, 0xE7E2) /* type = VRR_C VECTOR FP SUBTRACT */ \
556 V(vfa, VFA, 0xE7E3) /* type = VRR_C VECTOR FP ADD */ \
557 V(vfd, VFD, 0xE7E5) /* type = VRR_C VECTOR FP DIVIDE */ \
558 V(vfm, VFM, 0xE7E7) /* type = VRR_C VECTOR FP MULTIPLY */ \
559 V(vfce, VFCE, 0xE7E8) /* type = VRR_C VECTOR FP COMPARE EQUAL */ \
560 V(vfche, VFCHE, 0xE7EA) /* type = VRR_C VECTOR FP COMPARE HIGH OR EQUAL */ \
561 V(vfch, VFCH, 0xE7EB) /* type = VRR_C VECTOR FP COMPARE HIGH */ \
562 V(vfmax, VFMAX, 0xE7EF) /* type = VRR_C VECTOR FP MAXIMUM */ \
563 V(vfmin, VFMIN, 0xE7EE) /* type = VRR_C VECTOR FP MINIMUM */ \
564 V(vavgl, VAVGL, 0xE7F0) /* type = VRR_C VECTOR AVERAGE LOGICAL */ \
565 V(vacc, VACC, 0xE7F1) /* type = VRR_C VECTOR ADD COMPUTE CARRY */ \
566 V(vavg, VAVG, 0xE7F2) /* type = VRR_C VECTOR AVERAGE */ \
567 V(va, VA, 0xE7F3) /* type = VRR_C VECTOR ADD */ \
568 V(vscbi, VSCBI, \
569 0xE7F5) /* type = VRR_C VECTOR SUBTRACT COMPUTE BORROW INDICATION */ \
570 V(vs, VS, 0xE7F7) /* type = VRR_C VECTOR SUBTRACT */ \
571 V(vmnl, VMNL, 0xE7FC) /* type = VRR_C VECTOR MINIMUM LOGICAL */ \
572 V(vmxl, VMXL, 0xE7FD) /* type = VRR_C VECTOR MAXIMUM LOGICAL */ \
573 V(vmn, VMN, 0xE7FE) /* type = VRR_C VECTOR MINIMUM */ \
574 V(vmx, VMX, 0xE7FF) /* type = VRR_C VECTOR MAXIMUM */ \
575 V(vbperm, VBPERM, 0xE785) /* type = VRR_C VECTOR BIT PERMUTE */
576
577 #define S390_VRI_A_OPCODE_LIST(V) \
578 V(vleib, VLEIB, 0xE740) /* type = VRI_A VECTOR LOAD ELEMENT IMMEDIATE (8) */ \
579 V(vleih, VLEIH, \
580 0xE741) /* type = VRI_A VECTOR LOAD ELEMENT IMMEDIATE (16) */ \
581 V(vleig, VLEIG, \
582 0xE742) /* type = VRI_A VECTOR LOAD ELEMENT IMMEDIATE (64) */ \
583 V(vleif, VLEIF, \
584 0xE743) /* type = VRI_A VECTOR LOAD ELEMENT IMMEDIATE (32) */ \
585 V(vgbm, VGBM, 0xE744) /* type = VRI_A VECTOR GENERATE BYTE MASK */ \
586 V(vrepi, VREPI, 0xE745) /* type = VRI_A VECTOR REPLICATE IMMEDIATE */
587
588 #define S390_VRR_D_OPCODE_LIST(V) \
589 V(vstrc, VSTRC, 0xE78A) /* type = VRR_D VECTOR STRING RANGE COMPARE */ \
590 V(vmalh, VMALH, \
591 0xE7A9) /* type = VRR_D VECTOR MULTIPLY AND ADD LOGICAL HIGH */ \
592 V(vmal, VMAL, 0xE7AA) /* type = VRR_D VECTOR MULTIPLY AND ADD LOW */ \
593 V(vmah, VMAH, 0xE7AB) /* type = VRR_D VECTOR MULTIPLY AND ADD HIGH */ \
594 V(vmale, VMALE, \
595 0xE7AC) /* type = VRR_D VECTOR MULTIPLY AND ADD LOGICAL EVEN */ \
596 V(vmalo, VMALO, \
597 0xE7AD) /* type = VRR_D VECTOR MULTIPLY AND ADD LOGICAL ODD */ \
598 V(vmae, VMAE, 0xE7AE) /* type = VRR_D VECTOR MULTIPLY AND ADD EVEN */ \
599 V(vmao, VMAO, 0xE7AF) /* type = VRR_D VECTOR MULTIPLY AND ADD ODD */ \
600 V(vaccc, VACCC, \
601 0xE7B9) /* type = VRR_D VECTOR ADD WITH CARRY COMPUTE CARRY */ \
602 V(vac, VAC, 0xE7BB) /* type = VRR_D VECTOR ADD WITH CARRY */ \
603 V(vgfma, VGFMA, \
604 0xE7BC) /* type = VRR_D VECTOR GALOIS FIELD MULTIPLY SUM AND ACCUMULATE */ \
605 V(vsbcbi, VSBCBI, 0xE7BD) /* type = VRR_D VECTOR SUBTRACT WITH BORROW */ \
606 /* COMPUTE BORROW INDICATION */ \
607 V(vsbi, VSBI, \
608 0xE7BF) /* type = VRR_D VECTOR SUBTRACT WITH BORROW INDICATION */
609
610 #define S390_VRI_B_OPCODE_LIST(V) \
611 V(vgm, VGM, 0xE746) /* type = VRI_B VECTOR GENERATE MASK */
612
613 #define S390_VRR_E_OPCODE_LIST(V) \
614 V(vperm, VPERM, 0xE78C) /* type = VRR_E VECTOR PERMUTE */ \
615 V(vsel, VSEL, 0xE78D) /* type = VRR_E VECTOR SELECT */ \
616 V(vfms, VFMS, 0xE78E) /* type = VRR_E VECTOR FP MULTIPLY AND SUBTRACT */ \
617 V(vfnms, VFNMS, \
618 0xE79E) /* type = VRR_E VECTOR FP NEGATIVE MULTIPLY AND SUBTRACT */ \
619 V(vfma, VFMA, 0xE78F) /* type = VRR_E VECTOR FP MULTIPLY AND ADD */
620
621 #define S390_VRI_C_OPCODE_LIST(V) \
622 V(vrep, VREP, 0xE74D) /* type = VRI_C VECTOR REPLICATE */
623
624 #define S390_VRI_D_OPCODE_LIST(V) \
625 V(verim, VERIM, \
626 0xE772) /* type = VRI_D VECTOR ELEMENT ROTATE AND INSERT UNDER MASK */ \
627 V(vsldb, VSLDB, 0xE777) /* type = VRI_D VECTOR SHIFT LEFT DOUBLE BY BYTE */
628
629 #define S390_VRR_F_OPCODE_LIST(V) \
630 V(vlvgp, VLVGP, 0xE762) /* type = VRR_F VECTOR LOAD VR FROM GRS DISJOINT */
631
632 #define S390_RIS_OPCODE_LIST(V) \
633 V(cgib, CGIB, \
634 0xECFC) /* type = RIS COMPARE IMMEDIATE AND BRANCH (64<-8) */ \
635 V(clgib, CLGIB, \
636 0xECFD) /* type = RIS COMPARE LOGICAL IMMEDIATE AND BRANCH (64<-8) */ \
637 V(cib, CIB, 0xECFE) /* type = RIS COMPARE IMMEDIATE AND BRANCH (32<-8) */ \
638 V(clib, CLIB, \
639 0xECFF) /* type = RIS COMPARE LOGICAL IMMEDIATE AND BRANCH (32<-8) */
640
641 #define S390_VRI_E_OPCODE_LIST(V) \
642 V(vftci, VFTCI, \
643 0xE74A) /* type = VRI_E VECTOR FP TEST DATA CLASS IMMEDIATE */
644
645 #define S390_RSL_A_OPCODE_LIST(V) \
646 V(tp, TP, 0xEBC0) /* type = RSL_A TEST DECIMAL */
647
648 #define S390_RSL_B_OPCODE_LIST(V) \
649 V(cpdt, CPDT, 0xEDAC) /* type = RSL_B CONVERT TO PACKED (from long DFP) */ \
650 V(cpxt, CPXT, \
651 0xEDAD) /* type = RSL_B CONVERT TO PACKED (from extended DFP) */ \
652 V(cdpt, CDPT, 0xEDAE) /* type = RSL_B CONVERT FROM PACKED (to long DFP) */ \
653 V(cxpt, CXPT, \
654 0xEDAF) /* type = RSL_B CONVERT FROM PACKED (to extended DFP) */ \
655 V(czdt, CZDT, 0xEDA8) /* type = RSL CONVERT TO ZONED (from long DFP) */ \
656 V(czxt, CZXT, 0xEDA9) /* type = RSL CONVERT TO ZONED (from extended DFP) */ \
657 V(cdzt, CDZT, 0xEDAA) /* type = RSL CONVERT FROM ZONED (to long DFP) */ \
658 V(cxzt, CXZT, 0xEDAB) /* type = RSL CONVERT FROM ZONED (to extended DFP) */
659
660 #define S390_SI_OPCODE_LIST(V) \
661 V(tm, TM, 0x91) /* type = SI TEST UNDER MASK */ \
662 V(mvi, MVI, 0x92) /* type = SI MOVE (immediate) */ \
663 V(ni, NI, 0x94) /* type = SI AND (immediate) */ \
664 V(cli, CLI, 0x95) /* type = SI COMPARE LOGICAL (immediate) */ \
665 V(oi, OI, 0x96) /* type = SI OR (immediate) */ \
666 V(xi, XI, 0x97) /* type = SI EXCLUSIVE OR (immediate) */ \
667 V(stnsm, STNSM, 0xAC) /* type = SI STORE THEN AND SYSTEM MASK */ \
668 V(stosm, STOSM, 0xAD) /* type = SI STORE THEN OR SYSTEM MASK */ \
669 V(mc, MC, 0xAF) /* type = SI MONITOR CALL */
670
671 #define S390_SIL_OPCODE_LIST(V) \
672 V(mvhhi, MVHHI, 0xE544) /* type = SIL MOVE (16<-16) */ \
673 V(mvghi, MVGHI, 0xE548) /* type = SIL MOVE (64<-16) */ \
674 V(mvhi, MVHI, 0xE54C) /* type = SIL MOVE (32<-16) */ \
675 V(chhsi, CHHSI, \
676 0xE554) /* type = SIL COMPARE HALFWORD IMMEDIATE (16<-16) */ \
677 V(clhhsi, CLHHSI, \
678 0xE555) /* type = SIL COMPARE LOGICAL IMMEDIATE (16<-16) */ \
679 V(cghsi, CGHSI, \
680 0xE558) /* type = SIL COMPARE HALFWORD IMMEDIATE (64<-16) */ \
681 V(clghsi, CLGHSI, \
682 0xE559) /* type = SIL COMPARE LOGICAL IMMEDIATE (64<-16) */ \
683 V(chsi, CHSI, 0xE55C) /* type = SIL COMPARE HALFWORD IMMEDIATE (32<-16) */ \
684 V(clfhsi, CLFHSI, \
685 0xE55D) /* type = SIL COMPARE LOGICAL IMMEDIATE (32<-16) */ \
686 V(tbegin, TBEGIN, \
687 0xE560) /* type = SIL TRANSACTION BEGIN (nonconstrained) */ \
688 V(tbeginc, TBEGINC, \
689 0xE561) /* type = SIL TRANSACTION BEGIN (constrained) */
690
691 #define S390_VRS_A_OPCODE_LIST(V) \
692 V(vesl, VESL, 0xE730) /* type = VRS_A VECTOR ELEMENT SHIFT LEFT */ \
693 V(verll, VERLL, \
694 0xE733) /* type = VRS_A VECTOR ELEMENT ROTATE LEFT LOGICAL */ \
695 V(vlm, VLM, 0xE736) /* type = VRS_A VECTOR LOAD MULTIPLE */ \
696 V(vesrl, VESRL, \
697 0xE738) /* type = VRS_A VECTOR ELEMENT SHIFT RIGHT LOGICAL */ \
698 V(vesra, VESRA, \
699 0xE73A) /* type = VRS_A VECTOR ELEMENT SHIFT RIGHT ARITHMETIC */ \
700 V(vstm, VSTM, 0xE73E) /* type = VRS_A VECTOR STORE MULTIPLE */
701
702 #define S390_RIL_A_OPCODE_LIST(V) \
703 V(lgfi, LGFI, 0xC01) /* type = RIL_A LOAD IMMEDIATE (64<-32) */ \
704 V(xihf, XIHF, 0xC06) /* type = RIL_A EXCLUSIVE OR IMMEDIATE (high) */ \
705 V(xilf, XILF, 0xC07) /* type = RIL_A EXCLUSIVE OR IMMEDIATE (low) */ \
706 V(iihf, IIHF, 0xC08) /* type = RIL_A INSERT IMMEDIATE (high) */ \
707 V(iilf, IILF, 0xC09) /* type = RIL_A INSERT IMMEDIATE (low) */ \
708 V(nihf, NIHF, 0xC0A) /* type = RIL_A AND IMMEDIATE (high) */ \
709 V(nilf, NILF, 0xC0B) /* type = RIL_A AND IMMEDIATE (low) */ \
710 V(oihf, OIHF, 0xC0C) /* type = RIL_A OR IMMEDIATE (high) */ \
711 V(oilf, OILF, 0xC0D) /* type = RIL_A OR IMMEDIATE (low) */ \
712 V(llihf, LLIHF, 0xC0E) /* type = RIL_A LOAD LOGICAL IMMEDIATE (high) */ \
713 V(llilf, LLILF, 0xC0F) /* type = RIL_A LOAD LOGICAL IMMEDIATE (low) */ \
714 V(msgfi, MSGFI, 0xC20) /* type = RIL_A MULTIPLY SINGLE IMMEDIATE (64<-32) */ \
715 V(msfi, MSFI, 0xC21) /* type = RIL_A MULTIPLY SINGLE IMMEDIATE (32) */ \
716 V(slgfi, SLGFI, \
717 0xC24) /* type = RIL_A SUBTRACT LOGICAL IMMEDIATE (64<-32) */ \
718 V(slfi, SLFI, 0xC25) /* type = RIL_A SUBTRACT LOGICAL IMMEDIATE (32) */ \
719 V(agfi, AGFI, 0xC28) /* type = RIL_A ADD IMMEDIATE (64<-32) */ \
720 V(afi, AFI, 0xC29) /* type = RIL_A ADD IMMEDIATE (32) */ \
721 V(algfi, ALGFI, 0xC2A) /* type = RIL_A ADD LOGICAL IMMEDIATE (64<-32) */ \
722 V(alfi, ALFI, 0xC2B) /* type = RIL_A ADD LOGICAL IMMEDIATE (32) */ \
723 V(cgfi, CGFI, 0xC2C) /* type = RIL_A COMPARE IMMEDIATE (64<-32) */ \
724 V(cfi, CFI, 0xC2D) /* type = RIL_A COMPARE IMMEDIATE (32) */ \
725 V(clgfi, CLGFI, 0xC2E) /* type = RIL_A COMPARE LOGICAL IMMEDIATE (64<-32) */ \
726 V(clfi, CLFI, 0xC2F) /* type = RIL_A COMPARE LOGICAL IMMEDIATE (32) */ \
727 V(aih, AIH, 0xCC8) /* type = RIL_A ADD IMMEDIATE HIGH (32) */ \
728 V(alsih, ALSIH, \
729 0xCCA) /* type = RIL_A ADD LOGICAL WITH SIGNED IMMEDIATE HIGH (32) */ \
730 V(alsihn, ALSIHN, \
731 0xCCB) /* type = RIL_A ADD LOGICAL WITH SIGNED IMMEDIATE HIGH (32) */ \
732 V(cih, CIH, 0xCCD) /* type = RIL_A COMPARE IMMEDIATE HIGH (32) */ \
733 V(clih, CLIH, 0xCCF) /* type = RIL_A COMPARE LOGICAL IMMEDIATE HIGH (32) */
734
735 #define S390_RIL_B_OPCODE_LIST(V) \
736 V(larl, LARL, 0xC00) /* type = RIL_B LOAD ADDRESS RELATIVE LONG */ \
737 V(brasl, BRASL, 0xC05) /* type = RIL_B BRANCH RELATIVE AND SAVE LONG */ \
738 V(llhrl, LLHRL, \
739 0xC42) /* type = RIL_B LOAD LOGICAL HALFWORD RELATIVE LONG (32<-16) */ \
740 V(lghrl, LGHRL, \
741 0xC44) /* type = RIL_B LOAD HALFWORD RELATIVE LONG (64<-16) */ \
742 V(lhrl, LHRL, 0xC45) /* type = RIL_B LOAD HALFWORD RELATIVE LONG (32<-16) */ \
743 V(llghrl, LLGHRL, \
744 0xC46) /* type = RIL_B LOAD LOGICAL HALFWORD RELATIVE LONG (64<-16) */ \
745 V(sthrl, STHRL, 0xC47) /* type = RIL_B STORE HALFWORD RELATIVE LONG (16) */ \
746 V(lgrl, LGRL, 0xC48) /* type = RIL_B LOAD RELATIVE LONG (64) */ \
747 V(stgrl, STGRL, 0xC4B) /* type = RIL_B STORE RELATIVE LONG (64) */ \
748 V(lgfrl, LGFRL, 0xC4C) /* type = RIL_B LOAD RELATIVE LONG (64<-32) */ \
749 V(lrl, LRL, 0xC4D) /* type = RIL_B LOAD RELATIVE LONG (32) */ \
750 V(llgfrl, LLGFRL, \
751 0xC4E) /* type = RIL_B LOAD LOGICAL RELATIVE LONG (64<-32) */ \
752 V(strl, STRL, 0xC4F) /* type = RIL_B STORE RELATIVE LONG (32) */ \
753 V(exrl, EXRL, 0xC60) /* type = RIL_B EXECUTE RELATIVE LONG */ \
754 V(cghrl, CGHRL, \
755 0xC64) /* type = RIL_B COMPARE HALFWORD RELATIVE LONG (64<-16) */ \
756 V(chrl, CHRL, \
757 0xC65) /* type = RIL_B COMPARE HALFWORD RELATIVE LONG (32<-16) */ \
758 V(clghrl, CLGHRL, \
759 0xC66) /* type = RIL_B COMPARE LOGICAL RELATIVE LONG (64<-16) */ \
760 V(clhrl, CLHRL, \
761 0xC67) /* type = RIL_B COMPARE LOGICAL RELATIVE LONG (32<-16) */ \
762 V(cgrl, CGRL, 0xC68) /* type = RIL_B COMPARE RELATIVE LONG (64) */ \
763 V(clgrl, CLGRL, 0xC6A) /* type = RIL_B COMPARE LOGICAL RELATIVE LONG (64) */ \
764 V(cgfrl, CGFRL, 0xC6C) /* type = RIL_B COMPARE RELATIVE LONG (64<-32) */ \
765 V(crl, CRL, 0xC6D) /* type = RIL_B COMPARE RELATIVE LONG (32) */ \
766 V(clgfrl, CLGFRL, \
767 0xC6E) /* type = RIL_B COMPARE LOGICAL RELATIVE LONG (64<-32) */ \
768 V(clrl, CLRL, 0xC6F) /* type = RIL_B COMPARE LOGICAL RELATIVE LONG (32) */ \
769 V(brcth, BRCTH, 0xCC6) /* type = RIL_B BRANCH RELATIVE ON COUNT HIGH (32) */
770
771 #define S390_VRS_B_OPCODE_LIST(V) \
772 V(vlvg, VLVG, 0xE722) /* type = VRS_B VECTOR LOAD VR ELEMENT FROM GR */ \
773 V(vll, VLL, 0xE737) /* type = VRS_B VECTOR LOAD WITH LENGTH */ \
774 V(vstl, VSTL, 0xE73F) /* type = VRS_B VECTOR STORE WITH LENGTH */
775
776 #define S390_RIL_C_OPCODE_LIST(V) \
777 V(brcl, BRCL, 0xC04) /* type = RIL_C BRANCH RELATIVE ON CONDITION LONG */ \
778 V(pfdrl, PFDRL, 0xC62) /* type = RIL_C PREFETCH DATA RELATIVE LONG */
779
780 #define S390_VRS_C_OPCODE_LIST(V) \
781 V(vlgv, VLGV, 0xE721) /* type = VRS_C VECTOR LOAD GR FROM VR ELEMENT */
782
783 #define S390_RI_A_OPCODE_LIST(V) \
784 V(iihh, IIHH, 0xA50) /* type = RI_A INSERT IMMEDIATE (high high) */ \
785 V(iihl, IIHL, 0xA51) /* type = RI_A INSERT IMMEDIATE (high low) */ \
786 V(iilh, IILH, 0xA52) /* type = RI_A INSERT IMMEDIATE (low high) */ \
787 V(iill, IILL, 0xA53) /* type = RI_A INSERT IMMEDIATE (low low) */ \
788 V(nihh, NIHH, 0xA54) /* type = RI_A AND IMMEDIATE (high high) */ \
789 V(nihl, NIHL, 0xA55) /* type = RI_A AND IMMEDIATE (high low) */ \
790 V(nilh, NILH, 0xA56) /* type = RI_A AND IMMEDIATE (low high) */ \
791 V(nill, NILL, 0xA57) /* type = RI_A AND IMMEDIATE (low low) */ \
792 V(oihh, OIHH, 0xA58) /* type = RI_A OR IMMEDIATE (high high) */ \
793 V(oihl, OIHL, 0xA59) /* type = RI_A OR IMMEDIATE (high low) */ \
794 V(oilh, OILH, 0xA5A) /* type = RI_A OR IMMEDIATE (low high) */ \
795 V(oill, OILL, 0xA5B) /* type = RI_A OR IMMEDIATE (low low) */ \
796 V(llihh, LLIHH, 0xA5C) /* type = RI_A LOAD LOGICAL IMMEDIATE (high high) */ \
797 V(llihl, LLIHL, 0xA5D) /* type = RI_A LOAD LOGICAL IMMEDIATE (high low) */ \
798 V(llilh, LLILH, 0xA5E) /* type = RI_A LOAD LOGICAL IMMEDIATE (low high) */ \
799 V(llill, LLILL, 0xA5F) /* type = RI_A LOAD LOGICAL IMMEDIATE (low low) */ \
800 V(tmlh, TMLH, 0xA70) /* type = RI_A TEST UNDER MASK (low high) */ \
801 V(tmll, TMLL, 0xA71) /* type = RI_A TEST UNDER MASK (low low) */ \
802 V(tmhh, TMHH, 0xA72) /* type = RI_A TEST UNDER MASK (high high) */ \
803 V(tmhl, TMHL, 0xA73) /* type = RI_A TEST UNDER MASK (high low) */ \
804 V(lhi, LHI, 0xA78) /* type = RI_A LOAD HALFWORD IMMEDIATE (32)<-16 */ \
805 V(lghi, LGHI, 0xA79) /* type = RI_A LOAD HALFWORD IMMEDIATE (64<-16) */ \
806 V(ahi, AHI, 0xA7A) /* type = RI_A ADD HALFWORD IMMEDIATE (32<-16) */ \
807 V(aghi, AGHI, 0xA7B) /* type = RI_A ADD HALFWORD IMMEDIATE (64<-16) */ \
808 V(mhi, MHI, 0xA7C) /* type = RI_A MULTIPLY HALFWORD IMMEDIATE (32<-16) */ \
809 V(mghi, MGHI, 0xA7D) /* type = RI_A MULTIPLY HALFWORD IMMEDIATE (64<-16) */ \
810 V(chi, CHI, 0xA7E) /* type = RI_A COMPARE HALFWORD IMMEDIATE (32<-16) */ \
811 V(cghi, CGHI, 0xA7F) /* type = RI_A COMPARE HALFWORD IMMEDIATE (64<-16) */
812
813 #define S390_RSI_OPCODE_LIST(V) \
814 V(brxh, BRXH, 0x84) /* type = RSI BRANCH RELATIVE ON INDEX HIGH (32) */ \
815 V(brxle, BRXLE, \
816 0x85) /* type = RSI BRANCH RELATIVE ON INDEX LOW OR EQ. (32) */
817
818 #define S390_RI_B_OPCODE_LIST(V) \
819 V(bras, BRAS, 0xA75) /* type = RI_B BRANCH RELATIVE AND SAVE */ \
820 V(brct, BRCT, 0xA76) /* type = RI_B BRANCH RELATIVE ON COUNT (32) */ \
821 V(brctg, BRCTG, 0xA77) /* type = RI_B BRANCH RELATIVE ON COUNT (64) */
822
823 #define S390_RI_C_OPCODE_LIST(V) \
824 V(brc, BRC, 0xA74) /* type = RI_C BRANCH RELATIVE ON CONDITION */
825
826 #define S390_SMI_OPCODE_LIST(V) \
827 V(bpp, BPP, 0xC7) /* type = SMI BRANCH PREDICTION PRELOAD */
828
829 #define S390_RXY_A_OPCODE_LIST(V) \
830 V(ltg, LTG, 0xE302) /* type = RXY_A LOAD AND TEST (64) */ \
831 V(lrag, LRAG, 0xE303) /* type = RXY_A LOAD REAL ADDRESS (64) */ \
832 V(lg, LG, 0xE304) /* type = RXY_A LOAD (64) */ \
833 V(cvby, CVBY, 0xE306) /* type = RXY_A CONVERT TO BINARY (32) */ \
834 V(ag, AG, 0xE308) /* type = RXY_A ADD (64) */ \
835 V(sg, SG, 0xE309) /* type = RXY_A SUBTRACT (64) */ \
836 V(alg, ALG, 0xE30A) /* type = RXY_A ADD LOGICAL (64) */ \
837 V(slg, SLG, 0xE30B) /* type = RXY_A SUBTRACT LOGICAL (64) */ \
838 V(msg, MSG, 0xE30C) /* type = RXY_A MULTIPLY SINGLE (64) */ \
839 V(dsg, DSG, 0xE30D) /* type = RXY_A DIVIDE SINGLE (64) */ \
840 V(cvbg, CVBG, 0xE30E) /* type = RXY_A CONVERT TO BINARY (64) */ \
841 V(lrvg, LRVG, 0xE30F) /* type = RXY_A LOAD REVERSED (64) */ \
842 V(lt_z, LT, 0xE312) /* type = RXY_A LOAD AND TEST (32) */ \
843 V(lray, LRAY, 0xE313) /* type = RXY_A LOAD REAL ADDRESS (32) */ \
844 V(lgf, LGF, 0xE314) /* type = RXY_A LOAD (64<-32) */ \
845 V(lgh, LGH, 0xE315) /* type = RXY_A LOAD HALFWORD (64<-16) */ \
846 V(llgf, LLGF, 0xE316) /* type = RXY_A LOAD LOGICAL (64<-32) */ \
847 V(llgt, LLGT, \
848 0xE317) /* type = RXY_A LOAD LOGICAL THIRTY ONE BITS (64<-31) */ \
849 V(agf, AGF, 0xE318) /* type = RXY_A ADD (64<-32) */ \
850 V(sgf, SGF, 0xE319) /* type = RXY_A SUBTRACT (64<-32) */ \
851 V(algf, ALGF, 0xE31A) /* type = RXY_A ADD LOGICAL (64<-32) */ \
852 V(slgf, SLGF, 0xE31B) /* type = RXY_A SUBTRACT LOGICAL (64<-32) */ \
853 V(msgf, MSGF, 0xE31C) /* type = RXY_A MULTIPLY SINGLE (64<-32) */ \
854 V(dsgf, DSGF, 0xE31D) /* type = RXY_A DIVIDE SINGLE (64<-32) */ \
855 V(lrv, LRV, 0xE31E) /* type = RXY_A LOAD REVERSED (32) */ \
856 V(lrvh, LRVH, 0xE31F) /* type = RXY_A LOAD REVERSED (16) */ \
857 V(cg, CG, 0xE320) /* type = RXY_A COMPARE (64) */ \
858 V(clg, CLG, 0xE321) /* type = RXY_A COMPARE LOGICAL (64) */ \
859 V(stg, STG, 0xE324) /* type = RXY_A STORE (64) */ \
860 V(ntstg, NTSTG, 0xE325) /* type = RXY_A NONTRANSACTIONAL STORE (64) */ \
861 V(cvdy, CVDY, 0xE326) /* type = RXY_A CONVERT TO DECIMAL (32) */ \
862 V(lzrg, LZRG, 0xE32A) /* type = RXY_A LOAD AND ZERO RIGHTMOST BYTE (64) */ \
863 V(cvdg, CVDG, 0xE32E) /* type = RXY_A CONVERT TO DECIMAL (64) */ \
864 V(strvg, STRVG, 0xE32F) /* type = RXY_A STORE REVERSED (64) */ \
865 V(cgf, CGF, 0xE330) /* type = RXY_A COMPARE (64<-32) */ \
866 V(clgf, CLGF, 0xE331) /* type = RXY_A COMPARE LOGICAL (64<-32) */ \
867 V(ltgf, LTGF, 0xE332) /* type = RXY_A LOAD AND TEST (64<-32) */ \
868 V(cgh, CGH, 0xE334) /* type = RXY_A COMPARE HALFWORD (64<-16) */ \
869 V(llzrgf, LLZRGF, \
870 0xE33A) /* type = RXY_A LOAD LOGICAL AND ZERO RIGHTMOST BYTE (64<-32) */ \
871 V(lzrf, LZRF, 0xE33B) /* type = RXY_A LOAD AND ZERO RIGHTMOST BYTE (32) */ \
872 V(strv, STRV, 0xE33E) /* type = RXY_A STORE REVERSED (32) */ \
873 V(strvh, STRVH, 0xE33F) /* type = RXY_A STORE REVERSED (16) */ \
874 V(bctg, BCTG, 0xE346) /* type = RXY_A BRANCH ON COUNT (64) */ \
875 V(sty, STY, 0xE350) /* type = RXY_A STORE (32) */ \
876 V(msy, MSY, 0xE351) /* type = RXY_A MULTIPLY SINGLE (32) */ \
877 V(ny, NY, 0xE354) /* type = RXY_A AND (32) */ \
878 V(cly, CLY, 0xE355) /* type = RXY_A COMPARE LOGICAL (32) */ \
879 V(oy, OY, 0xE356) /* type = RXY_A OR (32) */ \
880 V(xy, XY, 0xE357) /* type = RXY_A EXCLUSIVE OR (32) */ \
881 V(ly, LY, 0xE358) /* type = RXY_A LOAD (32) */ \
882 V(cy, CY, 0xE359) /* type = RXY_A COMPARE (32) */ \
883 V(ay, AY, 0xE35A) /* type = RXY_A ADD (32) */ \
884 V(sy, SY, 0xE35B) /* type = RXY_A SUBTRACT (32) */ \
885 V(mfy, MFY, 0xE35C) /* type = RXY_A MULTIPLY (64<-32) */ \
886 V(aly, ALY, 0xE35E) /* type = RXY_A ADD LOGICAL (32) */ \
887 V(sly, SLY, 0xE35F) /* type = RXY_A SUBTRACT LOGICAL (32) */ \
888 V(sthy, STHY, 0xE370) /* type = RXY_A STORE HALFWORD (16) */ \
889 V(lay, LAY, 0xE371) /* type = RXY_A LOAD ADDRESS */ \
890 V(stcy, STCY, 0xE372) /* type = RXY_A STORE CHARACTER */ \
891 V(icy, ICY, 0xE373) /* type = RXY_A INSERT CHARACTER */ \
892 V(laey, LAEY, 0xE375) /* type = RXY_A LOAD ADDRESS EXTENDED */ \
893 V(lb, LB, 0xE376) /* type = RXY_A LOAD BYTE (32<-8) */ \
894 V(lgb, LGB, 0xE377) /* type = RXY_A LOAD BYTE (64<-8) */ \
895 V(lhy, LHY, 0xE378) /* type = RXY_A LOAD HALFWORD (32)<-16 */ \
896 V(chy, CHY, 0xE379) /* type = RXY_A COMPARE HALFWORD (32<-16) */ \
897 V(ahy, AHY, 0xE37A) /* type = RXY_A ADD HALFWORD (32<-16) */ \
898 V(shy, SHY, 0xE37B) /* type = RXY_A SUBTRACT HALFWORD (32<-16) */ \
899 V(mhy, MHY, 0xE37C) /* type = RXY_A MULTIPLY HALFWORD (32<-16) */ \
900 V(ng, NG, 0xE380) /* type = RXY_A AND (64) */ \
901 V(og, OG, 0xE381) /* type = RXY_A OR (64) */ \
902 V(xg, XG, 0xE382) /* type = RXY_A EXCLUSIVE OR (64) */ \
903 V(lgat, LGAT, 0xE385) /* type = RXY_A LOAD AND TRAP (64) */ \
904 V(mlg, MLG, 0xE386) /* type = RXY_A MULTIPLY LOGICAL (128<-64) */ \
905 V(dlg, DLG, 0xE387) /* type = RXY_A DIVIDE LOGICAL (64<-128) */ \
906 V(alcg, ALCG, 0xE388) /* type = RXY_A ADD LOGICAL WITH CARRY (64) */ \
907 V(slbg, SLBG, 0xE389) /* type = RXY_A SUBTRACT LOGICAL WITH BORROW (64) */ \
908 V(stpq, STPQ, 0xE38E) /* type = RXY_A STORE PAIR TO QUADWORD */ \
909 V(lpq, LPQ, 0xE38F) /* type = RXY_A LOAD PAIR FROM QUADWORD (64&64<-128) */ \
910 V(llgc, LLGC, 0xE390) /* type = RXY_A LOAD LOGICAL CHARACTER (64<-8) */ \
911 V(llgh, LLGH, 0xE391) /* type = RXY_A LOAD LOGICAL HALFWORD (64<-16) */ \
912 V(llc, LLC, 0xE394) /* type = RXY_A LOAD LOGICAL CHARACTER (32<-8) */ \
913 V(llh, LLH, 0xE395) /* type = RXY_A LOAD LOGICAL HALFWORD (32<-16) */ \
914 V(ml, ML, 0xE396) /* type = RXY_A MULTIPLY LOGICAL (64<-32) */ \
915 V(dl, DL, 0xE397) /* type = RXY_A DIVIDE LOGICAL (32<-64) */ \
916 V(alc, ALC, 0xE398) /* type = RXY_A ADD LOGICAL WITH CARRY (32) */ \
917 V(slb, SLB, 0xE399) /* type = RXY_A SUBTRACT LOGICAL WITH BORROW (32) */ \
918 V(llgtat, LLGTAT, \
919 0xE39C) /* type = RXY_A LOAD LOGICAL THIRTY ONE BITS AND TRAP (64<-31) */ \
920 V(llgfat, LLGFAT, 0xE39D) /* type = RXY_A LOAD LOGICAL AND TRAP (64<-32) */ \
921 V(lat, LAT, 0xE39F) /* type = RXY_A LOAD AND TRAP (32L<-32) */ \
922 V(lbh, LBH, 0xE3C0) /* type = RXY_A LOAD BYTE HIGH (32<-8) */ \
923 V(llch, LLCH, 0xE3C2) /* type = RXY_A LOAD LOGICAL CHARACTER HIGH (32<-8) */ \
924 V(stch, STCH, 0xE3C3) /* type = RXY_A STORE CHARACTER HIGH (8) */ \
925 V(lhh, LHH, 0xE3C4) /* type = RXY_A LOAD HALFWORD HIGH (32<-16) */ \
926 V(llhh, LLHH, 0xE3C6) /* type = RXY_A LOAD LOGICAL HALFWORD HIGH (32<-16) */ \
927 V(sthh, STHH, 0xE3C7) /* type = RXY_A STORE HALFWORD HIGH (16) */ \
928 V(lfhat, LFHAT, 0xE3C8) /* type = RXY_A LOAD HIGH AND TRAP (32H<-32) */ \
929 V(lfh, LFH, 0xE3CA) /* type = RXY_A LOAD HIGH (32) */ \
930 V(stfh, STFH, 0xE3CB) /* type = RXY_A STORE HIGH (32) */ \
931 V(chf, CHF, 0xE3CD) /* type = RXY_A COMPARE HIGH (32) */ \
932 V(clhf, CLHF, 0xE3CF) /* type = RXY_A COMPARE LOGICAL HIGH (32) */ \
933 V(ley, LEY, 0xED64) /* type = RXY_A LOAD (short) */ \
934 V(ldy, LDY, 0xED65) /* type = RXY_A LOAD (long) */ \
935 V(stey, STEY, 0xED66) /* type = RXY_A STORE (short) */ \
936 V(stdy, STDY, 0xED67) /* type = RXY_A STORE (long) */ \
937 V(msc, MSC, 0xE353) /* type = RSY_A MULTIPLY SINGLE (32) */ \
938 V(msgc, MSGC, 0xE383) /* type = RSY_A MULTIPLY SINGLE (64) */
939
940 #define S390_RXY_B_OPCODE_LIST(V) \
941 V(pfd, PFD, 0xE336) /* type = RXY_B PREFETCH DATA */
942
943 #define S390_SIY_OPCODE_LIST(V) \
944 V(tmy, TMY, 0xEB51) /* type = SIY TEST UNDER MASK */ \
945 V(mviy, MVIY, 0xEB52) /* type = SIY MOVE (immediate) */ \
946 V(niy, NIY, 0xEB54) /* type = SIY AND (immediate) */ \
947 V(cliy, CLIY, 0xEB55) /* type = SIY COMPARE LOGICAL (immediate) */ \
948 V(oiy, OIY, 0xEB56) /* type = SIY OR (immediate) */ \
949 V(xiy, XIY, 0xEB57) /* type = SIY EXCLUSIVE OR (immediate) */ \
950 V(asi, ASI, 0xEB6A) /* type = SIY ADD IMMEDIATE (32<-8) */ \
951 V(alsi, ALSI, \
952 0xEB6E) /* type = SIY ADD LOGICAL WITH SIGNED IMMEDIATE (32<-8) */ \
953 V(agsi, AGSI, 0xEB7A) /* type = SIY ADD IMMEDIATE (64<-8) */ \
954 V(algsi, ALGSI, \
955 0xEB7E) /* type = SIY ADD LOGICAL WITH SIGNED IMMEDIATE (64<-8) */
956
957 #define S390_SS_A_OPCODE_LIST(V) \
958 V(trtr, TRTR, 0xD0) /* type = SS_A TRANSLATE AND TEST REVERSE */ \
959 V(mvn, MVN, 0xD1) /* type = SS_A MOVE NUMERICS */ \
960 V(mvc, MVC, 0xD2) /* type = SS_A MOVE (character) */ \
961 V(mvz, MVZ, 0xD3) /* type = SS_A MOVE ZONES */ \
962 V(nc, NC, 0xD4) /* type = SS_A AND (character) */ \
963 V(clc, CLC, 0xD5) /* type = SS_A COMPARE LOGICAL (character) */ \
964 V(oc, OC, 0xD6) /* type = SS_A OR (character) */ \
965 V(xc, XC, 0xD7) /* type = SS_A EXCLUSIVE OR (character) */ \
966 V(tr, TR, 0xDC) /* type = SS_A TRANSLATE */ \
967 V(trt, TRT, 0xDD) /* type = SS_A TRANSLATE AND TEST */ \
968 V(ed, ED, 0xDE) /* type = SS_A EDIT */ \
969 V(edmk, EDMK, 0xDF) /* type = SS_A EDIT AND MARK */ \
970 V(unpku, UNPKU, 0xE2) /* type = SS_A UNPACK UNICODE */ \
971 V(mvcin, MVCIN, 0xE8) /* type = SS_A MOVE INVERSE */ \
972 V(unpka, UNPKA, 0xEA) /* type = SS_A UNPACK ASCII */
973
974 #define S390_E_OPCODE_LIST(V) \
975 V(pr, PR, 0x0101) /* type = E PROGRAM RETURN */ \
976 V(upt, UPT, 0x0102) /* type = E UPDATE TREE */ \
977 V(ptff, PTFF, 0x0104) /* type = E PERFORM TIMING FACILITY FUNCTION */ \
978 V(sckpf, SCKPF, 0x0107) /* type = E SET CLOCK PROGRAMMABLE FIELD */ \
979 V(pfpo, PFPO, 0x010A) /* type = E PERFORM FLOATING-POINT OPERATION */ \
980 V(tam, TAM, 0x010B) /* type = E TEST ADDRESSING MODE */ \
981 V(sam24, SAM24, 0x010C) /* type = E SET ADDRESSING MODE (24) */ \
982 V(sam31, SAM31, 0x010D) /* type = E SET ADDRESSING MODE (31) */ \
983 V(sam64, SAM64, 0x010E) /* type = E SET ADDRESSING MODE (64) */ \
984 V(trap2, TRAP2, 0x01FF) /* type = E TRAP */
985
986 #define S390_SS_B_OPCODE_LIST(V) \
987 V(mvo, MVO, 0xF1) /* type = SS_B MOVE WITH OFFSET */ \
988 V(pack, PACK, 0xF2) /* type = SS_B PACK */ \
989 V(unpk, UNPK, 0xF3) /* type = SS_B UNPACK */ \
990 V(zap, ZAP, 0xF8) /* type = SS_B ZERO AND ADD */ \
991 V(cp, CP, 0xF9) /* type = SS_B COMPARE DECIMAL */ \
992 V(ap, AP, 0xFA) /* type = SS_B ADD DECIMAL */ \
993 V(sp, SP, 0xFB) /* type = SS_B SUBTRACT DECIMAL */ \
994 V(mp, MP, 0xFC) /* type = SS_B MULTIPLY DECIMAL */ \
995 V(dp, DP, 0xFD) /* type = SS_B DIVIDE DECIMAL */
996
997 #define S390_SS_C_OPCODE_LIST(V) \
998 V(srp, SRP, 0xF0) /* type = SS_C SHIFT AND ROUND DECIMAL */
999
1000 #define S390_SS_D_OPCODE_LIST(V) \
1001 V(mvck, MVCK, 0xD9) /* type = SS_D MOVE WITH KEY */ \
1002 V(mvcp, MVCP, 0xDA) /* type = SS_D MOVE TO PRIMARY */ \
1003 V(mvcs, MVCS, 0xDB) /* type = SS_D MOVE TO SECONDARY */
1004
1005 #define S390_SS_E_OPCODE_LIST(V) \
1006 V(plo, PLO, 0xEE) /* type = SS_E PERFORM LOCKED OPERATION */ \
1007 V(lmd, LMD, 0xEF) /* type = SS_E LOAD MULTIPLE DISJOINT (64<-32&32) */
1008
1009 #define S390_I_OPCODE_LIST(V) \
1010 V(svc, SVC, 0x0A) /* type = I SUPERVISOR CALL */
1011
1012 #define S390_SS_F_OPCODE_LIST(V) \
1013 V(pku, PKU, 0xE1) /* type = SS_F PACK UNICODE */ \
1014 V(pka, PKA, 0xE9) /* type = SS_F PACK ASCII */
1015
1016 #define S390_SSE_OPCODE_LIST(V) \
1017 V(lasp, LASP, 0xE500) /* type = SSE LOAD ADDRESS SPACE PARAMETERS */ \
1018 V(tprot, TPROT, 0xE501) /* type = SSE TEST PROTECTION */ \
1019 V(strag, STRAG, 0xE502) /* type = SSE STORE REAL ADDRESS */ \
1020 V(mvcsk, MVCSK, 0xE50E) /* type = SSE MOVE WITH SOURCE KEY */ \
1021 V(mvcdk, MVCDK, 0xE50F) /* type = SSE MOVE WITH DESTINATION KEY */
1022
1023 #define S390_SSF_OPCODE_LIST(V) \
1024 V(mvcos, MVCOS, 0xC80) /* type = SSF MOVE WITH OPTIONAL SPECIFICATIONS */ \
1025 V(ectg, ECTG, 0xC81) /* type = SSF EXTRACT CPU TIME */ \
1026 V(csst, CSST, 0xC82) /* type = SSF COMPARE AND SWAP AND STORE */ \
1027 V(lpd, LPD, 0xC84) /* type = SSF LOAD PAIR DISJOINT (32) */ \
1028 V(lpdg, LPDG, 0xC85) /* type = SSF LOAD PAIR DISJOINT (64) */
1029
1030 #define S390_RS_A_OPCODE_LIST(V) \
1031 V(bxh, BXH, 0x86) /* type = RS_A BRANCH ON INDEX HIGH (32) */ \
1032 V(bxle, BXLE, 0x87) /* type = RS_A BRANCH ON INDEX LOW OR EQUAL (32) */ \
1033 V(srl, SRL, 0x88) /* type = RS_A SHIFT RIGHT SINGLE LOGICAL (32) */ \
1034 V(sll, SLL, 0x89) /* type = RS_A SHIFT LEFT SINGLE LOGICAL (32) */ \
1035 V(sra, SRA, 0x8A) /* type = RS_A SHIFT RIGHT SINGLE (32) */ \
1036 V(sla, SLA, 0x8B) /* type = RS_A SHIFT LEFT SINGLE (32) */ \
1037 V(srdl, SRDL, 0x8C) /* type = RS_A SHIFT RIGHT DOUBLE LOGICAL (64) */ \
1038 V(sldl, SLDL, 0x8D) /* type = RS_A SHIFT LEFT DOUBLE LOGICAL (64) */ \
1039 V(srda, SRDA, 0x8E) /* type = RS_A SHIFT RIGHT DOUBLE (64) */ \
1040 V(slda, SLDA, 0x8F) /* type = RS_A SHIFT LEFT DOUBLE (64) */ \
1041 V(stm, STM, 0x90) /* type = RS_A STORE MULTIPLE (32) */ \
1042 V(lm, LM, 0x98) /* type = RS_A LOAD MULTIPLE (32) */ \
1043 V(trace, TRACE, 0x99) /* type = RS_A TRACE (32) */ \
1044 V(lam, LAM, 0x9A) /* type = RS_A LOAD ACCESS MULTIPLE */ \
1045 V(stam, STAM, 0x9B) /* type = RS_A STORE ACCESS MULTIPLE */ \
1046 V(mvcle, MVCLE, 0xA8) /* type = RS_A MOVE LONG EXTENDED */ \
1047 V(clcle, CLCLE, 0xA9) /* type = RS_A COMPARE LOGICAL LONG EXTENDED */ \
1048 V(sigp, SIGP, 0xAE) /* type = RS_A SIGNAL PROCESSOR */ \
1049 V(stctl, STCTL, 0xB6) /* type = RS_A STORE CONTROL (32) */ \
1050 V(lctl, LCTL, 0xB7) /* type = RS_A LOAD CONTROL (32) */ \
1051 V(cs, CS, 0xBA) /* type = RS_A COMPARE AND SWAP (32) */ \
1052 V(cds, CDS, 0xBB) /* type = RS_A COMPARE DOUBLE AND SWAP (32) */
1053
1054 #define S390_RS_B_OPCODE_LIST(V) \
1055 V(clm, CLM, 0xBD) /* type = RS_B COMPARE LOGICAL CHAR. UNDER MASK (low) */ \
1056 V(stcm, STCM, 0xBE) /* type = RS_B STORE CHARACTERS UNDER MASK (low) */ \
1057 V(icm, ICM, 0xBF) /* type = RS_B INSERT CHARACTERS UNDER MASK (low) */
1058
1059 #define S390_S_OPCODE_LIST(V) \
1060 V(lpsw, LPSW, 0x82) /* type = S LOAD PSW */ \
1061 V(diagnose, DIAGNOSE, 0x83) /* type = S DIAGNOSE */ \
1062 V(ts, TS, 0x93) /* type = S TEST AND SET */ \
1063 V(stidp, STIDP, 0xB202) /* type = S STORE CPU ID */ \
1064 V(sck, SCK, 0xB204) /* type = S SET CLOCK */ \
1065 V(stck, STCK, 0xB205) /* type = S STORE CLOCK */ \
1066 V(sckc, SCKC, 0xB206) /* type = S SET CLOCK COMPARATOR */ \
1067 V(stckc, STCKC, 0xB207) /* type = S STORE CLOCK COMPARATOR */ \
1068 V(spt, SPT, 0xB208) /* type = S SET CPU TIMER */ \
1069 V(stpt, STPT, 0xB209) /* type = S STORE CPU TIMER */ \
1070 V(spka, SPKA, 0xB20A) /* type = S SET PSW KEY FROM ADDRESS */ \
1071 V(ipk, IPK, 0xB20B) /* type = S INSERT PSW KEY */ \
1072 V(ptlb, PTLB, 0xB20D) /* type = S PURGE TLB */ \
1073 V(spx, SPX, 0xB210) /* type = S SET PREFIX */ \
1074 V(stpx, STPX, 0xB211) /* type = S STORE PREFIX */ \
1075 V(stap, STAP, 0xB212) /* type = S STORE CPU ADDRESS */ \
1076 V(pc, PC, 0xB218) /* type = S PROGRAM CALL */ \
1077 V(sac, SAC, 0xB219) /* type = S SET ADDRESS SPACE CONTROL */ \
1078 V(cfc, CFC, 0xB21A) /* type = S COMPARE AND FORM CODEWORD */ \
1079 V(csch, CSCH, 0xB230) /* type = S CLEAR SUBCHANNEL */ \
1080 V(hsch, HSCH, 0xB231) /* type = S HALT SUBCHANNEL */ \
1081 V(msch, MSCH, 0xB232) /* type = S MODIFY SUBCHANNEL */ \
1082 V(ssch, SSCH, 0xB233) /* type = S START SUBCHANNEL */ \
1083 V(stsch, STSCH, 0xB234) /* type = S STORE SUBCHANNEL */ \
1084 V(tsch, TSCH, 0xB235) /* type = S TEST SUBCHANNEL */ \
1085 V(tpi, TPI, 0xB236) /* type = S TEST PENDING INTERRUPTION */ \
1086 V(sal, SAL, 0xB237) /* type = S SET ADDRESS LIMIT */ \
1087 V(rsch, RSCH, 0xB238) /* type = S RESUME SUBCHANNEL */ \
1088 V(stcrw, STCRW, 0xB239) /* type = S STORE CHANNEL REPORT WORD */ \
1089 V(stcps, STCPS, 0xB23A) /* type = S STORE CHANNEL PATH STATUS */ \
1090 V(rchp, RCHP, 0xB23B) /* type = S RESET CHANNEL PATH */ \
1091 V(schm, SCHM, 0xB23C) /* type = S SET CHANNEL MONITOR */ \
1092 V(xsch, XSCH, 0xB276) /* type = S CANCEL SUBCHANNEL */ \
1093 V(rp, RP_Z, 0xB277) /* type = S RESUME PROGRAM */ \
1094 V(stcke, STCKE, 0xB278) /* type = S STORE CLOCK EXTENDED */ \
1095 V(sacf, SACF, 0xB279) /* type = S SET ADDRESS SPACE CONTROL FAST */ \
1096 V(stckf, STCKF, 0xB27C) /* type = S STORE CLOCK FAST */ \
1097 V(stsi, STSI, 0xB27D) /* type = S STORE SYSTEM INFORMATION */ \
1098 V(srnm, SRNM, 0xB299) /* type = S SET BFP ROUNDING MODE (2 bit) */ \
1099 V(stfpc, STFPC, 0xB29C) /* type = S STORE FPC */ \
1100 V(lfpc, LFPC, 0xB29D) /* type = S LOAD FPC */ \
1101 V(stfle, STFLE, 0xB2B0) /* type = S STORE FACILITY LIST EXTENDED */ \
1102 V(stfl, STFL, 0xB2B1) /* type = S STORE FACILITY LIST */ \
1103 V(lpswe, LPSWE, 0xB2B2) /* type = S LOAD PSW EXTENDED */ \
1104 V(srnmb, SRNMB, 0xB2B8) /* type = S SET BFP ROUNDING MODE (3 bit) */ \
1105 V(srnmt, SRNMT, 0xB2B9) /* type = S SET DFP ROUNDING MODE */ \
1106 V(lfas, LFAS, 0xB2BD) /* type = S LOAD FPC AND SIGNAL */ \
1107 V(tend, TEND, 0xB2F8) /* type = S TRANSACTION END */ \
1108 V(tabort, TABORT, 0xB2FC) /* type = S TRANSACTION ABORT */ \
1109 V(trap4, TRAP4, 0xB2FF) /* type = S TRAP */
1110
1111 #define S390_RX_A_OPCODE_LIST(V) \
1112 V(la, LA, 0x41) /* type = RX_A LOAD ADDRESS */ \
1113 V(stc, STC, 0x42) /* type = RX_A STORE CHARACTER */ \
1114 V(ic_z, IC_z, 0x43) /* type = RX_A INSERT CHARACTER */ \
1115 V(ex, EX, 0x44) /* type = RX_A EXECUTE */ \
1116 V(bal, BAL, 0x45) /* type = RX_A BRANCH AND LINK */ \
1117 V(bct, BCT, 0x46) /* type = RX_A BRANCH ON COUNT (32) */ \
1118 V(lh, LH, 0x48) /* type = RX_A LOAD HALFWORD (32<-16) */ \
1119 V(ch, CH, 0x49) /* type = RX_A COMPARE HALFWORD (32<-16) */ \
1120 V(ah, AH, 0x4A) /* type = RX_A ADD HALFWORD (32<-16) */ \
1121 V(sh, SH, 0x4B) /* type = RX_A SUBTRACT HALFWORD (32<-16) */ \
1122 V(mh, MH, 0x4C) /* type = RX_A MULTIPLY HALFWORD (32<-16) */ \
1123 V(bas, BAS, 0x4D) /* type = RX_A BRANCH AND SAVE */ \
1124 V(cvd, CVD, 0x4E) /* type = RX_A CONVERT TO DECIMAL (32) */ \
1125 V(cvb, CVB, 0x4F) /* type = RX_A CONVERT TO BINARY (32) */ \
1126 V(st, ST, 0x50) /* type = RX_A STORE (32) */ \
1127 V(lae, LAE, 0x51) /* type = RX_A LOAD ADDRESS EXTENDED */ \
1128 V(n, N, 0x54) /* type = RX_A AND (32) */ \
1129 V(cl, CL, 0x55) /* type = RX_A COMPARE LOGICAL (32) */ \
1130 V(o, O, 0x56) /* type = RX_A OR (32) */ \
1131 V(x, X, 0x57) /* type = RX_A EXCLUSIVE OR (32) */ \
1132 V(l, L, 0x58) /* type = RX_A LOAD (32) */ \
1133 V(c, C, 0x59) /* type = RX_A COMPARE (32) */ \
1134 V(a, A, 0x5A) /* type = RX_A ADD (32) */ \
1135 V(s, S, 0x5B) /* type = RX_A SUBTRACT (32) */ \
1136 V(m, M, 0x5C) /* type = RX_A MULTIPLY (64<-32) */ \
1137 V(d, D, 0x5D) /* type = RX_A DIVIDE (32<-64) */ \
1138 V(al_z, AL, 0x5E) /* type = RX_A ADD LOGICAL (32) */ \
1139 V(sl, SL, 0x5F) /* type = RX_A SUBTRACT LOGICAL (32) */ \
1140 V(std, STD, 0x60) /* type = RX_A STORE (long) */ \
1141 V(mxd, MXD, 0x67) /* type = RX_A MULTIPLY (long to extended HFP) */ \
1142 V(ld, LD, 0x68) /* type = RX_A LOAD (long) */ \
1143 V(cd, CD, 0x69) /* type = RX_A COMPARE (long HFP) */ \
1144 V(ad, AD, 0x6A) /* type = RX_A ADD NORMALIZED (long HFP) */ \
1145 V(sd, SD, 0x6B) /* type = RX_A SUBTRACT NORMALIZED (long HFP) */ \
1146 V(md, MD, 0x6C) /* type = RX_A MULTIPLY (long HFP) */ \
1147 V(dd, DD, 0x6D) /* type = RX_A DIVIDE (long HFP) */ \
1148 V(aw, AW, 0x6E) /* type = RX_A ADD UNNORMALIZED (long HFP) */ \
1149 V(sw, SW, 0x6F) /* type = RX_A SUBTRACT UNNORMALIZED (long HFP) */ \
1150 V(ste, STE, 0x70) /* type = RX_A STORE (short) */ \
1151 V(ms, MS, 0x71) /* type = RX_A MULTIPLY SINGLE (32) */ \
1152 V(le_z, LE, 0x78) /* type = RX_A LOAD (short) */ \
1153 V(ce, CE, 0x79) /* type = RX_A COMPARE (short HFP) */ \
1154 V(ae, AE, 0x7A) /* type = RX_A ADD NORMALIZED (short HFP) */ \
1155 V(se, SE, 0x7B) /* type = RX_A SUBTRACT NORMALIZED (short HFP) */ \
1156 V(mde, MDE, 0x7C) /* type = RX_A MULTIPLY (short to long HFP) */ \
1157 V(de, DE, 0x7D) /* type = RX_A DIVIDE (short HFP) */ \
1158 V(au, AU, 0x7E) /* type = RX_A ADD UNNORMALIZED (short HFP) */ \
1159 V(su, SU, 0x7F) /* type = RX_A SUBTRACT UNNORMALIZED (short HFP) */ \
1160 V(ssm, SSM, 0x80) /* type = RX_A SET SYSTEM MASK */ \
1161 V(lra, LRA, 0xB1) /* type = RX_A LOAD REAL ADDRESS (32) */ \
1162 V(sth, STH, 0x40) /* type = RX_A STORE HALFWORD (16) */
1163
1164 #define S390_RX_B_OPCODE_LIST(V) \
1165 V(bc, BC, 0x47) /* type = RX_B BRANCH ON CONDITION */
1166
1167 #define S390_RIE_A_OPCODE_LIST(V) \
1168 V(cgit, CGIT, 0xEC70) /* type = RIE_A COMPARE IMMEDIATE AND TRAP (64<-16) */ \
1169 V(clgit, CLGIT, \
1170 0xEC71) /* type = RIE_A COMPARE LOGICAL IMMEDIATE AND TRAP (64<-16) */ \
1171 V(cit, CIT, 0xEC72) /* type = RIE_A COMPARE IMMEDIATE AND TRAP (32<-16) */ \
1172 V(clfit, CLFIT, \
1173 0xEC73) /* type = RIE_A COMPARE LOGICAL IMMEDIATE AND TRAP (32<-16) */
1174
1175 #define S390_RRD_OPCODE_LIST(V) \
1176 V(maebr, MAEBR, 0xB30E) /* type = RRD MULTIPLY AND ADD (short BFP) */ \
1177 V(msebr, MSEBR, 0xB30F) /* type = RRD MULTIPLY AND SUBTRACT (short BFP) */ \
1178 V(madbr, MADBR, 0xB31E) /* type = RRD MULTIPLY AND ADD (long BFP) */ \
1179 V(msdbr, MSDBR, 0xB31F) /* type = RRD MULTIPLY AND SUBTRACT (long BFP) */ \
1180 V(maer, MAER, 0xB32E) /* type = RRD MULTIPLY AND ADD (short HFP) */ \
1181 V(mser, MSER, 0xB32F) /* type = RRD MULTIPLY AND SUBTRACT (short HFP) */ \
1182 V(maylr, MAYLR, \
1183 0xB338) /* type = RRD MULTIPLY AND ADD UNNRM. (long to ext. low HFP) */ \
1184 V(mylr, MYLR, \
1185 0xB339) /* type = RRD MULTIPLY UNNORM. (long to ext. low HFP) */ \
1186 V(mayr, MAYR, \
1187 0xB33A) /* type = RRD MULTIPLY & ADD UNNORMALIZED (long to ext. HFP) */ \
1188 V(myr, MYR, \
1189 0xB33B) /* type = RRD MULTIPLY UNNORMALIZED (long to ext. HFP) */ \
1190 V(mayhr, MAYHR, \
1191 0xB33C) /* type = RRD MULTIPLY AND ADD UNNRM. (long to ext. high HFP) */ \
1192 V(myhr, MYHR, \
1193 0xB33D) /* type = RRD MULTIPLY UNNORM. (long to ext. high HFP) */ \
1194 V(madr, MADR, 0xB33E) /* type = RRD MULTIPLY AND ADD (long HFP) */ \
1195 V(msdr, MSDR, 0xB33F) /* type = RRD MULTIPLY AND SUBTRACT (long HFP) */
1196
1197 #define S390_RIE_B_OPCODE_LIST(V) \
1198 V(cgrj, CGRJ, 0xEC64) /* type = RIE_B COMPARE AND BRANCH RELATIVE (64) */ \
1199 V(clgrj, CLGRJ, \
1200 0xEC65) /* type = RIE_B COMPARE LOGICAL AND BRANCH RELATIVE (64) */ \
1201 V(crj, CRJ, 0xEC76) /* type = RIE_B COMPARE AND BRANCH RELATIVE (32) */ \
1202 V(clrj, CLRJ, \
1203 0xEC77) /* type = RIE_B COMPARE LOGICAL AND BRANCH RELATIVE (32) */
1204
1205 #define S390_RRE_OPCODE_LIST(V) \
1206 V(ipm, IPM, 0xB222) /* type = RRE INSERT PROGRAM MASK */ \
1207 V(ivsk, IVSK, 0xB223) /* type = RRE INSERT VIRTUAL STORAGE KEY */ \
1208 V(iac, IAC, 0xB224) /* type = RRE INSERT ADDRESS SPACE CONTROL */ \
1209 V(ssar, SSAR, 0xB225) /* type = RRE SET SECONDARY ASN */ \
1210 V(epar, EPAR, 0xB226) /* type = RRE EXTRACT PRIMARY ASN */ \
1211 V(esar, ESAR, 0xB227) /* type = RRE EXTRACT SECONDARY ASN */ \
1212 V(pt, PT, 0xB228) /* type = RRE PROGRAM TRANSFER */ \
1213 V(iske, ISKE, 0xB229) /* type = RRE INSERT STORAGE KEY EXTENDED */ \
1214 V(rrbe, RRBE, 0xB22A) /* type = RRE RESET REFERENCE BIT EXTENDED */ \
1215 V(tb, TB, 0xB22C) /* type = RRE TEST BLOCK */ \
1216 V(dxr, DXR, 0xB22D) /* type = RRE DIVIDE (extended HFP) */ \
1217 V(pgin, PGIN, 0xB22E) /* type = RRE PAGE IN */ \
1218 V(pgout, PGOUT, 0xB22F) /* type = RRE PAGE OUT */ \
1219 V(bakr, BAKR, 0xB240) /* type = RRE BRANCH AND STACK */ \
1220 V(cksm, CKSM, 0xB241) /* type = RRE CHECKSUM */ \
1221 V(sqdr, SQDR, 0xB244) /* type = RRE SQUARE ROOT (long HFP) */ \
1222 V(sqer, SQER, 0xB245) /* type = RRE SQUARE ROOT (short HFP) */ \
1223 V(stura, STURA, 0xB246) /* type = RRE STORE USING REAL ADDRESS (32) */ \
1224 V(msta, MSTA, 0xB247) /* type = RRE MODIFY STACKED STATE */ \
1225 V(palb, PALB, 0xB248) /* type = RRE PURGE ALB */ \
1226 V(ereg, EREG, 0xB249) /* type = RRE EXTRACT STACKED REGISTERS (32) */ \
1227 V(esta, ESTA, 0xB24A) /* type = RRE EXTRACT STACKED STATE */ \
1228 V(lura, LURA, 0xB24B) /* type = RRE LOAD USING REAL ADDRESS (32) */ \
1229 V(tar, TAR, 0xB24C) /* type = RRE TEST ACCESS */ \
1230 V(cpya, CPYA, 0xB24D) /* type = RRE COPY ACCESS */ \
1231 V(sar, SAR, 0xB24E) /* type = RRE SET ACCESS */ \
1232 V(ear, EAR, 0xB24F) /* type = RRE EXTRACT ACCESS */ \
1233 V(csp, CSP, 0xB250) /* type = RRE COMPARE AND SWAP AND PURGE (32) */ \
1234 V(msr, MSR, 0xB252) /* type = RRE MULTIPLY SINGLE (32) */ \
1235 V(mvpg, MVPG, 0xB254) /* type = RRE MOVE PAGE */ \
1236 V(mvst, MVST, 0xB255) /* type = RRE MOVE STRING */ \
1237 V(cuse, CUSE, 0xB257) /* type = RRE COMPARE UNTIL SUBSTRING EQUAL */ \
1238 V(bsg, BSG, 0xB258) /* type = RRE BRANCH IN SUBSPACE GROUP */ \
1239 V(bsa, BSA, 0xB25A) /* type = RRE BRANCH AND SET AUTHORITY */ \
1240 V(clst, CLST, 0xB25D) /* type = RRE COMPARE LOGICAL STRING */ \
1241 V(srst, SRST, 0xB25E) /* type = RRE SEARCH STRING */ \
1242 V(cmpsc, CMPSC, 0xB263) /* type = RRE COMPRESSION CALL */ \
1243 V(tre, TRE, 0xB2A5) /* type = RRE TRANSLATE EXTENDED */ \
1244 V(etnd, ETND, 0xB2EC) /* type = RRE EXTRACT TRANSACTION NESTING DEPTH */ \
1245 V(lpebr, LPEBR, 0xB300) /* type = RRE LOAD POSITIVE (short BFP) */ \
1246 V(lnebr, LNEBR, 0xB301) /* type = RRE LOAD NEGATIVE (short BFP) */ \
1247 V(ltebr, LTEBR, 0xB302) /* type = RRE LOAD AND TEST (short BFP) */ \
1248 V(lcebr, LCEBR, 0xB303) /* type = RRE LOAD COMPLEMENT (short BFP) */ \
1249 V(ldebr, LDEBR, \
1250 0xB304) /* type = RRE LOAD LENGTHENED (short to long BFP) */ \
1251 V(lxdbr, LXDBR, \
1252 0xB305) /* type = RRE LOAD LENGTHENED (long to extended BFP) */ \
1253 V(lxebr, LXEBR, \
1254 0xB306) /* type = RRE LOAD LENGTHENED (short to extended BFP) */ \
1255 V(mxdbr, MXDBR, 0xB307) /* type = RRE MULTIPLY (long to extended BFP) */ \
1256 V(kebr, KEBR, 0xB308) /* type = RRE COMPARE AND SIGNAL (short BFP) */ \
1257 V(cebr, CEBR, 0xB309) /* type = RRE COMPARE (short BFP) */ \
1258 V(aebr, AEBR, 0xB30A) /* type = RRE ADD (short BFP) */ \
1259 V(sebr, SEBR, 0xB30B) /* type = RRE SUBTRACT (short BFP) */ \
1260 V(mdebr, MDEBR, 0xB30C) /* type = RRE MULTIPLY (short to long BFP) */ \
1261 V(debr, DEBR, 0xB30D) /* type = RRE DIVIDE (short BFP) */ \
1262 V(lpdbr, LPDBR, 0xB310) /* type = RRE LOAD POSITIVE (long BFP) */ \
1263 V(lndbr, LNDBR, 0xB311) /* type = RRE LOAD NEGATIVE (long BFP) */ \
1264 V(ltdbr, LTDBR, 0xB312) /* type = RRE LOAD AND TEST (long BFP) */ \
1265 V(lcdbr, LCDBR, 0xB313) /* type = RRE LOAD COMPLEMENT (long BFP) */ \
1266 V(sqebr, SQEBR, 0xB314) /* type = RRE SQUARE ROOT (short BFP) */ \
1267 V(sqdbr, SQDBR, 0xB315) /* type = RRE SQUARE ROOT (long BFP) */ \
1268 V(sqxbr, SQXBR, 0xB316) /* type = RRE SQUARE ROOT (extended BFP) */ \
1269 V(meebr, MEEBR, 0xB317) /* type = RRE MULTIPLY (short BFP) */ \
1270 V(kdbr, KDBR, 0xB318) /* type = RRE COMPARE AND SIGNAL (long BFP) */ \
1271 V(cdbr, CDBR, 0xB319) /* type = RRE COMPARE (long BFP) */ \
1272 V(adbr, ADBR, 0xB31A) /* type = RRE ADD (long BFP) */ \
1273 V(sdbr, SDBR, 0xB31B) /* type = RRE SUBTRACT (long BFP) */ \
1274 V(mdbr, MDBR, 0xB31C) /* type = RRE MULTIPLY (long BFP) */ \
1275 V(ddbr, DDBR, 0xB31D) /* type = RRE DIVIDE (long BFP) */ \
1276 V(lder, LDER, 0xB324) /* type = RRE LOAD LENGTHENED (short to long HFP) */ \
1277 V(lxdr, LXDR, \
1278 0xB325) /* type = RRE LOAD LENGTHENED (long to extended HFP) */ \
1279 V(lxer, LXER, \
1280 0xB326) /* type = RRE LOAD LENGTHENED (short to extended HFP) */ \
1281 V(sqxr, SQXR, 0xB336) /* type = RRE SQUARE ROOT (extended HFP) */ \
1282 V(meer, MEER, 0xB337) /* type = RRE MULTIPLY (short HFP) */ \
1283 V(lpxbr, LPXBR, 0xB340) /* type = RRE LOAD POSITIVE (extended BFP) */ \
1284 V(lnxbr, LNXBR, 0xB341) /* type = RRE LOAD NEGATIVE (extended BFP) */ \
1285 V(ltxbr, LTXBR, 0xB342) /* type = RRE LOAD AND TEST (extended BFP) */ \
1286 V(lcxbr, LCXBR, 0xB343) /* type = RRE LOAD COMPLEMENT (extended BFP) */ \
1287 V(kxbr, KXBR, 0xB348) /* type = RRE COMPARE AND SIGNAL (extended BFP) */ \
1288 V(cxbr, CXBR, 0xB349) /* type = RRE COMPARE (extended BFP) */ \
1289 V(axbr, AXBR, 0xB34A) /* type = RRE ADD (extended BFP) */ \
1290 V(sxbr, SXBR, 0xB34B) /* type = RRE SUBTRACT (extended BFP) */ \
1291 V(mxbr, MXBR, 0xB34C) /* type = RRE MULTIPLY (extended BFP) */ \
1292 V(dxbr, DXBR, 0xB34D) /* type = RRE DIVIDE (extended BFP) */ \
1293 V(thder, THDER, \
1294 0xB358) /* type = RRE CONVERT BFP TO HFP (short to long) */ \
1295 V(thdr, THDR, 0xB359) /* type = RRE CONVERT BFP TO HFP (long) */ \
1296 V(lpxr, LPXR, 0xB360) /* type = RRE LOAD POSITIVE (extended HFP) */ \
1297 V(lnxr, LNXR, 0xB361) /* type = RRE LOAD NEGATIVE (extended HFP) */ \
1298 V(ltxr, LTXR, 0xB362) /* type = RRE LOAD AND TEST (extended HFP) */ \
1299 V(lcxr, LCXR, 0xB363) /* type = RRE LOAD COMPLEMENT (extended HFP) */ \
1300 V(lxr, LXR, 0xB365) /* type = RRE LOAD (extended) */ \
1301 V(lexr, LEXR, \
1302 0xB366) /* type = RRE LOAD ROUNDED (extended to short HFP) */ \
1303 V(fixr, FIXR, 0xB367) /* type = RRE LOAD FP INTEGER (extended HFP) */ \
1304 V(cxr, CXR, 0xB369) /* type = RRE COMPARE (extended HFP) */ \
1305 V(lpdfr, LPDFR, 0xB370) /* type = RRE LOAD POSITIVE (long) */ \
1306 V(lndfr, LNDFR, 0xB371) /* type = RRE LOAD NEGATIVE (long) */ \
1307 V(lcdfr, LCDFR, 0xB373) /* type = RRE LOAD COMPLEMENT (long) */ \
1308 V(lzer, LZER, 0xB374) /* type = RRE LOAD ZERO (short) */ \
1309 V(lzdr, LZDR, 0xB375) /* type = RRE LOAD ZERO (long) */ \
1310 V(lzxr, LZXR, 0xB376) /* type = RRE LOAD ZERO (extended) */ \
1311 V(fier, FIER, 0xB377) /* type = RRE LOAD FP INTEGER (short HFP) */ \
1312 V(fidr, FIDR, 0xB37F) /* type = RRE LOAD FP INTEGER (long HFP) */ \
1313 V(sfpc, SFPC, 0xB384) /* type = RRE SET FPC */ \
1314 V(sfasr, SFASR, 0xB385) /* type = RRE SET FPC AND SIGNAL */ \
1315 V(efpc, EFPC, 0xB38C) /* type = RRE EXTRACT FPC */ \
1316 V(cefr, CEFR, \
1317 0xB3B4) /* type = RRE CONVERT FROM FIXED (32 to short HFP) */ \
1318 V(cdfr, CDFR, 0xB3B5) /* type = RRE CONVERT FROM FIXED (32 to long HFP) */ \
1319 V(cxfr, CXFR, \
1320 0xB3B6) /* type = RRE CONVERT FROM FIXED (32 to extended HFP) */ \
1321 V(ldgr, LDGR, 0xB3C1) /* type = RRE LOAD FPR FROM GR (64 to long) */ \
1322 V(cegr, CEGR, \
1323 0xB3C4) /* type = RRE CONVERT FROM FIXED (64 to short HFP) */ \
1324 V(cdgr, CDGR, 0xB3C5) /* type = RRE CONVERT FROM FIXED (64 to long HFP) */ \
1325 V(cxgr, CXGR, \
1326 0xB3C6) /* type = RRE CONVERT FROM FIXED (64 to extended HFP) */ \
1327 V(lgdr, LGDR, 0xB3CD) /* type = RRE LOAD GR FROM FPR (long to 64) */ \
1328 V(ltdtr, LTDTR, 0xB3D6) /* type = RRE LOAD AND TEST (long DFP) */ \
1329 V(ltxtr, LTXTR, 0xB3DE) /* type = RRE LOAD AND TEST (extended DFP) */ \
1330 V(kdtr, KDTR, 0xB3E0) /* type = RRE COMPARE AND SIGNAL (long DFP) */ \
1331 V(cudtr, CUDTR, 0xB3E2) /* type = RRE CONVERT TO UNSIGNED PACKED (long */ \
1332 /* DFP to 64) CUDTR */ \
1333 V(cdtr, CDTR, 0xB3E4) /* type = RRE COMPARE (long DFP) */ \
1334 V(eedtr, EEDTR, \
1335 0xB3E5) /* type = RRE EXTRACT BIASED EXPONENT (long DFP to 64) */ \
1336 V(esdtr, ESDTR, \
1337 0xB3E7) /* type = RRE EXTRACT SIGNIFICANCE (long DFP to 64) */ \
1338 V(kxtr, KXTR, 0xB3E8) /* type = RRE COMPARE AND SIGNAL (extended DFP) */ \
1339 V(cuxtr, CUXTR, \
1340 0xB3EA) /* type = RRE CONVERT TO UNSIGNED PACKED (extended DFP */ \
1341 /* CUXTR to 128) */ \
1342 V(cxtr, CXTR, 0xB3EC) /* type = RRE COMPARE (extended DFP) */ \
1343 V(eextr, EEXTR, \
1344 0xB3ED) /* type = RRE EXTRACT BIASED EXPONENT (extended DFP to 64) */ \
1345 V(esxtr, ESXTR, \
1346 0xB3EF) /* type = RRE EXTRACT SIGNIFICANCE (extended DFP to 64) */ \
1347 V(cdutr, CDUTR, \
1348 0xB3F2) /* type = RRE CONVERT FROM UNSIGNED PACKED (64 to long DFP) */ \
1349 V(cdstr, CDSTR, \
1350 0xB3F3) /* type = RRE CONVERT FROM SIGNED PACKED (64 to long DFP) */ \
1351 V(cedtr, CEDTR, \
1352 0xB3F4) /* type = RRE COMPARE BIASED EXPONENT (long DFP) */ \
1353 V(cxutr, CXUTR, \
1354 0xB3FA) /* type = RRE CONVERT FROM UNSIGNED PACKED (128 to ext. DFP) */ \
1355 V(cxstr, CXSTR, 0xB3FB) /* type = RRE CONVERT FROM SIGNED PACKED (128 to*/ \
1356 /* extended DFP) */ \
1357 V(cextr, CEXTR, \
1358 0xB3FC) /* type = RRE COMPARE BIASED EXPONENT (extended DFP) */ \
1359 V(lpgr, LPGR, 0xB900) /* type = RRE LOAD POSITIVE (64) */ \
1360 V(lngr, LNGR, 0xB901) /* type = RRE LOAD NEGATIVE (64) */ \
1361 V(ltgr, LTGR, 0xB902) /* type = RRE LOAD AND TEST (64) */ \
1362 V(lcgr, LCGR, 0xB903) /* type = RRE LOAD COMPLEMENT (64) */ \
1363 V(lgr, LGR, 0xB904) /* type = RRE LOAD (64) */ \
1364 V(lurag, LURAG, 0xB905) /* type = RRE LOAD USING REAL ADDRESS (64) */ \
1365 V(lgbr, LGBR, 0xB906) /* type = RRE LOAD BYTE (64<-8) */ \
1366 V(lghr, LGHR, 0xB907) /* type = RRE LOAD HALFWORD (64<-16) */ \
1367 V(agr, AGR, 0xB908) /* type = RRE ADD (64) */ \
1368 V(sgr, SGR, 0xB909) /* type = RRE SUBTRACT (64) */ \
1369 V(algr, ALGR, 0xB90A) /* type = RRE ADD LOGICAL (64) */ \
1370 V(slgr, SLGR, 0xB90B) /* type = RRE SUBTRACT LOGICAL (64) */ \
1371 V(msgr, MSGR, 0xB90C) /* type = RRE MULTIPLY SINGLE (64) */ \
1372 V(dsgr, DSGR, 0xB90D) /* type = RRE DIVIDE SINGLE (64) */ \
1373 V(eregg, EREGG, 0xB90E) /* type = RRE EXTRACT STACKED REGISTERS (64) */ \
1374 V(lrvgr, LRVGR, 0xB90F) /* type = RRE LOAD REVERSED (64) */ \
1375 V(lpgfr, LPGFR, 0xB910) /* type = RRE LOAD POSITIVE (64<-32) */ \
1376 V(lngfr, LNGFR, 0xB911) /* type = RRE LOAD NEGATIVE (64<-32) */ \
1377 V(ltgfr, LTGFR, 0xB912) /* type = RRE LOAD AND TEST (64<-32) */ \
1378 V(lcgfr, LCGFR, 0xB913) /* type = RRE LOAD COMPLEMENT (64<-32) */ \
1379 V(lgfr, LGFR, 0xB914) /* type = RRE LOAD (64<-32) */ \
1380 V(llgfr, LLGFR, 0xB916) /* type = RRE LOAD LOGICAL (64<-32) */ \
1381 V(llgtr, LLGTR, \
1382 0xB917) /* type = RRE LOAD LOGICAL THIRTY ONE BITS (64<-31) */ \
1383 V(agfr, AGFR, 0xB918) /* type = RRE ADD (64<-32) */ \
1384 V(sgfr, SGFR, 0xB919) /* type = RRE SUBTRACT (64<-32) */ \
1385 V(algfr, ALGFR, 0xB91A) /* type = RRE ADD LOGICAL (64<-32) */ \
1386 V(slgfr, SLGFR, 0xB91B) /* type = RRE SUBTRACT LOGICAL (64<-32) */ \
1387 V(msgfr, MSGFR, 0xB91C) /* type = RRE MULTIPLY SINGLE (64<-32) */ \
1388 V(dsgfr, DSGFR, 0xB91D) /* type = RRE DIVIDE SINGLE (64<-32) */ \
1389 V(kmac, KMAC, 0xB91E) /* type = RRE COMPUTE MESSAGE AUTHENTICATION CODE */ \
1390 V(lrvr, LRVR, 0xB91F) /* type = RRE LOAD REVERSED (32) */ \
1391 V(cgr, CGR, 0xB920) /* type = RRE COMPARE (64) */ \
1392 V(clgr, CLGR, 0xB921) /* type = RRE COMPARE LOGICAL (64) */ \
1393 V(sturg, STURG, 0xB925) /* type = RRE STORE USING REAL ADDRESS (64) */ \
1394 V(lbr, LBR, 0xB926) /* type = RRE LOAD BYTE (32<-8) */ \
1395 V(lhr, LHR, 0xB927) /* type = RRE LOAD HALFWORD (32<-16) */ \
1396 V(pckmo, PCKMO, \
1397 0xB928) /* type = RRE PERFORM CRYPTOGRAPHIC KEY MGMT. OPERATIONS */ \
1398 V(kmf, KMF, 0xB92A) /* type = RRE CIPHER MESSAGE WITH CIPHER FEEDBACK */ \
1399 V(kmo, KMO, 0xB92B) /* type = RRE CIPHER MESSAGE WITH OUTPUT FEEDBACK */ \
1400 V(pcc, PCC, 0xB92C) /* type = RRE PERFORM CRYPTOGRAPHIC COMPUTATION */ \
1401 V(km, KM, 0xB92E) /* type = RRE CIPHER MESSAGE */ \
1402 V(kmc, KMC, 0xB92F) /* type = RRE CIPHER MESSAGE WITH CHAINING */ \
1403 V(cgfr, CGFR, 0xB930) /* type = RRE COMPARE (64<-32) */ \
1404 V(clgfr, CLGFR, 0xB931) /* type = RRE COMPARE LOGICAL (64<-32) */ \
1405 V(ppno, PPNO, \
1406 0xB93C) /* type = RRE PERFORM PSEUDORANDOM NUMBER OPERATION */ \
1407 V(kimd, KIMD, 0xB93E) /* type = RRE COMPUTE INTERMEDIATE MESSAGE DIGEST */ \
1408 V(klmd, KLMD, 0xB93F) /* type = RRE COMPUTE LAST MESSAGE DIGEST */ \
1409 V(bctgr, BCTGR, 0xB946) /* type = RRE BRANCH ON COUNT (64) */ \
1410 V(cdftr, CDFTR, \
1411 0xB951) /* type = RRE CONVERT FROM FIXED (32 to long DFP) */ \
1412 V(cxftr, CXFTR, \
1413 0xB959) /* type = RRE CONVERT FROM FIXED (32 to extended DFP) */ \
1414 V(ngr, NGR, 0xB980) /* type = RRE AND (64) */ \
1415 V(ogr, OGR, 0xB981) /* type = RRE OR (64) */ \
1416 V(xgr, XGR, 0xB982) /* type = RRE EXCLUSIVE OR (64) */ \
1417 V(flogr, FLOGR, 0xB983) /* type = RRE FIND LEFTMOST ONE */ \
1418 V(llgcr, LLGCR, 0xB984) /* type = RRE LOAD LOGICAL CHARACTER (64<-8) */ \
1419 V(llghr, LLGHR, 0xB985) /* type = RRE LOAD LOGICAL HALFWORD (64<-16) */ \
1420 V(mlgr, MLGR, 0xB986) /* type = RRE MULTIPLY LOGICAL (128<-64) */ \
1421 V(dlgr, DLGR, 0xB987) /* type = RRE DIVIDE LOGICAL (64<-128) */ \
1422 V(alcgr, ALCGR, 0xB988) /* type = RRE ADD LOGICAL WITH CARRY (64) */ \
1423 V(slbgr, SLBGR, 0xB989) /* type = RRE SUBTRACT LOGICAL WITH BORROW (64) */ \
1424 V(cspg, CSPG, 0xB98A) /* type = RRE COMPARE AND SWAP AND PURGE (64) */ \
1425 V(epsw, EPSW, 0xB98D) /* type = RRE EXTRACT PSW */ \
1426 V(llcr, LLCR, 0xB994) /* type = RRE LOAD LOGICAL CHARACTER (32<-8) */ \
1427 V(llhr, LLHR, 0xB995) /* type = RRE LOAD LOGICAL HALFWORD (32<-16) */ \
1428 V(mlr, MLR, 0xB996) /* type = RRE MULTIPLY LOGICAL (64<-32) */ \
1429 V(dlr, DLR, 0xB997) /* type = RRE DIVIDE LOGICAL (32<-64) */ \
1430 V(alcr, ALCR, 0xB998) /* type = RRE ADD LOGICAL WITH CARRY (32) */ \
1431 V(slbr, SLBR, 0xB999) /* type = RRE SUBTRACT LOGICAL WITH BORROW (32) */ \
1432 V(epair, EPAIR, 0xB99A) /* type = RRE EXTRACT PRIMARY ASN AND INSTANCE */ \
1433 V(esair, ESAIR, \
1434 0xB99B) /* type = RRE EXTRACT SECONDARY ASN AND INSTANCE */ \
1435 V(esea, ESEA, 0xB99D) /* type = RRE EXTRACT AND SET EXTENDED AUTHORITY */ \
1436 V(pti, PTI, 0xB99E) /* type = RRE PROGRAM TRANSFER WITH INSTANCE */ \
1437 V(ssair, SSAIR, 0xB99F) /* type = RRE SET SECONDARY ASN WITH INSTANCE */ \
1438 V(ptf, PTF, 0xB9A2) /* type = RRE PERFORM TOPOLOGY FUNCTION */ \
1439 V(rrbm, RRBM, 0xB9AE) /* type = RRE RESET REFERENCE BITS MULTIPLE */ \
1440 V(pfmf, PFMF, 0xB9AF) /* type = RRE PERFORM FRAME MANAGEMENT FUNCTION */ \
1441 V(cu41, CU41, 0xB9B2) /* type = RRE CONVERT UTF-32 TO UTF-8 */ \
1442 V(cu42, CU42, 0xB9B3) /* type = RRE CONVERT UTF-32 TO UTF-16 */ \
1443 V(srstu, SRSTU, 0xB9BE) /* type = RRE SEARCH STRING UNICODE */ \
1444 V(chhr, CHHR, 0xB9CD) /* type = RRE COMPARE HIGH (32) */ \
1445 V(clhhr, CLHHR, 0xB9CF) /* type = RRE COMPARE LOGICAL HIGH (32) */ \
1446 V(chlr, CHLR, 0xB9DD) /* type = RRE COMPARE HIGH (32) */ \
1447 V(clhlr, CLHLR, 0xB9DF) /* type = RRE COMPARE LOGICAL HIGH (32) */ \
1448 V(popcnt, POPCNT_Z, 0xB9E1) /* type = RRE POPULATION COUNT */
1449
1450 #define S390_RIE_C_OPCODE_LIST(V) \
1451 V(cgij, CGIJ, \
1452 0xEC7C) /* type = RIE_C COMPARE IMMEDIATE AND BRANCH RELATIVE (64<-8) */ \
1453 V(clgij, CLGIJ, \
1454 0xEC7D) /* type = RIE_C COMPARE LOGICAL IMMEDIATE AND BRANCH RELATIVE */ \
1455 /* (64<-8) */ \
1456 V(cij, CIJ, \
1457 0xEC7E) /* type = RIE_C COMPARE IMMEDIATE AND BRANCH RELATIVE (32<-8) */ \
1458 V(clij, CLIJ, 0xEC7F) /* type = RIE_C COMPARE LOGICAL IMMEDIATE AND */ \
1459 /* BRANCH RELATIVE (32<-8) */
1460
1461 #define S390_RIE_D_OPCODE_LIST(V) \
1462 V(ahik, AHIK, 0xECD8) /* type = RIE_D ADD IMMEDIATE (32<-16) */ \
1463 V(aghik, AGHIK, 0xECD9) /* type = RIE_D ADD IMMEDIATE (64<-16) */ \
1464 V(alhsik, ALHSIK, \
1465 0xECDA) /* type = RIE_D ADD LOGICAL WITH SIGNED IMMEDIATE (32<-16) */ \
1466 V(alghsik, ALGHSIK, \
1467 0xECDB) /* type = RIE_D ADD LOGICAL WITH SIGNED IMMEDIATE (64<-16) */
1468
1469 #define S390_VRV_OPCODE_LIST(V) \
1470 V(vgeg, VGEG, 0xE712) /* type = VRV VECTOR GATHER ELEMENT (64) */ \
1471 V(vgef, VGEF, 0xE713) /* type = VRV VECTOR GATHER ELEMENT (32) */ \
1472 V(vsceg, VSCEG, 0xE71A) /* type = VRV VECTOR SCATTER ELEMENT (64) */ \
1473 V(vscef, VSCEF, 0xE71B) /* type = VRV VECTOR SCATTER ELEMENT (32) */
1474
1475 #define S390_RIE_E_OPCODE_LIST(V) \
1476 V(brxhg, BRXHG, \
1477 0xEC44) /* type = RIE_E BRANCH RELATIVE ON INDEX HIGH (64) */ \
1478 V(brxlg, BRXLG, \
1479 0xEC45) /* type = RIE_E BRANCH RELATIVE ON INDEX LOW OR EQ. (64) */
1480
1481 #define S390_RR_OPCODE_LIST(V) \
1482 V(awr, AWR, 0x2E) /* type = RR ADD UNNORMALIZED (long HFP) */ \
1483 V(spm, SPM, 0x04) /* type = RR SET PROGRAM MASK */ \
1484 V(balr, BALR, 0x05) /* type = RR BRANCH AND LINK */ \
1485 V(bctr, BCTR, 0x06) /* type = RR BRANCH ON COUNT (32) */ \
1486 V(bcr, BCR, 0x07) /* type = RR BRANCH ON CONDITION */ \
1487 V(bsm, BSM, 0x0B) /* type = RR BRANCH AND SET MODE */ \
1488 V(bassm, BASSM, 0x0C) /* type = RR BRANCH AND SAVE AND SET MODE */ \
1489 V(basr, BASR, 0x0D) /* type = RR BRANCH AND SAVE */ \
1490 V(mvcl, MVCL, 0x0E) /* type = RR MOVE LONG */ \
1491 V(clcl, CLCL, 0x0F) /* type = RR COMPARE LOGICAL LONG */ \
1492 V(lpr, LPR, 0x10) /* type = RR LOAD POSITIVE (32) */ \
1493 V(lnr, LNR, 0x11) /* type = RR LOAD NEGATIVE (32) */ \
1494 V(ltr, LTR, 0x12) /* type = RR LOAD AND TEST (32) */ \
1495 V(lcr, LCR, 0x13) /* type = RR LOAD COMPLEMENT (32) */ \
1496 V(nr, NR, 0x14) /* type = RR AND (32) */ \
1497 V(clr, CLR, 0x15) /* type = RR COMPARE LOGICAL (32) */ \
1498 V(or_z, OR, 0x16) /* type = RR OR (32) */ \
1499 V(xr, XR, 0x17) /* type = RR EXCLUSIVE OR (32) */ \
1500 V(lr, LR, 0x18) /* type = RR LOAD (32) */ \
1501 V(cr_z, CR, 0x19) /* type = RR COMPARE (32) */ \
1502 V(ar, AR, 0x1A) /* type = RR ADD (32) */ \
1503 V(sr, SR, 0x1B) /* type = RR SUBTRACT (32) */ \
1504 V(mr_z, MR, 0x1C) /* type = RR MULTIPLY (64<-32) */ \
1505 V(dr, DR, 0x1D) /* type = RR DIVIDE (32<-64) */ \
1506 V(alr, ALR, 0x1E) /* type = RR ADD LOGICAL (32) */ \
1507 V(slr, SLR, 0x1F) /* type = RR SUBTRACT LOGICAL (32) */ \
1508 V(lpdr, LPDR, 0x20) /* type = RR LOAD POSITIVE (long HFP) */ \
1509 V(lndr, LNDR, 0x21) /* type = RR LOAD NEGATIVE (long HFP) */ \
1510 V(ltdr, LTDR, 0x22) /* type = RR LOAD AND TEST (long HFP) */ \
1511 V(lcdr, LCDR, 0x23) /* type = RR LOAD COMPLEMENT (long HFP) */ \
1512 V(hdr, HDR, 0x24) /* type = RR HALVE (long HFP) */ \
1513 V(ldxr, LDXR, 0x25) /* type = RR LOAD ROUNDED (extended to long HFP) */ \
1514 V(mxr, MXR, 0x26) /* type = RR MULTIPLY (extended HFP) */ \
1515 V(mxdr, MXDR, 0x27) /* type = RR MULTIPLY (long to extended HFP) */ \
1516 V(ldr, LDR, 0x28) /* type = RR LOAD (long) */ \
1517 V(cdr, CDR, 0x29) /* type = RR COMPARE (long HFP) */ \
1518 V(adr, ADR, 0x2A) /* type = RR ADD NORMALIZED (long HFP) */ \
1519 V(sdr, SDR, 0x2B) /* type = RR SUBTRACT NORMALIZED (long HFP) */ \
1520 V(mdr, MDR, 0x2C) /* type = RR MULTIPLY (long HFP) */ \
1521 V(ddr, DDR, 0x2D) /* type = RR DIVIDE (long HFP) */ \
1522 V(swr, SWR, 0x2F) /* type = RR SUBTRACT UNNORMALIZED (long HFP) */ \
1523 V(lper, LPER, 0x30) /* type = RR LOAD POSITIVE (short HFP) */ \
1524 V(lner, LNER, 0x31) /* type = RR LOAD NEGATIVE (short HFP) */ \
1525 V(lter, LTER, 0x32) /* type = RR LOAD AND TEST (short HFP) */ \
1526 V(lcer, LCER, 0x33) /* type = RR LOAD COMPLEMENT (short HFP) */ \
1527 V(her_z, HER_Z, 0x34) /* type = RR HALVE (short HFP) */ \
1528 V(ledr, LEDR, 0x35) /* type = RR LOAD ROUNDED (long to short HFP) */ \
1529 V(axr, AXR, 0x36) /* type = RR ADD NORMALIZED (extended HFP) */ \
1530 V(sxr, SXR, 0x37) /* type = RR SUBTRACT NORMALIZED (extended HFP) */ \
1531 V(ler, LER, 0x38) /* type = RR LOAD (short) */ \
1532 V(cer, CER, 0x39) /* type = RR COMPARE (short HFP) */ \
1533 V(aer, AER, 0x3A) /* type = RR ADD NORMALIZED (short HFP) */ \
1534 V(ser, SER, 0x3B) /* type = RR SUBTRACT NORMALIZED (short HFP) */ \
1535 V(mder, MDER, 0x3C) /* type = RR MULTIPLY (short to long HFP) */ \
1536 V(der, DER, 0x3D) /* type = RR DIVIDE (short HFP) */ \
1537 V(aur, AUR, 0x3E) /* type = RR ADD UNNORMALIZED (short HFP) */ \
1538 V(sur, SUR, 0x3F) /* type = RR SUBTRACT UNNORMALIZED (short HFP) */
1539
1540 #define S390_RIE_F_OPCODE_LIST(V) \
1541 V(risblg, RISBLG, \
1542 0xEC51) /* type = RIE_F ROTATE THEN INSERT SELECTED BITS LOW (64) */ \
1543 V(rnsbg, RNSBG, \
1544 0xEC54) /* type = RIE_F ROTATE THEN AND SELECTED BITS (64) */ \
1545 V(risbg, RISBG, \
1546 0xEC55) /* type = RIE_F ROTATE THEN INSERT SELECTED BITS (64) */ \
1547 V(rosbg, ROSBG, 0xEC56) /* type = RIE_F ROTATE THEN OR SELECTED BITS (64) */ \
1548 V(rxsbg, RXSBG, \
1549 0xEC57) /* type = RIE_F ROTATE THEN EXCLUSIVE OR SELECT. BITS (64) */ \
1550 V(risbgn, RISBGN, \
1551 0xEC59) /* type = RIE_F ROTATE THEN INSERT SELECTED BITS (64) */ \
1552 V(risbhg, RISBHG, \
1553 0xEC5D) /* type = RIE_F ROTATE THEN INSERT SELECTED BITS HIGH (64) */
1554
1555 #define S390_VRX_OPCODE_LIST(V) \
1556 V(vleb, VLEB, 0xE700) /* type = VRX VECTOR LOAD ELEMENT (8) */ \
1557 V(vleh, VLEH, 0xE701) /* type = VRX VECTOR LOAD ELEMENT (16) */ \
1558 V(vleg, VLEG, 0xE702) /* type = VRX VECTOR LOAD ELEMENT (64) */ \
1559 V(vlef, VLEF, 0xE703) /* type = VRX VECTOR LOAD ELEMENT (32) */ \
1560 V(vllez, VLLEZ, \
1561 0xE704) /* type = VRX VECTOR LOAD LOGICAL ELEMENT AND ZERO */ \
1562 V(vlrep, VLREP, 0xE705) /* type = VRX VECTOR LOAD AND REPLICATE */ \
1563 V(vl, VL, 0xE706) /* type = VRX VECTOR LOAD */ \
1564 V(vlbb, VLBB, 0xE707) /* type = VRX VECTOR LOAD TO BLOCK BOUNDARY */ \
1565 V(vsteb, VSTEB, 0xE708) /* type = VRX VECTOR STORE ELEMENT (8) */ \
1566 V(vsteh, VSTEH, 0xE709) /* type = VRX VECTOR STORE ELEMENT (16) */ \
1567 V(vsteg, VSTEG, 0xE70A) /* type = VRX VECTOR STORE ELEMENT (64) */ \
1568 V(vstef, VSTEF, 0xE70B) /* type = VRX VECTOR STORE ELEMENT (32) */ \
1569 V(vst, VST, 0xE70E) /* type = VRX VECTOR STORE */ \
1570 V(vlbr, VLBR, 0xE606) /* type = VRX VECTOR LOAD BYTE REVERSED ELEMENTS */ \
1571 V(vstbr, VSTBR, 0xE60E) /* type = VRX VECTOR STORE BYTE REVERSED ELEMENTS \
1572 */
1573
1574 #define S390_RIE_G_OPCODE_LIST(V) \
1575 V(lochi, LOCHI, \
1576 0xEC42) /* type = RIE_G LOAD HALFWORD IMMEDIATE ON CONDITION (32<-16) */ \
1577 V(locghi, LOCGHI, \
1578 0xEC46) /* type = RIE_G LOAD HALFWORD IMMEDIATE ON CONDITION (64<-16) */ \
1579 V(lochhi, LOCHHI, 0xEC4E) /* type = RIE_G LOAD HALFWORD HIGH IMMEDIATE */ \
1580 /* ON CONDITION (32<-16) */
1581
1582 #define S390_RRS_OPCODE_LIST(V) \
1583 V(cgrb, CGRB, 0xECE4) /* type = RRS COMPARE AND BRANCH (64) */ \
1584 V(clgrb, CLGRB, 0xECE5) /* type = RRS COMPARE LOGICAL AND BRANCH (64) */ \
1585 V(crb, CRB, 0xECF6) /* type = RRS COMPARE AND BRANCH (32) */ \
1586 V(clrb, CLRB, 0xECF7) /* type = RRS COMPARE LOGICAL AND BRANCH (32) */
1587
1588 #define S390_OPCODE_LIST(V) \
1589 S390_RSY_A_OPCODE_LIST(V) \
1590 S390_RSY_B_OPCODE_LIST(V) \
1591 S390_RXE_OPCODE_LIST(V) \
1592 S390_RRF_A_OPCODE_LIST(V) \
1593 S390_RXF_OPCODE_LIST(V) \
1594 S390_IE_OPCODE_LIST(V) \
1595 S390_RRF_B_OPCODE_LIST(V) \
1596 S390_RRF_C_OPCODE_LIST(V) \
1597 S390_MII_OPCODE_LIST(V) \
1598 S390_RRF_D_OPCODE_LIST(V) \
1599 S390_RRF_E_OPCODE_LIST(V) \
1600 S390_VRR_A_OPCODE_LIST(V) \
1601 S390_VRR_B_OPCODE_LIST(V) \
1602 S390_VRR_C_OPCODE_LIST(V) \
1603 S390_VRI_A_OPCODE_LIST(V) \
1604 S390_VRR_D_OPCODE_LIST(V) \
1605 S390_VRI_B_OPCODE_LIST(V) \
1606 S390_VRR_E_OPCODE_LIST(V) \
1607 S390_VRI_C_OPCODE_LIST(V) \
1608 S390_VRI_D_OPCODE_LIST(V) \
1609 S390_VRR_F_OPCODE_LIST(V) \
1610 S390_RIS_OPCODE_LIST(V) \
1611 S390_VRI_E_OPCODE_LIST(V) \
1612 S390_RSL_A_OPCODE_LIST(V) \
1613 S390_RSL_B_OPCODE_LIST(V) \
1614 S390_SI_OPCODE_LIST(V) \
1615 S390_SIL_OPCODE_LIST(V) \
1616 S390_VRS_A_OPCODE_LIST(V) \
1617 S390_RIL_A_OPCODE_LIST(V) \
1618 S390_RIL_B_OPCODE_LIST(V) \
1619 S390_VRS_B_OPCODE_LIST(V) \
1620 S390_RIL_C_OPCODE_LIST(V) \
1621 S390_VRS_C_OPCODE_LIST(V) \
1622 S390_RI_A_OPCODE_LIST(V) \
1623 S390_RSI_OPCODE_LIST(V) \
1624 S390_RI_B_OPCODE_LIST(V) \
1625 S390_RI_C_OPCODE_LIST(V) \
1626 S390_SMI_OPCODE_LIST(V) \
1627 S390_RXY_A_OPCODE_LIST(V) \
1628 S390_RXY_B_OPCODE_LIST(V) \
1629 S390_SIY_OPCODE_LIST(V) \
1630 S390_SS_A_OPCODE_LIST(V) \
1631 S390_E_OPCODE_LIST(V) \
1632 S390_SS_B_OPCODE_LIST(V) \
1633 S390_SS_C_OPCODE_LIST(V) \
1634 S390_SS_D_OPCODE_LIST(V) \
1635 S390_SS_E_OPCODE_LIST(V) \
1636 S390_I_OPCODE_LIST(V) \
1637 S390_SS_F_OPCODE_LIST(V) \
1638 S390_SSE_OPCODE_LIST(V) \
1639 S390_SSF_OPCODE_LIST(V) \
1640 S390_RS_A_OPCODE_LIST(V) \
1641 S390_RS_B_OPCODE_LIST(V) \
1642 S390_S_OPCODE_LIST(V) \
1643 S390_RX_A_OPCODE_LIST(V) \
1644 S390_RX_B_OPCODE_LIST(V) \
1645 S390_RIE_A_OPCODE_LIST(V) \
1646 S390_RRD_OPCODE_LIST(V) \
1647 S390_RIE_B_OPCODE_LIST(V) \
1648 S390_RRE_OPCODE_LIST(V) \
1649 S390_RIE_C_OPCODE_LIST(V) \
1650 S390_RIE_D_OPCODE_LIST(V) \
1651 S390_VRV_OPCODE_LIST(V) \
1652 S390_RIE_E_OPCODE_LIST(V) \
1653 S390_RR_OPCODE_LIST(V) \
1654 S390_RIE_F_OPCODE_LIST(V) \
1655 S390_VRX_OPCODE_LIST(V) \
1656 S390_RIE_G_OPCODE_LIST(V) \
1657 S390_RRS_OPCODE_LIST(V)
1658
1659 // Opcodes as defined in Appendix B-2 table
1660 enum Opcode {
1661 #define DECLARE_OPCODES(name, opcode_name, opcode_value) \
1662 opcode_name = opcode_value,
1663 S390_OPCODE_LIST(DECLARE_OPCODES)
1664 #undef DECLARE_OPCODES
1665
1666 BKPT = 0x0001, // GDB Software Breakpoint
1667 DUMY = 0xE352 // Special dummy opcode
1668 };
1669
1670 // Instruction encoding bits and masks.
1671 enum {
1672 // Instruction encoding bit
1673 B1 = 1 << 1,
1674 B4 = 1 << 4,
1675 B5 = 1 << 5,
1676 B7 = 1 << 7,
1677 B8 = 1 << 8,
1678 B9 = 1 << 9,
1679 B12 = 1 << 12,
1680 B18 = 1 << 18,
1681 B19 = 1 << 19,
1682 B20 = 1 << 20,
1683 B22 = 1 << 22,
1684 B23 = 1 << 23,
1685 B24 = 1 << 24,
1686 B25 = 1 << 25,
1687 B26 = 1 << 26,
1688 B27 = 1 << 27,
1689 B28 = 1 << 28,
1690
1691 B6 = 1 << 6,
1692 B10 = 1 << 10,
1693 B11 = 1 << 11,
1694 B16 = 1 << 16,
1695 B17 = 1 << 17,
1696 B21 = 1 << 21,
1697
1698 // Instruction bit masks
1699 kCondMask = 0x1F << 21,
1700 kOff12Mask = (1 << 12) - 1,
1701 kImm24Mask = (1 << 24) - 1,
1702 kOff16Mask = (1 << 16) - 1,
1703 kImm16Mask = (1 << 16) - 1,
1704 kImm26Mask = (1 << 26) - 1,
1705 kBOfieldMask = 0x1f << 21,
1706 kOpcodeMask = 0x3f << 26,
1707 kExt2OpcodeMask = 0x1f << 1,
1708 kExt5OpcodeMask = 0x3 << 2,
1709 kBIMask = 0x1F << 16,
1710 kBDMask = 0x14 << 2,
1711 kAAMask = 0x01 << 1,
1712 kLKMask = 0x01,
1713 kRCMask = 0x01,
1714 kTOMask = 0x1f << 21
1715 };
1716
1717 // S390 instructions requires bigger shifts,
1718 // make them macros instead of enum because of the typing issue
1719 #define B32 ((uint64_t)1 << 32)
1720 #define B36 ((uint64_t)1 << 36)
1721 #define B40 ((uint64_t)1 << 40)
1722 const FourByteInstr kFourByteBrCondMask = 0xF << 20;
1723 const SixByteInstr kSixByteBrCondMask = static_cast<SixByteInstr>(0xF) << 36;
1724
1725 // -----------------------------------------------------------------------------
1726 // Addressing modes and instruction variants.
1727
1728 // Overflow Exception
1729 enum OEBit {
1730 SetOE = 1 << 10, // Set overflow exception
1731 LeaveOE = 0 << 10 // No overflow exception
1732 };
1733
1734 // Record bit
1735 enum RCBit { // Bit 0
1736 SetRC = 1, // LT,GT,EQ,SO
1737 LeaveRC = 0 // None
1738 };
1739
1740 // Link bit
1741 enum LKBit { // Bit 0
1742 SetLK = 1, // Load effective address of next instruction
1743 LeaveLK = 0 // No action
1744 };
1745
1746 enum BOfield { // Bits 25-21
1747 DCBNZF = 0 << 21, // Decrement CTR; branch if CTR != 0 and condition false
1748 DCBEZF = 2 << 21, // Decrement CTR; branch if CTR == 0 and condition false
1749 BF = 4 << 21, // Branch if condition false
1750 DCBNZT = 8 << 21, // Decrement CTR; branch if CTR != 0 and condition true
1751 DCBEZT = 10 << 21, // Decrement CTR; branch if CTR == 0 and condition true
1752 BT = 12 << 21, // Branch if condition true
1753 DCBNZ = 16 << 21, // Decrement CTR; branch if CTR != 0
1754 DCBEZ = 18 << 21, // Decrement CTR; branch if CTR == 0
1755 BA = 20 << 21 // Branch always
1756 };
1757
1758 #ifdef _AIX
1759 #undef CR_LT
1760 #undef CR_GT
1761 #undef CR_EQ
1762 #undef CR_SO
1763 #endif
1764
1765 enum CRBit { CR_LT = 0, CR_GT = 1, CR_EQ = 2, CR_SO = 3, CR_FU = 3 };
1766
1767 #define CRWIDTH 4
1768
1769 // -----------------------------------------------------------------------------
1770 // Supervisor Call (svc) specific support.
1771
1772 // Special Software Interrupt codes when used in the presence of the S390
1773 // simulator.
1774 // SVC provides a 24bit immediate value. Use bits 22:0 for standard
1775 // SoftwareInterrupCode. Bit 23 is reserved for the stop feature.
1776 enum SoftwareInterruptCodes {
1777 // Transition to C code
1778 kCallRtRedirected = 0x0010,
1779 // Breakpoint
1780 kBreakpoint = 0x0000,
1781 // Stop
1782 kStopCode = 1 << 23
1783 };
1784 const uint32_t kStopCodeMask = kStopCode - 1;
1785 const uint32_t kMaxStopCode = kStopCode - 1;
1786 const int32_t kDefaultStopCode = -1;
1787
1788 // FP rounding modes.
1789 enum FPRoundingMode {
1790 RN = 0, // Round to Nearest.
1791 RZ = 1, // Round towards zero.
1792 RP = 2, // Round towards Plus Infinity.
1793 RM = 3, // Round towards Minus Infinity.
1794
1795 // Aliases.
1796 kRoundToNearest = RN,
1797 kRoundToZero = RZ,
1798 kRoundToPlusInf = RP,
1799 kRoundToMinusInf = RM
1800 };
1801
1802 const uint32_t kFPRoundingModeMask = 3;
1803
1804 enum CheckForInexactConversion {
1805 kCheckForInexactConversion,
1806 kDontCheckForInexactConversion
1807 };
1808
1809 // -----------------------------------------------------------------------------
1810 // Specific instructions, constants, and masks.
1811
1812 // use TRAP4 to indicate redirection call for simulation mode
1813 const Instr rtCallRedirInstr = TRAP4;
1814
1815 // -----------------------------------------------------------------------------
1816 // Instruction abstraction.
1817
1818 // The class Instruction enables access to individual fields defined in the
1819 // z/Architecture instruction set encoding.
1820 class Instruction {
1821 public:
1822 // S390 Opcode Format Types
1823 // Based on the first byte of the opcode, we can determine how to extract
1824 // the entire opcode of the instruction. The various favours include:
1825 enum OpcodeFormatType {
1826 ONE_BYTE_OPCODE, // One Byte - Bits 0 to 7
1827 TWO_BYTE_OPCODE, // Two Bytes - Bits 0 to 15
1828 TWO_BYTE_DISJOINT_OPCODE, // Two Bytes - Bits 0 to 7, 40 to 47
1829 THREE_NIBBLE_OPCODE // Three Nibbles - Bits 0 to 7, 12 to 15
1830 };
1831
1832 static OpcodeFormatType OpcodeFormatTable[256];
1833
1834 // Get the raw instruction bits.
1835 template <typename T>
InstructionBits()1836 inline T InstructionBits() const {
1837 return Instruction::InstructionBits<T>(reinterpret_cast<const byte*>(this));
1838 }
InstructionBits()1839 inline Instr InstructionBits() const {
1840 return *reinterpret_cast<const Instr*>(this);
1841 }
1842
1843 // Set the raw instruction bits to value.
1844 template <typename T>
SetInstructionBits(T value)1845 inline void SetInstructionBits(T value) const {
1846 Instruction::SetInstructionBits<T>(reinterpret_cast<const byte*>(this),
1847 value);
1848 }
SetInstructionBits(Instr value)1849 inline void SetInstructionBits(Instr value) {
1850 *reinterpret_cast<Instr*>(this) = value;
1851 }
1852
1853 // Read one particular bit out of the instruction bits.
Bit(int nr)1854 inline int Bit(int nr) const { return (InstructionBits() >> nr) & 1; }
1855
1856 // Read a bit field's value out of the instruction bits.
Bits(int hi,int lo)1857 inline int Bits(int hi, int lo) const {
1858 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
1859 }
1860
1861 // Read bits according to instruction type
1862 template <typename T, typename U>
Bits(int hi,int lo)1863 inline U Bits(int hi, int lo) const {
1864 return (InstructionBits<T>() >> lo) & ((2 << (hi - lo)) - 1);
1865 }
1866
1867 // Read a bit field out of the instruction bits.
BitField(int hi,int lo)1868 inline int BitField(int hi, int lo) const {
1869 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo);
1870 }
1871
1872 // Determine the instruction length
InstructionLength()1873 inline int InstructionLength() {
1874 return Instruction::InstructionLength(reinterpret_cast<const byte*>(this));
1875 }
1876 // Extract the Instruction Opcode
S390OpcodeValue()1877 inline Opcode S390OpcodeValue() {
1878 return Instruction::S390OpcodeValue(reinterpret_cast<const byte*>(this));
1879 }
1880
1881 // Static support.
1882
1883 // Read one particular bit out of the instruction bits.
Bit(Instr instr,int nr)1884 static inline int Bit(Instr instr, int nr) { return (instr >> nr) & 1; }
1885
1886 // Read the value of a bit field out of the instruction bits.
Bits(Instr instr,int hi,int lo)1887 static inline int Bits(Instr instr, int hi, int lo) {
1888 return (instr >> lo) & ((2 << (hi - lo)) - 1);
1889 }
1890
1891 // Read a bit field out of the instruction bits.
BitField(Instr instr,int hi,int lo)1892 static inline int BitField(Instr instr, int hi, int lo) {
1893 return instr & (((2 << (hi - lo)) - 1) << lo);
1894 }
1895
1896 // Determine the instruction length of the given instruction
InstructionLength(const byte * instr)1897 static inline int InstructionLength(const byte* instr) {
1898 // Length can be determined by the first nibble.
1899 // 0x0 to 0x3 => 2-bytes
1900 // 0x4 to 0xB => 4-bytes
1901 // 0xC to 0xF => 6-bytes
1902 byte topNibble = (*instr >> 4) & 0xF;
1903 if (topNibble <= 3)
1904 return 2;
1905 else if (topNibble <= 0xB)
1906 return 4;
1907 return 6;
1908 }
1909
1910 // Returns the instruction bits of the given instruction
InstructionBits(const byte * instr)1911 static inline uint64_t InstructionBits(const byte* instr) {
1912 int length = InstructionLength(instr);
1913 if (2 == length)
1914 return static_cast<uint64_t>(InstructionBits<TwoByteInstr>(instr));
1915 else if (4 == length)
1916 return static_cast<uint64_t>(InstructionBits<FourByteInstr>(instr));
1917 else
1918 return InstructionBits<SixByteInstr>(instr);
1919 }
1920
1921 // Extract the raw instruction bits
1922 template <typename T>
InstructionBits(const byte * instr)1923 static inline T InstructionBits(const byte* instr) {
1924 #if !V8_TARGET_LITTLE_ENDIAN
1925 if (sizeof(T) <= 4) {
1926 return *reinterpret_cast<const T*>(instr);
1927 } else {
1928 // We cannot read 8-byte instructon address directly, because for a
1929 // six-byte instruction, the extra 2-byte address might not be
1930 // allocated.
1931 uint64_t fourBytes = *reinterpret_cast<const uint32_t*>(instr);
1932 uint16_t twoBytes = *reinterpret_cast<const uint16_t*>(instr + 4);
1933 return (fourBytes << 16 | twoBytes);
1934 }
1935 #else
1936 // Even on little endian hosts (simulation), the instructions
1937 // are stored as big-endian in order to decode the opcode and
1938 // instruction length.
1939 T instr_bits = 0;
1940
1941 // 6-byte instrs are represented by uint64_t
1942 uint32_t size = (sizeof(T) == 8) ? 6 : sizeof(T);
1943
1944 for (T i = 0; i < size; i++) {
1945 instr_bits <<= 8;
1946 instr_bits |= *(instr + i);
1947 }
1948 return instr_bits;
1949 #endif
1950 }
1951
1952 // Set the Instruction Bits to value
1953 template <typename T>
SetInstructionBits(byte * instr,T value)1954 static inline void SetInstructionBits(byte* instr, T value) {
1955 #if V8_TARGET_LITTLE_ENDIAN
1956 // The instruction bits are stored in big endian format even on little
1957 // endian hosts, in order to decode instruction length and opcode.
1958 // The following code will reverse the bytes so that the stores later
1959 // (which are in native endianess) will effectively save the instruction
1960 // in big endian.
1961 if (sizeof(T) == 2) {
1962 // Two Byte Instruction
1963 value = ((value & 0x00FF) << 8) | ((value & 0xFF00) >> 8);
1964 } else if (sizeof(T) == 4) {
1965 // Four Byte Instruction
1966 value = ((value & 0x000000FF) << 24) | ((value & 0x0000FF00) << 8) |
1967 ((value & 0x00FF0000) >> 8) | ((value & 0xFF000000) >> 24);
1968 } else if (sizeof(T) == 8) {
1969 // Six Byte Instruction
1970 uint64_t orig_value = static_cast<uint64_t>(value);
1971 value = (static_cast<uint64_t>(orig_value & 0xFF) << 40) |
1972 (static_cast<uint64_t>((orig_value >> 8) & 0xFF) << 32) |
1973 (static_cast<uint64_t>((orig_value >> 16) & 0xFF) << 24) |
1974 (static_cast<uint64_t>((orig_value >> 24) & 0xFF) << 16) |
1975 (static_cast<uint64_t>((orig_value >> 32) & 0xFF) << 8) |
1976 (static_cast<uint64_t>((orig_value >> 40) & 0xFF));
1977 }
1978 #endif
1979 if (sizeof(T) <= 4) {
1980 *reinterpret_cast<T*>(instr) = value;
1981 } else {
1982 #if V8_TARGET_LITTLE_ENDIAN
1983 uint64_t orig_value = static_cast<uint64_t>(value);
1984 *reinterpret_cast<uint32_t*>(instr) = static_cast<uint32_t>(value);
1985 *reinterpret_cast<uint16_t*>(instr + 4) =
1986 static_cast<uint16_t>((orig_value >> 32) & 0xFFFF);
1987 #else
1988 *reinterpret_cast<uint32_t*>(instr) = static_cast<uint32_t>(value >> 16);
1989 *reinterpret_cast<uint16_t*>(instr + 4) =
1990 static_cast<uint16_t>(value & 0xFFFF);
1991 #endif
1992 }
1993 }
1994
1995 // Get Instruction Format Type
getOpcodeFormatType(const byte * instr)1996 static OpcodeFormatType getOpcodeFormatType(const byte* instr) {
1997 const byte firstByte = *instr;
1998 return OpcodeFormatTable[firstByte];
1999 }
2000
2001 // Extract the full opcode from the instruction.
S390OpcodeValue(const byte * instr)2002 static inline Opcode S390OpcodeValue(const byte* instr) {
2003 OpcodeFormatType opcodeType = getOpcodeFormatType(instr);
2004
2005 // The native instructions are encoded in big-endian format
2006 // even if running on little-endian host. Hence, we need
2007 // to ensure we use byte* based bit-wise logic.
2008 switch (opcodeType) {
2009 case ONE_BYTE_OPCODE:
2010 // One Byte - Bits 0 to 7
2011 return static_cast<Opcode>(*instr);
2012 case TWO_BYTE_OPCODE:
2013 // Two Bytes - Bits 0 to 15
2014 return static_cast<Opcode>((*instr << 8) | (*(instr + 1)));
2015 case TWO_BYTE_DISJOINT_OPCODE:
2016 // Two Bytes - Bits 0 to 7, 40 to 47
2017 return static_cast<Opcode>((*instr << 8) | (*(instr + 5) & 0xFF));
2018 default:
2019 // case THREE_NIBBLE_OPCODE:
2020 // Three Nibbles - Bits 0 to 7, 12 to 15
2021 return static_cast<Opcode>((*instr << 4) | (*(instr + 1) & 0xF));
2022 }
2023
2024 UNREACHABLE();
2025 }
2026
2027 // Fields used in Software interrupt instructions
SvcValue()2028 inline SoftwareInterruptCodes SvcValue() const {
2029 return static_cast<SoftwareInterruptCodes>(Bits<FourByteInstr, int>(15, 0));
2030 }
2031
2032 // Instructions are read of out a code stream. The only way to get a
2033 // reference to an instruction is to convert a pointer. There is no way
2034 // to allocate or create instances of class Instruction.
2035 // Use the At(pc) function to create references to Instruction.
At(byte * pc)2036 static Instruction* At(byte* pc) {
2037 return reinterpret_cast<Instruction*>(pc);
2038 }
2039
2040 private:
2041 // We need to prevent the creation of instances of class Instruction.
2042 DISALLOW_IMPLICIT_CONSTRUCTORS(Instruction);
2043 };
2044
2045 #define DECLARE_FIELD_FOR_TWO_BYTE_INSTR(name, T, lo, hi) \
2046 inline int name() const { \
2047 return Bits<TwoByteInstr, T>(15 - (lo), 15 - (hi) + 1); \
2048 }
2049
2050 #define DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(name, T, lo, hi) \
2051 inline int name() const { \
2052 return Bits<FourByteInstr, T>(31 - (lo), 31 - (hi) + 1); \
2053 }
2054
2055 #define DECLARE_FIELD_FOR_SIX_BYTE_INSTR(name, T, lo, hi) \
2056 inline int name() const { \
2057 return Bits<SixByteInstr, T>(47 - (lo), 47 - (hi) + 1); \
2058 }
2059
2060 class TwoByteInstruction : public Instruction {
2061 public:
size()2062 inline int size() const { return 2; }
2063 };
2064
2065 class FourByteInstruction : public Instruction {
2066 public:
size()2067 inline int size() const { return 4; }
2068 };
2069
2070 class SixByteInstruction : public Instruction {
2071 public:
size()2072 inline int size() const { return 6; }
2073 };
2074
2075 // I Instruction
2076 class IInstruction : public TwoByteInstruction {
2077 public:
2078 DECLARE_FIELD_FOR_TWO_BYTE_INSTR(IValue, int, 8, 16)
2079 };
2080
2081 // E Instruction
2082 class EInstruction : public TwoByteInstruction {};
2083
2084 // IE Instruction
2085 class IEInstruction : public FourByteInstruction {
2086 public:
2087 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(I1Value, int, 24, 28)
2088 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(I2Value, int, 28, 32)
2089 };
2090
2091 // MII Instruction
2092 class MIIInstruction : public SixByteInstruction {
2093 public:
2094 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M1Value, uint32_t, 8, 12)
2095 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(RI2Value, int, 12, 24)
2096 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(RI3Value, int, 24, 47)
2097 };
2098
2099 // RI Instruction
2100 class RIInstruction : public FourByteInstruction {
2101 public:
2102 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(R1Value, int, 8, 12)
2103 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(I2Value, int, 16, 32)
2104 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(I2UnsignedValue, uint32_t, 16, 32)
2105 DECLARE_FIELD_FOR_FOUR_BYTE_INSTR(M1Value, uint32_t, 8, 12)
2106 };
2107
2108 // RR Instruction
2109 class RRInstruction : Instruction {
2110 public:
R1Value()2111 inline int R1Value() const {
2112 // the high and low parameters of Bits is the number of bits from
2113 // rightmost place
2114 return Bits<TwoByteInstr, int>(7, 4);
2115 }
R2Value()2116 inline int R2Value() const { return Bits<TwoByteInstr, int>(3, 0); }
M1Value()2117 inline Condition M1Value() const {
2118 return static_cast<Condition>(Bits<TwoByteInstr, int>(7, 4));
2119 }
2120
size()2121 inline int size() const { return 2; }
2122 };
2123
2124 // RRE Instruction
2125 class RREInstruction : Instruction {
2126 public:
R1Value()2127 inline int R1Value() const { return Bits<FourByteInstr, int>(7, 4); }
R2Value()2128 inline int R2Value() const { return Bits<FourByteInstr, int>(3, 0); }
M3Value()2129 inline int M3Value() const { return Bits<FourByteInstr, int>(15, 12); }
M4Value()2130 inline int M4Value() const { return Bits<FourByteInstr, int>(19, 16); }
size()2131 inline int size() const { return 4; }
2132 };
2133
2134 // RRF Instruction
2135 class RRFInstruction : Instruction {
2136 public:
R1Value()2137 inline int R1Value() const { return Bits<FourByteInstr, int>(7, 4); }
R2Value()2138 inline int R2Value() const { return Bits<FourByteInstr, int>(3, 0); }
R3Value()2139 inline int R3Value() const { return Bits<FourByteInstr, int>(15, 12); }
M3Value()2140 inline int M3Value() const { return Bits<FourByteInstr, int>(15, 12); }
M4Value()2141 inline int M4Value() const { return Bits<FourByteInstr, int>(11, 8); }
size()2142 inline int size() const { return 4; }
2143 };
2144
2145 // RRD Isntruction
2146 class RRDInstruction : Instruction {
2147 public:
R1Value()2148 inline int R1Value() const { return Bits<FourByteInstr, int>(15, 12); }
R2Value()2149 inline int R2Value() const { return Bits<FourByteInstr, int>(3, 0); }
R3Value()2150 inline int R3Value() const { return Bits<FourByteInstr, int>(7, 4); }
size()2151 inline int size() const { return 4; }
2152 };
2153
2154 // RS Instruction
2155 class RSInstruction : Instruction {
2156 public:
R1Value()2157 inline int R1Value() const { return Bits<FourByteInstr, int>(23, 20); }
R3Value()2158 inline int R3Value() const { return Bits<FourByteInstr, int>(19, 16); }
B2Value()2159 inline int B2Value() const { return Bits<FourByteInstr, int>(15, 12); }
D2Value()2160 inline unsigned int D2Value() const {
2161 return Bits<FourByteInstr, unsigned int>(11, 0);
2162 }
size()2163 inline int size() const { return 4; }
2164 };
2165
2166 // RSI Instruction
2167 class RSIInstruction : Instruction {
2168 public:
R1Value()2169 inline int R1Value() const { return Bits<FourByteInstr, int>(23, 20); }
R3Value()2170 inline int R3Value() const { return Bits<FourByteInstr, int>(19, 16); }
I2Value()2171 inline int I2Value() const {
2172 return static_cast<int32_t>(Bits<FourByteInstr, int16_t>(15, 0));
2173 }
size()2174 inline int size() const { return 4; }
2175 };
2176
2177 // RSY Instruction
2178 class RSYInstruction : Instruction {
2179 public:
R1Value()2180 inline int R1Value() const { return Bits<SixByteInstr, int>(39, 36); }
R3Value()2181 inline int R3Value() const { return Bits<SixByteInstr, int>(35, 32); }
B2Value()2182 inline int B2Value() const { return Bits<SixByteInstr, int>(31, 28); }
D2Value()2183 inline int32_t D2Value() const {
2184 int32_t value = Bits<SixByteInstr, int32_t>(27, 16);
2185 value += Bits<SixByteInstr, int8_t>(15, 8) << 12;
2186 return value;
2187 }
size()2188 inline int size() const { return 6; }
2189 };
2190
2191 // RX Instruction
2192 class RXInstruction : Instruction {
2193 public:
R1Value()2194 inline int R1Value() const { return Bits<FourByteInstr, int>(23, 20); }
X2Value()2195 inline int X2Value() const { return Bits<FourByteInstr, int>(19, 16); }
B2Value()2196 inline int B2Value() const { return Bits<FourByteInstr, int>(15, 12); }
D2Value()2197 inline uint32_t D2Value() const {
2198 return Bits<FourByteInstr, uint32_t>(11, 0);
2199 }
size()2200 inline int size() const { return 4; }
2201 };
2202
2203 // RXY Instruction
2204 class RXYInstruction : Instruction {
2205 public:
R1Value()2206 inline int R1Value() const { return Bits<SixByteInstr, int>(39, 36); }
X2Value()2207 inline int X2Value() const { return Bits<SixByteInstr, int>(35, 32); }
B2Value()2208 inline int B2Value() const { return Bits<SixByteInstr, int>(31, 28); }
D2Value()2209 inline int32_t D2Value() const {
2210 int32_t value = Bits<SixByteInstr, uint32_t>(27, 16);
2211 value += Bits<SixByteInstr, int8_t>(15, 8) << 12;
2212 return value;
2213 }
size()2214 inline int size() const { return 6; }
2215 };
2216
2217 // RIL Instruction
2218 class RILInstruction : Instruction {
2219 public:
R1Value()2220 inline int R1Value() const { return Bits<SixByteInstr, int>(39, 36); }
I2Value()2221 inline int32_t I2Value() const { return Bits<SixByteInstr, int32_t>(31, 0); }
I2UnsignedValue()2222 inline uint32_t I2UnsignedValue() const {
2223 return Bits<SixByteInstr, uint32_t>(31, 0);
2224 }
size()2225 inline int size() const { return 6; }
2226 };
2227
2228 // SI Instruction
2229 class SIInstruction : Instruction {
2230 public:
B1Value()2231 inline int B1Value() const { return Bits<FourByteInstr, int>(15, 12); }
D1Value()2232 inline uint32_t D1Value() const {
2233 return Bits<FourByteInstr, uint32_t>(11, 0);
2234 }
I2Value()2235 inline uint8_t I2Value() const {
2236 return Bits<FourByteInstr, uint8_t>(23, 16);
2237 }
size()2238 inline int size() const { return 4; }
2239 };
2240
2241 // SIY Instruction
2242 class SIYInstruction : Instruction {
2243 public:
B1Value()2244 inline int B1Value() const { return Bits<SixByteInstr, int>(31, 28); }
D1Value()2245 inline int32_t D1Value() const {
2246 int32_t value = Bits<SixByteInstr, uint32_t>(27, 16);
2247 value += Bits<SixByteInstr, int8_t>(15, 8) << 12;
2248 return value;
2249 }
I2Value()2250 inline uint8_t I2Value() const { return Bits<SixByteInstr, uint8_t>(39, 32); }
size()2251 inline int size() const { return 6; }
2252 };
2253
2254 // SIL Instruction
2255 class SILInstruction : Instruction {
2256 public:
B1Value()2257 inline int B1Value() const { return Bits<SixByteInstr, int>(31, 28); }
D1Value()2258 inline int D1Value() const { return Bits<SixByteInstr, int>(27, 16); }
I2Value()2259 inline int I2Value() const { return Bits<SixByteInstr, int>(15, 0); }
size()2260 inline int size() const { return 6; }
2261 };
2262
2263 // SS Instruction
2264 class SSInstruction : Instruction {
2265 public:
B1Value()2266 inline int B1Value() const { return Bits<SixByteInstr, int>(31, 28); }
B2Value()2267 inline int B2Value() const { return Bits<SixByteInstr, int>(15, 12); }
D1Value()2268 inline int D1Value() const { return Bits<SixByteInstr, int>(27, 16); }
D2Value()2269 inline int D2Value() const { return Bits<SixByteInstr, int>(11, 0); }
Length()2270 inline int Length() const { return Bits<SixByteInstr, int>(39, 32); }
size()2271 inline int size() const { return 6; }
2272 };
2273
2274 // RXE Instruction
2275 class RXEInstruction : Instruction {
2276 public:
R1Value()2277 inline int R1Value() const { return Bits<SixByteInstr, int>(39, 36); }
X2Value()2278 inline int X2Value() const { return Bits<SixByteInstr, int>(35, 32); }
B2Value()2279 inline int B2Value() const { return Bits<SixByteInstr, int>(31, 28); }
D2Value()2280 inline int D2Value() const { return Bits<SixByteInstr, int>(27, 16); }
size()2281 inline int size() const { return 6; }
2282 };
2283
2284 // RIE Instruction
2285 class RIEInstruction : Instruction {
2286 public:
R1Value()2287 inline int R1Value() const { return Bits<SixByteInstr, int>(39, 36); }
R2Value()2288 inline int R2Value() const { return Bits<SixByteInstr, int>(35, 32); }
I3Value()2289 inline int I3Value() const { return Bits<SixByteInstr, uint32_t>(31, 24); }
I4Value()2290 inline int I4Value() const { return Bits<SixByteInstr, uint32_t>(23, 16); }
I5Value()2291 inline int I5Value() const { return Bits<SixByteInstr, uint32_t>(15, 8); }
I6Value()2292 inline int I6Value() const {
2293 return static_cast<int32_t>(Bits<SixByteInstr, int16_t>(31, 16));
2294 }
size()2295 inline int size() const { return 6; }
2296 };
2297
2298 // VRR Instruction
2299 class VRR_A_Instruction : SixByteInstruction {
2300 public:
2301 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2302 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R2Value, int, 12, 16)
2303 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M5Value, uint32_t, 24, 28)
2304 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M4Value, uint32_t, 28, 32)
2305 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M3Value, uint32_t, 32, 36)
2306 };
2307
2308 class VRR_B_Instruction : SixByteInstruction {
2309 public:
2310 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2311 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R2Value, int, 12, 16)
2312 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 16, 20)
2313 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M5Value, uint32_t, 24, 28)
2314 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M4Value, uint32_t, 32, 36)
2315 };
2316
2317 class VRR_C_Instruction : SixByteInstruction {
2318 public:
2319 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2320 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R2Value, int, 12, 16)
2321 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 16, 20)
2322 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M6Value, uint32_t, 24, 28)
2323 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M5Value, uint32_t, 28, 32)
2324 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M4Value, uint32_t, 32, 36)
2325 };
2326
2327 class VRR_E_Instruction : SixByteInstruction {
2328 public:
2329 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2330 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R2Value, int, 12, 16)
2331 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 16, 20)
2332 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R4Value, int, 32, 36)
2333 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M6Value, uint32_t, 20, 24)
2334 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M5Value, uint32_t, 28, 32)
2335 };
2336
2337 class VRR_F_Instruction : SixByteInstruction {
2338 public:
2339 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2340 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R2Value, int, 12, 16)
2341 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 16, 20)
2342 };
2343
2344 class VRX_Instruction : SixByteInstruction {
2345 public:
2346 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2347 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(X2Value, int, 12, 16)
2348 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(B2Value, int, 16, 20)
2349 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(D2Value, int, 20, 32)
2350 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M3Value, uint32_t, 32, 36)
2351 };
2352
2353 class VRS_Instruction : SixByteInstruction {
2354 public:
2355 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2356 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 12, 16)
2357 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(B2Value, int, 16, 20)
2358 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(D2Value, int, 20, 32)
2359 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M4Value, uint32_t, 32, 36)
2360 };
2361
2362 class VRI_A_Instruction : SixByteInstruction {
2363 public:
2364 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2365 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(I2Value, int, 16, 32)
2366 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M3Value, uint32_t, 32, 36)
2367 };
2368
2369 class VRI_C_Instruction : SixByteInstruction {
2370 public:
2371 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R1Value, int, 8, 12)
2372 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(R3Value, int, 12, 16)
2373 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(I2Value, int, 16, 32)
2374 DECLARE_FIELD_FOR_SIX_BYTE_INSTR(M4Value, uint32_t, 32, 36)
2375 };
2376
2377 // Helper functions for converting between register numbers and names.
2378 class Registers {
2379 public:
2380 // Lookup the register number for the name provided.
2381 static int Number(const char* name);
2382
2383 private:
2384 static const char* names_[kNumRegisters];
2385 };
2386
2387 // Helper functions for converting between FP register numbers and names.
2388 class DoubleRegisters {
2389 public:
2390 // Lookup the register number for the name provided.
2391 static int Number(const char* name);
2392
2393 private:
2394 static const char* names_[kNumDoubleRegisters];
2395 };
2396
2397 } // namespace internal
2398 } // namespace v8
2399
2400 #endif // V8_CODEGEN_S390_CONSTANTS_S390_H_
2401