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 inline bool is_p2m1(tcg_target_long val)
192 return val && ((val + 1) & val) == 0;
195 /* test if a constant matches the constraint */
196 static inline int tcg_target_const_match(tcg_target_long val, TCGType type,
197 const TCGArgConstraint *arg_ct)
201 if (ct & TCG_CT_CONST) {
203 } else if ((ct & TCG_CT_CONST_ZERO) && val == 0) {
205 } else if ((ct & TCG_CT_CONST_U16) && val == (uint16_t)val) {
207 } else if ((ct & TCG_CT_CONST_S16) && val == (int16_t)val) {
209 } else if ((ct & TCG_CT_CONST_N16) && val >= -32767 && val <= 32767) {
211 } else if ((ct & TCG_CT_CONST_P2M1)
212 && use_mips32r2_instructions && is_p2m1(val)) {
214 } else if ((ct & TCG_CT_CONST_WSZ)
215 && val == (type == TCG_TYPE_I32 ? 32 : 64)) {
221 /* instruction opcodes */
227 OPC_BLEZ = 006 << 26,
228 OPC_BGTZ = 007 << 26,
229 OPC_ADDIU = 011 << 26,
230 OPC_SLTI = 012 << 26,
231 OPC_SLTIU = 013 << 26,
232 OPC_ANDI = 014 << 26,
234 OPC_XORI = 016 << 26,
236 OPC_DADDIU = 031 << 26,
249 OPC_SPECIAL = 000 << 26,
250 OPC_SLL = OPC_SPECIAL | 000,
251 OPC_SRL = OPC_SPECIAL | 002,
252 OPC_ROTR = OPC_SPECIAL | 002 | (1 << 21),
253 OPC_SRA = OPC_SPECIAL | 003,
254 OPC_SLLV = OPC_SPECIAL | 004,
255 OPC_SRLV = OPC_SPECIAL | 006,
256 OPC_ROTRV = OPC_SPECIAL | 006 | 0100,
257 OPC_SRAV = OPC_SPECIAL | 007,
258 OPC_JR_R5 = OPC_SPECIAL | 010,
259 OPC_JALR = OPC_SPECIAL | 011,
260 OPC_MOVZ = OPC_SPECIAL | 012,
261 OPC_MOVN = OPC_SPECIAL | 013,
262 OPC_SYNC = OPC_SPECIAL | 017,
263 OPC_MFHI = OPC_SPECIAL | 020,
264 OPC_MFLO = OPC_SPECIAL | 022,
265 OPC_DSLLV = OPC_SPECIAL | 024,
266 OPC_DSRLV = OPC_SPECIAL | 026,
267 OPC_DROTRV = OPC_SPECIAL | 026 | 0100,
268 OPC_DSRAV = OPC_SPECIAL | 027,
269 OPC_MULT = OPC_SPECIAL | 030,
270 OPC_MUL_R6 = OPC_SPECIAL | 030 | 0200,
271 OPC_MUH = OPC_SPECIAL | 030 | 0300,
272 OPC_MULTU = OPC_SPECIAL | 031,
273 OPC_MULU = OPC_SPECIAL | 031 | 0200,
274 OPC_MUHU = OPC_SPECIAL | 031 | 0300,
275 OPC_DIV = OPC_SPECIAL | 032,
276 OPC_DIV_R6 = OPC_SPECIAL | 032 | 0200,
277 OPC_MOD = OPC_SPECIAL | 032 | 0300,
278 OPC_DIVU = OPC_SPECIAL | 033,
279 OPC_DIVU_R6 = OPC_SPECIAL | 033 | 0200,
280 OPC_MODU = OPC_SPECIAL | 033 | 0300,
281 OPC_DMULT = OPC_SPECIAL | 034,
282 OPC_DMUL = OPC_SPECIAL | 034 | 0200,
283 OPC_DMUH = OPC_SPECIAL | 034 | 0300,
284 OPC_DMULTU = OPC_SPECIAL | 035,
285 OPC_DMULU = OPC_SPECIAL | 035 | 0200,
286 OPC_DMUHU = OPC_SPECIAL | 035 | 0300,
287 OPC_DDIV = OPC_SPECIAL | 036,
288 OPC_DDIV_R6 = OPC_SPECIAL | 036 | 0200,
289 OPC_DMOD = OPC_SPECIAL | 036 | 0300,
290 OPC_DDIVU = OPC_SPECIAL | 037,
291 OPC_DDIVU_R6 = OPC_SPECIAL | 037 | 0200,
292 OPC_DMODU = OPC_SPECIAL | 037 | 0300,
293 OPC_ADDU = OPC_SPECIAL | 041,
294 OPC_SUBU = OPC_SPECIAL | 043,
295 OPC_AND = OPC_SPECIAL | 044,
296 OPC_OR = OPC_SPECIAL | 045,
297 OPC_XOR = OPC_SPECIAL | 046,
298 OPC_NOR = OPC_SPECIAL | 047,
299 OPC_SLT = OPC_SPECIAL | 052,
300 OPC_SLTU = OPC_SPECIAL | 053,
301 OPC_DADDU = OPC_SPECIAL | 055,
302 OPC_DSUBU = OPC_SPECIAL | 057,
303 OPC_SELEQZ = OPC_SPECIAL | 065,
304 OPC_SELNEZ = OPC_SPECIAL | 067,
305 OPC_DSLL = OPC_SPECIAL | 070,
306 OPC_DSRL = OPC_SPECIAL | 072,
307 OPC_DROTR = OPC_SPECIAL | 072 | (1 << 21),
308 OPC_DSRA = OPC_SPECIAL | 073,
309 OPC_DSLL32 = OPC_SPECIAL | 074,
310 OPC_DSRL32 = OPC_SPECIAL | 076,
311 OPC_DROTR32 = OPC_SPECIAL | 076 | (1 << 21),
312 OPC_DSRA32 = OPC_SPECIAL | 077,
313 OPC_CLZ_R6 = OPC_SPECIAL | 0120,
314 OPC_DCLZ_R6 = OPC_SPECIAL | 0122,
316 OPC_REGIMM = 001 << 26,
317 OPC_BLTZ = OPC_REGIMM | (000 << 16),
318 OPC_BGEZ = OPC_REGIMM | (001 << 16),
320 OPC_SPECIAL2 = 034 << 26,
321 OPC_MUL_R5 = OPC_SPECIAL2 | 002,
322 OPC_CLZ = OPC_SPECIAL2 | 040,
323 OPC_DCLZ = OPC_SPECIAL2 | 044,
325 OPC_SPECIAL3 = 037 << 26,
326 OPC_EXT = OPC_SPECIAL3 | 000,
327 OPC_DEXTM = OPC_SPECIAL3 | 001,
328 OPC_DEXTU = OPC_SPECIAL3 | 002,
329 OPC_DEXT = OPC_SPECIAL3 | 003,
330 OPC_INS = OPC_SPECIAL3 | 004,
331 OPC_DINSM = OPC_SPECIAL3 | 005,
332 OPC_DINSU = OPC_SPECIAL3 | 006,
333 OPC_DINS = OPC_SPECIAL3 | 007,
334 OPC_WSBH = OPC_SPECIAL3 | 00240,
335 OPC_DSBH = OPC_SPECIAL3 | 00244,
336 OPC_DSHD = OPC_SPECIAL3 | 00544,
337 OPC_SEB = OPC_SPECIAL3 | 02040,
338 OPC_SEH = OPC_SPECIAL3 | 03040,
340 /* MIPS r6 doesn't have JR, JALR should be used instead */
341 OPC_JR = use_mips32r6_instructions ? OPC_JALR : OPC_JR_R5,
344 * MIPS r6 replaces MUL with an alternative encoding which is
345 * backwards-compatible at the assembly level.
347 OPC_MUL = use_mips32r6_instructions ? OPC_MUL_R6 : OPC_MUL_R5,
349 /* MIPS r6 introduced names for weaker variants of SYNC. These are
350 backward compatible to previous architecture revisions. */
351 OPC_SYNC_WMB = OPC_SYNC | 0x04 << 6,
352 OPC_SYNC_MB = OPC_SYNC | 0x10 << 6,
353 OPC_SYNC_ACQUIRE = OPC_SYNC | 0x11 << 6,
354 OPC_SYNC_RELEASE = OPC_SYNC | 0x12 << 6,
355 OPC_SYNC_RMB = OPC_SYNC | 0x13 << 6,
357 /* Aliases for convenience. */
358 ALIAS_PADD = sizeof(void *) == 4 ? OPC_ADDU : OPC_DADDU,
359 ALIAS_PADDI = sizeof(void *) == 4 ? OPC_ADDIU : OPC_DADDIU,
360 ALIAS_TSRL = TARGET_LONG_BITS == 32 || TCG_TARGET_REG_BITS == 32
361 ? OPC_SRL : OPC_DSRL,
367 static inline void tcg_out_opc_reg(TCGContext *s, MIPSInsn opc,
368 TCGReg rd, TCGReg rs, TCGReg rt)
373 inst |= (rs & 0x1F) << 21;
374 inst |= (rt & 0x1F) << 16;
375 inst |= (rd & 0x1F) << 11;
382 static inline void tcg_out_opc_imm(TCGContext *s, MIPSInsn opc,
383 TCGReg rt, TCGReg rs, TCGArg imm)
388 inst |= (rs & 0x1F) << 21;
389 inst |= (rt & 0x1F) << 16;
390 inst |= (imm & 0xffff);
397 static inline void tcg_out_opc_bf(TCGContext *s, MIPSInsn opc, TCGReg rt,
398 TCGReg rs, int msb, int lsb)
403 inst |= (rs & 0x1F) << 21;
404 inst |= (rt & 0x1F) << 16;
405 inst |= (msb & 0x1F) << 11;
406 inst |= (lsb & 0x1F) << 6;
410 static inline void tcg_out_opc_bf64(TCGContext *s, MIPSInsn opc, MIPSInsn opm,
411 MIPSInsn oph, TCGReg rt, TCGReg rs,
418 } else if (msb >= 32) {
422 tcg_out_opc_bf(s, opc, rt, rs, msb, lsb);
428 static inline void tcg_out_opc_br(TCGContext *s, MIPSInsn opc,
429 TCGReg rt, TCGReg rs)
431 tcg_out_opc_imm(s, opc, rt, rs, 0);
437 static inline void tcg_out_opc_sa(TCGContext *s, MIPSInsn opc,
438 TCGReg rd, TCGReg rt, TCGArg sa)
443 inst |= (rt & 0x1F) << 16;
444 inst |= (rd & 0x1F) << 11;
445 inst |= (sa & 0x1F) << 6;
450 static void tcg_out_opc_sa64(TCGContext *s, MIPSInsn opc1, MIPSInsn opc2,
451 TCGReg rd, TCGReg rt, TCGArg sa)
455 inst = (sa & 32 ? opc2 : opc1);
456 inst |= (rt & 0x1F) << 16;
457 inst |= (rd & 0x1F) << 11;
458 inst |= (sa & 0x1F) << 6;
464 * Returns true if the branch was in range and the insn was emitted.
466 static bool tcg_out_opc_jmp(TCGContext *s, MIPSInsn opc, const void *target)
468 uintptr_t dest = (uintptr_t)target;
469 uintptr_t from = (uintptr_t)tcg_splitwx_to_rx(s->code_ptr) + 4;
472 /* The pc-region branch happens within the 256MB region of
473 the delay slot (thus the +4). */
474 if ((from ^ dest) & -(1 << 28)) {
477 tcg_debug_assert((dest & 3) == 0);
480 inst |= (dest >> 2) & 0x3ffffff;
485 static inline void tcg_out_nop(TCGContext *s)
490 static inline void tcg_out_dsll(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
492 tcg_out_opc_sa64(s, OPC_DSLL, OPC_DSLL32, rd, rt, sa);
495 static inline void tcg_out_dsrl(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
497 tcg_out_opc_sa64(s, OPC_DSRL, OPC_DSRL32, rd, rt, sa);
500 static inline void tcg_out_dsra(TCGContext *s, TCGReg rd, TCGReg rt, TCGArg sa)
502 tcg_out_opc_sa64(s, OPC_DSRA, OPC_DSRA32, rd, rt, sa);
505 static inline bool tcg_out_mov(TCGContext *s, TCGType type,
506 TCGReg ret, TCGReg arg)
508 /* Simple reg-reg move, optimising out the 'do nothing' case */
510 tcg_out_opc_reg(s, OPC_OR, ret, arg, TCG_REG_ZERO);
515 static void tcg_out_movi(TCGContext *s, TCGType type,
516 TCGReg ret, tcg_target_long arg)
518 if (TCG_TARGET_REG_BITS == 64 && type == TCG_TYPE_I32) {
521 if (arg == (int16_t)arg) {
522 tcg_out_opc_imm(s, OPC_ADDIU, ret, TCG_REG_ZERO, arg);
525 if (arg == (uint16_t)arg) {
526 tcg_out_opc_imm(s, OPC_ORI, ret, TCG_REG_ZERO, arg);
529 if (TCG_TARGET_REG_BITS == 32 || arg == (int32_t)arg) {
530 tcg_out_opc_imm(s, OPC_LUI, ret, TCG_REG_ZERO, arg >> 16);
532 tcg_out_movi(s, TCG_TYPE_I32, ret, arg >> 31 >> 1);
533 if (arg & 0xffff0000ull) {
534 tcg_out_dsll(s, ret, ret, 16);
535 tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg >> 16);
536 tcg_out_dsll(s, ret, ret, 16);
538 tcg_out_dsll(s, ret, ret, 32);
542 tcg_out_opc_imm(s, OPC_ORI, ret, ret, arg & 0xffff);
546 static inline void tcg_out_bswap16(TCGContext *s, TCGReg ret, TCGReg arg)
548 if (use_mips32r2_instructions) {
549 tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
551 /* ret and arg can't be register at */
552 if (ret == TCG_TMP0 || arg == TCG_TMP0) {
556 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP0, arg, 8);
557 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 8);
558 tcg_out_opc_imm(s, OPC_ANDI, ret, ret, 0xff00);
559 tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_TMP0);
563 static inline void tcg_out_bswap16s(TCGContext *s, TCGReg ret, TCGReg arg)
565 if (use_mips32r2_instructions) {
566 tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
567 tcg_out_opc_reg(s, OPC_SEH, ret, 0, ret);
569 /* ret and arg can't be register at */
570 if (ret == TCG_TMP0 || arg == TCG_TMP0) {
574 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP0, arg, 8);
575 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
576 tcg_out_opc_sa(s, OPC_SRA, ret, ret, 16);
577 tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_TMP0);
581 static void tcg_out_bswap_subr(TCGContext *s, const tcg_insn_unit *sub)
583 bool ok = tcg_out_opc_jmp(s, OPC_JAL, sub);
584 tcg_debug_assert(ok);
587 static void tcg_out_bswap32(TCGContext *s, TCGReg ret, TCGReg arg)
589 if (use_mips32r2_instructions) {
590 tcg_out_opc_reg(s, OPC_WSBH, ret, 0, arg);
591 tcg_out_opc_sa(s, OPC_ROTR, ret, ret, 16);
593 tcg_out_bswap_subr(s, bswap32_addr);
594 /* delay slot -- never omit the insn, like tcg_out_mov might. */
595 tcg_out_opc_reg(s, OPC_OR, TCG_TMP0, arg, TCG_REG_ZERO);
596 tcg_out_mov(s, TCG_TYPE_I32, ret, TCG_TMP3);
600 static void tcg_out_bswap32u(TCGContext *s, TCGReg ret, TCGReg arg)
602 if (use_mips32r2_instructions) {
603 tcg_out_opc_reg(s, OPC_DSBH, ret, 0, arg);
604 tcg_out_opc_reg(s, OPC_DSHD, ret, 0, ret);
605 tcg_out_dsrl(s, ret, ret, 32);
607 tcg_out_bswap_subr(s, bswap32u_addr);
608 /* delay slot -- never omit the insn, like tcg_out_mov might. */
609 tcg_out_opc_reg(s, OPC_OR, TCG_TMP0, arg, TCG_REG_ZERO);
610 tcg_out_mov(s, TCG_TYPE_I32, ret, TCG_TMP3);
614 static void tcg_out_bswap64(TCGContext *s, TCGReg ret, TCGReg arg)
616 if (use_mips32r2_instructions) {
617 tcg_out_opc_reg(s, OPC_DSBH, ret, 0, arg);
618 tcg_out_opc_reg(s, OPC_DSHD, ret, 0, ret);
620 tcg_out_bswap_subr(s, bswap64_addr);
621 /* delay slot -- never omit the insn, like tcg_out_mov might. */
622 tcg_out_opc_reg(s, OPC_OR, TCG_TMP0, arg, TCG_REG_ZERO);
623 tcg_out_mov(s, TCG_TYPE_I32, ret, TCG_TMP3);
627 static inline void tcg_out_ext8s(TCGContext *s, TCGReg ret, TCGReg arg)
629 if (use_mips32r2_instructions) {
630 tcg_out_opc_reg(s, OPC_SEB, ret, 0, arg);
632 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 24);
633 tcg_out_opc_sa(s, OPC_SRA, ret, ret, 24);
637 static inline void tcg_out_ext16s(TCGContext *s, TCGReg ret, TCGReg arg)
639 if (use_mips32r2_instructions) {
640 tcg_out_opc_reg(s, OPC_SEH, ret, 0, arg);
642 tcg_out_opc_sa(s, OPC_SLL, ret, arg, 16);
643 tcg_out_opc_sa(s, OPC_SRA, ret, ret, 16);
647 static inline void tcg_out_ext32u(TCGContext *s, TCGReg ret, TCGReg arg)
649 if (use_mips32r2_instructions) {
650 tcg_out_opc_bf(s, OPC_DEXT, ret, arg, 31, 0);
652 tcg_out_dsll(s, ret, arg, 32);
653 tcg_out_dsrl(s, ret, ret, 32);
657 static void tcg_out_ldst(TCGContext *s, MIPSInsn opc, TCGReg data,
658 TCGReg addr, intptr_t ofs)
662 tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP0, ofs - lo);
663 if (addr != TCG_REG_ZERO) {
664 tcg_out_opc_reg(s, ALIAS_PADD, TCG_TMP0, TCG_TMP0, addr);
668 tcg_out_opc_imm(s, opc, data, addr, lo);
671 static inline void tcg_out_ld(TCGContext *s, TCGType type, TCGReg arg,
672 TCGReg arg1, intptr_t arg2)
674 MIPSInsn opc = OPC_LD;
675 if (TCG_TARGET_REG_BITS == 32 || type == TCG_TYPE_I32) {
678 tcg_out_ldst(s, opc, arg, arg1, arg2);
681 static inline void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg,
682 TCGReg arg1, intptr_t arg2)
684 MIPSInsn opc = OPC_SD;
685 if (TCG_TARGET_REG_BITS == 32 || type == TCG_TYPE_I32) {
688 tcg_out_ldst(s, opc, arg, arg1, arg2);
691 static inline bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
692 TCGReg base, intptr_t ofs)
695 tcg_out_st(s, type, TCG_REG_ZERO, base, ofs);
701 static void tcg_out_addsub2(TCGContext *s, TCGReg rl, TCGReg rh, TCGReg al,
702 TCGReg ah, TCGArg bl, TCGArg bh, bool cbl,
703 bool cbh, bool is_sub)
705 TCGReg th = TCG_TMP1;
707 /* If we have a negative constant such that negating it would
708 make the high part zero, we can (usually) eliminate one insn. */
709 if (cbl && cbh && bh == -1 && bl != 0) {
715 /* By operating on the high part first, we get to use the final
716 carry operation to move back from the temporary. */
718 tcg_out_opc_reg(s, (is_sub ? OPC_SUBU : OPC_ADDU), th, ah, bh);
719 } else if (bh != 0 || ah == rl) {
720 tcg_out_opc_imm(s, OPC_ADDIU, th, ah, (is_sub ? -bh : bh));
725 /* Note that tcg optimization should eliminate the bl == 0 case. */
728 tcg_out_opc_imm(s, OPC_SLTIU, TCG_TMP0, al, bl);
729 tcg_out_opc_imm(s, OPC_ADDIU, rl, al, -bl);
731 tcg_out_opc_reg(s, OPC_SLTU, TCG_TMP0, al, bl);
732 tcg_out_opc_reg(s, OPC_SUBU, rl, al, bl);
734 tcg_out_opc_reg(s, OPC_SUBU, rh, th, TCG_TMP0);
737 tcg_out_opc_imm(s, OPC_ADDIU, rl, al, bl);
738 tcg_out_opc_imm(s, OPC_SLTIU, TCG_TMP0, rl, bl);
739 } else if (rl == al && rl == bl) {
740 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP0, al, TCG_TARGET_REG_BITS - 1);
741 tcg_out_opc_reg(s, OPC_ADDU, rl, al, bl);
743 tcg_out_opc_reg(s, OPC_ADDU, rl, al, bl);
744 tcg_out_opc_reg(s, OPC_SLTU, TCG_TMP0, rl, (rl == bl ? al : bl));
746 tcg_out_opc_reg(s, OPC_ADDU, rh, th, TCG_TMP0);
750 /* Bit 0 set if inversion required; bit 1 set if swapping required. */
751 #define MIPS_CMP_INV 1
752 #define MIPS_CMP_SWAP 2
754 static const uint8_t mips_cmp_map[16] = {
757 [TCG_COND_GE] = MIPS_CMP_INV,
758 [TCG_COND_GEU] = MIPS_CMP_INV,
759 [TCG_COND_LE] = MIPS_CMP_INV | MIPS_CMP_SWAP,
760 [TCG_COND_LEU] = MIPS_CMP_INV | MIPS_CMP_SWAP,
761 [TCG_COND_GT] = MIPS_CMP_SWAP,
762 [TCG_COND_GTU] = MIPS_CMP_SWAP,
765 static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGReg ret,
766 TCGReg arg1, TCGReg arg2)
768 MIPSInsn s_opc = OPC_SLTU;
774 tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
777 tcg_out_opc_imm(s, OPC_SLTIU, ret, arg1, 1);
782 tcg_out_opc_reg(s, OPC_XOR, ret, arg1, arg2);
785 tcg_out_opc_reg(s, OPC_SLTU, ret, TCG_REG_ZERO, arg1);
799 cmp_map = mips_cmp_map[cond];
800 if (cmp_map & MIPS_CMP_SWAP) {
805 tcg_out_opc_reg(s, s_opc, ret, arg1, arg2);
806 if (cmp_map & MIPS_CMP_INV) {
807 tcg_out_opc_imm(s, OPC_XORI, ret, ret, 1);
817 static void tcg_out_brcond(TCGContext *s, TCGCond cond, TCGReg arg1,
818 TCGReg arg2, TCGLabel *l)
820 static const MIPSInsn b_zero[16] = {
821 [TCG_COND_LT] = OPC_BLTZ,
822 [TCG_COND_GT] = OPC_BGTZ,
823 [TCG_COND_LE] = OPC_BLEZ,
824 [TCG_COND_GE] = OPC_BGEZ,
827 MIPSInsn s_opc = OPC_SLTU;
844 b_opc = b_zero[cond];
856 cmp_map = mips_cmp_map[cond];
857 if (cmp_map & MIPS_CMP_SWAP) {
862 tcg_out_opc_reg(s, s_opc, TCG_TMP0, arg1, arg2);
863 b_opc = (cmp_map & MIPS_CMP_INV ? OPC_BEQ : OPC_BNE);
873 tcg_out_opc_br(s, b_opc, arg1, arg2);
874 tcg_out_reloc(s, s->code_ptr - 1, R_MIPS_PC16, l, 0);
878 static TCGReg tcg_out_reduce_eq2(TCGContext *s, TCGReg tmp0, TCGReg tmp1,
879 TCGReg al, TCGReg ah,
880 TCGReg bl, TCGReg bh)
882 /* Merge highpart comparison into AH. */
885 tcg_out_opc_reg(s, OPC_XOR, tmp0, ah, bh);
891 /* Merge lowpart comparison into AL. */
894 tcg_out_opc_reg(s, OPC_XOR, tmp1, al, bl);
900 /* Merge high and low part comparisons into AL. */
903 tcg_out_opc_reg(s, OPC_OR, tmp0, ah, al);
912 static void tcg_out_setcond2(TCGContext *s, TCGCond cond, TCGReg ret,
913 TCGReg al, TCGReg ah, TCGReg bl, TCGReg bh)
915 TCGReg tmp0 = TCG_TMP0;
918 tcg_debug_assert(ret != TCG_TMP0);
919 if (ret == ah || ret == bh) {
920 tcg_debug_assert(ret != TCG_TMP1);
927 tmp1 = tcg_out_reduce_eq2(s, tmp0, tmp1, al, ah, bl, bh);
928 tcg_out_setcond(s, cond, ret, tmp1, TCG_REG_ZERO);
932 tcg_out_setcond(s, TCG_COND_EQ, tmp0, ah, bh);
933 tcg_out_setcond(s, tcg_unsigned_cond(cond), tmp1, al, bl);
934 tcg_out_opc_reg(s, OPC_AND, tmp1, tmp1, tmp0);
935 tcg_out_setcond(s, tcg_high_cond(cond), tmp0, ah, bh);
936 tcg_out_opc_reg(s, OPC_OR, ret, tmp1, tmp0);
941 static void tcg_out_brcond2(TCGContext *s, TCGCond cond, TCGReg al, TCGReg ah,
942 TCGReg bl, TCGReg bh, TCGLabel *l)
944 TCGCond b_cond = TCG_COND_NE;
945 TCGReg tmp = TCG_TMP1;
947 /* With branches, we emit between 4 and 9 insns with 2 or 3 branches.
948 With setcond, we emit between 3 and 10 insns and only 1 branch,
949 which ought to get better branch prediction. */
954 tmp = tcg_out_reduce_eq2(s, TCG_TMP0, TCG_TMP1, al, ah, bl, bh);
958 /* Minimize code size by preferring a compare not requiring INV. */
959 if (mips_cmp_map[cond] & MIPS_CMP_INV) {
960 cond = tcg_invert_cond(cond);
961 b_cond = TCG_COND_EQ;
963 tcg_out_setcond2(s, cond, tmp, al, ah, bl, bh);
967 tcg_out_brcond(s, b_cond, tmp, TCG_REG_ZERO, l);
970 static void tcg_out_movcond(TCGContext *s, TCGCond cond, TCGReg ret,
971 TCGReg c1, TCGReg c2, TCGReg v1, TCGReg v2)
975 /* If one of the values is zero, put it last to match SEL*Z instructions */
976 if (use_mips32r6_instructions && v1 == 0) {
979 cond = tcg_invert_cond(cond);
988 tcg_out_opc_reg(s, OPC_XOR, TCG_TMP0, c1, c2);
994 /* Minimize code size by preferring a compare not requiring INV. */
995 if (mips_cmp_map[cond] & MIPS_CMP_INV) {
996 cond = tcg_invert_cond(cond);
999 tcg_out_setcond(s, cond, TCG_TMP0, c1, c2);
1004 if (use_mips32r6_instructions) {
1005 MIPSInsn m_opc_t = eqz ? OPC_SELEQZ : OPC_SELNEZ;
1006 MIPSInsn m_opc_f = eqz ? OPC_SELNEZ : OPC_SELEQZ;
1009 tcg_out_opc_reg(s, m_opc_f, TCG_TMP1, v2, c1);
1011 tcg_out_opc_reg(s, m_opc_t, ret, v1, c1);
1013 tcg_out_opc_reg(s, OPC_OR, ret, ret, TCG_TMP1);
1016 MIPSInsn m_opc = eqz ? OPC_MOVZ : OPC_MOVN;
1018 tcg_out_opc_reg(s, m_opc, ret, v1, c1);
1020 /* This should be guaranteed via constraints */
1021 tcg_debug_assert(v2 == ret);
1025 static void tcg_out_call_int(TCGContext *s, const tcg_insn_unit *arg, bool tail)
1027 /* Note that the ABI requires the called function's address to be
1028 loaded into T9, even if a direct branch is in range. */
1029 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_T9, (uintptr_t)arg);
1031 /* But do try a direct branch, allowing the cpu better insn prefetch. */
1033 if (!tcg_out_opc_jmp(s, OPC_J, arg)) {
1034 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_T9, 0);
1037 if (!tcg_out_opc_jmp(s, OPC_JAL, arg)) {
1038 tcg_out_opc_reg(s, OPC_JALR, TCG_REG_RA, TCG_REG_T9, 0);
1043 static void tcg_out_call(TCGContext *s, const tcg_insn_unit *arg)
1045 tcg_out_call_int(s, arg, false);
1049 #if defined(CONFIG_SOFTMMU)
1050 #include "../tcg-ldst.c.inc"
1052 static void * const qemu_ld_helpers[16] = {
1053 [MO_UB] = helper_ret_ldub_mmu,
1054 [MO_SB] = helper_ret_ldsb_mmu,
1055 [MO_LEUW] = helper_le_lduw_mmu,
1056 [MO_LESW] = helper_le_ldsw_mmu,
1057 [MO_LEUL] = helper_le_ldul_mmu,
1058 [MO_LEQ] = helper_le_ldq_mmu,
1059 [MO_BEUW] = helper_be_lduw_mmu,
1060 [MO_BESW] = helper_be_ldsw_mmu,
1061 [MO_BEUL] = helper_be_ldul_mmu,
1062 [MO_BEQ] = helper_be_ldq_mmu,
1063 #if TCG_TARGET_REG_BITS == 64
1064 [MO_LESL] = helper_le_ldsl_mmu,
1065 [MO_BESL] = helper_be_ldsl_mmu,
1069 static void * const qemu_st_helpers[16] = {
1070 [MO_UB] = helper_ret_stb_mmu,
1071 [MO_LEUW] = helper_le_stw_mmu,
1072 [MO_LEUL] = helper_le_stl_mmu,
1073 [MO_LEQ] = helper_le_stq_mmu,
1074 [MO_BEUW] = helper_be_stw_mmu,
1075 [MO_BEUL] = helper_be_stl_mmu,
1076 [MO_BEQ] = helper_be_stq_mmu,
1079 /* Helper routines for marshalling helper function arguments into
1080 * the correct registers and stack.
1081 * I is where we want to put this argument, and is updated and returned
1082 * for the next call. ARG is the argument itself.
1084 * We provide routines for arguments which are: immediate, 32 bit
1085 * value in register, 16 and 8 bit values in register (which must be zero
1086 * extended before use) and 64 bit value in a lo:hi register pair.
1089 static int tcg_out_call_iarg_reg(TCGContext *s, int i, TCGReg arg)
1091 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1092 tcg_out_mov(s, TCG_TYPE_REG, tcg_target_call_iarg_regs[i], arg);
1094 /* For N32 and N64, the initial offset is different. But there
1095 we also have 8 argument register so we don't run out here. */
1096 tcg_debug_assert(TCG_TARGET_REG_BITS == 32);
1097 tcg_out_st(s, TCG_TYPE_REG, arg, TCG_REG_SP, 4 * i);
1102 static int tcg_out_call_iarg_reg8(TCGContext *s, int i, TCGReg arg)
1104 TCGReg tmp = TCG_TMP0;
1105 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1106 tmp = tcg_target_call_iarg_regs[i];
1108 tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xff);
1109 return tcg_out_call_iarg_reg(s, i, tmp);
1112 static int tcg_out_call_iarg_reg16(TCGContext *s, int i, TCGReg arg)
1114 TCGReg tmp = TCG_TMP0;
1115 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1116 tmp = tcg_target_call_iarg_regs[i];
1118 tcg_out_opc_imm(s, OPC_ANDI, tmp, arg, 0xffff);
1119 return tcg_out_call_iarg_reg(s, i, tmp);
1122 static int tcg_out_call_iarg_imm(TCGContext *s, int i, TCGArg arg)
1124 TCGReg tmp = TCG_TMP0;
1128 if (i < ARRAY_SIZE(tcg_target_call_iarg_regs)) {
1129 tmp = tcg_target_call_iarg_regs[i];
1131 tcg_out_movi(s, TCG_TYPE_REG, tmp, arg);
1133 return tcg_out_call_iarg_reg(s, i, tmp);
1136 static int tcg_out_call_iarg_reg2(TCGContext *s, int i, TCGReg al, TCGReg ah)
1138 tcg_debug_assert(TCG_TARGET_REG_BITS == 32);
1140 i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? ah : al));
1141 i = tcg_out_call_iarg_reg(s, i, (MIPS_BE ? al : ah));
1145 /* We expect to use a 16-bit negative offset from ENV. */
1146 QEMU_BUILD_BUG_ON(TLB_MASK_TABLE_OFS(0) > 0);
1147 QEMU_BUILD_BUG_ON(TLB_MASK_TABLE_OFS(0) < -32768);
1150 * Perform the tlb comparison operation.
1151 * The complete host address is placed in BASE.
1152 * Clobbers TMP0, TMP1, TMP2, TMP3.
1154 static void tcg_out_tlb_load(TCGContext *s, TCGReg base, TCGReg addrl,
1155 TCGReg addrh, TCGMemOpIdx oi,
1156 tcg_insn_unit *label_ptr[2], bool is_load)
1158 MemOp opc = get_memop(oi);
1159 unsigned s_bits = opc & MO_SIZE;
1160 unsigned a_bits = get_alignment_bits(opc);
1161 int mem_index = get_mmuidx(oi);
1162 int fast_off = TLB_MASK_TABLE_OFS(mem_index);
1163 int mask_off = fast_off + offsetof(CPUTLBDescFast, mask);
1164 int table_off = fast_off + offsetof(CPUTLBDescFast, table);
1165 int add_off = offsetof(CPUTLBEntry, addend);
1166 int cmp_off = (is_load ? offsetof(CPUTLBEntry, addr_read)
1167 : offsetof(CPUTLBEntry, addr_write));
1170 /* Load tlb_mask[mmu_idx] and tlb_table[mmu_idx]. */
1171 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP0, TCG_AREG0, mask_off);
1172 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP1, TCG_AREG0, table_off);
1174 /* Extract the TLB index from the address into TMP3. */
1175 tcg_out_opc_sa(s, ALIAS_TSRL, TCG_TMP3, addrl,
1176 TARGET_PAGE_BITS - CPU_TLB_ENTRY_BITS);
1177 tcg_out_opc_reg(s, OPC_AND, TCG_TMP3, TCG_TMP3, TCG_TMP0);
1179 /* Add the tlb_table pointer, creating the CPUTLBEntry address in TMP3. */
1180 tcg_out_opc_reg(s, ALIAS_PADD, TCG_TMP3, TCG_TMP3, TCG_TMP1);
1182 /* We don't currently support unaligned accesses.
1183 We could do so with mips32r6. */
1184 if (a_bits < s_bits) {
1188 /* Mask the page bits, keeping the alignment bits to compare against. */
1189 mask = (target_ulong)TARGET_PAGE_MASK | ((1 << a_bits) - 1);
1191 /* Load the (low-half) tlb comparator. */
1192 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1193 tcg_out_ld(s, TCG_TYPE_I32, TCG_TMP0, TCG_TMP3, cmp_off + LO_OFF);
1194 tcg_out_movi(s, TCG_TYPE_I32, TCG_TMP1, mask);
1196 tcg_out_ldst(s, (TARGET_LONG_BITS == 64 ? OPC_LD
1197 : TCG_TARGET_REG_BITS == 64 ? OPC_LWU : OPC_LW),
1198 TCG_TMP0, TCG_TMP3, cmp_off);
1199 tcg_out_movi(s, TCG_TYPE_TL, TCG_TMP1, mask);
1200 /* No second compare is required here;
1201 load the tlb addend for the fast path. */
1202 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP2, TCG_TMP3, add_off);
1205 /* Zero extend a 32-bit guest address for a 64-bit host. */
1206 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1207 tcg_out_ext32u(s, base, addrl);
1210 tcg_out_opc_reg(s, OPC_AND, TCG_TMP1, TCG_TMP1, addrl);
1212 label_ptr[0] = s->code_ptr;
1213 tcg_out_opc_br(s, OPC_BNE, TCG_TMP1, TCG_TMP0);
1215 /* Load and test the high half tlb comparator. */
1216 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1218 tcg_out_ld(s, TCG_TYPE_I32, TCG_TMP0, TCG_TMP3, cmp_off + HI_OFF);
1220 /* Load the tlb addend for the fast path. */
1221 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP2, TCG_TMP3, add_off);
1223 label_ptr[1] = s->code_ptr;
1224 tcg_out_opc_br(s, OPC_BNE, addrh, TCG_TMP0);
1228 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_TMP2, addrl);
1231 static void add_qemu_ldst_label(TCGContext *s, int is_ld, TCGMemOpIdx oi,
1233 TCGReg datalo, TCGReg datahi,
1234 TCGReg addrlo, TCGReg addrhi,
1235 void *raddr, tcg_insn_unit *label_ptr[2])
1237 TCGLabelQemuLdst *label = new_ldst_label(s);
1239 label->is_ld = is_ld;
1242 label->datalo_reg = datalo;
1243 label->datahi_reg = datahi;
1244 label->addrlo_reg = addrlo;
1245 label->addrhi_reg = addrhi;
1246 label->raddr = tcg_splitwx_to_rx(raddr);
1247 label->label_ptr[0] = label_ptr[0];
1248 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1249 label->label_ptr[1] = label_ptr[1];
1253 static bool tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1255 const tcg_insn_unit *tgt_rx = tcg_splitwx_to_rx(s->code_ptr);
1256 TCGMemOpIdx oi = l->oi;
1257 MemOp opc = get_memop(oi);
1261 /* resolve label address */
1262 if (!reloc_pc16(l->label_ptr[0], tgt_rx)
1263 || (TCG_TARGET_REG_BITS < TARGET_LONG_BITS
1264 && !reloc_pc16(l->label_ptr[1], tgt_rx))) {
1269 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1270 i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
1272 i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
1274 i = tcg_out_call_iarg_imm(s, i, oi);
1275 i = tcg_out_call_iarg_imm(s, i, (intptr_t)l->raddr);
1276 tcg_out_call_int(s, qemu_ld_helpers[opc & (MO_BSWAP | MO_SSIZE)], false);
1278 tcg_out_mov(s, TCG_TYPE_PTR, tcg_target_call_iarg_regs[0], TCG_AREG0);
1281 if (TCG_TARGET_REG_BITS == 32 && (opc & MO_SIZE) == MO_64) {
1282 /* We eliminated V0 from the possible output registers, so it
1283 cannot be clobbered here. So we must move V1 first. */
1285 tcg_out_mov(s, TCG_TYPE_I32, v0, TCG_REG_V1);
1288 tcg_out_mov(s, TCG_TYPE_I32, l->datahi_reg, TCG_REG_V1);
1292 tcg_out_opc_br(s, OPC_BEQ, TCG_REG_ZERO, TCG_REG_ZERO);
1293 if (!reloc_pc16(s->code_ptr - 1, l->raddr)) {
1298 if (TCG_TARGET_REG_BITS == 64 && l->type == TCG_TYPE_I32) {
1299 /* we always sign-extend 32-bit loads */
1300 tcg_out_opc_sa(s, OPC_SLL, v0, TCG_REG_V0, 0);
1302 tcg_out_opc_reg(s, OPC_OR, v0, TCG_REG_V0, TCG_REG_ZERO);
1307 static bool tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
1309 const tcg_insn_unit *tgt_rx = tcg_splitwx_to_rx(s->code_ptr);
1310 TCGMemOpIdx oi = l->oi;
1311 MemOp opc = get_memop(oi);
1312 MemOp s_bits = opc & MO_SIZE;
1315 /* resolve label address */
1316 if (!reloc_pc16(l->label_ptr[0], tgt_rx)
1317 || (TCG_TARGET_REG_BITS < TARGET_LONG_BITS
1318 && !reloc_pc16(l->label_ptr[1], tgt_rx))) {
1323 if (TCG_TARGET_REG_BITS < TARGET_LONG_BITS) {
1324 i = tcg_out_call_iarg_reg2(s, i, l->addrlo_reg, l->addrhi_reg);
1326 i = tcg_out_call_iarg_reg(s, i, l->addrlo_reg);
1330 i = tcg_out_call_iarg_reg8(s, i, l->datalo_reg);
1333 i = tcg_out_call_iarg_reg16(s, i, l->datalo_reg);
1336 i = tcg_out_call_iarg_reg(s, i, l->datalo_reg);
1339 if (TCG_TARGET_REG_BITS == 32) {
1340 i = tcg_out_call_iarg_reg2(s, i, l->datalo_reg, l->datahi_reg);
1342 i = tcg_out_call_iarg_reg(s, i, l->datalo_reg);
1348 i = tcg_out_call_iarg_imm(s, i, oi);
1350 /* Tail call to the store helper. Thus force the return address
1351 computation to take place in the return address register. */
1352 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_RA, (intptr_t)l->raddr);
1353 i = tcg_out_call_iarg_reg(s, i, TCG_REG_RA);
1354 tcg_out_call_int(s, qemu_st_helpers[opc & (MO_BSWAP | MO_SIZE)], true);
1356 tcg_out_mov(s, TCG_TYPE_PTR, tcg_target_call_iarg_regs[0], TCG_AREG0);
1361 static void tcg_out_qemu_ld_direct(TCGContext *s, TCGReg lo, TCGReg hi,
1362 TCGReg base, MemOp opc, bool is_64)
1364 switch (opc & (MO_SSIZE | MO_BSWAP)) {
1366 tcg_out_opc_imm(s, OPC_LBU, lo, base, 0);
1369 tcg_out_opc_imm(s, OPC_LB, lo, base, 0);
1371 case MO_UW | MO_BSWAP:
1372 tcg_out_opc_imm(s, OPC_LHU, TCG_TMP1, base, 0);
1373 tcg_out_bswap16(s, lo, TCG_TMP1);
1376 tcg_out_opc_imm(s, OPC_LHU, lo, base, 0);
1378 case MO_SW | MO_BSWAP:
1379 tcg_out_opc_imm(s, OPC_LHU, TCG_TMP1, base, 0);
1380 tcg_out_bswap16s(s, lo, TCG_TMP1);
1383 tcg_out_opc_imm(s, OPC_LH, lo, base, 0);
1385 case MO_UL | MO_BSWAP:
1386 if (TCG_TARGET_REG_BITS == 64 && is_64) {
1387 if (use_mips32r2_instructions) {
1388 tcg_out_opc_imm(s, OPC_LWU, lo, base, 0);
1389 tcg_out_bswap32u(s, lo, lo);
1391 tcg_out_bswap_subr(s, bswap32u_addr);
1393 tcg_out_opc_imm(s, OPC_LWU, TCG_TMP0, base, 0);
1394 tcg_out_mov(s, TCG_TYPE_I64, lo, TCG_TMP3);
1399 case MO_SL | MO_BSWAP:
1400 if (use_mips32r2_instructions) {
1401 tcg_out_opc_imm(s, OPC_LW, lo, base, 0);
1402 tcg_out_bswap32(s, lo, lo);
1404 tcg_out_bswap_subr(s, bswap32_addr);
1406 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1407 tcg_out_mov(s, TCG_TYPE_I32, lo, TCG_TMP3);
1411 if (TCG_TARGET_REG_BITS == 64 && is_64) {
1412 tcg_out_opc_imm(s, OPC_LWU, lo, base, 0);
1417 tcg_out_opc_imm(s, OPC_LW, lo, base, 0);
1419 case MO_Q | MO_BSWAP:
1420 if (TCG_TARGET_REG_BITS == 64) {
1421 if (use_mips32r2_instructions) {
1422 tcg_out_opc_imm(s, OPC_LD, lo, base, 0);
1423 tcg_out_bswap64(s, lo, lo);
1425 tcg_out_bswap_subr(s, bswap64_addr);
1427 tcg_out_opc_imm(s, OPC_LD, TCG_TMP0, base, 0);
1428 tcg_out_mov(s, TCG_TYPE_I64, lo, TCG_TMP3);
1430 } else if (use_mips32r2_instructions) {
1431 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1432 tcg_out_opc_imm(s, OPC_LW, TCG_TMP1, base, 4);
1433 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP0, 0, TCG_TMP0);
1434 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP1, 0, TCG_TMP1);
1435 tcg_out_opc_sa(s, OPC_ROTR, MIPS_BE ? lo : hi, TCG_TMP0, 16);
1436 tcg_out_opc_sa(s, OPC_ROTR, MIPS_BE ? hi : lo, TCG_TMP1, 16);
1438 tcg_out_bswap_subr(s, bswap32_addr);
1440 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 0);
1441 tcg_out_opc_imm(s, OPC_LW, TCG_TMP0, base, 4);
1442 tcg_out_bswap_subr(s, bswap32_addr);
1444 tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? lo : hi, TCG_TMP3);
1445 tcg_out_mov(s, TCG_TYPE_I32, MIPS_BE ? hi : lo, TCG_TMP3);
1449 /* Prefer to load from offset 0 first, but allow for overlap. */
1450 if (TCG_TARGET_REG_BITS == 64) {
1451 tcg_out_opc_imm(s, OPC_LD, lo, base, 0);
1452 } else if (MIPS_BE ? hi != base : lo == base) {
1453 tcg_out_opc_imm(s, OPC_LW, hi, base, HI_OFF);
1454 tcg_out_opc_imm(s, OPC_LW, lo, base, LO_OFF);
1456 tcg_out_opc_imm(s, OPC_LW, lo, base, LO_OFF);
1457 tcg_out_opc_imm(s, OPC_LW, hi, base, HI_OFF);
1465 static void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, bool is_64)
1467 TCGReg addr_regl, addr_regh __attribute__((unused));
1468 TCGReg data_regl, data_regh;
1471 #if defined(CONFIG_SOFTMMU)
1472 tcg_insn_unit *label_ptr[2];
1474 TCGReg base = TCG_REG_A0;
1476 data_regl = *args++;
1477 data_regh = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1478 addr_regl = *args++;
1479 addr_regh = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1481 opc = get_memop(oi);
1483 #if defined(CONFIG_SOFTMMU)
1484 tcg_out_tlb_load(s, base, addr_regl, addr_regh, oi, label_ptr, 1);
1485 tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc, is_64);
1486 add_qemu_ldst_label(s, 1, oi,
1487 (is_64 ? TCG_TYPE_I64 : TCG_TYPE_I32),
1488 data_regl, data_regh, addr_regl, addr_regh,
1489 s->code_ptr, label_ptr);
1491 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1492 tcg_out_ext32u(s, base, addr_regl);
1495 if (guest_base == 0 && data_regl != addr_regl) {
1497 } else if (guest_base == (int16_t)guest_base) {
1498 tcg_out_opc_imm(s, ALIAS_PADDI, base, addr_regl, guest_base);
1500 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_GUEST_BASE_REG, addr_regl);
1502 tcg_out_qemu_ld_direct(s, data_regl, data_regh, base, opc, is_64);
1506 static void tcg_out_qemu_st_direct(TCGContext *s, TCGReg lo, TCGReg hi,
1507 TCGReg base, MemOp opc)
1509 /* Don't clutter the code below with checks to avoid bswapping ZERO. */
1510 if ((lo | hi) == 0) {
1514 switch (opc & (MO_SIZE | MO_BSWAP)) {
1516 tcg_out_opc_imm(s, OPC_SB, lo, base, 0);
1519 case MO_16 | MO_BSWAP:
1520 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, lo, 0xffff);
1521 tcg_out_bswap16(s, TCG_TMP1, TCG_TMP1);
1525 tcg_out_opc_imm(s, OPC_SH, lo, base, 0);
1528 case MO_32 | MO_BSWAP:
1529 tcg_out_bswap32(s, TCG_TMP3, lo);
1533 tcg_out_opc_imm(s, OPC_SW, lo, base, 0);
1536 case MO_64 | MO_BSWAP:
1537 if (TCG_TARGET_REG_BITS == 64) {
1538 tcg_out_bswap64(s, TCG_TMP3, lo);
1539 tcg_out_opc_imm(s, OPC_SD, TCG_TMP3, base, 0);
1540 } else if (use_mips32r2_instructions) {
1541 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP0, 0, MIPS_BE ? lo : hi);
1542 tcg_out_opc_reg(s, OPC_WSBH, TCG_TMP1, 0, MIPS_BE ? hi : lo);
1543 tcg_out_opc_sa(s, OPC_ROTR, TCG_TMP0, TCG_TMP0, 16);
1544 tcg_out_opc_sa(s, OPC_ROTR, TCG_TMP1, TCG_TMP1, 16);
1545 tcg_out_opc_imm(s, OPC_SW, TCG_TMP0, base, 0);
1546 tcg_out_opc_imm(s, OPC_SW, TCG_TMP1, base, 4);
1548 tcg_out_bswap32(s, TCG_TMP3, MIPS_BE ? lo : hi);
1549 tcg_out_opc_imm(s, OPC_SW, TCG_TMP3, base, 0);
1550 tcg_out_bswap32(s, TCG_TMP3, MIPS_BE ? hi : lo);
1551 tcg_out_opc_imm(s, OPC_SW, TCG_TMP3, base, 4);
1555 if (TCG_TARGET_REG_BITS == 64) {
1556 tcg_out_opc_imm(s, OPC_SD, lo, base, 0);
1558 tcg_out_opc_imm(s, OPC_SW, MIPS_BE ? hi : lo, base, 0);
1559 tcg_out_opc_imm(s, OPC_SW, MIPS_BE ? lo : hi, base, 4);
1568 static void tcg_out_qemu_st(TCGContext *s, const TCGArg *args, bool is_64)
1570 TCGReg addr_regl, addr_regh __attribute__((unused));
1571 TCGReg data_regl, data_regh;
1574 #if defined(CONFIG_SOFTMMU)
1575 tcg_insn_unit *label_ptr[2];
1577 TCGReg base = TCG_REG_A0;
1579 data_regl = *args++;
1580 data_regh = (TCG_TARGET_REG_BITS == 32 && is_64 ? *args++ : 0);
1581 addr_regl = *args++;
1582 addr_regh = (TCG_TARGET_REG_BITS < TARGET_LONG_BITS ? *args++ : 0);
1584 opc = get_memop(oi);
1586 #if defined(CONFIG_SOFTMMU)
1587 tcg_out_tlb_load(s, base, addr_regl, addr_regh, oi, label_ptr, 0);
1588 tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
1589 add_qemu_ldst_label(s, 0, oi,
1590 (is_64 ? TCG_TYPE_I64 : TCG_TYPE_I32),
1591 data_regl, data_regh, addr_regl, addr_regh,
1592 s->code_ptr, label_ptr);
1595 if (TCG_TARGET_REG_BITS > TARGET_LONG_BITS) {
1596 tcg_out_ext32u(s, base, addr_regl);
1599 if (guest_base == 0) {
1601 } else if (guest_base == (int16_t)guest_base) {
1602 tcg_out_opc_imm(s, ALIAS_PADDI, base, addr_regl, guest_base);
1604 tcg_out_opc_reg(s, ALIAS_PADD, base, TCG_GUEST_BASE_REG, addr_regl);
1606 tcg_out_qemu_st_direct(s, data_regl, data_regh, base, opc);
1610 static void tcg_out_mb(TCGContext *s, TCGArg a0)
1612 static const MIPSInsn sync[] = {
1613 /* Note that SYNC_MB is a slightly weaker than SYNC 0,
1614 as the former is an ordering barrier and the latter
1615 is a completion barrier. */
1616 [0 ... TCG_MO_ALL] = OPC_SYNC_MB,
1617 [TCG_MO_LD_LD] = OPC_SYNC_RMB,
1618 [TCG_MO_ST_ST] = OPC_SYNC_WMB,
1619 [TCG_MO_LD_ST] = OPC_SYNC_RELEASE,
1620 [TCG_MO_LD_ST | TCG_MO_ST_ST] = OPC_SYNC_RELEASE,
1621 [TCG_MO_LD_ST | TCG_MO_LD_LD] = OPC_SYNC_ACQUIRE,
1623 tcg_out32(s, sync[a0 & TCG_MO_ALL]);
1626 static void tcg_out_clz(TCGContext *s, MIPSInsn opcv2, MIPSInsn opcv6,
1627 int width, TCGReg a0, TCGReg a1, TCGArg a2)
1629 if (use_mips32r6_instructions) {
1631 tcg_out_opc_reg(s, opcv6, a0, a1, 0);
1633 tcg_out_opc_reg(s, opcv6, TCG_TMP0, a1, 0);
1634 tcg_out_movcond(s, TCG_COND_EQ, a0, a1, 0, a2, TCG_TMP0);
1638 tcg_out_opc_reg(s, opcv2, a0, a1, a1);
1639 } else if (a0 == a2) {
1640 tcg_out_opc_reg(s, opcv2, TCG_TMP0, a1, a1);
1641 tcg_out_opc_reg(s, OPC_MOVN, a0, TCG_TMP0, a1);
1642 } else if (a0 != a1) {
1643 tcg_out_opc_reg(s, opcv2, a0, a1, a1);
1644 tcg_out_opc_reg(s, OPC_MOVZ, a0, a2, a1);
1646 tcg_out_opc_reg(s, opcv2, TCG_TMP0, a1, a1);
1647 tcg_out_opc_reg(s, OPC_MOVZ, TCG_TMP0, a2, a1);
1648 tcg_out_mov(s, TCG_TYPE_REG, a0, TCG_TMP0);
1653 static inline void tcg_out_op(TCGContext *s, TCGOpcode opc,
1654 const TCGArg args[TCG_MAX_OP_ARGS],
1655 const int const_args[TCG_MAX_OP_ARGS])
1662 * Note that many operands use the constraint set "rZ".
1663 * We make use of the fact that 0 is the ZERO register,
1664 * and hence such cases need not check for const_args.
1672 case INDEX_op_exit_tb:
1674 TCGReg b0 = TCG_REG_ZERO;
1678 tcg_out_movi(s, TCG_TYPE_PTR, TCG_REG_V0, a0 & ~0xffff);
1681 if (!tcg_out_opc_jmp(s, OPC_J, tb_ret_addr)) {
1682 tcg_out_movi(s, TCG_TYPE_PTR, TCG_TMP0,
1683 (uintptr_t)tb_ret_addr);
1684 tcg_out_opc_reg(s, OPC_JR, 0, TCG_TMP0, 0);
1686 tcg_out_opc_imm(s, OPC_ORI, TCG_REG_V0, b0, a0 & 0xffff);
1689 case INDEX_op_goto_tb:
1690 if (s->tb_jmp_insn_offset) {
1691 /* direct jump method */
1692 s->tb_jmp_insn_offset[a0] = tcg_current_code_size(s);
1693 /* Avoid clobbering the address during retranslation. */
1694 tcg_out32(s, OPC_J | (*(uint32_t *)s->code_ptr & 0x3ffffff));
1696 /* indirect jump method */
1697 tcg_out_ld(s, TCG_TYPE_PTR, TCG_TMP0, TCG_REG_ZERO,
1698 (uintptr_t)(s->tb_jmp_target_addr + a0));
1699 tcg_out_opc_reg(s, OPC_JR, 0, TCG_TMP0, 0);
1702 set_jmp_reset_offset(s, a0);
1704 case INDEX_op_goto_ptr:
1705 /* jmp to the given host address (could be epilogue) */
1706 tcg_out_opc_reg(s, OPC_JR, 0, a0, 0);
1710 tcg_out_brcond(s, TCG_COND_EQ, TCG_REG_ZERO, TCG_REG_ZERO,
1714 case INDEX_op_ld8u_i32:
1715 case INDEX_op_ld8u_i64:
1718 case INDEX_op_ld8s_i32:
1719 case INDEX_op_ld8s_i64:
1722 case INDEX_op_ld16u_i32:
1723 case INDEX_op_ld16u_i64:
1726 case INDEX_op_ld16s_i32:
1727 case INDEX_op_ld16s_i64:
1730 case INDEX_op_ld_i32:
1731 case INDEX_op_ld32s_i64:
1734 case INDEX_op_ld32u_i64:
1737 case INDEX_op_ld_i64:
1740 case INDEX_op_st8_i32:
1741 case INDEX_op_st8_i64:
1744 case INDEX_op_st16_i32:
1745 case INDEX_op_st16_i64:
1748 case INDEX_op_st_i32:
1749 case INDEX_op_st32_i64:
1752 case INDEX_op_st_i64:
1755 tcg_out_ldst(s, i1, a0, a1, a2);
1758 case INDEX_op_add_i32:
1759 i1 = OPC_ADDU, i2 = OPC_ADDIU;
1761 case INDEX_op_add_i64:
1762 i1 = OPC_DADDU, i2 = OPC_DADDIU;
1764 case INDEX_op_or_i32:
1765 case INDEX_op_or_i64:
1766 i1 = OPC_OR, i2 = OPC_ORI;
1768 case INDEX_op_xor_i32:
1769 case INDEX_op_xor_i64:
1770 i1 = OPC_XOR, i2 = OPC_XORI;
1773 tcg_out_opc_imm(s, i2, a0, a1, a2);
1777 tcg_out_opc_reg(s, i1, a0, a1, a2);
1780 case INDEX_op_sub_i32:
1781 i1 = OPC_SUBU, i2 = OPC_ADDIU;
1783 case INDEX_op_sub_i64:
1784 i1 = OPC_DSUBU, i2 = OPC_DADDIU;
1787 tcg_out_opc_imm(s, i2, a0, a1, -a2);
1791 case INDEX_op_and_i32:
1792 if (c2 && a2 != (uint16_t)a2) {
1793 int msb = ctz32(~a2) - 1;
1794 tcg_debug_assert(use_mips32r2_instructions);
1795 tcg_debug_assert(is_p2m1(a2));
1796 tcg_out_opc_bf(s, OPC_EXT, a0, a1, msb, 0);
1799 i1 = OPC_AND, i2 = OPC_ANDI;
1801 case INDEX_op_and_i64:
1802 if (c2 && a2 != (uint16_t)a2) {
1803 int msb = ctz64(~a2) - 1;
1804 tcg_debug_assert(use_mips32r2_instructions);
1805 tcg_debug_assert(is_p2m1(a2));
1806 tcg_out_opc_bf64(s, OPC_DEXT, OPC_DEXTM, OPC_DEXTU, a0, a1, msb, 0);
1809 i1 = OPC_AND, i2 = OPC_ANDI;
1811 case INDEX_op_nor_i32:
1812 case INDEX_op_nor_i64:
1816 case INDEX_op_mul_i32:
1817 if (use_mips32_instructions) {
1818 tcg_out_opc_reg(s, OPC_MUL, a0, a1, a2);
1821 i1 = OPC_MULT, i2 = OPC_MFLO;
1823 case INDEX_op_mulsh_i32:
1824 if (use_mips32r6_instructions) {
1825 tcg_out_opc_reg(s, OPC_MUH, a0, a1, a2);
1828 i1 = OPC_MULT, i2 = OPC_MFHI;
1830 case INDEX_op_muluh_i32:
1831 if (use_mips32r6_instructions) {
1832 tcg_out_opc_reg(s, OPC_MUHU, a0, a1, a2);
1835 i1 = OPC_MULTU, i2 = OPC_MFHI;
1837 case INDEX_op_div_i32:
1838 if (use_mips32r6_instructions) {
1839 tcg_out_opc_reg(s, OPC_DIV_R6, a0, a1, a2);
1842 i1 = OPC_DIV, i2 = OPC_MFLO;
1844 case INDEX_op_divu_i32:
1845 if (use_mips32r6_instructions) {
1846 tcg_out_opc_reg(s, OPC_DIVU_R6, a0, a1, a2);
1849 i1 = OPC_DIVU, i2 = OPC_MFLO;
1851 case INDEX_op_rem_i32:
1852 if (use_mips32r6_instructions) {
1853 tcg_out_opc_reg(s, OPC_MOD, a0, a1, a2);
1856 i1 = OPC_DIV, i2 = OPC_MFHI;
1858 case INDEX_op_remu_i32:
1859 if (use_mips32r6_instructions) {
1860 tcg_out_opc_reg(s, OPC_MODU, a0, a1, a2);
1863 i1 = OPC_DIVU, i2 = OPC_MFHI;
1865 case INDEX_op_mul_i64:
1866 if (use_mips32r6_instructions) {
1867 tcg_out_opc_reg(s, OPC_DMUL, a0, a1, a2);
1870 i1 = OPC_DMULT, i2 = OPC_MFLO;
1872 case INDEX_op_mulsh_i64:
1873 if (use_mips32r6_instructions) {
1874 tcg_out_opc_reg(s, OPC_DMUH, a0, a1, a2);
1877 i1 = OPC_DMULT, i2 = OPC_MFHI;
1879 case INDEX_op_muluh_i64:
1880 if (use_mips32r6_instructions) {
1881 tcg_out_opc_reg(s, OPC_DMUHU, a0, a1, a2);
1884 i1 = OPC_DMULTU, i2 = OPC_MFHI;
1886 case INDEX_op_div_i64:
1887 if (use_mips32r6_instructions) {
1888 tcg_out_opc_reg(s, OPC_DDIV_R6, a0, a1, a2);
1891 i1 = OPC_DDIV, i2 = OPC_MFLO;
1893 case INDEX_op_divu_i64:
1894 if (use_mips32r6_instructions) {
1895 tcg_out_opc_reg(s, OPC_DDIVU_R6, a0, a1, a2);
1898 i1 = OPC_DDIVU, i2 = OPC_MFLO;
1900 case INDEX_op_rem_i64:
1901 if (use_mips32r6_instructions) {
1902 tcg_out_opc_reg(s, OPC_DMOD, a0, a1, a2);
1905 i1 = OPC_DDIV, i2 = OPC_MFHI;
1907 case INDEX_op_remu_i64:
1908 if (use_mips32r6_instructions) {
1909 tcg_out_opc_reg(s, OPC_DMODU, a0, a1, a2);
1912 i1 = OPC_DDIVU, i2 = OPC_MFHI;
1914 tcg_out_opc_reg(s, i1, 0, a1, a2);
1915 tcg_out_opc_reg(s, i2, a0, 0, 0);
1918 case INDEX_op_muls2_i32:
1921 case INDEX_op_mulu2_i32:
1924 case INDEX_op_muls2_i64:
1927 case INDEX_op_mulu2_i64:
1930 tcg_out_opc_reg(s, i1, 0, a2, args[3]);
1931 tcg_out_opc_reg(s, OPC_MFLO, a0, 0, 0);
1932 tcg_out_opc_reg(s, OPC_MFHI, a1, 0, 0);
1935 case INDEX_op_not_i32:
1936 case INDEX_op_not_i64:
1939 case INDEX_op_bswap16_i32:
1940 case INDEX_op_bswap16_i64:
1943 case INDEX_op_ext8s_i32:
1944 case INDEX_op_ext8s_i64:
1947 case INDEX_op_ext16s_i32:
1948 case INDEX_op_ext16s_i64:
1951 tcg_out_opc_reg(s, i1, a0, TCG_REG_ZERO, a1);
1954 case INDEX_op_bswap32_i32:
1955 tcg_out_bswap32(s, a0, a1);
1957 case INDEX_op_bswap32_i64:
1958 tcg_out_bswap32u(s, a0, a1);
1960 case INDEX_op_bswap64_i64:
1961 tcg_out_bswap64(s, a0, a1);
1963 case INDEX_op_extrh_i64_i32:
1964 tcg_out_dsra(s, a0, a1, 32);
1966 case INDEX_op_ext32s_i64:
1967 case INDEX_op_ext_i32_i64:
1968 case INDEX_op_extrl_i64_i32:
1969 tcg_out_opc_sa(s, OPC_SLL, a0, a1, 0);
1971 case INDEX_op_ext32u_i64:
1972 case INDEX_op_extu_i32_i64:
1973 tcg_out_ext32u(s, a0, a1);
1976 case INDEX_op_sar_i32:
1977 i1 = OPC_SRAV, i2 = OPC_SRA;
1979 case INDEX_op_shl_i32:
1980 i1 = OPC_SLLV, i2 = OPC_SLL;
1982 case INDEX_op_shr_i32:
1983 i1 = OPC_SRLV, i2 = OPC_SRL;
1985 case INDEX_op_rotr_i32:
1986 i1 = OPC_ROTRV, i2 = OPC_ROTR;
1989 tcg_out_opc_sa(s, i2, a0, a1, a2);
1993 tcg_out_opc_reg(s, i1, a0, a2, a1);
1995 case INDEX_op_rotl_i32:
1997 tcg_out_opc_sa(s, OPC_ROTR, a0, a1, 32 - a2);
1999 tcg_out_opc_reg(s, OPC_SUBU, TCG_TMP0, TCG_REG_ZERO, a2);
2000 tcg_out_opc_reg(s, OPC_ROTRV, a0, TCG_TMP0, a1);
2003 case INDEX_op_sar_i64:
2005 tcg_out_dsra(s, a0, a1, a2);
2010 case INDEX_op_shl_i64:
2012 tcg_out_dsll(s, a0, a1, a2);
2017 case INDEX_op_shr_i64:
2019 tcg_out_dsrl(s, a0, a1, a2);
2024 case INDEX_op_rotr_i64:
2026 tcg_out_opc_sa64(s, OPC_DROTR, OPC_DROTR32, a0, a1, a2);
2031 case INDEX_op_rotl_i64:
2033 tcg_out_opc_sa64(s, OPC_DROTR, OPC_DROTR32, a0, a1, 64 - a2);
2035 tcg_out_opc_reg(s, OPC_DSUBU, TCG_TMP0, TCG_REG_ZERO, a2);
2036 tcg_out_opc_reg(s, OPC_DROTRV, a0, TCG_TMP0, a1);
2040 case INDEX_op_clz_i32:
2041 tcg_out_clz(s, OPC_CLZ, OPC_CLZ_R6, 32, a0, a1, a2);
2043 case INDEX_op_clz_i64:
2044 tcg_out_clz(s, OPC_DCLZ, OPC_DCLZ_R6, 64, a0, a1, a2);
2047 case INDEX_op_deposit_i32:
2048 tcg_out_opc_bf(s, OPC_INS, a0, a2, args[3] + args[4] - 1, args[3]);
2050 case INDEX_op_deposit_i64:
2051 tcg_out_opc_bf64(s, OPC_DINS, OPC_DINSM, OPC_DINSU, a0, a2,
2052 args[3] + args[4] - 1, args[3]);
2054 case INDEX_op_extract_i32:
2055 tcg_out_opc_bf(s, OPC_EXT, a0, a1, args[3] - 1, a2);
2057 case INDEX_op_extract_i64:
2058 tcg_out_opc_bf64(s, OPC_DEXT, OPC_DEXTM, OPC_DEXTU, a0, a1,
2062 case INDEX_op_brcond_i32:
2063 case INDEX_op_brcond_i64:
2064 tcg_out_brcond(s, a2, a0, a1, arg_label(args[3]));
2066 case INDEX_op_brcond2_i32:
2067 tcg_out_brcond2(s, args[4], a0, a1, a2, args[3], arg_label(args[5]));
2070 case INDEX_op_movcond_i32:
2071 case INDEX_op_movcond_i64:
2072 tcg_out_movcond(s, args[5], a0, a1, a2, args[3], args[4]);
2075 case INDEX_op_setcond_i32:
2076 case INDEX_op_setcond_i64:
2077 tcg_out_setcond(s, args[3], a0, a1, a2);
2079 case INDEX_op_setcond2_i32:
2080 tcg_out_setcond2(s, args[5], a0, a1, a2, args[3], args[4]);
2083 case INDEX_op_qemu_ld_i32:
2084 tcg_out_qemu_ld(s, args, false);
2086 case INDEX_op_qemu_ld_i64:
2087 tcg_out_qemu_ld(s, args, true);
2089 case INDEX_op_qemu_st_i32:
2090 tcg_out_qemu_st(s, args, false);
2092 case INDEX_op_qemu_st_i64:
2093 tcg_out_qemu_st(s, args, true);
2096 case INDEX_op_add2_i32:
2097 tcg_out_addsub2(s, a0, a1, a2, args[3], args[4], args[5],
2098 const_args[4], const_args[5], false);
2100 case INDEX_op_sub2_i32:
2101 tcg_out_addsub2(s, a0, a1, a2, args[3], args[4], args[5],
2102 const_args[4], const_args[5], true);
2108 case INDEX_op_mov_i32: /* Always emitted via tcg_out_mov. */
2109 case INDEX_op_mov_i64:
2110 case INDEX_op_call: /* Always emitted via tcg_out_call. */
2116 static TCGConstraintSetIndex tcg_target_op_def(TCGOpcode op)
2119 case INDEX_op_goto_ptr:
2122 case INDEX_op_ld8u_i32:
2123 case INDEX_op_ld8s_i32:
2124 case INDEX_op_ld16u_i32:
2125 case INDEX_op_ld16s_i32:
2126 case INDEX_op_ld_i32:
2127 case INDEX_op_not_i32:
2128 case INDEX_op_bswap16_i32:
2129 case INDEX_op_bswap32_i32:
2130 case INDEX_op_ext8s_i32:
2131 case INDEX_op_ext16s_i32:
2132 case INDEX_op_extract_i32:
2133 case INDEX_op_ld8u_i64:
2134 case INDEX_op_ld8s_i64:
2135 case INDEX_op_ld16u_i64:
2136 case INDEX_op_ld16s_i64:
2137 case INDEX_op_ld32s_i64:
2138 case INDEX_op_ld32u_i64:
2139 case INDEX_op_ld_i64:
2140 case INDEX_op_not_i64:
2141 case INDEX_op_bswap16_i64:
2142 case INDEX_op_bswap32_i64:
2143 case INDEX_op_bswap64_i64:
2144 case INDEX_op_ext8s_i64:
2145 case INDEX_op_ext16s_i64:
2146 case INDEX_op_ext32s_i64:
2147 case INDEX_op_ext32u_i64:
2148 case INDEX_op_ext_i32_i64:
2149 case INDEX_op_extu_i32_i64:
2150 case INDEX_op_extrl_i64_i32:
2151 case INDEX_op_extrh_i64_i32:
2152 case INDEX_op_extract_i64:
2153 return C_O1_I1(r, r);
2155 case INDEX_op_st8_i32:
2156 case INDEX_op_st16_i32:
2157 case INDEX_op_st_i32:
2158 case INDEX_op_st8_i64:
2159 case INDEX_op_st16_i64:
2160 case INDEX_op_st32_i64:
2161 case INDEX_op_st_i64:
2162 return C_O0_I2(rZ, r);
2164 case INDEX_op_add_i32:
2165 case INDEX_op_add_i64:
2166 return C_O1_I2(r, r, rJ);
2167 case INDEX_op_sub_i32:
2168 case INDEX_op_sub_i64:
2169 return C_O1_I2(r, rZ, rN);
2170 case INDEX_op_mul_i32:
2171 case INDEX_op_mulsh_i32:
2172 case INDEX_op_muluh_i32:
2173 case INDEX_op_div_i32:
2174 case INDEX_op_divu_i32:
2175 case INDEX_op_rem_i32:
2176 case INDEX_op_remu_i32:
2177 case INDEX_op_nor_i32:
2178 case INDEX_op_setcond_i32:
2179 case INDEX_op_mul_i64:
2180 case INDEX_op_mulsh_i64:
2181 case INDEX_op_muluh_i64:
2182 case INDEX_op_div_i64:
2183 case INDEX_op_divu_i64:
2184 case INDEX_op_rem_i64:
2185 case INDEX_op_remu_i64:
2186 case INDEX_op_nor_i64:
2187 case INDEX_op_setcond_i64:
2188 return C_O1_I2(r, rZ, rZ);
2189 case INDEX_op_muls2_i32:
2190 case INDEX_op_mulu2_i32:
2191 case INDEX_op_muls2_i64:
2192 case INDEX_op_mulu2_i64:
2193 return C_O2_I2(r, r, r, r);
2194 case INDEX_op_and_i32:
2195 case INDEX_op_and_i64:
2196 return C_O1_I2(r, r, rIK);
2197 case INDEX_op_or_i32:
2198 case INDEX_op_xor_i32:
2199 case INDEX_op_or_i64:
2200 case INDEX_op_xor_i64:
2201 return C_O1_I2(r, r, rI);
2202 case INDEX_op_shl_i32:
2203 case INDEX_op_shr_i32:
2204 case INDEX_op_sar_i32:
2205 case INDEX_op_rotr_i32:
2206 case INDEX_op_rotl_i32:
2207 case INDEX_op_shl_i64:
2208 case INDEX_op_shr_i64:
2209 case INDEX_op_sar_i64:
2210 case INDEX_op_rotr_i64:
2211 case INDEX_op_rotl_i64:
2212 return C_O1_I2(r, r, ri);
2213 case INDEX_op_clz_i32:
2214 case INDEX_op_clz_i64:
2215 return C_O1_I2(r, r, rWZ);
2217 case INDEX_op_deposit_i32:
2218 case INDEX_op_deposit_i64:
2219 return C_O1_I2(r, 0, rZ);
2220 case INDEX_op_brcond_i32:
2221 case INDEX_op_brcond_i64:
2222 return C_O0_I2(rZ, rZ);
2223 case INDEX_op_movcond_i32:
2224 case INDEX_op_movcond_i64:
2225 return (use_mips32r6_instructions
2226 ? C_O1_I4(r, rZ, rZ, rZ, rZ)
2227 : C_O1_I4(r, rZ, rZ, rZ, 0));
2228 case INDEX_op_add2_i32:
2229 case INDEX_op_sub2_i32:
2230 return C_O2_I4(r, r, rZ, rZ, rN, rN);
2231 case INDEX_op_setcond2_i32:
2232 return C_O1_I4(r, rZ, rZ, rZ, rZ);
2233 case INDEX_op_brcond2_i32:
2234 return C_O0_I4(rZ, rZ, rZ, rZ);
2236 case INDEX_op_qemu_ld_i32:
2237 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2238 ? C_O1_I1(r, L) : C_O1_I2(r, L, L));
2239 case INDEX_op_qemu_st_i32:
2240 return (TCG_TARGET_REG_BITS == 64 || TARGET_LONG_BITS == 32
2241 ? C_O0_I2(SZ, S) : C_O0_I3(SZ, S, S));
2242 case INDEX_op_qemu_ld_i64:
2243 return (TCG_TARGET_REG_BITS == 64 ? C_O1_I1(r, L)
2244 : TARGET_LONG_BITS == 32 ? C_O2_I1(r, r, L)
2245 : C_O2_I2(r, r, L, L));
2246 case INDEX_op_qemu_st_i64:
2247 return (TCG_TARGET_REG_BITS == 64 ? C_O0_I2(SZ, S)
2248 : TARGET_LONG_BITS == 32 ? C_O0_I3(SZ, SZ, S)
2249 : C_O0_I4(SZ, SZ, S, S));
2252 g_assert_not_reached();
2256 static const int tcg_target_callee_save_regs[] = {
2257 TCG_REG_S0, /* used for the global env (TCG_AREG0) */
2266 TCG_REG_RA, /* should be last for ABI compliance */
2269 /* The Linux kernel doesn't provide any information about the available
2270 instruction set. Probe it using a signal handler. */
2273 #ifndef use_movnz_instructions
2274 bool use_movnz_instructions = false;
2277 #ifndef use_mips32_instructions
2278 bool use_mips32_instructions = false;
2281 #ifndef use_mips32r2_instructions
2282 bool use_mips32r2_instructions = false;
2285 static volatile sig_atomic_t got_sigill;
2287 static void sigill_handler(int signo, siginfo_t *si, void *data)
2289 /* Skip the faulty instruction */
2290 ucontext_t *uc = (ucontext_t *)data;
2291 uc->uc_mcontext.pc += 4;
2296 static void tcg_target_detect_isa(void)
2298 struct sigaction sa_old, sa_new;
2300 memset(&sa_new, 0, sizeof(sa_new));
2301 sa_new.sa_flags = SA_SIGINFO;
2302 sa_new.sa_sigaction = sigill_handler;
2303 sigaction(SIGILL, &sa_new, &sa_old);
2305 /* Probe for movn/movz, necessary to implement movcond. */
2306 #ifndef use_movnz_instructions
2308 asm volatile(".set push\n"
2310 "movn $zero, $zero, $zero\n"
2311 "movz $zero, $zero, $zero\n"
2314 use_movnz_instructions = !got_sigill;
2317 /* Probe for MIPS32 instructions. As no subsetting is allowed
2318 by the specification, it is only necessary to probe for one
2319 of the instructions. */
2320 #ifndef use_mips32_instructions
2322 asm volatile(".set push\n"
2324 "mul $zero, $zero\n"
2327 use_mips32_instructions = !got_sigill;
2330 /* Probe for MIPS32r2 instructions if MIPS32 instructions are
2331 available. As no subsetting is allowed by the specification,
2332 it is only necessary to probe for one of the instructions. */
2333 #ifndef use_mips32r2_instructions
2334 if (use_mips32_instructions) {
2336 asm volatile(".set push\n"
2338 "seb $zero, $zero\n"
2341 use_mips32r2_instructions = !got_sigill;
2345 sigaction(SIGILL, &sa_old, NULL);
2348 static tcg_insn_unit *align_code_ptr(TCGContext *s)
2350 uintptr_t p = (uintptr_t)s->code_ptr;
2353 s->code_ptr = (void *)p;
2358 /* Stack frame parameters. */
2359 #define REG_SIZE (TCG_TARGET_REG_BITS / 8)
2360 #define SAVE_SIZE ((int)ARRAY_SIZE(tcg_target_callee_save_regs) * REG_SIZE)
2361 #define TEMP_SIZE (CPU_TEMP_BUF_NLONGS * (int)sizeof(long))
2363 #define FRAME_SIZE ((TCG_STATIC_CALL_ARGS_SIZE + TEMP_SIZE + SAVE_SIZE \
2364 + TCG_TARGET_STACK_ALIGN - 1) \
2365 & -TCG_TARGET_STACK_ALIGN)
2366 #define SAVE_OFS (TCG_STATIC_CALL_ARGS_SIZE + TEMP_SIZE)
2368 /* We're expecting to be able to use an immediate for frame allocation. */
2369 QEMU_BUILD_BUG_ON(FRAME_SIZE > 0x7fff);
2371 /* Generate global QEMU prologue and epilogue code */
2372 static void tcg_target_qemu_prologue(TCGContext *s)
2376 tcg_set_frame(s, TCG_REG_SP, TCG_STATIC_CALL_ARGS_SIZE, TEMP_SIZE);
2379 tcg_out_opc_imm(s, ALIAS_PADDI, TCG_REG_SP, TCG_REG_SP, -FRAME_SIZE);
2380 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
2381 tcg_out_st(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
2382 TCG_REG_SP, SAVE_OFS + i * REG_SIZE);
2385 #ifndef CONFIG_SOFTMMU
2387 tcg_out_movi(s, TCG_TYPE_PTR, TCG_GUEST_BASE_REG, guest_base);
2388 tcg_regset_set_reg(s->reserved_regs, TCG_GUEST_BASE_REG);
2392 /* Call generated code */
2393 tcg_out_opc_reg(s, OPC_JR, 0, tcg_target_call_iarg_regs[1], 0);
2395 tcg_out_mov(s, TCG_TYPE_PTR, TCG_AREG0, tcg_target_call_iarg_regs[0]);
2398 * Return path for goto_ptr. Set return value to 0, a-la exit_tb,
2399 * and fall through to the rest of the epilogue.
2401 tcg_code_gen_epilogue = tcg_splitwx_to_rx(s->code_ptr);
2402 tcg_out_mov(s, TCG_TYPE_REG, TCG_REG_V0, TCG_REG_ZERO);
2405 tb_ret_addr = tcg_splitwx_to_rx(s->code_ptr);
2406 for (i = 0; i < ARRAY_SIZE(tcg_target_callee_save_regs); i++) {
2407 tcg_out_ld(s, TCG_TYPE_REG, tcg_target_callee_save_regs[i],
2408 TCG_REG_SP, SAVE_OFS + i * REG_SIZE);
2411 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2413 tcg_out_opc_imm(s, ALIAS_PADDI, TCG_REG_SP, TCG_REG_SP, FRAME_SIZE);
2415 if (use_mips32r2_instructions) {
2419 /* Bswap subroutines: Input in TCG_TMP0, output in TCG_TMP3;
2420 clobbers TCG_TMP1, TCG_TMP2. */
2423 * bswap32 -- 32-bit swap (signed result for mips64). a0 = abcd.
2425 bswap32_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2426 /* t3 = (ssss)d000 */
2427 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP3, TCG_TMP0, 24);
2429 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 24);
2431 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2433 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2435 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 8);
2437 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP2, TCG_TMP2, 8);
2439 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2441 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2442 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2443 /* t3 = dcba -- delay slot */
2444 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2446 if (TCG_TARGET_REG_BITS == 32) {
2451 * bswap32u -- unsigned 32-bit swap. a0 = ....abcd.
2453 bswap32u_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2454 /* t1 = (0000)000d */
2455 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP0, 0xff);
2457 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP3, TCG_TMP0, 24);
2458 /* t1 = (0000)d000 */
2459 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 24);
2461 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2463 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2465 tcg_out_opc_sa(s, OPC_SRL, TCG_TMP1, TCG_TMP0, 8);
2467 tcg_out_opc_sa(s, OPC_SLL, TCG_TMP2, TCG_TMP2, 8);
2469 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2471 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2472 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2473 /* t3 = dcba -- delay slot */
2474 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2477 * bswap64 -- 64-bit swap. a0 = abcdefgh
2479 bswap64_addr = tcg_splitwx_to_rx(align_code_ptr(s));
2481 tcg_out_dsll(s, TCG_TMP3, TCG_TMP0, 56);
2483 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 56);
2486 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP0, 0xff00);
2488 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2490 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 40);
2492 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 40);
2494 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2497 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2499 tcg_out_dsrl(s, TCG_TMP2, TCG_TMP0, 32);
2501 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2504 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP2, 0xff00);
2506 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP2, 0x00ff);
2508 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 8);
2510 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 24);
2513 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2515 tcg_out_dsrl(s, TCG_TMP1, TCG_TMP0, 16);
2517 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2520 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP2, TCG_TMP1, 0x00ff);
2522 tcg_out_opc_imm(s, OPC_ANDI, TCG_TMP1, TCG_TMP1, 0xff00);
2524 tcg_out_dsll(s, TCG_TMP2, TCG_TMP2, 40);
2526 tcg_out_dsll(s, TCG_TMP1, TCG_TMP1, 24);
2529 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP2);
2530 tcg_out_opc_reg(s, OPC_JR, 0, TCG_REG_RA, 0);
2531 /* t3 = hgfedcba -- delay slot */
2532 tcg_out_opc_reg(s, OPC_OR, TCG_TMP3, TCG_TMP3, TCG_TMP1);
2535 static void tcg_target_init(TCGContext *s)
2537 tcg_target_detect_isa();
2538 tcg_target_available_regs[TCG_TYPE_I32] = 0xffffffff;
2539 if (TCG_TARGET_REG_BITS == 64) {
2540 tcg_target_available_regs[TCG_TYPE_I64] = 0xffffffff;
2543 tcg_target_call_clobber_regs = 0;
2544 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_V0);
2545 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_V1);
2546 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A0);
2547 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A1);
2548 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A2);
2549 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_A3);
2550 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T0);
2551 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T1);
2552 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T2);
2553 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T3);
2554 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T4);
2555 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T5);
2556 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T6);
2557 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T7);
2558 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T8);
2559 tcg_regset_set_reg(tcg_target_call_clobber_regs, TCG_REG_T9);
2561 s->reserved_regs = 0;
2562 tcg_regset_set_reg(s->reserved_regs, TCG_REG_ZERO); /* zero register */
2563 tcg_regset_set_reg(s->reserved_regs, TCG_REG_K0); /* kernel use only */
2564 tcg_regset_set_reg(s->reserved_regs, TCG_REG_K1); /* kernel use only */
2565 tcg_regset_set_reg(s->reserved_regs, TCG_TMP0); /* internal use */
2566 tcg_regset_set_reg(s->reserved_regs, TCG_TMP1); /* internal use */
2567 tcg_regset_set_reg(s->reserved_regs, TCG_TMP2); /* internal use */
2568 tcg_regset_set_reg(s->reserved_regs, TCG_TMP3); /* internal use */
2569 tcg_regset_set_reg(s->reserved_regs, TCG_REG_RA); /* return address */
2570 tcg_regset_set_reg(s->reserved_regs, TCG_REG_SP); /* stack pointer */
2571 tcg_regset_set_reg(s->reserved_regs, TCG_REG_GP); /* global pointer */
2574 void tb_target_set_jmp_target(uintptr_t tc_ptr, uintptr_t jmp_rx,
2575 uintptr_t jmp_rw, uintptr_t addr)
2577 qatomic_set((uint32_t *)jmp_rw, deposit32(OPC_J, 0, 26, addr >> 2));
2578 flush_idcache_range(jmp_rx, jmp_rw, 4);
2583 uint8_t fde_def_cfa[4];
2584 uint8_t fde_reg_ofs[ARRAY_SIZE(tcg_target_callee_save_regs) * 2];
2587 #define ELF_HOST_MACHINE EM_MIPS
2588 /* GDB doesn't appear to require proper setting of ELF_HOST_FLAGS,
2589 which is good because they're really quite complicated for MIPS. */
2591 static const DebugFrame debug_frame = {
2592 .h.cie.len = sizeof(DebugFrameCIE) - 4, /* length after .len member */
2595 .h.cie.code_align = 1,
2596 .h.cie.data_align = -(TCG_TARGET_REG_BITS / 8) & 0x7f, /* sleb128 */
2597 .h.cie.return_column = TCG_REG_RA,
2599 /* Total FDE size does not include the "len" member. */
2600 .h.fde.len = sizeof(DebugFrame) - offsetof(DebugFrame, h.fde.cie_offset),
2603 12, TCG_REG_SP, /* DW_CFA_def_cfa sp, ... */
2604 (FRAME_SIZE & 0x7f) | 0x80, /* ... uleb128 FRAME_SIZE */
2608 0x80 + 16, 9, /* DW_CFA_offset, s0, -72 */
2609 0x80 + 17, 8, /* DW_CFA_offset, s2, -64 */
2610 0x80 + 18, 7, /* DW_CFA_offset, s3, -56 */
2611 0x80 + 19, 6, /* DW_CFA_offset, s4, -48 */
2612 0x80 + 20, 5, /* DW_CFA_offset, s5, -40 */
2613 0x80 + 21, 4, /* DW_CFA_offset, s6, -32 */
2614 0x80 + 22, 3, /* DW_CFA_offset, s7, -24 */
2615 0x80 + 30, 2, /* DW_CFA_offset, s8, -16 */
2616 0x80 + 31, 1, /* DW_CFA_offset, ra, -8 */
2620 void tcg_register_jit(const void *buf, size_t buf_size)
2622 tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame));