tcg: Compress liveness data to 16 bits
[qemu/ar7.git] / tcg / tcg.c
blob4aa1933a3e9c3b426dd14fa22838dfb21d7280e7
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 "qemu/osdep.h"
31 /* Define to jump the ELF file used to communicate with GDB. */
32 #undef DEBUG_JIT
34 #include "qemu/cutils.h"
35 #include "qemu/host-utils.h"
36 #include "qemu/timer.h"
38 /* Note: the long term plan is to reduce the dependencies on the QEMU
39 CPU definitions. Currently they are used for qemu_ld/st
40 instructions */
41 #define NO_CPU_IO_DEFS
42 #include "cpu.h"
44 #include "qemu/host-utils.h"
45 #include "qemu/timer.h"
46 #include "exec/cpu-common.h"
47 #include "exec/exec-all.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"
63 #include "exec/log.h"
65 /* Forward declarations for functions declared in tcg-target.inc.c and
66 used here. */
67 static void tcg_target_init(TCGContext *s);
68 static void tcg_target_qemu_prologue(TCGContext *s);
69 static void patch_reloc(tcg_insn_unit *code_ptr, int type,
70 intptr_t value, intptr_t addend);
72 /* The CIE and FDE header definitions will be common to all hosts. */
73 typedef struct {
74 uint32_t len __attribute__((aligned((sizeof(void *)))));
75 uint32_t id;
76 uint8_t version;
77 char augmentation[1];
78 uint8_t code_align;
79 uint8_t data_align;
80 uint8_t return_column;
81 } DebugFrameCIE;
83 typedef struct QEMU_PACKED {
84 uint32_t len __attribute__((aligned((sizeof(void *)))));
85 uint32_t cie_offset;
86 uintptr_t func_start;
87 uintptr_t func_len;
88 } DebugFrameFDEHeader;
90 typedef struct QEMU_PACKED {
91 DebugFrameCIE cie;
92 DebugFrameFDEHeader fde;
93 } DebugFrameHeader;
95 static void tcg_register_jit_int(void *buf, size_t size,
96 const void *debug_frame,
97 size_t debug_frame_size)
98 __attribute__((unused));
100 /* Forward declarations for functions declared and used in tcg-target.inc.c. */
101 static int target_parse_constraint(TCGArgConstraint *ct, const char **pct_str);
102 static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg1,
103 intptr_t arg2);
104 static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg);
105 static void tcg_out_movi(TCGContext *s, TCGType type,
106 TCGReg ret, tcg_target_long arg);
107 static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
108 const int *const_args);
109 static void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg, TCGReg arg1,
110 intptr_t arg2);
111 static bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
112 TCGReg base, intptr_t ofs);
113 static void tcg_out_call(TCGContext *s, tcg_insn_unit *target);
114 static int tcg_target_const_match(tcg_target_long val, TCGType type,
115 const TCGArgConstraint *arg_ct);
116 static void tcg_out_tb_init(TCGContext *s);
117 static bool tcg_out_tb_finalize(TCGContext *s);
121 static TCGRegSet tcg_target_available_regs[2];
122 static TCGRegSet tcg_target_call_clobber_regs;
124 #if TCG_TARGET_INSN_UNIT_SIZE == 1
125 static __attribute__((unused)) inline void tcg_out8(TCGContext *s, uint8_t v)
127 *s->code_ptr++ = v;
130 static __attribute__((unused)) inline void tcg_patch8(tcg_insn_unit *p,
131 uint8_t v)
133 *p = v;
135 #endif
137 #if TCG_TARGET_INSN_UNIT_SIZE <= 2
138 static __attribute__((unused)) inline void tcg_out16(TCGContext *s, uint16_t v)
140 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
141 *s->code_ptr++ = v;
142 } else {
143 tcg_insn_unit *p = s->code_ptr;
144 memcpy(p, &v, sizeof(v));
145 s->code_ptr = p + (2 / TCG_TARGET_INSN_UNIT_SIZE);
149 static __attribute__((unused)) inline void tcg_patch16(tcg_insn_unit *p,
150 uint16_t v)
152 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
153 *p = v;
154 } else {
155 memcpy(p, &v, sizeof(v));
158 #endif
160 #if TCG_TARGET_INSN_UNIT_SIZE <= 4
161 static __attribute__((unused)) inline void tcg_out32(TCGContext *s, uint32_t v)
163 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
164 *s->code_ptr++ = v;
165 } else {
166 tcg_insn_unit *p = s->code_ptr;
167 memcpy(p, &v, sizeof(v));
168 s->code_ptr = p + (4 / TCG_TARGET_INSN_UNIT_SIZE);
172 static __attribute__((unused)) inline void tcg_patch32(tcg_insn_unit *p,
173 uint32_t v)
175 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
176 *p = v;
177 } else {
178 memcpy(p, &v, sizeof(v));
181 #endif
183 #if TCG_TARGET_INSN_UNIT_SIZE <= 8
184 static __attribute__((unused)) inline void tcg_out64(TCGContext *s, uint64_t v)
186 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
187 *s->code_ptr++ = v;
188 } else {
189 tcg_insn_unit *p = s->code_ptr;
190 memcpy(p, &v, sizeof(v));
191 s->code_ptr = p + (8 / TCG_TARGET_INSN_UNIT_SIZE);
195 static __attribute__((unused)) inline void tcg_patch64(tcg_insn_unit *p,
196 uint64_t v)
198 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
199 *p = v;
200 } else {
201 memcpy(p, &v, sizeof(v));
204 #endif
206 /* label relocation processing */
208 static void tcg_out_reloc(TCGContext *s, tcg_insn_unit *code_ptr, int type,
209 TCGLabel *l, intptr_t addend)
211 TCGRelocation *r;
213 if (l->has_value) {
214 /* FIXME: This may break relocations on RISC targets that
215 modify instruction fields in place. The caller may not have
216 written the initial value. */
217 patch_reloc(code_ptr, type, l->u.value, addend);
218 } else {
219 /* add a new relocation entry */
220 r = tcg_malloc(sizeof(TCGRelocation));
221 r->type = type;
222 r->ptr = code_ptr;
223 r->addend = addend;
224 r->next = l->u.first_reloc;
225 l->u.first_reloc = r;
229 static void tcg_out_label(TCGContext *s, TCGLabel *l, tcg_insn_unit *ptr)
231 intptr_t value = (intptr_t)ptr;
232 TCGRelocation *r;
234 tcg_debug_assert(!l->has_value);
236 for (r = l->u.first_reloc; r != NULL; r = r->next) {
237 patch_reloc(r->ptr, r->type, value, r->addend);
240 l->has_value = 1;
241 l->u.value_ptr = ptr;
244 TCGLabel *gen_new_label(void)
246 TCGContext *s = &tcg_ctx;
247 TCGLabel *l = tcg_malloc(sizeof(TCGLabel));
249 *l = (TCGLabel){
250 .id = s->nb_labels++
253 return l;
256 #include "tcg-target.inc.c"
258 /* pool based memory allocation */
259 void *tcg_malloc_internal(TCGContext *s, int size)
261 TCGPool *p;
262 int pool_size;
264 if (size > TCG_POOL_CHUNK_SIZE) {
265 /* big malloc: insert a new pool (XXX: could optimize) */
266 p = g_malloc(sizeof(TCGPool) + size);
267 p->size = size;
268 p->next = s->pool_first_large;
269 s->pool_first_large = p;
270 return p->data;
271 } else {
272 p = s->pool_current;
273 if (!p) {
274 p = s->pool_first;
275 if (!p)
276 goto new_pool;
277 } else {
278 if (!p->next) {
279 new_pool:
280 pool_size = TCG_POOL_CHUNK_SIZE;
281 p = g_malloc(sizeof(TCGPool) + pool_size);
282 p->size = pool_size;
283 p->next = NULL;
284 if (s->pool_current)
285 s->pool_current->next = p;
286 else
287 s->pool_first = p;
288 } else {
289 p = p->next;
293 s->pool_current = p;
294 s->pool_cur = p->data + size;
295 s->pool_end = p->data + p->size;
296 return p->data;
299 void tcg_pool_reset(TCGContext *s)
301 TCGPool *p, *t;
302 for (p = s->pool_first_large; p; p = t) {
303 t = p->next;
304 g_free(p);
306 s->pool_first_large = NULL;
307 s->pool_cur = s->pool_end = NULL;
308 s->pool_current = NULL;
311 typedef struct TCGHelperInfo {
312 void *func;
313 const char *name;
314 unsigned flags;
315 unsigned sizemask;
316 } TCGHelperInfo;
318 #include "exec/helper-proto.h"
320 static const TCGHelperInfo all_helpers[] = {
321 #include "exec/helper-tcg.h"
324 static int indirect_reg_alloc_order[ARRAY_SIZE(tcg_target_reg_alloc_order)];
326 void tcg_context_init(TCGContext *s)
328 int op, total_args, n, i;
329 TCGOpDef *def;
330 TCGArgConstraint *args_ct;
331 int *sorted_args;
332 GHashTable *helper_table;
334 memset(s, 0, sizeof(*s));
335 s->nb_globals = 0;
337 /* Count total number of arguments and allocate the corresponding
338 space */
339 total_args = 0;
340 for(op = 0; op < NB_OPS; op++) {
341 def = &tcg_op_defs[op];
342 n = def->nb_iargs + def->nb_oargs;
343 total_args += n;
346 args_ct = g_malloc(sizeof(TCGArgConstraint) * total_args);
347 sorted_args = g_malloc(sizeof(int) * total_args);
349 for(op = 0; op < NB_OPS; op++) {
350 def = &tcg_op_defs[op];
351 def->args_ct = args_ct;
352 def->sorted_args = sorted_args;
353 n = def->nb_iargs + def->nb_oargs;
354 sorted_args += n;
355 args_ct += n;
358 /* Register helpers. */
359 /* Use g_direct_hash/equal for direct pointer comparisons on func. */
360 s->helpers = helper_table = g_hash_table_new(NULL, NULL);
362 for (i = 0; i < ARRAY_SIZE(all_helpers); ++i) {
363 g_hash_table_insert(helper_table, (gpointer)all_helpers[i].func,
364 (gpointer)&all_helpers[i]);
367 tcg_target_init(s);
369 /* Reverse the order of the saved registers, assuming they're all at
370 the start of tcg_target_reg_alloc_order. */
371 for (n = 0; n < ARRAY_SIZE(tcg_target_reg_alloc_order); ++n) {
372 int r = tcg_target_reg_alloc_order[n];
373 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, r)) {
374 break;
377 for (i = 0; i < n; ++i) {
378 indirect_reg_alloc_order[i] = tcg_target_reg_alloc_order[n - 1 - i];
380 for (; i < ARRAY_SIZE(tcg_target_reg_alloc_order); ++i) {
381 indirect_reg_alloc_order[i] = tcg_target_reg_alloc_order[i];
385 void tcg_prologue_init(TCGContext *s)
387 size_t prologue_size, total_size;
388 void *buf0, *buf1;
390 /* Put the prologue at the beginning of code_gen_buffer. */
391 buf0 = s->code_gen_buffer;
392 s->code_ptr = buf0;
393 s->code_buf = buf0;
394 s->code_gen_prologue = buf0;
396 /* Generate the prologue. */
397 tcg_target_qemu_prologue(s);
398 buf1 = s->code_ptr;
399 flush_icache_range((uintptr_t)buf0, (uintptr_t)buf1);
401 /* Deduct the prologue from the buffer. */
402 prologue_size = tcg_current_code_size(s);
403 s->code_gen_ptr = buf1;
404 s->code_gen_buffer = buf1;
405 s->code_buf = buf1;
406 total_size = s->code_gen_buffer_size - prologue_size;
407 s->code_gen_buffer_size = total_size;
409 /* Compute a high-water mark, at which we voluntarily flush the buffer
410 and start over. The size here is arbitrary, significantly larger
411 than we expect the code generation for any one opcode to require. */
412 s->code_gen_highwater = s->code_gen_buffer + (total_size - 1024);
414 tcg_register_jit(s->code_gen_buffer, total_size);
416 #ifdef DEBUG_DISAS
417 if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM)) {
418 qemu_log("PROLOGUE: [size=%zu]\n", prologue_size);
419 log_disas(buf0, prologue_size);
420 qemu_log("\n");
421 qemu_log_flush();
423 #endif
426 void tcg_func_start(TCGContext *s)
428 tcg_pool_reset(s);
429 s->nb_temps = s->nb_globals;
431 /* No temps have been previously allocated for size or locality. */
432 memset(s->free_temps, 0, sizeof(s->free_temps));
434 s->nb_labels = 0;
435 s->current_frame_offset = s->frame_start;
437 #ifdef CONFIG_DEBUG_TCG
438 s->goto_tb_issue_mask = 0;
439 #endif
441 s->gen_first_op_idx = 0;
442 s->gen_last_op_idx = -1;
443 s->gen_next_op_idx = 0;
444 s->gen_next_parm_idx = 0;
446 s->be = tcg_malloc(sizeof(TCGBackendData));
449 static inline int temp_idx(TCGContext *s, TCGTemp *ts)
451 ptrdiff_t n = ts - s->temps;
452 tcg_debug_assert(n >= 0 && n < s->nb_temps);
453 return n;
456 static inline TCGTemp *tcg_temp_alloc(TCGContext *s)
458 int n = s->nb_temps++;
459 tcg_debug_assert(n < TCG_MAX_TEMPS);
460 return memset(&s->temps[n], 0, sizeof(TCGTemp));
463 static inline TCGTemp *tcg_global_alloc(TCGContext *s)
465 tcg_debug_assert(s->nb_globals == s->nb_temps);
466 s->nb_globals++;
467 return tcg_temp_alloc(s);
470 static int tcg_global_reg_new_internal(TCGContext *s, TCGType type,
471 TCGReg reg, const char *name)
473 TCGTemp *ts;
475 if (TCG_TARGET_REG_BITS == 32 && type != TCG_TYPE_I32) {
476 tcg_abort();
479 ts = tcg_global_alloc(s);
480 ts->base_type = type;
481 ts->type = type;
482 ts->fixed_reg = 1;
483 ts->reg = reg;
484 ts->name = name;
485 tcg_regset_set_reg(s->reserved_regs, reg);
487 return temp_idx(s, ts);
490 void tcg_set_frame(TCGContext *s, TCGReg reg, intptr_t start, intptr_t size)
492 int idx;
493 s->frame_start = start;
494 s->frame_end = start + size;
495 idx = tcg_global_reg_new_internal(s, TCG_TYPE_PTR, reg, "_frame");
496 s->frame_temp = &s->temps[idx];
499 TCGv_i32 tcg_global_reg_new_i32(TCGReg reg, const char *name)
501 TCGContext *s = &tcg_ctx;
502 int idx;
504 if (tcg_regset_test_reg(s->reserved_regs, reg)) {
505 tcg_abort();
507 idx = tcg_global_reg_new_internal(s, TCG_TYPE_I32, reg, name);
508 return MAKE_TCGV_I32(idx);
511 TCGv_i64 tcg_global_reg_new_i64(TCGReg reg, const char *name)
513 TCGContext *s = &tcg_ctx;
514 int idx;
516 if (tcg_regset_test_reg(s->reserved_regs, reg)) {
517 tcg_abort();
519 idx = tcg_global_reg_new_internal(s, TCG_TYPE_I64, reg, name);
520 return MAKE_TCGV_I64(idx);
523 int tcg_global_mem_new_internal(TCGType type, TCGv_ptr base,
524 intptr_t offset, const char *name)
526 TCGContext *s = &tcg_ctx;
527 TCGTemp *base_ts = &s->temps[GET_TCGV_PTR(base)];
528 TCGTemp *ts = tcg_global_alloc(s);
529 int indirect_reg = 0, bigendian = 0;
530 #ifdef HOST_WORDS_BIGENDIAN
531 bigendian = 1;
532 #endif
534 if (!base_ts->fixed_reg) {
535 indirect_reg = 1;
536 base_ts->indirect_base = 1;
539 if (TCG_TARGET_REG_BITS == 32 && type == TCG_TYPE_I64) {
540 TCGTemp *ts2 = tcg_global_alloc(s);
541 char buf[64];
543 ts->base_type = TCG_TYPE_I64;
544 ts->type = TCG_TYPE_I32;
545 ts->indirect_reg = indirect_reg;
546 ts->mem_allocated = 1;
547 ts->mem_base = base_ts;
548 ts->mem_offset = offset + bigendian * 4;
549 pstrcpy(buf, sizeof(buf), name);
550 pstrcat(buf, sizeof(buf), "_0");
551 ts->name = strdup(buf);
553 tcg_debug_assert(ts2 == ts + 1);
554 ts2->base_type = TCG_TYPE_I64;
555 ts2->type = TCG_TYPE_I32;
556 ts2->indirect_reg = indirect_reg;
557 ts2->mem_allocated = 1;
558 ts2->mem_base = base_ts;
559 ts2->mem_offset = offset + (1 - bigendian) * 4;
560 pstrcpy(buf, sizeof(buf), name);
561 pstrcat(buf, sizeof(buf), "_1");
562 ts2->name = strdup(buf);
563 } else {
564 ts->base_type = type;
565 ts->type = type;
566 ts->indirect_reg = indirect_reg;
567 ts->mem_allocated = 1;
568 ts->mem_base = base_ts;
569 ts->mem_offset = offset;
570 ts->name = name;
572 return temp_idx(s, ts);
575 static int tcg_temp_new_internal(TCGType type, int temp_local)
577 TCGContext *s = &tcg_ctx;
578 TCGTemp *ts;
579 int idx, k;
581 k = type + (temp_local ? TCG_TYPE_COUNT : 0);
582 idx = find_first_bit(s->free_temps[k].l, TCG_MAX_TEMPS);
583 if (idx < TCG_MAX_TEMPS) {
584 /* There is already an available temp with the right type. */
585 clear_bit(idx, s->free_temps[k].l);
587 ts = &s->temps[idx];
588 ts->temp_allocated = 1;
589 tcg_debug_assert(ts->base_type == type);
590 tcg_debug_assert(ts->temp_local == temp_local);
591 } else {
592 ts = tcg_temp_alloc(s);
593 if (TCG_TARGET_REG_BITS == 32 && type == TCG_TYPE_I64) {
594 TCGTemp *ts2 = tcg_temp_alloc(s);
596 ts->base_type = type;
597 ts->type = TCG_TYPE_I32;
598 ts->temp_allocated = 1;
599 ts->temp_local = temp_local;
601 tcg_debug_assert(ts2 == ts + 1);
602 ts2->base_type = TCG_TYPE_I64;
603 ts2->type = TCG_TYPE_I32;
604 ts2->temp_allocated = 1;
605 ts2->temp_local = temp_local;
606 } else {
607 ts->base_type = type;
608 ts->type = type;
609 ts->temp_allocated = 1;
610 ts->temp_local = temp_local;
612 idx = temp_idx(s, ts);
615 #if defined(CONFIG_DEBUG_TCG)
616 s->temps_in_use++;
617 #endif
618 return idx;
621 TCGv_i32 tcg_temp_new_internal_i32(int temp_local)
623 int idx;
625 idx = tcg_temp_new_internal(TCG_TYPE_I32, temp_local);
626 return MAKE_TCGV_I32(idx);
629 TCGv_i64 tcg_temp_new_internal_i64(int temp_local)
631 int idx;
633 idx = tcg_temp_new_internal(TCG_TYPE_I64, temp_local);
634 return MAKE_TCGV_I64(idx);
637 static void tcg_temp_free_internal(int idx)
639 TCGContext *s = &tcg_ctx;
640 TCGTemp *ts;
641 int k;
643 #if defined(CONFIG_DEBUG_TCG)
644 s->temps_in_use--;
645 if (s->temps_in_use < 0) {
646 fprintf(stderr, "More temporaries freed than allocated!\n");
648 #endif
650 tcg_debug_assert(idx >= s->nb_globals && idx < s->nb_temps);
651 ts = &s->temps[idx];
652 tcg_debug_assert(ts->temp_allocated != 0);
653 ts->temp_allocated = 0;
655 k = ts->base_type + (ts->temp_local ? TCG_TYPE_COUNT : 0);
656 set_bit(idx, s->free_temps[k].l);
659 void tcg_temp_free_i32(TCGv_i32 arg)
661 tcg_temp_free_internal(GET_TCGV_I32(arg));
664 void tcg_temp_free_i64(TCGv_i64 arg)
666 tcg_temp_free_internal(GET_TCGV_I64(arg));
669 TCGv_i32 tcg_const_i32(int32_t val)
671 TCGv_i32 t0;
672 t0 = tcg_temp_new_i32();
673 tcg_gen_movi_i32(t0, val);
674 return t0;
677 TCGv_i64 tcg_const_i64(int64_t val)
679 TCGv_i64 t0;
680 t0 = tcg_temp_new_i64();
681 tcg_gen_movi_i64(t0, val);
682 return t0;
685 TCGv_i32 tcg_const_local_i32(int32_t val)
687 TCGv_i32 t0;
688 t0 = tcg_temp_local_new_i32();
689 tcg_gen_movi_i32(t0, val);
690 return t0;
693 TCGv_i64 tcg_const_local_i64(int64_t val)
695 TCGv_i64 t0;
696 t0 = tcg_temp_local_new_i64();
697 tcg_gen_movi_i64(t0, val);
698 return t0;
701 #if defined(CONFIG_DEBUG_TCG)
702 void tcg_clear_temp_count(void)
704 TCGContext *s = &tcg_ctx;
705 s->temps_in_use = 0;
708 int tcg_check_temp_count(void)
710 TCGContext *s = &tcg_ctx;
711 if (s->temps_in_use) {
712 /* Clear the count so that we don't give another
713 * warning immediately next time around.
715 s->temps_in_use = 0;
716 return 1;
718 return 0;
720 #endif
722 /* Note: we convert the 64 bit args to 32 bit and do some alignment
723 and endian swap. Maybe it would be better to do the alignment
724 and endian swap in tcg_reg_alloc_call(). */
725 void tcg_gen_callN(TCGContext *s, void *func, TCGArg ret,
726 int nargs, TCGArg *args)
728 int i, real_args, nb_rets, pi, pi_first;
729 unsigned sizemask, flags;
730 TCGHelperInfo *info;
732 info = g_hash_table_lookup(s->helpers, (gpointer)func);
733 flags = info->flags;
734 sizemask = info->sizemask;
736 #if defined(__sparc__) && !defined(__arch64__) \
737 && !defined(CONFIG_TCG_INTERPRETER)
738 /* We have 64-bit values in one register, but need to pass as two
739 separate parameters. Split them. */
740 int orig_sizemask = sizemask;
741 int orig_nargs = nargs;
742 TCGv_i64 retl, reth;
744 TCGV_UNUSED_I64(retl);
745 TCGV_UNUSED_I64(reth);
746 if (sizemask != 0) {
747 TCGArg *split_args = __builtin_alloca(sizeof(TCGArg) * nargs * 2);
748 for (i = real_args = 0; i < nargs; ++i) {
749 int is_64bit = sizemask & (1 << (i+1)*2);
750 if (is_64bit) {
751 TCGv_i64 orig = MAKE_TCGV_I64(args[i]);
752 TCGv_i32 h = tcg_temp_new_i32();
753 TCGv_i32 l = tcg_temp_new_i32();
754 tcg_gen_extr_i64_i32(l, h, orig);
755 split_args[real_args++] = GET_TCGV_I32(h);
756 split_args[real_args++] = GET_TCGV_I32(l);
757 } else {
758 split_args[real_args++] = args[i];
761 nargs = real_args;
762 args = split_args;
763 sizemask = 0;
765 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
766 for (i = 0; i < nargs; ++i) {
767 int is_64bit = sizemask & (1 << (i+1)*2);
768 int is_signed = sizemask & (2 << (i+1)*2);
769 if (!is_64bit) {
770 TCGv_i64 temp = tcg_temp_new_i64();
771 TCGv_i64 orig = MAKE_TCGV_I64(args[i]);
772 if (is_signed) {
773 tcg_gen_ext32s_i64(temp, orig);
774 } else {
775 tcg_gen_ext32u_i64(temp, orig);
777 args[i] = GET_TCGV_I64(temp);
780 #endif /* TCG_TARGET_EXTEND_ARGS */
782 pi_first = pi = s->gen_next_parm_idx;
783 if (ret != TCG_CALL_DUMMY_ARG) {
784 #if defined(__sparc__) && !defined(__arch64__) \
785 && !defined(CONFIG_TCG_INTERPRETER)
786 if (orig_sizemask & 1) {
787 /* The 32-bit ABI is going to return the 64-bit value in
788 the %o0/%o1 register pair. Prepare for this by using
789 two return temporaries, and reassemble below. */
790 retl = tcg_temp_new_i64();
791 reth = tcg_temp_new_i64();
792 s->gen_opparam_buf[pi++] = GET_TCGV_I64(reth);
793 s->gen_opparam_buf[pi++] = GET_TCGV_I64(retl);
794 nb_rets = 2;
795 } else {
796 s->gen_opparam_buf[pi++] = ret;
797 nb_rets = 1;
799 #else
800 if (TCG_TARGET_REG_BITS < 64 && (sizemask & 1)) {
801 #ifdef HOST_WORDS_BIGENDIAN
802 s->gen_opparam_buf[pi++] = ret + 1;
803 s->gen_opparam_buf[pi++] = ret;
804 #else
805 s->gen_opparam_buf[pi++] = ret;
806 s->gen_opparam_buf[pi++] = ret + 1;
807 #endif
808 nb_rets = 2;
809 } else {
810 s->gen_opparam_buf[pi++] = ret;
811 nb_rets = 1;
813 #endif
814 } else {
815 nb_rets = 0;
817 real_args = 0;
818 for (i = 0; i < nargs; i++) {
819 int is_64bit = sizemask & (1 << (i+1)*2);
820 if (TCG_TARGET_REG_BITS < 64 && is_64bit) {
821 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
822 /* some targets want aligned 64 bit args */
823 if (real_args & 1) {
824 s->gen_opparam_buf[pi++] = TCG_CALL_DUMMY_ARG;
825 real_args++;
827 #endif
828 /* If stack grows up, then we will be placing successive
829 arguments at lower addresses, which means we need to
830 reverse the order compared to how we would normally
831 treat either big or little-endian. For those arguments
832 that will wind up in registers, this still works for
833 HPPA (the only current STACK_GROWSUP target) since the
834 argument registers are *also* allocated in decreasing
835 order. If another such target is added, this logic may
836 have to get more complicated to differentiate between
837 stack arguments and register arguments. */
838 #if defined(HOST_WORDS_BIGENDIAN) != defined(TCG_TARGET_STACK_GROWSUP)
839 s->gen_opparam_buf[pi++] = args[i] + 1;
840 s->gen_opparam_buf[pi++] = args[i];
841 #else
842 s->gen_opparam_buf[pi++] = args[i];
843 s->gen_opparam_buf[pi++] = args[i] + 1;
844 #endif
845 real_args += 2;
846 continue;
849 s->gen_opparam_buf[pi++] = args[i];
850 real_args++;
852 s->gen_opparam_buf[pi++] = (uintptr_t)func;
853 s->gen_opparam_buf[pi++] = flags;
855 i = s->gen_next_op_idx;
856 tcg_debug_assert(i < OPC_BUF_SIZE);
857 tcg_debug_assert(pi <= OPPARAM_BUF_SIZE);
859 /* Set links for sequential allocation during translation. */
860 s->gen_op_buf[i] = (TCGOp){
861 .opc = INDEX_op_call,
862 .callo = nb_rets,
863 .calli = real_args,
864 .args = pi_first,
865 .prev = i - 1,
866 .next = i + 1
869 /* Make sure the calli field didn't overflow. */
870 tcg_debug_assert(s->gen_op_buf[i].calli == real_args);
872 s->gen_last_op_idx = i;
873 s->gen_next_op_idx = i + 1;
874 s->gen_next_parm_idx = pi;
876 #if defined(__sparc__) && !defined(__arch64__) \
877 && !defined(CONFIG_TCG_INTERPRETER)
878 /* Free all of the parts we allocated above. */
879 for (i = real_args = 0; i < orig_nargs; ++i) {
880 int is_64bit = orig_sizemask & (1 << (i+1)*2);
881 if (is_64bit) {
882 TCGv_i32 h = MAKE_TCGV_I32(args[real_args++]);
883 TCGv_i32 l = MAKE_TCGV_I32(args[real_args++]);
884 tcg_temp_free_i32(h);
885 tcg_temp_free_i32(l);
886 } else {
887 real_args++;
890 if (orig_sizemask & 1) {
891 /* The 32-bit ABI returned two 32-bit pieces. Re-assemble them.
892 Note that describing these as TCGv_i64 eliminates an unnecessary
893 zero-extension that tcg_gen_concat_i32_i64 would create. */
894 tcg_gen_concat32_i64(MAKE_TCGV_I64(ret), retl, reth);
895 tcg_temp_free_i64(retl);
896 tcg_temp_free_i64(reth);
898 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
899 for (i = 0; i < nargs; ++i) {
900 int is_64bit = sizemask & (1 << (i+1)*2);
901 if (!is_64bit) {
902 TCGv_i64 temp = MAKE_TCGV_I64(args[i]);
903 tcg_temp_free_i64(temp);
906 #endif /* TCG_TARGET_EXTEND_ARGS */
909 static void tcg_reg_alloc_start(TCGContext *s)
911 int i;
912 TCGTemp *ts;
913 for(i = 0; i < s->nb_globals; i++) {
914 ts = &s->temps[i];
915 if (ts->fixed_reg) {
916 ts->val_type = TEMP_VAL_REG;
917 } else {
918 ts->val_type = TEMP_VAL_MEM;
921 for(i = s->nb_globals; i < s->nb_temps; i++) {
922 ts = &s->temps[i];
923 if (ts->temp_local) {
924 ts->val_type = TEMP_VAL_MEM;
925 } else {
926 ts->val_type = TEMP_VAL_DEAD;
928 ts->mem_allocated = 0;
929 ts->fixed_reg = 0;
932 memset(s->reg_to_temp, 0, sizeof(s->reg_to_temp));
935 static char *tcg_get_arg_str_ptr(TCGContext *s, char *buf, int buf_size,
936 TCGTemp *ts)
938 int idx = temp_idx(s, ts);
940 if (idx < s->nb_globals) {
941 pstrcpy(buf, buf_size, ts->name);
942 } else if (ts->temp_local) {
943 snprintf(buf, buf_size, "loc%d", idx - s->nb_globals);
944 } else {
945 snprintf(buf, buf_size, "tmp%d", idx - s->nb_globals);
947 return buf;
950 static char *tcg_get_arg_str_idx(TCGContext *s, char *buf,
951 int buf_size, int idx)
953 tcg_debug_assert(idx >= 0 && idx < s->nb_temps);
954 return tcg_get_arg_str_ptr(s, buf, buf_size, &s->temps[idx]);
957 /* Find helper name. */
958 static inline const char *tcg_find_helper(TCGContext *s, uintptr_t val)
960 const char *ret = NULL;
961 if (s->helpers) {
962 TCGHelperInfo *info = g_hash_table_lookup(s->helpers, (gpointer)val);
963 if (info) {
964 ret = info->name;
967 return ret;
970 static const char * const cond_name[] =
972 [TCG_COND_NEVER] = "never",
973 [TCG_COND_ALWAYS] = "always",
974 [TCG_COND_EQ] = "eq",
975 [TCG_COND_NE] = "ne",
976 [TCG_COND_LT] = "lt",
977 [TCG_COND_GE] = "ge",
978 [TCG_COND_LE] = "le",
979 [TCG_COND_GT] = "gt",
980 [TCG_COND_LTU] = "ltu",
981 [TCG_COND_GEU] = "geu",
982 [TCG_COND_LEU] = "leu",
983 [TCG_COND_GTU] = "gtu"
986 static const char * const ldst_name[] =
988 [MO_UB] = "ub",
989 [MO_SB] = "sb",
990 [MO_LEUW] = "leuw",
991 [MO_LESW] = "lesw",
992 [MO_LEUL] = "leul",
993 [MO_LESL] = "lesl",
994 [MO_LEQ] = "leq",
995 [MO_BEUW] = "beuw",
996 [MO_BESW] = "besw",
997 [MO_BEUL] = "beul",
998 [MO_BESL] = "besl",
999 [MO_BEQ] = "beq",
1002 static const char * const alignment_name[(MO_AMASK >> MO_ASHIFT) + 1] = {
1003 #ifdef ALIGNED_ONLY
1004 [MO_UNALN >> MO_ASHIFT] = "un+",
1005 [MO_ALIGN >> MO_ASHIFT] = "",
1006 #else
1007 [MO_UNALN >> MO_ASHIFT] = "",
1008 [MO_ALIGN >> MO_ASHIFT] = "al+",
1009 #endif
1010 [MO_ALIGN_2 >> MO_ASHIFT] = "al2+",
1011 [MO_ALIGN_4 >> MO_ASHIFT] = "al4+",
1012 [MO_ALIGN_8 >> MO_ASHIFT] = "al8+",
1013 [MO_ALIGN_16 >> MO_ASHIFT] = "al16+",
1014 [MO_ALIGN_32 >> MO_ASHIFT] = "al32+",
1015 [MO_ALIGN_64 >> MO_ASHIFT] = "al64+",
1018 void tcg_dump_ops(TCGContext *s)
1020 char buf[128];
1021 TCGOp *op;
1022 int oi;
1024 for (oi = s->gen_first_op_idx; oi >= 0; oi = op->next) {
1025 int i, k, nb_oargs, nb_iargs, nb_cargs;
1026 const TCGOpDef *def;
1027 const TCGArg *args;
1028 TCGOpcode c;
1030 op = &s->gen_op_buf[oi];
1031 c = op->opc;
1032 def = &tcg_op_defs[c];
1033 args = &s->gen_opparam_buf[op->args];
1035 if (c == INDEX_op_insn_start) {
1036 qemu_log("%s ----", oi != s->gen_first_op_idx ? "\n" : "");
1038 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
1039 target_ulong a;
1040 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
1041 a = ((target_ulong)args[i * 2 + 1] << 32) | args[i * 2];
1042 #else
1043 a = args[i];
1044 #endif
1045 qemu_log(" " TARGET_FMT_lx, a);
1047 } else if (c == INDEX_op_call) {
1048 /* variable number of arguments */
1049 nb_oargs = op->callo;
1050 nb_iargs = op->calli;
1051 nb_cargs = def->nb_cargs;
1053 /* function name, flags, out args */
1054 qemu_log(" %s %s,$0x%" TCG_PRIlx ",$%d", def->name,
1055 tcg_find_helper(s, args[nb_oargs + nb_iargs]),
1056 args[nb_oargs + nb_iargs + 1], nb_oargs);
1057 for (i = 0; i < nb_oargs; i++) {
1058 qemu_log(",%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1059 args[i]));
1061 for (i = 0; i < nb_iargs; i++) {
1062 TCGArg arg = args[nb_oargs + i];
1063 const char *t = "<dummy>";
1064 if (arg != TCG_CALL_DUMMY_ARG) {
1065 t = tcg_get_arg_str_idx(s, buf, sizeof(buf), arg);
1067 qemu_log(",%s", t);
1069 } else {
1070 qemu_log(" %s ", def->name);
1072 nb_oargs = def->nb_oargs;
1073 nb_iargs = def->nb_iargs;
1074 nb_cargs = def->nb_cargs;
1076 k = 0;
1077 for (i = 0; i < nb_oargs; i++) {
1078 if (k != 0) {
1079 qemu_log(",");
1081 qemu_log("%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1082 args[k++]));
1084 for (i = 0; i < nb_iargs; i++) {
1085 if (k != 0) {
1086 qemu_log(",");
1088 qemu_log("%s", tcg_get_arg_str_idx(s, buf, sizeof(buf),
1089 args[k++]));
1091 switch (c) {
1092 case INDEX_op_brcond_i32:
1093 case INDEX_op_setcond_i32:
1094 case INDEX_op_movcond_i32:
1095 case INDEX_op_brcond2_i32:
1096 case INDEX_op_setcond2_i32:
1097 case INDEX_op_brcond_i64:
1098 case INDEX_op_setcond_i64:
1099 case INDEX_op_movcond_i64:
1100 if (args[k] < ARRAY_SIZE(cond_name) && cond_name[args[k]]) {
1101 qemu_log(",%s", cond_name[args[k++]]);
1102 } else {
1103 qemu_log(",$0x%" TCG_PRIlx, args[k++]);
1105 i = 1;
1106 break;
1107 case INDEX_op_qemu_ld_i32:
1108 case INDEX_op_qemu_st_i32:
1109 case INDEX_op_qemu_ld_i64:
1110 case INDEX_op_qemu_st_i64:
1112 TCGMemOpIdx oi = args[k++];
1113 TCGMemOp op = get_memop(oi);
1114 unsigned ix = get_mmuidx(oi);
1116 if (op & ~(MO_AMASK | MO_BSWAP | MO_SSIZE)) {
1117 qemu_log(",$0x%x,%u", op, ix);
1118 } else {
1119 const char *s_al, *s_op;
1120 s_al = alignment_name[(op & MO_AMASK) >> MO_ASHIFT];
1121 s_op = ldst_name[op & (MO_BSWAP | MO_SSIZE)];
1122 qemu_log(",%s%s,%u", s_al, s_op, ix);
1124 i = 1;
1126 break;
1127 default:
1128 i = 0;
1129 break;
1131 switch (c) {
1132 case INDEX_op_set_label:
1133 case INDEX_op_br:
1134 case INDEX_op_brcond_i32:
1135 case INDEX_op_brcond_i64:
1136 case INDEX_op_brcond2_i32:
1137 qemu_log("%s$L%d", k ? "," : "", arg_label(args[k])->id);
1138 i++, k++;
1139 break;
1140 default:
1141 break;
1143 for (; i < nb_cargs; i++, k++) {
1144 qemu_log("%s$0x%" TCG_PRIlx, k ? "," : "", args[k]);
1147 qemu_log("\n");
1151 /* we give more priority to constraints with less registers */
1152 static int get_constraint_priority(const TCGOpDef *def, int k)
1154 const TCGArgConstraint *arg_ct;
1156 int i, n;
1157 arg_ct = &def->args_ct[k];
1158 if (arg_ct->ct & TCG_CT_ALIAS) {
1159 /* an alias is equivalent to a single register */
1160 n = 1;
1161 } else {
1162 if (!(arg_ct->ct & TCG_CT_REG))
1163 return 0;
1164 n = 0;
1165 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1166 if (tcg_regset_test_reg(arg_ct->u.regs, i))
1167 n++;
1170 return TCG_TARGET_NB_REGS - n + 1;
1173 /* sort from highest priority to lowest */
1174 static void sort_constraints(TCGOpDef *def, int start, int n)
1176 int i, j, p1, p2, tmp;
1178 for(i = 0; i < n; i++)
1179 def->sorted_args[start + i] = start + i;
1180 if (n <= 1)
1181 return;
1182 for(i = 0; i < n - 1; i++) {
1183 for(j = i + 1; j < n; j++) {
1184 p1 = get_constraint_priority(def, def->sorted_args[start + i]);
1185 p2 = get_constraint_priority(def, def->sorted_args[start + j]);
1186 if (p1 < p2) {
1187 tmp = def->sorted_args[start + i];
1188 def->sorted_args[start + i] = def->sorted_args[start + j];
1189 def->sorted_args[start + j] = tmp;
1195 void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
1197 TCGOpcode op;
1198 TCGOpDef *def;
1199 const char *ct_str;
1200 int i, nb_args;
1202 for(;;) {
1203 if (tdefs->op == (TCGOpcode)-1)
1204 break;
1205 op = tdefs->op;
1206 tcg_debug_assert((unsigned)op < NB_OPS);
1207 def = &tcg_op_defs[op];
1208 #if defined(CONFIG_DEBUG_TCG)
1209 /* Duplicate entry in op definitions? */
1210 tcg_debug_assert(!def->used);
1211 def->used = 1;
1212 #endif
1213 nb_args = def->nb_iargs + def->nb_oargs;
1214 for(i = 0; i < nb_args; i++) {
1215 ct_str = tdefs->args_ct_str[i];
1216 /* Incomplete TCGTargetOpDef entry? */
1217 tcg_debug_assert(ct_str != NULL);
1218 tcg_regset_clear(def->args_ct[i].u.regs);
1219 def->args_ct[i].ct = 0;
1220 if (ct_str[0] >= '0' && ct_str[0] <= '9') {
1221 int oarg;
1222 oarg = ct_str[0] - '0';
1223 tcg_debug_assert(oarg < def->nb_oargs);
1224 tcg_debug_assert(def->args_ct[oarg].ct & TCG_CT_REG);
1225 /* TCG_CT_ALIAS is for the output arguments. The input
1226 argument is tagged with TCG_CT_IALIAS. */
1227 def->args_ct[i] = def->args_ct[oarg];
1228 def->args_ct[oarg].ct = TCG_CT_ALIAS;
1229 def->args_ct[oarg].alias_index = i;
1230 def->args_ct[i].ct |= TCG_CT_IALIAS;
1231 def->args_ct[i].alias_index = oarg;
1232 } else {
1233 for(;;) {
1234 if (*ct_str == '\0')
1235 break;
1236 switch(*ct_str) {
1237 case 'i':
1238 def->args_ct[i].ct |= TCG_CT_CONST;
1239 ct_str++;
1240 break;
1241 default:
1242 if (target_parse_constraint(&def->args_ct[i], &ct_str) < 0) {
1243 fprintf(stderr, "Invalid constraint '%s' for arg %d of operation '%s'\n",
1244 ct_str, i, def->name);
1245 exit(1);
1252 /* TCGTargetOpDef entry with too much information? */
1253 tcg_debug_assert(i == TCG_MAX_OP_ARGS || tdefs->args_ct_str[i] == NULL);
1255 /* sort the constraints (XXX: this is just an heuristic) */
1256 sort_constraints(def, 0, def->nb_oargs);
1257 sort_constraints(def, def->nb_oargs, def->nb_iargs);
1259 #if 0
1261 int i;
1263 printf("%s: sorted=", def->name);
1264 for(i = 0; i < def->nb_oargs + def->nb_iargs; i++)
1265 printf(" %d", def->sorted_args[i]);
1266 printf("\n");
1268 #endif
1269 tdefs++;
1272 #if defined(CONFIG_DEBUG_TCG)
1273 i = 0;
1274 for (op = 0; op < tcg_op_defs_max; op++) {
1275 const TCGOpDef *def = &tcg_op_defs[op];
1276 if (def->flags & TCG_OPF_NOT_PRESENT) {
1277 /* Wrong entry in op definitions? */
1278 if (def->used) {
1279 fprintf(stderr, "Invalid op definition for %s\n", def->name);
1280 i = 1;
1282 } else {
1283 /* Missing entry in op definitions? */
1284 if (!def->used) {
1285 fprintf(stderr, "Missing op definition for %s\n", def->name);
1286 i = 1;
1290 if (i == 1) {
1291 tcg_abort();
1293 #endif
1296 void tcg_op_remove(TCGContext *s, TCGOp *op)
1298 int next = op->next;
1299 int prev = op->prev;
1301 if (next >= 0) {
1302 s->gen_op_buf[next].prev = prev;
1303 } else {
1304 s->gen_last_op_idx = prev;
1306 if (prev >= 0) {
1307 s->gen_op_buf[prev].next = next;
1308 } else {
1309 s->gen_first_op_idx = next;
1312 memset(op, -1, sizeof(*op));
1314 #ifdef CONFIG_PROFILER
1315 s->del_op_count++;
1316 #endif
1319 #ifdef USE_LIVENESS_ANALYSIS
1320 /* liveness analysis: end of function: all temps are dead, and globals
1321 should be in memory. */
1322 static inline void tcg_la_func_end(TCGContext *s, uint8_t *dead_temps,
1323 uint8_t *mem_temps)
1325 memset(dead_temps, 1, s->nb_temps);
1326 memset(mem_temps, 1, s->nb_globals);
1327 memset(mem_temps + s->nb_globals, 0, s->nb_temps - s->nb_globals);
1330 /* liveness analysis: end of basic block: all temps are dead, globals
1331 and local temps should be in memory. */
1332 static inline void tcg_la_bb_end(TCGContext *s, uint8_t *dead_temps,
1333 uint8_t *mem_temps)
1335 int i;
1337 memset(dead_temps, 1, s->nb_temps);
1338 memset(mem_temps, 1, s->nb_globals);
1339 for(i = s->nb_globals; i < s->nb_temps; i++) {
1340 mem_temps[i] = s->temps[i].temp_local;
1344 /* Liveness analysis : update the opc_arg_life array to tell if a
1345 given input arguments is dead. Instructions updating dead
1346 temporaries are removed. */
1347 static void tcg_liveness_analysis(TCGContext *s)
1349 uint8_t *dead_temps, *mem_temps;
1350 int oi, oi_prev, nb_ops;
1352 nb_ops = s->gen_next_op_idx;
1353 s->op_arg_life = tcg_malloc(nb_ops * sizeof(TCGLifeData));
1355 dead_temps = tcg_malloc(s->nb_temps);
1356 mem_temps = tcg_malloc(s->nb_temps);
1357 tcg_la_func_end(s, dead_temps, mem_temps);
1359 for (oi = s->gen_last_op_idx; oi >= 0; oi = oi_prev) {
1360 int i, nb_iargs, nb_oargs;
1361 TCGOpcode opc_new, opc_new2;
1362 bool have_opc_new2;
1363 TCGLifeData arg_life = 0;
1364 TCGArg arg;
1366 TCGOp * const op = &s->gen_op_buf[oi];
1367 TCGArg * const args = &s->gen_opparam_buf[op->args];
1368 TCGOpcode opc = op->opc;
1369 const TCGOpDef *def = &tcg_op_defs[opc];
1371 oi_prev = op->prev;
1373 switch (opc) {
1374 case INDEX_op_call:
1376 int call_flags;
1378 nb_oargs = op->callo;
1379 nb_iargs = op->calli;
1380 call_flags = args[nb_oargs + nb_iargs + 1];
1382 /* pure functions can be removed if their result is unused */
1383 if (call_flags & TCG_CALL_NO_SIDE_EFFECTS) {
1384 for (i = 0; i < nb_oargs; i++) {
1385 arg = args[i];
1386 if (!dead_temps[arg] || mem_temps[arg]) {
1387 goto do_not_remove_call;
1390 goto do_remove;
1391 } else {
1392 do_not_remove_call:
1394 /* output args are dead */
1395 for (i = 0; i < nb_oargs; i++) {
1396 arg = args[i];
1397 if (dead_temps[arg]) {
1398 arg_life |= DEAD_ARG << i;
1400 if (mem_temps[arg]) {
1401 arg_life |= SYNC_ARG << i;
1403 dead_temps[arg] = 1;
1404 mem_temps[arg] = 0;
1407 if (!(call_flags & TCG_CALL_NO_READ_GLOBALS)) {
1408 /* globals should be synced to memory */
1409 memset(mem_temps, 1, s->nb_globals);
1411 if (!(call_flags & (TCG_CALL_NO_WRITE_GLOBALS |
1412 TCG_CALL_NO_READ_GLOBALS))) {
1413 /* globals should go back to memory */
1414 memset(dead_temps, 1, s->nb_globals);
1417 /* record arguments that die in this helper */
1418 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
1419 arg = args[i];
1420 if (arg != TCG_CALL_DUMMY_ARG) {
1421 if (dead_temps[arg]) {
1422 arg_life |= DEAD_ARG << i;
1426 /* input arguments are live for preceding opcodes */
1427 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1428 arg = args[i];
1429 dead_temps[arg] = 0;
1433 break;
1434 case INDEX_op_insn_start:
1435 break;
1436 case INDEX_op_discard:
1437 /* mark the temporary as dead */
1438 dead_temps[args[0]] = 1;
1439 mem_temps[args[0]] = 0;
1440 break;
1442 case INDEX_op_add2_i32:
1443 opc_new = INDEX_op_add_i32;
1444 goto do_addsub2;
1445 case INDEX_op_sub2_i32:
1446 opc_new = INDEX_op_sub_i32;
1447 goto do_addsub2;
1448 case INDEX_op_add2_i64:
1449 opc_new = INDEX_op_add_i64;
1450 goto do_addsub2;
1451 case INDEX_op_sub2_i64:
1452 opc_new = INDEX_op_sub_i64;
1453 do_addsub2:
1454 nb_iargs = 4;
1455 nb_oargs = 2;
1456 /* Test if the high part of the operation is dead, but not
1457 the low part. The result can be optimized to a simple
1458 add or sub. This happens often for x86_64 guest when the
1459 cpu mode is set to 32 bit. */
1460 if (dead_temps[args[1]] && !mem_temps[args[1]]) {
1461 if (dead_temps[args[0]] && !mem_temps[args[0]]) {
1462 goto do_remove;
1464 /* Replace the opcode and adjust the args in place,
1465 leaving 3 unused args at the end. */
1466 op->opc = opc = opc_new;
1467 args[1] = args[2];
1468 args[2] = args[4];
1469 /* Fall through and mark the single-word operation live. */
1470 nb_iargs = 2;
1471 nb_oargs = 1;
1473 goto do_not_remove;
1475 case INDEX_op_mulu2_i32:
1476 opc_new = INDEX_op_mul_i32;
1477 opc_new2 = INDEX_op_muluh_i32;
1478 have_opc_new2 = TCG_TARGET_HAS_muluh_i32;
1479 goto do_mul2;
1480 case INDEX_op_muls2_i32:
1481 opc_new = INDEX_op_mul_i32;
1482 opc_new2 = INDEX_op_mulsh_i32;
1483 have_opc_new2 = TCG_TARGET_HAS_mulsh_i32;
1484 goto do_mul2;
1485 case INDEX_op_mulu2_i64:
1486 opc_new = INDEX_op_mul_i64;
1487 opc_new2 = INDEX_op_muluh_i64;
1488 have_opc_new2 = TCG_TARGET_HAS_muluh_i64;
1489 goto do_mul2;
1490 case INDEX_op_muls2_i64:
1491 opc_new = INDEX_op_mul_i64;
1492 opc_new2 = INDEX_op_mulsh_i64;
1493 have_opc_new2 = TCG_TARGET_HAS_mulsh_i64;
1494 goto do_mul2;
1495 do_mul2:
1496 nb_iargs = 2;
1497 nb_oargs = 2;
1498 if (dead_temps[args[1]] && !mem_temps[args[1]]) {
1499 if (dead_temps[args[0]] && !mem_temps[args[0]]) {
1500 /* Both parts of the operation are dead. */
1501 goto do_remove;
1503 /* The high part of the operation is dead; generate the low. */
1504 op->opc = opc = opc_new;
1505 args[1] = args[2];
1506 args[2] = args[3];
1507 } else if (have_opc_new2 && dead_temps[args[0]]
1508 && !mem_temps[args[0]]) {
1509 /* The low part of the operation is dead; generate the high. */
1510 op->opc = opc = opc_new2;
1511 args[0] = args[1];
1512 args[1] = args[2];
1513 args[2] = args[3];
1514 } else {
1515 goto do_not_remove;
1517 /* Mark the single-word operation live. */
1518 nb_oargs = 1;
1519 goto do_not_remove;
1521 default:
1522 /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
1523 nb_iargs = def->nb_iargs;
1524 nb_oargs = def->nb_oargs;
1526 /* Test if the operation can be removed because all
1527 its outputs are dead. We assume that nb_oargs == 0
1528 implies side effects */
1529 if (!(def->flags & TCG_OPF_SIDE_EFFECTS) && nb_oargs != 0) {
1530 for (i = 0; i < nb_oargs; i++) {
1531 arg = args[i];
1532 if (!dead_temps[arg] || mem_temps[arg]) {
1533 goto do_not_remove;
1536 do_remove:
1537 tcg_op_remove(s, op);
1538 } else {
1539 do_not_remove:
1540 /* output args are dead */
1541 for (i = 0; i < nb_oargs; i++) {
1542 arg = args[i];
1543 if (dead_temps[arg]) {
1544 arg_life |= DEAD_ARG << i;
1546 if (mem_temps[arg]) {
1547 arg_life |= SYNC_ARG << i;
1549 dead_temps[arg] = 1;
1550 mem_temps[arg] = 0;
1553 /* if end of basic block, update */
1554 if (def->flags & TCG_OPF_BB_END) {
1555 tcg_la_bb_end(s, dead_temps, mem_temps);
1556 } else if (def->flags & TCG_OPF_SIDE_EFFECTS) {
1557 /* globals should be synced to memory */
1558 memset(mem_temps, 1, s->nb_globals);
1561 /* record arguments that die in this opcode */
1562 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1563 arg = args[i];
1564 if (dead_temps[arg]) {
1565 arg_life |= DEAD_ARG << i;
1568 /* input arguments are live for preceding opcodes */
1569 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
1570 arg = args[i];
1571 dead_temps[arg] = 0;
1574 break;
1576 s->op_arg_life[oi] = arg_life;
1579 #else
1580 /* dummy liveness analysis */
1581 static void tcg_liveness_analysis(TCGContext *s)
1583 int nb_ops = s->gen_next_op_idx;
1585 s->op_dead_args = tcg_malloc(nb_ops * sizeof(uint16_t));
1586 memset(s->op_dead_args, 0, nb_ops * sizeof(uint16_t));
1587 s->op_sync_args = tcg_malloc(nb_ops * sizeof(uint8_t));
1588 memset(s->op_sync_args, 0, nb_ops * sizeof(uint8_t));
1590 #endif
1592 #ifdef CONFIG_DEBUG_TCG
1593 static void dump_regs(TCGContext *s)
1595 TCGTemp *ts;
1596 int i;
1597 char buf[64];
1599 for(i = 0; i < s->nb_temps; i++) {
1600 ts = &s->temps[i];
1601 printf(" %10s: ", tcg_get_arg_str_idx(s, buf, sizeof(buf), i));
1602 switch(ts->val_type) {
1603 case TEMP_VAL_REG:
1604 printf("%s", tcg_target_reg_names[ts->reg]);
1605 break;
1606 case TEMP_VAL_MEM:
1607 printf("%d(%s)", (int)ts->mem_offset,
1608 tcg_target_reg_names[ts->mem_base->reg]);
1609 break;
1610 case TEMP_VAL_CONST:
1611 printf("$0x%" TCG_PRIlx, ts->val);
1612 break;
1613 case TEMP_VAL_DEAD:
1614 printf("D");
1615 break;
1616 default:
1617 printf("???");
1618 break;
1620 printf("\n");
1623 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1624 if (s->reg_to_temp[i] != NULL) {
1625 printf("%s: %s\n",
1626 tcg_target_reg_names[i],
1627 tcg_get_arg_str_ptr(s, buf, sizeof(buf), s->reg_to_temp[i]));
1632 static void check_regs(TCGContext *s)
1634 int reg;
1635 int k;
1636 TCGTemp *ts;
1637 char buf[64];
1639 for (reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1640 ts = s->reg_to_temp[reg];
1641 if (ts != NULL) {
1642 if (ts->val_type != TEMP_VAL_REG || ts->reg != reg) {
1643 printf("Inconsistency for register %s:\n",
1644 tcg_target_reg_names[reg]);
1645 goto fail;
1649 for (k = 0; k < s->nb_temps; k++) {
1650 ts = &s->temps[k];
1651 if (ts->val_type == TEMP_VAL_REG && !ts->fixed_reg
1652 && s->reg_to_temp[ts->reg] != ts) {
1653 printf("Inconsistency for temp %s:\n",
1654 tcg_get_arg_str_ptr(s, buf, sizeof(buf), ts));
1655 fail:
1656 printf("reg state:\n");
1657 dump_regs(s);
1658 tcg_abort();
1662 #endif
1664 static void temp_allocate_frame(TCGContext *s, int temp)
1666 TCGTemp *ts;
1667 ts = &s->temps[temp];
1668 #if !(defined(__sparc__) && TCG_TARGET_REG_BITS == 64)
1669 /* Sparc64 stack is accessed with offset of 2047 */
1670 s->current_frame_offset = (s->current_frame_offset +
1671 (tcg_target_long)sizeof(tcg_target_long) - 1) &
1672 ~(sizeof(tcg_target_long) - 1);
1673 #endif
1674 if (s->current_frame_offset + (tcg_target_long)sizeof(tcg_target_long) >
1675 s->frame_end) {
1676 tcg_abort();
1678 ts->mem_offset = s->current_frame_offset;
1679 ts->mem_base = s->frame_temp;
1680 ts->mem_allocated = 1;
1681 s->current_frame_offset += sizeof(tcg_target_long);
1684 static void temp_load(TCGContext *, TCGTemp *, TCGRegSet, TCGRegSet);
1686 /* Mark a temporary as free or dead. If 'free_or_dead' is negative,
1687 mark it free; otherwise mark it dead. */
1688 static void temp_free_or_dead(TCGContext *s, TCGTemp *ts, int free_or_dead)
1690 if (ts->fixed_reg) {
1691 return;
1693 if (ts->val_type == TEMP_VAL_REG) {
1694 s->reg_to_temp[ts->reg] = NULL;
1696 ts->val_type = (free_or_dead < 0
1697 || ts->temp_local
1698 || temp_idx(s, ts) < s->nb_globals
1699 ? TEMP_VAL_MEM : TEMP_VAL_DEAD);
1702 /* Mark a temporary as dead. */
1703 static inline void temp_dead(TCGContext *s, TCGTemp *ts)
1705 temp_free_or_dead(s, ts, 1);
1708 /* Sync a temporary to memory. 'allocated_regs' is used in case a temporary
1709 registers needs to be allocated to store a constant. If 'free_or_dead'
1710 is non-zero, subsequently release the temporary; if it is positive, the
1711 temp is dead; if it is negative, the temp is free. */
1712 static void temp_sync(TCGContext *s, TCGTemp *ts,
1713 TCGRegSet allocated_regs, int free_or_dead)
1715 if (ts->fixed_reg) {
1716 return;
1718 if (!ts->mem_coherent) {
1719 if (!ts->mem_allocated) {
1720 temp_allocate_frame(s, temp_idx(s, ts));
1722 if (ts->indirect_reg) {
1723 if (ts->val_type == TEMP_VAL_REG) {
1724 tcg_regset_set_reg(allocated_regs, ts->reg);
1726 temp_load(s, ts->mem_base,
1727 tcg_target_available_regs[TCG_TYPE_PTR],
1728 allocated_regs);
1730 switch (ts->val_type) {
1731 case TEMP_VAL_CONST:
1732 /* If we're going to free the temp immediately, then we won't
1733 require it later in a register, so attempt to store the
1734 constant to memory directly. */
1735 if (free_or_dead
1736 && tcg_out_sti(s, ts->type, ts->val,
1737 ts->mem_base->reg, ts->mem_offset)) {
1738 break;
1740 temp_load(s, ts, tcg_target_available_regs[ts->type],
1741 allocated_regs);
1742 /* fallthrough */
1744 case TEMP_VAL_REG:
1745 tcg_out_st(s, ts->type, ts->reg,
1746 ts->mem_base->reg, ts->mem_offset);
1747 break;
1749 case TEMP_VAL_MEM:
1750 break;
1752 case TEMP_VAL_DEAD:
1753 default:
1754 tcg_abort();
1756 ts->mem_coherent = 1;
1758 if (free_or_dead) {
1759 temp_free_or_dead(s, ts, free_or_dead);
1763 /* free register 'reg' by spilling the corresponding temporary if necessary */
1764 static void tcg_reg_free(TCGContext *s, TCGReg reg, TCGRegSet allocated_regs)
1766 TCGTemp *ts = s->reg_to_temp[reg];
1767 if (ts != NULL) {
1768 temp_sync(s, ts, allocated_regs, -1);
1772 /* Allocate a register belonging to reg1 & ~reg2 */
1773 static TCGReg tcg_reg_alloc(TCGContext *s, TCGRegSet desired_regs,
1774 TCGRegSet allocated_regs, bool rev)
1776 int i, n = ARRAY_SIZE(tcg_target_reg_alloc_order);
1777 const int *order;
1778 TCGReg reg;
1779 TCGRegSet reg_ct;
1781 tcg_regset_andnot(reg_ct, desired_regs, allocated_regs);
1782 order = rev ? indirect_reg_alloc_order : tcg_target_reg_alloc_order;
1784 /* first try free registers */
1785 for(i = 0; i < n; i++) {
1786 reg = order[i];
1787 if (tcg_regset_test_reg(reg_ct, reg) && s->reg_to_temp[reg] == NULL)
1788 return reg;
1791 /* XXX: do better spill choice */
1792 for(i = 0; i < n; i++) {
1793 reg = order[i];
1794 if (tcg_regset_test_reg(reg_ct, reg)) {
1795 tcg_reg_free(s, reg, allocated_regs);
1796 return reg;
1800 tcg_abort();
1803 /* Make sure the temporary is in a register. If needed, allocate the register
1804 from DESIRED while avoiding ALLOCATED. */
1805 static void temp_load(TCGContext *s, TCGTemp *ts, TCGRegSet desired_regs,
1806 TCGRegSet allocated_regs)
1808 TCGReg reg;
1810 switch (ts->val_type) {
1811 case TEMP_VAL_REG:
1812 return;
1813 case TEMP_VAL_CONST:
1814 reg = tcg_reg_alloc(s, desired_regs, allocated_regs, ts->indirect_base);
1815 tcg_out_movi(s, ts->type, reg, ts->val);
1816 ts->mem_coherent = 0;
1817 break;
1818 case TEMP_VAL_MEM:
1819 reg = tcg_reg_alloc(s, desired_regs, allocated_regs, ts->indirect_base);
1820 if (ts->indirect_reg) {
1821 tcg_regset_set_reg(allocated_regs, reg);
1822 temp_load(s, ts->mem_base,
1823 tcg_target_available_regs[TCG_TYPE_PTR],
1824 allocated_regs);
1826 tcg_out_ld(s, ts->type, reg, ts->mem_base->reg, ts->mem_offset);
1827 ts->mem_coherent = 1;
1828 break;
1829 case TEMP_VAL_DEAD:
1830 default:
1831 tcg_abort();
1833 ts->reg = reg;
1834 ts->val_type = TEMP_VAL_REG;
1835 s->reg_to_temp[reg] = ts;
1838 /* Save a temporary to memory. 'allocated_regs' is used in case a
1839 temporary registers needs to be allocated to store a constant. */
1840 static void temp_save(TCGContext *s, TCGTemp *ts, TCGRegSet allocated_regs)
1842 #ifdef USE_LIVENESS_ANALYSIS
1843 /* ??? Liveness does not yet incorporate indirect bases. */
1844 if (!ts->indirect_base) {
1845 /* The liveness analysis already ensures that globals are back
1846 in memory. Keep an tcg_debug_assert for safety. */
1847 tcg_debug_assert(ts->val_type == TEMP_VAL_MEM || ts->fixed_reg);
1848 return;
1850 #endif
1851 temp_sync(s, ts, allocated_regs, 1);
1854 /* save globals to their canonical location and assume they can be
1855 modified be the following code. 'allocated_regs' is used in case a
1856 temporary registers needs to be allocated to store a constant. */
1857 static void save_globals(TCGContext *s, TCGRegSet allocated_regs)
1859 int i;
1861 for (i = 0; i < s->nb_globals; i++) {
1862 temp_save(s, &s->temps[i], allocated_regs);
1866 /* sync globals to their canonical location and assume they can be
1867 read by the following code. 'allocated_regs' is used in case a
1868 temporary registers needs to be allocated to store a constant. */
1869 static void sync_globals(TCGContext *s, TCGRegSet allocated_regs)
1871 int i;
1873 for (i = 0; i < s->nb_globals; i++) {
1874 TCGTemp *ts = &s->temps[i];
1875 #ifdef USE_LIVENESS_ANALYSIS
1876 /* ??? Liveness does not yet incorporate indirect bases. */
1877 if (!ts->indirect_base) {
1878 tcg_debug_assert(ts->val_type != TEMP_VAL_REG
1879 || ts->fixed_reg
1880 || ts->mem_coherent);
1881 continue;
1883 #endif
1884 temp_sync(s, ts, allocated_regs, 0);
1888 /* at the end of a basic block, we assume all temporaries are dead and
1889 all globals are stored at their canonical location. */
1890 static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs)
1892 int i;
1894 for (i = s->nb_globals; i < s->nb_temps; i++) {
1895 TCGTemp *ts = &s->temps[i];
1896 if (ts->temp_local) {
1897 temp_save(s, ts, allocated_regs);
1898 } else {
1899 #ifdef USE_LIVENESS_ANALYSIS
1900 /* ??? Liveness does not yet incorporate indirect bases. */
1901 if (!ts->indirect_base) {
1902 /* The liveness analysis already ensures that temps are dead.
1903 Keep an tcg_debug_assert for safety. */
1904 tcg_debug_assert(ts->val_type == TEMP_VAL_DEAD);
1905 continue;
1907 #endif
1908 temp_dead(s, ts);
1912 save_globals(s, allocated_regs);
1915 #define IS_DEAD_ARG(n) (arg_life & (DEAD_ARG << (n)))
1916 #define NEED_SYNC_ARG(n) (arg_life & (SYNC_ARG << (n)))
1918 static void tcg_reg_alloc_movi(TCGContext *s, const TCGArg *args,
1919 TCGLifeData arg_life)
1921 TCGTemp *ots;
1922 tcg_target_ulong val;
1924 ots = &s->temps[args[0]];
1925 val = args[1];
1927 if (ots->fixed_reg) {
1928 /* For fixed registers, we do not do any constant propagation. */
1929 tcg_out_movi(s, ots->type, ots->reg, val);
1930 return;
1933 /* The movi is not explicitly generated here. */
1934 if (ots->val_type == TEMP_VAL_REG) {
1935 s->reg_to_temp[ots->reg] = NULL;
1937 ots->val_type = TEMP_VAL_CONST;
1938 ots->val = val;
1939 ots->mem_coherent = 0;
1940 if (NEED_SYNC_ARG(0)) {
1941 temp_sync(s, ots, s->reserved_regs, IS_DEAD_ARG(0));
1942 } else if (IS_DEAD_ARG(0)) {
1943 temp_dead(s, ots);
1947 static void tcg_reg_alloc_mov(TCGContext *s, const TCGOpDef *def,
1948 const TCGArg *args, TCGLifeData arg_life)
1950 TCGRegSet allocated_regs;
1951 TCGTemp *ts, *ots;
1952 TCGType otype, itype;
1954 tcg_regset_set(allocated_regs, s->reserved_regs);
1955 ots = &s->temps[args[0]];
1956 ts = &s->temps[args[1]];
1958 /* Note that otype != itype for no-op truncation. */
1959 otype = ots->type;
1960 itype = ts->type;
1962 /* If the source value is not in a register, and we're going to be
1963 forced to have it in a register in order to perform the copy,
1964 then copy the SOURCE value into its own register first. That way
1965 we don't have to reload SOURCE the next time it is used. */
1966 if (((NEED_SYNC_ARG(0) || ots->fixed_reg) && ts->val_type != TEMP_VAL_REG)
1967 || ts->val_type == TEMP_VAL_MEM) {
1968 temp_load(s, ts, tcg_target_available_regs[itype], allocated_regs);
1971 if (IS_DEAD_ARG(0) && !ots->fixed_reg) {
1972 /* mov to a non-saved dead register makes no sense (even with
1973 liveness analysis disabled). */
1974 tcg_debug_assert(NEED_SYNC_ARG(0));
1975 /* The code above should have moved the temp to a register. */
1976 tcg_debug_assert(ts->val_type == TEMP_VAL_REG);
1977 if (!ots->mem_allocated) {
1978 temp_allocate_frame(s, args[0]);
1980 if (ots->indirect_reg) {
1981 tcg_regset_set_reg(allocated_regs, ts->reg);
1982 temp_load(s, ots->mem_base,
1983 tcg_target_available_regs[TCG_TYPE_PTR],
1984 allocated_regs);
1986 tcg_out_st(s, otype, ts->reg, ots->mem_base->reg, ots->mem_offset);
1987 if (IS_DEAD_ARG(1)) {
1988 temp_dead(s, ts);
1990 temp_dead(s, ots);
1991 } else if (ts->val_type == TEMP_VAL_CONST) {
1992 /* propagate constant */
1993 if (ots->val_type == TEMP_VAL_REG) {
1994 s->reg_to_temp[ots->reg] = NULL;
1996 ots->val_type = TEMP_VAL_CONST;
1997 ots->val = ts->val;
1998 if (IS_DEAD_ARG(1)) {
1999 temp_dead(s, ts);
2001 } else {
2002 /* The code in the first if block should have moved the
2003 temp to a register. */
2004 tcg_debug_assert(ts->val_type == TEMP_VAL_REG);
2005 if (IS_DEAD_ARG(1) && !ts->fixed_reg && !ots->fixed_reg) {
2006 /* the mov can be suppressed */
2007 if (ots->val_type == TEMP_VAL_REG) {
2008 s->reg_to_temp[ots->reg] = NULL;
2010 ots->reg = ts->reg;
2011 temp_dead(s, ts);
2012 } else {
2013 if (ots->val_type != TEMP_VAL_REG) {
2014 /* When allocating a new register, make sure to not spill the
2015 input one. */
2016 tcg_regset_set_reg(allocated_regs, ts->reg);
2017 ots->reg = tcg_reg_alloc(s, tcg_target_available_regs[otype],
2018 allocated_regs, ots->indirect_base);
2020 tcg_out_mov(s, otype, ots->reg, ts->reg);
2022 ots->val_type = TEMP_VAL_REG;
2023 ots->mem_coherent = 0;
2024 s->reg_to_temp[ots->reg] = ots;
2025 if (NEED_SYNC_ARG(0)) {
2026 temp_sync(s, ots, allocated_regs, 0);
2031 static void tcg_reg_alloc_op(TCGContext *s,
2032 const TCGOpDef *def, TCGOpcode opc,
2033 const TCGArg *args, TCGLifeData arg_life)
2035 TCGRegSet allocated_regs;
2036 int i, k, nb_iargs, nb_oargs;
2037 TCGReg reg;
2038 TCGArg arg;
2039 const TCGArgConstraint *arg_ct;
2040 TCGTemp *ts;
2041 TCGArg new_args[TCG_MAX_OP_ARGS];
2042 int const_args[TCG_MAX_OP_ARGS];
2044 nb_oargs = def->nb_oargs;
2045 nb_iargs = def->nb_iargs;
2047 /* copy constants */
2048 memcpy(new_args + nb_oargs + nb_iargs,
2049 args + nb_oargs + nb_iargs,
2050 sizeof(TCGArg) * def->nb_cargs);
2052 /* satisfy input constraints */
2053 tcg_regset_set(allocated_regs, s->reserved_regs);
2054 for(k = 0; k < nb_iargs; k++) {
2055 i = def->sorted_args[nb_oargs + k];
2056 arg = args[i];
2057 arg_ct = &def->args_ct[i];
2058 ts = &s->temps[arg];
2060 if (ts->val_type == TEMP_VAL_CONST
2061 && tcg_target_const_match(ts->val, ts->type, arg_ct)) {
2062 /* constant is OK for instruction */
2063 const_args[i] = 1;
2064 new_args[i] = ts->val;
2065 goto iarg_end;
2068 temp_load(s, ts, arg_ct->u.regs, allocated_regs);
2070 if (arg_ct->ct & TCG_CT_IALIAS) {
2071 if (ts->fixed_reg) {
2072 /* if fixed register, we must allocate a new register
2073 if the alias is not the same register */
2074 if (arg != args[arg_ct->alias_index])
2075 goto allocate_in_reg;
2076 } else {
2077 /* if the input is aliased to an output and if it is
2078 not dead after the instruction, we must allocate
2079 a new register and move it */
2080 if (!IS_DEAD_ARG(i)) {
2081 goto allocate_in_reg;
2083 /* check if the current register has already been allocated
2084 for another input aliased to an output */
2085 int k2, i2;
2086 for (k2 = 0 ; k2 < k ; k2++) {
2087 i2 = def->sorted_args[nb_oargs + k2];
2088 if ((def->args_ct[i2].ct & TCG_CT_IALIAS) &&
2089 (new_args[i2] == ts->reg)) {
2090 goto allocate_in_reg;
2095 reg = ts->reg;
2096 if (tcg_regset_test_reg(arg_ct->u.regs, reg)) {
2097 /* nothing to do : the constraint is satisfied */
2098 } else {
2099 allocate_in_reg:
2100 /* allocate a new register matching the constraint
2101 and move the temporary register into it */
2102 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs,
2103 ts->indirect_base);
2104 tcg_out_mov(s, ts->type, reg, ts->reg);
2106 new_args[i] = reg;
2107 const_args[i] = 0;
2108 tcg_regset_set_reg(allocated_regs, reg);
2109 iarg_end: ;
2112 /* mark dead temporaries and free the associated registers */
2113 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
2114 if (IS_DEAD_ARG(i)) {
2115 temp_dead(s, &s->temps[args[i]]);
2119 if (def->flags & TCG_OPF_BB_END) {
2120 tcg_reg_alloc_bb_end(s, allocated_regs);
2121 } else {
2122 if (def->flags & TCG_OPF_CALL_CLOBBER) {
2123 /* XXX: permit generic clobber register list ? */
2124 for (i = 0; i < TCG_TARGET_NB_REGS; i++) {
2125 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, i)) {
2126 tcg_reg_free(s, i, allocated_regs);
2130 if (def->flags & TCG_OPF_SIDE_EFFECTS) {
2131 /* sync globals if the op has side effects and might trigger
2132 an exception. */
2133 sync_globals(s, allocated_regs);
2136 /* satisfy the output constraints */
2137 tcg_regset_set(allocated_regs, s->reserved_regs);
2138 for(k = 0; k < nb_oargs; k++) {
2139 i = def->sorted_args[k];
2140 arg = args[i];
2141 arg_ct = &def->args_ct[i];
2142 ts = &s->temps[arg];
2143 if (arg_ct->ct & TCG_CT_ALIAS) {
2144 reg = new_args[arg_ct->alias_index];
2145 } else {
2146 /* if fixed register, we try to use it */
2147 reg = ts->reg;
2148 if (ts->fixed_reg &&
2149 tcg_regset_test_reg(arg_ct->u.regs, reg)) {
2150 goto oarg_end;
2152 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs,
2153 ts->indirect_base);
2155 tcg_regset_set_reg(allocated_regs, reg);
2156 /* if a fixed register is used, then a move will be done afterwards */
2157 if (!ts->fixed_reg) {
2158 if (ts->val_type == TEMP_VAL_REG) {
2159 s->reg_to_temp[ts->reg] = NULL;
2161 ts->val_type = TEMP_VAL_REG;
2162 ts->reg = reg;
2163 /* temp value is modified, so the value kept in memory is
2164 potentially not the same */
2165 ts->mem_coherent = 0;
2166 s->reg_to_temp[reg] = ts;
2168 oarg_end:
2169 new_args[i] = reg;
2173 /* emit instruction */
2174 tcg_out_op(s, opc, new_args, const_args);
2176 /* move the outputs in the correct register if needed */
2177 for(i = 0; i < nb_oargs; i++) {
2178 ts = &s->temps[args[i]];
2179 reg = new_args[i];
2180 if (ts->fixed_reg && ts->reg != reg) {
2181 tcg_out_mov(s, ts->type, ts->reg, reg);
2183 if (NEED_SYNC_ARG(i)) {
2184 temp_sync(s, ts, allocated_regs, IS_DEAD_ARG(i));
2185 } else if (IS_DEAD_ARG(i)) {
2186 temp_dead(s, ts);
2191 #ifdef TCG_TARGET_STACK_GROWSUP
2192 #define STACK_DIR(x) (-(x))
2193 #else
2194 #define STACK_DIR(x) (x)
2195 #endif
2197 static void tcg_reg_alloc_call(TCGContext *s, int nb_oargs, int nb_iargs,
2198 const TCGArg * const args, TCGLifeData arg_life)
2200 int flags, nb_regs, i;
2201 TCGReg reg;
2202 TCGArg arg;
2203 TCGTemp *ts;
2204 intptr_t stack_offset;
2205 size_t call_stack_size;
2206 tcg_insn_unit *func_addr;
2207 int allocate_args;
2208 TCGRegSet allocated_regs;
2210 func_addr = (tcg_insn_unit *)(intptr_t)args[nb_oargs + nb_iargs];
2211 flags = args[nb_oargs + nb_iargs + 1];
2213 nb_regs = ARRAY_SIZE(tcg_target_call_iarg_regs);
2214 if (nb_regs > nb_iargs) {
2215 nb_regs = nb_iargs;
2218 /* assign stack slots first */
2219 call_stack_size = (nb_iargs - nb_regs) * sizeof(tcg_target_long);
2220 call_stack_size = (call_stack_size + TCG_TARGET_STACK_ALIGN - 1) &
2221 ~(TCG_TARGET_STACK_ALIGN - 1);
2222 allocate_args = (call_stack_size > TCG_STATIC_CALL_ARGS_SIZE);
2223 if (allocate_args) {
2224 /* XXX: if more than TCG_STATIC_CALL_ARGS_SIZE is needed,
2225 preallocate call stack */
2226 tcg_abort();
2229 stack_offset = TCG_TARGET_CALL_STACK_OFFSET;
2230 for(i = nb_regs; i < nb_iargs; i++) {
2231 arg = args[nb_oargs + i];
2232 #ifdef TCG_TARGET_STACK_GROWSUP
2233 stack_offset -= sizeof(tcg_target_long);
2234 #endif
2235 if (arg != TCG_CALL_DUMMY_ARG) {
2236 ts = &s->temps[arg];
2237 temp_load(s, ts, tcg_target_available_regs[ts->type],
2238 s->reserved_regs);
2239 tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, stack_offset);
2241 #ifndef TCG_TARGET_STACK_GROWSUP
2242 stack_offset += sizeof(tcg_target_long);
2243 #endif
2246 /* assign input registers */
2247 tcg_regset_set(allocated_regs, s->reserved_regs);
2248 for(i = 0; i < nb_regs; i++) {
2249 arg = args[nb_oargs + i];
2250 if (arg != TCG_CALL_DUMMY_ARG) {
2251 ts = &s->temps[arg];
2252 reg = tcg_target_call_iarg_regs[i];
2253 tcg_reg_free(s, reg, allocated_regs);
2255 if (ts->val_type == TEMP_VAL_REG) {
2256 if (ts->reg != reg) {
2257 tcg_out_mov(s, ts->type, reg, ts->reg);
2259 } else {
2260 TCGRegSet arg_set;
2262 tcg_regset_clear(arg_set);
2263 tcg_regset_set_reg(arg_set, reg);
2264 temp_load(s, ts, arg_set, allocated_regs);
2267 tcg_regset_set_reg(allocated_regs, reg);
2271 /* mark dead temporaries and free the associated registers */
2272 for(i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
2273 if (IS_DEAD_ARG(i)) {
2274 temp_dead(s, &s->temps[args[i]]);
2278 /* clobber call registers */
2279 for (i = 0; i < TCG_TARGET_NB_REGS; i++) {
2280 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, i)) {
2281 tcg_reg_free(s, i, allocated_regs);
2285 /* Save globals if they might be written by the helper, sync them if
2286 they might be read. */
2287 if (flags & TCG_CALL_NO_READ_GLOBALS) {
2288 /* Nothing to do */
2289 } else if (flags & TCG_CALL_NO_WRITE_GLOBALS) {
2290 sync_globals(s, allocated_regs);
2291 } else {
2292 save_globals(s, allocated_regs);
2295 tcg_out_call(s, func_addr);
2297 /* assign output registers and emit moves if needed */
2298 for(i = 0; i < nb_oargs; i++) {
2299 arg = args[i];
2300 ts = &s->temps[arg];
2301 reg = tcg_target_call_oarg_regs[i];
2302 tcg_debug_assert(s->reg_to_temp[reg] == NULL);
2304 if (ts->fixed_reg) {
2305 if (ts->reg != reg) {
2306 tcg_out_mov(s, ts->type, ts->reg, reg);
2308 } else {
2309 if (ts->val_type == TEMP_VAL_REG) {
2310 s->reg_to_temp[ts->reg] = NULL;
2312 ts->val_type = TEMP_VAL_REG;
2313 ts->reg = reg;
2314 ts->mem_coherent = 0;
2315 s->reg_to_temp[reg] = ts;
2316 if (NEED_SYNC_ARG(i)) {
2317 temp_sync(s, ts, allocated_regs, IS_DEAD_ARG(i));
2318 } else if (IS_DEAD_ARG(i)) {
2319 temp_dead(s, ts);
2325 #ifdef CONFIG_PROFILER
2327 static int64_t tcg_table_op_count[NB_OPS];
2329 void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
2331 int i;
2333 for (i = 0; i < NB_OPS; i++) {
2334 cpu_fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name,
2335 tcg_table_op_count[i]);
2338 #else
2339 void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
2341 cpu_fprintf(f, "[TCG profiler not compiled]\n");
2343 #endif
2346 int tcg_gen_code(TCGContext *s, TranslationBlock *tb)
2348 int i, oi, oi_next, num_insns;
2350 #ifdef CONFIG_PROFILER
2352 int n;
2354 n = s->gen_last_op_idx + 1;
2355 s->op_count += n;
2356 if (n > s->op_count_max) {
2357 s->op_count_max = n;
2360 n = s->nb_temps;
2361 s->temp_count += n;
2362 if (n > s->temp_count_max) {
2363 s->temp_count_max = n;
2366 #endif
2368 #ifdef DEBUG_DISAS
2369 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP)
2370 && qemu_log_in_addr_range(tb->pc))) {
2371 qemu_log("OP:\n");
2372 tcg_dump_ops(s);
2373 qemu_log("\n");
2375 #endif
2377 #ifdef CONFIG_PROFILER
2378 s->opt_time -= profile_getclock();
2379 #endif
2381 #ifdef USE_TCG_OPTIMIZATIONS
2382 tcg_optimize(s);
2383 #endif
2385 #ifdef CONFIG_PROFILER
2386 s->opt_time += profile_getclock();
2387 s->la_time -= profile_getclock();
2388 #endif
2390 tcg_liveness_analysis(s);
2392 #ifdef CONFIG_PROFILER
2393 s->la_time += profile_getclock();
2394 #endif
2396 #ifdef DEBUG_DISAS
2397 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_OPT)
2398 && qemu_log_in_addr_range(tb->pc))) {
2399 qemu_log("OP after optimization and liveness analysis:\n");
2400 tcg_dump_ops(s);
2401 qemu_log("\n");
2403 #endif
2405 tcg_reg_alloc_start(s);
2407 s->code_buf = tb->tc_ptr;
2408 s->code_ptr = tb->tc_ptr;
2410 tcg_out_tb_init(s);
2412 num_insns = -1;
2413 for (oi = s->gen_first_op_idx; oi >= 0; oi = oi_next) {
2414 TCGOp * const op = &s->gen_op_buf[oi];
2415 TCGArg * const args = &s->gen_opparam_buf[op->args];
2416 TCGOpcode opc = op->opc;
2417 const TCGOpDef *def = &tcg_op_defs[opc];
2418 TCGLifeData arg_life = s->op_arg_life[oi];
2420 oi_next = op->next;
2421 #ifdef CONFIG_PROFILER
2422 tcg_table_op_count[opc]++;
2423 #endif
2425 switch (opc) {
2426 case INDEX_op_mov_i32:
2427 case INDEX_op_mov_i64:
2428 tcg_reg_alloc_mov(s, def, args, arg_life);
2429 break;
2430 case INDEX_op_movi_i32:
2431 case INDEX_op_movi_i64:
2432 tcg_reg_alloc_movi(s, args, arg_life);
2433 break;
2434 case INDEX_op_insn_start:
2435 if (num_insns >= 0) {
2436 s->gen_insn_end_off[num_insns] = tcg_current_code_size(s);
2438 num_insns++;
2439 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
2440 target_ulong a;
2441 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
2442 a = ((target_ulong)args[i * 2 + 1] << 32) | args[i * 2];
2443 #else
2444 a = args[i];
2445 #endif
2446 s->gen_insn_data[num_insns][i] = a;
2448 break;
2449 case INDEX_op_discard:
2450 temp_dead(s, &s->temps[args[0]]);
2451 break;
2452 case INDEX_op_set_label:
2453 tcg_reg_alloc_bb_end(s, s->reserved_regs);
2454 tcg_out_label(s, arg_label(args[0]), s->code_ptr);
2455 break;
2456 case INDEX_op_call:
2457 tcg_reg_alloc_call(s, op->callo, op->calli, args, arg_life);
2458 break;
2459 default:
2460 /* Sanity check that we've not introduced any unhandled opcodes. */
2461 if (def->flags & TCG_OPF_NOT_PRESENT) {
2462 tcg_abort();
2464 /* Note: in order to speed up the code, it would be much
2465 faster to have specialized register allocator functions for
2466 some common argument patterns */
2467 tcg_reg_alloc_op(s, def, opc, args, arg_life);
2468 break;
2470 #ifdef CONFIG_DEBUG_TCG
2471 check_regs(s);
2472 #endif
2473 /* Test for (pending) buffer overflow. The assumption is that any
2474 one operation beginning below the high water mark cannot overrun
2475 the buffer completely. Thus we can test for overflow after
2476 generating code without having to check during generation. */
2477 if (unlikely((void *)s->code_ptr > s->code_gen_highwater)) {
2478 return -1;
2481 tcg_debug_assert(num_insns >= 0);
2482 s->gen_insn_end_off[num_insns] = tcg_current_code_size(s);
2484 /* Generate TB finalization at the end of block */
2485 if (!tcg_out_tb_finalize(s)) {
2486 return -1;
2489 /* flush instruction cache */
2490 flush_icache_range((uintptr_t)s->code_buf, (uintptr_t)s->code_ptr);
2492 return tcg_current_code_size(s);
2495 #ifdef CONFIG_PROFILER
2496 void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
2498 TCGContext *s = &tcg_ctx;
2499 int64_t tb_count = s->tb_count;
2500 int64_t tb_div_count = tb_count ? tb_count : 1;
2501 int64_t tot = s->interm_time + s->code_time;
2503 cpu_fprintf(f, "JIT cycles %" PRId64 " (%0.3f s at 2.4 GHz)\n",
2504 tot, tot / 2.4e9);
2505 cpu_fprintf(f, "translated TBs %" PRId64 " (aborted=%" PRId64 " %0.1f%%)\n",
2506 tb_count, s->tb_count1 - tb_count,
2507 (double)(s->tb_count1 - s->tb_count)
2508 / (s->tb_count1 ? s->tb_count1 : 1) * 100.0);
2509 cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n",
2510 (double)s->op_count / tb_div_count, s->op_count_max);
2511 cpu_fprintf(f, "deleted ops/TB %0.2f\n",
2512 (double)s->del_op_count / tb_div_count);
2513 cpu_fprintf(f, "avg temps/TB %0.2f max=%d\n",
2514 (double)s->temp_count / tb_div_count, s->temp_count_max);
2515 cpu_fprintf(f, "avg host code/TB %0.1f\n",
2516 (double)s->code_out_len / tb_div_count);
2517 cpu_fprintf(f, "avg search data/TB %0.1f\n",
2518 (double)s->search_out_len / tb_div_count);
2520 cpu_fprintf(f, "cycles/op %0.1f\n",
2521 s->op_count ? (double)tot / s->op_count : 0);
2522 cpu_fprintf(f, "cycles/in byte %0.1f\n",
2523 s->code_in_len ? (double)tot / s->code_in_len : 0);
2524 cpu_fprintf(f, "cycles/out byte %0.1f\n",
2525 s->code_out_len ? (double)tot / s->code_out_len : 0);
2526 cpu_fprintf(f, "cycles/search byte %0.1f\n",
2527 s->search_out_len ? (double)tot / s->search_out_len : 0);
2528 if (tot == 0) {
2529 tot = 1;
2531 cpu_fprintf(f, " gen_interm time %0.1f%%\n",
2532 (double)s->interm_time / tot * 100.0);
2533 cpu_fprintf(f, " gen_code time %0.1f%%\n",
2534 (double)s->code_time / tot * 100.0);
2535 cpu_fprintf(f, "optim./code time %0.1f%%\n",
2536 (double)s->opt_time / (s->code_time ? s->code_time : 1)
2537 * 100.0);
2538 cpu_fprintf(f, "liveness/code time %0.1f%%\n",
2539 (double)s->la_time / (s->code_time ? s->code_time : 1) * 100.0);
2540 cpu_fprintf(f, "cpu_restore count %" PRId64 "\n",
2541 s->restore_count);
2542 cpu_fprintf(f, " avg cycles %0.1f\n",
2543 s->restore_count ? (double)s->restore_time / s->restore_count : 0);
2545 #else
2546 void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
2548 cpu_fprintf(f, "[TCG profiler not compiled]\n");
2550 #endif
2552 #ifdef ELF_HOST_MACHINE
2553 /* In order to use this feature, the backend needs to do three things:
2555 (1) Define ELF_HOST_MACHINE to indicate both what value to
2556 put into the ELF image and to indicate support for the feature.
2558 (2) Define tcg_register_jit. This should create a buffer containing
2559 the contents of a .debug_frame section that describes the post-
2560 prologue unwind info for the tcg machine.
2562 (3) Call tcg_register_jit_int, with the constructed .debug_frame.
2565 /* Begin GDB interface. THE FOLLOWING MUST MATCH GDB DOCS. */
2566 typedef enum {
2567 JIT_NOACTION = 0,
2568 JIT_REGISTER_FN,
2569 JIT_UNREGISTER_FN
2570 } jit_actions_t;
2572 struct jit_code_entry {
2573 struct jit_code_entry *next_entry;
2574 struct jit_code_entry *prev_entry;
2575 const void *symfile_addr;
2576 uint64_t symfile_size;
2579 struct jit_descriptor {
2580 uint32_t version;
2581 uint32_t action_flag;
2582 struct jit_code_entry *relevant_entry;
2583 struct jit_code_entry *first_entry;
2586 void __jit_debug_register_code(void) __attribute__((noinline));
2587 void __jit_debug_register_code(void)
2589 asm("");
2592 /* Must statically initialize the version, because GDB may check
2593 the version before we can set it. */
2594 struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 };
2596 /* End GDB interface. */
2598 static int find_string(const char *strtab, const char *str)
2600 const char *p = strtab + 1;
2602 while (1) {
2603 if (strcmp(p, str) == 0) {
2604 return p - strtab;
2606 p += strlen(p) + 1;
2610 static void tcg_register_jit_int(void *buf_ptr, size_t buf_size,
2611 const void *debug_frame,
2612 size_t debug_frame_size)
2614 struct __attribute__((packed)) DebugInfo {
2615 uint32_t len;
2616 uint16_t version;
2617 uint32_t abbrev;
2618 uint8_t ptr_size;
2619 uint8_t cu_die;
2620 uint16_t cu_lang;
2621 uintptr_t cu_low_pc;
2622 uintptr_t cu_high_pc;
2623 uint8_t fn_die;
2624 char fn_name[16];
2625 uintptr_t fn_low_pc;
2626 uintptr_t fn_high_pc;
2627 uint8_t cu_eoc;
2630 struct ElfImage {
2631 ElfW(Ehdr) ehdr;
2632 ElfW(Phdr) phdr;
2633 ElfW(Shdr) shdr[7];
2634 ElfW(Sym) sym[2];
2635 struct DebugInfo di;
2636 uint8_t da[24];
2637 char str[80];
2640 struct ElfImage *img;
2642 static const struct ElfImage img_template = {
2643 .ehdr = {
2644 .e_ident[EI_MAG0] = ELFMAG0,
2645 .e_ident[EI_MAG1] = ELFMAG1,
2646 .e_ident[EI_MAG2] = ELFMAG2,
2647 .e_ident[EI_MAG3] = ELFMAG3,
2648 .e_ident[EI_CLASS] = ELF_CLASS,
2649 .e_ident[EI_DATA] = ELF_DATA,
2650 .e_ident[EI_VERSION] = EV_CURRENT,
2651 .e_type = ET_EXEC,
2652 .e_machine = ELF_HOST_MACHINE,
2653 .e_version = EV_CURRENT,
2654 .e_phoff = offsetof(struct ElfImage, phdr),
2655 .e_shoff = offsetof(struct ElfImage, shdr),
2656 .e_ehsize = sizeof(ElfW(Shdr)),
2657 .e_phentsize = sizeof(ElfW(Phdr)),
2658 .e_phnum = 1,
2659 .e_shentsize = sizeof(ElfW(Shdr)),
2660 .e_shnum = ARRAY_SIZE(img->shdr),
2661 .e_shstrndx = ARRAY_SIZE(img->shdr) - 1,
2662 #ifdef ELF_HOST_FLAGS
2663 .e_flags = ELF_HOST_FLAGS,
2664 #endif
2665 #ifdef ELF_OSABI
2666 .e_ident[EI_OSABI] = ELF_OSABI,
2667 #endif
2669 .phdr = {
2670 .p_type = PT_LOAD,
2671 .p_flags = PF_X,
2673 .shdr = {
2674 [0] = { .sh_type = SHT_NULL },
2675 /* Trick: The contents of code_gen_buffer are not present in
2676 this fake ELF file; that got allocated elsewhere. Therefore
2677 we mark .text as SHT_NOBITS (similar to .bss) so that readers
2678 will not look for contents. We can record any address. */
2679 [1] = { /* .text */
2680 .sh_type = SHT_NOBITS,
2681 .sh_flags = SHF_EXECINSTR | SHF_ALLOC,
2683 [2] = { /* .debug_info */
2684 .sh_type = SHT_PROGBITS,
2685 .sh_offset = offsetof(struct ElfImage, di),
2686 .sh_size = sizeof(struct DebugInfo),
2688 [3] = { /* .debug_abbrev */
2689 .sh_type = SHT_PROGBITS,
2690 .sh_offset = offsetof(struct ElfImage, da),
2691 .sh_size = sizeof(img->da),
2693 [4] = { /* .debug_frame */
2694 .sh_type = SHT_PROGBITS,
2695 .sh_offset = sizeof(struct ElfImage),
2697 [5] = { /* .symtab */
2698 .sh_type = SHT_SYMTAB,
2699 .sh_offset = offsetof(struct ElfImage, sym),
2700 .sh_size = sizeof(img->sym),
2701 .sh_info = 1,
2702 .sh_link = ARRAY_SIZE(img->shdr) - 1,
2703 .sh_entsize = sizeof(ElfW(Sym)),
2705 [6] = { /* .strtab */
2706 .sh_type = SHT_STRTAB,
2707 .sh_offset = offsetof(struct ElfImage, str),
2708 .sh_size = sizeof(img->str),
2711 .sym = {
2712 [1] = { /* code_gen_buffer */
2713 .st_info = ELF_ST_INFO(STB_GLOBAL, STT_FUNC),
2714 .st_shndx = 1,
2717 .di = {
2718 .len = sizeof(struct DebugInfo) - 4,
2719 .version = 2,
2720 .ptr_size = sizeof(void *),
2721 .cu_die = 1,
2722 .cu_lang = 0x8001, /* DW_LANG_Mips_Assembler */
2723 .fn_die = 2,
2724 .fn_name = "code_gen_buffer"
2726 .da = {
2727 1, /* abbrev number (the cu) */
2728 0x11, 1, /* DW_TAG_compile_unit, has children */
2729 0x13, 0x5, /* DW_AT_language, DW_FORM_data2 */
2730 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
2731 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
2732 0, 0, /* end of abbrev */
2733 2, /* abbrev number (the fn) */
2734 0x2e, 0, /* DW_TAG_subprogram, no children */
2735 0x3, 0x8, /* DW_AT_name, DW_FORM_string */
2736 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
2737 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
2738 0, 0, /* end of abbrev */
2739 0 /* no more abbrev */
2741 .str = "\0" ".text\0" ".debug_info\0" ".debug_abbrev\0"
2742 ".debug_frame\0" ".symtab\0" ".strtab\0" "code_gen_buffer",
2745 /* We only need a single jit entry; statically allocate it. */
2746 static struct jit_code_entry one_entry;
2748 uintptr_t buf = (uintptr_t)buf_ptr;
2749 size_t img_size = sizeof(struct ElfImage) + debug_frame_size;
2750 DebugFrameHeader *dfh;
2752 img = g_malloc(img_size);
2753 *img = img_template;
2755 img->phdr.p_vaddr = buf;
2756 img->phdr.p_paddr = buf;
2757 img->phdr.p_memsz = buf_size;
2759 img->shdr[1].sh_name = find_string(img->str, ".text");
2760 img->shdr[1].sh_addr = buf;
2761 img->shdr[1].sh_size = buf_size;
2763 img->shdr[2].sh_name = find_string(img->str, ".debug_info");
2764 img->shdr[3].sh_name = find_string(img->str, ".debug_abbrev");
2766 img->shdr[4].sh_name = find_string(img->str, ".debug_frame");
2767 img->shdr[4].sh_size = debug_frame_size;
2769 img->shdr[5].sh_name = find_string(img->str, ".symtab");
2770 img->shdr[6].sh_name = find_string(img->str, ".strtab");
2772 img->sym[1].st_name = find_string(img->str, "code_gen_buffer");
2773 img->sym[1].st_value = buf;
2774 img->sym[1].st_size = buf_size;
2776 img->di.cu_low_pc = buf;
2777 img->di.cu_high_pc = buf + buf_size;
2778 img->di.fn_low_pc = buf;
2779 img->di.fn_high_pc = buf + buf_size;
2781 dfh = (DebugFrameHeader *)(img + 1);
2782 memcpy(dfh, debug_frame, debug_frame_size);
2783 dfh->fde.func_start = buf;
2784 dfh->fde.func_len = buf_size;
2786 #ifdef DEBUG_JIT
2787 /* Enable this block to be able to debug the ELF image file creation.
2788 One can use readelf, objdump, or other inspection utilities. */
2790 FILE *f = fopen("/tmp/qemu.jit", "w+b");
2791 if (f) {
2792 if (fwrite(img, img_size, 1, f) != img_size) {
2793 /* Avoid stupid unused return value warning for fwrite. */
2795 fclose(f);
2798 #endif
2800 one_entry.symfile_addr = img;
2801 one_entry.symfile_size = img_size;
2803 __jit_debug_descriptor.action_flag = JIT_REGISTER_FN;
2804 __jit_debug_descriptor.relevant_entry = &one_entry;
2805 __jit_debug_descriptor.first_entry = &one_entry;
2806 __jit_debug_register_code();
2808 #else
2809 /* No support for the feature. Provide the entry point expected by exec.c,
2810 and implement the internal function we declared earlier. */
2812 static void tcg_register_jit_int(void *buf, size_t size,
2813 const void *debug_frame,
2814 size_t debug_frame_size)
2818 void tcg_register_jit(void *buf, size_t buf_size)
2821 #endif /* ELF_HOST_MACHINE */