Merge pull request #1345 from mattleibow/websocket-continuation-frame-fix
[mono.git] / mono / mini / mini-codegen.c
1 /*
2  * mini-codegen.c: Arch independent code generation functionality
3  *
4  * (C) 2003 Ximian, Inc.
5  */
6
7 #include <string.h>
8 #include <math.h>
9 #ifdef HAVE_UNISTD_H
10 #include <unistd.h>
11 #endif
12
13 #include <mono/metadata/appdomain.h>
14 #include <mono/metadata/debug-helpers.h>
15 #include <mono/metadata/threads.h>
16 #include <mono/metadata/profiler-private.h>
17 #include <mono/metadata/mempool-internals.h>
18 #include <mono/utils/mono-math.h>
19
20 #include "mini.h"
21 #include "trace.h"
22 #include "mini-arch.h"
23
24 #ifndef MONO_MAX_XREGS
25
26 #define MONO_MAX_XREGS 0
27 #define MONO_ARCH_CALLEE_SAVED_XREGS 0
28 #define MONO_ARCH_CALLEE_XREGS 0
29
30 #endif
31  
32
33 #define MONO_ARCH_BANK_MIRRORED -2
34
35 #ifdef MONO_ARCH_USE_SHARED_FP_SIMD_BANK
36
37 #ifndef MONO_ARCH_NEED_SIMD_BANK
38 #error "MONO_ARCH_USE_SHARED_FP_SIMD_BANK needs MONO_ARCH_NEED_SIMD_BANK to work"
39 #endif
40
41 #define get_mirrored_bank(bank) (((bank) == MONO_REG_SIMD ) ? MONO_REG_DOUBLE : (((bank) == MONO_REG_DOUBLE ) ? MONO_REG_SIMD : -1))
42
43 #define is_hreg_mirrored(rs, bank, hreg) ((rs)->symbolic [(bank)] [(hreg)] == MONO_ARCH_BANK_MIRRORED)
44
45
46 #else
47
48
49 #define get_mirrored_bank(bank) (-1)
50
51 #define is_hreg_mirrored(rs, bank, hreg) (0)
52
53 #endif
54
55
56 /* If the bank is mirrored return the true logical bank that the register in the
57  * physical register bank is allocated to.
58  */
59 static inline int translate_bank (MonoRegState *rs, int bank, int hreg) {
60         return is_hreg_mirrored (rs, bank, hreg) ? get_mirrored_bank (bank) : bank;
61 }
62
63 /*
64  * Every hardware register belongs to a register type or register bank. bank 0 
65  * contains the int registers, bank 1 contains the fp registers.
66  * int registers are used 99% of the time, so they are special cased in a lot of 
67  * places.
68  */
69
70 static const int regbank_size [] = {
71         MONO_MAX_IREGS,
72         MONO_MAX_FREGS,
73         MONO_MAX_IREGS,
74         MONO_MAX_IREGS,
75         MONO_MAX_XREGS
76 };
77
78 static const int regbank_load_ops [] = { 
79         OP_LOADR_MEMBASE,
80         OP_LOADR8_MEMBASE,
81         OP_LOADR_MEMBASE,
82         OP_LOADR_MEMBASE,
83         OP_LOADX_MEMBASE
84 };
85
86 static const int regbank_store_ops [] = { 
87         OP_STORER_MEMBASE_REG,
88         OP_STORER8_MEMBASE_REG,
89         OP_STORER_MEMBASE_REG,
90         OP_STORER_MEMBASE_REG,
91         OP_STOREX_MEMBASE
92 };
93
94 static const int regbank_move_ops [] = { 
95         OP_MOVE,
96         OP_FMOVE,
97         OP_MOVE,
98         OP_MOVE,
99         OP_XMOVE
100 };
101
102 #define regmask(reg) (((regmask_t)1) << (reg))
103
104 #ifdef MONO_ARCH_USE_SHARED_FP_SIMD_BANK
105 static const regmask_t regbank_callee_saved_regs [] = {
106         MONO_ARCH_CALLEE_SAVED_REGS,
107         MONO_ARCH_CALLEE_SAVED_FREGS,
108         MONO_ARCH_CALLEE_SAVED_REGS,
109         MONO_ARCH_CALLEE_SAVED_REGS,
110         MONO_ARCH_CALLEE_SAVED_XREGS,
111 };
112 #endif
113
114 static const regmask_t regbank_callee_regs [] = {
115         MONO_ARCH_CALLEE_REGS,
116         MONO_ARCH_CALLEE_FREGS,
117         MONO_ARCH_CALLEE_REGS,
118         MONO_ARCH_CALLEE_REGS,
119         MONO_ARCH_CALLEE_XREGS,
120 };
121
122 static const int regbank_spill_var_size[] = {
123         sizeof (mgreg_t),
124         sizeof (double),
125         sizeof (mgreg_t),
126         sizeof (mgreg_t),
127         16 /*FIXME make this a constant. Maybe MONO_ARCH_SIMD_VECTOR_SIZE? */
128 };
129
130 #define DEBUG(a) MINI_DEBUG(cfg->verbose_level, 3, a;)
131
132 static inline void
133 mono_regstate_assign (MonoRegState *rs)
134 {
135 #ifdef MONO_ARCH_USE_SHARED_FP_SIMD_BANK
136         /* The regalloc may fail if fp and simd logical regbanks share the same physical reg bank and
137          * if the values here are not the same.
138          */
139         g_assert(regbank_callee_regs [MONO_REG_SIMD] == regbank_callee_regs [MONO_REG_DOUBLE]);
140         g_assert(regbank_callee_saved_regs [MONO_REG_SIMD] == regbank_callee_saved_regs [MONO_REG_DOUBLE]);
141         g_assert(regbank_size [MONO_REG_SIMD] == regbank_size [MONO_REG_DOUBLE]);
142 #endif
143
144         if (rs->next_vreg > rs->vassign_size) {
145                 g_free (rs->vassign);
146                 rs->vassign_size = MAX (rs->next_vreg, 256);
147                 rs->vassign = (gint32 *)g_malloc (rs->vassign_size * sizeof (gint32));
148         }
149
150         memset (rs->isymbolic, 0, MONO_MAX_IREGS * sizeof (rs->isymbolic [0]));
151         memset (rs->fsymbolic, 0, MONO_MAX_FREGS * sizeof (rs->fsymbolic [0]));
152
153         rs->symbolic [MONO_REG_INT] = rs->isymbolic;
154         rs->symbolic [MONO_REG_DOUBLE] = rs->fsymbolic;
155
156 #ifdef MONO_ARCH_NEED_SIMD_BANK
157         memset (rs->xsymbolic, 0, MONO_MAX_XREGS * sizeof (rs->xsymbolic [0]));
158         rs->symbolic [MONO_REG_SIMD] = rs->xsymbolic;
159 #endif
160 }
161
162 static inline int
163 mono_regstate_alloc_int (MonoRegState *rs, regmask_t allow)
164 {
165         regmask_t mask = allow & rs->ifree_mask;
166
167 #if defined(__x86_64__) && defined(__GNUC__)
168  {
169         guint64 i;
170
171         if (mask == 0)
172                 return -1;
173
174         __asm__("bsfq %1,%0\n\t"
175                         : "=r" (i) : "rm" (mask));
176
177         rs->ifree_mask &= ~ ((regmask_t)1 << i);
178         return i;
179  }
180 #else
181         int i;
182
183         for (i = 0; i < MONO_MAX_IREGS; ++i) {
184                 if (mask & ((regmask_t)1 << i)) {
185                         rs->ifree_mask &= ~ ((regmask_t)1 << i);
186                         return i;
187                 }
188         }
189         return -1;
190 #endif
191 }
192
193 static inline void
194 mono_regstate_free_int (MonoRegState *rs, int reg)
195 {
196         if (reg >= 0) {
197                 rs->ifree_mask |= (regmask_t)1 << reg;
198                 rs->isymbolic [reg] = 0;
199         }
200 }
201
202 static inline int
203 mono_regstate_alloc_general (MonoRegState *rs, regmask_t allow, int bank)
204 {
205         int i;
206         int mirrored_bank;
207         regmask_t mask = allow & rs->free_mask [bank];
208         for (i = 0; i < regbank_size [bank]; ++i) {
209                 if (mask & ((regmask_t)1 << i)) {
210                         rs->free_mask [bank] &= ~ ((regmask_t)1 << i);
211
212                         mirrored_bank = get_mirrored_bank (bank);
213                         if (mirrored_bank == -1)
214                                 return i;
215
216                         rs->free_mask [mirrored_bank] = rs->free_mask [bank];
217                         return i;
218                 }
219         }
220         return -1;
221 }
222
223 static inline void
224 mono_regstate_free_general (MonoRegState *rs, int reg, int bank)
225 {
226         int mirrored_bank;
227
228         if (reg >= 0) {
229                 rs->free_mask [bank] |= (regmask_t)1 << reg;
230                 rs->symbolic [bank][reg] = 0;
231
232                 mirrored_bank = get_mirrored_bank (bank);
233                 if (mirrored_bank == -1)
234                         return;
235                 rs->free_mask [mirrored_bank] = rs->free_mask [bank];
236                 rs->symbolic [mirrored_bank][reg] = 0;
237         }
238 }
239
240 const char*
241 mono_regname_full (int reg, int bank)
242 {
243         if (G_UNLIKELY (bank)) {
244 #if MONO_ARCH_NEED_SIMD_BANK
245                 if (bank == MONO_REG_SIMD)
246                         return mono_arch_xregname (reg);
247 #endif
248                 if (bank == MONO_REG_INT_REF || bank == MONO_REG_INT_MP)
249                         return mono_arch_regname (reg);
250                 g_assert (bank == MONO_REG_DOUBLE);
251                 return mono_arch_fregname (reg);
252         } else {
253                 return mono_arch_regname (reg);
254         }
255 }
256
257 void
258 mono_call_inst_add_outarg_reg (MonoCompile *cfg, MonoCallInst *call, int vreg, int hreg, int bank)
259 {
260         guint32 regpair;
261
262         regpair = (((guint32)hreg) << 24) + vreg;
263         if (G_UNLIKELY (bank)) {
264                 g_assert (vreg >= regbank_size [bank]);
265                 g_assert (hreg < regbank_size [bank]);
266                 call->used_fregs |= 1 << hreg;
267                 call->out_freg_args = g_slist_append_mempool (cfg->mempool, call->out_freg_args, (gpointer)(gssize)(regpair));
268         } else {
269                 g_assert (vreg >= MONO_MAX_IREGS);
270                 g_assert (hreg < MONO_MAX_IREGS);
271                 call->used_iregs |= 1 << hreg;
272                 call->out_ireg_args = g_slist_append_mempool (cfg->mempool, call->out_ireg_args, (gpointer)(gssize)(regpair));
273         }
274 }
275
276 /*
277  * mono_call_inst_add_outarg_vt:
278  *
279  *   Register OUTARG_VT as belonging to CALL.
280  */
281 void
282 mono_call_inst_add_outarg_vt (MonoCompile *cfg, MonoCallInst *call, MonoInst *outarg_vt)
283 {
284         call->outarg_vts = g_slist_append_mempool (cfg->mempool, call->outarg_vts, outarg_vt);
285 }
286
287 static void
288 resize_spill_info (MonoCompile *cfg, int bank)
289 {
290         MonoSpillInfo *orig_info = cfg->spill_info [bank];
291         int orig_len = cfg->spill_info_len [bank];
292         int new_len = orig_len ? orig_len * 2 : 16;
293         MonoSpillInfo *new_info;
294         int i;
295
296         g_assert (bank < MONO_NUM_REGBANKS);
297
298         new_info = (MonoSpillInfo *)mono_mempool_alloc0 (cfg->mempool, sizeof (MonoSpillInfo) * new_len);
299         if (orig_info)
300                 memcpy (new_info, orig_info, sizeof (MonoSpillInfo) * orig_len);
301         for (i = orig_len; i < new_len; ++i)
302                 new_info [i].offset = -1;
303
304         cfg->spill_info [bank] = new_info;
305         cfg->spill_info_len [bank] = new_len;
306 }
307
308 /*
309  * returns the offset used by spillvar. It allocates a new
310  * spill variable if necessary. 
311  */
312 static inline int
313 mono_spillvar_offset (MonoCompile *cfg, int spillvar, int bank)
314 {
315         MonoSpillInfo *info;
316         int size;
317
318         if (G_UNLIKELY (spillvar >= (cfg->spill_info_len [bank]))) {
319                 while (spillvar >= cfg->spill_info_len [bank])
320                         resize_spill_info (cfg, bank);
321         }
322
323         /*
324          * Allocate separate spill slots for fp/non-fp variables since most processors prefer it.
325          */
326         info = &cfg->spill_info [bank][spillvar];
327         if (info->offset == -1) {
328                 cfg->stack_offset += sizeof (mgreg_t) - 1;
329                 cfg->stack_offset &= ~(sizeof (mgreg_t) - 1);
330
331                 g_assert (bank < MONO_NUM_REGBANKS);
332                 if (G_UNLIKELY (bank))
333                         size = regbank_spill_var_size [bank];
334                 else
335                         size = sizeof (mgreg_t);
336
337                 if (cfg->flags & MONO_CFG_HAS_SPILLUP) {
338                         cfg->stack_offset += size - 1;
339                         cfg->stack_offset &= ~(size - 1);
340                         info->offset = cfg->stack_offset;
341                         cfg->stack_offset += size;
342                 } else {
343                         cfg->stack_offset += size - 1;
344                         cfg->stack_offset &= ~(size - 1);
345                         cfg->stack_offset += size;
346                         info->offset = - cfg->stack_offset;
347                 }
348         }
349
350         return info->offset;
351 }
352
353 #define is_hard_ireg(r) ((r) >= 0 && (r) < MONO_MAX_IREGS)
354 #define is_hard_freg(r) ((r) >= 0 && (r) < MONO_MAX_FREGS)
355 #define is_global_ireg(r) (is_hard_ireg ((r)) && (MONO_ARCH_CALLEE_SAVED_REGS & (regmask (r))))
356 #define is_local_ireg(r) (is_hard_ireg ((r)) && (MONO_ARCH_CALLEE_REGS & (regmask (r))))
357 #define is_global_freg(r) (is_hard_freg ((r)) && (MONO_ARCH_CALLEE_SAVED_FREGS & (regmask (r))))
358 #define is_local_freg(r) (is_hard_freg ((r)) && (MONO_ARCH_CALLEE_FREGS & (regmask (r))))
359
360 #define is_hard_reg(r,bank) (G_UNLIKELY (bank) ? ((r) >= 0 && (r) < regbank_size [bank]) : ((r) < MONO_MAX_IREGS))
361 #define is_soft_reg(r,bank) (!is_hard_reg((r),(bank)))
362 #define is_global_reg(r,bank) (G_UNLIKELY (bank) ? (is_hard_reg ((r), (bank)) && (regbank_callee_saved_regs [bank] & regmask (r))) : is_global_ireg (r))
363 #define is_local_reg(r,bank) (G_UNLIKELY (bank) ? (is_hard_reg ((r), (bank)) && (regbank_callee_regs [bank] & regmask (r))) : is_local_ireg (r))
364 #define reg_is_freeable(r,bank) (G_UNLIKELY (bank) ? is_local_reg ((r), (bank)) : is_local_ireg ((r)))
365
366 #ifndef MONO_ARCH_INST_IS_FLOAT
367 #define MONO_ARCH_INST_IS_FLOAT(desc) ((desc) == 'f')
368 #endif
369
370 #define reg_is_fp(desc) (MONO_ARCH_INST_IS_FLOAT (desc))
371 #define dreg_is_fp(spec)  (MONO_ARCH_INST_IS_FLOAT (spec [MONO_INST_DEST]))
372 #define sreg_is_fp(n,spec) (MONO_ARCH_INST_IS_FLOAT (spec [MONO_INST_SRC1+(n)]))
373 #define sreg1_is_fp(spec) sreg_is_fp (0,(spec))
374 #define sreg2_is_fp(spec) sreg_is_fp (1,(spec))
375
376 #define reg_is_simd(desc) ((desc) == 'x') 
377
378 #ifdef MONO_ARCH_NEED_SIMD_BANK
379
380 #define reg_bank(desc) (G_UNLIKELY (reg_is_fp (desc)) ? MONO_REG_DOUBLE : G_UNLIKELY (reg_is_simd(desc)) ? MONO_REG_SIMD : MONO_REG_INT)
381
382 #else
383
384 #define reg_bank(desc) reg_is_fp ((desc))
385
386 #endif
387
388 #define sreg_bank(n,spec) reg_bank ((spec)[MONO_INST_SRC1+(n)])
389 #define sreg1_bank(spec) sreg_bank (0, (spec))
390 #define sreg2_bank(spec) sreg_bank (1, (spec))
391 #define dreg_bank(spec) reg_bank ((spec)[MONO_INST_DEST])
392
393 #define sreg_bank_ins(n,ins) sreg_bank ((n), ins_get_spec ((ins)->opcode))
394 #define sreg1_bank_ins(ins) sreg_bank_ins (0, (ins))
395 #define sreg2_bank_ins(ins) sreg_bank_ins (1, (ins))
396 #define dreg_bank_ins(ins) dreg_bank (ins_get_spec ((ins)->opcode))
397
398 #define regpair_reg2_mask(desc,hreg1) ((MONO_ARCH_INST_REGPAIR_REG2 (desc,hreg1) != -1) ? (regmask (MONO_ARCH_INST_REGPAIR_REG2 (desc,hreg1))) : MONO_ARCH_CALLEE_REGS)
399
400 #ifdef MONO_ARCH_IS_GLOBAL_IREG
401 #undef is_global_ireg
402 #define is_global_ireg(reg) MONO_ARCH_IS_GLOBAL_IREG ((reg))
403 #endif
404
405 typedef struct {
406         int born_in;
407         int killed_in;
408         /* Not (yet) used */
409         //int last_use;
410         //int prev_use;
411         regmask_t preferred_mask; /* the hreg where the register should be allocated, or 0 */
412 } RegTrack;
413
414 #if !defined(DISABLE_LOGGING) && !defined(DISABLE_JIT)
415
416 static const char* const patch_info_str[] = {
417 #define PATCH_INFO(a,b) "" #a,
418 #include "patch-info.h"
419 #undef PATCH_INFO
420 };
421
422 const char*
423 mono_ji_type_to_string (MonoJumpInfoType type)
424 {
425         return patch_info_str [type];
426 }
427
428 void
429 mono_print_ji (const MonoJumpInfo *ji)
430 {
431         switch (ji->type) {
432         case MONO_PATCH_INFO_RGCTX_FETCH: {
433                 MonoJumpInfoRgctxEntry *entry = ji->data.rgctx_entry;
434
435                 printf ("[RGCTX_FETCH ");
436                 mono_print_ji (entry->data);
437                 printf (" - %s]", mono_rgctx_info_type_to_str (entry->info_type));
438                 break;
439         }
440         case MONO_PATCH_INFO_METHODCONST: {
441                 char *s = mono_method_full_name (ji->data.method, TRUE);
442                 printf ("[METHODCONST - %s]", s);
443                 g_free (s);
444                 break;
445         }
446         case MONO_PATCH_INFO_INTERNAL_METHOD: {
447                 printf ("[INTERNAL_METHOD - %s]", ji->data.name);
448                 break;
449         }
450         default:
451                 printf ("[%s]", patch_info_str [ji->type]);
452                 break;
453         }
454 }
455
456 void
457 mono_print_ins_index (int i, MonoInst *ins)
458 {
459         GString *buf = mono_print_ins_index_strbuf (i, ins);
460         printf ("%s\n", buf->str);
461         g_string_free (buf, TRUE);
462 }
463
464 GString *
465 mono_print_ins_index_strbuf (int i, MonoInst *ins)
466 {
467         const char *spec = ins_get_spec (ins->opcode);
468         GString *sbuf = g_string_new (NULL);
469         int num_sregs, j;
470         int sregs [MONO_MAX_SRC_REGS];
471
472         if (i != -1)
473                 g_string_append_printf (sbuf, "\t%-2d %s", i, mono_inst_name (ins->opcode));
474         else
475                 g_string_append_printf (sbuf, " %s", mono_inst_name (ins->opcode));
476         if (spec == MONO_ARCH_CPU_SPEC) {
477                 gboolean dest_base = FALSE;
478                 switch (ins->opcode) {
479                 case OP_STOREV_MEMBASE:
480                         dest_base = TRUE;
481                         break;
482                 default:
483                         break;
484                 }
485
486                 /* This is a lowered opcode */
487                 if (ins->dreg != -1) {
488                         if (dest_base)
489                                 g_string_append_printf (sbuf, " [R%d + 0x%lx] <-", ins->dreg, (long)ins->inst_offset);
490                         else
491                                 g_string_append_printf (sbuf, " R%d <-", ins->dreg);
492                 }
493                 if (ins->sreg1 != -1)
494                         g_string_append_printf (sbuf, " R%d", ins->sreg1);
495                 if (ins->sreg2 != -1)
496                         g_string_append_printf (sbuf, " R%d", ins->sreg2);
497                 if (ins->sreg3 != -1)
498                         g_string_append_printf (sbuf, " R%d", ins->sreg3);
499
500                 switch (ins->opcode) {
501                 case OP_LBNE_UN:
502                 case OP_LBEQ:
503                 case OP_LBLT:
504                 case OP_LBLT_UN:
505                 case OP_LBGT:
506                 case OP_LBGT_UN:
507                 case OP_LBGE:
508                 case OP_LBGE_UN:
509                 case OP_LBLE:
510                 case OP_LBLE_UN:
511                         if (!ins->inst_false_bb)
512                                 g_string_append_printf (sbuf, " [B%d]", ins->inst_true_bb->block_num);
513                         else
514                                 g_string_append_printf (sbuf, " [B%dB%d]", ins->inst_true_bb->block_num, ins->inst_false_bb->block_num);
515                         break;
516                 case OP_PHI:
517                 case OP_VPHI:
518                 case OP_XPHI:
519                 case OP_FPHI: {
520                         int i;
521                         g_string_append_printf (sbuf, " [%d (", (int)ins->inst_c0);
522                         for (i = 0; i < ins->inst_phi_args [0]; i++) {
523                                 if (i)
524                                         g_string_append_printf (sbuf, ", ");
525                                 g_string_append_printf (sbuf, "R%d", ins->inst_phi_args [i + 1]);
526                         }
527                         g_string_append_printf (sbuf, ")]");
528                         break;
529                 }
530                 case OP_LDADDR:
531                 case OP_OUTARG_VTRETADDR:
532                         g_string_append_printf (sbuf, " R%d", ((MonoInst*)ins->inst_p0)->dreg);
533                         break;
534                 case OP_REGOFFSET:
535                 case OP_GSHAREDVT_ARG_REGOFFSET:
536                         g_string_append_printf (sbuf, " + 0x%lx", (long)ins->inst_offset);
537                         break;
538                 default:
539                         break;
540                 }
541
542                 //g_error ("Unknown opcode: %s\n", mono_inst_name (ins->opcode));
543                 return sbuf;
544         }
545
546         if (spec [MONO_INST_DEST]) {
547                 int bank = dreg_bank (spec);
548                 if (is_soft_reg (ins->dreg, bank)) {
549                         if (spec [MONO_INST_DEST] == 'b') {
550                                 if (ins->inst_offset == 0)
551                                         g_string_append_printf (sbuf, " [R%d] <-", ins->dreg);
552                                 else
553                                         g_string_append_printf (sbuf, " [R%d + 0x%lx] <-", ins->dreg, (long)ins->inst_offset);
554                         }
555                         else
556                                 g_string_append_printf (sbuf, " R%d <-", ins->dreg);
557                 } else if (spec [MONO_INST_DEST] == 'b') {
558                         if (ins->inst_offset == 0)
559                                 g_string_append_printf (sbuf, " [%s] <-", mono_arch_regname (ins->dreg));
560                         else
561                                 g_string_append_printf (sbuf, " [%s + 0x%lx] <-", mono_arch_regname (ins->dreg), (long)ins->inst_offset);
562                 } else
563                         g_string_append_printf (sbuf, " %s <-", mono_regname_full (ins->dreg, bank));
564         }
565         if (spec [MONO_INST_SRC1]) {
566                 int bank = sreg1_bank (spec);
567                 if (is_soft_reg (ins->sreg1, bank)) {
568                         if (spec [MONO_INST_SRC1] == 'b')
569                                 g_string_append_printf (sbuf, " [R%d + 0x%lx]", ins->sreg1, (long)ins->inst_offset);
570                         else
571                                 g_string_append_printf (sbuf, " R%d", ins->sreg1);
572                 } else if (spec [MONO_INST_SRC1] == 'b')
573                         g_string_append_printf (sbuf, " [%s + 0x%lx]", mono_arch_regname (ins->sreg1), (long)ins->inst_offset);
574                 else
575                         g_string_append_printf (sbuf, " %s", mono_regname_full (ins->sreg1, bank));
576         }
577         num_sregs = mono_inst_get_src_registers (ins, sregs);
578         for (j = 1; j < num_sregs; ++j) {
579                 int bank = sreg_bank (j, spec);
580                 if (is_soft_reg (sregs [j], bank))
581                         g_string_append_printf (sbuf, " R%d", sregs [j]);
582                 else
583                         g_string_append_printf (sbuf, " %s", mono_regname_full (sregs [j], bank));
584         }
585
586         switch (ins->opcode) {
587         case OP_ICONST:
588                 g_string_append_printf (sbuf, " [%d]", (int)ins->inst_c0);
589                 break;
590 #if defined(TARGET_X86) || defined(TARGET_AMD64)
591         case OP_X86_PUSH_IMM:
592 #endif
593         case OP_ICOMPARE_IMM:
594         case OP_COMPARE_IMM:
595         case OP_IADD_IMM:
596         case OP_ISUB_IMM:
597         case OP_IAND_IMM:
598         case OP_IOR_IMM:
599         case OP_IXOR_IMM:
600         case OP_SUB_IMM:
601         case OP_STORE_MEMBASE_IMM:
602                 g_string_append_printf (sbuf, " [%d]", (int)ins->inst_imm);
603                 break;
604         case OP_ADD_IMM:
605         case OP_LADD_IMM:
606                 g_string_append_printf (sbuf, " [%d]", (int)(gssize)ins->inst_p1);
607                 break;
608         case OP_I8CONST:
609                 g_string_append_printf (sbuf, " [%lld]", (long long)ins->inst_l);
610                 break;
611         case OP_R8CONST:
612                 g_string_append_printf (sbuf, " [%f]", *(double*)ins->inst_p0);
613                 break;
614         case OP_R4CONST:
615                 g_string_append_printf (sbuf, " [%f]", *(float*)ins->inst_p0);
616                 break;
617         case OP_CALL:
618         case OP_CALL_MEMBASE:
619         case OP_CALL_REG:
620         case OP_FCALL:
621         case OP_LCALL:
622         case OP_VCALL:
623         case OP_VCALL_REG:
624         case OP_VCALL_MEMBASE:
625         case OP_VCALL2:
626         case OP_VCALL2_REG:
627         case OP_VCALL2_MEMBASE:
628         case OP_VOIDCALL:
629         case OP_VOIDCALL_MEMBASE:
630         case OP_TAILCALL: {
631                 MonoCallInst *call = (MonoCallInst*)ins;
632                 GSList *list;
633
634                 if (ins->opcode == OP_VCALL || ins->opcode == OP_VCALL_REG || ins->opcode == OP_VCALL_MEMBASE) {
635                         /*
636                          * These are lowered opcodes, but they are in the .md files since the old 
637                          * JIT passes them to backends.
638                          */
639                         if (ins->dreg != -1)
640                                 g_string_append_printf (sbuf, " R%d <-", ins->dreg);
641                 }
642
643                 if (call->method) {
644                         char *full_name = mono_method_full_name (call->method, TRUE);
645                         g_string_append_printf (sbuf, " [%s]", full_name);
646                         g_free (full_name);
647                 } else if (call->fptr_is_patch) {
648                         MonoJumpInfo *ji = (MonoJumpInfo*)call->fptr;
649
650                         g_string_append_printf (sbuf, " ");
651                         mono_print_ji (ji);
652                 } else if (call->fptr) {
653                         MonoJitICallInfo *info = mono_find_jit_icall_by_addr (call->fptr);
654                         if (info)
655                                 g_string_append_printf (sbuf, " [%s]", info->name);
656                 }
657
658                 list = call->out_ireg_args;
659                 while (list) {
660                         guint32 regpair;
661                         int reg, hreg;
662
663                         regpair = (guint32)(gssize)(list->data);
664                         hreg = regpair >> 24;
665                         reg = regpair & 0xffffff;
666
667                         g_string_append_printf (sbuf, " [%s <- R%d]", mono_arch_regname (hreg), reg);
668
669                         list = g_slist_next (list);
670                 }
671                 list = call->out_freg_args;
672                 while (list) {
673                         guint32 regpair;
674                         int reg, hreg;
675
676                         regpair = (guint32)(gssize)(list->data);
677                         hreg = regpair >> 24;
678                         reg = regpair & 0xffffff;
679
680                         g_string_append_printf (sbuf, " [%s <- R%d]", mono_arch_fregname (hreg), reg);
681
682                         list = g_slist_next (list);
683                 }
684                 break;
685         }
686         case OP_BR:
687         case OP_CALL_HANDLER:
688                 g_string_append_printf (sbuf, " [B%d]", ins->inst_target_bb->block_num);
689                 break;
690         case OP_IBNE_UN:
691         case OP_IBEQ:
692         case OP_IBLT:
693         case OP_IBLT_UN:
694         case OP_IBGT:
695         case OP_IBGT_UN:
696         case OP_IBGE:
697         case OP_IBGE_UN:
698         case OP_IBLE:
699         case OP_IBLE_UN:
700         case OP_LBNE_UN:
701         case OP_LBEQ:
702         case OP_LBLT:
703         case OP_LBLT_UN:
704         case OP_LBGT:
705         case OP_LBGT_UN:
706         case OP_LBGE:
707         case OP_LBGE_UN:
708         case OP_LBLE:
709         case OP_LBLE_UN:
710                 if (!ins->inst_false_bb)
711                         g_string_append_printf (sbuf, " [B%d]", ins->inst_true_bb->block_num);
712                 else
713                         g_string_append_printf (sbuf, " [B%dB%d]", ins->inst_true_bb->block_num, ins->inst_false_bb->block_num);
714                 break;
715         case OP_LIVERANGE_START:
716         case OP_LIVERANGE_END:
717         case OP_GC_LIVENESS_DEF:
718         case OP_GC_LIVENESS_USE:
719                 g_string_append_printf (sbuf, " R%d", (int)ins->inst_c1);
720                 break;
721         case OP_IL_SEQ_POINT:
722         case OP_SEQ_POINT:
723                 g_string_append_printf (sbuf, " il: 0x%x%s", (int)ins->inst_imm, ins->flags & MONO_INST_NONEMPTY_STACK ? ", nonempty-stack" : "");
724                 break;
725         case OP_COND_EXC_EQ:
726         case OP_COND_EXC_GE:
727         case OP_COND_EXC_GT:
728         case OP_COND_EXC_LE:
729         case OP_COND_EXC_LT:
730         case OP_COND_EXC_NE_UN:
731         case OP_COND_EXC_GE_UN:
732         case OP_COND_EXC_GT_UN:
733         case OP_COND_EXC_LE_UN:
734         case OP_COND_EXC_LT_UN:
735         case OP_COND_EXC_OV:
736         case OP_COND_EXC_NO:
737         case OP_COND_EXC_C:
738         case OP_COND_EXC_NC:
739         case OP_COND_EXC_IEQ:
740         case OP_COND_EXC_IGE:
741         case OP_COND_EXC_IGT:
742         case OP_COND_EXC_ILE:
743         case OP_COND_EXC_ILT:
744         case OP_COND_EXC_INE_UN:
745         case OP_COND_EXC_IGE_UN:
746         case OP_COND_EXC_IGT_UN:
747         case OP_COND_EXC_ILE_UN:
748         case OP_COND_EXC_ILT_UN:
749         case OP_COND_EXC_IOV:
750         case OP_COND_EXC_INO:
751         case OP_COND_EXC_IC:
752         case OP_COND_EXC_INC:
753                 g_string_append_printf (sbuf, " %s", ins->inst_p1);
754                 break;
755         default:
756                 break;
757         }
758
759         if (spec [MONO_INST_CLOB])
760                 g_string_append_printf (sbuf, " clobbers: %c", spec [MONO_INST_CLOB]);
761         return sbuf;
762 }
763
764 static void
765 print_regtrack (RegTrack *t, int num)
766 {
767         int i;
768         char buf [32];
769         const char *r;
770         
771         for (i = 0; i < num; ++i) {
772                 if (!t [i].born_in)
773                         continue;
774                 if (i >= MONO_MAX_IREGS) {
775                         g_snprintf (buf, sizeof(buf), "R%d", i);
776                         r = buf;
777                 } else
778                         r = mono_arch_regname (i);
779                 printf ("liveness: %s [%d - %d]\n", r, t [i].born_in, t[i].killed_in);
780         }
781 }
782 #else
783
784 const char*
785 mono_ji_type_to_string (MonoJumpInfoType type)
786 {
787         return "";
788 }
789
790 void
791 mono_print_ji (const MonoJumpInfo *ji)
792 {
793 }
794
795 void
796 mono_print_ins_index (int i, MonoInst *ins)
797 {
798 }
799 #endif /* !defined(DISABLE_LOGGING) && !defined(DISABLE_JIT) */
800
801 void
802 mono_print_ins (MonoInst *ins)
803 {
804         mono_print_ins_index (-1, ins);
805 }
806
807 static inline void
808 insert_before_ins (MonoBasicBlock *bb, MonoInst *ins, MonoInst* to_insert)
809 {
810         /*
811          * If this function is called multiple times, the new instructions are inserted
812          * in the proper order.
813          */
814         mono_bblock_insert_before_ins (bb, ins, to_insert);
815 }
816
817 static inline void
818 insert_after_ins (MonoBasicBlock *bb, MonoInst *ins, MonoInst **last, MonoInst* to_insert)
819 {
820         /*
821          * If this function is called multiple times, the new instructions are inserted in
822          * proper order.
823          */
824         mono_bblock_insert_after_ins (bb, *last, to_insert);
825
826         *last = to_insert;
827 }
828
829 static inline int
830 get_vreg_bank (MonoCompile *cfg, int reg, int bank)
831 {
832         if (vreg_is_ref (cfg, reg))
833                 return MONO_REG_INT_REF;
834         else if (vreg_is_mp (cfg, reg))
835                 return MONO_REG_INT_MP;
836         else
837                 return bank;
838 }
839
840 /*
841  * Force the spilling of the variable in the symbolic register 'reg', and free 
842  * the hreg it was assigned to.
843  */
844 static void
845 spill_vreg (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, int reg, int bank)
846 {
847         MonoInst *load;
848         int i, sel, spill;
849         MonoRegState *rs = cfg->rs;
850
851         sel = rs->vassign [reg];
852
853         /* the vreg we need to spill lives in another logical reg bank */
854         bank = translate_bank (cfg->rs, bank, sel);
855
856         /*i = rs->isymbolic [sel];
857         g_assert (i == reg);*/
858         i = reg;
859         spill = ++cfg->spill_count;
860         rs->vassign [i] = -spill - 1;
861         if (G_UNLIKELY (bank))
862                 mono_regstate_free_general (rs, sel, bank);
863         else
864                 mono_regstate_free_int (rs, sel);
865         /* we need to create a spill var and insert a load to sel after the current instruction */
866         MONO_INST_NEW (cfg, load, regbank_load_ops [bank]);
867         load->dreg = sel;
868         load->inst_basereg = cfg->frame_reg;
869         load->inst_offset = mono_spillvar_offset (cfg, spill, get_vreg_bank (cfg, reg, bank));
870         insert_after_ins (bb, ins, last, load);
871         DEBUG (printf ("SPILLED LOAD (%d at 0x%08lx(%%ebp)) R%d (freed %s)\n", spill, (long)load->inst_offset, i, mono_regname_full (sel, bank)));
872         if (G_UNLIKELY (bank))
873                 i = mono_regstate_alloc_general (rs, regmask (sel), bank);
874         else
875                 i = mono_regstate_alloc_int (rs, regmask (sel));
876         g_assert (i == sel);
877
878         if (G_UNLIKELY (bank))
879                 mono_regstate_free_general (rs, sel, bank);
880         else
881                 mono_regstate_free_int (rs, sel);
882 }
883
884 /* This isn't defined on older glib versions and on some platforms */
885 #ifndef G_GUINT64_FORMAT
886 #define G_GUINT64_FORMAT "ul"
887 #endif
888
889 static int
890 get_register_spilling (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, regmask_t regmask, int reg, int bank)
891 {
892         MonoInst *load;
893         int i, sel, spill, num_sregs;
894         int sregs [MONO_MAX_SRC_REGS];
895         MonoRegState *rs = cfg->rs;
896
897         g_assert (bank < MONO_NUM_REGBANKS);
898
899         DEBUG (printf ("\tstart regmask to assign R%d: 0x%08llu (R%d <- R%d R%d R%d)\n", reg, (unsigned long long)regmask, ins->dreg, ins->sreg1, ins->sreg2, ins->sreg3));
900         /* exclude the registers in the current instruction */
901         num_sregs = mono_inst_get_src_registers (ins, sregs);
902         for (i = 0; i < num_sregs; ++i) {
903                 if ((sreg_bank_ins (i, ins) == bank) && (reg != sregs [i]) && (reg_is_freeable (sregs [i], bank) || (is_soft_reg (sregs [i], bank) && rs->vassign [sregs [i]] >= 0))) {
904                         if (is_soft_reg (sregs [i], bank))
905                                 regmask &= ~ (regmask (rs->vassign [sregs [i]]));
906                         else
907                                 regmask &= ~ (regmask (sregs [i]));
908                         DEBUG (printf ("\t\texcluding sreg%d %s %d\n", i + 1, mono_regname_full (sregs [i], bank), sregs [i]));
909                 }
910         }
911         if ((dreg_bank_ins (ins) == bank) && (reg != ins->dreg) && reg_is_freeable (ins->dreg, bank)) {
912                 regmask &= ~ (regmask (ins->dreg));
913                 DEBUG (printf ("\t\texcluding dreg %s\n", mono_regname_full (ins->dreg, bank)));
914         }
915
916         DEBUG (printf ("\t\tavailable regmask: 0x%08llu\n", (unsigned long long)regmask));
917         g_assert (regmask); /* need at least a register we can free */
918         sel = 0;
919         /* we should track prev_use and spill the register that's farther */
920         if (G_UNLIKELY (bank)) {
921                 for (i = 0; i < regbank_size [bank]; ++i) {
922                         if (regmask & (regmask (i))) {
923                                 sel = i;
924
925                                 /* the vreg we need to load lives in another logical bank */
926                                 bank = translate_bank (cfg->rs, bank, sel);
927
928                                 DEBUG (printf ("\t\tselected register %s has assignment %d\n", mono_regname_full (sel, bank), rs->symbolic [bank] [sel]));
929                                 break;
930                         }
931                 }
932
933                 i = rs->symbolic [bank] [sel];
934                 spill = ++cfg->spill_count;
935                 rs->vassign [i] = -spill - 1;
936                 mono_regstate_free_general (rs, sel, bank);
937         }
938         else {
939                 for (i = 0; i < MONO_MAX_IREGS; ++i) {
940                         if (regmask & (regmask (i))) {
941                                 sel = i;
942                                 DEBUG (printf ("\t\tselected register %s has assignment %d\n", mono_arch_regname (sel), rs->isymbolic [sel]));
943                                 break;
944                         }
945                 }
946
947                 i = rs->isymbolic [sel];
948                 spill = ++cfg->spill_count;
949                 rs->vassign [i] = -spill - 1;
950                 mono_regstate_free_int (rs, sel);
951         }
952
953         /* we need to create a spill var and insert a load to sel after the current instruction */
954         MONO_INST_NEW (cfg, load, regbank_load_ops [bank]);
955         load->dreg = sel;
956         load->inst_basereg = cfg->frame_reg;
957         load->inst_offset = mono_spillvar_offset (cfg, spill, get_vreg_bank (cfg, i, bank));
958         insert_after_ins (bb, ins, last, load);
959         DEBUG (printf ("\tSPILLED LOAD (%d at 0x%08lx(%%ebp)) R%d (freed %s)\n", spill, (long)load->inst_offset, i, mono_regname_full (sel, bank)));
960         if (G_UNLIKELY (bank))
961                 i = mono_regstate_alloc_general (rs, regmask (sel), bank);
962         else
963                 i = mono_regstate_alloc_int (rs, regmask (sel));
964         g_assert (i == sel);
965         
966         return sel;
967 }
968
969 /*
970  * free_up_hreg:
971  *
972  *   Free up the hreg HREG by spilling the vreg allocated to it.
973  */
974 static void
975 free_up_hreg (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, int hreg, int bank)
976 {
977         if (G_UNLIKELY (bank)) {
978                 if (!(cfg->rs->free_mask [bank] & (regmask (hreg)))) {
979                         bank = translate_bank (cfg->rs, bank, hreg);
980                         DEBUG (printf ("\tforced spill of R%d\n", cfg->rs->symbolic [bank] [hreg]));
981                         spill_vreg (cfg, bb, last, ins, cfg->rs->symbolic [bank] [hreg], bank);
982                 }
983         }
984         else {
985                 if (!(cfg->rs->ifree_mask & (regmask (hreg)))) {
986                         DEBUG (printf ("\tforced spill of R%d\n", cfg->rs->isymbolic [hreg]));
987                         spill_vreg (cfg, bb, last, ins, cfg->rs->isymbolic [hreg], bank);
988                 }
989         }
990 }
991
992 static MonoInst*
993 create_copy_ins (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, int dest, int src, MonoInst *ins, const unsigned char *ip, int bank)
994 {
995         MonoInst *copy;
996
997         MONO_INST_NEW (cfg, copy, regbank_move_ops [bank]);
998
999         copy->dreg = dest;
1000         copy->sreg1 = src;
1001         copy->cil_code = ip;
1002         if (ins) {
1003                 mono_bblock_insert_after_ins (bb, ins, copy);
1004                 *last = copy;
1005         }
1006         DEBUG (printf ("\tforced copy from %s to %s\n", mono_regname_full (src, bank), mono_regname_full (dest, bank)));
1007         return copy;
1008 }
1009
1010 static inline const char*
1011 regbank_to_string (int bank)
1012 {
1013         if (bank == MONO_REG_INT_REF)
1014                 return "REF ";
1015         else if (bank == MONO_REG_INT_MP)
1016                 return "MP ";
1017         else
1018                 return "";
1019 }
1020
1021 static void
1022 create_spilled_store (MonoCompile *cfg, MonoBasicBlock *bb, int spill, int reg, int prev_reg, MonoInst **last, MonoInst *ins, MonoInst *insert_before, int bank)
1023 {
1024         MonoInst *store, *def;
1025         
1026         bank = get_vreg_bank (cfg, prev_reg, bank);
1027
1028         MONO_INST_NEW (cfg, store, regbank_store_ops [bank]);
1029         store->sreg1 = reg;
1030         store->inst_destbasereg = cfg->frame_reg;
1031         store->inst_offset = mono_spillvar_offset (cfg, spill, bank);
1032         if (ins) {
1033                 mono_bblock_insert_after_ins (bb, ins, store);
1034                 *last = store;
1035         } else if (insert_before) {
1036                 insert_before_ins (bb, insert_before, store);
1037         } else {
1038                 g_assert_not_reached ();
1039         }
1040         DEBUG (printf ("\t%sSPILLED STORE (%d at 0x%08lx(%%ebp)) R%d (from %s)\n", regbank_to_string (bank), spill, (long)store->inst_offset, prev_reg, mono_regname_full (reg, bank)));
1041
1042         if (((bank == MONO_REG_INT_REF) || (bank == MONO_REG_INT_MP)) && cfg->compute_gc_maps) {
1043                 g_assert (prev_reg != -1);
1044                 MONO_INST_NEW (cfg, def, OP_GC_SPILL_SLOT_LIVENESS_DEF);
1045                 def->inst_c0 = spill;
1046                 def->inst_c1 = bank;
1047                 mono_bblock_insert_after_ins (bb, store, def);
1048         }
1049 }
1050
1051 /* flags used in reginfo->flags */
1052 enum {
1053         MONO_FP_NEEDS_LOAD_SPILL        = regmask (0),
1054         MONO_FP_NEEDS_SPILL                     = regmask (1),
1055         MONO_FP_NEEDS_LOAD                      = regmask (2)
1056 };
1057
1058 static inline int
1059 alloc_int_reg (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, regmask_t dest_mask, int sym_reg, RegTrack *info)
1060 {
1061         int val;
1062
1063         if (info && info->preferred_mask) {
1064                 val = mono_regstate_alloc_int (cfg->rs, info->preferred_mask & dest_mask);
1065                 if (val >= 0) {
1066                         DEBUG (printf ("\tallocated preferred reg R%d to %s\n", sym_reg, mono_arch_regname (val)));
1067                         return val;
1068                 }
1069         }
1070
1071         val = mono_regstate_alloc_int (cfg->rs, dest_mask);
1072         if (val < 0)
1073                 val = get_register_spilling (cfg, bb, last, ins, dest_mask, sym_reg, 0);
1074
1075         return val;
1076 }
1077
1078 static inline int
1079 alloc_general_reg (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, regmask_t dest_mask, int sym_reg, int bank)
1080 {
1081         int val;
1082
1083         val = mono_regstate_alloc_general (cfg->rs, dest_mask, bank);
1084
1085         if (val < 0)
1086                 val = get_register_spilling (cfg, bb, last, ins, dest_mask, sym_reg, bank);
1087
1088         return val;
1089 }
1090
1091 static inline int
1092 alloc_reg (MonoCompile *cfg, MonoBasicBlock *bb, MonoInst **last, MonoInst *ins, regmask_t dest_mask, int sym_reg, RegTrack *info, int bank)
1093 {
1094         if (G_UNLIKELY (bank))
1095                 return alloc_general_reg (cfg, bb, last, ins, dest_mask, sym_reg, bank);
1096         else
1097                 return alloc_int_reg (cfg, bb, last, ins, dest_mask, sym_reg, info);
1098 }
1099
1100 static inline void
1101 assign_reg (MonoCompile *cfg, MonoRegState *rs, int reg, int hreg, int bank)
1102 {
1103         if (G_UNLIKELY (bank)) {
1104                 int mirrored_bank;
1105
1106                 g_assert (reg >= regbank_size [bank]);
1107                 g_assert (hreg < regbank_size [bank]);
1108                 g_assert (! is_global_freg (hreg));
1109
1110                 rs->vassign [reg] = hreg;
1111                 rs->symbolic [bank] [hreg] = reg;
1112                 rs->free_mask [bank] &= ~ (regmask (hreg));
1113
1114                 mirrored_bank = get_mirrored_bank (bank);
1115                 if (mirrored_bank == -1)
1116                         return;
1117
1118                 /* Make sure the other logical reg bank that this bank shares
1119                  * a single hard reg bank knows that this hard reg is not free.
1120                  */
1121                 rs->free_mask [mirrored_bank] = rs->free_mask [bank];
1122
1123                 /* Mark the other logical bank that the this bank shares
1124                  * a single hard reg bank with as mirrored.
1125                  */
1126                 rs->symbolic [mirrored_bank] [hreg] = MONO_ARCH_BANK_MIRRORED;
1127
1128         }
1129         else {
1130                 g_assert (reg >= MONO_MAX_IREGS);
1131                 g_assert (hreg < MONO_MAX_IREGS);
1132 #if !defined(TARGET_ARM) && !defined(TARGET_ARM64)
1133                 /* this seems to trigger a gcc compilation bug sometime (hreg is 0) */
1134                 /* On arm64, rgctx_reg is a global hreg, and it is used to pass an argument */
1135                 g_assert (! is_global_ireg (hreg));
1136 #endif
1137
1138                 rs->vassign [reg] = hreg;
1139                 rs->isymbolic [hreg] = reg;
1140                 rs->ifree_mask &= ~ (regmask (hreg));
1141         }
1142 }
1143
1144 static inline regmask_t
1145 get_callee_mask (const char spec)
1146 {
1147         if (G_UNLIKELY (reg_bank (spec)))
1148                 return regbank_callee_regs [reg_bank (spec)];
1149         return MONO_ARCH_CALLEE_REGS;
1150 }
1151
1152 static gint8 desc_to_fixed_reg [256];
1153 static gboolean desc_to_fixed_reg_inited = FALSE;
1154
1155 #ifndef DISABLE_JIT
1156
1157 /*
1158  * Local register allocation.
1159  * We first scan the list of instructions and we save the liveness info of
1160  * each register (when the register is first used, when it's value is set etc.).
1161  * We also reverse the list of instructions because assigning registers backwards allows 
1162  * for more tricks to be used.
1163  */
1164 void
1165 mono_local_regalloc (MonoCompile *cfg, MonoBasicBlock *bb)
1166 {
1167         MonoInst *ins, *prev, *last;
1168         MonoInst **tmp;
1169         MonoRegState *rs = cfg->rs;
1170         int i, j, val, max;
1171         RegTrack *reginfo;
1172         const char *spec;
1173         unsigned char spec_src1, spec_dest;
1174         int bank = 0;
1175 #if MONO_ARCH_USE_FPSTACK
1176         gboolean has_fp = FALSE;
1177         int fpstack [8];
1178         int sp = 0;
1179 #endif
1180         int num_sregs = 0;
1181         int sregs [MONO_MAX_SRC_REGS];
1182
1183         if (!bb->code)
1184                 return;
1185
1186         if (!desc_to_fixed_reg_inited) {
1187                 for (i = 0; i < 256; ++i)
1188                         desc_to_fixed_reg [i] = MONO_ARCH_INST_FIXED_REG (i);
1189                 desc_to_fixed_reg_inited = TRUE;
1190
1191                 /* Validate the cpu description against the info in mini-ops.h */
1192 #if defined(TARGET_AMD64) || defined(TARGET_X86) || defined(TARGET_ARM) || defined(TARGET_ARM64)
1193                 for (i = OP_LOAD; i < OP_LAST; ++i) {
1194                         const char *ispec;
1195
1196                         spec = ins_get_spec (i);
1197                         ispec = INS_INFO (i);
1198
1199                         if ((spec [MONO_INST_DEST] && (ispec [MONO_INST_DEST] == ' ')))
1200                                 printf ("Instruction metadata for %s inconsistent.\n", mono_inst_name (i));
1201                         if ((spec [MONO_INST_SRC1] && (ispec [MONO_INST_SRC1] == ' ')))
1202                                 printf ("Instruction metadata for %s inconsistent.\n", mono_inst_name (i));
1203                         if ((spec [MONO_INST_SRC2] && (ispec [MONO_INST_SRC2] == ' ')))
1204                                 printf ("Instruction metadata for %s inconsistent.\n", mono_inst_name (i));
1205                 }
1206 #endif
1207         }
1208
1209         rs->next_vreg = bb->max_vreg;
1210         mono_regstate_assign (rs);
1211
1212         rs->ifree_mask = MONO_ARCH_CALLEE_REGS;
1213         for (i = 0; i < MONO_NUM_REGBANKS; ++i)
1214                 rs->free_mask [i] = regbank_callee_regs [i];
1215
1216         max = rs->next_vreg;
1217
1218         if (cfg->reginfo && cfg->reginfo_len < max)
1219                 cfg->reginfo = NULL;
1220
1221         reginfo = (RegTrack *)cfg->reginfo;
1222         if (!reginfo) {
1223                 cfg->reginfo_len = MAX (1024, max * 2);
1224                 reginfo = (RegTrack *)mono_mempool_alloc (cfg->mempool, sizeof (RegTrack) * cfg->reginfo_len);
1225                 cfg->reginfo = reginfo;
1226         } 
1227         else
1228                 g_assert (cfg->reginfo_len >= rs->next_vreg);
1229
1230         if (cfg->verbose_level > 1) {
1231                 /* print_regtrack reads the info of all variables */
1232                 memset (cfg->reginfo, 0, cfg->reginfo_len * sizeof (RegTrack));
1233         }
1234
1235         /* 
1236          * For large methods, next_vreg can be very large, so g_malloc0 time can
1237          * be prohibitive. So we manually init the reginfo entries used by the 
1238          * bblock.
1239          */
1240         for (ins = bb->code; ins; ins = ins->next) {
1241                 gboolean modify = FALSE;
1242
1243                 spec = ins_get_spec (ins->opcode);
1244
1245                 if ((ins->dreg != -1) && (ins->dreg < max)) {
1246                         memset (&reginfo [ins->dreg], 0, sizeof (RegTrack));
1247 #if SIZEOF_REGISTER == 4
1248                         if (MONO_ARCH_INST_IS_REGPAIR (spec [MONO_INST_DEST])) {
1249                                 /**
1250                                  * In the new IR, the two vregs of the regpair do not alias the
1251                                  * original long vreg. shift the vreg here so the rest of the 
1252                                  * allocator doesn't have to care about it.
1253                                  */
1254                                 ins->dreg ++;
1255                                 memset (&reginfo [ins->dreg + 1], 0, sizeof (RegTrack));
1256                         }
1257 #endif
1258                 }
1259
1260                 num_sregs = mono_inst_get_src_registers (ins, sregs);
1261                 for (j = 0; j < num_sregs; ++j) {
1262                         g_assert (sregs [j] != -1);
1263                         if (sregs [j] < max) {
1264                                 memset (&reginfo [sregs [j]], 0, sizeof (RegTrack));
1265 #if SIZEOF_REGISTER == 4
1266                                 if (MONO_ARCH_INST_IS_REGPAIR (spec [MONO_INST_SRC1 + j])) {
1267                                         sregs [j]++;
1268                                         modify = TRUE;
1269                                         memset (&reginfo [sregs [j] + 1], 0, sizeof (RegTrack));
1270                                 }
1271 #endif
1272                         }
1273                 }
1274                 if (modify)
1275                         mono_inst_set_src_registers (ins, sregs);
1276         }
1277
1278         /*if (cfg->opt & MONO_OPT_COPYPROP)
1279                 local_copy_prop (cfg, ins);*/
1280
1281         i = 1;
1282         DEBUG (printf ("\nLOCAL REGALLOC BLOCK %d:\n", bb->block_num));
1283         /* forward pass on the instructions to collect register liveness info */
1284         MONO_BB_FOR_EACH_INS (bb, ins) {
1285                 spec = ins_get_spec (ins->opcode);
1286                 spec_dest = spec [MONO_INST_DEST];
1287
1288                 if (G_UNLIKELY (spec == MONO_ARCH_CPU_SPEC)) {
1289                         g_error ("Opcode '%s' missing from machine description file.", mono_inst_name (ins->opcode));
1290                 }
1291                 
1292                 DEBUG (mono_print_ins_index (i, ins));
1293
1294                 num_sregs = mono_inst_get_src_registers (ins, sregs);
1295
1296 #if MONO_ARCH_USE_FPSTACK
1297                 if (dreg_is_fp (spec)) {
1298                         has_fp = TRUE;
1299                 } else {
1300                         for (j = 0; j < num_sregs; ++j) {
1301                                 if (sreg_is_fp (j, spec))
1302                                         has_fp = TRUE;
1303                         }
1304                 }
1305 #endif
1306
1307                 for (j = 0; j < num_sregs; ++j) {
1308                         int sreg = sregs [j];
1309                         int sreg_spec = spec [MONO_INST_SRC1 + j];
1310                         if (sreg_spec) {
1311                                 bank = sreg_bank (j, spec);
1312                                 g_assert (sreg != -1);
1313                                 if (is_soft_reg (sreg, bank))
1314                                         /* This means the vreg is not local to this bb */
1315                                         g_assert (reginfo [sreg].born_in > 0);
1316                                 rs->vassign [sreg] = -1;
1317                                 //reginfo [ins->sreg2].prev_use = reginfo [ins->sreg2].last_use;
1318                                 //reginfo [ins->sreg2].last_use = i;
1319                                 if (MONO_ARCH_INST_IS_REGPAIR (sreg_spec)) {
1320                                         /* The virtual register is allocated sequentially */
1321                                         rs->vassign [sreg + 1] = -1;
1322                                         //reginfo [ins->sreg2 + 1].prev_use = reginfo [ins->sreg2 + 1].last_use;
1323                                         //reginfo [ins->sreg2 + 1].last_use = i;
1324                                         if (reginfo [sreg + 1].born_in == 0 || reginfo [sreg + 1].born_in > i)
1325                                                 reginfo [sreg + 1].born_in = i;
1326                                 }
1327                         } else {
1328                                 sregs [j] = -1;
1329                         }
1330                 }
1331                 mono_inst_set_src_registers (ins, sregs);
1332
1333                 if (spec_dest) {
1334                         int dest_dreg;
1335
1336                         bank = dreg_bank (spec);
1337                         if (spec_dest != 'b') /* it's not just a base register */
1338                                 reginfo [ins->dreg].killed_in = i;
1339                         g_assert (ins->dreg != -1);
1340                         rs->vassign [ins->dreg] = -1;
1341                         //reginfo [ins->dreg].prev_use = reginfo [ins->dreg].last_use;
1342                         //reginfo [ins->dreg].last_use = i;
1343                         if (reginfo [ins->dreg].born_in == 0 || reginfo [ins->dreg].born_in > i)
1344                                 reginfo [ins->dreg].born_in = i;
1345
1346                         dest_dreg = desc_to_fixed_reg [spec_dest];
1347                         if (dest_dreg != -1)
1348                                 reginfo [ins->dreg].preferred_mask = (regmask (dest_dreg));
1349
1350 #ifdef MONO_ARCH_INST_FIXED_MASK
1351                         reginfo [ins->dreg].preferred_mask |= MONO_ARCH_INST_FIXED_MASK (spec_dest);
1352 #endif
1353
1354                         if (MONO_ARCH_INST_IS_REGPAIR (spec_dest)) {
1355                                 /* The virtual register is allocated sequentially */
1356                                 rs->vassign [ins->dreg + 1] = -1;
1357                                 //reginfo [ins->dreg + 1].prev_use = reginfo [ins->dreg + 1].last_use;
1358                                 //reginfo [ins->dreg + 1].last_use = i;
1359                                 if (reginfo [ins->dreg + 1].born_in == 0 || reginfo [ins->dreg + 1].born_in > i)
1360                                         reginfo [ins->dreg + 1].born_in = i;
1361                                 if (MONO_ARCH_INST_REGPAIR_REG2 (spec_dest, -1) != -1)
1362                                         reginfo [ins->dreg + 1].preferred_mask = regpair_reg2_mask (spec_dest, -1);
1363                         }
1364                 } else {
1365                         ins->dreg = -1;
1366                 }
1367
1368                 ++i;
1369         }
1370
1371         tmp = &last;
1372
1373         DEBUG (print_regtrack (reginfo, rs->next_vreg));
1374         MONO_BB_FOR_EACH_INS_REVERSE_SAFE (bb, prev, ins) {
1375                 int prev_dreg;
1376                 int dest_dreg, clob_reg;
1377                 int dest_sregs [MONO_MAX_SRC_REGS], prev_sregs [MONO_MAX_SRC_REGS];
1378                 int dreg_high, sreg1_high;
1379                 regmask_t dreg_mask, mask;
1380                 regmask_t sreg_masks [MONO_MAX_SRC_REGS], sreg_fixed_masks [MONO_MAX_SRC_REGS];
1381                 regmask_t dreg_fixed_mask;
1382                 const unsigned char *ip;
1383                 --i;
1384                 spec = ins_get_spec (ins->opcode);
1385                 spec_src1 = spec [MONO_INST_SRC1];
1386                 spec_dest = spec [MONO_INST_DEST];
1387                 prev_dreg = -1;
1388                 clob_reg = -1;
1389                 dest_dreg = -1;
1390                 dreg_high = -1;
1391                 sreg1_high = -1;
1392                 dreg_mask = get_callee_mask (spec_dest);
1393                 for (j = 0; j < MONO_MAX_SRC_REGS; ++j) {
1394                         prev_sregs [j] = -1;
1395                         sreg_masks [j] = get_callee_mask (spec [MONO_INST_SRC1 + j]);
1396                         dest_sregs [j] = desc_to_fixed_reg [(int)spec [MONO_INST_SRC1 + j]];
1397 #ifdef MONO_ARCH_INST_FIXED_MASK
1398                         sreg_fixed_masks [j] = MONO_ARCH_INST_FIXED_MASK (spec [MONO_INST_SRC1 + j]);
1399 #else
1400                         sreg_fixed_masks [j] = 0;
1401 #endif
1402                 }
1403
1404                 DEBUG (printf ("processing:"));
1405                 DEBUG (mono_print_ins_index (i, ins));
1406
1407                 ip = ins->cil_code;
1408
1409                 last = ins;
1410
1411                 /*
1412                  * FIXED REGS
1413                  */
1414                 dest_dreg = desc_to_fixed_reg [spec_dest];
1415                 clob_reg = desc_to_fixed_reg [(int)spec [MONO_INST_CLOB]];
1416                 sreg_masks [1] &= ~ (MONO_ARCH_INST_SREG2_MASK (spec));
1417
1418 #ifdef MONO_ARCH_INST_FIXED_MASK
1419                 dreg_fixed_mask = MONO_ARCH_INST_FIXED_MASK (spec_dest);
1420 #else
1421                 dreg_fixed_mask = 0;
1422 #endif
1423
1424                 num_sregs = mono_inst_get_src_registers (ins, sregs);
1425
1426                 /*
1427                  * TRACK FIXED SREG2, 3, ...
1428                  */
1429                 for (j = 1; j < num_sregs; ++j) {
1430                         int sreg = sregs [j];
1431                         int dest_sreg = dest_sregs [j];
1432
1433                         if (dest_sreg == -1)
1434                                 continue;
1435
1436                         if (j == 2) {
1437                                 int k;
1438
1439                                 /*
1440                                  * CAS.
1441                                  * We need to special case this, since on x86, there are only 3
1442                                  * free registers, and the code below assigns one of them to
1443                                  * sreg, so we can run out of registers when trying to assign
1444                                  * dreg. Instead, we just set up the register masks, and let the
1445                                  * normal sreg2 assignment code handle this. It would be nice to
1446                                  * do this for all the fixed reg cases too, but there is too much
1447                                  * risk of breakage.
1448                                  */
1449
1450                                 /* Make sure sreg will be assigned to dest_sreg, and the other sregs won't */
1451                                 sreg_masks [j] = regmask (dest_sreg);
1452                                 for (k = 0; k < num_sregs; ++k) {
1453                                         if (k != j)
1454                                                 sreg_masks [k] &= ~ (regmask (dest_sreg));
1455                                 }                                               
1456
1457                                 /*
1458                                  * Spill sreg1/2 if they are assigned to dest_sreg.
1459                                  */
1460                                 for (k = 0; k < num_sregs; ++k) {
1461                                         if (k != j && is_soft_reg (sregs [k], 0) && rs->vassign [sregs [k]] == dest_sreg)
1462                                                 free_up_hreg (cfg, bb, tmp, ins, dest_sreg, 0);
1463                                 }
1464
1465                                 /*
1466                                  * We can also run out of registers while processing sreg2 if sreg3 is
1467                                  * assigned to another hreg, so spill sreg3 now.
1468                                  */
1469                                 if (is_soft_reg (sreg, 0) && rs->vassign [sreg] >= 0 && rs->vassign [sreg] != dest_sreg) {
1470                                         spill_vreg (cfg, bb, tmp, ins, sreg, 0);
1471                                 }
1472                                 continue;
1473                         }
1474
1475                         if (rs->ifree_mask & (regmask (dest_sreg))) {
1476                                 if (is_global_ireg (sreg)) {
1477                                         int k;
1478                                         /* Argument already in hard reg, need to copy */
1479                                         MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sreg, sreg, NULL, ip, 0);
1480                                         insert_before_ins (bb, ins, copy);
1481                                         for (k = 0; k < num_sregs; ++k) {
1482                                                 if (k != j)
1483                                                         sreg_masks [k] &= ~ (regmask (dest_sreg));
1484                                         }
1485                                         /* See below */
1486                                         dreg_mask &= ~ (regmask (dest_sreg));
1487                                 } else {
1488                                         val = rs->vassign [sreg];
1489                                         if (val == -1) {
1490                                                 DEBUG (printf ("\tshortcut assignment of R%d to %s\n", sreg, mono_arch_regname (dest_sreg)));
1491                                                 assign_reg (cfg, rs, sreg, dest_sreg, 0);
1492                                         } else if (val < -1) {
1493                                                 /* FIXME: */
1494                                                 g_assert_not_reached ();
1495                                         } else {
1496                                                 /* Argument already in hard reg, need to copy */
1497                                                 MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sreg, val, NULL, ip, 0);
1498                                                 int k;
1499
1500                                                 insert_before_ins (bb, ins, copy);
1501                                                 for (k = 0; k < num_sregs; ++k) {
1502                                                         if (k != j)
1503                                                                 sreg_masks [k] &= ~ (regmask (dest_sreg));
1504                                                 }
1505                                                 /* 
1506                                                  * Prevent the dreg from being allocated to dest_sreg
1507                                                  * too, since it could force sreg1 to be allocated to 
1508                                                  * the same reg on x86.
1509                                                  */
1510                                                 dreg_mask &= ~ (regmask (dest_sreg));
1511                                         }
1512                                 }
1513                         } else {
1514                                 gboolean need_spill = TRUE;
1515                                 gboolean need_assign = TRUE;
1516                                 int k;
1517
1518                                 dreg_mask &= ~ (regmask (dest_sreg));
1519                                 for (k = 0; k < num_sregs; ++k) {
1520                                         if (k != j)
1521                                                 sreg_masks [k] &= ~ (regmask (dest_sreg));
1522                                 }
1523
1524                                 /* 
1525                                  * First check if dreg is assigned to dest_sreg2, since we
1526                                  * can't spill a dreg.
1527                                  */
1528                                 if (spec [MONO_INST_DEST])
1529                                         val = rs->vassign [ins->dreg];
1530                                 else
1531                                         val = -1;
1532                                 if (val == dest_sreg && ins->dreg != sreg) {
1533                                         /* 
1534                                          * the destination register is already assigned to 
1535                                          * dest_sreg2: we need to allocate another register for it 
1536                                          * and then copy from this to dest_sreg2.
1537                                          */
1538                                         int new_dest;
1539                                         new_dest = alloc_int_reg (cfg, bb, tmp, ins, dreg_mask, ins->dreg, &reginfo [ins->dreg]);
1540                                         g_assert (new_dest >= 0);
1541                                         DEBUG (printf ("\tchanging dreg R%d to %s from %s\n", ins->dreg, mono_arch_regname (new_dest), mono_arch_regname (dest_sreg)));
1542
1543                                         prev_dreg = ins->dreg;
1544                                         assign_reg (cfg, rs, ins->dreg, new_dest, 0);
1545                                         create_copy_ins (cfg, bb, tmp, dest_sreg, new_dest, ins, ip, 0);
1546                                         mono_regstate_free_int (rs, dest_sreg);
1547                                         need_spill = FALSE;
1548                                 }
1549
1550                                 if (is_global_ireg (sreg)) {
1551                                         MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sreg, sreg, NULL, ip, 0);
1552                                         insert_before_ins (bb, ins, copy);
1553                                         need_assign = FALSE;
1554                                 }
1555                                 else {
1556                                         val = rs->vassign [sreg];
1557                                         if (val == dest_sreg) {
1558                                                 /* sreg2 is already assigned to the correct register */
1559                                                 need_spill = FALSE;
1560                                         } else if (val < -1) {
1561                                                 /* sreg2 is spilled, it can be assigned to dest_sreg2 */
1562                                         } else if (val >= 0) {
1563                                                 /* sreg2 already assigned to another register */
1564                                                 /*
1565                                                  * We couldn't emit a copy from val to dest_sreg2, because
1566                                                  * val might be spilled later while processing this 
1567                                                  * instruction. So we spill sreg2 so it can be allocated to
1568                                                  * dest_sreg2.
1569                                                  */
1570                                                 free_up_hreg (cfg, bb, tmp, ins, val, 0);
1571                                         }
1572                                 }
1573
1574                                 if (need_spill) {
1575                                         free_up_hreg (cfg, bb, tmp, ins, dest_sreg, 0);
1576                                 }
1577
1578                                 if (need_assign) {
1579                                         if (rs->vassign [sreg] < -1) {
1580                                                 int spill;
1581
1582                                                 /* Need to emit a spill store */
1583                                                 spill = - rs->vassign [sreg] - 1;
1584                                                 create_spilled_store (cfg, bb, spill, dest_sreg, sreg, tmp, NULL, ins, bank);
1585                                         }
1586                                         /* force-set sreg2 */
1587                                         assign_reg (cfg, rs, sregs [j], dest_sreg, 0);
1588                                 }
1589                         }
1590                         sregs [j] = dest_sreg;
1591                 }
1592                 mono_inst_set_src_registers (ins, sregs);
1593
1594                 /*
1595                  * TRACK DREG
1596                  */
1597                 bank = dreg_bank (spec);
1598                 if (spec_dest && is_soft_reg (ins->dreg, bank)) {
1599                         prev_dreg = ins->dreg;
1600                 }
1601
1602                 if (spec_dest == 'b') {
1603                         /* 
1604                          * The dest reg is read by the instruction, not written, so
1605                          * avoid allocating sreg1/sreg2 to the same reg.
1606                          */
1607                         if (dest_sregs [0] != -1)
1608                                 dreg_mask &= ~ (regmask (dest_sregs [0]));
1609                         for (j = 1; j < num_sregs; ++j) {
1610                                 if (dest_sregs [j] != -1)
1611                                         dreg_mask &= ~ (regmask (dest_sregs [j]));
1612                         }
1613
1614                         val = rs->vassign [ins->dreg];
1615                         if (is_soft_reg (ins->dreg, bank) && (val >= 0) && (!(regmask (val) & dreg_mask))) {
1616                                 /* DREG is already allocated to a register needed for sreg1 */
1617                             spill_vreg (cfg, bb, tmp, ins, ins->dreg, 0);
1618                         }
1619                 }
1620
1621                 /*
1622                  * If dreg is a fixed regpair, free up both of the needed hregs to avoid
1623                  * various complex situations.
1624                  */
1625                 if (MONO_ARCH_INST_IS_REGPAIR (spec_dest)) {
1626                         guint32 dreg2, dest_dreg2;
1627
1628                         g_assert (is_soft_reg (ins->dreg, bank));
1629
1630                         if (dest_dreg != -1) {
1631                                 if (rs->vassign [ins->dreg] != dest_dreg)
1632                                         free_up_hreg (cfg, bb, tmp, ins, dest_dreg, 0);
1633
1634                                 dreg2 = ins->dreg + 1;
1635                                 dest_dreg2 = MONO_ARCH_INST_REGPAIR_REG2 (spec_dest, dest_dreg);
1636                                 if (dest_dreg2 != -1) {
1637                                         if (rs->vassign [dreg2] != dest_dreg2)
1638                                                 free_up_hreg (cfg, bb, tmp, ins, dest_dreg2, 0);
1639                                 }
1640                         }
1641                 }
1642
1643                 if (dreg_fixed_mask) {
1644                         g_assert (!bank);
1645                         if (is_global_ireg (ins->dreg)) {
1646                                 /* 
1647                                  * The argument is already in a hard reg, but that reg is
1648                                  * not usable by this instruction, so allocate a new one.
1649                                  */
1650                                 val = mono_regstate_alloc_int (rs, dreg_fixed_mask);
1651                                 if (val < 0)
1652                                         val = get_register_spilling (cfg, bb, tmp, ins, dreg_fixed_mask, -1, bank);
1653                                 mono_regstate_free_int (rs, val);
1654                                 dest_dreg = val;
1655
1656                                 /* Fall through */
1657                         }
1658                         else
1659                                 dreg_mask &= dreg_fixed_mask;
1660                 }
1661
1662                 if (is_soft_reg (ins->dreg, bank)) {
1663                         val = rs->vassign [ins->dreg];
1664
1665                         if (val < 0) {
1666                                 int spill = 0;
1667                                 if (val < -1) {
1668                                         /* the register gets spilled after this inst */
1669                                         spill = -val -1;
1670                                 }
1671                                 val = alloc_reg (cfg, bb, tmp, ins, dreg_mask, ins->dreg, &reginfo [ins->dreg], bank);
1672                                 assign_reg (cfg, rs, ins->dreg, val, bank);
1673                                 if (spill)
1674                                         create_spilled_store (cfg, bb, spill, val, prev_dreg, tmp, ins, NULL, bank);
1675                         }
1676
1677                         DEBUG (printf ("\tassigned dreg %s to dest R%d\n", mono_regname_full (val, bank), ins->dreg));
1678                         ins->dreg = val;
1679                 }
1680
1681                 /* Handle regpairs */
1682                 if (MONO_ARCH_INST_IS_REGPAIR (spec_dest)) {
1683                         int reg2 = prev_dreg + 1;
1684
1685                         g_assert (!bank);
1686                         g_assert (prev_dreg > -1);
1687                         g_assert (!is_global_ireg (rs->vassign [prev_dreg]));
1688                         mask = regpair_reg2_mask (spec_dest, rs->vassign [prev_dreg]);
1689 #ifdef TARGET_X86
1690                         /* bug #80489 */
1691                         mask &= ~regmask (X86_ECX);
1692 #endif
1693                         val = rs->vassign [reg2];
1694                         if (val < 0) {
1695                                 int spill = 0;
1696                                 if (val < -1) {
1697                                         /* the register gets spilled after this inst */
1698                                         spill = -val -1;
1699                                 }
1700                                 val = mono_regstate_alloc_int (rs, mask);
1701                                 if (val < 0)
1702                                         val = get_register_spilling (cfg, bb, tmp, ins, mask, reg2, bank);
1703                                 if (spill)
1704                                         create_spilled_store (cfg, bb, spill, val, reg2, tmp, ins, NULL, bank);
1705                         }
1706                         else {
1707                                 if (! (mask & (regmask (val)))) {
1708                                         val = mono_regstate_alloc_int (rs, mask);
1709                                         if (val < 0)
1710                                                 val = get_register_spilling (cfg, bb, tmp, ins, mask, reg2, bank);
1711
1712                                         /* Reallocate hreg to the correct register */
1713                                         create_copy_ins (cfg, bb, tmp, rs->vassign [reg2], val, ins, ip, bank);
1714
1715                                         mono_regstate_free_int (rs, rs->vassign [reg2]);
1716                                 }
1717                         }                                       
1718
1719                         DEBUG (printf ("\tassigned dreg-high %s to dest R%d\n", mono_arch_regname (val), reg2));
1720                         assign_reg (cfg, rs, reg2, val, bank);
1721
1722                         dreg_high = val;
1723                         ins->backend.reg3 = val;
1724
1725                         if (reg_is_freeable (val, bank) && reg2 >= 0 && (reginfo [reg2].born_in >= i)) {
1726                                 DEBUG (printf ("\tfreeable %s (R%d)\n", mono_arch_regname (val), reg2));
1727                                 mono_regstate_free_int (rs, val);
1728                         }
1729                 }
1730
1731                 if (prev_dreg >= 0 && is_soft_reg (prev_dreg, bank) && (spec_dest != 'b')) {
1732                         /* 
1733                          * In theory, we could free up the hreg even if the vreg is alive,
1734                          * but branches inside bblocks force us to assign the same hreg
1735                          * to a vreg every time it is encountered.
1736                          */
1737                         int dreg = rs->vassign [prev_dreg];
1738                         g_assert (dreg >= 0);
1739                         DEBUG (printf ("\tfreeable %s (R%d) (born in %d)\n", mono_regname_full (dreg, bank), prev_dreg, reginfo [prev_dreg].born_in));
1740                         if (G_UNLIKELY (bank))
1741                                 mono_regstate_free_general (rs, dreg, bank);
1742                         else
1743                                 mono_regstate_free_int (rs, dreg);
1744                         rs->vassign [prev_dreg] = -1;
1745                 }
1746
1747                 if ((dest_dreg != -1) && (ins->dreg != dest_dreg)) {
1748                         /* this instruction only outputs to dest_dreg, need to copy */
1749                         create_copy_ins (cfg, bb, tmp, ins->dreg, dest_dreg, ins, ip, bank);
1750                         ins->dreg = dest_dreg;
1751
1752                         if (G_UNLIKELY (bank)) {
1753                                 /* the register we need to free up may be used in another logical regbank
1754                                  * so do a translate just in case.
1755                                  */
1756                                 int translated_bank = translate_bank (cfg->rs, bank, dest_dreg);
1757                                 if (rs->symbolic [translated_bank] [dest_dreg] >= regbank_size [translated_bank])
1758                                         free_up_hreg (cfg, bb, tmp, ins, dest_dreg, translated_bank);
1759                         }
1760                         else {
1761                                 if (rs->isymbolic [dest_dreg] >= MONO_MAX_IREGS)
1762                                         free_up_hreg (cfg, bb, tmp, ins, dest_dreg, bank);
1763                         }
1764                 }
1765
1766                 if (spec_dest == 'b') {
1767                         /* 
1768                          * The dest reg is read by the instruction, not written, so
1769                          * avoid allocating sreg1/sreg2 to the same reg.
1770                          */
1771                         for (j = 0; j < num_sregs; ++j)
1772                                 if (!sreg_bank (j, spec))
1773                                         sreg_masks [j] &= ~ (regmask (ins->dreg));
1774                 }
1775
1776                 /*
1777                  * TRACK CLOBBERING
1778                  */
1779                 if ((clob_reg != -1) && (!(rs->ifree_mask & (regmask (clob_reg))))) {
1780                         DEBUG (printf ("\tforced spill of clobbered reg R%d\n", rs->isymbolic [clob_reg]));
1781                         free_up_hreg (cfg, bb, tmp, ins, clob_reg, 0);
1782                 }
1783
1784                 if (spec [MONO_INST_CLOB] == 'c') {
1785                         int j, s, dreg, dreg2, cur_bank;
1786                         guint64 clob_mask;
1787
1788                         clob_mask = MONO_ARCH_CALLEE_REGS;
1789
1790                         if (rs->ifree_mask != MONO_ARCH_CALLEE_REGS) {
1791                                 /*
1792                                  * Need to avoid spilling the dreg since the dreg is not really
1793                                  * clobbered by the call.
1794                                  */
1795                                 if ((prev_dreg != -1) && !reg_bank (spec_dest))
1796                                         dreg = rs->vassign [prev_dreg];
1797                                 else
1798                                         dreg = -1;
1799
1800                                 if (MONO_ARCH_INST_IS_REGPAIR (spec_dest))
1801                                         dreg2 = rs->vassign [prev_dreg + 1];
1802                                 else
1803                                         dreg2 = -1;
1804
1805                                 for (j = 0; j < MONO_MAX_IREGS; ++j) {
1806                                         s = regmask (j);
1807                                         if ((clob_mask & s) && !(rs->ifree_mask & s) && (j != ins->sreg1)) {
1808                                                 if ((j != dreg) && (j != dreg2))
1809                                                         free_up_hreg (cfg, bb, tmp, ins, j, 0);
1810                                                 else if (rs->isymbolic [j])
1811                                                         /* The hreg is assigned to the dreg of this instruction */
1812                                                         rs->vassign [rs->isymbolic [j]] = -1;
1813                                                 mono_regstate_free_int (rs, j);
1814                                         }
1815                                 }
1816                         }
1817
1818                         for (cur_bank = 1; cur_bank < MONO_NUM_REGBANKS; ++ cur_bank) {
1819                                 if (rs->free_mask [cur_bank] != regbank_callee_regs [cur_bank]) {
1820                                         clob_mask = regbank_callee_regs [cur_bank];
1821                                         if ((prev_dreg != -1) && reg_bank (spec_dest))
1822                                                 dreg = rs->vassign [prev_dreg];
1823                                         else
1824                                                 dreg = -1;
1825
1826                                         for (j = 0; j < regbank_size [cur_bank]; ++j) {
1827
1828                                                 /* we are looping though the banks in the outer loop
1829                                                  * so, we don't need to deal with mirrored hregs
1830                                                  * because we will get them in one of the other bank passes.
1831                                                  */
1832                                                 if (is_hreg_mirrored (rs, cur_bank, j))
1833                                                         continue;
1834
1835                                                 s = regmask (j);
1836                                                 if ((clob_mask & s) && !(rs->free_mask [cur_bank] & s)) {
1837                                                         if (j != dreg)
1838                                                                 free_up_hreg (cfg, bb, tmp, ins, j, cur_bank);
1839                                                         else if (rs->symbolic [cur_bank] [j])
1840                                                                 /* The hreg is assigned to the dreg of this instruction */
1841                                                                 rs->vassign [rs->symbolic [cur_bank] [j]] = -1;
1842                                                         mono_regstate_free_general (rs, j, cur_bank);
1843                                                 }
1844                                         }
1845                                 }
1846                         }
1847                 }
1848
1849                 /*
1850                  * TRACK ARGUMENT REGS
1851                  */
1852                 if (spec [MONO_INST_CLOB] == 'c' && MONO_IS_CALL (ins)) {
1853                         MonoCallInst *call = (MonoCallInst*)ins;
1854                         GSList *list;
1855
1856                         /* 
1857                          * This needs to be done before assigning sreg1, so sreg1 will
1858                          * not be assigned one of the argument regs.
1859                          */
1860
1861                         /* 
1862                          * Assign all registers in call->out_reg_args to the proper 
1863                          * argument registers.
1864                          */
1865
1866                         list = call->out_ireg_args;
1867                         if (list) {
1868                                 while (list) {
1869                                         guint32 regpair;
1870                                         int reg, hreg;
1871
1872                                         regpair = (guint32)(gssize)(list->data);
1873                                         hreg = regpair >> 24;
1874                                         reg = regpair & 0xffffff;
1875
1876                                         assign_reg (cfg, rs, reg, hreg, 0);
1877
1878                                         sreg_masks [0] &= ~(regmask (hreg));
1879
1880                                         DEBUG (printf ("\tassigned arg reg %s to R%d\n", mono_arch_regname (hreg), reg));
1881
1882                                         list = g_slist_next (list);
1883                                 }
1884                         }
1885
1886                         list = call->out_freg_args;
1887                         if (list) {
1888                                 while (list) {
1889                                         guint32 regpair;
1890                                         int reg, hreg;
1891
1892                                         regpair = (guint32)(gssize)(list->data);
1893                                         hreg = regpair >> 24;
1894                                         reg = regpair & 0xffffff;
1895
1896                                         assign_reg (cfg, rs, reg, hreg, 1);
1897
1898                                         DEBUG (printf ("\tassigned arg reg %s to R%d\n", mono_regname_full (hreg, 1), reg));
1899
1900                                         list = g_slist_next (list);
1901                                 }
1902                         }
1903                 }
1904
1905                 /*
1906                  * TRACK SREG1
1907                  */
1908                 bank = sreg1_bank (spec);
1909                 if (MONO_ARCH_INST_IS_REGPAIR (spec_dest) && (spec [MONO_INST_CLOB] == '1')) {
1910                         int sreg1 = sregs [0];
1911                         int dest_sreg1 = dest_sregs [0];
1912
1913                         g_assert (is_soft_reg (sreg1, bank));
1914
1915                         /* To simplify things, we allocate the same regpair to sreg1 and dreg */
1916                         if (dest_sreg1 != -1)
1917                                 g_assert (dest_sreg1 == ins->dreg);
1918                         val = mono_regstate_alloc_int (rs, regmask (ins->dreg));
1919                         g_assert (val >= 0);
1920
1921                         if (rs->vassign [sreg1] >= 0 && rs->vassign [sreg1] != val)
1922                                 // FIXME:
1923                                 g_assert_not_reached ();
1924
1925                         assign_reg (cfg, rs, sreg1, val, bank);
1926
1927                         DEBUG (printf ("\tassigned sreg1-low %s to R%d\n", mono_regname_full (val, bank), sreg1));
1928
1929                         g_assert ((regmask (dreg_high)) & regpair_reg2_mask (spec_src1, ins->dreg));
1930                         val = mono_regstate_alloc_int (rs, regmask (dreg_high));
1931                         g_assert (val >= 0);
1932
1933                         if (rs->vassign [sreg1 + 1] >= 0 && rs->vassign [sreg1 + 1] != val)
1934                                 // FIXME:
1935                                 g_assert_not_reached ();
1936
1937                         assign_reg (cfg, rs, sreg1 + 1, val, bank);
1938
1939                         DEBUG (printf ("\tassigned sreg1-high %s to R%d\n", mono_regname_full (val, bank), sreg1 + 1));
1940
1941                         /* Skip rest of this section */
1942                         dest_sregs [0] = -1;
1943                 }
1944
1945                 if (sreg_fixed_masks [0]) {
1946                         g_assert (!bank);
1947                         if (is_global_ireg (sregs [0])) {
1948                                 /* 
1949                                  * The argument is already in a hard reg, but that reg is
1950                                  * not usable by this instruction, so allocate a new one.
1951                                  */
1952                                 val = mono_regstate_alloc_int (rs, sreg_fixed_masks [0]);
1953                                 if (val < 0)
1954                                         val = get_register_spilling (cfg, bb, tmp, ins, sreg_fixed_masks [0], -1, bank);
1955                                 mono_regstate_free_int (rs, val);
1956                                 dest_sregs [0] = val;
1957
1958                                 /* Fall through to the dest_sreg1 != -1 case */
1959                         }
1960                         else
1961                                 sreg_masks [0] &= sreg_fixed_masks [0];
1962                 }
1963
1964                 if (dest_sregs [0] != -1) {
1965                         sreg_masks [0] = regmask (dest_sregs [0]);
1966
1967                         if ((rs->vassign [sregs [0]] != dest_sregs [0]) && !(rs->ifree_mask & (regmask (dest_sregs [0])))) {
1968                                 free_up_hreg (cfg, bb, tmp, ins, dest_sregs [0], 0);
1969                         }
1970                         if (is_global_ireg (sregs [0])) {
1971                                 /* The argument is already in a hard reg, need to copy */
1972                                 MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sregs [0], sregs [0], NULL, ip, 0);
1973                                 insert_before_ins (bb, ins, copy);
1974                                 sregs [0] = dest_sregs [0];
1975                         }
1976                 }
1977
1978                 if (is_soft_reg (sregs [0], bank)) {
1979                         val = rs->vassign [sregs [0]];
1980                         prev_sregs [0] = sregs [0];
1981                         if (val < 0) {
1982                                 int spill = 0;
1983                                 if (val < -1) {
1984                                         /* the register gets spilled after this inst */
1985                                         spill = -val -1;
1986                                 }
1987
1988                                 if ((ins->opcode == OP_MOVE) && !spill && !bank && is_local_ireg (ins->dreg) && (rs->ifree_mask & (regmask (ins->dreg)))) {
1989                                         /* 
1990                                          * Allocate the same hreg to sreg1 as well so the 
1991                                          * peephole can get rid of the move.
1992                                          */
1993                                         sreg_masks [0] = regmask (ins->dreg);
1994                                 }
1995
1996                                 if (spec [MONO_INST_CLOB] == '1' && !dreg_bank (spec) && (rs->ifree_mask & (regmask (ins->dreg))))
1997                                         /* Allocate the same reg to sreg1 to avoid a copy later */
1998                                         sreg_masks [0] = regmask (ins->dreg);
1999
2000                                 val = alloc_reg (cfg, bb, tmp, ins, sreg_masks [0], sregs [0], &reginfo [sregs [0]], bank);
2001                                 assign_reg (cfg, rs, sregs [0], val, bank);
2002                                 DEBUG (printf ("\tassigned sreg1 %s to R%d\n", mono_regname_full (val, bank), sregs [0]));
2003
2004                                 if (spill) {
2005                                         /*
2006                                          * Need to insert before the instruction since it can
2007                                          * overwrite sreg1.
2008                                          */
2009                                         create_spilled_store (cfg, bb, spill, val, prev_sregs [0], tmp, NULL, ins, bank);
2010                                 }
2011                         }
2012                         else if ((dest_sregs [0] != -1) && (dest_sregs [0] != val)) {
2013                                 MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sregs [0], val, NULL, ip, bank);
2014                                 insert_before_ins (bb, ins, copy);
2015                                 for (j = 1; j < num_sregs; ++j)
2016                                         sreg_masks [j] &= ~(regmask (dest_sregs [0]));
2017                                 val = dest_sregs [0];
2018                         }
2019                                 
2020                         sregs [0] = val;
2021                 }
2022                 else {
2023                         prev_sregs [0] = -1;
2024                 }
2025                 mono_inst_set_src_registers (ins, sregs);
2026
2027                 for (j = 1; j < num_sregs; ++j)
2028                         sreg_masks [j] &= ~(regmask (sregs [0]));
2029
2030                 /* Handle the case when sreg1 is a regpair but dreg is not */
2031                 if (MONO_ARCH_INST_IS_REGPAIR (spec_src1) && (spec [MONO_INST_CLOB] != '1')) {
2032                         int reg2 = prev_sregs [0] + 1;
2033
2034                         g_assert (!bank);
2035                         g_assert (prev_sregs [0] > -1);
2036                         g_assert (!is_global_ireg (rs->vassign [prev_sregs [0]]));
2037                         mask = regpair_reg2_mask (spec_src1, rs->vassign [prev_sregs [0]]);
2038                         val = rs->vassign [reg2];
2039                         if (val < 0) {
2040                                 int spill = 0;
2041                                 if (val < -1) {
2042                                         /* the register gets spilled after this inst */
2043                                         spill = -val -1;
2044                                 }
2045                                 val = mono_regstate_alloc_int (rs, mask);
2046                                 if (val < 0)
2047                                         val = get_register_spilling (cfg, bb, tmp, ins, mask, reg2, bank);
2048                                 if (spill)
2049                                         g_assert_not_reached ();
2050                         }
2051                         else {
2052                                 if (! (mask & (regmask (val)))) {
2053                                         /* The vreg is already allocated to a wrong hreg */
2054                                         /* FIXME: */
2055                                         g_assert_not_reached ();
2056 #if 0
2057                                         val = mono_regstate_alloc_int (rs, mask);
2058                                         if (val < 0)
2059                                                 val = get_register_spilling (cfg, bb, tmp, ins, mask, reg2, bank);
2060
2061                                         /* Reallocate hreg to the correct register */
2062                                         create_copy_ins (cfg, bb, tmp, rs->vassign [reg2], val, ins, ip, bank);
2063
2064                                         mono_regstate_free_int (rs, rs->vassign [reg2]);
2065 #endif
2066                                 }
2067                         }                                       
2068
2069                         sreg1_high = val;
2070                         DEBUG (printf ("\tassigned sreg1 hreg %s to dest R%d\n", mono_arch_regname (val), reg2));
2071                         assign_reg (cfg, rs, reg2, val, bank);
2072                 }
2073
2074                 /* Handle dreg==sreg1 */
2075                 if (((dreg_is_fp (spec) && sreg1_is_fp (spec)) || spec [MONO_INST_CLOB] == '1') && ins->dreg != sregs [0]) {
2076                         MonoInst *sreg2_copy = NULL;
2077                         MonoInst *copy;
2078                         int bank = reg_bank (spec_src1);
2079
2080                         if (ins->dreg == sregs [1]) {
2081                                 /* 
2082                                  * copying sreg1 to dreg could clobber sreg2, so allocate a new
2083                                  * register for it.
2084                                  */
2085                                 int reg2 = alloc_reg (cfg, bb, tmp, ins, dreg_mask, sregs [1], NULL, bank);
2086
2087                                 DEBUG (printf ("\tneed to copy sreg2 %s to reg %s\n", mono_regname_full (sregs [1], bank), mono_regname_full (reg2, bank)));
2088                                 sreg2_copy = create_copy_ins (cfg, bb, tmp, reg2, sregs [1], NULL, ip, bank);
2089                                 prev_sregs [1] = sregs [1] = reg2;
2090
2091                                 if (G_UNLIKELY (bank))
2092                                         mono_regstate_free_general (rs, reg2, bank);
2093                                 else
2094                                         mono_regstate_free_int (rs, reg2);
2095                         }
2096
2097                         if (MONO_ARCH_INST_IS_REGPAIR (spec_src1)) {
2098                                 /* Copying sreg1_high to dreg could also clobber sreg2 */
2099                                 if (rs->vassign [prev_sregs [0] + 1] == sregs [1])
2100                                         /* FIXME: */
2101                                         g_assert_not_reached ();
2102
2103                                 /* 
2104                                  * sreg1 and dest are already allocated to the same regpair by the
2105                                  * SREG1 allocation code.
2106                                  */
2107                                 g_assert (sregs [0] == ins->dreg);
2108                                 g_assert (dreg_high == sreg1_high);
2109                         }
2110
2111                         DEBUG (printf ("\tneed to copy sreg1 %s to dreg %s\n", mono_regname_full (sregs [0], bank), mono_regname_full (ins->dreg, bank)));
2112                         copy = create_copy_ins (cfg, bb, tmp, ins->dreg, sregs [0], NULL, ip, bank);
2113                         insert_before_ins (bb, ins, copy);
2114
2115                         if (sreg2_copy)
2116                                 insert_before_ins (bb, copy, sreg2_copy);
2117
2118                         /*
2119                          * Need to prevent sreg2 to be allocated to sreg1, since that
2120                          * would screw up the previous copy.
2121                          */
2122                         sreg_masks [1] &= ~ (regmask (sregs [0]));
2123                         /* we set sreg1 to dest as well */
2124                         prev_sregs [0] = sregs [0] = ins->dreg;
2125                         sreg_masks [1] &= ~ (regmask (ins->dreg));
2126                 }
2127                 mono_inst_set_src_registers (ins, sregs);
2128
2129                 /*
2130                  * TRACK SREG2, 3, ...
2131                  */
2132                 for (j = 1; j < num_sregs; ++j) {
2133                         int k;
2134
2135                         bank = sreg_bank (j, spec);
2136                         if (MONO_ARCH_INST_IS_REGPAIR (spec [MONO_INST_SRC1 + j]))
2137                                 g_assert_not_reached ();
2138
2139                         if (dest_sregs [j] != -1 && is_global_ireg (sregs [j])) {
2140                                 /*
2141                                  * Argument already in a global hard reg, copy it to the fixed reg, without
2142                                  * allocating it to the fixed reg.
2143                                  */
2144                                 MonoInst *copy = create_copy_ins (cfg, bb, tmp, dest_sregs [j], sregs [j], NULL, ip, 0);
2145                                 insert_before_ins (bb, ins, copy);
2146                                 sregs [j] = dest_sregs [j];
2147                         } else if (is_soft_reg (sregs [j], bank)) {
2148                                 val = rs->vassign [sregs [j]];
2149
2150                                 if (dest_sregs [j] != -1 && val >= 0 && dest_sregs [j] != val) {
2151                                         /*
2152                                          * The sreg is already allocated to a hreg, but not to the fixed
2153                                          * reg required by the instruction. Spill the sreg, so it can be
2154                                          * allocated to the fixed reg by the code below.
2155                                          */
2156                                         /* Currently, this code should only be hit for CAS */
2157                                         spill_vreg (cfg, bb, tmp, ins, sregs [j], 0);
2158                                         val = rs->vassign [sregs [j]];
2159                                 }
2160
2161                                 if (val < 0) {
2162                                         int spill = 0;
2163                                         if (val < -1) {
2164                                                 /* the register gets spilled after this inst */
2165                                                 spill = -val -1;
2166                                         }
2167                                         val = alloc_reg (cfg, bb, tmp, ins, sreg_masks [j], sregs [j], &reginfo [sregs [j]], bank);
2168                                         assign_reg (cfg, rs, sregs [j], val, bank);
2169                                         DEBUG (printf ("\tassigned sreg%d %s to R%d\n", j + 1, mono_regname_full (val, bank), sregs [j]));
2170                                         if (spill) {
2171                                                 /*
2172                                                  * Need to insert before the instruction since it can
2173                                                  * overwrite sreg2.
2174                                                  */
2175                                                 create_spilled_store (cfg, bb, spill, val, sregs [j], tmp, NULL, ins, bank);
2176                                         }
2177                                 }
2178                                 sregs [j] = val;
2179                                 for (k = j + 1; k < num_sregs; ++k)
2180                                         sreg_masks [k] &= ~ (regmask (sregs [j]));
2181                         }
2182                         else {
2183                                 prev_sregs [j] = -1;
2184                         }
2185                 }
2186                 mono_inst_set_src_registers (ins, sregs);
2187
2188                 /* Sanity check */
2189                 /* Do this only for CAS for now */
2190                 for (j = 1; j < num_sregs; ++j) {
2191                         int sreg = sregs [j];
2192                         int dest_sreg = dest_sregs [j];
2193
2194                         if (j == 2 && dest_sreg != -1) {
2195                                 int k;
2196
2197                                 g_assert (sreg == dest_sreg);
2198
2199                                 for (k = 0; k < num_sregs; ++k) {
2200                                         if (k != j)
2201                                                 g_assert (sregs [k] != dest_sreg);
2202                                 }
2203                         }
2204                 }
2205
2206                 /*if (reg_is_freeable (ins->sreg1) && prev_sreg1 >= 0 && reginfo [prev_sreg1].born_in >= i) {
2207                         DEBUG (printf ("freeable %s\n", mono_arch_regname (ins->sreg1)));
2208                         mono_regstate_free_int (rs, ins->sreg1);
2209                 }
2210                 if (reg_is_freeable (ins->sreg2) && prev_sreg2 >= 0 && reginfo [prev_sreg2].born_in >= i) {
2211                         DEBUG (printf ("freeable %s\n", mono_arch_regname (ins->sreg2)));
2212                         mono_regstate_free_int (rs, ins->sreg2);
2213                 }*/
2214         
2215                 DEBUG (mono_print_ins_index (i, ins));
2216         }
2217
2218         // FIXME: Set MAX_FREGS to 8
2219         // FIXME: Optimize generated code
2220 #if MONO_ARCH_USE_FPSTACK
2221         /*
2222          * Make a forward pass over the code, simulating the fp stack, making sure the
2223          * arguments required by the fp opcodes are at the top of the stack.
2224          */
2225         if (has_fp) {
2226                 MonoInst *prev = NULL;
2227                 MonoInst *fxch;
2228                 int tmp;
2229
2230                 g_assert (num_sregs <= 2);
2231
2232                 for (ins = bb->code; ins; ins = ins->next) {
2233                         spec = ins_get_spec (ins->opcode);
2234
2235                         DEBUG (printf ("processing:"));
2236                         DEBUG (mono_print_ins_index (0, ins));
2237
2238                         if (ins->opcode == OP_FMOVE) {
2239                                 /* Do it by renaming the source to the destination on the stack */
2240                                 // FIXME: Is this correct ?
2241                                 for (i = 0; i < sp; ++i)
2242                                         if (fpstack [i] == ins->sreg1)
2243                                                 fpstack [i] = ins->dreg;
2244                                 prev = ins;
2245                                 continue;
2246                         }
2247
2248                         if (sreg1_is_fp (spec) && sreg2_is_fp (spec) && (fpstack [sp - 2] != ins->sreg1)) {
2249                                 /* Arg1 must be in %st(1) */
2250                                 g_assert (prev);
2251
2252                                 i = 0;
2253                                 while ((i < sp) && (fpstack [i] != ins->sreg1))
2254                                         i ++;
2255                                 g_assert (i < sp);
2256
2257                                 if (sp - 1 - i > 0) {
2258                                         /* First move it to %st(0) */
2259                                         DEBUG (printf ("\tswap %%st(0) and %%st(%d)\n", sp - 1 - i));
2260                                                 
2261                                         MONO_INST_NEW (cfg, fxch, OP_X86_FXCH);
2262                                         fxch->inst_imm = sp - 1 - i;
2263
2264                                         mono_bblock_insert_after_ins (bb, prev, fxch);
2265                                         prev = fxch;
2266
2267                                         tmp = fpstack [sp - 1];
2268                                         fpstack [sp - 1] = fpstack [i];
2269                                         fpstack [i] = tmp;
2270                                 }
2271                                         
2272                                 /* Then move it to %st(1) */
2273                                 DEBUG (printf ("\tswap %%st(0) and %%st(1)\n"));
2274                                 
2275                                 MONO_INST_NEW (cfg, fxch, OP_X86_FXCH);
2276                                 fxch->inst_imm = 1;
2277
2278                                 mono_bblock_insert_after_ins (bb, prev, fxch);
2279                                 prev = fxch;
2280
2281                                 tmp = fpstack [sp - 1];
2282                                 fpstack [sp - 1] = fpstack [sp - 2];
2283                                 fpstack [sp - 2] = tmp;
2284                         }
2285
2286                         if (sreg2_is_fp (spec)) {
2287                                 g_assert (sp > 0);
2288
2289                                 if (fpstack [sp - 1] != ins->sreg2) {
2290                                         g_assert (prev);
2291
2292                                         i = 0;
2293                                         while ((i < sp) && (fpstack [i] != ins->sreg2))
2294                                                 i ++;
2295                                         g_assert (i < sp);
2296
2297                                         DEBUG (printf ("\tswap %%st(0) and %%st(%d)\n", sp - 1 - i));
2298
2299                                         MONO_INST_NEW (cfg, fxch, OP_X86_FXCH);
2300                                         fxch->inst_imm = sp - 1 - i;
2301
2302                                         mono_bblock_insert_after_ins (bb, prev, fxch);
2303                                         prev = fxch;
2304
2305                                         tmp = fpstack [sp - 1];
2306                                         fpstack [sp - 1] = fpstack [i];
2307                                         fpstack [i] = tmp;
2308                                 }
2309
2310                                 sp --;
2311                         }
2312
2313                         if (sreg1_is_fp (spec)) {
2314                                 g_assert (sp > 0);
2315
2316                                 if (fpstack [sp - 1] != ins->sreg1) {
2317                                         g_assert (prev);
2318
2319                                         i = 0;
2320                                         while ((i < sp) && (fpstack [i] != ins->sreg1))
2321                                                 i ++;
2322                                         g_assert (i < sp);
2323
2324                                         DEBUG (printf ("\tswap %%st(0) and %%st(%d)\n", sp - 1 - i));
2325
2326                                         MONO_INST_NEW (cfg, fxch, OP_X86_FXCH);
2327                                         fxch->inst_imm = sp - 1 - i;
2328
2329                                         mono_bblock_insert_after_ins (bb, prev, fxch);
2330                                         prev = fxch;
2331
2332                                         tmp = fpstack [sp - 1];
2333                                         fpstack [sp - 1] = fpstack [i];
2334                                         fpstack [i] = tmp;
2335                                 }
2336
2337                                 sp --;
2338                         }
2339
2340                         if (dreg_is_fp (spec)) {
2341                                 g_assert (sp < 8);
2342                                 fpstack [sp ++] = ins->dreg;
2343                         }
2344
2345                         if (G_UNLIKELY (cfg->verbose_level >= 2)) {
2346                                 printf ("\t[");
2347                                 for (i = 0; i < sp; ++i)
2348                                         printf ("%s%%fr%d", (i > 0) ? ", " : "", fpstack [i]);
2349                                 printf ("]\n");
2350                         }
2351
2352                         prev = ins;
2353                 }
2354
2355                 if (sp && bb != cfg->bb_exit && !(bb->out_count == 1 && bb->out_bb [0] == cfg->bb_exit)) {
2356                         /* Remove remaining items from the fp stack */
2357                         /* 
2358                          * These can remain for example as a result of a dead fmove like in
2359                          * System.Collections.Generic.EqualityComparer<double>.Equals ().
2360                          */
2361                         while (sp) {
2362                                 MONO_INST_NEW (cfg, ins, OP_X86_FPOP);
2363                                 mono_add_ins_to_end (bb, ins);
2364                                 sp --;
2365                         }
2366                 }
2367         }
2368 #endif
2369 }
2370
2371 CompRelation
2372 mono_opcode_to_cond (int opcode)
2373 {
2374         switch (opcode) {
2375         case OP_CEQ:
2376         case OP_IBEQ:
2377         case OP_ICEQ:
2378         case OP_LBEQ:
2379         case OP_LCEQ:
2380         case OP_FBEQ:
2381         case OP_FCEQ:
2382         case OP_RBEQ:
2383         case OP_RCEQ:
2384         case OP_COND_EXC_EQ:
2385         case OP_COND_EXC_IEQ:
2386         case OP_CMOV_IEQ:
2387         case OP_CMOV_LEQ:
2388                 return CMP_EQ;
2389         case OP_FCNEQ:
2390         case OP_ICNEQ:
2391         case OP_IBNE_UN:
2392         case OP_LBNE_UN:
2393         case OP_FBNE_UN:
2394         case OP_COND_EXC_NE_UN:
2395         case OP_COND_EXC_INE_UN:
2396         case OP_CMOV_INE_UN:
2397         case OP_CMOV_LNE_UN:
2398                 return CMP_NE;
2399         case OP_FCLE:
2400         case OP_ICLE:
2401         case OP_IBLE:
2402         case OP_LBLE:
2403         case OP_FBLE:
2404         case OP_CMOV_ILE:
2405         case OP_CMOV_LLE:
2406                 return CMP_LE;
2407         case OP_FCGE:
2408         case OP_ICGE:
2409         case OP_IBGE:
2410         case OP_LBGE:
2411         case OP_FBGE:
2412         case OP_CMOV_IGE:
2413         case OP_CMOV_LGE:
2414                 return CMP_GE;
2415         case OP_CLT:
2416         case OP_IBLT:
2417         case OP_ICLT:
2418         case OP_LBLT:
2419         case OP_LCLT:
2420         case OP_FBLT:
2421         case OP_FCLT:
2422         case OP_RBLT:
2423         case OP_RCLT:
2424         case OP_COND_EXC_LT:
2425         case OP_COND_EXC_ILT:
2426         case OP_CMOV_ILT:
2427         case OP_CMOV_LLT:
2428                 return CMP_LT;
2429         case OP_CGT:
2430         case OP_IBGT:
2431         case OP_ICGT:
2432         case OP_LBGT:
2433         case OP_LCGT:
2434         case OP_FBGT:
2435         case OP_FCGT:
2436         case OP_RBGT:
2437         case OP_RCGT:
2438         case OP_COND_EXC_GT:
2439         case OP_COND_EXC_IGT:
2440         case OP_CMOV_IGT:
2441         case OP_CMOV_LGT:
2442                 return CMP_GT;
2443
2444         case OP_ICLE_UN:
2445         case OP_IBLE_UN:
2446         case OP_LBLE_UN:
2447         case OP_FBLE_UN:
2448         case OP_COND_EXC_LE_UN:
2449         case OP_COND_EXC_ILE_UN:
2450         case OP_CMOV_ILE_UN:
2451         case OP_CMOV_LLE_UN:
2452                 return CMP_LE_UN;
2453
2454         case OP_ICGE_UN:
2455         case OP_IBGE_UN:
2456         case OP_LBGE_UN:
2457         case OP_FBGE_UN:
2458         case OP_CMOV_IGE_UN:
2459         case OP_CMOV_LGE_UN:
2460                 return CMP_GE_UN;
2461         case OP_CLT_UN:
2462         case OP_IBLT_UN:
2463         case OP_ICLT_UN:
2464         case OP_LBLT_UN:
2465         case OP_LCLT_UN:
2466         case OP_FBLT_UN:
2467         case OP_FCLT_UN:
2468         case OP_RBLT_UN:
2469         case OP_RCLT_UN:
2470         case OP_COND_EXC_LT_UN:
2471         case OP_COND_EXC_ILT_UN:
2472         case OP_CMOV_ILT_UN:
2473         case OP_CMOV_LLT_UN:
2474                 return CMP_LT_UN;
2475         case OP_CGT_UN:
2476         case OP_IBGT_UN:
2477         case OP_ICGT_UN:
2478         case OP_LBGT_UN:
2479         case OP_LCGT_UN:
2480         case OP_FCGT_UN:
2481         case OP_FBGT_UN:
2482         case OP_RCGT_UN:
2483         case OP_RBGT_UN:
2484         case OP_COND_EXC_GT_UN:
2485         case OP_COND_EXC_IGT_UN:
2486         case OP_CMOV_IGT_UN:
2487         case OP_CMOV_LGT_UN:
2488                 return CMP_GT_UN;
2489         default:
2490                 printf ("%s\n", mono_inst_name (opcode));
2491                 g_assert_not_reached ();
2492                 return (CompRelation)0;
2493         }
2494 }
2495
2496 CompRelation
2497 mono_negate_cond (CompRelation cond)
2498 {
2499         switch (cond) {
2500         case CMP_EQ:
2501                 return CMP_NE;
2502         case CMP_NE:
2503                 return CMP_EQ;
2504         case CMP_LE:
2505                 return CMP_GT;
2506         case CMP_GE:
2507                 return CMP_LT;
2508         case CMP_LT:
2509                 return CMP_GE;
2510         case CMP_GT:
2511                 return CMP_LE;
2512         case CMP_LE_UN:
2513                 return CMP_GT_UN;
2514         case CMP_GE_UN:
2515                 return CMP_LT_UN;
2516         case CMP_LT_UN:
2517                 return CMP_GE_UN;
2518         case CMP_GT_UN:
2519                 return CMP_LE_UN;
2520         default:
2521                 g_assert_not_reached ();
2522         }
2523 }
2524
2525 CompType
2526 mono_opcode_to_type (int opcode, int cmp_opcode)
2527 {
2528         if ((opcode >= OP_CEQ) && (opcode <= OP_CLT_UN))
2529                 return CMP_TYPE_L;
2530         else if ((opcode >= OP_IBEQ) && (opcode <= OP_IBLT_UN))
2531                 return CMP_TYPE_I;
2532         else if ((opcode >= OP_ICEQ) && (opcode <= OP_ICLT_UN))
2533                 return CMP_TYPE_I;
2534         else if ((opcode >= OP_LBEQ) && (opcode <= OP_LBLT_UN))
2535                 return CMP_TYPE_L;
2536         else if ((opcode >= OP_LCEQ) && (opcode <= OP_LCLT_UN))
2537                 return CMP_TYPE_L;
2538         else if ((opcode >= OP_FBEQ) && (opcode <= OP_FBLT_UN))
2539                 return CMP_TYPE_F;
2540         else if ((opcode >= OP_FCEQ) && (opcode <= OP_FCLT_UN))
2541                 return CMP_TYPE_F;
2542         else if ((opcode >= OP_COND_EXC_IEQ) && (opcode <= OP_COND_EXC_ILT_UN))
2543                 return CMP_TYPE_I;
2544         else if ((opcode >= OP_COND_EXC_EQ) && (opcode <= OP_COND_EXC_LT_UN)) {
2545                 switch (cmp_opcode) {
2546                 case OP_ICOMPARE:
2547                 case OP_ICOMPARE_IMM:
2548                         return CMP_TYPE_I;
2549                 default:
2550                         return CMP_TYPE_L;
2551                 }
2552         } else {
2553                 g_error ("Unknown opcode '%s' in opcode_to_type", mono_inst_name (opcode));
2554                 return (CompType)0;
2555         }
2556 }
2557
2558 #endif /* DISABLE_JIT */
2559
2560 gboolean
2561 mono_is_regsize_var (MonoType *t)
2562 {
2563         t = mini_get_underlying_type (t);
2564         switch (t->type) {
2565         case MONO_TYPE_I1:
2566         case MONO_TYPE_U1:
2567         case MONO_TYPE_I2:
2568         case MONO_TYPE_U2:
2569         case MONO_TYPE_I4:
2570         case MONO_TYPE_U4:
2571         case MONO_TYPE_I:
2572         case MONO_TYPE_U:
2573         case MONO_TYPE_PTR:
2574         case MONO_TYPE_FNPTR:
2575 #if SIZEOF_REGISTER == 8
2576         case MONO_TYPE_I8:
2577         case MONO_TYPE_U8:
2578 #endif
2579                 return TRUE;
2580         case MONO_TYPE_OBJECT:
2581         case MONO_TYPE_STRING:
2582         case MONO_TYPE_CLASS:
2583         case MONO_TYPE_SZARRAY:
2584         case MONO_TYPE_ARRAY:
2585                 return TRUE;
2586         case MONO_TYPE_GENERICINST:
2587                 if (!mono_type_generic_inst_is_valuetype (t))
2588                         return TRUE;
2589                 return FALSE;
2590         case MONO_TYPE_VALUETYPE:
2591                 return FALSE;
2592         default:
2593                 return FALSE;
2594         }
2595 }
2596
2597 #ifndef DISABLE_JIT
2598
2599 /*
2600  * mono_peephole_ins:
2601  *
2602  *   Perform some architecture independent peephole optimizations.
2603  */
2604 void
2605 mono_peephole_ins (MonoBasicBlock *bb, MonoInst *ins)
2606 {
2607         int filter = FILTER_IL_SEQ_POINT;
2608         MonoInst *last_ins = mono_inst_prev (ins, filter);
2609
2610         switch (ins->opcode) {
2611         case OP_MUL_IMM: 
2612                 /* remove unnecessary multiplication with 1 */
2613                 if (ins->inst_imm == 1) {
2614                         if (ins->dreg != ins->sreg1)
2615                                 ins->opcode = OP_MOVE;
2616                         else
2617                                 MONO_DELETE_INS (bb, ins);
2618                 }
2619                 break;
2620         case OP_LOAD_MEMBASE:
2621         case OP_LOADI4_MEMBASE:
2622                 /* 
2623                  * Note: if reg1 = reg2 the load op is removed
2624                  *
2625                  * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
2626                  * OP_LOAD_MEMBASE offset(basereg), reg2
2627                  * -->
2628                  * OP_STORE_MEMBASE_REG reg1, offset(basereg)
2629                  * OP_MOVE reg1, reg2
2630                  */
2631                 if (last_ins && last_ins->opcode == OP_GC_LIVENESS_DEF)
2632                         last_ins = mono_inst_prev (ins, filter);
2633                 if (last_ins &&
2634                         (((ins->opcode == OP_LOADI4_MEMBASE) && (last_ins->opcode == OP_STOREI4_MEMBASE_REG)) ||
2635                          ((ins->opcode == OP_LOAD_MEMBASE) && (last_ins->opcode == OP_STORE_MEMBASE_REG))) &&
2636                         ins->inst_basereg == last_ins->inst_destbasereg &&
2637                         ins->inst_offset == last_ins->inst_offset) {
2638                         if (ins->dreg == last_ins->sreg1) {
2639                                 MONO_DELETE_INS (bb, ins);
2640                                 break;
2641                         } else {
2642                                 ins->opcode = OP_MOVE;
2643                                 ins->sreg1 = last_ins->sreg1;
2644                         }
2645                         
2646                         /* 
2647                          * Note: reg1 must be different from the basereg in the second load
2648                          * Note: if reg1 = reg2 is equal then second load is removed
2649                          *
2650                          * OP_LOAD_MEMBASE offset(basereg), reg1
2651                          * OP_LOAD_MEMBASE offset(basereg), reg2
2652                          * -->
2653                          * OP_LOAD_MEMBASE offset(basereg), reg1
2654                          * OP_MOVE reg1, reg2
2655                          */
2656                 } if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
2657                                                    || last_ins->opcode == OP_LOAD_MEMBASE) &&
2658                           ins->inst_basereg != last_ins->dreg &&
2659                           ins->inst_basereg == last_ins->inst_basereg &&
2660                           ins->inst_offset == last_ins->inst_offset) {
2661
2662                         if (ins->dreg == last_ins->dreg) {
2663                                 MONO_DELETE_INS (bb, ins);
2664                         } else {
2665                                 ins->opcode = OP_MOVE;
2666                                 ins->sreg1 = last_ins->dreg;
2667                         }
2668
2669                         //g_assert_not_reached ();
2670
2671 #if 0
2672                         /* 
2673                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2674                          * OP_LOAD_MEMBASE offset(basereg), reg
2675                          * -->
2676                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2677                          * OP_ICONST reg, imm
2678                          */
2679                 } else if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
2680                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
2681                                    ins->inst_basereg == last_ins->inst_destbasereg &&
2682                                    ins->inst_offset == last_ins->inst_offset) {
2683                         ins->opcode = OP_ICONST;
2684                         ins->inst_c0 = last_ins->inst_imm;
2685                         g_assert_not_reached (); // check this rule
2686 #endif
2687                 }
2688                 break;
2689         case OP_LOADI1_MEMBASE:
2690         case OP_LOADU1_MEMBASE:
2691                 /* 
2692                  * Note: if reg1 = reg2 the load op is removed
2693                  *
2694                  * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
2695                  * OP_LOAD_MEMBASE offset(basereg), reg2
2696                  * -->
2697                  * OP_STORE_MEMBASE_REG reg1, offset(basereg)
2698                  * OP_MOVE reg1, reg2
2699                  */
2700                 if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
2701                         ins->inst_basereg == last_ins->inst_destbasereg &&
2702                         ins->inst_offset == last_ins->inst_offset) {
2703                         ins->opcode = (ins->opcode == OP_LOADI1_MEMBASE) ? OP_PCONV_TO_I1 : OP_PCONV_TO_U1;
2704                         ins->sreg1 = last_ins->sreg1;
2705                 }
2706                 break;
2707         case OP_LOADI2_MEMBASE:
2708         case OP_LOADU2_MEMBASE:
2709                 /* 
2710                  * Note: if reg1 = reg2 the load op is removed
2711                  *
2712                  * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
2713                  * OP_LOAD_MEMBASE offset(basereg), reg2
2714                  * -->
2715                  * OP_STORE_MEMBASE_REG reg1, offset(basereg)
2716                  * OP_MOVE reg1, reg2
2717                  */
2718                 if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
2719                         ins->inst_basereg == last_ins->inst_destbasereg &&
2720                         ins->inst_offset == last_ins->inst_offset) {
2721 #if SIZEOF_REGISTER == 8
2722                         ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_PCONV_TO_I2 : OP_PCONV_TO_U2;
2723 #else
2724                         /* The definition of OP_PCONV_TO_U2 is wrong */
2725                         ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_PCONV_TO_I2 : OP_ICONV_TO_U2;
2726 #endif
2727                         ins->sreg1 = last_ins->sreg1;
2728                 }
2729                 break;
2730         case OP_MOVE:
2731         case OP_FMOVE:
2732                 /*
2733                  * Removes:
2734                  *
2735                  * OP_MOVE reg, reg 
2736                  */
2737                 if (ins->dreg == ins->sreg1) {
2738                         MONO_DELETE_INS (bb, ins);
2739                         break;
2740                 }
2741                 /* 
2742                  * Removes:
2743                  *
2744                  * OP_MOVE sreg, dreg 
2745                  * OP_MOVE dreg, sreg
2746                  */
2747                 if (last_ins && last_ins->opcode == ins->opcode &&
2748                         ins->sreg1 == last_ins->dreg &&
2749                         ins->dreg == last_ins->sreg1) {
2750                         MONO_DELETE_INS (bb, ins);
2751                 }
2752                 break;
2753         case OP_NOP:
2754                 MONO_DELETE_INS (bb, ins);
2755                 break;
2756         }
2757 }
2758
2759 int
2760 mini_exception_id_by_name (const char *name)
2761 {
2762         if (strcmp (name, "IndexOutOfRangeException") == 0)
2763                 return MONO_EXC_INDEX_OUT_OF_RANGE;
2764         if (strcmp (name, "OverflowException") == 0)
2765                 return MONO_EXC_OVERFLOW;
2766         if (strcmp (name, "ArithmeticException") == 0)
2767                 return MONO_EXC_ARITHMETIC;
2768         if (strcmp (name, "DivideByZeroException") == 0)
2769                 return MONO_EXC_DIVIDE_BY_ZERO;
2770         if (strcmp (name, "InvalidCastException") == 0)
2771                 return MONO_EXC_INVALID_CAST;
2772         if (strcmp (name, "NullReferenceException") == 0)
2773                 return MONO_EXC_NULL_REF;
2774         if (strcmp (name, "ArrayTypeMismatchException") == 0)
2775                 return MONO_EXC_ARRAY_TYPE_MISMATCH;
2776         if (strcmp (name, "ArgumentException") == 0)
2777                 return MONO_EXC_ARGUMENT;
2778         g_error ("Unknown intrinsic exception %s\n", name);
2779         return -1;
2780 }
2781
2782 gboolean
2783 mini_type_is_hfa (MonoType *t, int *out_nfields, int *out_esize)
2784 {
2785         MonoClass *klass;
2786         gpointer iter;
2787         MonoClassField *field;
2788         MonoType *ftype, *prev_ftype = NULL;
2789         int nfields = 0;
2790
2791         klass = mono_class_from_mono_type (t);
2792         iter = NULL;
2793         while ((field = mono_class_get_fields (klass, &iter))) {
2794                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
2795                         continue;
2796                 ftype = mono_field_get_type (field);
2797                 ftype = mini_native_type_replace_type (ftype);
2798
2799                 if (MONO_TYPE_ISSTRUCT (ftype)) {
2800                         int nested_nfields, nested_esize;
2801
2802                         if (!mini_type_is_hfa (ftype, &nested_nfields, &nested_esize))
2803                                 return FALSE;
2804                         if (nested_esize == 4)
2805                                 ftype = &mono_defaults.single_class->byval_arg;
2806                         else
2807                                 ftype = &mono_defaults.double_class->byval_arg;
2808                         if (prev_ftype && prev_ftype->type != ftype->type)
2809                                 return FALSE;
2810                         prev_ftype = ftype;
2811                         nfields += nested_nfields;
2812                 } else {
2813                         if (!(!ftype->byref && (ftype->type == MONO_TYPE_R4 || ftype->type == MONO_TYPE_R8)))
2814                                 return FALSE;
2815                         if (prev_ftype && prev_ftype->type != ftype->type)
2816                                 return FALSE;
2817                         prev_ftype = ftype;
2818                         nfields ++;
2819                 }
2820         }
2821         if (nfields == 0)
2822                 return FALSE;
2823         *out_nfields = nfields;
2824         *out_esize = prev_ftype->type == MONO_TYPE_R4 ? 4 : 8;
2825         return TRUE;
2826 }
2827
2828 MonoRegState*
2829 mono_regstate_new (void)
2830 {
2831         MonoRegState* rs = g_new0 (MonoRegState, 1);
2832
2833         rs->next_vreg = MAX (MONO_MAX_IREGS, MONO_MAX_FREGS);
2834 #ifdef MONO_ARCH_NEED_SIMD_BANK
2835         rs->next_vreg = MAX (rs->next_vreg, MONO_MAX_XREGS);
2836 #endif
2837
2838         return rs;
2839 }
2840
2841 void
2842 mono_regstate_free (MonoRegState *rs) {
2843         g_free (rs->vassign);
2844         g_free (rs);
2845 }
2846
2847 #endif /* DISABLE_JIT */