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