1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include "qemu-common.h"
25
26
27#if UINTPTR_MAX == UINT32_MAX
28# define TCG_TARGET_REG_BITS 32
29#elif UINTPTR_MAX == UINT64_MAX
30# define TCG_TARGET_REG_BITS 64
31#else
32# error Unknown pointer size for tcg target
33#endif
34
35#if TCG_TARGET_REG_BITS == 32
36typedef int32_t tcg_target_long;
37typedef uint32_t tcg_target_ulong;
38#define TCG_PRIlx PRIx32
39#define TCG_PRIld PRId32
40#elif TCG_TARGET_REG_BITS == 64
41typedef int64_t tcg_target_long;
42typedef uint64_t tcg_target_ulong;
43#define TCG_PRIlx PRIx64
44#define TCG_PRIld PRId64
45#else
46#error unsupported
47#endif
48
49#include "tcg-target.h"
50#include "tcg-runtime.h"
51
52#if TCG_TARGET_NB_REGS <= 32
53typedef uint32_t TCGRegSet;
54#elif TCG_TARGET_NB_REGS <= 64
55typedef uint64_t TCGRegSet;
56#else
57#error unsupported
58#endif
59
60#if TCG_TARGET_REG_BITS == 32
61
62#define TCG_TARGET_HAS_div_i64 0
63#define TCG_TARGET_HAS_div2_i64 0
64#define TCG_TARGET_HAS_rot_i64 0
65#define TCG_TARGET_HAS_ext8s_i64 0
66#define TCG_TARGET_HAS_ext16s_i64 0
67#define TCG_TARGET_HAS_ext32s_i64 0
68#define TCG_TARGET_HAS_ext8u_i64 0
69#define TCG_TARGET_HAS_ext16u_i64 0
70#define TCG_TARGET_HAS_ext32u_i64 0
71#define TCG_TARGET_HAS_bswap16_i64 0
72#define TCG_TARGET_HAS_bswap32_i64 0
73#define TCG_TARGET_HAS_bswap64_i64 0
74#define TCG_TARGET_HAS_neg_i64 0
75#define TCG_TARGET_HAS_not_i64 0
76#define TCG_TARGET_HAS_andc_i64 0
77#define TCG_TARGET_HAS_orc_i64 0
78#define TCG_TARGET_HAS_eqv_i64 0
79#define TCG_TARGET_HAS_nand_i64 0
80#define TCG_TARGET_HAS_nor_i64 0
81#define TCG_TARGET_HAS_deposit_i64 0
82#define TCG_TARGET_HAS_movcond_i64 0
83#define TCG_TARGET_HAS_add2_i64 0
84#define TCG_TARGET_HAS_sub2_i64 0
85#define TCG_TARGET_HAS_mulu2_i64 0
86#define TCG_TARGET_HAS_muls2_i64 0
87
88#define TCG_TARGET_HAS_add2_i32 1
89#define TCG_TARGET_HAS_sub2_i32 1
90#define TCG_TARGET_HAS_mulu2_i32 1
91#endif
92
93#ifndef TCG_TARGET_deposit_i32_valid
94#define TCG_TARGET_deposit_i32_valid(ofs, len) 1
95#endif
96#ifndef TCG_TARGET_deposit_i64_valid
97#define TCG_TARGET_deposit_i64_valid(ofs, len) 1
98#endif
99
100
101#if defined(TCG_TARGET_HAS_div_i32)
102#define TCG_TARGET_HAS_div2_i32 0
103#elif defined(TCG_TARGET_HAS_div2_i32)
104#define TCG_TARGET_HAS_div_i32 0
105#endif
106#if defined(TCG_TARGET_HAS_div_i64)
107#define TCG_TARGET_HAS_div2_i64 0
108#elif defined(TCG_TARGET_HAS_div2_i64)
109#define TCG_TARGET_HAS_div_i64 0
110#endif
111
112typedef enum TCGOpcode {
113#define DEF(name, oargs, iargs, cargs, flags) INDEX_op_ ## name,
114#include "tcg-opc.h"
115#undef DEF
116 NB_OPS,
117} TCGOpcode;
118
119#define tcg_regset_clear(d) (d) = 0
120#define tcg_regset_set(d, s) (d) = (s)
121#define tcg_regset_set32(d, reg, val32) (d) |= (val32) << (reg)
122#define tcg_regset_set_reg(d, r) (d) |= 1L << (r)
123#define tcg_regset_reset_reg(d, r) (d) &= ~(1L << (r))
124#define tcg_regset_test_reg(d, r) (((d) >> (r)) & 1)
125#define tcg_regset_or(d, a, b) (d) = (a) | (b)
126#define tcg_regset_and(d, a, b) (d) = (a) & (b)
127#define tcg_regset_andnot(d, a, b) (d) = (a) & ~(b)
128#define tcg_regset_not(d, a) (d) = ~(a)
129
130typedef struct TCGRelocation {
131 struct TCGRelocation *next;
132 int type;
133 uint8_t *ptr;
134 tcg_target_long addend;
135} TCGRelocation;
136
137typedef struct TCGLabel {
138 int has_value;
139 union {
140 tcg_target_ulong value;
141 TCGRelocation *first_reloc;
142 } u;
143} TCGLabel;
144
145typedef struct TCGPool {
146 struct TCGPool *next;
147 int size;
148 uint8_t data[0] __attribute__ ((aligned));
149} TCGPool;
150
151#define TCG_POOL_CHUNK_SIZE 32768
152
153#define TCG_MAX_LABELS 512
154
155#define TCG_MAX_TEMPS 512
156
157
158
159#define TCG_STATIC_CALL_ARGS_SIZE 128
160
161typedef enum TCGType {
162 TCG_TYPE_I32,
163 TCG_TYPE_I64,
164 TCG_TYPE_COUNT,
165
166
167#if TCG_TARGET_REG_BITS == 32
168 TCG_TYPE_REG = TCG_TYPE_I32,
169#else
170 TCG_TYPE_REG = TCG_TYPE_I64,
171#endif
172
173
174
175 TCG_TYPE_PTR = TCG_TYPE_REG,
176
177
178#if TARGET_LONG_BITS == 64
179 TCG_TYPE_TL = TCG_TYPE_I64,
180#else
181 TCG_TYPE_TL = TCG_TYPE_I32,
182#endif
183} TCGType;
184
185typedef tcg_target_ulong TCGArg;
186
187
188
189
190
191
192
193
194
195
196
197
198
199#if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU)
200
201
202#define TCG_MAX_QEMU_LDST 640
203
204typedef struct TCGLabelQemuLdst {
205 int is_ld:1;
206 int opc:4;
207 int addrlo_reg;
208 int addrhi_reg;
209 int datalo_reg;
210 int datahi_reg;
211 int mem_index;
212 uint8_t *raddr;
213 uint8_t *label_ptr[2];
214} TCGLabelQemuLdst;
215#endif
216
217#ifdef CONFIG_DEBUG_TCG
218#define DEBUG_TCGV 1
219#endif
220
221#ifdef DEBUG_TCGV
222
223typedef struct
224{
225 int i32;
226} TCGv_i32;
227
228typedef struct
229{
230 int i64;
231} TCGv_i64;
232
233typedef struct {
234 int iptr;
235} TCGv_ptr;
236
237#define MAKE_TCGV_I32(i) __extension__ \
238 ({ TCGv_i32 make_tcgv_tmp = {i}; make_tcgv_tmp;})
239#define MAKE_TCGV_I64(i) __extension__ \
240 ({ TCGv_i64 make_tcgv_tmp = {i}; make_tcgv_tmp;})
241#define MAKE_TCGV_PTR(i) __extension__ \
242 ({ TCGv_ptr make_tcgv_tmp = {i}; make_tcgv_tmp; })
243#define GET_TCGV_I32(t) ((t).i32)
244#define GET_TCGV_I64(t) ((t).i64)
245#define GET_TCGV_PTR(t) ((t).iptr)
246#if TCG_TARGET_REG_BITS == 32
247#define TCGV_LOW(t) MAKE_TCGV_I32(GET_TCGV_I64(t))
248#define TCGV_HIGH(t) MAKE_TCGV_I32(GET_TCGV_I64(t) + 1)
249#endif
250
251#else
252
253typedef int TCGv_i32;
254typedef int TCGv_i64;
255#if TCG_TARGET_REG_BITS == 32
256#define TCGv_ptr TCGv_i32
257#else
258#define TCGv_ptr TCGv_i64
259#endif
260#define MAKE_TCGV_I32(x) (x)
261#define MAKE_TCGV_I64(x) (x)
262#define MAKE_TCGV_PTR(x) (x)
263#define GET_TCGV_I32(t) (t)
264#define GET_TCGV_I64(t) (t)
265#define GET_TCGV_PTR(t) (t)
266
267#if TCG_TARGET_REG_BITS == 32
268#define TCGV_LOW(t) (t)
269#define TCGV_HIGH(t) ((t) + 1)
270#endif
271
272#endif
273
274#define TCGV_EQUAL_I32(a, b) (GET_TCGV_I32(a) == GET_TCGV_I32(b))
275#define TCGV_EQUAL_I64(a, b) (GET_TCGV_I64(a) == GET_TCGV_I64(b))
276
277
278#define TCGV_UNUSED_I32(x) x = MAKE_TCGV_I32(-1)
279#define TCGV_UNUSED_I64(x) x = MAKE_TCGV_I64(-1)
280
281#define TCGV_IS_UNUSED_I32(x) (GET_TCGV_I32(x) == -1)
282#define TCGV_IS_UNUSED_I64(x) (GET_TCGV_I64(x) == -1)
283
284
285
286
287#define TCG_CALL_NO_READ_GLOBALS 0x0010
288
289#define TCG_CALL_NO_WRITE_GLOBALS 0x0020
290
291#define TCG_CALL_NO_SIDE_EFFECTS 0x0040
292
293
294#define TCG_CALL_NO_RWG TCG_CALL_NO_READ_GLOBALS
295#define TCG_CALL_NO_WG TCG_CALL_NO_WRITE_GLOBALS
296#define TCG_CALL_NO_SE TCG_CALL_NO_SIDE_EFFECTS
297#define TCG_CALL_NO_RWG_SE (TCG_CALL_NO_RWG | TCG_CALL_NO_SE)
298#define TCG_CALL_NO_WG_SE (TCG_CALL_NO_WG | TCG_CALL_NO_SE)
299
300
301#define TCG_CALL_DUMMY_TCGV MAKE_TCGV_I32(-1)
302#define TCG_CALL_DUMMY_ARG ((TCGArg)(-1))
303
304
305
306
307
308
309
310typedef enum {
311
312 TCG_COND_NEVER = 0 | 0 | 0 | 0,
313 TCG_COND_ALWAYS = 0 | 0 | 0 | 1,
314 TCG_COND_EQ = 8 | 0 | 0 | 0,
315 TCG_COND_NE = 8 | 0 | 0 | 1,
316
317 TCG_COND_LT = 0 | 0 | 2 | 0,
318 TCG_COND_GE = 0 | 0 | 2 | 1,
319 TCG_COND_LE = 8 | 0 | 2 | 0,
320 TCG_COND_GT = 8 | 0 | 2 | 1,
321
322 TCG_COND_LTU = 0 | 4 | 0 | 0,
323 TCG_COND_GEU = 0 | 4 | 0 | 1,
324 TCG_COND_LEU = 8 | 4 | 0 | 0,
325 TCG_COND_GTU = 8 | 4 | 0 | 1,
326} TCGCond;
327
328
329static inline TCGCond tcg_invert_cond(TCGCond c)
330{
331 return (TCGCond)(c ^ 1);
332}
333
334
335static inline TCGCond tcg_swap_cond(TCGCond c)
336{
337 return c & 6 ? (TCGCond)(c ^ 9) : c;
338}
339
340
341static inline TCGCond tcg_unsigned_cond(TCGCond c)
342{
343 return c & 2 ? (TCGCond)(c ^ 6) : c;
344}
345
346
347static inline bool is_unsigned_cond(TCGCond c)
348{
349 return (c & 4) != 0;
350}
351
352
353
354static inline TCGCond tcg_high_cond(TCGCond c)
355{
356 switch (c) {
357 case TCG_COND_GE:
358 case TCG_COND_LE:
359 case TCG_COND_GEU:
360 case TCG_COND_LEU:
361 return (TCGCond)(c ^ 8);
362 default:
363 return c;
364 }
365}
366
367#define TEMP_VAL_DEAD 0
368#define TEMP_VAL_REG 1
369#define TEMP_VAL_MEM 2
370#define TEMP_VAL_CONST 3
371
372
373typedef struct TCGTemp {
374 TCGType base_type;
375 TCGType type;
376 int val_type;
377 int reg;
378 tcg_target_long val;
379 int mem_reg;
380 tcg_target_long mem_offset;
381 unsigned int fixed_reg:1;
382 unsigned int mem_coherent:1;
383 unsigned int mem_allocated:1;
384 unsigned int temp_local:1;
385
386
387 unsigned int temp_allocated:1;
388
389 int next_free_temp;
390 const char *name;
391} TCGTemp;
392
393typedef struct TCGHelperInfo {
394 tcg_target_ulong func;
395 const char *name;
396} TCGHelperInfo;
397
398typedef struct TCGContext TCGContext;
399
400struct TCGContext {
401 uint8_t *pool_cur, *pool_end;
402 TCGPool *pool_first, *pool_current, *pool_first_large;
403 TCGLabel *labels;
404 int nb_labels;
405 int nb_globals;
406 int nb_temps;
407
408 int first_free_temp[TCG_TYPE_COUNT * 2];
409
410
411 uint8_t *code_buf;
412 uintptr_t *tb_next;
413 uint16_t *tb_next_offset;
414 uint16_t *tb_jmp_offset;
415
416
417 uint16_t *op_dead_args;
418
419 uint8_t *op_sync_args;
420
421
422
423
424
425 int reg_to_temp[TCG_TARGET_NB_REGS];
426 TCGRegSet reserved_regs;
427 tcg_target_long current_frame_offset;
428 tcg_target_long frame_start;
429 tcg_target_long frame_end;
430 int frame_reg;
431
432 uint8_t *code_ptr;
433 TCGTemp temps[TCG_MAX_TEMPS];
434
435 TCGHelperInfo *helpers;
436 int nb_helpers;
437 int allocated_helpers;
438 int helpers_sorted;
439
440#ifdef CONFIG_PROFILER
441
442 int64_t tb_count1;
443 int64_t tb_count;
444 int64_t op_count;
445 int op_count_max;
446 int64_t temp_count;
447 int temp_count_max;
448 int64_t del_op_count;
449 int64_t code_in_len;
450 int64_t code_out_len;
451 int64_t interm_time;
452 int64_t code_time;
453 int64_t la_time;
454 int64_t opt_time;
455 int64_t restore_count;
456 int64_t restore_time;
457#endif
458
459#ifdef CONFIG_DEBUG_TCG
460 int temps_in_use;
461 int goto_tb_issue_mask;
462#endif
463
464 uint16_t gen_opc_buf[OPC_BUF_SIZE];
465 TCGArg gen_opparam_buf[OPPARAM_BUF_SIZE];
466
467 uint16_t *gen_opc_ptr;
468 TCGArg *gen_opparam_ptr;
469 target_ulong gen_opc_pc[OPC_BUF_SIZE];
470 uint16_t gen_opc_icount[OPC_BUF_SIZE];
471 uint8_t gen_opc_instr_start[OPC_BUF_SIZE];
472
473
474 int code_gen_max_blocks;
475 uint8_t *code_gen_prologue;
476 uint8_t *code_gen_buffer;
477 size_t code_gen_buffer_size;
478
479 size_t code_gen_buffer_max_size;
480 uint8_t *code_gen_ptr;
481
482 TBContext tb_ctx;
483
484#if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU)
485
486
487 TCGLabelQemuLdst *qemu_ldst_labels;
488 int nb_qemu_ldst_labels;
489#endif
490};
491
492extern TCGContext tcg_ctx;
493
494
495
496void *tcg_malloc_internal(TCGContext *s, int size);
497void tcg_pool_reset(TCGContext *s);
498void tcg_pool_delete(TCGContext *s);
499
500static inline void *tcg_malloc(int size)
501{
502 TCGContext *s = &tcg_ctx;
503 uint8_t *ptr, *ptr_end;
504 size = (size + sizeof(long) - 1) & ~(sizeof(long) - 1);
505 ptr = s->pool_cur;
506 ptr_end = ptr + size;
507 if (unlikely(ptr_end > s->pool_end)) {
508 return tcg_malloc_internal(&tcg_ctx, size);
509 } else {
510 s->pool_cur = ptr_end;
511 return ptr;
512 }
513}
514
515void tcg_context_init(TCGContext *s);
516void tcg_prologue_init(TCGContext *s);
517void tcg_func_start(TCGContext *s);
518
519int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf);
520int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset);
521
522void tcg_set_frame(TCGContext *s, int reg,
523 tcg_target_long start, tcg_target_long size);
524
525TCGv_i32 tcg_global_reg_new_i32(int reg, const char *name);
526TCGv_i32 tcg_global_mem_new_i32(int reg, tcg_target_long offset,
527 const char *name);
528TCGv_i32 tcg_temp_new_internal_i32(int temp_local);
529static inline TCGv_i32 tcg_temp_new_i32(void)
530{
531 return tcg_temp_new_internal_i32(0);
532}
533static inline TCGv_i32 tcg_temp_local_new_i32(void)
534{
535 return tcg_temp_new_internal_i32(1);
536}
537void tcg_temp_free_i32(TCGv_i32 arg);
538char *tcg_get_arg_str_i32(TCGContext *s, char *buf, int buf_size, TCGv_i32 arg);
539
540TCGv_i64 tcg_global_reg_new_i64(int reg, const char *name);
541TCGv_i64 tcg_global_mem_new_i64(int reg, tcg_target_long offset,
542 const char *name);
543TCGv_i64 tcg_temp_new_internal_i64(int temp_local);
544static inline TCGv_i64 tcg_temp_new_i64(void)
545{
546 return tcg_temp_new_internal_i64(0);
547}
548static inline TCGv_i64 tcg_temp_local_new_i64(void)
549{
550 return tcg_temp_new_internal_i64(1);
551}
552void tcg_temp_free_i64(TCGv_i64 arg);
553char *tcg_get_arg_str_i64(TCGContext *s, char *buf, int buf_size, TCGv_i64 arg);
554
555#if defined(CONFIG_DEBUG_TCG)
556
557
558
559
560
561void tcg_clear_temp_count(void);
562int tcg_check_temp_count(void);
563#else
564#define tcg_clear_temp_count() do { } while (0)
565#define tcg_check_temp_count() 0
566#endif
567
568void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf);
569
570#define TCG_CT_ALIAS 0x80
571#define TCG_CT_IALIAS 0x40
572#define TCG_CT_REG 0x01
573#define TCG_CT_CONST 0x02
574
575typedef struct TCGArgConstraint {
576 uint16_t ct;
577 uint8_t alias_index;
578 union {
579 TCGRegSet regs;
580 } u;
581} TCGArgConstraint;
582
583#define TCG_MAX_OP_ARGS 16
584
585
586enum {
587
588 TCG_OPF_BB_END = 0x01,
589
590 TCG_OPF_CALL_CLOBBER = 0x02,
591
592
593 TCG_OPF_SIDE_EFFECTS = 0x04,
594
595 TCG_OPF_64BIT = 0x08,
596
597 TCG_OPF_NOT_PRESENT = 0x10,
598};
599
600typedef struct TCGOpDef {
601 const char *name;
602 uint8_t nb_oargs, nb_iargs, nb_cargs, nb_args;
603 uint8_t flags;
604 TCGArgConstraint *args_ct;
605 int *sorted_args;
606#if defined(CONFIG_DEBUG_TCG)
607 int used;
608#endif
609} TCGOpDef;
610
611extern TCGOpDef tcg_op_defs[];
612extern const size_t tcg_op_defs_max;
613
614typedef struct TCGTargetOpDef {
615 TCGOpcode op;
616 const char *args_ct_str[TCG_MAX_OP_ARGS];
617} TCGTargetOpDef;
618
619#define tcg_abort() \
620do {\
621 fprintf(stderr, "%s:%d: tcg fatal error\n", __FILE__, __LINE__);\
622 abort();\
623} while (0)
624
625#ifdef CONFIG_DEBUG_TCG
626# define tcg_debug_assert(X) do { assert(X); } while (0)
627#elif QEMU_GNUC_PREREQ(4, 5)
628# define tcg_debug_assert(X) \
629 do { if (!(X)) { __builtin_unreachable(); } } while (0)
630#else
631# define tcg_debug_assert(X) do { (void)(X); } while (0)
632#endif
633
634void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs);
635
636#if TCG_TARGET_REG_BITS == 32
637#define TCGV_NAT_TO_PTR(n) MAKE_TCGV_PTR(GET_TCGV_I32(n))
638#define TCGV_PTR_TO_NAT(n) MAKE_TCGV_I32(GET_TCGV_PTR(n))
639
640#define tcg_const_ptr(V) TCGV_NAT_TO_PTR(tcg_const_i32((tcg_target_long)(V)))
641#define tcg_global_reg_new_ptr(R, N) \
642 TCGV_NAT_TO_PTR(tcg_global_reg_new_i32((R), (N)))
643#define tcg_global_mem_new_ptr(R, O, N) \
644 TCGV_NAT_TO_PTR(tcg_global_mem_new_i32((R), (O), (N)))
645#define tcg_temp_new_ptr() TCGV_NAT_TO_PTR(tcg_temp_new_i32())
646#define tcg_temp_free_ptr(T) tcg_temp_free_i32(TCGV_PTR_TO_NAT(T))
647#else
648#define TCGV_NAT_TO_PTR(n) MAKE_TCGV_PTR(GET_TCGV_I64(n))
649#define TCGV_PTR_TO_NAT(n) MAKE_TCGV_I64(GET_TCGV_PTR(n))
650
651#define tcg_const_ptr(V) TCGV_NAT_TO_PTR(tcg_const_i64((tcg_target_long)(V)))
652#define tcg_global_reg_new_ptr(R, N) \
653 TCGV_NAT_TO_PTR(tcg_global_reg_new_i64((R), (N)))
654#define tcg_global_mem_new_ptr(R, O, N) \
655 TCGV_NAT_TO_PTR(tcg_global_mem_new_i64((R), (O), (N)))
656#define tcg_temp_new_ptr() TCGV_NAT_TO_PTR(tcg_temp_new_i64())
657#define tcg_temp_free_ptr(T) tcg_temp_free_i64(TCGV_PTR_TO_NAT(T))
658#endif
659
660void tcg_gen_callN(TCGContext *s, TCGv_ptr func, unsigned int flags,
661 int sizemask, TCGArg ret, int nargs, TCGArg *args);
662
663void tcg_gen_shifti_i64(TCGv_i64 ret, TCGv_i64 arg1,
664 int c, int right, int arith);
665
666TCGArg *tcg_optimize(TCGContext *s, uint16_t *tcg_opc_ptr, TCGArg *args,
667 TCGOpDef *tcg_op_def);
668
669
670void tcg_register_helper(void *func, const char *name);
671const char *tcg_helper_get_name(TCGContext *s, void *func);
672void tcg_dump_ops(TCGContext *s);
673
674void dump_ops(const uint16_t *opc_buf, const TCGArg *opparam_buf);
675TCGv_i32 tcg_const_i32(int32_t val);
676TCGv_i64 tcg_const_i64(int64_t val);
677TCGv_i32 tcg_const_local_i32(int32_t val);
678TCGv_i64 tcg_const_local_i64(int64_t val);
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722#define TB_EXIT_MASK 3
723#define TB_EXIT_IDX0 0
724#define TB_EXIT_IDX1 1
725#define TB_EXIT_ICOUNT_EXPIRED 2
726#define TB_EXIT_REQUESTED 3
727
728#if !defined(tcg_qemu_tb_exec)
729# define tcg_qemu_tb_exec(env, tb_ptr) \
730 ((tcg_target_ulong (*)(void *, void *))tcg_ctx.code_gen_prologue)(env, \
731 tb_ptr)
732#endif
733
734void tcg_register_jit(void *buf, size_t buf_size);
735
736#if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU)
737
738void tcg_out_tb_finalize(TCGContext *s);
739#endif
740