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
25 /* define it to use liveness analysis (better code) */
26 #define USE_TCG_OPTIMIZATIONS
28 #include "qemu/osdep.h"
30 /* Define to jump the ELF file used to communicate with GDB. */
33 #include "qemu/error-report.h"
34 #include "qemu/cutils.h"
35 #include "qemu/host-utils.h"
36 #include "qemu/qemu-print.h"
37 #include "qemu/timer.h"
39 /* Note: the long term plan is to reduce the dependencies on the QEMU
40 CPU definitions. Currently they are used for qemu_ld/st
42 #define NO_CPU_IO_DEFS
45 #include "exec/exec-all.h"
47 #if !defined(CONFIG_USER_ONLY)
48 #include "hw/boards.h"
51 #include "tcg/tcg-op.h"
53 #if UINTPTR_MAX == UINT32_MAX
54 # define ELF_CLASS ELFCLASS32
56 # define ELF_CLASS ELFCLASS64
58 #ifdef HOST_WORDS_BIGENDIAN
59 # define ELF_DATA ELFDATA2MSB
61 # define ELF_DATA ELFDATA2LSB
66 #include "sysemu/sysemu.h"
68 /* Forward declarations for functions declared in tcg-target.c.inc and
70 static void tcg_target_init(TCGContext
*s
);
71 static const TCGTargetOpDef
*tcg_target_op_def(TCGOpcode
);
72 static void tcg_target_qemu_prologue(TCGContext
*s
);
73 static bool patch_reloc(tcg_insn_unit
*code_ptr
, int type
,
74 intptr_t value
, intptr_t addend
);
76 /* The CIE and FDE header definitions will be common to all hosts. */
78 uint32_t len
__attribute__((aligned((sizeof(void *)))));
84 uint8_t return_column
;
87 typedef struct QEMU_PACKED
{
88 uint32_t len
__attribute__((aligned((sizeof(void *)))));
92 } DebugFrameFDEHeader
;
94 typedef struct QEMU_PACKED
{
96 DebugFrameFDEHeader fde
;
99 static void tcg_register_jit_int(void *buf
, size_t size
,
100 const void *debug_frame
,
101 size_t debug_frame_size
)
102 __attribute__((unused
));
104 /* Forward declarations for functions declared and used in tcg-target.c.inc. */
105 static const char *target_parse_constraint(TCGArgConstraint
*ct
,
106 const char *ct_str
, TCGType type
);
107 static void tcg_out_ld(TCGContext
*s
, TCGType type
, TCGReg ret
, TCGReg arg1
,
109 static bool tcg_out_mov(TCGContext
*s
, TCGType type
, TCGReg ret
, TCGReg arg
);
110 static void tcg_out_movi(TCGContext
*s
, TCGType type
,
111 TCGReg ret
, tcg_target_long arg
);
112 static void tcg_out_op(TCGContext
*s
, TCGOpcode opc
, const TCGArg
*args
,
113 const int *const_args
);
114 #if TCG_TARGET_MAYBE_vec
115 static bool tcg_out_dup_vec(TCGContext
*s
, TCGType type
, unsigned vece
,
116 TCGReg dst
, TCGReg src
);
117 static bool tcg_out_dupm_vec(TCGContext
*s
, TCGType type
, unsigned vece
,
118 TCGReg dst
, TCGReg base
, intptr_t offset
);
119 static void tcg_out_dupi_vec(TCGContext
*s
, TCGType type
,
120 TCGReg dst
, tcg_target_long arg
);
121 static void tcg_out_vec_op(TCGContext
*s
, TCGOpcode opc
, unsigned vecl
,
122 unsigned vece
, const TCGArg
*args
,
123 const int *const_args
);
125 static inline bool tcg_out_dup_vec(TCGContext
*s
, TCGType type
, unsigned vece
,
126 TCGReg dst
, TCGReg src
)
128 g_assert_not_reached();
130 static inline bool tcg_out_dupm_vec(TCGContext
*s
, TCGType type
, unsigned vece
,
131 TCGReg dst
, TCGReg base
, intptr_t offset
)
133 g_assert_not_reached();
135 static inline void tcg_out_dupi_vec(TCGContext
*s
, TCGType type
,
136 TCGReg dst
, tcg_target_long arg
)
138 g_assert_not_reached();
140 static inline void tcg_out_vec_op(TCGContext
*s
, TCGOpcode opc
, unsigned vecl
,
141 unsigned vece
, const TCGArg
*args
,
142 const int *const_args
)
144 g_assert_not_reached();
147 static void tcg_out_st(TCGContext
*s
, TCGType type
, TCGReg arg
, TCGReg arg1
,
149 static bool tcg_out_sti(TCGContext
*s
, TCGType type
, TCGArg val
,
150 TCGReg base
, intptr_t ofs
);
151 static void tcg_out_call(TCGContext
*s
, tcg_insn_unit
*target
);
152 static int tcg_target_const_match(tcg_target_long val
, TCGType type
,
153 const TCGArgConstraint
*arg_ct
);
154 #ifdef TCG_TARGET_NEED_LDST_LABELS
155 static int tcg_out_ldst_finalize(TCGContext
*s
);
158 #define TCG_HIGHWATER 1024
160 static TCGContext
**tcg_ctxs
;
161 static unsigned int n_tcg_ctxs
;
162 TCGv_env cpu_env
= 0;
164 struct tcg_region_tree
{
167 /* padding to avoid false sharing is computed at run-time */
171 * We divide code_gen_buffer into equally-sized "regions" that TCG threads
172 * dynamically allocate from as demand dictates. Given appropriate region
173 * sizing, this minimizes flushes even when some TCG threads generate a lot
174 * more code than others.
176 struct tcg_region_state
{
179 /* fields set at init time */
184 size_t size
; /* size of one region */
185 size_t stride
; /* .size + guard size */
187 /* fields protected by the lock */
188 size_t current
; /* current region index */
189 size_t agg_size_full
; /* aggregate size of full regions */
192 static struct tcg_region_state region
;
194 * This is an array of struct tcg_region_tree's, with padding.
195 * We use void * to simplify the computation of region_trees[i]; each
196 * struct is found every tree_size bytes.
198 static void *region_trees
;
199 static size_t tree_size
;
200 static TCGRegSet tcg_target_available_regs
[TCG_TYPE_COUNT
];
201 static TCGRegSet tcg_target_call_clobber_regs
;
203 #if TCG_TARGET_INSN_UNIT_SIZE == 1
204 static __attribute__((unused
)) inline void tcg_out8(TCGContext
*s
, uint8_t v
)
209 static __attribute__((unused
)) inline void tcg_patch8(tcg_insn_unit
*p
,
216 #if TCG_TARGET_INSN_UNIT_SIZE <= 2
217 static __attribute__((unused
)) inline void tcg_out16(TCGContext
*s
, uint16_t v
)
219 if (TCG_TARGET_INSN_UNIT_SIZE
== 2) {
222 tcg_insn_unit
*p
= s
->code_ptr
;
223 memcpy(p
, &v
, sizeof(v
));
224 s
->code_ptr
= p
+ (2 / TCG_TARGET_INSN_UNIT_SIZE
);
228 static __attribute__((unused
)) inline void tcg_patch16(tcg_insn_unit
*p
,
231 if (TCG_TARGET_INSN_UNIT_SIZE
== 2) {
234 memcpy(p
, &v
, sizeof(v
));
239 #if TCG_TARGET_INSN_UNIT_SIZE <= 4
240 static __attribute__((unused
)) inline void tcg_out32(TCGContext
*s
, uint32_t v
)
242 if (TCG_TARGET_INSN_UNIT_SIZE
== 4) {
245 tcg_insn_unit
*p
= s
->code_ptr
;
246 memcpy(p
, &v
, sizeof(v
));
247 s
->code_ptr
= p
+ (4 / TCG_TARGET_INSN_UNIT_SIZE
);
251 static __attribute__((unused
)) inline void tcg_patch32(tcg_insn_unit
*p
,
254 if (TCG_TARGET_INSN_UNIT_SIZE
== 4) {
257 memcpy(p
, &v
, sizeof(v
));
262 #if TCG_TARGET_INSN_UNIT_SIZE <= 8
263 static __attribute__((unused
)) inline void tcg_out64(TCGContext
*s
, uint64_t v
)
265 if (TCG_TARGET_INSN_UNIT_SIZE
== 8) {
268 tcg_insn_unit
*p
= s
->code_ptr
;
269 memcpy(p
, &v
, sizeof(v
));
270 s
->code_ptr
= p
+ (8 / TCG_TARGET_INSN_UNIT_SIZE
);
274 static __attribute__((unused
)) inline void tcg_patch64(tcg_insn_unit
*p
,
277 if (TCG_TARGET_INSN_UNIT_SIZE
== 8) {
280 memcpy(p
, &v
, sizeof(v
));
285 /* label relocation processing */
287 static void tcg_out_reloc(TCGContext
*s
, tcg_insn_unit
*code_ptr
, int type
,
288 TCGLabel
*l
, intptr_t addend
)
290 TCGRelocation
*r
= tcg_malloc(sizeof(TCGRelocation
));
295 QSIMPLEQ_INSERT_TAIL(&l
->relocs
, r
, next
);
298 static void tcg_out_label(TCGContext
*s
, TCGLabel
*l
, tcg_insn_unit
*ptr
)
300 tcg_debug_assert(!l
->has_value
);
302 l
->u
.value_ptr
= ptr
;
305 TCGLabel
*gen_new_label(void)
307 TCGContext
*s
= tcg_ctx
;
308 TCGLabel
*l
= tcg_malloc(sizeof(TCGLabel
));
310 memset(l
, 0, sizeof(TCGLabel
));
311 l
->id
= s
->nb_labels
++;
312 QSIMPLEQ_INIT(&l
->relocs
);
314 QSIMPLEQ_INSERT_TAIL(&s
->labels
, l
, next
);
319 static bool tcg_resolve_relocs(TCGContext
*s
)
323 QSIMPLEQ_FOREACH(l
, &s
->labels
, next
) {
325 uintptr_t value
= l
->u
.value
;
327 QSIMPLEQ_FOREACH(r
, &l
->relocs
, next
) {
328 if (!patch_reloc(r
->ptr
, r
->type
, value
, r
->addend
)) {
336 static void set_jmp_reset_offset(TCGContext
*s
, int which
)
338 size_t off
= tcg_current_code_size(s
);
339 s
->tb_jmp_reset_offset
[which
] = off
;
340 /* Make sure that we didn't overflow the stored offset. */
341 assert(s
->tb_jmp_reset_offset
[which
] == off
);
344 #include "tcg-target.c.inc"
346 /* compare a pointer @ptr and a tb_tc @s */
347 static int ptr_cmp_tb_tc(const void *ptr
, const struct tb_tc
*s
)
349 if (ptr
>= s
->ptr
+ s
->size
) {
351 } else if (ptr
< s
->ptr
) {
357 static gint
tb_tc_cmp(gconstpointer ap
, gconstpointer bp
)
359 const struct tb_tc
*a
= ap
;
360 const struct tb_tc
*b
= bp
;
363 * When both sizes are set, we know this isn't a lookup.
364 * This is the most likely case: every TB must be inserted; lookups
365 * are a lot less frequent.
367 if (likely(a
->size
&& b
->size
)) {
368 if (a
->ptr
> b
->ptr
) {
370 } else if (a
->ptr
< b
->ptr
) {
373 /* a->ptr == b->ptr should happen only on deletions */
374 g_assert(a
->size
== b
->size
);
378 * All lookups have either .size field set to 0.
379 * From the glib sources we see that @ap is always the lookup key. However
380 * the docs provide no guarantee, so we just mark this case as likely.
382 if (likely(a
->size
== 0)) {
383 return ptr_cmp_tb_tc(a
->ptr
, b
);
385 return ptr_cmp_tb_tc(b
->ptr
, a
);
388 static void tcg_region_trees_init(void)
392 tree_size
= ROUND_UP(sizeof(struct tcg_region_tree
), qemu_dcache_linesize
);
393 region_trees
= qemu_memalign(qemu_dcache_linesize
, region
.n
* tree_size
);
394 for (i
= 0; i
< region
.n
; i
++) {
395 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
397 qemu_mutex_init(&rt
->lock
);
398 rt
->tree
= g_tree_new(tb_tc_cmp
);
402 static struct tcg_region_tree
*tc_ptr_to_region_tree(void *p
)
406 if (p
< region
.start_aligned
) {
409 ptrdiff_t offset
= p
- region
.start_aligned
;
411 if (offset
> region
.stride
* (region
.n
- 1)) {
412 region_idx
= region
.n
- 1;
414 region_idx
= offset
/ region
.stride
;
417 return region_trees
+ region_idx
* tree_size
;
420 void tcg_tb_insert(TranslationBlock
*tb
)
422 struct tcg_region_tree
*rt
= tc_ptr_to_region_tree(tb
->tc
.ptr
);
424 qemu_mutex_lock(&rt
->lock
);
425 g_tree_insert(rt
->tree
, &tb
->tc
, tb
);
426 qemu_mutex_unlock(&rt
->lock
);
429 void tcg_tb_remove(TranslationBlock
*tb
)
431 struct tcg_region_tree
*rt
= tc_ptr_to_region_tree(tb
->tc
.ptr
);
433 qemu_mutex_lock(&rt
->lock
);
434 g_tree_remove(rt
->tree
, &tb
->tc
);
435 qemu_mutex_unlock(&rt
->lock
);
439 * Find the TB 'tb' such that
440 * tb->tc.ptr <= tc_ptr < tb->tc.ptr + tb->tc.size
441 * Return NULL if not found.
443 TranslationBlock
*tcg_tb_lookup(uintptr_t tc_ptr
)
445 struct tcg_region_tree
*rt
= tc_ptr_to_region_tree((void *)tc_ptr
);
446 TranslationBlock
*tb
;
447 struct tb_tc s
= { .ptr
= (void *)tc_ptr
};
449 qemu_mutex_lock(&rt
->lock
);
450 tb
= g_tree_lookup(rt
->tree
, &s
);
451 qemu_mutex_unlock(&rt
->lock
);
455 static void tcg_region_tree_lock_all(void)
459 for (i
= 0; i
< region
.n
; i
++) {
460 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
462 qemu_mutex_lock(&rt
->lock
);
466 static void tcg_region_tree_unlock_all(void)
470 for (i
= 0; i
< region
.n
; i
++) {
471 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
473 qemu_mutex_unlock(&rt
->lock
);
477 void tcg_tb_foreach(GTraverseFunc func
, gpointer user_data
)
481 tcg_region_tree_lock_all();
482 for (i
= 0; i
< region
.n
; i
++) {
483 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
485 g_tree_foreach(rt
->tree
, func
, user_data
);
487 tcg_region_tree_unlock_all();
490 size_t tcg_nb_tbs(void)
495 tcg_region_tree_lock_all();
496 for (i
= 0; i
< region
.n
; i
++) {
497 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
499 nb_tbs
+= g_tree_nnodes(rt
->tree
);
501 tcg_region_tree_unlock_all();
505 static gboolean
tcg_region_tree_traverse(gpointer k
, gpointer v
, gpointer data
)
507 TranslationBlock
*tb
= v
;
513 static void tcg_region_tree_reset_all(void)
517 tcg_region_tree_lock_all();
518 for (i
= 0; i
< region
.n
; i
++) {
519 struct tcg_region_tree
*rt
= region_trees
+ i
* tree_size
;
521 g_tree_foreach(rt
->tree
, tcg_region_tree_traverse
, NULL
);
522 /* Increment the refcount first so that destroy acts as a reset */
523 g_tree_ref(rt
->tree
);
524 g_tree_destroy(rt
->tree
);
526 tcg_region_tree_unlock_all();
529 static void tcg_region_bounds(size_t curr_region
, void **pstart
, void **pend
)
533 start
= region
.start_aligned
+ curr_region
* region
.stride
;
534 end
= start
+ region
.size
;
536 if (curr_region
== 0) {
537 start
= region
.start
;
539 if (curr_region
== region
.n
- 1) {
547 static void tcg_region_assign(TCGContext
*s
, size_t curr_region
)
551 tcg_region_bounds(curr_region
, &start
, &end
);
553 s
->code_gen_buffer
= start
;
554 s
->code_gen_ptr
= start
;
555 s
->code_gen_buffer_size
= end
- start
;
556 s
->code_gen_highwater
= end
- TCG_HIGHWATER
;
559 static bool tcg_region_alloc__locked(TCGContext
*s
)
561 if (region
.current
== region
.n
) {
564 tcg_region_assign(s
, region
.current
);
570 * Request a new region once the one in use has filled up.
571 * Returns true on error.
573 static bool tcg_region_alloc(TCGContext
*s
)
576 /* read the region size now; alloc__locked will overwrite it on success */
577 size_t size_full
= s
->code_gen_buffer_size
;
579 qemu_mutex_lock(®ion
.lock
);
580 err
= tcg_region_alloc__locked(s
);
582 region
.agg_size_full
+= size_full
- TCG_HIGHWATER
;
584 qemu_mutex_unlock(®ion
.lock
);
589 * Perform a context's first region allocation.
590 * This function does _not_ increment region.agg_size_full.
592 static inline bool tcg_region_initial_alloc__locked(TCGContext
*s
)
594 return tcg_region_alloc__locked(s
);
597 /* Call from a safe-work context */
598 void tcg_region_reset_all(void)
600 unsigned int n_ctxs
= qatomic_read(&n_tcg_ctxs
);
603 qemu_mutex_lock(®ion
.lock
);
605 region
.agg_size_full
= 0;
607 for (i
= 0; i
< n_ctxs
; i
++) {
608 TCGContext
*s
= qatomic_read(&tcg_ctxs
[i
]);
609 bool err
= tcg_region_initial_alloc__locked(s
);
613 qemu_mutex_unlock(®ion
.lock
);
615 tcg_region_tree_reset_all();
618 #ifdef CONFIG_USER_ONLY
619 static size_t tcg_n_regions(void)
625 * It is likely that some vCPUs will translate more code than others, so we
626 * first try to set more regions than max_cpus, with those regions being of
627 * reasonable size. If that's not possible we make do by evenly dividing
628 * the code_gen_buffer among the vCPUs.
630 static size_t tcg_n_regions(void)
634 /* Use a single region if all we have is one vCPU thread */
635 #if !defined(CONFIG_USER_ONLY)
636 MachineState
*ms
= MACHINE(qdev_get_machine());
637 unsigned int max_cpus
= ms
->smp
.max_cpus
;
639 if (max_cpus
== 1 || !qemu_tcg_mttcg_enabled()) {
643 /* Try to have more regions than max_cpus, with each region being >= 2 MB */
644 for (i
= 8; i
> 0; i
--) {
645 size_t regions_per_thread
= i
;
648 region_size
= tcg_init_ctx
.code_gen_buffer_size
;
649 region_size
/= max_cpus
* regions_per_thread
;
651 if (region_size
>= 2 * 1024u * 1024) {
652 return max_cpus
* regions_per_thread
;
655 /* If we can't, then just allocate one region per vCPU thread */
661 * Initializes region partitioning.
663 * Called at init time from the parent thread (i.e. the one calling
664 * tcg_context_init), after the target's TCG globals have been set.
666 * Region partitioning works by splitting code_gen_buffer into separate regions,
667 * and then assigning regions to TCG threads so that the threads can translate
668 * code in parallel without synchronization.
670 * In softmmu the number of TCG threads is bounded by max_cpus, so we use at
671 * least max_cpus regions in MTTCG. In !MTTCG we use a single region.
672 * Note that the TCG options from the command-line (i.e. -accel accel=tcg,[...])
673 * must have been parsed before calling this function, since it calls
674 * qemu_tcg_mttcg_enabled().
676 * In user-mode we use a single region. Having multiple regions in user-mode
677 * is not supported, because the number of vCPU threads (recall that each thread
678 * spawned by the guest corresponds to a vCPU thread) is only bounded by the
679 * OS, and usually this number is huge (tens of thousands is not uncommon).
680 * Thus, given this large bound on the number of vCPU threads and the fact
681 * that code_gen_buffer is allocated at compile-time, we cannot guarantee
682 * that the availability of at least one region per vCPU thread.
684 * However, this user-mode limitation is unlikely to be a significant problem
685 * in practice. Multi-threaded guests share most if not all of their translated
686 * code, which makes parallel code generation less appealing than in softmmu.
688 void tcg_region_init(void)
690 void *buf
= tcg_init_ctx
.code_gen_buffer
;
692 size_t size
= tcg_init_ctx
.code_gen_buffer_size
;
693 size_t page_size
= qemu_real_host_page_size
;
698 n_regions
= tcg_n_regions();
700 /* The first region will be 'aligned - buf' bytes larger than the others */
701 aligned
= QEMU_ALIGN_PTR_UP(buf
, page_size
);
702 g_assert(aligned
< tcg_init_ctx
.code_gen_buffer
+ size
);
704 * Make region_size a multiple of page_size, using aligned as the start.
705 * As a result of this we might end up with a few extra pages at the end of
706 * the buffer; we will assign those to the last region.
708 region_size
= (size
- (aligned
- buf
)) / n_regions
;
709 region_size
= QEMU_ALIGN_DOWN(region_size
, page_size
);
711 /* A region must have at least 2 pages; one code, one guard */
712 g_assert(region_size
>= 2 * page_size
);
714 /* init the region struct */
715 qemu_mutex_init(®ion
.lock
);
716 region
.n
= n_regions
;
717 region
.size
= region_size
- page_size
;
718 region
.stride
= region_size
;
720 region
.start_aligned
= aligned
;
721 /* page-align the end, since its last page will be a guard page */
722 region
.end
= QEMU_ALIGN_PTR_DOWN(buf
+ size
, page_size
);
723 /* account for that last guard page */
724 region
.end
-= page_size
;
726 /* set guard pages */
727 for (i
= 0; i
< region
.n
; i
++) {
731 tcg_region_bounds(i
, &start
, &end
);
732 rc
= qemu_mprotect_none(end
, page_size
);
736 tcg_region_trees_init();
738 /* In user-mode we support only one ctx, so do the initial allocation now */
739 #ifdef CONFIG_USER_ONLY
741 bool err
= tcg_region_initial_alloc__locked(tcg_ctx
);
748 static void alloc_tcg_plugin_context(TCGContext
*s
)
751 s
->plugin_tb
= g_new0(struct qemu_plugin_tb
, 1);
752 s
->plugin_tb
->insns
=
753 g_ptr_array_new_with_free_func(qemu_plugin_insn_cleanup_fn
);
758 * All TCG threads except the parent (i.e. the one that called tcg_context_init
759 * and registered the target's TCG globals) must register with this function
760 * before initiating translation.
762 * In user-mode we just point tcg_ctx to tcg_init_ctx. See the documentation
763 * of tcg_region_init() for the reasoning behind this.
765 * In softmmu each caller registers its context in tcg_ctxs[]. Note that in
766 * softmmu tcg_ctxs[] does not track tcg_ctx_init, since the initial context
767 * is not used anymore for translation once this function is called.
769 * Not tracking tcg_init_ctx in tcg_ctxs[] in softmmu keeps code that iterates
770 * over the array (e.g. tcg_code_size() the same for both softmmu and user-mode.
772 #ifdef CONFIG_USER_ONLY
773 void tcg_register_thread(void)
775 tcg_ctx
= &tcg_init_ctx
;
778 void tcg_register_thread(void)
780 MachineState
*ms
= MACHINE(qdev_get_machine());
781 TCGContext
*s
= g_malloc(sizeof(*s
));
787 /* Relink mem_base. */
788 for (i
= 0, n
= tcg_init_ctx
.nb_globals
; i
< n
; ++i
) {
789 if (tcg_init_ctx
.temps
[i
].mem_base
) {
790 ptrdiff_t b
= tcg_init_ctx
.temps
[i
].mem_base
- tcg_init_ctx
.temps
;
791 tcg_debug_assert(b
>= 0 && b
< n
);
792 s
->temps
[i
].mem_base
= &s
->temps
[b
];
796 /* Claim an entry in tcg_ctxs */
797 n
= qatomic_fetch_inc(&n_tcg_ctxs
);
798 g_assert(n
< ms
->smp
.max_cpus
);
799 qatomic_set(&tcg_ctxs
[n
], s
);
802 alloc_tcg_plugin_context(s
);
806 qemu_mutex_lock(®ion
.lock
);
807 err
= tcg_region_initial_alloc__locked(tcg_ctx
);
809 qemu_mutex_unlock(®ion
.lock
);
811 #endif /* !CONFIG_USER_ONLY */
814 * Returns the size (in bytes) of all translated code (i.e. from all regions)
815 * currently in the cache.
816 * See also: tcg_code_capacity()
817 * Do not confuse with tcg_current_code_size(); that one applies to a single
820 size_t tcg_code_size(void)
822 unsigned int n_ctxs
= qatomic_read(&n_tcg_ctxs
);
826 qemu_mutex_lock(®ion
.lock
);
827 total
= region
.agg_size_full
;
828 for (i
= 0; i
< n_ctxs
; i
++) {
829 const TCGContext
*s
= qatomic_read(&tcg_ctxs
[i
]);
832 size
= qatomic_read(&s
->code_gen_ptr
) - s
->code_gen_buffer
;
833 g_assert(size
<= s
->code_gen_buffer_size
);
836 qemu_mutex_unlock(®ion
.lock
);
841 * Returns the code capacity (in bytes) of the entire cache, i.e. including all
843 * See also: tcg_code_size()
845 size_t tcg_code_capacity(void)
847 size_t guard_size
, capacity
;
849 /* no need for synchronization; these variables are set at init time */
850 guard_size
= region
.stride
- region
.size
;
851 capacity
= region
.end
+ guard_size
- region
.start
;
852 capacity
-= region
.n
* (guard_size
+ TCG_HIGHWATER
);
856 size_t tcg_tb_phys_invalidate_count(void)
858 unsigned int n_ctxs
= qatomic_read(&n_tcg_ctxs
);
862 for (i
= 0; i
< n_ctxs
; i
++) {
863 const TCGContext
*s
= qatomic_read(&tcg_ctxs
[i
]);
865 total
+= qatomic_read(&s
->tb_phys_invalidate_count
);
870 /* pool based memory allocation */
871 void *tcg_malloc_internal(TCGContext
*s
, int size
)
876 if (size
> TCG_POOL_CHUNK_SIZE
) {
877 /* big malloc: insert a new pool (XXX: could optimize) */
878 p
= g_malloc(sizeof(TCGPool
) + size
);
880 p
->next
= s
->pool_first_large
;
881 s
->pool_first_large
= p
;
892 pool_size
= TCG_POOL_CHUNK_SIZE
;
893 p
= g_malloc(sizeof(TCGPool
) + pool_size
);
897 s
->pool_current
->next
= p
;
906 s
->pool_cur
= p
->data
+ size
;
907 s
->pool_end
= p
->data
+ p
->size
;
911 void tcg_pool_reset(TCGContext
*s
)
914 for (p
= s
->pool_first_large
; p
; p
= t
) {
918 s
->pool_first_large
= NULL
;
919 s
->pool_cur
= s
->pool_end
= NULL
;
920 s
->pool_current
= NULL
;
923 typedef struct TCGHelperInfo
{
930 #include "exec/helper-proto.h"
932 static const TCGHelperInfo all_helpers
[] = {
933 #include "exec/helper-tcg.h"
935 static GHashTable
*helper_table
;
937 static int indirect_reg_alloc_order
[ARRAY_SIZE(tcg_target_reg_alloc_order
)];
938 static void process_op_defs(TCGContext
*s
);
939 static TCGTemp
*tcg_global_reg_new_internal(TCGContext
*s
, TCGType type
,
940 TCGReg reg
, const char *name
);
942 void tcg_context_init(TCGContext
*s
)
944 int op
, total_args
, n
, i
;
946 TCGArgConstraint
*args_ct
;
949 memset(s
, 0, sizeof(*s
));
952 /* Count total number of arguments and allocate the corresponding
955 for(op
= 0; op
< NB_OPS
; op
++) {
956 def
= &tcg_op_defs
[op
];
957 n
= def
->nb_iargs
+ def
->nb_oargs
;
961 args_ct
= g_new0(TCGArgConstraint
, total_args
);
963 for(op
= 0; op
< NB_OPS
; op
++) {
964 def
= &tcg_op_defs
[op
];
965 def
->args_ct
= args_ct
;
966 n
= def
->nb_iargs
+ def
->nb_oargs
;
970 /* Register helpers. */
971 /* Use g_direct_hash/equal for direct pointer comparisons on func. */
972 helper_table
= g_hash_table_new(NULL
, NULL
);
974 for (i
= 0; i
< ARRAY_SIZE(all_helpers
); ++i
) {
975 g_hash_table_insert(helper_table
, (gpointer
)all_helpers
[i
].func
,
976 (gpointer
)&all_helpers
[i
]);
982 /* Reverse the order of the saved registers, assuming they're all at
983 the start of tcg_target_reg_alloc_order. */
984 for (n
= 0; n
< ARRAY_SIZE(tcg_target_reg_alloc_order
); ++n
) {
985 int r
= tcg_target_reg_alloc_order
[n
];
986 if (tcg_regset_test_reg(tcg_target_call_clobber_regs
, r
)) {
990 for (i
= 0; i
< n
; ++i
) {
991 indirect_reg_alloc_order
[i
] = tcg_target_reg_alloc_order
[n
- 1 - i
];
993 for (; i
< ARRAY_SIZE(tcg_target_reg_alloc_order
); ++i
) {
994 indirect_reg_alloc_order
[i
] = tcg_target_reg_alloc_order
[i
];
997 alloc_tcg_plugin_context(s
);
1001 * In user-mode we simply share the init context among threads, since we
1002 * use a single region. See the documentation tcg_region_init() for the
1003 * reasoning behind this.
1004 * In softmmu we will have at most max_cpus TCG threads.
1006 #ifdef CONFIG_USER_ONLY
1007 tcg_ctxs
= &tcg_ctx
;
1010 MachineState
*ms
= MACHINE(qdev_get_machine());
1011 unsigned int max_cpus
= ms
->smp
.max_cpus
;
1012 tcg_ctxs
= g_new(TCGContext
*, max_cpus
);
1015 tcg_debug_assert(!tcg_regset_test_reg(s
->reserved_regs
, TCG_AREG0
));
1016 ts
= tcg_global_reg_new_internal(s
, TCG_TYPE_PTR
, TCG_AREG0
, "env");
1017 cpu_env
= temp_tcgv_ptr(ts
);
1021 * Allocate TBs right before their corresponding translated code, making
1022 * sure that TBs and code are on different cache lines.
1024 TranslationBlock
*tcg_tb_alloc(TCGContext
*s
)
1026 uintptr_t align
= qemu_icache_linesize
;
1027 TranslationBlock
*tb
;
1031 tb
= (void *)ROUND_UP((uintptr_t)s
->code_gen_ptr
, align
);
1032 next
= (void *)ROUND_UP((uintptr_t)(tb
+ 1), align
);
1034 if (unlikely(next
> s
->code_gen_highwater
)) {
1035 if (tcg_region_alloc(s
)) {
1040 qatomic_set(&s
->code_gen_ptr
, next
);
1041 s
->data_gen_ptr
= NULL
;
1045 void tcg_prologue_init(TCGContext
*s
)
1047 size_t prologue_size
, total_size
;
1050 /* Put the prologue at the beginning of code_gen_buffer. */
1051 buf0
= s
->code_gen_buffer
;
1052 total_size
= s
->code_gen_buffer_size
;
1055 s
->data_gen_ptr
= NULL
;
1056 s
->code_gen_prologue
= buf0
;
1058 /* Compute a high-water mark, at which we voluntarily flush the buffer
1059 and start over. The size here is arbitrary, significantly larger
1060 than we expect the code generation for any one opcode to require. */
1061 s
->code_gen_highwater
= s
->code_gen_buffer
+ (total_size
- TCG_HIGHWATER
);
1063 #ifdef TCG_TARGET_NEED_POOL_LABELS
1064 s
->pool_labels
= NULL
;
1067 /* Generate the prologue. */
1068 tcg_target_qemu_prologue(s
);
1070 #ifdef TCG_TARGET_NEED_POOL_LABELS
1071 /* Allow the prologue to put e.g. guest_base into a pool entry. */
1073 int result
= tcg_out_pool_finalize(s
);
1074 tcg_debug_assert(result
== 0);
1079 flush_icache_range((uintptr_t)buf0
, (uintptr_t)buf1
);
1081 /* Deduct the prologue from the buffer. */
1082 prologue_size
= tcg_current_code_size(s
);
1083 s
->code_gen_ptr
= buf1
;
1084 s
->code_gen_buffer
= buf1
;
1086 total_size
-= prologue_size
;
1087 s
->code_gen_buffer_size
= total_size
;
1089 tcg_register_jit(s
->code_gen_buffer
, total_size
);
1092 if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM
)) {
1093 FILE *logfile
= qemu_log_lock();
1094 qemu_log("PROLOGUE: [size=%zu]\n", prologue_size
);
1095 if (s
->data_gen_ptr
) {
1096 size_t code_size
= s
->data_gen_ptr
- buf0
;
1097 size_t data_size
= prologue_size
- code_size
;
1100 log_disas(buf0
, code_size
);
1102 for (i
= 0; i
< data_size
; i
+= sizeof(tcg_target_ulong
)) {
1103 if (sizeof(tcg_target_ulong
) == 8) {
1104 qemu_log("0x%08" PRIxPTR
": .quad 0x%016" PRIx64
"\n",
1105 (uintptr_t)s
->data_gen_ptr
+ i
,
1106 *(uint64_t *)(s
->data_gen_ptr
+ i
));
1108 qemu_log("0x%08" PRIxPTR
": .long 0x%08x\n",
1109 (uintptr_t)s
->data_gen_ptr
+ i
,
1110 *(uint32_t *)(s
->data_gen_ptr
+ i
));
1114 log_disas(buf0
, prologue_size
);
1118 qemu_log_unlock(logfile
);
1122 /* Assert that goto_ptr is implemented completely. */
1123 if (TCG_TARGET_HAS_goto_ptr
) {
1124 tcg_debug_assert(s
->code_gen_epilogue
!= NULL
);
1128 void tcg_func_start(TCGContext
*s
)
1131 s
->nb_temps
= s
->nb_globals
;
1133 /* No temps have been previously allocated for size or locality. */
1134 memset(s
->free_temps
, 0, sizeof(s
->free_temps
));
1138 s
->current_frame_offset
= s
->frame_start
;
1140 #ifdef CONFIG_DEBUG_TCG
1141 s
->goto_tb_issue_mask
= 0;
1144 QTAILQ_INIT(&s
->ops
);
1145 QTAILQ_INIT(&s
->free_ops
);
1146 QSIMPLEQ_INIT(&s
->labels
);
1149 static inline TCGTemp
*tcg_temp_alloc(TCGContext
*s
)
1151 int n
= s
->nb_temps
++;
1152 tcg_debug_assert(n
< TCG_MAX_TEMPS
);
1153 return memset(&s
->temps
[n
], 0, sizeof(TCGTemp
));
1156 static inline TCGTemp
*tcg_global_alloc(TCGContext
*s
)
1160 tcg_debug_assert(s
->nb_globals
== s
->nb_temps
);
1162 ts
= tcg_temp_alloc(s
);
1163 ts
->temp_global
= 1;
1168 static TCGTemp
*tcg_global_reg_new_internal(TCGContext
*s
, TCGType type
,
1169 TCGReg reg
, const char *name
)
1173 if (TCG_TARGET_REG_BITS
== 32 && type
!= TCG_TYPE_I32
) {
1177 ts
= tcg_global_alloc(s
);
1178 ts
->base_type
= type
;
1183 tcg_regset_set_reg(s
->reserved_regs
, reg
);
1188 void tcg_set_frame(TCGContext
*s
, TCGReg reg
, intptr_t start
, intptr_t size
)
1190 s
->frame_start
= start
;
1191 s
->frame_end
= start
+ size
;
1193 = tcg_global_reg_new_internal(s
, TCG_TYPE_PTR
, reg
, "_frame");
1196 TCGTemp
*tcg_global_mem_new_internal(TCGType type
, TCGv_ptr base
,
1197 intptr_t offset
, const char *name
)
1199 TCGContext
*s
= tcg_ctx
;
1200 TCGTemp
*base_ts
= tcgv_ptr_temp(base
);
1201 TCGTemp
*ts
= tcg_global_alloc(s
);
1202 int indirect_reg
= 0, bigendian
= 0;
1203 #ifdef HOST_WORDS_BIGENDIAN
1207 if (!base_ts
->fixed_reg
) {
1208 /* We do not support double-indirect registers. */
1209 tcg_debug_assert(!base_ts
->indirect_reg
);
1210 base_ts
->indirect_base
= 1;
1211 s
->nb_indirects
+= (TCG_TARGET_REG_BITS
== 32 && type
== TCG_TYPE_I64
1216 if (TCG_TARGET_REG_BITS
== 32 && type
== TCG_TYPE_I64
) {
1217 TCGTemp
*ts2
= tcg_global_alloc(s
);
1220 ts
->base_type
= TCG_TYPE_I64
;
1221 ts
->type
= TCG_TYPE_I32
;
1222 ts
->indirect_reg
= indirect_reg
;
1223 ts
->mem_allocated
= 1;
1224 ts
->mem_base
= base_ts
;
1225 ts
->mem_offset
= offset
+ bigendian
* 4;
1226 pstrcpy(buf
, sizeof(buf
), name
);
1227 pstrcat(buf
, sizeof(buf
), "_0");
1228 ts
->name
= strdup(buf
);
1230 tcg_debug_assert(ts2
== ts
+ 1);
1231 ts2
->base_type
= TCG_TYPE_I64
;
1232 ts2
->type
= TCG_TYPE_I32
;
1233 ts2
->indirect_reg
= indirect_reg
;
1234 ts2
->mem_allocated
= 1;
1235 ts2
->mem_base
= base_ts
;
1236 ts2
->mem_offset
= offset
+ (1 - bigendian
) * 4;
1237 pstrcpy(buf
, sizeof(buf
), name
);
1238 pstrcat(buf
, sizeof(buf
), "_1");
1239 ts2
->name
= strdup(buf
);
1241 ts
->base_type
= type
;
1243 ts
->indirect_reg
= indirect_reg
;
1244 ts
->mem_allocated
= 1;
1245 ts
->mem_base
= base_ts
;
1246 ts
->mem_offset
= offset
;
1252 TCGTemp
*tcg_temp_new_internal(TCGType type
, bool temp_local
)
1254 TCGContext
*s
= tcg_ctx
;
1258 k
= type
+ (temp_local
? TCG_TYPE_COUNT
: 0);
1259 idx
= find_first_bit(s
->free_temps
[k
].l
, TCG_MAX_TEMPS
);
1260 if (idx
< TCG_MAX_TEMPS
) {
1261 /* There is already an available temp with the right type. */
1262 clear_bit(idx
, s
->free_temps
[k
].l
);
1264 ts
= &s
->temps
[idx
];
1265 ts
->temp_allocated
= 1;
1266 tcg_debug_assert(ts
->base_type
== type
);
1267 tcg_debug_assert(ts
->temp_local
== temp_local
);
1269 ts
= tcg_temp_alloc(s
);
1270 if (TCG_TARGET_REG_BITS
== 32 && type
== TCG_TYPE_I64
) {
1271 TCGTemp
*ts2
= tcg_temp_alloc(s
);
1273 ts
->base_type
= type
;
1274 ts
->type
= TCG_TYPE_I32
;
1275 ts
->temp_allocated
= 1;
1276 ts
->temp_local
= temp_local
;
1278 tcg_debug_assert(ts2
== ts
+ 1);
1279 ts2
->base_type
= TCG_TYPE_I64
;
1280 ts2
->type
= TCG_TYPE_I32
;
1281 ts2
->temp_allocated
= 1;
1282 ts2
->temp_local
= temp_local
;
1284 ts
->base_type
= type
;
1286 ts
->temp_allocated
= 1;
1287 ts
->temp_local
= temp_local
;
1291 #if defined(CONFIG_DEBUG_TCG)
1297 TCGv_vec
tcg_temp_new_vec(TCGType type
)
1301 #ifdef CONFIG_DEBUG_TCG
1304 assert(TCG_TARGET_HAS_v64
);
1307 assert(TCG_TARGET_HAS_v128
);
1310 assert(TCG_TARGET_HAS_v256
);
1313 g_assert_not_reached();
1317 t
= tcg_temp_new_internal(type
, 0);
1318 return temp_tcgv_vec(t
);
1321 /* Create a new temp of the same type as an existing temp. */
1322 TCGv_vec
tcg_temp_new_vec_matching(TCGv_vec match
)
1324 TCGTemp
*t
= tcgv_vec_temp(match
);
1326 tcg_debug_assert(t
->temp_allocated
!= 0);
1328 t
= tcg_temp_new_internal(t
->base_type
, 0);
1329 return temp_tcgv_vec(t
);
1332 void tcg_temp_free_internal(TCGTemp
*ts
)
1334 TCGContext
*s
= tcg_ctx
;
1337 #if defined(CONFIG_DEBUG_TCG)
1339 if (s
->temps_in_use
< 0) {
1340 fprintf(stderr
, "More temporaries freed than allocated!\n");
1344 tcg_debug_assert(ts
->temp_global
== 0);
1345 tcg_debug_assert(ts
->temp_allocated
!= 0);
1346 ts
->temp_allocated
= 0;
1349 k
= ts
->base_type
+ (ts
->temp_local
? TCG_TYPE_COUNT
: 0);
1350 set_bit(idx
, s
->free_temps
[k
].l
);
1353 TCGv_i32
tcg_const_i32(int32_t val
)
1356 t0
= tcg_temp_new_i32();
1357 tcg_gen_movi_i32(t0
, val
);
1361 TCGv_i64
tcg_const_i64(int64_t val
)
1364 t0
= tcg_temp_new_i64();
1365 tcg_gen_movi_i64(t0
, val
);
1369 TCGv_i32
tcg_const_local_i32(int32_t val
)
1372 t0
= tcg_temp_local_new_i32();
1373 tcg_gen_movi_i32(t0
, val
);
1377 TCGv_i64
tcg_const_local_i64(int64_t val
)
1380 t0
= tcg_temp_local_new_i64();
1381 tcg_gen_movi_i64(t0
, val
);
1385 #if defined(CONFIG_DEBUG_TCG)
1386 void tcg_clear_temp_count(void)
1388 TCGContext
*s
= tcg_ctx
;
1389 s
->temps_in_use
= 0;
1392 int tcg_check_temp_count(void)
1394 TCGContext
*s
= tcg_ctx
;
1395 if (s
->temps_in_use
) {
1396 /* Clear the count so that we don't give another
1397 * warning immediately next time around.
1399 s
->temps_in_use
= 0;
1406 /* Return true if OP may appear in the opcode stream.
1407 Test the runtime variable that controls each opcode. */
1408 bool tcg_op_supported(TCGOpcode op
)
1411 = TCG_TARGET_HAS_v64
| TCG_TARGET_HAS_v128
| TCG_TARGET_HAS_v256
;
1414 case INDEX_op_discard
:
1415 case INDEX_op_set_label
:
1419 case INDEX_op_insn_start
:
1420 case INDEX_op_exit_tb
:
1421 case INDEX_op_goto_tb
:
1422 case INDEX_op_qemu_ld_i32
:
1423 case INDEX_op_qemu_st_i32
:
1424 case INDEX_op_qemu_ld_i64
:
1425 case INDEX_op_qemu_st_i64
:
1428 case INDEX_op_goto_ptr
:
1429 return TCG_TARGET_HAS_goto_ptr
;
1431 case INDEX_op_mov_i32
:
1432 case INDEX_op_movi_i32
:
1433 case INDEX_op_setcond_i32
:
1434 case INDEX_op_brcond_i32
:
1435 case INDEX_op_ld8u_i32
:
1436 case INDEX_op_ld8s_i32
:
1437 case INDEX_op_ld16u_i32
:
1438 case INDEX_op_ld16s_i32
:
1439 case INDEX_op_ld_i32
:
1440 case INDEX_op_st8_i32
:
1441 case INDEX_op_st16_i32
:
1442 case INDEX_op_st_i32
:
1443 case INDEX_op_add_i32
:
1444 case INDEX_op_sub_i32
:
1445 case INDEX_op_mul_i32
:
1446 case INDEX_op_and_i32
:
1447 case INDEX_op_or_i32
:
1448 case INDEX_op_xor_i32
:
1449 case INDEX_op_shl_i32
:
1450 case INDEX_op_shr_i32
:
1451 case INDEX_op_sar_i32
:
1454 case INDEX_op_movcond_i32
:
1455 return TCG_TARGET_HAS_movcond_i32
;
1456 case INDEX_op_div_i32
:
1457 case INDEX_op_divu_i32
:
1458 return TCG_TARGET_HAS_div_i32
;
1459 case INDEX_op_rem_i32
:
1460 case INDEX_op_remu_i32
:
1461 return TCG_TARGET_HAS_rem_i32
;
1462 case INDEX_op_div2_i32
:
1463 case INDEX_op_divu2_i32
:
1464 return TCG_TARGET_HAS_div2_i32
;
1465 case INDEX_op_rotl_i32
:
1466 case INDEX_op_rotr_i32
:
1467 return TCG_TARGET_HAS_rot_i32
;
1468 case INDEX_op_deposit_i32
:
1469 return TCG_TARGET_HAS_deposit_i32
;
1470 case INDEX_op_extract_i32
:
1471 return TCG_TARGET_HAS_extract_i32
;
1472 case INDEX_op_sextract_i32
:
1473 return TCG_TARGET_HAS_sextract_i32
;
1474 case INDEX_op_extract2_i32
:
1475 return TCG_TARGET_HAS_extract2_i32
;
1476 case INDEX_op_add2_i32
:
1477 return TCG_TARGET_HAS_add2_i32
;
1478 case INDEX_op_sub2_i32
:
1479 return TCG_TARGET_HAS_sub2_i32
;
1480 case INDEX_op_mulu2_i32
:
1481 return TCG_TARGET_HAS_mulu2_i32
;
1482 case INDEX_op_muls2_i32
:
1483 return TCG_TARGET_HAS_muls2_i32
;
1484 case INDEX_op_muluh_i32
:
1485 return TCG_TARGET_HAS_muluh_i32
;
1486 case INDEX_op_mulsh_i32
:
1487 return TCG_TARGET_HAS_mulsh_i32
;
1488 case INDEX_op_ext8s_i32
:
1489 return TCG_TARGET_HAS_ext8s_i32
;
1490 case INDEX_op_ext16s_i32
:
1491 return TCG_TARGET_HAS_ext16s_i32
;
1492 case INDEX_op_ext8u_i32
:
1493 return TCG_TARGET_HAS_ext8u_i32
;
1494 case INDEX_op_ext16u_i32
:
1495 return TCG_TARGET_HAS_ext16u_i32
;
1496 case INDEX_op_bswap16_i32
:
1497 return TCG_TARGET_HAS_bswap16_i32
;
1498 case INDEX_op_bswap32_i32
:
1499 return TCG_TARGET_HAS_bswap32_i32
;
1500 case INDEX_op_not_i32
:
1501 return TCG_TARGET_HAS_not_i32
;
1502 case INDEX_op_neg_i32
:
1503 return TCG_TARGET_HAS_neg_i32
;
1504 case INDEX_op_andc_i32
:
1505 return TCG_TARGET_HAS_andc_i32
;
1506 case INDEX_op_orc_i32
:
1507 return TCG_TARGET_HAS_orc_i32
;
1508 case INDEX_op_eqv_i32
:
1509 return TCG_TARGET_HAS_eqv_i32
;
1510 case INDEX_op_nand_i32
:
1511 return TCG_TARGET_HAS_nand_i32
;
1512 case INDEX_op_nor_i32
:
1513 return TCG_TARGET_HAS_nor_i32
;
1514 case INDEX_op_clz_i32
:
1515 return TCG_TARGET_HAS_clz_i32
;
1516 case INDEX_op_ctz_i32
:
1517 return TCG_TARGET_HAS_ctz_i32
;
1518 case INDEX_op_ctpop_i32
:
1519 return TCG_TARGET_HAS_ctpop_i32
;
1521 case INDEX_op_brcond2_i32
:
1522 case INDEX_op_setcond2_i32
:
1523 return TCG_TARGET_REG_BITS
== 32;
1525 case INDEX_op_mov_i64
:
1526 case INDEX_op_movi_i64
:
1527 case INDEX_op_setcond_i64
:
1528 case INDEX_op_brcond_i64
:
1529 case INDEX_op_ld8u_i64
:
1530 case INDEX_op_ld8s_i64
:
1531 case INDEX_op_ld16u_i64
:
1532 case INDEX_op_ld16s_i64
:
1533 case INDEX_op_ld32u_i64
:
1534 case INDEX_op_ld32s_i64
:
1535 case INDEX_op_ld_i64
:
1536 case INDEX_op_st8_i64
:
1537 case INDEX_op_st16_i64
:
1538 case INDEX_op_st32_i64
:
1539 case INDEX_op_st_i64
:
1540 case INDEX_op_add_i64
:
1541 case INDEX_op_sub_i64
:
1542 case INDEX_op_mul_i64
:
1543 case INDEX_op_and_i64
:
1544 case INDEX_op_or_i64
:
1545 case INDEX_op_xor_i64
:
1546 case INDEX_op_shl_i64
:
1547 case INDEX_op_shr_i64
:
1548 case INDEX_op_sar_i64
:
1549 case INDEX_op_ext_i32_i64
:
1550 case INDEX_op_extu_i32_i64
:
1551 return TCG_TARGET_REG_BITS
== 64;
1553 case INDEX_op_movcond_i64
:
1554 return TCG_TARGET_HAS_movcond_i64
;
1555 case INDEX_op_div_i64
:
1556 case INDEX_op_divu_i64
:
1557 return TCG_TARGET_HAS_div_i64
;
1558 case INDEX_op_rem_i64
:
1559 case INDEX_op_remu_i64
:
1560 return TCG_TARGET_HAS_rem_i64
;
1561 case INDEX_op_div2_i64
:
1562 case INDEX_op_divu2_i64
:
1563 return TCG_TARGET_HAS_div2_i64
;
1564 case INDEX_op_rotl_i64
:
1565 case INDEX_op_rotr_i64
:
1566 return TCG_TARGET_HAS_rot_i64
;
1567 case INDEX_op_deposit_i64
:
1568 return TCG_TARGET_HAS_deposit_i64
;
1569 case INDEX_op_extract_i64
:
1570 return TCG_TARGET_HAS_extract_i64
;
1571 case INDEX_op_sextract_i64
:
1572 return TCG_TARGET_HAS_sextract_i64
;
1573 case INDEX_op_extract2_i64
:
1574 return TCG_TARGET_HAS_extract2_i64
;
1575 case INDEX_op_extrl_i64_i32
:
1576 return TCG_TARGET_HAS_extrl_i64_i32
;
1577 case INDEX_op_extrh_i64_i32
:
1578 return TCG_TARGET_HAS_extrh_i64_i32
;
1579 case INDEX_op_ext8s_i64
:
1580 return TCG_TARGET_HAS_ext8s_i64
;
1581 case INDEX_op_ext16s_i64
:
1582 return TCG_TARGET_HAS_ext16s_i64
;
1583 case INDEX_op_ext32s_i64
:
1584 return TCG_TARGET_HAS_ext32s_i64
;
1585 case INDEX_op_ext8u_i64
:
1586 return TCG_TARGET_HAS_ext8u_i64
;
1587 case INDEX_op_ext16u_i64
:
1588 return TCG_TARGET_HAS_ext16u_i64
;
1589 case INDEX_op_ext32u_i64
:
1590 return TCG_TARGET_HAS_ext32u_i64
;
1591 case INDEX_op_bswap16_i64
:
1592 return TCG_TARGET_HAS_bswap16_i64
;
1593 case INDEX_op_bswap32_i64
:
1594 return TCG_TARGET_HAS_bswap32_i64
;
1595 case INDEX_op_bswap64_i64
:
1596 return TCG_TARGET_HAS_bswap64_i64
;
1597 case INDEX_op_not_i64
:
1598 return TCG_TARGET_HAS_not_i64
;
1599 case INDEX_op_neg_i64
:
1600 return TCG_TARGET_HAS_neg_i64
;
1601 case INDEX_op_andc_i64
:
1602 return TCG_TARGET_HAS_andc_i64
;
1603 case INDEX_op_orc_i64
:
1604 return TCG_TARGET_HAS_orc_i64
;
1605 case INDEX_op_eqv_i64
:
1606 return TCG_TARGET_HAS_eqv_i64
;
1607 case INDEX_op_nand_i64
:
1608 return TCG_TARGET_HAS_nand_i64
;
1609 case INDEX_op_nor_i64
:
1610 return TCG_TARGET_HAS_nor_i64
;
1611 case INDEX_op_clz_i64
:
1612 return TCG_TARGET_HAS_clz_i64
;
1613 case INDEX_op_ctz_i64
:
1614 return TCG_TARGET_HAS_ctz_i64
;
1615 case INDEX_op_ctpop_i64
:
1616 return TCG_TARGET_HAS_ctpop_i64
;
1617 case INDEX_op_add2_i64
:
1618 return TCG_TARGET_HAS_add2_i64
;
1619 case INDEX_op_sub2_i64
:
1620 return TCG_TARGET_HAS_sub2_i64
;
1621 case INDEX_op_mulu2_i64
:
1622 return TCG_TARGET_HAS_mulu2_i64
;
1623 case INDEX_op_muls2_i64
:
1624 return TCG_TARGET_HAS_muls2_i64
;
1625 case INDEX_op_muluh_i64
:
1626 return TCG_TARGET_HAS_muluh_i64
;
1627 case INDEX_op_mulsh_i64
:
1628 return TCG_TARGET_HAS_mulsh_i64
;
1630 case INDEX_op_mov_vec
:
1631 case INDEX_op_dup_vec
:
1632 case INDEX_op_dupi_vec
:
1633 case INDEX_op_dupm_vec
:
1634 case INDEX_op_ld_vec
:
1635 case INDEX_op_st_vec
:
1636 case INDEX_op_add_vec
:
1637 case INDEX_op_sub_vec
:
1638 case INDEX_op_and_vec
:
1639 case INDEX_op_or_vec
:
1640 case INDEX_op_xor_vec
:
1641 case INDEX_op_cmp_vec
:
1643 case INDEX_op_dup2_vec
:
1644 return have_vec
&& TCG_TARGET_REG_BITS
== 32;
1645 case INDEX_op_not_vec
:
1646 return have_vec
&& TCG_TARGET_HAS_not_vec
;
1647 case INDEX_op_neg_vec
:
1648 return have_vec
&& TCG_TARGET_HAS_neg_vec
;
1649 case INDEX_op_abs_vec
:
1650 return have_vec
&& TCG_TARGET_HAS_abs_vec
;
1651 case INDEX_op_andc_vec
:
1652 return have_vec
&& TCG_TARGET_HAS_andc_vec
;
1653 case INDEX_op_orc_vec
:
1654 return have_vec
&& TCG_TARGET_HAS_orc_vec
;
1655 case INDEX_op_mul_vec
:
1656 return have_vec
&& TCG_TARGET_HAS_mul_vec
;
1657 case INDEX_op_shli_vec
:
1658 case INDEX_op_shri_vec
:
1659 case INDEX_op_sari_vec
:
1660 return have_vec
&& TCG_TARGET_HAS_shi_vec
;
1661 case INDEX_op_shls_vec
:
1662 case INDEX_op_shrs_vec
:
1663 case INDEX_op_sars_vec
:
1664 return have_vec
&& TCG_TARGET_HAS_shs_vec
;
1665 case INDEX_op_shlv_vec
:
1666 case INDEX_op_shrv_vec
:
1667 case INDEX_op_sarv_vec
:
1668 return have_vec
&& TCG_TARGET_HAS_shv_vec
;
1669 case INDEX_op_rotli_vec
:
1670 return have_vec
&& TCG_TARGET_HAS_roti_vec
;
1671 case INDEX_op_rotls_vec
:
1672 return have_vec
&& TCG_TARGET_HAS_rots_vec
;
1673 case INDEX_op_rotlv_vec
:
1674 case INDEX_op_rotrv_vec
:
1675 return have_vec
&& TCG_TARGET_HAS_rotv_vec
;
1676 case INDEX_op_ssadd_vec
:
1677 case INDEX_op_usadd_vec
:
1678 case INDEX_op_sssub_vec
:
1679 case INDEX_op_ussub_vec
:
1680 return have_vec
&& TCG_TARGET_HAS_sat_vec
;
1681 case INDEX_op_smin_vec
:
1682 case INDEX_op_umin_vec
:
1683 case INDEX_op_smax_vec
:
1684 case INDEX_op_umax_vec
:
1685 return have_vec
&& TCG_TARGET_HAS_minmax_vec
;
1686 case INDEX_op_bitsel_vec
:
1687 return have_vec
&& TCG_TARGET_HAS_bitsel_vec
;
1688 case INDEX_op_cmpsel_vec
:
1689 return have_vec
&& TCG_TARGET_HAS_cmpsel_vec
;
1692 tcg_debug_assert(op
> INDEX_op_last_generic
&& op
< NB_OPS
);
1697 /* Note: we convert the 64 bit args to 32 bit and do some alignment
1698 and endian swap. Maybe it would be better to do the alignment
1699 and endian swap in tcg_reg_alloc_call(). */
1700 void tcg_gen_callN(void *func
, TCGTemp
*ret
, int nargs
, TCGTemp
**args
)
1702 int i
, real_args
, nb_rets
, pi
;
1703 unsigned sizemask
, flags
;
1704 TCGHelperInfo
*info
;
1707 info
= g_hash_table_lookup(helper_table
, (gpointer
)func
);
1708 flags
= info
->flags
;
1709 sizemask
= info
->sizemask
;
1711 #ifdef CONFIG_PLUGIN
1712 /* detect non-plugin helpers */
1713 if (tcg_ctx
->plugin_insn
&& unlikely(strncmp(info
->name
, "plugin_", 7))) {
1714 tcg_ctx
->plugin_insn
->calls_helpers
= true;
1718 #if defined(__sparc__) && !defined(__arch64__) \
1719 && !defined(CONFIG_TCG_INTERPRETER)
1720 /* We have 64-bit values in one register, but need to pass as two
1721 separate parameters. Split them. */
1722 int orig_sizemask
= sizemask
;
1723 int orig_nargs
= nargs
;
1724 TCGv_i64 retl
, reth
;
1725 TCGTemp
*split_args
[MAX_OPC_PARAM
];
1729 if (sizemask
!= 0) {
1730 for (i
= real_args
= 0; i
< nargs
; ++i
) {
1731 int is_64bit
= sizemask
& (1 << (i
+1)*2);
1733 TCGv_i64 orig
= temp_tcgv_i64(args
[i
]);
1734 TCGv_i32 h
= tcg_temp_new_i32();
1735 TCGv_i32 l
= tcg_temp_new_i32();
1736 tcg_gen_extr_i64_i32(l
, h
, orig
);
1737 split_args
[real_args
++] = tcgv_i32_temp(h
);
1738 split_args
[real_args
++] = tcgv_i32_temp(l
);
1740 split_args
[real_args
++] = args
[i
];
1747 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
1748 for (i
= 0; i
< nargs
; ++i
) {
1749 int is_64bit
= sizemask
& (1 << (i
+1)*2);
1750 int is_signed
= sizemask
& (2 << (i
+1)*2);
1752 TCGv_i64 temp
= tcg_temp_new_i64();
1753 TCGv_i64 orig
= temp_tcgv_i64(args
[i
]);
1755 tcg_gen_ext32s_i64(temp
, orig
);
1757 tcg_gen_ext32u_i64(temp
, orig
);
1759 args
[i
] = tcgv_i64_temp(temp
);
1762 #endif /* TCG_TARGET_EXTEND_ARGS */
1764 op
= tcg_emit_op(INDEX_op_call
);
1768 #if defined(__sparc__) && !defined(__arch64__) \
1769 && !defined(CONFIG_TCG_INTERPRETER)
1770 if (orig_sizemask
& 1) {
1771 /* The 32-bit ABI is going to return the 64-bit value in
1772 the %o0/%o1 register pair. Prepare for this by using
1773 two return temporaries, and reassemble below. */
1774 retl
= tcg_temp_new_i64();
1775 reth
= tcg_temp_new_i64();
1776 op
->args
[pi
++] = tcgv_i64_arg(reth
);
1777 op
->args
[pi
++] = tcgv_i64_arg(retl
);
1780 op
->args
[pi
++] = temp_arg(ret
);
1784 if (TCG_TARGET_REG_BITS
< 64 && (sizemask
& 1)) {
1785 #ifdef HOST_WORDS_BIGENDIAN
1786 op
->args
[pi
++] = temp_arg(ret
+ 1);
1787 op
->args
[pi
++] = temp_arg(ret
);
1789 op
->args
[pi
++] = temp_arg(ret
);
1790 op
->args
[pi
++] = temp_arg(ret
+ 1);
1794 op
->args
[pi
++] = temp_arg(ret
);
1801 TCGOP_CALLO(op
) = nb_rets
;
1804 for (i
= 0; i
< nargs
; i
++) {
1805 int is_64bit
= sizemask
& (1 << (i
+1)*2);
1806 if (TCG_TARGET_REG_BITS
< 64 && is_64bit
) {
1807 #ifdef TCG_TARGET_CALL_ALIGN_ARGS
1808 /* some targets want aligned 64 bit args */
1809 if (real_args
& 1) {
1810 op
->args
[pi
++] = TCG_CALL_DUMMY_ARG
;
1814 /* If stack grows up, then we will be placing successive
1815 arguments at lower addresses, which means we need to
1816 reverse the order compared to how we would normally
1817 treat either big or little-endian. For those arguments
1818 that will wind up in registers, this still works for
1819 HPPA (the only current STACK_GROWSUP target) since the
1820 argument registers are *also* allocated in decreasing
1821 order. If another such target is added, this logic may
1822 have to get more complicated to differentiate between
1823 stack arguments and register arguments. */
1824 #if defined(HOST_WORDS_BIGENDIAN) != defined(TCG_TARGET_STACK_GROWSUP)
1825 op
->args
[pi
++] = temp_arg(args
[i
] + 1);
1826 op
->args
[pi
++] = temp_arg(args
[i
]);
1828 op
->args
[pi
++] = temp_arg(args
[i
]);
1829 op
->args
[pi
++] = temp_arg(args
[i
] + 1);
1835 op
->args
[pi
++] = temp_arg(args
[i
]);
1838 op
->args
[pi
++] = (uintptr_t)func
;
1839 op
->args
[pi
++] = flags
;
1840 TCGOP_CALLI(op
) = real_args
;
1842 /* Make sure the fields didn't overflow. */
1843 tcg_debug_assert(TCGOP_CALLI(op
) == real_args
);
1844 tcg_debug_assert(pi
<= ARRAY_SIZE(op
->args
));
1846 #if defined(__sparc__) && !defined(__arch64__) \
1847 && !defined(CONFIG_TCG_INTERPRETER)
1848 /* Free all of the parts we allocated above. */
1849 for (i
= real_args
= 0; i
< orig_nargs
; ++i
) {
1850 int is_64bit
= orig_sizemask
& (1 << (i
+1)*2);
1852 tcg_temp_free_internal(args
[real_args
++]);
1853 tcg_temp_free_internal(args
[real_args
++]);
1858 if (orig_sizemask
& 1) {
1859 /* The 32-bit ABI returned two 32-bit pieces. Re-assemble them.
1860 Note that describing these as TCGv_i64 eliminates an unnecessary
1861 zero-extension that tcg_gen_concat_i32_i64 would create. */
1862 tcg_gen_concat32_i64(temp_tcgv_i64(ret
), retl
, reth
);
1863 tcg_temp_free_i64(retl
);
1864 tcg_temp_free_i64(reth
);
1866 #elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
1867 for (i
= 0; i
< nargs
; ++i
) {
1868 int is_64bit
= sizemask
& (1 << (i
+1)*2);
1870 tcg_temp_free_internal(args
[i
]);
1873 #endif /* TCG_TARGET_EXTEND_ARGS */
1876 static void tcg_reg_alloc_start(TCGContext
*s
)
1881 for (i
= 0, n
= s
->nb_globals
; i
< n
; i
++) {
1883 ts
->val_type
= (ts
->fixed_reg
? TEMP_VAL_REG
: TEMP_VAL_MEM
);
1885 for (n
= s
->nb_temps
; i
< n
; i
++) {
1887 ts
->val_type
= (ts
->temp_local
? TEMP_VAL_MEM
: TEMP_VAL_DEAD
);
1888 ts
->mem_allocated
= 0;
1892 memset(s
->reg_to_temp
, 0, sizeof(s
->reg_to_temp
));
1895 static char *tcg_get_arg_str_ptr(TCGContext
*s
, char *buf
, int buf_size
,
1898 int idx
= temp_idx(ts
);
1900 if (ts
->temp_global
) {
1901 pstrcpy(buf
, buf_size
, ts
->name
);
1902 } else if (ts
->temp_local
) {
1903 snprintf(buf
, buf_size
, "loc%d", idx
- s
->nb_globals
);
1905 snprintf(buf
, buf_size
, "tmp%d", idx
- s
->nb_globals
);
1910 static char *tcg_get_arg_str(TCGContext
*s
, char *buf
,
1911 int buf_size
, TCGArg arg
)
1913 return tcg_get_arg_str_ptr(s
, buf
, buf_size
, arg_temp(arg
));
1916 /* Find helper name. */
1917 static inline const char *tcg_find_helper(TCGContext
*s
, uintptr_t val
)
1919 const char *ret
= NULL
;
1921 TCGHelperInfo
*info
= g_hash_table_lookup(helper_table
, (gpointer
)val
);
1929 static const char * const cond_name
[] =
1931 [TCG_COND_NEVER
] = "never",
1932 [TCG_COND_ALWAYS
] = "always",
1933 [TCG_COND_EQ
] = "eq",
1934 [TCG_COND_NE
] = "ne",
1935 [TCG_COND_LT
] = "lt",
1936 [TCG_COND_GE
] = "ge",
1937 [TCG_COND_LE
] = "le",
1938 [TCG_COND_GT
] = "gt",
1939 [TCG_COND_LTU
] = "ltu",
1940 [TCG_COND_GEU
] = "geu",
1941 [TCG_COND_LEU
] = "leu",
1942 [TCG_COND_GTU
] = "gtu"
1945 static const char * const ldst_name
[] =
1961 static const char * const alignment_name
[(MO_AMASK
>> MO_ASHIFT
) + 1] = {
1962 #ifdef TARGET_ALIGNED_ONLY
1963 [MO_UNALN
>> MO_ASHIFT
] = "un+",
1964 [MO_ALIGN
>> MO_ASHIFT
] = "",
1966 [MO_UNALN
>> MO_ASHIFT
] = "",
1967 [MO_ALIGN
>> MO_ASHIFT
] = "al+",
1969 [MO_ALIGN_2
>> MO_ASHIFT
] = "al2+",
1970 [MO_ALIGN_4
>> MO_ASHIFT
] = "al4+",
1971 [MO_ALIGN_8
>> MO_ASHIFT
] = "al8+",
1972 [MO_ALIGN_16
>> MO_ASHIFT
] = "al16+",
1973 [MO_ALIGN_32
>> MO_ASHIFT
] = "al32+",
1974 [MO_ALIGN_64
>> MO_ASHIFT
] = "al64+",
1977 static inline bool tcg_regset_single(TCGRegSet d
)
1979 return (d
& (d
- 1)) == 0;
1982 static inline TCGReg
tcg_regset_first(TCGRegSet d
)
1984 if (TCG_TARGET_NB_REGS
<= 32) {
1991 static void tcg_dump_ops(TCGContext
*s
, bool have_prefs
)
1996 QTAILQ_FOREACH(op
, &s
->ops
, link
) {
1997 int i
, k
, nb_oargs
, nb_iargs
, nb_cargs
;
1998 const TCGOpDef
*def
;
2003 def
= &tcg_op_defs
[c
];
2005 if (c
== INDEX_op_insn_start
) {
2007 col
+= qemu_log("\n ----");
2009 for (i
= 0; i
< TARGET_INSN_START_WORDS
; ++i
) {
2011 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
2012 a
= deposit64(op
->args
[i
* 2], 32, 32, op
->args
[i
* 2 + 1]);
2016 col
+= qemu_log(" " TARGET_FMT_lx
, a
);
2018 } else if (c
== INDEX_op_call
) {
2019 /* variable number of arguments */
2020 nb_oargs
= TCGOP_CALLO(op
);
2021 nb_iargs
= TCGOP_CALLI(op
);
2022 nb_cargs
= def
->nb_cargs
;
2024 /* function name, flags, out args */
2025 col
+= qemu_log(" %s %s,$0x%" TCG_PRIlx
",$%d", def
->name
,
2026 tcg_find_helper(s
, op
->args
[nb_oargs
+ nb_iargs
]),
2027 op
->args
[nb_oargs
+ nb_iargs
+ 1], nb_oargs
);
2028 for (i
= 0; i
< nb_oargs
; i
++) {
2029 col
+= qemu_log(",%s", tcg_get_arg_str(s
, buf
, sizeof(buf
),
2032 for (i
= 0; i
< nb_iargs
; i
++) {
2033 TCGArg arg
= op
->args
[nb_oargs
+ i
];
2034 const char *t
= "<dummy>";
2035 if (arg
!= TCG_CALL_DUMMY_ARG
) {
2036 t
= tcg_get_arg_str(s
, buf
, sizeof(buf
), arg
);
2038 col
+= qemu_log(",%s", t
);
2041 col
+= qemu_log(" %s ", def
->name
);
2043 nb_oargs
= def
->nb_oargs
;
2044 nb_iargs
= def
->nb_iargs
;
2045 nb_cargs
= def
->nb_cargs
;
2047 if (def
->flags
& TCG_OPF_VECTOR
) {
2048 col
+= qemu_log("v%d,e%d,", 64 << TCGOP_VECL(op
),
2049 8 << TCGOP_VECE(op
));
2053 for (i
= 0; i
< nb_oargs
; i
++) {
2055 col
+= qemu_log(",");
2057 col
+= qemu_log("%s", tcg_get_arg_str(s
, buf
, sizeof(buf
),
2060 for (i
= 0; i
< nb_iargs
; i
++) {
2062 col
+= qemu_log(",");
2064 col
+= qemu_log("%s", tcg_get_arg_str(s
, buf
, sizeof(buf
),
2068 case INDEX_op_brcond_i32
:
2069 case INDEX_op_setcond_i32
:
2070 case INDEX_op_movcond_i32
:
2071 case INDEX_op_brcond2_i32
:
2072 case INDEX_op_setcond2_i32
:
2073 case INDEX_op_brcond_i64
:
2074 case INDEX_op_setcond_i64
:
2075 case INDEX_op_movcond_i64
:
2076 case INDEX_op_cmp_vec
:
2077 case INDEX_op_cmpsel_vec
:
2078 if (op
->args
[k
] < ARRAY_SIZE(cond_name
)
2079 && cond_name
[op
->args
[k
]]) {
2080 col
+= qemu_log(",%s", cond_name
[op
->args
[k
++]]);
2082 col
+= qemu_log(",$0x%" TCG_PRIlx
, op
->args
[k
++]);
2086 case INDEX_op_qemu_ld_i32
:
2087 case INDEX_op_qemu_st_i32
:
2088 case INDEX_op_qemu_ld_i64
:
2089 case INDEX_op_qemu_st_i64
:
2091 TCGMemOpIdx oi
= op
->args
[k
++];
2092 MemOp op
= get_memop(oi
);
2093 unsigned ix
= get_mmuidx(oi
);
2095 if (op
& ~(MO_AMASK
| MO_BSWAP
| MO_SSIZE
)) {
2096 col
+= qemu_log(",$0x%x,%u", op
, ix
);
2098 const char *s_al
, *s_op
;
2099 s_al
= alignment_name
[(op
& MO_AMASK
) >> MO_ASHIFT
];
2100 s_op
= ldst_name
[op
& (MO_BSWAP
| MO_SSIZE
)];
2101 col
+= qemu_log(",%s%s,%u", s_al
, s_op
, ix
);
2111 case INDEX_op_set_label
:
2113 case INDEX_op_brcond_i32
:
2114 case INDEX_op_brcond_i64
:
2115 case INDEX_op_brcond2_i32
:
2116 col
+= qemu_log("%s$L%d", k
? "," : "",
2117 arg_label(op
->args
[k
])->id
);
2123 for (; i
< nb_cargs
; i
++, k
++) {
2124 col
+= qemu_log("%s$0x%" TCG_PRIlx
, k
? "," : "", op
->args
[k
]);
2128 if (have_prefs
|| op
->life
) {
2130 QemuLogFile
*logfile
;
2133 logfile
= qatomic_rcu_read(&qemu_logfile
);
2135 for (; col
< 40; ++col
) {
2136 putc(' ', logfile
->fd
);
2143 unsigned life
= op
->life
;
2145 if (life
& (SYNC_ARG
* 3)) {
2147 for (i
= 0; i
< 2; ++i
) {
2148 if (life
& (SYNC_ARG
<< i
)) {
2156 for (i
= 0; life
; ++i
, life
>>= 1) {
2165 for (i
= 0; i
< nb_oargs
; ++i
) {
2166 TCGRegSet set
= op
->output_pref
[i
];
2175 } else if (set
== MAKE_64BIT_MASK(0, TCG_TARGET_NB_REGS
)) {
2177 #ifdef CONFIG_DEBUG_TCG
2178 } else if (tcg_regset_single(set
)) {
2179 TCGReg reg
= tcg_regset_first(set
);
2180 qemu_log("%s", tcg_target_reg_names
[reg
]);
2182 } else if (TCG_TARGET_NB_REGS
<= 32) {
2183 qemu_log("%#x", (uint32_t)set
);
2185 qemu_log("%#" PRIx64
, (uint64_t)set
);
2194 /* we give more priority to constraints with less registers */
2195 static int get_constraint_priority(const TCGOpDef
*def
, int k
)
2197 const TCGArgConstraint
*arg_ct
= &def
->args_ct
[k
];
2200 if (arg_ct
->oalias
) {
2201 /* an alias is equivalent to a single register */
2204 n
= ctpop64(arg_ct
->regs
);
2206 return TCG_TARGET_NB_REGS
- n
+ 1;
2209 /* sort from highest priority to lowest */
2210 static void sort_constraints(TCGOpDef
*def
, int start
, int n
)
2213 TCGArgConstraint
*a
= def
->args_ct
;
2215 for (i
= 0; i
< n
; i
++) {
2216 a
[start
+ i
].sort_index
= start
+ i
;
2221 for (i
= 0; i
< n
- 1; i
++) {
2222 for (j
= i
+ 1; j
< n
; j
++) {
2223 int p1
= get_constraint_priority(def
, a
[start
+ i
].sort_index
);
2224 int p2
= get_constraint_priority(def
, a
[start
+ j
].sort_index
);
2226 int tmp
= a
[start
+ i
].sort_index
;
2227 a
[start
+ i
].sort_index
= a
[start
+ j
].sort_index
;
2228 a
[start
+ j
].sort_index
= tmp
;
2234 static void process_op_defs(TCGContext
*s
)
2238 for (op
= 0; op
< NB_OPS
; op
++) {
2239 TCGOpDef
*def
= &tcg_op_defs
[op
];
2240 const TCGTargetOpDef
*tdefs
;
2244 if (def
->flags
& TCG_OPF_NOT_PRESENT
) {
2248 nb_args
= def
->nb_iargs
+ def
->nb_oargs
;
2253 tdefs
= tcg_target_op_def(op
);
2254 /* Missing TCGTargetOpDef entry. */
2255 tcg_debug_assert(tdefs
!= NULL
);
2257 type
= (def
->flags
& TCG_OPF_64BIT
? TCG_TYPE_I64
: TCG_TYPE_I32
);
2258 for (i
= 0; i
< nb_args
; i
++) {
2259 const char *ct_str
= tdefs
->args_ct_str
[i
];
2260 /* Incomplete TCGTargetOpDef entry. */
2261 tcg_debug_assert(ct_str
!= NULL
);
2263 while (*ct_str
!= '\0') {
2267 int oarg
= *ct_str
- '0';
2268 tcg_debug_assert(ct_str
== tdefs
->args_ct_str
[i
]);
2269 tcg_debug_assert(oarg
< def
->nb_oargs
);
2270 tcg_debug_assert(def
->args_ct
[oarg
].regs
!= 0);
2271 def
->args_ct
[i
] = def
->args_ct
[oarg
];
2272 /* The output sets oalias. */
2273 def
->args_ct
[oarg
].oalias
= true;
2274 def
->args_ct
[oarg
].alias_index
= i
;
2275 /* The input sets ialias. */
2276 def
->args_ct
[i
].ialias
= true;
2277 def
->args_ct
[i
].alias_index
= oarg
;
2282 def
->args_ct
[i
].newreg
= true;
2286 def
->args_ct
[i
].ct
|= TCG_CT_CONST
;
2290 ct_str
= target_parse_constraint(&def
->args_ct
[i
],
2292 /* Typo in TCGTargetOpDef constraint. */
2293 tcg_debug_assert(ct_str
!= NULL
);
2298 /* TCGTargetOpDef entry with too much information? */
2299 tcg_debug_assert(i
== TCG_MAX_OP_ARGS
|| tdefs
->args_ct_str
[i
] == NULL
);
2301 /* sort the constraints (XXX: this is just an heuristic) */
2302 sort_constraints(def
, 0, def
->nb_oargs
);
2303 sort_constraints(def
, def
->nb_oargs
, def
->nb_iargs
);
2307 void tcg_op_remove(TCGContext
*s
, TCGOp
*op
)
2313 label
= arg_label(op
->args
[0]);
2316 case INDEX_op_brcond_i32
:
2317 case INDEX_op_brcond_i64
:
2318 label
= arg_label(op
->args
[3]);
2321 case INDEX_op_brcond2_i32
:
2322 label
= arg_label(op
->args
[5]);
2329 QTAILQ_REMOVE(&s
->ops
, op
, link
);
2330 QTAILQ_INSERT_TAIL(&s
->free_ops
, op
, link
);
2333 #ifdef CONFIG_PROFILER
2334 qatomic_set(&s
->prof
.del_op_count
, s
->prof
.del_op_count
+ 1);
2338 static TCGOp
*tcg_op_alloc(TCGOpcode opc
)
2340 TCGContext
*s
= tcg_ctx
;
2343 if (likely(QTAILQ_EMPTY(&s
->free_ops
))) {
2344 op
= tcg_malloc(sizeof(TCGOp
));
2346 op
= QTAILQ_FIRST(&s
->free_ops
);
2347 QTAILQ_REMOVE(&s
->free_ops
, op
, link
);
2349 memset(op
, 0, offsetof(TCGOp
, link
));
2356 TCGOp
*tcg_emit_op(TCGOpcode opc
)
2358 TCGOp
*op
= tcg_op_alloc(opc
);
2359 QTAILQ_INSERT_TAIL(&tcg_ctx
->ops
, op
, link
);
2363 TCGOp
*tcg_op_insert_before(TCGContext
*s
, TCGOp
*old_op
, TCGOpcode opc
)
2365 TCGOp
*new_op
= tcg_op_alloc(opc
);
2366 QTAILQ_INSERT_BEFORE(old_op
, new_op
, link
);
2370 TCGOp
*tcg_op_insert_after(TCGContext
*s
, TCGOp
*old_op
, TCGOpcode opc
)
2372 TCGOp
*new_op
= tcg_op_alloc(opc
);
2373 QTAILQ_INSERT_AFTER(&s
->ops
, old_op
, new_op
, link
);
2377 /* Reachable analysis : remove unreachable code. */
2378 static void reachable_code_pass(TCGContext
*s
)
2380 TCGOp
*op
, *op_next
;
2383 QTAILQ_FOREACH_SAFE(op
, &s
->ops
, link
, op_next
) {
2389 case INDEX_op_set_label
:
2390 label
= arg_label(op
->args
[0]);
2391 if (label
->refs
== 0) {
2393 * While there is an occasional backward branch, virtually
2394 * all branches generated by the translators are forward.
2395 * Which means that generally we will have already removed
2396 * all references to the label that will be, and there is
2397 * little to be gained by iterating.
2401 /* Once we see a label, insns become live again. */
2406 * Optimization can fold conditional branches to unconditional.
2407 * If we find a label with one reference which is preceded by
2408 * an unconditional branch to it, remove both. This needed to
2409 * wait until the dead code in between them was removed.
2411 if (label
->refs
== 1) {
2412 TCGOp
*op_prev
= QTAILQ_PREV(op
, link
);
2413 if (op_prev
->opc
== INDEX_op_br
&&
2414 label
== arg_label(op_prev
->args
[0])) {
2415 tcg_op_remove(s
, op_prev
);
2423 case INDEX_op_exit_tb
:
2424 case INDEX_op_goto_ptr
:
2425 /* Unconditional branches; everything following is dead. */
2430 /* Notice noreturn helper calls, raising exceptions. */
2431 call_flags
= op
->args
[TCGOP_CALLO(op
) + TCGOP_CALLI(op
) + 1];
2432 if (call_flags
& TCG_CALL_NO_RETURN
) {
2437 case INDEX_op_insn_start
:
2438 /* Never remove -- we need to keep these for unwind. */
2447 tcg_op_remove(s
, op
);
2455 #define IS_DEAD_ARG(n) (arg_life & (DEAD_ARG << (n)))
2456 #define NEED_SYNC_ARG(n) (arg_life & (SYNC_ARG << (n)))
2458 /* For liveness_pass_1, the register preferences for a given temp. */
2459 static inline TCGRegSet
*la_temp_pref(TCGTemp
*ts
)
2461 return ts
->state_ptr
;
2464 /* For liveness_pass_1, reset the preferences for a given temp to the
2465 * maximal regset for its type.
2467 static inline void la_reset_pref(TCGTemp
*ts
)
2470 = (ts
->state
== TS_DEAD
? 0 : tcg_target_available_regs
[ts
->type
]);
2473 /* liveness analysis: end of function: all temps are dead, and globals
2474 should be in memory. */
2475 static void la_func_end(TCGContext
*s
, int ng
, int nt
)
2479 for (i
= 0; i
< ng
; ++i
) {
2480 s
->temps
[i
].state
= TS_DEAD
| TS_MEM
;
2481 la_reset_pref(&s
->temps
[i
]);
2483 for (i
= ng
; i
< nt
; ++i
) {
2484 s
->temps
[i
].state
= TS_DEAD
;
2485 la_reset_pref(&s
->temps
[i
]);
2489 /* liveness analysis: end of basic block: all temps are dead, globals
2490 and local temps should be in memory. */
2491 static void la_bb_end(TCGContext
*s
, int ng
, int nt
)
2495 for (i
= 0; i
< ng
; ++i
) {
2496 s
->temps
[i
].state
= TS_DEAD
| TS_MEM
;
2497 la_reset_pref(&s
->temps
[i
]);
2499 for (i
= ng
; i
< nt
; ++i
) {
2500 s
->temps
[i
].state
= (s
->temps
[i
].temp_local
2503 la_reset_pref(&s
->temps
[i
]);
2507 /* liveness analysis: sync globals back to memory. */
2508 static void la_global_sync(TCGContext
*s
, int ng
)
2512 for (i
= 0; i
< ng
; ++i
) {
2513 int state
= s
->temps
[i
].state
;
2514 s
->temps
[i
].state
= state
| TS_MEM
;
2515 if (state
== TS_DEAD
) {
2516 /* If the global was previously dead, reset prefs. */
2517 la_reset_pref(&s
->temps
[i
]);
2522 /* liveness analysis: sync globals back to memory and kill. */
2523 static void la_global_kill(TCGContext
*s
, int ng
)
2527 for (i
= 0; i
< ng
; i
++) {
2528 s
->temps
[i
].state
= TS_DEAD
| TS_MEM
;
2529 la_reset_pref(&s
->temps
[i
]);
2533 /* liveness analysis: note live globals crossing calls. */
2534 static void la_cross_call(TCGContext
*s
, int nt
)
2536 TCGRegSet mask
= ~tcg_target_call_clobber_regs
;
2539 for (i
= 0; i
< nt
; i
++) {
2540 TCGTemp
*ts
= &s
->temps
[i
];
2541 if (!(ts
->state
& TS_DEAD
)) {
2542 TCGRegSet
*pset
= la_temp_pref(ts
);
2543 TCGRegSet set
= *pset
;
2546 /* If the combination is not possible, restart. */
2548 set
= tcg_target_available_regs
[ts
->type
] & mask
;
2555 /* Liveness analysis : update the opc_arg_life array to tell if a
2556 given input arguments is dead. Instructions updating dead
2557 temporaries are removed. */
2558 static void liveness_pass_1(TCGContext
*s
)
2560 int nb_globals
= s
->nb_globals
;
2561 int nb_temps
= s
->nb_temps
;
2562 TCGOp
*op
, *op_prev
;
2566 prefs
= tcg_malloc(sizeof(TCGRegSet
) * nb_temps
);
2567 for (i
= 0; i
< nb_temps
; ++i
) {
2568 s
->temps
[i
].state_ptr
= prefs
+ i
;
2571 /* ??? Should be redundant with the exit_tb that ends the TB. */
2572 la_func_end(s
, nb_globals
, nb_temps
);
2574 QTAILQ_FOREACH_REVERSE_SAFE(op
, &s
->ops
, link
, op_prev
) {
2575 int nb_iargs
, nb_oargs
;
2576 TCGOpcode opc_new
, opc_new2
;
2578 TCGLifeData arg_life
= 0;
2580 TCGOpcode opc
= op
->opc
;
2581 const TCGOpDef
*def
= &tcg_op_defs
[opc
];
2589 nb_oargs
= TCGOP_CALLO(op
);
2590 nb_iargs
= TCGOP_CALLI(op
);
2591 call_flags
= op
->args
[nb_oargs
+ nb_iargs
+ 1];
2593 /* pure functions can be removed if their result is unused */
2594 if (call_flags
& TCG_CALL_NO_SIDE_EFFECTS
) {
2595 for (i
= 0; i
< nb_oargs
; i
++) {
2596 ts
= arg_temp(op
->args
[i
]);
2597 if (ts
->state
!= TS_DEAD
) {
2598 goto do_not_remove_call
;
2605 /* Output args are dead. */
2606 for (i
= 0; i
< nb_oargs
; i
++) {
2607 ts
= arg_temp(op
->args
[i
]);
2608 if (ts
->state
& TS_DEAD
) {
2609 arg_life
|= DEAD_ARG
<< i
;
2611 if (ts
->state
& TS_MEM
) {
2612 arg_life
|= SYNC_ARG
<< i
;
2614 ts
->state
= TS_DEAD
;
2617 /* Not used -- it will be tcg_target_call_oarg_regs[i]. */
2618 op
->output_pref
[i
] = 0;
2621 if (!(call_flags
& (TCG_CALL_NO_WRITE_GLOBALS
|
2622 TCG_CALL_NO_READ_GLOBALS
))) {
2623 la_global_kill(s
, nb_globals
);
2624 } else if (!(call_flags
& TCG_CALL_NO_READ_GLOBALS
)) {
2625 la_global_sync(s
, nb_globals
);
2628 /* Record arguments that die in this helper. */
2629 for (i
= nb_oargs
; i
< nb_iargs
+ nb_oargs
; i
++) {
2630 ts
= arg_temp(op
->args
[i
]);
2631 if (ts
&& ts
->state
& TS_DEAD
) {
2632 arg_life
|= DEAD_ARG
<< i
;
2636 /* For all live registers, remove call-clobbered prefs. */
2637 la_cross_call(s
, nb_temps
);
2639 nb_call_regs
= ARRAY_SIZE(tcg_target_call_iarg_regs
);
2641 /* Input arguments are live for preceding opcodes. */
2642 for (i
= 0; i
< nb_iargs
; i
++) {
2643 ts
= arg_temp(op
->args
[i
+ nb_oargs
]);
2644 if (ts
&& ts
->state
& TS_DEAD
) {
2645 /* For those arguments that die, and will be allocated
2646 * in registers, clear the register set for that arg,
2647 * to be filled in below. For args that will be on
2648 * the stack, reset to any available reg.
2651 = (i
< nb_call_regs
? 0 :
2652 tcg_target_available_regs
[ts
->type
]);
2653 ts
->state
&= ~TS_DEAD
;
2657 /* For each input argument, add its input register to prefs.
2658 If a temp is used once, this produces a single set bit. */
2659 for (i
= 0; i
< MIN(nb_call_regs
, nb_iargs
); i
++) {
2660 ts
= arg_temp(op
->args
[i
+ nb_oargs
]);
2662 tcg_regset_set_reg(*la_temp_pref(ts
),
2663 tcg_target_call_iarg_regs
[i
]);
2668 case INDEX_op_insn_start
:
2670 case INDEX_op_discard
:
2671 /* mark the temporary as dead */
2672 ts
= arg_temp(op
->args
[0]);
2673 ts
->state
= TS_DEAD
;
2677 case INDEX_op_add2_i32
:
2678 opc_new
= INDEX_op_add_i32
;
2680 case INDEX_op_sub2_i32
:
2681 opc_new
= INDEX_op_sub_i32
;
2683 case INDEX_op_add2_i64
:
2684 opc_new
= INDEX_op_add_i64
;
2686 case INDEX_op_sub2_i64
:
2687 opc_new
= INDEX_op_sub_i64
;
2691 /* Test if the high part of the operation is dead, but not
2692 the low part. The result can be optimized to a simple
2693 add or sub. This happens often for x86_64 guest when the
2694 cpu mode is set to 32 bit. */
2695 if (arg_temp(op
->args
[1])->state
== TS_DEAD
) {
2696 if (arg_temp(op
->args
[0])->state
== TS_DEAD
) {
2699 /* Replace the opcode and adjust the args in place,
2700 leaving 3 unused args at the end. */
2701 op
->opc
= opc
= opc_new
;
2702 op
->args
[1] = op
->args
[2];
2703 op
->args
[2] = op
->args
[4];
2704 /* Fall through and mark the single-word operation live. */
2710 case INDEX_op_mulu2_i32
:
2711 opc_new
= INDEX_op_mul_i32
;
2712 opc_new2
= INDEX_op_muluh_i32
;
2713 have_opc_new2
= TCG_TARGET_HAS_muluh_i32
;
2715 case INDEX_op_muls2_i32
:
2716 opc_new
= INDEX_op_mul_i32
;
2717 opc_new2
= INDEX_op_mulsh_i32
;
2718 have_opc_new2
= TCG_TARGET_HAS_mulsh_i32
;
2720 case INDEX_op_mulu2_i64
:
2721 opc_new
= INDEX_op_mul_i64
;
2722 opc_new2
= INDEX_op_muluh_i64
;
2723 have_opc_new2
= TCG_TARGET_HAS_muluh_i64
;
2725 case INDEX_op_muls2_i64
:
2726 opc_new
= INDEX_op_mul_i64
;
2727 opc_new2
= INDEX_op_mulsh_i64
;
2728 have_opc_new2
= TCG_TARGET_HAS_mulsh_i64
;
2733 if (arg_temp(op
->args
[1])->state
== TS_DEAD
) {
2734 if (arg_temp(op
->args
[0])->state
== TS_DEAD
) {
2735 /* Both parts of the operation are dead. */
2738 /* The high part of the operation is dead; generate the low. */
2739 op
->opc
= opc
= opc_new
;
2740 op
->args
[1] = op
->args
[2];
2741 op
->args
[2] = op
->args
[3];
2742 } else if (arg_temp(op
->args
[0])->state
== TS_DEAD
&& have_opc_new2
) {
2743 /* The low part of the operation is dead; generate the high. */
2744 op
->opc
= opc
= opc_new2
;
2745 op
->args
[0] = op
->args
[1];
2746 op
->args
[1] = op
->args
[2];
2747 op
->args
[2] = op
->args
[3];
2751 /* Mark the single-word operation live. */
2756 /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
2757 nb_iargs
= def
->nb_iargs
;
2758 nb_oargs
= def
->nb_oargs
;
2760 /* Test if the operation can be removed because all
2761 its outputs are dead. We assume that nb_oargs == 0
2762 implies side effects */
2763 if (!(def
->flags
& TCG_OPF_SIDE_EFFECTS
) && nb_oargs
!= 0) {
2764 for (i
= 0; i
< nb_oargs
; i
++) {
2765 if (arg_temp(op
->args
[i
])->state
!= TS_DEAD
) {
2774 tcg_op_remove(s
, op
);
2778 for (i
= 0; i
< nb_oargs
; i
++) {
2779 ts
= arg_temp(op
->args
[i
]);
2781 /* Remember the preference of the uses that followed. */
2782 op
->output_pref
[i
] = *la_temp_pref(ts
);
2784 /* Output args are dead. */
2785 if (ts
->state
& TS_DEAD
) {
2786 arg_life
|= DEAD_ARG
<< i
;
2788 if (ts
->state
& TS_MEM
) {
2789 arg_life
|= SYNC_ARG
<< i
;
2791 ts
->state
= TS_DEAD
;
2795 /* If end of basic block, update. */
2796 if (def
->flags
& TCG_OPF_BB_EXIT
) {
2797 la_func_end(s
, nb_globals
, nb_temps
);
2798 } else if (def
->flags
& TCG_OPF_BB_END
) {
2799 la_bb_end(s
, nb_globals
, nb_temps
);
2800 } else if (def
->flags
& TCG_OPF_SIDE_EFFECTS
) {
2801 la_global_sync(s
, nb_globals
);
2802 if (def
->flags
& TCG_OPF_CALL_CLOBBER
) {
2803 la_cross_call(s
, nb_temps
);
2807 /* Record arguments that die in this opcode. */
2808 for (i
= nb_oargs
; i
< nb_oargs
+ nb_iargs
; i
++) {
2809 ts
= arg_temp(op
->args
[i
]);
2810 if (ts
->state
& TS_DEAD
) {
2811 arg_life
|= DEAD_ARG
<< i
;
2815 /* Input arguments are live for preceding opcodes. */
2816 for (i
= nb_oargs
; i
< nb_oargs
+ nb_iargs
; i
++) {
2817 ts
= arg_temp(op
->args
[i
]);
2818 if (ts
->state
& TS_DEAD
) {
2819 /* For operands that were dead, initially allow
2820 all regs for the type. */
2821 *la_temp_pref(ts
) = tcg_target_available_regs
[ts
->type
];
2822 ts
->state
&= ~TS_DEAD
;
2826 /* Incorporate constraints for this operand. */
2828 case INDEX_op_mov_i32
:
2829 case INDEX_op_mov_i64
:
2830 /* Note that these are TCG_OPF_NOT_PRESENT and do not
2831 have proper constraints. That said, special case
2832 moves to propagate preferences backward. */
2833 if (IS_DEAD_ARG(1)) {
2834 *la_temp_pref(arg_temp(op
->args
[0]))
2835 = *la_temp_pref(arg_temp(op
->args
[1]));
2840 for (i
= nb_oargs
; i
< nb_oargs
+ nb_iargs
; i
++) {
2841 const TCGArgConstraint
*ct
= &def
->args_ct
[i
];
2842 TCGRegSet set
, *pset
;
2844 ts
= arg_temp(op
->args
[i
]);
2845 pset
= la_temp_pref(ts
);
2850 set
&= op
->output_pref
[ct
->alias_index
];
2852 /* If the combination is not possible, restart. */
2862 op
->life
= arg_life
;
2866 /* Liveness analysis: Convert indirect regs to direct temporaries. */
2867 static bool liveness_pass_2(TCGContext
*s
)
2869 int nb_globals
= s
->nb_globals
;
2871 bool changes
= false;
2872 TCGOp
*op
, *op_next
;
2874 /* Create a temporary for each indirect global. */
2875 for (i
= 0; i
< nb_globals
; ++i
) {
2876 TCGTemp
*its
= &s
->temps
[i
];
2877 if (its
->indirect_reg
) {
2878 TCGTemp
*dts
= tcg_temp_alloc(s
);
2879 dts
->type
= its
->type
;
2880 dts
->base_type
= its
->base_type
;
2881 its
->state_ptr
= dts
;
2883 its
->state_ptr
= NULL
;
2885 /* All globals begin dead. */
2886 its
->state
= TS_DEAD
;
2888 for (nb_temps
= s
->nb_temps
; i
< nb_temps
; ++i
) {
2889 TCGTemp
*its
= &s
->temps
[i
];
2890 its
->state_ptr
= NULL
;
2891 its
->state
= TS_DEAD
;
2894 QTAILQ_FOREACH_SAFE(op
, &s
->ops
, link
, op_next
) {
2895 TCGOpcode opc
= op
->opc
;
2896 const TCGOpDef
*def
= &tcg_op_defs
[opc
];
2897 TCGLifeData arg_life
= op
->life
;
2898 int nb_iargs
, nb_oargs
, call_flags
;
2899 TCGTemp
*arg_ts
, *dir_ts
;
2901 if (opc
== INDEX_op_call
) {
2902 nb_oargs
= TCGOP_CALLO(op
);
2903 nb_iargs
= TCGOP_CALLI(op
);
2904 call_flags
= op
->args
[nb_oargs
+ nb_iargs
+ 1];
2906 nb_iargs
= def
->nb_iargs
;
2907 nb_oargs
= def
->nb_oargs
;
2909 /* Set flags similar to how calls require. */
2910 if (def
->flags
& TCG_OPF_BB_END
) {
2911 /* Like writing globals: save_globals */
2913 } else if (def
->flags
& TCG_OPF_SIDE_EFFECTS
) {
2914 /* Like reading globals: sync_globals */
2915 call_flags
= TCG_CALL_NO_WRITE_GLOBALS
;
2917 /* No effect on globals. */
2918 call_flags
= (TCG_CALL_NO_READ_GLOBALS
|
2919 TCG_CALL_NO_WRITE_GLOBALS
);
2923 /* Make sure that input arguments are available. */
2924 for (i
= nb_oargs
; i
< nb_iargs
+ nb_oargs
; i
++) {
2925 arg_ts
= arg_temp(op
->args
[i
]);
2927 dir_ts
= arg_ts
->state_ptr
;
2928 if (dir_ts
&& arg_ts
->state
== TS_DEAD
) {
2929 TCGOpcode lopc
= (arg_ts
->type
== TCG_TYPE_I32
2932 TCGOp
*lop
= tcg_op_insert_before(s
, op
, lopc
);
2934 lop
->args
[0] = temp_arg(dir_ts
);
2935 lop
->args
[1] = temp_arg(arg_ts
->mem_base
);
2936 lop
->args
[2] = arg_ts
->mem_offset
;
2938 /* Loaded, but synced with memory. */
2939 arg_ts
->state
= TS_MEM
;
2944 /* Perform input replacement, and mark inputs that became dead.
2945 No action is required except keeping temp_state up to date
2946 so that we reload when needed. */
2947 for (i
= nb_oargs
; i
< nb_iargs
+ nb_oargs
; i
++) {
2948 arg_ts
= arg_temp(op
->args
[i
]);
2950 dir_ts
= arg_ts
->state_ptr
;
2952 op
->args
[i
] = temp_arg(dir_ts
);
2954 if (IS_DEAD_ARG(i
)) {
2955 arg_ts
->state
= TS_DEAD
;
2961 /* Liveness analysis should ensure that the following are
2962 all correct, for call sites and basic block end points. */
2963 if (call_flags
& TCG_CALL_NO_READ_GLOBALS
) {
2965 } else if (call_flags
& TCG_CALL_NO_WRITE_GLOBALS
) {
2966 for (i
= 0; i
< nb_globals
; ++i
) {
2967 /* Liveness should see that globals are synced back,
2968 that is, either TS_DEAD or TS_MEM. */
2969 arg_ts
= &s
->temps
[i
];
2970 tcg_debug_assert(arg_ts
->state_ptr
== 0
2971 || arg_ts
->state
!= 0);
2974 for (i
= 0; i
< nb_globals
; ++i
) {
2975 /* Liveness should see that globals are saved back,
2976 that is, TS_DEAD, waiting to be reloaded. */
2977 arg_ts
= &s
->temps
[i
];
2978 tcg_debug_assert(arg_ts
->state_ptr
== 0
2979 || arg_ts
->state
== TS_DEAD
);
2983 /* Outputs become available. */
2984 if (opc
== INDEX_op_mov_i32
|| opc
== INDEX_op_mov_i64
) {
2985 arg_ts
= arg_temp(op
->args
[0]);
2986 dir_ts
= arg_ts
->state_ptr
;
2988 op
->args
[0] = temp_arg(dir_ts
);
2991 /* The output is now live and modified. */
2994 if (NEED_SYNC_ARG(0)) {
2995 TCGOpcode sopc
= (arg_ts
->type
== TCG_TYPE_I32
2998 TCGOp
*sop
= tcg_op_insert_after(s
, op
, sopc
);
2999 TCGTemp
*out_ts
= dir_ts
;
3001 if (IS_DEAD_ARG(0)) {
3002 out_ts
= arg_temp(op
->args
[1]);
3003 arg_ts
->state
= TS_DEAD
;
3004 tcg_op_remove(s
, op
);
3006 arg_ts
->state
= TS_MEM
;
3009 sop
->args
[0] = temp_arg(out_ts
);
3010 sop
->args
[1] = temp_arg(arg_ts
->mem_base
);
3011 sop
->args
[2] = arg_ts
->mem_offset
;
3013 tcg_debug_assert(!IS_DEAD_ARG(0));
3017 for (i
= 0; i
< nb_oargs
; i
++) {
3018 arg_ts
= arg_temp(op
->args
[i
]);
3019 dir_ts
= arg_ts
->state_ptr
;
3023 op
->args
[i
] = temp_arg(dir_ts
);
3026 /* The output is now live and modified. */
3029 /* Sync outputs upon their last write. */
3030 if (NEED_SYNC_ARG(i
)) {
3031 TCGOpcode sopc
= (arg_ts
->type
== TCG_TYPE_I32
3034 TCGOp
*sop
= tcg_op_insert_after(s
, op
, sopc
);
3036 sop
->args
[0] = temp_arg(dir_ts
);
3037 sop
->args
[1] = temp_arg(arg_ts
->mem_base
);
3038 sop
->args
[2] = arg_ts
->mem_offset
;
3040 arg_ts
->state
= TS_MEM
;
3042 /* Drop outputs that are dead. */
3043 if (IS_DEAD_ARG(i
)) {
3044 arg_ts
->state
= TS_DEAD
;
3053 #ifdef CONFIG_DEBUG_TCG
3054 static void dump_regs(TCGContext
*s
)
3060 for(i
= 0; i
< s
->nb_temps
; i
++) {
3062 printf(" %10s: ", tcg_get_arg_str_ptr(s
, buf
, sizeof(buf
), ts
));
3063 switch(ts
->val_type
) {
3065 printf("%s", tcg_target_reg_names
[ts
->reg
]);
3068 printf("%d(%s)", (int)ts
->mem_offset
,
3069 tcg_target_reg_names
[ts
->mem_base
->reg
]);
3071 case TEMP_VAL_CONST
:
3072 printf("$0x%" TCG_PRIlx
, ts
->val
);
3084 for(i
= 0; i
< TCG_TARGET_NB_REGS
; i
++) {
3085 if (s
->reg_to_temp
[i
] != NULL
) {
3087 tcg_target_reg_names
[i
],
3088 tcg_get_arg_str_ptr(s
, buf
, sizeof(buf
), s
->reg_to_temp
[i
]));
3093 static void check_regs(TCGContext
*s
)
3100 for (reg
= 0; reg
< TCG_TARGET_NB_REGS
; reg
++) {
3101 ts
= s
->reg_to_temp
[reg
];
3103 if (ts
->val_type
!= TEMP_VAL_REG
|| ts
->reg
!= reg
) {
3104 printf("Inconsistency for register %s:\n",
3105 tcg_target_reg_names
[reg
]);
3110 for (k
= 0; k
< s
->nb_temps
; k
++) {
3112 if (ts
->val_type
== TEMP_VAL_REG
&& !ts
->fixed_reg
3113 && s
->reg_to_temp
[ts
->reg
] != ts
) {
3114 printf("Inconsistency for temp %s:\n",
3115 tcg_get_arg_str_ptr(s
, buf
, sizeof(buf
), ts
));
3117 printf("reg state:\n");
3125 static void temp_allocate_frame(TCGContext
*s
, TCGTemp
*ts
)
3127 #if !(defined(__sparc__) && TCG_TARGET_REG_BITS == 64)
3128 /* Sparc64 stack is accessed with offset of 2047 */
3129 s
->current_frame_offset
= (s
->current_frame_offset
+
3130 (tcg_target_long
)sizeof(tcg_target_long
) - 1) &
3131 ~(sizeof(tcg_target_long
) - 1);
3133 if (s
->current_frame_offset
+ (tcg_target_long
)sizeof(tcg_target_long
) >
3137 ts
->mem_offset
= s
->current_frame_offset
;
3138 ts
->mem_base
= s
->frame_temp
;
3139 ts
->mem_allocated
= 1;
3140 s
->current_frame_offset
+= sizeof(tcg_target_long
);
3143 static void temp_load(TCGContext
*, TCGTemp
*, TCGRegSet
, TCGRegSet
, TCGRegSet
);
3145 /* Mark a temporary as free or dead. If 'free_or_dead' is negative,
3146 mark it free; otherwise mark it dead. */
3147 static void temp_free_or_dead(TCGContext
*s
, TCGTemp
*ts
, int free_or_dead
)
3149 if (ts
->fixed_reg
) {
3152 if (ts
->val_type
== TEMP_VAL_REG
) {
3153 s
->reg_to_temp
[ts
->reg
] = NULL
;
3155 ts
->val_type
= (free_or_dead
< 0
3158 ? TEMP_VAL_MEM
: TEMP_VAL_DEAD
);
3161 /* Mark a temporary as dead. */
3162 static inline void temp_dead(TCGContext
*s
, TCGTemp
*ts
)
3164 temp_free_or_dead(s
, ts
, 1);
3167 /* Sync a temporary to memory. 'allocated_regs' is used in case a temporary
3168 registers needs to be allocated to store a constant. If 'free_or_dead'
3169 is non-zero, subsequently release the temporary; if it is positive, the
3170 temp is dead; if it is negative, the temp is free. */
3171 static void temp_sync(TCGContext
*s
, TCGTemp
*ts
, TCGRegSet allocated_regs
,
3172 TCGRegSet preferred_regs
, int free_or_dead
)
3174 if (ts
->fixed_reg
) {
3177 if (!ts
->mem_coherent
) {
3178 if (!ts
->mem_allocated
) {
3179 temp_allocate_frame(s
, ts
);
3181 switch (ts
->val_type
) {
3182 case TEMP_VAL_CONST
:
3183 /* If we're going to free the temp immediately, then we won't
3184 require it later in a register, so attempt to store the
3185 constant to memory directly. */
3187 && tcg_out_sti(s
, ts
->type
, ts
->val
,
3188 ts
->mem_base
->reg
, ts
->mem_offset
)) {
3191 temp_load(s
, ts
, tcg_target_available_regs
[ts
->type
],
3192 allocated_regs
, preferred_regs
);
3196 tcg_out_st(s
, ts
->type
, ts
->reg
,
3197 ts
->mem_base
->reg
, ts
->mem_offset
);
3207 ts
->mem_coherent
= 1;
3210 temp_free_or_dead(s
, ts
, free_or_dead
);
3214 /* free register 'reg' by spilling the corresponding temporary if necessary */
3215 static void tcg_reg_free(TCGContext
*s
, TCGReg reg
, TCGRegSet allocated_regs
)
3217 TCGTemp
*ts
= s
->reg_to_temp
[reg
];
3219 temp_sync(s
, ts
, allocated_regs
, 0, -1);
3225 * @required_regs: Set of registers in which we must allocate.
3226 * @allocated_regs: Set of registers which must be avoided.
3227 * @preferred_regs: Set of registers we should prefer.
3228 * @rev: True if we search the registers in "indirect" order.
3230 * The allocated register must be in @required_regs & ~@allocated_regs,
3231 * but if we can put it in @preferred_regs we may save a move later.
3233 static TCGReg
tcg_reg_alloc(TCGContext
*s
, TCGRegSet required_regs
,
3234 TCGRegSet allocated_regs
,
3235 TCGRegSet preferred_regs
, bool rev
)
3237 int i
, j
, f
, n
= ARRAY_SIZE(tcg_target_reg_alloc_order
);
3238 TCGRegSet reg_ct
[2];
3241 reg_ct
[1] = required_regs
& ~allocated_regs
;
3242 tcg_debug_assert(reg_ct
[1] != 0);
3243 reg_ct
[0] = reg_ct
[1] & preferred_regs
;
3245 /* Skip the preferred_regs option if it cannot be satisfied,
3246 or if the preference made no difference. */
3247 f
= reg_ct
[0] == 0 || reg_ct
[0] == reg_ct
[1];
3249 order
= rev
? indirect_reg_alloc_order
: tcg_target_reg_alloc_order
;
3251 /* Try free registers, preferences first. */
3252 for (j
= f
; j
< 2; j
++) {
3253 TCGRegSet set
= reg_ct
[j
];
3255 if (tcg_regset_single(set
)) {
3256 /* One register in the set. */
3257 TCGReg reg
= tcg_regset_first(set
);
3258 if (s
->reg_to_temp
[reg
] == NULL
) {
3262 for (i
= 0; i
< n
; i
++) {
3263 TCGReg reg
= order
[i
];
3264 if (s
->reg_to_temp
[reg
] == NULL
&&
3265 tcg_regset_test_reg(set
, reg
)) {
3272 /* We must spill something. */
3273 for (j
= f
; j
< 2; j
++) {
3274 TCGRegSet set
= reg_ct
[j
];
3276 if (tcg_regset_single(set
)) {
3277 /* One register in the set. */
3278 TCGReg reg
= tcg_regset_first(set
);
3279 tcg_reg_free(s
, reg
, allocated_regs
);
3282 for (i
= 0; i
< n
; i
++) {
3283 TCGReg reg
= order
[i
];
3284 if (tcg_regset_test_reg(set
, reg
)) {
3285 tcg_reg_free(s
, reg
, allocated_regs
);
3295 /* Make sure the temporary is in a register. If needed, allocate the register
3296 from DESIRED while avoiding ALLOCATED. */
3297 static void temp_load(TCGContext
*s
, TCGTemp
*ts
, TCGRegSet desired_regs
,
3298 TCGRegSet allocated_regs
, TCGRegSet preferred_regs
)
3302 switch (ts
->val_type
) {
3305 case TEMP_VAL_CONST
:
3306 reg
= tcg_reg_alloc(s
, desired_regs
, allocated_regs
,
3307 preferred_regs
, ts
->indirect_base
);
3308 tcg_out_movi(s
, ts
->type
, reg
, ts
->val
);
3309 ts
->mem_coherent
= 0;
3312 reg
= tcg_reg_alloc(s
, desired_regs
, allocated_regs
,
3313 preferred_regs
, ts
->indirect_base
);
3314 tcg_out_ld(s
, ts
->type
, reg
, ts
->mem_base
->reg
, ts
->mem_offset
);
3315 ts
->mem_coherent
= 1;
3322 ts
->val_type
= TEMP_VAL_REG
;
3323 s
->reg_to_temp
[reg
] = ts
;
3326 /* Save a temporary to memory. 'allocated_regs' is used in case a
3327 temporary registers needs to be allocated to store a constant. */
3328 static void temp_save(TCGContext
*s
, TCGTemp
*ts
, TCGRegSet allocated_regs
)
3330 /* The liveness analysis already ensures that globals are back
3331 in memory. Keep an tcg_debug_assert for safety. */
3332 tcg_debug_assert(ts
->val_type
== TEMP_VAL_MEM
|| ts
->fixed_reg
);
3335 /* save globals to their canonical location and assume they can be
3336 modified be the following code. 'allocated_regs' is used in case a
3337 temporary registers needs to be allocated to store a constant. */
3338 static void save_globals(TCGContext
*s
, TCGRegSet allocated_regs
)
3342 for (i
= 0, n
= s
->nb_globals
; i
< n
; i
++) {
3343 temp_save(s
, &s
->temps
[i
], allocated_regs
);
3347 /* sync globals to their canonical location and assume they can be
3348 read by the following code. 'allocated_regs' is used in case a
3349 temporary registers needs to be allocated to store a constant. */
3350 static void sync_globals(TCGContext
*s
, TCGRegSet allocated_regs
)
3354 for (i
= 0, n
= s
->nb_globals
; i
< n
; i
++) {
3355 TCGTemp
*ts
= &s
->temps
[i
];
3356 tcg_debug_assert(ts
->val_type
!= TEMP_VAL_REG
3358 || ts
->mem_coherent
);
3362 /* at the end of a basic block, we assume all temporaries are dead and
3363 all globals are stored at their canonical location. */
3364 static void tcg_reg_alloc_bb_end(TCGContext
*s
, TCGRegSet allocated_regs
)
3368 for (i
= s
->nb_globals
; i
< s
->nb_temps
; i
++) {
3369 TCGTemp
*ts
= &s
->temps
[i
];
3370 if (ts
->temp_local
) {
3371 temp_save(s
, ts
, allocated_regs
);
3373 /* The liveness analysis already ensures that temps are dead.
3374 Keep an tcg_debug_assert for safety. */
3375 tcg_debug_assert(ts
->val_type
== TEMP_VAL_DEAD
);
3379 save_globals(s
, allocated_regs
);
3383 * Specialized code generation for INDEX_op_movi_*.
3385 static void tcg_reg_alloc_do_movi(TCGContext
*s
, TCGTemp
*ots
,
3386 tcg_target_ulong val
, TCGLifeData arg_life
,
3387 TCGRegSet preferred_regs
)
3389 /* ENV should not be modified. */
3390 tcg_debug_assert(!ots
->fixed_reg
);
3392 /* The movi is not explicitly generated here. */
3393 if (ots
->val_type
== TEMP_VAL_REG
) {
3394 s
->reg_to_temp
[ots
->reg
] = NULL
;
3396 ots
->val_type
= TEMP_VAL_CONST
;
3398 ots
->mem_coherent
= 0;
3399 if (NEED_SYNC_ARG(0)) {
3400 temp_sync(s
, ots
, s
->reserved_regs
, preferred_regs
, IS_DEAD_ARG(0));
3401 } else if (IS_DEAD_ARG(0)) {
3406 static void tcg_reg_alloc_movi(TCGContext
*s
, const TCGOp
*op
)
3408 TCGTemp
*ots
= arg_temp(op
->args
[0]);
3409 tcg_target_ulong val
= op
->args
[1];
3411 tcg_reg_alloc_do_movi(s
, ots
, val
, op
->life
, op
->output_pref
[0]);
3415 * Specialized code generation for INDEX_op_mov_*.
3417 static void tcg_reg_alloc_mov(TCGContext
*s
, const TCGOp
*op
)
3419 const TCGLifeData arg_life
= op
->life
;
3420 TCGRegSet allocated_regs
, preferred_regs
;
3422 TCGType otype
, itype
;
3424 allocated_regs
= s
->reserved_regs
;
3425 preferred_regs
= op
->output_pref
[0];
3426 ots
= arg_temp(op
->args
[0]);
3427 ts
= arg_temp(op
->args
[1]);
3429 /* ENV should not be modified. */
3430 tcg_debug_assert(!ots
->fixed_reg
);
3432 /* Note that otype != itype for no-op truncation. */
3436 if (ts
->val_type
== TEMP_VAL_CONST
) {
3437 /* propagate constant or generate sti */
3438 tcg_target_ulong val
= ts
->val
;
3439 if (IS_DEAD_ARG(1)) {
3442 tcg_reg_alloc_do_movi(s
, ots
, val
, arg_life
, preferred_regs
);
3446 /* If the source value is in memory we're going to be forced
3447 to have it in a register in order to perform the copy. Copy
3448 the SOURCE value into its own register first, that way we
3449 don't have to reload SOURCE the next time it is used. */
3450 if (ts
->val_type
== TEMP_VAL_MEM
) {
3451 temp_load(s
, ts
, tcg_target_available_regs
[itype
],
3452 allocated_regs
, preferred_regs
);
3455 tcg_debug_assert(ts
->val_type
== TEMP_VAL_REG
);
3456 if (IS_DEAD_ARG(0)) {
3457 /* mov to a non-saved dead register makes no sense (even with
3458 liveness analysis disabled). */
3459 tcg_debug_assert(NEED_SYNC_ARG(0));
3460 if (!ots
->mem_allocated
) {
3461 temp_allocate_frame(s
, ots
);
3463 tcg_out_st(s
, otype
, ts
->reg
, ots
->mem_base
->reg
, ots
->mem_offset
);
3464 if (IS_DEAD_ARG(1)) {
3469 if (IS_DEAD_ARG(1) && !ts
->fixed_reg
) {
3470 /* the mov can be suppressed */
3471 if (ots
->val_type
== TEMP_VAL_REG
) {
3472 s
->reg_to_temp
[ots
->reg
] = NULL
;
3477 if (ots
->val_type
!= TEMP_VAL_REG
) {
3478 /* When allocating a new register, make sure to not spill the
3480 tcg_regset_set_reg(allocated_regs
, ts
->reg
);
3481 ots
->reg
= tcg_reg_alloc(s
, tcg_target_available_regs
[otype
],
3482 allocated_regs
, preferred_regs
,
3483 ots
->indirect_base
);
3485 if (!tcg_out_mov(s
, otype
, ots
->reg
, ts
->reg
)) {
3487 * Cross register class move not supported.
3488 * Store the source register into the destination slot
3489 * and leave the destination temp as TEMP_VAL_MEM.
3491 assert(!ots
->fixed_reg
);
3492 if (!ts
->mem_allocated
) {
3493 temp_allocate_frame(s
, ots
);
3495 tcg_out_st(s
, ts
->type
, ts
->reg
,
3496 ots
->mem_base
->reg
, ots
->mem_offset
);
3497 ots
->mem_coherent
= 1;
3498 temp_free_or_dead(s
, ots
, -1);
3502 ots
->val_type
= TEMP_VAL_REG
;
3503 ots
->mem_coherent
= 0;
3504 s
->reg_to_temp
[ots
->reg
] = ots
;
3505 if (NEED_SYNC_ARG(0)) {
3506 temp_sync(s
, ots
, allocated_regs
, 0, 0);
3512 * Specialized code generation for INDEX_op_dup_vec.
3514 static void tcg_reg_alloc_dup(TCGContext
*s
, const TCGOp
*op
)
3516 const TCGLifeData arg_life
= op
->life
;
3517 TCGRegSet dup_out_regs
, dup_in_regs
;
3519 TCGType itype
, vtype
;
3520 intptr_t endian_fixup
;
3524 ots
= arg_temp(op
->args
[0]);
3525 its
= arg_temp(op
->args
[1]);
3527 /* ENV should not be modified. */
3528 tcg_debug_assert(!ots
->fixed_reg
);
3531 vece
= TCGOP_VECE(op
);
3532 vtype
= TCGOP_VECL(op
) + TCG_TYPE_V64
;
3534 if (its
->val_type
== TEMP_VAL_CONST
) {
3535 /* Propagate constant via movi -> dupi. */
3536 tcg_target_ulong val
= its
->val
;
3537 if (IS_DEAD_ARG(1)) {
3540 tcg_reg_alloc_do_movi(s
, ots
, val
, arg_life
, op
->output_pref
[0]);
3544 dup_out_regs
= tcg_op_defs
[INDEX_op_dup_vec
].args_ct
[0].regs
;
3545 dup_in_regs
= tcg_op_defs
[INDEX_op_dup_vec
].args_ct
[1].regs
;
3547 /* Allocate the output register now. */
3548 if (ots
->val_type
!= TEMP_VAL_REG
) {
3549 TCGRegSet allocated_regs
= s
->reserved_regs
;
3551 if (!IS_DEAD_ARG(1) && its
->val_type
== TEMP_VAL_REG
) {
3552 /* Make sure to not spill the input register. */
3553 tcg_regset_set_reg(allocated_regs
, its
->reg
);
3555 ots
->reg
= tcg_reg_alloc(s
, dup_out_regs
, allocated_regs
,
3556 op
->output_pref
[0], ots
->indirect_base
);
3557 ots
->val_type
= TEMP_VAL_REG
;
3558 ots
->mem_coherent
= 0;
3559 s
->reg_to_temp
[ots
->reg
] = ots
;
3562 switch (its
->val_type
) {
3565 * The dup constriaints must be broad, covering all possible VECE.
3566 * However, tcg_op_dup_vec() gets to see the VECE and we allow it
3567 * to fail, indicating that extra moves are required for that case.
3569 if (tcg_regset_test_reg(dup_in_regs
, its
->reg
)) {
3570 if (tcg_out_dup_vec(s
, vtype
, vece
, ots
->reg
, its
->reg
)) {
3573 /* Try again from memory or a vector input register. */
3575 if (!its
->mem_coherent
) {
3577 * The input register is not synced, and so an extra store
3578 * would be required to use memory. Attempt an integer-vector
3579 * register move first. We do not have a TCGRegSet for this.
3581 if (tcg_out_mov(s
, itype
, ots
->reg
, its
->reg
)) {
3584 /* Sync the temp back to its slot and load from there. */
3585 temp_sync(s
, its
, s
->reserved_regs
, 0, 0);
3590 #ifdef HOST_WORDS_BIGENDIAN
3591 endian_fixup
= itype
== TCG_TYPE_I32
? 4 : 8;
3592 endian_fixup
-= 1 << vece
;
3596 if (tcg_out_dupm_vec(s
, vtype
, vece
, ots
->reg
, its
->mem_base
->reg
,
3597 its
->mem_offset
+ endian_fixup
)) {
3600 tcg_out_ld(s
, itype
, ots
->reg
, its
->mem_base
->reg
, its
->mem_offset
);
3604 g_assert_not_reached();
3607 /* We now have a vector input register, so dup must succeed. */
3608 ok
= tcg_out_dup_vec(s
, vtype
, vece
, ots
->reg
, ots
->reg
);
3609 tcg_debug_assert(ok
);
3612 if (IS_DEAD_ARG(1)) {
3615 if (NEED_SYNC_ARG(0)) {
3616 temp_sync(s
, ots
, s
->reserved_regs
, 0, 0);
3618 if (IS_DEAD_ARG(0)) {
3623 static void tcg_reg_alloc_op(TCGContext
*s
, const TCGOp
*op
)
3625 const TCGLifeData arg_life
= op
->life
;
3626 const TCGOpDef
* const def
= &tcg_op_defs
[op
->opc
];
3627 TCGRegSet i_allocated_regs
;
3628 TCGRegSet o_allocated_regs
;
3629 int i
, k
, nb_iargs
, nb_oargs
;
3632 const TCGArgConstraint
*arg_ct
;
3634 TCGArg new_args
[TCG_MAX_OP_ARGS
];
3635 int const_args
[TCG_MAX_OP_ARGS
];
3637 nb_oargs
= def
->nb_oargs
;
3638 nb_iargs
= def
->nb_iargs
;
3640 /* copy constants */
3641 memcpy(new_args
+ nb_oargs
+ nb_iargs
,
3642 op
->args
+ nb_oargs
+ nb_iargs
,
3643 sizeof(TCGArg
) * def
->nb_cargs
);
3645 i_allocated_regs
= s
->reserved_regs
;
3646 o_allocated_regs
= s
->reserved_regs
;
3648 /* satisfy input constraints */
3649 for (k
= 0; k
< nb_iargs
; k
++) {
3650 TCGRegSet i_preferred_regs
, o_preferred_regs
;
3652 i
= def
->args_ct
[nb_oargs
+ k
].sort_index
;
3654 arg_ct
= &def
->args_ct
[i
];
3657 if (ts
->val_type
== TEMP_VAL_CONST
3658 && tcg_target_const_match(ts
->val
, ts
->type
, arg_ct
)) {
3659 /* constant is OK for instruction */
3661 new_args
[i
] = ts
->val
;
3665 i_preferred_regs
= o_preferred_regs
= 0;
3666 if (arg_ct
->ialias
) {
3667 o_preferred_regs
= op
->output_pref
[arg_ct
->alias_index
];
3668 if (ts
->fixed_reg
) {
3669 /* if fixed register, we must allocate a new register
3670 if the alias is not the same register */
3671 if (arg
!= op
->args
[arg_ct
->alias_index
]) {
3672 goto allocate_in_reg
;
3675 /* if the input is aliased to an output and if it is
3676 not dead after the instruction, we must allocate
3677 a new register and move it */
3678 if (!IS_DEAD_ARG(i
)) {
3679 goto allocate_in_reg
;
3682 /* check if the current register has already been allocated
3683 for another input aliased to an output */
3684 if (ts
->val_type
== TEMP_VAL_REG
) {
3687 for (k2
= 0 ; k2
< k
; k2
++) {
3688 i2
= def
->args_ct
[nb_oargs
+ k2
].sort_index
;
3689 if (def
->args_ct
[i2
].ialias
&& reg
== new_args
[i2
]) {
3690 goto allocate_in_reg
;
3694 i_preferred_regs
= o_preferred_regs
;
3698 temp_load(s
, ts
, arg_ct
->regs
, i_allocated_regs
, i_preferred_regs
);
3701 if (tcg_regset_test_reg(arg_ct
->regs
, reg
)) {
3702 /* nothing to do : the constraint is satisfied */
3705 /* allocate a new register matching the constraint
3706 and move the temporary register into it */
3707 temp_load(s
, ts
, tcg_target_available_regs
[ts
->type
],
3708 i_allocated_regs
, 0);
3709 reg
= tcg_reg_alloc(s
, arg_ct
->regs
, i_allocated_regs
,
3710 o_preferred_regs
, ts
->indirect_base
);
3711 if (!tcg_out_mov(s
, ts
->type
, reg
, ts
->reg
)) {
3713 * Cross register class move not supported. Sync the
3714 * temp back to its slot and load from there.
3716 temp_sync(s
, ts
, i_allocated_regs
, 0, 0);
3717 tcg_out_ld(s
, ts
->type
, reg
,
3718 ts
->mem_base
->reg
, ts
->mem_offset
);
3723 tcg_regset_set_reg(i_allocated_regs
, reg
);
3726 /* mark dead temporaries and free the associated registers */
3727 for (i
= nb_oargs
; i
< nb_oargs
+ nb_iargs
; i
++) {
3728 if (IS_DEAD_ARG(i
)) {
3729 temp_dead(s
, arg_temp(op
->args
[i
]));
3733 if (def
->flags
& TCG_OPF_BB_END
) {
3734 tcg_reg_alloc_bb_end(s
, i_allocated_regs
);
3736 if (def
->flags
& TCG_OPF_CALL_CLOBBER
) {
3737 /* XXX: permit generic clobber register list ? */
3738 for (i
= 0; i
< TCG_TARGET_NB_REGS
; i
++) {
3739 if (tcg_regset_test_reg(tcg_target_call_clobber_regs
, i
)) {
3740 tcg_reg_free(s
, i
, i_allocated_regs
);
3744 if (def
->flags
& TCG_OPF_SIDE_EFFECTS
) {
3745 /* sync globals if the op has side effects and might trigger
3747 sync_globals(s
, i_allocated_regs
);
3750 /* satisfy the output constraints */
3751 for(k
= 0; k
< nb_oargs
; k
++) {
3752 i
= def
->args_ct
[k
].sort_index
;
3754 arg_ct
= &def
->args_ct
[i
];
3757 /* ENV should not be modified. */
3758 tcg_debug_assert(!ts
->fixed_reg
);
3760 if (arg_ct
->oalias
&& !const_args
[arg_ct
->alias_index
]) {
3761 reg
= new_args
[arg_ct
->alias_index
];
3762 } else if (arg_ct
->newreg
) {
3763 reg
= tcg_reg_alloc(s
, arg_ct
->regs
,
3764 i_allocated_regs
| o_allocated_regs
,
3765 op
->output_pref
[k
], ts
->indirect_base
);
3767 reg
= tcg_reg_alloc(s
, arg_ct
->regs
, o_allocated_regs
,
3768 op
->output_pref
[k
], ts
->indirect_base
);
3770 tcg_regset_set_reg(o_allocated_regs
, reg
);
3771 if (ts
->val_type
== TEMP_VAL_REG
) {
3772 s
->reg_to_temp
[ts
->reg
] = NULL
;
3774 ts
->val_type
= TEMP_VAL_REG
;
3777 * Temp value is modified, so the value kept in memory is
3778 * potentially not the same.
3780 ts
->mem_coherent
= 0;
3781 s
->reg_to_temp
[reg
] = ts
;
3786 /* emit instruction */
3787 if (def
->flags
& TCG_OPF_VECTOR
) {
3788 tcg_out_vec_op(s
, op
->opc
, TCGOP_VECL(op
), TCGOP_VECE(op
),
3789 new_args
, const_args
);
3791 tcg_out_op(s
, op
->opc
, new_args
, const_args
);
3794 /* move the outputs in the correct register if needed */
3795 for(i
= 0; i
< nb_oargs
; i
++) {
3796 ts
= arg_temp(op
->args
[i
]);
3798 /* ENV should not be modified. */
3799 tcg_debug_assert(!ts
->fixed_reg
);
3801 if (NEED_SYNC_ARG(i
)) {
3802 temp_sync(s
, ts
, o_allocated_regs
, 0, IS_DEAD_ARG(i
));
3803 } else if (IS_DEAD_ARG(i
)) {
3809 #ifdef TCG_TARGET_STACK_GROWSUP
3810 #define STACK_DIR(x) (-(x))
3812 #define STACK_DIR(x) (x)
3815 static void tcg_reg_alloc_call(TCGContext
*s
, TCGOp
*op
)
3817 const int nb_oargs
= TCGOP_CALLO(op
);
3818 const int nb_iargs
= TCGOP_CALLI(op
);
3819 const TCGLifeData arg_life
= op
->life
;
3820 int flags
, nb_regs
, i
;
3824 intptr_t stack_offset
;
3825 size_t call_stack_size
;
3826 tcg_insn_unit
*func_addr
;
3828 TCGRegSet allocated_regs
;
3830 func_addr
= (tcg_insn_unit
*)(intptr_t)op
->args
[nb_oargs
+ nb_iargs
];
3831 flags
= op
->args
[nb_oargs
+ nb_iargs
+ 1];
3833 nb_regs
= ARRAY_SIZE(tcg_target_call_iarg_regs
);
3834 if (nb_regs
> nb_iargs
) {
3838 /* assign stack slots first */
3839 call_stack_size
= (nb_iargs
- nb_regs
) * sizeof(tcg_target_long
);
3840 call_stack_size
= (call_stack_size
+ TCG_TARGET_STACK_ALIGN
- 1) &
3841 ~(TCG_TARGET_STACK_ALIGN
- 1);
3842 allocate_args
= (call_stack_size
> TCG_STATIC_CALL_ARGS_SIZE
);
3843 if (allocate_args
) {
3844 /* XXX: if more than TCG_STATIC_CALL_ARGS_SIZE is needed,
3845 preallocate call stack */
3849 stack_offset
= TCG_TARGET_CALL_STACK_OFFSET
;
3850 for (i
= nb_regs
; i
< nb_iargs
; i
++) {
3851 arg
= op
->args
[nb_oargs
+ i
];
3852 #ifdef TCG_TARGET_STACK_GROWSUP
3853 stack_offset
-= sizeof(tcg_target_long
);
3855 if (arg
!= TCG_CALL_DUMMY_ARG
) {
3857 temp_load(s
, ts
, tcg_target_available_regs
[ts
->type
],
3858 s
->reserved_regs
, 0);
3859 tcg_out_st(s
, ts
->type
, ts
->reg
, TCG_REG_CALL_STACK
, stack_offset
);
3861 #ifndef TCG_TARGET_STACK_GROWSUP
3862 stack_offset
+= sizeof(tcg_target_long
);
3866 /* assign input registers */
3867 allocated_regs
= s
->reserved_regs
;
3868 for (i
= 0; i
< nb_regs
; i
++) {
3869 arg
= op
->args
[nb_oargs
+ i
];
3870 if (arg
!= TCG_CALL_DUMMY_ARG
) {
3872 reg
= tcg_target_call_iarg_regs
[i
];
3874 if (ts
->val_type
== TEMP_VAL_REG
) {
3875 if (ts
->reg
!= reg
) {
3876 tcg_reg_free(s
, reg
, allocated_regs
);
3877 if (!tcg_out_mov(s
, ts
->type
, reg
, ts
->reg
)) {
3879 * Cross register class move not supported. Sync the
3880 * temp back to its slot and load from there.
3882 temp_sync(s
, ts
, allocated_regs
, 0, 0);
3883 tcg_out_ld(s
, ts
->type
, reg
,
3884 ts
->mem_base
->reg
, ts
->mem_offset
);
3888 TCGRegSet arg_set
= 0;
3890 tcg_reg_free(s
, reg
, allocated_regs
);
3891 tcg_regset_set_reg(arg_set
, reg
);
3892 temp_load(s
, ts
, arg_set
, allocated_regs
, 0);
3895 tcg_regset_set_reg(allocated_regs
, reg
);
3899 /* mark dead temporaries and free the associated registers */
3900 for (i
= nb_oargs
; i
< nb_iargs
+ nb_oargs
; i
++) {
3901 if (IS_DEAD_ARG(i
)) {
3902 temp_dead(s
, arg_temp(op
->args
[i
]));
3906 /* clobber call registers */
3907 for (i
= 0; i
< TCG_TARGET_NB_REGS
; i
++) {
3908 if (tcg_regset_test_reg(tcg_target_call_clobber_regs
, i
)) {
3909 tcg_reg_free(s
, i
, allocated_regs
);
3913 /* Save globals if they might be written by the helper, sync them if
3914 they might be read. */
3915 if (flags
& TCG_CALL_NO_READ_GLOBALS
) {
3917 } else if (flags
& TCG_CALL_NO_WRITE_GLOBALS
) {
3918 sync_globals(s
, allocated_regs
);
3920 save_globals(s
, allocated_regs
);
3923 tcg_out_call(s
, func_addr
);
3925 /* assign output registers and emit moves if needed */
3926 for(i
= 0; i
< nb_oargs
; i
++) {
3930 /* ENV should not be modified. */
3931 tcg_debug_assert(!ts
->fixed_reg
);
3933 reg
= tcg_target_call_oarg_regs
[i
];
3934 tcg_debug_assert(s
->reg_to_temp
[reg
] == NULL
);
3935 if (ts
->val_type
== TEMP_VAL_REG
) {
3936 s
->reg_to_temp
[ts
->reg
] = NULL
;
3938 ts
->val_type
= TEMP_VAL_REG
;
3940 ts
->mem_coherent
= 0;
3941 s
->reg_to_temp
[reg
] = ts
;
3942 if (NEED_SYNC_ARG(i
)) {
3943 temp_sync(s
, ts
, allocated_regs
, 0, IS_DEAD_ARG(i
));
3944 } else if (IS_DEAD_ARG(i
)) {
3950 #ifdef CONFIG_PROFILER
3952 /* avoid copy/paste errors */
3953 #define PROF_ADD(to, from, field) \
3955 (to)->field += qatomic_read(&((from)->field)); \
3958 #define PROF_MAX(to, from, field) \
3960 typeof((from)->field) val__ = qatomic_read(&((from)->field)); \
3961 if (val__ > (to)->field) { \
3962 (to)->field = val__; \
3966 /* Pass in a zero'ed @prof */
3968 void tcg_profile_snapshot(TCGProfile
*prof
, bool counters
, bool table
)
3970 unsigned int n_ctxs
= qatomic_read(&n_tcg_ctxs
);
3973 for (i
= 0; i
< n_ctxs
; i
++) {
3974 TCGContext
*s
= qatomic_read(&tcg_ctxs
[i
]);
3975 const TCGProfile
*orig
= &s
->prof
;
3978 PROF_ADD(prof
, orig
, cpu_exec_time
);
3979 PROF_ADD(prof
, orig
, tb_count1
);
3980 PROF_ADD(prof
, orig
, tb_count
);
3981 PROF_ADD(prof
, orig
, op_count
);
3982 PROF_MAX(prof
, orig
, op_count_max
);
3983 PROF_ADD(prof
, orig
, temp_count
);
3984 PROF_MAX(prof
, orig
, temp_count_max
);
3985 PROF_ADD(prof
, orig
, del_op_count
);
3986 PROF_ADD(prof
, orig
, code_in_len
);
3987 PROF_ADD(prof
, orig
, code_out_len
);
3988 PROF_ADD(prof
, orig
, search_out_len
);
3989 PROF_ADD(prof
, orig
, interm_time
);
3990 PROF_ADD(prof
, orig
, code_time
);
3991 PROF_ADD(prof
, orig
, la_time
);
3992 PROF_ADD(prof
, orig
, opt_time
);
3993 PROF_ADD(prof
, orig
, restore_count
);
3994 PROF_ADD(prof
, orig
, restore_time
);
3999 for (i
= 0; i
< NB_OPS
; i
++) {
4000 PROF_ADD(prof
, orig
, table_op_count
[i
]);
4009 static void tcg_profile_snapshot_counters(TCGProfile
*prof
)
4011 tcg_profile_snapshot(prof
, true, false);
4014 static void tcg_profile_snapshot_table(TCGProfile
*prof
)
4016 tcg_profile_snapshot(prof
, false, true);
4019 void tcg_dump_op_count(void)
4021 TCGProfile prof
= {};
4024 tcg_profile_snapshot_table(&prof
);
4025 for (i
= 0; i
< NB_OPS
; i
++) {
4026 qemu_printf("%s %" PRId64
"\n", tcg_op_defs
[i
].name
,
4027 prof
.table_op_count
[i
]);
4031 int64_t tcg_cpu_exec_time(void)
4033 unsigned int n_ctxs
= qatomic_read(&n_tcg_ctxs
);
4037 for (i
= 0; i
< n_ctxs
; i
++) {
4038 const TCGContext
*s
= qatomic_read(&tcg_ctxs
[i
]);
4039 const TCGProfile
*prof
= &s
->prof
;
4041 ret
+= qatomic_read(&prof
->cpu_exec_time
);
4046 void tcg_dump_op_count(void)
4048 qemu_printf("[TCG profiler not compiled]\n");
4051 int64_t tcg_cpu_exec_time(void)
4053 error_report("%s: TCG profiler not compiled", __func__
);
4059 int tcg_gen_code(TCGContext
*s
, TranslationBlock
*tb
)
4061 #ifdef CONFIG_PROFILER
4062 TCGProfile
*prof
= &s
->prof
;
4067 #ifdef CONFIG_PROFILER
4071 QTAILQ_FOREACH(op
, &s
->ops
, link
) {
4074 qatomic_set(&prof
->op_count
, prof
->op_count
+ n
);
4075 if (n
> prof
->op_count_max
) {
4076 qatomic_set(&prof
->op_count_max
, n
);
4080 qatomic_set(&prof
->temp_count
, prof
->temp_count
+ n
);
4081 if (n
> prof
->temp_count_max
) {
4082 qatomic_set(&prof
->temp_count_max
, n
);
4088 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP
)
4089 && qemu_log_in_addr_range(tb
->pc
))) {
4090 FILE *logfile
= qemu_log_lock();
4092 tcg_dump_ops(s
, false);
4094 qemu_log_unlock(logfile
);
4098 #ifdef CONFIG_DEBUG_TCG
4099 /* Ensure all labels referenced have been emitted. */
4104 QSIMPLEQ_FOREACH(l
, &s
->labels
, next
) {
4105 if (unlikely(!l
->present
) && l
->refs
) {
4106 qemu_log_mask(CPU_LOG_TB_OP
,
4107 "$L%d referenced but not present.\n", l
->id
);
4115 #ifdef CONFIG_PROFILER
4116 qatomic_set(&prof
->opt_time
, prof
->opt_time
- profile_getclock());
4119 #ifdef USE_TCG_OPTIMIZATIONS
4123 #ifdef CONFIG_PROFILER
4124 qatomic_set(&prof
->opt_time
, prof
->opt_time
+ profile_getclock());
4125 qatomic_set(&prof
->la_time
, prof
->la_time
- profile_getclock());
4128 reachable_code_pass(s
);
4131 if (s
->nb_indirects
> 0) {
4133 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_IND
)
4134 && qemu_log_in_addr_range(tb
->pc
))) {
4135 FILE *logfile
= qemu_log_lock();
4136 qemu_log("OP before indirect lowering:\n");
4137 tcg_dump_ops(s
, false);
4139 qemu_log_unlock(logfile
);
4142 /* Replace indirect temps with direct temps. */
4143 if (liveness_pass_2(s
)) {
4144 /* If changes were made, re-run liveness. */
4149 #ifdef CONFIG_PROFILER
4150 qatomic_set(&prof
->la_time
, prof
->la_time
+ profile_getclock());
4154 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_OPT
)
4155 && qemu_log_in_addr_range(tb
->pc
))) {
4156 FILE *logfile
= qemu_log_lock();
4157 qemu_log("OP after optimization and liveness analysis:\n");
4158 tcg_dump_ops(s
, true);
4160 qemu_log_unlock(logfile
);
4164 tcg_reg_alloc_start(s
);
4166 s
->code_buf
= tb
->tc
.ptr
;
4167 s
->code_ptr
= tb
->tc
.ptr
;
4169 #ifdef TCG_TARGET_NEED_LDST_LABELS
4170 QSIMPLEQ_INIT(&s
->ldst_labels
);
4172 #ifdef TCG_TARGET_NEED_POOL_LABELS
4173 s
->pool_labels
= NULL
;
4177 QTAILQ_FOREACH(op
, &s
->ops
, link
) {
4178 TCGOpcode opc
= op
->opc
;
4180 #ifdef CONFIG_PROFILER
4181 qatomic_set(&prof
->table_op_count
[opc
], prof
->table_op_count
[opc
] + 1);
4185 case INDEX_op_mov_i32
:
4186 case INDEX_op_mov_i64
:
4187 case INDEX_op_mov_vec
:
4188 tcg_reg_alloc_mov(s
, op
);
4190 case INDEX_op_movi_i32
:
4191 case INDEX_op_movi_i64
:
4192 case INDEX_op_dupi_vec
:
4193 tcg_reg_alloc_movi(s
, op
);
4195 case INDEX_op_dup_vec
:
4196 tcg_reg_alloc_dup(s
, op
);
4198 case INDEX_op_insn_start
:
4199 if (num_insns
>= 0) {
4200 size_t off
= tcg_current_code_size(s
);
4201 s
->gen_insn_end_off
[num_insns
] = off
;
4202 /* Assert that we do not overflow our stored offset. */
4203 assert(s
->gen_insn_end_off
[num_insns
] == off
);
4206 for (i
= 0; i
< TARGET_INSN_START_WORDS
; ++i
) {
4208 #if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
4209 a
= deposit64(op
->args
[i
* 2], 32, 32, op
->args
[i
* 2 + 1]);
4213 s
->gen_insn_data
[num_insns
][i
] = a
;
4216 case INDEX_op_discard
:
4217 temp_dead(s
, arg_temp(op
->args
[0]));
4219 case INDEX_op_set_label
:
4220 tcg_reg_alloc_bb_end(s
, s
->reserved_regs
);
4221 tcg_out_label(s
, arg_label(op
->args
[0]), s
->code_ptr
);
4224 tcg_reg_alloc_call(s
, op
);
4227 /* Sanity check that we've not introduced any unhandled opcodes. */
4228 tcg_debug_assert(tcg_op_supported(opc
));
4229 /* Note: in order to speed up the code, it would be much
4230 faster to have specialized register allocator functions for
4231 some common argument patterns */
4232 tcg_reg_alloc_op(s
, op
);
4235 #ifdef CONFIG_DEBUG_TCG
4238 /* Test for (pending) buffer overflow. The assumption is that any
4239 one operation beginning below the high water mark cannot overrun
4240 the buffer completely. Thus we can test for overflow after
4241 generating code without having to check during generation. */
4242 if (unlikely((void *)s
->code_ptr
> s
->code_gen_highwater
)) {
4245 /* Test for TB overflow, as seen by gen_insn_end_off. */
4246 if (unlikely(tcg_current_code_size(s
) > UINT16_MAX
)) {
4250 tcg_debug_assert(num_insns
>= 0);
4251 s
->gen_insn_end_off
[num_insns
] = tcg_current_code_size(s
);
4253 /* Generate TB finalization at the end of block */
4254 #ifdef TCG_TARGET_NEED_LDST_LABELS
4255 i
= tcg_out_ldst_finalize(s
);
4260 #ifdef TCG_TARGET_NEED_POOL_LABELS
4261 i
= tcg_out_pool_finalize(s
);
4266 if (!tcg_resolve_relocs(s
)) {
4270 /* flush instruction cache */
4271 flush_icache_range((uintptr_t)s
->code_buf
, (uintptr_t)s
->code_ptr
);
4273 return tcg_current_code_size(s
);
4276 #ifdef CONFIG_PROFILER
4277 void tcg_dump_info(void)
4279 TCGProfile prof
= {};
4280 const TCGProfile
*s
;
4282 int64_t tb_div_count
;
4285 tcg_profile_snapshot_counters(&prof
);
4287 tb_count
= s
->tb_count
;
4288 tb_div_count
= tb_count
? tb_count
: 1;
4289 tot
= s
->interm_time
+ s
->code_time
;
4291 qemu_printf("JIT cycles %" PRId64
" (%0.3f s at 2.4 GHz)\n",
4293 qemu_printf("translated TBs %" PRId64
" (aborted=%" PRId64
4295 tb_count
, s
->tb_count1
- tb_count
,
4296 (double)(s
->tb_count1
- s
->tb_count
)
4297 / (s
->tb_count1
? s
->tb_count1
: 1) * 100.0);
4298 qemu_printf("avg ops/TB %0.1f max=%d\n",
4299 (double)s
->op_count
/ tb_div_count
, s
->op_count_max
);
4300 qemu_printf("deleted ops/TB %0.2f\n",
4301 (double)s
->del_op_count
/ tb_div_count
);
4302 qemu_printf("avg temps/TB %0.2f max=%d\n",
4303 (double)s
->temp_count
/ tb_div_count
, s
->temp_count_max
);
4304 qemu_printf("avg host code/TB %0.1f\n",
4305 (double)s
->code_out_len
/ tb_div_count
);
4306 qemu_printf("avg search data/TB %0.1f\n",
4307 (double)s
->search_out_len
/ tb_div_count
);
4309 qemu_printf("cycles/op %0.1f\n",
4310 s
->op_count
? (double)tot
/ s
->op_count
: 0);
4311 qemu_printf("cycles/in byte %0.1f\n",
4312 s
->code_in_len
? (double)tot
/ s
->code_in_len
: 0);
4313 qemu_printf("cycles/out byte %0.1f\n",
4314 s
->code_out_len
? (double)tot
/ s
->code_out_len
: 0);
4315 qemu_printf("cycles/search byte %0.1f\n",
4316 s
->search_out_len
? (double)tot
/ s
->search_out_len
: 0);
4320 qemu_printf(" gen_interm time %0.1f%%\n",
4321 (double)s
->interm_time
/ tot
* 100.0);
4322 qemu_printf(" gen_code time %0.1f%%\n",
4323 (double)s
->code_time
/ tot
* 100.0);
4324 qemu_printf("optim./code time %0.1f%%\n",
4325 (double)s
->opt_time
/ (s
->code_time
? s
->code_time
: 1)
4327 qemu_printf("liveness/code time %0.1f%%\n",
4328 (double)s
->la_time
/ (s
->code_time
? s
->code_time
: 1) * 100.0);
4329 qemu_printf("cpu_restore count %" PRId64
"\n",
4331 qemu_printf(" avg cycles %0.1f\n",
4332 s
->restore_count
? (double)s
->restore_time
/ s
->restore_count
: 0);
4335 void tcg_dump_info(void)
4337 qemu_printf("[TCG profiler not compiled]\n");
4341 #ifdef ELF_HOST_MACHINE
4342 /* In order to use this feature, the backend needs to do three things:
4344 (1) Define ELF_HOST_MACHINE to indicate both what value to
4345 put into the ELF image and to indicate support for the feature.
4347 (2) Define tcg_register_jit. This should create a buffer containing
4348 the contents of a .debug_frame section that describes the post-
4349 prologue unwind info for the tcg machine.
4351 (3) Call tcg_register_jit_int, with the constructed .debug_frame.
4354 /* Begin GDB interface. THE FOLLOWING MUST MATCH GDB DOCS. */
4361 struct jit_code_entry
{
4362 struct jit_code_entry
*next_entry
;
4363 struct jit_code_entry
*prev_entry
;
4364 const void *symfile_addr
;
4365 uint64_t symfile_size
;
4368 struct jit_descriptor
{
4370 uint32_t action_flag
;
4371 struct jit_code_entry
*relevant_entry
;
4372 struct jit_code_entry
*first_entry
;
4375 void __jit_debug_register_code(void) __attribute__((noinline
));
4376 void __jit_debug_register_code(void)
4381 /* Must statically initialize the version, because GDB may check
4382 the version before we can set it. */
4383 struct jit_descriptor __jit_debug_descriptor
= { 1, 0, 0, 0 };
4385 /* End GDB interface. */
4387 static int find_string(const char *strtab
, const char *str
)
4389 const char *p
= strtab
+ 1;
4392 if (strcmp(p
, str
) == 0) {
4399 static void tcg_register_jit_int(void *buf_ptr
, size_t buf_size
,
4400 const void *debug_frame
,
4401 size_t debug_frame_size
)
4403 struct __attribute__((packed
)) DebugInfo
{
4410 uintptr_t cu_low_pc
;
4411 uintptr_t cu_high_pc
;
4414 uintptr_t fn_low_pc
;
4415 uintptr_t fn_high_pc
;
4424 struct DebugInfo di
;
4429 struct ElfImage
*img
;
4431 static const struct ElfImage img_template
= {
4433 .e_ident
[EI_MAG0
] = ELFMAG0
,
4434 .e_ident
[EI_MAG1
] = ELFMAG1
,
4435 .e_ident
[EI_MAG2
] = ELFMAG2
,
4436 .e_ident
[EI_MAG3
] = ELFMAG3
,
4437 .e_ident
[EI_CLASS
] = ELF_CLASS
,
4438 .e_ident
[EI_DATA
] = ELF_DATA
,
4439 .e_ident
[EI_VERSION
] = EV_CURRENT
,
4441 .e_machine
= ELF_HOST_MACHINE
,
4442 .e_version
= EV_CURRENT
,
4443 .e_phoff
= offsetof(struct ElfImage
, phdr
),
4444 .e_shoff
= offsetof(struct ElfImage
, shdr
),
4445 .e_ehsize
= sizeof(ElfW(Shdr
)),
4446 .e_phentsize
= sizeof(ElfW(Phdr
)),
4448 .e_shentsize
= sizeof(ElfW(Shdr
)),
4449 .e_shnum
= ARRAY_SIZE(img
->shdr
),
4450 .e_shstrndx
= ARRAY_SIZE(img
->shdr
) - 1,
4451 #ifdef ELF_HOST_FLAGS
4452 .e_flags
= ELF_HOST_FLAGS
,
4455 .e_ident
[EI_OSABI
] = ELF_OSABI
,
4463 [0] = { .sh_type
= SHT_NULL
},
4464 /* Trick: The contents of code_gen_buffer are not present in
4465 this fake ELF file; that got allocated elsewhere. Therefore
4466 we mark .text as SHT_NOBITS (similar to .bss) so that readers
4467 will not look for contents. We can record any address. */
4469 .sh_type
= SHT_NOBITS
,
4470 .sh_flags
= SHF_EXECINSTR
| SHF_ALLOC
,
4472 [2] = { /* .debug_info */
4473 .sh_type
= SHT_PROGBITS
,
4474 .sh_offset
= offsetof(struct ElfImage
, di
),
4475 .sh_size
= sizeof(struct DebugInfo
),
4477 [3] = { /* .debug_abbrev */
4478 .sh_type
= SHT_PROGBITS
,
4479 .sh_offset
= offsetof(struct ElfImage
, da
),
4480 .sh_size
= sizeof(img
->da
),
4482 [4] = { /* .debug_frame */
4483 .sh_type
= SHT_PROGBITS
,
4484 .sh_offset
= sizeof(struct ElfImage
),
4486 [5] = { /* .symtab */
4487 .sh_type
= SHT_SYMTAB
,
4488 .sh_offset
= offsetof(struct ElfImage
, sym
),
4489 .sh_size
= sizeof(img
->sym
),
4491 .sh_link
= ARRAY_SIZE(img
->shdr
) - 1,
4492 .sh_entsize
= sizeof(ElfW(Sym
)),
4494 [6] = { /* .strtab */
4495 .sh_type
= SHT_STRTAB
,
4496 .sh_offset
= offsetof(struct ElfImage
, str
),
4497 .sh_size
= sizeof(img
->str
),
4501 [1] = { /* code_gen_buffer */
4502 .st_info
= ELF_ST_INFO(STB_GLOBAL
, STT_FUNC
),
4507 .len
= sizeof(struct DebugInfo
) - 4,
4509 .ptr_size
= sizeof(void *),
4511 .cu_lang
= 0x8001, /* DW_LANG_Mips_Assembler */
4513 .fn_name
= "code_gen_buffer"
4516 1, /* abbrev number (the cu) */
4517 0x11, 1, /* DW_TAG_compile_unit, has children */
4518 0x13, 0x5, /* DW_AT_language, DW_FORM_data2 */
4519 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
4520 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
4521 0, 0, /* end of abbrev */
4522 2, /* abbrev number (the fn) */
4523 0x2e, 0, /* DW_TAG_subprogram, no children */
4524 0x3, 0x8, /* DW_AT_name, DW_FORM_string */
4525 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
4526 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
4527 0, 0, /* end of abbrev */
4528 0 /* no more abbrev */
4530 .str
= "\0" ".text\0" ".debug_info\0" ".debug_abbrev\0"
4531 ".debug_frame\0" ".symtab\0" ".strtab\0" "code_gen_buffer",
4534 /* We only need a single jit entry; statically allocate it. */
4535 static struct jit_code_entry one_entry
;
4537 uintptr_t buf
= (uintptr_t)buf_ptr
;
4538 size_t img_size
= sizeof(struct ElfImage
) + debug_frame_size
;
4539 DebugFrameHeader
*dfh
;
4541 img
= g_malloc(img_size
);
4542 *img
= img_template
;
4544 img
->phdr
.p_vaddr
= buf
;
4545 img
->phdr
.p_paddr
= buf
;
4546 img
->phdr
.p_memsz
= buf_size
;
4548 img
->shdr
[1].sh_name
= find_string(img
->str
, ".text");
4549 img
->shdr
[1].sh_addr
= buf
;
4550 img
->shdr
[1].sh_size
= buf_size
;
4552 img
->shdr
[2].sh_name
= find_string(img
->str
, ".debug_info");
4553 img
->shdr
[3].sh_name
= find_string(img
->str
, ".debug_abbrev");
4555 img
->shdr
[4].sh_name
= find_string(img
->str
, ".debug_frame");
4556 img
->shdr
[4].sh_size
= debug_frame_size
;
4558 img
->shdr
[5].sh_name
= find_string(img
->str
, ".symtab");
4559 img
->shdr
[6].sh_name
= find_string(img
->str
, ".strtab");
4561 img
->sym
[1].st_name
= find_string(img
->str
, "code_gen_buffer");
4562 img
->sym
[1].st_value
= buf
;
4563 img
->sym
[1].st_size
= buf_size
;
4565 img
->di
.cu_low_pc
= buf
;
4566 img
->di
.cu_high_pc
= buf
+ buf_size
;
4567 img
->di
.fn_low_pc
= buf
;
4568 img
->di
.fn_high_pc
= buf
+ buf_size
;
4570 dfh
= (DebugFrameHeader
*)(img
+ 1);
4571 memcpy(dfh
, debug_frame
, debug_frame_size
);
4572 dfh
->fde
.func_start
= buf
;
4573 dfh
->fde
.func_len
= buf_size
;
4576 /* Enable this block to be able to debug the ELF image file creation.
4577 One can use readelf, objdump, or other inspection utilities. */
4579 FILE *f
= fopen("/tmp/qemu.jit", "w+b");
4581 if (fwrite(img
, img_size
, 1, f
) != img_size
) {
4582 /* Avoid stupid unused return value warning for fwrite. */
4589 one_entry
.symfile_addr
= img
;
4590 one_entry
.symfile_size
= img_size
;
4592 __jit_debug_descriptor
.action_flag
= JIT_REGISTER_FN
;
4593 __jit_debug_descriptor
.relevant_entry
= &one_entry
;
4594 __jit_debug_descriptor
.first_entry
= &one_entry
;
4595 __jit_debug_register_code();
4598 /* No support for the feature. Provide the entry point expected by exec.c,
4599 and implement the internal function we declared earlier. */
4601 static void tcg_register_jit_int(void *buf
, size_t size
,
4602 const void *debug_frame
,
4603 size_t debug_frame_size
)
4607 void tcg_register_jit(void *buf
, size_t buf_size
)
4610 #endif /* ELF_HOST_MACHINE */
4612 #if !TCG_TARGET_MAYBE_vec
4613 void tcg_expand_vec_op(TCGOpcode o
, TCGType t
, unsigned e
, TCGArg a0
, ...)
4615 g_assert_not_reached();