]> git.proxmox.com Git - qemu.git/blame - tcg/ia64/tcg-target.c
Open 2.0 development tree
[qemu.git] / tcg / ia64 / tcg-target.c
CommitLineData
477ba620
AJ
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2009-2010 Aurelien Jarno <aurelien@aurel32.net>
5 * Based on i386/tcg-target.c - Copyright (c) 2008 Fabrice Bellard
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
25
3cf246f0
RH
26#include "tcg-be-null.h"
27
477ba620
AJ
28/*
29 * Register definitions
30 */
31
32#ifndef NDEBUG
33static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
34 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
35 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
36 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
37 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
38 "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
39 "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
40 "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55",
41 "r56", "r57", "r58", "r59", "r60", "r61", "r62", "r63",
42};
43#endif
44
6781d08d
RH
45#ifdef CONFIG_USE_GUEST_BASE
46#define TCG_GUEST_BASE_REG TCG_REG_R55
47#else
48#define TCG_GUEST_BASE_REG TCG_REG_R0
49#endif
255108c0
RH
50#ifndef GUEST_BASE
51#define GUEST_BASE 0
52#endif
6781d08d 53
477ba620
AJ
54/* Branch registers */
55enum {
56 TCG_REG_B0 = 0,
57 TCG_REG_B1,
58 TCG_REG_B2,
59 TCG_REG_B3,
60 TCG_REG_B4,
61 TCG_REG_B5,
62 TCG_REG_B6,
63 TCG_REG_B7,
64};
65
66/* Floating point registers */
67enum {
68 TCG_REG_F0 = 0,
69 TCG_REG_F1,
70 TCG_REG_F2,
71 TCG_REG_F3,
72 TCG_REG_F4,
73 TCG_REG_F5,
74 TCG_REG_F6,
75 TCG_REG_F7,
76 TCG_REG_F8,
77 TCG_REG_F9,
78 TCG_REG_F10,
79 TCG_REG_F11,
80 TCG_REG_F12,
81 TCG_REG_F13,
82 TCG_REG_F14,
83 TCG_REG_F15,
84};
85
86/* Predicate registers */
87enum {
88 TCG_REG_P0 = 0,
89 TCG_REG_P1,
90 TCG_REG_P2,
91 TCG_REG_P3,
92 TCG_REG_P4,
93 TCG_REG_P5,
94 TCG_REG_P6,
95 TCG_REG_P7,
96 TCG_REG_P8,
97 TCG_REG_P9,
98 TCG_REG_P10,
99 TCG_REG_P11,
100 TCG_REG_P12,
101 TCG_REG_P13,
102 TCG_REG_P14,
103 TCG_REG_P15,
104};
105
106/* Application registers */
107enum {
108 TCG_REG_PFS = 64,
109};
110
111static const int tcg_target_reg_alloc_order[] = {
477ba620
AJ
112 TCG_REG_R35,
113 TCG_REG_R36,
114 TCG_REG_R37,
115 TCG_REG_R38,
116 TCG_REG_R39,
117 TCG_REG_R40,
118 TCG_REG_R41,
119 TCG_REG_R42,
120 TCG_REG_R43,
121 TCG_REG_R44,
122 TCG_REG_R45,
123 TCG_REG_R46,
124 TCG_REG_R47,
125 TCG_REG_R48,
126 TCG_REG_R49,
127 TCG_REG_R50,
128 TCG_REG_R51,
129 TCG_REG_R52,
130 TCG_REG_R53,
131 TCG_REG_R54,
132 TCG_REG_R55,
133 TCG_REG_R14,
134 TCG_REG_R15,
135 TCG_REG_R16,
136 TCG_REG_R17,
137 TCG_REG_R18,
138 TCG_REG_R19,
139 TCG_REG_R20,
140 TCG_REG_R21,
141 TCG_REG_R22,
142 TCG_REG_R23,
143 TCG_REG_R24,
144 TCG_REG_R25,
145 TCG_REG_R26,
146 TCG_REG_R27,
147 TCG_REG_R28,
148 TCG_REG_R29,
149 TCG_REG_R30,
150 TCG_REG_R31,
151 TCG_REG_R56,
152 TCG_REG_R57,
153 TCG_REG_R58,
154 TCG_REG_R59,
155 TCG_REG_R60,
156 TCG_REG_R61,
157 TCG_REG_R62,
158 TCG_REG_R63,
159 TCG_REG_R8,
160 TCG_REG_R9,
161 TCG_REG_R10,
162 TCG_REG_R11
163};
164
165static const int tcg_target_call_iarg_regs[8] = {
166 TCG_REG_R56,
167 TCG_REG_R57,
168 TCG_REG_R58,
169 TCG_REG_R59,
170 TCG_REG_R60,
171 TCG_REG_R61,
172 TCG_REG_R62,
173 TCG_REG_R63,
174};
175
af15a623
SW
176static const int tcg_target_call_oarg_regs[] = {
177 TCG_REG_R8
477ba620
AJ
178};
179
477ba620
AJ
180/*
181 * opcode formation
182 */
183
184/* bundle templates: stops (double bar in the IA64 manual) are marked with
185 an uppercase letter. */
186enum {
187 mii = 0x00,
188 miI = 0x01,
189 mIi = 0x02,
190 mII = 0x03,
191 mlx = 0x04,
192 mLX = 0x05,
193 mmi = 0x08,
194 mmI = 0x09,
195 Mmi = 0x0a,
196 MmI = 0x0b,
197 mfi = 0x0c,
198 mfI = 0x0d,
199 mmf = 0x0e,
200 mmF = 0x0f,
201 mib = 0x10,
202 miB = 0x11,
203 mbb = 0x12,
204 mbB = 0x13,
205 bbb = 0x16,
206 bbB = 0x17,
207 mmb = 0x18,
208 mmB = 0x19,
209 mfb = 0x1c,
210 mfB = 0x1d,
211};
212
213enum {
214 OPC_ADD_A1 = 0x10000000000ull,
215 OPC_AND_A1 = 0x10060000000ull,
216 OPC_AND_A3 = 0x10160000000ull,
217 OPC_ANDCM_A1 = 0x10068000000ull,
218 OPC_ANDCM_A3 = 0x10168000000ull,
219 OPC_ADDS_A4 = 0x10800000000ull,
220 OPC_ADDL_A5 = 0x12000000000ull,
221 OPC_ALLOC_M34 = 0x02c00000000ull,
222 OPC_BR_DPTK_FEW_B1 = 0x08400000000ull,
223 OPC_BR_SPTK_MANY_B1 = 0x08000001000ull,
224 OPC_BR_SPTK_MANY_B4 = 0x00100001000ull,
225 OPC_BR_CALL_SPTK_MANY_B5 = 0x02100001000ull,
226 OPC_BR_RET_SPTK_MANY_B4 = 0x00108001100ull,
227 OPC_BRL_SPTK_MANY_X3 = 0x18000001000ull,
6f65c780 228 OPC_BRL_CALL_SPTK_MANY_X4 = 0x1a000001000ull,
477ba620
AJ
229 OPC_CMP_LT_A6 = 0x18000000000ull,
230 OPC_CMP_LTU_A6 = 0x1a000000000ull,
231 OPC_CMP_EQ_A6 = 0x1c000000000ull,
232 OPC_CMP4_LT_A6 = 0x18400000000ull,
233 OPC_CMP4_LTU_A6 = 0x1a400000000ull,
234 OPC_CMP4_EQ_A6 = 0x1c400000000ull,
63975ea7 235 OPC_DEP_I14 = 0x0ae00000000ull,
c7d4475a 236 OPC_DEP_I15 = 0x08000000000ull,
477ba620
AJ
237 OPC_DEP_Z_I12 = 0x0a600000000ull,
238 OPC_EXTR_I11 = 0x0a400002000ull,
239 OPC_EXTR_U_I11 = 0x0a400000000ull,
240 OPC_FCVT_FX_TRUNC_S1_F10 = 0x004d0000000ull,
241 OPC_FCVT_FXU_TRUNC_S1_F10 = 0x004d8000000ull,
242 OPC_FCVT_XF_F11 = 0x000e0000000ull,
243 OPC_FMA_S1_F1 = 0x10400000000ull,
244 OPC_FNMA_S1_F1 = 0x18400000000ull,
245 OPC_FRCPA_S1_F6 = 0x00600000000ull,
246 OPC_GETF_SIG_M19 = 0x08708000000ull,
247 OPC_LD1_M1 = 0x08000000000ull,
248 OPC_LD1_M3 = 0x0a000000000ull,
249 OPC_LD2_M1 = 0x08040000000ull,
250 OPC_LD2_M3 = 0x0a040000000ull,
251 OPC_LD4_M1 = 0x08080000000ull,
252 OPC_LD4_M3 = 0x0a080000000ull,
253 OPC_LD8_M1 = 0x080c0000000ull,
254 OPC_LD8_M3 = 0x0a0c0000000ull,
255 OPC_MUX1_I3 = 0x0eca0000000ull,
256 OPC_NOP_B9 = 0x04008000000ull,
257 OPC_NOP_F16 = 0x00008000000ull,
258 OPC_NOP_I18 = 0x00008000000ull,
259 OPC_NOP_M48 = 0x00008000000ull,
260 OPC_MOV_I21 = 0x00e00100000ull,
261 OPC_MOV_RET_I21 = 0x00e00500000ull,
262 OPC_MOV_I22 = 0x00188000000ull,
263 OPC_MOV_I_I26 = 0x00150000000ull,
264 OPC_MOVL_X2 = 0x0c000000000ull,
265 OPC_OR_A1 = 0x10070000000ull,
25c9c73b 266 OPC_OR_A3 = 0x10170000000ull,
477ba620
AJ
267 OPC_SETF_EXP_M18 = 0x0c748000000ull,
268 OPC_SETF_SIG_M18 = 0x0c708000000ull,
269 OPC_SHL_I7 = 0x0f240000000ull,
270 OPC_SHR_I5 = 0x0f220000000ull,
271 OPC_SHR_U_I5 = 0x0f200000000ull,
272 OPC_SHRP_I10 = 0x0ac00000000ull,
273 OPC_SXT1_I29 = 0x000a0000000ull,
274 OPC_SXT2_I29 = 0x000a8000000ull,
275 OPC_SXT4_I29 = 0x000b0000000ull,
276 OPC_ST1_M4 = 0x08c00000000ull,
277 OPC_ST2_M4 = 0x08c40000000ull,
278 OPC_ST4_M4 = 0x08c80000000ull,
279 OPC_ST8_M4 = 0x08cc0000000ull,
280 OPC_SUB_A1 = 0x10028000000ull,
281 OPC_SUB_A3 = 0x10128000000ull,
282 OPC_UNPACK4_L_I2 = 0x0f860000000ull,
283 OPC_XMA_L_F2 = 0x1d000000000ull,
284 OPC_XOR_A1 = 0x10078000000ull,
25c9c73b 285 OPC_XOR_A3 = 0x10178000000ull,
477ba620
AJ
286 OPC_ZXT1_I29 = 0x00080000000ull,
287 OPC_ZXT2_I29 = 0x00088000000ull,
288 OPC_ZXT4_I29 = 0x00090000000ull,
5f7b1687
RH
289
290 INSN_NOP_M = OPC_NOP_M48, /* nop.m 0 */
291 INSN_NOP_I = OPC_NOP_I18, /* nop.i 0 */
477ba620
AJ
292};
293
294static inline uint64_t tcg_opc_a1(int qp, uint64_t opc, int r1,
295 int r2, int r3)
296{
297 return opc
298 | ((r3 & 0x7f) << 20)
299 | ((r2 & 0x7f) << 13)
300 | ((r1 & 0x7f) << 6)
301 | (qp & 0x3f);
302}
303
304static inline uint64_t tcg_opc_a3(int qp, uint64_t opc, int r1,
305 uint64_t imm, int r3)
306{
307 return opc
308 | ((imm & 0x80) << 29) /* s */
309 | ((imm & 0x7f) << 13) /* imm7b */
310 | ((r3 & 0x7f) << 20)
311 | ((r1 & 0x7f) << 6)
312 | (qp & 0x3f);
313}
314
315static inline uint64_t tcg_opc_a4(int qp, uint64_t opc, int r1,
316 uint64_t imm, int r3)
317{
318 return opc
319 | ((imm & 0x2000) << 23) /* s */
320 | ((imm & 0x1f80) << 20) /* imm6d */
321 | ((imm & 0x007f) << 13) /* imm7b */
322 | ((r3 & 0x7f) << 20)
323 | ((r1 & 0x7f) << 6)
324 | (qp & 0x3f);
325}
326
327static inline uint64_t tcg_opc_a5(int qp, uint64_t opc, int r1,
328 uint64_t imm, int r3)
329{
330 return opc
331 | ((imm & 0x200000) << 15) /* s */
332 | ((imm & 0x1f0000) << 6) /* imm5c */
333 | ((imm & 0x00ff80) << 20) /* imm9d */
334 | ((imm & 0x00007f) << 13) /* imm7b */
335 | ((r3 & 0x03) << 20)
336 | ((r1 & 0x7f) << 6)
337 | (qp & 0x3f);
338}
339
340static inline uint64_t tcg_opc_a6(int qp, uint64_t opc, int p1,
341 int p2, int r2, int r3)
342{
343 return opc
344 | ((p2 & 0x3f) << 27)
345 | ((r3 & 0x7f) << 20)
346 | ((r2 & 0x7f) << 13)
347 | ((p1 & 0x3f) << 6)
348 | (qp & 0x3f);
349}
350
351static inline uint64_t tcg_opc_b1(int qp, uint64_t opc, uint64_t imm)
352{
353 return opc
354 | ((imm & 0x100000) << 16) /* s */
355 | ((imm & 0x0fffff) << 13) /* imm20b */
356 | (qp & 0x3f);
357}
358
359static inline uint64_t tcg_opc_b4(int qp, uint64_t opc, int b2)
360{
361 return opc
362 | ((b2 & 0x7) << 13)
363 | (qp & 0x3f);
364}
365
366static inline uint64_t tcg_opc_b5(int qp, uint64_t opc, int b1, int b2)
367{
368 return opc
369 | ((b2 & 0x7) << 13)
370 | ((b1 & 0x7) << 6)
371 | (qp & 0x3f);
372}
373
374
375static inline uint64_t tcg_opc_b9(int qp, uint64_t opc, uint64_t imm)
376{
377 return opc
378 | ((imm & 0x100000) << 16) /* i */
379 | ((imm & 0x0fffff) << 6) /* imm20a */
380 | (qp & 0x3f);
381}
382
383static inline uint64_t tcg_opc_f1(int qp, uint64_t opc, int f1,
384 int f3, int f4, int f2)
385{
386 return opc
387 | ((f4 & 0x7f) << 27)
388 | ((f3 & 0x7f) << 20)
389 | ((f2 & 0x7f) << 13)
390 | ((f1 & 0x7f) << 6)
391 | (qp & 0x3f);
392}
393
394static inline uint64_t tcg_opc_f2(int qp, uint64_t opc, int f1,
395 int f3, int f4, int f2)
396{
397 return opc
398 | ((f4 & 0x7f) << 27)
399 | ((f3 & 0x7f) << 20)
400 | ((f2 & 0x7f) << 13)
401 | ((f1 & 0x7f) << 6)
402 | (qp & 0x3f);
403}
404
405static inline uint64_t tcg_opc_f6(int qp, uint64_t opc, int f1,
406 int p2, int f2, int f3)
407{
408 return opc
409 | ((p2 & 0x3f) << 27)
410 | ((f3 & 0x7f) << 20)
411 | ((f2 & 0x7f) << 13)
412 | ((f1 & 0x7f) << 6)
413 | (qp & 0x3f);
414}
415
416static inline uint64_t tcg_opc_f10(int qp, uint64_t opc, int f1, int f2)
417{
418 return opc
419 | ((f2 & 0x7f) << 13)
420 | ((f1 & 0x7f) << 6)
421 | (qp & 0x3f);
422}
423
424static inline uint64_t tcg_opc_f11(int qp, uint64_t opc, int f1, int f2)
425{
426 return opc
427 | ((f2 & 0x7f) << 13)
428 | ((f1 & 0x7f) << 6)
429 | (qp & 0x3f);
430}
431
432static inline uint64_t tcg_opc_f16(int qp, uint64_t opc, uint64_t imm)
433{
434 return opc
435 | ((imm & 0x100000) << 16) /* i */
436 | ((imm & 0x0fffff) << 6) /* imm20a */
437 | (qp & 0x3f);
438}
439
440static inline uint64_t tcg_opc_i2(int qp, uint64_t opc, int r1,
441 int r2, int r3)
442{
443 return opc
444 | ((r3 & 0x7f) << 20)
445 | ((r2 & 0x7f) << 13)
446 | ((r1 & 0x7f) << 6)
447 | (qp & 0x3f);
448}
449
450static inline uint64_t tcg_opc_i3(int qp, uint64_t opc, int r1,
451 int r2, int mbtype)
452{
453 return opc
454 | ((mbtype & 0x0f) << 20)
455 | ((r2 & 0x7f) << 13)
456 | ((r1 & 0x7f) << 6)
457 | (qp & 0x3f);
458}
459
460static inline uint64_t tcg_opc_i5(int qp, uint64_t opc, int r1,
461 int r3, int r2)
462{
463 return opc
464 | ((r3 & 0x7f) << 20)
465 | ((r2 & 0x7f) << 13)
466 | ((r1 & 0x7f) << 6)
467 | (qp & 0x3f);
468}
469
470static inline uint64_t tcg_opc_i7(int qp, uint64_t opc, int r1,
471 int r2, int r3)
472{
473 return opc
474 | ((r3 & 0x7f) << 20)
475 | ((r2 & 0x7f) << 13)
476 | ((r1 & 0x7f) << 6)
477 | (qp & 0x3f);
478}
479
480static inline uint64_t tcg_opc_i10(int qp, uint64_t opc, int r1,
481 int r2, int r3, uint64_t count)
482{
483 return opc
484 | ((count & 0x3f) << 27)
485 | ((r3 & 0x7f) << 20)
486 | ((r2 & 0x7f) << 13)
487 | ((r1 & 0x7f) << 6)
488 | (qp & 0x3f);
489}
490
491static inline uint64_t tcg_opc_i11(int qp, uint64_t opc, int r1,
492 int r3, uint64_t pos, uint64_t len)
493{
494 return opc
495 | ((len & 0x3f) << 27)
496 | ((r3 & 0x7f) << 20)
497 | ((pos & 0x3f) << 14)
498 | ((r1 & 0x7f) << 6)
499 | (qp & 0x3f);
500}
501
502static inline uint64_t tcg_opc_i12(int qp, uint64_t opc, int r1,
503 int r2, uint64_t pos, uint64_t len)
504{
505 return opc
506 | ((len & 0x3f) << 27)
507 | ((pos & 0x3f) << 20)
508 | ((r2 & 0x7f) << 13)
509 | ((r1 & 0x7f) << 6)
510 | (qp & 0x3f);
511}
512
63975ea7
AJ
513static inline uint64_t tcg_opc_i14(int qp, uint64_t opc, int r1, uint64_t imm,
514 int r3, uint64_t pos, uint64_t len)
515{
516 return opc
517 | ((imm & 0x01) << 36)
518 | ((len & 0x3f) << 27)
519 | ((r3 & 0x7f) << 20)
520 | ((pos & 0x3f) << 14)
521 | ((r1 & 0x7f) << 6)
522 | (qp & 0x3f);
523}
524
c7d4475a
RH
525static inline uint64_t tcg_opc_i15(int qp, uint64_t opc, int r1, int r2,
526 int r3, uint64_t pos, uint64_t len)
527{
528 return opc
529 | ((pos & 0x3f) << 31)
530 | ((len & 0x0f) << 27)
531 | ((r3 & 0x7f) << 20)
532 | ((r2 & 0x7f) << 13)
533 | ((r1 & 0x7f) << 6)
534 | (qp & 0x3f);
535}
536
477ba620
AJ
537static inline uint64_t tcg_opc_i18(int qp, uint64_t opc, uint64_t imm)
538{
539 return opc
540 | ((imm & 0x100000) << 16) /* i */
541 | ((imm & 0x0fffff) << 6) /* imm20a */
542 | (qp & 0x3f);
543}
544
545static inline uint64_t tcg_opc_i21(int qp, uint64_t opc, int b1,
546 int r2, uint64_t imm)
547{
548 return opc
549 | ((imm & 0x1ff) << 24)
550 | ((r2 & 0x7f) << 13)
551 | ((b1 & 0x7) << 6)
552 | (qp & 0x3f);
553}
554
555static inline uint64_t tcg_opc_i22(int qp, uint64_t opc, int r1, int b2)
556{
557 return opc
558 | ((b2 & 0x7) << 13)
559 | ((r1 & 0x7f) << 6)
560 | (qp & 0x3f);
561}
562
563static inline uint64_t tcg_opc_i26(int qp, uint64_t opc, int ar3, int r2)
564{
565 return opc
566 | ((ar3 & 0x7f) << 20)
567 | ((r2 & 0x7f) << 13)
568 | (qp & 0x3f);
569}
570
571static inline uint64_t tcg_opc_i29(int qp, uint64_t opc, int r1, int r3)
572{
573 return opc
574 | ((r3 & 0x7f) << 20)
575 | ((r1 & 0x7f) << 6)
576 | (qp & 0x3f);
577}
578
579static inline uint64_t tcg_opc_l2(uint64_t imm)
580{
581 return (imm & 0x7fffffffffc00000ull) >> 22;
582}
583
584static inline uint64_t tcg_opc_l3(uint64_t imm)
585{
586 return (imm & 0x07fffffffff00000ull) >> 18;
587}
588
6f65c780
RH
589#define tcg_opc_l4 tcg_opc_l3
590
477ba620
AJ
591static inline uint64_t tcg_opc_m1(int qp, uint64_t opc, int r1, int r3)
592{
593 return opc
594 | ((r3 & 0x7f) << 20)
595 | ((r1 & 0x7f) << 6)
596 | (qp & 0x3f);
597}
598
599static inline uint64_t tcg_opc_m3(int qp, uint64_t opc, int r1,
600 int r3, uint64_t imm)
601{
602 return opc
603 | ((imm & 0x100) << 28) /* s */
604 | ((imm & 0x080) << 20) /* i */
605 | ((imm & 0x07f) << 13) /* imm7b */
606 | ((r3 & 0x7f) << 20)
607 | ((r1 & 0x7f) << 6)
608 | (qp & 0x3f);
609}
610
611static inline uint64_t tcg_opc_m4(int qp, uint64_t opc, int r2, int r3)
612{
613 return opc
614 | ((r3 & 0x7f) << 20)
615 | ((r2 & 0x7f) << 13)
616 | (qp & 0x3f);
617}
618
619static inline uint64_t tcg_opc_m18(int qp, uint64_t opc, int f1, int r2)
620{
621 return opc
622 | ((r2 & 0x7f) << 13)
623 | ((f1 & 0x7f) << 6)
624 | (qp & 0x3f);
625}
626
627static inline uint64_t tcg_opc_m19(int qp, uint64_t opc, int r1, int f2)
628{
629 return opc
630 | ((f2 & 0x7f) << 13)
631 | ((r1 & 0x7f) << 6)
632 | (qp & 0x3f);
633}
634
635static inline uint64_t tcg_opc_m34(int qp, uint64_t opc, int r1,
636 int sof, int sol, int sor)
637{
638 return opc
639 | ((sor & 0x0f) << 27)
640 | ((sol & 0x7f) << 20)
641 | ((sof & 0x7f) << 13)
642 | ((r1 & 0x7f) << 6)
643 | (qp & 0x3f);
644}
645
646static inline uint64_t tcg_opc_m48(int qp, uint64_t opc, uint64_t imm)
647{
648 return opc
649 | ((imm & 0x100000) << 16) /* i */
650 | ((imm & 0x0fffff) << 6) /* imm20a */
651 | (qp & 0x3f);
652}
653
654static inline uint64_t tcg_opc_x2(int qp, uint64_t opc,
655 int r1, uint64_t imm)
656{
657 return opc
658 | ((imm & 0x8000000000000000ull) >> 27) /* i */
659 | (imm & 0x0000000000200000ull) /* ic */
660 | ((imm & 0x00000000001f0000ull) << 6) /* imm5c */
661 | ((imm & 0x000000000000ff80ull) << 20) /* imm9d */
662 | ((imm & 0x000000000000007full) << 13) /* imm7b */
663 | ((r1 & 0x7f) << 6)
664 | (qp & 0x3f);
665}
666
667static inline uint64_t tcg_opc_x3(int qp, uint64_t opc, uint64_t imm)
668{
669 return opc
670 | ((imm & 0x0800000000000000ull) >> 23) /* i */
671 | ((imm & 0x00000000000fffffull) << 13) /* imm20b */
672 | (qp & 0x3f);
673}
674
6f65c780
RH
675static inline uint64_t tcg_opc_x4(int qp, uint64_t opc, int b1, uint64_t imm)
676{
677 return opc
678 | ((imm & 0x0800000000000000ull) >> 23) /* i */
679 | ((imm & 0x00000000000fffffull) << 13) /* imm20b */
680 | ((b1 & 0x7) << 6)
681 | (qp & 0x3f);
682}
683
477ba620
AJ
684
685/*
686 * Relocations
687 */
688
2ba7fae2 689static inline void reloc_pcrel21b(void *pc, intptr_t target)
477ba620
AJ
690{
691 uint64_t imm;
692 int64_t disp;
693 int slot;
694
2ba7fae2
RH
695 slot = (intptr_t)pc & 3;
696 pc = (void *)((intptr_t)pc & ~3);
477ba620 697
2ba7fae2 698 disp = target - (intptr_t)pc;
477ba620
AJ
699 imm = (uint64_t) disp >> 4;
700
701 switch(slot) {
702 case 0:
703 *(uint64_t *)(pc + 0) = (*(uint64_t *)(pc + 8) & 0xfffffdc00003ffffull)
704 | ((imm & 0x100000) << 21) /* s */
705 | ((imm & 0x0fffff) << 18); /* imm20b */
706 break;
707 case 1:
708 *(uint64_t *)(pc + 8) = (*(uint64_t *)(pc + 8) & 0xfffffffffffb8000ull)
709 | ((imm & 0x100000) >> 2) /* s */
710 | ((imm & 0x0fffe0) >> 5); /* imm20b */
711 *(uint64_t *)(pc + 0) = (*(uint64_t *)(pc + 0) & 0x07ffffffffffffffull)
712 | ((imm & 0x00001f) << 59); /* imm20b */
713 break;
714 case 2:
715 *(uint64_t *)(pc + 8) = (*(uint64_t *)(pc + 8) & 0xf700000fffffffffull)
716 | ((imm & 0x100000) << 39) /* s */
717 | ((imm & 0x0fffff) << 36); /* imm20b */
718 break;
719 }
720}
721
722static inline uint64_t get_reloc_pcrel21b (void *pc)
723{
724 int64_t low, high;
725 int slot;
726
727 slot = (tcg_target_long) pc & 3;
728 pc = (void *)((tcg_target_long) pc & ~3);
729
730 low = (*(uint64_t *)(pc + 0));
731 high = (*(uint64_t *)(pc + 8));
732
733 switch(slot) {
734 case 0:
735 return ((low >> 21) & 0x100000) + /* s */
736 ((low >> 18) & 0x0fffff); /* imm20b */
737 case 1:
738 return ((high << 2) & 0x100000) + /* s */
739 ((high << 5) & 0x0fffe0) + /* imm20b */
740 ((low >> 59) & 0x00001f); /* imm20b */
741 case 2:
742 return ((high >> 39) & 0x100000) + /* s */
743 ((high >> 36) & 0x0fffff); /* imm20b */
744 default:
745 tcg_abort();
746 }
747}
748
2ba7fae2 749static inline void reloc_pcrel60b(void *pc, intptr_t target)
477ba620
AJ
750{
751 int64_t disp;
752 uint64_t imm;
753
2ba7fae2 754 disp = target - (intptr_t)pc;
477ba620
AJ
755 imm = (uint64_t) disp >> 4;
756
757 *(uint64_t *)(pc + 8) = (*(uint64_t *)(pc + 8) & 0xf700000fff800000ull)
758 | (imm & 0x0800000000000000ull) /* s */
759 | ((imm & 0x07fffff000000000ull) >> 36) /* imm39 */
760 | ((imm & 0x00000000000fffffull) << 36); /* imm20b */
761 *(uint64_t *)(pc + 0) = (*(uint64_t *)(pc + 0) & 0x00003fffffffffffull)
762 | ((imm & 0x0000000ffff00000ull) << 28); /* imm39 */
763}
764
765static inline uint64_t get_reloc_pcrel60b (void *pc)
766{
767 int64_t low, high;
768
769 low = (*(uint64_t *)(pc + 0));
770 high = (*(uint64_t *)(pc + 8));
771
772 return ((high) & 0x0800000000000000ull) + /* s */
773 ((high >> 36) & 0x00000000000fffffull) + /* imm20b */
774 ((high << 36) & 0x07fffff000000000ull) + /* imm39 */
775 ((low >> 28) & 0x0000000ffff00000ull); /* imm39 */
776}
777
778
779static void patch_reloc(uint8_t *code_ptr, int type,
2ba7fae2 780 intptr_t value, intptr_t addend)
477ba620
AJ
781{
782 value += addend;
783 switch (type) {
784 case R_IA64_PCREL21B:
785 reloc_pcrel21b(code_ptr, value);
786 break;
787 case R_IA64_PCREL60B:
788 reloc_pcrel60b(code_ptr, value);
789 default:
790 tcg_abort();
791 }
792}
793
794/*
795 * Constraints
796 */
797
798/* parse target specific constraints */
799static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str)
800{
801 const char *ct_str;
802
803 ct_str = *pct_str;
804 switch(ct_str[0]) {
805 case 'r':
806 ct->ct |= TCG_CT_REG;
807 tcg_regset_set(ct->u.regs, 0xffffffffffffffffull);
808 break;
809 case 'I':
810 ct->ct |= TCG_CT_CONST_S22;
811 break;
812 case 'S':
813 ct->ct |= TCG_CT_REG;
814 tcg_regset_set(ct->u.regs, 0xffffffffffffffffull);
815#if defined(CONFIG_SOFTMMU)
816 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R56);
817 tcg_regset_reset_reg(ct->u.regs, TCG_REG_R57);
818#endif
819 break;
820 case 'Z':
821 /* We are cheating a bit here, using the fact that the register
822 r0 is also the register number 0. Hence there is no need
823 to check for const_args in each instruction. */
824 ct->ct |= TCG_CT_CONST_ZERO;
825 break;
826 default:
827 return -1;
828 }
829 ct_str++;
830 *pct_str = ct_str;
831 return 0;
832}
833
834/* test if a constant matches the constraint */
835static inline int tcg_target_const_match(tcg_target_long val,
836 const TCGArgConstraint *arg_ct)
837{
838 int ct;
839 ct = arg_ct->ct;
840 if (ct & TCG_CT_CONST)
841 return 1;
842 else if ((ct & TCG_CT_CONST_ZERO) && val == 0)
843 return 1;
844 else if ((ct & TCG_CT_CONST_S22) && val == ((int32_t)val << 10) >> 10)
845 return 1;
846 else
847 return 0;
848}
849
850/*
851 * Code generation
852 */
853
854static uint8_t *tb_ret_addr;
855
856static inline void tcg_out_bundle(TCGContext *s, int template,
857 uint64_t slot0, uint64_t slot1,
858 uint64_t slot2)
859{
860 template &= 0x1f; /* 5 bits */
861 slot0 &= 0x1ffffffffffull; /* 41 bits */
862 slot1 &= 0x1ffffffffffull; /* 41 bits */
863 slot2 &= 0x1ffffffffffull; /* 41 bits */
864
865 *(uint64_t *)(s->code_ptr + 0) = (slot1 << 46) | (slot0 << 5) | template;
866 *(uint64_t *)(s->code_ptr + 8) = (slot2 << 23) | (slot1 >> 18);
867 s->code_ptr += 16;
868}
869
3b9ccdcc
RH
870static inline uint64_t tcg_opc_mov_a(int qp, TCGReg dst, TCGReg src)
871{
872 return tcg_opc_a4(qp, OPC_ADDS_A4, dst, 0, src);
873}
874
3b6dac34 875static inline void tcg_out_mov(TCGContext *s, TCGType type,
2a534aff 876 TCGReg ret, TCGReg arg)
477ba620
AJ
877{
878 tcg_out_bundle(s, mmI,
5f7b1687
RH
879 INSN_NOP_M,
880 INSN_NOP_M,
3b9ccdcc 881 tcg_opc_mov_a(TCG_REG_P0, ret, arg));
477ba620
AJ
882}
883
fa0cdb6c
RH
884static inline uint64_t tcg_opc_movi_a(int qp, TCGReg dst, int64_t src)
885{
886 assert(src == sextract64(src, 0, 22));
887 return tcg_opc_a5(qp, OPC_ADDL_A5, dst, src, TCG_REG_R0);
888}
889
477ba620 890static inline void tcg_out_movi(TCGContext *s, TCGType type,
2a534aff 891 TCGReg reg, tcg_target_long arg)
477ba620
AJ
892{
893 tcg_out_bundle(s, mLX,
5f7b1687 894 INSN_NOP_M,
477ba620
AJ
895 tcg_opc_l2 (arg),
896 tcg_opc_x2 (TCG_REG_P0, OPC_MOVL_X2, reg, arg));
897}
898
477ba620
AJ
899static void tcg_out_br(TCGContext *s, int label_index)
900{
901 TCGLabel *l = &s->labels[label_index];
902
56779034
AJ
903 /* We pay attention here to not modify the branch target by reading
904 the existing value and using it again. This ensure that caches and
905 memory are kept coherent during retranslation. */
477ba620 906 tcg_out_bundle(s, mmB,
5f7b1687
RH
907 INSN_NOP_M,
908 INSN_NOP_M,
477ba620
AJ
909 tcg_opc_b1 (TCG_REG_P0, OPC_BR_SPTK_MANY_B1,
910 get_reloc_pcrel21b(s->code_ptr + 2)));
911
912 if (l->has_value) {
913 reloc_pcrel21b((s->code_ptr - 16) + 2, l->u.value);
914 } else {
915 tcg_out_reloc(s, (s->code_ptr - 16) + 2,
916 R_IA64_PCREL21B, label_index, 0);
917 }
918}
919
6f65c780
RH
920static inline void tcg_out_calli(TCGContext *s, uintptr_t addr)
921{
922 /* Look through the function descriptor. */
923 uintptr_t disp, *desc = (uintptr_t *)addr;
924 tcg_out_bundle(s, mlx,
925 INSN_NOP_M,
926 tcg_opc_l2 (desc[1]),
927 tcg_opc_x2 (TCG_REG_P0, OPC_MOVL_X2, TCG_REG_R1, desc[1]));
928 disp = (desc[0] - (uintptr_t)s->code_ptr) >> 4;
929 tcg_out_bundle(s, mLX,
930 INSN_NOP_M,
931 tcg_opc_l4 (disp),
932 tcg_opc_x4 (TCG_REG_P0, OPC_BRL_CALL_SPTK_MANY_X4,
933 TCG_REG_B0, disp));
934}
935
936static inline void tcg_out_callr(TCGContext *s, TCGReg addr)
477ba620
AJ
937{
938 tcg_out_bundle(s, MmI,
939 tcg_opc_m1 (TCG_REG_P0, OPC_LD8_M1, TCG_REG_R2, addr),
940 tcg_opc_a4 (TCG_REG_P0, OPC_ADDS_A4, TCG_REG_R3, 8, addr),
941 tcg_opc_i21(TCG_REG_P0, OPC_MOV_I21,
942 TCG_REG_B6, TCG_REG_R2, 0));
943 tcg_out_bundle(s, mmB,
944 tcg_opc_m1 (TCG_REG_P0, OPC_LD8_M1, TCG_REG_R1, TCG_REG_R3),
5f7b1687 945 INSN_NOP_M,
477ba620
AJ
946 tcg_opc_b5 (TCG_REG_P0, OPC_BR_CALL_SPTK_MANY_B5,
947 TCG_REG_B0, TCG_REG_B6));
948}
949
950static void tcg_out_exit_tb(TCGContext *s, tcg_target_long arg)
951{
952 int64_t disp;
953 uint64_t imm;
954
955 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R8, arg);
956
957 disp = tb_ret_addr - s->code_ptr;
958 imm = (uint64_t)disp >> 4;
959
960 tcg_out_bundle(s, mLX,
5f7b1687 961 INSN_NOP_M,
477ba620
AJ
962 tcg_opc_l3 (imm),
963 tcg_opc_x3 (TCG_REG_P0, OPC_BRL_SPTK_MANY_X3, imm));
964}
965
966static inline void tcg_out_goto_tb(TCGContext *s, TCGArg arg)
967{
968 if (s->tb_jmp_offset) {
969 /* direct jump method */
970 tcg_abort();
971 } else {
972 /* indirect jump method */
973 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R2,
974 (tcg_target_long)(s->tb_next + arg));
975 tcg_out_bundle(s, MmI,
976 tcg_opc_m1 (TCG_REG_P0, OPC_LD8_M1,
977 TCG_REG_R2, TCG_REG_R2),
5f7b1687 978 INSN_NOP_M,
477ba620
AJ
979 tcg_opc_i21(TCG_REG_P0, OPC_MOV_I21, TCG_REG_B6,
980 TCG_REG_R2, 0));
981 tcg_out_bundle(s, mmB,
5f7b1687
RH
982 INSN_NOP_M,
983 INSN_NOP_M,
477ba620
AJ
984 tcg_opc_b4 (TCG_REG_P0, OPC_BR_SPTK_MANY_B4,
985 TCG_REG_B6));
986 }
987 s->tb_next_offset[arg] = s->code_ptr - s->code_buf;
988}
989
990static inline void tcg_out_jmp(TCGContext *s, TCGArg addr)
991{
992 tcg_out_bundle(s, mmI,
5f7b1687
RH
993 INSN_NOP_M,
994 INSN_NOP_M,
477ba620
AJ
995 tcg_opc_i21(TCG_REG_P0, OPC_MOV_I21, TCG_REG_B6, addr, 0));
996 tcg_out_bundle(s, mmB,
5f7b1687
RH
997 INSN_NOP_M,
998 INSN_NOP_M,
477ba620
AJ
999 tcg_opc_b4(TCG_REG_P0, OPC_BR_SPTK_MANY_B4, TCG_REG_B6));
1000}
1001
1002static inline void tcg_out_ld_rel(TCGContext *s, uint64_t opc_m4, TCGArg arg,
1003 TCGArg arg1, tcg_target_long arg2)
1004{
1005 if (arg2 == ((int16_t)arg2 >> 2) << 2) {
1006 tcg_out_bundle(s, MmI,
1007 tcg_opc_a4(TCG_REG_P0, OPC_ADDS_A4,
1008 TCG_REG_R2, arg2, arg1),
1009 tcg_opc_m1 (TCG_REG_P0, opc_m4, arg, TCG_REG_R2),
5f7b1687 1010 INSN_NOP_I);
477ba620
AJ
1011 } else {
1012 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R2, arg2);
1013 tcg_out_bundle(s, MmI,
1014 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1,
1015 TCG_REG_R2, TCG_REG_R2, arg1),
1016 tcg_opc_m1 (TCG_REG_P0, opc_m4, arg, TCG_REG_R2),
5f7b1687 1017 INSN_NOP_I);
477ba620
AJ
1018 }
1019}
1020
1021static inline void tcg_out_st_rel(TCGContext *s, uint64_t opc_m4, TCGArg arg,
1022 TCGArg arg1, tcg_target_long arg2)
1023{
1024 if (arg2 == ((int16_t)arg2 >> 2) << 2) {
1025 tcg_out_bundle(s, MmI,
1026 tcg_opc_a4(TCG_REG_P0, OPC_ADDS_A4,
1027 TCG_REG_R2, arg2, arg1),
1028 tcg_opc_m4 (TCG_REG_P0, opc_m4, arg, TCG_REG_R2),
5f7b1687 1029 INSN_NOP_I);
477ba620
AJ
1030 } else {
1031 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_R2, arg2);
1032 tcg_out_bundle(s, MmI,
1033 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1,
1034 TCG_REG_R2, TCG_REG_R2, arg1),
1035 tcg_opc_m4 (TCG_REG_P0, opc_m4, arg, TCG_REG_R2),
5f7b1687 1036 INSN_NOP_I);
477ba620
AJ
1037 }
1038}
1039
2a534aff 1040static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
a05b5b9b 1041 TCGReg arg1, intptr_t arg2)
477ba620
AJ
1042{
1043 if (type == TCG_TYPE_I32) {
1044 tcg_out_ld_rel(s, OPC_LD4_M1, arg, arg1, arg2);
1045 } else {
1046 tcg_out_ld_rel(s, OPC_LD8_M1, arg, arg1, arg2);
1047 }
1048}
1049
2a534aff 1050static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
a05b5b9b 1051 TCGReg arg1, intptr_t arg2)
477ba620
AJ
1052{
1053 if (type == TCG_TYPE_I32) {
1054 tcg_out_st_rel(s, OPC_ST4_M4, arg, arg1, arg2);
1055 } else {
1056 tcg_out_st_rel(s, OPC_ST8_M4, arg, arg1, arg2);
1057 }
1058}
1059
25c9c73b
RH
1060static inline void tcg_out_alu(TCGContext *s, uint64_t opc_a1, uint64_t opc_a3,
1061 TCGReg ret, TCGArg arg1, int const_arg1,
1062 TCGArg arg2, int const_arg2)
477ba620 1063{
25c9c73b 1064 uint64_t opc1 = 0, opc2 = 0, opc3 = 0;
477ba620
AJ
1065
1066 if (const_arg2 && arg2 != 0) {
fa0cdb6c 1067 opc2 = tcg_opc_movi_a(TCG_REG_P0, TCG_REG_R3, arg2);
477ba620 1068 arg2 = TCG_REG_R3;
477ba620 1069 }
25c9c73b
RH
1070 if (const_arg1 && arg1 != 0) {
1071 if (opc_a3 && arg1 == (int8_t)arg1) {
1072 opc3 = tcg_opc_a3(TCG_REG_P0, opc_a3, ret, arg1, arg2);
1073 } else {
fa0cdb6c 1074 opc1 = tcg_opc_movi_a(TCG_REG_P0, TCG_REG_R2, arg1);
25c9c73b
RH
1075 arg1 = TCG_REG_R2;
1076 }
1077 }
1078 if (opc3 == 0) {
1079 opc3 = tcg_opc_a1(TCG_REG_P0, opc_a1, ret, arg1, arg2);
1080 }
477ba620 1081
3c289cba
RH
1082 tcg_out_bundle(s, (opc1 || opc2 ? mII : miI),
1083 opc1 ? opc1 : INSN_NOP_M,
1084 opc2 ? opc2 : INSN_NOP_I,
25c9c73b 1085 opc3);
477ba620
AJ
1086}
1087
8642088a
RH
1088static inline void tcg_out_add(TCGContext *s, TCGReg ret, TCGReg arg1,
1089 TCGArg arg2, int const_arg2)
1090{
1091 if (const_arg2 && arg2 == sextract64(arg2, 0, 14)) {
1092 tcg_out_bundle(s, mmI,
1093 INSN_NOP_M,
1094 INSN_NOP_M,
1095 tcg_opc_a4(TCG_REG_P0, OPC_ADDS_A4, ret, arg2, arg1));
1096 } else {
25c9c73b 1097 tcg_out_alu(s, OPC_ADD_A1, 0, ret, arg1, 0, arg2, const_arg2);
8642088a
RH
1098 }
1099}
1100
f940fb08
RH
1101static inline void tcg_out_sub(TCGContext *s, TCGReg ret, TCGArg arg1,
1102 int const_arg1, TCGArg arg2, int const_arg2)
1103{
25c9c73b 1104 if (!const_arg1 && const_arg2 && -arg2 == sextract64(-arg2, 0, 14)) {
f940fb08
RH
1105 tcg_out_bundle(s, mmI,
1106 INSN_NOP_M,
1107 INSN_NOP_M,
1108 tcg_opc_a4(TCG_REG_P0, OPC_ADDS_A4, ret, -arg2, arg1));
1109 } else {
25c9c73b
RH
1110 tcg_out_alu(s, OPC_SUB_A1, OPC_SUB_A3, ret,
1111 arg1, const_arg1, arg2, const_arg2);
f940fb08
RH
1112 }
1113}
1114
477ba620
AJ
1115static inline void tcg_out_eqv(TCGContext *s, TCGArg ret,
1116 TCGArg arg1, int const_arg1,
1117 TCGArg arg2, int const_arg2)
1118{
1119 tcg_out_bundle(s, mII,
5f7b1687 1120 INSN_NOP_M,
477ba620
AJ
1121 tcg_opc_a1 (TCG_REG_P0, OPC_XOR_A1, ret, arg1, arg2),
1122 tcg_opc_a3 (TCG_REG_P0, OPC_ANDCM_A3, ret, -1, ret));
1123}
1124
1125static inline void tcg_out_nand(TCGContext *s, TCGArg ret,
1126 TCGArg arg1, int const_arg1,
1127 TCGArg arg2, int const_arg2)
1128{
1129 tcg_out_bundle(s, mII,
5f7b1687 1130 INSN_NOP_M,
477ba620
AJ
1131 tcg_opc_a1 (TCG_REG_P0, OPC_AND_A1, ret, arg1, arg2),
1132 tcg_opc_a3 (TCG_REG_P0, OPC_ANDCM_A3, ret, -1, ret));
1133}
1134
1135static inline void tcg_out_nor(TCGContext *s, TCGArg ret,
1136 TCGArg arg1, int const_arg1,
1137 TCGArg arg2, int const_arg2)
1138{
1139 tcg_out_bundle(s, mII,
5f7b1687 1140 INSN_NOP_M,
477ba620
AJ
1141 tcg_opc_a1 (TCG_REG_P0, OPC_OR_A1, ret, arg1, arg2),
1142 tcg_opc_a3 (TCG_REG_P0, OPC_ANDCM_A3, ret, -1, ret));
1143}
1144
1145static inline void tcg_out_orc(TCGContext *s, TCGArg ret,
1146 TCGArg arg1, int const_arg1,
1147 TCGArg arg2, int const_arg2)
1148{
1149 tcg_out_bundle(s, mII,
5f7b1687 1150 INSN_NOP_M,
477ba620
AJ
1151 tcg_opc_a3 (TCG_REG_P0, OPC_ANDCM_A3, TCG_REG_R2, -1, arg2),
1152 tcg_opc_a1 (TCG_REG_P0, OPC_OR_A1, ret, arg1, TCG_REG_R2));
1153}
1154
1155static inline void tcg_out_mul(TCGContext *s, TCGArg ret,
1156 TCGArg arg1, TCGArg arg2)
1157{
1158 tcg_out_bundle(s, mmI,
1159 tcg_opc_m18(TCG_REG_P0, OPC_SETF_SIG_M18, TCG_REG_F6, arg1),
1160 tcg_opc_m18(TCG_REG_P0, OPC_SETF_SIG_M18, TCG_REG_F7, arg2),
5f7b1687 1161 INSN_NOP_I);
477ba620 1162 tcg_out_bundle(s, mmF,
5f7b1687
RH
1163 INSN_NOP_M,
1164 INSN_NOP_M,
477ba620
AJ
1165 tcg_opc_f2 (TCG_REG_P0, OPC_XMA_L_F2, TCG_REG_F6, TCG_REG_F6,
1166 TCG_REG_F7, TCG_REG_F0));
1167 tcg_out_bundle(s, miI,
1168 tcg_opc_m19(TCG_REG_P0, OPC_GETF_SIG_M19, ret, TCG_REG_F6),
5f7b1687
RH
1169 INSN_NOP_I,
1170 INSN_NOP_I);
477ba620
AJ
1171}
1172
1173static inline void tcg_out_sar_i32(TCGContext *s, TCGArg ret, TCGArg arg1,
1174 TCGArg arg2, int const_arg2)
1175{
1176 if (const_arg2) {
1177 tcg_out_bundle(s, miI,
5f7b1687
RH
1178 INSN_NOP_M,
1179 INSN_NOP_I,
477ba620
AJ
1180 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_I11,
1181 ret, arg1, arg2, 31 - arg2));
1182 } else {
1183 tcg_out_bundle(s, mII,
1184 tcg_opc_a3 (TCG_REG_P0, OPC_AND_A3,
1185 TCG_REG_R3, 0x1f, arg2),
1186 tcg_opc_i29(TCG_REG_P0, OPC_SXT4_I29, TCG_REG_R2, arg1),
1187 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_I5, ret,
1188 TCG_REG_R2, TCG_REG_R3));
1189 }
1190}
1191
1192static inline void tcg_out_sar_i64(TCGContext *s, TCGArg ret, TCGArg arg1,
1193 TCGArg arg2, int const_arg2)
1194{
1195 if (const_arg2) {
1196 tcg_out_bundle(s, miI,
5f7b1687
RH
1197 INSN_NOP_M,
1198 INSN_NOP_I,
477ba620
AJ
1199 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_I11,
1200 ret, arg1, arg2, 63 - arg2));
1201 } else {
1202 tcg_out_bundle(s, miI,
5f7b1687
RH
1203 INSN_NOP_M,
1204 INSN_NOP_I,
477ba620
AJ
1205 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_I5, ret, arg1, arg2));
1206 }
1207}
1208
1209static inline void tcg_out_shl_i32(TCGContext *s, TCGArg ret, TCGArg arg1,
1210 TCGArg arg2, int const_arg2)
1211{
1212 if (const_arg2) {
1213 tcg_out_bundle(s, miI,
5f7b1687
RH
1214 INSN_NOP_M,
1215 INSN_NOP_I,
477ba620
AJ
1216 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12, ret,
1217 arg1, 63 - arg2, 31 - arg2));
1218 } else {
1219 tcg_out_bundle(s, mII,
5f7b1687 1220 INSN_NOP_M,
477ba620
AJ
1221 tcg_opc_a3 (TCG_REG_P0, OPC_AND_A3, TCG_REG_R2,
1222 0x1f, arg2),
1223 tcg_opc_i7 (TCG_REG_P0, OPC_SHL_I7, ret,
1224 arg1, TCG_REG_R2));
1225 }
1226}
1227
1228static inline void tcg_out_shl_i64(TCGContext *s, TCGArg ret, TCGArg arg1,
1229 TCGArg arg2, int const_arg2)
1230{
1231 if (const_arg2) {
1232 tcg_out_bundle(s, miI,
5f7b1687
RH
1233 INSN_NOP_M,
1234 INSN_NOP_I,
477ba620
AJ
1235 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12, ret,
1236 arg1, 63 - arg2, 63 - arg2));
1237 } else {
1238 tcg_out_bundle(s, miI,
5f7b1687
RH
1239 INSN_NOP_M,
1240 INSN_NOP_I,
477ba620
AJ
1241 tcg_opc_i7 (TCG_REG_P0, OPC_SHL_I7, ret,
1242 arg1, arg2));
1243 }
1244}
1245
1246static inline void tcg_out_shr_i32(TCGContext *s, TCGArg ret, TCGArg arg1,
1247 TCGArg arg2, int const_arg2)
1248{
1249 if (const_arg2) {
1250 tcg_out_bundle(s, miI,
5f7b1687
RH
1251 INSN_NOP_M,
1252 INSN_NOP_I,
477ba620
AJ
1253 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_U_I11, ret,
1254 arg1, arg2, 31 - arg2));
1255 } else {
1256 tcg_out_bundle(s, mII,
1257 tcg_opc_a3 (TCG_REG_P0, OPC_AND_A3, TCG_REG_R3,
1258 0x1f, arg2),
1259 tcg_opc_i29(TCG_REG_P0, OPC_ZXT4_I29, TCG_REG_R2, arg1),
1260 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, ret,
1261 TCG_REG_R2, TCG_REG_R3));
1262 }
1263}
1264
1265static inline void tcg_out_shr_i64(TCGContext *s, TCGArg ret, TCGArg arg1,
1266 TCGArg arg2, int const_arg2)
1267{
1268 if (const_arg2) {
1269 tcg_out_bundle(s, miI,
5f7b1687
RH
1270 INSN_NOP_M,
1271 INSN_NOP_I,
477ba620
AJ
1272 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_U_I11, ret,
1273 arg1, arg2, 63 - arg2));
1274 } else {
1275 tcg_out_bundle(s, miI,
5f7b1687
RH
1276 INSN_NOP_M,
1277 INSN_NOP_I,
477ba620
AJ
1278 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, ret,
1279 arg1, arg2));
1280 }
1281}
1282
1283static inline void tcg_out_rotl_i32(TCGContext *s, TCGArg ret, TCGArg arg1,
1284 TCGArg arg2, int const_arg2)
1285{
1286 if (const_arg2) {
1287 tcg_out_bundle(s, mII,
5f7b1687 1288 INSN_NOP_M,
477ba620
AJ
1289 tcg_opc_i2 (TCG_REG_P0, OPC_UNPACK4_L_I2,
1290 TCG_REG_R2, arg1, arg1),
1291 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_U_I11, ret,
1292 TCG_REG_R2, 32 - arg2, 31));
1293 } else {
1294 tcg_out_bundle(s, miI,
5f7b1687 1295 INSN_NOP_M,
477ba620
AJ
1296 tcg_opc_i2 (TCG_REG_P0, OPC_UNPACK4_L_I2,
1297 TCG_REG_R2, arg1, arg1),
1298 tcg_opc_a3 (TCG_REG_P0, OPC_AND_A3, TCG_REG_R3,
1299 0x1f, arg2));
1300 tcg_out_bundle(s, mII,
5f7b1687 1301 INSN_NOP_M,
477ba620
AJ
1302 tcg_opc_a3 (TCG_REG_P0, OPC_SUB_A3, TCG_REG_R3,
1303 0x20, TCG_REG_R3),
1304 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, ret,
1305 TCG_REG_R2, TCG_REG_R3));
1306 }
1307}
1308
1309static inline void tcg_out_rotl_i64(TCGContext *s, TCGArg ret, TCGArg arg1,
1310 TCGArg arg2, int const_arg2)
1311{
1312 if (const_arg2) {
1313 tcg_out_bundle(s, miI,
5f7b1687
RH
1314 INSN_NOP_M,
1315 INSN_NOP_I,
477ba620
AJ
1316 tcg_opc_i10(TCG_REG_P0, OPC_SHRP_I10, ret, arg1,
1317 arg1, 0x40 - arg2));
1318 } else {
1319 tcg_out_bundle(s, mII,
1320 tcg_opc_a3 (TCG_REG_P0, OPC_SUB_A3, TCG_REG_R2,
1321 0x40, arg2),
1322 tcg_opc_i7 (TCG_REG_P0, OPC_SHL_I7, TCG_REG_R3,
1323 arg1, arg2),
1324 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, TCG_REG_R2,
1325 arg1, TCG_REG_R2));
1326 tcg_out_bundle(s, miI,
5f7b1687
RH
1327 INSN_NOP_M,
1328 INSN_NOP_I,
477ba620
AJ
1329 tcg_opc_a1 (TCG_REG_P0, OPC_OR_A1, ret,
1330 TCG_REG_R2, TCG_REG_R3));
1331 }
1332}
1333
1334static inline void tcg_out_rotr_i32(TCGContext *s, TCGArg ret, TCGArg arg1,
1335 TCGArg arg2, int const_arg2)
1336{
1337 if (const_arg2) {
1338 tcg_out_bundle(s, mII,
5f7b1687 1339 INSN_NOP_M,
477ba620
AJ
1340 tcg_opc_i2 (TCG_REG_P0, OPC_UNPACK4_L_I2,
1341 TCG_REG_R2, arg1, arg1),
1342 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_U_I11, ret,
1343 TCG_REG_R2, arg2, 31));
1344 } else {
1345 tcg_out_bundle(s, mII,
1346 tcg_opc_a3 (TCG_REG_P0, OPC_AND_A3, TCG_REG_R3,
1347 0x1f, arg2),
1348 tcg_opc_i2 (TCG_REG_P0, OPC_UNPACK4_L_I2,
1349 TCG_REG_R2, arg1, arg1),
1350 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, ret,
1351 TCG_REG_R2, TCG_REG_R3));
1352 }
1353}
1354
1355static inline void tcg_out_rotr_i64(TCGContext *s, TCGArg ret, TCGArg arg1,
1356 TCGArg arg2, int const_arg2)
1357{
1358 if (const_arg2) {
1359 tcg_out_bundle(s, miI,
5f7b1687
RH
1360 INSN_NOP_M,
1361 INSN_NOP_I,
477ba620
AJ
1362 tcg_opc_i10(TCG_REG_P0, OPC_SHRP_I10, ret, arg1,
1363 arg1, arg2));
1364 } else {
1365 tcg_out_bundle(s, mII,
1366 tcg_opc_a3 (TCG_REG_P0, OPC_SUB_A3, TCG_REG_R2,
1367 0x40, arg2),
1368 tcg_opc_i5 (TCG_REG_P0, OPC_SHR_U_I5, TCG_REG_R3,
1369 arg1, arg2),
1370 tcg_opc_i7 (TCG_REG_P0, OPC_SHL_I7, TCG_REG_R2,
1371 arg1, TCG_REG_R2));
1372 tcg_out_bundle(s, miI,
5f7b1687
RH
1373 INSN_NOP_M,
1374 INSN_NOP_I,
477ba620
AJ
1375 tcg_opc_a1 (TCG_REG_P0, OPC_OR_A1, ret,
1376 TCG_REG_R2, TCG_REG_R3));
1377 }
1378}
1379
db008a8d
RH
1380static const uint64_t opc_ext_i29[8] = {
1381 OPC_ZXT1_I29, OPC_ZXT2_I29, OPC_ZXT4_I29, 0,
1382 OPC_SXT1_I29, OPC_SXT2_I29, OPC_SXT4_I29, 0
1383};
1384
1385static inline uint64_t tcg_opc_ext_i(int qp, TCGMemOp opc, TCGReg d, TCGReg s)
1386{
1387 if ((opc & MO_SIZE) == MO_64) {
1388 return tcg_opc_mov_a(qp, d, s);
1389 } else {
1390 return tcg_opc_i29(qp, opc_ext_i29[opc & MO_SSIZE], d, s);
1391 }
1392}
1393
477ba620
AJ
1394static inline void tcg_out_ext(TCGContext *s, uint64_t opc_i29,
1395 TCGArg ret, TCGArg arg)
1396{
1397 tcg_out_bundle(s, miI,
5f7b1687
RH
1398 INSN_NOP_M,
1399 INSN_NOP_I,
477ba620
AJ
1400 tcg_opc_i29(TCG_REG_P0, opc_i29, ret, arg));
1401}
1402
463230d8
RH
1403static inline uint64_t tcg_opc_bswap64_i(int qp, TCGReg d, TCGReg s)
1404{
1405 return tcg_opc_i3(qp, OPC_MUX1_I3, d, s, 0xb);
1406}
1407
477ba620
AJ
1408static inline void tcg_out_bswap16(TCGContext *s, TCGArg ret, TCGArg arg)
1409{
1410 tcg_out_bundle(s, mII,
5f7b1687 1411 INSN_NOP_M,
477ba620 1412 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12, ret, arg, 15, 15),
463230d8 1413 tcg_opc_bswap64_i(TCG_REG_P0, ret, ret));
477ba620
AJ
1414}
1415
1416static inline void tcg_out_bswap32(TCGContext *s, TCGArg ret, TCGArg arg)
1417{
1418 tcg_out_bundle(s, mII,
5f7b1687 1419 INSN_NOP_M,
477ba620 1420 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12, ret, arg, 31, 31),
463230d8 1421 tcg_opc_bswap64_i(TCG_REG_P0, ret, ret));
477ba620
AJ
1422}
1423
1424static inline void tcg_out_bswap64(TCGContext *s, TCGArg ret, TCGArg arg)
1425{
a3e28aa5 1426 tcg_out_bundle(s, miI,
5f7b1687
RH
1427 INSN_NOP_M,
1428 INSN_NOP_I,
463230d8 1429 tcg_opc_bswap64_i(TCG_REG_P0, ret, arg));
477ba620
AJ
1430}
1431
c7d4475a
RH
1432static inline void tcg_out_deposit(TCGContext *s, TCGArg ret, TCGArg a1,
1433 TCGArg a2, int const_a2, int pos, int len)
1434{
1435 uint64_t i1 = 0, i2 = 0;
1436 int cpos = 63 - pos, lm1 = len - 1;
1437
1438 if (const_a2) {
1439 /* Truncate the value of a constant a2 to the width of the field. */
1440 int mask = (1u << len) - 1;
1441 a2 &= mask;
1442
1443 if (a2 == 0 || a2 == mask) {
1444 /* 1-bit signed constant inserted into register. */
1445 i2 = tcg_opc_i14(TCG_REG_P0, OPC_DEP_I14, ret, a2, a1, cpos, lm1);
1446 } else {
1447 /* Otherwise, load any constant into a temporary. Do this into
1448 the first I slot to help out with cross-unit delays. */
fa0cdb6c 1449 i1 = tcg_opc_movi_a(TCG_REG_P0, TCG_REG_R2, a2);
c7d4475a
RH
1450 a2 = TCG_REG_R2;
1451 }
1452 }
1453 if (i2 == 0) {
1454 i2 = tcg_opc_i15(TCG_REG_P0, OPC_DEP_I15, ret, a2, a1, cpos, lm1);
1455 }
1456 tcg_out_bundle(s, (i1 ? mII : miI),
5f7b1687
RH
1457 INSN_NOP_M,
1458 i1 ? i1 : INSN_NOP_I,
c7d4475a
RH
1459 i2);
1460}
1461
477ba620
AJ
1462static inline uint64_t tcg_opc_cmp_a(int qp, TCGCond cond, TCGArg arg1,
1463 TCGArg arg2, int cmp4)
1464{
1465 uint64_t opc_eq_a6, opc_lt_a6, opc_ltu_a6;
1466
1467 if (cmp4) {
1468 opc_eq_a6 = OPC_CMP4_EQ_A6;
1469 opc_lt_a6 = OPC_CMP4_LT_A6;
1470 opc_ltu_a6 = OPC_CMP4_LTU_A6;
1471 } else {
1472 opc_eq_a6 = OPC_CMP_EQ_A6;
1473 opc_lt_a6 = OPC_CMP_LT_A6;
1474 opc_ltu_a6 = OPC_CMP_LTU_A6;
1475 }
1476
1477 switch (cond) {
1478 case TCG_COND_EQ:
1479 return tcg_opc_a6 (qp, opc_eq_a6, TCG_REG_P6, TCG_REG_P7, arg1, arg2);
1480 case TCG_COND_NE:
1481 return tcg_opc_a6 (qp, opc_eq_a6, TCG_REG_P7, TCG_REG_P6, arg1, arg2);
1482 case TCG_COND_LT:
1483 return tcg_opc_a6 (qp, opc_lt_a6, TCG_REG_P6, TCG_REG_P7, arg1, arg2);
1484 case TCG_COND_LTU:
1485 return tcg_opc_a6 (qp, opc_ltu_a6, TCG_REG_P6, TCG_REG_P7, arg1, arg2);
1486 case TCG_COND_GE:
1487 return tcg_opc_a6 (qp, opc_lt_a6, TCG_REG_P7, TCG_REG_P6, arg1, arg2);
1488 case TCG_COND_GEU:
1489 return tcg_opc_a6 (qp, opc_ltu_a6, TCG_REG_P7, TCG_REG_P6, arg1, arg2);
1490 case TCG_COND_LE:
1491 return tcg_opc_a6 (qp, opc_lt_a6, TCG_REG_P7, TCG_REG_P6, arg2, arg1);
1492 case TCG_COND_LEU:
1493 return tcg_opc_a6 (qp, opc_ltu_a6, TCG_REG_P7, TCG_REG_P6, arg2, arg1);
1494 case TCG_COND_GT:
1495 return tcg_opc_a6 (qp, opc_lt_a6, TCG_REG_P6, TCG_REG_P7, arg2, arg1);
1496 case TCG_COND_GTU:
1497 return tcg_opc_a6 (qp, opc_ltu_a6, TCG_REG_P6, TCG_REG_P7, arg2, arg1);
1498 default:
1499 tcg_abort();
1500 break;
1501 }
1502}
1503
6d264b38
RH
1504static inline void tcg_out_brcond(TCGContext *s, TCGCond cond, TCGReg arg1,
1505 TCGReg arg2, int label_index, int cmp4)
477ba620
AJ
1506{
1507 TCGLabel *l = &s->labels[label_index];
477ba620 1508
6d264b38 1509 tcg_out_bundle(s, miB,
5f7b1687 1510 INSN_NOP_M,
6d264b38
RH
1511 tcg_opc_cmp_a(TCG_REG_P0, cond, arg1, arg2, cmp4),
1512 tcg_opc_b1(TCG_REG_P6, OPC_BR_DPTK_FEW_B1,
1513 get_reloc_pcrel21b(s->code_ptr + 2)));
477ba620
AJ
1514
1515 if (l->has_value) {
1516 reloc_pcrel21b((s->code_ptr - 16) + 2, l->u.value);
1517 } else {
1518 tcg_out_reloc(s, (s->code_ptr - 16) + 2,
1519 R_IA64_PCREL21B, label_index, 0);
1520 }
1521}
1522
1523static inline void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGArg ret,
1524 TCGArg arg1, TCGArg arg2, int cmp4)
1525{
1526 tcg_out_bundle(s, MmI,
1527 tcg_opc_cmp_a(TCG_REG_P0, cond, arg1, arg2, cmp4),
fa0cdb6c
RH
1528 tcg_opc_movi_a(TCG_REG_P6, ret, 1),
1529 tcg_opc_movi_a(TCG_REG_P7, ret, 0));
477ba620
AJ
1530}
1531
b90cf716
AJ
1532static inline void tcg_out_movcond(TCGContext *s, TCGCond cond, TCGArg ret,
1533 TCGArg c1, TCGArg c2,
1534 TCGArg v1, int const_v1,
1535 TCGArg v2, int const_v2, int cmp4)
1536{
1537 uint64_t opc1, opc2;
1538
1539 if (const_v1) {
fa0cdb6c 1540 opc1 = tcg_opc_movi_a(TCG_REG_P6, ret, v1);
b90cf716 1541 } else if (ret == v1) {
5f7b1687 1542 opc1 = INSN_NOP_M;
b90cf716 1543 } else {
3b9ccdcc 1544 opc1 = tcg_opc_mov_a(TCG_REG_P6, ret, v1);
b90cf716
AJ
1545 }
1546 if (const_v2) {
fa0cdb6c 1547 opc2 = tcg_opc_movi_a(TCG_REG_P7, ret, v2);
b90cf716 1548 } else if (ret == v2) {
5f7b1687 1549 opc2 = INSN_NOP_I;
b90cf716 1550 } else {
3b9ccdcc 1551 opc2 = tcg_opc_mov_a(TCG_REG_P7, ret, v2);
b90cf716
AJ
1552 }
1553
1554 tcg_out_bundle(s, MmI,
1555 tcg_opc_cmp_a(TCG_REG_P0, cond, c1, c2, cmp4),
1556 opc1,
1557 opc2);
1558}
1559
477ba620 1560#if defined(CONFIG_SOFTMMU)
477ba620
AJ
1561/* Load and compare a TLB entry, and return the result in (p6, p7).
1562 R2 is loaded with the address of the addend TLB entry.
2174d1e1 1563 R57 is loaded with the address, zero extented on 32-bit targets. */
477ba620 1564static inline void tcg_out_qemu_tlb(TCGContext *s, TCGArg addr_reg,
e3afa1c4 1565 TCGMemOp s_bits, uint64_t offset_rw,
477ba620
AJ
1566 uint64_t offset_addend)
1567{
1568 tcg_out_bundle(s, mII,
5f7b1687 1569 INSN_NOP_M,
477ba620
AJ
1570 tcg_opc_i11(TCG_REG_P0, OPC_EXTR_U_I11, TCG_REG_R2,
1571 addr_reg, TARGET_PAGE_BITS, CPU_TLB_BITS - 1),
1572 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12, TCG_REG_R2,
1573 TCG_REG_R2, 63 - CPU_TLB_ENTRY_BITS,
1574 63 - CPU_TLB_ENTRY_BITS));
1575 tcg_out_bundle(s, mII,
1576 tcg_opc_a5 (TCG_REG_P0, OPC_ADDL_A5, TCG_REG_R2,
1577 offset_rw, TCG_REG_R2),
db008a8d
RH
1578 tcg_opc_ext_i(TCG_REG_P0,
1579 TARGET_LONG_BITS == 32 ? MO_UL : MO_Q,
1580 TCG_REG_R57, addr_reg),
477ba620
AJ
1581 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, TCG_REG_R2,
1582 TCG_REG_R2, TCG_AREG0));
1583 tcg_out_bundle(s, mII,
650a217a
RH
1584 tcg_opc_m3 (TCG_REG_P0,
1585 (TARGET_LONG_BITS == 32
2174d1e1 1586 ? OPC_LD4_M3 : OPC_LD8_M3), TCG_REG_R56,
477ba620 1587 TCG_REG_R2, offset_addend - offset_rw),
63975ea7
AJ
1588 tcg_opc_i14(TCG_REG_P0, OPC_DEP_I14, TCG_REG_R3, 0,
1589 TCG_REG_R57, 63 - s_bits,
1590 TARGET_PAGE_BITS - s_bits - 1),
477ba620 1591 tcg_opc_a6 (TCG_REG_P0, OPC_CMP_EQ_A6, TCG_REG_P6,
2174d1e1 1592 TCG_REG_P7, TCG_REG_R3, TCG_REG_R56));
477ba620
AJ
1593}
1594
e141ab52
BS
1595/* helper signature: helper_ld_mmu(CPUState *env, target_ulong addr,
1596 int mmu_idx) */
1597static const void * const qemu_ld_helpers[4] = {
1598 helper_ldb_mmu,
1599 helper_ldw_mmu,
1600 helper_ldl_mmu,
1601 helper_ldq_mmu,
1602};
477ba620 1603
e3afa1c4
RH
1604static inline void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args,
1605 TCGMemOp opc)
477ba620 1606{
e3afa1c4
RH
1607 static const uint64_t opc_ld_m1[4] = {
1608 OPC_LD1_M1, OPC_LD2_M1, OPC_LD4_M1, OPC_LD8_M1
1609 };
e3afa1c4
RH
1610 int addr_reg, data_reg, mem_index;
1611 TCGMemOp s_bits, bswap;
477ba620
AJ
1612
1613 data_reg = *args++;
1614 addr_reg = *args++;
1615 mem_index = *args;
e3afa1c4
RH
1616 s_bits = opc & MO_SIZE;
1617 bswap = opc & MO_BSWAP;
477ba620
AJ
1618
1619 /* Read the TLB entry */
1620 tcg_out_qemu_tlb(s, addr_reg, s_bits,
9349b4f9
AF
1621 offsetof(CPUArchState, tlb_table[mem_index][0].addr_read),
1622 offsetof(CPUArchState, tlb_table[mem_index][0].addend));
477ba620
AJ
1623
1624 /* P6 is the fast path, and P7 the slow path */
1625 tcg_out_bundle(s, mLX,
3b9ccdcc 1626 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R56, TCG_AREG0),
477ba620
AJ
1627 tcg_opc_l2 ((tcg_target_long) qemu_ld_helpers[s_bits]),
1628 tcg_opc_x2 (TCG_REG_P7, OPC_MOVL_X2, TCG_REG_R2,
1629 (tcg_target_long) qemu_ld_helpers[s_bits]));
1630 tcg_out_bundle(s, MmI,
1631 tcg_opc_m3 (TCG_REG_P0, OPC_LD8_M3, TCG_REG_R3,
1632 TCG_REG_R2, 8),
1633 tcg_opc_a1 (TCG_REG_P6, OPC_ADD_A1, TCG_REG_R3,
2174d1e1 1634 TCG_REG_R3, TCG_REG_R57),
477ba620
AJ
1635 tcg_opc_i21(TCG_REG_P7, OPC_MOV_I21, TCG_REG_B6,
1636 TCG_REG_R3, 0));
e3afa1c4 1637 if (bswap && s_bits == MO_16) {
477ba620
AJ
1638 tcg_out_bundle(s, MmI,
1639 tcg_opc_m1 (TCG_REG_P6, opc_ld_m1[s_bits],
1640 TCG_REG_R8, TCG_REG_R3),
1641 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1, TCG_REG_R1, TCG_REG_R2),
1642 tcg_opc_i12(TCG_REG_P6, OPC_DEP_Z_I12,
1643 TCG_REG_R8, TCG_REG_R8, 15, 15));
e3afa1c4 1644 } else if (bswap && s_bits == MO_32) {
477ba620
AJ
1645 tcg_out_bundle(s, MmI,
1646 tcg_opc_m1 (TCG_REG_P6, opc_ld_m1[s_bits],
1647 TCG_REG_R8, TCG_REG_R3),
1648 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1, TCG_REG_R1, TCG_REG_R2),
1649 tcg_opc_i12(TCG_REG_P6, OPC_DEP_Z_I12,
1650 TCG_REG_R8, TCG_REG_R8, 31, 31));
1651 } else {
1652 tcg_out_bundle(s, mmI,
1653 tcg_opc_m1 (TCG_REG_P6, opc_ld_m1[s_bits],
1654 TCG_REG_R8, TCG_REG_R3),
1655 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1, TCG_REG_R1, TCG_REG_R2),
5f7b1687 1656 INSN_NOP_I);
477ba620 1657 }
e3afa1c4 1658 if (!bswap) {
477ba620 1659 tcg_out_bundle(s, miB,
fa0cdb6c 1660 tcg_opc_movi_a(TCG_REG_P7, TCG_REG_R58, mem_index),
5f7b1687 1661 INSN_NOP_I,
477ba620
AJ
1662 tcg_opc_b5 (TCG_REG_P7, OPC_BR_CALL_SPTK_MANY_B5,
1663 TCG_REG_B0, TCG_REG_B6));
1664 } else {
1665 tcg_out_bundle(s, miB,
fa0cdb6c 1666 tcg_opc_movi_a(TCG_REG_P7, TCG_REG_R58, mem_index),
463230d8 1667 tcg_opc_bswap64_i(TCG_REG_P6, TCG_REG_R8, TCG_REG_R8),
477ba620
AJ
1668 tcg_opc_b5 (TCG_REG_P7, OPC_BR_CALL_SPTK_MANY_B5,
1669 TCG_REG_B0, TCG_REG_B6));
1670 }
1671
db008a8d
RH
1672 tcg_out_bundle(s, miI,
1673 INSN_NOP_M,
1674 INSN_NOP_I,
1675 tcg_opc_ext_i(TCG_REG_P0, opc, data_reg, TCG_REG_R8));
477ba620
AJ
1676}
1677
e141ab52
BS
1678/* helper signature: helper_st_mmu(CPUState *env, target_ulong addr,
1679 uintxx_t val, int mmu_idx) */
1680static const void * const qemu_st_helpers[4] = {
1681 helper_stb_mmu,
1682 helper_stw_mmu,
1683 helper_stl_mmu,
1684 helper_stq_mmu,
1685};
477ba620 1686
e3afa1c4
RH
1687static inline void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
1688 TCGMemOp opc)
477ba620 1689{
e3afa1c4
RH
1690 static const uint64_t opc_st_m4[4] = {
1691 OPC_ST1_M4, OPC_ST2_M4, OPC_ST4_M4, OPC_ST8_M4
1692 };
1693 int addr_reg, data_reg, mem_index;
1694 TCGMemOp s_bits;
477ba620
AJ
1695
1696 data_reg = *args++;
1697 addr_reg = *args++;
1698 mem_index = *args;
e3afa1c4 1699 s_bits = opc & MO_SIZE;
477ba620 1700
e3afa1c4 1701 tcg_out_qemu_tlb(s, addr_reg, s_bits,
9349b4f9
AF
1702 offsetof(CPUArchState, tlb_table[mem_index][0].addr_write),
1703 offsetof(CPUArchState, tlb_table[mem_index][0].addend));
477ba620
AJ
1704
1705 /* P6 is the fast path, and P7 the slow path */
1706 tcg_out_bundle(s, mLX,
3b9ccdcc 1707 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R56, TCG_AREG0),
e3afa1c4 1708 tcg_opc_l2 ((tcg_target_long) qemu_st_helpers[s_bits]),
477ba620 1709 tcg_opc_x2 (TCG_REG_P7, OPC_MOVL_X2, TCG_REG_R2,
e3afa1c4 1710 (tcg_target_long) qemu_st_helpers[s_bits]));
477ba620
AJ
1711 tcg_out_bundle(s, MmI,
1712 tcg_opc_m3 (TCG_REG_P0, OPC_LD8_M3, TCG_REG_R3,
1713 TCG_REG_R2, 8),
1714 tcg_opc_a1 (TCG_REG_P6, OPC_ADD_A1, TCG_REG_R3,
2174d1e1 1715 TCG_REG_R3, TCG_REG_R57),
477ba620
AJ
1716 tcg_opc_i21(TCG_REG_P7, OPC_MOV_I21, TCG_REG_B6,
1717 TCG_REG_R3, 0));
1718
e3afa1c4
RH
1719 switch (opc) {
1720 case MO_8:
1721 case MO_16:
1722 case MO_32:
1723 case MO_64:
2174d1e1 1724 tcg_out_bundle(s, mii,
477ba620
AJ
1725 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1,
1726 TCG_REG_R1, TCG_REG_R2),
3b9ccdcc 1727 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R58, data_reg),
5f7b1687 1728 INSN_NOP_I);
e3afa1c4
RH
1729 break;
1730
1731 case MO_16 | MO_BSWAP:
2174d1e1 1732 tcg_out_bundle(s, miI,
477ba620
AJ
1733 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1,
1734 TCG_REG_R1, TCG_REG_R2),
5f7b1687 1735 INSN_NOP_I,
477ba620 1736 tcg_opc_i12(TCG_REG_P6, OPC_DEP_Z_I12,
2174d1e1
AJ
1737 TCG_REG_R2, data_reg, 15, 15));
1738 tcg_out_bundle(s, miI,
3b9ccdcc 1739 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R58, data_reg),
5f7b1687 1740 INSN_NOP_I,
463230d8 1741 tcg_opc_bswap64_i(TCG_REG_P6, TCG_REG_R2, TCG_REG_R2));
477ba620 1742 data_reg = TCG_REG_R2;
e3afa1c4
RH
1743 break;
1744
1745 case MO_32 | MO_BSWAP:
2174d1e1 1746 tcg_out_bundle(s, miI,
477ba620
AJ
1747 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1,
1748 TCG_REG_R1, TCG_REG_R2),
5f7b1687 1749 INSN_NOP_I,
477ba620 1750 tcg_opc_i12(TCG_REG_P6, OPC_DEP_Z_I12,
2174d1e1
AJ
1751 TCG_REG_R2, data_reg, 31, 31));
1752 tcg_out_bundle(s, miI,
3b9ccdcc 1753 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R58, data_reg),
5f7b1687 1754 INSN_NOP_I,
463230d8 1755 tcg_opc_bswap64_i(TCG_REG_P6, TCG_REG_R2, TCG_REG_R2));
477ba620 1756 data_reg = TCG_REG_R2;
e3afa1c4
RH
1757 break;
1758
1759 case MO_64 | MO_BSWAP:
477ba620
AJ
1760 tcg_out_bundle(s, miI,
1761 tcg_opc_m1 (TCG_REG_P7, OPC_LD8_M1,
1762 TCG_REG_R1, TCG_REG_R2),
3b9ccdcc 1763 tcg_opc_mov_a(TCG_REG_P7, TCG_REG_R58, data_reg),
463230d8 1764 tcg_opc_bswap64_i(TCG_REG_P6, TCG_REG_R2, data_reg));
477ba620 1765 data_reg = TCG_REG_R2;
e3afa1c4
RH
1766 break;
1767
1768 default:
1769 tcg_abort();
477ba620
AJ
1770 }
1771
d03c98d8 1772 tcg_out_bundle(s, miB,
e3afa1c4 1773 tcg_opc_m4 (TCG_REG_P6, opc_st_m4[s_bits],
d03c98d8 1774 data_reg, TCG_REG_R3),
fa0cdb6c 1775 tcg_opc_movi_a(TCG_REG_P7, TCG_REG_R59, mem_index),
d03c98d8
AJ
1776 tcg_opc_b5 (TCG_REG_P7, OPC_BR_CALL_SPTK_MANY_B5,
1777 TCG_REG_B0, TCG_REG_B6));
477ba620
AJ
1778}
1779
1780#else /* !CONFIG_SOFTMMU */
1781
e3afa1c4
RH
1782static inline void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args,
1783 TCGMemOp opc)
477ba620 1784{
6781d08d
RH
1785 static uint64_t const opc_ld_m1[4] = {
1786 OPC_LD1_M1, OPC_LD2_M1, OPC_LD4_M1, OPC_LD8_M1
1787 };
e3afa1c4
RH
1788 int addr_reg, data_reg;
1789 TCGMemOp s_bits, bswap;
477ba620
AJ
1790
1791 data_reg = *args++;
1792 addr_reg = *args++;
e3afa1c4
RH
1793 s_bits = opc & MO_SIZE;
1794 bswap = opc & MO_BSWAP;
477ba620 1795
477ba620 1796#if TARGET_LONG_BITS == 32
6781d08d
RH
1797 if (GUEST_BASE != 0) {
1798 tcg_out_bundle(s, mII,
5f7b1687 1799 INSN_NOP_M,
6781d08d
RH
1800 tcg_opc_i29(TCG_REG_P0, OPC_ZXT4_I29,
1801 TCG_REG_R3, addr_reg),
1802 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, TCG_REG_R2,
1803 TCG_GUEST_BASE_REG, TCG_REG_R3));
1804 } else {
1805 tcg_out_bundle(s, miI,
5f7b1687 1806 INSN_NOP_M,
6781d08d
RH
1807 tcg_opc_i29(TCG_REG_P0, OPC_ZXT4_I29,
1808 TCG_REG_R2, addr_reg),
5f7b1687 1809 INSN_NOP_I);
6781d08d 1810 }
477ba620 1811
e3afa1c4
RH
1812 if (!bswap) {
1813 if (!(opc & MO_SIGN)) {
477ba620
AJ
1814 tcg_out_bundle(s, miI,
1815 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1816 data_reg, TCG_REG_R2),
5f7b1687
RH
1817 INSN_NOP_I,
1818 INSN_NOP_I);
477ba620
AJ
1819 } else {
1820 tcg_out_bundle(s, mII,
1821 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1822 data_reg, TCG_REG_R2),
5f7b1687 1823 INSN_NOP_I,
db008a8d 1824 tcg_opc_ext_i(TCG_REG_P0, opc, data_reg, data_reg));
477ba620 1825 }
e3afa1c4 1826 } else if (s_bits == MO_64) {
477ba620
AJ
1827 tcg_out_bundle(s, mII,
1828 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1829 data_reg, TCG_REG_R2),
5f7b1687 1830 INSN_NOP_I,
463230d8 1831 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg));
477ba620 1832 } else {
e3afa1c4 1833 if (s_bits == MO_16) {
477ba620
AJ
1834 tcg_out_bundle(s, mII,
1835 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1836 data_reg, TCG_REG_R2),
5f7b1687 1837 INSN_NOP_I,
477ba620
AJ
1838 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1839 data_reg, data_reg, 15, 15));
1840 } else {
1841 tcg_out_bundle(s, mII,
1842 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1843 data_reg, TCG_REG_R2),
5f7b1687 1844 INSN_NOP_I,
477ba620
AJ
1845 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1846 data_reg, data_reg, 31, 31));
1847 }
e3afa1c4 1848 if (!(opc & MO_SIGN)) {
477ba620 1849 tcg_out_bundle(s, miI,
5f7b1687
RH
1850 INSN_NOP_M,
1851 INSN_NOP_I,
463230d8 1852 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg));
477ba620
AJ
1853 } else {
1854 tcg_out_bundle(s, mII,
5f7b1687 1855 INSN_NOP_M,
463230d8 1856 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg),
db008a8d 1857 tcg_opc_ext_i(TCG_REG_P0, opc, data_reg, data_reg));
477ba620
AJ
1858 }
1859 }
1860#else
6781d08d
RH
1861 if (GUEST_BASE != 0) {
1862 tcg_out_bundle(s, MmI,
1863 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, TCG_REG_R2,
1864 TCG_GUEST_BASE_REG, addr_reg),
1865 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1866 data_reg, TCG_REG_R2),
5f7b1687 1867 INSN_NOP_I);
6781d08d
RH
1868 } else {
1869 tcg_out_bundle(s, mmI,
5f7b1687 1870 INSN_NOP_M,
6781d08d
RH
1871 tcg_opc_m1 (TCG_REG_P0, opc_ld_m1[s_bits],
1872 data_reg, addr_reg),
5f7b1687 1873 INSN_NOP_I);
6781d08d 1874 }
477ba620 1875
e3afa1c4 1876 if (bswap && s_bits == MO_16) {
477ba620 1877 tcg_out_bundle(s, mII,
5f7b1687 1878 INSN_NOP_M,
477ba620
AJ
1879 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1880 data_reg, data_reg, 15, 15),
463230d8 1881 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg));
e3afa1c4 1882 } else if (bswap && s_bits == MO_32) {
477ba620 1883 tcg_out_bundle(s, mII,
5f7b1687 1884 INSN_NOP_M,
477ba620
AJ
1885 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1886 data_reg, data_reg, 31, 31),
463230d8 1887 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg));
e3afa1c4 1888 } else if (bswap && s_bits == MO_64) {
477ba620 1889 tcg_out_bundle(s, miI,
5f7b1687
RH
1890 INSN_NOP_M,
1891 INSN_NOP_I,
463230d8 1892 tcg_opc_bswap64_i(TCG_REG_P0, data_reg, data_reg));
477ba620 1893 }
e3afa1c4 1894 if (opc & MO_SIGN) {
477ba620 1895 tcg_out_bundle(s, miI,
5f7b1687
RH
1896 INSN_NOP_M,
1897 INSN_NOP_I,
db008a8d 1898 tcg_opc_ext_i(TCG_REG_P0, opc, data_reg, data_reg));
477ba620
AJ
1899 }
1900#endif
1901}
1902
e3afa1c4
RH
1903static inline void tcg_out_qemu_st(TCGContext *s, const TCGArg *args,
1904 TCGMemOp opc)
477ba620 1905{
6781d08d
RH
1906 static uint64_t const opc_st_m4[4] = {
1907 OPC_ST1_M4, OPC_ST2_M4, OPC_ST4_M4, OPC_ST8_M4
1908 };
e3afa1c4 1909 int addr_reg, data_reg;
6781d08d
RH
1910#if TARGET_LONG_BITS == 64
1911 uint64_t add_guest_base;
1912#endif
e3afa1c4 1913 TCGMemOp s_bits, bswap;
477ba620
AJ
1914
1915 data_reg = *args++;
1916 addr_reg = *args++;
e3afa1c4
RH
1917 s_bits = opc & MO_SIZE;
1918 bswap = opc & MO_BSWAP;
477ba620 1919
477ba620 1920#if TARGET_LONG_BITS == 32
6781d08d
RH
1921 if (GUEST_BASE != 0) {
1922 tcg_out_bundle(s, mII,
5f7b1687 1923 INSN_NOP_M,
6781d08d
RH
1924 tcg_opc_i29(TCG_REG_P0, OPC_ZXT4_I29,
1925 TCG_REG_R3, addr_reg),
1926 tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, TCG_REG_R2,
1927 TCG_GUEST_BASE_REG, TCG_REG_R3));
1928 } else {
1929 tcg_out_bundle(s, miI,
5f7b1687 1930 INSN_NOP_M,
6781d08d 1931 tcg_opc_i29(TCG_REG_P0, OPC_ZXT4_I29,
07f59737 1932 TCG_REG_R2, addr_reg),
5f7b1687 1933 INSN_NOP_I);
6781d08d
RH
1934 }
1935
477ba620 1936 if (bswap) {
e3afa1c4 1937 if (s_bits == MO_16) {
477ba620 1938 tcg_out_bundle(s, mII,
5f7b1687 1939 INSN_NOP_M,
477ba620
AJ
1940 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1941 TCG_REG_R3, data_reg, 15, 15),
463230d8
RH
1942 tcg_opc_bswap64_i(TCG_REG_P0,
1943 TCG_REG_R3, TCG_REG_R3));
477ba620 1944 data_reg = TCG_REG_R3;
e3afa1c4 1945 } else if (s_bits == MO_32) {
477ba620 1946 tcg_out_bundle(s, mII,
5f7b1687 1947 INSN_NOP_M,
477ba620
AJ
1948 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1949 TCG_REG_R3, data_reg, 31, 31),
463230d8
RH
1950 tcg_opc_bswap64_i(TCG_REG_P0,
1951 TCG_REG_R3, TCG_REG_R3));
477ba620 1952 data_reg = TCG_REG_R3;
e3afa1c4 1953 } else if (s_bits == MO_64) {
477ba620 1954 tcg_out_bundle(s, miI,
5f7b1687
RH
1955 INSN_NOP_M,
1956 INSN_NOP_I,
463230d8 1957 tcg_opc_bswap64_i(TCG_REG_P0, TCG_REG_R3, data_reg));
477ba620
AJ
1958 data_reg = TCG_REG_R3;
1959 }
1960 }
1961 tcg_out_bundle(s, mmI,
e3afa1c4 1962 tcg_opc_m4 (TCG_REG_P0, opc_st_m4[s_bits],
477ba620 1963 data_reg, TCG_REG_R2),
5f7b1687
RH
1964 INSN_NOP_M,
1965 INSN_NOP_I);
477ba620 1966#else
6781d08d
RH
1967 if (GUEST_BASE != 0) {
1968 add_guest_base = tcg_opc_a1 (TCG_REG_P0, OPC_ADD_A1, TCG_REG_R2,
1969 TCG_GUEST_BASE_REG, addr_reg);
1970 addr_reg = TCG_REG_R2;
1971 } else {
5f7b1687 1972 add_guest_base = INSN_NOP_M;
6781d08d
RH
1973 }
1974
e3afa1c4 1975 if (!bswap) {
6781d08d
RH
1976 tcg_out_bundle(s, (GUEST_BASE ? MmI : mmI),
1977 add_guest_base,
e3afa1c4 1978 tcg_opc_m4 (TCG_REG_P0, opc_st_m4[s_bits],
6781d08d 1979 data_reg, addr_reg),
5f7b1687 1980 INSN_NOP_I);
477ba620 1981 } else {
e3afa1c4 1982 if (s_bits == MO_16) {
477ba620 1983 tcg_out_bundle(s, mII,
6781d08d 1984 add_guest_base,
477ba620
AJ
1985 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1986 TCG_REG_R3, data_reg, 15, 15),
463230d8
RH
1987 tcg_opc_bswap64_i(TCG_REG_P0,
1988 TCG_REG_R3, TCG_REG_R3));
477ba620 1989 data_reg = TCG_REG_R3;
e3afa1c4 1990 } else if (s_bits == MO_32) {
477ba620 1991 tcg_out_bundle(s, mII,
6781d08d 1992 add_guest_base,
477ba620
AJ
1993 tcg_opc_i12(TCG_REG_P0, OPC_DEP_Z_I12,
1994 TCG_REG_R3, data_reg, 31, 31),
463230d8
RH
1995 tcg_opc_bswap64_i(TCG_REG_P0,
1996 TCG_REG_R3, TCG_REG_R3));
477ba620 1997 data_reg = TCG_REG_R3;
e3afa1c4 1998 } else if (s_bits == MO_64) {
477ba620 1999 tcg_out_bundle(s, miI,
6781d08d 2000 add_guest_base,
5f7b1687 2001 INSN_NOP_I,
463230d8 2002 tcg_opc_bswap64_i(TCG_REG_P0, TCG_REG_R3, data_reg));
477ba620
AJ
2003 data_reg = TCG_REG_R3;
2004 }
2005 tcg_out_bundle(s, miI,
e3afa1c4 2006 tcg_opc_m4 (TCG_REG_P0, opc_st_m4[s_bits],
6781d08d 2007 data_reg, addr_reg),
5f7b1687
RH
2008 INSN_NOP_I,
2009 INSN_NOP_I);
477ba620
AJ
2010 }
2011#endif
2012}
2013
2014#endif
2015
2016static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
2017 const TCGArg *args, const int *const_args)
2018{
2019 switch(opc) {
2020 case INDEX_op_exit_tb:
2021 tcg_out_exit_tb(s, args[0]);
2022 break;
2023 case INDEX_op_br:
2024 tcg_out_br(s, args[0]);
2025 break;
2026 case INDEX_op_call:
6f65c780
RH
2027 if (likely(const_args[0])) {
2028 tcg_out_calli(s, args[0]);
2029 } else {
2030 tcg_out_callr(s, args[0]);
2031 }
477ba620
AJ
2032 break;
2033 case INDEX_op_goto_tb:
2034 tcg_out_goto_tb(s, args[0]);
2035 break;
477ba620
AJ
2036
2037 case INDEX_op_movi_i32:
2038 tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]);
2039 break;
2040 case INDEX_op_movi_i64:
2041 tcg_out_movi(s, TCG_TYPE_I64, args[0], args[1]);
2042 break;
2043
2044 case INDEX_op_ld8u_i32:
2045 case INDEX_op_ld8u_i64:
2046 tcg_out_ld_rel(s, OPC_LD1_M1, args[0], args[1], args[2]);
2047 break;
2048 case INDEX_op_ld8s_i32:
2049 case INDEX_op_ld8s_i64:
2050 tcg_out_ld_rel(s, OPC_LD1_M1, args[0], args[1], args[2]);
2051 tcg_out_ext(s, OPC_SXT1_I29, args[0], args[0]);
2052 break;
2053 case INDEX_op_ld16u_i32:
2054 case INDEX_op_ld16u_i64:
2055 tcg_out_ld_rel(s, OPC_LD2_M1, args[0], args[1], args[2]);
2056 break;
2057 case INDEX_op_ld16s_i32:
2058 case INDEX_op_ld16s_i64:
2059 tcg_out_ld_rel(s, OPC_LD2_M1, args[0], args[1], args[2]);
2060 tcg_out_ext(s, OPC_SXT2_I29, args[0], args[0]);
2061 break;
2062 case INDEX_op_ld_i32:
2063 case INDEX_op_ld32u_i64:
2064 tcg_out_ld_rel(s, OPC_LD4_M1, args[0], args[1], args[2]);
2065 break;
2066 case INDEX_op_ld32s_i64:
2067 tcg_out_ld_rel(s, OPC_LD4_M1, args[0], args[1], args[2]);
2068 tcg_out_ext(s, OPC_SXT4_I29, args[0], args[0]);
2069 break;
2070 case INDEX_op_ld_i64:
2071 tcg_out_ld_rel(s, OPC_LD8_M1, args[0], args[1], args[2]);
2072 break;
2073 case INDEX_op_st8_i32:
2074 case INDEX_op_st8_i64:
2075 tcg_out_st_rel(s, OPC_ST1_M4, args[0], args[1], args[2]);
2076 break;
2077 case INDEX_op_st16_i32:
2078 case INDEX_op_st16_i64:
2079 tcg_out_st_rel(s, OPC_ST2_M4, args[0], args[1], args[2]);
2080 break;
2081 case INDEX_op_st_i32:
2082 case INDEX_op_st32_i64:
2083 tcg_out_st_rel(s, OPC_ST4_M4, args[0], args[1], args[2]);
2084 break;
2085 case INDEX_op_st_i64:
2086 tcg_out_st_rel(s, OPC_ST8_M4, args[0], args[1], args[2]);
2087 break;
2088
2089 case INDEX_op_add_i32:
2090 case INDEX_op_add_i64:
8642088a 2091 tcg_out_add(s, args[0], args[1], args[2], const_args[2]);
477ba620
AJ
2092 break;
2093 case INDEX_op_sub_i32:
2094 case INDEX_op_sub_i64:
f940fb08 2095 tcg_out_sub(s, args[0], args[1], const_args[1], args[2], const_args[2]);
477ba620
AJ
2096 break;
2097
2098 case INDEX_op_and_i32:
2099 case INDEX_op_and_i64:
25c9c73b
RH
2100 /* TCG expects arg2 constant; A3 expects arg1 constant. Swap. */
2101 tcg_out_alu(s, OPC_AND_A1, OPC_AND_A3, args[0],
2102 args[2], const_args[2], args[1], const_args[1]);
477ba620
AJ
2103 break;
2104 case INDEX_op_andc_i32:
2105 case INDEX_op_andc_i64:
25c9c73b
RH
2106 tcg_out_alu(s, OPC_ANDCM_A1, OPC_ANDCM_A3, args[0],
2107 args[1], const_args[1], args[2], const_args[2]);
477ba620
AJ
2108 break;
2109 case INDEX_op_eqv_i32:
2110 case INDEX_op_eqv_i64:
2111 tcg_out_eqv(s, args[0], args[1], const_args[1],
2112 args[2], const_args[2]);
2113 break;
2114 case INDEX_op_nand_i32:
2115 case INDEX_op_nand_i64:
2116 tcg_out_nand(s, args[0], args[1], const_args[1],
2117 args[2], const_args[2]);
2118 break;
2119 case INDEX_op_nor_i32:
2120 case INDEX_op_nor_i64:
2121 tcg_out_nor(s, args[0], args[1], const_args[1],
2122 args[2], const_args[2]);
2123 break;
2124 case INDEX_op_or_i32:
2125 case INDEX_op_or_i64:
25c9c73b
RH
2126 /* TCG expects arg2 constant; A3 expects arg1 constant. Swap. */
2127 tcg_out_alu(s, OPC_OR_A1, OPC_OR_A3, args[0],
2128 args[2], const_args[2], args[1], const_args[1]);
477ba620
AJ
2129 break;
2130 case INDEX_op_orc_i32:
2131 case INDEX_op_orc_i64:
2132 tcg_out_orc(s, args[0], args[1], const_args[1],
2133 args[2], const_args[2]);
2134 break;
2135 case INDEX_op_xor_i32:
2136 case INDEX_op_xor_i64:
25c9c73b
RH
2137 /* TCG expects arg2 constant; A3 expects arg1 constant. Swap. */
2138 tcg_out_alu(s, OPC_XOR_A1, OPC_XOR_A3, args[0],
2139 args[2], const_args[2], args[1], const_args[1]);
477ba620
AJ
2140 break;
2141
2142 case INDEX_op_mul_i32:
2143 case INDEX_op_mul_i64:
2144 tcg_out_mul(s, args[0], args[1], args[2]);
2145 break;
2146
2147 case INDEX_op_sar_i32:
2148 tcg_out_sar_i32(s, args[0], args[1], args[2], const_args[2]);
2149 break;
2150 case INDEX_op_sar_i64:
2151 tcg_out_sar_i64(s, args[0], args[1], args[2], const_args[2]);
2152 break;
2153 case INDEX_op_shl_i32:
2154 tcg_out_shl_i32(s, args[0], args[1], args[2], const_args[2]);
2155 break;
2156 case INDEX_op_shl_i64:
2157 tcg_out_shl_i64(s, args[0], args[1], args[2], const_args[2]);
2158 break;
2159 case INDEX_op_shr_i32:
2160 tcg_out_shr_i32(s, args[0], args[1], args[2], const_args[2]);
2161 break;
2162 case INDEX_op_shr_i64:
2163 tcg_out_shr_i64(s, args[0], args[1], args[2], const_args[2]);
2164 break;
2165 case INDEX_op_rotl_i32:
2166 tcg_out_rotl_i32(s, args[0], args[1], args[2], const_args[2]);
2167 break;
2168 case INDEX_op_rotl_i64:
2169 tcg_out_rotl_i64(s, args[0], args[1], args[2], const_args[2]);
2170 break;
2171 case INDEX_op_rotr_i32:
2172 tcg_out_rotr_i32(s, args[0], args[1], args[2], const_args[2]);
2173 break;
2174 case INDEX_op_rotr_i64:
2175 tcg_out_rotr_i64(s, args[0], args[1], args[2], const_args[2]);
2176 break;
2177
2178 case INDEX_op_ext8s_i32:
2179 case INDEX_op_ext8s_i64:
2180 tcg_out_ext(s, OPC_SXT1_I29, args[0], args[1]);
2181 break;
2182 case INDEX_op_ext8u_i32:
2183 case INDEX_op_ext8u_i64:
2184 tcg_out_ext(s, OPC_ZXT1_I29, args[0], args[1]);
2185 break;
2186 case INDEX_op_ext16s_i32:
2187 case INDEX_op_ext16s_i64:
2188 tcg_out_ext(s, OPC_SXT2_I29, args[0], args[1]);
2189 break;
2190 case INDEX_op_ext16u_i32:
2191 case INDEX_op_ext16u_i64:
2192 tcg_out_ext(s, OPC_ZXT2_I29, args[0], args[1]);
2193 break;
2194 case INDEX_op_ext32s_i64:
2195 tcg_out_ext(s, OPC_SXT4_I29, args[0], args[1]);
2196 break;
2197 case INDEX_op_ext32u_i64:
2198 tcg_out_ext(s, OPC_ZXT4_I29, args[0], args[1]);
2199 break;
2200
2201 case INDEX_op_bswap16_i32:
2202 case INDEX_op_bswap16_i64:
2203 tcg_out_bswap16(s, args[0], args[1]);
2204 break;
2205 case INDEX_op_bswap32_i32:
2206 case INDEX_op_bswap32_i64:
2207 tcg_out_bswap32(s, args[0], args[1]);
2208 break;
2209 case INDEX_op_bswap64_i64:
2210 tcg_out_bswap64(s, args[0], args[1]);
2211 break;
2212
c7d4475a
RH
2213 case INDEX_op_deposit_i32:
2214 case INDEX_op_deposit_i64:
2215 tcg_out_deposit(s, args[0], args[1], args[2], const_args[2],
2216 args[3], args[4]);
2217 break;
2218
477ba620 2219 case INDEX_op_brcond_i32:
6d264b38 2220 tcg_out_brcond(s, args[2], args[0], args[1], args[3], 1);
477ba620
AJ
2221 break;
2222 case INDEX_op_brcond_i64:
6d264b38 2223 tcg_out_brcond(s, args[2], args[0], args[1], args[3], 0);
477ba620
AJ
2224 break;
2225 case INDEX_op_setcond_i32:
2226 tcg_out_setcond(s, args[3], args[0], args[1], args[2], 1);
2227 break;
2228 case INDEX_op_setcond_i64:
2229 tcg_out_setcond(s, args[3], args[0], args[1], args[2], 0);
2230 break;
b90cf716
AJ
2231 case INDEX_op_movcond_i32:
2232 tcg_out_movcond(s, args[5], args[0], args[1], args[2],
2233 args[3], const_args[3], args[4], const_args[4], 1);
2234 break;
2235 case INDEX_op_movcond_i64:
2236 tcg_out_movcond(s, args[5], args[0], args[1], args[2],
2237 args[3], const_args[3], args[4], const_args[4], 0);
2238 break;
477ba620
AJ
2239
2240 case INDEX_op_qemu_ld8u:
e3afa1c4 2241 tcg_out_qemu_ld(s, args, MO_UB);
477ba620
AJ
2242 break;
2243 case INDEX_op_qemu_ld8s:
e3afa1c4 2244 tcg_out_qemu_ld(s, args, MO_SB);
477ba620
AJ
2245 break;
2246 case INDEX_op_qemu_ld16u:
e3afa1c4 2247 tcg_out_qemu_ld(s, args, MO_TEUW);
477ba620
AJ
2248 break;
2249 case INDEX_op_qemu_ld16s:
e3afa1c4 2250 tcg_out_qemu_ld(s, args, MO_TESW);
477ba620 2251 break;
b3b0091f 2252 case INDEX_op_qemu_ld32:
477ba620 2253 case INDEX_op_qemu_ld32u:
e3afa1c4 2254 tcg_out_qemu_ld(s, args, MO_TEUL);
477ba620
AJ
2255 break;
2256 case INDEX_op_qemu_ld32s:
e3afa1c4 2257 tcg_out_qemu_ld(s, args, MO_TESL);
477ba620
AJ
2258 break;
2259 case INDEX_op_qemu_ld64:
e3afa1c4 2260 tcg_out_qemu_ld(s, args, MO_TEQ);
477ba620
AJ
2261 break;
2262
2263 case INDEX_op_qemu_st8:
e3afa1c4 2264 tcg_out_qemu_st(s, args, MO_UB);
477ba620
AJ
2265 break;
2266 case INDEX_op_qemu_st16:
e3afa1c4 2267 tcg_out_qemu_st(s, args, MO_TEUW);
477ba620
AJ
2268 break;
2269 case INDEX_op_qemu_st32:
e3afa1c4 2270 tcg_out_qemu_st(s, args, MO_TEUL);
477ba620
AJ
2271 break;
2272 case INDEX_op_qemu_st64:
e3afa1c4 2273 tcg_out_qemu_st(s, args, MO_TEQ);
477ba620
AJ
2274 break;
2275
2276 default:
2277 tcg_abort();
2278 }
2279}
2280
2281static const TCGTargetOpDef ia64_op_defs[] = {
2282 { INDEX_op_br, { } },
6f65c780 2283 { INDEX_op_call, { "ri" } },
477ba620
AJ
2284 { INDEX_op_exit_tb, { } },
2285 { INDEX_op_goto_tb, { } },
477ba620
AJ
2286
2287 { INDEX_op_mov_i32, { "r", "r" } },
2288 { INDEX_op_movi_i32, { "r" } },
2289
2290 { INDEX_op_ld8u_i32, { "r", "r" } },
2291 { INDEX_op_ld8s_i32, { "r", "r" } },
2292 { INDEX_op_ld16u_i32, { "r", "r" } },
2293 { INDEX_op_ld16s_i32, { "r", "r" } },
2294 { INDEX_op_ld_i32, { "r", "r" } },
2295 { INDEX_op_st8_i32, { "rZ", "r" } },
2296 { INDEX_op_st16_i32, { "rZ", "r" } },
2297 { INDEX_op_st_i32, { "rZ", "r" } },
2298
8642088a 2299 { INDEX_op_add_i32, { "r", "rZ", "rI" } },
477ba620
AJ
2300 { INDEX_op_sub_i32, { "r", "rI", "rI" } },
2301
2302 { INDEX_op_and_i32, { "r", "rI", "rI" } },
2303 { INDEX_op_andc_i32, { "r", "rI", "rI" } },
2304 { INDEX_op_eqv_i32, { "r", "rZ", "rZ" } },
2305 { INDEX_op_nand_i32, { "r", "rZ", "rZ" } },
2306 { INDEX_op_nor_i32, { "r", "rZ", "rZ" } },
2307 { INDEX_op_or_i32, { "r", "rI", "rI" } },
2308 { INDEX_op_orc_i32, { "r", "rZ", "rZ" } },
2309 { INDEX_op_xor_i32, { "r", "rI", "rI" } },
2310
2311 { INDEX_op_mul_i32, { "r", "rZ", "rZ" } },
2312
2313 { INDEX_op_sar_i32, { "r", "rZ", "ri" } },
2314 { INDEX_op_shl_i32, { "r", "rZ", "ri" } },
2315 { INDEX_op_shr_i32, { "r", "rZ", "ri" } },
2316 { INDEX_op_rotl_i32, { "r", "rZ", "ri" } },
2317 { INDEX_op_rotr_i32, { "r", "rZ", "ri" } },
2318
2319 { INDEX_op_ext8s_i32, { "r", "rZ"} },
2320 { INDEX_op_ext8u_i32, { "r", "rZ"} },
2321 { INDEX_op_ext16s_i32, { "r", "rZ"} },
2322 { INDEX_op_ext16u_i32, { "r", "rZ"} },
2323
2324 { INDEX_op_bswap16_i32, { "r", "rZ" } },
2325 { INDEX_op_bswap32_i32, { "r", "rZ" } },
2326
6d264b38 2327 { INDEX_op_brcond_i32, { "rZ", "rZ" } },
477ba620 2328 { INDEX_op_setcond_i32, { "r", "rZ", "rZ" } },
b90cf716 2329 { INDEX_op_movcond_i32, { "r", "rZ", "rZ", "rI", "rI" } },
477ba620
AJ
2330
2331 { INDEX_op_mov_i64, { "r", "r" } },
2332 { INDEX_op_movi_i64, { "r" } },
2333
2334 { INDEX_op_ld8u_i64, { "r", "r" } },
2335 { INDEX_op_ld8s_i64, { "r", "r" } },
2336 { INDEX_op_ld16u_i64, { "r", "r" } },
2337 { INDEX_op_ld16s_i64, { "r", "r" } },
2338 { INDEX_op_ld32u_i64, { "r", "r" } },
2339 { INDEX_op_ld32s_i64, { "r", "r" } },
2340 { INDEX_op_ld_i64, { "r", "r" } },
2341 { INDEX_op_st8_i64, { "rZ", "r" } },
2342 { INDEX_op_st16_i64, { "rZ", "r" } },
2343 { INDEX_op_st32_i64, { "rZ", "r" } },
2344 { INDEX_op_st_i64, { "rZ", "r" } },
2345
8642088a 2346 { INDEX_op_add_i64, { "r", "rZ", "rI" } },
477ba620
AJ
2347 { INDEX_op_sub_i64, { "r", "rI", "rI" } },
2348
2349 { INDEX_op_and_i64, { "r", "rI", "rI" } },
2350 { INDEX_op_andc_i64, { "r", "rI", "rI" } },
2351 { INDEX_op_eqv_i64, { "r", "rZ", "rZ" } },
2352 { INDEX_op_nand_i64, { "r", "rZ", "rZ" } },
2353 { INDEX_op_nor_i64, { "r", "rZ", "rZ" } },
2354 { INDEX_op_or_i64, { "r", "rI", "rI" } },
2355 { INDEX_op_orc_i64, { "r", "rZ", "rZ" } },
2356 { INDEX_op_xor_i64, { "r", "rI", "rI" } },
2357
2358 { INDEX_op_mul_i64, { "r", "rZ", "rZ" } },
2359
2360 { INDEX_op_sar_i64, { "r", "rZ", "ri" } },
2361 { INDEX_op_shl_i64, { "r", "rZ", "ri" } },
2362 { INDEX_op_shr_i64, { "r", "rZ", "ri" } },
2363 { INDEX_op_rotl_i64, { "r", "rZ", "ri" } },
2364 { INDEX_op_rotr_i64, { "r", "rZ", "ri" } },
2365
2366 { INDEX_op_ext8s_i64, { "r", "rZ"} },
2367 { INDEX_op_ext8u_i64, { "r", "rZ"} },
2368 { INDEX_op_ext16s_i64, { "r", "rZ"} },
2369 { INDEX_op_ext16u_i64, { "r", "rZ"} },
2370 { INDEX_op_ext32s_i64, { "r", "rZ"} },
2371 { INDEX_op_ext32u_i64, { "r", "rZ"} },
2372
2373 { INDEX_op_bswap16_i64, { "r", "rZ" } },
2374 { INDEX_op_bswap32_i64, { "r", "rZ" } },
2375 { INDEX_op_bswap64_i64, { "r", "rZ" } },
2376
6d264b38 2377 { INDEX_op_brcond_i64, { "rZ", "rZ" } },
477ba620 2378 { INDEX_op_setcond_i64, { "r", "rZ", "rZ" } },
b90cf716 2379 { INDEX_op_movcond_i64, { "r", "rZ", "rZ", "rI", "rI" } },
477ba620 2380
c7d4475a
RH
2381 { INDEX_op_deposit_i32, { "r", "rZ", "ri" } },
2382 { INDEX_op_deposit_i64, { "r", "rZ", "ri" } },
2383
477ba620
AJ
2384 { INDEX_op_qemu_ld8u, { "r", "r" } },
2385 { INDEX_op_qemu_ld8s, { "r", "r" } },
2386 { INDEX_op_qemu_ld16u, { "r", "r" } },
2387 { INDEX_op_qemu_ld16s, { "r", "r" } },
2388 { INDEX_op_qemu_ld32, { "r", "r" } },
2389 { INDEX_op_qemu_ld32u, { "r", "r" } },
2390 { INDEX_op_qemu_ld32s, { "r", "r" } },
2391 { INDEX_op_qemu_ld64, { "r", "r" } },
2392
2393 { INDEX_op_qemu_st8, { "SZ", "r" } },
2394 { INDEX_op_qemu_st16, { "SZ", "r" } },
2395 { INDEX_op_qemu_st32, { "SZ", "r" } },
2396 { INDEX_op_qemu_st64, { "SZ", "r" } },
2397
2398 { -1 },
2399};
2400
2401/* Generate global QEMU prologue and epilogue code */
e4d58b41 2402static void tcg_target_qemu_prologue(TCGContext *s)
477ba620
AJ
2403{
2404 int frame_size;
2405
2406 /* reserve some stack space */
da897bf5
BS
2407 frame_size = TCG_STATIC_CALL_ARGS_SIZE +
2408 CPU_TEMP_BUF_NLONGS * sizeof(long);
477ba620
AJ
2409 frame_size = (frame_size + TCG_TARGET_STACK_ALIGN - 1) &
2410 ~(TCG_TARGET_STACK_ALIGN - 1);
da897bf5
BS
2411 tcg_set_frame(s, TCG_REG_CALL_STACK, TCG_STATIC_CALL_ARGS_SIZE,
2412 CPU_TEMP_BUF_NLONGS * sizeof(long));
477ba620
AJ
2413
2414 /* First emit adhoc function descriptor */
2415 *(uint64_t *)(s->code_ptr) = (uint64_t)s->code_ptr + 16; /* entry point */
2416 s->code_ptr += 16; /* skip GP */
2417
2418 /* prologue */
18d445b4 2419 tcg_out_bundle(s, miI,
477ba620 2420 tcg_opc_m34(TCG_REG_P0, OPC_ALLOC_M34,
18d445b4 2421 TCG_REG_R34, 32, 24, 0),
d15de15c 2422 INSN_NOP_I,
477ba620 2423 tcg_opc_i21(TCG_REG_P0, OPC_MOV_I21,
18d445b4 2424 TCG_REG_B6, TCG_REG_R33, 0));
6781d08d
RH
2425
2426 /* ??? If GUEST_BASE < 0x200000, we could load the register via
2427 an ADDL in the M slot of the next bundle. */
2428 if (GUEST_BASE != 0) {
2429 tcg_out_bundle(s, mlx,
5f7b1687 2430 INSN_NOP_M,
6781d08d
RH
2431 tcg_opc_l2 (GUEST_BASE),
2432 tcg_opc_x2 (TCG_REG_P0, OPC_MOVL_X2,
2433 TCG_GUEST_BASE_REG, GUEST_BASE));
2434 tcg_regset_set_reg(s->reserved_regs, TCG_GUEST_BASE_REG);
2435 }
2436
477ba620 2437 tcg_out_bundle(s, miB,
477ba620
AJ
2438 tcg_opc_a4 (TCG_REG_P0, OPC_ADDS_A4,
2439 TCG_REG_R12, -frame_size, TCG_REG_R12),
18d445b4 2440 tcg_opc_i22(TCG_REG_P0, OPC_MOV_I22,
d15de15c 2441 TCG_REG_R33, TCG_REG_B0),
477ba620
AJ
2442 tcg_opc_b4 (TCG_REG_P0, OPC_BR_SPTK_MANY_B4, TCG_REG_B6));
2443
2444 /* epilogue */
2445 tb_ret_addr = s->code_ptr;
2446 tcg_out_bundle(s, miI,
5f7b1687 2447 INSN_NOP_M,
477ba620 2448 tcg_opc_i21(TCG_REG_P0, OPC_MOV_I21,
d15de15c 2449 TCG_REG_B0, TCG_REG_R33, 0),
477ba620
AJ
2450 tcg_opc_a4 (TCG_REG_P0, OPC_ADDS_A4,
2451 TCG_REG_R12, frame_size, TCG_REG_R12));
2452 tcg_out_bundle(s, miB,
5f7b1687 2453 INSN_NOP_M,
477ba620 2454 tcg_opc_i26(TCG_REG_P0, OPC_MOV_I_I26,
18d445b4 2455 TCG_REG_PFS, TCG_REG_R34),
477ba620
AJ
2456 tcg_opc_b4 (TCG_REG_P0, OPC_BR_RET_SPTK_MANY_B4,
2457 TCG_REG_B0));
2458}
2459
e4d58b41 2460static void tcg_target_init(TCGContext *s)
477ba620
AJ
2461{
2462 tcg_regset_set(tcg_target_available_regs[TCG_TYPE_I32],
2463 0xffffffffffffffffull);
2464 tcg_regset_set(tcg_target_available_regs[TCG_TYPE_I64],
2465 0xffffffffffffffffull);
477ba620 2466
7221f058
RH
2467 tcg_regset_clear(tcg_target_call_clobber_regs);
2468 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R8);
2469 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R9);
2470 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R10);
2471 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R11);
2472 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R14);
2473 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R15);
2474 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R16);
2475 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R17);
2476 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R18);
2477 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R19);
2478 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R20);
2479 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R21);
2480 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R22);
2481 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R23);
2482 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R24);
2483 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R25);
2484 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R26);
2485 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R27);
2486 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R28);
2487 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R29);
2488 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R30);
2489 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R31);
2490 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R56);
2491 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R57);
2492 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R58);
2493 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R59);
2494 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R60);
2495 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R61);
2496 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R62);
2497 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_R63);
2498
2499 tcg_regset_clear(s->reserved_regs);
477ba620
AJ
2500 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R0); /* zero register */
2501 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R1); /* global pointer */
2502 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R2); /* internal use */
2503 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R3); /* internal use */
2504 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R12); /* stack pointer */
7221f058 2505 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R13); /* thread pointer */
d15de15c 2506 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R33); /* return address */
18d445b4 2507 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R34); /* PFS */
477ba620 2508
d15de15c 2509 /* The following 4 are not in use, are call-saved, but *not* saved
7221f058
RH
2510 by the prologue. Therefore we cannot use them without modifying
2511 the prologue. There doesn't seem to be any good reason to use
2512 these as opposed to the windowed registers. */
2513 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R4);
2514 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R5);
2515 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R6);
d15de15c 2516 tcg_regset_set_reg(s->reserved_regs, TCG_REG_R7);
7221f058 2517
477ba620
AJ
2518 tcg_add_target_add_op_defs(ia64_op_defs);
2519}