linux-user: Introduce h2g_valid
[qemu/sh4.git] / tcg / tcg.c
blobe3a104cf5bb4682219ac6fef8af28b8a04cdbee6
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 suppress various consistency checks (faster) */
26 #define NDEBUG
28 /* define it to use liveness analysis (better code) */
29 #define USE_LIVENESS_ANALYSIS
31 #include <assert.h>
32 #include <stdarg.h>
33 #include <stdlib.h>
34 #include <stdio.h>
35 #include <string.h>
36 #include <inttypes.h>
37 #ifdef _WIN32
38 #include <malloc.h>
39 #endif
40 #ifdef _AIX
41 #include <alloca.h>
42 #endif
44 #include "config.h"
45 #include "qemu-common.h"
47 /* Note: the long term plan is to reduce the dependancies on the QEMU
48 CPU definitions. Currently they are used for qemu_ld/st
49 instructions */
50 #define NO_CPU_IO_DEFS
51 #include "cpu.h"
52 #include "exec-all.h"
54 #include "tcg-op.h"
55 #include "elf.h"
58 static void patch_reloc(uint8_t *code_ptr, int type,
59 tcg_target_long value, tcg_target_long addend);
61 TCGOpDef tcg_op_defs[] = {
62 #define DEF(s, n, copy_size) { #s, 0, 0, n, n, 0, copy_size },
63 #define DEF2(s, iargs, oargs, cargs, flags) { #s, iargs, oargs, cargs, iargs + oargs + cargs, flags, 0 },
64 #include "tcg-opc.h"
65 #undef DEF
66 #undef DEF2
69 static TCGRegSet tcg_target_available_regs[2];
70 static TCGRegSet tcg_target_call_clobber_regs;
72 /* XXX: move that inside the context */
73 uint16_t *gen_opc_ptr;
74 TCGArg *gen_opparam_ptr;
76 static inline void tcg_out8(TCGContext *s, uint8_t v)
78 *s->code_ptr++ = v;
81 static inline void tcg_out16(TCGContext *s, uint16_t v)
83 *(uint16_t *)s->code_ptr = v;
84 s->code_ptr += 2;
87 static inline void tcg_out32(TCGContext *s, uint32_t v)
89 *(uint32_t *)s->code_ptr = v;
90 s->code_ptr += 4;
93 /* label relocation processing */
95 void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type,
96 int label_index, long addend)
98 TCGLabel *l;
99 TCGRelocation *r;
101 l = &s->labels[label_index];
102 if (l->has_value) {
103 /* FIXME: This may break relocations on RISC targets that
104 modify instruction fields in place. The caller may not have
105 written the initial value. */
106 patch_reloc(code_ptr, type, l->u.value, addend);
107 } else {
108 /* add a new relocation entry */
109 r = tcg_malloc(sizeof(TCGRelocation));
110 r->type = type;
111 r->ptr = code_ptr;
112 r->addend = addend;
113 r->next = l->u.first_reloc;
114 l->u.first_reloc = r;
118 static void tcg_out_label(TCGContext *s, int label_index,
119 tcg_target_long value)
121 TCGLabel *l;
122 TCGRelocation *r;
124 l = &s->labels[label_index];
125 if (l->has_value)
126 tcg_abort();
127 r = l->u.first_reloc;
128 while (r != NULL) {
129 patch_reloc(r->ptr, r->type, value, r->addend);
130 r = r->next;
132 l->has_value = 1;
133 l->u.value = value;
136 int gen_new_label(void)
138 TCGContext *s = &tcg_ctx;
139 int idx;
140 TCGLabel *l;
142 if (s->nb_labels >= TCG_MAX_LABELS)
143 tcg_abort();
144 idx = s->nb_labels++;
145 l = &s->labels[idx];
146 l->has_value = 0;
147 l->u.first_reloc = NULL;
148 return idx;
151 #include "tcg-target.c"
153 /* pool based memory allocation */
154 void *tcg_malloc_internal(TCGContext *s, int size)
156 TCGPool *p;
157 int pool_size;
159 if (size > TCG_POOL_CHUNK_SIZE) {
160 /* big malloc: insert a new pool (XXX: could optimize) */
161 p = qemu_malloc(sizeof(TCGPool) + size);
162 p->size = size;
163 if (s->pool_current)
164 s->pool_current->next = p;
165 else
166 s->pool_first = p;
167 p->next = s->pool_current;
168 } else {
169 p = s->pool_current;
170 if (!p) {
171 p = s->pool_first;
172 if (!p)
173 goto new_pool;
174 } else {
175 if (!p->next) {
176 new_pool:
177 pool_size = TCG_POOL_CHUNK_SIZE;
178 p = qemu_malloc(sizeof(TCGPool) + pool_size);
179 p->size = pool_size;
180 p->next = NULL;
181 if (s->pool_current)
182 s->pool_current->next = p;
183 else
184 s->pool_first = p;
185 } else {
186 p = p->next;
190 s->pool_current = p;
191 s->pool_cur = p->data + size;
192 s->pool_end = p->data + p->size;
193 return p->data;
196 void tcg_pool_reset(TCGContext *s)
198 s->pool_cur = s->pool_end = NULL;
199 s->pool_current = NULL;
202 void tcg_context_init(TCGContext *s)
204 int op, total_args, n;
205 TCGOpDef *def;
206 TCGArgConstraint *args_ct;
207 int *sorted_args;
209 memset(s, 0, sizeof(*s));
210 s->temps = s->static_temps;
211 s->nb_globals = 0;
213 /* Count total number of arguments and allocate the corresponding
214 space */
215 total_args = 0;
216 for(op = 0; op < NB_OPS; op++) {
217 def = &tcg_op_defs[op];
218 n = def->nb_iargs + def->nb_oargs;
219 total_args += n;
222 args_ct = qemu_malloc(sizeof(TCGArgConstraint) * total_args);
223 sorted_args = qemu_malloc(sizeof(int) * total_args);
225 for(op = 0; op < NB_OPS; op++) {
226 def = &tcg_op_defs[op];
227 def->args_ct = args_ct;
228 def->sorted_args = sorted_args;
229 n = def->nb_iargs + def->nb_oargs;
230 sorted_args += n;
231 args_ct += n;
234 tcg_target_init(s);
236 /* init global prologue and epilogue */
237 s->code_buf = code_gen_prologue;
238 s->code_ptr = s->code_buf;
239 tcg_target_qemu_prologue(s);
240 flush_icache_range((unsigned long)s->code_buf,
241 (unsigned long)s->code_ptr);
244 void tcg_set_frame(TCGContext *s, int reg,
245 tcg_target_long start, tcg_target_long size)
247 s->frame_start = start;
248 s->frame_end = start + size;
249 s->frame_reg = reg;
252 void tcg_func_start(TCGContext *s)
254 int i;
255 tcg_pool_reset(s);
256 s->nb_temps = s->nb_globals;
257 for(i = 0; i < (TCG_TYPE_COUNT * 2); i++)
258 s->first_free_temp[i] = -1;
259 s->labels = tcg_malloc(sizeof(TCGLabel) * TCG_MAX_LABELS);
260 s->nb_labels = 0;
261 s->current_frame_offset = s->frame_start;
263 gen_opc_ptr = gen_opc_buf;
264 gen_opparam_ptr = gen_opparam_buf;
267 static inline void tcg_temp_alloc(TCGContext *s, int n)
269 if (n > TCG_MAX_TEMPS)
270 tcg_abort();
273 static inline int tcg_global_reg_new_internal(TCGType type, int reg,
274 const char *name)
276 TCGContext *s = &tcg_ctx;
277 TCGTemp *ts;
278 int idx;
280 #if TCG_TARGET_REG_BITS == 32
281 if (type != TCG_TYPE_I32)
282 tcg_abort();
283 #endif
284 if (tcg_regset_test_reg(s->reserved_regs, reg))
285 tcg_abort();
286 idx = s->nb_globals;
287 tcg_temp_alloc(s, s->nb_globals + 1);
288 ts = &s->temps[s->nb_globals];
289 ts->base_type = type;
290 ts->type = type;
291 ts->fixed_reg = 1;
292 ts->reg = reg;
293 ts->name = name;
294 s->nb_globals++;
295 tcg_regset_set_reg(s->reserved_regs, reg);
296 return idx;
299 TCGv_i32 tcg_global_reg_new_i32(int reg, const char *name)
301 int idx;
303 idx = tcg_global_reg_new_internal(TCG_TYPE_I32, reg, name);
304 return MAKE_TCGV_I32(idx);
307 TCGv_i64 tcg_global_reg_new_i64(int reg, const char *name)
309 int idx;
311 idx = tcg_global_reg_new_internal(TCG_TYPE_I64, reg, name);
312 return MAKE_TCGV_I64(idx);
315 #if TCG_TARGET_REG_BITS == 32
316 /* temporary hack to avoid register shortage for tcg_qemu_st64() */
317 TCGv_i64 tcg_global_reg2_new_hack(TCGType type, int reg1, int reg2,
318 const char *name)
320 TCGContext *s = &tcg_ctx;
321 TCGTemp *ts;
322 int idx;
323 char buf[64];
325 if (type != TCG_TYPE_I64)
326 tcg_abort();
327 idx = s->nb_globals;
328 tcg_temp_alloc(s, s->nb_globals + 2);
329 ts = &s->temps[s->nb_globals];
330 ts->base_type = type;
331 ts->type = TCG_TYPE_I32;
332 ts->fixed_reg = 1;
333 ts->reg = reg1;
334 pstrcpy(buf, sizeof(buf), name);
335 pstrcat(buf, sizeof(buf), "_0");
336 ts->name = strdup(buf);
338 ts++;
339 ts->base_type = type;
340 ts->type = TCG_TYPE_I32;
341 ts->fixed_reg = 1;
342 ts->reg = reg2;
343 pstrcpy(buf, sizeof(buf), name);
344 pstrcat(buf, sizeof(buf), "_1");
345 ts->name = strdup(buf);
347 s->nb_globals += 2;
348 return MAKE_TCGV_I64(idx);
350 #endif
352 static inline int tcg_global_mem_new_internal(TCGType type, int reg,
353 tcg_target_long offset,
354 const char *name)
356 TCGContext *s = &tcg_ctx;
357 TCGTemp *ts;
358 int idx;
360 idx = s->nb_globals;
361 #if TCG_TARGET_REG_BITS == 32
362 if (type == TCG_TYPE_I64) {
363 char buf[64];
364 tcg_temp_alloc(s, s->nb_globals + 2);
365 ts = &s->temps[s->nb_globals];
366 ts->base_type = type;
367 ts->type = TCG_TYPE_I32;
368 ts->fixed_reg = 0;
369 ts->mem_allocated = 1;
370 ts->mem_reg = reg;
371 #ifdef TCG_TARGET_WORDS_BIGENDIAN
372 ts->mem_offset = offset + 4;
373 #else
374 ts->mem_offset = offset;
375 #endif
376 pstrcpy(buf, sizeof(buf), name);
377 pstrcat(buf, sizeof(buf), "_0");
378 ts->name = strdup(buf);
379 ts++;
381 ts->base_type = type;
382 ts->type = TCG_TYPE_I32;
383 ts->fixed_reg = 0;
384 ts->mem_allocated = 1;
385 ts->mem_reg = reg;
386 #ifdef TCG_TARGET_WORDS_BIGENDIAN
387 ts->mem_offset = offset;
388 #else
389 ts->mem_offset = offset + 4;
390 #endif
391 pstrcpy(buf, sizeof(buf), name);
392 pstrcat(buf, sizeof(buf), "_1");
393 ts->name = strdup(buf);
395 s->nb_globals += 2;
396 } else
397 #endif
399 tcg_temp_alloc(s, s->nb_globals + 1);
400 ts = &s->temps[s->nb_globals];
401 ts->base_type = type;
402 ts->type = type;
403 ts->fixed_reg = 0;
404 ts->mem_allocated = 1;
405 ts->mem_reg = reg;
406 ts->mem_offset = offset;
407 ts->name = name;
408 s->nb_globals++;
410 return idx;
413 TCGv_i32 tcg_global_mem_new_i32(int reg, tcg_target_long offset,
414 const char *name)
416 int idx;
418 idx = tcg_global_mem_new_internal(TCG_TYPE_I32, reg, offset, name);
419 return MAKE_TCGV_I32(idx);
422 TCGv_i64 tcg_global_mem_new_i64(int reg, tcg_target_long offset,
423 const char *name)
425 int idx;
427 idx = tcg_global_mem_new_internal(TCG_TYPE_I64, reg, offset, name);
428 return MAKE_TCGV_I64(idx);
431 static inline int tcg_temp_new_internal(TCGType type, int temp_local)
433 TCGContext *s = &tcg_ctx;
434 TCGTemp *ts;
435 int idx, k;
437 k = type;
438 if (temp_local)
439 k += TCG_TYPE_COUNT;
440 idx = s->first_free_temp[k];
441 if (idx != -1) {
442 /* There is already an available temp with the
443 right type */
444 ts = &s->temps[idx];
445 s->first_free_temp[k] = ts->next_free_temp;
446 ts->temp_allocated = 1;
447 assert(ts->temp_local == temp_local);
448 } else {
449 idx = s->nb_temps;
450 #if TCG_TARGET_REG_BITS == 32
451 if (type == TCG_TYPE_I64) {
452 tcg_temp_alloc(s, s->nb_temps + 2);
453 ts = &s->temps[s->nb_temps];
454 ts->base_type = type;
455 ts->type = TCG_TYPE_I32;
456 ts->temp_allocated = 1;
457 ts->temp_local = temp_local;
458 ts->name = NULL;
459 ts++;
460 ts->base_type = TCG_TYPE_I32;
461 ts->type = TCG_TYPE_I32;
462 ts->temp_allocated = 1;
463 ts->temp_local = temp_local;
464 ts->name = NULL;
465 s->nb_temps += 2;
466 } else
467 #endif
469 tcg_temp_alloc(s, s->nb_temps + 1);
470 ts = &s->temps[s->nb_temps];
471 ts->base_type = type;
472 ts->type = type;
473 ts->temp_allocated = 1;
474 ts->temp_local = temp_local;
475 ts->name = NULL;
476 s->nb_temps++;
479 return idx;
482 TCGv_i32 tcg_temp_new_internal_i32(int temp_local)
484 int idx;
486 idx = tcg_temp_new_internal(TCG_TYPE_I32, temp_local);
487 return MAKE_TCGV_I32(idx);
490 TCGv_i64 tcg_temp_new_internal_i64(int temp_local)
492 int idx;
494 idx = tcg_temp_new_internal(TCG_TYPE_I64, temp_local);
495 return MAKE_TCGV_I64(idx);
498 static inline void tcg_temp_free_internal(int idx)
500 TCGContext *s = &tcg_ctx;
501 TCGTemp *ts;
502 int k;
504 assert(idx >= s->nb_globals && idx < s->nb_temps);
505 ts = &s->temps[idx];
506 assert(ts->temp_allocated != 0);
507 ts->temp_allocated = 0;
508 k = ts->base_type;
509 if (ts->temp_local)
510 k += TCG_TYPE_COUNT;
511 ts->next_free_temp = s->first_free_temp[k];
512 s->first_free_temp[k] = idx;
515 void tcg_temp_free_i32(TCGv_i32 arg)
517 tcg_temp_free_internal(GET_TCGV_I32(arg));
520 void tcg_temp_free_i64(TCGv_i64 arg)
522 tcg_temp_free_internal(GET_TCGV_I64(arg));
525 TCGv_i32 tcg_const_i32(int32_t val)
527 TCGv_i32 t0;
528 t0 = tcg_temp_new_i32();
529 tcg_gen_movi_i32(t0, val);
530 return t0;
533 TCGv_i64 tcg_const_i64(int64_t val)
535 TCGv_i64 t0;
536 t0 = tcg_temp_new_i64();
537 tcg_gen_movi_i64(t0, val);
538 return t0;
541 TCGv_i32 tcg_const_local_i32(int32_t val)
543 TCGv_i32 t0;
544 t0 = tcg_temp_local_new_i32();
545 tcg_gen_movi_i32(t0, val);
546 return t0;
549 TCGv_i64 tcg_const_local_i64(int64_t val)
551 TCGv_i64 t0;
552 t0 = tcg_temp_local_new_i64();
553 tcg_gen_movi_i64(t0, val);
554 return t0;
557 void tcg_register_helper(void *func, const char *name)
559 TCGContext *s = &tcg_ctx;
560 int n;
561 if ((s->nb_helpers + 1) > s->allocated_helpers) {
562 n = s->allocated_helpers;
563 if (n == 0) {
564 n = 4;
565 } else {
566 n *= 2;
568 s->helpers = realloc(s->helpers, n * sizeof(TCGHelperInfo));
569 s->allocated_helpers = n;
571 s->helpers[s->nb_helpers].func = (tcg_target_ulong)func;
572 s->helpers[s->nb_helpers].name = name;
573 s->nb_helpers++;
576 /* Note: we convert the 64 bit args to 32 bit and do some alignment
577 and endian swap. Maybe it would be better to do the alignment
578 and endian swap in tcg_reg_alloc_call(). */
579 void tcg_gen_callN(TCGContext *s, TCGv_ptr func, unsigned int flags,
580 int sizemask, TCGArg ret, int nargs, TCGArg *args)
582 int call_type;
583 int i;
584 int real_args;
585 int nb_rets;
586 TCGArg *nparam;
587 *gen_opc_ptr++ = INDEX_op_call;
588 nparam = gen_opparam_ptr++;
589 call_type = (flags & TCG_CALL_TYPE_MASK);
590 if (ret != TCG_CALL_DUMMY_ARG) {
591 #if TCG_TARGET_REG_BITS < 64
592 if (sizemask & 1) {
593 #ifdef TCG_TARGET_WORDS_BIGENDIAN
594 *gen_opparam_ptr++ = ret + 1;
595 *gen_opparam_ptr++ = ret;
596 #else
597 *gen_opparam_ptr++ = ret;
598 *gen_opparam_ptr++ = ret + 1;
599 #endif
600 nb_rets = 2;
601 } else
602 #endif
604 *gen_opparam_ptr++ = ret;
605 nb_rets = 1;
607 } else {
608 nb_rets = 0;
610 real_args = 0;
611 for (i = 0; i < nargs; i++) {
612 #if TCG_TARGET_REG_BITS < 64
613 if (sizemask & (2 << i)) {
614 #ifdef TCG_TARGET_I386
615 /* REGPARM case: if the third parameter is 64 bit, it is
616 allocated on the stack */
617 if (i == 2 && call_type == TCG_CALL_TYPE_REGPARM) {
618 call_type = TCG_CALL_TYPE_REGPARM_2;
619 flags = (flags & ~TCG_CALL_TYPE_MASK) | call_type;
621 #endif
622 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
623 /* some targets want aligned 64 bit args */
624 if (real_args & 1) {
625 *gen_opparam_ptr++ = TCG_CALL_DUMMY_ARG;
626 real_args++;
628 #endif
629 #ifdef TCG_TARGET_WORDS_BIGENDIAN
630 *gen_opparam_ptr++ = args[i] + 1;
631 *gen_opparam_ptr++ = args[i];
632 #else
633 *gen_opparam_ptr++ = args[i];
634 *gen_opparam_ptr++ = args[i] + 1;
635 #endif
636 real_args += 2;
637 } else
638 #endif
640 *gen_opparam_ptr++ = args[i];
641 real_args++;
644 *gen_opparam_ptr++ = GET_TCGV_PTR(func);
646 *gen_opparam_ptr++ = flags;
648 *nparam = (nb_rets << 16) | (real_args + 1);
650 /* total parameters, needed to go backward in the instruction stream */
651 *gen_opparam_ptr++ = 1 + nb_rets + real_args + 3;
654 #if TCG_TARGET_REG_BITS == 32
655 void tcg_gen_shifti_i64(TCGv_i64 ret, TCGv_i64 arg1,
656 int c, int right, int arith)
658 if (c == 0) {
659 tcg_gen_mov_i32(TCGV_LOW(ret), TCGV_LOW(arg1));
660 tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1));
661 } else if (c >= 32) {
662 c -= 32;
663 if (right) {
664 if (arith) {
665 tcg_gen_sari_i32(TCGV_LOW(ret), TCGV_HIGH(arg1), c);
666 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), 31);
667 } else {
668 tcg_gen_shri_i32(TCGV_LOW(ret), TCGV_HIGH(arg1), c);
669 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
671 } else {
672 tcg_gen_shli_i32(TCGV_HIGH(ret), TCGV_LOW(arg1), c);
673 tcg_gen_movi_i32(TCGV_LOW(ret), 0);
675 } else {
676 TCGv_i32 t0, t1;
678 t0 = tcg_temp_new_i32();
679 t1 = tcg_temp_new_i32();
680 if (right) {
681 tcg_gen_shli_i32(t0, TCGV_HIGH(arg1), 32 - c);
682 if (arith)
683 tcg_gen_sari_i32(t1, TCGV_HIGH(arg1), c);
684 else
685 tcg_gen_shri_i32(t1, TCGV_HIGH(arg1), c);
686 tcg_gen_shri_i32(TCGV_LOW(ret), TCGV_LOW(arg1), c);
687 tcg_gen_or_i32(TCGV_LOW(ret), TCGV_LOW(ret), t0);
688 tcg_gen_mov_i32(TCGV_HIGH(ret), t1);
689 } else {
690 tcg_gen_shri_i32(t0, TCGV_LOW(arg1), 32 - c);
691 /* Note: ret can be the same as arg1, so we use t1 */
692 tcg_gen_shli_i32(t1, TCGV_LOW(arg1), c);
693 tcg_gen_shli_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), c);
694 tcg_gen_or_i32(TCGV_HIGH(ret), TCGV_HIGH(ret), t0);
695 tcg_gen_mov_i32(TCGV_LOW(ret), t1);
697 tcg_temp_free_i32(t0);
698 tcg_temp_free_i32(t1);
701 #endif
703 static void tcg_reg_alloc_start(TCGContext *s)
705 int i;
706 TCGTemp *ts;
707 for(i = 0; i < s->nb_globals; i++) {
708 ts = &s->temps[i];
709 if (ts->fixed_reg) {
710 ts->val_type = TEMP_VAL_REG;
711 } else {
712 ts->val_type = TEMP_VAL_MEM;
715 for(i = s->nb_globals; i < s->nb_temps; i++) {
716 ts = &s->temps[i];
717 ts->val_type = TEMP_VAL_DEAD;
718 ts->mem_allocated = 0;
719 ts->fixed_reg = 0;
721 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
722 s->reg_to_temp[i] = -1;
726 static char *tcg_get_arg_str_idx(TCGContext *s, char *buf, int buf_size,
727 int idx)
729 TCGTemp *ts;
731 ts = &s->temps[idx];
732 if (idx < s->nb_globals) {
733 pstrcpy(buf, buf_size, ts->name);
734 } else {
735 if (ts->temp_local)
736 snprintf(buf, buf_size, "loc%d", idx - s->nb_globals);
737 else
738 snprintf(buf, buf_size, "tmp%d", idx - s->nb_globals);
740 return buf;
743 char *tcg_get_arg_str_i32(TCGContext *s, char *buf, int buf_size, TCGv_i32 arg)
745 return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I32(arg));
748 char *tcg_get_arg_str_i64(TCGContext *s, char *buf, int buf_size, TCGv_i64 arg)
750 return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV_I64(arg));
753 static int helper_cmp(const void *p1, const void *p2)
755 const TCGHelperInfo *th1 = p1;
756 const TCGHelperInfo *th2 = p2;
757 if (th1->func < th2->func)
758 return -1;
759 else if (th1->func == th2->func)
760 return 0;
761 else
762 return 1;
765 /* find helper definition (Note: A hash table would be better) */
766 static TCGHelperInfo *tcg_find_helper(TCGContext *s, tcg_target_ulong val)
768 int m, m_min, m_max;
769 TCGHelperInfo *th;
770 tcg_target_ulong v;
772 if (unlikely(!s->helpers_sorted)) {
773 qsort(s->helpers, s->nb_helpers, sizeof(TCGHelperInfo),
774 helper_cmp);
775 s->helpers_sorted = 1;
778 /* binary search */
779 m_min = 0;
780 m_max = s->nb_helpers - 1;
781 while (m_min <= m_max) {
782 m = (m_min + m_max) >> 1;
783 th = &s->helpers[m];
784 v = th->func;
785 if (v == val)
786 return th;
787 else if (val < v) {
788 m_max = m - 1;
789 } else {
790 m_min = m + 1;
793 return NULL;
796 static const char * const cond_name[] =
798 [TCG_COND_EQ] = "eq",
799 [TCG_COND_NE] = "ne",
800 [TCG_COND_LT] = "lt",
801 [TCG_COND_GE] = "ge",
802 [TCG_COND_LE] = "le",
803 [TCG_COND_GT] = "gt",
804 [TCG_COND_LTU] = "ltu",
805 [TCG_COND_GEU] = "geu",
806 [TCG_COND_LEU] = "leu",
807 [TCG_COND_GTU] = "gtu"
810 void tcg_dump_ops(TCGContext *s, FILE *outfile)
812 const uint16_t *opc_ptr;
813 const TCGArg *args;
814 TCGArg arg;
815 int c, i, k, nb_oargs, nb_iargs, nb_cargs, first_insn;
816 const TCGOpDef *def;
817 char buf[128];
819 first_insn = 1;
820 opc_ptr = gen_opc_buf;
821 args = gen_opparam_buf;
822 while (opc_ptr < gen_opc_ptr) {
823 c = *opc_ptr++;
824 def = &tcg_op_defs[c];
825 if (c == INDEX_op_debug_insn_start) {
826 uint64_t pc;
827 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
828 pc = ((uint64_t)args[1] << 32) | args[0];
829 #else
830 pc = args[0];
831 #endif
832 if (!first_insn)
833 fprintf(outfile, "\n");
834 fprintf(outfile, " ---- 0x%" PRIx64, pc);
835 first_insn = 0;
836 nb_oargs = def->nb_oargs;
837 nb_iargs = def->nb_iargs;
838 nb_cargs = def->nb_cargs;
839 } else if (c == INDEX_op_call) {
840 TCGArg arg;
842 /* variable number of arguments */
843 arg = *args++;
844 nb_oargs = arg >> 16;
845 nb_iargs = arg & 0xffff;
846 nb_cargs = def->nb_cargs;
848 fprintf(outfile, " %s ", def->name);
850 /* function name */
851 fprintf(outfile, "%s",
852 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[nb_oargs + nb_iargs - 1]));
853 /* flags */
854 fprintf(outfile, ",$0x%" TCG_PRIlx,
855 args[nb_oargs + nb_iargs]);
856 /* nb out args */
857 fprintf(outfile, ",$%d", nb_oargs);
858 for(i = 0; i < nb_oargs; i++) {
859 fprintf(outfile, ",");
860 fprintf(outfile, "%s",
861 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[i]));
863 for(i = 0; i < (nb_iargs - 1); i++) {
864 fprintf(outfile, ",");
865 if (args[nb_oargs + i] == TCG_CALL_DUMMY_ARG) {
866 fprintf(outfile, "<dummy>");
867 } else {
868 fprintf(outfile, "%s",
869 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[nb_oargs + i]));
872 } else if (c == INDEX_op_movi_i32
873 #if TCG_TARGET_REG_BITS == 64
874 || c == INDEX_op_movi_i64
875 #endif
877 tcg_target_ulong val;
878 TCGHelperInfo *th;
880 nb_oargs = def->nb_oargs;
881 nb_iargs = def->nb_iargs;
882 nb_cargs = def->nb_cargs;
883 fprintf(outfile, " %s %s,$", def->name,
884 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[0]));
885 val = args[1];
886 th = tcg_find_helper(s, val);
887 if (th) {
888 fprintf(outfile, th->name);
889 } else {
890 if (c == INDEX_op_movi_i32)
891 fprintf(outfile, "0x%x", (uint32_t)val);
892 else
893 fprintf(outfile, "0x%" PRIx64 , (uint64_t)val);
895 } else {
896 fprintf(outfile, " %s ", def->name);
897 if (c == INDEX_op_nopn) {
898 /* variable number of arguments */
899 nb_cargs = *args;
900 nb_oargs = 0;
901 nb_iargs = 0;
902 } else {
903 nb_oargs = def->nb_oargs;
904 nb_iargs = def->nb_iargs;
905 nb_cargs = def->nb_cargs;
908 k = 0;
909 for(i = 0; i < nb_oargs; i++) {
910 if (k != 0)
911 fprintf(outfile, ",");
912 fprintf(outfile, "%s",
913 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[k++]));
915 for(i = 0; i < nb_iargs; i++) {
916 if (k != 0)
917 fprintf(outfile, ",");
918 fprintf(outfile, "%s",
919 tcg_get_arg_str_idx(s, buf, sizeof(buf), args[k++]));
921 if (c == INDEX_op_brcond_i32
922 #if TCG_TARGET_REG_BITS == 32
923 || c == INDEX_op_brcond2_i32
924 #elif TCG_TARGET_REG_BITS == 64
925 || c == INDEX_op_brcond_i64
926 #endif
928 if (args[k] < ARRAY_SIZE(cond_name) && cond_name[args[k]])
929 fprintf(outfile, ",%s", cond_name[args[k++]]);
930 else
931 fprintf(outfile, ",$0x%" TCG_PRIlx, args[k++]);
932 i = 1;
934 else
935 i = 0;
936 for(; i < nb_cargs; i++) {
937 if (k != 0)
938 fprintf(outfile, ",");
939 arg = args[k++];
940 fprintf(outfile, "$0x%" TCG_PRIlx, arg);
943 fprintf(outfile, "\n");
944 args += nb_iargs + nb_oargs + nb_cargs;
948 /* we give more priority to constraints with less registers */
949 static int get_constraint_priority(const TCGOpDef *def, int k)
951 const TCGArgConstraint *arg_ct;
953 int i, n;
954 arg_ct = &def->args_ct[k];
955 if (arg_ct->ct & TCG_CT_ALIAS) {
956 /* an alias is equivalent to a single register */
957 n = 1;
958 } else {
959 if (!(arg_ct->ct & TCG_CT_REG))
960 return 0;
961 n = 0;
962 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
963 if (tcg_regset_test_reg(arg_ct->u.regs, i))
964 n++;
967 return TCG_TARGET_NB_REGS - n + 1;
970 /* sort from highest priority to lowest */
971 static void sort_constraints(TCGOpDef *def, int start, int n)
973 int i, j, p1, p2, tmp;
975 for(i = 0; i < n; i++)
976 def->sorted_args[start + i] = start + i;
977 if (n <= 1)
978 return;
979 for(i = 0; i < n - 1; i++) {
980 for(j = i + 1; j < n; j++) {
981 p1 = get_constraint_priority(def, def->sorted_args[start + i]);
982 p2 = get_constraint_priority(def, def->sorted_args[start + j]);
983 if (p1 < p2) {
984 tmp = def->sorted_args[start + i];
985 def->sorted_args[start + i] = def->sorted_args[start + j];
986 def->sorted_args[start + j] = tmp;
992 void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
994 int op;
995 TCGOpDef *def;
996 const char *ct_str;
997 int i, nb_args;
999 for(;;) {
1000 if (tdefs->op < 0)
1001 break;
1002 op = tdefs->op;
1003 assert(op >= 0 && op < NB_OPS);
1004 def = &tcg_op_defs[op];
1005 nb_args = def->nb_iargs + def->nb_oargs;
1006 for(i = 0; i < nb_args; i++) {
1007 ct_str = tdefs->args_ct_str[i];
1008 tcg_regset_clear(def->args_ct[i].u.regs);
1009 def->args_ct[i].ct = 0;
1010 if (ct_str[0] >= '0' && ct_str[0] <= '9') {
1011 int oarg;
1012 oarg = ct_str[0] - '0';
1013 assert(oarg < def->nb_oargs);
1014 assert(def->args_ct[oarg].ct & TCG_CT_REG);
1015 /* TCG_CT_ALIAS is for the output arguments. The input
1016 argument is tagged with TCG_CT_IALIAS. */
1017 def->args_ct[i] = def->args_ct[oarg];
1018 def->args_ct[oarg].ct = TCG_CT_ALIAS;
1019 def->args_ct[oarg].alias_index = i;
1020 def->args_ct[i].ct |= TCG_CT_IALIAS;
1021 def->args_ct[i].alias_index = oarg;
1022 } else {
1023 for(;;) {
1024 if (*ct_str == '\0')
1025 break;
1026 switch(*ct_str) {
1027 case 'i':
1028 def->args_ct[i].ct |= TCG_CT_CONST;
1029 ct_str++;
1030 break;
1031 default:
1032 if (target_parse_constraint(&def->args_ct[i], &ct_str) < 0) {
1033 fprintf(stderr, "Invalid constraint '%s' for arg %d of operation '%s'\n",
1034 ct_str, i, def->name);
1035 exit(1);
1042 /* sort the constraints (XXX: this is just an heuristic) */
1043 sort_constraints(def, 0, def->nb_oargs);
1044 sort_constraints(def, def->nb_oargs, def->nb_iargs);
1046 #if 0
1048 int i;
1050 printf("%s: sorted=", def->name);
1051 for(i = 0; i < def->nb_oargs + def->nb_iargs; i++)
1052 printf(" %d", def->sorted_args[i]);
1053 printf("\n");
1055 #endif
1056 tdefs++;
1061 #ifdef USE_LIVENESS_ANALYSIS
1063 /* set a nop for an operation using 'nb_args' */
1064 static inline void tcg_set_nop(TCGContext *s, uint16_t *opc_ptr,
1065 TCGArg *args, int nb_args)
1067 if (nb_args == 0) {
1068 *opc_ptr = INDEX_op_nop;
1069 } else {
1070 *opc_ptr = INDEX_op_nopn;
1071 args[0] = nb_args;
1072 args[nb_args - 1] = nb_args;
1076 /* liveness analysis: end of function: globals are live, temps are
1077 dead. */
1078 /* XXX: at this stage, not used as there would be little gains because
1079 most TBs end with a conditional jump. */
1080 static inline void tcg_la_func_end(TCGContext *s, uint8_t *dead_temps)
1082 memset(dead_temps, 0, s->nb_globals);
1083 memset(dead_temps + s->nb_globals, 1, s->nb_temps - s->nb_globals);
1086 /* liveness analysis: end of basic block: globals are live, temps are
1087 dead, local temps are live. */
1088 static inline void tcg_la_bb_end(TCGContext *s, uint8_t *dead_temps)
1090 int i;
1091 TCGTemp *ts;
1093 memset(dead_temps, 0, s->nb_globals);
1094 ts = &s->temps[s->nb_globals];
1095 for(i = s->nb_globals; i < s->nb_temps; i++) {
1096 if (ts->temp_local)
1097 dead_temps[i] = 0;
1098 else
1099 dead_temps[i] = 1;
1100 ts++;
1104 /* Liveness analysis : update the opc_dead_iargs array to tell if a
1105 given input arguments is dead. Instructions updating dead
1106 temporaries are removed. */
1107 static void tcg_liveness_analysis(TCGContext *s)
1109 int i, op_index, op, nb_args, nb_iargs, nb_oargs, arg, nb_ops;
1110 TCGArg *args;
1111 const TCGOpDef *def;
1112 uint8_t *dead_temps;
1113 unsigned int dead_iargs;
1115 gen_opc_ptr++; /* skip end */
1117 nb_ops = gen_opc_ptr - gen_opc_buf;
1119 /* XXX: make it really dynamic */
1120 s->op_dead_iargs = tcg_malloc(OPC_BUF_SIZE * sizeof(uint16_t));
1122 dead_temps = tcg_malloc(s->nb_temps);
1123 memset(dead_temps, 1, s->nb_temps);
1125 args = gen_opparam_ptr;
1126 op_index = nb_ops - 1;
1127 while (op_index >= 0) {
1128 op = gen_opc_buf[op_index];
1129 def = &tcg_op_defs[op];
1130 switch(op) {
1131 case INDEX_op_call:
1133 int call_flags;
1135 nb_args = args[-1];
1136 args -= nb_args;
1137 nb_iargs = args[0] & 0xffff;
1138 nb_oargs = args[0] >> 16;
1139 args++;
1140 call_flags = args[nb_oargs + nb_iargs];
1142 /* pure functions can be removed if their result is not
1143 used */
1144 if (call_flags & TCG_CALL_PURE) {
1145 for(i = 0; i < nb_oargs; i++) {
1146 arg = args[i];
1147 if (!dead_temps[arg])
1148 goto do_not_remove_call;
1150 tcg_set_nop(s, gen_opc_buf + op_index,
1151 args - 1, nb_args);
1152 } else {
1153 do_not_remove_call:
1155 /* output args are dead */
1156 for(i = 0; i < nb_oargs; i++) {
1157 arg = args[i];
1158 dead_temps[arg] = 1;
1161 /* globals are live (they may be used by the call) */
1162 memset(dead_temps, 0, s->nb_globals);
1164 /* input args are live */
1165 dead_iargs = 0;
1166 for(i = 0; i < nb_iargs; i++) {
1167 arg = args[i + nb_oargs];
1168 if (arg != TCG_CALL_DUMMY_ARG) {
1169 if (dead_temps[arg]) {
1170 dead_iargs |= (1 << i);
1172 dead_temps[arg] = 0;
1175 s->op_dead_iargs[op_index] = dead_iargs;
1177 args--;
1179 break;
1180 case INDEX_op_set_label:
1181 args--;
1182 /* mark end of basic block */
1183 tcg_la_bb_end(s, dead_temps);
1184 break;
1185 case INDEX_op_debug_insn_start:
1186 args -= def->nb_args;
1187 break;
1188 case INDEX_op_nopn:
1189 nb_args = args[-1];
1190 args -= nb_args;
1191 break;
1192 case INDEX_op_discard:
1193 args--;
1194 /* mark the temporary as dead */
1195 dead_temps[args[0]] = 1;
1196 break;
1197 case INDEX_op_end:
1198 break;
1199 /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
1200 default:
1201 args -= def->nb_args;
1202 nb_iargs = def->nb_iargs;
1203 nb_oargs = def->nb_oargs;
1205 /* Test if the operation can be removed because all
1206 its outputs are dead. We assume that nb_oargs == 0
1207 implies side effects */
1208 if (!(def->flags & TCG_OPF_SIDE_EFFECTS) && nb_oargs != 0) {
1209 for(i = 0; i < nb_oargs; i++) {
1210 arg = args[i];
1211 if (!dead_temps[arg])
1212 goto do_not_remove;
1214 tcg_set_nop(s, gen_opc_buf + op_index, args, def->nb_args);
1215 #ifdef CONFIG_PROFILER
1216 s->del_op_count++;
1217 #endif
1218 } else {
1219 do_not_remove:
1221 /* output args are dead */
1222 for(i = 0; i < nb_oargs; i++) {
1223 arg = args[i];
1224 dead_temps[arg] = 1;
1227 /* if end of basic block, update */
1228 if (def->flags & TCG_OPF_BB_END) {
1229 tcg_la_bb_end(s, dead_temps);
1230 } else if (def->flags & TCG_OPF_CALL_CLOBBER) {
1231 /* globals are live */
1232 memset(dead_temps, 0, s->nb_globals);
1235 /* input args are live */
1236 dead_iargs = 0;
1237 for(i = 0; i < nb_iargs; i++) {
1238 arg = args[i + nb_oargs];
1239 if (dead_temps[arg]) {
1240 dead_iargs |= (1 << i);
1242 dead_temps[arg] = 0;
1244 s->op_dead_iargs[op_index] = dead_iargs;
1246 break;
1248 op_index--;
1251 if (args != gen_opparam_buf)
1252 tcg_abort();
1254 #else
1255 /* dummy liveness analysis */
1256 void tcg_liveness_analysis(TCGContext *s)
1258 int nb_ops;
1259 nb_ops = gen_opc_ptr - gen_opc_buf;
1261 s->op_dead_iargs = tcg_malloc(nb_ops * sizeof(uint16_t));
1262 memset(s->op_dead_iargs, 0, nb_ops * sizeof(uint16_t));
1264 #endif
1266 #ifndef NDEBUG
1267 static void dump_regs(TCGContext *s)
1269 TCGTemp *ts;
1270 int i;
1271 char buf[64];
1273 for(i = 0; i < s->nb_temps; i++) {
1274 ts = &s->temps[i];
1275 printf(" %10s: ", tcg_get_arg_str_idx(s, buf, sizeof(buf), i));
1276 switch(ts->val_type) {
1277 case TEMP_VAL_REG:
1278 printf("%s", tcg_target_reg_names[ts->reg]);
1279 break;
1280 case TEMP_VAL_MEM:
1281 printf("%d(%s)", (int)ts->mem_offset, tcg_target_reg_names[ts->mem_reg]);
1282 break;
1283 case TEMP_VAL_CONST:
1284 printf("$0x%" TCG_PRIlx, ts->val);
1285 break;
1286 case TEMP_VAL_DEAD:
1287 printf("D");
1288 break;
1289 default:
1290 printf("???");
1291 break;
1293 printf("\n");
1296 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1297 if (s->reg_to_temp[i] >= 0) {
1298 printf("%s: %s\n",
1299 tcg_target_reg_names[i],
1300 tcg_get_arg_str_idx(s, buf, sizeof(buf), s->reg_to_temp[i]));
1305 static void check_regs(TCGContext *s)
1307 int reg, k;
1308 TCGTemp *ts;
1309 char buf[64];
1311 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1312 k = s->reg_to_temp[reg];
1313 if (k >= 0) {
1314 ts = &s->temps[k];
1315 if (ts->val_type != TEMP_VAL_REG ||
1316 ts->reg != reg) {
1317 printf("Inconsistency for register %s:\n",
1318 tcg_target_reg_names[reg]);
1319 goto fail;
1323 for(k = 0; k < s->nb_temps; k++) {
1324 ts = &s->temps[k];
1325 if (ts->val_type == TEMP_VAL_REG &&
1326 !ts->fixed_reg &&
1327 s->reg_to_temp[ts->reg] != k) {
1328 printf("Inconsistency for temp %s:\n",
1329 tcg_get_arg_str_idx(s, buf, sizeof(buf), k));
1330 fail:
1331 printf("reg state:\n");
1332 dump_regs(s);
1333 tcg_abort();
1337 #endif
1339 static void temp_allocate_frame(TCGContext *s, int temp)
1341 TCGTemp *ts;
1342 ts = &s->temps[temp];
1343 s->current_frame_offset = (s->current_frame_offset + sizeof(tcg_target_long) - 1) & ~(sizeof(tcg_target_long) - 1);
1344 if (s->current_frame_offset + sizeof(tcg_target_long) > s->frame_end)
1345 tcg_abort();
1346 ts->mem_offset = s->current_frame_offset;
1347 ts->mem_reg = s->frame_reg;
1348 ts->mem_allocated = 1;
1349 s->current_frame_offset += sizeof(tcg_target_long);
1352 /* free register 'reg' by spilling the corresponding temporary if necessary */
1353 static void tcg_reg_free(TCGContext *s, int reg)
1355 TCGTemp *ts;
1356 int temp;
1358 temp = s->reg_to_temp[reg];
1359 if (temp != -1) {
1360 ts = &s->temps[temp];
1361 assert(ts->val_type == TEMP_VAL_REG);
1362 if (!ts->mem_coherent) {
1363 if (!ts->mem_allocated)
1364 temp_allocate_frame(s, temp);
1365 tcg_out_st(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1367 ts->val_type = TEMP_VAL_MEM;
1368 s->reg_to_temp[reg] = -1;
1372 /* Allocate a register belonging to reg1 & ~reg2 */
1373 static int tcg_reg_alloc(TCGContext *s, TCGRegSet reg1, TCGRegSet reg2)
1375 int i, reg;
1376 TCGRegSet reg_ct;
1378 tcg_regset_andnot(reg_ct, reg1, reg2);
1380 /* first try free registers */
1381 for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1382 reg = tcg_target_reg_alloc_order[i];
1383 if (tcg_regset_test_reg(reg_ct, reg) && s->reg_to_temp[reg] == -1)
1384 return reg;
1387 /* XXX: do better spill choice */
1388 for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1389 reg = tcg_target_reg_alloc_order[i];
1390 if (tcg_regset_test_reg(reg_ct, reg)) {
1391 tcg_reg_free(s, reg);
1392 return reg;
1396 tcg_abort();
1399 /* save a temporary to memory. 'allocated_regs' is used in case a
1400 temporary registers needs to be allocated to store a constant. */
1401 static void temp_save(TCGContext *s, int temp, TCGRegSet allocated_regs)
1403 TCGTemp *ts;
1404 int reg;
1406 ts = &s->temps[temp];
1407 if (!ts->fixed_reg) {
1408 switch(ts->val_type) {
1409 case TEMP_VAL_REG:
1410 tcg_reg_free(s, ts->reg);
1411 break;
1412 case TEMP_VAL_DEAD:
1413 ts->val_type = TEMP_VAL_MEM;
1414 break;
1415 case TEMP_VAL_CONST:
1416 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1417 allocated_regs);
1418 if (!ts->mem_allocated)
1419 temp_allocate_frame(s, temp);
1420 tcg_out_movi(s, ts->type, reg, ts->val);
1421 tcg_out_st(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1422 ts->val_type = TEMP_VAL_MEM;
1423 break;
1424 case TEMP_VAL_MEM:
1425 break;
1426 default:
1427 tcg_abort();
1432 /* save globals to their cannonical location and assume they can be
1433 modified be the following code. 'allocated_regs' is used in case a
1434 temporary registers needs to be allocated to store a constant. */
1435 static void save_globals(TCGContext *s, TCGRegSet allocated_regs)
1437 int i;
1439 for(i = 0; i < s->nb_globals; i++) {
1440 temp_save(s, i, allocated_regs);
1444 /* at the end of a basic block, we assume all temporaries are dead and
1445 all globals are stored at their canonical location. */
1446 static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs)
1448 TCGTemp *ts;
1449 int i;
1451 for(i = s->nb_globals; i < s->nb_temps; i++) {
1452 ts = &s->temps[i];
1453 if (ts->temp_local) {
1454 temp_save(s, i, allocated_regs);
1455 } else {
1456 if (ts->val_type == TEMP_VAL_REG) {
1457 s->reg_to_temp[ts->reg] = -1;
1459 ts->val_type = TEMP_VAL_DEAD;
1463 save_globals(s, allocated_regs);
1466 #define IS_DEAD_IARG(n) ((dead_iargs >> (n)) & 1)
1468 static void tcg_reg_alloc_movi(TCGContext *s, const TCGArg *args)
1470 TCGTemp *ots;
1471 tcg_target_ulong val;
1473 ots = &s->temps[args[0]];
1474 val = args[1];
1476 if (ots->fixed_reg) {
1477 /* for fixed registers, we do not do any constant
1478 propagation */
1479 tcg_out_movi(s, ots->type, ots->reg, val);
1480 } else {
1481 /* The movi is not explicitly generated here */
1482 if (ots->val_type == TEMP_VAL_REG)
1483 s->reg_to_temp[ots->reg] = -1;
1484 ots->val_type = TEMP_VAL_CONST;
1485 ots->val = val;
1489 static void tcg_reg_alloc_mov(TCGContext *s, const TCGOpDef *def,
1490 const TCGArg *args,
1491 unsigned int dead_iargs)
1493 TCGTemp *ts, *ots;
1494 int reg;
1495 const TCGArgConstraint *arg_ct;
1497 ots = &s->temps[args[0]];
1498 ts = &s->temps[args[1]];
1499 arg_ct = &def->args_ct[0];
1501 /* XXX: always mark arg dead if IS_DEAD_IARG(0) */
1502 if (ts->val_type == TEMP_VAL_REG) {
1503 if (IS_DEAD_IARG(0) && !ts->fixed_reg && !ots->fixed_reg) {
1504 /* the mov can be suppressed */
1505 if (ots->val_type == TEMP_VAL_REG)
1506 s->reg_to_temp[ots->reg] = -1;
1507 reg = ts->reg;
1508 s->reg_to_temp[reg] = -1;
1509 ts->val_type = TEMP_VAL_DEAD;
1510 } else {
1511 if (ots->val_type == TEMP_VAL_REG) {
1512 reg = ots->reg;
1513 } else {
1514 reg = tcg_reg_alloc(s, arg_ct->u.regs, s->reserved_regs);
1516 if (ts->reg != reg) {
1517 tcg_out_mov(s, reg, ts->reg);
1520 } else if (ts->val_type == TEMP_VAL_MEM) {
1521 if (ots->val_type == TEMP_VAL_REG) {
1522 reg = ots->reg;
1523 } else {
1524 reg = tcg_reg_alloc(s, arg_ct->u.regs, s->reserved_regs);
1526 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1527 } else if (ts->val_type == TEMP_VAL_CONST) {
1528 if (ots->fixed_reg) {
1529 reg = ots->reg;
1530 tcg_out_movi(s, ots->type, reg, ts->val);
1531 } else {
1532 /* propagate constant */
1533 if (ots->val_type == TEMP_VAL_REG)
1534 s->reg_to_temp[ots->reg] = -1;
1535 ots->val_type = TEMP_VAL_CONST;
1536 ots->val = ts->val;
1537 return;
1539 } else {
1540 tcg_abort();
1542 s->reg_to_temp[reg] = args[0];
1543 ots->reg = reg;
1544 ots->val_type = TEMP_VAL_REG;
1545 ots->mem_coherent = 0;
1548 static void tcg_reg_alloc_op(TCGContext *s,
1549 const TCGOpDef *def, int opc,
1550 const TCGArg *args,
1551 unsigned int dead_iargs)
1553 TCGRegSet allocated_regs;
1554 int i, k, nb_iargs, nb_oargs, reg;
1555 TCGArg arg;
1556 const TCGArgConstraint *arg_ct;
1557 TCGTemp *ts;
1558 TCGArg new_args[TCG_MAX_OP_ARGS];
1559 int const_args[TCG_MAX_OP_ARGS];
1561 nb_oargs = def->nb_oargs;
1562 nb_iargs = def->nb_iargs;
1564 /* copy constants */
1565 memcpy(new_args + nb_oargs + nb_iargs,
1566 args + nb_oargs + nb_iargs,
1567 sizeof(TCGArg) * def->nb_cargs);
1569 /* satisfy input constraints */
1570 tcg_regset_set(allocated_regs, s->reserved_regs);
1571 for(k = 0; k < nb_iargs; k++) {
1572 i = def->sorted_args[nb_oargs + k];
1573 arg = args[i];
1574 arg_ct = &def->args_ct[i];
1575 ts = &s->temps[arg];
1576 if (ts->val_type == TEMP_VAL_MEM) {
1577 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1578 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1579 ts->val_type = TEMP_VAL_REG;
1580 ts->reg = reg;
1581 ts->mem_coherent = 1;
1582 s->reg_to_temp[reg] = arg;
1583 } else if (ts->val_type == TEMP_VAL_CONST) {
1584 if (tcg_target_const_match(ts->val, arg_ct)) {
1585 /* constant is OK for instruction */
1586 const_args[i] = 1;
1587 new_args[i] = ts->val;
1588 goto iarg_end;
1589 } else {
1590 /* need to move to a register */
1591 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1592 tcg_out_movi(s, ts->type, reg, ts->val);
1593 ts->val_type = TEMP_VAL_REG;
1594 ts->reg = reg;
1595 ts->mem_coherent = 0;
1596 s->reg_to_temp[reg] = arg;
1599 assert(ts->val_type == TEMP_VAL_REG);
1600 if (arg_ct->ct & TCG_CT_IALIAS) {
1601 if (ts->fixed_reg) {
1602 /* if fixed register, we must allocate a new register
1603 if the alias is not the same register */
1604 if (arg != args[arg_ct->alias_index])
1605 goto allocate_in_reg;
1606 } else {
1607 /* if the input is aliased to an output and if it is
1608 not dead after the instruction, we must allocate
1609 a new register and move it */
1610 if (!IS_DEAD_IARG(i - nb_oargs))
1611 goto allocate_in_reg;
1614 reg = ts->reg;
1615 if (tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1616 /* nothing to do : the constraint is satisfied */
1617 } else {
1618 allocate_in_reg:
1619 /* allocate a new register matching the constraint
1620 and move the temporary register into it */
1621 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1622 tcg_out_mov(s, reg, ts->reg);
1624 new_args[i] = reg;
1625 const_args[i] = 0;
1626 tcg_regset_set_reg(allocated_regs, reg);
1627 iarg_end: ;
1630 if (def->flags & TCG_OPF_BB_END) {
1631 tcg_reg_alloc_bb_end(s, allocated_regs);
1632 } else {
1633 /* mark dead temporaries and free the associated registers */
1634 for(i = 0; i < nb_iargs; i++) {
1635 arg = args[nb_oargs + i];
1636 if (IS_DEAD_IARG(i)) {
1637 ts = &s->temps[arg];
1638 if (!ts->fixed_reg) {
1639 if (ts->val_type == TEMP_VAL_REG)
1640 s->reg_to_temp[ts->reg] = -1;
1641 ts->val_type = TEMP_VAL_DEAD;
1646 if (def->flags & TCG_OPF_CALL_CLOBBER) {
1647 /* XXX: permit generic clobber register list ? */
1648 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1649 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
1650 tcg_reg_free(s, reg);
1653 /* XXX: for load/store we could do that only for the slow path
1654 (i.e. when a memory callback is called) */
1656 /* store globals and free associated registers (we assume the insn
1657 can modify any global. */
1658 save_globals(s, allocated_regs);
1661 /* satisfy the output constraints */
1662 tcg_regset_set(allocated_regs, s->reserved_regs);
1663 for(k = 0; k < nb_oargs; k++) {
1664 i = def->sorted_args[k];
1665 arg = args[i];
1666 arg_ct = &def->args_ct[i];
1667 ts = &s->temps[arg];
1668 if (arg_ct->ct & TCG_CT_ALIAS) {
1669 reg = new_args[arg_ct->alias_index];
1670 } else {
1671 /* if fixed register, we try to use it */
1672 reg = ts->reg;
1673 if (ts->fixed_reg &&
1674 tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1675 goto oarg_end;
1677 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1679 tcg_regset_set_reg(allocated_regs, reg);
1680 /* if a fixed register is used, then a move will be done afterwards */
1681 if (!ts->fixed_reg) {
1682 if (ts->val_type == TEMP_VAL_REG)
1683 s->reg_to_temp[ts->reg] = -1;
1684 ts->val_type = TEMP_VAL_REG;
1685 ts->reg = reg;
1686 /* temp value is modified, so the value kept in memory is
1687 potentially not the same */
1688 ts->mem_coherent = 0;
1689 s->reg_to_temp[reg] = arg;
1691 oarg_end:
1692 new_args[i] = reg;
1696 /* emit instruction */
1697 tcg_out_op(s, opc, new_args, const_args);
1699 /* move the outputs in the correct register if needed */
1700 for(i = 0; i < nb_oargs; i++) {
1701 ts = &s->temps[args[i]];
1702 reg = new_args[i];
1703 if (ts->fixed_reg && ts->reg != reg) {
1704 tcg_out_mov(s, ts->reg, reg);
1709 #ifdef TCG_TARGET_STACK_GROWSUP
1710 #define STACK_DIR(x) (-(x))
1711 #else
1712 #define STACK_DIR(x) (x)
1713 #endif
1715 static int tcg_reg_alloc_call(TCGContext *s, const TCGOpDef *def,
1716 int opc, const TCGArg *args,
1717 unsigned int dead_iargs)
1719 int nb_iargs, nb_oargs, flags, nb_regs, i, reg, nb_params;
1720 TCGArg arg, func_arg;
1721 TCGTemp *ts;
1722 tcg_target_long stack_offset, call_stack_size, func_addr;
1723 int const_func_arg, allocate_args;
1724 TCGRegSet allocated_regs;
1725 const TCGArgConstraint *arg_ct;
1727 arg = *args++;
1729 nb_oargs = arg >> 16;
1730 nb_iargs = arg & 0xffff;
1731 nb_params = nb_iargs - 1;
1733 flags = args[nb_oargs + nb_iargs];
1735 nb_regs = tcg_target_get_call_iarg_regs_count(flags);
1736 if (nb_regs > nb_params)
1737 nb_regs = nb_params;
1739 /* assign stack slots first */
1740 /* XXX: preallocate call stack */
1741 call_stack_size = (nb_params - nb_regs) * sizeof(tcg_target_long);
1742 call_stack_size = (call_stack_size + TCG_TARGET_STACK_ALIGN - 1) &
1743 ~(TCG_TARGET_STACK_ALIGN - 1);
1744 allocate_args = (call_stack_size > TCG_STATIC_CALL_ARGS_SIZE);
1745 if (allocate_args) {
1746 tcg_out_addi(s, TCG_REG_CALL_STACK, -STACK_DIR(call_stack_size));
1749 stack_offset = TCG_TARGET_CALL_STACK_OFFSET;
1750 for(i = nb_regs; i < nb_params; i++) {
1751 arg = args[nb_oargs + i];
1752 #ifdef TCG_TARGET_STACK_GROWSUP
1753 stack_offset -= sizeof(tcg_target_long);
1754 #endif
1755 if (arg != TCG_CALL_DUMMY_ARG) {
1756 ts = &s->temps[arg];
1757 if (ts->val_type == TEMP_VAL_REG) {
1758 tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, stack_offset);
1759 } else if (ts->val_type == TEMP_VAL_MEM) {
1760 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1761 s->reserved_regs);
1762 /* XXX: not correct if reading values from the stack */
1763 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1764 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
1765 } else if (ts->val_type == TEMP_VAL_CONST) {
1766 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1767 s->reserved_regs);
1768 /* XXX: sign extend may be needed on some targets */
1769 tcg_out_movi(s, ts->type, reg, ts->val);
1770 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
1771 } else {
1772 tcg_abort();
1775 #ifndef TCG_TARGET_STACK_GROWSUP
1776 stack_offset += sizeof(tcg_target_long);
1777 #endif
1780 /* assign input registers */
1781 tcg_regset_set(allocated_regs, s->reserved_regs);
1782 for(i = 0; i < nb_regs; i++) {
1783 arg = args[nb_oargs + i];
1784 if (arg != TCG_CALL_DUMMY_ARG) {
1785 ts = &s->temps[arg];
1786 reg = tcg_target_call_iarg_regs[i];
1787 tcg_reg_free(s, reg);
1788 if (ts->val_type == TEMP_VAL_REG) {
1789 if (ts->reg != reg) {
1790 tcg_out_mov(s, reg, ts->reg);
1792 } else if (ts->val_type == TEMP_VAL_MEM) {
1793 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1794 } else if (ts->val_type == TEMP_VAL_CONST) {
1795 /* XXX: sign extend ? */
1796 tcg_out_movi(s, ts->type, reg, ts->val);
1797 } else {
1798 tcg_abort();
1800 tcg_regset_set_reg(allocated_regs, reg);
1804 /* assign function address */
1805 func_arg = args[nb_oargs + nb_iargs - 1];
1806 arg_ct = &def->args_ct[0];
1807 ts = &s->temps[func_arg];
1808 func_addr = ts->val;
1809 const_func_arg = 0;
1810 if (ts->val_type == TEMP_VAL_MEM) {
1811 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1812 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1813 func_arg = reg;
1814 tcg_regset_set_reg(allocated_regs, reg);
1815 } else if (ts->val_type == TEMP_VAL_REG) {
1816 reg = ts->reg;
1817 if (!tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1818 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1819 tcg_out_mov(s, reg, ts->reg);
1821 func_arg = reg;
1822 tcg_regset_set_reg(allocated_regs, reg);
1823 } else if (ts->val_type == TEMP_VAL_CONST) {
1824 if (tcg_target_const_match(func_addr, arg_ct)) {
1825 const_func_arg = 1;
1826 func_arg = func_addr;
1827 } else {
1828 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1829 tcg_out_movi(s, ts->type, reg, func_addr);
1830 func_arg = reg;
1831 tcg_regset_set_reg(allocated_regs, reg);
1833 } else {
1834 tcg_abort();
1838 /* mark dead temporaries and free the associated registers */
1839 for(i = 0; i < nb_iargs; i++) {
1840 arg = args[nb_oargs + i];
1841 if (IS_DEAD_IARG(i)) {
1842 ts = &s->temps[arg];
1843 if (!ts->fixed_reg) {
1844 if (ts->val_type == TEMP_VAL_REG)
1845 s->reg_to_temp[ts->reg] = -1;
1846 ts->val_type = TEMP_VAL_DEAD;
1851 /* clobber call registers */
1852 for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1853 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
1854 tcg_reg_free(s, reg);
1858 /* store globals and free associated registers (we assume the call
1859 can modify any global. */
1860 save_globals(s, allocated_regs);
1862 tcg_out_op(s, opc, &func_arg, &const_func_arg);
1864 if (allocate_args) {
1865 tcg_out_addi(s, TCG_REG_CALL_STACK, STACK_DIR(call_stack_size));
1868 /* assign output registers and emit moves if needed */
1869 for(i = 0; i < nb_oargs; i++) {
1870 arg = args[i];
1871 ts = &s->temps[arg];
1872 reg = tcg_target_call_oarg_regs[i];
1873 assert(s->reg_to_temp[reg] == -1);
1874 if (ts->fixed_reg) {
1875 if (ts->reg != reg) {
1876 tcg_out_mov(s, ts->reg, reg);
1878 } else {
1879 if (ts->val_type == TEMP_VAL_REG)
1880 s->reg_to_temp[ts->reg] = -1;
1881 ts->val_type = TEMP_VAL_REG;
1882 ts->reg = reg;
1883 ts->mem_coherent = 0;
1884 s->reg_to_temp[reg] = arg;
1888 return nb_iargs + nb_oargs + def->nb_cargs + 1;
1891 #ifdef CONFIG_PROFILER
1893 static int64_t tcg_table_op_count[NB_OPS];
1895 void dump_op_count(void)
1897 int i;
1898 FILE *f;
1899 f = fopen("/tmp/op.log", "w");
1900 for(i = INDEX_op_end; i < NB_OPS; i++) {
1901 fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name, tcg_table_op_count[i]);
1903 fclose(f);
1905 #endif
1908 static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf,
1909 long search_pc)
1911 int opc, op_index;
1912 const TCGOpDef *def;
1913 unsigned int dead_iargs;
1914 const TCGArg *args;
1916 #ifdef DEBUG_DISAS
1917 if (unlikely(loglevel & CPU_LOG_TB_OP)) {
1918 fprintf(logfile, "OP:\n");
1919 tcg_dump_ops(s, logfile);
1920 fprintf(logfile, "\n");
1922 #endif
1924 #ifdef CONFIG_PROFILER
1925 s->la_time -= profile_getclock();
1926 #endif
1927 tcg_liveness_analysis(s);
1928 #ifdef CONFIG_PROFILER
1929 s->la_time += profile_getclock();
1930 #endif
1932 #ifdef DEBUG_DISAS
1933 if (unlikely(loglevel & CPU_LOG_TB_OP_OPT)) {
1934 fprintf(logfile, "OP after la:\n");
1935 tcg_dump_ops(s, logfile);
1936 fprintf(logfile, "\n");
1938 #endif
1940 tcg_reg_alloc_start(s);
1942 s->code_buf = gen_code_buf;
1943 s->code_ptr = gen_code_buf;
1945 args = gen_opparam_buf;
1946 op_index = 0;
1948 for(;;) {
1949 opc = gen_opc_buf[op_index];
1950 #ifdef CONFIG_PROFILER
1951 tcg_table_op_count[opc]++;
1952 #endif
1953 def = &tcg_op_defs[opc];
1954 #if 0
1955 printf("%s: %d %d %d\n", def->name,
1956 def->nb_oargs, def->nb_iargs, def->nb_cargs);
1957 // dump_regs(s);
1958 #endif
1959 switch(opc) {
1960 case INDEX_op_mov_i32:
1961 #if TCG_TARGET_REG_BITS == 64
1962 case INDEX_op_mov_i64:
1963 #endif
1964 dead_iargs = s->op_dead_iargs[op_index];
1965 tcg_reg_alloc_mov(s, def, args, dead_iargs);
1966 break;
1967 case INDEX_op_movi_i32:
1968 #if TCG_TARGET_REG_BITS == 64
1969 case INDEX_op_movi_i64:
1970 #endif
1971 tcg_reg_alloc_movi(s, args);
1972 break;
1973 case INDEX_op_debug_insn_start:
1974 /* debug instruction */
1975 break;
1976 case INDEX_op_nop:
1977 case INDEX_op_nop1:
1978 case INDEX_op_nop2:
1979 case INDEX_op_nop3:
1980 break;
1981 case INDEX_op_nopn:
1982 args += args[0];
1983 goto next;
1984 case INDEX_op_discard:
1986 TCGTemp *ts;
1987 ts = &s->temps[args[0]];
1988 /* mark the temporary as dead */
1989 if (!ts->fixed_reg) {
1990 if (ts->val_type == TEMP_VAL_REG)
1991 s->reg_to_temp[ts->reg] = -1;
1992 ts->val_type = TEMP_VAL_DEAD;
1995 break;
1996 case INDEX_op_set_label:
1997 tcg_reg_alloc_bb_end(s, s->reserved_regs);
1998 tcg_out_label(s, args[0], (long)s->code_ptr);
1999 break;
2000 case INDEX_op_call:
2001 dead_iargs = s->op_dead_iargs[op_index];
2002 args += tcg_reg_alloc_call(s, def, opc, args, dead_iargs);
2003 goto next;
2004 case INDEX_op_end:
2005 goto the_end;
2006 default:
2007 /* Note: in order to speed up the code, it would be much
2008 faster to have specialized register allocator functions for
2009 some common argument patterns */
2010 dead_iargs = s->op_dead_iargs[op_index];
2011 tcg_reg_alloc_op(s, def, opc, args, dead_iargs);
2012 break;
2014 args += def->nb_args;
2015 next:
2016 if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) {
2017 return op_index;
2019 op_index++;
2020 #ifndef NDEBUG
2021 check_regs(s);
2022 #endif
2024 the_end:
2025 return -1;
2028 int tcg_gen_code(TCGContext *s, uint8_t *gen_code_buf)
2030 #ifdef CONFIG_PROFILER
2032 int n;
2033 n = (gen_opc_ptr - gen_opc_buf);
2034 s->op_count += n;
2035 if (n > s->op_count_max)
2036 s->op_count_max = n;
2038 s->temp_count += s->nb_temps;
2039 if (s->nb_temps > s->temp_count_max)
2040 s->temp_count_max = s->nb_temps;
2042 #endif
2044 tcg_gen_code_common(s, gen_code_buf, -1);
2046 /* flush instruction cache */
2047 flush_icache_range((unsigned long)gen_code_buf,
2048 (unsigned long)s->code_ptr);
2049 return s->code_ptr - gen_code_buf;
2052 /* Return the index of the micro operation such as the pc after is <
2053 offset bytes from the start of the TB. The contents of gen_code_buf must
2054 not be changed, though writing the same values is ok.
2055 Return -1 if not found. */
2056 int tcg_gen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset)
2058 return tcg_gen_code_common(s, gen_code_buf, offset);
2061 #ifdef CONFIG_PROFILER
2062 void tcg_dump_info(FILE *f,
2063 int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
2065 TCGContext *s = &tcg_ctx;
2066 int64_t tot;
2068 tot = s->interm_time + s->code_time;
2069 cpu_fprintf(f, "JIT cycles %" PRId64 " (%0.3f s at 2.4 GHz)\n",
2070 tot, tot / 2.4e9);
2071 cpu_fprintf(f, "translated TBs %" PRId64 " (aborted=%" PRId64 " %0.1f%%)\n",
2072 s->tb_count,
2073 s->tb_count1 - s->tb_count,
2074 s->tb_count1 ? (double)(s->tb_count1 - s->tb_count) / s->tb_count1 * 100.0 : 0);
2075 cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n",
2076 s->tb_count ? (double)s->op_count / s->tb_count : 0, s->op_count_max);
2077 cpu_fprintf(f, "old ops/total ops %0.1f%%\n",
2078 s->op_count ? (double)s->old_op_count / s->op_count * 100.0 : 0);
2079 cpu_fprintf(f, "deleted ops/TB %0.2f\n",
2080 s->tb_count ?
2081 (double)s->del_op_count / s->tb_count : 0);
2082 cpu_fprintf(f, "avg temps/TB %0.2f max=%d\n",
2083 s->tb_count ?
2084 (double)s->temp_count / s->tb_count : 0,
2085 s->temp_count_max);
2087 cpu_fprintf(f, "cycles/op %0.1f\n",
2088 s->op_count ? (double)tot / s->op_count : 0);
2089 cpu_fprintf(f, "cycles/in byte %0.1f\n",
2090 s->code_in_len ? (double)tot / s->code_in_len : 0);
2091 cpu_fprintf(f, "cycles/out byte %0.1f\n",
2092 s->code_out_len ? (double)tot / s->code_out_len : 0);
2093 if (tot == 0)
2094 tot = 1;
2095 cpu_fprintf(f, " gen_interm time %0.1f%%\n",
2096 (double)s->interm_time / tot * 100.0);
2097 cpu_fprintf(f, " gen_code time %0.1f%%\n",
2098 (double)s->code_time / tot * 100.0);
2099 cpu_fprintf(f, "liveness/code time %0.1f%%\n",
2100 (double)s->la_time / (s->code_time ? s->code_time : 1) * 100.0);
2101 cpu_fprintf(f, "cpu_restore count %" PRId64 "\n",
2102 s->restore_count);
2103 cpu_fprintf(f, " avg cycles %0.1f\n",
2104 s->restore_count ? (double)s->restore_time / s->restore_count : 0);
2106 extern void dump_op_count(void);
2107 dump_op_count();
2110 #else
2111 void tcg_dump_info(FILE *f,
2112 int (*cpu_fprintf)(FILE *f, const char *fmt, ...))
2114 cpu_fprintf(f, "[TCG profiler not compiled]\n");
2116 #endif