2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008-2009 Arnaud Patard <arnaud.patard@rtp-net.org>
5 * Copyright (c) 2009 Aurelien Jarno <aurelien@aurel32.net>
6 * Based on i386/tcg-target.c - Copyright (c) 2008 Fabrice Bellard
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #ifdef HOST_WORDS_BIGENDIAN
33 #if TCG_TARGET_REG_BITS == 32
34 # define LO_OFF (MIPS_BE * 4)
35 # define HI_OFF (4 - LO_OFF)
37 /* To assert at compile-time that these values are never used
38 for TCG_TARGET_REG_BITS == 64. */
40 # define LO_OFF link_error()
41 # define HI_OFF link_error()
44 #ifdef CONFIG_DEBUG_TCG
45 static const char * const tcg_target_reg_names[TCG_TARGET_NB_REGS] = {
81 #define TCG_TMP0 TCG_REG_AT
82 #define TCG_TMP1 TCG_REG_T9
83 #define TCG_TMP2 TCG_REG_T8
84 #define TCG_TMP3 TCG_REG_T7
86 #ifndef CONFIG_SOFTMMU
87 #define TCG_GUEST_BASE_REG TCG_REG_S1
90 /* check if we really need so many registers :P */
91 static const int tcg_target_reg_alloc_order[] = {
92 /* Call saved registers. */
103 /* Call clobbered registers. */
113 /* Argument registers, opposite order of allocation. */
124 static const TCGReg tcg_target_call_iarg_regs[] = {
129 #if _MIPS_SIM == _ABIN32 || _MIPS_SIM == _ABI64
137 static const TCGReg tcg_target_call_oarg_regs[2] = {
142 static const tcg_insn_unit *tb_ret_addr;
143 static const tcg_insn_unit *bswap32_addr;
144 static const tcg_insn_unit *bswap32u_addr;
145 static const tcg_insn_unit *bswap64_addr;
147 static bool reloc_pc16(tcg_insn_unit *src_rw, const tcg_insn_unit *target)
149 /* Let the compiler perform the right-shift as part of the arithmetic. */
150 const tcg_insn_unit *src_rx = tcg_splitwx_to_rx(src_rw);
151 ptrdiff_t disp = target - (src_rx + 1);
152 if (disp == (int16_t)disp) {
153 *src_rw = deposit32(*src_rw, 0, 16, disp);
159 static bool patch_reloc(tcg_insn_unit *code_ptr, int type,
160 intptr_t value, intptr_t addend)
162 tcg_debug_assert(type == R_MIPS_PC16);
163 tcg_debug_assert(addend == 0);
164 return reloc_pc16(code_ptr, (const tcg_insn_unit *)value);
167 #define TCG_CT_CONST_ZERO 0x100
168 #define TCG_CT_CONST_U16 0x200 /* Unsigned 16-bit: 0 - 0xffff. */
169 #define TCG_CT_CONST_S16 0x400 /* Signed 16-bit: -32768 - 32767 */
170 #define TCG_CT_CONST_P2M1 0x800 /* Power of 2 minus 1. */
171 #define TCG_CT_CONST_N16 0x1000 /* "Negatable" 16-bit: -32767 - 32767 */
172 #define TCG_CT_CONST_WSZ 0x2000 /* word size */
174 #define ALL_GENERAL_REGS 0xffffffffu
175 #define NOA0_REGS (ALL_GENERAL_REGS & ~(1 << TCG_REG_A0))
177 #ifdef CONFIG_SOFTMMU
178 #define ALL_QLOAD_REGS \
179 (NOA0_REGS & ~((TCG_TARGET_REG_BITS < TARGET_LONG_BITS) << TCG_REG_A2))
180 #define ALL_QSTORE_REGS \
181 (NOA0_REGS & ~(TCG_TARGET_REG_BITS < TARGET_LONG_BITS \
182 ? (1 << TCG_REG_A2) | (1 << TCG_REG_A3) \
183 : (1 << TCG_REG_A1)))
185 #define ALL_QLOAD_REGS NOA0_REGS
186 #define ALL_QSTORE_REGS NOA0_REGS
190 static bool is_p2m1(tcg_target_long val)
192 return val && ((val + 1) & val) == 0;
195 /* test if a constant matches the constraint */
196 static bool tcg_target_const_match(int64_t val, TCGType type, int ct)
198 if (ct & TCG_CT_CONST) {
200 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
202 } else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val) {
204 } else if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
206 } else if ((ct & TCG_CT_CONST_N16) && val >= -32767 && val <= 32767) {
208 } else if ((ct & TCG_CT_CONST_P2M1)
209 && use_mips32r2_instructions && is_p2m1(val)) {
211 } else if ((ct & TCG_CT_CONST_WSZ)
212 && val == (type == TCG_TYPE_I32 ? 32 : 64)) {
218 /* instruction opcodes */
224 OPC_BLEZ = 006 << 26,
225 OPC_BGTZ = 007 << 26,
226 OPC_ADDIU = 011 << 26,
227 OPC_SLTI = 012 << 26,
228 OPC_SLTIU = 013 << 26,
229 OPC_ANDI = 014 << 26,
231 OPC_XORI = 016 << 26,
233 OPC_DADDIU = 031 << 26,
246 OPC_SPECIAL = 000 << 26,
247 OPC_SLL = OPC_SPECIAL | 000,
248 OPC_SRL = OPC_SPECIAL | 002,
249 OPC_ROTR = OPC_SPECIAL | 002 | (1 << 21),
250 OPC_SRA = OPC_SPECIAL | 003,
251 OPC_SLLV = OPC_SPECIAL | 004,
252 OPC_SRLV = OPC_SPECIAL | 006,
253 OPC_ROTRV = OPC_SPECIAL | 006 | 0100,
254 OPC_SRAV = OPC_SPECIAL | 007,
255 OPC_JR_R5 = OPC_SPECIAL | 010,
256 OPC_JALR = OPC_SPECIAL | 011,
257 OPC_MOVZ = OPC_SPECIAL | 012,
258 OPC_MOVN = OPC_SPECIAL | 013,
259 OPC_SYNC = OPC_SPECIAL | 017,
260 OPC_MFHI = OPC_SPECIAL | 020,
261 OPC_MFLO = OPC_SPECIAL | 022,
262 OPC_DSLLV = OPC_SPECIAL | 024,
263 OPC_DSRLV = OPC_SPECIAL | 026,
264 OPC_DROTRV = OPC_SPECIAL | 026 | 0100,
265 OPC_DSRAV = OPC_SPECIAL | 027,
266 OPC_MULT = OPC_SPECIAL | 030,
267 OPC_MUL_R6 = OPC_SPECIAL | 030 | 0200,
268 OPC_MUH = OPC_SPECIAL | 030 | 0300,
269 OPC_MULTU = OPC_SPECIAL | 031,
270 OPC_MULU = OPC_SPECIAL | 031 | 0200,
271 OPC_MUHU = OPC_SPECIAL | 031 | 0300,
272 OPC_DIV = OPC_SPECIAL | 032,
273 OPC_DIV_R6 = OPC_SPECIAL | 032 | 0200,
274 OPC_MOD = OPC_SPECIAL | 032 | 0300,
275 OPC_DIVU = OPC_SPECIAL | 033,
276 OPC_DIVU_R6 = OPC_SPECIAL | 033 | 0200,
277 OPC_MODU = OPC_SPECIAL | 033 | 0300,
278 OPC_DMULT = OPC_SPECIAL | 034,
279 OPC_DMUL = OPC_SPECIAL | 034 | 0200,
280 OPC_DMUH = OPC_SPECIAL | 034 | 0300,
281 OPC_DMULTU = OPC_SPECIAL | 035,
282 OPC_DMULU = OPC_SPECIAL | 035 | 0200,
283 OPC_DMUHU = OPC_SPECIAL | 035 | 0300,
284 OPC_DDIV = OPC_SPECIAL | 036,
285 OPC_DDIV_R6 = OPC_SPECIAL | 036 | 0200,
286 OPC_DMOD = OPC_SPECIAL | 036 | 0300,
287 OPC_DDIVU = OPC_SPECIAL | 037,
288 OPC_DDIVU_R6 = OPC_SPECIAL | 037 | 0200,
289 OPC_DMODU = OPC_SPECIAL | 037 | 0300,
290 OPC_ADDU = OPC_SPECIAL | 041,
291 OPC_SUBU = OPC_SPECIAL | 043,
292 OPC_AND = OPC_SPECIAL | 044,
293 OPC_OR = OPC_SPECIAL | 045,
294 OPC_XOR = OPC_SPECIAL | 046,
295 OPC_NOR = OPC_SPECIAL | 047,
296 OPC_SLT = OPC_SPECIAL | 052,
297 OPC_SLTU = OPC_SPECIAL | 053,
298 OPC_DADDU = OPC_SPECIAL | 055,
299 OPC_DSUBU = OPC_SPECIAL | 057,
300 OPC_SELEQZ = OPC_SPECIAL | 065,
301 OPC_SELNEZ = OPC_SPECIAL | 067,
302 OPC_DSLL = OPC_SPECIAL | 070,
303 OPC_DSRL = OPC_SPECIAL | 072,
304 OPC_DROTR = OPC_SPECIAL | 072 | (1 << 21),
305 OPC_DSRA = OPC_SPECIAL | 073,
306 OPC_DSLL32 = OPC_SPECIAL | 074,
307 OPC_DSRL32 = OPC_SPECIAL | 076,
308 OPC_DROTR32 = OPC_SPECIAL | 076 | (1 << 21),
309 OPC_DSRA32 = OPC_SPECIAL | 077,
310 OPC_CLZ_R6 = OPC_SPECIAL | 0120,
311 OPC_DCLZ_R6 = OPC_SPECIAL | 0122,
313 OPC_REGIMM = 001 << 26,
314 OPC_BLTZ = OPC_REGIMM | (000 << 16),
315 OPC_BGEZ = OPC_REGIMM | (001 << 16),
317 OPC_SPECIAL2 = 034 << 26,
318 OPC_MUL_R5 = OPC_SPECIAL2 | 002,
319 OPC_CLZ = OPC_SPECIAL2 | 040,
320 OPC_DCLZ = OPC_SPECIAL2 | 044,
322 OPC_SPECIAL3 = 037 << 26,
323 OPC_EXT = OPC_SPECIAL3 | 000,
324 OPC_DEXTM = OPC_SPECIAL3 | 001,
325 OPC_DEXTU = OPC_SPECIAL3 | 002,
326 OPC_DEXT = OPC_SPECIAL3 | 003,
327 OPC_INS = OPC_SPECIAL3 | 004,
328 OPC_DINSM = OPC_SPECIAL3 | 005,
329 OPC_DINSU = OPC_SPECIAL3 | 006,
330 OPC_DINS = OPC_SPECIAL3 | 007,
331 OPC_WSBH = OPC_SPECIAL3 | 00240,
332 OPC_DSBH = OPC_SPECIAL3 | 00244,
333 OPC_DSHD = OPC_SPECIAL3 | 00544,
334 OPC_SEB = OPC_SPECIAL3 | 02040,
335 OPC_SEH = OPC_SPECIAL3 | 03040,
337 /* MIPS r6 doesn't have JR, JALR should be used instead */
338 OPC_JR = use_mips32r6_instructions ? OPC_JALR : OPC_JR_R5,
341 * MIPS r6 replaces MUL with an alternative encoding which is
342 * backwards-compatible at the assembly level.
344 OPC_MUL = use_mips32r6_instructions ? OPC_MUL_R6 : OPC_MUL_R5,
346 /* MIPS r6 introduced names for weaker variants of SYNC. These are
347 backward compatible to previous architecture revisions. */
348 OPC_SYNC_WMB = OPC_SYNC | 0x04 << 6,
349 OPC_SYNC_MB = OPC_SYNC | 0x10 << 6,
350 OPC_SYNC_ACQUIRE = OPC_SYNC | 0x11 << 6,
351 OPC_SYNC_RELEASE = OPC_SYNC | 0x12 << 6,
352 OPC_SYNC_RMB = OPC_SYNC | 0x13 << 6,
354 /* Aliases for convenience. */
355 ALIAS_PADD = sizeof(void *) == 4 ? OPC_ADDU : OPC_DADDU,
356 ALIAS_PADDI = sizeof(void *) == 4 ? OPC_ADDIU : OPC_DADDIU,
357 ALIAS_TSRL = TARGET_LONG_BITS == 32 || TCG_TARGET_REG_BITS == 32
358 ? OPC_SRL : OPC_DSRL,
364 static void tcg_out_opc_reg(TCGContext *s, MIPSInsn opc,
365 TCGReg rd, TCGReg rs, TCGReg rt)
370 inst |= (rs & 0x1F) << 21;
371 inst |= (rt & 0x1F) << 16;
372 inst |= (rd & 0x1F) << 11;
379 static void tcg_out_opc_imm(TCGContext *s, MIPSInsn opc,
380 TCGReg rt, TCGReg rs, TCGArg imm)
385 inst |= (rs & 0x1F) << 21;
386 inst |= (rt & 0x1F) << 16;
387 inst |= (imm & 0xffff);
394 static void tcg_out_opc_bf(TCGContext *s, MIPSInsn opc, TCGReg rt,
395 TCGReg rs, int msb, int lsb)
400 inst |= (rs & 0x1F) << 21;
401 inst |= (rt & 0x1F) << 16;
402 inst |= (msb & 0x1F) << 11;
403 inst |= (lsb & 0x1F) << 6;
407 static void tcg_out_opc_bf64(TCGContext *s, MIPSInsn opc, MIPSInsn opm,
408 MIPSInsn oph, TCGReg rt, TCGReg rs,
415 } else if (msb >= 32) {
419 tcg_out_opc_bf(s, opc, rt, rs, msb, lsb);
425 static void tcg_out_opc_br(TCGContext *s, MIPSInsn opc, TCGReg rt, TCGReg rs)
427 tcg_out_opc_imm(s, opc, rt, rs, 0);
433 static void tcg_out_opc_sa(TCGContext *s, MIPSInsn opc,
434 TCGReg rd, TCGReg rt, TCGArg sa)
439 inst |= (rt & 0x1F) << 16;
440 inst |= (rd & 0x1F) << 11;
441 inst |= (sa & 0x1F) << 6;
446 static void tcg_out_opc_sa64(TCGContext *s, MIPSInsn opc1, MIPSInsn opc2,
447 TCGReg rd, TCGReg rt, TCGArg sa)
451 inst = (sa & 32 ? opc2 : opc1);
452 inst |= (rt & 0x1F) << 16;
453 inst |= (rd & 0x1F) << 11;
454 inst |= (sa & 0x1F) << 6;
460 * Returns true if the branch was in range and the insn was emitted.
462 static bool tcg_out_opc_jmp(TCGContext *s, MIPSInsn opc, const void *target)
464 uintptr_t dest = (uintptr_t)target;
465 uintptr_t from = (uintptr_t)tcg_splitwx_to_rx(s->code_ptr) + 4;
468 /* The pc-region branch happens within the 256MB region of
469 the delay slot (thus the +4). */
470 if ((from ^ dest) & -(1 << 28)) {
473 tcg_debug_assert((dest & 3) == 0);
476 inst |= (dest >> 2) & 0x3ffffff;
481 static void tcg_out_nop(TCGContext *s)
486 static void tcg_out_dsll(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
488 tcg_out_opc_sa64(s, OPC_DSLL, OPC_DSLL32, rd, rt, sa);
491 static void tcg_out_dsrl(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
493 tcg_out_opc_sa64(s, OPC_DSRL, OPC_DSRL32, rd, rt, sa);
496 static void tcg_out_dsra(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
498 tcg_out_opc_sa64(s, OPC_DSRA, OPC_DSRA32, rd, rt, sa);
501 static bool tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg)
503 /* Simple reg-reg move, optimising out the 'do nothing' case */
505 tcg_out_opc_reg(s, OPC_OR, ret, arg, TCG_REG_ZERO);
510 static void tcg_out_movi(TCGContext *s, TCGType type,
511 TCGReg ret, tcg_target_long arg)
513 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
516 if (arg == (int16_t)arg) {
517 tcg_out_opc_imm(s, OPC_ADDIU, ret, TCG_REG_ZERO, arg);
520 if (arg == (uint16_t)arg) {
521 tcg_out_opc_imm(s, OPC_ORI, ret, TCG_REG_ZERO, arg);
524 if (TCG_TARGET_REG_BITS == 32 || arg == (int32_t)arg) {
525 tcg_out_opc_imm(s, OPC_LUI, ret, TCG_REG_ZERO, arg >> 16);
527 tcg_out_movi(s, TCG_TYPE_I32, ret, arg >> 31 >> 1);
528 if (arg & 0xffff0000ull) {
529 tcg_out_dsll(s, ret, ret, 16);
530 tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg >> 16);
531 tcg_out_dsll(s, ret, ret, 16);
533 tcg_out_dsll(s, ret, ret, 32);
537 tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg & 0xffff);
541 static void tcg_out_bswap16(TCGContext *s, TCGReg ret, TCGReg arg, int flags)
543 /* ret and arg can't be register tmp0 */
544 tcg_debug_assert(ret != TCG_TMP0);
545 tcg_debug_assert(arg != TCG_TMP0);
547 /* With arg = abcd: */
548 if (use_mips32r2_instructions) {
549 tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg); /* badc */
550 if (flags & TCG_BSWAP_OS) {
551 tcg_out_opc_reg(s, OPC_SEH, ret, 0, ret); /* ssdc */
552 } else if ((flags & (TCG_BSWAP_IZ | TCG_BSWAP_OZ)) == TCG_BSWAP_OZ) {
553 tcg_out_opc_imm(s, OPC_ANDI, ret, ret, 0xffff); /* 00dc */
558 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP0, arg, 8); /* 0abc */
559 if (!(flags & TCG_BSWAP_IZ)) {
560 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP0, TCG_TMP0, 0x00ff); /* 000c */
562 if (flags & TCG_BSWAP_OS) {
563 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24); /* d000 */
564 tcg_out_opc_sa(s, OPC_SRA, ret, ret, 16); /* ssd0 */
566 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 8); /* bcd0 */
567 if (flags & TCG_BSWAP_OZ) {
568 tcg_out_opc_imm(s, OPC_ANDI, ret, ret, 0xff00); /* 00d0 */
571 tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_TMP0); /* ssdc */
574 static void tcg_out_bswap_subr(TCGContext *s, const tcg_insn_unit *sub)
576 if (!tcg_out_opc_jmp(s, OPC_JAL, sub)) {
577 tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP1, (uintptr_t)sub);
578 tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_TMP1, 0);
582 static void tcg_out_bswap32(TCGContext *s, TCGReg ret, TCGReg arg, int flags)
584 if (use_mips32r2_instructions) {
585 tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
586 tcg_out_opc_sa(s, OPC_ROTR, ret, ret, 16);
587 if (flags & TCG_BSWAP_OZ) {
588 tcg_out_opc_bf(s, OPC_DEXT, ret, ret, 31, 0);
591 if (flags & TCG_BSWAP_OZ) {
592 tcg_out_bswap_subr(s, bswap32u_addr);
594 tcg_out_bswap_subr(s, bswap32_addr);
596 /* delay slot -- never omit the insn, like tcg_out_mov might. */
597 tcg_out_opc_reg(s, OPC_OR, TCG_TMP0, arg, TCG_REG_ZERO);
598 tcg_out_mov(s, TCG_TYPE_I32, ret, TCG_TMP3);
602 static void tcg_out_bswap64(TCGContext *s, TCGReg ret, TCGReg arg)
604 if (use_mips32r2_instructions) {
605 tcg_out_opc_reg(s, OPC_DSBH, ret, 0, arg);
606 tcg_out_opc_reg(s, OPC_DSHD, ret, 0, ret);
608 tcg_out_bswap_subr(s, bswap64_addr);
609 /* delay slot -- never omit the insn, like tcg_out_mov might. */
610 tcg_out_opc_reg(s, OPC_OR, TCG_TMP0, arg, TCG_REG_ZERO);
611 tcg_out_mov(s, TCG_TYPE_I32, ret, TCG_TMP3);
615 static void tcg_out_ext32u(TCGContext *s, TCGReg ret, TCGReg arg)
617 if (use_mips32r2_instructions) {
618 tcg_out_opc_bf(s, OPC_DEXT, ret, arg, 31, 0);
620 tcg_out_dsll(s, ret, arg, 32);
621 tcg_out_dsrl(s, ret, ret, 32);
625 static void tcg_out_ldst(TCGContext *s, MIPSInsn opc, TCGReg data,
626 TCGReg addr, intptr_t ofs)
630 tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP0, ofs - lo);
631 if (addr != TCG_REG_ZERO) {
632 tcg_out_opc_reg(s, ALIAS_PADD, TCG_TMP0, TCG_TMP0, addr);
636 tcg_out_opc_imm(s, opc, data, addr, lo);
639 static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
640 TCGReg arg1, intptr_t arg2)
642 MIPSInsn opc = OPC_LD;
643 if (TCG_TARGET_REG_BITS == 32 || type == TCG_TYPE_I32) {
646 tcg_out_ldst(s, opc, arg, arg1, arg2);
649 static void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
650 TCGReg arg1, intptr_t arg2)
652 MIPSInsn opc = OPC_SD;
653 if (TCG_TARGET_REG_BITS == 32 || type == TCG_TYPE_I32) {
656 tcg_out_ldst(s, opc, arg, arg1, arg2);
659 static bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
660 TCGReg base, intptr_t ofs)
663 tcg_out_st(s, type, TCG_REG_ZERO, base, ofs);
669 static void tcg_out_addsub2(TCGContext *s, TCGReg rl, TCGReg rh, TCGReg al,
670 TCGReg ah, TCGArg bl, TCGArg bh, bool cbl,
671 bool cbh, bool is_sub)
673 TCGReg th = TCG_TMP1;
675 /* If we have a negative constant such that negating it would
676 make the high part zero, we can (usually) eliminate one insn. */
677 if (cbl && cbh && bh == -1 && bl != 0) {
683 /* By operating on the high part first, we get to use the final
684 carry operation to move back from the temporary. */
686 tcg_out_opc_reg(s, (is_sub ? OPC_SUBU : OPC_ADDU), th, ah, bh);
687 } else if (bh != 0 || ah == rl) {
688 tcg_out_opc_imm(s, OPC_ADDIU, th, ah, (is_sub ? -bh : bh));
693 /* Note that tcg optimization should eliminate the bl == 0 case. */
696 tcg_out_opc_imm(s, OPC_SLTIU, TCG_TMP0, al, bl);
697 tcg_out_opc_imm(s, OPC_ADDIU, rl, al, -bl);
699 tcg_out_opc_reg(s, OPC_SLTU, TCG_TMP0, al, bl);
700 tcg_out_opc_reg(s, OPC_SUBU, rl, al, bl);
702 tcg_out_opc_reg(s, OPC_SUBU, rh, th, TCG_TMP0);
705 tcg_out_opc_imm(s, OPC_ADDIU, rl, al, bl);
706 tcg_out_opc_imm(s, OPC_SLTIU, TCG_TMP0, rl, bl);
707 } else if (rl == al && rl == bl) {
708 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP0, al, TCG_TARGET_REG_BITS - 1);
709 tcg_out_opc_reg(s, OPC_ADDU, rl, al, bl);
711 tcg_out_opc_reg(s, OPC_ADDU, rl, al, bl);
712 tcg_out_opc_reg(s, OPC_SLTU, TCG_TMP0, rl, (rl == bl ? al : bl));
714 tcg_out_opc_reg(s, OPC_ADDU, rh, th, TCG_TMP0);
718 /* Bit 0 set if inversion required; bit 1 set if swapping required. */
719 #define MIPS_CMP_INV 1
720 #define MIPS_CMP_SWAP 2
722 static const uint8_t mips_cmp_map[16] = {
725 [TCG_COND_GE] = MIPS_CMP_INV,
726 [TCG_COND_GEU] = MIPS_CMP_INV,
727 [TCG_COND_LE] = MIPS_CMP_INV | MIPS_CMP_SWAP,
728 [TCG_COND_LEU] = MIPS_CMP_INV | MIPS_CMP_SWAP,
729 [TCG_COND_GT] = MIPS_CMP_SWAP,
730 [TCG_COND_GTU] = MIPS_CMP_SWAP,
733 static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGReg ret,
734 TCGReg arg1, TCGReg arg2)
736 MIPSInsn s_opc = OPC_SLTU;
742 tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
745 tcg_out_opc_imm(s, OPC_SLTIU, ret, arg1, 1);
750 tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
753 tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, arg1);
767 cmp_map = mips_cmp_map[cond];
768 if (cmp_map & MIPS_CMP_SWAP) {
773 tcg_out_opc_reg(s, s_opc, ret, arg1, arg2);
774 if (cmp_map & MIPS_CMP_INV) {
775 tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
785 static void tcg_out_brcond(TCGContext *s, TCGCond cond, TCGReg arg1,
786 TCGReg arg2, TCGLabel *l)
788 static const MIPSInsn b_zero[16] = {
789 [TCG_COND_LT] = OPC_BLTZ,
790 [TCG_COND_GT] = OPC_BGTZ,
791 [TCG_COND_LE] = OPC_BLEZ,
792 [TCG_COND_GE] = OPC_BGEZ,
795 MIPSInsn s_opc = OPC_SLTU;
812 b_opc = b_zero[cond];
824 cmp_map = mips_cmp_map[cond];
825 if (cmp_map & MIPS_CMP_SWAP) {
830 tcg_out_opc_reg(s, s_opc, TCG_TMP0, arg1, arg2);
831 b_opc = (cmp_map & MIPS_CMP_INV ? OPC_BEQ : OPC_BNE);
841 tcg_out_opc_br(s, b_opc, arg1, arg2);
842 tcg_out_reloc(s, s->code_ptr - 1, R_MIPS_PC16, l, 0);
846 static TCGReg tcg_out_reduce_eq2(TCGContext *s, TCGReg tmp0, TCGReg tmp1,
847 TCGReg al, TCGReg ah,
848 TCGReg bl, TCGReg bh)
850 /* Merge highpart comparison into AH. */
853 tcg_out_opc_reg(s, OPC_XOR, tmp0, ah, bh);
859 /* Merge lowpart comparison into AL. */
862 tcg_out_opc_reg(s, OPC_XOR, tmp1, al, bl);
868 /* Merge high and low part comparisons into AL. */
871 tcg_out_opc_reg(s, OPC_OR, tmp0, ah, al);
880 static void tcg_out_setcond2(TCGContext *s, TCGCond cond, TCGReg ret,
881 TCGReg al, TCGReg ah, TCGReg bl, TCGReg bh)
883 TCGReg tmp0 = TCG_TMP0;
886 tcg_debug_assert(ret != TCG_TMP0);
887 if (ret == ah || ret == bh) {
888 tcg_debug_assert(ret != TCG_TMP1);
895 tmp1 = tcg_out_reduce_eq2(s, tmp0, tmp1, al, ah, bl, bh);
896 tcg_out_setcond(s, cond, ret, tmp1, TCG_REG_ZERO);
900 tcg_out_setcond(s, TCG_COND_EQ, tmp0, ah, bh);
901 tcg_out_setcond(s, tcg_unsigned_cond(cond), tmp1, al, bl);
902 tcg_out_opc_reg(s, OPC_AND, tmp1, tmp1, tmp0);
903 tcg_out_setcond(s, tcg_high_cond(cond), tmp0, ah, bh);
904 tcg_out_opc_reg(s, OPC_OR, ret, tmp1, tmp0);
909 static void tcg_out_brcond2(TCGContext *s, TCGCond cond, TCGReg al, TCGReg ah,
910 TCGReg bl, TCGReg bh, TCGLabel *l)
912 TCGCond b_cond = TCG_COND_NE;
913 TCGReg tmp = TCG_TMP1;
915 /* With branches, we emit between 4 and 9 insns with 2 or 3 branches.
916 With setcond, we emit between 3 and 10 insns and only 1 branch,
917 which ought to get better branch prediction. */
922 tmp = tcg_out_reduce_eq2(s, TCG_TMP0, TCG_TMP1, al, ah, bl, bh);
926 /* Minimize code size by preferring a compare not requiring INV. */
927 if (mips_cmp_map[cond] & MIPS_CMP_INV) {
928 cond = tcg_invert_cond(cond);
929 b_cond = TCG_COND_EQ;
931 tcg_out_setcond2(s, cond, tmp, al, ah, bl, bh);
935 tcg_out_brcond(s, b_cond, tmp, TCG_REG_ZERO, l);
938 static void tcg_out_movcond(TCGContext *s, TCGCond cond, TCGReg ret,
939 TCGReg c1, TCGReg c2, TCGReg v1, TCGReg v2)
943 /* If one of the values is zero, put it last to match SEL*Z instructions */
944 if (use_mips32r6_instructions && v1 == 0) {
947 cond = tcg_invert_cond(cond);
956 tcg_out_opc_reg(s, OPC_XOR, TCG_TMP0, c1, c2);
962 /* Minimize code size by preferring a compare not requiring INV. */
963 if (mips_cmp_map[cond] & MIPS_CMP_INV) {
964 cond = tcg_invert_cond(cond);
967 tcg_out_setcond(s, cond, TCG_TMP0, c1, c2);
972 if (use_mips32r6_instructions) {
973 MIPSInsn m_opc_t = eqz ? OPC_SELEQZ : OPC_SELNEZ;
974 MIPSInsn m_opc_f = eqz ? OPC_SELNEZ : OPC_SELEQZ;
977 tcg_out_opc_reg(s, m_opc_f, TCG_TMP1, v2, c1);
979 tcg_out_opc_reg(s, m_opc_t, ret, v1, c1);
981 tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_TMP1);
984 MIPSInsn m_opc = eqz ? OPC_MOVZ : OPC_MOVN;
986 tcg_out_opc_reg(s, m_opc, ret, v1, c1);
988 /* This should be guaranteed via constraints */
989 tcg_debug_assert(v2 == ret);
993 static void tcg_out_call_int(TCGContext *s, const tcg_insn_unit *arg, bool tail)
995 /* Note that the ABI requires the called function's address to be
996 loaded into T9, even if a direct branch is in range. */
997 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_T9, (uintptr_t)arg);
999 /* But do try a direct branch, allowing the cpu better insn prefetch. */
1001 if (!tcg_out_opc_jmp(s, OPC_J, arg)) {
1002 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_T9, 0);
1005 if (!tcg_out_opc_jmp(s, OPC_JAL, arg)) {
1006 tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_REG_T9, 0);
1011 static void tcg_out_call(TCGContext *s, const tcg_insn_unit *arg)
1013 tcg_out_call_int(s, arg, false);
1017 #if defined(CONFIG_SOFTMMU)
1018 #include "../tcg-ldst.c.inc"
1020 static void * const qemu_ld_helpers[(MO_SSIZE | MO_BSWAP) + 1] = {
1021 [MO_UB] = helper_ret_ldub_mmu,
1022 [MO_SB] = helper_ret_ldsb_mmu,
1023 [MO_LEUW] = helper_le_lduw_mmu,
1024 [MO_LESW] = helper_le_ldsw_mmu,
1025 [MO_LEUL] = helper_le_ldul_mmu,
1026 [MO_LEQ] = helper_le_ldq_mmu,
1027 [MO_BEUW] = helper_be_lduw_mmu,
1028 [MO_BESW] = helper_be_ldsw_mmu,
1029 [MO_BEUL] = helper_be_ldul_mmu,
1030 [MO_BEQ] = helper_be_ldq_mmu,
1031 #if TCG_TARGET_REG_BITS == 64
1032 [MO_LESL] = helper_le_ldsl_mmu,
1033 [MO_BESL] = helper_be_ldsl_mmu,
1037 static void * const qemu_st_helpers[(MO_SIZE | MO_BSWAP) + 1] = {
1038 [MO_UB] = helper_ret_stb_mmu,
1039 [MO_LEUW] = helper_le_stw_mmu,
1040 [MO_LEUL] = helper_le_stl_mmu,
1041 [MO_LEQ] = helper_le_stq_mmu,
1042 [MO_BEUW] = helper_be_stw_mmu,
1043 [MO_BEUL] = helper_be_stl_mmu,
1044 [MO_BEQ] = helper_be_stq_mmu,
1047 /* Helper routines for marshalling helper function arguments into
1048 * the correct registers and stack.
1049 * I is where we want to put this argument, and is updated and returned
1050 * for the next call. ARG is the argument itself.
1052 * We provide routines for arguments which are: immediate, 32 bit
1053 * value in register, 16 and 8 bit values in register (which must be zero
1054 * extended before use) and 64 bit value in a lo:hi register pair.
1057 static int tcg_out_call_iarg_reg(TCGContext *s, int i, TCGReg arg)
1059 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1060 tcg_out_mov(s, TCG_TYPE_REG, tcg_target_call_iarg_regs[i], arg);
1062 /* For N32 and N64, the initial offset is different. But there
1063 we also have 8 argument register so we don't run out here. */
1064 tcg_debug_assert(TCG_TARGET_REG_BITS == 32);
1065 tcg_out_st(s, TCG_TYPE_REG, arg, TCG_REG_SP, 4 * i);
1070 static int tcg_out_call_iarg_reg8(TCGContext *s, int i, TCGReg arg)
1072 TCGReg tmp = TCG_TMP0;
1073 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1074 tmp = tcg_target_call_iarg_regs[i];
1076 tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xff);
1077 return tcg_out_call_iarg_reg(s, i, tmp);
1080 static int tcg_out_call_iarg_reg16(TCGContext *s, int i, TCGReg arg)
1082 TCGReg tmp = TCG_TMP0;
1083 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1084 tmp = tcg_target_call_iarg_regs[i];
1086 tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xffff);
1087 return tcg_out_call_iarg_reg(s, i, tmp);
1090 static int tcg_out_call_iarg_imm(TCGContext *s, int i, TCGArg arg)
1092 TCGReg tmp = TCG_TMP0;
1096 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1097 tmp = tcg_target_call_iarg_regs[i];
1099 tcg_out_movi(s, TCG_TYPE_REG, tmp, arg);
1101 return tcg_out_call_iarg_reg(s, i, tmp);
1104 static int tcg_out_call_iarg_reg2(TCGContext *s, int i, TCGReg al, TCGReg ah)
1106 tcg_debug_assert(TCG_TARGET_REG_BITS == 32);
1108 i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? ah : al));
1109 i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? al : ah));
1113 /* We expect to use a 16-bit negative offset from ENV. */
1114 QEMU_BUILD_BUG_ON(TLB_MASK_TABLE_OFS(0) > 0);
1115 QEMU_BUILD_BUG_ON(TLB_MASK_TABLE_OFS(0) < -32768);
1118 * Perform the tlb comparison operation.
1119 * The complete host address is placed in BASE.
1120 * Clobbers TMP0, TMP1, TMP2, TMP3.
1122 static void tcg_out_tlb_load(TCGContext *s, TCGReg base, TCGReg addrl,
1123 TCGReg addrh, MemOpIdx oi,
1124 tcg_insn_unit *label_ptr[2], bool is_load)
1126 MemOp opc = get_memop(oi);
1127 unsigned s_bits = opc & MO_SIZE;
1128 unsigned a_bits = get_alignment_bits(opc);
1129 int mem_index = get_mmuidx(oi);
1130 int fast_off = TLB_MASK_TABLE_OFS(mem_index);
1131 int mask_off = fast_off + offsetof(CPUTLBDescFast, mask);
1132 int table_off = fast_off + offsetof(CPUTLBDescFast, table);
1133 int add_off = offsetof(CPUTLBEntry, addend);
1134 int cmp_off = (is_load ? offsetof(CPUTLBEntry, addr_read)
1135 : offsetof(CPUTLBEntry, addr_write));
1138 /* Load tlb_mask[mmu_idx] and tlb_table[mmu_idx]. */
1139 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP0, TCG_AREG0, mask_off);
1140 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP1, TCG_AREG0, table_off);
1142 /* Extract the TLB index from the address into TMP3. */
1143 tcg_out_opc_sa(s, ALIAS_TSRL, TCG_TMP3, addrl,
1144 TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);
1145 tcg_out_opc_reg(s, OPC_AND, TCG_TMP3, TCG_TMP3, TCG_TMP0);
1147 /* Add the tlb_table pointer, creating the CPUTLBEntry address in TMP3. */
1148 tcg_out_opc_reg(s, ALIAS_PADD, TCG_TMP3, TCG_TMP3, TCG_TMP1);
1150 /* We don't currently support unaligned accesses.
1151 We could do so with mips32r6. */
1152 if (a_bits < s_bits) {
1156 /* Mask the page bits, keeping the alignment bits to compare against. */
1157 mask = (target_ulong)TARGET_PAGE_MASK | ((1 << a_bits) - 1);
1159 /* Load the (low-half) tlb comparator. */
1160 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1161 tcg_out_ld(s, TCG_TYPE_I32, TCG_TMP0, TCG_TMP3, cmp_off + LO_OFF);
1162 tcg_out_movi(s, TCG_TYPE_I32, TCG_TMP1, mask);
1164 tcg_out_ldst(s, (TARGET_LONG_BITS == 64 ? OPC_LD
1165 : TCG_TARGET_REG_BITS == 64 ? OPC_LWU : OPC_LW),
1166 TCG_TMP0, TCG_TMP3, cmp_off);
1167 tcg_out_movi(s, TCG_TYPE_TL, TCG_TMP1, mask);
1168 /* No second compare is required here;
1169 load the tlb addend for the fast path. */
1170 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP2, TCG_TMP3, add_off);
1173 /* Zero extend a 32-bit guest address for a 64-bit host. */
1174 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1175 tcg_out_ext32u(s, base, addrl);
1178 tcg_out_opc_reg(s, OPC_AND, TCG_TMP1, TCG_TMP1, addrl);
1180 label_ptr[0] = s->code_ptr;
1181 tcg_out_opc_br(s, OPC_BNE, TCG_TMP1, TCG_TMP0);
1183 /* Load and test the high half tlb comparator. */
1184 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1186 tcg_out_ld(s, TCG_TYPE_I32, TCG_TMP0, TCG_TMP3, cmp_off + HI_OFF);
1188 /* Load the tlb addend for the fast path. */
1189 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP2, TCG_TMP3, add_off);
1191 label_ptr[1] = s->code_ptr;
1192 tcg_out_opc_br(s, OPC_BNE, addrh, TCG_TMP0);
1196 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_TMP2, addrl);
1199 static void add_qemu_ldst_label(TCGContext *s, int is_ld, MemOpIdx oi,
1201 TCGReg datalo, TCGReg datahi,
1202 TCGReg addrlo, TCGReg addrhi,
1203 void *raddr, tcg_insn_unit *label_ptr[2])
1205 TCGLabelQemuLdst *label = new_ldst_label(s);
1207 label->is_ld = is_ld;
1210 label->datalo_reg = datalo;
1211 label->datahi_reg = datahi;
1212 label->addrlo_reg = addrlo;
1213 label->addrhi_reg = addrhi;
1214 label->raddr = tcg_splitwx_to_rx(raddr);
1215 label->label_ptr[0] = label_ptr[0];
1216 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1217 label->label_ptr[1] = label_ptr[1];
1221 static bool tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1223 const tcg_insn_unit *tgt_rx = tcg_splitwx_to_rx(s->code_ptr);
1224 MemOpIdx oi = l->oi;
1225 MemOp opc = get_memop(oi);
1229 /* resolve label address */
1230 if (!reloc_pc16(l->label_ptr[0], tgt_rx)
1231 || (TCG_TARGET_REG_BITS < TARGET_LONG_BITS
1232 && !reloc_pc16(l->label_ptr[1], tgt_rx))) {
1237 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1238 i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
1240 i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
1242 i = tcg_out_call_iarg_imm(s, i, oi);
1243 i = tcg_out_call_iarg_imm(s, i, (intptr_t)l->raddr);
1244 tcg_out_call_int(s, qemu_ld_helpers[opc & (MO_BSWAP | MO_SSIZE)], false);
1246 tcg_out_mov(s, TCG_TYPE_PTR, tcg_target_call_iarg_regs[0], TCG_AREG0);
1249 if (TCG_TARGET_REG_BITS == 32 && (opc & MO_SIZE) == MO_64) {
1250 /* We eliminated V0 from the possible output registers, so it
1251 cannot be clobbered here. So we must move V1 first. */
1253 tcg_out_mov(s, TCG_TYPE_I32, v0, TCG_REG_V1);
1256 tcg_out_mov(s, TCG_TYPE_I32, l->datahi_reg, TCG_REG_V1);
1260 tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
1261 if (!reloc_pc16(s->code_ptr - 1, l->raddr)) {
1266 if (TCG_TARGET_REG_BITS == 64 && l->type == TCG_TYPE_I32) {
1267 /* we always sign-extend 32-bit loads */
1268 tcg_out_opc_sa(s, OPC_SLL, v0, TCG_REG_V0, 0);
1270 tcg_out_opc_reg(s, OPC_OR, v0, TCG_REG_V0, TCG_REG_ZERO);
1275 static bool tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1277 const tcg_insn_unit *tgt_rx = tcg_splitwx_to_rx(s->code_ptr);
1278 MemOpIdx oi = l->oi;
1279 MemOp opc = get_memop(oi);
1280 MemOp s_bits = opc & MO_SIZE;
1283 /* resolve label address */
1284 if (!reloc_pc16(l->label_ptr[0], tgt_rx)
1285 || (TCG_TARGET_REG_BITS < TARGET_LONG_BITS
1286 && !reloc_pc16(l->label_ptr[1], tgt_rx))) {
1291 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1292 i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
1294 i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
1298 i = tcg_out_call_iarg_reg8(s, i, l->datalo_reg);
1301 i = tcg_out_call_iarg_reg16(s, i, l->datalo_reg);
1304 i = tcg_out_call_iarg_reg(s, i, l->datalo_reg);
1307 if (TCG_TARGET_REG_BITS == 32) {
1308 i = tcg_out_call_iarg_reg2(s, i, l->datalo_reg, l->datahi_reg);
1310 i = tcg_out_call_iarg_reg(s, i, l->datalo_reg);
1316 i = tcg_out_call_iarg_imm(s, i, oi);
1318 /* Tail call to the store helper. Thus force the return address
1319 computation to take place in the return address register. */
1320 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_RA, (intptr_t)l->raddr);
1321 i = tcg_out_call_iarg_reg(s, i, TCG_REG_RA);
1322 tcg_out_call_int(s, qemu_st_helpers[opc & (MO_BSWAP | MO_SIZE)], true);
1324 tcg_out_mov(s, TCG_TYPE_PTR, tcg_target_call_iarg_regs[0], TCG_AREG0);
1329 static void tcg_out_qemu_ld_direct(TCGContext *s, TCGReg lo, TCGReg hi,
1330 TCGReg base, MemOp opc, bool is_64)
1332 switch (opc & (MO_SSIZE | MO_BSWAP)) {
1334 tcg_out_opc_imm(s, OPC_LBU, lo, base, 0);
1337 tcg_out_opc_imm(s, OPC_LB, lo, base, 0);
1339 case MO_UW | MO_BSWAP:
1340 tcg_out_opc_imm(s, OPC_LHU, TCG_TMP1, base, 0);
1341 tcg_out_bswap16(s, lo, TCG_TMP1, TCG_BSWAP_IZ | TCG_BSWAP_OZ);
1344 tcg_out_opc_imm(s, OPC_LHU, lo, base, 0);
1346 case MO_SW | MO_BSWAP:
1347 tcg_out_opc_imm(s, OPC_LHU, TCG_TMP1, base, 0);
1348 tcg_out_bswap16(s, lo, TCG_TMP1, TCG_BSWAP_IZ | TCG_BSWAP_OS);
1351 tcg_out_opc_imm(s, OPC_LH, lo, base, 0);
1353 case MO_UL | MO_BSWAP:
1354 if (TCG_TARGET_REG_BITS == 64 && is_64) {
1355 if (use_mips32r2_instructions) {
1356 tcg_out_opc_imm(s, OPC_LWU, lo, base, 0);
1357 tcg_out_bswap32(s, lo, lo, TCG_BSWAP_IZ | TCG_BSWAP_OZ);
1359 tcg_out_bswap_subr(s, bswap32u_addr);
1361 tcg_out_opc_imm(s, OPC_LWU, TCG_TMP0, base, 0);
1362 tcg_out_mov(s, TCG_TYPE_I64, lo, TCG_TMP3);
1367 case MO_SL | MO_BSWAP:
1368 if (use_mips32r2_instructions) {
1369 tcg_out_opc_imm(s, OPC_LW, lo, base, 0);
1370 tcg_out_bswap32(s, lo, lo, 0);
1372 tcg_out_bswap_subr(s, bswap32_addr);
1374 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1375 tcg_out_mov(s, TCG_TYPE_I32, lo, TCG_TMP3);
1379 if (TCG_TARGET_REG_BITS == 64 && is_64) {
1380 tcg_out_opc_imm(s, OPC_LWU, lo, base, 0);
1385 tcg_out_opc_imm(s, OPC_LW, lo, base, 0);
1387 case MO_Q | MO_BSWAP:
1388 if (TCG_TARGET_REG_BITS == 64) {
1389 if (use_mips32r2_instructions) {
1390 tcg_out_opc_imm(s, OPC_LD, lo, base, 0);
1391 tcg_out_bswap64(s, lo, lo);
1393 tcg_out_bswap_subr(s, bswap64_addr);
1395 tcg_out_opc_imm(s, OPC_LD, TCG_TMP0, base, 0);
1396 tcg_out_mov(s, TCG_TYPE_I64, lo, TCG_TMP3);
1398 } else if (use_mips32r2_instructions) {
1399 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1400 tcg_out_opc_imm(s, OPC_LW, TCG_TMP1, base, 4);
1401 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP0, 0, TCG_TMP0);
1402 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP1, 0, TCG_TMP1);
1403 tcg_out_opc_sa(s, OPC_ROTR, MIPS_BE ? lo : hi, TCG_TMP0, 16);
1404 tcg_out_opc_sa(s, OPC_ROTR, MIPS_BE ? hi : lo, TCG_TMP1, 16);
1406 tcg_out_bswap_subr(s, bswap32_addr);
1408 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1409 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 4);
1410 tcg_out_bswap_subr(s, bswap32_addr);
1412 tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? lo : hi, TCG_TMP3);
1413 tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? hi : lo, TCG_TMP3);
1417 /* Prefer to load from offset 0 first, but allow for overlap. */
1418 if (TCG_TARGET_REG_BITS == 64) {
1419 tcg_out_opc_imm(s, OPC_LD, lo, base, 0);
1420 } else if (MIPS_BE ? hi != base : lo == base) {
1421 tcg_out_opc_imm(s, OPC_LW, hi, base, HI_OFF);
1422 tcg_out_opc_imm(s, OPC_LW, lo, base, LO_OFF);
1424 tcg_out_opc_imm(s, OPC_LW, lo, base, LO_OFF);
1425 tcg_out_opc_imm(s, OPC_LW, hi, base, HI_OFF);
1433 static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, bool is_64)
1435 TCGReg addr_regl, addr_regh __attribute__((unused));
1436 TCGReg data_regl, data_regh;
1439 #if defined(CONFIG_SOFTMMU)
1440 tcg_insn_unit *label_ptr[2];
1442 TCGReg base = TCG_REG_A0;
1444 data_regl = *args++;
1445 data_regh = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1446 addr_regl = *args++;
1447 addr_regh = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1449 opc = get_memop(oi);
1451 #if defined(CONFIG_SOFTMMU)
1452 tcg_out_tlb_load(s, base, addr_regl, addr_regh, oi, label_ptr, 1);
1453 tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc, is_64);
1454 add_qemu_ldst_label(s, 1, oi,
1455 (is_64 ? TCG_TYPE_I64 : TCG_TYPE_I32),
1456 data_regl, data_regh, addr_regl, addr_regh,
1457 s->code_ptr, label_ptr);
1459 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1460 tcg_out_ext32u(s, base, addr_regl);
1463 if (guest_base == 0 && data_regl != addr_regl) {
1465 } else if (guest_base == (int16_t)guest_base) {
1466 tcg_out_opc_imm(s, ALIAS_PADDI, base, addr_regl, guest_base);
1468 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_GUEST_BASE_REG, addr_regl);
1470 tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc, is_64);
1474 static void tcg_out_qemu_st_direct(TCGContext *s, TCGReg lo, TCGReg hi,
1475 TCGReg base, MemOp opc)
1477 /* Don't clutter the code below with checks to avoid bswapping ZERO. */
1478 if ((lo | hi) == 0) {
1482 switch (opc & (MO_SIZE | MO_BSWAP)) {
1484 tcg_out_opc_imm(s, OPC_SB, lo, base, 0);
1487 case MO_16 | MO_BSWAP:
1488 tcg_out_bswap16(s, TCG_TMP1, lo, 0);
1492 tcg_out_opc_imm(s, OPC_SH, lo, base, 0);
1495 case MO_32 | MO_BSWAP:
1496 tcg_out_bswap32(s, TCG_TMP3, lo, 0);
1500 tcg_out_opc_imm(s, OPC_SW, lo, base, 0);
1503 case MO_64 | MO_BSWAP:
1504 if (TCG_TARGET_REG_BITS == 64) {
1505 tcg_out_bswap64(s, TCG_TMP3, lo);
1506 tcg_out_opc_imm(s, OPC_SD, TCG_TMP3, base, 0);
1507 } else if (use_mips32r2_instructions) {
1508 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP0, 0, MIPS_BE ? lo : hi);
1509 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP1, 0, MIPS_BE ? hi : lo);
1510 tcg_out_opc_sa(s, OPC_ROTR, TCG_TMP0, TCG_TMP0, 16);
1511 tcg_out_opc_sa(s, OPC_ROTR, TCG_TMP1, TCG_TMP1, 16);
1512 tcg_out_opc_imm(s, OPC_SW, TCG_TMP0, base, 0);
1513 tcg_out_opc_imm(s, OPC_SW, TCG_TMP1, base, 4);
1515 tcg_out_bswap32(s, TCG_TMP3, MIPS_BE ? lo : hi, 0);
1516 tcg_out_opc_imm(s, OPC_SW, TCG_TMP3, base, 0);
1517 tcg_out_bswap32(s, TCG_TMP3, MIPS_BE ? hi : lo, 0);
1518 tcg_out_opc_imm(s, OPC_SW, TCG_TMP3, base, 4);
1522 if (TCG_TARGET_REG_BITS == 64) {
1523 tcg_out_opc_imm(s, OPC_SD, lo, base, 0);
1525 tcg_out_opc_imm(s, OPC_SW, MIPS_BE ? hi : lo, base, 0);
1526 tcg_out_opc_imm(s, OPC_SW, MIPS_BE ? lo : hi, base, 4);
1535 static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, bool is_64)
1537 TCGReg addr_regl, addr_regh __attribute__((unused));
1538 TCGReg data_regl, data_regh;
1541 #if defined(CONFIG_SOFTMMU)
1542 tcg_insn_unit *label_ptr[2];
1544 TCGReg base = TCG_REG_A0;
1546 data_regl = *args++;
1547 data_regh = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1548 addr_regl = *args++;
1549 addr_regh = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1551 opc = get_memop(oi);
1553 #if defined(CONFIG_SOFTMMU)
1554 tcg_out_tlb_load(s, base, addr_regl, addr_regh, oi, label_ptr, 0);
1555 tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
1556 add_qemu_ldst_label(s, 0, oi,
1557 (is_64 ? TCG_TYPE_I64 : TCG_TYPE_I32),
1558 data_regl, data_regh, addr_regl, addr_regh,
1559 s->code_ptr, label_ptr);
1562 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1563 tcg_out_ext32u(s, base, addr_regl);
1566 if (guest_base == 0) {
1568 } else if (guest_base == (int16_t)guest_base) {
1569 tcg_out_opc_imm(s, ALIAS_PADDI, base, addr_regl, guest_base);
1571 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_GUEST_BASE_REG, addr_regl);
1573 tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
1577 static void tcg_out_mb(TCGContext *s, TCGArg a0)
1579 static const MIPSInsn sync[] = {
1580 /* Note that SYNC_MB is a slightly weaker than SYNC 0,
1581 as the former is an ordering barrier and the latter
1582 is a completion barrier. */
1583 [0 ... TCG_MO_ALL] = OPC_SYNC_MB,
1584 [TCG_MO_LD_LD] = OPC_SYNC_RMB,
1585 [TCG_MO_ST_ST] = OPC_SYNC_WMB,
1586 [TCG_MO_LD_ST] = OPC_SYNC_RELEASE,
1587 [TCG_MO_LD_ST | TCG_MO_ST_ST] = OPC_SYNC_RELEASE,
1588 [TCG_MO_LD_ST | TCG_MO_LD_LD] = OPC_SYNC_ACQUIRE,
1590 tcg_out32(s, sync[a0 & TCG_MO_ALL]);
1593 static void tcg_out_clz(TCGContext *s, MIPSInsn opcv2, MIPSInsn opcv6,
1594 int width, TCGReg a0, TCGReg a1, TCGArg a2)
1596 if (use_mips32r6_instructions) {
1598 tcg_out_opc_reg(s, opcv6, a0, a1, 0);
1600 tcg_out_opc_reg(s, opcv6, TCG_TMP0, a1, 0);
1601 tcg_out_movcond(s, TCG_COND_EQ, a0, a1, 0, a2, TCG_TMP0);
1605 tcg_out_opc_reg(s, opcv2, a0, a1, a1);
1606 } else if (a0 == a2) {
1607 tcg_out_opc_reg(s, opcv2, TCG_TMP0, a1, a1);
1608 tcg_out_opc_reg(s, OPC_MOVN, a0, TCG_TMP0, a1);
1609 } else if (a0 != a1) {
1610 tcg_out_opc_reg(s, opcv2, a0, a1, a1);
1611 tcg_out_opc_reg(s, OPC_MOVZ, a0, a2, a1);
1613 tcg_out_opc_reg(s, opcv2, TCG_TMP0, a1, a1);
1614 tcg_out_opc_reg(s, OPC_MOVZ, TCG_TMP0, a2, a1);
1615 tcg_out_mov(s, TCG_TYPE_REG, a0, TCG_TMP0);
1620 static void tcg_out_op(TCGContext *s, TCGOpcode opc,
1621 const TCGArg args[TCG_MAX_OP_ARGS],
1622 const int const_args[TCG_MAX_OP_ARGS])
1629 * Note that many operands use the constraint set "rZ".
1630 * We make use of the fact that 0 is the ZERO register,
1631 * and hence such cases need not check for const_args.
1639 case INDEX_op_exit_tb:
1641 TCGReg b0 = TCG_REG_ZERO;
1645 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_V0, a0 & ~0xffff);
1648 if (!tcg_out_opc_jmp(s, OPC_J, tb_ret_addr)) {
1649 tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP0,
1650 (uintptr_t)tb_ret_addr);
1651 tcg_out_opc_reg(s, OPC_JR, 0, TCG_TMP0, 0);
1653 tcg_out_opc_imm(s, OPC_ORI, TCG_REG_V0, b0, a0 & 0xffff);
1656 case INDEX_op_goto_tb:
1657 /* indirect jump method */
1658 tcg_debug_assert(s->tb_jmp_insn_offset == 0);
1659 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP0, TCG_REG_ZERO,
1660 (uintptr_t)(s->tb_jmp_target_addr + a0));
1661 tcg_out_opc_reg(s, OPC_JR, 0, TCG_TMP0, 0);
1663 set_jmp_reset_offset(s, a0);
1665 case INDEX_op_goto_ptr:
1666 /* jmp to the given host address (could be epilogue) */
1667 tcg_out_opc_reg(s, OPC_JR, 0, a0, 0);
1671 tcg_out_brcond(s, TCG_COND_EQ, TCG_REG_ZERO, TCG_REG_ZERO,
1675 case INDEX_op_ld8u_i32:
1676 case INDEX_op_ld8u_i64:
1679 case INDEX_op_ld8s_i32:
1680 case INDEX_op_ld8s_i64:
1683 case INDEX_op_ld16u_i32:
1684 case INDEX_op_ld16u_i64:
1687 case INDEX_op_ld16s_i32:
1688 case INDEX_op_ld16s_i64:
1691 case INDEX_op_ld_i32:
1692 case INDEX_op_ld32s_i64:
1695 case INDEX_op_ld32u_i64:
1698 case INDEX_op_ld_i64:
1701 case INDEX_op_st8_i32:
1702 case INDEX_op_st8_i64:
1705 case INDEX_op_st16_i32:
1706 case INDEX_op_st16_i64:
1709 case INDEX_op_st_i32:
1710 case INDEX_op_st32_i64:
1713 case INDEX_op_st_i64:
1716 tcg_out_ldst(s, i1, a0, a1, a2);
1719 case INDEX_op_add_i32:
1720 i1 = OPC_ADDU, i2 = OPC_ADDIU;
1722 case INDEX_op_add_i64:
1723 i1 = OPC_DADDU, i2 = OPC_DADDIU;
1725 case INDEX_op_or_i32:
1726 case INDEX_op_or_i64:
1727 i1 = OPC_OR, i2 = OPC_ORI;
1729 case INDEX_op_xor_i32:
1730 case INDEX_op_xor_i64:
1731 i1 = OPC_XOR, i2 = OPC_XORI;
1734 tcg_out_opc_imm(s, i2, a0, a1, a2);
1738 tcg_out_opc_reg(s, i1, a0, a1, a2);
1741 case INDEX_op_sub_i32:
1742 i1 = OPC_SUBU, i2 = OPC_ADDIU;
1744 case INDEX_op_sub_i64:
1745 i1 = OPC_DSUBU, i2 = OPC_DADDIU;
1748 tcg_out_opc_imm(s, i2, a0, a1, -a2);
1752 case INDEX_op_and_i32:
1753 if (c2 && a2 != (uint16_t)a2) {
1754 int msb = ctz32(~a2) - 1;
1755 tcg_debug_assert(use_mips32r2_instructions);
1756 tcg_debug_assert(is_p2m1(a2));
1757 tcg_out_opc_bf(s, OPC_EXT, a0, a1, msb, 0);
1760 i1 = OPC_AND, i2 = OPC_ANDI;
1762 case INDEX_op_and_i64:
1763 if (c2 && a2 != (uint16_t)a2) {
1764 int msb = ctz64(~a2) - 1;
1765 tcg_debug_assert(use_mips32r2_instructions);
1766 tcg_debug_assert(is_p2m1(a2));
1767 tcg_out_opc_bf64(s, OPC_DEXT, OPC_DEXTM, OPC_DEXTU, a0, a1, msb, 0);
1770 i1 = OPC_AND, i2 = OPC_ANDI;
1772 case INDEX_op_nor_i32:
1773 case INDEX_op_nor_i64:
1777 case INDEX_op_mul_i32:
1778 if (use_mips32_instructions) {
1779 tcg_out_opc_reg(s, OPC_MUL, a0, a1, a2);
1782 i1 = OPC_MULT, i2 = OPC_MFLO;
1784 case INDEX_op_mulsh_i32:
1785 if (use_mips32r6_instructions) {
1786 tcg_out_opc_reg(s, OPC_MUH, a0, a1, a2);
1789 i1 = OPC_MULT, i2 = OPC_MFHI;
1791 case INDEX_op_muluh_i32:
1792 if (use_mips32r6_instructions) {
1793 tcg_out_opc_reg(s, OPC_MUHU, a0, a1, a2);
1796 i1 = OPC_MULTU, i2 = OPC_MFHI;
1798 case INDEX_op_div_i32:
1799 if (use_mips32r6_instructions) {
1800 tcg_out_opc_reg(s, OPC_DIV_R6, a0, a1, a2);
1803 i1 = OPC_DIV, i2 = OPC_MFLO;
1805 case INDEX_op_divu_i32:
1806 if (use_mips32r6_instructions) {
1807 tcg_out_opc_reg(s, OPC_DIVU_R6, a0, a1, a2);
1810 i1 = OPC_DIVU, i2 = OPC_MFLO;
1812 case INDEX_op_rem_i32:
1813 if (use_mips32r6_instructions) {
1814 tcg_out_opc_reg(s, OPC_MOD, a0, a1, a2);
1817 i1 = OPC_DIV, i2 = OPC_MFHI;
1819 case INDEX_op_remu_i32:
1820 if (use_mips32r6_instructions) {
1821 tcg_out_opc_reg(s, OPC_MODU, a0, a1, a2);
1824 i1 = OPC_DIVU, i2 = OPC_MFHI;
1826 case INDEX_op_mul_i64:
1827 if (use_mips32r6_instructions) {
1828 tcg_out_opc_reg(s, OPC_DMUL, a0, a1, a2);
1831 i1 = OPC_DMULT, i2 = OPC_MFLO;
1833 case INDEX_op_mulsh_i64:
1834 if (use_mips32r6_instructions) {
1835 tcg_out_opc_reg(s, OPC_DMUH, a0, a1, a2);
1838 i1 = OPC_DMULT, i2 = OPC_MFHI;
1840 case INDEX_op_muluh_i64:
1841 if (use_mips32r6_instructions) {
1842 tcg_out_opc_reg(s, OPC_DMUHU, a0, a1, a2);
1845 i1 = OPC_DMULTU, i2 = OPC_MFHI;
1847 case INDEX_op_div_i64:
1848 if (use_mips32r6_instructions) {
1849 tcg_out_opc_reg(s, OPC_DDIV_R6, a0, a1, a2);
1852 i1 = OPC_DDIV, i2 = OPC_MFLO;
1854 case INDEX_op_divu_i64:
1855 if (use_mips32r6_instructions) {
1856 tcg_out_opc_reg(s, OPC_DDIVU_R6, a0, a1, a2);
1859 i1 = OPC_DDIVU, i2 = OPC_MFLO;
1861 case INDEX_op_rem_i64:
1862 if (use_mips32r6_instructions) {
1863 tcg_out_opc_reg(s, OPC_DMOD, a0, a1, a2);
1866 i1 = OPC_DDIV, i2 = OPC_MFHI;
1868 case INDEX_op_remu_i64:
1869 if (use_mips32r6_instructions) {
1870 tcg_out_opc_reg(s, OPC_DMODU, a0, a1, a2);
1873 i1 = OPC_DDIVU, i2 = OPC_MFHI;
1875 tcg_out_opc_reg(s, i1, 0, a1, a2);
1876 tcg_out_opc_reg(s, i2, a0, 0, 0);
1879 case INDEX_op_muls2_i32:
1882 case INDEX_op_mulu2_i32:
1885 case INDEX_op_muls2_i64:
1888 case INDEX_op_mulu2_i64:
1891 tcg_out_opc_reg(s, i1, 0, a2, args[3]);
1892 tcg_out_opc_reg(s, OPC_MFLO, a0, 0, 0);
1893 tcg_out_opc_reg(s, OPC_MFHI, a1, 0, 0);
1896 case INDEX_op_not_i32:
1897 case INDEX_op_not_i64:
1900 case INDEX_op_ext8s_i32:
1901 case INDEX_op_ext8s_i64:
1904 case INDEX_op_ext16s_i32:
1905 case INDEX_op_ext16s_i64:
1908 tcg_out_opc_reg(s, i1, a0, TCG_REG_ZERO, a1);
1911 case INDEX_op_bswap16_i32:
1912 case INDEX_op_bswap16_i64:
1913 tcg_out_bswap16(s, a0, a1, a2);
1915 case INDEX_op_bswap32_i32:
1916 tcg_out_bswap32(s, a0, a1, 0);
1918 case INDEX_op_bswap32_i64:
1919 tcg_out_bswap32(s, a0, a1, a2);
1921 case INDEX_op_bswap64_i64:
1922 tcg_out_bswap64(s, a0, a1);
1924 case INDEX_op_extrh_i64_i32:
1925 tcg_out_dsra(s, a0, a1, 32);
1927 case INDEX_op_ext32s_i64:
1928 case INDEX_op_ext_i32_i64:
1929 case INDEX_op_extrl_i64_i32:
1930 tcg_out_opc_sa(s, OPC_SLL, a0, a1, 0);
1932 case INDEX_op_ext32u_i64:
1933 case INDEX_op_extu_i32_i64:
1934 tcg_out_ext32u(s, a0, a1);
1937 case INDEX_op_sar_i32:
1938 i1 = OPC_SRAV, i2 = OPC_SRA;
1940 case INDEX_op_shl_i32:
1941 i1 = OPC_SLLV, i2 = OPC_SLL;
1943 case INDEX_op_shr_i32:
1944 i1 = OPC_SRLV, i2 = OPC_SRL;
1946 case INDEX_op_rotr_i32:
1947 i1 = OPC_ROTRV, i2 = OPC_ROTR;
1950 tcg_out_opc_sa(s, i2, a0, a1, a2);
1954 tcg_out_opc_reg(s, i1, a0, a2, a1);
1956 case INDEX_op_rotl_i32:
1958 tcg_out_opc_sa(s, OPC_ROTR, a0, a1, 32 - a2);
1960 tcg_out_opc_reg(s, OPC_SUBU, TCG_TMP0, TCG_REG_ZERO, a2);
1961 tcg_out_opc_reg(s, OPC_ROTRV, a0, TCG_TMP0, a1);
1964 case INDEX_op_sar_i64:
1966 tcg_out_dsra(s, a0, a1, a2);
1971 case INDEX_op_shl_i64:
1973 tcg_out_dsll(s, a0, a1, a2);
1978 case INDEX_op_shr_i64:
1980 tcg_out_dsrl(s, a0, a1, a2);
1985 case INDEX_op_rotr_i64:
1987 tcg_out_opc_sa64(s, OPC_DROTR, OPC_DROTR32, a0, a1, a2);
1992 case INDEX_op_rotl_i64:
1994 tcg_out_opc_sa64(s, OPC_DROTR, OPC_DROTR32, a0, a1, 64 - a2);
1996 tcg_out_opc_reg(s, OPC_DSUBU, TCG_TMP0, TCG_REG_ZERO, a2);
1997 tcg_out_opc_reg(s, OPC_DROTRV, a0, TCG_TMP0, a1);
2001 case INDEX_op_clz_i32:
2002 tcg_out_clz(s, OPC_CLZ, OPC_CLZ_R6, 32, a0, a1, a2);
2004 case INDEX_op_clz_i64:
2005 tcg_out_clz(s, OPC_DCLZ, OPC_DCLZ_R6, 64, a0, a1, a2);
2008 case INDEX_op_deposit_i32:
2009 tcg_out_opc_bf(s, OPC_INS, a0, a2, args[3] + args[4] - 1, args[3]);
2011 case INDEX_op_deposit_i64:
2012 tcg_out_opc_bf64(s, OPC_DINS, OPC_DINSM, OPC_DINSU, a0, a2,
2013 args[3] + args[4] - 1, args[3]);
2015 case INDEX_op_extract_i32:
2016 tcg_out_opc_bf(s, OPC_EXT, a0, a1, args[3] - 1, a2);
2018 case INDEX_op_extract_i64:
2019 tcg_out_opc_bf64(s, OPC_DEXT, OPC_DEXTM, OPC_DEXTU, a0, a1,
2023 case INDEX_op_brcond_i32:
2024 case INDEX_op_brcond_i64:
2025 tcg_out_brcond(s, a2, a0, a1, arg_label(args[3]));
2027 case INDEX_op_brcond2_i32:
2028 tcg_out_brcond2(s, args[4], a0, a1, a2, args[3], arg_label(args[5]));
2031 case INDEX_op_movcond_i32:
2032 case INDEX_op_movcond_i64:
2033 tcg_out_movcond(s, args[5], a0, a1, a2, args[3], args[4]);
2036 case INDEX_op_setcond_i32:
2037 case INDEX_op_setcond_i64:
2038 tcg_out_setcond(s, args[3], a0, a1, a2);
2040 case INDEX_op_setcond2_i32:
2041 tcg_out_setcond2(s, args[5], a0, a1, a2, args[3], args[4]);
2044 case INDEX_op_qemu_ld_i32:
2045 tcg_out_qemu_ld(s, args, false);
2047 case INDEX_op_qemu_ld_i64:
2048 tcg_out_qemu_ld(s, args, true);
2050 case INDEX_op_qemu_st_i32:
2051 tcg_out_qemu_st(s, args, false);
2053 case INDEX_op_qemu_st_i64:
2054 tcg_out_qemu_st(s, args, true);
2057 case INDEX_op_add2_i32:
2058 tcg_out_addsub2(s, a0, a1, a2, args[3], args[4], args[5],
2059 const_args[4], const_args[5], false);
2061 case INDEX_op_sub2_i32:
2062 tcg_out_addsub2(s, a0, a1, a2, args[3], args[4], args[5],
2063 const_args[4], const_args[5], true);
2069 case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
2070 case INDEX_op_mov_i64:
2071 case INDEX_op_call: /* Always emitted via tcg_out_call. */
2077 static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)
2080 case INDEX_op_goto_ptr:
2083 case INDEX_op_ld8u_i32:
2084 case INDEX_op_ld8s_i32:
2085 case INDEX_op_ld16u_i32:
2086 case INDEX_op_ld16s_i32:
2087 case INDEX_op_ld_i32:
2088 case INDEX_op_not_i32:
2089 case INDEX_op_bswap16_i32:
2090 case INDEX_op_bswap32_i32:
2091 case INDEX_op_ext8s_i32:
2092 case INDEX_op_ext16s_i32:
2093 case INDEX_op_extract_i32:
2094 case INDEX_op_ld8u_i64:
2095 case INDEX_op_ld8s_i64:
2096 case INDEX_op_ld16u_i64:
2097 case INDEX_op_ld16s_i64:
2098 case INDEX_op_ld32s_i64:
2099 case INDEX_op_ld32u_i64:
2100 case INDEX_op_ld_i64:
2101 case INDEX_op_not_i64:
2102 case INDEX_op_bswap16_i64:
2103 case INDEX_op_bswap32_i64:
2104 case INDEX_op_bswap64_i64:
2105 case INDEX_op_ext8s_i64:
2106 case INDEX_op_ext16s_i64:
2107 case INDEX_op_ext32s_i64:
2108 case INDEX_op_ext32u_i64:
2109 case INDEX_op_ext_i32_i64:
2110 case INDEX_op_extu_i32_i64:
2111 case INDEX_op_extrl_i64_i32:
2112 case INDEX_op_extrh_i64_i32:
2113 case INDEX_op_extract_i64:
2114 return C_O1_I1(r, r);
2116 case INDEX_op_st8_i32:
2117 case INDEX_op_st16_i32:
2118 case INDEX_op_st_i32:
2119 case INDEX_op_st8_i64:
2120 case INDEX_op_st16_i64:
2121 case INDEX_op_st32_i64:
2122 case INDEX_op_st_i64:
2123 return C_O0_I2(rZ, r);
2125 case INDEX_op_add_i32:
2126 case INDEX_op_add_i64:
2127 return C_O1_I2(r, r, rJ);
2128 case INDEX_op_sub_i32:
2129 case INDEX_op_sub_i64:
2130 return C_O1_I2(r, rZ, rN);
2131 case INDEX_op_mul_i32:
2132 case INDEX_op_mulsh_i32:
2133 case INDEX_op_muluh_i32:
2134 case INDEX_op_div_i32:
2135 case INDEX_op_divu_i32:
2136 case INDEX_op_rem_i32:
2137 case INDEX_op_remu_i32:
2138 case INDEX_op_nor_i32:
2139 case INDEX_op_setcond_i32:
2140 case INDEX_op_mul_i64:
2141 case INDEX_op_mulsh_i64:
2142 case INDEX_op_muluh_i64:
2143 case INDEX_op_div_i64:
2144 case INDEX_op_divu_i64:
2145 case INDEX_op_rem_i64:
2146 case INDEX_op_remu_i64:
2147 case INDEX_op_nor_i64:
2148 case INDEX_op_setcond_i64:
2149 return C_O1_I2(r, rZ, rZ);
2150 case INDEX_op_muls2_i32:
2151 case INDEX_op_mulu2_i32:
2152 case INDEX_op_muls2_i64:
2153 case INDEX_op_mulu2_i64:
2154 return C_O2_I2(r, r, r, r);
2155 case INDEX_op_and_i32:
2156 case INDEX_op_and_i64:
2157 return C_O1_I2(r, r, rIK);
2158 case INDEX_op_or_i32:
2159 case INDEX_op_xor_i32:
2160 case INDEX_op_or_i64:
2161 case INDEX_op_xor_i64:
2162 return C_O1_I2(r, r, rI);
2163 case INDEX_op_shl_i32:
2164 case INDEX_op_shr_i32:
2165 case INDEX_op_sar_i32:
2166 case INDEX_op_rotr_i32:
2167 case INDEX_op_rotl_i32:
2168 case INDEX_op_shl_i64:
2169 case INDEX_op_shr_i64:
2170 case INDEX_op_sar_i64:
2171 case INDEX_op_rotr_i64:
2172 case INDEX_op_rotl_i64:
2173 return C_O1_I2(r, r, ri);
2174 case INDEX_op_clz_i32:
2175 case INDEX_op_clz_i64:
2176 return C_O1_I2(r, r, rWZ);
2178 case INDEX_op_deposit_i32:
2179 case INDEX_op_deposit_i64:
2180 return C_O1_I2(r, 0, rZ);
2181 case INDEX_op_brcond_i32:
2182 case INDEX_op_brcond_i64:
2183 return C_O0_I2(rZ, rZ);
2184 case INDEX_op_movcond_i32:
2185 case INDEX_op_movcond_i64:
2186 return (use_mips32r6_instructions
2187 ? C_O1_I4(r, rZ, rZ, rZ, rZ)
2188 : C_O1_I4(r, rZ, rZ, rZ, 0));
2189 case INDEX_op_add2_i32:
2190 case INDEX_op_sub2_i32:
2191 return C_O2_I4(r, r, rZ, rZ, rN, rN);
2192 case INDEX_op_setcond2_i32:
2193 return C_O1_I4(r, rZ, rZ, rZ, rZ);
2194 case INDEX_op_brcond2_i32:
2195 return C_O0_I4(rZ, rZ, rZ, rZ);
2197 case INDEX_op_qemu_ld_i32:
2198 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2199 ? C_O1_I1(r, L) : C_O1_I2(r, L, L));
2200 case INDEX_op_qemu_st_i32:
2201 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2202 ? C_O0_I2(SZ, S) : C_O0_I3(SZ, S, S));
2203 case INDEX_op_qemu_ld_i64:
2204 return (TCG_TARGET_REG_BITS == 64 ? C_O1_I1(r, L)
2205 : TARGET_LONG_BITS == 32 ? C_O2_I1(r, r, L)
2206 : C_O2_I2(r, r, L, L));
2207 case INDEX_op_qemu_st_i64:
2208 return (TCG_TARGET_REG_BITS == 64 ? C_O0_I2(SZ, S)
2209 : TARGET_LONG_BITS == 32 ? C_O0_I3(SZ, SZ, S)
2210 : C_O0_I4(SZ, SZ, S, S));
2213 g_assert_not_reached();
2217 static const int tcg_target_callee_save_regs[] = {
2218 TCG_REG_S0, /* used for the global env (TCG_AREG0) */
2227 TCG_REG_RA, /* should be last for ABI compliance */
2230 /* The Linux kernel doesn't provide any information about the available
2231 instruction set. Probe it using a signal handler. */
2234 #ifndef use_movnz_instructions
2235 bool use_movnz_instructions = false;
2238 #ifndef use_mips32_instructions
2239 bool use_mips32_instructions = false;
2242 #ifndef use_mips32r2_instructions
2243 bool use_mips32r2_instructions = false;
2246 static volatile sig_atomic_t got_sigill;
2248 static void sigill_handler(int signo, siginfo_t *si, void *data)
2250 /* Skip the faulty instruction */
2251 ucontext_t *uc = (ucontext_t *)data;
2252 uc->uc_mcontext.pc += 4;
2257 static void tcg_target_detect_isa(void)
2259 struct sigaction sa_old, sa_new;
2261 memset(&sa_new, 0, sizeof(sa_new));
2262 sa_new.sa_flags = SA_SIGINFO;
2263 sa_new.sa_sigaction = sigill_handler;
2264 sigaction(SIGILL, &sa_new, &sa_old);
2266 /* Probe for movn/movz, necessary to implement movcond. */
2267 #ifndef use_movnz_instructions
2269 asm volatile(".set push\n"
2271 "movn $zero, $zero, $zero\n"
2272 "movz $zero, $zero, $zero\n"
2275 use_movnz_instructions = !got_sigill;
2278 /* Probe for MIPS32 instructions. As no subsetting is allowed
2279 by the specification, it is only necessary to probe for one
2280 of the instructions. */
2281 #ifndef use_mips32_instructions
2283 asm volatile(".set push\n"
2285 "mul $zero, $zero\n"
2288 use_mips32_instructions = !got_sigill;
2291 /* Probe for MIPS32r2 instructions if MIPS32 instructions are
2292 available. As no subsetting is allowed by the specification,
2293 it is only necessary to probe for one of the instructions. */
2294 #ifndef use_mips32r2_instructions
2295 if (use_mips32_instructions) {
2297 asm volatile(".set push\n"
2299 "seb $zero, $zero\n"
2302 use_mips32r2_instructions = !got_sigill;
2306 sigaction(SIGILL, &sa_old, NULL);
2309 static tcg_insn_unit *align_code_ptr(TCGContext *s)
2311 uintptr_t p = (uintptr_t)s->code_ptr;
2314 s->code_ptr = (void *)p;
2319 /* Stack frame parameters. */
2320 #define REG_SIZE (TCG_TARGET_REG_BITS / 8)
2321 #define SAVE_SIZE ((int)ARRAY_SIZE(tcg_target_callee_save_regs) * REG_SIZE)
2322 #define TEMP_SIZE (CPU_TEMP_BUF_NLONGS * (int)sizeof(long))
2324 #define FRAME_SIZE ((TCG_STATIC_CALL_ARGS_SIZE + TEMP_SIZE + SAVE_SIZE \
2325 + TCG_TARGET_STACK_ALIGN - 1) \
2326 & -TCG_TARGET_STACK_ALIGN)
2327 #define SAVE_OFS (TCG_STATIC_CALL_ARGS_SIZE + TEMP_SIZE)
2329 /* We're expecting to be able to use an immediate for frame allocation. */
2330 QEMU_BUILD_BUG_ON(FRAME_SIZE > 0x7fff);
2332 /* Generate global QEMU prologue and epilogue code */
2333 static void tcg_target_qemu_prologue(TCGContext *s)
2337 tcg_set_frame(s, TCG_REG_SP, TCG_STATIC_CALL_ARGS_SIZE, TEMP_SIZE);
2340 tcg_out_opc_imm(s, ALIAS_PADDI, TCG_REG_SP, TCG_REG_SP, -FRAME_SIZE);
2341 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
2342 tcg_out_st(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
2343 TCG_REG_SP, SAVE_OFS + i * REG_SIZE);
2346 #ifndef CONFIG_SOFTMMU
2348 tcg_out_movi(s, TCG_TYPE_PTR, TCG_GUEST_BASE_REG, guest_base);
2349 tcg_regset_set_reg(s->reserved_regs, TCG_GUEST_BASE_REG);
2353 /* Call generated code */
2354 tcg_out_opc_reg(s, OPC_JR, 0, tcg_target_call_iarg_regs[1], 0);
2356 tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
2359 * Return path for goto_ptr. Set return value to 0, a-la exit_tb,
2360 * and fall through to the rest of the epilogue.
2362 tcg_code_gen_epilogue = tcg_splitwx_to_rx(s->code_ptr);
2363 tcg_out_mov(s, TCG_TYPE_REG, TCG_REG_V0, TCG_REG_ZERO);
2366 tb_ret_addr = tcg_splitwx_to_rx(s->code_ptr);
2367 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
2368 tcg_out_ld(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
2369 TCG_REG_SP, SAVE_OFS + i * REG_SIZE);
2372 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2374 tcg_out_opc_imm(s, ALIAS_PADDI, TCG_REG_SP, TCG_REG_SP, FRAME_SIZE);
2376 if (use_mips32r2_instructions) {
2380 /* Bswap subroutines: Input in TCG_TMP0, output in TCG_TMP3;
2381 clobbers TCG_TMP1, TCG_TMP2. */
2384 * bswap32 -- 32-bit swap (signed result for mips64). a0 = abcd.
2386 bswap32_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2387 /* t3 = (ssss)d000 */
2388 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP3, TCG_TMP0, 24);
2390 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 24);
2392 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2394 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2396 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 8);
2398 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP2, TCG_TMP2, 8);
2400 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2402 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2403 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2404 /* t3 = dcba -- delay slot */
2405 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2407 if (TCG_TARGET_REG_BITS == 32) {
2412 * bswap32u -- unsigned 32-bit swap. a0 = ....abcd.
2414 bswap32u_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2415 /* t1 = (0000)000d */
2416 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP0, 0xff);
2418 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP3, TCG_TMP0, 24);
2419 /* t1 = (0000)d000 */
2420 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 24);
2422 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2424 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2426 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 8);
2428 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP2, TCG_TMP2, 8);
2430 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2432 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2433 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2434 /* t3 = dcba -- delay slot */
2435 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2438 * bswap64 -- 64-bit swap. a0 = abcdefgh
2440 bswap64_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2442 tcg_out_dsll(s, TCG_TMP3, TCG_TMP0, 56);
2444 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 56);
2447 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2449 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2451 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 40);
2453 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 40);
2455 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2458 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2460 tcg_out_dsrl(s, TCG_TMP2, TCG_TMP0, 32);
2462 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2465 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP2, 0xff00);
2467 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP2, 0x00ff);
2469 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 8);
2471 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 24);
2474 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2476 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 16);
2478 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2481 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP1, 0x00ff);
2483 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2485 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 40);
2487 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 24);
2490 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2491 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2492 /* t3 = hgfedcba -- delay slot */
2493 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2496 static void tcg_target_init(TCGContext *s)
2498 tcg_target_detect_isa();
2499 tcg_target_available_regs[TCG_TYPE_I32] = 0xffffffff;
2500 if (TCG_TARGET_REG_BITS == 64) {
2501 tcg_target_available_regs[TCG_TYPE_I64] = 0xffffffff;
2504 tcg_target_call_clobber_regs = 0;
2505 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_V0);
2506 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_V1);
2507 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A0);
2508 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A1);
2509 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A2);
2510 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A3);
2511 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T0);
2512 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T1);
2513 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T2);
2514 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T3);
2515 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T4);
2516 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T5);
2517 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T6);
2518 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T7);
2519 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T8);
2520 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T9);
2522 s->reserved_regs = 0;
2523 tcg_regset_set_reg(s->reserved_regs, TCG_REG_ZERO); /* zero register */
2524 tcg_regset_set_reg(s->reserved_regs, TCG_REG_K0); /* kernel use only */
2525 tcg_regset_set_reg(s->reserved_regs, TCG_REG_K1); /* kernel use only */
2526 tcg_regset_set_reg(s->reserved_regs, TCG_TMP0); /* internal use */
2527 tcg_regset_set_reg(s->reserved_regs, TCG_TMP1); /* internal use */
2528 tcg_regset_set_reg(s->reserved_regs, TCG_TMP2); /* internal use */
2529 tcg_regset_set_reg(s->reserved_regs, TCG_TMP3); /* internal use */
2530 tcg_regset_set_reg(s->reserved_regs, TCG_REG_RA); /* return address */
2531 tcg_regset_set_reg(s->reserved_regs, TCG_REG_SP); /* stack pointer */
2532 tcg_regset_set_reg(s->reserved_regs, TCG_REG_GP); /* global pointer */
2537 uint8_t fde_def_cfa[4];
2538 uint8_t fde_reg_ofs[ARRAY_SIZE(tcg_target_callee_save_regs) * 2];
2541 #define ELF_HOST_MACHINE EM_MIPS
2542 /* GDB doesn't appear to require proper setting of ELF_HOST_FLAGS,
2543 which is good because they're really quite complicated for MIPS. */
2545 static const DebugFrame debug_frame = {
2546 .h.cie.len = sizeof(DebugFrameCIE) - 4, /* length after .len member */
2549 .h.cie.code_align = 1,
2550 .h.cie.data_align = -(TCG_TARGET_REG_BITS / 8) & 0x7f, /* sleb128 */
2551 .h.cie.return_column = TCG_REG_RA,
2553 /* Total FDE size does not include the "len" member. */
2554 .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset),
2557 12, TCG_REG_SP, /* DW_CFA_def_cfa sp, ... */
2558 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
2562 0x80 + 16, 9, /* DW_CFA_offset, s0, -72 */
2563 0x80 + 17, 8, /* DW_CFA_offset, s2, -64 */
2564 0x80 + 18, 7, /* DW_CFA_offset, s3, -56 */
2565 0x80 + 19, 6, /* DW_CFA_offset, s4, -48 */
2566 0x80 + 20, 5, /* DW_CFA_offset, s5, -40 */
2567 0x80 + 21, 4, /* DW_CFA_offset, s6, -32 */
2568 0x80 + 22, 3, /* DW_CFA_offset, s7, -24 */
2569 0x80 + 30, 2, /* DW_CFA_offset, s8, -16 */
2570 0x80 + 31, 1, /* DW_CFA_offset, ra, -8 */
2574 void tcg_register_jit(const void *buf, size_t buf_size)
2576 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));