1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
3 * Copyright (C) 2016-2021 Paul Cercueil <paul@crapouillou.net>
6 #ifndef __LIGHTREC_PRIVATE_H__
7 #define __LIGHTREC_PRIVATE_H__
9 #include "lightrec-config.h"
10 #include "disassembler.h"
13 #if ENABLE_THREADED_COMPILER
14 #include <stdatomic.h>
17 #define ARRAY_SIZE(x) (sizeof(x) ? sizeof(x) / sizeof((x)[0]) : 0)
20 # define likely(x) __builtin_expect(!!(x),1)
21 # define unlikely(x) __builtin_expect(!!(x),0)
23 # define likely(x) (x)
24 # define unlikely(x) (x)
27 #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
28 # define LE32TOH(x) __builtin_bswap32(x)
29 # define HTOLE32(x) __builtin_bswap32(x)
30 # define LE16TOH(x) __builtin_bswap16(x)
31 # define HTOLE16(x) __builtin_bswap16(x)
33 # define LE32TOH(x) (x)
34 # define HTOLE32(x) (x)
35 # define LE16TOH(x) (x)
36 # define HTOLE16(x) (x)
40 #define SET_DEFAULT_ELM(table, value) [0 ... ARRAY_SIZE(table) - 1] = value
42 #define SET_DEFAULT_ELM(table, value) [0] = NULL
45 /* Flags for (struct block *)->flags */
46 #define BLOCK_NEVER_COMPILE BIT(0)
47 #define BLOCK_SHOULD_RECOMPILE BIT(1)
48 #define BLOCK_FULLY_TAGGED BIT(2)
49 #define BLOCK_IS_DEAD BIT(3)
50 #define BLOCK_IS_MEMSET BIT(4)
52 #define RAM_SIZE 0x200000
53 #define BIOS_SIZE 0x80000
55 #define CODE_LUT_SIZE ((RAM_SIZE + BIOS_SIZE) >> 2)
60 /* Definition of jit_state_t (avoids inclusion of <lightning.h>) */
63 typedef struct jit_state jit_state_t;
74 struct opcode *opcode_list;
75 void (*function)(void);
80 unsigned int code_size;
83 #if ENABLE_THREADED_COMPILER
84 atomic_flag op_list_freed;
88 struct lightrec_branch {
89 struct jit_node *branch;
93 struct lightrec_branch_target {
94 struct jit_node *label;
100 C_WRAPPER_RW_GENERIC,
109 struct lightrec_cstate {
110 struct lightrec_state *state;
112 struct jit_node *branches[512];
113 struct lightrec_branch local_branches[512];
114 struct lightrec_branch_target targets[512];
115 unsigned int nb_branches;
116 unsigned int nb_local_branches;
117 unsigned int nb_targets;
120 struct regcache *reg_cache;
123 struct lightrec_state {
124 struct lightrec_registers regs;
129 u32 old_cycle_counter;
130 struct block *dispatcher, *c_wrapper_block;
131 void *c_wrapper, *c_wrappers[C_WRAPPERS_COUNT];
132 struct tinymm *tinymm;
133 struct blockcache *block_cache;
134 struct recompiler *rec;
135 struct lightrec_cstate *cstate;
136 struct reaper *reaper;
137 void (*eob_wrapper_func)(void);
138 void (*memset_func)(void);
139 void (*get_next_block)(void);
140 struct lightrec_ops ops;
141 unsigned int nb_precompile;
142 unsigned int nb_maps;
143 const struct lightrec_mem_map *maps;
144 uintptr_t offset_ram, offset_bios, offset_scratch;
145 _Bool mirrors_mapped;
146 _Bool invalidate_from_dma_only;
150 u32 lightrec_rw(struct lightrec_state *state, union code op,
151 u32 addr, u32 data, u16 *flags,
152 struct block *block);
154 void lightrec_free_block(struct lightrec_state *state, struct block *block);
156 void remove_from_code_lut(struct blockcache *cache, struct block *block);
158 const struct lightrec_mem_map *
159 lightrec_get_map(struct lightrec_state *state, void **host, u32 kaddr);
161 static inline u32 kunseg(u32 addr)
163 if (unlikely(addr >= 0xa0000000))
164 return addr - 0xa0000000;
166 return addr &~ 0x80000000;
169 static inline u32 lut_offset(u32 pc)
172 return ((pc & (BIOS_SIZE - 1)) + RAM_SIZE) >> 2; // BIOS
174 return (pc & (RAM_SIZE - 1)) >> 2; // RAM
177 static inline u32 get_ds_pc(const struct block *block, u16 offset, s16 imm)
179 u16 flags = block->opcode_list[offset].flags;
181 offset += !!(OPT_SWITCH_DELAY_SLOTS && (flags & LIGHTREC_NO_DS));
183 return block->pc + (offset + imm << 2);
186 static inline u32 get_branch_pc(const struct block *block, u16 offset, s16 imm)
188 u16 flags = block->opcode_list[offset].flags;
190 offset -= !!(OPT_SWITCH_DELAY_SLOTS && (flags & LIGHTREC_NO_DS));
192 return block->pc + (offset + imm << 2);
195 void lightrec_mtc(struct lightrec_state *state, union code op, u32 data);
196 u32 lightrec_mfc(struct lightrec_state *state, union code op);
197 void lightrec_rfe(struct lightrec_state *state);
198 void lightrec_cp(struct lightrec_state *state, union code op);
200 struct lightrec_cstate * lightrec_create_cstate(struct lightrec_state *state);
201 void lightrec_free_cstate(struct lightrec_cstate *cstate);
203 union code lightrec_read_opcode(struct lightrec_state *state, u32 pc);
205 struct block * lightrec_get_block(struct lightrec_state *state, u32 pc);
206 int lightrec_compile_block(struct lightrec_cstate *cstate, struct block *block);
207 void lightrec_free_opcode_list(struct lightrec_state *state, struct block *block);
209 unsigned int lightrec_cycles_of_opcode(union code code);
211 static inline u8 get_mult_div_lo(union code c)
213 return (OPT_FLAG_MULT_DIV && c.r.rd) ? c.r.rd : REG_LO;
216 static inline u8 get_mult_div_hi(union code c)
218 return (OPT_FLAG_MULT_DIV && c.r.imm) ? c.r.imm : REG_HI;
221 #endif /* __LIGHTREC_PRIVATE_H__ */