]> git.proxmox.com Git - mirror_qemu.git/blame - tcg/tcg.c
target/arm: Initialize ARMMMUFaultInfo in v7m_stack_read/write
[mirror_qemu.git] / tcg / tcg.c
CommitLineData
c896fe29
FB
1/*
2 * Tiny Code Generator for QEMU
3 *
4 * Copyright (c) 2008 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
c896fe29 25/* define it to use liveness analysis (better code) */
8f2e8c07 26#define USE_TCG_OPTIMIZATIONS
c896fe29 27
757e725b 28#include "qemu/osdep.h"
cca82982 29
813da627
RH
30/* Define to jump the ELF file used to communicate with GDB. */
31#undef DEBUG_JIT
32
f348b6d1 33#include "qemu/cutils.h"
1de7afc9
PB
34#include "qemu/host-utils.h"
35#include "qemu/timer.h"
c896fe29 36
c5d3c498 37/* Note: the long term plan is to reduce the dependencies on the QEMU
c896fe29
FB
38 CPU definitions. Currently they are used for qemu_ld/st
39 instructions */
40#define NO_CPU_IO_DEFS
41#include "cpu.h"
c896fe29 42
63c91552
PB
43#include "exec/cpu-common.h"
44#include "exec/exec-all.h"
45
c896fe29 46#include "tcg-op.h"
813da627 47
edee2579 48#if UINTPTR_MAX == UINT32_MAX
813da627 49# define ELF_CLASS ELFCLASS32
edee2579
RH
50#else
51# define ELF_CLASS ELFCLASS64
813da627
RH
52#endif
53#ifdef HOST_WORDS_BIGENDIAN
54# define ELF_DATA ELFDATA2MSB
55#else
56# define ELF_DATA ELFDATA2LSB
57#endif
58
c896fe29 59#include "elf.h"
508127e2 60#include "exec/log.h"
3468b59e 61#include "sysemu/sysemu.h"
c896fe29 62
ce151109
PM
63/* Forward declarations for functions declared in tcg-target.inc.c and
64 used here. */
e4d58b41 65static void tcg_target_init(TCGContext *s);
f69d277e 66static const TCGTargetOpDef *tcg_target_op_def(TCGOpcode);
e4d58b41 67static void tcg_target_qemu_prologue(TCGContext *s);
1813e175 68static void patch_reloc(tcg_insn_unit *code_ptr, int type,
2ba7fae2 69 intptr_t value, intptr_t addend);
c896fe29 70
497a22eb
RH
71/* The CIE and FDE header definitions will be common to all hosts. */
72typedef struct {
73 uint32_t len __attribute__((aligned((sizeof(void *)))));
74 uint32_t id;
75 uint8_t version;
76 char augmentation[1];
77 uint8_t code_align;
78 uint8_t data_align;
79 uint8_t return_column;
80} DebugFrameCIE;
81
82typedef struct QEMU_PACKED {
83 uint32_t len __attribute__((aligned((sizeof(void *)))));
84 uint32_t cie_offset;
edee2579
RH
85 uintptr_t func_start;
86 uintptr_t func_len;
497a22eb
RH
87} DebugFrameFDEHeader;
88
2c90784a
RH
89typedef struct QEMU_PACKED {
90 DebugFrameCIE cie;
91 DebugFrameFDEHeader fde;
92} DebugFrameHeader;
93
813da627 94static void tcg_register_jit_int(void *buf, size_t size,
2c90784a
RH
95 const void *debug_frame,
96 size_t debug_frame_size)
813da627
RH
97 __attribute__((unused));
98
ce151109 99/* Forward declarations for functions declared and used in tcg-target.inc.c. */
069ea736
RH
100static const char *target_parse_constraint(TCGArgConstraint *ct,
101 const char *ct_str, TCGType type);
2a534aff 102static void tcg_out_ld(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg1,
a05b5b9b 103 intptr_t arg2);
2a534aff 104static void tcg_out_mov(TCGContext *s, TCGType type, TCGReg ret, TCGReg arg);
c0ad3001 105static void tcg_out_movi(TCGContext *s, TCGType type,
2a534aff 106 TCGReg ret, tcg_target_long arg);
c0ad3001
SW
107static void tcg_out_op(TCGContext *s, TCGOpcode opc, const TCGArg *args,
108 const int *const_args);
d2fd745f
RH
109#if TCG_TARGET_MAYBE_vec
110static void tcg_out_vec_op(TCGContext *s, TCGOpcode opc, unsigned vecl,
111 unsigned vece, const TCGArg *args,
112 const int *const_args);
113#else
114static inline void tcg_out_vec_op(TCGContext *s, TCGOpcode opc, unsigned vecl,
115 unsigned vece, const TCGArg *args,
116 const int *const_args)
117{
118 g_assert_not_reached();
119}
120#endif
2a534aff 121static void tcg_out_st(TCGContext *s, TCGType type, TCGReg arg, TCGReg arg1,
a05b5b9b 122 intptr_t arg2);
59d7c14e
RH
123static bool tcg_out_sti(TCGContext *s, TCGType type, TCGArg val,
124 TCGReg base, intptr_t ofs);
cf066674 125static void tcg_out_call(TCGContext *s, tcg_insn_unit *target);
f6c6afc1 126static int tcg_target_const_match(tcg_target_long val, TCGType type,
c0ad3001 127 const TCGArgConstraint *arg_ct);
659ef5cb
RH
128#ifdef TCG_TARGET_NEED_LDST_LABELS
129static bool tcg_out_ldst_finalize(TCGContext *s);
130#endif
c896fe29 131
a505785c
EC
132#define TCG_HIGHWATER 1024
133
df2cce29
EC
134static TCGContext **tcg_ctxs;
135static unsigned int n_tcg_ctxs;
1c2adb95 136TCGv_env cpu_env = 0;
df2cce29 137
be2cdc5e
EC
138struct tcg_region_tree {
139 QemuMutex lock;
140 GTree *tree;
141 /* padding to avoid false sharing is computed at run-time */
142};
143
e8feb96f
EC
144/*
145 * We divide code_gen_buffer into equally-sized "regions" that TCG threads
146 * dynamically allocate from as demand dictates. Given appropriate region
147 * sizing, this minimizes flushes even when some TCG threads generate a lot
148 * more code than others.
149 */
150struct tcg_region_state {
151 QemuMutex lock;
152
153 /* fields set at init time */
154 void *start;
155 void *start_aligned;
156 void *end;
157 size_t n;
158 size_t size; /* size of one region */
159 size_t stride; /* .size + guard size */
160
161 /* fields protected by the lock */
162 size_t current; /* current region index */
163 size_t agg_size_full; /* aggregate size of full regions */
164};
165
166static struct tcg_region_state region;
be2cdc5e
EC
167/*
168 * This is an array of struct tcg_region_tree's, with padding.
169 * We use void * to simplify the computation of region_trees[i]; each
170 * struct is found every tree_size bytes.
171 */
172static void *region_trees;
173static size_t tree_size;
d2fd745f 174static TCGRegSet tcg_target_available_regs[TCG_TYPE_COUNT];
b1d8e52e 175static TCGRegSet tcg_target_call_clobber_regs;
c896fe29 176
1813e175 177#if TCG_TARGET_INSN_UNIT_SIZE == 1
4196dca6 178static __attribute__((unused)) inline void tcg_out8(TCGContext *s, uint8_t v)
c896fe29
FB
179{
180 *s->code_ptr++ = v;
181}
182
4196dca6
PM
183static __attribute__((unused)) inline void tcg_patch8(tcg_insn_unit *p,
184 uint8_t v)
5c53bb81 185{
1813e175 186 *p = v;
5c53bb81 187}
1813e175 188#endif
5c53bb81 189
1813e175 190#if TCG_TARGET_INSN_UNIT_SIZE <= 2
4196dca6 191static __attribute__((unused)) inline void tcg_out16(TCGContext *s, uint16_t v)
c896fe29 192{
1813e175
RH
193 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
194 *s->code_ptr++ = v;
195 } else {
196 tcg_insn_unit *p = s->code_ptr;
197 memcpy(p, &v, sizeof(v));
198 s->code_ptr = p + (2 / TCG_TARGET_INSN_UNIT_SIZE);
199 }
c896fe29
FB
200}
201
4196dca6
PM
202static __attribute__((unused)) inline void tcg_patch16(tcg_insn_unit *p,
203 uint16_t v)
5c53bb81 204{
1813e175
RH
205 if (TCG_TARGET_INSN_UNIT_SIZE == 2) {
206 *p = v;
207 } else {
208 memcpy(p, &v, sizeof(v));
209 }
5c53bb81 210}
1813e175 211#endif
5c53bb81 212
1813e175 213#if TCG_TARGET_INSN_UNIT_SIZE <= 4
4196dca6 214static __attribute__((unused)) inline void tcg_out32(TCGContext *s, uint32_t v)
c896fe29 215{
1813e175
RH
216 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
217 *s->code_ptr++ = v;
218 } else {
219 tcg_insn_unit *p = s->code_ptr;
220 memcpy(p, &v, sizeof(v));
221 s->code_ptr = p + (4 / TCG_TARGET_INSN_UNIT_SIZE);
222 }
c896fe29
FB
223}
224
4196dca6
PM
225static __attribute__((unused)) inline void tcg_patch32(tcg_insn_unit *p,
226 uint32_t v)
5c53bb81 227{
1813e175
RH
228 if (TCG_TARGET_INSN_UNIT_SIZE == 4) {
229 *p = v;
230 } else {
231 memcpy(p, &v, sizeof(v));
232 }
5c53bb81 233}
1813e175 234#endif
5c53bb81 235
1813e175 236#if TCG_TARGET_INSN_UNIT_SIZE <= 8
4196dca6 237static __attribute__((unused)) inline void tcg_out64(TCGContext *s, uint64_t v)
ac26eb69 238{
1813e175
RH
239 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
240 *s->code_ptr++ = v;
241 } else {
242 tcg_insn_unit *p = s->code_ptr;
243 memcpy(p, &v, sizeof(v));
244 s->code_ptr = p + (8 / TCG_TARGET_INSN_UNIT_SIZE);
245 }
ac26eb69
RH
246}
247
4196dca6
PM
248static __attribute__((unused)) inline void tcg_patch64(tcg_insn_unit *p,
249 uint64_t v)
5c53bb81 250{
1813e175
RH
251 if (TCG_TARGET_INSN_UNIT_SIZE == 8) {
252 *p = v;
253 } else {
254 memcpy(p, &v, sizeof(v));
255 }
5c53bb81 256}
1813e175 257#endif
5c53bb81 258
c896fe29
FB
259/* label relocation processing */
260
1813e175 261static void tcg_out_reloc(TCGContext *s, tcg_insn_unit *code_ptr, int type,
bec16311 262 TCGLabel *l, intptr_t addend)
c896fe29 263{
c896fe29
FB
264 TCGRelocation *r;
265
c896fe29 266 if (l->has_value) {
623e265c
PB
267 /* FIXME: This may break relocations on RISC targets that
268 modify instruction fields in place. The caller may not have
269 written the initial value. */
f54b3f92 270 patch_reloc(code_ptr, type, l->u.value, addend);
c896fe29
FB
271 } else {
272 /* add a new relocation entry */
273 r = tcg_malloc(sizeof(TCGRelocation));
274 r->type = type;
275 r->ptr = code_ptr;
276 r->addend = addend;
277 r->next = l->u.first_reloc;
278 l->u.first_reloc = r;
279 }
280}
281
bec16311 282static void tcg_out_label(TCGContext *s, TCGLabel *l, tcg_insn_unit *ptr)
c896fe29 283{
2ba7fae2 284 intptr_t value = (intptr_t)ptr;
1813e175 285 TCGRelocation *r;
c896fe29 286
eabb7b91 287 tcg_debug_assert(!l->has_value);
1813e175
RH
288
289 for (r = l->u.first_reloc; r != NULL; r = r->next) {
f54b3f92 290 patch_reloc(r->ptr, r->type, value, r->addend);
c896fe29 291 }
1813e175 292
c896fe29 293 l->has_value = 1;
1813e175 294 l->u.value_ptr = ptr;
c896fe29
FB
295}
296
42a268c2 297TCGLabel *gen_new_label(void)
c896fe29 298{
b1311c4a 299 TCGContext *s = tcg_ctx;
51e3972c 300 TCGLabel *l = tcg_malloc(sizeof(TCGLabel));
c896fe29 301
51e3972c
RH
302 *l = (TCGLabel){
303 .id = s->nb_labels++
304 };
42a268c2
RH
305
306 return l;
c896fe29
FB
307}
308
9f754620
RH
309static void set_jmp_reset_offset(TCGContext *s, int which)
310{
311 size_t off = tcg_current_code_size(s);
312 s->tb_jmp_reset_offset[which] = off;
313 /* Make sure that we didn't overflow the stored offset. */
314 assert(s->tb_jmp_reset_offset[which] == off);
315}
316
ce151109 317#include "tcg-target.inc.c"
c896fe29 318
be2cdc5e
EC
319/* compare a pointer @ptr and a tb_tc @s */
320static int ptr_cmp_tb_tc(const void *ptr, const struct tb_tc *s)
321{
322 if (ptr >= s->ptr + s->size) {
323 return 1;
324 } else if (ptr < s->ptr) {
325 return -1;
326 }
327 return 0;
328}
329
330static gint tb_tc_cmp(gconstpointer ap, gconstpointer bp)
331{
332 const struct tb_tc *a = ap;
333 const struct tb_tc *b = bp;
334
335 /*
336 * When both sizes are set, we know this isn't a lookup.
337 * This is the most likely case: every TB must be inserted; lookups
338 * are a lot less frequent.
339 */
340 if (likely(a->size && b->size)) {
341 if (a->ptr > b->ptr) {
342 return 1;
343 } else if (a->ptr < b->ptr) {
344 return -1;
345 }
346 /* a->ptr == b->ptr should happen only on deletions */
347 g_assert(a->size == b->size);
348 return 0;
349 }
350 /*
351 * All lookups have either .size field set to 0.
352 * From the glib sources we see that @ap is always the lookup key. However
353 * the docs provide no guarantee, so we just mark this case as likely.
354 */
355 if (likely(a->size == 0)) {
356 return ptr_cmp_tb_tc(a->ptr, b);
357 }
358 return ptr_cmp_tb_tc(b->ptr, a);
359}
360
361static void tcg_region_trees_init(void)
362{
363 size_t i;
364
365 tree_size = ROUND_UP(sizeof(struct tcg_region_tree), qemu_dcache_linesize);
366 region_trees = qemu_memalign(qemu_dcache_linesize, region.n * tree_size);
367 for (i = 0; i < region.n; i++) {
368 struct tcg_region_tree *rt = region_trees + i * tree_size;
369
370 qemu_mutex_init(&rt->lock);
371 rt->tree = g_tree_new(tb_tc_cmp);
372 }
373}
374
375static struct tcg_region_tree *tc_ptr_to_region_tree(void *p)
376{
377 size_t region_idx;
378
379 if (p < region.start_aligned) {
380 region_idx = 0;
381 } else {
382 ptrdiff_t offset = p - region.start_aligned;
383
384 if (offset > region.stride * (region.n - 1)) {
385 region_idx = region.n - 1;
386 } else {
387 region_idx = offset / region.stride;
388 }
389 }
390 return region_trees + region_idx * tree_size;
391}
392
393void tcg_tb_insert(TranslationBlock *tb)
394{
395 struct tcg_region_tree *rt = tc_ptr_to_region_tree(tb->tc.ptr);
396
397 qemu_mutex_lock(&rt->lock);
398 g_tree_insert(rt->tree, &tb->tc, tb);
399 qemu_mutex_unlock(&rt->lock);
400}
401
402void tcg_tb_remove(TranslationBlock *tb)
403{
404 struct tcg_region_tree *rt = tc_ptr_to_region_tree(tb->tc.ptr);
405
406 qemu_mutex_lock(&rt->lock);
407 g_tree_remove(rt->tree, &tb->tc);
408 qemu_mutex_unlock(&rt->lock);
409}
410
411/*
412 * Find the TB 'tb' such that
413 * tb->tc.ptr <= tc_ptr < tb->tc.ptr + tb->tc.size
414 * Return NULL if not found.
415 */
416TranslationBlock *tcg_tb_lookup(uintptr_t tc_ptr)
417{
418 struct tcg_region_tree *rt = tc_ptr_to_region_tree((void *)tc_ptr);
419 TranslationBlock *tb;
420 struct tb_tc s = { .ptr = (void *)tc_ptr };
421
422 qemu_mutex_lock(&rt->lock);
423 tb = g_tree_lookup(rt->tree, &s);
424 qemu_mutex_unlock(&rt->lock);
425 return tb;
426}
427
428static void tcg_region_tree_lock_all(void)
429{
430 size_t i;
431
432 for (i = 0; i < region.n; i++) {
433 struct tcg_region_tree *rt = region_trees + i * tree_size;
434
435 qemu_mutex_lock(&rt->lock);
436 }
437}
438
439static void tcg_region_tree_unlock_all(void)
440{
441 size_t i;
442
443 for (i = 0; i < region.n; i++) {
444 struct tcg_region_tree *rt = region_trees + i * tree_size;
445
446 qemu_mutex_unlock(&rt->lock);
447 }
448}
449
450void tcg_tb_foreach(GTraverseFunc func, gpointer user_data)
451{
452 size_t i;
453
454 tcg_region_tree_lock_all();
455 for (i = 0; i < region.n; i++) {
456 struct tcg_region_tree *rt = region_trees + i * tree_size;
457
458 g_tree_foreach(rt->tree, func, user_data);
459 }
460 tcg_region_tree_unlock_all();
461}
462
463size_t tcg_nb_tbs(void)
464{
465 size_t nb_tbs = 0;
466 size_t i;
467
468 tcg_region_tree_lock_all();
469 for (i = 0; i < region.n; i++) {
470 struct tcg_region_tree *rt = region_trees + i * tree_size;
471
472 nb_tbs += g_tree_nnodes(rt->tree);
473 }
474 tcg_region_tree_unlock_all();
475 return nb_tbs;
476}
477
478static void tcg_region_tree_reset_all(void)
479{
480 size_t i;
481
482 tcg_region_tree_lock_all();
483 for (i = 0; i < region.n; i++) {
484 struct tcg_region_tree *rt = region_trees + i * tree_size;
485
486 /* Increment the refcount first so that destroy acts as a reset */
487 g_tree_ref(rt->tree);
488 g_tree_destroy(rt->tree);
489 }
490 tcg_region_tree_unlock_all();
491}
492
e8feb96f
EC
493static void tcg_region_bounds(size_t curr_region, void **pstart, void **pend)
494{
495 void *start, *end;
496
497 start = region.start_aligned + curr_region * region.stride;
498 end = start + region.size;
499
500 if (curr_region == 0) {
501 start = region.start;
502 }
503 if (curr_region == region.n - 1) {
504 end = region.end;
505 }
506
507 *pstart = start;
508 *pend = end;
509}
510
511static void tcg_region_assign(TCGContext *s, size_t curr_region)
512{
513 void *start, *end;
514
515 tcg_region_bounds(curr_region, &start, &end);
516
517 s->code_gen_buffer = start;
518 s->code_gen_ptr = start;
519 s->code_gen_buffer_size = end - start;
520 s->code_gen_highwater = end - TCG_HIGHWATER;
521}
522
523static bool tcg_region_alloc__locked(TCGContext *s)
524{
525 if (region.current == region.n) {
526 return true;
527 }
528 tcg_region_assign(s, region.current);
529 region.current++;
530 return false;
531}
532
533/*
534 * Request a new region once the one in use has filled up.
535 * Returns true on error.
536 */
537static bool tcg_region_alloc(TCGContext *s)
538{
539 bool err;
540 /* read the region size now; alloc__locked will overwrite it on success */
541 size_t size_full = s->code_gen_buffer_size;
542
543 qemu_mutex_lock(&region.lock);
544 err = tcg_region_alloc__locked(s);
545 if (!err) {
546 region.agg_size_full += size_full - TCG_HIGHWATER;
547 }
548 qemu_mutex_unlock(&region.lock);
549 return err;
550}
551
552/*
553 * Perform a context's first region allocation.
554 * This function does _not_ increment region.agg_size_full.
555 */
556static inline bool tcg_region_initial_alloc__locked(TCGContext *s)
557{
558 return tcg_region_alloc__locked(s);
559}
560
561/* Call from a safe-work context */
562void tcg_region_reset_all(void)
563{
3468b59e 564 unsigned int n_ctxs = atomic_read(&n_tcg_ctxs);
e8feb96f
EC
565 unsigned int i;
566
567 qemu_mutex_lock(&region.lock);
568 region.current = 0;
569 region.agg_size_full = 0;
570
3468b59e
EC
571 for (i = 0; i < n_ctxs; i++) {
572 TCGContext *s = atomic_read(&tcg_ctxs[i]);
573 bool err = tcg_region_initial_alloc__locked(s);
e8feb96f
EC
574
575 g_assert(!err);
576 }
577 qemu_mutex_unlock(&region.lock);
be2cdc5e
EC
578
579 tcg_region_tree_reset_all();
e8feb96f
EC
580}
581
3468b59e
EC
582#ifdef CONFIG_USER_ONLY
583static size_t tcg_n_regions(void)
584{
585 return 1;
586}
587#else
588/*
589 * It is likely that some vCPUs will translate more code than others, so we
590 * first try to set more regions than max_cpus, with those regions being of
591 * reasonable size. If that's not possible we make do by evenly dividing
592 * the code_gen_buffer among the vCPUs.
593 */
594static size_t tcg_n_regions(void)
595{
596 size_t i;
597
598 /* Use a single region if all we have is one vCPU thread */
599 if (max_cpus == 1 || !qemu_tcg_mttcg_enabled()) {
600 return 1;
601 }
602
603 /* Try to have more regions than max_cpus, with each region being >= 2 MB */
604 for (i = 8; i > 0; i--) {
605 size_t regions_per_thread = i;
606 size_t region_size;
607
608 region_size = tcg_init_ctx.code_gen_buffer_size;
609 region_size /= max_cpus * regions_per_thread;
610
611 if (region_size >= 2 * 1024u * 1024) {
612 return max_cpus * regions_per_thread;
613 }
614 }
615 /* If we can't, then just allocate one region per vCPU thread */
616 return max_cpus;
617}
618#endif
619
e8feb96f
EC
620/*
621 * Initializes region partitioning.
622 *
623 * Called at init time from the parent thread (i.e. the one calling
624 * tcg_context_init), after the target's TCG globals have been set.
3468b59e
EC
625 *
626 * Region partitioning works by splitting code_gen_buffer into separate regions,
627 * and then assigning regions to TCG threads so that the threads can translate
628 * code in parallel without synchronization.
629 *
630 * In softmmu the number of TCG threads is bounded by max_cpus, so we use at
631 * least max_cpus regions in MTTCG. In !MTTCG we use a single region.
632 * Note that the TCG options from the command-line (i.e. -accel accel=tcg,[...])
633 * must have been parsed before calling this function, since it calls
634 * qemu_tcg_mttcg_enabled().
635 *
636 * In user-mode we use a single region. Having multiple regions in user-mode
637 * is not supported, because the number of vCPU threads (recall that each thread
638 * spawned by the guest corresponds to a vCPU thread) is only bounded by the
639 * OS, and usually this number is huge (tens of thousands is not uncommon).
640 * Thus, given this large bound on the number of vCPU threads and the fact
641 * that code_gen_buffer is allocated at compile-time, we cannot guarantee
642 * that the availability of at least one region per vCPU thread.
643 *
644 * However, this user-mode limitation is unlikely to be a significant problem
645 * in practice. Multi-threaded guests share most if not all of their translated
646 * code, which makes parallel code generation less appealing than in softmmu.
e8feb96f
EC
647 */
648void tcg_region_init(void)
649{
650 void *buf = tcg_init_ctx.code_gen_buffer;
651 void *aligned;
652 size_t size = tcg_init_ctx.code_gen_buffer_size;
653 size_t page_size = qemu_real_host_page_size;
654 size_t region_size;
655 size_t n_regions;
656 size_t i;
657
3468b59e 658 n_regions = tcg_n_regions();
e8feb96f
EC
659
660 /* The first region will be 'aligned - buf' bytes larger than the others */
661 aligned = QEMU_ALIGN_PTR_UP(buf, page_size);
662 g_assert(aligned < tcg_init_ctx.code_gen_buffer + size);
663 /*
664 * Make region_size a multiple of page_size, using aligned as the start.
665 * As a result of this we might end up with a few extra pages at the end of
666 * the buffer; we will assign those to the last region.
667 */
668 region_size = (size - (aligned - buf)) / n_regions;
669 region_size = QEMU_ALIGN_DOWN(region_size, page_size);
670
671 /* A region must have at least 2 pages; one code, one guard */
672 g_assert(region_size >= 2 * page_size);
673
674 /* init the region struct */
675 qemu_mutex_init(&region.lock);
676 region.n = n_regions;
677 region.size = region_size - page_size;
678 region.stride = region_size;
679 region.start = buf;
680 region.start_aligned = aligned;
681 /* page-align the end, since its last page will be a guard page */
682 region.end = QEMU_ALIGN_PTR_DOWN(buf + size, page_size);
683 /* account for that last guard page */
684 region.end -= page_size;
685
686 /* set guard pages */
687 for (i = 0; i < region.n; i++) {
688 void *start, *end;
689 int rc;
690
691 tcg_region_bounds(i, &start, &end);
692 rc = qemu_mprotect_none(end, page_size);
693 g_assert(!rc);
694 }
695
be2cdc5e
EC
696 tcg_region_trees_init();
697
3468b59e
EC
698 /* In user-mode we support only one ctx, so do the initial allocation now */
699#ifdef CONFIG_USER_ONLY
e8feb96f
EC
700 {
701 bool err = tcg_region_initial_alloc__locked(tcg_ctx);
702
703 g_assert(!err);
704 }
3468b59e
EC
705#endif
706}
707
708/*
709 * All TCG threads except the parent (i.e. the one that called tcg_context_init
710 * and registered the target's TCG globals) must register with this function
711 * before initiating translation.
712 *
713 * In user-mode we just point tcg_ctx to tcg_init_ctx. See the documentation
714 * of tcg_region_init() for the reasoning behind this.
715 *
716 * In softmmu each caller registers its context in tcg_ctxs[]. Note that in
717 * softmmu tcg_ctxs[] does not track tcg_ctx_init, since the initial context
718 * is not used anymore for translation once this function is called.
719 *
720 * Not tracking tcg_init_ctx in tcg_ctxs[] in softmmu keeps code that iterates
721 * over the array (e.g. tcg_code_size() the same for both softmmu and user-mode.
722 */
723#ifdef CONFIG_USER_ONLY
724void tcg_register_thread(void)
725{
726 tcg_ctx = &tcg_init_ctx;
727}
728#else
729void tcg_register_thread(void)
730{
731 TCGContext *s = g_malloc(sizeof(*s));
732 unsigned int i, n;
733 bool err;
734
735 *s = tcg_init_ctx;
736
737 /* Relink mem_base. */
738 for (i = 0, n = tcg_init_ctx.nb_globals; i < n; ++i) {
739 if (tcg_init_ctx.temps[i].mem_base) {
740 ptrdiff_t b = tcg_init_ctx.temps[i].mem_base - tcg_init_ctx.temps;
741 tcg_debug_assert(b >= 0 && b < n);
742 s->temps[i].mem_base = &s->temps[b];
743 }
744 }
745
746 /* Claim an entry in tcg_ctxs */
747 n = atomic_fetch_inc(&n_tcg_ctxs);
748 g_assert(n < max_cpus);
749 atomic_set(&tcg_ctxs[n], s);
750
751 tcg_ctx = s;
752 qemu_mutex_lock(&region.lock);
753 err = tcg_region_initial_alloc__locked(tcg_ctx);
754 g_assert(!err);
755 qemu_mutex_unlock(&region.lock);
e8feb96f 756}
3468b59e 757#endif /* !CONFIG_USER_ONLY */
e8feb96f
EC
758
759/*
760 * Returns the size (in bytes) of all translated code (i.e. from all regions)
761 * currently in the cache.
762 * See also: tcg_code_capacity()
763 * Do not confuse with tcg_current_code_size(); that one applies to a single
764 * TCG context.
765 */
766size_t tcg_code_size(void)
767{
3468b59e 768 unsigned int n_ctxs = atomic_read(&n_tcg_ctxs);
e8feb96f
EC
769 unsigned int i;
770 size_t total;
771
772 qemu_mutex_lock(&region.lock);
773 total = region.agg_size_full;
3468b59e
EC
774 for (i = 0; i < n_ctxs; i++) {
775 const TCGContext *s = atomic_read(&tcg_ctxs[i]);
e8feb96f
EC
776 size_t size;
777
778 size = atomic_read(&s->code_gen_ptr) - s->code_gen_buffer;
779 g_assert(size <= s->code_gen_buffer_size);
780 total += size;
781 }
782 qemu_mutex_unlock(&region.lock);
783 return total;
784}
785
786/*
787 * Returns the code capacity (in bytes) of the entire cache, i.e. including all
788 * regions.
789 * See also: tcg_code_size()
790 */
791size_t tcg_code_capacity(void)
792{
793 size_t guard_size, capacity;
794
795 /* no need for synchronization; these variables are set at init time */
796 guard_size = region.stride - region.size;
797 capacity = region.end + guard_size - region.start;
798 capacity -= region.n * (guard_size + TCG_HIGHWATER);
799 return capacity;
800}
801
128ed227
EC
802size_t tcg_tb_phys_invalidate_count(void)
803{
804 unsigned int n_ctxs = atomic_read(&n_tcg_ctxs);
805 unsigned int i;
806 size_t total = 0;
807
808 for (i = 0; i < n_ctxs; i++) {
809 const TCGContext *s = atomic_read(&tcg_ctxs[i]);
810
811 total += atomic_read(&s->tb_phys_invalidate_count);
812 }
813 return total;
814}
815
c896fe29
FB
816/* pool based memory allocation */
817void *tcg_malloc_internal(TCGContext *s, int size)
818{
819 TCGPool *p;
820 int pool_size;
821
822 if (size > TCG_POOL_CHUNK_SIZE) {
823 /* big malloc: insert a new pool (XXX: could optimize) */
7267c094 824 p = g_malloc(sizeof(TCGPool) + size);
c896fe29 825 p->size = size;
4055299e
KB
826 p->next = s->pool_first_large;
827 s->pool_first_large = p;
828 return p->data;
c896fe29
FB
829 } else {
830 p = s->pool_current;
831 if (!p) {
832 p = s->pool_first;
833 if (!p)
834 goto new_pool;
835 } else {
836 if (!p->next) {
837 new_pool:
838 pool_size = TCG_POOL_CHUNK_SIZE;
7267c094 839 p = g_malloc(sizeof(TCGPool) + pool_size);
c896fe29
FB
840 p->size = pool_size;
841 p->next = NULL;
842 if (s->pool_current)
843 s->pool_current->next = p;
844 else
845 s->pool_first = p;
846 } else {
847 p = p->next;
848 }
849 }
850 }
851 s->pool_current = p;
852 s->pool_cur = p->data + size;
853 s->pool_end = p->data + p->size;
854 return p->data;
855}
856
857void tcg_pool_reset(TCGContext *s)
858{
4055299e
KB
859 TCGPool *p, *t;
860 for (p = s->pool_first_large; p; p = t) {
861 t = p->next;
862 g_free(p);
863 }
864 s->pool_first_large = NULL;
c896fe29
FB
865 s->pool_cur = s->pool_end = NULL;
866 s->pool_current = NULL;
867}
868
100b5e01
RH
869typedef struct TCGHelperInfo {
870 void *func;
871 const char *name;
afb49896
RH
872 unsigned flags;
873 unsigned sizemask;
100b5e01
RH
874} TCGHelperInfo;
875
2ef6175a
RH
876#include "exec/helper-proto.h"
877
100b5e01 878static const TCGHelperInfo all_helpers[] = {
2ef6175a 879#include "exec/helper-tcg.h"
100b5e01 880};
619205fd 881static GHashTable *helper_table;
100b5e01 882
91478cef 883static int indirect_reg_alloc_order[ARRAY_SIZE(tcg_target_reg_alloc_order)];
f69d277e 884static void process_op_defs(TCGContext *s);
1c2adb95
RH
885static TCGTemp *tcg_global_reg_new_internal(TCGContext *s, TCGType type,
886 TCGReg reg, const char *name);
91478cef 887
c896fe29
FB
888void tcg_context_init(TCGContext *s)
889{
100b5e01 890 int op, total_args, n, i;
c896fe29
FB
891 TCGOpDef *def;
892 TCGArgConstraint *args_ct;
893 int *sorted_args;
1c2adb95 894 TCGTemp *ts;
c896fe29
FB
895
896 memset(s, 0, sizeof(*s));
c896fe29 897 s->nb_globals = 0;
c70fbf0a 898
c896fe29
FB
899 /* Count total number of arguments and allocate the corresponding
900 space */
901 total_args = 0;
902 for(op = 0; op < NB_OPS; op++) {
903 def = &tcg_op_defs[op];
904 n = def->nb_iargs + def->nb_oargs;
905 total_args += n;
906 }
907
7267c094
AL
908 args_ct = g_malloc(sizeof(TCGArgConstraint) * total_args);
909 sorted_args = g_malloc(sizeof(int) * total_args);
c896fe29
FB
910
911 for(op = 0; op < NB_OPS; op++) {
912 def = &tcg_op_defs[op];
913 def->args_ct = args_ct;
914 def->sorted_args = sorted_args;
915 n = def->nb_iargs + def->nb_oargs;
916 sorted_args += n;
917 args_ct += n;
918 }
5cd8f621
RH
919
920 /* Register helpers. */
84fd9dd3 921 /* Use g_direct_hash/equal for direct pointer comparisons on func. */
619205fd 922 helper_table = g_hash_table_new(NULL, NULL);
84fd9dd3 923
100b5e01 924 for (i = 0; i < ARRAY_SIZE(all_helpers); ++i) {
84fd9dd3 925 g_hash_table_insert(helper_table, (gpointer)all_helpers[i].func,
72866e82 926 (gpointer)&all_helpers[i]);
100b5e01 927 }
5cd8f621 928
c896fe29 929 tcg_target_init(s);
f69d277e 930 process_op_defs(s);
91478cef
RH
931
932 /* Reverse the order of the saved registers, assuming they're all at
933 the start of tcg_target_reg_alloc_order. */
934 for (n = 0; n < ARRAY_SIZE(tcg_target_reg_alloc_order); ++n) {
935 int r = tcg_target_reg_alloc_order[n];
936 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, r)) {
937 break;
938 }
939 }
940 for (i = 0; i < n; ++i) {
941 indirect_reg_alloc_order[i] = tcg_target_reg_alloc_order[n - 1 - i];
942 }
943 for (; i < ARRAY_SIZE(tcg_target_reg_alloc_order); ++i) {
944 indirect_reg_alloc_order[i] = tcg_target_reg_alloc_order[i];
945 }
b1311c4a
EC
946
947 tcg_ctx = s;
3468b59e
EC
948 /*
949 * In user-mode we simply share the init context among threads, since we
950 * use a single region. See the documentation tcg_region_init() for the
951 * reasoning behind this.
952 * In softmmu we will have at most max_cpus TCG threads.
953 */
954#ifdef CONFIG_USER_ONLY
df2cce29
EC
955 tcg_ctxs = &tcg_ctx;
956 n_tcg_ctxs = 1;
3468b59e
EC
957#else
958 tcg_ctxs = g_new(TCGContext *, max_cpus);
959#endif
1c2adb95
RH
960
961 tcg_debug_assert(!tcg_regset_test_reg(s->reserved_regs, TCG_AREG0));
962 ts = tcg_global_reg_new_internal(s, TCG_TYPE_PTR, TCG_AREG0, "env");
963 cpu_env = temp_tcgv_ptr(ts);
9002ec79 964}
b03cce8e 965
6e3b2bfd
EC
966/*
967 * Allocate TBs right before their corresponding translated code, making
968 * sure that TBs and code are on different cache lines.
969 */
970TranslationBlock *tcg_tb_alloc(TCGContext *s)
971{
972 uintptr_t align = qemu_icache_linesize;
973 TranslationBlock *tb;
974 void *next;
975
e8feb96f 976 retry:
6e3b2bfd
EC
977 tb = (void *)ROUND_UP((uintptr_t)s->code_gen_ptr, align);
978 next = (void *)ROUND_UP((uintptr_t)(tb + 1), align);
979
980 if (unlikely(next > s->code_gen_highwater)) {
e8feb96f
EC
981 if (tcg_region_alloc(s)) {
982 return NULL;
983 }
984 goto retry;
6e3b2bfd 985 }
e8feb96f 986 atomic_set(&s->code_gen_ptr, next);
57a26946 987 s->data_gen_ptr = NULL;
6e3b2bfd
EC
988 return tb;
989}
990
9002ec79
RH
991void tcg_prologue_init(TCGContext *s)
992{
8163b749
RH
993 size_t prologue_size, total_size;
994 void *buf0, *buf1;
995
996 /* Put the prologue at the beginning of code_gen_buffer. */
997 buf0 = s->code_gen_buffer;
5b38ee31 998 total_size = s->code_gen_buffer_size;
8163b749
RH
999 s->code_ptr = buf0;
1000 s->code_buf = buf0;
5b38ee31 1001 s->data_gen_ptr = NULL;
8163b749
RH
1002 s->code_gen_prologue = buf0;
1003
5b38ee31
RH
1004 /* Compute a high-water mark, at which we voluntarily flush the buffer
1005 and start over. The size here is arbitrary, significantly larger
1006 than we expect the code generation for any one opcode to require. */
1007 s->code_gen_highwater = s->code_gen_buffer + (total_size - TCG_HIGHWATER);
1008
1009#ifdef TCG_TARGET_NEED_POOL_LABELS
1010 s->pool_labels = NULL;
1011#endif
1012
8163b749 1013 /* Generate the prologue. */
b03cce8e 1014 tcg_target_qemu_prologue(s);
5b38ee31
RH
1015
1016#ifdef TCG_TARGET_NEED_POOL_LABELS
1017 /* Allow the prologue to put e.g. guest_base into a pool entry. */
1018 {
1019 bool ok = tcg_out_pool_finalize(s);
1020 tcg_debug_assert(ok);
1021 }
1022#endif
1023
8163b749
RH
1024 buf1 = s->code_ptr;
1025 flush_icache_range((uintptr_t)buf0, (uintptr_t)buf1);
1026
1027 /* Deduct the prologue from the buffer. */
1028 prologue_size = tcg_current_code_size(s);
1029 s->code_gen_ptr = buf1;
1030 s->code_gen_buffer = buf1;
1031 s->code_buf = buf1;
5b38ee31 1032 total_size -= prologue_size;
8163b749
RH
1033 s->code_gen_buffer_size = total_size;
1034
8163b749 1035 tcg_register_jit(s->code_gen_buffer, total_size);
d6b64b2b
RH
1036
1037#ifdef DEBUG_DISAS
1038 if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM)) {
1ee73216 1039 qemu_log_lock();
8163b749 1040 qemu_log("PROLOGUE: [size=%zu]\n", prologue_size);
5b38ee31
RH
1041 if (s->data_gen_ptr) {
1042 size_t code_size = s->data_gen_ptr - buf0;
1043 size_t data_size = prologue_size - code_size;
1044 size_t i;
1045
1046 log_disas(buf0, code_size);
1047
1048 for (i = 0; i < data_size; i += sizeof(tcg_target_ulong)) {
1049 if (sizeof(tcg_target_ulong) == 8) {
1050 qemu_log("0x%08" PRIxPTR ": .quad 0x%016" PRIx64 "\n",
1051 (uintptr_t)s->data_gen_ptr + i,
1052 *(uint64_t *)(s->data_gen_ptr + i));
1053 } else {
1054 qemu_log("0x%08" PRIxPTR ": .long 0x%08x\n",
1055 (uintptr_t)s->data_gen_ptr + i,
1056 *(uint32_t *)(s->data_gen_ptr + i));
1057 }
1058 }
1059 } else {
1060 log_disas(buf0, prologue_size);
1061 }
d6b64b2b
RH
1062 qemu_log("\n");
1063 qemu_log_flush();
1ee73216 1064 qemu_log_unlock();
d6b64b2b
RH
1065 }
1066#endif
cedbcb01
EC
1067
1068 /* Assert that goto_ptr is implemented completely. */
1069 if (TCG_TARGET_HAS_goto_ptr) {
1070 tcg_debug_assert(s->code_gen_epilogue != NULL);
1071 }
c896fe29
FB
1072}
1073
c896fe29
FB
1074void tcg_func_start(TCGContext *s)
1075{
1076 tcg_pool_reset(s);
1077 s->nb_temps = s->nb_globals;
0ec9eabc
RH
1078
1079 /* No temps have been previously allocated for size or locality. */
1080 memset(s->free_temps, 0, sizeof(s->free_temps));
1081
abebf925 1082 s->nb_ops = 0;
c896fe29
FB
1083 s->nb_labels = 0;
1084 s->current_frame_offset = s->frame_start;
1085
0a209d4b
RH
1086#ifdef CONFIG_DEBUG_TCG
1087 s->goto_tb_issue_mask = 0;
1088#endif
1089
15fa08f8
RH
1090 QTAILQ_INIT(&s->ops);
1091 QTAILQ_INIT(&s->free_ops);
c896fe29
FB
1092}
1093
7ca4b752
RH
1094static inline TCGTemp *tcg_temp_alloc(TCGContext *s)
1095{
1096 int n = s->nb_temps++;
1097 tcg_debug_assert(n < TCG_MAX_TEMPS);
1098 return memset(&s->temps[n], 0, sizeof(TCGTemp));
1099}
1100
1101static inline TCGTemp *tcg_global_alloc(TCGContext *s)
1102{
fa477d25
RH
1103 TCGTemp *ts;
1104
7ca4b752
RH
1105 tcg_debug_assert(s->nb_globals == s->nb_temps);
1106 s->nb_globals++;
fa477d25
RH
1107 ts = tcg_temp_alloc(s);
1108 ts->temp_global = 1;
1109
1110 return ts;
c896fe29
FB
1111}
1112
085272b3
RH
1113static TCGTemp *tcg_global_reg_new_internal(TCGContext *s, TCGType type,
1114 TCGReg reg, const char *name)
c896fe29 1115{
c896fe29 1116 TCGTemp *ts;
c896fe29 1117
b3a62939 1118 if (TCG_TARGET_REG_BITS == 32 && type != TCG_TYPE_I32) {
c896fe29 1119 tcg_abort();
b3a62939 1120 }
7ca4b752
RH
1121
1122 ts = tcg_global_alloc(s);
c896fe29
FB
1123 ts->base_type = type;
1124 ts->type = type;
1125 ts->fixed_reg = 1;
1126 ts->reg = reg;
c896fe29 1127 ts->name = name;
c896fe29 1128 tcg_regset_set_reg(s->reserved_regs, reg);
7ca4b752 1129
085272b3 1130 return ts;
a7812ae4
PB
1131}
1132
b6638662 1133void tcg_set_frame(TCGContext *s, TCGReg reg, intptr_t start, intptr_t size)
b3a62939 1134{
b3a62939
RH
1135 s->frame_start = start;
1136 s->frame_end = start + size;
085272b3
RH
1137 s->frame_temp
1138 = tcg_global_reg_new_internal(s, TCG_TYPE_PTR, reg, "_frame");
b3a62939
RH
1139}
1140
085272b3
RH
1141TCGTemp *tcg_global_mem_new_internal(TCGType type, TCGv_ptr base,
1142 intptr_t offset, const char *name)
c896fe29 1143{
b1311c4a 1144 TCGContext *s = tcg_ctx;
dc41aa7d 1145 TCGTemp *base_ts = tcgv_ptr_temp(base);
7ca4b752 1146 TCGTemp *ts = tcg_global_alloc(s);
b3915dbb 1147 int indirect_reg = 0, bigendian = 0;
7ca4b752
RH
1148#ifdef HOST_WORDS_BIGENDIAN
1149 bigendian = 1;
1150#endif
c896fe29 1151
b3915dbb 1152 if (!base_ts->fixed_reg) {
5a18407f
RH
1153 /* We do not support double-indirect registers. */
1154 tcg_debug_assert(!base_ts->indirect_reg);
b3915dbb 1155 base_ts->indirect_base = 1;
5a18407f
RH
1156 s->nb_indirects += (TCG_TARGET_REG_BITS == 32 && type == TCG_TYPE_I64
1157 ? 2 : 1);
1158 indirect_reg = 1;
b3915dbb
RH
1159 }
1160
7ca4b752
RH
1161 if (TCG_TARGET_REG_BITS == 32 && type == TCG_TYPE_I64) {
1162 TCGTemp *ts2 = tcg_global_alloc(s);
c896fe29 1163 char buf[64];
7ca4b752
RH
1164
1165 ts->base_type = TCG_TYPE_I64;
c896fe29 1166 ts->type = TCG_TYPE_I32;
b3915dbb 1167 ts->indirect_reg = indirect_reg;
c896fe29 1168 ts->mem_allocated = 1;
b3a62939 1169 ts->mem_base = base_ts;
7ca4b752 1170 ts->mem_offset = offset + bigendian * 4;
c896fe29
FB
1171 pstrcpy(buf, sizeof(buf), name);
1172 pstrcat(buf, sizeof(buf), "_0");
1173 ts->name = strdup(buf);
c896fe29 1174
7ca4b752
RH
1175 tcg_debug_assert(ts2 == ts + 1);
1176 ts2->base_type = TCG_TYPE_I64;
1177 ts2->type = TCG_TYPE_I32;
b3915dbb 1178 ts2->indirect_reg = indirect_reg;
7ca4b752
RH
1179 ts2->mem_allocated = 1;
1180 ts2->mem_base = base_ts;
1181 ts2->mem_offset = offset + (1 - bigendian) * 4;
c896fe29
FB
1182 pstrcpy(buf, sizeof(buf), name);
1183 pstrcat(buf, sizeof(buf), "_1");
120c1084 1184 ts2->name = strdup(buf);
7ca4b752 1185 } else {
c896fe29
FB
1186 ts->base_type = type;
1187 ts->type = type;
b3915dbb 1188 ts->indirect_reg = indirect_reg;
c896fe29 1189 ts->mem_allocated = 1;
b3a62939 1190 ts->mem_base = base_ts;
c896fe29 1191 ts->mem_offset = offset;
c896fe29 1192 ts->name = name;
c896fe29 1193 }
085272b3 1194 return ts;
a7812ae4
PB
1195}
1196
5bfa8034 1197TCGTemp *tcg_temp_new_internal(TCGType type, bool temp_local)
c896fe29 1198{
b1311c4a 1199 TCGContext *s = tcg_ctx;
c896fe29 1200 TCGTemp *ts;
641d5fbe 1201 int idx, k;
c896fe29 1202
0ec9eabc
RH
1203 k = type + (temp_local ? TCG_TYPE_COUNT : 0);
1204 idx = find_first_bit(s->free_temps[k].l, TCG_MAX_TEMPS);
1205 if (idx < TCG_MAX_TEMPS) {
1206 /* There is already an available temp with the right type. */
1207 clear_bit(idx, s->free_temps[k].l);
1208
e8996ee0 1209 ts = &s->temps[idx];
e8996ee0 1210 ts->temp_allocated = 1;
7ca4b752
RH
1211 tcg_debug_assert(ts->base_type == type);
1212 tcg_debug_assert(ts->temp_local == temp_local);
e8996ee0 1213 } else {
7ca4b752
RH
1214 ts = tcg_temp_alloc(s);
1215 if (TCG_TARGET_REG_BITS == 32 && type == TCG_TYPE_I64) {
1216 TCGTemp *ts2 = tcg_temp_alloc(s);
1217
f6aa2f7d 1218 ts->base_type = type;
e8996ee0
FB
1219 ts->type = TCG_TYPE_I32;
1220 ts->temp_allocated = 1;
641d5fbe 1221 ts->temp_local = temp_local;
7ca4b752
RH
1222
1223 tcg_debug_assert(ts2 == ts + 1);
1224 ts2->base_type = TCG_TYPE_I64;
1225 ts2->type = TCG_TYPE_I32;
1226 ts2->temp_allocated = 1;
1227 ts2->temp_local = temp_local;
1228 } else {
e8996ee0
FB
1229 ts->base_type = type;
1230 ts->type = type;
1231 ts->temp_allocated = 1;
641d5fbe 1232 ts->temp_local = temp_local;
e8996ee0 1233 }
c896fe29 1234 }
27bfd83c
PM
1235
1236#if defined(CONFIG_DEBUG_TCG)
1237 s->temps_in_use++;
1238#endif
085272b3 1239 return ts;
c896fe29
FB
1240}
1241
d2fd745f
RH
1242TCGv_vec tcg_temp_new_vec(TCGType type)
1243{
1244 TCGTemp *t;
1245
1246#ifdef CONFIG_DEBUG_TCG
1247 switch (type) {
1248 case TCG_TYPE_V64:
1249 assert(TCG_TARGET_HAS_v64);
1250 break;
1251 case TCG_TYPE_V128:
1252 assert(TCG_TARGET_HAS_v128);
1253 break;
1254 case TCG_TYPE_V256:
1255 assert(TCG_TARGET_HAS_v256);
1256 break;
1257 default:
1258 g_assert_not_reached();
1259 }
1260#endif
1261
1262 t = tcg_temp_new_internal(type, 0);
1263 return temp_tcgv_vec(t);
1264}
1265
1266/* Create a new temp of the same type as an existing temp. */
1267TCGv_vec tcg_temp_new_vec_matching(TCGv_vec match)
1268{
1269 TCGTemp *t = tcgv_vec_temp(match);
1270
1271 tcg_debug_assert(t->temp_allocated != 0);
1272
1273 t = tcg_temp_new_internal(t->base_type, 0);
1274 return temp_tcgv_vec(t);
1275}
1276
5bfa8034 1277void tcg_temp_free_internal(TCGTemp *ts)
c896fe29 1278{
b1311c4a 1279 TCGContext *s = tcg_ctx;
085272b3 1280 int k, idx;
c896fe29 1281
27bfd83c
PM
1282#if defined(CONFIG_DEBUG_TCG)
1283 s->temps_in_use--;
1284 if (s->temps_in_use < 0) {
1285 fprintf(stderr, "More temporaries freed than allocated!\n");
1286 }
1287#endif
1288
085272b3 1289 tcg_debug_assert(ts->temp_global == 0);
eabb7b91 1290 tcg_debug_assert(ts->temp_allocated != 0);
e8996ee0 1291 ts->temp_allocated = 0;
0ec9eabc 1292
085272b3 1293 idx = temp_idx(ts);
18d13fa2 1294 k = ts->base_type + (ts->temp_local ? TCG_TYPE_COUNT : 0);
0ec9eabc 1295 set_bit(idx, s->free_temps[k].l);
c896fe29
FB
1296}
1297
a7812ae4 1298TCGv_i32 tcg_const_i32(int32_t val)
c896fe29 1299{
a7812ae4
PB
1300 TCGv_i32 t0;
1301 t0 = tcg_temp_new_i32();
e8996ee0
FB
1302 tcg_gen_movi_i32(t0, val);
1303 return t0;
1304}
c896fe29 1305
a7812ae4 1306TCGv_i64 tcg_const_i64(int64_t val)
e8996ee0 1307{
a7812ae4
PB
1308 TCGv_i64 t0;
1309 t0 = tcg_temp_new_i64();
e8996ee0
FB
1310 tcg_gen_movi_i64(t0, val);
1311 return t0;
c896fe29
FB
1312}
1313
a7812ae4 1314TCGv_i32 tcg_const_local_i32(int32_t val)
bdffd4a9 1315{
a7812ae4
PB
1316 TCGv_i32 t0;
1317 t0 = tcg_temp_local_new_i32();
bdffd4a9
AJ
1318 tcg_gen_movi_i32(t0, val);
1319 return t0;
1320}
1321
a7812ae4 1322TCGv_i64 tcg_const_local_i64(int64_t val)
bdffd4a9 1323{
a7812ae4
PB
1324 TCGv_i64 t0;
1325 t0 = tcg_temp_local_new_i64();
bdffd4a9
AJ
1326 tcg_gen_movi_i64(t0, val);
1327 return t0;
1328}
1329
27bfd83c
PM
1330#if defined(CONFIG_DEBUG_TCG)
1331void tcg_clear_temp_count(void)
1332{
b1311c4a 1333 TCGContext *s = tcg_ctx;
27bfd83c
PM
1334 s->temps_in_use = 0;
1335}
1336
1337int tcg_check_temp_count(void)
1338{
b1311c4a 1339 TCGContext *s = tcg_ctx;
27bfd83c
PM
1340 if (s->temps_in_use) {
1341 /* Clear the count so that we don't give another
1342 * warning immediately next time around.
1343 */
1344 s->temps_in_use = 0;
1345 return 1;
1346 }
1347 return 0;
1348}
1349#endif
1350
be0f34b5
RH
1351/* Return true if OP may appear in the opcode stream.
1352 Test the runtime variable that controls each opcode. */
1353bool tcg_op_supported(TCGOpcode op)
1354{
d2fd745f
RH
1355 const bool have_vec
1356 = TCG_TARGET_HAS_v64 | TCG_TARGET_HAS_v128 | TCG_TARGET_HAS_v256;
1357
be0f34b5
RH
1358 switch (op) {
1359 case INDEX_op_discard:
1360 case INDEX_op_set_label:
1361 case INDEX_op_call:
1362 case INDEX_op_br:
1363 case INDEX_op_mb:
1364 case INDEX_op_insn_start:
1365 case INDEX_op_exit_tb:
1366 case INDEX_op_goto_tb:
1367 case INDEX_op_qemu_ld_i32:
1368 case INDEX_op_qemu_st_i32:
1369 case INDEX_op_qemu_ld_i64:
1370 case INDEX_op_qemu_st_i64:
1371 return true;
1372
1373 case INDEX_op_goto_ptr:
1374 return TCG_TARGET_HAS_goto_ptr;
1375
1376 case INDEX_op_mov_i32:
1377 case INDEX_op_movi_i32:
1378 case INDEX_op_setcond_i32:
1379 case INDEX_op_brcond_i32:
1380 case INDEX_op_ld8u_i32:
1381 case INDEX_op_ld8s_i32:
1382 case INDEX_op_ld16u_i32:
1383 case INDEX_op_ld16s_i32:
1384 case INDEX_op_ld_i32:
1385 case INDEX_op_st8_i32:
1386 case INDEX_op_st16_i32:
1387 case INDEX_op_st_i32:
1388 case INDEX_op_add_i32:
1389 case INDEX_op_sub_i32:
1390 case INDEX_op_mul_i32:
1391 case INDEX_op_and_i32:
1392 case INDEX_op_or_i32:
1393 case INDEX_op_xor_i32:
1394 case INDEX_op_shl_i32:
1395 case INDEX_op_shr_i32:
1396 case INDEX_op_sar_i32:
1397 return true;
1398
1399 case INDEX_op_movcond_i32:
1400 return TCG_TARGET_HAS_movcond_i32;
1401 case INDEX_op_div_i32:
1402 case INDEX_op_divu_i32:
1403 return TCG_TARGET_HAS_div_i32;
1404 case INDEX_op_rem_i32:
1405 case INDEX_op_remu_i32:
1406 return TCG_TARGET_HAS_rem_i32;
1407 case INDEX_op_div2_i32:
1408 case INDEX_op_divu2_i32:
1409 return TCG_TARGET_HAS_div2_i32;
1410 case INDEX_op_rotl_i32:
1411 case INDEX_op_rotr_i32:
1412 return TCG_TARGET_HAS_rot_i32;
1413 case INDEX_op_deposit_i32:
1414 return TCG_TARGET_HAS_deposit_i32;
1415 case INDEX_op_extract_i32:
1416 return TCG_TARGET_HAS_extract_i32;
1417 case INDEX_op_sextract_i32:
1418 return TCG_TARGET_HAS_sextract_i32;
1419 case INDEX_op_add2_i32:
1420 return TCG_TARGET_HAS_add2_i32;
1421 case INDEX_op_sub2_i32:
1422 return TCG_TARGET_HAS_sub2_i32;
1423 case INDEX_op_mulu2_i32:
1424 return TCG_TARGET_HAS_mulu2_i32;
1425 case INDEX_op_muls2_i32:
1426 return TCG_TARGET_HAS_muls2_i32;
1427 case INDEX_op_muluh_i32:
1428 return TCG_TARGET_HAS_muluh_i32;
1429 case INDEX_op_mulsh_i32:
1430 return TCG_TARGET_HAS_mulsh_i32;
1431 case INDEX_op_ext8s_i32:
1432 return TCG_TARGET_HAS_ext8s_i32;
1433 case INDEX_op_ext16s_i32:
1434 return TCG_TARGET_HAS_ext16s_i32;
1435 case INDEX_op_ext8u_i32:
1436 return TCG_TARGET_HAS_ext8u_i32;
1437 case INDEX_op_ext16u_i32:
1438 return TCG_TARGET_HAS_ext16u_i32;
1439 case INDEX_op_bswap16_i32:
1440 return TCG_TARGET_HAS_bswap16_i32;
1441 case INDEX_op_bswap32_i32:
1442 return TCG_TARGET_HAS_bswap32_i32;
1443 case INDEX_op_not_i32:
1444 return TCG_TARGET_HAS_not_i32;
1445 case INDEX_op_neg_i32:
1446 return TCG_TARGET_HAS_neg_i32;
1447 case INDEX_op_andc_i32:
1448 return TCG_TARGET_HAS_andc_i32;
1449 case INDEX_op_orc_i32:
1450 return TCG_TARGET_HAS_orc_i32;
1451 case INDEX_op_eqv_i32:
1452 return TCG_TARGET_HAS_eqv_i32;
1453 case INDEX_op_nand_i32:
1454 return TCG_TARGET_HAS_nand_i32;
1455 case INDEX_op_nor_i32:
1456 return TCG_TARGET_HAS_nor_i32;
1457 case INDEX_op_clz_i32:
1458 return TCG_TARGET_HAS_clz_i32;
1459 case INDEX_op_ctz_i32:
1460 return TCG_TARGET_HAS_ctz_i32;
1461 case INDEX_op_ctpop_i32:
1462 return TCG_TARGET_HAS_ctpop_i32;
1463
1464 case INDEX_op_brcond2_i32:
1465 case INDEX_op_setcond2_i32:
1466 return TCG_TARGET_REG_BITS == 32;
1467
1468 case INDEX_op_mov_i64:
1469 case INDEX_op_movi_i64:
1470 case INDEX_op_setcond_i64:
1471 case INDEX_op_brcond_i64:
1472 case INDEX_op_ld8u_i64:
1473 case INDEX_op_ld8s_i64:
1474 case INDEX_op_ld16u_i64:
1475 case INDEX_op_ld16s_i64:
1476 case INDEX_op_ld32u_i64:
1477 case INDEX_op_ld32s_i64:
1478 case INDEX_op_ld_i64:
1479 case INDEX_op_st8_i64:
1480 case INDEX_op_st16_i64:
1481 case INDEX_op_st32_i64:
1482 case INDEX_op_st_i64:
1483 case INDEX_op_add_i64:
1484 case INDEX_op_sub_i64:
1485 case INDEX_op_mul_i64:
1486 case INDEX_op_and_i64:
1487 case INDEX_op_or_i64:
1488 case INDEX_op_xor_i64:
1489 case INDEX_op_shl_i64:
1490 case INDEX_op_shr_i64:
1491 case INDEX_op_sar_i64:
1492 case INDEX_op_ext_i32_i64:
1493 case INDEX_op_extu_i32_i64:
1494 return TCG_TARGET_REG_BITS == 64;
1495
1496 case INDEX_op_movcond_i64:
1497 return TCG_TARGET_HAS_movcond_i64;
1498 case INDEX_op_div_i64:
1499 case INDEX_op_divu_i64:
1500 return TCG_TARGET_HAS_div_i64;
1501 case INDEX_op_rem_i64:
1502 case INDEX_op_remu_i64:
1503 return TCG_TARGET_HAS_rem_i64;
1504 case INDEX_op_div2_i64:
1505 case INDEX_op_divu2_i64:
1506 return TCG_TARGET_HAS_div2_i64;
1507 case INDEX_op_rotl_i64:
1508 case INDEX_op_rotr_i64:
1509 return TCG_TARGET_HAS_rot_i64;
1510 case INDEX_op_deposit_i64:
1511 return TCG_TARGET_HAS_deposit_i64;
1512 case INDEX_op_extract_i64:
1513 return TCG_TARGET_HAS_extract_i64;
1514 case INDEX_op_sextract_i64:
1515 return TCG_TARGET_HAS_sextract_i64;
1516 case INDEX_op_extrl_i64_i32:
1517 return TCG_TARGET_HAS_extrl_i64_i32;
1518 case INDEX_op_extrh_i64_i32:
1519 return TCG_TARGET_HAS_extrh_i64_i32;
1520 case INDEX_op_ext8s_i64:
1521 return TCG_TARGET_HAS_ext8s_i64;
1522 case INDEX_op_ext16s_i64:
1523 return TCG_TARGET_HAS_ext16s_i64;
1524 case INDEX_op_ext32s_i64:
1525 return TCG_TARGET_HAS_ext32s_i64;
1526 case INDEX_op_ext8u_i64:
1527 return TCG_TARGET_HAS_ext8u_i64;
1528 case INDEX_op_ext16u_i64:
1529 return TCG_TARGET_HAS_ext16u_i64;
1530 case INDEX_op_ext32u_i64:
1531 return TCG_TARGET_HAS_ext32u_i64;
1532 case INDEX_op_bswap16_i64:
1533 return TCG_TARGET_HAS_bswap16_i64;
1534 case INDEX_op_bswap32_i64:
1535 return TCG_TARGET_HAS_bswap32_i64;
1536 case INDEX_op_bswap64_i64:
1537 return TCG_TARGET_HAS_bswap64_i64;
1538 case INDEX_op_not_i64:
1539 return TCG_TARGET_HAS_not_i64;
1540 case INDEX_op_neg_i64:
1541 return TCG_TARGET_HAS_neg_i64;
1542 case INDEX_op_andc_i64:
1543 return TCG_TARGET_HAS_andc_i64;
1544 case INDEX_op_orc_i64:
1545 return TCG_TARGET_HAS_orc_i64;
1546 case INDEX_op_eqv_i64:
1547 return TCG_TARGET_HAS_eqv_i64;
1548 case INDEX_op_nand_i64:
1549 return TCG_TARGET_HAS_nand_i64;
1550 case INDEX_op_nor_i64:
1551 return TCG_TARGET_HAS_nor_i64;
1552 case INDEX_op_clz_i64:
1553 return TCG_TARGET_HAS_clz_i64;
1554 case INDEX_op_ctz_i64:
1555 return TCG_TARGET_HAS_ctz_i64;
1556 case INDEX_op_ctpop_i64:
1557 return TCG_TARGET_HAS_ctpop_i64;
1558 case INDEX_op_add2_i64:
1559 return TCG_TARGET_HAS_add2_i64;
1560 case INDEX_op_sub2_i64:
1561 return TCG_TARGET_HAS_sub2_i64;
1562 case INDEX_op_mulu2_i64:
1563 return TCG_TARGET_HAS_mulu2_i64;
1564 case INDEX_op_muls2_i64:
1565 return TCG_TARGET_HAS_muls2_i64;
1566 case INDEX_op_muluh_i64:
1567 return TCG_TARGET_HAS_muluh_i64;
1568 case INDEX_op_mulsh_i64:
1569 return TCG_TARGET_HAS_mulsh_i64;
1570
d2fd745f
RH
1571 case INDEX_op_mov_vec:
1572 case INDEX_op_dup_vec:
1573 case INDEX_op_dupi_vec:
1574 case INDEX_op_ld_vec:
1575 case INDEX_op_st_vec:
1576 case INDEX_op_add_vec:
1577 case INDEX_op_sub_vec:
1578 case INDEX_op_and_vec:
1579 case INDEX_op_or_vec:
1580 case INDEX_op_xor_vec:
212be173 1581 case INDEX_op_cmp_vec:
d2fd745f
RH
1582 return have_vec;
1583 case INDEX_op_dup2_vec:
1584 return have_vec && TCG_TARGET_REG_BITS == 32;
1585 case INDEX_op_not_vec:
1586 return have_vec && TCG_TARGET_HAS_not_vec;
1587 case INDEX_op_neg_vec:
1588 return have_vec && TCG_TARGET_HAS_neg_vec;
1589 case INDEX_op_andc_vec:
1590 return have_vec && TCG_TARGET_HAS_andc_vec;
1591 case INDEX_op_orc_vec:
1592 return have_vec && TCG_TARGET_HAS_orc_vec;
3774030a
RH
1593 case INDEX_op_mul_vec:
1594 return have_vec && TCG_TARGET_HAS_mul_vec;
d0ec9796
RH
1595 case INDEX_op_shli_vec:
1596 case INDEX_op_shri_vec:
1597 case INDEX_op_sari_vec:
1598 return have_vec && TCG_TARGET_HAS_shi_vec;
1599 case INDEX_op_shls_vec:
1600 case INDEX_op_shrs_vec:
1601 case INDEX_op_sars_vec:
1602 return have_vec && TCG_TARGET_HAS_shs_vec;
1603 case INDEX_op_shlv_vec:
1604 case INDEX_op_shrv_vec:
1605 case INDEX_op_sarv_vec:
1606 return have_vec && TCG_TARGET_HAS_shv_vec;
d2fd745f 1607
db432672
RH
1608 default:
1609 tcg_debug_assert(op > INDEX_op_last_generic && op < NB_OPS);
1610 return true;
be0f34b5 1611 }
be0f34b5
RH
1612}
1613
39cf05d3
FB
1614/* Note: we convert the 64 bit args to 32 bit and do some alignment
1615 and endian swap. Maybe it would be better to do the alignment
1616 and endian swap in tcg_reg_alloc_call(). */
ae8b75dc 1617void tcg_gen_callN(void *func, TCGTemp *ret, int nargs, TCGTemp **args)
c896fe29 1618{
75e8b9b7 1619 int i, real_args, nb_rets, pi;
bbb8a1b4 1620 unsigned sizemask, flags;
afb49896 1621 TCGHelperInfo *info;
75e8b9b7 1622 TCGOp *op;
afb49896 1623
619205fd 1624 info = g_hash_table_lookup(helper_table, (gpointer)func);
bbb8a1b4
RH
1625 flags = info->flags;
1626 sizemask = info->sizemask;
2bece2c8 1627
34b1a49c
RH
1628#if defined(__sparc__) && !defined(__arch64__) \
1629 && !defined(CONFIG_TCG_INTERPRETER)
1630 /* We have 64-bit values in one register, but need to pass as two
1631 separate parameters. Split them. */
1632 int orig_sizemask = sizemask;
1633 int orig_nargs = nargs;
1634 TCGv_i64 retl, reth;
ae8b75dc 1635 TCGTemp *split_args[MAX_OPC_PARAM];
34b1a49c 1636
f764718d
RH
1637 retl = NULL;
1638 reth = NULL;
34b1a49c 1639 if (sizemask != 0) {
34b1a49c
RH
1640 for (i = real_args = 0; i < nargs; ++i) {
1641 int is_64bit = sizemask & (1 << (i+1)*2);
1642 if (is_64bit) {
085272b3 1643 TCGv_i64 orig = temp_tcgv_i64(args[i]);
34b1a49c
RH
1644 TCGv_i32 h = tcg_temp_new_i32();
1645 TCGv_i32 l = tcg_temp_new_i32();
1646 tcg_gen_extr_i64_i32(l, h, orig);
ae8b75dc
RH
1647 split_args[real_args++] = tcgv_i32_temp(h);
1648 split_args[real_args++] = tcgv_i32_temp(l);
34b1a49c
RH
1649 } else {
1650 split_args[real_args++] = args[i];
1651 }
1652 }
1653 nargs = real_args;
1654 args = split_args;
1655 sizemask = 0;
1656 }
1657#elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
2bece2c8
RH
1658 for (i = 0; i < nargs; ++i) {
1659 int is_64bit = sizemask & (1 << (i+1)*2);
1660 int is_signed = sizemask & (2 << (i+1)*2);
1661 if (!is_64bit) {
1662 TCGv_i64 temp = tcg_temp_new_i64();
085272b3 1663 TCGv_i64 orig = temp_tcgv_i64(args[i]);
2bece2c8
RH
1664 if (is_signed) {
1665 tcg_gen_ext32s_i64(temp, orig);
1666 } else {
1667 tcg_gen_ext32u_i64(temp, orig);
1668 }
ae8b75dc 1669 args[i] = tcgv_i64_temp(temp);
2bece2c8
RH
1670 }
1671 }
1672#endif /* TCG_TARGET_EXTEND_ARGS */
1673
15fa08f8 1674 op = tcg_emit_op(INDEX_op_call);
75e8b9b7
RH
1675
1676 pi = 0;
ae8b75dc 1677 if (ret != NULL) {
34b1a49c
RH
1678#if defined(__sparc__) && !defined(__arch64__) \
1679 && !defined(CONFIG_TCG_INTERPRETER)
1680 if (orig_sizemask & 1) {
1681 /* The 32-bit ABI is going to return the 64-bit value in
1682 the %o0/%o1 register pair. Prepare for this by using
1683 two return temporaries, and reassemble below. */
1684 retl = tcg_temp_new_i64();
1685 reth = tcg_temp_new_i64();
ae8b75dc
RH
1686 op->args[pi++] = tcgv_i64_arg(reth);
1687 op->args[pi++] = tcgv_i64_arg(retl);
34b1a49c
RH
1688 nb_rets = 2;
1689 } else {
ae8b75dc 1690 op->args[pi++] = temp_arg(ret);
34b1a49c
RH
1691 nb_rets = 1;
1692 }
1693#else
1694 if (TCG_TARGET_REG_BITS < 64 && (sizemask & 1)) {
02eb19d0 1695#ifdef HOST_WORDS_BIGENDIAN
ae8b75dc
RH
1696 op->args[pi++] = temp_arg(ret + 1);
1697 op->args[pi++] = temp_arg(ret);
39cf05d3 1698#else
ae8b75dc
RH
1699 op->args[pi++] = temp_arg(ret);
1700 op->args[pi++] = temp_arg(ret + 1);
39cf05d3 1701#endif
a7812ae4 1702 nb_rets = 2;
34b1a49c 1703 } else {
ae8b75dc 1704 op->args[pi++] = temp_arg(ret);
a7812ae4 1705 nb_rets = 1;
c896fe29 1706 }
34b1a49c 1707#endif
a7812ae4
PB
1708 } else {
1709 nb_rets = 0;
c896fe29 1710 }
cd9090aa 1711 TCGOP_CALLO(op) = nb_rets;
75e8b9b7 1712
a7812ae4
PB
1713 real_args = 0;
1714 for (i = 0; i < nargs; i++) {
2bece2c8 1715 int is_64bit = sizemask & (1 << (i+1)*2);
bbb8a1b4 1716 if (TCG_TARGET_REG_BITS < 64 && is_64bit) {
39cf05d3
FB
1717#ifdef TCG_TARGET_CALL_ALIGN_ARGS
1718 /* some targets want aligned 64 bit args */
ebd486d5 1719 if (real_args & 1) {
75e8b9b7 1720 op->args[pi++] = TCG_CALL_DUMMY_ARG;
ebd486d5 1721 real_args++;
39cf05d3
FB
1722 }
1723#endif
c70fbf0a
RH
1724 /* If stack grows up, then we will be placing successive
1725 arguments at lower addresses, which means we need to
1726 reverse the order compared to how we would normally
1727 treat either big or little-endian. For those arguments
1728 that will wind up in registers, this still works for
1729 HPPA (the only current STACK_GROWSUP target) since the
1730 argument registers are *also* allocated in decreasing
1731 order. If another such target is added, this logic may
1732 have to get more complicated to differentiate between
1733 stack arguments and register arguments. */
02eb19d0 1734#if defined(HOST_WORDS_BIGENDIAN) != defined(TCG_TARGET_STACK_GROWSUP)
ae8b75dc
RH
1735 op->args[pi++] = temp_arg(args[i] + 1);
1736 op->args[pi++] = temp_arg(args[i]);
c896fe29 1737#else
ae8b75dc
RH
1738 op->args[pi++] = temp_arg(args[i]);
1739 op->args[pi++] = temp_arg(args[i] + 1);
c896fe29 1740#endif
a7812ae4 1741 real_args += 2;
2bece2c8 1742 continue;
c896fe29 1743 }
2bece2c8 1744
ae8b75dc 1745 op->args[pi++] = temp_arg(args[i]);
2bece2c8 1746 real_args++;
c896fe29 1747 }
75e8b9b7
RH
1748 op->args[pi++] = (uintptr_t)func;
1749 op->args[pi++] = flags;
cd9090aa 1750 TCGOP_CALLI(op) = real_args;
a7812ae4 1751
75e8b9b7 1752 /* Make sure the fields didn't overflow. */
cd9090aa 1753 tcg_debug_assert(TCGOP_CALLI(op) == real_args);
75e8b9b7 1754 tcg_debug_assert(pi <= ARRAY_SIZE(op->args));
2bece2c8 1755
34b1a49c
RH
1756#if defined(__sparc__) && !defined(__arch64__) \
1757 && !defined(CONFIG_TCG_INTERPRETER)
1758 /* Free all of the parts we allocated above. */
1759 for (i = real_args = 0; i < orig_nargs; ++i) {
1760 int is_64bit = orig_sizemask & (1 << (i+1)*2);
1761 if (is_64bit) {
085272b3
RH
1762 tcg_temp_free_internal(args[real_args++]);
1763 tcg_temp_free_internal(args[real_args++]);
34b1a49c
RH
1764 } else {
1765 real_args++;
1766 }
1767 }
1768 if (orig_sizemask & 1) {
1769 /* The 32-bit ABI returned two 32-bit pieces. Re-assemble them.
1770 Note that describing these as TCGv_i64 eliminates an unnecessary
1771 zero-extension that tcg_gen_concat_i32_i64 would create. */
085272b3 1772 tcg_gen_concat32_i64(temp_tcgv_i64(ret), retl, reth);
34b1a49c
RH
1773 tcg_temp_free_i64(retl);
1774 tcg_temp_free_i64(reth);
1775 }
1776#elif defined(TCG_TARGET_EXTEND_ARGS) && TCG_TARGET_REG_BITS == 64
2bece2c8
RH
1777 for (i = 0; i < nargs; ++i) {
1778 int is_64bit = sizemask & (1 << (i+1)*2);
1779 if (!is_64bit) {
085272b3 1780 tcg_temp_free_internal(args[i]);
2bece2c8
RH
1781 }
1782 }
1783#endif /* TCG_TARGET_EXTEND_ARGS */
c896fe29 1784}
c896fe29 1785
8fcd3692 1786static void tcg_reg_alloc_start(TCGContext *s)
c896fe29 1787{
ac3b8891 1788 int i, n;
c896fe29 1789 TCGTemp *ts;
ac3b8891
RH
1790
1791 for (i = 0, n = s->nb_globals; i < n; i++) {
c896fe29 1792 ts = &s->temps[i];
ac3b8891 1793 ts->val_type = (ts->fixed_reg ? TEMP_VAL_REG : TEMP_VAL_MEM);
c896fe29 1794 }
ac3b8891 1795 for (n = s->nb_temps; i < n; i++) {
e8996ee0 1796 ts = &s->temps[i];
ac3b8891 1797 ts->val_type = (ts->temp_local ? TEMP_VAL_MEM : TEMP_VAL_DEAD);
e8996ee0
FB
1798 ts->mem_allocated = 0;
1799 ts->fixed_reg = 0;
1800 }
f8b2f202
RH
1801
1802 memset(s->reg_to_temp, 0, sizeof(s->reg_to_temp));
c896fe29
FB
1803}
1804
f8b2f202
RH
1805static char *tcg_get_arg_str_ptr(TCGContext *s, char *buf, int buf_size,
1806 TCGTemp *ts)
c896fe29 1807{
1807f4c4 1808 int idx = temp_idx(ts);
ac56dd48 1809
fa477d25 1810 if (ts->temp_global) {
ac56dd48 1811 pstrcpy(buf, buf_size, ts->name);
f8b2f202
RH
1812 } else if (ts->temp_local) {
1813 snprintf(buf, buf_size, "loc%d", idx - s->nb_globals);
c896fe29 1814 } else {
f8b2f202 1815 snprintf(buf, buf_size, "tmp%d", idx - s->nb_globals);
c896fe29
FB
1816 }
1817 return buf;
1818}
1819
43439139
RH
1820static char *tcg_get_arg_str(TCGContext *s, char *buf,
1821 int buf_size, TCGArg arg)
f8b2f202 1822{
43439139 1823 return tcg_get_arg_str_ptr(s, buf, buf_size, arg_temp(arg));
f8b2f202
RH
1824}
1825
6e085f72
RH
1826/* Find helper name. */
1827static inline const char *tcg_find_helper(TCGContext *s, uintptr_t val)
4dc81f28 1828{
6e085f72 1829 const char *ret = NULL;
619205fd
EC
1830 if (helper_table) {
1831 TCGHelperInfo *info = g_hash_table_lookup(helper_table, (gpointer)val);
72866e82
RH
1832 if (info) {
1833 ret = info->name;
1834 }
4dc81f28 1835 }
6e085f72 1836 return ret;
4dc81f28
FB
1837}
1838
f48f3ede
BS
1839static const char * const cond_name[] =
1840{
0aed257f
RH
1841 [TCG_COND_NEVER] = "never",
1842 [TCG_COND_ALWAYS] = "always",
f48f3ede
BS
1843 [TCG_COND_EQ] = "eq",
1844 [TCG_COND_NE] = "ne",
1845 [TCG_COND_LT] = "lt",
1846 [TCG_COND_GE] = "ge",
1847 [TCG_COND_LE] = "le",
1848 [TCG_COND_GT] = "gt",
1849 [TCG_COND_LTU] = "ltu",
1850 [TCG_COND_GEU] = "geu",
1851 [TCG_COND_LEU] = "leu",
1852 [TCG_COND_GTU] = "gtu"
1853};
1854
f713d6ad
RH
1855static const char * const ldst_name[] =
1856{
1857 [MO_UB] = "ub",
1858 [MO_SB] = "sb",
1859 [MO_LEUW] = "leuw",
1860 [MO_LESW] = "lesw",
1861 [MO_LEUL] = "leul",
1862 [MO_LESL] = "lesl",
1863 [MO_LEQ] = "leq",
1864 [MO_BEUW] = "beuw",
1865 [MO_BESW] = "besw",
1866 [MO_BEUL] = "beul",
1867 [MO_BESL] = "besl",
1868 [MO_BEQ] = "beq",
1869};
1870
1f00b27f
SS
1871static const char * const alignment_name[(MO_AMASK >> MO_ASHIFT) + 1] = {
1872#ifdef ALIGNED_ONLY
1873 [MO_UNALN >> MO_ASHIFT] = "un+",
1874 [MO_ALIGN >> MO_ASHIFT] = "",
1875#else
1876 [MO_UNALN >> MO_ASHIFT] = "",
1877 [MO_ALIGN >> MO_ASHIFT] = "al+",
1878#endif
1879 [MO_ALIGN_2 >> MO_ASHIFT] = "al2+",
1880 [MO_ALIGN_4 >> MO_ASHIFT] = "al4+",
1881 [MO_ALIGN_8 >> MO_ASHIFT] = "al8+",
1882 [MO_ALIGN_16 >> MO_ASHIFT] = "al16+",
1883 [MO_ALIGN_32 >> MO_ASHIFT] = "al32+",
1884 [MO_ALIGN_64 >> MO_ASHIFT] = "al64+",
1885};
1886
eeacee4d 1887void tcg_dump_ops(TCGContext *s)
c896fe29 1888{
c896fe29 1889 char buf[128];
c45cb8bb 1890 TCGOp *op;
c45cb8bb 1891
15fa08f8 1892 QTAILQ_FOREACH(op, &s->ops, link) {
c45cb8bb
RH
1893 int i, k, nb_oargs, nb_iargs, nb_cargs;
1894 const TCGOpDef *def;
c45cb8bb 1895 TCGOpcode c;
bdfb460e 1896 int col = 0;
c896fe29 1897
c45cb8bb 1898 c = op->opc;
c896fe29 1899 def = &tcg_op_defs[c];
c45cb8bb 1900
765b842a 1901 if (c == INDEX_op_insn_start) {
15fa08f8 1902 col += qemu_log("\n ----");
9aef40ed
RH
1903
1904 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
1905 target_ulong a;
7e4597d7 1906#if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
efee3746 1907 a = deposit64(op->args[i * 2], 32, 32, op->args[i * 2 + 1]);
7e4597d7 1908#else
efee3746 1909 a = op->args[i];
7e4597d7 1910#endif
bdfb460e 1911 col += qemu_log(" " TARGET_FMT_lx, a);
eeacee4d 1912 }
7e4597d7 1913 } else if (c == INDEX_op_call) {
c896fe29 1914 /* variable number of arguments */
cd9090aa
RH
1915 nb_oargs = TCGOP_CALLO(op);
1916 nb_iargs = TCGOP_CALLI(op);
c896fe29 1917 nb_cargs = def->nb_cargs;
c896fe29 1918
cf066674 1919 /* function name, flags, out args */
bdfb460e 1920 col += qemu_log(" %s %s,$0x%" TCG_PRIlx ",$%d", def->name,
efee3746
RH
1921 tcg_find_helper(s, op->args[nb_oargs + nb_iargs]),
1922 op->args[nb_oargs + nb_iargs + 1], nb_oargs);
cf066674 1923 for (i = 0; i < nb_oargs; i++) {
43439139
RH
1924 col += qemu_log(",%s", tcg_get_arg_str(s, buf, sizeof(buf),
1925 op->args[i]));
b03cce8e 1926 }
cf066674 1927 for (i = 0; i < nb_iargs; i++) {
efee3746 1928 TCGArg arg = op->args[nb_oargs + i];
cf066674
RH
1929 const char *t = "<dummy>";
1930 if (arg != TCG_CALL_DUMMY_ARG) {
43439139 1931 t = tcg_get_arg_str(s, buf, sizeof(buf), arg);
eeacee4d 1932 }
bdfb460e 1933 col += qemu_log(",%s", t);
e8996ee0 1934 }
b03cce8e 1935 } else {
bdfb460e 1936 col += qemu_log(" %s ", def->name);
c45cb8bb
RH
1937
1938 nb_oargs = def->nb_oargs;
1939 nb_iargs = def->nb_iargs;
1940 nb_cargs = def->nb_cargs;
1941
d2fd745f
RH
1942 if (def->flags & TCG_OPF_VECTOR) {
1943 col += qemu_log("v%d,e%d,", 64 << TCGOP_VECL(op),
1944 8 << TCGOP_VECE(op));
1945 }
1946
b03cce8e 1947 k = 0;
c45cb8bb 1948 for (i = 0; i < nb_oargs; i++) {
eeacee4d 1949 if (k != 0) {
bdfb460e 1950 col += qemu_log(",");
eeacee4d 1951 }
43439139
RH
1952 col += qemu_log("%s", tcg_get_arg_str(s, buf, sizeof(buf),
1953 op->args[k++]));
b03cce8e 1954 }
c45cb8bb 1955 for (i = 0; i < nb_iargs; i++) {
eeacee4d 1956 if (k != 0) {
bdfb460e 1957 col += qemu_log(",");
eeacee4d 1958 }
43439139
RH
1959 col += qemu_log("%s", tcg_get_arg_str(s, buf, sizeof(buf),
1960 op->args[k++]));
b03cce8e 1961 }
be210acb
RH
1962 switch (c) {
1963 case INDEX_op_brcond_i32:
be210acb 1964 case INDEX_op_setcond_i32:
ffc5ea09 1965 case INDEX_op_movcond_i32:
ffc5ea09 1966 case INDEX_op_brcond2_i32:
be210acb 1967 case INDEX_op_setcond2_i32:
ffc5ea09 1968 case INDEX_op_brcond_i64:
be210acb 1969 case INDEX_op_setcond_i64:
ffc5ea09 1970 case INDEX_op_movcond_i64:
212be173 1971 case INDEX_op_cmp_vec:
efee3746
RH
1972 if (op->args[k] < ARRAY_SIZE(cond_name)
1973 && cond_name[op->args[k]]) {
1974 col += qemu_log(",%s", cond_name[op->args[k++]]);
eeacee4d 1975 } else {
efee3746 1976 col += qemu_log(",$0x%" TCG_PRIlx, op->args[k++]);
eeacee4d 1977 }
f48f3ede 1978 i = 1;
be210acb 1979 break;
f713d6ad
RH
1980 case INDEX_op_qemu_ld_i32:
1981 case INDEX_op_qemu_st_i32:
1982 case INDEX_op_qemu_ld_i64:
1983 case INDEX_op_qemu_st_i64:
59227d5d 1984 {
efee3746 1985 TCGMemOpIdx oi = op->args[k++];
59227d5d
RH
1986 TCGMemOp op = get_memop(oi);
1987 unsigned ix = get_mmuidx(oi);
1988
59c4b7e8 1989 if (op & ~(MO_AMASK | MO_BSWAP | MO_SSIZE)) {
bdfb460e 1990 col += qemu_log(",$0x%x,%u", op, ix);
59c4b7e8 1991 } else {
1f00b27f
SS
1992 const char *s_al, *s_op;
1993 s_al = alignment_name[(op & MO_AMASK) >> MO_ASHIFT];
59c4b7e8 1994 s_op = ldst_name[op & (MO_BSWAP | MO_SSIZE)];
bdfb460e 1995 col += qemu_log(",%s%s,%u", s_al, s_op, ix);
59227d5d
RH
1996 }
1997 i = 1;
f713d6ad 1998 }
f713d6ad 1999 break;
be210acb 2000 default:
f48f3ede 2001 i = 0;
be210acb
RH
2002 break;
2003 }
51e3972c
RH
2004 switch (c) {
2005 case INDEX_op_set_label:
2006 case INDEX_op_br:
2007 case INDEX_op_brcond_i32:
2008 case INDEX_op_brcond_i64:
2009 case INDEX_op_brcond2_i32:
efee3746
RH
2010 col += qemu_log("%s$L%d", k ? "," : "",
2011 arg_label(op->args[k])->id);
51e3972c
RH
2012 i++, k++;
2013 break;
2014 default:
2015 break;
2016 }
2017 for (; i < nb_cargs; i++, k++) {
efee3746 2018 col += qemu_log("%s$0x%" TCG_PRIlx, k ? "," : "", op->args[k]);
bdfb460e
RH
2019 }
2020 }
2021 if (op->life) {
2022 unsigned life = op->life;
2023
2024 for (; col < 48; ++col) {
2025 putc(' ', qemu_logfile);
2026 }
2027
2028 if (life & (SYNC_ARG * 3)) {
2029 qemu_log(" sync:");
2030 for (i = 0; i < 2; ++i) {
2031 if (life & (SYNC_ARG << i)) {
2032 qemu_log(" %d", i);
2033 }
2034 }
2035 }
2036 life /= DEAD_ARG;
2037 if (life) {
2038 qemu_log(" dead:");
2039 for (i = 0; life; ++i, life >>= 1) {
2040 if (life & 1) {
2041 qemu_log(" %d", i);
2042 }
2043 }
b03cce8e 2044 }
c896fe29 2045 }
eeacee4d 2046 qemu_log("\n");
c896fe29
FB
2047 }
2048}
2049
2050/* we give more priority to constraints with less registers */
2051static int get_constraint_priority(const TCGOpDef *def, int k)
2052{
2053 const TCGArgConstraint *arg_ct;
2054
2055 int i, n;
2056 arg_ct = &def->args_ct[k];
2057 if (arg_ct->ct & TCG_CT_ALIAS) {
2058 /* an alias is equivalent to a single register */
2059 n = 1;
2060 } else {
2061 if (!(arg_ct->ct & TCG_CT_REG))
2062 return 0;
2063 n = 0;
2064 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
2065 if (tcg_regset_test_reg(arg_ct->u.regs, i))
2066 n++;
2067 }
2068 }
2069 return TCG_TARGET_NB_REGS - n + 1;
2070}
2071
2072/* sort from highest priority to lowest */
2073static void sort_constraints(TCGOpDef *def, int start, int n)
2074{
2075 int i, j, p1, p2, tmp;
2076
2077 for(i = 0; i < n; i++)
2078 def->sorted_args[start + i] = start + i;
2079 if (n <= 1)
2080 return;
2081 for(i = 0; i < n - 1; i++) {
2082 for(j = i + 1; j < n; j++) {
2083 p1 = get_constraint_priority(def, def->sorted_args[start + i]);
2084 p2 = get_constraint_priority(def, def->sorted_args[start + j]);
2085 if (p1 < p2) {
2086 tmp = def->sorted_args[start + i];
2087 def->sorted_args[start + i] = def->sorted_args[start + j];
2088 def->sorted_args[start + j] = tmp;
2089 }
2090 }
2091 }
2092}
2093
f69d277e 2094static void process_op_defs(TCGContext *s)
c896fe29 2095{
a9751609 2096 TCGOpcode op;
c896fe29 2097
f69d277e
RH
2098 for (op = 0; op < NB_OPS; op++) {
2099 TCGOpDef *def = &tcg_op_defs[op];
2100 const TCGTargetOpDef *tdefs;
069ea736
RH
2101 TCGType type;
2102 int i, nb_args;
f69d277e
RH
2103
2104 if (def->flags & TCG_OPF_NOT_PRESENT) {
2105 continue;
2106 }
2107
c896fe29 2108 nb_args = def->nb_iargs + def->nb_oargs;
f69d277e
RH
2109 if (nb_args == 0) {
2110 continue;
2111 }
2112
2113 tdefs = tcg_target_op_def(op);
2114 /* Missing TCGTargetOpDef entry. */
2115 tcg_debug_assert(tdefs != NULL);
2116
069ea736 2117 type = (def->flags & TCG_OPF_64BIT ? TCG_TYPE_I64 : TCG_TYPE_I32);
f69d277e
RH
2118 for (i = 0; i < nb_args; i++) {
2119 const char *ct_str = tdefs->args_ct_str[i];
2120 /* Incomplete TCGTargetOpDef entry. */
eabb7b91 2121 tcg_debug_assert(ct_str != NULL);
f69d277e 2122
ccb1bb66 2123 def->args_ct[i].u.regs = 0;
c896fe29 2124 def->args_ct[i].ct = 0;
17280ff4
RH
2125 while (*ct_str != '\0') {
2126 switch(*ct_str) {
2127 case '0' ... '9':
2128 {
2129 int oarg = *ct_str - '0';
2130 tcg_debug_assert(ct_str == tdefs->args_ct_str[i]);
2131 tcg_debug_assert(oarg < def->nb_oargs);
2132 tcg_debug_assert(def->args_ct[oarg].ct & TCG_CT_REG);
2133 /* TCG_CT_ALIAS is for the output arguments.
2134 The input is tagged with TCG_CT_IALIAS. */
2135 def->args_ct[i] = def->args_ct[oarg];
2136 def->args_ct[oarg].ct |= TCG_CT_ALIAS;
2137 def->args_ct[oarg].alias_index = i;
2138 def->args_ct[i].ct |= TCG_CT_IALIAS;
2139 def->args_ct[i].alias_index = oarg;
c896fe29 2140 }
17280ff4
RH
2141 ct_str++;
2142 break;
2143 case '&':
2144 def->args_ct[i].ct |= TCG_CT_NEWREG;
2145 ct_str++;
2146 break;
2147 case 'i':
2148 def->args_ct[i].ct |= TCG_CT_CONST;
2149 ct_str++;
2150 break;
2151 default:
2152 ct_str = target_parse_constraint(&def->args_ct[i],
2153 ct_str, type);
2154 /* Typo in TCGTargetOpDef constraint. */
2155 tcg_debug_assert(ct_str != NULL);
c896fe29
FB
2156 }
2157 }
2158 }
2159
c68aaa18 2160 /* TCGTargetOpDef entry with too much information? */
eabb7b91 2161 tcg_debug_assert(i == TCG_MAX_OP_ARGS || tdefs->args_ct_str[i] == NULL);
c68aaa18 2162
c896fe29
FB
2163 /* sort the constraints (XXX: this is just an heuristic) */
2164 sort_constraints(def, 0, def->nb_oargs);
2165 sort_constraints(def, def->nb_oargs, def->nb_iargs);
a9751609 2166 }
c896fe29
FB
2167}
2168
0c627cdc
RH
2169void tcg_op_remove(TCGContext *s, TCGOp *op)
2170{
15fa08f8
RH
2171 QTAILQ_REMOVE(&s->ops, op, link);
2172 QTAILQ_INSERT_TAIL(&s->free_ops, op, link);
abebf925 2173 s->nb_ops--;
0c627cdc
RH
2174
2175#ifdef CONFIG_PROFILER
c3fac113 2176 atomic_set(&s->prof.del_op_count, s->prof.del_op_count + 1);
0c627cdc
RH
2177#endif
2178}
2179
15fa08f8 2180static TCGOp *tcg_op_alloc(TCGOpcode opc)
5a18407f 2181{
15fa08f8
RH
2182 TCGContext *s = tcg_ctx;
2183 TCGOp *op;
5a18407f 2184
15fa08f8
RH
2185 if (likely(QTAILQ_EMPTY(&s->free_ops))) {
2186 op = tcg_malloc(sizeof(TCGOp));
2187 } else {
2188 op = QTAILQ_FIRST(&s->free_ops);
2189 QTAILQ_REMOVE(&s->free_ops, op, link);
2190 }
2191 memset(op, 0, offsetof(TCGOp, link));
2192 op->opc = opc;
abebf925 2193 s->nb_ops++;
5a18407f 2194
15fa08f8
RH
2195 return op;
2196}
2197
2198TCGOp *tcg_emit_op(TCGOpcode opc)
2199{
2200 TCGOp *op = tcg_op_alloc(opc);
2201 QTAILQ_INSERT_TAIL(&tcg_ctx->ops, op, link);
2202 return op;
2203}
5a18407f 2204
15fa08f8
RH
2205TCGOp *tcg_op_insert_before(TCGContext *s, TCGOp *old_op,
2206 TCGOpcode opc, int nargs)
2207{
2208 TCGOp *new_op = tcg_op_alloc(opc);
2209 QTAILQ_INSERT_BEFORE(old_op, new_op, link);
5a18407f
RH
2210 return new_op;
2211}
2212
2213TCGOp *tcg_op_insert_after(TCGContext *s, TCGOp *old_op,
2214 TCGOpcode opc, int nargs)
2215{
15fa08f8
RH
2216 TCGOp *new_op = tcg_op_alloc(opc);
2217 QTAILQ_INSERT_AFTER(&s->ops, old_op, new_op, link);
5a18407f
RH
2218 return new_op;
2219}
2220
c70fbf0a
RH
2221#define TS_DEAD 1
2222#define TS_MEM 2
2223
5a18407f
RH
2224#define IS_DEAD_ARG(n) (arg_life & (DEAD_ARG << (n)))
2225#define NEED_SYNC_ARG(n) (arg_life & (SYNC_ARG << (n)))
2226
9c43b68d
AJ
2227/* liveness analysis: end of function: all temps are dead, and globals
2228 should be in memory. */
b83eabea 2229static void tcg_la_func_end(TCGContext *s)
c896fe29 2230{
b83eabea
RH
2231 int ng = s->nb_globals;
2232 int nt = s->nb_temps;
2233 int i;
2234
2235 for (i = 0; i < ng; ++i) {
2236 s->temps[i].state = TS_DEAD | TS_MEM;
2237 }
2238 for (i = ng; i < nt; ++i) {
2239 s->temps[i].state = TS_DEAD;
2240 }
c896fe29
FB
2241}
2242
9c43b68d
AJ
2243/* liveness analysis: end of basic block: all temps are dead, globals
2244 and local temps should be in memory. */
b83eabea 2245static void tcg_la_bb_end(TCGContext *s)
641d5fbe 2246{
b83eabea
RH
2247 int ng = s->nb_globals;
2248 int nt = s->nb_temps;
2249 int i;
641d5fbe 2250
b83eabea
RH
2251 for (i = 0; i < ng; ++i) {
2252 s->temps[i].state = TS_DEAD | TS_MEM;
2253 }
2254 for (i = ng; i < nt; ++i) {
2255 s->temps[i].state = (s->temps[i].temp_local
2256 ? TS_DEAD | TS_MEM
2257 : TS_DEAD);
641d5fbe
FB
2258 }
2259}
2260
a1b3c48d 2261/* Liveness analysis : update the opc_arg_life array to tell if a
c896fe29
FB
2262 given input arguments is dead. Instructions updating dead
2263 temporaries are removed. */
b83eabea 2264static void liveness_pass_1(TCGContext *s)
c896fe29 2265{
c70fbf0a 2266 int nb_globals = s->nb_globals;
15fa08f8 2267 TCGOp *op, *op_prev;
a1b3c48d 2268
b83eabea 2269 tcg_la_func_end(s);
c896fe29 2270
15fa08f8 2271 QTAILQ_FOREACH_REVERSE_SAFE(op, &s->ops, TCGOpHead, link, op_prev) {
c45cb8bb
RH
2272 int i, nb_iargs, nb_oargs;
2273 TCGOpcode opc_new, opc_new2;
2274 bool have_opc_new2;
a1b3c48d 2275 TCGLifeData arg_life = 0;
b83eabea 2276 TCGTemp *arg_ts;
c45cb8bb
RH
2277 TCGOpcode opc = op->opc;
2278 const TCGOpDef *def = &tcg_op_defs[opc];
2279
c45cb8bb 2280 switch (opc) {
c896fe29 2281 case INDEX_op_call:
c6e113f5
FB
2282 {
2283 int call_flags;
c896fe29 2284
cd9090aa
RH
2285 nb_oargs = TCGOP_CALLO(op);
2286 nb_iargs = TCGOP_CALLI(op);
efee3746 2287 call_flags = op->args[nb_oargs + nb_iargs + 1];
c6e113f5 2288
c45cb8bb 2289 /* pure functions can be removed if their result is unused */
78505279 2290 if (call_flags & TCG_CALL_NO_SIDE_EFFECTS) {
cf066674 2291 for (i = 0; i < nb_oargs; i++) {
b83eabea
RH
2292 arg_ts = arg_temp(op->args[i]);
2293 if (arg_ts->state != TS_DEAD) {
c6e113f5 2294 goto do_not_remove_call;
9c43b68d 2295 }
c6e113f5 2296 }
c45cb8bb 2297 goto do_remove;
c6e113f5
FB
2298 } else {
2299 do_not_remove_call:
c896fe29 2300
c6e113f5 2301 /* output args are dead */
cf066674 2302 for (i = 0; i < nb_oargs; i++) {
b83eabea
RH
2303 arg_ts = arg_temp(op->args[i]);
2304 if (arg_ts->state & TS_DEAD) {
a1b3c48d 2305 arg_life |= DEAD_ARG << i;
6b64b624 2306 }
b83eabea 2307 if (arg_ts->state & TS_MEM) {
a1b3c48d 2308 arg_life |= SYNC_ARG << i;
9c43b68d 2309 }
b83eabea 2310 arg_ts->state = TS_DEAD;
c6e113f5 2311 }
78505279 2312
78505279
AJ
2313 if (!(call_flags & (TCG_CALL_NO_WRITE_GLOBALS |
2314 TCG_CALL_NO_READ_GLOBALS))) {
9c43b68d 2315 /* globals should go back to memory */
b83eabea
RH
2316 for (i = 0; i < nb_globals; i++) {
2317 s->temps[i].state = TS_DEAD | TS_MEM;
2318 }
c70fbf0a
RH
2319 } else if (!(call_flags & TCG_CALL_NO_READ_GLOBALS)) {
2320 /* globals should be synced to memory */
2321 for (i = 0; i < nb_globals; i++) {
b83eabea 2322 s->temps[i].state |= TS_MEM;
c70fbf0a 2323 }
b9c18f56
AJ
2324 }
2325
c19f47bf 2326 /* record arguments that die in this helper */
cf066674 2327 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
b83eabea
RH
2328 arg_ts = arg_temp(op->args[i]);
2329 if (arg_ts && arg_ts->state & TS_DEAD) {
2330 arg_life |= DEAD_ARG << i;
c6e113f5 2331 }
c6e113f5 2332 }
67cc32eb 2333 /* input arguments are live for preceding opcodes */
c70fbf0a 2334 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
b83eabea
RH
2335 arg_ts = arg_temp(op->args[i]);
2336 if (arg_ts) {
2337 arg_ts->state &= ~TS_DEAD;
c70fbf0a 2338 }
c19f47bf 2339 }
c896fe29 2340 }
c896fe29 2341 }
c896fe29 2342 break;
765b842a 2343 case INDEX_op_insn_start:
c896fe29 2344 break;
5ff9d6a4 2345 case INDEX_op_discard:
5ff9d6a4 2346 /* mark the temporary as dead */
b83eabea 2347 arg_temp(op->args[0])->state = TS_DEAD;
5ff9d6a4 2348 break;
1305c451
RH
2349
2350 case INDEX_op_add2_i32:
c45cb8bb 2351 opc_new = INDEX_op_add_i32;
f1fae40c 2352 goto do_addsub2;
1305c451 2353 case INDEX_op_sub2_i32:
c45cb8bb 2354 opc_new = INDEX_op_sub_i32;
f1fae40c
RH
2355 goto do_addsub2;
2356 case INDEX_op_add2_i64:
c45cb8bb 2357 opc_new = INDEX_op_add_i64;
f1fae40c
RH
2358 goto do_addsub2;
2359 case INDEX_op_sub2_i64:
c45cb8bb 2360 opc_new = INDEX_op_sub_i64;
f1fae40c 2361 do_addsub2:
1305c451
RH
2362 nb_iargs = 4;
2363 nb_oargs = 2;
2364 /* Test if the high part of the operation is dead, but not
2365 the low part. The result can be optimized to a simple
2366 add or sub. This happens often for x86_64 guest when the
2367 cpu mode is set to 32 bit. */
b83eabea
RH
2368 if (arg_temp(op->args[1])->state == TS_DEAD) {
2369 if (arg_temp(op->args[0])->state == TS_DEAD) {
1305c451
RH
2370 goto do_remove;
2371 }
c45cb8bb
RH
2372 /* Replace the opcode and adjust the args in place,
2373 leaving 3 unused args at the end. */
2374 op->opc = opc = opc_new;
efee3746
RH
2375 op->args[1] = op->args[2];
2376 op->args[2] = op->args[4];
1305c451
RH
2377 /* Fall through and mark the single-word operation live. */
2378 nb_iargs = 2;
2379 nb_oargs = 1;
2380 }
2381 goto do_not_remove;
2382
1414968a 2383 case INDEX_op_mulu2_i32:
c45cb8bb
RH
2384 opc_new = INDEX_op_mul_i32;
2385 opc_new2 = INDEX_op_muluh_i32;
2386 have_opc_new2 = TCG_TARGET_HAS_muluh_i32;
03271524 2387 goto do_mul2;
f1fae40c 2388 case INDEX_op_muls2_i32:
c45cb8bb
RH
2389 opc_new = INDEX_op_mul_i32;
2390 opc_new2 = INDEX_op_mulsh_i32;
2391 have_opc_new2 = TCG_TARGET_HAS_mulsh_i32;
f1fae40c
RH
2392 goto do_mul2;
2393 case INDEX_op_mulu2_i64:
c45cb8bb
RH
2394 opc_new = INDEX_op_mul_i64;
2395 opc_new2 = INDEX_op_muluh_i64;
2396 have_opc_new2 = TCG_TARGET_HAS_muluh_i64;
03271524 2397 goto do_mul2;
f1fae40c 2398 case INDEX_op_muls2_i64:
c45cb8bb
RH
2399 opc_new = INDEX_op_mul_i64;
2400 opc_new2 = INDEX_op_mulsh_i64;
2401 have_opc_new2 = TCG_TARGET_HAS_mulsh_i64;
03271524 2402 goto do_mul2;
f1fae40c 2403 do_mul2:
1414968a
RH
2404 nb_iargs = 2;
2405 nb_oargs = 2;
b83eabea
RH
2406 if (arg_temp(op->args[1])->state == TS_DEAD) {
2407 if (arg_temp(op->args[0])->state == TS_DEAD) {
03271524 2408 /* Both parts of the operation are dead. */
1414968a
RH
2409 goto do_remove;
2410 }
03271524 2411 /* The high part of the operation is dead; generate the low. */
c45cb8bb 2412 op->opc = opc = opc_new;
efee3746
RH
2413 op->args[1] = op->args[2];
2414 op->args[2] = op->args[3];
b83eabea 2415 } else if (arg_temp(op->args[0])->state == TS_DEAD && have_opc_new2) {
c45cb8bb
RH
2416 /* The low part of the operation is dead; generate the high. */
2417 op->opc = opc = opc_new2;
efee3746
RH
2418 op->args[0] = op->args[1];
2419 op->args[1] = op->args[2];
2420 op->args[2] = op->args[3];
03271524
RH
2421 } else {
2422 goto do_not_remove;
1414968a 2423 }
03271524
RH
2424 /* Mark the single-word operation live. */
2425 nb_oargs = 1;
1414968a
RH
2426 goto do_not_remove;
2427
c896fe29 2428 default:
1305c451 2429 /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
49516bc0
AJ
2430 nb_iargs = def->nb_iargs;
2431 nb_oargs = def->nb_oargs;
c896fe29 2432
49516bc0
AJ
2433 /* Test if the operation can be removed because all
2434 its outputs are dead. We assume that nb_oargs == 0
2435 implies side effects */
2436 if (!(def->flags & TCG_OPF_SIDE_EFFECTS) && nb_oargs != 0) {
c45cb8bb 2437 for (i = 0; i < nb_oargs; i++) {
b83eabea 2438 if (arg_temp(op->args[i])->state != TS_DEAD) {
49516bc0 2439 goto do_not_remove;
9c43b68d 2440 }
49516bc0 2441 }
1305c451 2442 do_remove:
0c627cdc 2443 tcg_op_remove(s, op);
49516bc0
AJ
2444 } else {
2445 do_not_remove:
49516bc0 2446 /* output args are dead */
c45cb8bb 2447 for (i = 0; i < nb_oargs; i++) {
b83eabea
RH
2448 arg_ts = arg_temp(op->args[i]);
2449 if (arg_ts->state & TS_DEAD) {
a1b3c48d 2450 arg_life |= DEAD_ARG << i;
6b64b624 2451 }
b83eabea 2452 if (arg_ts->state & TS_MEM) {
a1b3c48d 2453 arg_life |= SYNC_ARG << i;
9c43b68d 2454 }
b83eabea 2455 arg_ts->state = TS_DEAD;
49516bc0
AJ
2456 }
2457
2458 /* if end of basic block, update */
2459 if (def->flags & TCG_OPF_BB_END) {
b83eabea 2460 tcg_la_bb_end(s);
3d5c5f87
AJ
2461 } else if (def->flags & TCG_OPF_SIDE_EFFECTS) {
2462 /* globals should be synced to memory */
c70fbf0a 2463 for (i = 0; i < nb_globals; i++) {
b83eabea 2464 s->temps[i].state |= TS_MEM;
c70fbf0a 2465 }
49516bc0
AJ
2466 }
2467
c19f47bf 2468 /* record arguments that die in this opcode */
c45cb8bb 2469 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
b83eabea
RH
2470 arg_ts = arg_temp(op->args[i]);
2471 if (arg_ts->state & TS_DEAD) {
a1b3c48d 2472 arg_life |= DEAD_ARG << i;
c896fe29 2473 }
c19f47bf 2474 }
67cc32eb 2475 /* input arguments are live for preceding opcodes */
c19f47bf 2476 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
b83eabea 2477 arg_temp(op->args[i])->state &= ~TS_DEAD;
c896fe29 2478 }
c896fe29
FB
2479 }
2480 break;
2481 }
bee158cb 2482 op->life = arg_life;
1ff0a2c5 2483 }
c896fe29 2484}
c896fe29 2485
5a18407f 2486/* Liveness analysis: Convert indirect regs to direct temporaries. */
b83eabea 2487static bool liveness_pass_2(TCGContext *s)
5a18407f
RH
2488{
2489 int nb_globals = s->nb_globals;
15fa08f8 2490 int nb_temps, i;
5a18407f 2491 bool changes = false;
15fa08f8 2492 TCGOp *op, *op_next;
5a18407f 2493
5a18407f
RH
2494 /* Create a temporary for each indirect global. */
2495 for (i = 0; i < nb_globals; ++i) {
2496 TCGTemp *its = &s->temps[i];
2497 if (its->indirect_reg) {
2498 TCGTemp *dts = tcg_temp_alloc(s);
2499 dts->type = its->type;
2500 dts->base_type = its->base_type;
b83eabea
RH
2501 its->state_ptr = dts;
2502 } else {
2503 its->state_ptr = NULL;
5a18407f 2504 }
b83eabea
RH
2505 /* All globals begin dead. */
2506 its->state = TS_DEAD;
2507 }
2508 for (nb_temps = s->nb_temps; i < nb_temps; ++i) {
2509 TCGTemp *its = &s->temps[i];
2510 its->state_ptr = NULL;
2511 its->state = TS_DEAD;
5a18407f 2512 }
5a18407f 2513
15fa08f8 2514 QTAILQ_FOREACH_SAFE(op, &s->ops, link, op_next) {
5a18407f
RH
2515 TCGOpcode opc = op->opc;
2516 const TCGOpDef *def = &tcg_op_defs[opc];
2517 TCGLifeData arg_life = op->life;
2518 int nb_iargs, nb_oargs, call_flags;
b83eabea 2519 TCGTemp *arg_ts, *dir_ts;
5a18407f 2520
5a18407f 2521 if (opc == INDEX_op_call) {
cd9090aa
RH
2522 nb_oargs = TCGOP_CALLO(op);
2523 nb_iargs = TCGOP_CALLI(op);
efee3746 2524 call_flags = op->args[nb_oargs + nb_iargs + 1];
5a18407f
RH
2525 } else {
2526 nb_iargs = def->nb_iargs;
2527 nb_oargs = def->nb_oargs;
2528
2529 /* Set flags similar to how calls require. */
2530 if (def->flags & TCG_OPF_BB_END) {
2531 /* Like writing globals: save_globals */
2532 call_flags = 0;
2533 } else if (def->flags & TCG_OPF_SIDE_EFFECTS) {
2534 /* Like reading globals: sync_globals */
2535 call_flags = TCG_CALL_NO_WRITE_GLOBALS;
2536 } else {
2537 /* No effect on globals. */
2538 call_flags = (TCG_CALL_NO_READ_GLOBALS |
2539 TCG_CALL_NO_WRITE_GLOBALS);
2540 }
2541 }
2542
2543 /* Make sure that input arguments are available. */
2544 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
b83eabea
RH
2545 arg_ts = arg_temp(op->args[i]);
2546 if (arg_ts) {
2547 dir_ts = arg_ts->state_ptr;
2548 if (dir_ts && arg_ts->state == TS_DEAD) {
2549 TCGOpcode lopc = (arg_ts->type == TCG_TYPE_I32
5a18407f
RH
2550 ? INDEX_op_ld_i32
2551 : INDEX_op_ld_i64);
2552 TCGOp *lop = tcg_op_insert_before(s, op, lopc, 3);
5a18407f 2553
b83eabea
RH
2554 lop->args[0] = temp_arg(dir_ts);
2555 lop->args[1] = temp_arg(arg_ts->mem_base);
2556 lop->args[2] = arg_ts->mem_offset;
5a18407f
RH
2557
2558 /* Loaded, but synced with memory. */
b83eabea 2559 arg_ts->state = TS_MEM;
5a18407f
RH
2560 }
2561 }
2562 }
2563
2564 /* Perform input replacement, and mark inputs that became dead.
2565 No action is required except keeping temp_state up to date
2566 so that we reload when needed. */
2567 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
b83eabea
RH
2568 arg_ts = arg_temp(op->args[i]);
2569 if (arg_ts) {
2570 dir_ts = arg_ts->state_ptr;
2571 if (dir_ts) {
2572 op->args[i] = temp_arg(dir_ts);
5a18407f
RH
2573 changes = true;
2574 if (IS_DEAD_ARG(i)) {
b83eabea 2575 arg_ts->state = TS_DEAD;
5a18407f
RH
2576 }
2577 }
2578 }
2579 }
2580
2581 /* Liveness analysis should ensure that the following are
2582 all correct, for call sites and basic block end points. */
2583 if (call_flags & TCG_CALL_NO_READ_GLOBALS) {
2584 /* Nothing to do */
2585 } else if (call_flags & TCG_CALL_NO_WRITE_GLOBALS) {
2586 for (i = 0; i < nb_globals; ++i) {
2587 /* Liveness should see that globals are synced back,
2588 that is, either TS_DEAD or TS_MEM. */
b83eabea
RH
2589 arg_ts = &s->temps[i];
2590 tcg_debug_assert(arg_ts->state_ptr == 0
2591 || arg_ts->state != 0);
5a18407f
RH
2592 }
2593 } else {
2594 for (i = 0; i < nb_globals; ++i) {
2595 /* Liveness should see that globals are saved back,
2596 that is, TS_DEAD, waiting to be reloaded. */
b83eabea
RH
2597 arg_ts = &s->temps[i];
2598 tcg_debug_assert(arg_ts->state_ptr == 0
2599 || arg_ts->state == TS_DEAD);
5a18407f
RH
2600 }
2601 }
2602
2603 /* Outputs become available. */
2604 for (i = 0; i < nb_oargs; i++) {
b83eabea
RH
2605 arg_ts = arg_temp(op->args[i]);
2606 dir_ts = arg_ts->state_ptr;
2607 if (!dir_ts) {
5a18407f
RH
2608 continue;
2609 }
b83eabea 2610 op->args[i] = temp_arg(dir_ts);
5a18407f
RH
2611 changes = true;
2612
2613 /* The output is now live and modified. */
b83eabea 2614 arg_ts->state = 0;
5a18407f
RH
2615
2616 /* Sync outputs upon their last write. */
2617 if (NEED_SYNC_ARG(i)) {
b83eabea 2618 TCGOpcode sopc = (arg_ts->type == TCG_TYPE_I32
5a18407f
RH
2619 ? INDEX_op_st_i32
2620 : INDEX_op_st_i64);
2621 TCGOp *sop = tcg_op_insert_after(s, op, sopc, 3);
5a18407f 2622
b83eabea
RH
2623 sop->args[0] = temp_arg(dir_ts);
2624 sop->args[1] = temp_arg(arg_ts->mem_base);
2625 sop->args[2] = arg_ts->mem_offset;
5a18407f 2626
b83eabea 2627 arg_ts->state = TS_MEM;
5a18407f
RH
2628 }
2629 /* Drop outputs that are dead. */
2630 if (IS_DEAD_ARG(i)) {
b83eabea 2631 arg_ts->state = TS_DEAD;
5a18407f
RH
2632 }
2633 }
2634 }
2635
2636 return changes;
2637}
2638
8d8fdbae 2639#ifdef CONFIG_DEBUG_TCG
c896fe29
FB
2640static void dump_regs(TCGContext *s)
2641{
2642 TCGTemp *ts;
2643 int i;
2644 char buf[64];
2645
2646 for(i = 0; i < s->nb_temps; i++) {
2647 ts = &s->temps[i];
43439139 2648 printf(" %10s: ", tcg_get_arg_str_ptr(s, buf, sizeof(buf), ts));
c896fe29
FB
2649 switch(ts->val_type) {
2650 case TEMP_VAL_REG:
2651 printf("%s", tcg_target_reg_names[ts->reg]);
2652 break;
2653 case TEMP_VAL_MEM:
b3a62939
RH
2654 printf("%d(%s)", (int)ts->mem_offset,
2655 tcg_target_reg_names[ts->mem_base->reg]);
c896fe29
FB
2656 break;
2657 case TEMP_VAL_CONST:
2658 printf("$0x%" TCG_PRIlx, ts->val);
2659 break;
2660 case TEMP_VAL_DEAD:
2661 printf("D");
2662 break;
2663 default:
2664 printf("???");
2665 break;
2666 }
2667 printf("\n");
2668 }
2669
2670 for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
f8b2f202 2671 if (s->reg_to_temp[i] != NULL) {
c896fe29
FB
2672 printf("%s: %s\n",
2673 tcg_target_reg_names[i],
f8b2f202 2674 tcg_get_arg_str_ptr(s, buf, sizeof(buf), s->reg_to_temp[i]));
c896fe29
FB
2675 }
2676 }
2677}
2678
2679static void check_regs(TCGContext *s)
2680{
869938ae 2681 int reg;
b6638662 2682 int k;
c896fe29
FB
2683 TCGTemp *ts;
2684 char buf[64];
2685
f8b2f202
RH
2686 for (reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
2687 ts = s->reg_to_temp[reg];
2688 if (ts != NULL) {
2689 if (ts->val_type != TEMP_VAL_REG || ts->reg != reg) {
c896fe29
FB
2690 printf("Inconsistency for register %s:\n",
2691 tcg_target_reg_names[reg]);
b03cce8e 2692 goto fail;
c896fe29
FB
2693 }
2694 }
2695 }
f8b2f202 2696 for (k = 0; k < s->nb_temps; k++) {
c896fe29 2697 ts = &s->temps[k];
f8b2f202
RH
2698 if (ts->val_type == TEMP_VAL_REG && !ts->fixed_reg
2699 && s->reg_to_temp[ts->reg] != ts) {
2700 printf("Inconsistency for temp %s:\n",
2701 tcg_get_arg_str_ptr(s, buf, sizeof(buf), ts));
b03cce8e 2702 fail:
f8b2f202
RH
2703 printf("reg state:\n");
2704 dump_regs(s);
2705 tcg_abort();
c896fe29
FB
2706 }
2707 }
2708}
2709#endif
2710
2272e4a7 2711static void temp_allocate_frame(TCGContext *s, TCGTemp *ts)
c896fe29 2712{
9b9c37c3
RH
2713#if !(defined(__sparc__) && TCG_TARGET_REG_BITS == 64)
2714 /* Sparc64 stack is accessed with offset of 2047 */
b591dc59
BS
2715 s->current_frame_offset = (s->current_frame_offset +
2716 (tcg_target_long)sizeof(tcg_target_long) - 1) &
2717 ~(sizeof(tcg_target_long) - 1);
f44c9960 2718#endif
b591dc59
BS
2719 if (s->current_frame_offset + (tcg_target_long)sizeof(tcg_target_long) >
2720 s->frame_end) {
5ff9d6a4 2721 tcg_abort();
b591dc59 2722 }
c896fe29 2723 ts->mem_offset = s->current_frame_offset;
b3a62939 2724 ts->mem_base = s->frame_temp;
c896fe29 2725 ts->mem_allocated = 1;
e2c6d1b4 2726 s->current_frame_offset += sizeof(tcg_target_long);
c896fe29
FB
2727}
2728
b3915dbb
RH
2729static void temp_load(TCGContext *, TCGTemp *, TCGRegSet, TCGRegSet);
2730
59d7c14e
RH
2731/* Mark a temporary as free or dead. If 'free_or_dead' is negative,
2732 mark it free; otherwise mark it dead. */
2733static void temp_free_or_dead(TCGContext *s, TCGTemp *ts, int free_or_dead)
7f6ceedf 2734{
59d7c14e
RH
2735 if (ts->fixed_reg) {
2736 return;
2737 }
2738 if (ts->val_type == TEMP_VAL_REG) {
2739 s->reg_to_temp[ts->reg] = NULL;
2740 }
2741 ts->val_type = (free_or_dead < 0
2742 || ts->temp_local
fa477d25 2743 || ts->temp_global
59d7c14e
RH
2744 ? TEMP_VAL_MEM : TEMP_VAL_DEAD);
2745}
7f6ceedf 2746
59d7c14e
RH
2747/* Mark a temporary as dead. */
2748static inline void temp_dead(TCGContext *s, TCGTemp *ts)
2749{
2750 temp_free_or_dead(s, ts, 1);
2751}
2752
2753/* Sync a temporary to memory. 'allocated_regs' is used in case a temporary
2754 registers needs to be allocated to store a constant. If 'free_or_dead'
2755 is non-zero, subsequently release the temporary; if it is positive, the
2756 temp is dead; if it is negative, the temp is free. */
2757static void temp_sync(TCGContext *s, TCGTemp *ts,
2758 TCGRegSet allocated_regs, int free_or_dead)
2759{
2760 if (ts->fixed_reg) {
2761 return;
2762 }
2763 if (!ts->mem_coherent) {
7f6ceedf 2764 if (!ts->mem_allocated) {
2272e4a7 2765 temp_allocate_frame(s, ts);
59d7c14e 2766 }
59d7c14e
RH
2767 switch (ts->val_type) {
2768 case TEMP_VAL_CONST:
2769 /* If we're going to free the temp immediately, then we won't
2770 require it later in a register, so attempt to store the
2771 constant to memory directly. */
2772 if (free_or_dead
2773 && tcg_out_sti(s, ts->type, ts->val,
2774 ts->mem_base->reg, ts->mem_offset)) {
2775 break;
2776 }
2777 temp_load(s, ts, tcg_target_available_regs[ts->type],
2778 allocated_regs);
2779 /* fallthrough */
2780
2781 case TEMP_VAL_REG:
2782 tcg_out_st(s, ts->type, ts->reg,
2783 ts->mem_base->reg, ts->mem_offset);
2784 break;
2785
2786 case TEMP_VAL_MEM:
2787 break;
2788
2789 case TEMP_VAL_DEAD:
2790 default:
2791 tcg_abort();
2792 }
2793 ts->mem_coherent = 1;
2794 }
2795 if (free_or_dead) {
2796 temp_free_or_dead(s, ts, free_or_dead);
7f6ceedf 2797 }
7f6ceedf
AJ
2798}
2799
c896fe29 2800/* free register 'reg' by spilling the corresponding temporary if necessary */
b3915dbb 2801static void tcg_reg_free(TCGContext *s, TCGReg reg, TCGRegSet allocated_regs)
c896fe29 2802{
f8b2f202 2803 TCGTemp *ts = s->reg_to_temp[reg];
f8b2f202 2804 if (ts != NULL) {
59d7c14e 2805 temp_sync(s, ts, allocated_regs, -1);
c896fe29
FB
2806 }
2807}
2808
2809/* Allocate a register belonging to reg1 & ~reg2 */
b3915dbb 2810static TCGReg tcg_reg_alloc(TCGContext *s, TCGRegSet desired_regs,
91478cef 2811 TCGRegSet allocated_regs, bool rev)
c896fe29 2812{
91478cef
RH
2813 int i, n = ARRAY_SIZE(tcg_target_reg_alloc_order);
2814 const int *order;
b6638662 2815 TCGReg reg;
c896fe29
FB
2816 TCGRegSet reg_ct;
2817
07ddf036 2818 reg_ct = desired_regs & ~allocated_regs;
91478cef 2819 order = rev ? indirect_reg_alloc_order : tcg_target_reg_alloc_order;
c896fe29
FB
2820
2821 /* first try free registers */
91478cef
RH
2822 for(i = 0; i < n; i++) {
2823 reg = order[i];
f8b2f202 2824 if (tcg_regset_test_reg(reg_ct, reg) && s->reg_to_temp[reg] == NULL)
c896fe29
FB
2825 return reg;
2826 }
2827
2828 /* XXX: do better spill choice */
91478cef
RH
2829 for(i = 0; i < n; i++) {
2830 reg = order[i];
c896fe29 2831 if (tcg_regset_test_reg(reg_ct, reg)) {
b3915dbb 2832 tcg_reg_free(s, reg, allocated_regs);
c896fe29
FB
2833 return reg;
2834 }
2835 }
2836
2837 tcg_abort();
2838}
2839
40ae5c62
RH
2840/* Make sure the temporary is in a register. If needed, allocate the register
2841 from DESIRED while avoiding ALLOCATED. */
2842static void temp_load(TCGContext *s, TCGTemp *ts, TCGRegSet desired_regs,
2843 TCGRegSet allocated_regs)
2844{
2845 TCGReg reg;
2846
2847 switch (ts->val_type) {
2848 case TEMP_VAL_REG:
2849 return;
2850 case TEMP_VAL_CONST:
91478cef 2851 reg = tcg_reg_alloc(s, desired_regs, allocated_regs, ts->indirect_base);
40ae5c62
RH
2852 tcg_out_movi(s, ts->type, reg, ts->val);
2853 ts->mem_coherent = 0;
2854 break;
2855 case TEMP_VAL_MEM:
91478cef 2856 reg = tcg_reg_alloc(s, desired_regs, allocated_regs, ts->indirect_base);
40ae5c62
RH
2857 tcg_out_ld(s, ts->type, reg, ts->mem_base->reg, ts->mem_offset);
2858 ts->mem_coherent = 1;
2859 break;
2860 case TEMP_VAL_DEAD:
2861 default:
2862 tcg_abort();
2863 }
2864 ts->reg = reg;
2865 ts->val_type = TEMP_VAL_REG;
2866 s->reg_to_temp[reg] = ts;
2867}
2868
59d7c14e
RH
2869/* Save a temporary to memory. 'allocated_regs' is used in case a
2870 temporary registers needs to be allocated to store a constant. */
2871static void temp_save(TCGContext *s, TCGTemp *ts, TCGRegSet allocated_regs)
1ad80729 2872{
5a18407f
RH
2873 /* The liveness analysis already ensures that globals are back
2874 in memory. Keep an tcg_debug_assert for safety. */
2875 tcg_debug_assert(ts->val_type == TEMP_VAL_MEM || ts->fixed_reg);
1ad80729
AJ
2876}
2877
9814dd27 2878/* save globals to their canonical location and assume they can be
e8996ee0
FB
2879 modified be the following code. 'allocated_regs' is used in case a
2880 temporary registers needs to be allocated to store a constant. */
2881static void save_globals(TCGContext *s, TCGRegSet allocated_regs)
c896fe29 2882{
ac3b8891 2883 int i, n;
c896fe29 2884
ac3b8891 2885 for (i = 0, n = s->nb_globals; i < n; i++) {
b13eb728 2886 temp_save(s, &s->temps[i], allocated_regs);
c896fe29 2887 }
e5097dc8
FB
2888}
2889
3d5c5f87
AJ
2890/* sync globals to their canonical location and assume they can be
2891 read by the following code. 'allocated_regs' is used in case a
2892 temporary registers needs to be allocated to store a constant. */
2893static void sync_globals(TCGContext *s, TCGRegSet allocated_regs)
2894{
ac3b8891 2895 int i, n;
3d5c5f87 2896
ac3b8891 2897 for (i = 0, n = s->nb_globals; i < n; i++) {
12b9b11a 2898 TCGTemp *ts = &s->temps[i];
5a18407f
RH
2899 tcg_debug_assert(ts->val_type != TEMP_VAL_REG
2900 || ts->fixed_reg
2901 || ts->mem_coherent);
3d5c5f87
AJ
2902 }
2903}
2904
e5097dc8 2905/* at the end of a basic block, we assume all temporaries are dead and
e8996ee0
FB
2906 all globals are stored at their canonical location. */
2907static void tcg_reg_alloc_bb_end(TCGContext *s, TCGRegSet allocated_regs)
e5097dc8 2908{
e5097dc8
FB
2909 int i;
2910
b13eb728
RH
2911 for (i = s->nb_globals; i < s->nb_temps; i++) {
2912 TCGTemp *ts = &s->temps[i];
641d5fbe 2913 if (ts->temp_local) {
b13eb728 2914 temp_save(s, ts, allocated_regs);
641d5fbe 2915 } else {
5a18407f
RH
2916 /* The liveness analysis already ensures that temps are dead.
2917 Keep an tcg_debug_assert for safety. */
2918 tcg_debug_assert(ts->val_type == TEMP_VAL_DEAD);
c896fe29
FB
2919 }
2920 }
e8996ee0
FB
2921
2922 save_globals(s, allocated_regs);
c896fe29
FB
2923}
2924
0fe4fca4
PB
2925static void tcg_reg_alloc_do_movi(TCGContext *s, TCGTemp *ots,
2926 tcg_target_ulong val, TCGLifeData arg_life)
e8996ee0 2927{
e8996ee0 2928 if (ots->fixed_reg) {
59d7c14e 2929 /* For fixed registers, we do not do any constant propagation. */
e8996ee0 2930 tcg_out_movi(s, ots->type, ots->reg, val);
59d7c14e 2931 return;
e8996ee0 2932 }
59d7c14e
RH
2933
2934 /* The movi is not explicitly generated here. */
2935 if (ots->val_type == TEMP_VAL_REG) {
2936 s->reg_to_temp[ots->reg] = NULL;
ec7a869d 2937 }
59d7c14e
RH
2938 ots->val_type = TEMP_VAL_CONST;
2939 ots->val = val;
2940 ots->mem_coherent = 0;
2941 if (NEED_SYNC_ARG(0)) {
2942 temp_sync(s, ots, s->reserved_regs, IS_DEAD_ARG(0));
2943 } else if (IS_DEAD_ARG(0)) {
f8bf00f1 2944 temp_dead(s, ots);
4c4e1ab2 2945 }
e8996ee0
FB
2946}
2947
dd186292 2948static void tcg_reg_alloc_movi(TCGContext *s, const TCGOp *op)
0fe4fca4 2949{
43439139 2950 TCGTemp *ots = arg_temp(op->args[0]);
dd186292 2951 tcg_target_ulong val = op->args[1];
0fe4fca4 2952
dd186292 2953 tcg_reg_alloc_do_movi(s, ots, val, op->life);
0fe4fca4
PB
2954}
2955
dd186292 2956static void tcg_reg_alloc_mov(TCGContext *s, const TCGOp *op)
c896fe29 2957{
dd186292 2958 const TCGLifeData arg_life = op->life;
c29c1d7e 2959 TCGRegSet allocated_regs;
c896fe29 2960 TCGTemp *ts, *ots;
450445d5 2961 TCGType otype, itype;
c896fe29 2962
d21369f5 2963 allocated_regs = s->reserved_regs;
43439139
RH
2964 ots = arg_temp(op->args[0]);
2965 ts = arg_temp(op->args[1]);
450445d5
RH
2966
2967 /* Note that otype != itype for no-op truncation. */
2968 otype = ots->type;
2969 itype = ts->type;
c29c1d7e 2970
0fe4fca4
PB
2971 if (ts->val_type == TEMP_VAL_CONST) {
2972 /* propagate constant or generate sti */
2973 tcg_target_ulong val = ts->val;
2974 if (IS_DEAD_ARG(1)) {
2975 temp_dead(s, ts);
2976 }
2977 tcg_reg_alloc_do_movi(s, ots, val, arg_life);
2978 return;
2979 }
2980
2981 /* If the source value is in memory we're going to be forced
2982 to have it in a register in order to perform the copy. Copy
2983 the SOURCE value into its own register first, that way we
2984 don't have to reload SOURCE the next time it is used. */
2985 if (ts->val_type == TEMP_VAL_MEM) {
40ae5c62 2986 temp_load(s, ts, tcg_target_available_regs[itype], allocated_regs);
c29c1d7e 2987 }
c896fe29 2988
0fe4fca4 2989 tcg_debug_assert(ts->val_type == TEMP_VAL_REG);
c29c1d7e
AJ
2990 if (IS_DEAD_ARG(0) && !ots->fixed_reg) {
2991 /* mov to a non-saved dead register makes no sense (even with
2992 liveness analysis disabled). */
eabb7b91 2993 tcg_debug_assert(NEED_SYNC_ARG(0));
c29c1d7e 2994 if (!ots->mem_allocated) {
2272e4a7 2995 temp_allocate_frame(s, ots);
c29c1d7e 2996 }
b3a62939 2997 tcg_out_st(s, otype, ts->reg, ots->mem_base->reg, ots->mem_offset);
c29c1d7e 2998 if (IS_DEAD_ARG(1)) {
f8bf00f1 2999 temp_dead(s, ts);
c29c1d7e 3000 }
f8bf00f1 3001 temp_dead(s, ots);
c29c1d7e 3002 } else {
866cb6cb 3003 if (IS_DEAD_ARG(1) && !ts->fixed_reg && !ots->fixed_reg) {
c896fe29 3004 /* the mov can be suppressed */
c29c1d7e 3005 if (ots->val_type == TEMP_VAL_REG) {
f8b2f202 3006 s->reg_to_temp[ots->reg] = NULL;
c29c1d7e
AJ
3007 }
3008 ots->reg = ts->reg;
f8bf00f1 3009 temp_dead(s, ts);
c896fe29 3010 } else {
c29c1d7e
AJ
3011 if (ots->val_type != TEMP_VAL_REG) {
3012 /* When allocating a new register, make sure to not spill the
3013 input one. */
3014 tcg_regset_set_reg(allocated_regs, ts->reg);
450445d5 3015 ots->reg = tcg_reg_alloc(s, tcg_target_available_regs[otype],
91478cef 3016 allocated_regs, ots->indirect_base);
c896fe29 3017 }
450445d5 3018 tcg_out_mov(s, otype, ots->reg, ts->reg);
c896fe29 3019 }
c29c1d7e
AJ
3020 ots->val_type = TEMP_VAL_REG;
3021 ots->mem_coherent = 0;
f8b2f202 3022 s->reg_to_temp[ots->reg] = ots;
c29c1d7e 3023 if (NEED_SYNC_ARG(0)) {
59d7c14e 3024 temp_sync(s, ots, allocated_regs, 0);
c896fe29 3025 }
ec7a869d 3026 }
c896fe29
FB
3027}
3028
dd186292 3029static void tcg_reg_alloc_op(TCGContext *s, const TCGOp *op)
c896fe29 3030{
dd186292
RH
3031 const TCGLifeData arg_life = op->life;
3032 const TCGOpDef * const def = &tcg_op_defs[op->opc];
82790a87
RH
3033 TCGRegSet i_allocated_regs;
3034 TCGRegSet o_allocated_regs;
b6638662
RH
3035 int i, k, nb_iargs, nb_oargs;
3036 TCGReg reg;
c896fe29
FB
3037 TCGArg arg;
3038 const TCGArgConstraint *arg_ct;
3039 TCGTemp *ts;
3040 TCGArg new_args[TCG_MAX_OP_ARGS];
3041 int const_args[TCG_MAX_OP_ARGS];
3042
3043 nb_oargs = def->nb_oargs;
3044 nb_iargs = def->nb_iargs;
3045
3046 /* copy constants */
3047 memcpy(new_args + nb_oargs + nb_iargs,
dd186292 3048 op->args + nb_oargs + nb_iargs,
c896fe29
FB
3049 sizeof(TCGArg) * def->nb_cargs);
3050
d21369f5
RH
3051 i_allocated_regs = s->reserved_regs;
3052 o_allocated_regs = s->reserved_regs;
82790a87 3053
c896fe29 3054 /* satisfy input constraints */
dd186292 3055 for (k = 0; k < nb_iargs; k++) {
c896fe29 3056 i = def->sorted_args[nb_oargs + k];
dd186292 3057 arg = op->args[i];
c896fe29 3058 arg_ct = &def->args_ct[i];
43439139 3059 ts = arg_temp(arg);
40ae5c62
RH
3060
3061 if (ts->val_type == TEMP_VAL_CONST
3062 && tcg_target_const_match(ts->val, ts->type, arg_ct)) {
3063 /* constant is OK for instruction */
3064 const_args[i] = 1;
3065 new_args[i] = ts->val;
3066 goto iarg_end;
c896fe29 3067 }
40ae5c62 3068
82790a87 3069 temp_load(s, ts, arg_ct->u.regs, i_allocated_regs);
40ae5c62 3070
5ff9d6a4
FB
3071 if (arg_ct->ct & TCG_CT_IALIAS) {
3072 if (ts->fixed_reg) {
3073 /* if fixed register, we must allocate a new register
3074 if the alias is not the same register */
dd186292 3075 if (arg != op->args[arg_ct->alias_index])
5ff9d6a4
FB
3076 goto allocate_in_reg;
3077 } else {
3078 /* if the input is aliased to an output and if it is
3079 not dead after the instruction, we must allocate
3080 a new register and move it */
866cb6cb 3081 if (!IS_DEAD_ARG(i)) {
5ff9d6a4 3082 goto allocate_in_reg;
866cb6cb 3083 }
7e1df267
AJ
3084 /* check if the current register has already been allocated
3085 for another input aliased to an output */
3086 int k2, i2;
3087 for (k2 = 0 ; k2 < k ; k2++) {
3088 i2 = def->sorted_args[nb_oargs + k2];
3089 if ((def->args_ct[i2].ct & TCG_CT_IALIAS) &&
3090 (new_args[i2] == ts->reg)) {
3091 goto allocate_in_reg;
3092 }
3093 }
5ff9d6a4 3094 }
c896fe29
FB
3095 }
3096 reg = ts->reg;
3097 if (tcg_regset_test_reg(arg_ct->u.regs, reg)) {
3098 /* nothing to do : the constraint is satisfied */
3099 } else {
3100 allocate_in_reg:
3101 /* allocate a new register matching the constraint
3102 and move the temporary register into it */
82790a87 3103 reg = tcg_reg_alloc(s, arg_ct->u.regs, i_allocated_regs,
91478cef 3104 ts->indirect_base);
3b6dac34 3105 tcg_out_mov(s, ts->type, reg, ts->reg);
c896fe29 3106 }
c896fe29
FB
3107 new_args[i] = reg;
3108 const_args[i] = 0;
82790a87 3109 tcg_regset_set_reg(i_allocated_regs, reg);
c896fe29
FB
3110 iarg_end: ;
3111 }
3112
a52ad07e
AJ
3113 /* mark dead temporaries and free the associated registers */
3114 for (i = nb_oargs; i < nb_oargs + nb_iargs; i++) {
3115 if (IS_DEAD_ARG(i)) {
43439139 3116 temp_dead(s, arg_temp(op->args[i]));
a52ad07e
AJ
3117 }
3118 }
3119
e8996ee0 3120 if (def->flags & TCG_OPF_BB_END) {
82790a87 3121 tcg_reg_alloc_bb_end(s, i_allocated_regs);
e8996ee0 3122 } else {
e8996ee0
FB
3123 if (def->flags & TCG_OPF_CALL_CLOBBER) {
3124 /* XXX: permit generic clobber register list ? */
c8074023
RH
3125 for (i = 0; i < TCG_TARGET_NB_REGS; i++) {
3126 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, i)) {
82790a87 3127 tcg_reg_free(s, i, i_allocated_regs);
e8996ee0 3128 }
c896fe29 3129 }
3d5c5f87
AJ
3130 }
3131 if (def->flags & TCG_OPF_SIDE_EFFECTS) {
3132 /* sync globals if the op has side effects and might trigger
3133 an exception. */
82790a87 3134 sync_globals(s, i_allocated_regs);
c896fe29 3135 }
e8996ee0
FB
3136
3137 /* satisfy the output constraints */
e8996ee0
FB
3138 for(k = 0; k < nb_oargs; k++) {
3139 i = def->sorted_args[k];
dd186292 3140 arg = op->args[i];
e8996ee0 3141 arg_ct = &def->args_ct[i];
43439139 3142 ts = arg_temp(arg);
17280ff4
RH
3143 if ((arg_ct->ct & TCG_CT_ALIAS)
3144 && !const_args[arg_ct->alias_index]) {
e8996ee0 3145 reg = new_args[arg_ct->alias_index];
82790a87
RH
3146 } else if (arg_ct->ct & TCG_CT_NEWREG) {
3147 reg = tcg_reg_alloc(s, arg_ct->u.regs,
3148 i_allocated_regs | o_allocated_regs,
3149 ts->indirect_base);
e8996ee0
FB
3150 } else {
3151 /* if fixed register, we try to use it */
3152 reg = ts->reg;
3153 if (ts->fixed_reg &&
3154 tcg_regset_test_reg(arg_ct->u.regs, reg)) {
3155 goto oarg_end;
3156 }
82790a87 3157 reg = tcg_reg_alloc(s, arg_ct->u.regs, o_allocated_regs,
91478cef 3158 ts->indirect_base);
c896fe29 3159 }
82790a87 3160 tcg_regset_set_reg(o_allocated_regs, reg);
e8996ee0
FB
3161 /* if a fixed register is used, then a move will be done afterwards */
3162 if (!ts->fixed_reg) {
ec7a869d 3163 if (ts->val_type == TEMP_VAL_REG) {
f8b2f202 3164 s->reg_to_temp[ts->reg] = NULL;
ec7a869d
AJ
3165 }
3166 ts->val_type = TEMP_VAL_REG;
3167 ts->reg = reg;
3168 /* temp value is modified, so the value kept in memory is
3169 potentially not the same */
3170 ts->mem_coherent = 0;
f8b2f202 3171 s->reg_to_temp[reg] = ts;
e8996ee0
FB
3172 }
3173 oarg_end:
3174 new_args[i] = reg;
c896fe29 3175 }
c896fe29
FB
3176 }
3177
c896fe29 3178 /* emit instruction */
d2fd745f
RH
3179 if (def->flags & TCG_OPF_VECTOR) {
3180 tcg_out_vec_op(s, op->opc, TCGOP_VECL(op), TCGOP_VECE(op),
3181 new_args, const_args);
3182 } else {
3183 tcg_out_op(s, op->opc, new_args, const_args);
3184 }
3185
c896fe29
FB
3186 /* move the outputs in the correct register if needed */
3187 for(i = 0; i < nb_oargs; i++) {
43439139 3188 ts = arg_temp(op->args[i]);
c896fe29
FB
3189 reg = new_args[i];
3190 if (ts->fixed_reg && ts->reg != reg) {
3b6dac34 3191 tcg_out_mov(s, ts->type, ts->reg, reg);
c896fe29 3192 }
ec7a869d 3193 if (NEED_SYNC_ARG(i)) {
82790a87 3194 temp_sync(s, ts, o_allocated_regs, IS_DEAD_ARG(i));
59d7c14e 3195 } else if (IS_DEAD_ARG(i)) {
f8bf00f1 3196 temp_dead(s, ts);
ec7a869d 3197 }
c896fe29
FB
3198 }
3199}
3200
b03cce8e
FB
3201#ifdef TCG_TARGET_STACK_GROWSUP
3202#define STACK_DIR(x) (-(x))
3203#else
3204#define STACK_DIR(x) (x)
3205#endif
3206
dd186292 3207static void tcg_reg_alloc_call(TCGContext *s, TCGOp *op)
c896fe29 3208{
cd9090aa
RH
3209 const int nb_oargs = TCGOP_CALLO(op);
3210 const int nb_iargs = TCGOP_CALLI(op);
dd186292 3211 const TCGLifeData arg_life = op->life;
b6638662
RH
3212 int flags, nb_regs, i;
3213 TCGReg reg;
cf066674 3214 TCGArg arg;
c896fe29 3215 TCGTemp *ts;
d3452f1f
RH
3216 intptr_t stack_offset;
3217 size_t call_stack_size;
cf066674
RH
3218 tcg_insn_unit *func_addr;
3219 int allocate_args;
c896fe29 3220 TCGRegSet allocated_regs;
c896fe29 3221
dd186292
RH
3222 func_addr = (tcg_insn_unit *)(intptr_t)op->args[nb_oargs + nb_iargs];
3223 flags = op->args[nb_oargs + nb_iargs + 1];
c896fe29 3224
6e17d0c5 3225 nb_regs = ARRAY_SIZE(tcg_target_call_iarg_regs);
c45cb8bb
RH
3226 if (nb_regs > nb_iargs) {
3227 nb_regs = nb_iargs;
cf066674 3228 }
c896fe29
FB
3229
3230 /* assign stack slots first */
c45cb8bb 3231 call_stack_size = (nb_iargs - nb_regs) * sizeof(tcg_target_long);
c896fe29
FB
3232 call_stack_size = (call_stack_size + TCG_TARGET_STACK_ALIGN - 1) &
3233 ~(TCG_TARGET_STACK_ALIGN - 1);
b03cce8e
FB
3234 allocate_args = (call_stack_size > TCG_STATIC_CALL_ARGS_SIZE);
3235 if (allocate_args) {
345649c0
BS
3236 /* XXX: if more than TCG_STATIC_CALL_ARGS_SIZE is needed,
3237 preallocate call stack */
3238 tcg_abort();
b03cce8e 3239 }
39cf05d3
FB
3240
3241 stack_offset = TCG_TARGET_CALL_STACK_OFFSET;
dd186292
RH
3242 for (i = nb_regs; i < nb_iargs; i++) {
3243 arg = op->args[nb_oargs + i];
39cf05d3
FB
3244#ifdef TCG_TARGET_STACK_GROWSUP
3245 stack_offset -= sizeof(tcg_target_long);
3246#endif
3247 if (arg != TCG_CALL_DUMMY_ARG) {
43439139 3248 ts = arg_temp(arg);
40ae5c62
RH
3249 temp_load(s, ts, tcg_target_available_regs[ts->type],
3250 s->reserved_regs);
3251 tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, stack_offset);
c896fe29 3252 }
39cf05d3
FB
3253#ifndef TCG_TARGET_STACK_GROWSUP
3254 stack_offset += sizeof(tcg_target_long);
3255#endif
c896fe29
FB
3256 }
3257
3258 /* assign input registers */
d21369f5 3259 allocated_regs = s->reserved_regs;
dd186292
RH
3260 for (i = 0; i < nb_regs; i++) {
3261 arg = op->args[nb_oargs + i];
39cf05d3 3262 if (arg != TCG_CALL_DUMMY_ARG) {
43439139 3263 ts = arg_temp(arg);
39cf05d3 3264 reg = tcg_target_call_iarg_regs[i];
b3915dbb 3265 tcg_reg_free(s, reg, allocated_regs);
40ae5c62 3266
39cf05d3
FB
3267 if (ts->val_type == TEMP_VAL_REG) {
3268 if (ts->reg != reg) {
3b6dac34 3269 tcg_out_mov(s, ts->type, reg, ts->reg);
39cf05d3 3270 }
39cf05d3 3271 } else {
ccb1bb66 3272 TCGRegSet arg_set = 0;
40ae5c62 3273
40ae5c62
RH
3274 tcg_regset_set_reg(arg_set, reg);
3275 temp_load(s, ts, arg_set, allocated_regs);
c896fe29 3276 }
40ae5c62 3277
39cf05d3 3278 tcg_regset_set_reg(allocated_regs, reg);
c896fe29 3279 }
c896fe29
FB
3280 }
3281
c896fe29 3282 /* mark dead temporaries and free the associated registers */
dd186292 3283 for (i = nb_oargs; i < nb_iargs + nb_oargs; i++) {
866cb6cb 3284 if (IS_DEAD_ARG(i)) {
43439139 3285 temp_dead(s, arg_temp(op->args[i]));
c896fe29
FB
3286 }
3287 }
3288
3289 /* clobber call registers */
c8074023
RH
3290 for (i = 0; i < TCG_TARGET_NB_REGS; i++) {
3291 if (tcg_regset_test_reg(tcg_target_call_clobber_regs, i)) {
b3915dbb 3292 tcg_reg_free(s, i, allocated_regs);
c896fe29
FB
3293 }
3294 }
78505279
AJ
3295
3296 /* Save globals if they might be written by the helper, sync them if
3297 they might be read. */
3298 if (flags & TCG_CALL_NO_READ_GLOBALS) {
3299 /* Nothing to do */
3300 } else if (flags & TCG_CALL_NO_WRITE_GLOBALS) {
3301 sync_globals(s, allocated_regs);
3302 } else {
b9c18f56
AJ
3303 save_globals(s, allocated_regs);
3304 }
c896fe29 3305
cf066674 3306 tcg_out_call(s, func_addr);
c896fe29
FB
3307
3308 /* assign output registers and emit moves if needed */
3309 for(i = 0; i < nb_oargs; i++) {
dd186292 3310 arg = op->args[i];
43439139 3311 ts = arg_temp(arg);
c896fe29 3312 reg = tcg_target_call_oarg_regs[i];
eabb7b91 3313 tcg_debug_assert(s->reg_to_temp[reg] == NULL);
34b1a49c 3314
c896fe29
FB
3315 if (ts->fixed_reg) {
3316 if (ts->reg != reg) {
3b6dac34 3317 tcg_out_mov(s, ts->type, ts->reg, reg);
c896fe29
FB
3318 }
3319 } else {
ec7a869d 3320 if (ts->val_type == TEMP_VAL_REG) {
f8b2f202 3321 s->reg_to_temp[ts->reg] = NULL;
ec7a869d
AJ
3322 }
3323 ts->val_type = TEMP_VAL_REG;
3324 ts->reg = reg;
3325 ts->mem_coherent = 0;
f8b2f202 3326 s->reg_to_temp[reg] = ts;
ec7a869d 3327 if (NEED_SYNC_ARG(i)) {
59d7c14e
RH
3328 temp_sync(s, ts, allocated_regs, IS_DEAD_ARG(i));
3329 } else if (IS_DEAD_ARG(i)) {
f8bf00f1 3330 temp_dead(s, ts);
8c11ad25 3331 }
c896fe29
FB
3332 }
3333 }
c896fe29
FB
3334}
3335
3336#ifdef CONFIG_PROFILER
3337
c3fac113
EC
3338/* avoid copy/paste errors */
3339#define PROF_ADD(to, from, field) \
3340 do { \
3341 (to)->field += atomic_read(&((from)->field)); \
3342 } while (0)
3343
3344#define PROF_MAX(to, from, field) \
3345 do { \
3346 typeof((from)->field) val__ = atomic_read(&((from)->field)); \
3347 if (val__ > (to)->field) { \
3348 (to)->field = val__; \
3349 } \
3350 } while (0)
3351
3352/* Pass in a zero'ed @prof */
3353static inline
3354void tcg_profile_snapshot(TCGProfile *prof, bool counters, bool table)
3355{
3468b59e 3356 unsigned int n_ctxs = atomic_read(&n_tcg_ctxs);
c3fac113
EC
3357 unsigned int i;
3358
3468b59e
EC
3359 for (i = 0; i < n_ctxs; i++) {
3360 TCGContext *s = atomic_read(&tcg_ctxs[i]);
3361 const TCGProfile *orig = &s->prof;
c3fac113
EC
3362
3363 if (counters) {
3364 PROF_ADD(prof, orig, tb_count1);
3365 PROF_ADD(prof, orig, tb_count);
3366 PROF_ADD(prof, orig, op_count);
3367 PROF_MAX(prof, orig, op_count_max);
3368 PROF_ADD(prof, orig, temp_count);
3369 PROF_MAX(prof, orig, temp_count_max);
3370 PROF_ADD(prof, orig, del_op_count);
3371 PROF_ADD(prof, orig, code_in_len);
3372 PROF_ADD(prof, orig, code_out_len);
3373 PROF_ADD(prof, orig, search_out_len);
3374 PROF_ADD(prof, orig, interm_time);
3375 PROF_ADD(prof, orig, code_time);
3376 PROF_ADD(prof, orig, la_time);
3377 PROF_ADD(prof, orig, opt_time);
3378 PROF_ADD(prof, orig, restore_count);
3379 PROF_ADD(prof, orig, restore_time);
3380 }
3381 if (table) {
3382 int i;
3383
3384 for (i = 0; i < NB_OPS; i++) {
3385 PROF_ADD(prof, orig, table_op_count[i]);
3386 }
3387 }
3388 }
3389}
3390
3391#undef PROF_ADD
3392#undef PROF_MAX
3393
3394static void tcg_profile_snapshot_counters(TCGProfile *prof)
3395{
3396 tcg_profile_snapshot(prof, true, false);
3397}
3398
3399static void tcg_profile_snapshot_table(TCGProfile *prof)
3400{
3401 tcg_profile_snapshot(prof, false, true);
3402}
c896fe29 3403
246ae24d 3404void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
c896fe29 3405{
c3fac113 3406 TCGProfile prof = {};
c896fe29 3407 int i;
d70724ce 3408
c3fac113 3409 tcg_profile_snapshot_table(&prof);
15fc7daa 3410 for (i = 0; i < NB_OPS; i++) {
246ae24d 3411 cpu_fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name,
c3fac113 3412 prof.table_op_count[i]);
c896fe29 3413 }
c896fe29 3414}
246ae24d
MF
3415#else
3416void tcg_dump_op_count(FILE *f, fprintf_function cpu_fprintf)
3417{
3418 cpu_fprintf(f, "[TCG profiler not compiled]\n");
3419}
c896fe29
FB
3420#endif
3421
3422
5bd2ec3d 3423int tcg_gen_code(TCGContext *s, TranslationBlock *tb)
c896fe29 3424{
c3fac113
EC
3425#ifdef CONFIG_PROFILER
3426 TCGProfile *prof = &s->prof;
3427#endif
15fa08f8
RH
3428 int i, num_insns;
3429 TCGOp *op;
c896fe29 3430
04fe6400
RH
3431#ifdef CONFIG_PROFILER
3432 {
3433 int n;
3434
15fa08f8
RH
3435 QTAILQ_FOREACH(op, &s->ops, link) {
3436 n++;
3437 }
c3fac113
EC
3438 atomic_set(&prof->op_count, prof->op_count + n);
3439 if (n > prof->op_count_max) {
3440 atomic_set(&prof->op_count_max, n);
04fe6400
RH
3441 }
3442
3443 n = s->nb_temps;
c3fac113
EC
3444 atomic_set(&prof->temp_count, prof->temp_count + n);
3445 if (n > prof->temp_count_max) {
3446 atomic_set(&prof->temp_count_max, n);
04fe6400
RH
3447 }
3448 }
3449#endif
3450
c896fe29 3451#ifdef DEBUG_DISAS
d977e1c2
AB
3452 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP)
3453 && qemu_log_in_addr_range(tb->pc))) {
1ee73216 3454 qemu_log_lock();
93fcfe39 3455 qemu_log("OP:\n");
eeacee4d 3456 tcg_dump_ops(s);
93fcfe39 3457 qemu_log("\n");
1ee73216 3458 qemu_log_unlock();
c896fe29
FB
3459 }
3460#endif
3461
c5cc28ff 3462#ifdef CONFIG_PROFILER
c3fac113 3463 atomic_set(&prof->opt_time, prof->opt_time - profile_getclock());
c5cc28ff
AJ
3464#endif
3465
8f2e8c07 3466#ifdef USE_TCG_OPTIMIZATIONS
c45cb8bb 3467 tcg_optimize(s);
8f2e8c07
KB
3468#endif
3469
a23a9ec6 3470#ifdef CONFIG_PROFILER
c3fac113
EC
3471 atomic_set(&prof->opt_time, prof->opt_time + profile_getclock());
3472 atomic_set(&prof->la_time, prof->la_time - profile_getclock());
a23a9ec6 3473#endif
c5cc28ff 3474
b83eabea 3475 liveness_pass_1(s);
5a18407f 3476
b83eabea 3477 if (s->nb_indirects > 0) {
5a18407f 3478#ifdef DEBUG_DISAS
b83eabea
RH
3479 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_IND)
3480 && qemu_log_in_addr_range(tb->pc))) {
3481 qemu_log_lock();
3482 qemu_log("OP before indirect lowering:\n");
3483 tcg_dump_ops(s);
3484 qemu_log("\n");
3485 qemu_log_unlock();
3486 }
5a18407f 3487#endif
b83eabea
RH
3488 /* Replace indirect temps with direct temps. */
3489 if (liveness_pass_2(s)) {
3490 /* If changes were made, re-run liveness. */
3491 liveness_pass_1(s);
5a18407f
RH
3492 }
3493 }
c5cc28ff 3494
a23a9ec6 3495#ifdef CONFIG_PROFILER
c3fac113 3496 atomic_set(&prof->la_time, prof->la_time + profile_getclock());
a23a9ec6 3497#endif
c896fe29
FB
3498
3499#ifdef DEBUG_DISAS
d977e1c2
AB
3500 if (unlikely(qemu_loglevel_mask(CPU_LOG_TB_OP_OPT)
3501 && qemu_log_in_addr_range(tb->pc))) {
1ee73216 3502 qemu_log_lock();
c5cc28ff 3503 qemu_log("OP after optimization and liveness analysis:\n");
eeacee4d 3504 tcg_dump_ops(s);
93fcfe39 3505 qemu_log("\n");
1ee73216 3506 qemu_log_unlock();
c896fe29
FB
3507 }
3508#endif
3509
3510 tcg_reg_alloc_start(s);
3511
e7e168f4
EC
3512 s->code_buf = tb->tc.ptr;
3513 s->code_ptr = tb->tc.ptr;
c896fe29 3514
659ef5cb 3515#ifdef TCG_TARGET_NEED_LDST_LABELS
6001f772 3516 QSIMPLEQ_INIT(&s->ldst_labels);
659ef5cb 3517#endif
57a26946
RH
3518#ifdef TCG_TARGET_NEED_POOL_LABELS
3519 s->pool_labels = NULL;
3520#endif
9ecefc84 3521
fca8a500 3522 num_insns = -1;
15fa08f8 3523 QTAILQ_FOREACH(op, &s->ops, link) {
c45cb8bb 3524 TCGOpcode opc = op->opc;
b3db8758 3525
c896fe29 3526#ifdef CONFIG_PROFILER
c3fac113 3527 atomic_set(&prof->table_op_count[opc], prof->table_op_count[opc] + 1);
c896fe29 3528#endif
c45cb8bb
RH
3529
3530 switch (opc) {
c896fe29 3531 case INDEX_op_mov_i32:
c896fe29 3532 case INDEX_op_mov_i64:
d2fd745f 3533 case INDEX_op_mov_vec:
dd186292 3534 tcg_reg_alloc_mov(s, op);
c896fe29 3535 break;
e8996ee0 3536 case INDEX_op_movi_i32:
e8996ee0 3537 case INDEX_op_movi_i64:
d2fd745f 3538 case INDEX_op_dupi_vec:
dd186292 3539 tcg_reg_alloc_movi(s, op);
e8996ee0 3540 break;
765b842a 3541 case INDEX_op_insn_start:
fca8a500 3542 if (num_insns >= 0) {
9f754620
RH
3543 size_t off = tcg_current_code_size(s);
3544 s->gen_insn_end_off[num_insns] = off;
3545 /* Assert that we do not overflow our stored offset. */
3546 assert(s->gen_insn_end_off[num_insns] == off);
fca8a500
RH
3547 }
3548 num_insns++;
bad729e2
RH
3549 for (i = 0; i < TARGET_INSN_START_WORDS; ++i) {
3550 target_ulong a;
3551#if TARGET_LONG_BITS > TCG_TARGET_REG_BITS
efee3746 3552 a = deposit64(op->args[i * 2], 32, 32, op->args[i * 2 + 1]);
bad729e2 3553#else
efee3746 3554 a = op->args[i];
bad729e2 3555#endif
fca8a500 3556 s->gen_insn_data[num_insns][i] = a;
bad729e2 3557 }
c896fe29 3558 break;
5ff9d6a4 3559 case INDEX_op_discard:
43439139 3560 temp_dead(s, arg_temp(op->args[0]));
5ff9d6a4 3561 break;
c896fe29 3562 case INDEX_op_set_label:
e8996ee0 3563 tcg_reg_alloc_bb_end(s, s->reserved_regs);
efee3746 3564 tcg_out_label(s, arg_label(op->args[0]), s->code_ptr);
c896fe29
FB
3565 break;
3566 case INDEX_op_call:
dd186292 3567 tcg_reg_alloc_call(s, op);
c45cb8bb 3568 break;
c896fe29 3569 default:
25c4d9cc 3570 /* Sanity check that we've not introduced any unhandled opcodes. */
be0f34b5 3571 tcg_debug_assert(tcg_op_supported(opc));
c896fe29
FB
3572 /* Note: in order to speed up the code, it would be much
3573 faster to have specialized register allocator functions for
3574 some common argument patterns */
dd186292 3575 tcg_reg_alloc_op(s, op);
c896fe29
FB
3576 break;
3577 }
8d8fdbae 3578#ifdef CONFIG_DEBUG_TCG
c896fe29
FB
3579 check_regs(s);
3580#endif
b125f9dc
RH
3581 /* Test for (pending) buffer overflow. The assumption is that any
3582 one operation beginning below the high water mark cannot overrun
3583 the buffer completely. Thus we can test for overflow after
3584 generating code without having to check during generation. */
644da9b3 3585 if (unlikely((void *)s->code_ptr > s->code_gen_highwater)) {
b125f9dc
RH
3586 return -1;
3587 }
c896fe29 3588 }
fca8a500
RH
3589 tcg_debug_assert(num_insns >= 0);
3590 s->gen_insn_end_off[num_insns] = tcg_current_code_size(s);
c45cb8bb 3591
b76f0d8c 3592 /* Generate TB finalization at the end of block */
659ef5cb
RH
3593#ifdef TCG_TARGET_NEED_LDST_LABELS
3594 if (!tcg_out_ldst_finalize(s)) {
23dceda6
RH
3595 return -1;
3596 }
659ef5cb 3597#endif
57a26946
RH
3598#ifdef TCG_TARGET_NEED_POOL_LABELS
3599 if (!tcg_out_pool_finalize(s)) {
3600 return -1;
3601 }
3602#endif
c896fe29
FB
3603
3604 /* flush instruction cache */
1813e175 3605 flush_icache_range((uintptr_t)s->code_buf, (uintptr_t)s->code_ptr);
2aeabc08 3606
1813e175 3607 return tcg_current_code_size(s);
c896fe29
FB
3608}
3609
a23a9ec6 3610#ifdef CONFIG_PROFILER
405cf9ff 3611void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
a23a9ec6 3612{
c3fac113
EC
3613 TCGProfile prof = {};
3614 const TCGProfile *s;
3615 int64_t tb_count;
3616 int64_t tb_div_count;
3617 int64_t tot;
3618
3619 tcg_profile_snapshot_counters(&prof);
3620 s = &prof;
3621 tb_count = s->tb_count;
3622 tb_div_count = tb_count ? tb_count : 1;
3623 tot = s->interm_time + s->code_time;
a23a9ec6 3624
a23a9ec6
FB
3625 cpu_fprintf(f, "JIT cycles %" PRId64 " (%0.3f s at 2.4 GHz)\n",
3626 tot, tot / 2.4e9);
3627 cpu_fprintf(f, "translated TBs %" PRId64 " (aborted=%" PRId64 " %0.1f%%)\n",
fca8a500
RH
3628 tb_count, s->tb_count1 - tb_count,
3629 (double)(s->tb_count1 - s->tb_count)
3630 / (s->tb_count1 ? s->tb_count1 : 1) * 100.0);
a23a9ec6 3631 cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n",
fca8a500 3632 (double)s->op_count / tb_div_count, s->op_count_max);
a23a9ec6 3633 cpu_fprintf(f, "deleted ops/TB %0.2f\n",
fca8a500 3634 (double)s->del_op_count / tb_div_count);
a23a9ec6 3635 cpu_fprintf(f, "avg temps/TB %0.2f max=%d\n",
fca8a500
RH
3636 (double)s->temp_count / tb_div_count, s->temp_count_max);
3637 cpu_fprintf(f, "avg host code/TB %0.1f\n",
3638 (double)s->code_out_len / tb_div_count);
3639 cpu_fprintf(f, "avg search data/TB %0.1f\n",
3640 (double)s->search_out_len / tb_div_count);
a23a9ec6
FB
3641
3642 cpu_fprintf(f, "cycles/op %0.1f\n",
3643 s->op_count ? (double)tot / s->op_count : 0);
3644 cpu_fprintf(f, "cycles/in byte %0.1f\n",
3645 s->code_in_len ? (double)tot / s->code_in_len : 0);
3646 cpu_fprintf(f, "cycles/out byte %0.1f\n",
3647 s->code_out_len ? (double)tot / s->code_out_len : 0);
fca8a500
RH
3648 cpu_fprintf(f, "cycles/search byte %0.1f\n",
3649 s->search_out_len ? (double)tot / s->search_out_len : 0);
3650 if (tot == 0) {
a23a9ec6 3651 tot = 1;
fca8a500 3652 }
a23a9ec6
FB
3653 cpu_fprintf(f, " gen_interm time %0.1f%%\n",
3654 (double)s->interm_time / tot * 100.0);
3655 cpu_fprintf(f, " gen_code time %0.1f%%\n",
3656 (double)s->code_time / tot * 100.0);
c5cc28ff
AJ
3657 cpu_fprintf(f, "optim./code time %0.1f%%\n",
3658 (double)s->opt_time / (s->code_time ? s->code_time : 1)
3659 * 100.0);
a23a9ec6
FB
3660 cpu_fprintf(f, "liveness/code time %0.1f%%\n",
3661 (double)s->la_time / (s->code_time ? s->code_time : 1) * 100.0);
3662 cpu_fprintf(f, "cpu_restore count %" PRId64 "\n",
3663 s->restore_count);
3664 cpu_fprintf(f, " avg cycles %0.1f\n",
3665 s->restore_count ? (double)s->restore_time / s->restore_count : 0);
a23a9ec6
FB
3666}
3667#else
405cf9ff 3668void tcg_dump_info(FILE *f, fprintf_function cpu_fprintf)
a23a9ec6 3669{
24bf7b3a 3670 cpu_fprintf(f, "[TCG profiler not compiled]\n");
a23a9ec6
FB
3671}
3672#endif
813da627
RH
3673
3674#ifdef ELF_HOST_MACHINE
5872bbf2
RH
3675/* In order to use this feature, the backend needs to do three things:
3676
3677 (1) Define ELF_HOST_MACHINE to indicate both what value to
3678 put into the ELF image and to indicate support for the feature.
3679
3680 (2) Define tcg_register_jit. This should create a buffer containing
3681 the contents of a .debug_frame section that describes the post-
3682 prologue unwind info for the tcg machine.
3683
3684 (3) Call tcg_register_jit_int, with the constructed .debug_frame.
3685*/
813da627
RH
3686
3687/* Begin GDB interface. THE FOLLOWING MUST MATCH GDB DOCS. */
3688typedef enum {
3689 JIT_NOACTION = 0,
3690 JIT_REGISTER_FN,
3691 JIT_UNREGISTER_FN
3692} jit_actions_t;
3693
3694struct jit_code_entry {
3695 struct jit_code_entry *next_entry;
3696 struct jit_code_entry *prev_entry;
3697 const void *symfile_addr;
3698 uint64_t symfile_size;
3699};
3700
3701struct jit_descriptor {
3702 uint32_t version;
3703 uint32_t action_flag;
3704 struct jit_code_entry *relevant_entry;
3705 struct jit_code_entry *first_entry;
3706};
3707
3708void __jit_debug_register_code(void) __attribute__((noinline));
3709void __jit_debug_register_code(void)
3710{
3711 asm("");
3712}
3713
3714/* Must statically initialize the version, because GDB may check
3715 the version before we can set it. */
3716struct jit_descriptor __jit_debug_descriptor = { 1, 0, 0, 0 };
3717
3718/* End GDB interface. */
3719
3720static int find_string(const char *strtab, const char *str)
3721{
3722 const char *p = strtab + 1;
3723
3724 while (1) {
3725 if (strcmp(p, str) == 0) {
3726 return p - strtab;
3727 }
3728 p += strlen(p) + 1;
3729 }
3730}
3731
5872bbf2 3732static void tcg_register_jit_int(void *buf_ptr, size_t buf_size,
2c90784a
RH
3733 const void *debug_frame,
3734 size_t debug_frame_size)
813da627 3735{
5872bbf2
RH
3736 struct __attribute__((packed)) DebugInfo {
3737 uint32_t len;
3738 uint16_t version;
3739 uint32_t abbrev;
3740 uint8_t ptr_size;
3741 uint8_t cu_die;
3742 uint16_t cu_lang;
3743 uintptr_t cu_low_pc;
3744 uintptr_t cu_high_pc;
3745 uint8_t fn_die;
3746 char fn_name[16];
3747 uintptr_t fn_low_pc;
3748 uintptr_t fn_high_pc;
3749 uint8_t cu_eoc;
3750 };
813da627
RH
3751
3752 struct ElfImage {
3753 ElfW(Ehdr) ehdr;
3754 ElfW(Phdr) phdr;
5872bbf2
RH
3755 ElfW(Shdr) shdr[7];
3756 ElfW(Sym) sym[2];
3757 struct DebugInfo di;
3758 uint8_t da[24];
3759 char str[80];
3760 };
3761
3762 struct ElfImage *img;
3763
3764 static const struct ElfImage img_template = {
3765 .ehdr = {
3766 .e_ident[EI_MAG0] = ELFMAG0,
3767 .e_ident[EI_MAG1] = ELFMAG1,
3768 .e_ident[EI_MAG2] = ELFMAG2,
3769 .e_ident[EI_MAG3] = ELFMAG3,
3770 .e_ident[EI_CLASS] = ELF_CLASS,
3771 .e_ident[EI_DATA] = ELF_DATA,
3772 .e_ident[EI_VERSION] = EV_CURRENT,
3773 .e_type = ET_EXEC,
3774 .e_machine = ELF_HOST_MACHINE,
3775 .e_version = EV_CURRENT,
3776 .e_phoff = offsetof(struct ElfImage, phdr),
3777 .e_shoff = offsetof(struct ElfImage, shdr),
3778 .e_ehsize = sizeof(ElfW(Shdr)),
3779 .e_phentsize = sizeof(ElfW(Phdr)),
3780 .e_phnum = 1,
3781 .e_shentsize = sizeof(ElfW(Shdr)),
3782 .e_shnum = ARRAY_SIZE(img->shdr),
3783 .e_shstrndx = ARRAY_SIZE(img->shdr) - 1,
abbb3eae
RH
3784#ifdef ELF_HOST_FLAGS
3785 .e_flags = ELF_HOST_FLAGS,
3786#endif
3787#ifdef ELF_OSABI
3788 .e_ident[EI_OSABI] = ELF_OSABI,
3789#endif
5872bbf2
RH
3790 },
3791 .phdr = {
3792 .p_type = PT_LOAD,
3793 .p_flags = PF_X,
3794 },
3795 .shdr = {
3796 [0] = { .sh_type = SHT_NULL },
3797 /* Trick: The contents of code_gen_buffer are not present in
3798 this fake ELF file; that got allocated elsewhere. Therefore
3799 we mark .text as SHT_NOBITS (similar to .bss) so that readers
3800 will not look for contents. We can record any address. */
3801 [1] = { /* .text */
3802 .sh_type = SHT_NOBITS,
3803 .sh_flags = SHF_EXECINSTR | SHF_ALLOC,
3804 },
3805 [2] = { /* .debug_info */
3806 .sh_type = SHT_PROGBITS,
3807 .sh_offset = offsetof(struct ElfImage, di),
3808 .sh_size = sizeof(struct DebugInfo),
3809 },
3810 [3] = { /* .debug_abbrev */
3811 .sh_type = SHT_PROGBITS,
3812 .sh_offset = offsetof(struct ElfImage, da),
3813 .sh_size = sizeof(img->da),
3814 },
3815 [4] = { /* .debug_frame */
3816 .sh_type = SHT_PROGBITS,
3817 .sh_offset = sizeof(struct ElfImage),
3818 },
3819 [5] = { /* .symtab */
3820 .sh_type = SHT_SYMTAB,
3821 .sh_offset = offsetof(struct ElfImage, sym),
3822 .sh_size = sizeof(img->sym),
3823 .sh_info = 1,
3824 .sh_link = ARRAY_SIZE(img->shdr) - 1,
3825 .sh_entsize = sizeof(ElfW(Sym)),
3826 },
3827 [6] = { /* .strtab */
3828 .sh_type = SHT_STRTAB,
3829 .sh_offset = offsetof(struct ElfImage, str),
3830 .sh_size = sizeof(img->str),
3831 }
3832 },
3833 .sym = {
3834 [1] = { /* code_gen_buffer */
3835 .st_info = ELF_ST_INFO(STB_GLOBAL, STT_FUNC),
3836 .st_shndx = 1,
3837 }
3838 },
3839 .di = {
3840 .len = sizeof(struct DebugInfo) - 4,
3841 .version = 2,
3842 .ptr_size = sizeof(void *),
3843 .cu_die = 1,
3844 .cu_lang = 0x8001, /* DW_LANG_Mips_Assembler */
3845 .fn_die = 2,
3846 .fn_name = "code_gen_buffer"
3847 },
3848 .da = {
3849 1, /* abbrev number (the cu) */
3850 0x11, 1, /* DW_TAG_compile_unit, has children */
3851 0x13, 0x5, /* DW_AT_language, DW_FORM_data2 */
3852 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
3853 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
3854 0, 0, /* end of abbrev */
3855 2, /* abbrev number (the fn) */
3856 0x2e, 0, /* DW_TAG_subprogram, no children */
3857 0x3, 0x8, /* DW_AT_name, DW_FORM_string */
3858 0x11, 0x1, /* DW_AT_low_pc, DW_FORM_addr */
3859 0x12, 0x1, /* DW_AT_high_pc, DW_FORM_addr */
3860 0, 0, /* end of abbrev */
3861 0 /* no more abbrev */
3862 },
3863 .str = "\0" ".text\0" ".debug_info\0" ".debug_abbrev\0"
3864 ".debug_frame\0" ".symtab\0" ".strtab\0" "code_gen_buffer",
813da627
RH
3865 };
3866
3867 /* We only need a single jit entry; statically allocate it. */
3868 static struct jit_code_entry one_entry;
3869
5872bbf2 3870 uintptr_t buf = (uintptr_t)buf_ptr;
813da627 3871 size_t img_size = sizeof(struct ElfImage) + debug_frame_size;
2c90784a 3872 DebugFrameHeader *dfh;
813da627 3873
5872bbf2
RH
3874 img = g_malloc(img_size);
3875 *img = img_template;
813da627 3876
5872bbf2
RH
3877 img->phdr.p_vaddr = buf;
3878 img->phdr.p_paddr = buf;
3879 img->phdr.p_memsz = buf_size;
813da627 3880
813da627 3881 img->shdr[1].sh_name = find_string(img->str, ".text");
5872bbf2 3882 img->shdr[1].sh_addr = buf;
813da627
RH
3883 img->shdr[1].sh_size = buf_size;
3884
5872bbf2
RH
3885 img->shdr[2].sh_name = find_string(img->str, ".debug_info");
3886 img->shdr[3].sh_name = find_string(img->str, ".debug_abbrev");
3887
3888 img->shdr[4].sh_name = find_string(img->str, ".debug_frame");
3889 img->shdr[4].sh_size = debug_frame_size;
3890
3891 img->shdr[5].sh_name = find_string(img->str, ".symtab");
3892 img->shdr[6].sh_name = find_string(img->str, ".strtab");
3893
3894 img->sym[1].st_name = find_string(img->str, "code_gen_buffer");
3895 img->sym[1].st_value = buf;
3896 img->sym[1].st_size = buf_size;
813da627 3897
5872bbf2 3898 img->di.cu_low_pc = buf;
45aba097 3899 img->di.cu_high_pc = buf + buf_size;
5872bbf2 3900 img->di.fn_low_pc = buf;
45aba097 3901 img->di.fn_high_pc = buf + buf_size;
813da627 3902
2c90784a
RH
3903 dfh = (DebugFrameHeader *)(img + 1);
3904 memcpy(dfh, debug_frame, debug_frame_size);
3905 dfh->fde.func_start = buf;
3906 dfh->fde.func_len = buf_size;
3907
813da627
RH
3908#ifdef DEBUG_JIT
3909 /* Enable this block to be able to debug the ELF image file creation.
3910 One can use readelf, objdump, or other inspection utilities. */
3911 {
3912 FILE *f = fopen("/tmp/qemu.jit", "w+b");
3913 if (f) {
5872bbf2 3914 if (fwrite(img, img_size, 1, f) != img_size) {
813da627
RH
3915 /* Avoid stupid unused return value warning for fwrite. */
3916 }
3917 fclose(f);
3918 }
3919 }
3920#endif
3921
3922 one_entry.symfile_addr = img;
3923 one_entry.symfile_size = img_size;
3924
3925 __jit_debug_descriptor.action_flag = JIT_REGISTER_FN;
3926 __jit_debug_descriptor.relevant_entry = &one_entry;
3927 __jit_debug_descriptor.first_entry = &one_entry;
3928 __jit_debug_register_code();
3929}
3930#else
5872bbf2
RH
3931/* No support for the feature. Provide the entry point expected by exec.c,
3932 and implement the internal function we declared earlier. */
813da627
RH
3933
3934static void tcg_register_jit_int(void *buf, size_t size,
2c90784a
RH
3935 const void *debug_frame,
3936 size_t debug_frame_size)
813da627
RH
3937{
3938}
3939
3940void tcg_register_jit(void *buf, size_t buf_size)
3941{
3942}
3943#endif /* ELF_HOST_MACHINE */
db432672
RH
3944
3945#if !TCG_TARGET_MAYBE_vec
3946void tcg_expand_vec_op(TCGOpcode o, TCGType t, unsigned e, TCGArg a0, ...)
3947{
3948 g_assert_not_reached();
3949}
3950#endif