oslib-win32: Change return type of function getpagesize
[qemu/ar7.git] / tcg / tcg.c
blobb4a629f403265bf9f3b604d93d091d97ae2029ee
1 /*
2 * Tiny Code Generator for QEMU
4 * Copyright (c) 2008 Fabrice Bellard
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
25 /* define it to use liveness analysis (better code) */
26 #define USE_LIVENESS_ANALYSIS
27 #define USE_TCG_OPTIMIZATIONS
29 #include "config.h"
31 /* Define to jump the ELF file used to communicate with GDB. */
32 #undef DEBUG_JIT
34 #if !defined(CONFIG_DEBUG_TCG) && !defined(NDEBUG)
35 /* define it to suppress various consistency checks (faster) */
36 #define NDEBUG
37 #endif
39 #include "qemu-common.h"
40 #include "qemu/host-utils.h"
41 #include "qemu/timer.h"
43 /* Note: the long term plan is to reduce the dependencies on the QEMU
44 CPU definitions. Currently they are used for qemu_ld/st
45 instructions */
46 #define NO_CPU_IO_DEFS
47 #include "cpu.h"
49 #include "tcg-op.h"
51 #if UINTPTR_MAX == UINT32_MAX
52 # define ELF_CLASS ELFCLASS32
53 #else
54 # define ELF_CLASS ELFCLASS64
55 #endif
56 #ifdef HOST_WORDS_BIGENDIAN
57 # define ELF_DATA ELFDATA2MSB
58 #else
59 # define ELF_DATA ELFDATA2LSB
60 #endif
62 #include "elf.h"
64 /* Forward declarations for functions declared in tcg-target.c and used here. */
65 static void tcg_target_init(TCGContext *s);
66 static void tcg_target_qemu_prologue(TCGContext *s);
67 static void patch_reloc(tcg_insn_unit *code_ptr, int type,
68 intptr_t value, intptr_t addend);
70 /* The CIE and FDE header definitions will be common to all hosts. */
71 typedef struct {
72 uint32_t len __attribute__((aligned((sizeof(void *)))));
73 uint32_t id;
74 uint8_t version;
75 char augmentation[1];
76 uint8_t code_align;
77 uint8_t data_align;
78 uint8_t return_column;
79 } DebugFrameCIE;
81 typedef struct QEMU_PACKED {
82 uint32_t len __attribute__((aligned((sizeof(void *)))));
83 uint32_t cie_offset;
84 uintptr_t func_start;
85 uintptr_t func_len;
86 } DebugFrameFDEHeader;
88 typedef struct QEMU_PACKED {
89 DebugFrameCIE cie;
90 DebugFrameFDEHeader fde;
91 } DebugFrameHeader;
93 static void tcg_register_jit_int(void *buf, size_t size,
94 const void *debug_frame,
95 size_t debug_frame_size)
96 __attribute__((unused));
98 /* Forward declarations for functions declared and used in tcg-target.c. */
99 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str);
100 static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg1,
101 intptr_t arg2);
102 static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg);
103 static void tcg_out_movi(TCGContext *s, TCGType type,
104 TCGReg ret, tcg_target_long arg);
105 static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
106 const int *const_args);
107 static void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg, TCGReg arg1,
108 intptr_t arg2);
109 static void tcg_out_call(TCGContext *s, tcg_insn_unit *target);
110 static int tcg_target_const_match(tcg_target_long val, TCGType type,
111 const TCGArgConstraint *arg_ct);
112 static void tcg_out_tb_init(TCGContext *s);
113 static void tcg_out_tb_finalize(TCGContext *s);
116 static TCGRegSet tcg_target_available_regs[2];
117 static TCGRegSet tcg_target_call_clobber_regs;
119 #if TCG_TARGET_INSN_UNIT_SIZE == 1
120 static __attribute__((unused)) inline void tcg_out8(TCGContext *s, uint8_t v)
122 *s->code_ptr++ = v;
125 static __attribute__((unused)) inline void tcg_patch8(tcg_insn_unit *p,
126 uint8_t v)
128 *p = v;
130 #endif
132 #if TCG_TARGET_INSN_UNIT_SIZE <= 2
133 static __attribute__((unused)) inline void tcg_out16(TCGContext *s, uint16_t v)
135 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
136 *s->code_ptr++ = v;
137 } else {
138 tcg_insn_unit *p = s->code_ptr;
139 memcpy(p, &v, sizeof(v));
140 s->code_ptr = p + (2 / TCG_TARGET_INSN_UNIT_SIZE);
144 static __attribute__((unused)) inline void tcg_patch16(tcg_insn_unit *p,
145 uint16_t v)
147 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
148 *p = v;
149 } else {
150 memcpy(p, &v, sizeof(v));
153 #endif
155 #if TCG_TARGET_INSN_UNIT_SIZE <= 4
156 static __attribute__((unused)) inline void tcg_out32(TCGContext *s, uint32_t v)
158 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
159 *s->code_ptr++ = v;
160 } else {
161 tcg_insn_unit *p = s->code_ptr;
162 memcpy(p, &v, sizeof(v));
163 s->code_ptr = p + (4 / TCG_TARGET_INSN_UNIT_SIZE);
167 static __attribute__((unused)) inline void tcg_patch32(tcg_insn_unit *p,
168 uint32_t v)
170 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
171 *p = v;
172 } else {
173 memcpy(p, &v, sizeof(v));
176 #endif
178 #if TCG_TARGET_INSN_UNIT_SIZE <= 8
179 static __attribute__((unused)) inline void tcg_out64(TCGContext *s, uint64_t v)
181 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
182 *s->code_ptr++ = v;
183 } else {
184 tcg_insn_unit *p = s->code_ptr;
185 memcpy(p, &v, sizeof(v));
186 s->code_ptr = p + (8 / TCG_TARGET_INSN_UNIT_SIZE);
190 static __attribute__((unused)) inline void tcg_patch64(tcg_insn_unit *p,
191 uint64_t v)
193 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
194 *p = v;
195 } else {
196 memcpy(p, &v, sizeof(v));
199 #endif
201 /* label relocation processing */
203 static void tcg_out_reloc(TCGContext *s, tcg_insn_unit *code_ptr, int type,
204 TCGLabel *l, intptr_t addend)
206 TCGRelocation *r;
208 if (l->has_value) {
209 /* FIXME: This may break relocations on RISC targets that
210 modify instruction fields in place. The caller may not have
211 written the initial value. */
212 patch_reloc(code_ptr, type, l->u.value, addend);
213 } else {
214 /* add a new relocation entry */
215 r = tcg_malloc(sizeof(TCGRelocation));
216 r->type = type;
217 r->ptr = code_ptr;
218 r->addend = addend;
219 r->next = l->u.first_reloc;
220 l->u.first_reloc = r;
224 static void tcg_out_label(TCGContext *s, TCGLabel *l, tcg_insn_unit *ptr)
226 intptr_t value = (intptr_t)ptr;
227 TCGRelocation *r;
229 assert(!l->has_value);
231 for (r = l->u.first_reloc; r != NULL; r = r->next) {
232 patch_reloc(r->ptr, r->type, value, r->addend);
235 l->has_value = 1;
236 l->u.value_ptr = ptr;
239 TCGLabel *gen_new_label(void)
241 TCGContext *s = &tcg_ctx;
242 TCGLabel *l = tcg_malloc(sizeof(TCGLabel));
244 *l = (TCGLabel){
245 .id = s->nb_labels++
248 return l;
251 #include "tcg-target.c"
253 /* pool based memory allocation */
254 void *tcg_malloc_internal(TCGContext *s, int size)
256 TCGPool *p;
257 int pool_size;
259 if (size > TCG_POOL_CHUNK_SIZE) {
260 /* big malloc: insert a new pool (XXX: could optimize) */
261 p = g_malloc(sizeof(TCGPool) + size);
262 p->size = size;
263 p->next = s->pool_first_large;
264 s->pool_first_large = p;
265 return p->data;
266 } else {
267 p = s->pool_current;
268 if (!p) {
269 p = s->pool_first;
270 if (!p)
271 goto new_pool;
272 } else {
273 if (!p->next) {
274 new_pool:
275 pool_size = TCG_POOL_CHUNK_SIZE;
276 p = g_malloc(sizeof(TCGPool) + pool_size);
277 p->size = pool_size;
278 p->next = NULL;
279 if (s->pool_current)
280 s->pool_current->next = p;
281 else
282 s->pool_first = p;
283 } else {
284 p = p->next;
288 s->pool_current = p;
289 s->pool_cur = p->data + size;
290 s->pool_end = p->data + p->size;
291 return p->data;
294 void tcg_pool_reset(TCGContext *s)
296 TCGPool *p, *t;
297 for (p = s->pool_first_large; p; p = t) {
298 t = p->next;
299 g_free(p);
301 s->pool_first_large = NULL;
302 s->pool_cur = s->pool_end = NULL;
303 s->pool_current = NULL;
306 typedef struct TCGHelperInfo {
307 void *func;
308 const char *name;
309 unsigned flags;
310 unsigned sizemask;
311 } TCGHelperInfo;
313 #include "exec/helper-proto.h"
315 static const TCGHelperInfo all_helpers[] = {
316 #include "exec/helper-tcg.h"
319 void tcg_context_init(TCGContext *s)
321 int op, total_args, n, i;
322 TCGOpDef *def;
323 TCGArgConstraint *args_ct;
324 int *sorted_args;
325 GHashTable *helper_table;
327 memset(s, 0, sizeof(*s));
328 s->nb_globals = 0;
330 /* Count total number of arguments and allocate the corresponding
331 space */
332 total_args = 0;
333 for(op = 0; op < NB_OPS; op++) {
334 def = &tcg_op_defs[op];
335 n = def->nb_iargs + def->nb_oargs;
336 total_args += n;
339 args_ct = g_malloc(sizeof(TCGArgConstraint) * total_args);
340 sorted_args = g_malloc(sizeof(int) * total_args);
342 for(op = 0; op < NB_OPS; op++) {
343 def = &tcg_op_defs[op];
344 def->args_ct = args_ct;
345 def->sorted_args = sorted_args;
346 n = def->nb_iargs + def->nb_oargs;
347 sorted_args += n;
348 args_ct += n;
351 /* Register helpers. */
352 /* Use g_direct_hash/equal for direct pointer comparisons on func. */
353 s->helpers = helper_table = g_hash_table_new(NULL, NULL);
355 for (i = 0; i < ARRAY_SIZE(all_helpers); ++i) {
356 g_hash_table_insert(helper_table, (gpointer)all_helpers[i].func,
357 (gpointer)&all_helpers[i]);
360 tcg_target_init(s);
363 void tcg_prologue_init(TCGContext *s)
365 size_t prologue_size, total_size;
366 void *buf0, *buf1;
368 /* Put the prologue at the beginning of code_gen_buffer. */
369 buf0 = s->code_gen_buffer;
370 s->code_ptr = buf0;
371 s->code_buf = buf0;
372 s->code_gen_prologue = buf0;
374 /* Generate the prologue. */
375 tcg_target_qemu_prologue(s);
376 buf1 = s->code_ptr;
377 flush_icache_range((uintptr_t)buf0, (uintptr_t)buf1);
379 /* Deduct the prologue from the buffer. */
380 prologue_size = tcg_current_code_size(s);
381 s->code_gen_ptr = buf1;
382 s->code_gen_buffer = buf1;
383 s->code_buf = buf1;
384 total_size = s->code_gen_buffer_size - prologue_size;
385 s->code_gen_buffer_size = total_size;
387 /* Compute a high-water mark, at which we voluntarily flush the buffer
388 and start over. The size here is arbitrary, significantly larger
389 than we expect the code generation for any one opcode to require. */
390 s->code_gen_highwater = s->code_gen_buffer + (total_size - 1024);
392 tcg_register_jit(s->code_gen_buffer, total_size);
394 #ifdef DEBUG_DISAS
395 if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM)) {
396 qemu_log("PROLOGUE: [size=%zu]\n", prologue_size);
397 log_disas(buf0, prologue_size);
398 qemu_log("\n");
399 qemu_log_flush();
401 #endif
404 void tcg_set_frame(TCGContext *s, int reg, intptr_t start, intptr_t size)
406 s->frame_start = start;
407 s->frame_end = start + size;
408 s->frame_reg = reg;
411 void tcg_func_start(TCGContext *s)
413 tcg_pool_reset(s);
414 s->nb_temps = s->nb_globals;
416 /* No temps have been previously allocated for size or locality. */
417 memset(s->free_temps, 0, sizeof(s->free_temps));
419 s->nb_labels = 0;
420 s->current_frame_offset = s->frame_start;
422 #ifdef CONFIG_DEBUG_TCG
423 s->goto_tb_issue_mask = 0;
424 #endif
426 s->gen_first_op_idx = 0;
427 s->gen_last_op_idx = -1;
428 s->gen_next_op_idx = 0;
429 s->gen_next_parm_idx = 0;
431 s->be = tcg_malloc(sizeof(TCGBackendData));
434 static inline void tcg_temp_alloc(TCGContext *s, int n)
436 if (n > TCG_MAX_TEMPS)
437 tcg_abort();
440 static inline int tcg_global_reg_new_internal(TCGType type, int reg,
441 const char *name)
443 TCGContext *s = &tcg_ctx;
444 TCGTemp *ts;
445 int idx;
447 #if TCG_TARGET_REG_BITS == 32
448 if (type != TCG_TYPE_I32)
449 tcg_abort();
450 #endif
451 if (tcg_regset_test_reg(s->reserved_regs, reg))
452 tcg_abort();
453 idx = s->nb_globals;
454 tcg_temp_alloc(s, s->nb_globals + 1);
455 ts = &s->temps[s->nb_globals];
456 ts->base_type = type;
457 ts->type = type;
458 ts->fixed_reg = 1;
459 ts->reg = reg;
460 ts->name = name;
461 s->nb_globals++;
462 tcg_regset_set_reg(s->reserved_regs, reg);
463 return idx;
466 TCGv_i32 tcg_global_reg_new_i32(int reg, const char *name)
468 int idx;
470 idx = tcg_global_reg_new_internal(TCG_TYPE_I32, reg, name);
471 return MAKE_TCGV_I32(idx);
474 TCGv_i64 tcg_global_reg_new_i64(int reg, const char *name)
476 int idx;
478 idx = tcg_global_reg_new_internal(TCG_TYPE_I64, reg, name);
479 return MAKE_TCGV_I64(idx);
482 static inline int tcg_global_mem_new_internal(TCGType type, int reg,
483 intptr_t offset,
484 const char *name)
486 TCGContext *s = &tcg_ctx;
487 TCGTemp *ts;
488 int idx;
490 idx = s->nb_globals;
491 #if TCG_TARGET_REG_BITS == 32
492 if (type == TCG_TYPE_I64) {
493 char buf[64];
494 tcg_temp_alloc(s, s->nb_globals + 2);
495 ts = &s->temps[s->nb_globals];
496 ts->base_type = type;
497 ts->type = TCG_TYPE_I32;
498 ts->fixed_reg = 0;
499 ts->mem_allocated = 1;
500 ts->mem_reg = reg;
501 #ifdef HOST_WORDS_BIGENDIAN
502 ts->mem_offset = offset + 4;
503 #else
504 ts->mem_offset = offset;
505 #endif
506 pstrcpy(buf, sizeof(buf), name);
507 pstrcat(buf, sizeof(buf), "_0");
508 ts->name = strdup(buf);
509 ts++;
511 ts->base_type = type;
512 ts->type = TCG_TYPE_I32;
513 ts->fixed_reg = 0;
514 ts->mem_allocated = 1;
515 ts->mem_reg = reg;
516 #ifdef HOST_WORDS_BIGENDIAN
517 ts->mem_offset = offset;
518 #else
519 ts->mem_offset = offset + 4;
520 #endif
521 pstrcpy(buf, sizeof(buf), name);
522 pstrcat(buf, sizeof(buf), "_1");
523 ts->name = strdup(buf);
525 s->nb_globals += 2;
526 } else
527 #endif
529 tcg_temp_alloc(s, s->nb_globals + 1);
530 ts = &s->temps[s->nb_globals];
531 ts->base_type = type;
532 ts->type = type;
533 ts->fixed_reg = 0;
534 ts->mem_allocated = 1;
535 ts->mem_reg = reg;
536 ts->mem_offset = offset;
537 ts->name = name;
538 s->nb_globals++;
540 return idx;
543 TCGv_i32 tcg_global_mem_new_i32(int reg, intptr_t offset, const char *name)
545 int idx = tcg_global_mem_new_internal(TCG_TYPE_I32, reg, offset, name);
546 return MAKE_TCGV_I32(idx);
549 TCGv_i64 tcg_global_mem_new_i64(int reg, intptr_t offset, const char *name)
551 int idx = tcg_global_mem_new_internal(TCG_TYPE_I64, reg, offset, name);
552 return MAKE_TCGV_I64(idx);
555 static inline int tcg_temp_new_internal(TCGType type, int temp_local)
557 TCGContext *s = &tcg_ctx;
558 TCGTemp *ts;
559 int idx, k;
561 k = type + (temp_local ? TCG_TYPE_COUNT : 0);
562 idx = find_first_bit(s->free_temps[k].l, TCG_MAX_TEMPS);
563 if (idx < TCG_MAX_TEMPS) {
564 /* There is already an available temp with the right type. */
565 clear_bit(idx, s->free_temps[k].l);
567 ts = &s->temps[idx];
568 ts->temp_allocated = 1;
569 assert(ts->base_type == type);
570 assert(ts->temp_local == temp_local);
571 } else {
572 idx = s->nb_temps;
573 #if TCG_TARGET_REG_BITS == 32
574 if (type == TCG_TYPE_I64) {
575 tcg_temp_alloc(s, s->nb_temps + 2);
576 ts = &s->temps[s->nb_temps];
577 ts->base_type = type;
578 ts->type = TCG_TYPE_I32;
579 ts->temp_allocated = 1;
580 ts->temp_local = temp_local;
581 ts->name = NULL;
582 ts++;
583 ts->base_type = type;
584 ts->type = TCG_TYPE_I32;
585 ts->temp_allocated = 1;
586 ts->temp_local = temp_local;
587 ts->name = NULL;
588 s->nb_temps += 2;
589 } else
590 #endif
592 tcg_temp_alloc(s, s->nb_temps + 1);
593 ts = &s->temps[s->nb_temps];
594 ts->base_type = type;
595 ts->type = type;
596 ts->temp_allocated = 1;
597 ts->temp_local = temp_local;
598 ts->name = NULL;
599 s->nb_temps++;
603 #if defined(CONFIG_DEBUG_TCG)
604 s->temps_in_use++;
605 #endif
606 return idx;
609 TCGv_i32 tcg_temp_new_internal_i32(int temp_local)
611 int idx;
613 idx = tcg_temp_new_internal(TCG_TYPE_I32, temp_local);
614 return MAKE_TCGV_I32(idx);
617 TCGv_i64 tcg_temp_new_internal_i64(int temp_local)
619 int idx;
621 idx = tcg_temp_new_internal(TCG_TYPE_I64, temp_local);
622 return MAKE_TCGV_I64(idx);
625 static void tcg_temp_free_internal(int idx)
627 TCGContext *s = &tcg_ctx;
628 TCGTemp *ts;
629 int k;
631 #if defined(CONFIG_DEBUG_TCG)
632 s->temps_in_use--;
633 if (s->temps_in_use < 0) {
634 fprintf(stderr, "More temporaries freed than allocated!\n");
636 #endif
638 assert(idx >= s->nb_globals && idx < s->nb_temps);
639 ts = &s->temps[idx];
640 assert(ts->temp_allocated != 0);
641 ts->temp_allocated = 0;
643 k = ts->base_type + (ts->temp_local ? TCG_TYPE_COUNT : 0);
644 set_bit(idx, s->free_temps[k].l);
647 void tcg_temp_free_i32(TCGv_i32 arg)
649 tcg_temp_free_internal(GET_TCGV_I32(arg));
652 void tcg_temp_free_i64(TCGv_i64 arg)
654 tcg_temp_free_internal(GET_TCGV_I64(arg));
657 TCGv_i32 tcg_const_i32(int32_t val)
659 TCGv_i32 t0;
660 t0 = tcg_temp_new_i32();
661 tcg_gen_movi_i32(t0, val);
662 return t0;
665 TCGv_i64 tcg_const_i64(int64_t val)
667 TCGv_i64 t0;
668 t0 = tcg_temp_new_i64();
669 tcg_gen_movi_i64(t0, val);
670 return t0;
673 TCGv_i32 tcg_const_local_i32(int32_t val)
675 TCGv_i32 t0;
676 t0 = tcg_temp_local_new_i32();
677 tcg_gen_movi_i32(t0, val);
678 return t0;
681 TCGv_i64 tcg_const_local_i64(int64_t val)
683 TCGv_i64 t0;
684 t0 = tcg_temp_local_new_i64();
685 tcg_gen_movi_i64(t0, val);
686 return t0;
689 #if defined(CONFIG_DEBUG_TCG)
690 void tcg_clear_temp_count(void)
692 TCGContext *s = &tcg_ctx;
693 s->temps_in_use = 0;
696 int tcg_check_temp_count(void)
698 TCGContext *s = &tcg_ctx;
699 if (s->temps_in_use) {
700 /* Clear the count so that we don't give another
701 * warning immediately next time around.
703 s->temps_in_use = 0;
704 return 1;
706 return 0;
708 #endif
710 /* Note: we convert the 64 bit args to 32 bit and do some alignment
711 and endian swap. Maybe it would be better to do the alignment
712 and endian swap in tcg_reg_alloc_call(). */
713 void tcg_gen_callN(TCGContext *s, void *func, TCGArg ret,
714 int nargs, TCGArg *args)
716 int i, real_args, nb_rets, pi, pi_first;
717 unsigned sizemask, flags;
718 TCGHelperInfo *info;
720 info = g_hash_table_lookup(s->helpers, (gpointer)func);
721 flags = info->flags;
722 sizemask = info->sizemask;
724 #if defined(__sparc__) && !defined(__arch64__) \
725 && !defined(CONFIG_TCG_INTERPRETER)
726 /* We have 64-bit values in one register, but need to pass as two
727 separate parameters. Split them. */
728 int orig_sizemask = sizemask;
729 int orig_nargs = nargs;
730 TCGv_i64 retl, reth;
732 TCGV_UNUSED_I64(retl);
733 TCGV_UNUSED_I64(reth);
734 if (sizemask != 0) {
735 TCGArg *split_args = __builtin_alloca(sizeof(TCGArg) * nargs * 2);
736 for (i = real_args = 0; i < nargs; ++i) {
737 int is_64bit = sizemask & (1 << (i+1)*2);
738 if (is_64bit) {
739 TCGv_i64 orig = MAKE_TCGV_I64(args[i]);
740 TCGv_i32 h = tcg_temp_new_i32();
741 TCGv_i32 l = tcg_temp_new_i32();
742 tcg_gen_extr_i64_i32(l, h, orig);
743 split_args[real_args++] = GET_TCGV_I32(h);
744 split_args[real_args++] = GET_TCGV_I32(l);
745 } else {
746 split_args[real_args++] = args[i];
749 nargs = real_args;
750 args = split_args;
751 sizemask = 0;
753 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
754 for (i = 0; i < nargs; ++i) {
755 int is_64bit = sizemask & (1 << (i+1)*2);
756 int is_signed = sizemask & (2 << (i+1)*2);
757 if (!is_64bit) {
758 TCGv_i64 temp = tcg_temp_new_i64();
759 TCGv_i64 orig = MAKE_TCGV_I64(args[i]);
760 if (is_signed) {
761 tcg_gen_ext32s_i64(temp, orig);
762 } else {
763 tcg_gen_ext32u_i64(temp, orig);
765 args[i] = GET_TCGV_I64(temp);
768 #endif /* TCG_TARGET_EXTEND_ARGS */
770 pi_first = pi = s->gen_next_parm_idx;
771 if (ret != TCG_CALL_DUMMY_ARG) {
772 #if defined(__sparc__) && !defined(__arch64__) \
773 && !defined(CONFIG_TCG_INTERPRETER)
774 if (orig_sizemask & 1) {
775 /* The 32-bit ABI is going to return the 64-bit value in
776 the %o0/%o1 register pair. Prepare for this by using
777 two return temporaries, and reassemble below. */
778 retl = tcg_temp_new_i64();
779 reth = tcg_temp_new_i64();
780 s->gen_opparam_buf[pi++] = GET_TCGV_I64(reth);
781 s->gen_opparam_buf[pi++] = GET_TCGV_I64(retl);
782 nb_rets = 2;
783 } else {
784 s->gen_opparam_buf[pi++] = ret;
785 nb_rets = 1;
787 #else
788 if (TCG_TARGET_REG_BITS < 64 && (sizemask & 1)) {
789 #ifdef HOST_WORDS_BIGENDIAN
790 s->gen_opparam_buf[pi++] = ret + 1;
791 s->gen_opparam_buf[pi++] = ret;
792 #else
793 s->gen_opparam_buf[pi++] = ret;
794 s->gen_opparam_buf[pi++] = ret + 1;
795 #endif
796 nb_rets = 2;
797 } else {
798 s->gen_opparam_buf[pi++] = ret;
799 nb_rets = 1;
801 #endif
802 } else {
803 nb_rets = 0;
805 real_args = 0;
806 for (i = 0; i < nargs; i++) {
807 int is_64bit = sizemask & (1 << (i+1)*2);
808 if (TCG_TARGET_REG_BITS < 64 && is_64bit) {
809 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
810 /* some targets want aligned 64 bit args */
811 if (real_args & 1) {
812 s->gen_opparam_buf[pi++] = TCG_CALL_DUMMY_ARG;
813 real_args++;
815 #endif
816 /* If stack grows up, then we will be placing successive
817 arguments at lower addresses, which means we need to
818 reverse the order compared to how we would normally
819 treat either big or little-endian. For those arguments
820 that will wind up in registers, this still works for
821 HPPA (the only current STACK_GROWSUP target) since the
822 argument registers are *also* allocated in decreasing
823 order. If another such target is added, this logic may
824 have to get more complicated to differentiate between
825 stack arguments and register arguments. */
826 #if defined(HOST_WORDS_BIGENDIAN) != defined(TCG_TARGET_STACK_GROWSUP)
827 s->gen_opparam_buf[pi++] = args[i] + 1;
828 s->gen_opparam_buf[pi++] = args[i];
829 #else
830 s->gen_opparam_buf[pi++] = args[i];
831 s->gen_opparam_buf[pi++] = args[i] + 1;
832 #endif
833 real_args += 2;
834 continue;
837 s->gen_opparam_buf[pi++] = args[i];
838 real_args++;
840 s->gen_opparam_buf[pi++] = (uintptr_t)func;
841 s->gen_opparam_buf[pi++] = flags;
843 i = s->gen_next_op_idx;
844 tcg_debug_assert(i < OPC_BUF_SIZE);
845 tcg_debug_assert(pi <= OPPARAM_BUF_SIZE);
847 /* Set links for sequential allocation during translation. */
848 s->gen_op_buf[i] = (TCGOp){
849 .opc = INDEX_op_call,
850 .callo = nb_rets,
851 .calli = real_args,
852 .args = pi_first,
853 .prev = i - 1,
854 .next = i + 1
857 /* Make sure the calli field didn't overflow. */
858 tcg_debug_assert(s->gen_op_buf[i].calli == real_args);
860 s->gen_last_op_idx = i;
861 s->gen_next_op_idx = i + 1;
862 s->gen_next_parm_idx = pi;
864 #if defined(__sparc__) && !defined(__arch64__) \
865 && !defined(CONFIG_TCG_INTERPRETER)
866 /* Free all of the parts we allocated above. */
867 for (i = real_args = 0; i < orig_nargs; ++i) {
868 int is_64bit = orig_sizemask & (1 << (i+1)*2);
869 if (is_64bit) {
870 TCGv_i32 h = MAKE_TCGV_I32(args[real_args++]);
871 TCGv_i32 l = MAKE_TCGV_I32(args[real_args++]);
872 tcg_temp_free_i32(h);
873 tcg_temp_free_i32(l);
874 } else {
875 real_args++;
878 if (orig_sizemask & 1) {
879 /* The 32-bit ABI returned two 32-bit pieces. Re-assemble them.
880 Note that describing these as TCGv_i64 eliminates an unnecessary
881 zero-extension that tcg_gen_concat_i32_i64 would create. */
882 tcg_gen_concat32_i64(MAKE_TCGV_I64(ret), retl, reth);
883 tcg_temp_free_i64(retl);
884 tcg_temp_free_i64(reth);
886 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
887 for (i = 0; i < nargs; ++i) {
888 int is_64bit = sizemask & (1 << (i+1)*2);
889 if (!is_64bit) {
890 TCGv_i64 temp = MAKE_TCGV_I64(args[i]);
891 tcg_temp_free_i64(temp);
894 #endif /* TCG_TARGET_EXTEND_ARGS */
897 static void tcg_reg_alloc_start(TCGContext *s)
899 int i;
900 TCGTemp *ts;
901 for(i = 0; i < s->nb_globals; i++) {
902 ts = &s->temps[i];
903 if (ts->fixed_reg) {
904 ts->val_type = TEMP_VAL_REG;
905 } else {
906 ts->val_type = TEMP_VAL_MEM;
909 for(i = s->nb_globals; i < s->nb_temps; i++) {
910 ts = &s->temps[i];
911 if (ts->temp_local) {
912 ts->val_type = TEMP_VAL_MEM;
913 } else {
914 ts->val_type = TEMP_VAL_DEAD;
916 ts->mem_allocated = 0;
917 ts->fixed_reg = 0;
919 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
920 s->reg_to_temp[i] = -1;
924 static char *tcg_get_arg_str_idx(TCGContext *s, char *buf, int buf_size,
925 int idx)
927 TCGTemp *ts = NULL;
929 assert(idx >= 0 && idx < s->nb_temps);
930 ts = &s->temps[idx];
931 if (idx < s->nb_globals) {
932 pstrcpy(buf, buf_size, ts->name);
933 } else {
934 if (ts && ts->temp_local)
935 snprintf(buf, buf_size, "loc%d", idx - s->nb_globals);
936 else
937 snprintf(buf, buf_size, "tmp%d", idx - s->nb_globals);
939 return buf;
942 char *tcg_get_arg_str_i32(TCGContext *s, char *buf, int buf_size, TCGv_i32 arg)
944 return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I32(arg));
947 char *tcg_get_arg_str_i64(TCGContext *s, char *buf, int buf_size, TCGv_i64 arg)
949 return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I64(arg));
952 /* Find helper name. */
953 static inline const char *tcg_find_helper(TCGContext *s, uintptr_t val)
955 const char *ret = NULL;
956 if (s->helpers) {
957 TCGHelperInfo *info = g_hash_table_lookup(s->helpers, (gpointer)val);
958 if (info) {
959 ret = info->name;
962 return ret;
965 static const char * const cond_name[] =
967 [TCG_COND_NEVER] = "never",
968 [TCG_COND_ALWAYS] = "always",
969 [TCG_COND_EQ] = "eq",
970 [TCG_COND_NE] = "ne",
971 [TCG_COND_LT] = "lt",
972 [TCG_COND_GE] = "ge",
973 [TCG_COND_LE] = "le",
974 [TCG_COND_GT] = "gt",
975 [TCG_COND_LTU] = "ltu",
976 [TCG_COND_GEU] = "geu",
977 [TCG_COND_LEU] = "leu",
978 [TCG_COND_GTU] = "gtu"
981 static const char * const ldst_name[] =
983 [MO_UB] = "ub",
984 [MO_SB] = "sb",
985 [MO_LEUW] = "leuw",
986 [MO_LESW] = "lesw",
987 [MO_LEUL] = "leul",
988 [MO_LESL] = "lesl",
989 [MO_LEQ] = "leq",
990 [MO_BEUW] = "beuw",
991 [MO_BESW] = "besw",
992 [MO_BEUL] = "beul",
993 [MO_BESL] = "besl",
994 [MO_BEQ] = "beq",
997 void tcg_dump_ops(TCGContext *s)
999 char buf[128];
1000 TCGOp *op;
1001 int oi;
1003 for (oi = s->gen_first_op_idx; oi >= 0; oi = op->next) {
1004 int i, k, nb_oargs, nb_iargs, nb_cargs;
1005 const TCGOpDef *def;
1006 const TCGArg *args;
1007 TCGOpcode c;
1009 op = &s->gen_op_buf[oi];
1010 c = op->opc;
1011 def = &tcg_op_defs[c];
1012 args = &s->gen_opparam_buf[op->args];
1014 if (c == INDEX_op_insn_start) {
1015 qemu_log("%s ----", oi != s->gen_first_op_idx ? "\n" : "");
1017 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
1018 target_ulong a;
1019 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
1020 a = ((target_ulong)args[i * 2 + 1] << 32) | args[i * 2];
1021 #else
1022 a = args[i];
1023 #endif
1024 qemu_log(" " TARGET_FMT_lx, a);
1026 } else if (c == INDEX_op_call) {
1027 /* variable number of arguments */
1028 nb_oargs = op->callo;
1029 nb_iargs = op->calli;
1030 nb_cargs = def->nb_cargs;
1032 /* function name, flags, out args */
1033 qemu_log(" %s %s,$0x%" TCG_PRIlx ",$%d", def->name,
1034 tcg_find_helper(s, args[nb_oargs + nb_iargs]),
1035 args[nb_oargs + nb_iargs + 1], nb_oargs);
1036 for (i = 0; i < nb_oargs; i++) {
1037 qemu_log(",%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1038 args[i]));
1040 for (i = 0; i < nb_iargs; i++) {
1041 TCGArg arg = args[nb_oargs + i];
1042 const char *t = "<dummy>";
1043 if (arg != TCG_CALL_DUMMY_ARG) {
1044 t = tcg_get_arg_str_idx(s, buf, sizeof(buf), arg);
1046 qemu_log(",%s", t);
1048 } else {
1049 qemu_log(" %s ", def->name);
1051 nb_oargs = def->nb_oargs;
1052 nb_iargs = def->nb_iargs;
1053 nb_cargs = def->nb_cargs;
1055 k = 0;
1056 for (i = 0; i < nb_oargs; i++) {
1057 if (k != 0) {
1058 qemu_log(",");
1060 qemu_log("%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1061 args[k++]));
1063 for (i = 0; i < nb_iargs; i++) {
1064 if (k != 0) {
1065 qemu_log(",");
1067 qemu_log("%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1068 args[k++]));
1070 switch (c) {
1071 case INDEX_op_brcond_i32:
1072 case INDEX_op_setcond_i32:
1073 case INDEX_op_movcond_i32:
1074 case INDEX_op_brcond2_i32:
1075 case INDEX_op_setcond2_i32:
1076 case INDEX_op_brcond_i64:
1077 case INDEX_op_setcond_i64:
1078 case INDEX_op_movcond_i64:
1079 if (args[k] < ARRAY_SIZE(cond_name) && cond_name[args[k]]) {
1080 qemu_log(",%s", cond_name[args[k++]]);
1081 } else {
1082 qemu_log(",$0x%" TCG_PRIlx, args[k++]);
1084 i = 1;
1085 break;
1086 case INDEX_op_qemu_ld_i32:
1087 case INDEX_op_qemu_st_i32:
1088 case INDEX_op_qemu_ld_i64:
1089 case INDEX_op_qemu_st_i64:
1091 TCGMemOpIdx oi = args[k++];
1092 TCGMemOp op = get_memop(oi);
1093 unsigned ix = get_mmuidx(oi);
1095 if (op & ~(MO_AMASK | MO_BSWAP | MO_SSIZE)) {
1096 qemu_log(",$0x%x,%u", op, ix);
1097 } else {
1098 const char *s_al = "", *s_op;
1099 if (op & MO_AMASK) {
1100 if ((op & MO_AMASK) == MO_ALIGN) {
1101 s_al = "al+";
1102 } else {
1103 s_al = "un+";
1106 s_op = ldst_name[op & (MO_BSWAP | MO_SSIZE)];
1107 qemu_log(",%s%s,%u", s_al, s_op, ix);
1109 i = 1;
1111 break;
1112 default:
1113 i = 0;
1114 break;
1116 switch (c) {
1117 case INDEX_op_set_label:
1118 case INDEX_op_br:
1119 case INDEX_op_brcond_i32:
1120 case INDEX_op_brcond_i64:
1121 case INDEX_op_brcond2_i32:
1122 qemu_log("%s$L%d", k ? "," : "", arg_label(args[k])->id);
1123 i++, k++;
1124 break;
1125 default:
1126 break;
1128 for (; i < nb_cargs; i++, k++) {
1129 qemu_log("%s$0x%" TCG_PRIlx, k ? "," : "", args[k]);
1132 qemu_log("\n");
1136 /* we give more priority to constraints with less registers */
1137 static int get_constraint_priority(const TCGOpDef *def, int k)
1139 const TCGArgConstraint *arg_ct;
1141 int i, n;
1142 arg_ct = &def->args_ct[k];
1143 if (arg_ct->ct & TCG_CT_ALIAS) {
1144 /* an alias is equivalent to a single register */
1145 n = 1;
1146 } else {
1147 if (!(arg_ct->ct & TCG_CT_REG))
1148 return 0;
1149 n = 0;
1150 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1151 if (tcg_regset_test_reg(arg_ct->u.regs, i))
1152 n++;
1155 return TCG_TARGET_NB_REGS - n + 1;
1158 /* sort from highest priority to lowest */
1159 static void sort_constraints(TCGOpDef *def, int start, int n)
1161 int i, j, p1, p2, tmp;
1163 for(i = 0; i < n; i++)
1164 def->sorted_args[start + i] = start + i;
1165 if (n <= 1)
1166 return;
1167 for(i = 0; i < n - 1; i++) {
1168 for(j = i + 1; j < n; j++) {
1169 p1 = get_constraint_priority(def, def->sorted_args[start + i]);
1170 p2 = get_constraint_priority(def, def->sorted_args[start + j]);
1171 if (p1 < p2) {
1172 tmp = def->sorted_args[start + i];
1173 def->sorted_args[start + i] = def->sorted_args[start + j];
1174 def->sorted_args[start + j] = tmp;
1180 void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
1182 TCGOpcode op;
1183 TCGOpDef *def;
1184 const char *ct_str;
1185 int i, nb_args;
1187 for(;;) {
1188 if (tdefs->op == (TCGOpcode)-1)
1189 break;
1190 op = tdefs->op;
1191 assert((unsigned)op < NB_OPS);
1192 def = &tcg_op_defs[op];
1193 #if defined(CONFIG_DEBUG_TCG)
1194 /* Duplicate entry in op definitions? */
1195 assert(!def->used);
1196 def->used = 1;
1197 #endif
1198 nb_args = def->nb_iargs + def->nb_oargs;
1199 for(i = 0; i < nb_args; i++) {
1200 ct_str = tdefs->args_ct_str[i];
1201 /* Incomplete TCGTargetOpDef entry? */
1202 assert(ct_str != NULL);
1203 tcg_regset_clear(def->args_ct[i].u.regs);
1204 def->args_ct[i].ct = 0;
1205 if (ct_str[0] >= '0' && ct_str[0] <= '9') {
1206 int oarg;
1207 oarg = ct_str[0] - '0';
1208 assert(oarg < def->nb_oargs);
1209 assert(def->args_ct[oarg].ct & TCG_CT_REG);
1210 /* TCG_CT_ALIAS is for the output arguments. The input
1211 argument is tagged with TCG_CT_IALIAS. */
1212 def->args_ct[i] = def->args_ct[oarg];
1213 def->args_ct[oarg].ct = TCG_CT_ALIAS;
1214 def->args_ct[oarg].alias_index = i;
1215 def->args_ct[i].ct |= TCG_CT_IALIAS;
1216 def->args_ct[i].alias_index = oarg;
1217 } else {
1218 for(;;) {
1219 if (*ct_str == '\0')
1220 break;
1221 switch(*ct_str) {
1222 case 'i':
1223 def->args_ct[i].ct |= TCG_CT_CONST;
1224 ct_str++;
1225 break;
1226 default:
1227 if (target_parse_constraint(&def->args_ct[i], &ct_str) < 0) {
1228 fprintf(stderr, "Invalid constraint '%s' for arg %d of operation '%s'\n",
1229 ct_str, i, def->name);
1230 exit(1);
1237 /* TCGTargetOpDef entry with too much information? */
1238 assert(i == TCG_MAX_OP_ARGS || tdefs->args_ct_str[i] == NULL);
1240 /* sort the constraints (XXX: this is just an heuristic) */
1241 sort_constraints(def, 0, def->nb_oargs);
1242 sort_constraints(def, def->nb_oargs, def->nb_iargs);
1244 #if 0
1246 int i;
1248 printf("%s: sorted=", def->name);
1249 for(i = 0; i < def->nb_oargs + def->nb_iargs; i++)
1250 printf(" %d", def->sorted_args[i]);
1251 printf("\n");
1253 #endif
1254 tdefs++;
1257 #if defined(CONFIG_DEBUG_TCG)
1258 i = 0;
1259 for (op = 0; op < tcg_op_defs_max; op++) {
1260 const TCGOpDef *def = &tcg_op_defs[op];
1261 if (def->flags & TCG_OPF_NOT_PRESENT) {
1262 /* Wrong entry in op definitions? */
1263 if (def->used) {
1264 fprintf(stderr, "Invalid op definition for %s\n", def->name);
1265 i = 1;
1267 } else {
1268 /* Missing entry in op definitions? */
1269 if (!def->used) {
1270 fprintf(stderr, "Missing op definition for %s\n", def->name);
1271 i = 1;
1275 if (i == 1) {
1276 tcg_abort();
1278 #endif
1281 void tcg_op_remove(TCGContext *s, TCGOp *op)
1283 int next = op->next;
1284 int prev = op->prev;
1286 if (next >= 0) {
1287 s->gen_op_buf[next].prev = prev;
1288 } else {
1289 s->gen_last_op_idx = prev;
1291 if (prev >= 0) {
1292 s->gen_op_buf[prev].next = next;
1293 } else {
1294 s->gen_first_op_idx = next;
1297 memset(op, -1, sizeof(*op));
1299 #ifdef CONFIG_PROFILER
1300 s->del_op_count++;
1301 #endif
1304 #ifdef USE_LIVENESS_ANALYSIS
1305 /* liveness analysis: end of function: all temps are dead, and globals
1306 should be in memory. */
1307 static inline void tcg_la_func_end(TCGContext *s, uint8_t *dead_temps,
1308 uint8_t *mem_temps)
1310 memset(dead_temps, 1, s->nb_temps);
1311 memset(mem_temps, 1, s->nb_globals);
1312 memset(mem_temps + s->nb_globals, 0, s->nb_temps - s->nb_globals);
1315 /* liveness analysis: end of basic block: all temps are dead, globals
1316 and local temps should be in memory. */
1317 static inline void tcg_la_bb_end(TCGContext *s, uint8_t *dead_temps,
1318 uint8_t *mem_temps)
1320 int i;
1322 memset(dead_temps, 1, s->nb_temps);
1323 memset(mem_temps, 1, s->nb_globals);
1324 for(i = s->nb_globals; i < s->nb_temps; i++) {
1325 mem_temps[i] = s->temps[i].temp_local;
1329 /* Liveness analysis : update the opc_dead_args array to tell if a
1330 given input arguments is dead. Instructions updating dead
1331 temporaries are removed. */
1332 static void tcg_liveness_analysis(TCGContext *s)
1334 uint8_t *dead_temps, *mem_temps;
1335 int oi, oi_prev, nb_ops;
1337 nb_ops = s->gen_next_op_idx;
1338 s->op_dead_args = tcg_malloc(nb_ops * sizeof(uint16_t));
1339 s->op_sync_args = tcg_malloc(nb_ops * sizeof(uint8_t));
1341 dead_temps = tcg_malloc(s->nb_temps);
1342 mem_temps = tcg_malloc(s->nb_temps);
1343 tcg_la_func_end(s, dead_temps, mem_temps);
1345 for (oi = s->gen_last_op_idx; oi >= 0; oi = oi_prev) {
1346 int i, nb_iargs, nb_oargs;
1347 TCGOpcode opc_new, opc_new2;
1348 bool have_opc_new2;
1349 uint16_t dead_args;
1350 uint8_t sync_args;
1351 TCGArg arg;
1353 TCGOp * const op = &s->gen_op_buf[oi];
1354 TCGArg * const args = &s->gen_opparam_buf[op->args];
1355 TCGOpcode opc = op->opc;
1356 const TCGOpDef *def = &tcg_op_defs[opc];
1358 oi_prev = op->prev;
1360 switch (opc) {
1361 case INDEX_op_call:
1363 int call_flags;
1365 nb_oargs = op->callo;
1366 nb_iargs = op->calli;
1367 call_flags = args[nb_oargs + nb_iargs + 1];
1369 /* pure functions can be removed if their result is unused */
1370 if (call_flags & TCG_CALL_NO_SIDE_EFFECTS) {
1371 for (i = 0; i < nb_oargs; i++) {
1372 arg = args[i];
1373 if (!dead_temps[arg] || mem_temps[arg]) {
1374 goto do_not_remove_call;
1377 goto do_remove;
1378 } else {
1379 do_not_remove_call:
1381 /* output args are dead */
1382 dead_args = 0;
1383 sync_args = 0;
1384 for (i = 0; i < nb_oargs; i++) {
1385 arg = args[i];
1386 if (dead_temps[arg]) {
1387 dead_args |= (1 << i);
1389 if (mem_temps[arg]) {
1390 sync_args |= (1 << i);
1392 dead_temps[arg] = 1;
1393 mem_temps[arg] = 0;
1396 if (!(call_flags & TCG_CALL_NO_READ_GLOBALS)) {
1397 /* globals should be synced to memory */
1398 memset(mem_temps, 1, s->nb_globals);
1400 if (!(call_flags & (TCG_CALL_NO_WRITE_GLOBALS |
1401 TCG_CALL_NO_READ_GLOBALS))) {
1402 /* globals should go back to memory */
1403 memset(dead_temps, 1, s->nb_globals);
1406 /* record arguments that die in this helper */
1407 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
1408 arg = args[i];
1409 if (arg != TCG_CALL_DUMMY_ARG) {
1410 if (dead_temps[arg]) {
1411 dead_args |= (1 << i);
1415 /* input arguments are live for preceding opcodes */
1416 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1417 arg = args[i];
1418 dead_temps[arg] = 0;
1420 s->op_dead_args[oi] = dead_args;
1421 s->op_sync_args[oi] = sync_args;
1424 break;
1425 case INDEX_op_insn_start:
1426 break;
1427 case INDEX_op_discard:
1428 /* mark the temporary as dead */
1429 dead_temps[args[0]] = 1;
1430 mem_temps[args[0]] = 0;
1431 break;
1433 case INDEX_op_add2_i32:
1434 opc_new = INDEX_op_add_i32;
1435 goto do_addsub2;
1436 case INDEX_op_sub2_i32:
1437 opc_new = INDEX_op_sub_i32;
1438 goto do_addsub2;
1439 case INDEX_op_add2_i64:
1440 opc_new = INDEX_op_add_i64;
1441 goto do_addsub2;
1442 case INDEX_op_sub2_i64:
1443 opc_new = INDEX_op_sub_i64;
1444 do_addsub2:
1445 nb_iargs = 4;
1446 nb_oargs = 2;
1447 /* Test if the high part of the operation is dead, but not
1448 the low part. The result can be optimized to a simple
1449 add or sub. This happens often for x86_64 guest when the
1450 cpu mode is set to 32 bit. */
1451 if (dead_temps[args[1]] && !mem_temps[args[1]]) {
1452 if (dead_temps[args[0]] && !mem_temps[args[0]]) {
1453 goto do_remove;
1455 /* Replace the opcode and adjust the args in place,
1456 leaving 3 unused args at the end. */
1457 op->opc = opc = opc_new;
1458 args[1] = args[2];
1459 args[2] = args[4];
1460 /* Fall through and mark the single-word operation live. */
1461 nb_iargs = 2;
1462 nb_oargs = 1;
1464 goto do_not_remove;
1466 case INDEX_op_mulu2_i32:
1467 opc_new = INDEX_op_mul_i32;
1468 opc_new2 = INDEX_op_muluh_i32;
1469 have_opc_new2 = TCG_TARGET_HAS_muluh_i32;
1470 goto do_mul2;
1471 case INDEX_op_muls2_i32:
1472 opc_new = INDEX_op_mul_i32;
1473 opc_new2 = INDEX_op_mulsh_i32;
1474 have_opc_new2 = TCG_TARGET_HAS_mulsh_i32;
1475 goto do_mul2;
1476 case INDEX_op_mulu2_i64:
1477 opc_new = INDEX_op_mul_i64;
1478 opc_new2 = INDEX_op_muluh_i64;
1479 have_opc_new2 = TCG_TARGET_HAS_muluh_i64;
1480 goto do_mul2;
1481 case INDEX_op_muls2_i64:
1482 opc_new = INDEX_op_mul_i64;
1483 opc_new2 = INDEX_op_mulsh_i64;
1484 have_opc_new2 = TCG_TARGET_HAS_mulsh_i64;
1485 goto do_mul2;
1486 do_mul2:
1487 nb_iargs = 2;
1488 nb_oargs = 2;
1489 if (dead_temps[args[1]] && !mem_temps[args[1]]) {
1490 if (dead_temps[args[0]] && !mem_temps[args[0]]) {
1491 /* Both parts of the operation are dead. */
1492 goto do_remove;
1494 /* The high part of the operation is dead; generate the low. */
1495 op->opc = opc = opc_new;
1496 args[1] = args[2];
1497 args[2] = args[3];
1498 } else if (have_opc_new2 && dead_temps[args[0]]
1499 && !mem_temps[args[0]]) {
1500 /* The low part of the operation is dead; generate the high. */
1501 op->opc = opc = opc_new2;
1502 args[0] = args[1];
1503 args[1] = args[2];
1504 args[2] = args[3];
1505 } else {
1506 goto do_not_remove;
1508 /* Mark the single-word operation live. */
1509 nb_oargs = 1;
1510 goto do_not_remove;
1512 default:
1513 /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
1514 nb_iargs = def->nb_iargs;
1515 nb_oargs = def->nb_oargs;
1517 /* Test if the operation can be removed because all
1518 its outputs are dead. We assume that nb_oargs == 0
1519 implies side effects */
1520 if (!(def->flags & TCG_OPF_SIDE_EFFECTS) && nb_oargs != 0) {
1521 for (i = 0; i < nb_oargs; i++) {
1522 arg = args[i];
1523 if (!dead_temps[arg] || mem_temps[arg]) {
1524 goto do_not_remove;
1527 do_remove:
1528 tcg_op_remove(s, op);
1529 } else {
1530 do_not_remove:
1531 /* output args are dead */
1532 dead_args = 0;
1533 sync_args = 0;
1534 for (i = 0; i < nb_oargs; i++) {
1535 arg = args[i];
1536 if (dead_temps[arg]) {
1537 dead_args |= (1 << i);
1539 if (mem_temps[arg]) {
1540 sync_args |= (1 << i);
1542 dead_temps[arg] = 1;
1543 mem_temps[arg] = 0;
1546 /* if end of basic block, update */
1547 if (def->flags & TCG_OPF_BB_END) {
1548 tcg_la_bb_end(s, dead_temps, mem_temps);
1549 } else if (def->flags & TCG_OPF_SIDE_EFFECTS) {
1550 /* globals should be synced to memory */
1551 memset(mem_temps, 1, s->nb_globals);
1554 /* record arguments that die in this opcode */
1555 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1556 arg = args[i];
1557 if (dead_temps[arg]) {
1558 dead_args |= (1 << i);
1561 /* input arguments are live for preceding opcodes */
1562 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1563 arg = args[i];
1564 dead_temps[arg] = 0;
1566 s->op_dead_args[oi] = dead_args;
1567 s->op_sync_args[oi] = sync_args;
1569 break;
1573 #else
1574 /* dummy liveness analysis */
1575 static void tcg_liveness_analysis(TCGContext *s)
1577 int nb_ops;
1578 nb_ops = s->gen_opc_ptr - s->gen_opc_buf;
1580 s->op_dead_args = tcg_malloc(nb_ops * sizeof(uint16_t));
1581 memset(s->op_dead_args, 0, nb_ops * sizeof(uint16_t));
1582 s->op_sync_args = tcg_malloc(nb_ops * sizeof(uint8_t));
1583 memset(s->op_sync_args, 0, nb_ops * sizeof(uint8_t));
1585 #endif
1587 #ifndef NDEBUG
1588 static void dump_regs(TCGContext *s)
1590 TCGTemp *ts;
1591 int i;
1592 char buf[64];
1594 for(i = 0; i < s->nb_temps; i++) {
1595 ts = &s->temps[i];
1596 printf(" %10s: ", tcg_get_arg_str_idx(s, buf, sizeof(buf), i));
1597 switch(ts->val_type) {
1598 case TEMP_VAL_REG:
1599 printf("%s", tcg_target_reg_names[ts->reg]);
1600 break;
1601 case TEMP_VAL_MEM:
1602 printf("%d(%s)", (int)ts->mem_offset, tcg_target_reg_names[ts->mem_reg]);
1603 break;
1604 case TEMP_VAL_CONST:
1605 printf("$0x%" TCG_PRIlx, ts->val);
1606 break;
1607 case TEMP_VAL_DEAD:
1608 printf("D");
1609 break;
1610 default:
1611 printf("???");
1612 break;
1614 printf("\n");
1617 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1618 if (s->reg_to_temp[i] >= 0) {
1619 printf("%s: %s\n",
1620 tcg_target_reg_names[i],
1621 tcg_get_arg_str_idx(s, buf, sizeof(buf), s->reg_to_temp[i]));
1626 static void check_regs(TCGContext *s)
1628 int reg, k;
1629 TCGTemp *ts;
1630 char buf[64];
1632 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1633 k = s->reg_to_temp[reg];
1634 if (k >= 0) {
1635 ts = &s->temps[k];
1636 if (ts->val_type != TEMP_VAL_REG ||
1637 ts->reg != reg) {
1638 printf("Inconsistency for register %s:\n",
1639 tcg_target_reg_names[reg]);
1640 goto fail;
1644 for(k = 0; k < s->nb_temps; k++) {
1645 ts = &s->temps[k];
1646 if (ts->val_type == TEMP_VAL_REG &&
1647 !ts->fixed_reg &&
1648 s->reg_to_temp[ts->reg] != k) {
1649 printf("Inconsistency for temp %s:\n",
1650 tcg_get_arg_str_idx(s, buf, sizeof(buf), k));
1651 fail:
1652 printf("reg state:\n");
1653 dump_regs(s);
1654 tcg_abort();
1658 #endif
1660 static void temp_allocate_frame(TCGContext *s, int temp)
1662 TCGTemp *ts;
1663 ts = &s->temps[temp];
1664 #if !(defined(__sparc__) && TCG_TARGET_REG_BITS == 64)
1665 /* Sparc64 stack is accessed with offset of 2047 */
1666 s->current_frame_offset = (s->current_frame_offset +
1667 (tcg_target_long)sizeof(tcg_target_long) - 1) &
1668 ~(sizeof(tcg_target_long) - 1);
1669 #endif
1670 if (s->current_frame_offset + (tcg_target_long)sizeof(tcg_target_long) >
1671 s->frame_end) {
1672 tcg_abort();
1674 ts->mem_offset = s->current_frame_offset;
1675 ts->mem_reg = s->frame_reg;
1676 ts->mem_allocated = 1;
1677 s->current_frame_offset += sizeof(tcg_target_long);
1680 /* sync register 'reg' by saving it to the corresponding temporary */
1681 static inline void tcg_reg_sync(TCGContext *s, int reg)
1683 TCGTemp *ts;
1684 int temp;
1686 temp = s->reg_to_temp[reg];
1687 ts = &s->temps[temp];
1688 assert(ts->val_type == TEMP_VAL_REG);
1689 if (!ts->mem_coherent && !ts->fixed_reg) {
1690 if (!ts->mem_allocated) {
1691 temp_allocate_frame(s, temp);
1693 tcg_out_st(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1695 ts->mem_coherent = 1;
1698 /* free register 'reg' by spilling the corresponding temporary if necessary */
1699 static void tcg_reg_free(TCGContext *s, int reg)
1701 int temp;
1703 temp = s->reg_to_temp[reg];
1704 if (temp != -1) {
1705 tcg_reg_sync(s, reg);
1706 s->temps[temp].val_type = TEMP_VAL_MEM;
1707 s->reg_to_temp[reg] = -1;
1711 /* Allocate a register belonging to reg1 & ~reg2 */
1712 static int tcg_reg_alloc(TCGContext *s, TCGRegSet reg1, TCGRegSet reg2)
1714 int i, reg;
1715 TCGRegSet reg_ct;
1717 tcg_regset_andnot(reg_ct, reg1, reg2);
1719 /* first try free registers */
1720 for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1721 reg = tcg_target_reg_alloc_order[i];
1722 if (tcg_regset_test_reg(reg_ct, reg) && s->reg_to_temp[reg] == -1)
1723 return reg;
1726 /* XXX: do better spill choice */
1727 for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1728 reg = tcg_target_reg_alloc_order[i];
1729 if (tcg_regset_test_reg(reg_ct, reg)) {
1730 tcg_reg_free(s, reg);
1731 return reg;
1735 tcg_abort();
1738 /* mark a temporary as dead. */
1739 static inline void temp_dead(TCGContext *s, int temp)
1741 TCGTemp *ts;
1743 ts = &s->temps[temp];
1744 if (!ts->fixed_reg) {
1745 if (ts->val_type == TEMP_VAL_REG) {
1746 s->reg_to_temp[ts->reg] = -1;
1748 if (temp < s->nb_globals || ts->temp_local) {
1749 ts->val_type = TEMP_VAL_MEM;
1750 } else {
1751 ts->val_type = TEMP_VAL_DEAD;
1756 /* sync a temporary to memory. 'allocated_regs' is used in case a
1757 temporary registers needs to be allocated to store a constant. */
1758 static inline void temp_sync(TCGContext *s, int temp, TCGRegSet allocated_regs)
1760 TCGTemp *ts;
1762 ts = &s->temps[temp];
1763 if (!ts->fixed_reg) {
1764 switch(ts->val_type) {
1765 case TEMP_VAL_CONST:
1766 ts->reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1767 allocated_regs);
1768 ts->val_type = TEMP_VAL_REG;
1769 s->reg_to_temp[ts->reg] = temp;
1770 ts->mem_coherent = 0;
1771 tcg_out_movi(s, ts->type, ts->reg, ts->val);
1772 /* fallthrough*/
1773 case TEMP_VAL_REG:
1774 tcg_reg_sync(s, ts->reg);
1775 break;
1776 case TEMP_VAL_DEAD:
1777 case TEMP_VAL_MEM:
1778 break;
1779 default:
1780 tcg_abort();
1785 /* save a temporary to memory. 'allocated_regs' is used in case a
1786 temporary registers needs to be allocated to store a constant. */
1787 static inline void temp_save(TCGContext *s, int temp, TCGRegSet allocated_regs)
1789 #ifdef USE_LIVENESS_ANALYSIS
1790 /* The liveness analysis already ensures that globals are back
1791 in memory. Keep an assert for safety. */
1792 assert(s->temps[temp].val_type == TEMP_VAL_MEM || s->temps[temp].fixed_reg);
1793 #else
1794 temp_sync(s, temp, allocated_regs);
1795 temp_dead(s, temp);
1796 #endif
1799 /* save globals to their canonical location and assume they can be
1800 modified be the following code. 'allocated_regs' is used in case a
1801 temporary registers needs to be allocated to store a constant. */
1802 static void save_globals(TCGContext *s, TCGRegSet allocated_regs)
1804 int i;
1806 for(i = 0; i < s->nb_globals; i++) {
1807 temp_save(s, i, allocated_regs);
1811 /* sync globals to their canonical location and assume they can be
1812 read by the following code. 'allocated_regs' is used in case a
1813 temporary registers needs to be allocated to store a constant. */
1814 static void sync_globals(TCGContext *s, TCGRegSet allocated_regs)
1816 int i;
1818 for (i = 0; i < s->nb_globals; i++) {
1819 #ifdef USE_LIVENESS_ANALYSIS
1820 assert(s->temps[i].val_type != TEMP_VAL_REG || s->temps[i].fixed_reg ||
1821 s->temps[i].mem_coherent);
1822 #else
1823 temp_sync(s, i, allocated_regs);
1824 #endif
1828 /* at the end of a basic block, we assume all temporaries are dead and
1829 all globals are stored at their canonical location. */
1830 static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs)
1832 TCGTemp *ts;
1833 int i;
1835 for(i = s->nb_globals; i < s->nb_temps; i++) {
1836 ts = &s->temps[i];
1837 if (ts->temp_local) {
1838 temp_save(s, i, allocated_regs);
1839 } else {
1840 #ifdef USE_LIVENESS_ANALYSIS
1841 /* The liveness analysis already ensures that temps are dead.
1842 Keep an assert for safety. */
1843 assert(ts->val_type == TEMP_VAL_DEAD);
1844 #else
1845 temp_dead(s, i);
1846 #endif
1850 save_globals(s, allocated_regs);
1853 #define IS_DEAD_ARG(n) ((dead_args >> (n)) & 1)
1854 #define NEED_SYNC_ARG(n) ((sync_args >> (n)) & 1)
1856 static void tcg_reg_alloc_movi(TCGContext *s, const TCGArg *args,
1857 uint16_t dead_args, uint8_t sync_args)
1859 TCGTemp *ots;
1860 tcg_target_ulong val;
1862 ots = &s->temps[args[0]];
1863 val = args[1];
1865 if (ots->fixed_reg) {
1866 /* for fixed registers, we do not do any constant
1867 propagation */
1868 tcg_out_movi(s, ots->type, ots->reg, val);
1869 } else {
1870 /* The movi is not explicitly generated here */
1871 if (ots->val_type == TEMP_VAL_REG)
1872 s->reg_to_temp[ots->reg] = -1;
1873 ots->val_type = TEMP_VAL_CONST;
1874 ots->val = val;
1876 if (NEED_SYNC_ARG(0)) {
1877 temp_sync(s, args[0], s->reserved_regs);
1879 if (IS_DEAD_ARG(0)) {
1880 temp_dead(s, args[0]);
1884 static void tcg_reg_alloc_mov(TCGContext *s, const TCGOpDef *def,
1885 const TCGArg *args, uint16_t dead_args,
1886 uint8_t sync_args)
1888 TCGRegSet allocated_regs;
1889 TCGTemp *ts, *ots;
1890 TCGType otype, itype;
1892 tcg_regset_set(allocated_regs, s->reserved_regs);
1893 ots = &s->temps[args[0]];
1894 ts = &s->temps[args[1]];
1896 /* Note that otype != itype for no-op truncation. */
1897 otype = ots->type;
1898 itype = ts->type;
1900 /* If the source value is not in a register, and we're going to be
1901 forced to have it in a register in order to perform the copy,
1902 then copy the SOURCE value into its own register first. That way
1903 we don't have to reload SOURCE the next time it is used. */
1904 if (((NEED_SYNC_ARG(0) || ots->fixed_reg) && ts->val_type != TEMP_VAL_REG)
1905 || ts->val_type == TEMP_VAL_MEM) {
1906 ts->reg = tcg_reg_alloc(s, tcg_target_available_regs[itype],
1907 allocated_regs);
1908 if (ts->val_type == TEMP_VAL_MEM) {
1909 tcg_out_ld(s, itype, ts->reg, ts->mem_reg, ts->mem_offset);
1910 ts->mem_coherent = 1;
1911 } else if (ts->val_type == TEMP_VAL_CONST) {
1912 tcg_out_movi(s, itype, ts->reg, ts->val);
1913 ts->mem_coherent = 0;
1915 s->reg_to_temp[ts->reg] = args[1];
1916 ts->val_type = TEMP_VAL_REG;
1919 if (IS_DEAD_ARG(0) && !ots->fixed_reg) {
1920 /* mov to a non-saved dead register makes no sense (even with
1921 liveness analysis disabled). */
1922 assert(NEED_SYNC_ARG(0));
1923 /* The code above should have moved the temp to a register. */
1924 assert(ts->val_type == TEMP_VAL_REG);
1925 if (!ots->mem_allocated) {
1926 temp_allocate_frame(s, args[0]);
1928 tcg_out_st(s, otype, ts->reg, ots->mem_reg, ots->mem_offset);
1929 if (IS_DEAD_ARG(1)) {
1930 temp_dead(s, args[1]);
1932 temp_dead(s, args[0]);
1933 } else if (ts->val_type == TEMP_VAL_CONST) {
1934 /* propagate constant */
1935 if (ots->val_type == TEMP_VAL_REG) {
1936 s->reg_to_temp[ots->reg] = -1;
1938 ots->val_type = TEMP_VAL_CONST;
1939 ots->val = ts->val;
1940 if (IS_DEAD_ARG(1)) {
1941 temp_dead(s, args[1]);
1943 } else {
1944 /* The code in the first if block should have moved the
1945 temp to a register. */
1946 assert(ts->val_type == TEMP_VAL_REG);
1947 if (IS_DEAD_ARG(1) && !ts->fixed_reg && !ots->fixed_reg) {
1948 /* the mov can be suppressed */
1949 if (ots->val_type == TEMP_VAL_REG) {
1950 s->reg_to_temp[ots->reg] = -1;
1952 ots->reg = ts->reg;
1953 temp_dead(s, args[1]);
1954 } else {
1955 if (ots->val_type != TEMP_VAL_REG) {
1956 /* When allocating a new register, make sure to not spill the
1957 input one. */
1958 tcg_regset_set_reg(allocated_regs, ts->reg);
1959 ots->reg = tcg_reg_alloc(s, tcg_target_available_regs[otype],
1960 allocated_regs);
1962 tcg_out_mov(s, otype, ots->reg, ts->reg);
1964 ots->val_type = TEMP_VAL_REG;
1965 ots->mem_coherent = 0;
1966 s->reg_to_temp[ots->reg] = args[0];
1967 if (NEED_SYNC_ARG(0)) {
1968 tcg_reg_sync(s, ots->reg);
1973 static void tcg_reg_alloc_op(TCGContext *s,
1974 const TCGOpDef *def, TCGOpcode opc,
1975 const TCGArg *args, uint16_t dead_args,
1976 uint8_t sync_args)
1978 TCGRegSet allocated_regs;
1979 int i, k, nb_iargs, nb_oargs, reg;
1980 TCGArg arg;
1981 const TCGArgConstraint *arg_ct;
1982 TCGTemp *ts;
1983 TCGArg new_args[TCG_MAX_OP_ARGS];
1984 int const_args[TCG_MAX_OP_ARGS];
1986 nb_oargs = def->nb_oargs;
1987 nb_iargs = def->nb_iargs;
1989 /* copy constants */
1990 memcpy(new_args + nb_oargs + nb_iargs,
1991 args + nb_oargs + nb_iargs,
1992 sizeof(TCGArg) * def->nb_cargs);
1994 /* satisfy input constraints */
1995 tcg_regset_set(allocated_regs, s->reserved_regs);
1996 for(k = 0; k < nb_iargs; k++) {
1997 i = def->sorted_args[nb_oargs + k];
1998 arg = args[i];
1999 arg_ct = &def->args_ct[i];
2000 ts = &s->temps[arg];
2001 if (ts->val_type == TEMP_VAL_MEM) {
2002 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2003 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
2004 ts->val_type = TEMP_VAL_REG;
2005 ts->reg = reg;
2006 ts->mem_coherent = 1;
2007 s->reg_to_temp[reg] = arg;
2008 } else if (ts->val_type == TEMP_VAL_CONST) {
2009 if (tcg_target_const_match(ts->val, ts->type, arg_ct)) {
2010 /* constant is OK for instruction */
2011 const_args[i] = 1;
2012 new_args[i] = ts->val;
2013 goto iarg_end;
2014 } else {
2015 /* need to move to a register */
2016 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2017 tcg_out_movi(s, ts->type, reg, ts->val);
2018 ts->val_type = TEMP_VAL_REG;
2019 ts->reg = reg;
2020 ts->mem_coherent = 0;
2021 s->reg_to_temp[reg] = arg;
2024 assert(ts->val_type == TEMP_VAL_REG);
2025 if (arg_ct->ct & TCG_CT_IALIAS) {
2026 if (ts->fixed_reg) {
2027 /* if fixed register, we must allocate a new register
2028 if the alias is not the same register */
2029 if (arg != args[arg_ct->alias_index])
2030 goto allocate_in_reg;
2031 } else {
2032 /* if the input is aliased to an output and if it is
2033 not dead after the instruction, we must allocate
2034 a new register and move it */
2035 if (!IS_DEAD_ARG(i)) {
2036 goto allocate_in_reg;
2038 /* check if the current register has already been allocated
2039 for another input aliased to an output */
2040 int k2, i2;
2041 for (k2 = 0 ; k2 < k ; k2++) {
2042 i2 = def->sorted_args[nb_oargs + k2];
2043 if ((def->args_ct[i2].ct & TCG_CT_IALIAS) &&
2044 (new_args[i2] == ts->reg)) {
2045 goto allocate_in_reg;
2050 reg = ts->reg;
2051 if (tcg_regset_test_reg(arg_ct->u.regs, reg)) {
2052 /* nothing to do : the constraint is satisfied */
2053 } else {
2054 allocate_in_reg:
2055 /* allocate a new register matching the constraint
2056 and move the temporary register into it */
2057 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2058 tcg_out_mov(s, ts->type, reg, ts->reg);
2060 new_args[i] = reg;
2061 const_args[i] = 0;
2062 tcg_regset_set_reg(allocated_regs, reg);
2063 iarg_end: ;
2066 /* mark dead temporaries and free the associated registers */
2067 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
2068 if (IS_DEAD_ARG(i)) {
2069 temp_dead(s, args[i]);
2073 if (def->flags & TCG_OPF_BB_END) {
2074 tcg_reg_alloc_bb_end(s, allocated_regs);
2075 } else {
2076 if (def->flags & TCG_OPF_CALL_CLOBBER) {
2077 /* XXX: permit generic clobber register list ? */
2078 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
2079 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
2080 tcg_reg_free(s, reg);
2084 if (def->flags & TCG_OPF_SIDE_EFFECTS) {
2085 /* sync globals if the op has side effects and might trigger
2086 an exception. */
2087 sync_globals(s, allocated_regs);
2090 /* satisfy the output constraints */
2091 tcg_regset_set(allocated_regs, s->reserved_regs);
2092 for(k = 0; k < nb_oargs; k++) {
2093 i = def->sorted_args[k];
2094 arg = args[i];
2095 arg_ct = &def->args_ct[i];
2096 ts = &s->temps[arg];
2097 if (arg_ct->ct & TCG_CT_ALIAS) {
2098 reg = new_args[arg_ct->alias_index];
2099 } else {
2100 /* if fixed register, we try to use it */
2101 reg = ts->reg;
2102 if (ts->fixed_reg &&
2103 tcg_regset_test_reg(arg_ct->u.regs, reg)) {
2104 goto oarg_end;
2106 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
2108 tcg_regset_set_reg(allocated_regs, reg);
2109 /* if a fixed register is used, then a move will be done afterwards */
2110 if (!ts->fixed_reg) {
2111 if (ts->val_type == TEMP_VAL_REG) {
2112 s->reg_to_temp[ts->reg] = -1;
2114 ts->val_type = TEMP_VAL_REG;
2115 ts->reg = reg;
2116 /* temp value is modified, so the value kept in memory is
2117 potentially not the same */
2118 ts->mem_coherent = 0;
2119 s->reg_to_temp[reg] = arg;
2121 oarg_end:
2122 new_args[i] = reg;
2126 /* emit instruction */
2127 tcg_out_op(s, opc, new_args, const_args);
2129 /* move the outputs in the correct register if needed */
2130 for(i = 0; i < nb_oargs; i++) {
2131 ts = &s->temps[args[i]];
2132 reg = new_args[i];
2133 if (ts->fixed_reg && ts->reg != reg) {
2134 tcg_out_mov(s, ts->type, ts->reg, reg);
2136 if (NEED_SYNC_ARG(i)) {
2137 tcg_reg_sync(s, reg);
2139 if (IS_DEAD_ARG(i)) {
2140 temp_dead(s, args[i]);
2145 #ifdef TCG_TARGET_STACK_GROWSUP
2146 #define STACK_DIR(x) (-(x))
2147 #else
2148 #define STACK_DIR(x) (x)
2149 #endif
2151 static void tcg_reg_alloc_call(TCGContext *s, int nb_oargs, int nb_iargs,
2152 const TCGArg * const args, uint16_t dead_args,
2153 uint8_t sync_args)
2155 int flags, nb_regs, i, reg;
2156 TCGArg arg;
2157 TCGTemp *ts;
2158 intptr_t stack_offset;
2159 size_t call_stack_size;
2160 tcg_insn_unit *func_addr;
2161 int allocate_args;
2162 TCGRegSet allocated_regs;
2164 func_addr = (tcg_insn_unit *)(intptr_t)args[nb_oargs + nb_iargs];
2165 flags = args[nb_oargs + nb_iargs + 1];
2167 nb_regs = ARRAY_SIZE(tcg_target_call_iarg_regs);
2168 if (nb_regs > nb_iargs) {
2169 nb_regs = nb_iargs;
2172 /* assign stack slots first */
2173 call_stack_size = (nb_iargs - nb_regs) * sizeof(tcg_target_long);
2174 call_stack_size = (call_stack_size + TCG_TARGET_STACK_ALIGN - 1) &
2175 ~(TCG_TARGET_STACK_ALIGN - 1);
2176 allocate_args = (call_stack_size > TCG_STATIC_CALL_ARGS_SIZE);
2177 if (allocate_args) {
2178 /* XXX: if more than TCG_STATIC_CALL_ARGS_SIZE is needed,
2179 preallocate call stack */
2180 tcg_abort();
2183 stack_offset = TCG_TARGET_CALL_STACK_OFFSET;
2184 for(i = nb_regs; i < nb_iargs; i++) {
2185 arg = args[nb_oargs + i];
2186 #ifdef TCG_TARGET_STACK_GROWSUP
2187 stack_offset -= sizeof(tcg_target_long);
2188 #endif
2189 if (arg != TCG_CALL_DUMMY_ARG) {
2190 ts = &s->temps[arg];
2191 if (ts->val_type == TEMP_VAL_REG) {
2192 tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, stack_offset);
2193 } else if (ts->val_type == TEMP_VAL_MEM) {
2194 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
2195 s->reserved_regs);
2196 /* XXX: not correct if reading values from the stack */
2197 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
2198 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
2199 } else if (ts->val_type == TEMP_VAL_CONST) {
2200 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
2201 s->reserved_regs);
2202 /* XXX: sign extend may be needed on some targets */
2203 tcg_out_movi(s, ts->type, reg, ts->val);
2204 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
2205 } else {
2206 tcg_abort();
2209 #ifndef TCG_TARGET_STACK_GROWSUP
2210 stack_offset += sizeof(tcg_target_long);
2211 #endif
2214 /* assign input registers */
2215 tcg_regset_set(allocated_regs, s->reserved_regs);
2216 for(i = 0; i < nb_regs; i++) {
2217 arg = args[nb_oargs + i];
2218 if (arg != TCG_CALL_DUMMY_ARG) {
2219 ts = &s->temps[arg];
2220 reg = tcg_target_call_iarg_regs[i];
2221 tcg_reg_free(s, reg);
2222 if (ts->val_type == TEMP_VAL_REG) {
2223 if (ts->reg != reg) {
2224 tcg_out_mov(s, ts->type, reg, ts->reg);
2226 } else if (ts->val_type == TEMP_VAL_MEM) {
2227 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
2228 } else if (ts->val_type == TEMP_VAL_CONST) {
2229 /* XXX: sign extend ? */
2230 tcg_out_movi(s, ts->type, reg, ts->val);
2231 } else {
2232 tcg_abort();
2234 tcg_regset_set_reg(allocated_regs, reg);
2238 /* mark dead temporaries and free the associated registers */
2239 for(i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
2240 if (IS_DEAD_ARG(i)) {
2241 temp_dead(s, args[i]);
2245 /* clobber call registers */
2246 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
2247 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
2248 tcg_reg_free(s, reg);
2252 /* Save globals if they might be written by the helper, sync them if
2253 they might be read. */
2254 if (flags & TCG_CALL_NO_READ_GLOBALS) {
2255 /* Nothing to do */
2256 } else if (flags & TCG_CALL_NO_WRITE_GLOBALS) {
2257 sync_globals(s, allocated_regs);
2258 } else {
2259 save_globals(s, allocated_regs);
2262 tcg_out_call(s, func_addr);
2264 /* assign output registers and emit moves if needed */
2265 for(i = 0; i < nb_oargs; i++) {
2266 arg = args[i];
2267 ts = &s->temps[arg];
2268 reg = tcg_target_call_oarg_regs[i];
2269 assert(s->reg_to_temp[reg] == -1);
2271 if (ts->fixed_reg) {
2272 if (ts->reg != reg) {
2273 tcg_out_mov(s, ts->type, ts->reg, reg);
2275 } else {
2276 if (ts->val_type == TEMP_VAL_REG) {
2277 s->reg_to_temp[ts->reg] = -1;
2279 ts->val_type = TEMP_VAL_REG;
2280 ts->reg = reg;
2281 ts->mem_coherent = 0;
2282 s->reg_to_temp[reg] = arg;
2283 if (NEED_SYNC_ARG(i)) {
2284 tcg_reg_sync(s, reg);
2286 if (IS_DEAD_ARG(i)) {
2287 temp_dead(s, args[i]);
2293 #ifdef CONFIG_PROFILER
2295 static int64_t tcg_table_op_count[NB_OPS];
2297 void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
2299 int i;
2301 for (i = 0; i < NB_OPS; i++) {
2302 cpu_fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name,
2303 tcg_table_op_count[i]);
2306 #else
2307 void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
2309 cpu_fprintf(f, "[TCG profiler not compiled]\n");
2311 #endif
2314 int tcg_gen_code(TCGContext *s, tcg_insn_unit *gen_code_buf)
2316 int i, oi, oi_next, num_insns;
2318 #ifdef CONFIG_PROFILER
2320 int n;
2322 n = s->gen_last_op_idx + 1;
2323 s->op_count += n;
2324 if (n > s->op_count_max) {
2325 s->op_count_max = n;
2328 n = s->nb_temps;
2329 s->temp_count += n;
2330 if (n > s->temp_count_max) {
2331 s->temp_count_max = n;
2334 #endif
2336 #ifdef DEBUG_DISAS
2337 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP))) {
2338 qemu_log("OP:\n");
2339 tcg_dump_ops(s);
2340 qemu_log("\n");
2342 #endif
2344 #ifdef CONFIG_PROFILER
2345 s->opt_time -= profile_getclock();
2346 #endif
2348 #ifdef USE_TCG_OPTIMIZATIONS
2349 tcg_optimize(s);
2350 #endif
2352 #ifdef CONFIG_PROFILER
2353 s->opt_time += profile_getclock();
2354 s->la_time -= profile_getclock();
2355 #endif
2357 tcg_liveness_analysis(s);
2359 #ifdef CONFIG_PROFILER
2360 s->la_time += profile_getclock();
2361 #endif
2363 #ifdef DEBUG_DISAS
2364 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_OPT))) {
2365 qemu_log("OP after optimization and liveness analysis:\n");
2366 tcg_dump_ops(s);
2367 qemu_log("\n");
2369 #endif
2371 tcg_reg_alloc_start(s);
2373 s->code_buf = gen_code_buf;
2374 s->code_ptr = gen_code_buf;
2376 tcg_out_tb_init(s);
2378 num_insns = -1;
2379 for (oi = s->gen_first_op_idx; oi >= 0; oi = oi_next) {
2380 TCGOp * const op = &s->gen_op_buf[oi];
2381 TCGArg * const args = &s->gen_opparam_buf[op->args];
2382 TCGOpcode opc = op->opc;
2383 const TCGOpDef *def = &tcg_op_defs[opc];
2384 uint16_t dead_args = s->op_dead_args[oi];
2385 uint8_t sync_args = s->op_sync_args[oi];
2387 oi_next = op->next;
2388 #ifdef CONFIG_PROFILER
2389 tcg_table_op_count[opc]++;
2390 #endif
2392 switch (opc) {
2393 case INDEX_op_mov_i32:
2394 case INDEX_op_mov_i64:
2395 tcg_reg_alloc_mov(s, def, args, dead_args, sync_args);
2396 break;
2397 case INDEX_op_movi_i32:
2398 case INDEX_op_movi_i64:
2399 tcg_reg_alloc_movi(s, args, dead_args, sync_args);
2400 break;
2401 case INDEX_op_insn_start:
2402 if (num_insns >= 0) {
2403 s->gen_insn_end_off[num_insns] = tcg_current_code_size(s);
2405 num_insns++;
2406 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
2407 target_ulong a;
2408 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
2409 a = ((target_ulong)args[i * 2 + 1] << 32) | args[i * 2];
2410 #else
2411 a = args[i];
2412 #endif
2413 s->gen_insn_data[num_insns][i] = a;
2415 break;
2416 case INDEX_op_discard:
2417 temp_dead(s, args[0]);
2418 break;
2419 case INDEX_op_set_label:
2420 tcg_reg_alloc_bb_end(s, s->reserved_regs);
2421 tcg_out_label(s, arg_label(args[0]), s->code_ptr);
2422 break;
2423 case INDEX_op_call:
2424 tcg_reg_alloc_call(s, op->callo, op->calli, args,
2425 dead_args, sync_args);
2426 break;
2427 default:
2428 /* Sanity check that we've not introduced any unhandled opcodes. */
2429 if (def->flags & TCG_OPF_NOT_PRESENT) {
2430 tcg_abort();
2432 /* Note: in order to speed up the code, it would be much
2433 faster to have specialized register allocator functions for
2434 some common argument patterns */
2435 tcg_reg_alloc_op(s, def, opc, args, dead_args, sync_args);
2436 break;
2438 #ifndef NDEBUG
2439 check_regs(s);
2440 #endif
2441 /* Test for (pending) buffer overflow. The assumption is that any
2442 one operation beginning below the high water mark cannot overrun
2443 the buffer completely. Thus we can test for overflow after
2444 generating code without having to check during generation. */
2445 if (unlikely(s->code_gen_ptr > s->code_gen_highwater)) {
2446 return -1;
2449 tcg_debug_assert(num_insns >= 0);
2450 s->gen_insn_end_off[num_insns] = tcg_current_code_size(s);
2452 /* Generate TB finalization at the end of block */
2453 tcg_out_tb_finalize(s);
2455 /* flush instruction cache */
2456 flush_icache_range((uintptr_t)s->code_buf, (uintptr_t)s->code_ptr);
2458 return tcg_current_code_size(s);
2461 #ifdef CONFIG_PROFILER
2462 void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
2464 TCGContext *s = &tcg_ctx;
2465 int64_t tb_count = s->tb_count;
2466 int64_t tb_div_count = tb_count ? tb_count : 1;
2467 int64_t tot = s->interm_time + s->code_time;
2469 cpu_fprintf(f, "JIT cycles %" PRId64 " (%0.3f s at 2.4 GHz)\n",
2470 tot, tot / 2.4e9);
2471 cpu_fprintf(f, "translated TBs %" PRId64 " (aborted=%" PRId64 " %0.1f%%)\n",
2472 tb_count, s->tb_count1 - tb_count,
2473 (double)(s->tb_count1 - s->tb_count)
2474 / (s->tb_count1 ? s->tb_count1 : 1) * 100.0);
2475 cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n",
2476 (double)s->op_count / tb_div_count, s->op_count_max);
2477 cpu_fprintf(f, "deleted ops/TB %0.2f\n",
2478 (double)s->del_op_count / tb_div_count);
2479 cpu_fprintf(f, "avg temps/TB %0.2f max=%d\n",
2480 (double)s->temp_count / tb_div_count, s->temp_count_max);
2481 cpu_fprintf(f, "avg host code/TB %0.1f\n",
2482 (double)s->code_out_len / tb_div_count);
2483 cpu_fprintf(f, "avg search data/TB %0.1f\n",
2484 (double)s->search_out_len / tb_div_count);
2486 cpu_fprintf(f, "cycles/op %0.1f\n",
2487 s->op_count ? (double)tot / s->op_count : 0);
2488 cpu_fprintf(f, "cycles/in byte %0.1f\n",
2489 s->code_in_len ? (double)tot / s->code_in_len : 0);
2490 cpu_fprintf(f, "cycles/out byte %0.1f\n",
2491 s->code_out_len ? (double)tot / s->code_out_len : 0);
2492 cpu_fprintf(f, "cycles/search byte %0.1f\n",
2493 s->search_out_len ? (double)tot / s->search_out_len : 0);
2494 if (tot == 0) {
2495 tot = 1;
2497 cpu_fprintf(f, " gen_interm time %0.1f%%\n",
2498 (double)s->interm_time / tot * 100.0);
2499 cpu_fprintf(f, " gen_code time %0.1f%%\n",
2500 (double)s->code_time / tot * 100.0);
2501 cpu_fprintf(f, "optim./code time %0.1f%%\n",
2502 (double)s->opt_time / (s->code_time ? s->code_time : 1)
2503 * 100.0);
2504 cpu_fprintf(f, "liveness/code time %0.1f%%\n",
2505 (double)s->la_time / (s->code_time ? s->code_time : 1) * 100.0);
2506 cpu_fprintf(f, "cpu_restore count %" PRId64 "\n",
2507 s->restore_count);
2508 cpu_fprintf(f, " avg cycles %0.1f\n",
2509 s->restore_count ? (double)s->restore_time / s->restore_count : 0);
2511 #else
2512 void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
2514 cpu_fprintf(f, "[TCG profiler not compiled]\n");
2516 #endif
2518 #ifdef ELF_HOST_MACHINE
2519 /* In order to use this feature, the backend needs to do three things:
2521 (1) Define ELF_HOST_MACHINE to indicate both what value to
2522 put into the ELF image and to indicate support for the feature.
2524 (2) Define tcg_register_jit. This should create a buffer containing
2525 the contents of a .debug_frame section that describes the post-
2526 prologue unwind info for the tcg machine.
2528 (3) Call tcg_register_jit_int, with the constructed .debug_frame.
2531 /* Begin GDB interface. THE FOLLOWING MUST MATCH GDB DOCS. */
2532 typedef enum {
2533 JIT_NOACTION = 0,
2534 JIT_REGISTER_FN,
2535 JIT_UNREGISTER_FN
2536 } jit_actions_t;
2538 struct jit_code_entry {
2539 struct jit_code_entry *next_entry;
2540 struct jit_code_entry *prev_entry;
2541 const void *symfile_addr;
2542 uint64_t symfile_size;
2545 struct jit_descriptor {
2546 uint32_t version;
2547 uint32_t action_flag;
2548 struct jit_code_entry *relevant_entry;
2549 struct jit_code_entry *first_entry;
2552 void __jit_debug_register_code(void) __attribute__((noinline));
2553 void __jit_debug_register_code(void)
2555 asm("");
2558 /* Must statically initialize the version, because GDB may check
2559 the version before we can set it. */
2560 struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 };
2562 /* End GDB interface. */
2564 static int find_string(const char *strtab, const char *str)
2566 const char *p = strtab + 1;
2568 while (1) {
2569 if (strcmp(p, str) == 0) {
2570 return p - strtab;
2572 p += strlen(p) + 1;
2576 static void tcg_register_jit_int(void *buf_ptr, size_t buf_size,
2577 const void *debug_frame,
2578 size_t debug_frame_size)
2580 struct __attribute__((packed)) DebugInfo {
2581 uint32_t len;
2582 uint16_t version;
2583 uint32_t abbrev;
2584 uint8_t ptr_size;
2585 uint8_t cu_die;
2586 uint16_t cu_lang;
2587 uintptr_t cu_low_pc;
2588 uintptr_t cu_high_pc;
2589 uint8_t fn_die;
2590 char fn_name[16];
2591 uintptr_t fn_low_pc;
2592 uintptr_t fn_high_pc;
2593 uint8_t cu_eoc;
2596 struct ElfImage {
2597 ElfW(Ehdr) ehdr;
2598 ElfW(Phdr) phdr;
2599 ElfW(Shdr) shdr[7];
2600 ElfW(Sym) sym[2];
2601 struct DebugInfo di;
2602 uint8_t da[24];
2603 char str[80];
2606 struct ElfImage *img;
2608 static const struct ElfImage img_template = {
2609 .ehdr = {
2610 .e_ident[EI_MAG0] = ELFMAG0,
2611 .e_ident[EI_MAG1] = ELFMAG1,
2612 .e_ident[EI_MAG2] = ELFMAG2,
2613 .e_ident[EI_MAG3] = ELFMAG3,
2614 .e_ident[EI_CLASS] = ELF_CLASS,
2615 .e_ident[EI_DATA] = ELF_DATA,
2616 .e_ident[EI_VERSION] = EV_CURRENT,
2617 .e_type = ET_EXEC,
2618 .e_machine = ELF_HOST_MACHINE,
2619 .e_version = EV_CURRENT,
2620 .e_phoff = offsetof(struct ElfImage, phdr),
2621 .e_shoff = offsetof(struct ElfImage, shdr),
2622 .e_ehsize = sizeof(ElfW(Shdr)),
2623 .e_phentsize = sizeof(ElfW(Phdr)),
2624 .e_phnum = 1,
2625 .e_shentsize = sizeof(ElfW(Shdr)),
2626 .e_shnum = ARRAY_SIZE(img->shdr),
2627 .e_shstrndx = ARRAY_SIZE(img->shdr) - 1,
2628 #ifdef ELF_HOST_FLAGS
2629 .e_flags = ELF_HOST_FLAGS,
2630 #endif
2631 #ifdef ELF_OSABI
2632 .e_ident[EI_OSABI] = ELF_OSABI,
2633 #endif
2635 .phdr = {
2636 .p_type = PT_LOAD,
2637 .p_flags = PF_X,
2639 .shdr = {
2640 [0] = { .sh_type = SHT_NULL },
2641 /* Trick: The contents of code_gen_buffer are not present in
2642 this fake ELF file; that got allocated elsewhere. Therefore
2643 we mark .text as SHT_NOBITS (similar to .bss) so that readers
2644 will not look for contents. We can record any address. */
2645 [1] = { /* .text */
2646 .sh_type = SHT_NOBITS,
2647 .sh_flags = SHF_EXECINSTR | SHF_ALLOC,
2649 [2] = { /* .debug_info */
2650 .sh_type = SHT_PROGBITS,
2651 .sh_offset = offsetof(struct ElfImage, di),
2652 .sh_size = sizeof(struct DebugInfo),
2654 [3] = { /* .debug_abbrev */
2655 .sh_type = SHT_PROGBITS,
2656 .sh_offset = offsetof(struct ElfImage, da),
2657 .sh_size = sizeof(img->da),
2659 [4] = { /* .debug_frame */
2660 .sh_type = SHT_PROGBITS,
2661 .sh_offset = sizeof(struct ElfImage),
2663 [5] = { /* .symtab */
2664 .sh_type = SHT_SYMTAB,
2665 .sh_offset = offsetof(struct ElfImage, sym),
2666 .sh_size = sizeof(img->sym),
2667 .sh_info = 1,
2668 .sh_link = ARRAY_SIZE(img->shdr) - 1,
2669 .sh_entsize = sizeof(ElfW(Sym)),
2671 [6] = { /* .strtab */
2672 .sh_type = SHT_STRTAB,
2673 .sh_offset = offsetof(struct ElfImage, str),
2674 .sh_size = sizeof(img->str),
2677 .sym = {
2678 [1] = { /* code_gen_buffer */
2679 .st_info = ELF_ST_INFO(STB_GLOBAL, STT_FUNC),
2680 .st_shndx = 1,
2683 .di = {
2684 .len = sizeof(struct DebugInfo) - 4,
2685 .version = 2,
2686 .ptr_size = sizeof(void *),
2687 .cu_die = 1,
2688 .cu_lang = 0x8001, /* DW_LANG_Mips_Assembler */
2689 .fn_die = 2,
2690 .fn_name = "code_gen_buffer"
2692 .da = {
2693 1, /* abbrev number (the cu) */
2694 0x11, 1, /* DW_TAG_compile_unit, has children */
2695 0x13, 0x5, /* DW_AT_language, DW_FORM_data2 */
2696 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
2697 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
2698 0, 0, /* end of abbrev */
2699 2, /* abbrev number (the fn) */
2700 0x2e, 0, /* DW_TAG_subprogram, no children */
2701 0x3, 0x8, /* DW_AT_name, DW_FORM_string */
2702 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
2703 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
2704 0, 0, /* end of abbrev */
2705 0 /* no more abbrev */
2707 .str = "\0" ".text\0" ".debug_info\0" ".debug_abbrev\0"
2708 ".debug_frame\0" ".symtab\0" ".strtab\0" "code_gen_buffer",
2711 /* We only need a single jit entry; statically allocate it. */
2712 static struct jit_code_entry one_entry;
2714 uintptr_t buf = (uintptr_t)buf_ptr;
2715 size_t img_size = sizeof(struct ElfImage) + debug_frame_size;
2716 DebugFrameHeader *dfh;
2718 img = g_malloc(img_size);
2719 *img = img_template;
2721 img->phdr.p_vaddr = buf;
2722 img->phdr.p_paddr = buf;
2723 img->phdr.p_memsz = buf_size;
2725 img->shdr[1].sh_name = find_string(img->str, ".text");
2726 img->shdr[1].sh_addr = buf;
2727 img->shdr[1].sh_size = buf_size;
2729 img->shdr[2].sh_name = find_string(img->str, ".debug_info");
2730 img->shdr[3].sh_name = find_string(img->str, ".debug_abbrev");
2732 img->shdr[4].sh_name = find_string(img->str, ".debug_frame");
2733 img->shdr[4].sh_size = debug_frame_size;
2735 img->shdr[5].sh_name = find_string(img->str, ".symtab");
2736 img->shdr[6].sh_name = find_string(img->str, ".strtab");
2738 img->sym[1].st_name = find_string(img->str, "code_gen_buffer");
2739 img->sym[1].st_value = buf;
2740 img->sym[1].st_size = buf_size;
2742 img->di.cu_low_pc = buf;
2743 img->di.cu_high_pc = buf + buf_size;
2744 img->di.fn_low_pc = buf;
2745 img->di.fn_high_pc = buf + buf_size;
2747 dfh = (DebugFrameHeader *)(img + 1);
2748 memcpy(dfh, debug_frame, debug_frame_size);
2749 dfh->fde.func_start = buf;
2750 dfh->fde.func_len = buf_size;
2752 #ifdef DEBUG_JIT
2753 /* Enable this block to be able to debug the ELF image file creation.
2754 One can use readelf, objdump, or other inspection utilities. */
2756 FILE *f = fopen("/tmp/qemu.jit", "w+b");
2757 if (f) {
2758 if (fwrite(img, img_size, 1, f) != img_size) {
2759 /* Avoid stupid unused return value warning for fwrite. */
2761 fclose(f);
2764 #endif
2766 one_entry.symfile_addr = img;
2767 one_entry.symfile_size = img_size;
2769 __jit_debug_descriptor.action_flag = JIT_REGISTER_FN;
2770 __jit_debug_descriptor.relevant_entry = &one_entry;
2771 __jit_debug_descriptor.first_entry = &one_entry;
2772 __jit_debug_register_code();
2774 #else
2775 /* No support for the feature. Provide the entry point expected by exec.c,
2776 and implement the internal function we declared earlier. */
2778 static void tcg_register_jit_int(void *buf, size_t size,
2779 const void *debug_frame,
2780 size_t debug_frame_size)
2784 void tcg_register_jit(void *buf, size_t buf_size)
2787 #endif /* ELF_HOST_MACHINE */