xref: /qemu/tcg/tcg.c (revision 4dc81f2822187f4503d4bdb76785cafa5b28db0b)
1c896fe29Sbellard /*
2c896fe29Sbellard  * Tiny Code Generator for QEMU
3c896fe29Sbellard  *
4c896fe29Sbellard  * Copyright (c) 2008 Fabrice Bellard
5c896fe29Sbellard  *
6c896fe29Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7c896fe29Sbellard  * of this software and associated documentation files (the "Software"), to deal
8c896fe29Sbellard  * in the Software without restriction, including without limitation the rights
9c896fe29Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10c896fe29Sbellard  * copies of the Software, and to permit persons to whom the Software is
11c896fe29Sbellard  * furnished to do so, subject to the following conditions:
12c896fe29Sbellard  *
13c896fe29Sbellard  * The above copyright notice and this permission notice shall be included in
14c896fe29Sbellard  * all copies or substantial portions of the Software.
15c896fe29Sbellard  *
16c896fe29Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17c896fe29Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18c896fe29Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19c896fe29Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20c896fe29Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21c896fe29Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22c896fe29Sbellard  * THE SOFTWARE.
23c896fe29Sbellard  */
24c896fe29Sbellard 
25c896fe29Sbellard /* define it to suppress various consistency checks (faster) */
26c896fe29Sbellard #define NDEBUG
27c896fe29Sbellard 
28c896fe29Sbellard /* define it to use liveness analysis (better code) */
29c896fe29Sbellard #define USE_LIVENESS_ANALYSIS
30c896fe29Sbellard 
31c896fe29Sbellard #include <assert.h>
32c896fe29Sbellard #include <stdarg.h>
33c896fe29Sbellard #include <stdlib.h>
34c896fe29Sbellard #include <stdio.h>
35c896fe29Sbellard #include <string.h>
36c896fe29Sbellard #include <inttypes.h>
373fe43da7Sbellard #ifdef _WIN32
383fe43da7Sbellard #include <malloc.h>
393fe43da7Sbellard #endif
40c896fe29Sbellard 
41c896fe29Sbellard #include "config.h"
42ca10f867Saurel32 #include "qemu-common.h"
43c896fe29Sbellard 
44c896fe29Sbellard /* Note: the long term plan is to reduce the dependancies on the QEMU
45c896fe29Sbellard    CPU definitions. Currently they are used for qemu_ld/st
46c896fe29Sbellard    instructions */
47c896fe29Sbellard #define NO_CPU_IO_DEFS
48c896fe29Sbellard #include "cpu.h"
49c896fe29Sbellard #include "exec-all.h"
50c896fe29Sbellard 
51c896fe29Sbellard #include "tcg-op.h"
52c896fe29Sbellard #include "elf.h"
53c896fe29Sbellard 
54c896fe29Sbellard 
55c896fe29Sbellard static void patch_reloc(uint8_t *code_ptr, int type,
56f54b3f92Saurel32                         tcg_target_long value, tcg_target_long addend);
57c896fe29Sbellard 
58c896fe29Sbellard TCGOpDef tcg_op_defs[] = {
59c896fe29Sbellard #define DEF(s, n, copy_size) { #s, 0, 0, n, n, 0, copy_size },
60c896fe29Sbellard #define DEF2(s, iargs, oargs, cargs, flags) { #s, iargs, oargs, cargs, iargs + oargs + cargs, flags, 0 },
61c896fe29Sbellard #include "tcg-opc.h"
62c896fe29Sbellard #undef DEF
63c896fe29Sbellard #undef DEF2
64c896fe29Sbellard };
65c896fe29Sbellard 
66c896fe29Sbellard TCGRegSet tcg_target_available_regs[2];
67c896fe29Sbellard TCGRegSet tcg_target_call_clobber_regs;
68c896fe29Sbellard 
69c896fe29Sbellard /* XXX: move that inside the context */
70c896fe29Sbellard uint16_t *gen_opc_ptr;
71c896fe29Sbellard TCGArg *gen_opparam_ptr;
72c896fe29Sbellard 
73c896fe29Sbellard static inline void tcg_out8(TCGContext *s, uint8_t v)
74c896fe29Sbellard {
75c896fe29Sbellard     *s->code_ptr++ = v;
76c896fe29Sbellard }
77c896fe29Sbellard 
78c896fe29Sbellard static inline void tcg_out16(TCGContext *s, uint16_t v)
79c896fe29Sbellard {
80c896fe29Sbellard     *(uint16_t *)s->code_ptr = v;
81c896fe29Sbellard     s->code_ptr += 2;
82c896fe29Sbellard }
83c896fe29Sbellard 
84c896fe29Sbellard static inline void tcg_out32(TCGContext *s, uint32_t v)
85c896fe29Sbellard {
86c896fe29Sbellard     *(uint32_t *)s->code_ptr = v;
87c896fe29Sbellard     s->code_ptr += 4;
88c896fe29Sbellard }
89c896fe29Sbellard 
90c896fe29Sbellard /* label relocation processing */
91c896fe29Sbellard 
92c896fe29Sbellard void tcg_out_reloc(TCGContext *s, uint8_t *code_ptr, int type,
93c896fe29Sbellard                    int label_index, long addend)
94c896fe29Sbellard {
95c896fe29Sbellard     TCGLabel *l;
96c896fe29Sbellard     TCGRelocation *r;
97c896fe29Sbellard 
98c896fe29Sbellard     l = &s->labels[label_index];
99c896fe29Sbellard     if (l->has_value) {
100623e265cSpbrook         /* FIXME: This may break relocations on RISC targets that
101623e265cSpbrook            modify instruction fields in place.  The caller may not have
102623e265cSpbrook            written the initial value.  */
103f54b3f92Saurel32         patch_reloc(code_ptr, type, l->u.value, addend);
104c896fe29Sbellard     } else {
105c896fe29Sbellard         /* add a new relocation entry */
106c896fe29Sbellard         r = tcg_malloc(sizeof(TCGRelocation));
107c896fe29Sbellard         r->type = type;
108c896fe29Sbellard         r->ptr = code_ptr;
109c896fe29Sbellard         r->addend = addend;
110c896fe29Sbellard         r->next = l->u.first_reloc;
111c896fe29Sbellard         l->u.first_reloc = r;
112c896fe29Sbellard     }
113c896fe29Sbellard }
114c896fe29Sbellard 
115c896fe29Sbellard static void tcg_out_label(TCGContext *s, int label_index,
116c896fe29Sbellard                           tcg_target_long value)
117c896fe29Sbellard {
118c896fe29Sbellard     TCGLabel *l;
119c896fe29Sbellard     TCGRelocation *r;
120c896fe29Sbellard 
121c896fe29Sbellard     l = &s->labels[label_index];
122c896fe29Sbellard     if (l->has_value)
123c896fe29Sbellard         tcg_abort();
124c896fe29Sbellard     r = l->u.first_reloc;
125c896fe29Sbellard     while (r != NULL) {
126f54b3f92Saurel32         patch_reloc(r->ptr, r->type, value, r->addend);
127c896fe29Sbellard         r = r->next;
128c896fe29Sbellard     }
129c896fe29Sbellard     l->has_value = 1;
130c896fe29Sbellard     l->u.value = value;
131c896fe29Sbellard }
132c896fe29Sbellard 
133c896fe29Sbellard int gen_new_label(void)
134c896fe29Sbellard {
135c896fe29Sbellard     TCGContext *s = &tcg_ctx;
136c896fe29Sbellard     int idx;
137c896fe29Sbellard     TCGLabel *l;
138c896fe29Sbellard 
139c896fe29Sbellard     if (s->nb_labels >= TCG_MAX_LABELS)
140c896fe29Sbellard         tcg_abort();
141c896fe29Sbellard     idx = s->nb_labels++;
142c896fe29Sbellard     l = &s->labels[idx];
143c896fe29Sbellard     l->has_value = 0;
144c896fe29Sbellard     l->u.first_reloc = NULL;
145c896fe29Sbellard     return idx;
146c896fe29Sbellard }
147c896fe29Sbellard 
148c896fe29Sbellard #include "tcg-target.c"
149c896fe29Sbellard 
150c896fe29Sbellard /* pool based memory allocation */
151c896fe29Sbellard void *tcg_malloc_internal(TCGContext *s, int size)
152c896fe29Sbellard {
153c896fe29Sbellard     TCGPool *p;
154c896fe29Sbellard     int pool_size;
155c896fe29Sbellard 
156c896fe29Sbellard     if (size > TCG_POOL_CHUNK_SIZE) {
157c896fe29Sbellard         /* big malloc: insert a new pool (XXX: could optimize) */
158c896fe29Sbellard         p = qemu_malloc(sizeof(TCGPool) + size);
159c896fe29Sbellard         p->size = size;
160c896fe29Sbellard         if (s->pool_current)
161c896fe29Sbellard             s->pool_current->next = p;
162c896fe29Sbellard         else
163c896fe29Sbellard             s->pool_first = p;
164c896fe29Sbellard         p->next = s->pool_current;
165c896fe29Sbellard     } else {
166c896fe29Sbellard         p = s->pool_current;
167c896fe29Sbellard         if (!p) {
168c896fe29Sbellard             p = s->pool_first;
169c896fe29Sbellard             if (!p)
170c896fe29Sbellard                 goto new_pool;
171c896fe29Sbellard         } else {
172c896fe29Sbellard             if (!p->next) {
173c896fe29Sbellard             new_pool:
174c896fe29Sbellard                 pool_size = TCG_POOL_CHUNK_SIZE;
175c896fe29Sbellard                 p = qemu_malloc(sizeof(TCGPool) + pool_size);
176c896fe29Sbellard                 p->size = pool_size;
177c896fe29Sbellard                 p->next = NULL;
178c896fe29Sbellard                 if (s->pool_current)
179c896fe29Sbellard                     s->pool_current->next = p;
180c896fe29Sbellard                 else
181c896fe29Sbellard                     s->pool_first = p;
182c896fe29Sbellard             } else {
183c896fe29Sbellard                 p = p->next;
184c896fe29Sbellard             }
185c896fe29Sbellard         }
186c896fe29Sbellard     }
187c896fe29Sbellard     s->pool_current = p;
188c896fe29Sbellard     s->pool_cur = p->data + size;
189c896fe29Sbellard     s->pool_end = p->data + p->size;
190c896fe29Sbellard     return p->data;
191c896fe29Sbellard }
192c896fe29Sbellard 
193c896fe29Sbellard void tcg_pool_reset(TCGContext *s)
194c896fe29Sbellard {
195c896fe29Sbellard     s->pool_cur = s->pool_end = NULL;
196c896fe29Sbellard     s->pool_current = NULL;
197c896fe29Sbellard }
198c896fe29Sbellard 
199c896fe29Sbellard /* free all the pool */
200c896fe29Sbellard void tcg_pool_free(TCGContext *s)
201c896fe29Sbellard {
202c896fe29Sbellard     TCGPool *p, *p1;
203c896fe29Sbellard 
204c896fe29Sbellard     for(p = s->pool_first; p != NULL; p = p1) {
205c896fe29Sbellard         p1 = p->next;
206c896fe29Sbellard         qemu_free(p);
207c896fe29Sbellard     }
208c896fe29Sbellard     s->pool_first = NULL;
209c896fe29Sbellard     s->pool_cur = s->pool_end = NULL;
210c896fe29Sbellard }
211c896fe29Sbellard 
212c896fe29Sbellard void tcg_context_init(TCGContext *s)
213c896fe29Sbellard {
214c896fe29Sbellard     int op, total_args, n;
215c896fe29Sbellard     TCGOpDef *def;
216c896fe29Sbellard     TCGArgConstraint *args_ct;
217c896fe29Sbellard     int *sorted_args;
218c896fe29Sbellard 
219c896fe29Sbellard     memset(s, 0, sizeof(*s));
220c896fe29Sbellard     s->temps = s->static_temps;
221c896fe29Sbellard     s->nb_globals = 0;
222c896fe29Sbellard 
223c896fe29Sbellard     /* Count total number of arguments and allocate the corresponding
224c896fe29Sbellard        space */
225c896fe29Sbellard     total_args = 0;
226c896fe29Sbellard     for(op = 0; op < NB_OPS; op++) {
227c896fe29Sbellard         def = &tcg_op_defs[op];
228c896fe29Sbellard         n = def->nb_iargs + def->nb_oargs;
229c896fe29Sbellard         total_args += n;
230c896fe29Sbellard     }
231c896fe29Sbellard 
232c896fe29Sbellard     args_ct = qemu_malloc(sizeof(TCGArgConstraint) * total_args);
233c896fe29Sbellard     sorted_args = qemu_malloc(sizeof(int) * total_args);
234c896fe29Sbellard 
235c896fe29Sbellard     for(op = 0; op < NB_OPS; op++) {
236c896fe29Sbellard         def = &tcg_op_defs[op];
237c896fe29Sbellard         def->args_ct = args_ct;
238c896fe29Sbellard         def->sorted_args = sorted_args;
239c896fe29Sbellard         n = def->nb_iargs + def->nb_oargs;
240c896fe29Sbellard         sorted_args += n;
241c896fe29Sbellard         args_ct += n;
242c896fe29Sbellard     }
243c896fe29Sbellard 
244c896fe29Sbellard     tcg_target_init(s);
245b03cce8eSbellard 
246b03cce8eSbellard     /* init global prologue and epilogue */
247b03cce8eSbellard     s->code_buf = code_gen_prologue;
248b03cce8eSbellard     s->code_ptr = s->code_buf;
249b03cce8eSbellard     tcg_target_qemu_prologue(s);
250b03cce8eSbellard     flush_icache_range((unsigned long)s->code_buf,
251b03cce8eSbellard                        (unsigned long)s->code_ptr);
252c896fe29Sbellard }
253c896fe29Sbellard 
254c896fe29Sbellard void tcg_set_frame(TCGContext *s, int reg,
255c896fe29Sbellard                    tcg_target_long start, tcg_target_long size)
256c896fe29Sbellard {
257c896fe29Sbellard     s->frame_start = start;
258c896fe29Sbellard     s->frame_end = start + size;
259c896fe29Sbellard     s->frame_reg = reg;
260c896fe29Sbellard }
261c896fe29Sbellard 
262c896fe29Sbellard void tcg_set_macro_func(TCGContext *s, TCGMacroFunc *func)
263c896fe29Sbellard {
264c896fe29Sbellard     s->macro_func = func;
265c896fe29Sbellard }
266c896fe29Sbellard 
267c896fe29Sbellard void tcg_func_start(TCGContext *s)
268c896fe29Sbellard {
269c896fe29Sbellard     tcg_pool_reset(s);
270c896fe29Sbellard     s->nb_temps = s->nb_globals;
271c896fe29Sbellard     s->labels = tcg_malloc(sizeof(TCGLabel) * TCG_MAX_LABELS);
272c896fe29Sbellard     s->nb_labels = 0;
273c896fe29Sbellard     s->current_frame_offset = s->frame_start;
274c896fe29Sbellard 
275c896fe29Sbellard     gen_opc_ptr = gen_opc_buf;
276c896fe29Sbellard     gen_opparam_ptr = gen_opparam_buf;
277c896fe29Sbellard }
278c896fe29Sbellard 
279c896fe29Sbellard static inline void tcg_temp_alloc(TCGContext *s, int n)
280c896fe29Sbellard {
281c896fe29Sbellard     if (n > TCG_MAX_TEMPS)
282c896fe29Sbellard         tcg_abort();
283c896fe29Sbellard }
284c896fe29Sbellard 
285ac56dd48Spbrook TCGv tcg_global_reg_new(TCGType type, int reg, const char *name)
286c896fe29Sbellard {
287c896fe29Sbellard     TCGContext *s = &tcg_ctx;
288c896fe29Sbellard     TCGTemp *ts;
289c896fe29Sbellard     int idx;
290c896fe29Sbellard 
291c896fe29Sbellard #if TCG_TARGET_REG_BITS == 32
292c896fe29Sbellard     if (type != TCG_TYPE_I32)
293c896fe29Sbellard         tcg_abort();
294c896fe29Sbellard #endif
295c896fe29Sbellard     if (tcg_regset_test_reg(s->reserved_regs, reg))
296c896fe29Sbellard         tcg_abort();
297c896fe29Sbellard     idx = s->nb_globals;
298c896fe29Sbellard     tcg_temp_alloc(s, s->nb_globals + 1);
299c896fe29Sbellard     ts = &s->temps[s->nb_globals];
300c896fe29Sbellard     ts->base_type = type;
301c896fe29Sbellard     ts->type = type;
302c896fe29Sbellard     ts->fixed_reg = 1;
303c896fe29Sbellard     ts->reg = reg;
304c896fe29Sbellard     ts->val_type = TEMP_VAL_REG;
305c896fe29Sbellard     ts->name = name;
306c896fe29Sbellard     s->nb_globals++;
307c896fe29Sbellard     tcg_regset_set_reg(s->reserved_regs, reg);
308ac56dd48Spbrook     return MAKE_TCGV(idx);
309c896fe29Sbellard }
310c896fe29Sbellard 
3116a8d7b76Sbellard #if TCG_TARGET_REG_BITS == 32
3126a8d7b76Sbellard /* temporary hack to avoid register shortage for tcg_qemu_st64() */
3136a8d7b76Sbellard TCGv tcg_global_reg2_new_hack(TCGType type, int reg1, int reg2,
3146a8d7b76Sbellard                               const char *name)
3156a8d7b76Sbellard {
3166a8d7b76Sbellard     TCGContext *s = &tcg_ctx;
3176a8d7b76Sbellard     TCGTemp *ts;
3186a8d7b76Sbellard     int idx;
3196a8d7b76Sbellard     char buf[64];
3206a8d7b76Sbellard 
3216a8d7b76Sbellard     if (type != TCG_TYPE_I64)
3226a8d7b76Sbellard         tcg_abort();
3236a8d7b76Sbellard     idx = s->nb_globals;
3246a8d7b76Sbellard     tcg_temp_alloc(s, s->nb_globals + 2);
3256a8d7b76Sbellard     ts = &s->temps[s->nb_globals];
3266a8d7b76Sbellard     ts->base_type = type;
3276a8d7b76Sbellard     ts->type = TCG_TYPE_I32;
3286a8d7b76Sbellard     ts->fixed_reg = 1;
3296a8d7b76Sbellard     ts->reg = reg1;
3306a8d7b76Sbellard     ts->val_type = TEMP_VAL_REG;
3316a8d7b76Sbellard     pstrcpy(buf, sizeof(buf), name);
3326a8d7b76Sbellard     pstrcat(buf, sizeof(buf), "_0");
3336a8d7b76Sbellard     ts->name = strdup(buf);
3346a8d7b76Sbellard 
3356a8d7b76Sbellard     ts++;
3366a8d7b76Sbellard     ts->base_type = type;
3376a8d7b76Sbellard     ts->type = TCG_TYPE_I32;
3386a8d7b76Sbellard     ts->fixed_reg = 1;
3396a8d7b76Sbellard     ts->reg = reg2;
3406a8d7b76Sbellard     ts->val_type = TEMP_VAL_REG;
3416a8d7b76Sbellard     pstrcpy(buf, sizeof(buf), name);
3426a8d7b76Sbellard     pstrcat(buf, sizeof(buf), "_1");
3436a8d7b76Sbellard     ts->name = strdup(buf);
3446a8d7b76Sbellard 
3456a8d7b76Sbellard     s->nb_globals += 2;
3466a8d7b76Sbellard     return MAKE_TCGV(idx);
3476a8d7b76Sbellard }
3486a8d7b76Sbellard #endif
3496a8d7b76Sbellard 
350ac56dd48Spbrook TCGv tcg_global_mem_new(TCGType type, int reg, tcg_target_long offset,
351c896fe29Sbellard                         const char *name)
352c896fe29Sbellard {
353c896fe29Sbellard     TCGContext *s = &tcg_ctx;
354c896fe29Sbellard     TCGTemp *ts;
355c896fe29Sbellard     int idx;
356c896fe29Sbellard 
357c896fe29Sbellard     idx = s->nb_globals;
358c896fe29Sbellard #if TCG_TARGET_REG_BITS == 32
359c896fe29Sbellard     if (type == TCG_TYPE_I64) {
360c896fe29Sbellard         char buf[64];
361c896fe29Sbellard         tcg_temp_alloc(s, s->nb_globals + 1);
362c896fe29Sbellard         ts = &s->temps[s->nb_globals];
363c896fe29Sbellard         ts->base_type = type;
364c896fe29Sbellard         ts->type = TCG_TYPE_I32;
365c896fe29Sbellard         ts->fixed_reg = 0;
366c896fe29Sbellard         ts->mem_allocated = 1;
367c896fe29Sbellard         ts->mem_reg = reg;
368c896fe29Sbellard #ifdef TCG_TARGET_WORDS_BIGENDIAN
369c896fe29Sbellard         ts->mem_offset = offset + 4;
370c896fe29Sbellard #else
371c896fe29Sbellard         ts->mem_offset = offset;
372c896fe29Sbellard #endif
373c896fe29Sbellard         ts->val_type = TEMP_VAL_MEM;
374c896fe29Sbellard         pstrcpy(buf, sizeof(buf), name);
375c896fe29Sbellard         pstrcat(buf, sizeof(buf), "_0");
376c896fe29Sbellard         ts->name = strdup(buf);
377c896fe29Sbellard         ts++;
378c896fe29Sbellard 
379c896fe29Sbellard         ts->base_type = type;
380c896fe29Sbellard         ts->type = TCG_TYPE_I32;
381c896fe29Sbellard         ts->fixed_reg = 0;
382c896fe29Sbellard         ts->mem_allocated = 1;
383c896fe29Sbellard         ts->mem_reg = reg;
384c896fe29Sbellard #ifdef TCG_TARGET_WORDS_BIGENDIAN
385c896fe29Sbellard         ts->mem_offset = offset;
386c896fe29Sbellard #else
387c896fe29Sbellard         ts->mem_offset = offset + 4;
388c896fe29Sbellard #endif
389c896fe29Sbellard         ts->val_type = TEMP_VAL_MEM;
390c896fe29Sbellard         pstrcpy(buf, sizeof(buf), name);
391c896fe29Sbellard         pstrcat(buf, sizeof(buf), "_1");
392c896fe29Sbellard         ts->name = strdup(buf);
393c896fe29Sbellard 
394c896fe29Sbellard         s->nb_globals += 2;
395c896fe29Sbellard     } else
396c896fe29Sbellard #endif
397c896fe29Sbellard     {
398c896fe29Sbellard         tcg_temp_alloc(s, s->nb_globals + 1);
399c896fe29Sbellard         ts = &s->temps[s->nb_globals];
400c896fe29Sbellard         ts->base_type = type;
401c896fe29Sbellard         ts->type = type;
402c896fe29Sbellard         ts->fixed_reg = 0;
403c896fe29Sbellard         ts->mem_allocated = 1;
404c896fe29Sbellard         ts->mem_reg = reg;
405c896fe29Sbellard         ts->mem_offset = offset;
406c896fe29Sbellard         ts->val_type = TEMP_VAL_MEM;
407c896fe29Sbellard         ts->name = name;
408c896fe29Sbellard         s->nb_globals++;
409c896fe29Sbellard     }
410ac56dd48Spbrook     return MAKE_TCGV(idx);
411c896fe29Sbellard }
412c896fe29Sbellard 
413ac56dd48Spbrook TCGv tcg_temp_new(TCGType type)
414c896fe29Sbellard {
415c896fe29Sbellard     TCGContext *s = &tcg_ctx;
416c896fe29Sbellard     TCGTemp *ts;
417c896fe29Sbellard     int idx;
418c896fe29Sbellard 
419c896fe29Sbellard     idx = s->nb_temps;
420c896fe29Sbellard #if TCG_TARGET_REG_BITS == 32
421c896fe29Sbellard     if (type == TCG_TYPE_I64) {
422c896fe29Sbellard         tcg_temp_alloc(s, s->nb_temps + 1);
423c896fe29Sbellard         ts = &s->temps[s->nb_temps];
424c896fe29Sbellard         ts->base_type = type;
425c896fe29Sbellard         ts->type = TCG_TYPE_I32;
4265ff9d6a4Sbellard         ts->fixed_reg = 0;
427c896fe29Sbellard         ts->val_type = TEMP_VAL_DEAD;
428c896fe29Sbellard         ts->mem_allocated = 0;
429c896fe29Sbellard         ts->name = NULL;
430c896fe29Sbellard         ts++;
431c896fe29Sbellard         ts->base_type = TCG_TYPE_I32;
432c896fe29Sbellard         ts->type = TCG_TYPE_I32;
433c896fe29Sbellard         ts->val_type = TEMP_VAL_DEAD;
4345ff9d6a4Sbellard         ts->fixed_reg = 0;
435c896fe29Sbellard         ts->mem_allocated = 0;
436c896fe29Sbellard         ts->name = NULL;
437c896fe29Sbellard         s->nb_temps += 2;
438c896fe29Sbellard     } else
439c896fe29Sbellard #endif
440c896fe29Sbellard     {
441c896fe29Sbellard         tcg_temp_alloc(s, s->nb_temps + 1);
442c896fe29Sbellard         ts = &s->temps[s->nb_temps];
443c896fe29Sbellard         ts->base_type = type;
444c896fe29Sbellard         ts->type = type;
4455ff9d6a4Sbellard         ts->fixed_reg = 0;
446c896fe29Sbellard         ts->val_type = TEMP_VAL_DEAD;
447c896fe29Sbellard         ts->mem_allocated = 0;
448c896fe29Sbellard         ts->name = NULL;
449c896fe29Sbellard         s->nb_temps++;
450c896fe29Sbellard     }
451ac56dd48Spbrook     return MAKE_TCGV(idx);
452c896fe29Sbellard }
453c896fe29Sbellard 
454ac56dd48Spbrook TCGv tcg_const_i32(int32_t val)
455c896fe29Sbellard {
456c896fe29Sbellard     TCGContext *s = &tcg_ctx;
457c896fe29Sbellard     TCGTemp *ts;
458c896fe29Sbellard     int idx;
459c896fe29Sbellard 
460c896fe29Sbellard     idx = s->nb_temps;
461c896fe29Sbellard     tcg_temp_alloc(s, idx + 1);
462c896fe29Sbellard     ts = &s->temps[idx];
463c896fe29Sbellard     ts->base_type = ts->type = TCG_TYPE_I32;
464c896fe29Sbellard     ts->val_type = TEMP_VAL_CONST;
465c896fe29Sbellard     ts->name = NULL;
466c896fe29Sbellard     ts->val = val;
467c896fe29Sbellard     s->nb_temps++;
468ac56dd48Spbrook     return MAKE_TCGV(idx);
469c896fe29Sbellard }
470c896fe29Sbellard 
471ac56dd48Spbrook TCGv tcg_const_i64(int64_t val)
472c896fe29Sbellard {
473c896fe29Sbellard     TCGContext *s = &tcg_ctx;
474c896fe29Sbellard     TCGTemp *ts;
475c896fe29Sbellard     int idx;
476c896fe29Sbellard 
477c896fe29Sbellard     idx = s->nb_temps;
478c896fe29Sbellard #if TCG_TARGET_REG_BITS == 32
479c896fe29Sbellard     tcg_temp_alloc(s, idx + 2);
480c896fe29Sbellard     ts = &s->temps[idx];
481c896fe29Sbellard     ts->base_type = TCG_TYPE_I64;
482c896fe29Sbellard     ts->type = TCG_TYPE_I32;
483c896fe29Sbellard     ts->val_type = TEMP_VAL_CONST;
484c896fe29Sbellard     ts->name = NULL;
485c896fe29Sbellard     ts->val = val;
486c896fe29Sbellard     ts++;
487c896fe29Sbellard     ts->base_type = TCG_TYPE_I32;
488c896fe29Sbellard     ts->type = TCG_TYPE_I32;
489c896fe29Sbellard     ts->val_type = TEMP_VAL_CONST;
490c896fe29Sbellard     ts->name = NULL;
491c896fe29Sbellard     ts->val = val >> 32;
492c896fe29Sbellard     s->nb_temps += 2;
493c896fe29Sbellard #else
494c896fe29Sbellard     tcg_temp_alloc(s, idx + 1);
495c896fe29Sbellard     ts = &s->temps[idx];
496c896fe29Sbellard     ts->base_type = ts->type = TCG_TYPE_I64;
497c896fe29Sbellard     ts->val_type = TEMP_VAL_CONST;
498c896fe29Sbellard     ts->name = NULL;
499c896fe29Sbellard     ts->val = val;
500c896fe29Sbellard     s->nb_temps++;
501c896fe29Sbellard #endif
502ac56dd48Spbrook     return MAKE_TCGV(idx);
503c896fe29Sbellard }
504c896fe29Sbellard 
505c896fe29Sbellard void tcg_register_helper(void *func, const char *name)
506c896fe29Sbellard {
507c896fe29Sbellard     TCGContext *s = &tcg_ctx;
508c896fe29Sbellard     int n;
509c896fe29Sbellard     if ((s->nb_helpers + 1) > s->allocated_helpers) {
510c896fe29Sbellard         n = s->allocated_helpers;
511c896fe29Sbellard         if (n == 0) {
512c896fe29Sbellard             n = 4;
513c896fe29Sbellard         } else {
514c896fe29Sbellard             n *= 2;
515c896fe29Sbellard         }
516c896fe29Sbellard         s->helpers = realloc(s->helpers, n * sizeof(TCGHelperInfo));
517c896fe29Sbellard         s->allocated_helpers = n;
518c896fe29Sbellard     }
519*4dc81f28Sbellard     s->helpers[s->nb_helpers].func = (tcg_target_ulong)func;
520c896fe29Sbellard     s->helpers[s->nb_helpers].name = name;
521c896fe29Sbellard     s->nb_helpers++;
522c896fe29Sbellard }
523c896fe29Sbellard 
524ac56dd48Spbrook static inline TCGType tcg_get_base_type(TCGContext *s, TCGv arg)
525c896fe29Sbellard {
526ac56dd48Spbrook     return s->temps[GET_TCGV(arg)].base_type;
527c896fe29Sbellard }
528c896fe29Sbellard 
529ac56dd48Spbrook static void tcg_gen_call_internal(TCGContext *s, TCGv func,
530c896fe29Sbellard                                   unsigned int flags,
531ac56dd48Spbrook                                   unsigned int nb_rets, const TCGv *rets,
532ac56dd48Spbrook                                   unsigned int nb_params, const TCGv *params)
533c896fe29Sbellard {
534c896fe29Sbellard     int i;
535c896fe29Sbellard     *gen_opc_ptr++ = INDEX_op_call;
536c896fe29Sbellard     *gen_opparam_ptr++ = (nb_rets << 16) | (nb_params + 1);
537c896fe29Sbellard     for(i = 0; i < nb_rets; i++) {
538ac56dd48Spbrook         *gen_opparam_ptr++ = GET_TCGV(rets[i]);
539c896fe29Sbellard     }
540c896fe29Sbellard     for(i = 0; i < nb_params; i++) {
541ac56dd48Spbrook         *gen_opparam_ptr++ = GET_TCGV(params[i]);
542c896fe29Sbellard     }
543ac56dd48Spbrook     *gen_opparam_ptr++ = GET_TCGV(func);
544c896fe29Sbellard 
545c896fe29Sbellard     *gen_opparam_ptr++ = flags;
546c896fe29Sbellard     /* total parameters, needed to go backward in the instruction stream */
547c896fe29Sbellard     *gen_opparam_ptr++ = 1 + nb_rets + nb_params + 3;
548c896fe29Sbellard }
549c896fe29Sbellard 
550c896fe29Sbellard 
551c896fe29Sbellard #if TCG_TARGET_REG_BITS < 64
55239cf05d3Sbellard /* Note: we convert the 64 bit args to 32 bit and do some alignment
55339cf05d3Sbellard    and endian swap. Maybe it would be better to do the alignment
55439cf05d3Sbellard    and endian swap in tcg_reg_alloc_call(). */
555ac56dd48Spbrook void tcg_gen_call(TCGContext *s, TCGv func, unsigned int flags,
556ac56dd48Spbrook                   unsigned int nb_rets, const TCGv *rets,
557ac56dd48Spbrook                   unsigned int nb_params, const TCGv *args1)
558c896fe29Sbellard {
559ac56dd48Spbrook     TCGv ret, *args2, rets_2[2], arg;
560c896fe29Sbellard     int j, i, call_type;
561c896fe29Sbellard 
562c896fe29Sbellard     if (nb_rets == 1) {
563c896fe29Sbellard         ret = rets[0];
564c896fe29Sbellard         if (tcg_get_base_type(s, ret) == TCG_TYPE_I64) {
565c896fe29Sbellard             nb_rets = 2;
56639cf05d3Sbellard #ifdef TCG_TARGET_WORDS_BIGENDIAN
56739cf05d3Sbellard             rets_2[0] = TCGV_HIGH(ret);
56839cf05d3Sbellard             rets_2[1] = ret;
56939cf05d3Sbellard #else
570c896fe29Sbellard             rets_2[0] = ret;
571ac56dd48Spbrook             rets_2[1] = TCGV_HIGH(ret);
57239cf05d3Sbellard #endif
573c896fe29Sbellard             rets = rets_2;
574c896fe29Sbellard         }
575c896fe29Sbellard     }
57639cf05d3Sbellard     args2 = alloca((nb_params * 3) * sizeof(TCGv));
577c896fe29Sbellard     j = 0;
578c896fe29Sbellard     call_type = (flags & TCG_CALL_TYPE_MASK);
579c896fe29Sbellard     for(i = 0; i < nb_params; i++) {
580c896fe29Sbellard         arg = args1[i];
581c896fe29Sbellard         if (tcg_get_base_type(s, arg) == TCG_TYPE_I64) {
582c896fe29Sbellard #ifdef TCG_TARGET_I386
583c896fe29Sbellard             /* REGPARM case: if the third parameter is 64 bit, it is
584c896fe29Sbellard                allocated on the stack */
585c896fe29Sbellard             if (j == 2 && call_type == TCG_CALL_TYPE_REGPARM) {
586c896fe29Sbellard                 call_type = TCG_CALL_TYPE_REGPARM_2;
587c896fe29Sbellard                 flags = (flags & ~TCG_CALL_TYPE_MASK) | call_type;
588c896fe29Sbellard             }
589c896fe29Sbellard             args2[j++] = arg;
590ac56dd48Spbrook             args2[j++] = TCGV_HIGH(arg);
591c896fe29Sbellard #else
59239cf05d3Sbellard #ifdef TCG_TARGET_CALL_ALIGN_ARGS
59339cf05d3Sbellard             /* some targets want aligned 64 bit args */
59439cf05d3Sbellard             if (j & 1) {
59539cf05d3Sbellard                 args2[j++] = TCG_CALL_DUMMY_ARG;
59639cf05d3Sbellard             }
59739cf05d3Sbellard #endif
598c896fe29Sbellard #ifdef TCG_TARGET_WORDS_BIGENDIAN
599a0d69e00Sblueswir1             args2[j++] = TCGV_HIGH(arg);
600c896fe29Sbellard             args2[j++] = arg;
601c896fe29Sbellard #else
602c896fe29Sbellard             args2[j++] = arg;
603ac56dd48Spbrook             args2[j++] = TCGV_HIGH(arg);
604c896fe29Sbellard #endif
605c896fe29Sbellard #endif
606c896fe29Sbellard         } else {
607c896fe29Sbellard             args2[j++] = arg;
608c896fe29Sbellard         }
609c896fe29Sbellard     }
610c896fe29Sbellard     tcg_gen_call_internal(s, func, flags,
611c896fe29Sbellard                           nb_rets, rets, j, args2);
612c896fe29Sbellard }
613c896fe29Sbellard #else
614ac56dd48Spbrook void tcg_gen_call(TCGContext *s, TCGv func, unsigned int flags,
615ac56dd48Spbrook                   unsigned int nb_rets, const TCGv *rets,
616ac56dd48Spbrook                   unsigned int nb_params, const TCGv *args1)
617c896fe29Sbellard {
618c896fe29Sbellard     tcg_gen_call_internal(s, func, flags,
619c896fe29Sbellard                           nb_rets, rets, nb_params, args1);
620c896fe29Sbellard }
621c896fe29Sbellard #endif
622c896fe29Sbellard 
623ac56dd48Spbrook #if TCG_TARGET_REG_BITS == 32
624ac56dd48Spbrook void tcg_gen_shifti_i64(TCGv ret, TCGv arg1,
625c896fe29Sbellard                         int c, int right, int arith)
626c896fe29Sbellard {
627cf60bce4Sbellard     if (c == 0) {
628cf60bce4Sbellard         tcg_gen_mov_i32(ret, arg1);
629cf60bce4Sbellard         tcg_gen_mov_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1));
630cf60bce4Sbellard     } else if (c >= 32) {
631c896fe29Sbellard         c -= 32;
632c896fe29Sbellard         if (right) {
633c896fe29Sbellard             if (arith) {
634ac56dd48Spbrook                 tcg_gen_sari_i32(ret, TCGV_HIGH(arg1), c);
635ac56dd48Spbrook                 tcg_gen_sari_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), 31);
636c896fe29Sbellard             } else {
637ac56dd48Spbrook                 tcg_gen_shri_i32(ret, TCGV_HIGH(arg1), c);
638ac56dd48Spbrook                 tcg_gen_movi_i32(TCGV_HIGH(ret), 0);
639c896fe29Sbellard             }
640c896fe29Sbellard         } else {
641ac56dd48Spbrook             tcg_gen_shli_i32(TCGV_HIGH(ret), arg1, c);
642c896fe29Sbellard             tcg_gen_movi_i32(ret, 0);
643c896fe29Sbellard         }
644c896fe29Sbellard     } else {
645ac56dd48Spbrook         TCGv t0, t1;
646c896fe29Sbellard 
647c896fe29Sbellard         t0 = tcg_temp_new(TCG_TYPE_I32);
648c896fe29Sbellard         t1 = tcg_temp_new(TCG_TYPE_I32);
649c896fe29Sbellard         if (right) {
650ac56dd48Spbrook             tcg_gen_shli_i32(t0, TCGV_HIGH(arg1), 32 - c);
651c896fe29Sbellard             if (arith)
652ac56dd48Spbrook                 tcg_gen_sari_i32(t1, TCGV_HIGH(arg1), c);
653c896fe29Sbellard             else
654ac56dd48Spbrook                 tcg_gen_shri_i32(t1, TCGV_HIGH(arg1), c);
655c896fe29Sbellard             tcg_gen_shri_i32(ret, arg1, c);
656c896fe29Sbellard             tcg_gen_or_i32(ret, ret, t0);
657ac56dd48Spbrook             tcg_gen_mov_i32(TCGV_HIGH(ret), t1);
658c896fe29Sbellard         } else {
659c896fe29Sbellard             tcg_gen_shri_i32(t0, arg1, 32 - c);
660c896fe29Sbellard             /* Note: ret can be the same as arg1, so we use t1 */
661c896fe29Sbellard             tcg_gen_shli_i32(t1, arg1, c);
662ac56dd48Spbrook             tcg_gen_shli_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), c);
663ac56dd48Spbrook             tcg_gen_or_i32(TCGV_HIGH(ret), TCGV_HIGH(ret), t0);
664c896fe29Sbellard             tcg_gen_mov_i32(ret, t1);
665c896fe29Sbellard         }
666c896fe29Sbellard     }
667c896fe29Sbellard }
668ac56dd48Spbrook #endif
669c896fe29Sbellard 
670c896fe29Sbellard void tcg_reg_alloc_start(TCGContext *s)
671c896fe29Sbellard {
672c896fe29Sbellard     int i;
673c896fe29Sbellard     TCGTemp *ts;
674c896fe29Sbellard     for(i = 0; i < s->nb_globals; i++) {
675c896fe29Sbellard         ts = &s->temps[i];
676c896fe29Sbellard         if (ts->fixed_reg) {
677c896fe29Sbellard             ts->val_type = TEMP_VAL_REG;
678c896fe29Sbellard         } else {
679c896fe29Sbellard             ts->val_type = TEMP_VAL_MEM;
680c896fe29Sbellard         }
681c896fe29Sbellard     }
682c896fe29Sbellard     for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
683c896fe29Sbellard         s->reg_to_temp[i] = -1;
684c896fe29Sbellard     }
685c896fe29Sbellard }
686c896fe29Sbellard 
687ac56dd48Spbrook static char *tcg_get_arg_str_idx(TCGContext *s, char *buf, int buf_size,
688ac56dd48Spbrook                                  int idx)
689c896fe29Sbellard {
690c896fe29Sbellard     TCGTemp *ts;
691ac56dd48Spbrook 
692ac56dd48Spbrook     ts = &s->temps[idx];
693ac56dd48Spbrook     if (idx < s->nb_globals) {
694ac56dd48Spbrook         pstrcpy(buf, buf_size, ts->name);
695c896fe29Sbellard     } else {
696c896fe29Sbellard         if (ts->val_type == TEMP_VAL_CONST) {
697c896fe29Sbellard             snprintf(buf, buf_size, "$0x%" TCG_PRIlx , ts->val);
698c896fe29Sbellard         } else {
699ac56dd48Spbrook             snprintf(buf, buf_size, "tmp%d", idx - s->nb_globals);
700c896fe29Sbellard         }
701c896fe29Sbellard     }
702c896fe29Sbellard     return buf;
703c896fe29Sbellard }
704c896fe29Sbellard 
705ac56dd48Spbrook char *tcg_get_arg_str(TCGContext *s, char *buf, int buf_size, TCGv arg)
706ac56dd48Spbrook {
707ac56dd48Spbrook     return tcg_get_arg_str_idx(s, buf, buf_size, GET_TCGV(arg));
708ac56dd48Spbrook }
709ac56dd48Spbrook 
710*4dc81f28Sbellard /* find helper definition (XXX: inefficient) */
711*4dc81f28Sbellard static TCGHelperInfo *tcg_find_helper(TCGContext *s, tcg_target_ulong val)
712*4dc81f28Sbellard {
713*4dc81f28Sbellard     int i;
714*4dc81f28Sbellard     for(i = 0; i < s->nb_helpers; i++) {
715*4dc81f28Sbellard         if (s->helpers[i].func == val)
716*4dc81f28Sbellard             return &s->helpers[i];
717*4dc81f28Sbellard     }
718*4dc81f28Sbellard     return NULL;
719*4dc81f28Sbellard }
720*4dc81f28Sbellard 
721*4dc81f28Sbellard static const char *tcg_get_helper_str_idx(TCGContext *s, char *buf, int buf_size,
722*4dc81f28Sbellard                                           int idx)
723*4dc81f28Sbellard {
724*4dc81f28Sbellard     TCGTemp *ts;
725*4dc81f28Sbellard     TCGHelperInfo *th;
726*4dc81f28Sbellard 
727*4dc81f28Sbellard     ts = &s->temps[idx];
728*4dc81f28Sbellard     if (ts->val_type == TEMP_VAL_CONST) {
729*4dc81f28Sbellard         /* find helper name (XXX: inefficient) */
730*4dc81f28Sbellard         th = tcg_find_helper(s, ts->val);
731*4dc81f28Sbellard         if (th) {
732*4dc81f28Sbellard             pstrcpy(buf, buf_size, "$");
733*4dc81f28Sbellard             pstrcat(buf, buf_size, th->name);
734*4dc81f28Sbellard             return buf;
735*4dc81f28Sbellard         }
736*4dc81f28Sbellard     }
737*4dc81f28Sbellard     return tcg_get_arg_str_idx(s, buf, buf_size, idx);
738*4dc81f28Sbellard }
739*4dc81f28Sbellard 
740*4dc81f28Sbellard 
741c896fe29Sbellard void tcg_dump_ops(TCGContext *s, FILE *outfile)
742c896fe29Sbellard {
743c896fe29Sbellard     const uint16_t *opc_ptr;
744c896fe29Sbellard     const TCGArg *args;
745c896fe29Sbellard     TCGArg arg;
746c896fe29Sbellard     int c, i, k, nb_oargs, nb_iargs, nb_cargs;
747c896fe29Sbellard     const TCGOpDef *def;
748c896fe29Sbellard     char buf[128];
749c896fe29Sbellard 
750c896fe29Sbellard     opc_ptr = gen_opc_buf;
751c896fe29Sbellard     args = gen_opparam_buf;
752c896fe29Sbellard     while (opc_ptr < gen_opc_ptr) {
753c896fe29Sbellard         c = *opc_ptr++;
754c896fe29Sbellard         def = &tcg_op_defs[c];
755c896fe29Sbellard         fprintf(outfile, " %s ", def->name);
756c896fe29Sbellard         if (c == INDEX_op_call) {
757c896fe29Sbellard             TCGArg arg;
758*4dc81f28Sbellard 
759c896fe29Sbellard             /* variable number of arguments */
760c896fe29Sbellard             arg = *args++;
761c896fe29Sbellard             nb_oargs = arg >> 16;
762c896fe29Sbellard             nb_iargs = arg & 0xffff;
763c896fe29Sbellard             nb_cargs = def->nb_cargs;
764b03cce8eSbellard 
765b03cce8eSbellard             /* function name */
766b03cce8eSbellard             fprintf(outfile, "%s",
767*4dc81f28Sbellard                     tcg_get_helper_str_idx(s, buf, sizeof(buf), args[nb_oargs + nb_iargs - 1]));
768b03cce8eSbellard             /* flags */
769b03cce8eSbellard             fprintf(outfile, ",$0x%" TCG_PRIlx,
770b03cce8eSbellard                     args[nb_oargs + nb_iargs]);
771b03cce8eSbellard             /* nb out args */
772b03cce8eSbellard             fprintf(outfile, ",$%d", nb_oargs);
773b03cce8eSbellard             for(i = 0; i < nb_oargs; i++) {
774b03cce8eSbellard                 fprintf(outfile, ",");
775b03cce8eSbellard                 fprintf(outfile, "%s",
776b03cce8eSbellard                         tcg_get_arg_str_idx(s, buf, sizeof(buf), args[i]));
777b03cce8eSbellard             }
778b03cce8eSbellard             for(i = 0; i < (nb_iargs - 1); i++) {
779b03cce8eSbellard                 fprintf(outfile, ",");
78039cf05d3Sbellard                 if (args[nb_oargs + i] == TCG_CALL_DUMMY_ARG) {
78139cf05d3Sbellard                     fprintf(outfile, "<dummy>");
78239cf05d3Sbellard                 } else {
783b03cce8eSbellard                     fprintf(outfile, "%s",
784b03cce8eSbellard                             tcg_get_arg_str_idx(s, buf, sizeof(buf), args[nb_oargs + i]));
785b03cce8eSbellard                 }
78639cf05d3Sbellard             }
787b03cce8eSbellard         } else {
788b03cce8eSbellard             if (c == INDEX_op_nopn) {
789c896fe29Sbellard                 /* variable number of arguments */
790c896fe29Sbellard                 nb_cargs = *args;
791c896fe29Sbellard                 nb_oargs = 0;
792c896fe29Sbellard                 nb_iargs = 0;
793c896fe29Sbellard             } else {
794c896fe29Sbellard                 nb_oargs = def->nb_oargs;
795c896fe29Sbellard                 nb_iargs = def->nb_iargs;
796c896fe29Sbellard                 nb_cargs = def->nb_cargs;
797c896fe29Sbellard             }
798c896fe29Sbellard 
799c896fe29Sbellard             k = 0;
800c896fe29Sbellard             for(i = 0; i < nb_oargs; i++) {
801c896fe29Sbellard                 if (k != 0)
802c896fe29Sbellard                     fprintf(outfile, ",");
803ac56dd48Spbrook                 fprintf(outfile, "%s",
804ac56dd48Spbrook                         tcg_get_arg_str_idx(s, buf, sizeof(buf), args[k++]));
805c896fe29Sbellard             }
806c896fe29Sbellard             for(i = 0; i < nb_iargs; i++) {
807c896fe29Sbellard                 if (k != 0)
808c896fe29Sbellard                     fprintf(outfile, ",");
809ac56dd48Spbrook                 fprintf(outfile, "%s",
810ac56dd48Spbrook                         tcg_get_arg_str_idx(s, buf, sizeof(buf), args[k++]));
811c896fe29Sbellard             }
812c896fe29Sbellard             for(i = 0; i < nb_cargs; i++) {
813c896fe29Sbellard                 if (k != 0)
814c896fe29Sbellard                     fprintf(outfile, ",");
815c896fe29Sbellard                 arg = args[k++];
816c896fe29Sbellard                 fprintf(outfile, "$0x%" TCG_PRIlx, arg);
817c896fe29Sbellard             }
818b03cce8eSbellard         }
819c896fe29Sbellard         fprintf(outfile, "\n");
820c896fe29Sbellard         args += nb_iargs + nb_oargs + nb_cargs;
821c896fe29Sbellard     }
822c896fe29Sbellard }
823c896fe29Sbellard 
824c896fe29Sbellard /* we give more priority to constraints with less registers */
825c896fe29Sbellard static int get_constraint_priority(const TCGOpDef *def, int k)
826c896fe29Sbellard {
827c896fe29Sbellard     const TCGArgConstraint *arg_ct;
828c896fe29Sbellard 
829c896fe29Sbellard     int i, n;
830c896fe29Sbellard     arg_ct = &def->args_ct[k];
831c896fe29Sbellard     if (arg_ct->ct & TCG_CT_ALIAS) {
832c896fe29Sbellard         /* an alias is equivalent to a single register */
833c896fe29Sbellard         n = 1;
834c896fe29Sbellard     } else {
835c896fe29Sbellard         if (!(arg_ct->ct & TCG_CT_REG))
836c896fe29Sbellard             return 0;
837c896fe29Sbellard         n = 0;
838c896fe29Sbellard         for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
839c896fe29Sbellard             if (tcg_regset_test_reg(arg_ct->u.regs, i))
840c896fe29Sbellard                 n++;
841c896fe29Sbellard         }
842c896fe29Sbellard     }
843c896fe29Sbellard     return TCG_TARGET_NB_REGS - n + 1;
844c896fe29Sbellard }
845c896fe29Sbellard 
846c896fe29Sbellard /* sort from highest priority to lowest */
847c896fe29Sbellard static void sort_constraints(TCGOpDef *def, int start, int n)
848c896fe29Sbellard {
849c896fe29Sbellard     int i, j, p1, p2, tmp;
850c896fe29Sbellard 
851c896fe29Sbellard     for(i = 0; i < n; i++)
852c896fe29Sbellard         def->sorted_args[start + i] = start + i;
853c896fe29Sbellard     if (n <= 1)
854c896fe29Sbellard         return;
855c896fe29Sbellard     for(i = 0; i < n - 1; i++) {
856c896fe29Sbellard         for(j = i + 1; j < n; j++) {
857c896fe29Sbellard             p1 = get_constraint_priority(def, def->sorted_args[start + i]);
858c896fe29Sbellard             p2 = get_constraint_priority(def, def->sorted_args[start + j]);
859c896fe29Sbellard             if (p1 < p2) {
860c896fe29Sbellard                 tmp = def->sorted_args[start + i];
861c896fe29Sbellard                 def->sorted_args[start + i] = def->sorted_args[start + j];
862c896fe29Sbellard                 def->sorted_args[start + j] = tmp;
863c896fe29Sbellard             }
864c896fe29Sbellard         }
865c896fe29Sbellard     }
866c896fe29Sbellard }
867c896fe29Sbellard 
868c896fe29Sbellard void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs)
869c896fe29Sbellard {
870c896fe29Sbellard     int op;
871c896fe29Sbellard     TCGOpDef *def;
872c896fe29Sbellard     const char *ct_str;
873c896fe29Sbellard     int i, nb_args;
874c896fe29Sbellard 
875c896fe29Sbellard     for(;;) {
876c896fe29Sbellard         if (tdefs->op < 0)
877c896fe29Sbellard             break;
878c896fe29Sbellard         op = tdefs->op;
879c896fe29Sbellard         assert(op >= 0 && op < NB_OPS);
880c896fe29Sbellard         def = &tcg_op_defs[op];
881c896fe29Sbellard         nb_args = def->nb_iargs + def->nb_oargs;
882c896fe29Sbellard         for(i = 0; i < nb_args; i++) {
883c896fe29Sbellard             ct_str = tdefs->args_ct_str[i];
884c896fe29Sbellard             tcg_regset_clear(def->args_ct[i].u.regs);
885c896fe29Sbellard             def->args_ct[i].ct = 0;
886c896fe29Sbellard             if (ct_str[0] >= '0' && ct_str[0] <= '9') {
887c896fe29Sbellard                 int oarg;
888c896fe29Sbellard                 oarg = ct_str[0] - '0';
889c896fe29Sbellard                 assert(oarg < def->nb_oargs);
890c896fe29Sbellard                 assert(def->args_ct[oarg].ct & TCG_CT_REG);
891c896fe29Sbellard                 /* TCG_CT_ALIAS is for the output arguments. The input
8925ff9d6a4Sbellard                    argument is tagged with TCG_CT_IALIAS. */
893c896fe29Sbellard                 def->args_ct[i] = def->args_ct[oarg];
8945ff9d6a4Sbellard                 def->args_ct[oarg].ct = TCG_CT_ALIAS;
8955ff9d6a4Sbellard                 def->args_ct[oarg].alias_index = i;
896c896fe29Sbellard                 def->args_ct[i].ct |= TCG_CT_IALIAS;
8975ff9d6a4Sbellard                 def->args_ct[i].alias_index = oarg;
898c896fe29Sbellard             } else {
899c896fe29Sbellard                 for(;;) {
900c896fe29Sbellard                     if (*ct_str == '\0')
901c896fe29Sbellard                         break;
902c896fe29Sbellard                     switch(*ct_str) {
903c896fe29Sbellard                     case 'i':
904c896fe29Sbellard                         def->args_ct[i].ct |= TCG_CT_CONST;
905c896fe29Sbellard                         ct_str++;
906c896fe29Sbellard                         break;
907c896fe29Sbellard                     default:
908c896fe29Sbellard                         if (target_parse_constraint(&def->args_ct[i], &ct_str) < 0) {
909c896fe29Sbellard                             fprintf(stderr, "Invalid constraint '%s' for arg %d of operation '%s'\n",
910c896fe29Sbellard                                     ct_str, i, def->name);
911c896fe29Sbellard                             exit(1);
912c896fe29Sbellard                         }
913c896fe29Sbellard                     }
914c896fe29Sbellard                 }
915c896fe29Sbellard             }
916c896fe29Sbellard         }
917c896fe29Sbellard 
918c896fe29Sbellard         /* sort the constraints (XXX: this is just an heuristic) */
919c896fe29Sbellard         sort_constraints(def, 0, def->nb_oargs);
920c896fe29Sbellard         sort_constraints(def, def->nb_oargs, def->nb_iargs);
921c896fe29Sbellard 
922c896fe29Sbellard #if 0
923c896fe29Sbellard         {
924c896fe29Sbellard             int i;
925c896fe29Sbellard 
926c896fe29Sbellard             printf("%s: sorted=", def->name);
927c896fe29Sbellard             for(i = 0; i < def->nb_oargs + def->nb_iargs; i++)
928c896fe29Sbellard                 printf(" %d", def->sorted_args[i]);
929c896fe29Sbellard             printf("\n");
930c896fe29Sbellard         }
931c896fe29Sbellard #endif
932c896fe29Sbellard         tdefs++;
933c896fe29Sbellard     }
934c896fe29Sbellard 
935c896fe29Sbellard }
936c896fe29Sbellard 
937c896fe29Sbellard #ifdef USE_LIVENESS_ANALYSIS
938c896fe29Sbellard 
939c896fe29Sbellard /* set a nop for an operation using 'nb_args' */
940c896fe29Sbellard static inline void tcg_set_nop(TCGContext *s, uint16_t *opc_ptr,
941c896fe29Sbellard                                TCGArg *args, int nb_args)
942c896fe29Sbellard {
943c896fe29Sbellard     if (nb_args == 0) {
944c896fe29Sbellard         *opc_ptr = INDEX_op_nop;
945c896fe29Sbellard     } else {
946c896fe29Sbellard         *opc_ptr = INDEX_op_nopn;
947c896fe29Sbellard         args[0] = nb_args;
948c896fe29Sbellard         args[nb_args - 1] = nb_args;
949c896fe29Sbellard     }
950c896fe29Sbellard }
951c896fe29Sbellard 
952c896fe29Sbellard /* liveness analysis: end of basic block: globals are live, temps are dead */
953c896fe29Sbellard static inline void tcg_la_bb_end(TCGContext *s, uint8_t *dead_temps)
954c896fe29Sbellard {
955c896fe29Sbellard     memset(dead_temps, 0, s->nb_globals);
956c896fe29Sbellard     memset(dead_temps + s->nb_globals, 1, s->nb_temps - s->nb_globals);
957c896fe29Sbellard }
958c896fe29Sbellard 
959c896fe29Sbellard /* Liveness analysis : update the opc_dead_iargs array to tell if a
960c896fe29Sbellard    given input arguments is dead. Instructions updating dead
961c896fe29Sbellard    temporaries are removed. */
962c896fe29Sbellard void tcg_liveness_analysis(TCGContext *s)
963c896fe29Sbellard {
964c896fe29Sbellard     int i, op_index, op, nb_args, nb_iargs, nb_oargs, arg, nb_ops;
965c896fe29Sbellard     TCGArg *args;
966c896fe29Sbellard     const TCGOpDef *def;
967c896fe29Sbellard     uint8_t *dead_temps;
968c896fe29Sbellard     unsigned int dead_iargs;
969c896fe29Sbellard 
970c896fe29Sbellard     gen_opc_ptr++; /* skip end */
971c896fe29Sbellard 
972c896fe29Sbellard     nb_ops = gen_opc_ptr - gen_opc_buf;
973c896fe29Sbellard 
974c896fe29Sbellard     /* XXX: make it really dynamic */
975c896fe29Sbellard     s->op_dead_iargs = tcg_malloc(OPC_BUF_SIZE * sizeof(uint16_t));
976c896fe29Sbellard 
977c896fe29Sbellard     dead_temps = tcg_malloc(s->nb_temps);
978c896fe29Sbellard     memset(dead_temps, 1, s->nb_temps);
979c896fe29Sbellard 
980c896fe29Sbellard     args = gen_opparam_ptr;
981c896fe29Sbellard     op_index = nb_ops - 1;
982c896fe29Sbellard     while (op_index >= 0) {
983c896fe29Sbellard         op = gen_opc_buf[op_index];
984c896fe29Sbellard         def = &tcg_op_defs[op];
985c896fe29Sbellard         switch(op) {
986c896fe29Sbellard         case INDEX_op_call:
987c6e113f5Sbellard             {
988c6e113f5Sbellard                 int call_flags;
989c6e113f5Sbellard 
990c896fe29Sbellard                 nb_args = args[-1];
991c896fe29Sbellard                 args -= nb_args;
992c896fe29Sbellard                 nb_iargs = args[0] & 0xffff;
993c896fe29Sbellard                 nb_oargs = args[0] >> 16;
994c896fe29Sbellard                 args++;
995c6e113f5Sbellard                 call_flags = args[nb_oargs + nb_iargs];
996c6e113f5Sbellard 
997c6e113f5Sbellard                 /* pure functions can be removed if their result is not
998c6e113f5Sbellard                    used */
999c6e113f5Sbellard                 if (call_flags & TCG_CALL_PURE) {
1000c6e113f5Sbellard                     for(i = 0; i < nb_oargs; i++) {
1001c6e113f5Sbellard                         arg = args[i];
1002c6e113f5Sbellard                         if (!dead_temps[arg])
1003c6e113f5Sbellard                             goto do_not_remove_call;
1004c6e113f5Sbellard                     }
1005c6e113f5Sbellard                     tcg_set_nop(s, gen_opc_buf + op_index,
1006c6e113f5Sbellard                                 args - 1, nb_args);
1007c6e113f5Sbellard                 } else {
1008c6e113f5Sbellard                 do_not_remove_call:
1009c896fe29Sbellard 
1010c896fe29Sbellard                     /* output args are dead */
1011c896fe29Sbellard                     for(i = 0; i < nb_oargs; i++) {
1012c896fe29Sbellard                         arg = args[i];
1013c896fe29Sbellard                         dead_temps[arg] = 1;
1014c896fe29Sbellard                     }
1015c896fe29Sbellard 
1016c896fe29Sbellard                     /* globals are live (they may be used by the call) */
1017c896fe29Sbellard                     memset(dead_temps, 0, s->nb_globals);
1018c896fe29Sbellard 
1019c896fe29Sbellard                     /* input args are live */
1020c896fe29Sbellard                     dead_iargs = 0;
1021c896fe29Sbellard                     for(i = 0; i < nb_iargs; i++) {
1022c896fe29Sbellard                         arg = args[i + nb_oargs];
102339cf05d3Sbellard                         if (arg != TCG_CALL_DUMMY_ARG) {
1024c896fe29Sbellard                             if (dead_temps[arg]) {
1025c896fe29Sbellard                                 dead_iargs |= (1 << i);
1026c896fe29Sbellard                             }
1027c896fe29Sbellard                             dead_temps[arg] = 0;
1028c896fe29Sbellard                         }
102939cf05d3Sbellard                     }
1030c896fe29Sbellard                     s->op_dead_iargs[op_index] = dead_iargs;
1031c6e113f5Sbellard                 }
1032c896fe29Sbellard                 args--;
1033c6e113f5Sbellard             }
1034c896fe29Sbellard             break;
1035c896fe29Sbellard         case INDEX_op_set_label:
1036c896fe29Sbellard             args--;
1037c896fe29Sbellard             /* mark end of basic block */
1038c896fe29Sbellard             tcg_la_bb_end(s, dead_temps);
1039c896fe29Sbellard             break;
1040c896fe29Sbellard         case INDEX_op_nopn:
1041c896fe29Sbellard             nb_args = args[-1];
1042c896fe29Sbellard             args -= nb_args;
1043c896fe29Sbellard             break;
10445ff9d6a4Sbellard         case INDEX_op_discard:
10455ff9d6a4Sbellard             args--;
10465ff9d6a4Sbellard             /* mark the temporary as dead */
10475ff9d6a4Sbellard             dead_temps[args[0]] = 1;
10485ff9d6a4Sbellard             break;
1049c896fe29Sbellard         case INDEX_op_macro_2:
1050c896fe29Sbellard             {
1051c896fe29Sbellard                 int dead_args[2], macro_id;
1052c896fe29Sbellard                 int saved_op_index, saved_arg_index;
1053c896fe29Sbellard                 int macro_op_index, macro_arg_index;
1054c896fe29Sbellard                 int macro_end_op_index, macro_end_arg_index;
1055c896fe29Sbellard                 int last_nb_temps;
1056c896fe29Sbellard 
1057c896fe29Sbellard                 nb_args = 3;
1058c896fe29Sbellard                 args -= nb_args;
1059c896fe29Sbellard                 dead_args[0] = dead_temps[args[0]];
1060c896fe29Sbellard                 dead_args[1] = dead_temps[args[1]];
1061c896fe29Sbellard                 macro_id = args[2];
1062c896fe29Sbellard 
1063c896fe29Sbellard                 /* call the macro function which generate code
1064c896fe29Sbellard                    depending on the live outputs */
1065c896fe29Sbellard                 saved_op_index = op_index;
1066c896fe29Sbellard                 saved_arg_index = args - gen_opparam_buf;
1067c896fe29Sbellard 
1068c896fe29Sbellard                 /* add a macro start instruction */
1069c896fe29Sbellard                 *gen_opc_ptr++ = INDEX_op_macro_start;
1070c896fe29Sbellard                 *gen_opparam_ptr++ = saved_op_index;
1071c896fe29Sbellard                 *gen_opparam_ptr++ = saved_arg_index;
1072c896fe29Sbellard 
1073c896fe29Sbellard                 macro_op_index = gen_opc_ptr - gen_opc_buf;
1074c896fe29Sbellard                 macro_arg_index = gen_opparam_ptr -  gen_opparam_buf;
1075c896fe29Sbellard 
1076c896fe29Sbellard                 last_nb_temps = s->nb_temps;
1077c896fe29Sbellard 
1078c896fe29Sbellard                 s->macro_func(s, macro_id, dead_args);
1079c896fe29Sbellard 
1080c896fe29Sbellard                 /* realloc temp info (XXX: make it faster) */
1081c896fe29Sbellard                 if (s->nb_temps > last_nb_temps) {
1082c896fe29Sbellard                     uint8_t *new_dead_temps;
1083c896fe29Sbellard 
1084c896fe29Sbellard                     new_dead_temps = tcg_malloc(s->nb_temps);
1085c896fe29Sbellard                     memcpy(new_dead_temps, dead_temps, last_nb_temps);
1086c896fe29Sbellard                     memset(new_dead_temps + last_nb_temps, 1,
1087c896fe29Sbellard                            s->nb_temps - last_nb_temps);
1088c896fe29Sbellard                     dead_temps = new_dead_temps;
1089c896fe29Sbellard                 }
1090c896fe29Sbellard 
1091c896fe29Sbellard                 macro_end_op_index = gen_opc_ptr - gen_opc_buf;
1092c896fe29Sbellard                 macro_end_arg_index = gen_opparam_ptr - gen_opparam_buf;
1093c896fe29Sbellard 
1094c896fe29Sbellard                 /* end of macro: add a goto to the next instruction */
1095c896fe29Sbellard                 *gen_opc_ptr++ = INDEX_op_macro_end;
1096c896fe29Sbellard                 *gen_opparam_ptr++ = op_index + 1;
1097c896fe29Sbellard                 *gen_opparam_ptr++ = saved_arg_index + nb_args;
1098c896fe29Sbellard 
1099c896fe29Sbellard                 /* modify the macro operation to be a macro_goto */
1100c896fe29Sbellard                 gen_opc_buf[op_index] = INDEX_op_macro_goto;
1101c896fe29Sbellard                 args[0] = macro_op_index;
1102c896fe29Sbellard                 args[1] = macro_arg_index;
1103c896fe29Sbellard                 args[2] = 0; /* dummy third arg to match the
1104c896fe29Sbellard                                 macro parameters */
1105c896fe29Sbellard 
1106c896fe29Sbellard                 /* set the next instruction to the end of the macro */
1107c896fe29Sbellard                 op_index = macro_end_op_index;
1108c896fe29Sbellard                 args = macro_end_arg_index + gen_opparam_buf;
1109c896fe29Sbellard             }
1110c896fe29Sbellard             break;
1111c896fe29Sbellard         case INDEX_op_macro_start:
1112c896fe29Sbellard             args -= 2;
1113c896fe29Sbellard             op_index = args[0];
1114c896fe29Sbellard             args = gen_opparam_buf + args[1];
1115c896fe29Sbellard             break;
1116c896fe29Sbellard         case INDEX_op_macro_goto:
1117c896fe29Sbellard         case INDEX_op_macro_end:
1118c896fe29Sbellard             tcg_abort(); /* should never happen in liveness analysis */
1119c896fe29Sbellard         case INDEX_op_end:
1120c896fe29Sbellard             break;
1121c896fe29Sbellard             /* XXX: optimize by hardcoding common cases (e.g. triadic ops) */
1122c896fe29Sbellard         default:
1123c896fe29Sbellard             if (op > INDEX_op_end) {
1124c896fe29Sbellard                 args -= def->nb_args;
1125c896fe29Sbellard                 nb_iargs = def->nb_iargs;
1126c896fe29Sbellard                 nb_oargs = def->nb_oargs;
1127c896fe29Sbellard 
1128c896fe29Sbellard                 /* Test if the operation can be removed because all
11295ff9d6a4Sbellard                    its outputs are dead. We assume that nb_oargs == 0
11305ff9d6a4Sbellard                    implies side effects */
11315ff9d6a4Sbellard                 if (!(def->flags & TCG_OPF_SIDE_EFFECTS) && nb_oargs != 0) {
1132c896fe29Sbellard                     for(i = 0; i < nb_oargs; i++) {
1133c896fe29Sbellard                         arg = args[i];
1134c896fe29Sbellard                         if (!dead_temps[arg])
1135c896fe29Sbellard                             goto do_not_remove;
1136c896fe29Sbellard                     }
1137c896fe29Sbellard                     tcg_set_nop(s, gen_opc_buf + op_index, args, def->nb_args);
1138c896fe29Sbellard #ifdef CONFIG_PROFILER
1139c896fe29Sbellard                     {
1140c896fe29Sbellard                         extern int64_t dyngen_tcg_del_op_count;
1141c896fe29Sbellard                         dyngen_tcg_del_op_count++;
1142c896fe29Sbellard                     }
1143c896fe29Sbellard #endif
1144c896fe29Sbellard                 } else {
1145c896fe29Sbellard                 do_not_remove:
1146c896fe29Sbellard 
1147c896fe29Sbellard                     /* output args are dead */
1148c896fe29Sbellard                     for(i = 0; i < nb_oargs; i++) {
1149c896fe29Sbellard                         arg = args[i];
1150c896fe29Sbellard                         dead_temps[arg] = 1;
1151c896fe29Sbellard                     }
1152c896fe29Sbellard 
1153c896fe29Sbellard                     /* if end of basic block, update */
1154c896fe29Sbellard                     if (def->flags & TCG_OPF_BB_END) {
1155c896fe29Sbellard                         tcg_la_bb_end(s, dead_temps);
1156b03cce8eSbellard                     } else if (def->flags & TCG_OPF_CALL_CLOBBER) {
1157b03cce8eSbellard                         /* globals are live */
1158b03cce8eSbellard                         memset(dead_temps, 0, s->nb_globals);
1159c896fe29Sbellard                     }
1160c896fe29Sbellard 
1161c896fe29Sbellard                     /* input args are live */
1162c896fe29Sbellard                     dead_iargs = 0;
1163c896fe29Sbellard                     for(i = 0; i < nb_iargs; i++) {
1164c896fe29Sbellard                         arg = args[i + nb_oargs];
1165c896fe29Sbellard                         if (dead_temps[arg]) {
1166c896fe29Sbellard                             dead_iargs |= (1 << i);
1167c896fe29Sbellard                         }
1168c896fe29Sbellard                         dead_temps[arg] = 0;
1169c896fe29Sbellard                     }
1170c896fe29Sbellard                     s->op_dead_iargs[op_index] = dead_iargs;
1171c896fe29Sbellard                 }
1172c896fe29Sbellard             } else {
1173c896fe29Sbellard                 /* legacy dyngen operations */
1174c896fe29Sbellard                 args -= def->nb_args;
1175c896fe29Sbellard                 /* mark end of basic block */
1176c896fe29Sbellard                 tcg_la_bb_end(s, dead_temps);
1177c896fe29Sbellard             }
1178c896fe29Sbellard             break;
1179c896fe29Sbellard         }
1180c896fe29Sbellard         op_index--;
1181c896fe29Sbellard     }
1182c896fe29Sbellard 
1183c896fe29Sbellard     if (args != gen_opparam_buf)
1184c896fe29Sbellard         tcg_abort();
1185c896fe29Sbellard }
1186c896fe29Sbellard #else
1187c896fe29Sbellard /* dummy liveness analysis */
1188c896fe29Sbellard void tcg_liveness_analysis(TCGContext *s)
1189c896fe29Sbellard {
1190c896fe29Sbellard     int nb_ops;
1191c896fe29Sbellard     nb_ops = gen_opc_ptr - gen_opc_buf;
1192c896fe29Sbellard 
1193c896fe29Sbellard     s->op_dead_iargs = tcg_malloc(nb_ops * sizeof(uint16_t));
1194c896fe29Sbellard     memset(s->op_dead_iargs, 0, nb_ops * sizeof(uint16_t));
1195c896fe29Sbellard }
1196c896fe29Sbellard #endif
1197c896fe29Sbellard 
1198c896fe29Sbellard #ifndef NDEBUG
1199c896fe29Sbellard static void dump_regs(TCGContext *s)
1200c896fe29Sbellard {
1201c896fe29Sbellard     TCGTemp *ts;
1202c896fe29Sbellard     int i;
1203c896fe29Sbellard     char buf[64];
1204c896fe29Sbellard 
1205c896fe29Sbellard     for(i = 0; i < s->nb_temps; i++) {
1206c896fe29Sbellard         ts = &s->temps[i];
1207ac56dd48Spbrook         printf("  %10s: ", tcg_get_arg_str_idx(s, buf, sizeof(buf), i));
1208c896fe29Sbellard         switch(ts->val_type) {
1209c896fe29Sbellard         case TEMP_VAL_REG:
1210c896fe29Sbellard             printf("%s", tcg_target_reg_names[ts->reg]);
1211c896fe29Sbellard             break;
1212c896fe29Sbellard         case TEMP_VAL_MEM:
1213c896fe29Sbellard             printf("%d(%s)", (int)ts->mem_offset, tcg_target_reg_names[ts->mem_reg]);
1214c896fe29Sbellard             break;
1215c896fe29Sbellard         case TEMP_VAL_CONST:
1216c896fe29Sbellard             printf("$0x%" TCG_PRIlx, ts->val);
1217c896fe29Sbellard             break;
1218c896fe29Sbellard         case TEMP_VAL_DEAD:
1219c896fe29Sbellard             printf("D");
1220c896fe29Sbellard             break;
1221c896fe29Sbellard         default:
1222c896fe29Sbellard             printf("???");
1223c896fe29Sbellard             break;
1224c896fe29Sbellard         }
1225c896fe29Sbellard         printf("\n");
1226c896fe29Sbellard     }
1227c896fe29Sbellard 
1228c896fe29Sbellard     for(i = 0; i < TCG_TARGET_NB_REGS; i++) {
1229c896fe29Sbellard         if (s->reg_to_temp[i] >= 0) {
1230c896fe29Sbellard             printf("%s: %s\n",
1231c896fe29Sbellard                    tcg_target_reg_names[i],
1232ac56dd48Spbrook                    tcg_get_arg_str_idx(s, buf, sizeof(buf), s->reg_to_temp[i]));
1233c896fe29Sbellard         }
1234c896fe29Sbellard     }
1235c896fe29Sbellard }
1236c896fe29Sbellard 
1237c896fe29Sbellard static void check_regs(TCGContext *s)
1238c896fe29Sbellard {
1239c896fe29Sbellard     int reg, k;
1240c896fe29Sbellard     TCGTemp *ts;
1241c896fe29Sbellard     char buf[64];
1242c896fe29Sbellard 
1243c896fe29Sbellard     for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1244c896fe29Sbellard         k = s->reg_to_temp[reg];
1245c896fe29Sbellard         if (k >= 0) {
1246c896fe29Sbellard             ts = &s->temps[k];
1247c896fe29Sbellard             if (ts->val_type != TEMP_VAL_REG ||
1248c896fe29Sbellard                 ts->reg != reg) {
1249c896fe29Sbellard                 printf("Inconsistency for register %s:\n",
1250c896fe29Sbellard                        tcg_target_reg_names[reg]);
1251b03cce8eSbellard                 goto fail;
1252c896fe29Sbellard             }
1253c896fe29Sbellard         }
1254c896fe29Sbellard     }
1255c896fe29Sbellard     for(k = 0; k < s->nb_temps; k++) {
1256c896fe29Sbellard         ts = &s->temps[k];
1257c896fe29Sbellard         if (ts->val_type == TEMP_VAL_REG &&
1258c896fe29Sbellard             !ts->fixed_reg &&
1259c896fe29Sbellard             s->reg_to_temp[ts->reg] != k) {
1260c896fe29Sbellard                 printf("Inconsistency for temp %s:\n",
1261ac56dd48Spbrook                        tcg_get_arg_str_idx(s, buf, sizeof(buf), k));
1262b03cce8eSbellard         fail:
1263c896fe29Sbellard                 printf("reg state:\n");
1264c896fe29Sbellard                 dump_regs(s);
1265c896fe29Sbellard                 tcg_abort();
1266c896fe29Sbellard         }
1267b03cce8eSbellard         if (ts->val_type == TEMP_VAL_CONST && k < s->nb_globals) {
1268b03cce8eSbellard             printf("constant forbidden in global %s\n",
1269b03cce8eSbellard                    tcg_get_arg_str_idx(s, buf, sizeof(buf), k));
1270b03cce8eSbellard             goto fail;
1271b03cce8eSbellard         }
1272c896fe29Sbellard     }
1273c896fe29Sbellard }
1274c896fe29Sbellard #endif
1275c896fe29Sbellard 
1276c896fe29Sbellard static void temp_allocate_frame(TCGContext *s, int temp)
1277c896fe29Sbellard {
1278c896fe29Sbellard     TCGTemp *ts;
1279c896fe29Sbellard     ts = &s->temps[temp];
1280c896fe29Sbellard     s->current_frame_offset = (s->current_frame_offset + sizeof(tcg_target_long) - 1) & ~(sizeof(tcg_target_long) - 1);
1281c896fe29Sbellard     if (s->current_frame_offset + sizeof(tcg_target_long) > s->frame_end)
12825ff9d6a4Sbellard         tcg_abort();
1283c896fe29Sbellard     ts->mem_offset = s->current_frame_offset;
1284c896fe29Sbellard     ts->mem_reg = s->frame_reg;
1285c896fe29Sbellard     ts->mem_allocated = 1;
1286c896fe29Sbellard     s->current_frame_offset += sizeof(tcg_target_long);
1287c896fe29Sbellard }
1288c896fe29Sbellard 
1289c896fe29Sbellard /* free register 'reg' by spilling the corresponding temporary if necessary */
1290c896fe29Sbellard static void tcg_reg_free(TCGContext *s, int reg)
1291c896fe29Sbellard {
1292c896fe29Sbellard     TCGTemp *ts;
1293c896fe29Sbellard     int temp;
1294c896fe29Sbellard 
1295c896fe29Sbellard     temp = s->reg_to_temp[reg];
1296c896fe29Sbellard     if (temp != -1) {
1297c896fe29Sbellard         ts = &s->temps[temp];
1298c896fe29Sbellard         assert(ts->val_type == TEMP_VAL_REG);
1299c896fe29Sbellard         if (!ts->mem_coherent) {
1300c896fe29Sbellard             if (!ts->mem_allocated)
1301c896fe29Sbellard                 temp_allocate_frame(s, temp);
1302e4d5434cSblueswir1             tcg_out_st(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1303c896fe29Sbellard         }
1304c896fe29Sbellard         ts->val_type = TEMP_VAL_MEM;
1305c896fe29Sbellard         s->reg_to_temp[reg] = -1;
1306c896fe29Sbellard     }
1307c896fe29Sbellard }
1308c896fe29Sbellard 
1309c896fe29Sbellard /* Allocate a register belonging to reg1 & ~reg2 */
1310c896fe29Sbellard static int tcg_reg_alloc(TCGContext *s, TCGRegSet reg1, TCGRegSet reg2)
1311c896fe29Sbellard {
1312c896fe29Sbellard     int i, reg;
1313c896fe29Sbellard     TCGRegSet reg_ct;
1314c896fe29Sbellard 
1315c896fe29Sbellard     tcg_regset_andnot(reg_ct, reg1, reg2);
1316c896fe29Sbellard 
1317c896fe29Sbellard     /* first try free registers */
13180954d0d9Sblueswir1     for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1319c896fe29Sbellard         reg = tcg_target_reg_alloc_order[i];
1320c896fe29Sbellard         if (tcg_regset_test_reg(reg_ct, reg) && s->reg_to_temp[reg] == -1)
1321c896fe29Sbellard             return reg;
1322c896fe29Sbellard     }
1323c896fe29Sbellard 
1324c896fe29Sbellard     /* XXX: do better spill choice */
13250954d0d9Sblueswir1     for(i = 0; i < ARRAY_SIZE(tcg_target_reg_alloc_order); i++) {
1326c896fe29Sbellard         reg = tcg_target_reg_alloc_order[i];
1327c896fe29Sbellard         if (tcg_regset_test_reg(reg_ct, reg)) {
1328c896fe29Sbellard             tcg_reg_free(s, reg);
1329c896fe29Sbellard             return reg;
1330c896fe29Sbellard         }
1331c896fe29Sbellard     }
1332c896fe29Sbellard 
1333c896fe29Sbellard     tcg_abort();
1334c896fe29Sbellard }
1335c896fe29Sbellard 
1336e5097dc8Sbellard /* save globals to their cannonical location and assume they can be
1337e5097dc8Sbellard    modified be the following code. */
1338e5097dc8Sbellard static void save_globals(TCGContext *s)
1339c896fe29Sbellard {
1340c896fe29Sbellard     TCGTemp *ts;
1341c896fe29Sbellard     int i;
1342c896fe29Sbellard 
1343c896fe29Sbellard     for(i = 0; i < s->nb_globals; i++) {
1344c896fe29Sbellard         ts = &s->temps[i];
1345c896fe29Sbellard         if (!ts->fixed_reg) {
1346c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG) {
1347c896fe29Sbellard                 tcg_reg_free(s, ts->reg);
1348e5097dc8Sbellard             } else if (ts->val_type == TEMP_VAL_DEAD) {
1349e5097dc8Sbellard                 ts->val_type = TEMP_VAL_MEM;
1350c896fe29Sbellard             }
1351c896fe29Sbellard         }
1352c896fe29Sbellard     }
1353e5097dc8Sbellard }
1354e5097dc8Sbellard 
1355e5097dc8Sbellard /* at the end of a basic block, we assume all temporaries are dead and
1356e5097dc8Sbellard    all globals are stored at their canonical location */
1357e5097dc8Sbellard /* XXX: optimize by handling constants in another array ? */
1358e5097dc8Sbellard void tcg_reg_alloc_bb_end(TCGContext *s)
1359e5097dc8Sbellard {
1360e5097dc8Sbellard     TCGTemp *ts;
1361e5097dc8Sbellard     int i;
1362e5097dc8Sbellard 
1363e5097dc8Sbellard     save_globals(s);
1364c896fe29Sbellard 
1365c896fe29Sbellard     for(i = s->nb_globals; i < s->nb_temps; i++) {
1366c896fe29Sbellard         ts = &s->temps[i];
1367c896fe29Sbellard         if (ts->val_type != TEMP_VAL_CONST) {
1368c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG) {
1369c896fe29Sbellard                 s->reg_to_temp[ts->reg] = -1;
1370c896fe29Sbellard             }
1371c896fe29Sbellard             ts->val_type = TEMP_VAL_DEAD;
1372c896fe29Sbellard         }
1373c896fe29Sbellard     }
1374c896fe29Sbellard }
1375c896fe29Sbellard 
1376c896fe29Sbellard #define IS_DEAD_IARG(n) ((dead_iargs >> (n)) & 1)
1377c896fe29Sbellard 
1378c896fe29Sbellard static void tcg_reg_alloc_mov(TCGContext *s, const TCGOpDef *def,
1379c896fe29Sbellard                               const TCGArg *args,
1380c896fe29Sbellard                               unsigned int dead_iargs)
1381c896fe29Sbellard {
1382c896fe29Sbellard     TCGTemp *ts, *ots;
1383c896fe29Sbellard     int reg;
1384c896fe29Sbellard     const TCGArgConstraint *arg_ct;
1385c896fe29Sbellard 
1386c896fe29Sbellard     ots = &s->temps[args[0]];
1387c896fe29Sbellard     ts = &s->temps[args[1]];
1388c896fe29Sbellard     arg_ct = &def->args_ct[0];
1389c896fe29Sbellard 
1390c896fe29Sbellard     if (ts->val_type == TEMP_VAL_REG) {
1391c896fe29Sbellard         if (IS_DEAD_IARG(0) && !ts->fixed_reg && !ots->fixed_reg) {
1392c896fe29Sbellard             /* the mov can be suppressed */
1393c896fe29Sbellard             if (ots->val_type == TEMP_VAL_REG)
1394c896fe29Sbellard                 s->reg_to_temp[ots->reg] = -1;
1395c896fe29Sbellard             reg = ts->reg;
1396c896fe29Sbellard             s->reg_to_temp[reg] = -1;
1397c896fe29Sbellard             ts->val_type = TEMP_VAL_DEAD;
1398c896fe29Sbellard         } else {
1399c896fe29Sbellard             if (ots->val_type == TEMP_VAL_REG) {
1400c896fe29Sbellard                 reg = ots->reg;
1401c896fe29Sbellard             } else {
1402c896fe29Sbellard                 reg = tcg_reg_alloc(s, arg_ct->u.regs, s->reserved_regs);
1403c896fe29Sbellard             }
1404c896fe29Sbellard             if (ts->reg != reg) {
1405c896fe29Sbellard                 tcg_out_mov(s, reg, ts->reg);
1406c896fe29Sbellard             }
1407c896fe29Sbellard         }
1408c896fe29Sbellard     } else if (ts->val_type == TEMP_VAL_MEM) {
1409c896fe29Sbellard         if (ots->val_type == TEMP_VAL_REG) {
1410c896fe29Sbellard             reg = ots->reg;
1411c896fe29Sbellard         } else {
1412c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, s->reserved_regs);
1413c896fe29Sbellard         }
1414e4d5434cSblueswir1         tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1415c896fe29Sbellard     } else if (ts->val_type == TEMP_VAL_CONST) {
1416c896fe29Sbellard         if (ots->val_type == TEMP_VAL_REG) {
1417c896fe29Sbellard             reg = ots->reg;
1418c896fe29Sbellard         } else {
1419c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, s->reserved_regs);
1420c896fe29Sbellard         }
1421c896fe29Sbellard         tcg_out_movi(s, ots->type, reg, ts->val);
1422c896fe29Sbellard     } else {
1423c896fe29Sbellard         tcg_abort();
1424c896fe29Sbellard     }
1425c896fe29Sbellard     s->reg_to_temp[reg] = args[0];
1426c896fe29Sbellard     ots->reg = reg;
1427c896fe29Sbellard     ots->val_type = TEMP_VAL_REG;
1428c896fe29Sbellard     ots->mem_coherent = 0;
1429c896fe29Sbellard }
1430c896fe29Sbellard 
1431c896fe29Sbellard static void tcg_reg_alloc_op(TCGContext *s,
1432c896fe29Sbellard                              const TCGOpDef *def, int opc,
1433c896fe29Sbellard                              const TCGArg *args,
1434c896fe29Sbellard                              unsigned int dead_iargs)
1435c896fe29Sbellard {
1436c896fe29Sbellard     TCGRegSet allocated_regs;
1437c896fe29Sbellard     int i, k, nb_iargs, nb_oargs, reg;
1438c896fe29Sbellard     TCGArg arg;
1439c896fe29Sbellard     const TCGArgConstraint *arg_ct;
1440c896fe29Sbellard     TCGTemp *ts;
1441c896fe29Sbellard     TCGArg new_args[TCG_MAX_OP_ARGS];
1442c896fe29Sbellard     int const_args[TCG_MAX_OP_ARGS];
1443c896fe29Sbellard 
1444c896fe29Sbellard     nb_oargs = def->nb_oargs;
1445c896fe29Sbellard     nb_iargs = def->nb_iargs;
1446c896fe29Sbellard 
1447c896fe29Sbellard     /* copy constants */
1448c896fe29Sbellard     memcpy(new_args + nb_oargs + nb_iargs,
1449c896fe29Sbellard            args + nb_oargs + nb_iargs,
1450c896fe29Sbellard            sizeof(TCGArg) * def->nb_cargs);
1451c896fe29Sbellard 
1452c896fe29Sbellard     /* satisfy input constraints */
1453c896fe29Sbellard     tcg_regset_set(allocated_regs, s->reserved_regs);
1454c896fe29Sbellard     for(k = 0; k < nb_iargs; k++) {
1455c896fe29Sbellard         i = def->sorted_args[nb_oargs + k];
1456c896fe29Sbellard         arg = args[i];
1457c896fe29Sbellard         arg_ct = &def->args_ct[i];
1458c896fe29Sbellard         ts = &s->temps[arg];
1459c896fe29Sbellard         if (ts->val_type == TEMP_VAL_MEM) {
1460c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1461e4d5434cSblueswir1             tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1462c896fe29Sbellard             ts->val_type = TEMP_VAL_REG;
1463c896fe29Sbellard             ts->reg = reg;
1464c896fe29Sbellard             ts->mem_coherent = 1;
1465c896fe29Sbellard             s->reg_to_temp[reg] = arg;
1466c896fe29Sbellard         } else if (ts->val_type == TEMP_VAL_CONST) {
1467c896fe29Sbellard             if (tcg_target_const_match(ts->val, arg_ct)) {
1468c896fe29Sbellard                 /* constant is OK for instruction */
1469c896fe29Sbellard                 const_args[i] = 1;
1470c896fe29Sbellard                 new_args[i] = ts->val;
1471c896fe29Sbellard                 goto iarg_end;
1472c896fe29Sbellard             } else {
1473c896fe29Sbellard                 /* need to move to a register*/
1474c896fe29Sbellard                 reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1475c896fe29Sbellard                 tcg_out_movi(s, ts->type, reg, ts->val);
1476c896fe29Sbellard                 goto iarg_end1;
1477c896fe29Sbellard             }
1478c896fe29Sbellard         }
1479c896fe29Sbellard         assert(ts->val_type == TEMP_VAL_REG);
14805ff9d6a4Sbellard         if (arg_ct->ct & TCG_CT_IALIAS) {
14815ff9d6a4Sbellard             if (ts->fixed_reg) {
14825ff9d6a4Sbellard                 /* if fixed register, we must allocate a new register
14835ff9d6a4Sbellard                    if the alias is not the same register */
14845ff9d6a4Sbellard                 if (arg != args[arg_ct->alias_index])
14855ff9d6a4Sbellard                     goto allocate_in_reg;
14865ff9d6a4Sbellard             } else {
1487c896fe29Sbellard                 /* if the input is aliased to an output and if it is
1488c896fe29Sbellard                    not dead after the instruction, we must allocate
1489c896fe29Sbellard                    a new register and move it */
14905ff9d6a4Sbellard                 if (!IS_DEAD_IARG(i - nb_oargs))
1491c896fe29Sbellard                     goto allocate_in_reg;
1492c896fe29Sbellard             }
14935ff9d6a4Sbellard         }
1494c896fe29Sbellard         reg = ts->reg;
1495c896fe29Sbellard         if (tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1496c896fe29Sbellard             /* nothing to do : the constraint is satisfied */
1497c896fe29Sbellard         } else {
1498c896fe29Sbellard         allocate_in_reg:
1499c896fe29Sbellard             /* allocate a new register matching the constraint
1500c896fe29Sbellard                and move the temporary register into it */
1501c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1502c896fe29Sbellard             tcg_out_mov(s, reg, ts->reg);
1503c896fe29Sbellard         }
1504c896fe29Sbellard     iarg_end1:
1505c896fe29Sbellard         new_args[i] = reg;
1506c896fe29Sbellard         const_args[i] = 0;
1507c896fe29Sbellard         tcg_regset_set_reg(allocated_regs, reg);
1508c896fe29Sbellard     iarg_end: ;
1509c896fe29Sbellard     }
1510c896fe29Sbellard 
1511c896fe29Sbellard     /* mark dead temporaries and free the associated registers */
1512c896fe29Sbellard     for(i = 0; i < nb_iargs; i++) {
1513c896fe29Sbellard         arg = args[nb_oargs + i];
1514c896fe29Sbellard         if (IS_DEAD_IARG(i)) {
1515c896fe29Sbellard             ts = &s->temps[arg];
1516c896fe29Sbellard             if (ts->val_type != TEMP_VAL_CONST && !ts->fixed_reg) {
1517c896fe29Sbellard                 if (ts->val_type == TEMP_VAL_REG)
1518c896fe29Sbellard                     s->reg_to_temp[ts->reg] = -1;
1519c896fe29Sbellard                 ts->val_type = TEMP_VAL_DEAD;
1520c896fe29Sbellard             }
1521c896fe29Sbellard         }
1522c896fe29Sbellard     }
1523c896fe29Sbellard 
1524c896fe29Sbellard     if (def->flags & TCG_OPF_CALL_CLOBBER) {
1525b03cce8eSbellard         /* XXX: permit generic clobber register list ? */
1526c896fe29Sbellard         for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1527c896fe29Sbellard             if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
1528c896fe29Sbellard                 tcg_reg_free(s, reg);
1529c896fe29Sbellard             }
1530c896fe29Sbellard         }
1531b03cce8eSbellard         /* XXX: for load/store we could do that only for the slow path
1532b03cce8eSbellard            (i.e. when a memory callback is called) */
1533b03cce8eSbellard 
1534b03cce8eSbellard         /* store globals and free associated registers (we assume the insn
1535b03cce8eSbellard            can modify any global. */
1536e5097dc8Sbellard         save_globals(s);
1537c896fe29Sbellard     }
1538c896fe29Sbellard 
1539c896fe29Sbellard     /* satisfy the output constraints */
1540c896fe29Sbellard     tcg_regset_set(allocated_regs, s->reserved_regs);
1541c896fe29Sbellard     for(k = 0; k < nb_oargs; k++) {
1542c896fe29Sbellard         i = def->sorted_args[k];
1543c896fe29Sbellard         arg = args[i];
1544c896fe29Sbellard         arg_ct = &def->args_ct[i];
1545c896fe29Sbellard         ts = &s->temps[arg];
1546c896fe29Sbellard         if (arg_ct->ct & TCG_CT_ALIAS) {
15475ff9d6a4Sbellard             reg = new_args[arg_ct->alias_index];
1548c896fe29Sbellard         } else {
1549c896fe29Sbellard             /* if fixed register, we try to use it */
1550c896fe29Sbellard             reg = ts->reg;
1551c896fe29Sbellard             if (ts->fixed_reg &&
1552c896fe29Sbellard                 tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1553c896fe29Sbellard                 goto oarg_end;
1554c896fe29Sbellard             }
1555c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1556c896fe29Sbellard         }
1557c896fe29Sbellard         tcg_regset_set_reg(allocated_regs, reg);
1558c896fe29Sbellard         /* if a fixed register is used, then a move will be done afterwards */
1559c896fe29Sbellard         if (!ts->fixed_reg) {
1560c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG)
1561c896fe29Sbellard                 s->reg_to_temp[ts->reg] = -1;
1562c896fe29Sbellard             ts->val_type = TEMP_VAL_REG;
1563c896fe29Sbellard             ts->reg = reg;
1564c896fe29Sbellard             /* temp value is modified, so the value kept in memory is
1565c896fe29Sbellard                potentially not the same */
1566c896fe29Sbellard             ts->mem_coherent = 0;
1567c896fe29Sbellard             s->reg_to_temp[reg] = arg;
1568c896fe29Sbellard         }
1569c896fe29Sbellard     oarg_end:
1570c896fe29Sbellard         new_args[i] = reg;
1571c896fe29Sbellard     }
1572c896fe29Sbellard 
1573c896fe29Sbellard     if (def->flags & TCG_OPF_BB_END)
1574c896fe29Sbellard         tcg_reg_alloc_bb_end(s);
1575c896fe29Sbellard 
1576c896fe29Sbellard     /* emit instruction */
1577c896fe29Sbellard     tcg_out_op(s, opc, new_args, const_args);
1578c896fe29Sbellard 
1579c896fe29Sbellard     /* move the outputs in the correct register if needed */
1580c896fe29Sbellard     for(i = 0; i < nb_oargs; i++) {
1581c896fe29Sbellard         ts = &s->temps[args[i]];
1582c896fe29Sbellard         reg = new_args[i];
1583c896fe29Sbellard         if (ts->fixed_reg && ts->reg != reg) {
1584c896fe29Sbellard             tcg_out_mov(s, ts->reg, reg);
1585c896fe29Sbellard         }
1586c896fe29Sbellard     }
1587c896fe29Sbellard }
1588c896fe29Sbellard 
1589b03cce8eSbellard #ifdef TCG_TARGET_STACK_GROWSUP
1590b03cce8eSbellard #define STACK_DIR(x) (-(x))
1591b03cce8eSbellard #else
1592b03cce8eSbellard #define STACK_DIR(x) (x)
1593b03cce8eSbellard #endif
1594b03cce8eSbellard 
1595c896fe29Sbellard static int tcg_reg_alloc_call(TCGContext *s, const TCGOpDef *def,
1596c896fe29Sbellard                               int opc, const TCGArg *args,
1597c896fe29Sbellard                               unsigned int dead_iargs)
1598c896fe29Sbellard {
1599c896fe29Sbellard     int nb_iargs, nb_oargs, flags, nb_regs, i, reg, nb_params;
1600c896fe29Sbellard     TCGArg arg, func_arg;
1601c896fe29Sbellard     TCGTemp *ts;
1602f54b3f92Saurel32     tcg_target_long stack_offset, call_stack_size, func_addr;
1603b03cce8eSbellard     int const_func_arg, allocate_args;
1604c896fe29Sbellard     TCGRegSet allocated_regs;
1605c896fe29Sbellard     const TCGArgConstraint *arg_ct;
1606c896fe29Sbellard 
1607c896fe29Sbellard     arg = *args++;
1608c896fe29Sbellard 
1609c896fe29Sbellard     nb_oargs = arg >> 16;
1610c896fe29Sbellard     nb_iargs = arg & 0xffff;
1611c896fe29Sbellard     nb_params = nb_iargs - 1;
1612c896fe29Sbellard 
1613c896fe29Sbellard     flags = args[nb_oargs + nb_iargs];
1614c896fe29Sbellard 
1615c896fe29Sbellard     nb_regs = tcg_target_get_call_iarg_regs_count(flags);
1616c896fe29Sbellard     if (nb_regs > nb_params)
1617c896fe29Sbellard         nb_regs = nb_params;
1618c896fe29Sbellard 
1619c896fe29Sbellard     /* assign stack slots first */
1620c896fe29Sbellard     /* XXX: preallocate call stack */
1621c896fe29Sbellard     call_stack_size = (nb_params - nb_regs) * sizeof(tcg_target_long);
1622c896fe29Sbellard     call_stack_size = (call_stack_size + TCG_TARGET_STACK_ALIGN - 1) &
1623c896fe29Sbellard         ~(TCG_TARGET_STACK_ALIGN - 1);
1624b03cce8eSbellard     allocate_args = (call_stack_size > TCG_STATIC_CALL_ARGS_SIZE);
1625b03cce8eSbellard     if (allocate_args) {
1626b03cce8eSbellard         tcg_out_addi(s, TCG_REG_CALL_STACK, -STACK_DIR(call_stack_size));
1627b03cce8eSbellard     }
162839cf05d3Sbellard 
162939cf05d3Sbellard     stack_offset = TCG_TARGET_CALL_STACK_OFFSET;
1630c896fe29Sbellard     for(i = nb_regs; i < nb_params; i++) {
1631c896fe29Sbellard         arg = args[nb_oargs + i];
163239cf05d3Sbellard #ifdef TCG_TARGET_STACK_GROWSUP
163339cf05d3Sbellard         stack_offset -= sizeof(tcg_target_long);
163439cf05d3Sbellard #endif
163539cf05d3Sbellard         if (arg != TCG_CALL_DUMMY_ARG) {
1636c896fe29Sbellard             ts = &s->temps[arg];
1637c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG) {
1638e4d5434cSblueswir1                 tcg_out_st(s, ts->type, ts->reg, TCG_REG_CALL_STACK, stack_offset);
1639c896fe29Sbellard             } else if (ts->val_type == TEMP_VAL_MEM) {
1640c896fe29Sbellard                 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1641c896fe29Sbellard                                     s->reserved_regs);
1642c896fe29Sbellard                 /* XXX: not correct if reading values from the stack */
1643e4d5434cSblueswir1                 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1644e4d5434cSblueswir1                 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
1645c896fe29Sbellard             } else if (ts->val_type == TEMP_VAL_CONST) {
1646c896fe29Sbellard                 reg = tcg_reg_alloc(s, tcg_target_available_regs[ts->type],
1647c896fe29Sbellard                                     s->reserved_regs);
1648c896fe29Sbellard                 /* XXX: sign extend may be needed on some targets */
1649c896fe29Sbellard                 tcg_out_movi(s, ts->type, reg, ts->val);
1650e4d5434cSblueswir1                 tcg_out_st(s, ts->type, reg, TCG_REG_CALL_STACK, stack_offset);
1651c896fe29Sbellard             } else {
1652c896fe29Sbellard                 tcg_abort();
1653c896fe29Sbellard             }
165439cf05d3Sbellard         }
165539cf05d3Sbellard #ifndef TCG_TARGET_STACK_GROWSUP
165639cf05d3Sbellard         stack_offset += sizeof(tcg_target_long);
165739cf05d3Sbellard #endif
1658c896fe29Sbellard     }
1659c896fe29Sbellard 
1660c896fe29Sbellard     /* assign input registers */
1661c896fe29Sbellard     tcg_regset_set(allocated_regs, s->reserved_regs);
1662c896fe29Sbellard     for(i = 0; i < nb_regs; i++) {
1663c896fe29Sbellard         arg = args[nb_oargs + i];
166439cf05d3Sbellard         if (arg != TCG_CALL_DUMMY_ARG) {
1665c896fe29Sbellard             ts = &s->temps[arg];
1666c896fe29Sbellard             reg = tcg_target_call_iarg_regs[i];
1667c896fe29Sbellard             tcg_reg_free(s, reg);
1668c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG) {
1669c896fe29Sbellard                 if (ts->reg != reg) {
1670c896fe29Sbellard                     tcg_out_mov(s, reg, ts->reg);
1671c896fe29Sbellard                 }
1672c896fe29Sbellard             } else if (ts->val_type == TEMP_VAL_MEM) {
1673e4d5434cSblueswir1                 tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1674c896fe29Sbellard             } else if (ts->val_type == TEMP_VAL_CONST) {
1675c896fe29Sbellard                 /* XXX: sign extend ? */
1676c896fe29Sbellard                 tcg_out_movi(s, ts->type, reg, ts->val);
1677c896fe29Sbellard             } else {
1678c896fe29Sbellard                 tcg_abort();
1679c896fe29Sbellard             }
1680c896fe29Sbellard             tcg_regset_set_reg(allocated_regs, reg);
1681c896fe29Sbellard         }
168239cf05d3Sbellard     }
1683c896fe29Sbellard 
1684c896fe29Sbellard     /* assign function address */
1685c896fe29Sbellard     func_arg = args[nb_oargs + nb_iargs - 1];
1686c896fe29Sbellard     arg_ct = &def->args_ct[0];
1687c896fe29Sbellard     ts = &s->temps[func_arg];
1688f54b3f92Saurel32     func_addr = ts->val;
1689c896fe29Sbellard     const_func_arg = 0;
1690c896fe29Sbellard     if (ts->val_type == TEMP_VAL_MEM) {
1691c896fe29Sbellard         reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1692e4d5434cSblueswir1         tcg_out_ld(s, ts->type, reg, ts->mem_reg, ts->mem_offset);
1693c896fe29Sbellard         func_arg = reg;
1694c896fe29Sbellard     } else if (ts->val_type == TEMP_VAL_REG) {
1695c896fe29Sbellard         reg = ts->reg;
1696c896fe29Sbellard         if (!tcg_regset_test_reg(arg_ct->u.regs, reg)) {
1697c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1698c896fe29Sbellard             tcg_out_mov(s, reg, ts->reg);
1699c896fe29Sbellard         }
1700c896fe29Sbellard         func_arg = reg;
1701c896fe29Sbellard     } else if (ts->val_type == TEMP_VAL_CONST) {
1702f54b3f92Saurel32         if (tcg_target_const_match(func_addr, arg_ct)) {
1703c896fe29Sbellard             const_func_arg = 1;
1704f54b3f92Saurel32             func_arg = func_addr;
1705c896fe29Sbellard         } else {
1706c896fe29Sbellard             reg = tcg_reg_alloc(s, arg_ct->u.regs, allocated_regs);
1707f54b3f92Saurel32             tcg_out_movi(s, ts->type, reg, func_addr);
1708c896fe29Sbellard             func_arg = reg;
1709c896fe29Sbellard         }
1710c896fe29Sbellard     } else {
1711c896fe29Sbellard         tcg_abort();
1712c896fe29Sbellard     }
1713c896fe29Sbellard 
1714c896fe29Sbellard     /* mark dead temporaries and free the associated registers */
1715c6e113f5Sbellard     for(i = 0; i < nb_iargs; i++) {
1716c896fe29Sbellard         arg = args[nb_oargs + i];
1717c896fe29Sbellard         if (IS_DEAD_IARG(i)) {
1718c896fe29Sbellard             ts = &s->temps[arg];
1719c896fe29Sbellard             if (ts->val_type != TEMP_VAL_CONST && !ts->fixed_reg) {
1720c896fe29Sbellard                 if (ts->val_type == TEMP_VAL_REG)
1721c896fe29Sbellard                     s->reg_to_temp[ts->reg] = -1;
1722c896fe29Sbellard                 ts->val_type = TEMP_VAL_DEAD;
1723c896fe29Sbellard             }
1724c896fe29Sbellard         }
1725c896fe29Sbellard     }
1726c896fe29Sbellard 
1727c896fe29Sbellard     /* clobber call registers */
1728c896fe29Sbellard     for(reg = 0; reg < TCG_TARGET_NB_REGS; reg++) {
1729c896fe29Sbellard         if (tcg_regset_test_reg(tcg_target_call_clobber_regs, reg)) {
1730c896fe29Sbellard             tcg_reg_free(s, reg);
1731c896fe29Sbellard         }
1732c896fe29Sbellard     }
1733c896fe29Sbellard 
1734c896fe29Sbellard     /* store globals and free associated registers (we assume the call
1735c896fe29Sbellard        can modify any global. */
1736e5097dc8Sbellard     save_globals(s);
1737c896fe29Sbellard 
1738c896fe29Sbellard     tcg_out_op(s, opc, &func_arg, &const_func_arg);
1739c896fe29Sbellard 
1740b03cce8eSbellard     if (allocate_args) {
1741b03cce8eSbellard         tcg_out_addi(s, TCG_REG_CALL_STACK, STACK_DIR(call_stack_size));
1742b03cce8eSbellard     }
1743c896fe29Sbellard 
1744c896fe29Sbellard     /* assign output registers and emit moves if needed */
1745c896fe29Sbellard     for(i = 0; i < nb_oargs; i++) {
1746c896fe29Sbellard         arg = args[i];
1747c896fe29Sbellard         ts = &s->temps[arg];
1748c896fe29Sbellard         reg = tcg_target_call_oarg_regs[i];
1749c896fe29Sbellard         tcg_reg_free(s, reg);
1750c896fe29Sbellard         if (ts->fixed_reg) {
1751c896fe29Sbellard             if (ts->reg != reg) {
1752c896fe29Sbellard                 tcg_out_mov(s, ts->reg, reg);
1753c896fe29Sbellard             }
1754c896fe29Sbellard         } else {
1755c896fe29Sbellard             if (ts->val_type == TEMP_VAL_REG)
1756c896fe29Sbellard                 s->reg_to_temp[ts->reg] = -1;
1757c896fe29Sbellard             ts->val_type = TEMP_VAL_REG;
1758c896fe29Sbellard             ts->reg = reg;
1759c896fe29Sbellard             ts->mem_coherent = 0;
1760c896fe29Sbellard             s->reg_to_temp[reg] = arg;
1761c896fe29Sbellard         }
1762c896fe29Sbellard     }
1763c896fe29Sbellard 
1764c896fe29Sbellard     return nb_iargs + nb_oargs + def->nb_cargs + 1;
1765c896fe29Sbellard }
1766c896fe29Sbellard 
1767c896fe29Sbellard #ifdef CONFIG_PROFILER
1768c896fe29Sbellard 
1769c896fe29Sbellard static int64_t dyngen_table_op_count[NB_OPS];
1770c896fe29Sbellard 
1771c896fe29Sbellard void dump_op_count(void)
1772c896fe29Sbellard {
1773c896fe29Sbellard     int i;
1774c896fe29Sbellard     FILE *f;
1775c896fe29Sbellard     f = fopen("/tmp/op1.log", "w");
1776c896fe29Sbellard     for(i = 0; i < INDEX_op_end; i++) {
1777c896fe29Sbellard         fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name, dyngen_table_op_count[i]);
1778c896fe29Sbellard     }
1779c896fe29Sbellard     fclose(f);
1780c896fe29Sbellard     f = fopen("/tmp/op2.log", "w");
1781c896fe29Sbellard     for(i = INDEX_op_end; i < NB_OPS; i++) {
1782c896fe29Sbellard         fprintf(f, "%s %" PRId64 "\n", tcg_op_defs[i].name, dyngen_table_op_count[i]);
1783c896fe29Sbellard     }
1784c896fe29Sbellard     fclose(f);
1785c896fe29Sbellard }
1786c896fe29Sbellard #endif
1787c896fe29Sbellard 
1788c896fe29Sbellard 
1789c896fe29Sbellard static inline int tcg_gen_code_common(TCGContext *s, uint8_t *gen_code_buf,
17902ba1eeb6Spbrook                                       long search_pc)
1791c896fe29Sbellard {
1792c896fe29Sbellard     int opc, op_index, macro_op_index;
1793c896fe29Sbellard     const TCGOpDef *def;
1794c896fe29Sbellard     unsigned int dead_iargs;
1795c896fe29Sbellard     const TCGArg *args;
1796c896fe29Sbellard 
1797c896fe29Sbellard #ifdef DEBUG_DISAS
1798c896fe29Sbellard     if (unlikely(loglevel & CPU_LOG_TB_OP)) {
1799c896fe29Sbellard         fprintf(logfile, "OP:\n");
1800c896fe29Sbellard         tcg_dump_ops(s, logfile);
1801c896fe29Sbellard         fprintf(logfile, "\n");
1802c896fe29Sbellard     }
1803c896fe29Sbellard #endif
1804c896fe29Sbellard 
1805c896fe29Sbellard     tcg_liveness_analysis(s);
1806c896fe29Sbellard 
1807c896fe29Sbellard #ifdef DEBUG_DISAS
1808c896fe29Sbellard     if (unlikely(loglevel & CPU_LOG_TB_OP_OPT)) {
1809c896fe29Sbellard         fprintf(logfile, "OP after la:\n");
1810c896fe29Sbellard         tcg_dump_ops(s, logfile);
1811c896fe29Sbellard         fprintf(logfile, "\n");
1812c896fe29Sbellard     }
1813c896fe29Sbellard #endif
1814c896fe29Sbellard 
1815c896fe29Sbellard     tcg_reg_alloc_start(s);
1816c896fe29Sbellard 
1817c896fe29Sbellard     s->code_buf = gen_code_buf;
1818c896fe29Sbellard     s->code_ptr = gen_code_buf;
1819c896fe29Sbellard 
1820c896fe29Sbellard     macro_op_index = -1;
1821c896fe29Sbellard     args = gen_opparam_buf;
1822c896fe29Sbellard     op_index = 0;
1823b3db8758Sblueswir1 
1824c896fe29Sbellard     for(;;) {
1825c896fe29Sbellard         opc = gen_opc_buf[op_index];
1826c896fe29Sbellard #ifdef CONFIG_PROFILER
1827c896fe29Sbellard         dyngen_table_op_count[opc]++;
1828c896fe29Sbellard #endif
1829c896fe29Sbellard         def = &tcg_op_defs[opc];
1830c896fe29Sbellard #if 0
1831c896fe29Sbellard         printf("%s: %d %d %d\n", def->name,
1832c896fe29Sbellard                def->nb_oargs, def->nb_iargs, def->nb_cargs);
1833c896fe29Sbellard         //        dump_regs(s);
1834c896fe29Sbellard #endif
1835c896fe29Sbellard         switch(opc) {
1836c896fe29Sbellard         case INDEX_op_mov_i32:
1837c896fe29Sbellard #if TCG_TARGET_REG_BITS == 64
1838c896fe29Sbellard         case INDEX_op_mov_i64:
1839c896fe29Sbellard #endif
1840c896fe29Sbellard             dead_iargs = s->op_dead_iargs[op_index];
1841c896fe29Sbellard             tcg_reg_alloc_mov(s, def, args, dead_iargs);
1842c896fe29Sbellard             break;
1843c896fe29Sbellard         case INDEX_op_nop:
1844c896fe29Sbellard         case INDEX_op_nop1:
1845c896fe29Sbellard         case INDEX_op_nop2:
1846c896fe29Sbellard         case INDEX_op_nop3:
1847c896fe29Sbellard             break;
1848c896fe29Sbellard         case INDEX_op_nopn:
1849c896fe29Sbellard             args += args[0];
1850c896fe29Sbellard             goto next;
18515ff9d6a4Sbellard         case INDEX_op_discard:
18525ff9d6a4Sbellard             {
18535ff9d6a4Sbellard                 TCGTemp *ts;
18545ff9d6a4Sbellard                 ts = &s->temps[args[0]];
18555ff9d6a4Sbellard                 /* mark the temporary as dead */
18565ff9d6a4Sbellard                 if (ts->val_type != TEMP_VAL_CONST && !ts->fixed_reg) {
18575ff9d6a4Sbellard                     if (ts->val_type == TEMP_VAL_REG)
18585ff9d6a4Sbellard                         s->reg_to_temp[ts->reg] = -1;
18595ff9d6a4Sbellard                     ts->val_type = TEMP_VAL_DEAD;
18605ff9d6a4Sbellard                 }
18615ff9d6a4Sbellard             }
18625ff9d6a4Sbellard             break;
1863c896fe29Sbellard         case INDEX_op_macro_goto:
1864c896fe29Sbellard             macro_op_index = op_index; /* only used for exceptions */
1865c896fe29Sbellard             op_index = args[0] - 1;
1866c896fe29Sbellard             args = gen_opparam_buf + args[1];
1867c896fe29Sbellard             goto next;
1868c896fe29Sbellard         case INDEX_op_macro_end:
1869c896fe29Sbellard             macro_op_index = -1; /* only used for exceptions */
1870c896fe29Sbellard             op_index = args[0] - 1;
1871c896fe29Sbellard             args = gen_opparam_buf + args[1];
1872c896fe29Sbellard             goto next;
1873c896fe29Sbellard         case INDEX_op_macro_start:
1874c896fe29Sbellard             /* must never happen here */
1875c896fe29Sbellard             tcg_abort();
1876c896fe29Sbellard         case INDEX_op_set_label:
1877c896fe29Sbellard             tcg_reg_alloc_bb_end(s);
1878c896fe29Sbellard             tcg_out_label(s, args[0], (long)s->code_ptr);
1879c896fe29Sbellard             break;
1880c896fe29Sbellard         case INDEX_op_call:
1881c896fe29Sbellard             dead_iargs = s->op_dead_iargs[op_index];
1882c896fe29Sbellard             args += tcg_reg_alloc_call(s, def, opc, args, dead_iargs);
1883c896fe29Sbellard             goto next;
1884c896fe29Sbellard         case INDEX_op_end:
1885c896fe29Sbellard             goto the_end;
1886cf2be984Sblueswir1 
1887bf6247fbSblueswir1 #ifdef CONFIG_DYNGEN_OP
1888c896fe29Sbellard         case 0 ... INDEX_op_end - 1:
1889c896fe29Sbellard             /* legacy dyngen ops */
1890c896fe29Sbellard #ifdef CONFIG_PROFILER
1891c896fe29Sbellard             {
1892c896fe29Sbellard                 extern int64_t dyngen_old_op_count;
1893c896fe29Sbellard                 dyngen_old_op_count++;
1894c896fe29Sbellard             }
1895c896fe29Sbellard #endif
1896c896fe29Sbellard             tcg_reg_alloc_bb_end(s);
18972ba1eeb6Spbrook             if (search_pc >= 0) {
1898c896fe29Sbellard                 s->code_ptr += def->copy_size;
1899c896fe29Sbellard                 args += def->nb_args;
1900c896fe29Sbellard             } else {
1901c896fe29Sbellard                 args = dyngen_op(s, opc, args);
1902c896fe29Sbellard             }
1903c896fe29Sbellard             goto next;
1904cf2be984Sblueswir1 #endif
1905c896fe29Sbellard         default:
1906c896fe29Sbellard             /* Note: in order to speed up the code, it would be much
1907c896fe29Sbellard                faster to have specialized register allocator functions for
1908c896fe29Sbellard                some common argument patterns */
1909c896fe29Sbellard             dead_iargs = s->op_dead_iargs[op_index];
1910c896fe29Sbellard             tcg_reg_alloc_op(s, def, opc, args, dead_iargs);
1911c896fe29Sbellard             break;
1912c896fe29Sbellard         }
1913c896fe29Sbellard         args += def->nb_args;
1914c896fe29Sbellard     next: ;
19152ba1eeb6Spbrook         if (search_pc >= 0 && search_pc < s->code_ptr - gen_code_buf) {
1916c896fe29Sbellard             if (macro_op_index >= 0)
1917c896fe29Sbellard                 return macro_op_index;
1918c896fe29Sbellard             else
1919c896fe29Sbellard                 return op_index;
1920c896fe29Sbellard         }
1921c896fe29Sbellard         op_index++;
1922c896fe29Sbellard #ifndef NDEBUG
1923c896fe29Sbellard         check_regs(s);
1924c896fe29Sbellard #endif
1925c896fe29Sbellard     }
1926c896fe29Sbellard  the_end:
1927c896fe29Sbellard     return -1;
1928c896fe29Sbellard }
1929c896fe29Sbellard 
1930c896fe29Sbellard int dyngen_code(TCGContext *s, uint8_t *gen_code_buf)
1931c896fe29Sbellard {
1932c896fe29Sbellard #ifdef CONFIG_PROFILER
1933c896fe29Sbellard     {
1934c896fe29Sbellard         extern int64_t dyngen_op_count;
1935c896fe29Sbellard         extern int dyngen_op_count_max;
1936c896fe29Sbellard         int n;
1937c896fe29Sbellard         n = (gen_opc_ptr - gen_opc_buf);
1938c896fe29Sbellard         dyngen_op_count += n;
1939c896fe29Sbellard         if (n > dyngen_op_count_max)
1940c896fe29Sbellard             dyngen_op_count_max = n;
1941c896fe29Sbellard     }
1942c896fe29Sbellard #endif
1943c896fe29Sbellard 
19442ba1eeb6Spbrook     tcg_gen_code_common(s, gen_code_buf, -1);
1945c896fe29Sbellard 
1946c896fe29Sbellard     /* flush instruction cache */
1947c896fe29Sbellard     flush_icache_range((unsigned long)gen_code_buf,
1948c896fe29Sbellard                        (unsigned long)s->code_ptr);
1949c896fe29Sbellard     return s->code_ptr -  gen_code_buf;
1950c896fe29Sbellard }
1951c896fe29Sbellard 
19522ba1eeb6Spbrook /* Return the index of the micro operation such as the pc after is <
1953623e265cSpbrook    offset bytes from the start of the TB.  The contents of gen_code_buf must
1954623e265cSpbrook    not be changed, though writing the same values is ok.
1955623e265cSpbrook    Return -1 if not found. */
1956623e265cSpbrook int dyngen_code_search_pc(TCGContext *s, uint8_t *gen_code_buf, long offset)
1957c896fe29Sbellard {
1958623e265cSpbrook     return tcg_gen_code_common(s, gen_code_buf, offset);
1959c896fe29Sbellard }
1960