]>
Commit | Line | Data |
---|---|---|
c896fe29 FB |
1 | /* |
2 | * Tiny Code Generator for QEMU | |
3 | * | |
4 | * Copyright (c) 2008 Fabrice Bellard | |
5 | * | |
6 | * Permission is hereby granted, free of charge, to any person obtaining a copy | |
7 | * of this software and associated documentation files (the "Software"), to deal | |
8 | * in the Software without restriction, including without limitation the rights | |
9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
10 | * copies of the Software, and to permit persons to whom the Software is | |
11 | * furnished to do so, subject to the following conditions: | |
12 | * | |
13 | * The above copyright notice and this permission notice shall be included in | |
14 | * all copies or substantial portions of the Software. | |
15 | * | |
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | |
19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | |
21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | |
22 | * THE SOFTWARE. | |
23 | */ | |
e58eb534 RH |
24 | |
25 | #ifndef TCG_H | |
26 | #define TCG_H | |
27 | ||
f8393946 | 28 | #include "qemu-common.h" |
33c11879 | 29 | #include "cpu.h" |
00f6da6a | 30 | #include "exec/tb-context.h" |
0ec9eabc | 31 | #include "qemu/bitops.h" |
78cd7b83 RH |
32 | #include "tcg-target.h" |
33 | ||
00f6da6a PB |
34 | /* XXX: make safe guess about sizes */ |
35 | #define MAX_OP_PER_INSTR 266 | |
36 | ||
37 | #if HOST_LONG_BITS == 32 | |
38 | #define MAX_OPC_PARAM_PER_ARG 2 | |
39 | #else | |
40 | #define MAX_OPC_PARAM_PER_ARG 1 | |
41 | #endif | |
42 | #define MAX_OPC_PARAM_IARGS 5 | |
43 | #define MAX_OPC_PARAM_OARGS 1 | |
44 | #define MAX_OPC_PARAM_ARGS (MAX_OPC_PARAM_IARGS + MAX_OPC_PARAM_OARGS) | |
45 | ||
46 | /* A Call op needs up to 4 + 2N parameters on 32-bit archs, | |
47 | * and up to 4 + N parameters on 64-bit archs | |
48 | * (N = number of input arguments + output arguments). */ | |
49 | #define MAX_OPC_PARAM (4 + (MAX_OPC_PARAM_PER_ARG * MAX_OPC_PARAM_ARGS)) | |
50 | #define OPC_BUF_SIZE 640 | |
51 | #define OPC_MAX_SIZE (OPC_BUF_SIZE - MAX_OP_PER_INSTR) | |
52 | ||
53 | #define OPPARAM_BUF_SIZE (OPC_BUF_SIZE * MAX_OPC_PARAM) | |
54 | ||
6e0b0730 PC |
55 | #define CPU_TEMP_BUF_NLONGS 128 |
56 | ||
78cd7b83 RH |
57 | /* Default target word size to pointer size. */ |
58 | #ifndef TCG_TARGET_REG_BITS | |
59 | # if UINTPTR_MAX == UINT32_MAX | |
60 | # define TCG_TARGET_REG_BITS 32 | |
61 | # elif UINTPTR_MAX == UINT64_MAX | |
62 | # define TCG_TARGET_REG_BITS 64 | |
63 | # else | |
64 | # error Unknown pointer size for tcg target | |
65 | # endif | |
817b838e SW |
66 | #endif |
67 | ||
c896fe29 FB |
68 | #if TCG_TARGET_REG_BITS == 32 |
69 | typedef int32_t tcg_target_long; | |
70 | typedef uint32_t tcg_target_ulong; | |
71 | #define TCG_PRIlx PRIx32 | |
72 | #define TCG_PRIld PRId32 | |
73 | #elif TCG_TARGET_REG_BITS == 64 | |
74 | typedef int64_t tcg_target_long; | |
75 | typedef uint64_t tcg_target_ulong; | |
76 | #define TCG_PRIlx PRIx64 | |
77 | #define TCG_PRIld PRId64 | |
78 | #else | |
79 | #error unsupported | |
80 | #endif | |
81 | ||
82 | #if TCG_TARGET_NB_REGS <= 32 | |
83 | typedef uint32_t TCGRegSet; | |
84 | #elif TCG_TARGET_NB_REGS <= 64 | |
85 | typedef uint64_t TCGRegSet; | |
86 | #else | |
87 | #error unsupported | |
88 | #endif | |
89 | ||
25c4d9cc | 90 | #if TCG_TARGET_REG_BITS == 32 |
e6a72734 | 91 | /* Turn some undef macros into false macros. */ |
609ad705 RH |
92 | #define TCG_TARGET_HAS_extrl_i64_i32 0 |
93 | #define TCG_TARGET_HAS_extrh_i64_i32 0 | |
25c4d9cc | 94 | #define TCG_TARGET_HAS_div_i64 0 |
ca675f46 | 95 | #define TCG_TARGET_HAS_rem_i64 0 |
25c4d9cc RH |
96 | #define TCG_TARGET_HAS_div2_i64 0 |
97 | #define TCG_TARGET_HAS_rot_i64 0 | |
98 | #define TCG_TARGET_HAS_ext8s_i64 0 | |
99 | #define TCG_TARGET_HAS_ext16s_i64 0 | |
100 | #define TCG_TARGET_HAS_ext32s_i64 0 | |
101 | #define TCG_TARGET_HAS_ext8u_i64 0 | |
102 | #define TCG_TARGET_HAS_ext16u_i64 0 | |
103 | #define TCG_TARGET_HAS_ext32u_i64 0 | |
104 | #define TCG_TARGET_HAS_bswap16_i64 0 | |
105 | #define TCG_TARGET_HAS_bswap32_i64 0 | |
106 | #define TCG_TARGET_HAS_bswap64_i64 0 | |
107 | #define TCG_TARGET_HAS_neg_i64 0 | |
108 | #define TCG_TARGET_HAS_not_i64 0 | |
109 | #define TCG_TARGET_HAS_andc_i64 0 | |
110 | #define TCG_TARGET_HAS_orc_i64 0 | |
111 | #define TCG_TARGET_HAS_eqv_i64 0 | |
112 | #define TCG_TARGET_HAS_nand_i64 0 | |
113 | #define TCG_TARGET_HAS_nor_i64 0 | |
114 | #define TCG_TARGET_HAS_deposit_i64 0 | |
7ec8bab3 RH |
115 | #define TCG_TARGET_HAS_extract_i64 0 |
116 | #define TCG_TARGET_HAS_sextract_i64 0 | |
ffc5ea09 | 117 | #define TCG_TARGET_HAS_movcond_i64 0 |
d7156f7c RH |
118 | #define TCG_TARGET_HAS_add2_i64 0 |
119 | #define TCG_TARGET_HAS_sub2_i64 0 | |
120 | #define TCG_TARGET_HAS_mulu2_i64 0 | |
4d3203fd | 121 | #define TCG_TARGET_HAS_muls2_i64 0 |
03271524 RH |
122 | #define TCG_TARGET_HAS_muluh_i64 0 |
123 | #define TCG_TARGET_HAS_mulsh_i64 0 | |
e6a72734 RH |
124 | /* Turn some undef macros into true macros. */ |
125 | #define TCG_TARGET_HAS_add2_i32 1 | |
126 | #define TCG_TARGET_HAS_sub2_i32 1 | |
25c4d9cc RH |
127 | #endif |
128 | ||
a4773324 JK |
129 | #ifndef TCG_TARGET_deposit_i32_valid |
130 | #define TCG_TARGET_deposit_i32_valid(ofs, len) 1 | |
131 | #endif | |
132 | #ifndef TCG_TARGET_deposit_i64_valid | |
133 | #define TCG_TARGET_deposit_i64_valid(ofs, len) 1 | |
134 | #endif | |
7ec8bab3 RH |
135 | #ifndef TCG_TARGET_extract_i32_valid |
136 | #define TCG_TARGET_extract_i32_valid(ofs, len) 1 | |
137 | #endif | |
138 | #ifndef TCG_TARGET_extract_i64_valid | |
139 | #define TCG_TARGET_extract_i64_valid(ofs, len) 1 | |
140 | #endif | |
a4773324 | 141 | |
25c4d9cc RH |
142 | /* Only one of DIV or DIV2 should be defined. */ |
143 | #if defined(TCG_TARGET_HAS_div_i32) | |
144 | #define TCG_TARGET_HAS_div2_i32 0 | |
145 | #elif defined(TCG_TARGET_HAS_div2_i32) | |
146 | #define TCG_TARGET_HAS_div_i32 0 | |
ca675f46 | 147 | #define TCG_TARGET_HAS_rem_i32 0 |
25c4d9cc RH |
148 | #endif |
149 | #if defined(TCG_TARGET_HAS_div_i64) | |
150 | #define TCG_TARGET_HAS_div2_i64 0 | |
151 | #elif defined(TCG_TARGET_HAS_div2_i64) | |
152 | #define TCG_TARGET_HAS_div_i64 0 | |
ca675f46 | 153 | #define TCG_TARGET_HAS_rem_i64 0 |
25c4d9cc RH |
154 | #endif |
155 | ||
df9ebea5 RH |
156 | /* For 32-bit targets, some sort of unsigned widening multiply is required. */ |
157 | #if TCG_TARGET_REG_BITS == 32 \ | |
158 | && !(defined(TCG_TARGET_HAS_mulu2_i32) \ | |
159 | || defined(TCG_TARGET_HAS_muluh_i32)) | |
160 | # error "Missing unsigned widening multiply" | |
161 | #endif | |
162 | ||
9aef40ed RH |
163 | #ifndef TARGET_INSN_START_EXTRA_WORDS |
164 | # define TARGET_INSN_START_WORDS 1 | |
165 | #else | |
166 | # define TARGET_INSN_START_WORDS (1 + TARGET_INSN_START_EXTRA_WORDS) | |
167 | #endif | |
168 | ||
a9751609 | 169 | typedef enum TCGOpcode { |
c61aaf7a | 170 | #define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name, |
c896fe29 FB |
171 | #include "tcg-opc.h" |
172 | #undef DEF | |
173 | NB_OPS, | |
a9751609 | 174 | } TCGOpcode; |
c896fe29 FB |
175 | |
176 | #define tcg_regset_clear(d) (d) = 0 | |
177 | #define tcg_regset_set(d, s) (d) = (s) | |
178 | #define tcg_regset_set32(d, reg, val32) (d) |= (val32) << (reg) | |
7d301752 AJ |
179 | #define tcg_regset_set_reg(d, r) (d) |= 1L << (r) |
180 | #define tcg_regset_reset_reg(d, r) (d) &= ~(1L << (r)) | |
c896fe29 FB |
181 | #define tcg_regset_test_reg(d, r) (((d) >> (r)) & 1) |
182 | #define tcg_regset_or(d, a, b) (d) = (a) | (b) | |
183 | #define tcg_regset_and(d, a, b) (d) = (a) & (b) | |
184 | #define tcg_regset_andnot(d, a, b) (d) = (a) & ~(b) | |
185 | #define tcg_regset_not(d, a) (d) = ~(a) | |
186 | ||
1813e175 | 187 | #ifndef TCG_TARGET_INSN_UNIT_SIZE |
5053361b RH |
188 | # error "Missing TCG_TARGET_INSN_UNIT_SIZE" |
189 | #elif TCG_TARGET_INSN_UNIT_SIZE == 1 | |
1813e175 RH |
190 | typedef uint8_t tcg_insn_unit; |
191 | #elif TCG_TARGET_INSN_UNIT_SIZE == 2 | |
192 | typedef uint16_t tcg_insn_unit; | |
193 | #elif TCG_TARGET_INSN_UNIT_SIZE == 4 | |
194 | typedef uint32_t tcg_insn_unit; | |
195 | #elif TCG_TARGET_INSN_UNIT_SIZE == 8 | |
196 | typedef uint64_t tcg_insn_unit; | |
197 | #else | |
198 | /* The port better have done this. */ | |
199 | #endif | |
200 | ||
201 | ||
8bff06a0 | 202 | #if defined CONFIG_DEBUG_TCG || defined QEMU_STATIC_ANALYSIS |
1f00b27f SS |
203 | # define tcg_debug_assert(X) do { assert(X); } while (0) |
204 | #elif QEMU_GNUC_PREREQ(4, 5) | |
205 | # define tcg_debug_assert(X) \ | |
206 | do { if (!(X)) { __builtin_unreachable(); } } while (0) | |
207 | #else | |
208 | # define tcg_debug_assert(X) do { (void)(X); } while (0) | |
209 | #endif | |
210 | ||
c896fe29 FB |
211 | typedef struct TCGRelocation { |
212 | struct TCGRelocation *next; | |
213 | int type; | |
1813e175 | 214 | tcg_insn_unit *ptr; |
2ba7fae2 | 215 | intptr_t addend; |
c896fe29 FB |
216 | } TCGRelocation; |
217 | ||
218 | typedef struct TCGLabel { | |
51e3972c RH |
219 | unsigned has_value : 1; |
220 | unsigned id : 31; | |
c896fe29 | 221 | union { |
2ba7fae2 | 222 | uintptr_t value; |
1813e175 | 223 | tcg_insn_unit *value_ptr; |
c896fe29 FB |
224 | TCGRelocation *first_reloc; |
225 | } u; | |
226 | } TCGLabel; | |
227 | ||
228 | typedef struct TCGPool { | |
229 | struct TCGPool *next; | |
c44f945a BS |
230 | int size; |
231 | uint8_t data[0] __attribute__ ((aligned)); | |
c896fe29 FB |
232 | } TCGPool; |
233 | ||
234 | #define TCG_POOL_CHUNK_SIZE 32768 | |
235 | ||
c4071c90 | 236 | #define TCG_MAX_TEMPS 512 |
190ce7fb | 237 | #define TCG_MAX_INSNS 512 |
c896fe29 | 238 | |
b03cce8e FB |
239 | /* when the size of the arguments of a called function is smaller than |
240 | this value, they are statically allocated in the TB stack frame */ | |
241 | #define TCG_STATIC_CALL_ARGS_SIZE 128 | |
242 | ||
c02244a5 RH |
243 | typedef enum TCGType { |
244 | TCG_TYPE_I32, | |
245 | TCG_TYPE_I64, | |
246 | TCG_TYPE_COUNT, /* number of different types */ | |
c896fe29 | 247 | |
3b6dac34 | 248 | /* An alias for the size of the host register. */ |
c896fe29 | 249 | #if TCG_TARGET_REG_BITS == 32 |
3b6dac34 | 250 | TCG_TYPE_REG = TCG_TYPE_I32, |
c02244a5 | 251 | #else |
3b6dac34 | 252 | TCG_TYPE_REG = TCG_TYPE_I64, |
c02244a5 | 253 | #endif |
3b6dac34 | 254 | |
d289837e RH |
255 | /* An alias for the size of the native pointer. */ |
256 | #if UINTPTR_MAX == UINT32_MAX | |
257 | TCG_TYPE_PTR = TCG_TYPE_I32, | |
258 | #else | |
259 | TCG_TYPE_PTR = TCG_TYPE_I64, | |
260 | #endif | |
3b6dac34 RH |
261 | |
262 | /* An alias for the size of the target "long", aka register. */ | |
c02244a5 RH |
263 | #if TARGET_LONG_BITS == 64 |
264 | TCG_TYPE_TL = TCG_TYPE_I64, | |
c896fe29 | 265 | #else |
c02244a5 | 266 | TCG_TYPE_TL = TCG_TYPE_I32, |
c896fe29 | 267 | #endif |
c02244a5 | 268 | } TCGType; |
c896fe29 | 269 | |
6c5f4ead RH |
270 | /* Constants for qemu_ld and qemu_st for the Memory Operation field. */ |
271 | typedef enum TCGMemOp { | |
272 | MO_8 = 0, | |
273 | MO_16 = 1, | |
274 | MO_32 = 2, | |
275 | MO_64 = 3, | |
276 | MO_SIZE = 3, /* Mask for the above. */ | |
277 | ||
278 | MO_SIGN = 4, /* Sign-extended, otherwise zero-extended. */ | |
279 | ||
280 | MO_BSWAP = 8, /* Host reverse endian. */ | |
281 | #ifdef HOST_WORDS_BIGENDIAN | |
282 | MO_LE = MO_BSWAP, | |
283 | MO_BE = 0, | |
284 | #else | |
285 | MO_LE = 0, | |
286 | MO_BE = MO_BSWAP, | |
287 | #endif | |
288 | #ifdef TARGET_WORDS_BIGENDIAN | |
289 | MO_TE = MO_BE, | |
290 | #else | |
291 | MO_TE = MO_LE, | |
292 | #endif | |
293 | ||
dfb36305 | 294 | /* MO_UNALN accesses are never checked for alignment. |
1f00b27f SS |
295 | * MO_ALIGN accesses will result in a call to the CPU's |
296 | * do_unaligned_access hook if the guest address is not aligned. | |
297 | * The default depends on whether the target CPU defines ALIGNED_ONLY. | |
85aa8081 | 298 | * |
1f00b27f SS |
299 | * Some architectures (e.g. ARMv8) need the address which is aligned |
300 | * to a size more than the size of the memory access. | |
85aa8081 RH |
301 | * Some architectures (e.g. SPARCv9) need an address which is aligned, |
302 | * but less strictly than the natural alignment. | |
303 | * | |
304 | * MO_ALIGN supposes the alignment size is the size of a memory access. | |
305 | * | |
1f00b27f | 306 | * There are three options: |
1f00b27f | 307 | * - unaligned access permitted (MO_UNALN). |
85aa8081 RH |
308 | * - an alignment to the size of an access (MO_ALIGN); |
309 | * - an alignment to a specified size, which may be more or less than | |
310 | * the access size (MO_ALIGN_x where 'x' is a size in bytes); | |
1f00b27f SS |
311 | */ |
312 | MO_ASHIFT = 4, | |
313 | MO_AMASK = 7 << MO_ASHIFT, | |
dfb36305 RH |
314 | #ifdef ALIGNED_ONLY |
315 | MO_ALIGN = 0, | |
316 | MO_UNALN = MO_AMASK, | |
317 | #else | |
318 | MO_ALIGN = MO_AMASK, | |
319 | MO_UNALN = 0, | |
320 | #endif | |
1f00b27f SS |
321 | MO_ALIGN_2 = 1 << MO_ASHIFT, |
322 | MO_ALIGN_4 = 2 << MO_ASHIFT, | |
323 | MO_ALIGN_8 = 3 << MO_ASHIFT, | |
324 | MO_ALIGN_16 = 4 << MO_ASHIFT, | |
325 | MO_ALIGN_32 = 5 << MO_ASHIFT, | |
326 | MO_ALIGN_64 = 6 << MO_ASHIFT, | |
dfb36305 | 327 | |
6c5f4ead RH |
328 | /* Combinations of the above, for ease of use. */ |
329 | MO_UB = MO_8, | |
330 | MO_UW = MO_16, | |
331 | MO_UL = MO_32, | |
332 | MO_SB = MO_SIGN | MO_8, | |
333 | MO_SW = MO_SIGN | MO_16, | |
334 | MO_SL = MO_SIGN | MO_32, | |
335 | MO_Q = MO_64, | |
336 | ||
337 | MO_LEUW = MO_LE | MO_UW, | |
338 | MO_LEUL = MO_LE | MO_UL, | |
339 | MO_LESW = MO_LE | MO_SW, | |
340 | MO_LESL = MO_LE | MO_SL, | |
341 | MO_LEQ = MO_LE | MO_Q, | |
342 | ||
343 | MO_BEUW = MO_BE | MO_UW, | |
344 | MO_BEUL = MO_BE | MO_UL, | |
345 | MO_BESW = MO_BE | MO_SW, | |
346 | MO_BESL = MO_BE | MO_SL, | |
347 | MO_BEQ = MO_BE | MO_Q, | |
348 | ||
349 | MO_TEUW = MO_TE | MO_UW, | |
350 | MO_TEUL = MO_TE | MO_UL, | |
351 | MO_TESW = MO_TE | MO_SW, | |
352 | MO_TESL = MO_TE | MO_SL, | |
353 | MO_TEQ = MO_TE | MO_Q, | |
354 | ||
355 | MO_SSIZE = MO_SIZE | MO_SIGN, | |
356 | } TCGMemOp; | |
357 | ||
1f00b27f SS |
358 | /** |
359 | * get_alignment_bits | |
360 | * @memop: TCGMemOp value | |
361 | * | |
362 | * Extract the alignment size from the memop. | |
1f00b27f | 363 | */ |
85aa8081 | 364 | static inline unsigned get_alignment_bits(TCGMemOp memop) |
1f00b27f | 365 | { |
85aa8081 | 366 | unsigned a = memop & MO_AMASK; |
1f00b27f SS |
367 | |
368 | if (a == MO_UNALN) { | |
85aa8081 RH |
369 | /* No alignment required. */ |
370 | a = 0; | |
1f00b27f | 371 | } else if (a == MO_ALIGN) { |
85aa8081 RH |
372 | /* A natural alignment requirement. */ |
373 | a = memop & MO_SIZE; | |
1f00b27f | 374 | } else { |
85aa8081 RH |
375 | /* A specific alignment requirement. */ |
376 | a = a >> MO_ASHIFT; | |
1f00b27f SS |
377 | } |
378 | #if defined(CONFIG_SOFTMMU) | |
379 | /* The requested alignment cannot overlap the TLB flags. */ | |
85aa8081 | 380 | tcg_debug_assert((TLB_FLAGS_MASK & ((1 << a) - 1)) == 0); |
1f00b27f | 381 | #endif |
85aa8081 | 382 | return a; |
1f00b27f SS |
383 | } |
384 | ||
c896fe29 FB |
385 | typedef tcg_target_ulong TCGArg; |
386 | ||
a40d4701 PM |
387 | /* Define type and accessor macros for TCG variables. |
388 | ||
389 | TCG variables are the inputs and outputs of TCG ops, as described | |
390 | in tcg/README. Target CPU front-end code uses these types to deal | |
391 | with TCG variables as it emits TCG code via the tcg_gen_* functions. | |
392 | They come in several flavours: | |
393 | * TCGv_i32 : 32 bit integer type | |
394 | * TCGv_i64 : 64 bit integer type | |
395 | * TCGv_ptr : a host pointer type | |
396 | * TCGv : an integer type the same size as target_ulong | |
397 | (an alias for either TCGv_i32 or TCGv_i64) | |
398 | The compiler's type checking will complain if you mix them | |
399 | up and pass the wrong sized TCGv to a function. | |
400 | ||
401 | Users of tcg_gen_* don't need to know about any of the internal | |
402 | details of these, and should treat them as opaque types. | |
403 | You won't be able to look inside them in a debugger either. | |
404 | ||
405 | Internal implementation details follow: | |
406 | ||
407 | Note that there is no definition of the structs TCGv_i32_d etc anywhere. | |
408 | This is deliberate, because the values we store in variables of type | |
409 | TCGv_i32 are not really pointers-to-structures. They're just small | |
410 | integers, but keeping them in pointer types like this means that the | |
411 | compiler will complain if you accidentally pass a TCGv_i32 to a | |
412 | function which takes a TCGv_i64, and so on. Only the internals of | |
413 | TCG need to care about the actual contents of the types, and they always | |
414 | box and unbox via the MAKE_TCGV_* and GET_TCGV_* functions. | |
415 | Converting to and from intptr_t rather than int reduces the number | |
416 | of sign-extension instructions that get implied on 64-bit hosts. */ | |
ac56dd48 | 417 | |
b6c73a6d RH |
418 | typedef struct TCGv_i32_d *TCGv_i32; |
419 | typedef struct TCGv_i64_d *TCGv_i64; | |
420 | typedef struct TCGv_ptr_d *TCGv_ptr; | |
1bcea73e | 421 | typedef TCGv_ptr TCGv_env; |
5d4e1a10 LV |
422 | #if TARGET_LONG_BITS == 32 |
423 | #define TCGv TCGv_i32 | |
424 | #elif TARGET_LONG_BITS == 64 | |
425 | #define TCGv TCGv_i64 | |
426 | #else | |
427 | #error Unhandled TARGET_LONG_BITS value | |
428 | #endif | |
ac56dd48 | 429 | |
b6c73a6d RH |
430 | static inline TCGv_i32 QEMU_ARTIFICIAL MAKE_TCGV_I32(intptr_t i) |
431 | { | |
432 | return (TCGv_i32)i; | |
433 | } | |
ac56dd48 | 434 | |
b6c73a6d | 435 | static inline TCGv_i64 QEMU_ARTIFICIAL MAKE_TCGV_I64(intptr_t i) |
ac56dd48 | 436 | { |
b6c73a6d RH |
437 | return (TCGv_i64)i; |
438 | } | |
ac56dd48 | 439 | |
b6c73a6d | 440 | static inline TCGv_ptr QEMU_ARTIFICIAL MAKE_TCGV_PTR(intptr_t i) |
a7812ae4 | 441 | { |
b6c73a6d RH |
442 | return (TCGv_ptr)i; |
443 | } | |
ac56dd48 | 444 | |
b6c73a6d RH |
445 | static inline intptr_t QEMU_ARTIFICIAL GET_TCGV_I32(TCGv_i32 t) |
446 | { | |
447 | return (intptr_t)t; | |
448 | } | |
ac56dd48 | 449 | |
b6c73a6d RH |
450 | static inline intptr_t QEMU_ARTIFICIAL GET_TCGV_I64(TCGv_i64 t) |
451 | { | |
452 | return (intptr_t)t; | |
453 | } | |
454 | ||
455 | static inline intptr_t QEMU_ARTIFICIAL GET_TCGV_PTR(TCGv_ptr t) | |
456 | { | |
457 | return (intptr_t)t; | |
458 | } | |
44e6acb0 | 459 | |
ac56dd48 | 460 | #if TCG_TARGET_REG_BITS == 32 |
b6c73a6d RH |
461 | #define TCGV_LOW(t) MAKE_TCGV_I32(GET_TCGV_I64(t)) |
462 | #define TCGV_HIGH(t) MAKE_TCGV_I32(GET_TCGV_I64(t) + 1) | |
ac56dd48 PB |
463 | #endif |
464 | ||
43e860ef AJ |
465 | #define TCGV_EQUAL_I32(a, b) (GET_TCGV_I32(a) == GET_TCGV_I32(b)) |
466 | #define TCGV_EQUAL_I64(a, b) (GET_TCGV_I64(a) == GET_TCGV_I64(b)) | |
c1de788a | 467 | #define TCGV_EQUAL_PTR(a, b) (GET_TCGV_PTR(a) == GET_TCGV_PTR(b)) |
43e860ef | 468 | |
a50f5b91 | 469 | /* Dummy definition to avoid compiler warnings. */ |
a7812ae4 PB |
470 | #define TCGV_UNUSED_I32(x) x = MAKE_TCGV_I32(-1) |
471 | #define TCGV_UNUSED_I64(x) x = MAKE_TCGV_I64(-1) | |
c1de788a | 472 | #define TCGV_UNUSED_PTR(x) x = MAKE_TCGV_PTR(-1) |
a50f5b91 | 473 | |
afcb92be RH |
474 | #define TCGV_IS_UNUSED_I32(x) (GET_TCGV_I32(x) == -1) |
475 | #define TCGV_IS_UNUSED_I64(x) (GET_TCGV_I64(x) == -1) | |
c1de788a | 476 | #define TCGV_IS_UNUSED_PTR(x) (GET_TCGV_PTR(x) == -1) |
afcb92be | 477 | |
c896fe29 | 478 | /* call flags */ |
78505279 AJ |
479 | /* Helper does not read globals (either directly or through an exception). It |
480 | implies TCG_CALL_NO_WRITE_GLOBALS. */ | |
481 | #define TCG_CALL_NO_READ_GLOBALS 0x0010 | |
482 | /* Helper does not write globals */ | |
483 | #define TCG_CALL_NO_WRITE_GLOBALS 0x0020 | |
484 | /* Helper can be safely suppressed if the return value is not used. */ | |
485 | #define TCG_CALL_NO_SIDE_EFFECTS 0x0040 | |
486 | ||
487 | /* convenience version of most used call flags */ | |
488 | #define TCG_CALL_NO_RWG TCG_CALL_NO_READ_GLOBALS | |
489 | #define TCG_CALL_NO_WG TCG_CALL_NO_WRITE_GLOBALS | |
490 | #define TCG_CALL_NO_SE TCG_CALL_NO_SIDE_EFFECTS | |
491 | #define TCG_CALL_NO_RWG_SE (TCG_CALL_NO_RWG | TCG_CALL_NO_SE) | |
492 | #define TCG_CALL_NO_WG_SE (TCG_CALL_NO_WG | TCG_CALL_NO_SE) | |
493 | ||
39cf05d3 | 494 | /* used to align parameters */ |
a7812ae4 | 495 | #define TCG_CALL_DUMMY_TCGV MAKE_TCGV_I32(-1) |
39cf05d3 FB |
496 | #define TCG_CALL_DUMMY_ARG ((TCGArg)(-1)) |
497 | ||
f65e19bc PK |
498 | typedef enum { |
499 | /* Used to indicate the type of accesses on which ordering | |
500 | is to be ensured. Modeled after SPARC barriers. */ | |
501 | TCG_MO_LD_LD = 0x01, | |
502 | TCG_MO_ST_LD = 0x02, | |
503 | TCG_MO_LD_ST = 0x04, | |
504 | TCG_MO_ST_ST = 0x08, | |
505 | TCG_MO_ALL = 0x0F, /* OR of the above */ | |
506 | ||
507 | /* Used to indicate the kind of ordering which is to be ensured by the | |
508 | instruction. These types are derived from x86/aarch64 instructions. | |
509 | It should be noted that these are different from C11 semantics. */ | |
510 | TCG_BAR_LDAQ = 0x10, /* Following ops will not come forward */ | |
511 | TCG_BAR_STRL = 0x20, /* Previous ops will not be delayed */ | |
512 | TCG_BAR_SC = 0x30, /* No ops cross barrier; OR of the above */ | |
513 | } TCGBar; | |
514 | ||
a93cf9df SW |
515 | /* Conditions. Note that these are laid out for easy manipulation by |
516 | the functions below: | |
0aed257f RH |
517 | bit 0 is used for inverting; |
518 | bit 1 is signed, | |
519 | bit 2 is unsigned, | |
520 | bit 3 is used with bit 0 for swapping signed/unsigned. */ | |
c896fe29 | 521 | typedef enum { |
0aed257f RH |
522 | /* non-signed */ |
523 | TCG_COND_NEVER = 0 | 0 | 0 | 0, | |
524 | TCG_COND_ALWAYS = 0 | 0 | 0 | 1, | |
525 | TCG_COND_EQ = 8 | 0 | 0 | 0, | |
526 | TCG_COND_NE = 8 | 0 | 0 | 1, | |
527 | /* signed */ | |
528 | TCG_COND_LT = 0 | 0 | 2 | 0, | |
529 | TCG_COND_GE = 0 | 0 | 2 | 1, | |
530 | TCG_COND_LE = 8 | 0 | 2 | 0, | |
531 | TCG_COND_GT = 8 | 0 | 2 | 1, | |
c896fe29 | 532 | /* unsigned */ |
0aed257f RH |
533 | TCG_COND_LTU = 0 | 4 | 0 | 0, |
534 | TCG_COND_GEU = 0 | 4 | 0 | 1, | |
535 | TCG_COND_LEU = 8 | 4 | 0 | 0, | |
536 | TCG_COND_GTU = 8 | 4 | 0 | 1, | |
c896fe29 FB |
537 | } TCGCond; |
538 | ||
1c086220 | 539 | /* Invert the sense of the comparison. */ |
401d466d RH |
540 | static inline TCGCond tcg_invert_cond(TCGCond c) |
541 | { | |
542 | return (TCGCond)(c ^ 1); | |
543 | } | |
544 | ||
1c086220 RH |
545 | /* Swap the operands in a comparison. */ |
546 | static inline TCGCond tcg_swap_cond(TCGCond c) | |
547 | { | |
0aed257f | 548 | return c & 6 ? (TCGCond)(c ^ 9) : c; |
1c086220 RH |
549 | } |
550 | ||
d1e321b8 | 551 | /* Create an "unsigned" version of a "signed" comparison. */ |
ff44c2f3 RH |
552 | static inline TCGCond tcg_unsigned_cond(TCGCond c) |
553 | { | |
0aed257f | 554 | return c & 2 ? (TCGCond)(c ^ 6) : c; |
ff44c2f3 RH |
555 | } |
556 | ||
d1e321b8 | 557 | /* Must a comparison be considered unsigned? */ |
bcc66562 RH |
558 | static inline bool is_unsigned_cond(TCGCond c) |
559 | { | |
0aed257f | 560 | return (c & 4) != 0; |
bcc66562 RH |
561 | } |
562 | ||
d1e321b8 RH |
563 | /* Create a "high" version of a double-word comparison. |
564 | This removes equality from a LTE or GTE comparison. */ | |
565 | static inline TCGCond tcg_high_cond(TCGCond c) | |
566 | { | |
567 | switch (c) { | |
568 | case TCG_COND_GE: | |
569 | case TCG_COND_LE: | |
570 | case TCG_COND_GEU: | |
571 | case TCG_COND_LEU: | |
572 | return (TCGCond)(c ^ 8); | |
573 | default: | |
574 | return c; | |
575 | } | |
576 | } | |
577 | ||
00c8fa9f EC |
578 | typedef enum TCGTempVal { |
579 | TEMP_VAL_DEAD, | |
580 | TEMP_VAL_REG, | |
581 | TEMP_VAL_MEM, | |
582 | TEMP_VAL_CONST, | |
583 | } TCGTempVal; | |
c896fe29 | 584 | |
c896fe29 | 585 | typedef struct TCGTemp { |
b6638662 | 586 | TCGReg reg:8; |
00c8fa9f EC |
587 | TCGTempVal val_type:8; |
588 | TCGType base_type:8; | |
589 | TCGType type:8; | |
c896fe29 | 590 | unsigned int fixed_reg:1; |
b3915dbb RH |
591 | unsigned int indirect_reg:1; |
592 | unsigned int indirect_base:1; | |
c896fe29 FB |
593 | unsigned int mem_coherent:1; |
594 | unsigned int mem_allocated:1; | |
5225d669 | 595 | unsigned int temp_local:1; /* If true, the temp is saved across |
641d5fbe | 596 | basic blocks. Otherwise, it is not |
5225d669 | 597 | preserved across basic blocks. */ |
e8996ee0 | 598 | unsigned int temp_allocated:1; /* never used for code gen */ |
00c8fa9f EC |
599 | |
600 | tcg_target_long val; | |
b3a62939 | 601 | struct TCGTemp *mem_base; |
00c8fa9f | 602 | intptr_t mem_offset; |
c896fe29 FB |
603 | const char *name; |
604 | } TCGTemp; | |
605 | ||
c896fe29 FB |
606 | typedef struct TCGContext TCGContext; |
607 | ||
0ec9eabc RH |
608 | typedef struct TCGTempSet { |
609 | unsigned long l[BITS_TO_LONGS(TCG_MAX_TEMPS)]; | |
610 | } TCGTempSet; | |
611 | ||
a1b3c48d RH |
612 | /* While we limit helpers to 6 arguments, for 32-bit hosts, with padding, |
613 | this imples a max of 6*2 (64-bit in) + 2 (64-bit out) = 14 operands. | |
614 | There are never more than 2 outputs, which means that we can store all | |
615 | dead + sync data within 16 bits. */ | |
616 | #define DEAD_ARG 4 | |
617 | #define SYNC_ARG 1 | |
618 | typedef uint16_t TCGLifeData; | |
619 | ||
bee158cb RH |
620 | /* The layout here is designed to avoid crossing of a 32-bit boundary. |
621 | If we do so, gcc adds padding, expanding the size to 12. */ | |
c45cb8bb | 622 | typedef struct TCGOp { |
bee158cb RH |
623 | TCGOpcode opc : 8; /* 8 */ |
624 | ||
625 | /* Index of the prev/next op, or 0 for the end of the list. */ | |
626 | unsigned prev : 10; /* 18 */ | |
627 | unsigned next : 10; /* 28 */ | |
c45cb8bb RH |
628 | |
629 | /* The number of out and in parameter for a call. */ | |
bee158cb RH |
630 | unsigned calli : 4; /* 32 */ |
631 | unsigned callo : 2; /* 34 */ | |
c45cb8bb | 632 | |
dcb8e758 | 633 | /* Index of the arguments for this op, or 0 for zero-operand ops. */ |
bee158cb | 634 | unsigned args : 14; /* 48 */ |
c45cb8bb | 635 | |
bee158cb RH |
636 | /* Lifetime data of the operands. */ |
637 | unsigned life : 16; /* 64 */ | |
c45cb8bb RH |
638 | } TCGOp; |
639 | ||
dcb8e758 RH |
640 | /* Make sure operands fit in the bitfields above. */ |
641 | QEMU_BUILD_BUG_ON(NB_OPS > (1 << 8)); | |
bee158cb RH |
642 | QEMU_BUILD_BUG_ON(OPC_BUF_SIZE > (1 << 10)); |
643 | QEMU_BUILD_BUG_ON(OPPARAM_BUF_SIZE > (1 << 14)); | |
dcb8e758 RH |
644 | |
645 | /* Make sure that we don't overflow 64 bits without noticing. */ | |
646 | QEMU_BUILD_BUG_ON(sizeof(TCGOp) > 8); | |
c45cb8bb | 647 | |
c896fe29 FB |
648 | struct TCGContext { |
649 | uint8_t *pool_cur, *pool_end; | |
4055299e | 650 | TCGPool *pool_first, *pool_current, *pool_first_large; |
c896fe29 | 651 | int nb_labels; |
c896fe29 FB |
652 | int nb_globals; |
653 | int nb_temps; | |
5a18407f | 654 | int nb_indirects; |
c896fe29 FB |
655 | |
656 | /* goto_tb support */ | |
1813e175 | 657 | tcg_insn_unit *code_buf; |
f309101c SF |
658 | uint16_t *tb_jmp_reset_offset; /* tb->jmp_reset_offset */ |
659 | uint16_t *tb_jmp_insn_offset; /* tb->jmp_insn_offset if USE_DIRECT_JUMP */ | |
660 | uintptr_t *tb_jmp_target_addr; /* tb->jmp_target_addr if !USE_DIRECT_JUMP */ | |
c896fe29 | 661 | |
c896fe29 | 662 | TCGRegSet reserved_regs; |
e2c6d1b4 RH |
663 | intptr_t current_frame_offset; |
664 | intptr_t frame_start; | |
665 | intptr_t frame_end; | |
b3a62939 | 666 | TCGTemp *frame_temp; |
c896fe29 | 667 | |
1813e175 | 668 | tcg_insn_unit *code_ptr; |
c896fe29 | 669 | |
6e085f72 | 670 | GHashTable *helpers; |
a23a9ec6 FB |
671 | |
672 | #ifdef CONFIG_PROFILER | |
673 | /* profiling info */ | |
674 | int64_t tb_count1; | |
675 | int64_t tb_count; | |
676 | int64_t op_count; /* total insn count */ | |
677 | int op_count_max; /* max insn per TB */ | |
678 | int64_t temp_count; | |
679 | int temp_count_max; | |
a23a9ec6 FB |
680 | int64_t del_op_count; |
681 | int64_t code_in_len; | |
682 | int64_t code_out_len; | |
fca8a500 | 683 | int64_t search_out_len; |
a23a9ec6 FB |
684 | int64_t interm_time; |
685 | int64_t code_time; | |
686 | int64_t la_time; | |
c5cc28ff | 687 | int64_t opt_time; |
a23a9ec6 FB |
688 | int64_t restore_count; |
689 | int64_t restore_time; | |
690 | #endif | |
27bfd83c PM |
691 | |
692 | #ifdef CONFIG_DEBUG_TCG | |
693 | int temps_in_use; | |
0a209d4b | 694 | int goto_tb_issue_mask; |
27bfd83c | 695 | #endif |
b76f0d8c | 696 | |
c45cb8bb RH |
697 | int gen_next_op_idx; |
698 | int gen_next_parm_idx; | |
8232a46a | 699 | |
1813e175 RH |
700 | /* Code generation. Note that we specifically do not use tcg_insn_unit |
701 | here, because there's too much arithmetic throughout that relies | |
702 | on addition and subtraction working on bytes. Rely on the GCC | |
703 | extension that allows arithmetic on void*. */ | |
0b0d3320 | 704 | int code_gen_max_blocks; |
1813e175 RH |
705 | void *code_gen_prologue; |
706 | void *code_gen_buffer; | |
0b0d3320 | 707 | size_t code_gen_buffer_size; |
1813e175 | 708 | void *code_gen_ptr; |
0b0d3320 | 709 | |
b125f9dc RH |
710 | /* Threshold to flush the translated code buffer. */ |
711 | void *code_gen_highwater; | |
712 | ||
5e5f07e0 EV |
713 | TBContext tb_ctx; |
714 | ||
7c255043 LV |
715 | /* Track which vCPU triggers events */ |
716 | CPUState *cpu; /* *_trans */ | |
717 | TCGv_env tcg_env; /* *_exec */ | |
718 | ||
ce151109 | 719 | /* The TCGBackendData structure is private to tcg-target.inc.c. */ |
9ecefc84 | 720 | struct TCGBackendData *be; |
c45cb8bb RH |
721 | |
722 | TCGTempSet free_temps[TCG_TYPE_COUNT * 2]; | |
723 | TCGTemp temps[TCG_MAX_TEMPS]; /* globals first, temps after */ | |
724 | ||
f8b2f202 RH |
725 | /* Tells which temporary holds a given register. |
726 | It does not take into account fixed registers */ | |
727 | TCGTemp *reg_to_temp[TCG_TARGET_NB_REGS]; | |
c45cb8bb RH |
728 | |
729 | TCGOp gen_op_buf[OPC_BUF_SIZE]; | |
730 | TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE]; | |
731 | ||
fca8a500 RH |
732 | uint16_t gen_insn_end_off[TCG_MAX_INSNS]; |
733 | target_ulong gen_insn_data[TCG_MAX_INSNS][TARGET_INSN_START_WORDS]; | |
c896fe29 FB |
734 | }; |
735 | ||
736 | extern TCGContext tcg_ctx; | |
fdbc2b57 | 737 | extern bool parallel_cpus; |
c896fe29 | 738 | |
1d41478f EI |
739 | static inline void tcg_set_insn_param(int op_idx, int arg, TCGArg v) |
740 | { | |
741 | int op_argi = tcg_ctx.gen_op_buf[op_idx].args; | |
742 | tcg_ctx.gen_opparam_buf[op_argi + arg] = v; | |
743 | } | |
744 | ||
fe700adb RH |
745 | /* The number of opcodes emitted so far. */ |
746 | static inline int tcg_op_buf_count(void) | |
747 | { | |
c45cb8bb | 748 | return tcg_ctx.gen_next_op_idx; |
fe700adb RH |
749 | } |
750 | ||
751 | /* Test for whether to terminate the TB for using too many opcodes. */ | |
752 | static inline bool tcg_op_buf_full(void) | |
753 | { | |
754 | return tcg_op_buf_count() >= OPC_MAX_SIZE; | |
755 | } | |
756 | ||
c896fe29 FB |
757 | /* pool based memory allocation */ |
758 | ||
7d7500d9 | 759 | /* tb_lock must be held for tcg_malloc_internal. */ |
c896fe29 FB |
760 | void *tcg_malloc_internal(TCGContext *s, int size); |
761 | void tcg_pool_reset(TCGContext *s); | |
c896fe29 | 762 | |
677ef623 FK |
763 | void tb_lock(void); |
764 | void tb_unlock(void); | |
765 | void tb_lock_reset(void); | |
766 | ||
7d7500d9 | 767 | /* Called with tb_lock held. */ |
c896fe29 FB |
768 | static inline void *tcg_malloc(int size) |
769 | { | |
770 | TCGContext *s = &tcg_ctx; | |
771 | uint8_t *ptr, *ptr_end; | |
772 | size = (size + sizeof(long) - 1) & ~(sizeof(long) - 1); | |
773 | ptr = s->pool_cur; | |
774 | ptr_end = ptr + size; | |
775 | if (unlikely(ptr_end > s->pool_end)) { | |
776 | return tcg_malloc_internal(&tcg_ctx, size); | |
777 | } else { | |
778 | s->pool_cur = ptr_end; | |
779 | return ptr; | |
780 | } | |
781 | } | |
782 | ||
783 | void tcg_context_init(TCGContext *s); | |
9002ec79 | 784 | void tcg_prologue_init(TCGContext *s); |
c896fe29 FB |
785 | void tcg_func_start(TCGContext *s); |
786 | ||
5bd2ec3d | 787 | int tcg_gen_code(TCGContext *s, TranslationBlock *tb); |
c896fe29 | 788 | |
b6638662 | 789 | void tcg_set_frame(TCGContext *s, TCGReg reg, intptr_t start, intptr_t size); |
a7812ae4 | 790 | |
e1ccc054 RH |
791 | int tcg_global_mem_new_internal(TCGType, TCGv_ptr, intptr_t, const char *); |
792 | ||
b6638662 RH |
793 | TCGv_i32 tcg_global_reg_new_i32(TCGReg reg, const char *name); |
794 | TCGv_i64 tcg_global_reg_new_i64(TCGReg reg, const char *name); | |
e1ccc054 | 795 | |
a7812ae4 | 796 | TCGv_i32 tcg_temp_new_internal_i32(int temp_local); |
e1ccc054 RH |
797 | TCGv_i64 tcg_temp_new_internal_i64(int temp_local); |
798 | ||
799 | void tcg_temp_free_i32(TCGv_i32 arg); | |
800 | void tcg_temp_free_i64(TCGv_i64 arg); | |
801 | ||
e1ccc054 RH |
802 | static inline TCGv_i32 tcg_global_mem_new_i32(TCGv_ptr reg, intptr_t offset, |
803 | const char *name) | |
804 | { | |
805 | int idx = tcg_global_mem_new_internal(TCG_TYPE_I32, reg, offset, name); | |
806 | return MAKE_TCGV_I32(idx); | |
807 | } | |
808 | ||
a7812ae4 PB |
809 | static inline TCGv_i32 tcg_temp_new_i32(void) |
810 | { | |
811 | return tcg_temp_new_internal_i32(0); | |
812 | } | |
e1ccc054 | 813 | |
a7812ae4 PB |
814 | static inline TCGv_i32 tcg_temp_local_new_i32(void) |
815 | { | |
816 | return tcg_temp_new_internal_i32(1); | |
817 | } | |
a7812ae4 | 818 | |
e1ccc054 RH |
819 | static inline TCGv_i64 tcg_global_mem_new_i64(TCGv_ptr reg, intptr_t offset, |
820 | const char *name) | |
821 | { | |
822 | int idx = tcg_global_mem_new_internal(TCG_TYPE_I64, reg, offset, name); | |
823 | return MAKE_TCGV_I64(idx); | |
824 | } | |
825 | ||
a7812ae4 | 826 | static inline TCGv_i64 tcg_temp_new_i64(void) |
641d5fbe | 827 | { |
a7812ae4 | 828 | return tcg_temp_new_internal_i64(0); |
641d5fbe | 829 | } |
e1ccc054 | 830 | |
a7812ae4 | 831 | static inline TCGv_i64 tcg_temp_local_new_i64(void) |
641d5fbe | 832 | { |
a7812ae4 | 833 | return tcg_temp_new_internal_i64(1); |
641d5fbe | 834 | } |
a7812ae4 | 835 | |
27bfd83c PM |
836 | #if defined(CONFIG_DEBUG_TCG) |
837 | /* If you call tcg_clear_temp_count() at the start of a section of | |
838 | * code which is not supposed to leak any TCG temporaries, then | |
839 | * calling tcg_check_temp_count() at the end of the section will | |
840 | * return 1 if the section did in fact leak a temporary. | |
841 | */ | |
842 | void tcg_clear_temp_count(void); | |
843 | int tcg_check_temp_count(void); | |
844 | #else | |
845 | #define tcg_clear_temp_count() do { } while (0) | |
846 | #define tcg_check_temp_count() 0 | |
847 | #endif | |
848 | ||
405cf9ff | 849 | void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf); |
246ae24d | 850 | void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf); |
c896fe29 FB |
851 | |
852 | #define TCG_CT_ALIAS 0x80 | |
853 | #define TCG_CT_IALIAS 0x40 | |
82790a87 | 854 | #define TCG_CT_NEWREG 0x20 /* output requires a new register */ |
c896fe29 FB |
855 | #define TCG_CT_REG 0x01 |
856 | #define TCG_CT_CONST 0x02 /* any constant of register size */ | |
857 | ||
858 | typedef struct TCGArgConstraint { | |
5ff9d6a4 FB |
859 | uint16_t ct; |
860 | uint8_t alias_index; | |
c896fe29 FB |
861 | union { |
862 | TCGRegSet regs; | |
863 | } u; | |
864 | } TCGArgConstraint; | |
865 | ||
866 | #define TCG_MAX_OP_ARGS 16 | |
867 | ||
8399ad59 RH |
868 | /* Bits for TCGOpDef->flags, 8 bits available. */ |
869 | enum { | |
870 | /* Instruction defines the end of a basic block. */ | |
871 | TCG_OPF_BB_END = 0x01, | |
872 | /* Instruction clobbers call registers and potentially update globals. */ | |
873 | TCG_OPF_CALL_CLOBBER = 0x02, | |
3d5c5f87 AJ |
874 | /* Instruction has side effects: it cannot be removed if its outputs |
875 | are not used, and might trigger exceptions. */ | |
8399ad59 RH |
876 | TCG_OPF_SIDE_EFFECTS = 0x04, |
877 | /* Instruction operands are 64-bits (otherwise 32-bits). */ | |
878 | TCG_OPF_64BIT = 0x08, | |
c1a61f6c RH |
879 | /* Instruction is optional and not implemented by the host, or insn |
880 | is generic and should not be implemened by the host. */ | |
25c4d9cc | 881 | TCG_OPF_NOT_PRESENT = 0x10, |
8399ad59 | 882 | }; |
c896fe29 FB |
883 | |
884 | typedef struct TCGOpDef { | |
885 | const char *name; | |
886 | uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args; | |
887 | uint8_t flags; | |
c896fe29 FB |
888 | TCGArgConstraint *args_ct; |
889 | int *sorted_args; | |
c68aaa18 SW |
890 | #if defined(CONFIG_DEBUG_TCG) |
891 | int used; | |
892 | #endif | |
c896fe29 | 893 | } TCGOpDef; |
8399ad59 RH |
894 | |
895 | extern TCGOpDef tcg_op_defs[]; | |
2a24374a SW |
896 | extern const size_t tcg_op_defs_max; |
897 | ||
c896fe29 | 898 | typedef struct TCGTargetOpDef { |
a9751609 | 899 | TCGOpcode op; |
c896fe29 FB |
900 | const char *args_ct_str[TCG_MAX_OP_ARGS]; |
901 | } TCGTargetOpDef; | |
902 | ||
c896fe29 FB |
903 | #define tcg_abort() \ |
904 | do {\ | |
905 | fprintf(stderr, "%s:%d: tcg fatal error\n", __FILE__, __LINE__);\ | |
906 | abort();\ | |
907 | } while (0) | |
908 | ||
8b73d49f | 909 | #if UINTPTR_MAX == UINT32_MAX |
ebecf363 PM |
910 | #define TCGV_NAT_TO_PTR(n) MAKE_TCGV_PTR(GET_TCGV_I32(n)) |
911 | #define TCGV_PTR_TO_NAT(n) MAKE_TCGV_I32(GET_TCGV_PTR(n)) | |
912 | ||
8b73d49f | 913 | #define tcg_const_ptr(V) TCGV_NAT_TO_PTR(tcg_const_i32((intptr_t)(V))) |
ebecf363 PM |
914 | #define tcg_global_reg_new_ptr(R, N) \ |
915 | TCGV_NAT_TO_PTR(tcg_global_reg_new_i32((R), (N))) | |
916 | #define tcg_global_mem_new_ptr(R, O, N) \ | |
917 | TCGV_NAT_TO_PTR(tcg_global_mem_new_i32((R), (O), (N))) | |
918 | #define tcg_temp_new_ptr() TCGV_NAT_TO_PTR(tcg_temp_new_i32()) | |
919 | #define tcg_temp_free_ptr(T) tcg_temp_free_i32(TCGV_PTR_TO_NAT(T)) | |
c896fe29 | 920 | #else |
ebecf363 PM |
921 | #define TCGV_NAT_TO_PTR(n) MAKE_TCGV_PTR(GET_TCGV_I64(n)) |
922 | #define TCGV_PTR_TO_NAT(n) MAKE_TCGV_I64(GET_TCGV_PTR(n)) | |
923 | ||
8b73d49f | 924 | #define tcg_const_ptr(V) TCGV_NAT_TO_PTR(tcg_const_i64((intptr_t)(V))) |
ebecf363 PM |
925 | #define tcg_global_reg_new_ptr(R, N) \ |
926 | TCGV_NAT_TO_PTR(tcg_global_reg_new_i64((R), (N))) | |
927 | #define tcg_global_mem_new_ptr(R, O, N) \ | |
928 | TCGV_NAT_TO_PTR(tcg_global_mem_new_i64((R), (O), (N))) | |
929 | #define tcg_temp_new_ptr() TCGV_NAT_TO_PTR(tcg_temp_new_i64()) | |
930 | #define tcg_temp_free_ptr(T) tcg_temp_free_i64(TCGV_PTR_TO_NAT(T)) | |
c896fe29 FB |
931 | #endif |
932 | ||
bbb8a1b4 RH |
933 | void tcg_gen_callN(TCGContext *s, void *func, |
934 | TCGArg ret, int nargs, TCGArg *args); | |
a7812ae4 | 935 | |
0c627cdc | 936 | void tcg_op_remove(TCGContext *s, TCGOp *op); |
5a18407f RH |
937 | TCGOp *tcg_op_insert_before(TCGContext *s, TCGOp *op, TCGOpcode opc, int narg); |
938 | TCGOp *tcg_op_insert_after(TCGContext *s, TCGOp *op, TCGOpcode opc, int narg); | |
939 | ||
c45cb8bb | 940 | void tcg_optimize(TCGContext *s); |
8f2e8c07 | 941 | |
a7812ae4 | 942 | /* only used for debugging purposes */ |
eeacee4d | 943 | void tcg_dump_ops(TCGContext *s); |
a7812ae4 | 944 | |
a7812ae4 PB |
945 | TCGv_i32 tcg_const_i32(int32_t val); |
946 | TCGv_i64 tcg_const_i64(int64_t val); | |
947 | TCGv_i32 tcg_const_local_i32(int32_t val); | |
948 | TCGv_i64 tcg_const_local_i64(int64_t val); | |
949 | ||
42a268c2 RH |
950 | TCGLabel *gen_new_label(void); |
951 | ||
952 | /** | |
953 | * label_arg | |
954 | * @l: label | |
955 | * | |
956 | * Encode a label for storage in the TCG opcode stream. | |
957 | */ | |
958 | ||
959 | static inline TCGArg label_arg(TCGLabel *l) | |
960 | { | |
51e3972c | 961 | return (uintptr_t)l; |
42a268c2 RH |
962 | } |
963 | ||
964 | /** | |
965 | * arg_label | |
966 | * @i: value | |
967 | * | |
968 | * The opposite of label_arg. Retrieve a label from the | |
969 | * encoding of the TCG opcode stream. | |
970 | */ | |
971 | ||
51e3972c | 972 | static inline TCGLabel *arg_label(TCGArg i) |
42a268c2 | 973 | { |
51e3972c | 974 | return (TCGLabel *)(uintptr_t)i; |
42a268c2 RH |
975 | } |
976 | ||
52a1f64e RH |
977 | /** |
978 | * tcg_ptr_byte_diff | |
979 | * @a, @b: addresses to be differenced | |
980 | * | |
981 | * There are many places within the TCG backends where we need a byte | |
982 | * difference between two pointers. While this can be accomplished | |
983 | * with local casting, it's easy to get wrong -- especially if one is | |
984 | * concerned with the signedness of the result. | |
985 | * | |
986 | * This version relies on GCC's void pointer arithmetic to get the | |
987 | * correct result. | |
988 | */ | |
989 | ||
990 | static inline ptrdiff_t tcg_ptr_byte_diff(void *a, void *b) | |
991 | { | |
992 | return a - b; | |
993 | } | |
994 | ||
995 | /** | |
996 | * tcg_pcrel_diff | |
997 | * @s: the tcg context | |
998 | * @target: address of the target | |
999 | * | |
1000 | * Produce a pc-relative difference, from the current code_ptr | |
1001 | * to the destination address. | |
1002 | */ | |
1003 | ||
1004 | static inline ptrdiff_t tcg_pcrel_diff(TCGContext *s, void *target) | |
1005 | { | |
1006 | return tcg_ptr_byte_diff(target, s->code_ptr); | |
1007 | } | |
1008 | ||
1009 | /** | |
1010 | * tcg_current_code_size | |
1011 | * @s: the tcg context | |
1012 | * | |
1013 | * Compute the current code size within the translation block. | |
1014 | * This is used to fill in qemu's data structures for goto_tb. | |
1015 | */ | |
1016 | ||
1017 | static inline size_t tcg_current_code_size(TCGContext *s) | |
1018 | { | |
1019 | return tcg_ptr_byte_diff(s->code_ptr, s->code_buf); | |
1020 | } | |
1021 | ||
59227d5d RH |
1022 | /* Combine the TCGMemOp and mmu_idx parameters into a single value. */ |
1023 | typedef uint32_t TCGMemOpIdx; | |
1024 | ||
1025 | /** | |
1026 | * make_memop_idx | |
1027 | * @op: memory operation | |
1028 | * @idx: mmu index | |
1029 | * | |
1030 | * Encode these values into a single parameter. | |
1031 | */ | |
1032 | static inline TCGMemOpIdx make_memop_idx(TCGMemOp op, unsigned idx) | |
1033 | { | |
1034 | tcg_debug_assert(idx <= 15); | |
1035 | return (op << 4) | idx; | |
1036 | } | |
1037 | ||
1038 | /** | |
1039 | * get_memop | |
1040 | * @oi: combined op/idx parameter | |
1041 | * | |
1042 | * Extract the memory operation from the combined value. | |
1043 | */ | |
1044 | static inline TCGMemOp get_memop(TCGMemOpIdx oi) | |
1045 | { | |
1046 | return oi >> 4; | |
1047 | } | |
1048 | ||
1049 | /** | |
1050 | * get_mmuidx | |
1051 | * @oi: combined op/idx parameter | |
1052 | * | |
1053 | * Extract the mmu index from the combined value. | |
1054 | */ | |
1055 | static inline unsigned get_mmuidx(TCGMemOpIdx oi) | |
1056 | { | |
1057 | return oi & 15; | |
1058 | } | |
1059 | ||
0980011b PM |
1060 | /** |
1061 | * tcg_qemu_tb_exec: | |
819af24b | 1062 | * @env: pointer to CPUArchState for the CPU |
0980011b PM |
1063 | * @tb_ptr: address of generated code for the TB to execute |
1064 | * | |
1065 | * Start executing code from a given translation block. | |
1066 | * Where translation blocks have been linked, execution | |
1067 | * may proceed from the given TB into successive ones. | |
1068 | * Control eventually returns only when some action is needed | |
1069 | * from the top-level loop: either control must pass to a TB | |
1070 | * which has not yet been directly linked, or an asynchronous | |
1071 | * event such as an interrupt needs handling. | |
1072 | * | |
819af24b SF |
1073 | * Return: The return value is the value passed to the corresponding |
1074 | * tcg_gen_exit_tb() at translation time of the last TB attempted to execute. | |
1075 | * The value is either zero or a 4-byte aligned pointer to that TB combined | |
1076 | * with additional information in its two least significant bits. The | |
1077 | * additional information is encoded as follows: | |
0980011b PM |
1078 | * 0, 1: the link between this TB and the next is via the specified |
1079 | * TB index (0 or 1). That is, we left the TB via (the equivalent | |
1080 | * of) "goto_tb <index>". The main loop uses this to determine | |
1081 | * how to link the TB just executed to the next. | |
1082 | * 2: we are using instruction counting code generation, and we | |
1083 | * did not start executing this TB because the instruction counter | |
819af24b | 1084 | * would hit zero midway through it. In this case the pointer |
0980011b PM |
1085 | * returned is the TB we were about to execute, and the caller must |
1086 | * arrange to execute the remaining count of instructions. | |
378df4b2 PM |
1087 | * 3: we stopped because the CPU's exit_request flag was set |
1088 | * (usually meaning that there is an interrupt that needs to be | |
819af24b SF |
1089 | * handled). The pointer returned is the TB we were about to execute |
1090 | * when we noticed the pending exit request. | |
0980011b PM |
1091 | * |
1092 | * If the bottom two bits indicate an exit-via-index then the CPU | |
1093 | * state is correctly synchronised and ready for execution of the next | |
1094 | * TB (and in particular the guest PC is the address to execute next). | |
1095 | * Otherwise, we gave up on execution of this TB before it started, and | |
fee068e4 | 1096 | * the caller must fix up the CPU state by calling the CPU's |
819af24b | 1097 | * synchronize_from_tb() method with the TB pointer we return (falling |
fee068e4 PC |
1098 | * back to calling the CPU's set_pc method with tb->pb if no |
1099 | * synchronize_from_tb() method exists). | |
0980011b PM |
1100 | * |
1101 | * Note that TCG targets may use a different definition of tcg_qemu_tb_exec | |
1102 | * to this default (which just calls the prologue.code emitted by | |
1103 | * tcg_target_qemu_prologue()). | |
1104 | */ | |
1105 | #define TB_EXIT_MASK 3 | |
1106 | #define TB_EXIT_IDX0 0 | |
1107 | #define TB_EXIT_IDX1 1 | |
1108 | #define TB_EXIT_ICOUNT_EXPIRED 2 | |
378df4b2 | 1109 | #define TB_EXIT_REQUESTED 3 |
0980011b | 1110 | |
5a58e884 PB |
1111 | #ifdef HAVE_TCG_QEMU_TB_EXEC |
1112 | uintptr_t tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr); | |
1113 | #else | |
ce285b17 | 1114 | # define tcg_qemu_tb_exec(env, tb_ptr) \ |
04d5a1da | 1115 | ((uintptr_t (*)(void *, void *))tcg_ctx.code_gen_prologue)(env, tb_ptr) |
932a6909 | 1116 | #endif |
813da627 RH |
1117 | |
1118 | void tcg_register_jit(void *buf, size_t buf_size); | |
b76f0d8c | 1119 | |
e58eb534 RH |
1120 | /* |
1121 | * Memory helpers that will be used by TCG generated code. | |
1122 | */ | |
1123 | #ifdef CONFIG_SOFTMMU | |
c8f94df5 RH |
1124 | /* Value zero-extended to tcg register size. */ |
1125 | tcg_target_ulong helper_ret_ldub_mmu(CPUArchState *env, target_ulong addr, | |
3972ef6f | 1126 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1127 | tcg_target_ulong helper_le_lduw_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1128 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1129 | tcg_target_ulong helper_le_ldul_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1130 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1131 | uint64_t helper_le_ldq_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1132 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1133 | tcg_target_ulong helper_be_lduw_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1134 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1135 | tcg_target_ulong helper_be_ldul_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1136 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1137 | uint64_t helper_be_ldq_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1138 | TCGMemOpIdx oi, uintptr_t retaddr); |
e58eb534 | 1139 | |
c8f94df5 RH |
1140 | /* Value sign-extended to tcg register size. */ |
1141 | tcg_target_ulong helper_ret_ldsb_mmu(CPUArchState *env, target_ulong addr, | |
3972ef6f | 1142 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1143 | tcg_target_ulong helper_le_ldsw_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1144 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1145 | tcg_target_ulong helper_le_ldsl_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1146 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1147 | tcg_target_ulong helper_be_ldsw_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1148 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1149 | tcg_target_ulong helper_be_ldsl_mmu(CPUArchState *env, target_ulong addr, |
3972ef6f | 1150 | TCGMemOpIdx oi, uintptr_t retaddr); |
c8f94df5 | 1151 | |
e58eb534 | 1152 | void helper_ret_stb_mmu(CPUArchState *env, target_ulong addr, uint8_t val, |
3972ef6f | 1153 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1154 | void helper_le_stw_mmu(CPUArchState *env, target_ulong addr, uint16_t val, |
3972ef6f | 1155 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1156 | void helper_le_stl_mmu(CPUArchState *env, target_ulong addr, uint32_t val, |
3972ef6f | 1157 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1158 | void helper_le_stq_mmu(CPUArchState *env, target_ulong addr, uint64_t val, |
3972ef6f | 1159 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1160 | void helper_be_stw_mmu(CPUArchState *env, target_ulong addr, uint16_t val, |
3972ef6f | 1161 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1162 | void helper_be_stl_mmu(CPUArchState *env, target_ulong addr, uint32_t val, |
3972ef6f | 1163 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1164 | void helper_be_stq_mmu(CPUArchState *env, target_ulong addr, uint64_t val, |
3972ef6f | 1165 | TCGMemOpIdx oi, uintptr_t retaddr); |
867b3201 | 1166 | |
282dffc8 PD |
1167 | uint8_t helper_ret_ldb_cmmu(CPUArchState *env, target_ulong addr, |
1168 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1169 | uint16_t helper_le_ldw_cmmu(CPUArchState *env, target_ulong addr, | |
1170 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1171 | uint32_t helper_le_ldl_cmmu(CPUArchState *env, target_ulong addr, | |
1172 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1173 | uint64_t helper_le_ldq_cmmu(CPUArchState *env, target_ulong addr, | |
1174 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1175 | uint16_t helper_be_ldw_cmmu(CPUArchState *env, target_ulong addr, | |
1176 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1177 | uint32_t helper_be_ldl_cmmu(CPUArchState *env, target_ulong addr, | |
1178 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1179 | uint64_t helper_be_ldq_cmmu(CPUArchState *env, target_ulong addr, | |
1180 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1181 | ||
867b3201 RH |
1182 | /* Temporary aliases until backends are converted. */ |
1183 | #ifdef TARGET_WORDS_BIGENDIAN | |
1184 | # define helper_ret_ldsw_mmu helper_be_ldsw_mmu | |
1185 | # define helper_ret_lduw_mmu helper_be_lduw_mmu | |
1186 | # define helper_ret_ldsl_mmu helper_be_ldsl_mmu | |
1187 | # define helper_ret_ldul_mmu helper_be_ldul_mmu | |
282dffc8 | 1188 | # define helper_ret_ldl_mmu helper_be_ldul_mmu |
867b3201 RH |
1189 | # define helper_ret_ldq_mmu helper_be_ldq_mmu |
1190 | # define helper_ret_stw_mmu helper_be_stw_mmu | |
1191 | # define helper_ret_stl_mmu helper_be_stl_mmu | |
1192 | # define helper_ret_stq_mmu helper_be_stq_mmu | |
282dffc8 PD |
1193 | # define helper_ret_ldw_cmmu helper_be_ldw_cmmu |
1194 | # define helper_ret_ldl_cmmu helper_be_ldl_cmmu | |
1195 | # define helper_ret_ldq_cmmu helper_be_ldq_cmmu | |
867b3201 RH |
1196 | #else |
1197 | # define helper_ret_ldsw_mmu helper_le_ldsw_mmu | |
1198 | # define helper_ret_lduw_mmu helper_le_lduw_mmu | |
1199 | # define helper_ret_ldsl_mmu helper_le_ldsl_mmu | |
1200 | # define helper_ret_ldul_mmu helper_le_ldul_mmu | |
282dffc8 | 1201 | # define helper_ret_ldl_mmu helper_le_ldul_mmu |
867b3201 RH |
1202 | # define helper_ret_ldq_mmu helper_le_ldq_mmu |
1203 | # define helper_ret_stw_mmu helper_le_stw_mmu | |
1204 | # define helper_ret_stl_mmu helper_le_stl_mmu | |
1205 | # define helper_ret_stq_mmu helper_le_stq_mmu | |
282dffc8 PD |
1206 | # define helper_ret_ldw_cmmu helper_le_ldw_cmmu |
1207 | # define helper_ret_ldl_cmmu helper_le_ldl_cmmu | |
1208 | # define helper_ret_ldq_cmmu helper_le_ldq_cmmu | |
867b3201 | 1209 | #endif |
e58eb534 | 1210 | |
c482cb11 RH |
1211 | uint32_t helper_atomic_cmpxchgb_mmu(CPUArchState *env, target_ulong addr, |
1212 | uint32_t cmpv, uint32_t newv, | |
1213 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1214 | uint32_t helper_atomic_cmpxchgw_le_mmu(CPUArchState *env, target_ulong addr, | |
1215 | uint32_t cmpv, uint32_t newv, | |
1216 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1217 | uint32_t helper_atomic_cmpxchgl_le_mmu(CPUArchState *env, target_ulong addr, | |
1218 | uint32_t cmpv, uint32_t newv, | |
1219 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1220 | uint64_t helper_atomic_cmpxchgq_le_mmu(CPUArchState *env, target_ulong addr, | |
1221 | uint64_t cmpv, uint64_t newv, | |
1222 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1223 | uint32_t helper_atomic_cmpxchgw_be_mmu(CPUArchState *env, target_ulong addr, | |
1224 | uint32_t cmpv, uint32_t newv, | |
1225 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1226 | uint32_t helper_atomic_cmpxchgl_be_mmu(CPUArchState *env, target_ulong addr, | |
1227 | uint32_t cmpv, uint32_t newv, | |
1228 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1229 | uint64_t helper_atomic_cmpxchgq_be_mmu(CPUArchState *env, target_ulong addr, | |
1230 | uint64_t cmpv, uint64_t newv, | |
1231 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1232 | ||
1233 | #define GEN_ATOMIC_HELPER(NAME, TYPE, SUFFIX) \ | |
1234 | TYPE helper_atomic_ ## NAME ## SUFFIX ## _mmu \ | |
1235 | (CPUArchState *env, target_ulong addr, TYPE val, \ | |
1236 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1237 | ||
df79b996 | 1238 | #ifdef CONFIG_ATOMIC64 |
c482cb11 | 1239 | #define GEN_ATOMIC_HELPER_ALL(NAME) \ |
df79b996 | 1240 | GEN_ATOMIC_HELPER(NAME, uint32_t, b) \ |
c482cb11 | 1241 | GEN_ATOMIC_HELPER(NAME, uint32_t, w_le) \ |
c482cb11 | 1242 | GEN_ATOMIC_HELPER(NAME, uint32_t, w_be) \ |
df79b996 | 1243 | GEN_ATOMIC_HELPER(NAME, uint32_t, l_le) \ |
c482cb11 | 1244 | GEN_ATOMIC_HELPER(NAME, uint32_t, l_be) \ |
df79b996 | 1245 | GEN_ATOMIC_HELPER(NAME, uint64_t, q_le) \ |
c482cb11 | 1246 | GEN_ATOMIC_HELPER(NAME, uint64_t, q_be) |
df79b996 RH |
1247 | #else |
1248 | #define GEN_ATOMIC_HELPER_ALL(NAME) \ | |
1249 | GEN_ATOMIC_HELPER(NAME, uint32_t, b) \ | |
1250 | GEN_ATOMIC_HELPER(NAME, uint32_t, w_le) \ | |
1251 | GEN_ATOMIC_HELPER(NAME, uint32_t, w_be) \ | |
1252 | GEN_ATOMIC_HELPER(NAME, uint32_t, l_le) \ | |
1253 | GEN_ATOMIC_HELPER(NAME, uint32_t, l_be) | |
1254 | #endif | |
c482cb11 RH |
1255 | |
1256 | GEN_ATOMIC_HELPER_ALL(fetch_add) | |
1257 | GEN_ATOMIC_HELPER_ALL(fetch_sub) | |
1258 | GEN_ATOMIC_HELPER_ALL(fetch_and) | |
1259 | GEN_ATOMIC_HELPER_ALL(fetch_or) | |
1260 | GEN_ATOMIC_HELPER_ALL(fetch_xor) | |
1261 | ||
1262 | GEN_ATOMIC_HELPER_ALL(add_fetch) | |
1263 | GEN_ATOMIC_HELPER_ALL(sub_fetch) | |
1264 | GEN_ATOMIC_HELPER_ALL(and_fetch) | |
1265 | GEN_ATOMIC_HELPER_ALL(or_fetch) | |
1266 | GEN_ATOMIC_HELPER_ALL(xor_fetch) | |
1267 | ||
1268 | GEN_ATOMIC_HELPER_ALL(xchg) | |
1269 | ||
1270 | #undef GEN_ATOMIC_HELPER_ALL | |
1271 | #undef GEN_ATOMIC_HELPER | |
e58eb534 RH |
1272 | #endif /* CONFIG_SOFTMMU */ |
1273 | ||
7ebee43e RH |
1274 | #ifdef CONFIG_ATOMIC128 |
1275 | #include "qemu/int128.h" | |
1276 | ||
1277 | /* These aren't really a "proper" helpers because TCG cannot manage Int128. | |
1278 | However, use the same format as the others, for use by the backends. */ | |
1279 | Int128 helper_atomic_cmpxchgo_le_mmu(CPUArchState *env, target_ulong addr, | |
1280 | Int128 cmpv, Int128 newv, | |
1281 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1282 | Int128 helper_atomic_cmpxchgo_be_mmu(CPUArchState *env, target_ulong addr, | |
1283 | Int128 cmpv, Int128 newv, | |
1284 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1285 | ||
1286 | Int128 helper_atomic_ldo_le_mmu(CPUArchState *env, target_ulong addr, | |
1287 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1288 | Int128 helper_atomic_ldo_be_mmu(CPUArchState *env, target_ulong addr, | |
1289 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1290 | void helper_atomic_sto_le_mmu(CPUArchState *env, target_ulong addr, Int128 val, | |
1291 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1292 | void helper_atomic_sto_be_mmu(CPUArchState *env, target_ulong addr, Int128 val, | |
1293 | TCGMemOpIdx oi, uintptr_t retaddr); | |
1294 | ||
1295 | #endif /* CONFIG_ATOMIC128 */ | |
1296 | ||
e58eb534 | 1297 | #endif /* TCG_H */ |