Merge pull request #1522 from StephenMcConnel/bug-26258
[mono.git] / mono / mini / mini-mips.c
1 /*
2  * mini-mips.c: MIPS backend for the Mono code generator
3  *
4  * Authors:
5  *   Mark Mason (mason@broadcom.com)
6  *
7  * Based on mini-ppc.c by
8  *   Paolo Molaro (lupus@ximian.com)
9  *   Dietmar Maurer (dietmar@ximian.com)
10  *
11  * (C) 2006 Broadcom
12  * (C) 2003 Ximian, Inc.
13  */
14 #include "mini.h"
15 #include <string.h>
16 #include <asm/cachectl.h>
17
18 #include <mono/metadata/abi-details.h>
19 #include <mono/metadata/appdomain.h>
20 #include <mono/metadata/debug-helpers.h>
21 #include <mono/utils/mono-mmap.h>
22 #include <mono/utils/mono-hwcap-mips.h>
23
24 #include <mono/arch/mips/mips-codegen.h>
25
26 #include "mini-mips.h"
27 #include "cpu-mips.h"
28 #include "trace.h"
29 #include "ir-emit.h"
30
31 #define SAVE_FP_REGS            0
32
33 #define ALWAYS_SAVE_RA          1       /* call-handler & switch currently clobber ra */
34
35 #define PROMOTE_R4_TO_R8        1       /* promote single values in registers to doubles */
36 #define USE_MUL                 0       /* use mul instead of mult/mflo for multiply
37                                                            remember to update cpu-mips.md if you change this */
38
39 /* Emit a call sequence to 'v', using 'D' as a scratch register if necessary */
40 #define mips_call(c,D,v) do {   \
41                 guint32 _target = (guint32)(v); \
42                 if (1 || ((v) == NULL) || ((_target & 0xfc000000) != (((guint32)(c)) & 0xfc000000))) { \
43                         mips_load_const (c, D, _target); \
44                         mips_jalr (c, D, mips_ra); \
45                 } \
46                 else { \
47                         mips_jumpl (c, _target >> 2); \
48                 } \
49                 mips_nop (c); \
50         } while (0)
51
52 enum {
53         TLS_MODE_DETECT,
54         TLS_MODE_FAILED,
55         TLS_MODE_LTHREADS,
56         TLS_MODE_NPTL
57 };
58
59 /* This mutex protects architecture specific caches */
60 #define mono_mini_arch_lock() mono_mutex_lock (&mini_arch_mutex)
61 #define mono_mini_arch_unlock() mono_mutex_unlock (&mini_arch_mutex)
62 static mono_mutex_t mini_arch_mutex;
63
64 int mono_exc_esp_offset = 0;
65 static int tls_mode = TLS_MODE_DETECT;
66 static int lmf_pthread_key = -1;
67 static int monothread_key = -1;
68
69 /* Whenever the host is little-endian */
70 static int little_endian;
71 /* Index of ms word/register */
72 static int ls_word_idx;
73 /* Index of ls word/register */
74 static int ms_word_idx;
75 /* Same for offsets */
76 static int ls_word_offset;
77 static int ms_word_offset;
78
79 /*
80  * The code generated for sequence points reads from this location, which is
81  * made read-only when single stepping is enabled.
82  */
83 static gpointer ss_trigger_page;
84
85 /* Enabled breakpoints read from this trigger page */
86 static gpointer bp_trigger_page;
87
88 #undef DEBUG
89 #define DEBUG(a) if (cfg->verbose_level > 1) a
90 #undef DEBUG
91 #define DEBUG(a) a
92 #undef DEBUG
93 #define DEBUG(a)
94
95 #define EMIT_SYSTEM_EXCEPTION_NAME(exc_name)            \
96         do {                                                        \
97                 code = mips_emit_exc_by_name (code, exc_name);  \
98                 cfg->bb_exit->max_offset += 16;                         \
99         } while (0) 
100
101
102 #define emit_linuxthreads_tls(code,dreg,key) do {\
103                 int off1, off2; \
104                 off1 = offsets_from_pthread_key ((key), &off2); \
105                 g_assert_not_reached ();                \
106                 ppc_lwz ((code), (dreg), off1, ppc_r2); \
107                 ppc_lwz ((code), (dreg), off2, (dreg)); \
108         } while (0);
109
110
111 #define emit_tls_access(code,dreg,key) do {     \
112                 switch (tls_mode) {     \
113                 case TLS_MODE_LTHREADS: emit_linuxthreads_tls(code,dreg,key); break;    \
114                 default: g_assert_not_reached ();       \
115                 }       \
116         } while (0)
117
118 #define MONO_EMIT_NEW_LOAD_R8(cfg,dr,addr) do { \
119                 MonoInst *inst;                            \
120                 MONO_INST_NEW ((cfg), (inst), OP_R8CONST); \
121                 inst->type = STACK_R8;                     \
122                 inst->dreg = (dr);                     \
123                 inst->inst_p0 = (void*)(addr);         \
124                 mono_bblock_add_inst (cfg->cbb, inst); \
125         } while (0)
126
127 #define ins_is_compare(ins) ((ins) && (((ins)->opcode == OP_COMPARE) \
128                                        || ((ins)->opcode == OP_ICOMPARE) \
129                                        || ((ins)->opcode == OP_LCOMPARE)))
130 #define ins_is_compare_imm(ins) ((ins) && (((ins)->opcode == OP_COMPARE_IMM) \
131                                            || ((ins)->opcode == OP_ICOMPARE_IMM) \
132                                            || ((ins)->opcode == OP_LCOMPARE_IMM)))
133
134 #define INS_REWRITE(ins, op, _s1, _s2)  do { \
135                         int s1 = _s1;                   \
136                         int s2 = _s2;                   \
137                         ins->opcode = (op);             \
138                         ins->sreg1 = (s1);              \
139                         ins->sreg2 = (s2);              \
140         } while (0);
141
142 #define INS_REWRITE_IMM(ins, op, _s1, _imm)     do { \
143                         int s1 = _s1;                   \
144                         ins->opcode = (op);             \
145                         ins->sreg1 = (s1);              \
146                         ins->inst_imm = (_imm);         \
147         } while (0);
148
149
150 typedef struct InstList InstList;
151
152 struct InstList {
153         InstList *prev;
154         InstList *next;
155         MonoInst *data;
156 };
157
158 typedef enum {
159         ArgInIReg,
160         ArgOnStack,
161         ArgInFReg,
162         ArgStructByVal,
163         ArgStructByAddr
164 } ArgStorage;
165
166 typedef struct {
167         gint32  offset;
168         guint16 vtsize; /* in param area */
169         guint8  reg;
170         ArgStorage storage;
171         guint8  size    : 4; /* 1, 2, 4, 8, or regs used by ArgStructByVal */
172 } ArgInfo;
173
174 typedef struct {
175         int nargs;
176         int gr;
177         int fr;
178         gboolean gr_passed;
179         gboolean on_stack;
180         gboolean vtype_retaddr;
181         int stack_size;
182         guint32 stack_usage;
183         guint32 struct_ret;
184         ArgInfo ret;
185         ArgInfo sig_cookie;
186         ArgInfo args [1];
187 } CallInfo;
188
189 void patch_lui_addiu(guint32 *ip, guint32 val);
190 guint8 *mono_arch_emit_epilog_sub (MonoCompile *cfg, guint8 *code);
191 guint8 *mips_emit_cond_branch (MonoCompile *cfg, guint8 *code, int op, MonoInst *ins);
192 void mips_adjust_stackframe(MonoCompile *cfg);
193 void mono_arch_emit_this_vret_args (MonoCompile *cfg, MonoCallInst *inst, int this_reg, int this_type, int vt_reg);
194 MonoInst *mono_arch_get_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args);
195
196
197 /* Not defined in asm/cachectl.h */
198 int cacheflush(char *addr, int nbytes, int cache);
199
200 void
201 mono_arch_flush_icache (guint8 *code, gint size)
202 {
203         /* Linux/MIPS specific */
204         cacheflush ((char*)code, size, BCACHE);
205 }
206
207 void
208 mono_arch_flush_register_windows (void)
209 {
210 }
211
212 gboolean 
213 mono_arch_is_inst_imm (gint64 imm)
214 {
215         return TRUE;
216 }
217
218 static guint8 *
219 mips_emit_exc_by_name(guint8 *code, const char *name)
220 {
221         gpointer addr;
222         MonoClass *exc_class;
223
224         exc_class = mono_class_from_name (mono_defaults.corlib, "System", name);
225         g_assert (exc_class);
226
227         mips_load_const (code, mips_a0, exc_class->type_token);
228         addr = mono_get_throw_corlib_exception ();
229         mips_call (code, mips_t9, addr);
230         return code;
231 }
232
233
234 guint8 *
235 mips_emit_load_const(guint8 *code, int dreg, mgreg_t v)
236 {
237         if (mips_is_imm16 (v))
238                 mips_addiu (code, dreg, mips_zero, ((guint32)v) & 0xffff);
239         else {
240 #if SIZEOF_REGISTER == 8
241                 if (v != (long) v) {
242                         /* v is not a sign-extended 32-bit value */
243                         mips_lui (code, dreg, mips_zero, (guint32)((v >> (32+16)) & 0xffff));
244                         mips_ori (code, dreg, dreg, (guint32)((v >> (32)) & 0xffff));
245                         mips_dsll (code, dreg, dreg, 16);
246                         mips_ori (code, dreg, dreg, (guint32)((v >> (16)) & 0xffff));
247                         mips_dsll (code, dreg, dreg, 16);
248                         mips_ori (code, dreg, dreg, (guint32)(v & 0xffff));
249                         return code;
250                 }
251 #endif
252                 if (((guint32)v) & (1 << 15)) {
253                         mips_lui (code, dreg, mips_zero, (((guint32)v)>>16)+1);
254                 }
255                 else {
256                         mips_lui (code, dreg, mips_zero, (((guint32)v)>>16));
257                 }
258                 if (((guint32)v) & 0xffff)
259                         mips_addiu (code, dreg, dreg, ((guint32)v) & 0xffff);
260         }
261         return code;
262 }
263
264 guint8 *
265 mips_emit_cond_branch (MonoCompile *cfg, guint8 *code, int op, MonoInst *ins)
266 {
267         g_assert (ins);
268         if (cfg->arch.long_branch) {
269                 int br_offset = 5;
270
271                 /* Invert test and emit branch around jump */
272                 switch (op) {
273                 case OP_MIPS_BEQ:
274                         mips_bne (code, ins->sreg1, ins->sreg2, br_offset);
275                         mips_nop (code);
276                         break;
277                 case OP_MIPS_BNE:
278                         mips_beq (code, ins->sreg1, ins->sreg2, br_offset);
279                         mips_nop (code);
280                         break;
281                 case OP_MIPS_BGEZ:
282                         mips_bltz (code, ins->sreg1, br_offset);
283                         mips_nop (code);
284                         break;
285                 case OP_MIPS_BGTZ:
286                         mips_blez (code, ins->sreg1, br_offset);
287                         mips_nop (code);
288                         break;
289                 case OP_MIPS_BLEZ:
290                         mips_bgtz (code, ins->sreg1, br_offset);
291                         mips_nop (code);
292                         break;
293                 case OP_MIPS_BLTZ:
294                         mips_bgez (code, ins->sreg1, br_offset);
295                         mips_nop (code);
296                         break;
297                 default:
298                         g_assert_not_reached ();
299                 }
300                 mono_add_patch_info (cfg, code - cfg->native_code,
301                                      MONO_PATCH_INFO_BB, ins->inst_true_bb);
302                 mips_lui (code, mips_at, mips_zero, 0);
303                 mips_addiu (code, mips_at, mips_at, 0);
304                 mips_jr (code, mips_at);
305                 mips_nop (code);
306         }
307         else {
308                 mono_add_patch_info (cfg, code - cfg->native_code,
309                                      MONO_PATCH_INFO_BB, ins->inst_true_bb);
310                 switch (op) {
311                 case OP_MIPS_BEQ:
312                         mips_beq (code, ins->sreg1, ins->sreg2, 0);
313                         mips_nop (code);
314                         break;
315                 case OP_MIPS_BNE:
316                         mips_bne (code, ins->sreg1, ins->sreg2, 0);
317                         mips_nop (code);
318                         break;
319                 case OP_MIPS_BGEZ:
320                         mips_bgez (code, ins->sreg1, 0);
321                         mips_nop (code);
322                         break;
323                 case OP_MIPS_BGTZ:
324                         mips_bgtz (code, ins->sreg1, 0);
325                         mips_nop (code);
326                         break;
327                 case OP_MIPS_BLEZ:
328                         mips_blez (code, ins->sreg1, 0);
329                         mips_nop (code);
330                         break;
331                 case OP_MIPS_BLTZ:
332                         mips_bltz (code, ins->sreg1, 0);
333                         mips_nop (code);
334                         break;
335                 default:
336                         g_assert_not_reached ();
337                 }
338         }
339         return (code);
340 }
341
342 /* XXX - big-endian dependent? */
343 void
344 patch_lui_addiu(guint32 *ip, guint32 val)
345 {
346         guint16 *__lui_addiu = (guint16*)(void *)(ip);
347
348 #if 0
349         printf ("patch_lui_addiu ip=0x%08x (0x%08x, 0x%08x) to point to 0x%08x\n",
350                 ip, ((guint32 *)ip)[0], ((guint32 *)ip)[1], val);
351         fflush (stdout);
352 #endif
353         if (((guint32)(val)) & (1 << 15))
354                 __lui_addiu [MINI_LS_WORD_IDX] = ((((guint32)(val)) >> 16) & 0xffff) + 1;
355         else
356                 __lui_addiu [MINI_LS_WORD_IDX] = (((guint32)(val)) >> 16) & 0xffff;
357         __lui_addiu [MINI_LS_WORD_IDX + 2] = ((guint32)(val)) & 0xffff;
358         mono_arch_flush_icache ((guint8 *)ip, 8);
359 }
360
361 guint32 trap_target;
362 void
363 mips_patch (guint32 *code, guint32 target)
364 {
365         guint32 ins = *code;
366         guint32 op = ins >> 26;
367         guint32 diff, offset;
368
369         g_assert (trap_target != target);
370         //printf ("patching 0x%08x (0x%08x) to point to 0x%08x\n", code, ins, target);
371         switch (op) {
372         case 0x00: /* jr ra */
373                 if (ins == 0x3e00008)
374                         break;
375                 g_assert_not_reached ();
376                 break;
377         case 0x02: /* j */
378         case 0x03: /* jal */
379                 g_assert (!(target & 0x03));
380                 g_assert ((target & 0xfc000000) == (((guint32)code) & 0xfc000000));
381                 ins = (ins & 0xfc000000) | (((target) >> 2) & 0x03ffffff);
382                 *code = ins;
383                 mono_arch_flush_icache ((guint8 *)code, 4);
384                 break;
385         case 0x01: /* BLTZ */
386         case 0x04: /* BEQ */
387         case 0x05: /* BNE */
388         case 0x06: /* BLEZ */
389         case 0x07: /* BGTZ */
390         case 0x11: /* bc1t */
391                 diff = target - (guint32)(code + 1);
392                 g_assert (((diff & 0x0003ffff) == diff) || ((diff | 0xfffc0000) == diff));
393                 g_assert (!(diff & 0x03));
394                 offset = ((gint32)diff) >> 2;
395                 if (((int)offset) != ((int)(short)offset))
396                         g_assert (((int)offset) == ((int)(short)offset));
397                 ins = (ins & 0xffff0000) | (offset & 0x0000ffff);
398                 *code = ins;
399                 mono_arch_flush_icache ((guint8 *)code, 4);
400                 break;
401         case 0x0f: /* LUI / ADDIU pair */
402                 g_assert ((code[1] >> 26) == 0x9);
403                 patch_lui_addiu (code, target);
404                 mono_arch_flush_icache ((guint8 *)code, 8);
405                 break;
406
407         default:
408                 printf ("unknown op 0x%02x (0x%08x) @ %p\n", op, ins, code);
409                 g_assert_not_reached ();
410         }
411 }
412
413 #if 0
414 static int
415 offsets_from_pthread_key (guint32 key, int *offset2)
416 {
417         int idx1 = key / 32;
418         int idx2 = key % 32;
419         *offset2 = idx2 * sizeof (gpointer);
420         return 284 + idx1 * sizeof (gpointer);
421 }
422 #endif
423
424 static void mono_arch_compute_omit_fp (MonoCompile *cfg);
425
426 const char*
427 mono_arch_regname (int reg) {
428 #if _MIPS_SIM == _ABIO32
429         static const char * rnames[] = {
430                 "zero", "at", "v0", "v1",
431                 "a0", "a1", "a2", "a3",
432                 "t0", "t1", "t2", "t3",
433                 "t4", "t5", "t6", "t7",
434                 "s0", "s1", "s2", "s3",
435                 "s4", "s5", "s6", "s7",
436                 "t8", "t9", "k0", "k1",
437                 "gp", "sp", "fp", "ra"
438         };
439 #elif _MIPS_SIM == _ABIN32
440         static const char * rnames[] = {
441                 "zero", "at", "v0", "v1",
442                 "a0", "a1", "a2", "a3",
443                 "a4", "a5", "a6", "a7",
444                 "t0", "t1", "t2", "t3",
445                 "s0", "s1", "s2", "s3",
446                 "s4", "s5", "s6", "s7",
447                 "t8", "t9", "k0", "k1",
448                 "gp", "sp", "fp", "ra"
449         };
450 #endif
451         if (reg >= 0 && reg < 32)
452                 return rnames [reg];
453         return "unknown";
454 }
455
456 const char*
457 mono_arch_fregname (int reg) {
458         static const char * rnames[] = {
459                 "f0", "f1", "f2", "f3",
460                 "f4", "f5", "f6", "f7",
461                 "f8", "f9", "f10", "f11",
462                 "f12", "f13", "f14", "f15",
463                 "f16", "f17", "f18", "f19",
464                 "f20", "f21", "f22", "f23",
465                 "f24", "f25", "f26", "f27",
466                 "f28", "f29", "f30", "f31"
467         };
468         if (reg >= 0 && reg < 32)
469                 return rnames [reg];
470         return "unknown";
471 }
472
473 /* this function overwrites at */
474 static guint8*
475 emit_memcpy (guint8 *code, int size, int dreg, int doffset, int sreg, int soffset)
476 {
477         /* XXX write a loop, not an unrolled loop */
478         while (size > 0) {
479                 mips_lw (code, mips_at, sreg, soffset);
480                 mips_sw (code, mips_at, dreg, doffset);
481                 size -= 4;
482                 soffset += 4;
483                 doffset += 4;
484         }
485         return code;
486 }
487
488 /*
489  * mono_arch_get_argument_info:
490  * @csig:  a method signature
491  * @param_count: the number of parameters to consider
492  * @arg_info: an array to store the result infos
493  *
494  * Gathers information on parameters such as size, alignment and
495  * padding. arg_info should be large enought to hold param_count + 1 entries. 
496  *
497  * Returns the size of the activation frame.
498  */
499 int
500 mono_arch_get_argument_info (MonoGenericSharingContext *gsctx, MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
501 {
502         int k, frame_size = 0;
503         guint32 size, align, pad;
504         int offset = 0;
505
506         if (MONO_TYPE_ISSTRUCT (csig->ret)) { 
507                 frame_size += sizeof (gpointer);
508                 offset += 4;
509         }
510
511         arg_info [0].offset = offset;
512
513         if (csig->hasthis) {
514                 frame_size += sizeof (gpointer);
515                 offset += 4;
516         }
517
518         arg_info [0].size = frame_size;
519
520         for (k = 0; k < param_count; k++) {
521                 size = mini_type_stack_size_full (NULL, csig->params [k], &align, csig->pinvoke);
522
523                 /* ignore alignment for now */
524                 align = 1;
525
526                 frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1); 
527                 arg_info [k].pad = pad;
528                 frame_size += size;
529                 arg_info [k + 1].pad = 0;
530                 arg_info [k + 1].size = size;
531                 offset += pad;
532                 arg_info [k + 1].offset = offset;
533                 offset += size;
534         }
535
536         align = MONO_ARCH_FRAME_ALIGNMENT;
537         frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1);
538         arg_info [k].pad = pad;
539
540         return frame_size;
541 }
542
543 /* The delegate object plus 3 params */
544 #define MAX_ARCH_DELEGATE_PARAMS (4 - 1)
545
546 static gpointer
547 get_delegate_invoke_impl (gboolean has_target, gboolean param_count, guint32 *code_size)
548 {
549         guint8 *code, *start;
550
551         if (has_target) {
552                 start = code = mono_global_codeman_reserve (16);
553
554                 /* Replace the this argument with the target */
555                 mips_lw (code, mips_temp, mips_a0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
556                 mips_lw (code, mips_a0, mips_a0, MONO_STRUCT_OFFSET (MonoDelegate, target));
557                 mips_jr (code, mips_temp);
558                 mips_nop (code);
559
560                 g_assert ((code - start) <= 16);
561
562                 mono_arch_flush_icache (start, 16);
563         } else {
564                 int size, i;
565
566                 size = 16 + param_count * 4;
567                 start = code = mono_global_codeman_reserve (size);
568
569                 mips_lw (code, mips_temp, mips_a0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
570                 /* slide down the arguments */
571                 for (i = 0; i < param_count; ++i) {
572                         mips_move (code, mips_a0 + i, mips_a0 + i + 1);
573                 }
574                 mips_jr (code, mips_temp);
575                 mips_nop (code);
576
577                 g_assert ((code - start) <= size);
578
579                 mono_arch_flush_icache (start, size);
580         }
581
582         if (code_size)
583                 *code_size = code - start;
584
585         return start;
586 }
587
588 /*
589  * mono_arch_get_delegate_invoke_impls:
590  *
591  *   Return a list of MonoAotTrampInfo structures for the delegate invoke impl
592  * trampolines.
593  */
594 GSList*
595 mono_arch_get_delegate_invoke_impls (void)
596 {
597         GSList *res = NULL;
598         guint8 *code;
599         guint32 code_len;
600         int i;
601         char *tramp_name;
602
603         code = get_delegate_invoke_impl (TRUE, 0, &code_len);
604         res = g_slist_prepend (res, mono_tramp_info_create ("delegate_invoke_impl_has_target", code, code_len, NULL, NULL));
605
606         for (i = 0; i <= MAX_ARCH_DELEGATE_PARAMS; ++i) {
607                 code = get_delegate_invoke_impl (FALSE, i, &code_len);
608                 tramp_name = g_strdup_printf ("delegate_invoke_impl_target_%d", i);
609                 res = g_slist_prepend (res, mono_tramp_info_create (tramp_name, code, code_len, NULL, NULL));
610                 g_free (tramp_name);
611         }
612
613         return res;
614 }
615
616 gpointer
617 mono_arch_get_delegate_invoke_impl (MonoMethodSignature *sig, gboolean has_target)
618 {
619         guint8 *code, *start;
620
621         /* FIXME: Support more cases */
622         if (MONO_TYPE_ISSTRUCT (sig->ret))
623                 return NULL;
624
625         if (has_target) {
626                 static guint8* cached = NULL;
627                 mono_mini_arch_lock ();
628                 if (cached) {
629                         mono_mini_arch_unlock ();
630                         return cached;
631                 }
632
633                 if (mono_aot_only)
634                         start = mono_aot_get_trampoline ("delegate_invoke_impl_has_target");
635                 else
636                         start = get_delegate_invoke_impl (TRUE, 0, NULL);
637                 cached = start;
638                 mono_mini_arch_unlock ();
639                 return cached;
640         } else {
641                 static guint8* cache [MAX_ARCH_DELEGATE_PARAMS + 1] = {NULL};
642                 int i;
643
644                 if (sig->param_count > MAX_ARCH_DELEGATE_PARAMS)
645                         return NULL;
646                 for (i = 0; i < sig->param_count; ++i)
647                         if (!mono_is_regsize_var (sig->params [i]))
648                                 return NULL;
649
650                 mono_mini_arch_lock ();
651                 code = cache [sig->param_count];
652                 if (code) {
653                         mono_mini_arch_unlock ();
654                         return code;
655                 }
656
657                 if (mono_aot_only) {
658                         char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", sig->param_count);
659                         start = mono_aot_get_trampoline (name);
660                         g_free (name);
661                 } else {
662                         start = get_delegate_invoke_impl (FALSE, sig->param_count, NULL);
663                 }
664                 cache [sig->param_count] = start;
665                 mono_mini_arch_unlock ();
666                 return start;
667         }
668
669         return NULL;
670 }
671
672 gpointer
673 mono_arch_get_delegate_virtual_invoke_impl (MonoMethodSignature *sig, MonoMethod *method, int offset, gboolean load_imt_reg)
674 {
675         return NULL;
676 }
677
678 gpointer
679 mono_arch_get_this_arg_from_call (mgreg_t *regs, guint8 *code)
680 {
681         g_assert(regs);
682         return (gpointer)regs [mips_a0];
683 }
684
685 /*
686  * Initialize the cpu to execute managed code.
687  */
688 void
689 mono_arch_cpu_init (void)
690 {
691 #if TARGET_BYTE_ORDER == G_LITTLE_ENDIAN
692         little_endian = 1;
693         ls_word_idx = 0;
694         ms_word_idx = 1;
695 #else
696         ls_word_idx = 1;
697         ms_word_idx = 0;
698 #endif
699
700         ls_word_offset = ls_word_idx * 4;
701         ms_word_offset = ms_word_idx * 4;
702 }
703
704 /*
705  * Initialize architecture specific code.
706  */
707 void
708 mono_arch_init (void)
709 {
710         mono_mutex_init_recursive (&mini_arch_mutex);
711
712         ss_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
713         bp_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
714         mono_mprotect (bp_trigger_page, mono_pagesize (), 0);
715 }
716
717 /*
718  * Cleanup architecture specific code.
719  */
720 void
721 mono_arch_cleanup (void)
722 {
723         mono_mutex_destroy (&mini_arch_mutex);
724 }
725
726 /*
727  * This function returns the optimizations supported on this cpu.
728  */
729 guint32
730 mono_arch_cpu_optimizations (guint32 *exclude_mask)
731 {
732         guint32 opts = 0;
733
734         /* no mips-specific optimizations yet */
735         *exclude_mask = 0;
736         return opts;
737 }
738
739 /*
740  * This function test for all SIMD functions supported.
741  *
742  * Returns a bitmask corresponding to all supported versions.
743  *
744  */
745 guint32
746 mono_arch_cpu_enumerate_simd_versions (void)
747 {
748         /* SIMD is currently unimplemented */
749         return 0;
750 }
751
752 GList *
753 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
754 {
755         GList *vars = NULL;
756         int i;
757
758         for (i = 0; i < cfg->num_varinfo; i++) {
759                 MonoInst *ins = cfg->varinfo [i];
760                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
761
762                 /* unused vars */
763                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
764                         continue;
765
766                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG))
767                         continue;
768
769                 /* we can only allocate 32 bit values */
770                 if (mono_is_regsize_var (ins->inst_vtype)) {
771                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
772                         g_assert (i == vmv->idx);
773                         vars = mono_varlist_insert_sorted (cfg, vars, vmv, FALSE);
774                 }
775         }
776
777         return vars;
778 }
779
780 GList *
781 mono_arch_get_global_int_regs (MonoCompile *cfg)
782 {
783         GList *regs = NULL;
784
785         regs = g_list_prepend (regs, (gpointer)mips_s0);
786         regs = g_list_prepend (regs, (gpointer)mips_s1);
787         regs = g_list_prepend (regs, (gpointer)mips_s2);
788         regs = g_list_prepend (regs, (gpointer)mips_s3);
789         regs = g_list_prepend (regs, (gpointer)mips_s4);
790         //regs = g_list_prepend (regs, (gpointer)mips_s5);
791         regs = g_list_prepend (regs, (gpointer)mips_s6);
792         regs = g_list_prepend (regs, (gpointer)mips_s7);
793
794         return regs;
795 }
796
797 /*
798  * mono_arch_regalloc_cost:
799  *
800  * Return the cost, in number of memory references, of the action of 
801  * allocating the variable VMV into a register during global register
802  * allocation.
803  */
804 guint32
805 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
806 {
807         /* FIXME: */
808         return 2;
809 }
810
811 static void
812 args_onto_stack (CallInfo *info)
813 {
814         g_assert (!info->on_stack);
815         g_assert (info->stack_size <= MIPS_STACK_PARAM_OFFSET);
816         info->on_stack = TRUE;
817         info->stack_size = MIPS_STACK_PARAM_OFFSET;
818 }
819
820 #if _MIPS_SIM == _ABIO32
821 /*
822  * O32 calling convention version
823  */
824
825 static void
826 add_int32_arg (CallInfo *info, ArgInfo *ainfo) {
827         /* First, see if we need to drop onto the stack */
828         if (!info->on_stack && info->gr > MIPS_LAST_ARG_REG)
829                 args_onto_stack (info);
830
831         /* Now, place the argument */
832         if (info->on_stack) {
833                 ainfo->storage = ArgOnStack;
834                 ainfo->reg = mips_sp; /* in the caller */
835                 ainfo->offset = info->stack_size;
836         }
837         else {
838                 ainfo->storage = ArgInIReg;
839                 ainfo->reg = info->gr;
840                 info->gr += 1;
841                 info->gr_passed = TRUE;
842         }
843         info->stack_size += 4;
844 }
845
846 static void
847 add_int64_arg (CallInfo *info, ArgInfo *ainfo) {
848         /* First, see if we need to drop onto the stack */
849         if (!info->on_stack && info->gr+1 > MIPS_LAST_ARG_REG)
850                 args_onto_stack (info);
851
852         /* Now, place the argument */
853         if (info->on_stack) {
854                 g_assert (info->stack_size % 4 == 0);
855                 info->stack_size += (info->stack_size % 8);
856
857                 ainfo->storage = ArgOnStack;
858                 ainfo->reg = mips_sp; /* in the caller */
859                 ainfo->offset = info->stack_size;
860         }
861         else {
862                 // info->gr must be a0 or a2
863                 info->gr += (info->gr - MIPS_FIRST_ARG_REG) % 2;
864                 g_assert(info->gr <= MIPS_LAST_ARG_REG);
865
866                 ainfo->storage = ArgInIReg;
867                 ainfo->reg = info->gr;
868                 info->gr += 2;
869                 info->gr_passed = TRUE;
870         }
871         info->stack_size += 8;
872 }
873
874 static void
875 add_float32_arg (CallInfo *info, ArgInfo *ainfo) {
876         /* First, see if we need to drop onto the stack */
877         if (!info->on_stack && info->gr > MIPS_LAST_ARG_REG)
878                 args_onto_stack (info);
879
880         /* Now, place the argument */
881         if (info->on_stack) {
882                 ainfo->storage = ArgOnStack;
883                 ainfo->reg = mips_sp; /* in the caller */
884                 ainfo->offset = info->stack_size;
885         }
886         else {
887                 /* Only use FP regs for args if no int args passed yet */
888                 if (!info->gr_passed && info->fr <= MIPS_LAST_FPARG_REG) {
889                         ainfo->storage = ArgInFReg;
890                         ainfo->reg = info->fr;
891                         /* Even though it's a single-precision float, it takes up two FP regs */
892                         info->fr += 2;
893                         /* FP and GP slots do not overlap */
894                         info->gr += 1;
895                 }
896                 else {
897                         /* Passing single-precision float arg in a GP register
898                          * such as: func (0, 1.0, 2, 3);
899                          * In this case, only one 'gr' register is consumed.
900                          */
901                         ainfo->storage = ArgInIReg;
902                         ainfo->reg = info->gr;
903
904                         info->gr += 1;
905                         info->gr_passed = TRUE;
906                 }
907         }
908         info->stack_size += 4;
909 }
910
911 static void
912 add_float64_arg (CallInfo *info, ArgInfo *ainfo) {
913         /* First, see if we need to drop onto the stack */
914         if (!info->on_stack && info->gr+1 > MIPS_LAST_ARG_REG)
915                 args_onto_stack (info);
916
917         /* Now, place the argument */
918         if (info->on_stack) {
919                 g_assert(info->stack_size % 4 == 0);
920                 info->stack_size += (info->stack_size % 8);
921
922                 ainfo->storage = ArgOnStack;
923                 ainfo->reg = mips_sp; /* in the caller */
924                 ainfo->offset = info->stack_size;
925         }
926         else {
927                 /* Only use FP regs for args if no int args passed yet */
928                 if (!info->gr_passed && info->fr <= MIPS_LAST_FPARG_REG) {
929                         ainfo->storage = ArgInFReg;
930                         ainfo->reg = info->fr;
931                         info->fr += 2;
932                         /* FP and GP slots do not overlap */
933                         info->gr += 2;
934                 }
935                 else {
936                         // info->gr must be a0 or a2
937                         info->gr += (info->gr - MIPS_FIRST_ARG_REG) % 2;
938                         g_assert(info->gr <= MIPS_LAST_ARG_REG);
939
940                         ainfo->storage = ArgInIReg;
941                         ainfo->reg = info->gr;
942                         info->gr += 2;
943                         info->gr_passed = TRUE;
944                 }
945         }
946         info->stack_size += 8;
947 }
948 #elif _MIPS_SIM == _ABIN32
949 /*
950  * N32 calling convention version
951  */
952
953 static void
954 add_int32_arg (CallInfo *info, ArgInfo *ainfo) {
955         /* First, see if we need to drop onto the stack */
956         if (!info->on_stack && info->gr > MIPS_LAST_ARG_REG)
957                 args_onto_stack (info);
958
959         /* Now, place the argument */
960         if (info->on_stack) {
961                 ainfo->storage = ArgOnStack;
962                 ainfo->reg = mips_sp; /* in the caller */
963                 ainfo->offset = info->stack_size;
964                 info->stack_size += SIZEOF_REGISTER;
965         }
966         else {
967                 ainfo->storage = ArgInIReg;
968                 ainfo->reg = info->gr;
969                 info->gr += 1;
970                 info->gr_passed = TRUE;
971         }
972 }
973
974 static void
975 add_int64_arg (CallInfo *info, ArgInfo *ainfo) {
976         /* First, see if we need to drop onto the stack */
977         if (!info->on_stack && info->gr > MIPS_LAST_ARG_REG)
978                 args_onto_stack (info);
979
980         /* Now, place the argument */
981         if (info->on_stack) {
982                 g_assert (info->stack_size % 4 == 0);
983                 info->stack_size += (info->stack_size % 8);
984
985                 ainfo->storage = ArgOnStack;
986                 ainfo->reg = mips_sp; /* in the caller */
987                 ainfo->offset = info->stack_size;
988                 info->stack_size += SIZEOF_REGISTER;
989         }
990         else {
991                 g_assert (info->gr <= MIPS_LAST_ARG_REG);
992
993                 ainfo->storage = ArgInIReg;
994                 ainfo->reg = info->gr;
995                 info->gr += 1;
996                 info->gr_passed = TRUE;
997         }
998 }
999
1000 static void
1001 add_float32_arg (CallInfo *info, ArgInfo *ainfo) {
1002         /* First, see if we need to drop onto the stack */
1003         if (!info->on_stack) {
1004                 if (info->gr > MIPS_LAST_ARG_REG)
1005                         args_onto_stack (info);
1006                 else if (info->fr > MIPS_LAST_FPARG_REG)
1007                         args_onto_stack (info);
1008         }
1009
1010         /* Now, place the argument */
1011         if (info->on_stack) {
1012                 ainfo->storage = ArgOnStack;
1013                 ainfo->reg = mips_sp; /* in the caller */
1014                 ainfo->offset = info->stack_size;
1015                 info->stack_size += FREG_SIZE;
1016         }
1017         else {
1018                 ainfo->storage = ArgInFReg;
1019                 ainfo->reg = info->fr;
1020                 info->fr += 1;
1021                 /* FP and GP slots do not overlap */
1022                 info->gr += 1;
1023         }
1024 }
1025
1026 static void
1027 add_float64_arg (CallInfo *info, ArgInfo *ainfo) {
1028         /* First, see if we need to drop onto the stack */
1029         if (!info->on_stack) {
1030                 if (info->gr > MIPS_LAST_ARG_REG)
1031                         args_onto_stack (info);
1032                 else if (info->fr > MIPS_LAST_FPARG_REG)
1033                         args_onto_stack (info);
1034         }
1035
1036         /* Now, place the argument */
1037         if (info->on_stack) {
1038                 g_assert(info->stack_size % 4 == 0);
1039                 info->stack_size += (info->stack_size % 8);
1040
1041                 ainfo->storage = ArgOnStack;
1042                 ainfo->reg = mips_sp; /* in the caller */
1043                 ainfo->offset = info->stack_size;
1044                 info->stack_size += FREG_SIZE;
1045         }
1046         else {
1047                 ainfo->storage = ArgInFReg;
1048                 ainfo->reg = info->fr;
1049                 info->fr += 1;
1050                 /* FP and GP slots do not overlap */
1051                 info->gr += 1;
1052         }
1053 }
1054 #endif
1055
1056 static CallInfo*
1057 get_call_info (MonoGenericSharingContext *gsctx, MonoMemPool *mp, MonoMethodSignature *sig)
1058 {
1059         guint i;
1060         int n = sig->hasthis + sig->param_count;
1061         int pstart;
1062         MonoType* simpletype;
1063         CallInfo *cinfo;
1064         gboolean is_pinvoke = sig->pinvoke;
1065
1066         if (mp)
1067                 cinfo = mono_mempool_alloc0 (mp, sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1068         else
1069                 cinfo = g_malloc0 (sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1070
1071         cinfo->fr = MIPS_FIRST_FPARG_REG;
1072         cinfo->gr = MIPS_FIRST_ARG_REG;
1073         cinfo->stack_size = 0;
1074
1075         DEBUG(printf("calculate_sizes\n"));
1076
1077         cinfo->vtype_retaddr = MONO_TYPE_ISSTRUCT (sig->ret) ? TRUE : FALSE;
1078         pstart = 0;
1079         n = 0;
1080 #if 0
1081         /* handle returning a struct */
1082         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1083                 cinfo->struct_ret = cinfo->gr;
1084                 add_int32_arg (cinfo, &cinfo->ret);
1085         }
1086
1087         if (sig->hasthis) {
1088                 add_int32_arg (cinfo, cinfo->args + n);
1089                 n++;
1090         }
1091 #else
1092         /*
1093          * To simplify get_this_arg_reg () and LLVM integration, emit the vret arg after
1094          * the first argument, allowing 'this' to be always passed in the first arg reg.
1095          * Also do this if the first argument is a reference type, since virtual calls
1096          * are sometimes made using calli without sig->hasthis set, like in the delegate
1097          * invoke wrappers.
1098          */
1099         if (cinfo->vtype_retaddr && !is_pinvoke && (sig->hasthis || (sig->param_count > 0 && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (gsctx, sig->params [0]))))) {
1100                 if (sig->hasthis) {
1101                         add_int32_arg (cinfo, cinfo->args + n);
1102                         n ++;
1103                 } else {
1104                         add_int32_arg (cinfo, cinfo->args + sig->hasthis);
1105                         pstart = 1;
1106                         n ++;
1107                 }
1108                 add_int32_arg (cinfo, &cinfo->ret);
1109                 cinfo->struct_ret = cinfo->ret.reg;
1110         } else {
1111                 /* this */
1112                 if (sig->hasthis) {
1113                         add_int32_arg (cinfo, cinfo->args + n);
1114                         n ++;
1115                 }
1116
1117                 if (cinfo->vtype_retaddr) {
1118                         add_int32_arg (cinfo, &cinfo->ret);
1119                         cinfo->struct_ret = cinfo->ret.reg;
1120                 }
1121         }
1122 #endif
1123
1124         DEBUG(printf("params: %d\n", sig->param_count));
1125         for (i = pstart; i < sig->param_count; ++i) {
1126                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1127                         /* Prevent implicit arguments and sig_cookie from
1128                            being passed in registers */
1129                         args_onto_stack (cinfo);
1130                         /* Emit the signature cookie just before the implicit arguments */
1131                         add_int32_arg (cinfo, &cinfo->sig_cookie);
1132                 }
1133                 DEBUG(printf("param %d: ", i));
1134                 simpletype = mini_type_get_underlying_type (gsctx, sig->params [i]);
1135                 switch (simpletype->type) {
1136                 case MONO_TYPE_BOOLEAN:
1137                 case MONO_TYPE_I1:
1138                 case MONO_TYPE_U1:
1139                         DEBUG(printf("1 byte\n"));
1140                         cinfo->args [n].size = 1;
1141                         add_int32_arg (cinfo, &cinfo->args[n]);
1142                         n++;
1143                         break;
1144                 case MONO_TYPE_CHAR:
1145                 case MONO_TYPE_I2:
1146                 case MONO_TYPE_U2:
1147                         DEBUG(printf("2 bytes\n"));
1148                         cinfo->args [n].size = 2;
1149                         add_int32_arg (cinfo, &cinfo->args[n]);
1150                         n++;
1151                         break;
1152                 case MONO_TYPE_I4:
1153                 case MONO_TYPE_U4:
1154                         DEBUG(printf("4 bytes\n"));
1155                         cinfo->args [n].size = 4;
1156                         add_int32_arg (cinfo, &cinfo->args[n]);
1157                         n++;
1158                         break;
1159                 case MONO_TYPE_I:
1160                 case MONO_TYPE_U:
1161                 case MONO_TYPE_PTR:
1162                 case MONO_TYPE_FNPTR:
1163                 case MONO_TYPE_CLASS:
1164                 case MONO_TYPE_OBJECT:
1165                 case MONO_TYPE_STRING:
1166                 case MONO_TYPE_SZARRAY:
1167                 case MONO_TYPE_ARRAY:
1168                         cinfo->args [n].size = sizeof (gpointer);
1169                         add_int32_arg (cinfo, &cinfo->args[n]);
1170                         n++;
1171                         break;
1172                 case MONO_TYPE_GENERICINST:
1173                         if (!mono_type_generic_inst_is_valuetype (simpletype)) {
1174                                 cinfo->args [n].size = sizeof (gpointer);
1175                                 add_int32_arg (cinfo, &cinfo->args[n]);
1176                                 n++;
1177                                 break;
1178                         }
1179                         /* Fall through */
1180                 case MONO_TYPE_TYPEDBYREF:
1181                 case MONO_TYPE_VALUETYPE: {
1182                         int j;
1183                         int nwords = 0;
1184                         int has_offset = FALSE;
1185                         ArgInfo dummy_arg;
1186                         gint size, alignment;
1187                         MonoClass *klass;
1188
1189                         if (simpletype->type == MONO_TYPE_TYPEDBYREF) {
1190                                 size = sizeof (MonoTypedRef);
1191                                 alignment = sizeof (gpointer);
1192                         } else {
1193                                 klass = mono_class_from_mono_type (sig->params [i]);
1194                                 if (is_pinvoke)
1195                                         size = mono_class_native_size (klass, NULL);
1196                                 else
1197                                         size = mono_class_value_size (klass, NULL);
1198                                 alignment = mono_class_min_align (klass);
1199                         }
1200 #if MIPS_PASS_STRUCTS_BY_VALUE
1201                         /* Need to do alignment if struct contains long or double */
1202                         if (alignment > 4) {
1203                                 /* Drop onto stack *before* looking at
1204                                    stack_size, if required. */
1205                                 if (!cinfo->on_stack && cinfo->gr > MIPS_LAST_ARG_REG)
1206                                         args_onto_stack (cinfo);
1207                                 if (cinfo->stack_size & (alignment - 1)) {
1208                                         add_int32_arg (cinfo, &dummy_arg);
1209                                 }
1210                                 g_assert (!(cinfo->stack_size & (alignment - 1)));
1211                         }
1212
1213 #if 0
1214                         g_printf ("valuetype struct size=%d offset=%d align=%d\n",
1215                                   mono_class_native_size (sig->params [i]->data.klass, NULL),
1216                                   cinfo->stack_size, alignment);
1217 #endif
1218                         nwords = (size + sizeof (gpointer) -1 ) / sizeof (gpointer);
1219                         g_assert (cinfo->args [n].size == 0);
1220                         g_assert (cinfo->args [n].vtsize == 0);
1221                         for (j = 0; j < nwords; ++j) {
1222                                 if (j == 0) {
1223                                         add_int32_arg (cinfo, &cinfo->args [n]);
1224                                         if (cinfo->on_stack)
1225                                                 has_offset = TRUE;
1226                                 } else {
1227                                         add_int32_arg (cinfo, &dummy_arg);
1228                                         if (!has_offset && cinfo->on_stack) {
1229                                                 cinfo->args [n].offset = dummy_arg.offset;
1230                                                 has_offset = TRUE;
1231                                         }
1232                                 }
1233                                 if (cinfo->on_stack)
1234                                         cinfo->args [n].vtsize += 1;
1235                                 else
1236                                         cinfo->args [n].size += 1;
1237                         }
1238                         //g_printf ("\tstack_size=%d vtsize=%d\n", cinfo->args [n].size, cinfo->args[n].vtsize);
1239                         cinfo->args [n].storage = ArgStructByVal;
1240 #else
1241                         add_int32_arg (cinfo, &cinfo->args[n]);
1242                         cinfo->args [n].storage = ArgStructByAddr;
1243 #endif
1244                         n++;
1245                         break;
1246                 }
1247                 case MONO_TYPE_U8:
1248                 case MONO_TYPE_I8:
1249                         DEBUG(printf("8 bytes\n"));
1250                         cinfo->args [n].size = 8;
1251                         add_int64_arg (cinfo, &cinfo->args[n]);
1252                         n++;
1253                         break;
1254                 case MONO_TYPE_R4:
1255                         DEBUG(printf("R4\n"));
1256                         cinfo->args [n].size = 4;
1257                         add_float32_arg (cinfo, &cinfo->args[n]);
1258                         n++;
1259                         break;
1260                 case MONO_TYPE_R8:
1261                         DEBUG(printf("R8\n"));
1262                         cinfo->args [n].size = 8;
1263                         add_float64_arg (cinfo, &cinfo->args[n]);
1264                         n++;
1265                         break;
1266                 default:
1267                         g_error ("Can't trampoline 0x%x", sig->params [i]->type);
1268                 }
1269         }
1270
1271         /* Handle the case where there are no implicit arguments */
1272         if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1273                 /* Prevent implicit arguments and sig_cookie from
1274                    being passed in registers */
1275                 args_onto_stack (cinfo);
1276                 /* Emit the signature cookie just before the implicit arguments */
1277                 add_int32_arg (cinfo, &cinfo->sig_cookie);
1278         }
1279
1280         {
1281                 simpletype = mini_type_get_underlying_type (gsctx, sig->ret);
1282                 switch (simpletype->type) {
1283                 case MONO_TYPE_BOOLEAN:
1284                 case MONO_TYPE_I1:
1285                 case MONO_TYPE_U1:
1286                 case MONO_TYPE_I2:
1287                 case MONO_TYPE_U2:
1288                 case MONO_TYPE_CHAR:
1289                 case MONO_TYPE_I4:
1290                 case MONO_TYPE_U4:
1291                 case MONO_TYPE_I:
1292                 case MONO_TYPE_U:
1293                 case MONO_TYPE_PTR:
1294                 case MONO_TYPE_FNPTR:
1295                 case MONO_TYPE_CLASS:
1296                 case MONO_TYPE_OBJECT:
1297                 case MONO_TYPE_SZARRAY:
1298                 case MONO_TYPE_ARRAY:
1299                 case MONO_TYPE_STRING:
1300                         cinfo->ret.reg = mips_v0;
1301                         break;
1302                 case MONO_TYPE_U8:
1303                 case MONO_TYPE_I8:
1304                         cinfo->ret.reg = mips_v0;
1305                         break;
1306                 case MONO_TYPE_R4:
1307                 case MONO_TYPE_R8:
1308                         cinfo->ret.reg = mips_f0;
1309                         cinfo->ret.storage = ArgInFReg;
1310                         break;
1311                 case MONO_TYPE_GENERICINST:
1312                         if (!mono_type_generic_inst_is_valuetype (simpletype)) {
1313                                 cinfo->ret.reg = mips_v0;
1314                                 break;
1315                         }
1316                         break;
1317                 case MONO_TYPE_VALUETYPE:
1318                 case MONO_TYPE_TYPEDBYREF:
1319                         break;
1320                 case MONO_TYPE_VOID:
1321                         break;
1322                 default:
1323                         g_error ("Can't handle as return value 0x%x", sig->ret->type);
1324                 }
1325         }
1326
1327         /* align stack size to 16 */
1328         cinfo->stack_size = (cinfo->stack_size + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
1329
1330         cinfo->stack_usage = cinfo->stack_size;
1331         return cinfo;
1332 }
1333
1334 static gboolean
1335 debug_omit_fp (void)
1336 {
1337 #if 0
1338         return mono_debug_count ();
1339 #else
1340         return TRUE;
1341 #endif
1342 }
1343
1344 /**
1345  * mono_arch_compute_omit_fp:
1346  *
1347  *   Determine whenever the frame pointer can be eliminated.
1348  */
1349 static void
1350 mono_arch_compute_omit_fp (MonoCompile *cfg)
1351 {
1352         MonoMethodSignature *sig;
1353         MonoMethodHeader *header;
1354         int i, locals_size;
1355         CallInfo *cinfo;
1356
1357         if (cfg->arch.omit_fp_computed)
1358                 return;
1359
1360         header = cfg->header;
1361
1362         sig = mono_method_signature (cfg->method);
1363
1364         if (!cfg->arch.cinfo)
1365                 cfg->arch.cinfo = get_call_info (cfg->generic_sharing_context, cfg->mempool, sig);
1366         cinfo = cfg->arch.cinfo;
1367
1368         /*
1369          * FIXME: Remove some of the restrictions.
1370          */
1371         cfg->arch.omit_fp = TRUE;
1372         cfg->arch.omit_fp_computed = TRUE;
1373
1374         if (cfg->disable_omit_fp)
1375                 cfg->arch.omit_fp = FALSE;
1376         if (!debug_omit_fp ())
1377                 cfg->arch.omit_fp = FALSE;
1378         if (cfg->method->save_lmf)
1379                 cfg->arch.omit_fp = FALSE;
1380         if (cfg->flags & MONO_CFG_HAS_ALLOCA)
1381                 cfg->arch.omit_fp = FALSE;
1382         if (header->num_clauses)
1383                 cfg->arch.omit_fp = FALSE;
1384         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG))
1385                 cfg->arch.omit_fp = FALSE;
1386         if ((mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method)) ||
1387                 (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE))
1388                 cfg->arch.omit_fp = FALSE;
1389         /*
1390          * On MIPS, fp points to the bottom of the frame, so it can be eliminated even if
1391          * there are stack arguments.
1392          */
1393         /*
1394         if (cinfo->stack_usage)
1395                 cfg->arch.omit_fp = FALSE;
1396         */
1397
1398         locals_size = 0;
1399         for (i = cfg->locals_start; i < cfg->num_varinfo; i++) {
1400                 MonoInst *ins = cfg->varinfo [i];
1401                 int ialign;
1402
1403                 locals_size += mono_type_size (ins->inst_vtype, &ialign);
1404         }
1405
1406         //printf ("D: %s %d\n", cfg->method->name, cfg->arch.omit_fp);
1407 }
1408
1409 /*
1410  * Set var information according to the calling convention. mips version.
1411  * The locals var stuff should most likely be split in another method.
1412  */
1413 void
1414 mono_arch_allocate_vars (MonoCompile *cfg)
1415 {
1416         MonoMethodSignature *sig;
1417         MonoMethodHeader *header;
1418         MonoInst *inst;
1419         int i, offset, size, align, curinst;
1420         int frame_reg = mips_sp;
1421         guint32 iregs_to_save = 0;
1422 #if SAVE_FP_REGS
1423         guint32 fregs_to_restore;
1424 #endif
1425         CallInfo *cinfo;
1426
1427         sig = mono_method_signature (cfg->method);
1428
1429         if (!cfg->arch.cinfo)
1430                 cfg->arch.cinfo = get_call_info (cfg->generic_sharing_context, cfg->mempool, sig);
1431         cinfo = cfg->arch.cinfo;
1432
1433         mono_arch_compute_omit_fp (cfg);
1434
1435         /* spill down, we'll fix it in a separate pass */
1436         // cfg->flags |= MONO_CFG_HAS_SPILLUP;
1437
1438         /* allow room for the vararg method args: void* and long/double */
1439         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1440                 cfg->param_area = MAX (cfg->param_area, sizeof (gpointer)*8);
1441
1442         /* this is bug #60332: remove when #59509 is fixed, so no weird vararg 
1443          * call convs needs to be handled this way.
1444          */
1445         if (cfg->flags & MONO_CFG_HAS_VARARGS)
1446                 cfg->param_area = MAX (cfg->param_area, sizeof (gpointer)*8);
1447
1448         /* gtk-sharp and other broken code will dllimport vararg functions even with
1449          * non-varargs signatures. Since there is little hope people will get this right
1450          * we assume they won't.
1451          */
1452         if (cfg->method->wrapper_type == MONO_WRAPPER_MANAGED_TO_NATIVE)
1453                 cfg->param_area = MAX (cfg->param_area, sizeof (gpointer)*8);
1454
1455         /* a0-a3 always present */
1456         cfg->param_area = MAX (cfg->param_area, MIPS_STACK_PARAM_OFFSET);
1457
1458         header = cfg->header;
1459
1460         if (cfg->arch.omit_fp)
1461                 frame_reg = mips_sp;
1462         else
1463                 frame_reg = mips_fp;
1464         cfg->frame_reg = frame_reg;
1465         if (frame_reg != mips_sp) {
1466                 cfg->used_int_regs |= 1 << frame_reg;
1467         }
1468
1469         offset = 0;
1470         curinst = 0;
1471         if (!MONO_TYPE_ISSTRUCT (sig->ret)) {
1472                 /* FIXME: handle long and FP values */
1473                 switch (mini_type_get_underlying_type (cfg->generic_sharing_context, sig->ret)->type) {
1474                 case MONO_TYPE_VOID:
1475                         break;
1476                 case MONO_TYPE_R4:
1477                 case MONO_TYPE_R8:
1478                         cfg->ret->opcode = OP_REGVAR;
1479                         cfg->ret->inst_c0 = cfg->ret->dreg = mips_f0;
1480                         break;
1481                 default:
1482                         cfg->ret->opcode = OP_REGVAR;
1483                         cfg->ret->inst_c0 = mips_v0;
1484                         break;
1485                 }
1486         }
1487         /* Space for outgoing parameters, including a0-a3 */
1488         offset += cfg->param_area;
1489
1490         /* allow room to save the return value (if it's a struct) */
1491         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1492                 offset += 8;
1493
1494         /* Now handle the local variables */
1495
1496         curinst = cfg->locals_start;
1497         for (i = curinst; i < cfg->num_varinfo; ++i) {
1498                 inst = cfg->varinfo [i];
1499                 if ((inst->flags & MONO_INST_IS_DEAD) || inst->opcode == OP_REGVAR)
1500                         continue;
1501
1502                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
1503                  * pinvoke wrappers when they call functions returning structure
1504                  */
1505                 if (inst->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (inst->inst_vtype) && inst->inst_vtype->type != MONO_TYPE_TYPEDBYREF)
1506                         size = mono_class_native_size (mono_class_from_mono_type (inst->inst_vtype), (unsigned int *) &align);
1507                 else
1508                         size = mono_type_size (inst->inst_vtype, &align);
1509
1510                 offset += align - 1;
1511                 offset &= ~(align - 1);
1512                 inst->inst_offset = offset;
1513                 inst->opcode = OP_REGOFFSET;
1514                 inst->inst_basereg = frame_reg;
1515                 offset += size;
1516                 // g_print ("allocating local %d to %d\n", i, inst->inst_offset);
1517         }
1518
1519         /* Space for LMF (if needed) */
1520         if (cfg->method->save_lmf) {
1521                 /* align the offset to 16 bytes */
1522                 offset = (offset + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
1523                 cfg->arch.lmf_offset = offset;
1524                 offset += sizeof (MonoLMF);
1525         }
1526
1527         if (sig->call_convention == MONO_CALL_VARARG) {
1528                 size = 4;
1529                 align = 4;
1530
1531                 /* Allocate a local slot to hold the sig cookie address */
1532                 offset += align - 1;
1533                 offset &= ~(align - 1);
1534                 cfg->sig_cookie = offset;
1535                 offset += size;
1536         }                       
1537
1538         offset += SIZEOF_REGISTER - 1;
1539         offset &= ~(SIZEOF_REGISTER - 1);
1540
1541         /* Space for saved registers */
1542         cfg->arch.iregs_offset = offset;
1543         iregs_to_save = (cfg->used_int_regs & MONO_ARCH_CALLEE_SAVED_REGS);
1544         if (iregs_to_save) {
1545                 for (i = MONO_MAX_IREGS-1; i >= 0; --i) {
1546                         if (iregs_to_save & (1 << i)) {
1547                                 offset += SIZEOF_REGISTER;
1548                         }
1549                 }
1550         }
1551
1552         /* saved float registers */
1553 #if SAVE_FP_REGS
1554         fregs_to_restore = (cfg->used_float_regs & MONO_ARCH_CALLEE_SAVED_FREGS);
1555         if (fregs_to_restore) {
1556                 for (i = MONO_MAX_FREGS-1; i >= 0; --i) {
1557                         if (fregs_to_restore & (1 << i)) {
1558                                 offset += sizeof(double);
1559                         }
1560                 }
1561         }
1562 #endif
1563
1564 #if _MIPS_SIM == _ABIO32
1565         /* Now add space for saving the ra */
1566         offset += SIZEOF_VOID_P;
1567
1568         /* change sign? */
1569         offset = (offset + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
1570         cfg->stack_offset = offset;
1571         cfg->arch.local_alloc_offset = cfg->stack_offset;
1572 #endif
1573
1574         /*
1575          * Now allocate stack slots for the int arg regs (a0 - a3)
1576          * On MIPS o32, these are just above the incoming stack pointer
1577          * Even if the arg has been assigned to a regvar, it gets a stack slot
1578          */
1579
1580         /* Return struct-by-value results in a hidden first argument */
1581         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1582                 cfg->vret_addr->opcode = OP_REGOFFSET;
1583                 cfg->vret_addr->inst_c0 = mips_a0;
1584                 cfg->vret_addr->inst_offset = offset;
1585                 cfg->vret_addr->inst_basereg = frame_reg;
1586                 offset += SIZEOF_REGISTER;
1587         }
1588
1589         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
1590                 inst = cfg->args [i];
1591                 if (inst->opcode != OP_REGVAR) {
1592                         MonoType *arg_type;
1593                  
1594                         if (sig->hasthis && (i == 0))
1595                                 arg_type = &mono_defaults.object_class->byval_arg;
1596                         else
1597                                 arg_type = sig->params [i - sig->hasthis];
1598
1599                         inst->opcode = OP_REGOFFSET;
1600                         size = mono_type_size (arg_type, &align);
1601
1602                         if (size < SIZEOF_REGISTER) {
1603                                 size = SIZEOF_REGISTER;
1604                                 align = SIZEOF_REGISTER;
1605                         }
1606                         inst->inst_basereg = frame_reg;
1607                         offset = (offset + align - 1) & ~(align - 1);
1608                         inst->inst_offset = offset;
1609                         offset += size;
1610                         if (cfg->verbose_level > 1)
1611                                 printf ("allocating param %d to fp[%d]\n", i, inst->inst_offset);
1612                 }
1613                 else {
1614 #if _MIPS_SIM == _ABIO32
1615                         /* o32: Even a0-a3 get stack slots */
1616                         size = SIZEOF_REGISTER;
1617                         align = SIZEOF_REGISTER;
1618                         inst->inst_basereg = frame_reg;
1619                         offset = (offset + align - 1) & ~(align - 1);
1620                         inst->inst_offset = offset;
1621                         offset += size;
1622                         if (cfg->verbose_level > 1)
1623                                 printf ("allocating param %d to fp[%d]\n", i, inst->inst_offset);
1624 #endif
1625                 }
1626         }
1627 #if _MIPS_SIM == _ABIN32
1628         /* Now add space for saving the ra */
1629         offset += SIZEOF_VOID_P;
1630
1631         /* change sign? */
1632         offset = (offset + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
1633         cfg->stack_offset = offset;
1634         cfg->arch.local_alloc_offset = cfg->stack_offset;
1635 #endif
1636 }
1637
1638 void
1639 mono_arch_create_vars (MonoCompile *cfg)
1640 {
1641         MonoMethodSignature *sig;
1642
1643         sig = mono_method_signature (cfg->method);
1644
1645         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
1646                 cfg->vret_addr = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_ARG);
1647                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
1648                         printf ("vret_addr = ");
1649                         mono_print_ins (cfg->vret_addr);
1650                 }
1651         }
1652 }
1653
1654 /* Fixme: we need an alignment solution for enter_method and mono_arch_call_opcode,
1655  * currently alignment in mono_arch_call_opcode is computed without arch_get_argument_info 
1656  */
1657
1658 /* 
1659  * take the arguments and generate the arch-specific
1660  * instructions to properly call the function in call.
1661  * This includes pushing, moving arguments to the right register
1662  * etc.
1663  * Issue: who does the spilling if needed, and when?
1664  */
1665 static void
1666 emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
1667 {
1668         MonoMethodSignature *tmp_sig;
1669         MonoInst *sig_arg;
1670
1671         if (call->tail_call)
1672                 NOT_IMPLEMENTED;
1673
1674         /* FIXME: Add support for signature tokens to AOT */
1675         cfg->disable_aot = TRUE;
1676
1677         /*
1678          * mono_ArgIterator_Setup assumes the signature cookie is 
1679          * passed first and all the arguments which were before it are
1680          * passed on the stack after the signature. So compensate by 
1681          * passing a different signature.
1682          */
1683         tmp_sig = mono_metadata_signature_dup (call->signature);
1684         tmp_sig->param_count -= call->signature->sentinelpos;
1685         tmp_sig->sentinelpos = 0;
1686         memcpy (tmp_sig->params, call->signature->params + call->signature->sentinelpos, tmp_sig->param_count * sizeof (MonoType*));
1687
1688         MONO_INST_NEW (cfg, sig_arg, OP_ICONST);
1689         sig_arg->dreg = mono_alloc_ireg (cfg);
1690         sig_arg->inst_p0 = tmp_sig;
1691         MONO_ADD_INS (cfg->cbb, sig_arg);
1692
1693         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, mips_sp, cinfo->sig_cookie.offset, sig_arg->dreg);
1694 }
1695
1696 void
1697 mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
1698 {
1699         MonoInst *in, *ins;
1700         MonoMethodSignature *sig;
1701         int i, n;
1702         CallInfo *cinfo;
1703         int is_virtual = 0;
1704
1705         sig = call->signature;
1706         n = sig->param_count + sig->hasthis;
1707         
1708         cinfo = get_call_info (NULL, cfg->mempool, sig);
1709         if (cinfo->struct_ret)
1710                 call->used_iregs |= 1 << cinfo->struct_ret;
1711
1712         for (i = 0; i < n; ++i) {
1713                 ArgInfo *ainfo = cinfo->args + i;
1714                 MonoType *t;
1715
1716                 if (i >= sig->hasthis)
1717                         t = sig->params [i - sig->hasthis];
1718                 else
1719                         t = &mono_defaults.int_class->byval_arg;
1720                 t = mini_type_get_underlying_type (cfg->generic_sharing_context, t);
1721
1722                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1723                         /* Emit the signature cookie just before the implicit arguments */
1724                         emit_sig_cookie (cfg, call, cinfo);
1725                 }
1726
1727                 if (is_virtual && i == 0) {
1728                         /* the argument will be attached to the call instrucion */
1729                         in = call->args [i];
1730                         call->used_iregs |= 1 << ainfo->reg;
1731                         continue;
1732                 }
1733                 in = call->args [i];
1734                 if (ainfo->storage == ArgInIReg) {
1735 #if SIZEOF_REGISTER == 4
1736                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
1737                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1738                                 ins->dreg = mono_alloc_ireg (cfg);
1739                                 ins->sreg1 = in->dreg + 1;
1740                                 MONO_ADD_INS (cfg->cbb, ins);
1741                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + ls_word_idx, FALSE);
1742
1743                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1744                                 ins->dreg = mono_alloc_ireg (cfg);
1745                                 ins->sreg1 = in->dreg + 2;
1746                                 MONO_ADD_INS (cfg->cbb, ins);
1747                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + ms_word_idx, FALSE);
1748                         } else
1749 #endif
1750                         if (!t->byref && (t->type == MONO_TYPE_R4)) {
1751                                 int freg;
1752
1753 #if PROMOTE_R4_TO_R8
1754                                 /* ??? - convert to single first? */
1755                                 MONO_INST_NEW (cfg, ins, OP_MIPS_CVTSD);
1756                                 ins->dreg = mono_alloc_freg (cfg);
1757                                 ins->sreg1 = in->dreg;
1758                                 MONO_ADD_INS (cfg->cbb, ins);
1759                                 freg = ins->dreg;
1760 #else
1761                                 freg = in->dreg;
1762 #endif
1763                                 /* trying to load float value into int registers */
1764                                 MONO_INST_NEW (cfg, ins, OP_MIPS_MFC1S);
1765                                 ins->dreg = mono_alloc_ireg (cfg);
1766                                 ins->sreg1 = freg;
1767                                 MONO_ADD_INS (cfg->cbb, ins);
1768                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
1769                         } else if (!t->byref && (t->type == MONO_TYPE_R8)) {
1770                                 /* trying to load float value into int registers */
1771                                 MONO_INST_NEW (cfg, ins, OP_MIPS_MFC1D);
1772                                 ins->dreg = mono_alloc_ireg (cfg);
1773                                 ins->sreg1 = in->dreg;
1774                                 MONO_ADD_INS (cfg->cbb, ins);
1775                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
1776                         } else {
1777                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
1778                                 ins->dreg = mono_alloc_ireg (cfg);
1779                                 ins->sreg1 = in->dreg;
1780                                 MONO_ADD_INS (cfg->cbb, ins);
1781                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
1782                         }
1783                 } else if (ainfo->storage == ArgStructByAddr) {
1784                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1785                         ins->opcode = OP_OUTARG_VT;
1786                         ins->sreg1 = in->dreg;
1787                         ins->klass = in->klass;
1788                         ins->inst_p0 = call;
1789                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1790                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1791                         MONO_ADD_INS (cfg->cbb, ins);
1792                 } else if (ainfo->storage == ArgStructByVal) {
1793                         /* this is further handled in mono_arch_emit_outarg_vt () */
1794                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1795                         ins->opcode = OP_OUTARG_VT;
1796                         ins->sreg1 = in->dreg;
1797                         ins->klass = in->klass;
1798                         ins->inst_p0 = call;
1799                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1800                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1801                         MONO_ADD_INS (cfg->cbb, ins);
1802                 } else if (ainfo->storage == ArgOnStack) {
1803                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
1804                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, mips_sp, ainfo->offset, in->dreg);
1805                         } else if (!t->byref && ((t->type == MONO_TYPE_R4) || (t->type == MONO_TYPE_R8))) {
1806                                 if (t->type == MONO_TYPE_R8)
1807                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, mips_sp, ainfo->offset, in->dreg);
1808                                 else
1809                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, mips_sp, ainfo->offset, in->dreg);
1810                         } else {
1811                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, mips_sp, ainfo->offset, in->dreg);
1812                         }
1813                 } else if (ainfo->storage == ArgInFReg) {
1814                         if (t->type == MONO_TYPE_VALUETYPE) {
1815                                 /* this is further handled in mono_arch_emit_outarg_vt () */
1816                                 MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
1817                                 ins->opcode = OP_OUTARG_VT;
1818                                 ins->sreg1 = in->dreg;
1819                                 ins->klass = in->klass;
1820                                 ins->inst_p0 = call;
1821                                 ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1822                                 memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
1823                                 MONO_ADD_INS (cfg->cbb, ins);
1824
1825                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
1826                         } else {
1827                                 int dreg = mono_alloc_freg (cfg);
1828
1829                                 if (ainfo->size == 4) {
1830                                         MONO_EMIT_NEW_UNALU (cfg, OP_MIPS_CVTSD, dreg, in->dreg);
1831                                 } else {
1832                                         MONO_INST_NEW (cfg, ins, OP_FMOVE);
1833                                         ins->dreg = dreg;
1834                                         ins->sreg1 = in->dreg;
1835                                         MONO_ADD_INS (cfg->cbb, ins);
1836                                 }
1837
1838                                 mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, TRUE);
1839                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
1840                         }
1841                 } else {
1842                         g_assert_not_reached ();
1843                 }
1844         }
1845
1846         /* Handle the case where there are no implicit arguments */
1847         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n == sig->sentinelpos))
1848                 emit_sig_cookie (cfg, call, cinfo);
1849
1850         if (cinfo->struct_ret) {
1851                 MonoInst *vtarg;
1852
1853                 MONO_INST_NEW (cfg, vtarg, OP_MOVE);
1854                 vtarg->sreg1 = call->vret_var->dreg;
1855                 vtarg->dreg = mono_alloc_preg (cfg);
1856                 MONO_ADD_INS (cfg->cbb, vtarg);
1857
1858                 mono_call_inst_add_outarg_reg (cfg, call, vtarg->dreg, cinfo->struct_ret, FALSE);
1859         }
1860 #if 0
1861         /*
1862          * Reverse the call->out_args list.
1863          */
1864         {
1865                 MonoInst *prev = NULL, *list = call->out_args, *next;
1866                 while (list) {
1867                         next = list->next;
1868                         list->next = prev;
1869                         prev = list;
1870                         list = next;
1871                 }
1872                 call->out_args = prev;
1873         }
1874 #endif
1875         call->stack_usage = cinfo->stack_usage;
1876         cfg->param_area = MAX (cfg->param_area, cinfo->stack_usage);
1877 #if _MIPS_SIM == _ABIO32
1878         /* a0-a3 always present */
1879         cfg->param_area = MAX (cfg->param_area, 4 * SIZEOF_REGISTER);
1880 #endif
1881         cfg->param_area = (cfg->param_area + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
1882         cfg->flags |= MONO_CFG_HAS_CALLS;
1883         /* 
1884          * should set more info in call, such as the stack space
1885          * used by the args that needs to be added back to esp
1886          */
1887 }
1888
1889 void
1890 mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
1891 {
1892         MonoCallInst *call = (MonoCallInst*)ins->inst_p0;
1893         ArgInfo *ainfo = ins->inst_p1;
1894         int ovf_size = ainfo->vtsize;
1895         int doffset = ainfo->offset;
1896         int i, soffset, dreg;
1897
1898         if (ainfo->storage == ArgStructByVal) {
1899 #if 0
1900                 if (cfg->verbose_level > 0) {
1901                         char* nm = mono_method_full_name (cfg->method, TRUE);
1902                         g_print ("Method %s outarg_vt struct doffset=%d ainfo->size=%d ovf_size=%d\n", 
1903                                  nm, doffset, ainfo->size, ovf_size);
1904                         g_free (nm);
1905                 }
1906 #endif
1907
1908                 soffset = 0;
1909                 for (i = 0; i < ainfo->size; ++i) {
1910                         dreg = mono_alloc_ireg (cfg);
1911                         MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, src->dreg, soffset);
1912                         mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg + i, FALSE);
1913                         soffset += SIZEOF_REGISTER;
1914                 }
1915                 if (ovf_size != 0) {
1916                         mini_emit_memcpy (cfg, mips_sp, doffset, src->dreg, soffset, ovf_size * sizeof (gpointer), 0);
1917                 }
1918         } else if (ainfo->storage == ArgInFReg) {
1919                 int tmpr = mono_alloc_freg (cfg);
1920
1921                 if (ainfo->size == 4)
1922                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR4_MEMBASE, tmpr, src->dreg, 0);
1923                 else
1924                         MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADR8_MEMBASE, tmpr, src->dreg, 0);
1925                 dreg = mono_alloc_freg (cfg);
1926                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, dreg, tmpr);
1927                 mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg, TRUE);
1928         } else {
1929                 MonoInst *vtcopy = mono_compile_create_var (cfg, &src->klass->byval_arg, OP_LOCAL);
1930                 MonoInst *load;
1931                 guint32 size;
1932
1933                 /* FIXME: alignment? */
1934                 if (call->signature->pinvoke) {
1935                         size = mono_type_native_stack_size (&src->klass->byval_arg, NULL);
1936                         vtcopy->backend.is_pinvoke = 1;
1937                 } else {
1938                         size = mini_type_stack_size (cfg->generic_sharing_context, &src->klass->byval_arg, NULL);
1939                 }
1940                 if (size > 0)
1941                         g_assert (ovf_size > 0);
1942
1943                 EMIT_NEW_VARLOADA (cfg, load, vtcopy, vtcopy->inst_vtype);
1944                 mini_emit_memcpy (cfg, load->dreg, 0, src->dreg, 0, size, 0);
1945
1946                 if (ainfo->offset)
1947                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, mips_at, ainfo->offset, load->dreg);
1948                 else
1949                         mono_call_inst_add_outarg_reg (cfg, call, load->dreg, ainfo->reg, FALSE);
1950         }
1951 }
1952
1953 void
1954 mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
1955 {
1956         MonoType *ret = mini_type_get_underlying_type (cfg->generic_sharing_context,
1957                         mono_method_signature (method)->ret);
1958
1959         if (!ret->byref) {
1960 #if (SIZEOF_REGISTER == 4)
1961                 if (ret->type == MONO_TYPE_I8 || ret->type == MONO_TYPE_U8) {
1962                         MonoInst *ins;
1963
1964                         MONO_INST_NEW (cfg, ins, OP_SETLRET);
1965                         ins->sreg1 = val->dreg + 1;
1966                         ins->sreg2 = val->dreg + 2;
1967                         MONO_ADD_INS (cfg->cbb, ins);
1968                         return;
1969                 }
1970 #endif
1971                 if (ret->type == MONO_TYPE_R8) {
1972                         MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, cfg->ret->dreg, val->dreg);
1973                         return;
1974                 }
1975                 if (ret->type == MONO_TYPE_R4) {
1976                         MONO_EMIT_NEW_UNALU (cfg, OP_MIPS_CVTSD, cfg->ret->dreg, val->dreg);
1977                         return;
1978                 }
1979         }
1980         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
1981 }
1982
1983 void
1984 mono_arch_peephole_pass_1 (MonoCompile *cfg, MonoBasicBlock *bb)
1985 {
1986         MonoInst *ins, *n, *last_ins = NULL;
1987
1988         if (cfg->verbose_level > 2)
1989                 g_print ("Basic block %d peephole pass 1\n", bb->block_num);
1990
1991         ins = bb->code;
1992         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
1993                 if (cfg->verbose_level > 2)
1994                         mono_print_ins_index (0, ins);
1995
1996                 switch (ins->opcode) {
1997 #if 0
1998                 case OP_LOAD_MEMBASE:
1999                 case OP_LOADI4_MEMBASE:
2000                         /*
2001                          * OP_IADD              reg2, reg1, const1
2002                          * OP_LOAD_MEMBASE      const2(reg2), reg3
2003                          * ->
2004                          * OP_LOAD_MEMBASE      (const1+const2)(reg1), reg3
2005                          */
2006                         if (last_ins && (last_ins->opcode == OP_IADD_IMM || last_ins->opcode == OP_ADD_IMM) && (last_ins->dreg == ins->inst_basereg) && (last_ins->sreg1 != last_ins->dreg)){
2007                                 int const1 = last_ins->inst_imm;
2008                                 int const2 = ins->inst_offset;
2009
2010                                 if (mips_is_imm16 (const1 + const2)) {
2011                                         ins->inst_basereg = last_ins->sreg1;
2012                                         ins->inst_offset = const1 + const2;
2013                                 }
2014                         }
2015                         break;
2016 #endif
2017
2018                 }
2019                 last_ins = ins;
2020                 ins = ins->next;
2021         }
2022         bb->last_ins = last_ins;
2023 }
2024
2025 void
2026 mono_arch_peephole_pass_2 (MonoCompile *cfg, MonoBasicBlock *bb)
2027 {
2028         MonoInst *ins, *n, *last_ins = NULL;
2029         ins = bb->code;
2030
2031         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
2032                 MonoInst *last_ins = ins->prev;
2033
2034                 switch (ins->opcode) {
2035                 case OP_MUL_IMM: 
2036                         /* remove unnecessary multiplication with 1 */
2037                         if (ins->inst_imm == 1) {
2038                                 if (ins->dreg != ins->sreg1) {
2039                                         ins->opcode = OP_MOVE;
2040                                 } else {
2041                                         MONO_DELETE_INS (bb, ins);
2042                                         continue;
2043                                 }
2044                         } else {
2045                                 int power2 = mono_is_power_of_two (ins->inst_imm);
2046                                 if (power2 > 0) {
2047                                         ins->opcode = OP_SHL_IMM;
2048                                         ins->inst_imm = power2;
2049                                 }
2050                         }
2051                         break;
2052                 case OP_LOAD_MEMBASE:
2053                 case OP_LOADI4_MEMBASE:
2054                         /* 
2055                          * OP_STORE_MEMBASE_REG reg, offset(basereg) 
2056                          * OP_LOAD_MEMBASE offset(basereg), reg
2057                          */
2058                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG 
2059                                          || last_ins->opcode == OP_STORE_MEMBASE_REG) &&
2060                             ins->inst_basereg == last_ins->inst_destbasereg &&
2061                             ins->inst_offset == last_ins->inst_offset) {
2062                                 if (ins->dreg == last_ins->sreg1) {
2063                                         MONO_DELETE_INS (bb, ins);
2064                                         continue;
2065                                 } else {
2066                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
2067                                         ins->opcode = OP_MOVE;
2068                                         ins->sreg1 = last_ins->sreg1;
2069                                 }
2070                                 break;
2071                         }
2072                         /* 
2073                          * Note: reg1 must be different from the basereg in the second load
2074                          * OP_LOAD_MEMBASE offset(basereg), reg1
2075                          * OP_LOAD_MEMBASE offset(basereg), reg2
2076                          * -->
2077                          * OP_LOAD_MEMBASE offset(basereg), reg1
2078                          * OP_MOVE reg1, reg2
2079                          */
2080                         if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
2081                                            || last_ins->opcode == OP_LOAD_MEMBASE) &&
2082                               ins->inst_basereg != last_ins->dreg &&
2083                               ins->inst_basereg == last_ins->inst_basereg &&
2084                               ins->inst_offset == last_ins->inst_offset) {
2085
2086                                 if (ins->dreg == last_ins->dreg) {
2087                                         MONO_DELETE_INS (bb, ins);
2088                                         continue;
2089                                 } else {
2090                                         ins->opcode = OP_MOVE;
2091                                         ins->sreg1 = last_ins->dreg;
2092                                 }
2093
2094                                 //g_assert_not_reached ();
2095                                 break;
2096                         }
2097 #if 0
2098                         /* 
2099                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2100                          * OP_LOAD_MEMBASE offset(basereg), reg
2101                          * -->
2102                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
2103                          * OP_ICONST reg, imm
2104                          */
2105                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
2106                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
2107                                    ins->inst_basereg == last_ins->inst_destbasereg &&
2108                                    ins->inst_offset == last_ins->inst_offset) {
2109                                 //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
2110                                 ins->opcode = OP_ICONST;
2111                                 ins->inst_c0 = last_ins->inst_imm;
2112                                 g_assert_not_reached (); // check this rule
2113                                 break;
2114                         }
2115 #endif
2116                         break;
2117                 case OP_LOADU1_MEMBASE:
2118                 case OP_LOADI1_MEMBASE:
2119                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
2120                                         ins->inst_basereg == last_ins->inst_destbasereg &&
2121                                         ins->inst_offset == last_ins->inst_offset) {
2122                                 ins->opcode = (ins->opcode == OP_LOADI1_MEMBASE) ? OP_ICONV_TO_I1 : OP_ICONV_TO_U1;
2123                                 ins->sreg1 = last_ins->sreg1;                           
2124                         }
2125                         break;
2126                 case OP_LOADU2_MEMBASE:
2127                 case OP_LOADI2_MEMBASE:
2128                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
2129                                         ins->inst_basereg == last_ins->inst_destbasereg &&
2130                                         ins->inst_offset == last_ins->inst_offset) {
2131                                 ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_ICONV_TO_I2 : OP_ICONV_TO_U2;
2132                                 ins->sreg1 = last_ins->sreg1;                           
2133                         }
2134                         break;
2135                 case OP_ICONV_TO_I4:
2136                 case OP_ICONV_TO_U4:
2137                 case OP_MOVE:
2138                         ins->opcode = OP_MOVE;
2139                         /* 
2140                          * OP_MOVE reg, reg 
2141                          */
2142                         if (ins->dreg == ins->sreg1) {
2143                                 MONO_DELETE_INS (bb, ins);
2144                                 continue;
2145                         }
2146                         /* 
2147                          * OP_MOVE sreg, dreg 
2148                          * OP_MOVE dreg, sreg
2149                          */
2150                         if (last_ins && last_ins->opcode == OP_MOVE &&
2151                             ins->sreg1 == last_ins->dreg &&
2152                             ins->dreg == last_ins->sreg1) {
2153                                 MONO_DELETE_INS (bb, ins);
2154                                 continue;
2155                         }
2156                         break;
2157                 }
2158                 last_ins = ins;
2159                 ins = ins->next;
2160         }
2161         bb->last_ins = last_ins;
2162 }
2163
2164 void
2165 mono_arch_decompose_long_opts (MonoCompile *cfg, MonoInst *ins)
2166 {
2167         int tmp1 = -1;
2168         int tmp2 = -1;
2169         int tmp3 = -1;
2170         int tmp4 = -1;
2171         int tmp5 = -1;
2172
2173         switch (ins->opcode) {
2174 #if 0
2175         case OP_LCOMPARE:
2176         case OP_LCOMPARE_IMM:
2177                 mono_print_ins (ins);
2178                 g_assert_not_reached ();
2179 #endif
2180         case OP_LADD:
2181                 tmp1 = mono_alloc_ireg (cfg);
2182                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2183                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->dreg+1, ins->sreg1+1);
2184                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2185                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, ins->dreg+2, tmp1);
2186                 NULLIFY_INS(ins);
2187                 break;
2188
2189         case OP_LADD_IMM:
2190                 tmp1 = mono_alloc_ireg (cfg);
2191                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IADD_IMM, ins->dreg+1, ins->sreg1+1, ins->inst_ls_word);
2192                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->dreg+1, ins->sreg1+1);
2193                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_IADD_IMM, ins->dreg+2, ins->sreg1+2, ins->inst_ms_word);
2194                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, ins->dreg+2, tmp1);
2195                 NULLIFY_INS(ins);
2196                 break;
2197
2198         case OP_LSUB:
2199                 tmp1 = mono_alloc_ireg (cfg);
2200                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2201                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->sreg1+1, ins->dreg+1);
2202                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2203                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->dreg+2, tmp1);
2204                 NULLIFY_INS(ins);
2205                 break;
2206
2207         case OP_LSUB_IMM:
2208                 tmp1 = mono_alloc_ireg (cfg);
2209                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISUB_IMM, ins->dreg+1, ins->sreg1+1, ins->inst_ls_word);
2210                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->sreg1+1, ins->dreg+1);
2211                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ISUB_IMM, ins->dreg+2, ins->sreg1+2, ins->inst_ms_word);
2212                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->dreg+2, tmp1);
2213                 NULLIFY_INS(ins);
2214                 break;
2215
2216         case OP_LMUL:
2217         case OP_LDIV:
2218         case OP_LDIV_UN:
2219         case OP_LREM:
2220         case OP_LREM_UN:
2221         case OP_LSHL:
2222         case OP_LSHR:
2223         case OP_LSHR_UN:
2224                 mono_print_ins (ins);
2225                 g_assert_not_reached ();
2226
2227         case OP_LNEG:
2228                 tmp1 = mono_alloc_ireg (cfg);
2229                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+1, mips_zero, ins->sreg1+1);
2230                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, mips_zero, ins->dreg+1);
2231                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, mips_zero, ins->sreg1+2);
2232                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->dreg+2, tmp1);
2233                 NULLIFY_INS(ins);
2234                 break;
2235
2236 #if 0
2237         case OP_LNOT:
2238 #endif
2239 #if 0
2240         case OP_LCONV_TO_I1:
2241         case OP_LCONV_TO_I2:
2242         case OP_LCONV_TO_I4:
2243         case OP_LCONV_TO_I8:
2244         case OP_LCONV_TO_R4:
2245         case OP_LCONV_TO_R8:
2246         case OP_LCONV_TO_U4:
2247         case OP_LCONV_TO_U8:
2248         case OP_LCONV_TO_U2:
2249         case OP_LCONV_TO_U1:
2250         case OP_LCONV_TO_I:
2251         case OP_LCONV_TO_OVF_I:
2252         case OP_LCONV_TO_OVF_U:
2253 #endif
2254                 mono_print_ins (ins);
2255                 g_assert_not_reached ();
2256
2257         case OP_LADD_OVF:
2258                 tmp1 = mono_alloc_ireg (cfg);
2259                 tmp2 = mono_alloc_ireg (cfg);
2260                 tmp3 = mono_alloc_ireg (cfg);
2261                 tmp4 = mono_alloc_ireg (cfg);
2262                 tmp5 = mono_alloc_ireg (cfg);
2263
2264                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2265
2266                 /* tmp1 holds the carry from the low 32-bit to the high 32-bits */
2267                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp5, ins->dreg+1, ins->sreg1+1);
2268
2269                 /* add the high 32-bits, and add in the carry from the low 32-bits */
2270                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2271                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, tmp5, ins->dreg+2);
2272
2273                 /* Overflow happens if
2274                  *      neg + neg = pos    or
2275                  *      pos + pos = neg
2276                  * XOR of the high bits returns 0 if the signs match
2277                  * XOR of that with the high bit of the result return 1 if overflow.
2278                  */
2279
2280                 /* tmp1 = 0 if the signs of the two inputs match, 1 otherwise */
2281                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp1, ins->sreg1+2, ins->sreg2+2);
2282
2283                 /* set tmp2 = 0 if bit31 of results matches is different than the operands */
2284                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp2, ins->dreg+2, ins->sreg2+2);
2285                 MONO_EMIT_NEW_UNALU (cfg, OP_INOT, tmp2, tmp2);
2286
2287                 /* OR(tmp1, tmp2) = 0 if both conditions are true */
2288                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, tmp3, tmp2, tmp1);
2289                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, tmp4, tmp3, 31);
2290
2291                 /* Now, if (tmp4 == 0) then overflow */
2292                 MONO_EMIT_NEW_COMPARE_EXC (cfg, EQ, tmp4, mips_zero, "OverflowException");
2293                 NULLIFY_INS(ins);
2294                 break;
2295
2296         case OP_LADD_OVF_UN:
2297                 tmp1 = mono_alloc_ireg (cfg);
2298                 tmp2 = mono_alloc_ireg (cfg);
2299
2300                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2301                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->dreg+1, ins->sreg1+1);
2302                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2303                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg+2, tmp1, ins->dreg+2);
2304                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp2, ins->dreg+2, ins->sreg1+2);
2305                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp2, mips_zero, "OverflowException");
2306                 NULLIFY_INS(ins);
2307                 break;
2308
2309         case OP_LMUL_OVF:
2310         case OP_LMUL_OVF_UN:
2311                 mono_print_ins (ins);
2312                 g_assert_not_reached ();
2313
2314         case OP_LSUB_OVF:
2315                 tmp1 = mono_alloc_ireg (cfg);
2316                 tmp2 = mono_alloc_ireg (cfg);
2317                 tmp3 = mono_alloc_ireg (cfg);
2318                 tmp4 = mono_alloc_ireg (cfg);
2319                 tmp5 = mono_alloc_ireg (cfg);
2320
2321                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2322
2323                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp5, ins->sreg1+1, ins->dreg+1);
2324                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2325                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->dreg+2, tmp5);
2326
2327                 /* Overflow happens if
2328                  *      neg - pos = pos    or
2329                  *      pos - neg = neg
2330                  * XOR of bit31 of the lhs & rhs = 1 if the signs are different
2331                  *
2332                  * tmp1 = (lhs ^ rhs)
2333                  * tmp2 = (lhs ^ result)
2334                  * if ((tmp1 < 0) & (tmp2 < 0)) then overflow
2335                  */
2336
2337                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp1, ins->sreg1+2, ins->sreg2+2);
2338                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp2, ins->sreg1+2, ins->dreg+2);
2339                 MONO_EMIT_NEW_BIALU (cfg, OP_IAND, tmp3, tmp2, tmp1);
2340                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, tmp4, tmp3, 31);
2341
2342                 /* Now, if (tmp4 == 1) then overflow */
2343                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp4, mips_zero, "OverflowException");
2344                 NULLIFY_INS(ins);
2345                 break;
2346
2347         case OP_LSUB_OVF_UN:
2348                 tmp1 = mono_alloc_ireg (cfg);
2349                 tmp2 = mono_alloc_ireg (cfg);
2350
2351                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+1, ins->sreg1+1, ins->sreg2+1);
2352                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->sreg1+1, ins->dreg+1);
2353                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->sreg1+2, ins->sreg2+2);
2354                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg+2, ins->dreg+2, tmp1);
2355
2356                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp2, ins->sreg1+2, ins->dreg+2);
2357                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp2, mips_zero, "OverflowException");
2358                 NULLIFY_INS(ins);
2359                 break;
2360 #if 0
2361         case OP_LCONV_TO_OVF_I1_UN:
2362         case OP_LCONV_TO_OVF_I2_UN:
2363         case OP_LCONV_TO_OVF_I4_UN:
2364         case OP_LCONV_TO_OVF_I8_UN:
2365         case OP_LCONV_TO_OVF_U1_UN:
2366         case OP_LCONV_TO_OVF_U2_UN:
2367         case OP_LCONV_TO_OVF_U4_UN:
2368         case OP_LCONV_TO_OVF_U8_UN:
2369         case OP_LCONV_TO_OVF_I_UN:
2370         case OP_LCONV_TO_OVF_U_UN:
2371         case OP_LCONV_TO_OVF_I1:
2372         case OP_LCONV_TO_OVF_U1:
2373         case OP_LCONV_TO_OVF_I2:
2374         case OP_LCONV_TO_OVF_U2:
2375         case OP_LCONV_TO_OVF_I4:
2376         case OP_LCONV_TO_OVF_U4:
2377         case OP_LCONV_TO_OVF_I8:
2378         case OP_LCONV_TO_OVF_U8:
2379 #endif
2380         case OP_LCEQ:
2381         case OP_LCGT:
2382         case OP_LCGT_UN:
2383         case OP_LCLT:
2384         case OP_LCLT_UN:
2385 #if 0
2386         case OP_LCONV_TO_R_UN:
2387         case OP_LCONV_TO_U:
2388 #endif
2389         case OP_LMUL_IMM:
2390         case OP_LSHL_IMM:
2391         case OP_LSHR_IMM:
2392         case OP_LSHR_UN_IMM:
2393         case OP_LDIV_IMM:
2394         case OP_LDIV_UN_IMM:
2395         case OP_LREM_IMM:
2396         case OP_LREM_UN_IMM:
2397         case OP_LBEQ:
2398         case OP_LBGE:
2399         case OP_LBGT:
2400         case OP_LBLE:
2401         case OP_LBLT:
2402         case OP_LBNE_UN:
2403         case OP_LBGE_UN:
2404         case OP_LBGT_UN:
2405         case OP_LBLE_UN:
2406         case OP_LBLT_UN:
2407                 mono_print_ins (ins);
2408                 g_assert_not_reached ();
2409 #if 0
2410         case OP_LCONV_TO_R8_2:
2411         case OP_LCONV_TO_R4_2:
2412         case OP_LCONV_TO_R_UN_2:
2413 #endif
2414         case OP_LCONV_TO_OVF_I4_2:
2415                 tmp1 = mono_alloc_ireg (cfg);
2416
2417                 /* Overflows if reg2 != sign extension of reg1 */
2418                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, tmp1, ins->sreg1, 31);
2419                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, ins->sreg2, tmp1, "OverflowException");
2420                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ins->dreg, ins->sreg1);
2421                 NULLIFY_INS(ins);
2422                 break;
2423
2424         case OP_LMIN_UN:
2425         case OP_LMAX_UN:
2426         case OP_LMIN:
2427         case OP_LMAX:
2428                 mono_print_ins (ins);
2429                 g_assert_not_reached ();
2430
2431         default:
2432                 break;
2433         }
2434 }
2435
2436 void
2437 mono_arch_decompose_opts (MonoCompile *cfg, MonoInst *ins)
2438 {
2439         int tmp1 = -1;
2440         int tmp2 = -1;
2441         int tmp3 = -1;
2442         int tmp4 = -1;
2443         int tmp5 = -1;
2444
2445         switch (ins->opcode) {
2446         case OP_IADD_OVF:
2447                 tmp1 = mono_alloc_ireg (cfg);
2448                 tmp2 = mono_alloc_ireg (cfg);
2449                 tmp3 = mono_alloc_ireg (cfg);
2450                 tmp4 = mono_alloc_ireg (cfg);
2451                 tmp5 = mono_alloc_ireg (cfg);
2452
2453                 /* add the operands */
2454
2455                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg, ins->sreg1, ins->sreg2);
2456
2457                 /* Overflow happens if
2458                  *      neg + neg = pos    or
2459                  *      pos + pos = neg
2460                  *
2461                  * (bit31s of operands match) AND (bit31 of operand != bit31 of result)
2462                  * XOR of the high bit returns 0 if the signs match
2463                  * XOR of that with the high bit of the result return 1 if overflow.
2464                  */
2465
2466                 /* tmp1 = 0 if the signs of the two inputs match, 1 otherwise */
2467                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp1, ins->sreg1, ins->sreg2);
2468
2469                 /* set tmp2 = 0 if bit31 of results matches is different than the operands */
2470                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp2, ins->dreg, ins->sreg2);
2471                 MONO_EMIT_NEW_UNALU (cfg, OP_INOT, tmp3, tmp2);
2472
2473                 /* OR(tmp1, tmp2) = 0 if both conditions are true */
2474                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, tmp4, tmp3, tmp1);
2475
2476                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHR_IMM, tmp5, tmp4, 31);
2477
2478                 /* Now, if (tmp5 == 0) then overflow */
2479                 MONO_EMIT_NEW_COMPARE_EXC (cfg, EQ, tmp5, mips_zero, "OverflowException");
2480                 /* Make decompse and method-to-ir.c happy, last insn writes dreg */
2481                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ins->dreg, ins->dreg);
2482                 NULLIFY_INS(ins);
2483                 break;
2484
2485         case OP_IADD_OVF_UN:
2486                 tmp1 = mono_alloc_ireg (cfg);
2487
2488                 MONO_EMIT_NEW_BIALU (cfg, OP_IADD, ins->dreg, ins->sreg1, ins->sreg2);
2489                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->dreg, ins->sreg1);
2490                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp1, mips_zero, "OverflowException");
2491                 /* Make decompse and method-to-ir.c happy, last insn writes dreg */
2492                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ins->dreg, ins->dreg);
2493                 NULLIFY_INS(ins);
2494                 break;
2495
2496         case OP_ISUB_OVF:
2497                 tmp1 = mono_alloc_ireg (cfg);
2498                 tmp2 = mono_alloc_ireg (cfg);
2499                 tmp3 = mono_alloc_ireg (cfg);
2500                 tmp4 = mono_alloc_ireg (cfg);
2501                 tmp5 = mono_alloc_ireg (cfg);
2502
2503                 /* add the operands */
2504
2505                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg, ins->sreg1, ins->sreg2);
2506
2507                 /* Overflow happens if
2508                  *      neg - pos = pos    or
2509                  *      pos - neg = neg
2510                  * XOR of bit31 of the lhs & rhs = 1 if the signs are different
2511                  *
2512                  * tmp1 = (lhs ^ rhs)
2513                  * tmp2 = (lhs ^ result)
2514                  * if ((tmp1 < 0) & (tmp2 < 0)) then overflow
2515                  */
2516
2517                 /* tmp3 = 1 if the signs of the two inputs differ */
2518                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp1, ins->sreg1, ins->sreg2);
2519                 MONO_EMIT_NEW_BIALU (cfg, OP_IXOR, tmp2, ins->sreg1, ins->dreg);
2520                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_MIPS_SLTI, tmp3, tmp1, 0);
2521                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_MIPS_SLTI, tmp4, tmp2, 0);
2522                 MONO_EMIT_NEW_BIALU (cfg, OP_IAND, tmp5, tmp4, tmp3);
2523
2524                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp5, mips_zero, "OverflowException");
2525                 /* Make decompse and method-to-ir.c happy, last insn writes dreg */
2526                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ins->dreg, ins->dreg);
2527                 NULLIFY_INS(ins);
2528                 break;
2529
2530         case OP_ISUB_OVF_UN:
2531                 tmp1 = mono_alloc_ireg (cfg);
2532
2533                 MONO_EMIT_NEW_BIALU (cfg, OP_ISUB, ins->dreg, ins->sreg1, ins->sreg2);
2534                 MONO_EMIT_NEW_BIALU (cfg, OP_MIPS_SLTU, tmp1, ins->sreg1, ins->dreg);
2535                 MONO_EMIT_NEW_COMPARE_EXC (cfg, NE_UN, tmp1, mips_zero, "OverflowException");
2536                 /* Make decompse and method-to-ir.c happy, last insn writes dreg */
2537                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ins->dreg, ins->dreg);
2538                 NULLIFY_INS(ins);
2539                 break;
2540         }
2541 }
2542
2543 static int
2544 map_to_reg_reg_op (int op)
2545 {
2546         switch (op) {
2547         case OP_ADD_IMM:
2548                 return OP_IADD;
2549         case OP_SUB_IMM:
2550                 return OP_ISUB;
2551         case OP_AND_IMM:
2552                 return OP_IAND;
2553         case OP_COMPARE_IMM:
2554                 return OP_COMPARE;
2555         case OP_ICOMPARE_IMM:
2556                 return OP_ICOMPARE;
2557         case OP_LCOMPARE_IMM:
2558                 return OP_LCOMPARE;
2559         case OP_ADDCC_IMM:
2560                 return OP_IADDCC;
2561         case OP_ADC_IMM:
2562                 return OP_IADC;
2563         case OP_SUBCC_IMM:
2564                 return OP_ISUBCC;
2565         case OP_SBB_IMM:
2566                 return OP_ISBB;
2567         case OP_OR_IMM:
2568                 return OP_IOR;
2569         case OP_XOR_IMM:
2570                 return OP_IXOR;
2571         case OP_MUL_IMM:
2572                 return OP_IMUL;
2573         case OP_LOAD_MEMBASE:
2574                 return OP_LOAD_MEMINDEX;
2575         case OP_LOADI4_MEMBASE:
2576                 return OP_LOADI4_MEMINDEX;
2577         case OP_LOADU4_MEMBASE:
2578                 return OP_LOADU4_MEMINDEX;
2579         case OP_LOADU1_MEMBASE:
2580                 return OP_LOADU1_MEMINDEX;
2581         case OP_LOADI2_MEMBASE:
2582                 return OP_LOADI2_MEMINDEX;
2583         case OP_LOADU2_MEMBASE:
2584                 return OP_LOADU2_MEMINDEX;
2585         case OP_LOADI1_MEMBASE:
2586                 return OP_LOADI1_MEMINDEX;
2587         case OP_LOADR4_MEMBASE:
2588                 return OP_LOADR4_MEMINDEX;
2589         case OP_LOADR8_MEMBASE:
2590                 return OP_LOADR8_MEMINDEX;
2591         case OP_STOREI1_MEMBASE_REG:
2592                 return OP_STOREI1_MEMINDEX;
2593         case OP_STOREI2_MEMBASE_REG:
2594                 return OP_STOREI2_MEMINDEX;
2595         case OP_STOREI4_MEMBASE_REG:
2596                 return OP_STOREI4_MEMINDEX;
2597         case OP_STORE_MEMBASE_REG:
2598                 return OP_STORE_MEMINDEX;
2599         case OP_STORER4_MEMBASE_REG:
2600                 return OP_STORER4_MEMINDEX;
2601         case OP_STORER8_MEMBASE_REG:
2602                 return OP_STORER8_MEMINDEX;
2603         case OP_STORE_MEMBASE_IMM:
2604                 return OP_STORE_MEMBASE_REG;
2605         case OP_STOREI1_MEMBASE_IMM:
2606                 return OP_STOREI1_MEMBASE_REG;
2607         case OP_STOREI2_MEMBASE_IMM:
2608                 return OP_STOREI2_MEMBASE_REG;
2609         case OP_STOREI4_MEMBASE_IMM:
2610                 return OP_STOREI4_MEMBASE_REG;
2611         case OP_STOREI8_MEMBASE_IMM:
2612                 return OP_STOREI8_MEMBASE_REG;
2613         }
2614         return mono_op_imm_to_op (op);
2615 }
2616
2617 static int
2618 map_to_mips_op (int op)
2619 {
2620         switch (op) {
2621         case OP_FBEQ:
2622                 return OP_MIPS_FBEQ;
2623         case OP_FBGE:
2624                 return OP_MIPS_FBGE;
2625         case OP_FBGT:
2626                 return OP_MIPS_FBGT;
2627         case OP_FBLE:
2628                 return OP_MIPS_FBLE;
2629         case OP_FBLT:
2630                 return OP_MIPS_FBLT;
2631         case OP_FBNE_UN:
2632                 return OP_MIPS_FBNE;
2633         case OP_FBGE_UN:
2634                 return OP_MIPS_FBGE_UN;
2635         case OP_FBGT_UN:
2636                 return OP_MIPS_FBGT_UN;
2637         case OP_FBLE_UN:
2638                 return OP_MIPS_FBLE_UN;
2639         case OP_FBLT_UN:
2640                 return OP_MIPS_FBLT_UN;
2641
2642         case OP_FCEQ:
2643         case OP_FCGT:
2644         case OP_FCGT_UN:
2645         case OP_FCLT:
2646         case OP_FCLT_UN:
2647         default:
2648                 g_warning ("unknown opcode %s in %s()\n", mono_inst_name (op), __FUNCTION__);
2649                 g_assert_not_reached ();
2650         }
2651 }
2652
2653 #define NEW_INS(cfg,after,dest,op) do {                                 \
2654                 MONO_INST_NEW((cfg), (dest), (op));                     \
2655                 mono_bblock_insert_after_ins (bb, (after), (dest));     \
2656         } while (0)
2657
2658 #define INS(pos,op,_dreg,_sreg1,_sreg2) do {            \
2659                 MonoInst *temp;                                         \
2660                 MONO_INST_NEW(cfg, temp, (op));                         \
2661                 mono_bblock_insert_after_ins (bb, (pos), temp);         \
2662                 temp->dreg = (_dreg);                                   \
2663                 temp->sreg1 = (_sreg1);                                 \
2664                 temp->sreg2 = (_sreg2);                                 \
2665                 pos = temp;                                             \
2666         } while (0)
2667
2668 #define INS_IMM(pos,op,_dreg,_sreg1,_imm) do {          \
2669                 MonoInst *temp;                                         \
2670                 MONO_INST_NEW(cfg, temp, (op));                         \
2671                 mono_bblock_insert_after_ins (bb, (pos), temp);         \
2672                 temp->dreg = (_dreg);                                   \
2673                 temp->sreg1 = (_sreg1);                                 \
2674                 temp->inst_c0 = (_imm);                                 \
2675                 pos = temp;                                             \
2676         } while (0)
2677
2678 /*
2679  * Remove from the instruction list the instructions that can't be
2680  * represented with very simple instructions with no register
2681  * requirements.
2682  */
2683 void
2684 mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
2685 {
2686         MonoInst *ins, *next, *temp, *last_ins = NULL;
2687         int imm;
2688
2689 #if 1
2690         if (cfg->verbose_level > 2) {
2691                 int idx = 0;
2692
2693                 g_print ("BASIC BLOCK %d (before lowering)\n", bb->block_num);
2694                 MONO_BB_FOR_EACH_INS (bb, ins) {
2695                         mono_print_ins_index (idx++, ins);
2696                 }
2697                 
2698         }
2699 #endif
2700
2701         MONO_BB_FOR_EACH_INS (bb, ins) {
2702 loop_start:
2703                 switch (ins->opcode) {
2704                 case OP_COMPARE:
2705                 case OP_ICOMPARE:
2706                 case OP_LCOMPARE:
2707                         next = ins->next;
2708                         /* Branch opts can eliminate the branch */
2709                         if (!next || (!(MONO_IS_COND_BRANCH_OP (next) || MONO_IS_COND_EXC (next) || MONO_IS_SETCC (next)))) {
2710                                 NULLIFY_INS(ins);
2711                                 break;
2712                         }
2713                         break;
2714
2715                 case OP_COMPARE_IMM:
2716                 case OP_ICOMPARE_IMM:
2717                 case OP_LCOMPARE_IMM:
2718                         next = ins->next;
2719                         /* Branch opts can eliminate the branch */
2720                         if (!next || (!(MONO_IS_COND_BRANCH_OP (next) || MONO_IS_COND_EXC (next) || MONO_IS_SETCC (next)))) {
2721                                 NULLIFY_INS(ins);
2722                                 break;
2723                         }
2724                         if (ins->inst_imm) {
2725                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2726                                 temp->inst_c0 = ins->inst_imm;
2727                                 temp->dreg = mono_alloc_ireg (cfg);
2728                                 ins->sreg2 = temp->dreg;
2729                                 last_ins = temp;
2730                         }
2731                         else {
2732                                 ins->sreg2 = mips_zero;
2733                         }
2734                         if (ins->opcode == OP_COMPARE_IMM)
2735                                 ins->opcode = OP_COMPARE;
2736                         else if (ins->opcode == OP_ICOMPARE_IMM)
2737                                 ins->opcode = OP_ICOMPARE;
2738                         else if (ins->opcode == OP_LCOMPARE_IMM)
2739                                 ins->opcode = OP_LCOMPARE;
2740                         goto loop_start;
2741
2742                 case OP_IDIV_UN_IMM:
2743                 case OP_IDIV_IMM:
2744                 case OP_IREM_IMM:
2745                 case OP_IREM_UN_IMM:
2746                         NEW_INS (cfg, last_ins, temp, OP_ICONST);
2747                         temp->inst_c0 = ins->inst_imm;
2748                         temp->dreg = mono_alloc_ireg (cfg);
2749                         ins->sreg2 = temp->dreg;
2750                         if (ins->opcode == OP_IDIV_IMM)
2751                                 ins->opcode = OP_IDIV;
2752                         else if (ins->opcode == OP_IREM_IMM)
2753                                 ins->opcode = OP_IREM;
2754                         else if (ins->opcode == OP_IDIV_UN_IMM)
2755                                 ins->opcode = OP_IDIV_UN;
2756                         else if (ins->opcode == OP_IREM_UN_IMM)
2757                                 ins->opcode = OP_IREM_UN;
2758                         last_ins = temp;
2759                         /* handle rem separately */
2760                         goto loop_start;
2761
2762 #if 0
2763                 case OP_AND_IMM:
2764                 case OP_OR_IMM:
2765                 case OP_XOR_IMM:
2766                         if ((ins->inst_imm & 0xffff0000) && (ins->inst_imm & 0xffff)) {
2767                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2768                                 temp->inst_c0 = ins->inst_imm;
2769                                 temp->dreg = mono_alloc_ireg (cfg);
2770                                 ins->sreg2 = temp->dreg;
2771                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2772                         }
2773                         break;
2774 #endif
2775                 case OP_AND_IMM:
2776                 case OP_IAND_IMM:
2777                 case OP_OR_IMM:
2778                 case OP_IOR_IMM:
2779                 case OP_XOR_IMM:
2780                 case OP_IXOR_IMM:
2781                         /* unsigned 16 bit immediate */
2782                         if (ins->inst_imm & 0xffff0000) {
2783                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2784                                 temp->inst_c0 = ins->inst_imm;
2785                                 temp->dreg = mono_alloc_ireg (cfg);
2786                                 ins->sreg2 = temp->dreg;
2787                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2788                         }
2789                         break;
2790
2791                 case OP_IADD_IMM:
2792                 case OP_ADD_IMM:
2793                 case OP_ADDCC_IMM:
2794                         /* signed 16 bit immediate */
2795                         if (!mips_is_imm16 (ins->inst_imm)) {
2796                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2797                                 temp->inst_c0 = ins->inst_imm;
2798                                 temp->dreg = mono_alloc_ireg (cfg);
2799                                 ins->sreg2 = temp->dreg;
2800                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2801                         }
2802                         break;
2803
2804                 case OP_SUB_IMM:
2805                 case OP_ISUB_IMM:
2806                         if (!mips_is_imm16 (-ins->inst_imm)) {
2807                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2808                                 temp->inst_c0 = ins->inst_imm;
2809                                 temp->dreg = mono_alloc_ireg (cfg);
2810                                 ins->sreg2 = temp->dreg;
2811                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2812                         }
2813                         break;
2814
2815                 case OP_MUL_IMM:
2816                 case OP_IMUL_IMM:
2817                         if (ins->inst_imm == 1) {
2818                                 ins->opcode = OP_MOVE;
2819                                 break;
2820                         }
2821                         if (ins->inst_imm == 0) {
2822                                 ins->opcode = OP_ICONST;
2823                                 ins->inst_c0 = 0;
2824                                 break;
2825                         }
2826                         imm = mono_is_power_of_two (ins->inst_imm);
2827                         if (imm > 0) {
2828                                 ins->opcode = OP_SHL_IMM;
2829                                 ins->inst_imm = imm;
2830                                 break;
2831                         }
2832                         NEW_INS (cfg, last_ins, temp, OP_ICONST);
2833                         temp->inst_c0 = ins->inst_imm;
2834                         temp->dreg = mono_alloc_ireg (cfg);
2835                         ins->sreg2 = temp->dreg;
2836                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2837                         break;
2838
2839                 case OP_LOCALLOC_IMM:
2840                         NEW_INS (cfg, last_ins, temp, OP_ICONST);
2841                         temp->inst_c0 = ins->inst_imm;
2842                         temp->dreg = mono_alloc_ireg (cfg);
2843                         ins->sreg1 = temp->dreg;
2844                         ins->opcode = OP_LOCALLOC;
2845                         break;
2846
2847                 case OP_LOADR4_MEMBASE:
2848                 case OP_STORER4_MEMBASE_REG:
2849                         /* we can do two things: load the immed in a register
2850                          * and use an indexed load, or see if the immed can be
2851                          * represented as an ad_imm + a load with a smaller offset
2852                          * that fits. We just do the first for now, optimize later.
2853                          */
2854                         if (mips_is_imm16 (ins->inst_offset))
2855                                 break;
2856                         NEW_INS (cfg, last_ins, temp, OP_ICONST);
2857                         temp->inst_c0 = ins->inst_offset;
2858                         temp->dreg = mono_alloc_ireg (cfg);
2859                         ins->sreg2 = temp->dreg;
2860                         ins->opcode = map_to_reg_reg_op (ins->opcode);
2861                         break;
2862
2863                 case OP_STORE_MEMBASE_IMM:
2864                 case OP_STOREI1_MEMBASE_IMM:
2865                 case OP_STOREI2_MEMBASE_IMM:
2866                 case OP_STOREI4_MEMBASE_IMM:
2867                 case OP_STOREI8_MEMBASE_IMM:
2868                         if (!ins->inst_imm) {
2869                                 ins->sreg1 = mips_zero;
2870                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2871                         }
2872                         else {
2873                                 NEW_INS (cfg, last_ins, temp, OP_ICONST);
2874                                 temp->inst_c0 = ins->inst_imm;
2875                                 temp->dreg = mono_alloc_ireg (cfg);
2876                                 ins->sreg1 = temp->dreg;
2877                                 ins->opcode = map_to_reg_reg_op (ins->opcode);
2878                                 last_ins = temp;
2879                                 goto loop_start; /* make it handle the possibly big ins->inst_offset */
2880                         }
2881                         break;
2882
2883                 case OP_FCOMPARE:
2884                         next = ins->next;
2885                         /* Branch opts can eliminate the branch */
2886                         if (!next || (!(MONO_IS_COND_BRANCH_OP (next) || MONO_IS_COND_EXC (next) || MONO_IS_SETCC (next)))) {
2887                                 NULLIFY_INS(ins);
2888                                 break;
2889                         }
2890                         g_assert(next);
2891
2892                         /*
2893                          * remap compare/branch and compare/set
2894                          * to MIPS specific opcodes.
2895                          */
2896                         next->opcode = map_to_mips_op (next->opcode);
2897                         next->sreg1 = ins->sreg1;
2898                         next->sreg2 = ins->sreg2;
2899                         NULLIFY_INS(ins);
2900                         break;
2901
2902 #if 0
2903                 case OP_R8CONST:
2904                 case OP_R4CONST:
2905                         NEW_INS (cfg, last_ins, temp, OP_ICONST);
2906                         temp->inst_c0 = (guint32)ins->inst_p0;
2907                         temp->dreg = mono_alloc_ireg (cfg);
2908                         ins->inst_basereg = temp->dreg;
2909                         ins->inst_offset = 0;
2910                         ins->opcode = ins->opcode == OP_R4CONST? OP_LOADR4_MEMBASE: OP_LOADR8_MEMBASE;
2911                         last_ins = temp;
2912                         /* make it handle the possibly big ins->inst_offset
2913                          * later optimize to use lis + load_membase
2914                          */
2915                         goto loop_start;
2916 #endif
2917                 case OP_IBEQ:
2918                         g_assert (ins_is_compare(last_ins));
2919                         INS_REWRITE(ins, OP_MIPS_BEQ, last_ins->sreg1, last_ins->sreg2);
2920                         NULLIFY_INS(last_ins);
2921                         break;
2922
2923                 case OP_IBNE_UN:
2924                         g_assert (ins_is_compare(last_ins));
2925                         INS_REWRITE(ins, OP_MIPS_BNE, last_ins->sreg1, last_ins->sreg2);
2926                         NULLIFY_INS(last_ins);
2927                         break;
2928
2929                 case OP_IBGE:
2930                         g_assert (ins_is_compare(last_ins));
2931                         INS_REWRITE(last_ins, OP_MIPS_SLT, last_ins->sreg1, last_ins->sreg2);
2932                         last_ins->dreg = mono_alloc_ireg (cfg);
2933                         INS_REWRITE(ins, OP_MIPS_BEQ, last_ins->dreg, mips_zero);
2934                         break;
2935
2936                 case OP_IBGE_UN:
2937                         g_assert (ins_is_compare(last_ins));
2938                         INS_REWRITE(last_ins, OP_MIPS_SLTU, last_ins->sreg1, last_ins->sreg2);
2939                         last_ins->dreg = mono_alloc_ireg (cfg);
2940                         INS_REWRITE(ins, OP_MIPS_BEQ, last_ins->dreg, mips_zero);
2941                         break;
2942
2943                 case OP_IBLT:
2944                         g_assert (ins_is_compare(last_ins));
2945                         INS_REWRITE(last_ins, OP_MIPS_SLT, last_ins->sreg1, last_ins->sreg2);
2946                         last_ins->dreg = mono_alloc_ireg (cfg);
2947                         INS_REWRITE(ins, OP_MIPS_BNE, last_ins->dreg, mips_zero);
2948                         break;
2949
2950                 case OP_IBLT_UN:
2951                         g_assert (ins_is_compare(last_ins));
2952                         INS_REWRITE(last_ins, OP_MIPS_SLTU, last_ins->sreg1, last_ins->sreg2);
2953                         last_ins->dreg = mono_alloc_ireg (cfg);
2954                         INS_REWRITE(ins, OP_MIPS_BNE, last_ins->dreg, mips_zero);
2955                         break;
2956
2957                 case OP_IBLE:
2958                         g_assert (ins_is_compare(last_ins));
2959                         INS_REWRITE(last_ins, OP_MIPS_SLT, last_ins->sreg2, last_ins->sreg1);
2960                         last_ins->dreg = mono_alloc_ireg (cfg);
2961                         INS_REWRITE(ins, OP_MIPS_BEQ, last_ins->dreg, mips_zero);
2962                         break;
2963
2964                 case OP_IBLE_UN:
2965                         g_assert (ins_is_compare(last_ins));
2966                         INS_REWRITE(last_ins, OP_MIPS_SLTU, last_ins->sreg2, last_ins->sreg1);
2967                         last_ins->dreg = mono_alloc_ireg (cfg);
2968                         INS_REWRITE(ins, OP_MIPS_BEQ, last_ins->dreg, mips_zero);
2969                         break;
2970
2971                 case OP_IBGT:
2972                         g_assert (ins_is_compare(last_ins));
2973                         INS_REWRITE(last_ins, OP_MIPS_SLT, last_ins->sreg2, last_ins->sreg1);
2974                         last_ins->dreg = mono_alloc_ireg (cfg);
2975                         INS_REWRITE(ins, OP_MIPS_BNE, last_ins->dreg, mips_zero);
2976                         break;
2977
2978                 case OP_IBGT_UN:
2979                         g_assert (ins_is_compare(last_ins));
2980                         INS_REWRITE(last_ins, OP_MIPS_SLTU, last_ins->sreg2, last_ins->sreg1);
2981                         last_ins->dreg = mono_alloc_ireg (cfg);
2982                         INS_REWRITE(ins, OP_MIPS_BNE, last_ins->dreg, mips_zero);
2983                         break;
2984
2985                 case OP_CEQ:
2986                 case OP_ICEQ:
2987                         g_assert (ins_is_compare(last_ins));
2988                         last_ins->opcode = OP_IXOR;
2989                         last_ins->dreg = mono_alloc_ireg(cfg);
2990                         INS_REWRITE_IMM(ins, OP_MIPS_SLTIU, last_ins->dreg, 1);
2991                         break;
2992
2993                 case OP_CLT:
2994                 case OP_ICLT:
2995                         INS_REWRITE(ins, OP_MIPS_SLT, last_ins->sreg1, last_ins->sreg2);
2996                         NULLIFY_INS(last_ins);
2997                         break;
2998
2999
3000                 case OP_CLT_UN:
3001                 case OP_ICLT_UN:
3002                         INS_REWRITE(ins, OP_MIPS_SLTU, last_ins->sreg1, last_ins->sreg2);
3003                         NULLIFY_INS(last_ins);
3004                         break;
3005
3006                 case OP_CGT:
3007                 case OP_ICGT:
3008                         g_assert (ins_is_compare(last_ins));
3009                         INS_REWRITE(ins, OP_MIPS_SLT, last_ins->sreg2, last_ins->sreg1);
3010                         MONO_DELETE_INS(bb, last_ins);
3011                         break;
3012
3013                 case OP_CGT_UN:
3014                 case OP_ICGT_UN:
3015                         g_assert (ins_is_compare(last_ins));
3016                         INS_REWRITE(ins, OP_MIPS_SLTU, last_ins->sreg2, last_ins->sreg1);
3017                         MONO_DELETE_INS(bb, last_ins);
3018                         break;
3019
3020                 case OP_COND_EXC_EQ:
3021                 case OP_COND_EXC_IEQ:
3022                         g_assert (ins_is_compare(last_ins));
3023                         INS_REWRITE(ins, OP_MIPS_COND_EXC_EQ, last_ins->sreg1, last_ins->sreg2);
3024                         MONO_DELETE_INS(bb, last_ins);
3025                         break;
3026
3027                 case OP_COND_EXC_GE:
3028                 case OP_COND_EXC_IGE:
3029                         g_assert (ins_is_compare(last_ins));
3030                         INS_REWRITE(ins, OP_MIPS_COND_EXC_GE, last_ins->sreg1, last_ins->sreg2);
3031                         MONO_DELETE_INS(bb, last_ins);
3032                         break;
3033
3034                 case OP_COND_EXC_GT:
3035                 case OP_COND_EXC_IGT:
3036                         g_assert (ins_is_compare(last_ins));
3037                         INS_REWRITE(ins, OP_MIPS_COND_EXC_GT, last_ins->sreg1, last_ins->sreg2);
3038                         MONO_DELETE_INS(bb, last_ins);
3039                         break;
3040
3041                 case OP_COND_EXC_LE:
3042                 case OP_COND_EXC_ILE:
3043                         g_assert (ins_is_compare(last_ins));
3044                         INS_REWRITE(ins, OP_MIPS_COND_EXC_LE, last_ins->sreg1, last_ins->sreg2);
3045                         MONO_DELETE_INS(bb, last_ins);
3046                         break;
3047
3048                 case OP_COND_EXC_LT:
3049                 case OP_COND_EXC_ILT:
3050                         g_assert (ins_is_compare(last_ins));
3051                         INS_REWRITE(ins, OP_MIPS_COND_EXC_LT, last_ins->sreg1, last_ins->sreg2);
3052                         MONO_DELETE_INS(bb, last_ins);
3053                         break;
3054
3055                 case OP_COND_EXC_NE_UN:
3056                 case OP_COND_EXC_INE_UN:
3057                         g_assert (ins_is_compare(last_ins));
3058                         INS_REWRITE(ins, OP_MIPS_COND_EXC_NE_UN, last_ins->sreg1, last_ins->sreg2);
3059                         MONO_DELETE_INS(bb, last_ins);
3060                         break;
3061
3062                 case OP_COND_EXC_GE_UN:
3063                 case OP_COND_EXC_IGE_UN:
3064                         g_assert (ins_is_compare(last_ins));
3065                         INS_REWRITE(ins, OP_MIPS_COND_EXC_GE_UN, last_ins->sreg1, last_ins->sreg2);
3066                         MONO_DELETE_INS(bb, last_ins);
3067                         break;
3068
3069                 case OP_COND_EXC_GT_UN:
3070                 case OP_COND_EXC_IGT_UN:
3071                         g_assert (ins_is_compare(last_ins));
3072                         INS_REWRITE(ins, OP_MIPS_COND_EXC_GT_UN, last_ins->sreg1, last_ins->sreg2);
3073                         MONO_DELETE_INS(bb, last_ins);
3074                         break;
3075
3076                 case OP_COND_EXC_LE_UN:
3077                 case OP_COND_EXC_ILE_UN:
3078                         g_assert (ins_is_compare(last_ins));
3079                         INS_REWRITE(ins, OP_MIPS_COND_EXC_LE_UN, last_ins->sreg1, last_ins->sreg2);
3080                         MONO_DELETE_INS(bb, last_ins);
3081                         break;
3082
3083                 case OP_COND_EXC_LT_UN:
3084                 case OP_COND_EXC_ILT_UN:
3085                         g_assert (ins_is_compare(last_ins));
3086                         INS_REWRITE(ins, OP_MIPS_COND_EXC_LT_UN, last_ins->sreg1, last_ins->sreg2);
3087                         MONO_DELETE_INS(bb, last_ins);
3088                         break;
3089
3090                 case OP_COND_EXC_OV:
3091                 case OP_COND_EXC_IOV: {
3092                         int tmp1, tmp2, tmp3, tmp4, tmp5;
3093                         MonoInst *pos = last_ins;
3094
3095                         /* Overflow happens if
3096                          *      neg + neg = pos    or
3097                          *      pos + pos = neg
3098                          *
3099                          * (bit31s of operands match) AND (bit31 of operand
3100                          * != bit31 of result)
3101                          * XOR of the high bit returns 0 if the signs match
3102                          * XOR of that with the high bit of the result return 1
3103                          * if overflow.
3104                          */
3105                         g_assert (last_ins->opcode == OP_IADC);
3106
3107                         tmp1 = mono_alloc_ireg (cfg);
3108                         tmp2 = mono_alloc_ireg (cfg);
3109                         tmp3 = mono_alloc_ireg (cfg);
3110                         tmp4 = mono_alloc_ireg (cfg);
3111                         tmp5 = mono_alloc_ireg (cfg);
3112
3113                         /* tmp1 = 0 if the signs of the two inputs match, else 1 */
3114                         INS (pos, OP_IXOR, tmp1, last_ins->sreg1, last_ins->sreg2);
3115
3116                         /* set tmp2 = 0 if bit31 of results matches is different than the operands */
3117                         INS (pos, OP_IXOR, tmp2, last_ins->dreg, last_ins->sreg2);
3118                         INS (pos, OP_INOT, tmp3, tmp2, -1);
3119
3120                         /* OR(tmp1, tmp2) = 0 if both conditions are true */
3121                         INS (pos, OP_IOR, tmp4, tmp3, tmp1);
3122                         INS_IMM (pos, OP_SHR_IMM, tmp5, tmp4, 31);
3123
3124                         /* Now, if (tmp5 == 0) then overflow */
3125                         INS_REWRITE(ins, OP_MIPS_COND_EXC_EQ, tmp5, mips_zero);
3126                         ins->dreg = -1;
3127                         break;
3128                         }
3129
3130                 case OP_COND_EXC_NO:
3131                 case OP_COND_EXC_INO:
3132                         g_assert_not_reached ();
3133                         break;
3134
3135                 case OP_COND_EXC_C:
3136                 case OP_COND_EXC_IC:
3137                         g_assert_not_reached ();
3138                         break;
3139
3140                 case OP_COND_EXC_NC:
3141                 case OP_COND_EXC_INC:
3142                         g_assert_not_reached ();
3143                         break;
3144
3145                 }
3146                 last_ins = ins;
3147         }
3148         bb->last_ins = last_ins;
3149         bb->max_vreg = cfg->next_vreg;
3150
3151 #if 1
3152         if (cfg->verbose_level > 2) {
3153                 int idx = 0;
3154
3155                 g_print ("BASIC BLOCK %d (after lowering)\n", bb->block_num);
3156                 MONO_BB_FOR_EACH_INS (bb, ins) {
3157                         mono_print_ins_index (idx++, ins);
3158                 }
3159                 
3160         }
3161 #endif
3162
3163 }
3164
3165 static guchar*
3166 emit_float_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
3167 {
3168         /* sreg is a float, dreg is an integer reg. mips_at is used as scratch */
3169 #if 1
3170         mips_truncwd (code, mips_ftemp, sreg);
3171 #else
3172         mips_cvtwd (code, mips_ftemp, sreg);
3173 #endif
3174         mips_mfc1 (code, dreg, mips_ftemp);
3175         if (!is_signed) {
3176                 if (size == 1)
3177                         mips_andi (code, dreg, dreg, 0xff);
3178                 else if (size == 2) {
3179                         mips_sll (code, dreg, dreg, 16);
3180                         mips_srl (code, dreg, dreg, 16);
3181                 }
3182         } else {
3183                 if (size == 1) {
3184                         mips_sll (code, dreg, dreg, 24);
3185                         mips_sra (code, dreg, dreg, 24);
3186                 }
3187                 else if (size == 2) {
3188                         mips_sll (code, dreg, dreg, 16);
3189                         mips_sra (code, dreg, dreg, 16);
3190                 }
3191         }
3192         return code;
3193 }
3194
3195 /*
3196  * emit_load_volatile_arguments:
3197  *
3198  * Load volatile arguments from the stack to the original input registers.
3199  * Required before a tail call.
3200  */
3201 static guint8 *
3202 emit_load_volatile_arguments(MonoCompile *cfg, guint8 *code)
3203 {
3204         MonoMethod *method = cfg->method;
3205         MonoMethodSignature *sig;
3206         MonoInst *inst;
3207         CallInfo *cinfo;
3208         int i;
3209
3210         sig = mono_method_signature (method);
3211
3212         if (!cfg->arch.cinfo)
3213                 cfg->arch.cinfo = get_call_info (cfg->generic_sharing_context, cfg->mempool, sig);
3214         cinfo = cfg->arch.cinfo;
3215
3216         if (cinfo->struct_ret) {
3217                 ArgInfo *ainfo = &cinfo->ret;
3218                 inst = cfg->vret_addr;
3219                 mips_lw (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3220         }
3221
3222         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
3223                 ArgInfo *ainfo = cinfo->args + i;
3224                 inst = cfg->args [i];
3225                 if (inst->opcode == OP_REGVAR) {
3226                         if (ainfo->storage == ArgInIReg)
3227                                 MIPS_MOVE (code, ainfo->reg, inst->dreg);
3228                         else if (ainfo->storage == ArgInFReg)
3229                                 g_assert_not_reached();
3230                         else if (ainfo->storage == ArgOnStack) {
3231                                 /* do nothing */
3232                         } else
3233                                 g_assert_not_reached ();
3234                 } else {
3235                         if (ainfo->storage == ArgInIReg) {
3236                                 g_assert (mips_is_imm16 (inst->inst_offset));
3237                                 switch (ainfo->size) {
3238                                 case 1:
3239                                         mips_lb (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3240                                         break;
3241                                 case 2:
3242                                         mips_lh (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3243                                         break;
3244                                 case 0: /* XXX */
3245                                 case 4:
3246                                         mips_lw (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3247                                         break;
3248                                 case 8:
3249                                         mips_lw (code, ainfo->reg, inst->inst_basereg, inst->inst_offset + ls_word_offset);
3250                                         mips_lw (code, ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + ms_word_offset);
3251                                         break;
3252                                 default:
3253                                         g_assert_not_reached ();
3254                                         break;
3255                                 }
3256                         } else if (ainfo->storage == ArgOnStack) {
3257                                 /* do nothing */
3258                         } else if (ainfo->storage == ArgInFReg) {
3259                                 g_assert (mips_is_imm16 (inst->inst_offset));
3260                                 if (ainfo->size == 8) {
3261 #if _MIPS_SIM == _ABIO32
3262                                         mips_lwc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset + ls_word_offset);
3263                                         mips_lwc1 (code, ainfo->reg+1, inst->inst_basereg, inst->inst_offset + ms_word_offset);
3264 #elif _MIPS_SIM == _ABIN32
3265                                         mips_ldc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3266 #endif
3267                                 }
3268                                 else if (ainfo->size == 4)
3269                                         mips_lwc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3270                                 else
3271                                         g_assert_not_reached ();
3272                         } else if (ainfo->storage == ArgStructByVal) {
3273                                 int i;
3274                                 int doffset = inst->inst_offset;
3275
3276                                 g_assert (mips_is_imm16 (inst->inst_offset));
3277                                 g_assert (mips_is_imm16 (inst->inst_offset + ainfo->size * sizeof (gpointer)));
3278                                 for (i = 0; i < ainfo->size; ++i) {
3279                                         mips_lw (code, ainfo->reg + i, inst->inst_basereg, doffset);
3280                                         doffset += SIZEOF_REGISTER;
3281                                 }
3282                         } else if (ainfo->storage == ArgStructByAddr) {
3283                                 g_assert (mips_is_imm16 (inst->inst_offset));
3284                                 mips_lw (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
3285                         } else
3286                                 g_assert_not_reached ();
3287                 }
3288         }
3289
3290         return code;
3291 }
3292
3293 static guint8*
3294 emit_reserve_param_area (MonoCompile *cfg, guint8 *code)
3295 {
3296         int size = cfg->param_area;
3297
3298         size += MONO_ARCH_FRAME_ALIGNMENT - 1;
3299         size &= -MONO_ARCH_FRAME_ALIGNMENT;
3300
3301         if (!size)
3302                 return code;
3303 #if 0
3304         ppc_lwz (code, ppc_r0, 0, ppc_sp);
3305         if (ppc_is_imm16 (-size)) {
3306                 ppc_stwu (code, ppc_r0, -size, ppc_sp);
3307         } else {
3308                 ppc_load (code, ppc_r12, -size);
3309                 ppc_stwux (code, ppc_r0, ppc_sp, ppc_r12);
3310         }
3311 #endif
3312         return code;
3313 }
3314
3315 static guint8*
3316 emit_unreserve_param_area (MonoCompile *cfg, guint8 *code)
3317 {
3318         int size = cfg->param_area;
3319
3320         size += MONO_ARCH_FRAME_ALIGNMENT - 1;
3321         size &= -MONO_ARCH_FRAME_ALIGNMENT;
3322
3323         if (!size)
3324                 return code;
3325 #if 0
3326         ppc_lwz (code, ppc_r0, 0, ppc_sp);
3327         if (ppc_is_imm16 (size)) {
3328                 ppc_stwu (code, ppc_r0, size, ppc_sp);
3329         } else {
3330                 ppc_load (code, ppc_r12, size);
3331                 ppc_stwux (code, ppc_r0, ppc_sp, ppc_r12);
3332         }
3333 #endif
3334         return code;
3335 }
3336
3337 void
3338 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
3339 {
3340         MonoInst *ins;
3341         MonoCallInst *call;
3342         guint offset;
3343         guint8 *code = cfg->native_code + cfg->code_len;
3344         MonoInst *last_ins = NULL;
3345         guint last_offset = 0;
3346         int max_len, cpos;
3347         int ins_cnt = 0;
3348
3349         /* we don't align basic blocks of loops on mips */
3350
3351         if (cfg->verbose_level > 2)
3352                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
3353
3354         cpos = bb->max_offset;
3355
3356 #if 0
3357         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
3358                 MonoCoverageInfo *cov = mono_get_coverage_info (cfg->method);
3359                 g_assert (!mono_compile_aot);
3360                 cpos += 20;
3361                 if (bb->cil_code)
3362                         cov->data [bb->dfn].iloffset = bb->cil_code - cfg->cil_code;
3363                 /* this is not thread save, but good enough */
3364                 /* fixme: howto handle overflows? */
3365                 mips_load_const (code, mips_at, &cov->data [bb->dfn].count);
3366                 mips_lw (code, mips_temp, mips_at, 0);
3367                 mips_addiu (code, mips_temp, mips_temp, 1);
3368                 mips_sw (code, mips_temp, mips_at, 0);
3369         }
3370 #endif
3371         MONO_BB_FOR_EACH_INS (bb, ins) {
3372                 offset = code - cfg->native_code;
3373
3374                 max_len = ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
3375
3376                 if (offset > (cfg->code_size - max_len - 16)) {
3377                         cfg->code_size *= 2;
3378                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
3379                         code = cfg->native_code + offset;
3380                 }
3381                 mono_debug_record_line_number (cfg, ins, offset);
3382                 if (cfg->verbose_level > 2) {
3383                         g_print ("    @ 0x%x\t", offset);
3384                         mono_print_ins_index (ins_cnt++, ins);
3385                 }
3386                 /* Check for virtual regs that snuck by */
3387                 g_assert ((ins->dreg >= -1) && (ins->dreg < 32));
3388
3389                 switch (ins->opcode) {
3390                 case OP_RELAXED_NOP:
3391                 case OP_NOP:
3392                 case OP_DUMMY_USE:
3393                 case OP_DUMMY_STORE:
3394                 case OP_NOT_REACHED:
3395                 case OP_NOT_NULL:
3396                         break;
3397                 case OP_IL_SEQ_POINT:
3398                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
3399                         break;
3400                 case OP_SEQ_POINT: {
3401                         if (ins->flags & MONO_INST_SINGLE_STEP_LOC) {
3402                                 guint32 addr = (guint32)ss_trigger_page;
3403
3404                                 mips_load_const (code, mips_t9, addr);
3405                                 mips_lw (code, mips_t9, mips_t9, 0);
3406                         }
3407
3408                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
3409
3410                         /*
3411                          * A placeholder for a possible breakpoint inserted by
3412                          * mono_arch_set_breakpoint ().
3413                          */
3414                         /* mips_load_const () + mips_lw */
3415                         mips_nop (code);
3416                         mips_nop (code);
3417                         mips_nop (code);
3418                         break;
3419                 }
3420                 case OP_TLS_GET:
3421                         g_assert_not_reached();
3422 #if 0
3423                         emit_tls_access (code, ins->dreg, ins->inst_offset);
3424 #endif
3425                         break;
3426                 case OP_BIGMUL:
3427                         mips_mult (code, ins->sreg1, ins->sreg2);
3428                         mips_mflo (code, ins->dreg);
3429                         mips_mfhi (code, ins->dreg+1);
3430                         break;
3431                 case OP_BIGMUL_UN:
3432                         mips_multu (code, ins->sreg1, ins->sreg2);
3433                         mips_mflo (code, ins->dreg);
3434                         mips_mfhi (code, ins->dreg+1);
3435                         break;
3436                 case OP_MEMORY_BARRIER:
3437                         mips_sync (code, 0);
3438                         break;
3439                 case OP_STOREI1_MEMBASE_IMM:
3440                         mips_load_const (code, mips_temp, ins->inst_imm);
3441                         if (mips_is_imm16 (ins->inst_offset)) {
3442                                 mips_sb (code, mips_temp, ins->inst_destbasereg, ins->inst_offset);
3443                         } else {
3444                                 mips_load_const (code, mips_at, ins->inst_offset);
3445                                 mips_sb (code, mips_temp, mips_at, ins->inst_destbasereg);
3446                         }
3447                         break;
3448                 case OP_STOREI2_MEMBASE_IMM:
3449                         mips_load_const (code, mips_temp, ins->inst_imm);
3450                         if (mips_is_imm16 (ins->inst_offset)) {
3451                                 mips_sh (code, mips_temp, ins->inst_destbasereg, ins->inst_offset);
3452                         } else {
3453                                 mips_load_const (code, mips_at, ins->inst_offset);
3454                                 mips_sh (code, mips_temp, mips_at, ins->inst_destbasereg);
3455                         }
3456                         break;
3457                 case OP_STOREI8_MEMBASE_IMM:
3458                         mips_load_const (code, mips_temp, ins->inst_imm);
3459                         if (mips_is_imm16 (ins->inst_offset)) {
3460                                 mips_sd (code, mips_temp, ins->inst_destbasereg, ins->inst_offset);
3461                         } else {
3462                                 mips_load_const (code, mips_at, ins->inst_offset);
3463                                 mips_sd (code, mips_temp, mips_at, ins->inst_destbasereg);
3464                         }
3465                         break;
3466                 case OP_STORE_MEMBASE_IMM:
3467                 case OP_STOREI4_MEMBASE_IMM:
3468                         mips_load_const (code, mips_temp, ins->inst_imm);
3469                         if (mips_is_imm16 (ins->inst_offset)) {
3470                                 mips_sw (code, mips_temp, ins->inst_destbasereg, ins->inst_offset);
3471                         } else {
3472                                 mips_load_const (code, mips_at, ins->inst_offset);
3473                                 mips_sw (code, mips_temp, mips_at, ins->inst_destbasereg);
3474                         }
3475                         break;
3476                 case OP_STOREI1_MEMBASE_REG:
3477                         if (mips_is_imm16 (ins->inst_offset)) {
3478                                 mips_sb (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3479                         } else {
3480                                 mips_load_const (code, mips_at, ins->inst_offset);
3481                                 mips_addu (code, mips_at, mips_at, ins->inst_destbasereg);
3482                                 mips_sb (code, ins->sreg1, mips_at, 0);
3483                         }
3484                         break;
3485                 case OP_STOREI2_MEMBASE_REG:
3486                         if (mips_is_imm16 (ins->inst_offset)) {
3487                                 mips_sh (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3488                         } else {
3489                                 mips_load_const (code, mips_at, ins->inst_offset);
3490                                 mips_addu (code, mips_at, mips_at, ins->inst_destbasereg);
3491                                 mips_sh (code, ins->sreg1, mips_at, 0);
3492                         }
3493                         break;
3494                 case OP_STORE_MEMBASE_REG:
3495                 case OP_STOREI4_MEMBASE_REG:
3496                         if (mips_is_imm16 (ins->inst_offset)) {
3497                                 mips_sw (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3498                         } else {
3499                                 mips_load_const (code, mips_at, ins->inst_offset);
3500                                 mips_addu (code, mips_at, mips_at, ins->inst_destbasereg);
3501                                 mips_sw (code, ins->sreg1, mips_at, 0);
3502                         }
3503                         break;
3504                 case OP_STOREI8_MEMBASE_REG:
3505                         if (mips_is_imm16 (ins->inst_offset)) {
3506                                 mips_sd (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3507                         } else {
3508                                 mips_load_const (code, mips_at, ins->inst_offset);
3509                                 mips_addu (code, mips_at, mips_at, ins->inst_destbasereg);
3510                                 mips_sd (code, ins->sreg1, mips_at, 0);
3511                         }
3512                         break;
3513                 case OP_LOADU4_MEM:
3514                         g_assert_not_reached ();
3515                         //x86_mov_reg_imm (code, ins->dreg, ins->inst_p0);
3516                         //x86_mov_reg_membase (code, ins->dreg, ins->dreg, 0, 4);
3517                         break;
3518                 case OP_LOADI8_MEMBASE:
3519                         if (mips_is_imm16 (ins->inst_offset)) {
3520                                 mips_ld (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3521                         } else {
3522                                 mips_load_const (code, mips_at, ins->inst_offset);
3523                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3524                                 mips_ld (code, ins->dreg, mips_at, 0);
3525                         }
3526                         break;
3527                 case OP_LOAD_MEMBASE:
3528                 case OP_LOADI4_MEMBASE:
3529                 case OP_LOADU4_MEMBASE:
3530                         g_assert (ins->dreg != -1);
3531                         if (mips_is_imm16 (ins->inst_offset)) {
3532                                 mips_lw (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3533                         } else {
3534                                 mips_load_const (code, mips_at, ins->inst_offset);
3535                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3536                                 mips_lw (code, ins->dreg, mips_at, 0);
3537                         }
3538                         break;
3539                 case OP_LOADI1_MEMBASE:
3540                         if (mips_is_imm16 (ins->inst_offset)) {
3541                                 mips_lb (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3542                         } else {
3543                                 mips_load_const (code, mips_at, ins->inst_offset);
3544                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3545                                 mips_lb (code, ins->dreg, mips_at, 0);
3546                         }
3547                         break;
3548                 case OP_LOADU1_MEMBASE:
3549                         if (mips_is_imm16 (ins->inst_offset)) {
3550                                 mips_lbu (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3551                         } else {
3552                                 mips_load_const (code, mips_at, ins->inst_offset);
3553                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3554                                 mips_lbu (code, ins->dreg, mips_at, 0);
3555                         }
3556                         break;
3557                 case OP_LOADI2_MEMBASE:
3558                         if (mips_is_imm16 (ins->inst_offset)) {
3559                                 mips_lh (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3560                         } else {
3561                                 mips_load_const (code, mips_at, ins->inst_offset);
3562                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3563                                 mips_lh (code, ins->dreg, mips_at, 0);
3564                         }
3565                         break;
3566                 case OP_LOADU2_MEMBASE:
3567                         if (mips_is_imm16 (ins->inst_offset)) {
3568                                 mips_lhu (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
3569                         } else {
3570                                 mips_load_const (code, mips_at, ins->inst_offset);
3571                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
3572                                 mips_lhu (code, ins->dreg, mips_at, 0);
3573                         }
3574                         break;
3575                 case OP_ICONV_TO_I1:
3576                         mips_sll (code, mips_at, ins->sreg1, 24);
3577                         mips_sra (code, ins->dreg, mips_at, 24);
3578                         break;
3579                 case OP_ICONV_TO_I2:
3580                         mips_sll (code, mips_at, ins->sreg1, 16);
3581                         mips_sra (code, ins->dreg, mips_at, 16);
3582                         break;
3583                 case OP_ICONV_TO_U1:
3584                         mips_andi (code, ins->dreg, ins->sreg1, 0xff);
3585                         break;
3586                 case OP_ICONV_TO_U2:
3587                         mips_sll (code, mips_at, ins->sreg1, 16);
3588                         mips_srl (code, ins->dreg, mips_at, 16);
3589                         break;
3590                 case OP_MIPS_SLT:
3591                         mips_slt (code, ins->dreg, ins->sreg1, ins->sreg2);
3592                         break;
3593                 case OP_MIPS_SLTI:
3594                         g_assert (mips_is_imm16 (ins->inst_imm));
3595                         mips_slti (code, ins->dreg, ins->sreg1, ins->inst_imm);
3596                         break;
3597                 case OP_MIPS_SLTU:
3598                         mips_sltu (code, ins->dreg, ins->sreg1, ins->sreg2);
3599                         break;
3600                 case OP_MIPS_SLTIU:
3601                         g_assert (mips_is_imm16 (ins->inst_imm));
3602                         mips_sltiu (code, ins->dreg, ins->sreg1, ins->inst_imm);
3603                         break;
3604                 case OP_BREAK:
3605                         /*
3606                          * gdb does not like encountering the hw breakpoint ins in the debugged code. 
3607                          * So instead of emitting a trap, we emit a call a C function and place a 
3608                          * breakpoint there.
3609                          */
3610                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3611                                                                  (gpointer)"mono_break");
3612                         mips_load (code, mips_t9, 0x1f1f1f1f);
3613                         mips_jalr (code, mips_t9, mips_ra);
3614                         mips_nop (code);
3615                         break;
3616                 case OP_IADD:
3617                         mips_addu (code, ins->dreg, ins->sreg1, ins->sreg2);
3618                         break;
3619                 case OP_LADD:
3620                         mips_daddu (code, ins->dreg, ins->sreg1, ins->sreg2);
3621                         break;
3622
3623                 case OP_ADD_IMM:
3624                 case OP_IADD_IMM:
3625                         g_assert (mips_is_imm16 (ins->inst_imm));
3626                         mips_addiu (code, ins->dreg, ins->sreg1, ins->inst_imm);
3627                         break;
3628                 case OP_LADD_IMM:
3629                         g_assert (mips_is_imm16 (ins->inst_imm));
3630                         mips_daddiu (code, ins->dreg, ins->sreg1, ins->inst_imm);
3631                         break;
3632
3633                 case OP_ISUB:
3634                         mips_subu (code, ins->dreg, ins->sreg1, ins->sreg2);
3635                         break;
3636                 case OP_LSUB:
3637                         mips_dsubu (code, ins->dreg, ins->sreg1, ins->sreg2);
3638                         break;
3639
3640                 case OP_ISUB_IMM:
3641                 case OP_SUB_IMM:
3642                         // we add the negated value
3643                         g_assert (mips_is_imm16 (-ins->inst_imm));
3644                         mips_addiu (code, ins->dreg, ins->sreg1, -ins->inst_imm);
3645                         break;
3646
3647                 case OP_LSUB_IMM:
3648                         // we add the negated value
3649                         g_assert (mips_is_imm16 (-ins->inst_imm));
3650                         mips_daddiu (code, ins->dreg, ins->sreg1, -ins->inst_imm);
3651                         break;
3652
3653                 case OP_IAND:
3654                 case OP_LAND:
3655                         mips_and (code, ins->dreg, ins->sreg1, ins->sreg2);
3656                         break;
3657
3658                 case OP_AND_IMM:
3659                 case OP_IAND_IMM:
3660                 case OP_LAND_IMM:
3661                         g_assert (!(ins->inst_imm & 0xffff0000));
3662                         mips_andi (code, ins->dreg, ins->sreg1, ins->inst_imm);
3663                         break;
3664
3665                 case OP_IDIV:
3666                 case OP_IREM: {
3667                         guint32 *divisor_is_m1;
3668                         guint32 *dividend_is_minvalue;
3669                         guint32 *divisor_is_zero;
3670
3671                         mips_load_const (code, mips_at, -1);
3672                         divisor_is_m1 = (guint32 *)(void *)code;
3673                         mips_bne (code, ins->sreg2, mips_at, 0);
3674                         mips_lui (code, mips_at, mips_zero, 0x8000);
3675                         dividend_is_minvalue = (guint32 *)(void *)code;
3676                         mips_bne (code, ins->sreg1, mips_at, 0);
3677                         mips_nop (code);
3678
3679                         /* Divide Int32.MinValue by -1 -- throw exception */
3680                         EMIT_SYSTEM_EXCEPTION_NAME("OverflowException");
3681
3682                         mips_patch (divisor_is_m1, (guint32)code);
3683                         mips_patch (dividend_is_minvalue, (guint32)code);
3684
3685                         /* Put divide in branch delay slot (NOT YET) */
3686                         divisor_is_zero = (guint32 *)(void *)code;
3687                         mips_bne (code, ins->sreg2, mips_zero, 0);
3688                         mips_nop (code);
3689
3690                         /* Divide by zero -- throw exception */
3691                         EMIT_SYSTEM_EXCEPTION_NAME("DivideByZeroException");
3692
3693                         mips_patch (divisor_is_zero, (guint32)code);
3694                         mips_div (code, ins->sreg1, ins->sreg2);
3695                         if (ins->opcode == OP_IDIV)
3696                                 mips_mflo (code, ins->dreg);
3697                         else
3698                                 mips_mfhi (code, ins->dreg);
3699                         break;
3700                 }
3701                 case OP_IDIV_UN: 
3702                 case OP_IREM_UN: {
3703                         guint32 *divisor_is_zero = (guint32 *)(void *)code;
3704
3705                         /* Put divide in branch delay slot (NOT YET) */
3706                         mips_bne (code, ins->sreg2, mips_zero, 0);
3707                         mips_nop (code);
3708
3709                         /* Divide by zero -- throw exception */
3710                         EMIT_SYSTEM_EXCEPTION_NAME("DivideByZeroException");
3711
3712                         mips_patch (divisor_is_zero, (guint32)code);
3713                         mips_divu (code, ins->sreg1, ins->sreg2);
3714                         if (ins->opcode == OP_IDIV_UN)
3715                                 mips_mflo (code, ins->dreg);
3716                         else
3717                                 mips_mfhi (code, ins->dreg);
3718                         break;
3719                 }
3720                 case OP_DIV_IMM:
3721                         g_assert_not_reached ();
3722 #if 0
3723                         ppc_load (code, ppc_r12, ins->inst_imm);
3724                         ppc_divwod (code, ins->dreg, ins->sreg1, ppc_r12);
3725                         ppc_mfspr (code, ppc_r0, ppc_xer);
3726                         ppc_andisd (code, ppc_r0, ppc_r0, (1<<14));
3727                         /* FIXME: use OverflowException for 0x80000000/-1 */
3728                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "DivideByZeroException");
3729 #endif
3730                         g_assert_not_reached();
3731                         break;
3732                 case OP_REM_IMM:
3733                         g_assert_not_reached ();
3734                 case OP_IOR:
3735                         mips_or (code, ins->dreg, ins->sreg1, ins->sreg2);
3736                         break;
3737                 case OP_OR_IMM:
3738                 case OP_IOR_IMM:
3739                         g_assert (!(ins->inst_imm & 0xffff0000));
3740                         mips_ori (code, ins->dreg, ins->sreg1, ins->inst_imm);
3741                         break;
3742                 case OP_IXOR:
3743                         mips_xor (code, ins->dreg, ins->sreg1, ins->sreg2);
3744                         break;
3745                 case OP_XOR_IMM:
3746                 case OP_IXOR_IMM:
3747                         /* unsigned 16-bit immediate */
3748                         g_assert (!(ins->inst_imm & 0xffff0000));
3749                         mips_xori (code, ins->dreg, ins->sreg1, ins->inst_imm);
3750                         break;
3751                 case OP_ISHL:
3752                         mips_sllv (code, ins->dreg, ins->sreg1, ins->sreg2);
3753                         break;
3754                 case OP_SHL_IMM:
3755                 case OP_ISHL_IMM:
3756                         mips_sll (code, ins->dreg, ins->sreg1, ins->inst_imm & 0x1f);
3757                         break;
3758                 case OP_ISHR:
3759                         mips_srav (code, ins->dreg, ins->sreg1, ins->sreg2);
3760                         break;
3761                 case OP_LSHR:
3762                         mips_dsrav (code, ins->dreg, ins->sreg1, ins->sreg2);
3763                         break;
3764                 case OP_SHR_IMM:
3765                 case OP_ISHR_IMM:
3766                         mips_sra (code, ins->dreg, ins->sreg1, ins->inst_imm & 0x1f);
3767                         break;
3768                 case OP_LSHR_IMM:
3769                         mips_dsra (code, ins->dreg, ins->sreg1, ins->inst_imm & 0x3f);
3770                         break;
3771                 case OP_SHR_UN_IMM:
3772                 case OP_ISHR_UN_IMM:
3773                         mips_srl (code, ins->dreg, ins->sreg1, ins->inst_imm & 0x1f);
3774                         break;
3775                 case OP_LSHR_UN_IMM:
3776                         mips_dsrl (code, ins->dreg, ins->sreg1, ins->inst_imm & 0x3f);
3777                         break;
3778                 case OP_ISHR_UN:
3779                         mips_srlv (code, ins->dreg, ins->sreg1, ins->sreg2);
3780                         break;
3781                 case OP_LSHR_UN:
3782                         mips_dsrlv (code, ins->dreg, ins->sreg1, ins->sreg2);
3783                         break;
3784                 case OP_INOT:
3785                 case OP_LNOT:
3786                         mips_nor (code, ins->dreg, mips_zero, ins->sreg1);
3787                         break;
3788                 case OP_INEG:
3789                         mips_subu (code, ins->dreg, mips_zero, ins->sreg1);
3790                         break;
3791                 case OP_LNEG:
3792                         mips_dsubu (code, ins->dreg, mips_zero, ins->sreg1);
3793                         break;
3794                 case OP_IMUL:
3795 #if USE_MUL
3796                         mips_mul (code, ins->dreg, ins->sreg1, ins->sreg2);
3797 #else
3798                         mips_mult (code, ins->sreg1, ins->sreg2);
3799                         mips_mflo (code, ins->dreg);
3800                         mips_nop (code);
3801                         mips_nop (code);
3802 #endif
3803                         break;
3804 #if SIZEOF_REGISTER == 8
3805                 case OP_LMUL:
3806                         mips_dmult (code, ins->sreg1, ins->sreg2);
3807                         mips_mflo (code, ins->dreg);
3808                         break;
3809 #endif
3810                 case OP_IMUL_OVF: {
3811                         guint32 *patch;
3812                         mips_mult (code, ins->sreg1, ins->sreg2);
3813                         mips_mflo (code, ins->dreg);
3814                         mips_mfhi (code, mips_at);
3815                         mips_nop (code);
3816                         mips_nop (code);
3817                         mips_sra (code, mips_temp, ins->dreg, 31);
3818                         patch = (guint32 *)(void *)code;
3819                         mips_beq (code, mips_temp, mips_at, 0);
3820                         mips_nop (code);
3821                         EMIT_SYSTEM_EXCEPTION_NAME("OverflowException");
3822                         mips_patch (patch, (guint32)code);
3823                         break;
3824                 }
3825                 case OP_IMUL_OVF_UN: {
3826                         guint32 *patch;
3827                         mips_mult (code, ins->sreg1, ins->sreg2);
3828                         mips_mflo (code, ins->dreg);
3829                         mips_mfhi (code, mips_at);
3830                         mips_nop (code);
3831                         mips_nop (code);
3832                         patch = (guint32 *)(void *)code;
3833                         mips_beq (code, mips_at, mips_zero, 0);
3834                         mips_nop (code);
3835                         EMIT_SYSTEM_EXCEPTION_NAME("OverflowException");
3836                         mips_patch (patch, (guint32)code);
3837                         break;
3838                 }
3839                 case OP_ICONST:
3840                         mips_load_const (code, ins->dreg, ins->inst_c0);
3841                         break;
3842 #if SIZEOF_REGISTER == 8
3843                 case OP_I8CONST:
3844                         mips_load_const (code, ins->dreg, ins->inst_c0);
3845                         break;
3846 #endif
3847                 case OP_AOTCONST:
3848                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
3849                         mips_load (code, ins->dreg, 0);
3850                         break;
3851
3852                 case OP_MIPS_MTC1S:
3853                         mips_mtc1 (code, ins->dreg, ins->sreg1);
3854                         break;
3855                 case OP_MIPS_MTC1S_2:
3856                         mips_mtc1 (code, ins->dreg, ins->sreg1);
3857                         mips_mtc1 (code, ins->dreg+1, ins->sreg2);
3858                         break;
3859                 case OP_MIPS_MFC1S:
3860                         mips_mfc1 (code, ins->dreg, ins->sreg1);
3861                         break;
3862                 case OP_MIPS_MTC1D:
3863                         mips_dmtc1 (code, ins->dreg, ins->sreg1);
3864                         break;
3865                 case OP_MIPS_MFC1D:
3866 #if 0
3867                         mips_dmfc1 (code, ins->dreg, ins->sreg1);
3868 #else
3869                         mips_mfc1 (code, ins->dreg, ins->sreg1 + ls_word_idx);
3870                         mips_mfc1 (code, ins->dreg+1, ins->sreg1 + ms_word_idx);
3871 #endif
3872                         break;
3873
3874                 case OP_ICONV_TO_I4:
3875                 case OP_ICONV_TO_U4:
3876                 case OP_MOVE:
3877                         if (ins->dreg != ins->sreg1)
3878                                 MIPS_MOVE (code, ins->dreg, ins->sreg1);
3879                         break;
3880 #if SIZEOF_REGISTER == 8
3881                 case OP_ZEXT_I4:
3882                         mips_dsll (code, ins->dreg, ins->sreg1, 32);
3883                         mips_dsrl (code, ins->dreg, ins->dreg, 32);
3884                         break;
3885                 case OP_SEXT_I4:
3886                         mips_dsll (code, ins->dreg, ins->sreg1, 32);
3887                         mips_dsra (code, ins->dreg, ins->dreg, 32);
3888                         break;
3889 #endif
3890                 case OP_SETLRET: {
3891                         int lsreg = mips_v0 + ls_word_idx;
3892                         int msreg = mips_v0 + ms_word_idx;
3893
3894                         /* Get sreg1 into lsreg, sreg2 into msreg */
3895
3896                         if (ins->sreg1 == msreg) {
3897                                 if (ins->sreg1 != mips_at)
3898                                         MIPS_MOVE (code, mips_at, ins->sreg1);
3899                                 if (ins->sreg2 != msreg)
3900                                         MIPS_MOVE (code, msreg, ins->sreg2);
3901                                 MIPS_MOVE (code, lsreg, mips_at);
3902                         }
3903                         else {
3904                                 if (ins->sreg2 != msreg)
3905                                         MIPS_MOVE (code, msreg, ins->sreg2);
3906                                 if (ins->sreg1 != lsreg)
3907                                         MIPS_MOVE (code, lsreg, ins->sreg1);
3908                         }
3909                         break;
3910                 }
3911                 case OP_FMOVE:
3912                         if (ins->dreg != ins->sreg1) {
3913                                 mips_fmovd (code, ins->dreg, ins->sreg1);
3914                         }
3915                         break;
3916                 case OP_MIPS_CVTSD:
3917                         /* Convert from double to float and leave it there */
3918                         mips_cvtsd (code, ins->dreg, ins->sreg1);
3919                         break;
3920                 case OP_FCONV_TO_R4:
3921 #if 0
3922                         mips_cvtsd (code, ins->dreg, ins->sreg1);
3923 #else
3924                         /* Just a move, no precision change */
3925                         if (ins->dreg != ins->sreg1) {
3926                                 mips_fmovd (code, ins->dreg, ins->sreg1);
3927                         }
3928 #endif
3929                         break;
3930                 case OP_JMP:
3931                         code = emit_load_volatile_arguments(cfg, code);
3932
3933                         /*
3934                          * Pop our stack, then jump to specified method (tail-call)
3935                          * Keep in sync with mono_arch_emit_epilog
3936                          */
3937                         code = mono_arch_emit_epilog_sub (cfg, code);
3938
3939                         mono_add_patch_info (cfg, (guint8*) code - cfg->native_code,
3940                                              MONO_PATCH_INFO_METHOD_JUMP, ins->inst_p0);
3941                         mips_load (code, mips_t9, 0);
3942                         mips_jr (code, mips_t9);
3943                         mips_nop (code);
3944                         break;
3945                 case OP_CHECK_THIS:
3946                         /* ensure ins->sreg1 is not NULL */
3947                         mips_lw (code, mips_zero, ins->sreg1, 0);
3948                         break;
3949                 case OP_ARGLIST: {
3950                         g_assert (mips_is_imm16 (cfg->sig_cookie));
3951                         mips_lw (code, mips_at, cfg->frame_reg, cfg->sig_cookie);
3952                         mips_sw (code, mips_at, ins->sreg1, 0);
3953                         break;
3954                 }
3955                 case OP_FCALL:
3956                 case OP_LCALL:
3957                 case OP_VCALL:
3958                 case OP_VCALL2:
3959                 case OP_VOIDCALL:
3960                 case OP_CALL:
3961                 case OP_FCALL_REG:
3962                 case OP_LCALL_REG:
3963                 case OP_VCALL_REG:
3964                 case OP_VCALL2_REG:
3965                 case OP_VOIDCALL_REG:
3966                 case OP_CALL_REG:
3967                 case OP_FCALL_MEMBASE:
3968                 case OP_LCALL_MEMBASE:
3969                 case OP_VCALL_MEMBASE:
3970                 case OP_VCALL2_MEMBASE:
3971                 case OP_VOIDCALL_MEMBASE:
3972                 case OP_CALL_MEMBASE:
3973                         call = (MonoCallInst*)ins;
3974                         switch (ins->opcode) {
3975                         case OP_FCALL:
3976                         case OP_LCALL:
3977                         case OP_VCALL:
3978                         case OP_VCALL2:
3979                         case OP_VOIDCALL:
3980                         case OP_CALL:
3981                                 if (ins->flags & MONO_INST_HAS_METHOD) {
3982                                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
3983                                         mips_load (code, mips_t9, call->method);
3984                                 }
3985                                 else {
3986                                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
3987                                         mips_load (code, mips_t9, call->fptr);
3988                                 }
3989                                 mips_jalr (code, mips_t9, mips_ra);
3990                                 mips_nop (code);
3991                                 break;
3992                         case OP_FCALL_REG:
3993                         case OP_LCALL_REG:
3994                         case OP_VCALL_REG:
3995                         case OP_VCALL2_REG:
3996                         case OP_VOIDCALL_REG:
3997                         case OP_CALL_REG:
3998                                 MIPS_MOVE (code, mips_t9, ins->sreg1);
3999                                 mips_jalr (code, mips_t9, mips_ra);
4000                                 mips_nop (code);
4001                                 break;
4002                         case OP_FCALL_MEMBASE:
4003                         case OP_LCALL_MEMBASE:
4004                         case OP_VCALL_MEMBASE:
4005                         case OP_VCALL2_MEMBASE:
4006                         case OP_VOIDCALL_MEMBASE:
4007                         case OP_CALL_MEMBASE:
4008                                 mips_lw (code, mips_t9, ins->sreg1, ins->inst_offset);
4009                                 mips_jalr (code, mips_t9, mips_ra);
4010                                 mips_nop (code);
4011                                 break;
4012                         }
4013 #if PROMOTE_R4_TO_R8
4014                         /* returned an FP R4 (single), promote to R8 (double) in place */
4015                         switch (ins->opcode) {
4016                         case OP_FCALL:
4017                         case OP_FCALL_REG:
4018                         case OP_FCALL_MEMBASE:
4019                             if (call->signature->ret->type == MONO_TYPE_R4)
4020                                         mips_cvtds (code, mips_f0, mips_f0);
4021                                 break;
4022                         default:
4023                                 break;
4024                         }
4025 #endif
4026                         break;
4027                 case OP_LOCALLOC: {
4028                         int area_offset = cfg->param_area;
4029
4030                         /* Round up ins->sreg1, mips_at ends up holding size */
4031                         mips_addiu (code, mips_at, ins->sreg1, 31);
4032                         mips_addiu (code, mips_temp, mips_zero, ~31);
4033                         mips_and (code, mips_at, mips_at, mips_temp);
4034
4035                         mips_subu (code, mips_sp, mips_sp, mips_at);
4036                         g_assert (mips_is_imm16 (area_offset));
4037                         mips_addiu (code, ins->dreg, mips_sp, area_offset);
4038
4039                         if (ins->flags & MONO_INST_INIT) {
4040                                 guint32 *buf;
4041
4042                                 buf = (guint32*)(void*)code;
4043                                 mips_beq (code, mips_at, mips_zero, 0);
4044                                 mips_nop (code);
4045
4046                                 mips_move (code, mips_temp, ins->dreg);
4047                                 mips_sb (code, mips_zero, mips_temp, 0);
4048                                 mips_addiu (code, mips_at, mips_at, -1);
4049                                 mips_bne (code, mips_at, mips_zero, -3);
4050                                 mips_addiu (code, mips_temp, mips_temp, 1);
4051
4052                                 mips_patch (buf, (guint32)code);
4053                         }
4054                         break;
4055                 }
4056                 case OP_THROW: {
4057                         gpointer addr = mono_arch_get_throw_exception(NULL, FALSE);
4058                         mips_move (code, mips_a0, ins->sreg1);
4059                         mips_call (code, mips_t9, addr);
4060                         mips_break (code, 0xfc);
4061                         break;
4062                 }
4063                 case OP_RETHROW: {
4064                         gpointer addr = mono_arch_get_rethrow_exception(NULL, FALSE);
4065                         mips_move (code, mips_a0, ins->sreg1);
4066                         mips_call (code, mips_t9, addr);
4067                         mips_break (code, 0xfb);
4068                         break;
4069                 }
4070                 case OP_START_HANDLER: {
4071                         /*
4072                          * The START_HANDLER instruction marks the beginning of
4073                          * a handler block. It is called using a call
4074                          * instruction, so mips_ra contains the return address.
4075                          * Since the handler executes in the same stack frame
4076                          * as the method itself, we can't use save/restore to
4077                          * save the return address. Instead, we save it into
4078                          * a dedicated variable.
4079                          */
4080                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
4081                         g_assert (spvar->inst_basereg != mips_sp);
4082                         code = emit_reserve_param_area (cfg, code);
4083
4084                         if (mips_is_imm16 (spvar->inst_offset)) {
4085                                 mips_sw (code, mips_ra, spvar->inst_basereg, spvar->inst_offset);
4086                         } else {
4087                                 mips_load_const (code, mips_at, spvar->inst_offset);
4088                                 mips_addu (code, mips_at, mips_at, spvar->inst_basereg);
4089                                 mips_sw (code, mips_ra, mips_at, 0);
4090                         }
4091                         break;
4092                 }
4093                 case OP_ENDFILTER: {
4094                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
4095                         g_assert (spvar->inst_basereg != mips_sp);
4096                         code = emit_unreserve_param_area (cfg, code);
4097
4098                         if (ins->sreg1 != mips_v0)
4099                                 MIPS_MOVE (code, mips_v0, ins->sreg1);
4100                         if (mips_is_imm16 (spvar->inst_offset)) {
4101                                 mips_lw (code, mips_ra, spvar->inst_basereg, spvar->inst_offset);
4102                         } else {
4103                                 mips_load_const (code, mips_at, spvar->inst_offset);
4104                                 mips_addu (code, mips_at, mips_at, spvar->inst_basereg);
4105                                 mips_lw (code, mips_ra, mips_at, 0);
4106                         }
4107                         mips_jr (code, mips_ra);
4108                         mips_nop (code);
4109                         break;
4110                 }
4111                 case OP_ENDFINALLY: {
4112                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
4113                         g_assert (spvar->inst_basereg != mips_sp);
4114                         code = emit_unreserve_param_area (cfg, code);
4115                         mips_lw (code, mips_t9, spvar->inst_basereg, spvar->inst_offset);
4116                         mips_jalr (code, mips_t9, mips_ra);
4117                         mips_nop (code);
4118                         break;
4119                 }
4120                 case OP_CALL_HANDLER: 
4121                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
4122                         mips_lui (code, mips_t9, mips_zero, 0);
4123                         mips_addiu (code, mips_t9, mips_t9, 0);
4124                         mips_jalr (code, mips_t9, mips_ra);
4125                         mips_nop (code);
4126                         /*FIXME should it be before the NOP or not? Does MIPS has a delay slot like sparc?*/
4127                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
4128                         break;
4129                 case OP_LABEL:
4130                         ins->inst_c0 = code - cfg->native_code;
4131                         break;
4132                 case OP_BR:
4133                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
4134                         if (cfg->arch.long_branch) {
4135                                 mips_lui (code, mips_at, mips_zero, 0);
4136                                 mips_addiu (code, mips_at, mips_at, 0);
4137                                 mips_jr (code, mips_at);
4138                                 mips_nop (code);
4139                         }
4140                         else {
4141                                 mips_beq (code, mips_zero, mips_zero, 0);
4142                                 mips_nop (code);
4143                         }
4144                         break;
4145                 case OP_BR_REG:
4146                         mips_jr (code, ins->sreg1);
4147                         mips_nop (code);
4148                         break;
4149                 case OP_SWITCH: {
4150                         int i;
4151
4152                         max_len += 4 * GPOINTER_TO_INT (ins->klass);
4153                         if (offset > (cfg->code_size - max_len - 16)) {
4154                                 cfg->code_size += max_len;
4155                                 cfg->code_size *= 2;
4156                                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4157                                 code = cfg->native_code + offset;
4158                         }
4159                         g_assert (ins->sreg1 != -1);
4160                         mips_sll (code, mips_at, ins->sreg1, 2);
4161                         if (1 || !(cfg->flags & MONO_CFG_HAS_CALLS))
4162                                 MIPS_MOVE (code, mips_t8, mips_ra);
4163                         mips_bgezal (code, mips_zero, 1);       /* bal */
4164                         mips_nop (code);
4165                         mips_addu (code, mips_t9, mips_ra, mips_at);
4166                         /* Table is 16 or 20 bytes from target of bal above */
4167                         if (1 || !(cfg->flags & MONO_CFG_HAS_CALLS)) {
4168                                 MIPS_MOVE (code, mips_ra, mips_t8);
4169                                 mips_lw (code, mips_t9, mips_t9, 20);
4170                         }
4171                         else
4172                                 mips_lw (code, mips_t9, mips_t9, 16);
4173                         mips_jalr (code, mips_t9, mips_t8);
4174                         mips_nop (code);
4175                         for (i = 0; i < GPOINTER_TO_INT (ins->klass); ++i)
4176                                 mips_emit32 (code, 0xfefefefe);
4177                         break;
4178                 }
4179                 case OP_CEQ:
4180                 case OP_ICEQ:
4181                         mips_addiu (code, ins->dreg, mips_zero, 1);
4182                         mips_beq (code, mips_at, mips_zero, 2);
4183                         mips_nop (code);
4184                         MIPS_MOVE (code, ins->dreg, mips_zero);
4185                         break;
4186                 case OP_CLT:
4187                 case OP_CLT_UN:
4188                 case OP_ICLT:
4189                 case OP_ICLT_UN:
4190                         mips_addiu (code, ins->dreg, mips_zero, 1);
4191                         mips_bltz (code, mips_at, 2);
4192                         mips_nop (code);
4193                         MIPS_MOVE (code, ins->dreg, mips_zero);
4194                         break;
4195                 case OP_CGT:
4196                 case OP_CGT_UN:
4197                 case OP_ICGT:
4198                 case OP_ICGT_UN:
4199                         mips_addiu (code, ins->dreg, mips_zero, 1);
4200                         mips_bgtz (code, mips_at, 2);
4201                         mips_nop (code);
4202                         MIPS_MOVE (code, ins->dreg, mips_zero);
4203                         break;
4204
4205                 case OP_MIPS_COND_EXC_EQ:
4206                 case OP_MIPS_COND_EXC_GE:
4207                 case OP_MIPS_COND_EXC_GT:
4208                 case OP_MIPS_COND_EXC_LE:
4209                 case OP_MIPS_COND_EXC_LT:
4210                 case OP_MIPS_COND_EXC_NE_UN:
4211                 case OP_MIPS_COND_EXC_GE_UN:
4212                 case OP_MIPS_COND_EXC_GT_UN:
4213                 case OP_MIPS_COND_EXC_LE_UN:
4214                 case OP_MIPS_COND_EXC_LT_UN:
4215
4216                 case OP_MIPS_COND_EXC_OV:
4217                 case OP_MIPS_COND_EXC_NO:
4218                 case OP_MIPS_COND_EXC_C:
4219                 case OP_MIPS_COND_EXC_NC:
4220
4221                 case OP_MIPS_COND_EXC_IEQ:
4222                 case OP_MIPS_COND_EXC_IGE:
4223                 case OP_MIPS_COND_EXC_IGT:
4224                 case OP_MIPS_COND_EXC_ILE:
4225                 case OP_MIPS_COND_EXC_ILT:
4226                 case OP_MIPS_COND_EXC_INE_UN:
4227                 case OP_MIPS_COND_EXC_IGE_UN:
4228                 case OP_MIPS_COND_EXC_IGT_UN:
4229                 case OP_MIPS_COND_EXC_ILE_UN:
4230                 case OP_MIPS_COND_EXC_ILT_UN:
4231
4232                 case OP_MIPS_COND_EXC_IOV:
4233                 case OP_MIPS_COND_EXC_INO:
4234                 case OP_MIPS_COND_EXC_IC:
4235                 case OP_MIPS_COND_EXC_INC: {
4236                         guint32 *skip;
4237                         guint32 *throw;
4238
4239                         /* If the condition is true, raise the exception */
4240
4241                         /* need to reverse test to skip around exception raising */
4242
4243                         /* For the moment, branch around a branch to avoid reversing
4244                            the tests. */
4245
4246                         /* Remember, an unpatched branch to 0 branches to the delay slot */
4247                         switch (ins->opcode) {
4248                         case OP_MIPS_COND_EXC_EQ:
4249                                 throw = (guint32 *)(void *)code;
4250                                 mips_beq (code, ins->sreg1, ins->sreg2, 0);
4251                                 mips_nop (code);
4252                                 break;
4253
4254                         case OP_MIPS_COND_EXC_NE_UN:
4255                                 throw = (guint32 *)(void *)code;
4256                                 mips_bne (code, ins->sreg1, ins->sreg2, 0);
4257                                 mips_nop (code);
4258                                 break;
4259
4260                         case OP_MIPS_COND_EXC_LE_UN:
4261                                 mips_sltu (code, mips_at, ins->sreg2, ins->sreg1);
4262                                 throw = (guint32 *)(void *)code;
4263                                 mips_beq (code, mips_at, mips_zero, 0);
4264                                 mips_nop (code);
4265                                 break;
4266
4267                         case OP_MIPS_COND_EXC_GT:
4268                                 mips_slt (code, mips_at, ins->sreg2, ins->sreg1);
4269                                 throw = (guint32 *)(void *)code;
4270                                 mips_bne (code, mips_at, mips_zero, 0);
4271                                 mips_nop (code);
4272                                 break;
4273
4274                         case OP_MIPS_COND_EXC_GT_UN:
4275                                 mips_sltu (code, mips_at, ins->sreg2, ins->sreg1);
4276                                 throw = (guint32 *)(void *)code;
4277                                 mips_bne (code, mips_at, mips_zero, 0);
4278                                 mips_nop (code);
4279                                 break;
4280
4281                         case OP_MIPS_COND_EXC_LT:
4282                                 mips_slt (code, mips_at, ins->sreg1, ins->sreg2);
4283                                 throw = (guint32 *)(void *)code;
4284                                 mips_bne (code, mips_at, mips_zero, 0);
4285                                 mips_nop (code);
4286                                 break;
4287
4288                         case OP_MIPS_COND_EXC_LT_UN:
4289                                 mips_sltu (code, mips_at, ins->sreg1, ins->sreg2);
4290                                 throw = (guint32 *)(void *)code;
4291                                 mips_bne (code, mips_at, mips_zero, 0);
4292                                 mips_nop (code);
4293                                 break;
4294
4295                         default:
4296                                 /* Not yet implemented */
4297                                 g_warning ("NYI conditional exception %s\n", mono_inst_name (ins->opcode));
4298                                 g_assert_not_reached ();
4299                         }
4300                         skip = (guint32 *)(void *)code;
4301                         mips_beq (code, mips_zero, mips_zero, 0);
4302                         mips_nop (code);
4303                         mips_patch (throw, (guint32)code);
4304                         code = mips_emit_exc_by_name (code, ins->inst_p1);
4305                         mips_patch (skip, (guint32)code);
4306                         cfg->bb_exit->max_offset += 24;
4307                         break;
4308                 }
4309                 case OP_MIPS_BEQ:
4310                 case OP_MIPS_BNE:
4311                 case OP_MIPS_BGEZ:
4312                 case OP_MIPS_BGTZ:
4313                 case OP_MIPS_BLEZ:
4314                 case OP_MIPS_BLTZ:
4315                         code = mips_emit_cond_branch (cfg, code, ins->opcode, ins);
4316                         break;
4317
4318                 /* floating point opcodes */
4319                 case OP_R8CONST:
4320 #if 0
4321                         if (((guint32)ins->inst_p0) & (1 << 15))
4322                                 mips_lui (code, mips_at, mips_zero, (((guint32)ins->inst_p0)>>16)+1);
4323                         else
4324                                 mips_lui (code, mips_at, mips_zero, (((guint32)ins->inst_p0)>>16));
4325                         mips_ldc1 (code, ins->dreg, mips_at, ((guint32)ins->inst_p0) & 0xffff);
4326 #else
4327                         mips_load_const (code, mips_at, ins->inst_p0);
4328                         mips_lwc1 (code, ins->dreg, mips_at, ls_word_offset);
4329                         mips_lwc1 (code, ins->dreg+1, mips_at, ms_word_offset);
4330 #endif
4331                         break;
4332                 case OP_R4CONST:
4333                         if (((guint32)ins->inst_p0) & (1 << 15))
4334                                 mips_lui (code, mips_at, mips_zero, (((guint32)ins->inst_p0)>>16)+1);
4335                         else
4336                                 mips_lui (code, mips_at, mips_zero, (((guint32)ins->inst_p0)>>16));
4337                         mips_lwc1 (code, ins->dreg, mips_at, ((guint32)ins->inst_p0) & 0xffff);
4338 #if PROMOTE_R4_TO_R8
4339                         mips_cvtds (code, ins->dreg, ins->dreg);
4340 #endif
4341                         break;
4342                 case OP_STORER8_MEMBASE_REG:
4343                         if (mips_is_imm16 (ins->inst_offset)) {
4344 #if _MIPS_SIM == _ABIO32
4345                                 mips_swc1 (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset + ls_word_offset);
4346                                 mips_swc1 (code, ins->sreg1+1, ins->inst_destbasereg, ins->inst_offset + ms_word_offset);
4347 #elif _MIPS_SIM == _ABIN32
4348                                 mips_sdc1 (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4349 #endif
4350                         } else {
4351                                 mips_load_const (code, mips_at, ins->inst_offset);
4352                                 mips_addu (code, mips_at, mips_at, ins->inst_destbasereg);
4353                                 mips_swc1 (code, ins->sreg1, mips_at, ls_word_offset);
4354                                 mips_swc1 (code, ins->sreg1+1, mips_at, ms_word_offset);
4355                         }
4356                         break;
4357                 case OP_LOADR8_MEMBASE:
4358                         if (mips_is_imm16 (ins->inst_offset)) {
4359 #if _MIPS_SIM == _ABIO32
4360                                 mips_lwc1 (code, ins->dreg, ins->inst_basereg, ins->inst_offset + ls_word_offset);
4361                                 mips_lwc1 (code, ins->dreg+1, ins->inst_basereg, ins->inst_offset + ms_word_offset);
4362 #elif _MIPS_SIM == _ABIN32
4363                                 mips_ldc1 (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4364 #endif
4365                         } else {
4366                                 mips_load_const (code, mips_at, ins->inst_offset);
4367                                 mips_addu (code, mips_at, mips_at, ins->inst_basereg);
4368                                 mips_lwc1 (code, ins->dreg, mips_at, ls_word_offset);
4369                                 mips_lwc1 (code, ins->dreg+1, mips_at, ms_word_offset);
4370                         }
4371                         break;
4372                 case OP_STORER4_MEMBASE_REG:
4373                         g_assert (mips_is_imm16 (ins->inst_offset));
4374 #if PROMOTE_R4_TO_R8
4375                         /* Need to convert ins->sreg1 to single-precision first */
4376                         mips_cvtsd (code, mips_ftemp, ins->sreg1);
4377                         mips_swc1 (code, mips_ftemp, ins->inst_destbasereg, ins->inst_offset);
4378 #else
4379                         mips_swc1 (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4380 #endif
4381                         break;
4382                 case OP_MIPS_LWC1:
4383                         g_assert (mips_is_imm16 (ins->inst_offset));
4384                         mips_lwc1 (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4385                         break;
4386                 case OP_LOADR4_MEMBASE:
4387                         g_assert (mips_is_imm16 (ins->inst_offset));
4388                         mips_lwc1 (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4389 #if PROMOTE_R4_TO_R8
4390                         /* Convert to double precision in place */
4391                         mips_cvtds (code, ins->dreg, ins->dreg);
4392 #endif
4393                         break;
4394                 case OP_LOADR4_MEMINDEX:
4395                         mips_addu (code, mips_at, ins->inst_basereg, ins->sreg2);
4396                         mips_lwc1 (code, ins->dreg, mips_at, 0);
4397                         break;
4398                 case OP_LOADR8_MEMINDEX:
4399                         mips_addu (code, mips_at, ins->inst_basereg, ins->sreg2);
4400 #if _MIPS_SIM == _ABIO32
4401                         mips_lwc1 (code, ins->dreg, mips_at, ls_word_offset);
4402                         mips_lwc1 (code, ins->dreg+1, mips_at, ms_word_offset);
4403 #elif _MIPS_SIM == _ABIN32
4404                         mips_ldc1 (code, ins->dreg, mips_at, 0);
4405 #endif
4406                         break;
4407                 case OP_STORER4_MEMINDEX:
4408                         mips_addu (code, mips_at, ins->inst_destbasereg, ins->sreg2);
4409 #if PROMOTE_R4_TO_R8
4410                         /* Need to convert ins->sreg1 to single-precision first */
4411                         mips_cvtsd (code, mips_ftemp, ins->sreg1);
4412                         mips_swc1 (code, mips_ftemp, mips_at, 0);
4413 #else
4414                         mips_swc1 (code, ins->sreg1, mips_at, 0);
4415 #endif
4416                         break;
4417                 case OP_STORER8_MEMINDEX:
4418                         mips_addu (code, mips_at, ins->inst_destbasereg, ins->sreg2);
4419 #if _MIPS_SIM == _ABIO32
4420                         mips_swc1 (code, ins->sreg1, mips_at, ls_word_offset);
4421                         mips_swc1 (code, ins->sreg1+1, mips_at, ms_word_offset);
4422 #elif _MIPS_SIM == _ABIN32
4423                         mips_sdc1 (code, ins->sreg1, mips_at, 0);
4424 #endif
4425                         break;
4426                 case OP_ICONV_TO_R_UN: {
4427                         static const guint64 adjust_val = 0x41F0000000000000ULL;
4428
4429                         /* convert unsigned int to double */
4430                         mips_mtc1 (code, mips_ftemp, ins->sreg1);
4431                         mips_bgez (code, ins->sreg1, 5);
4432                         mips_cvtdw (code, ins->dreg, mips_ftemp);
4433
4434                         mips_load (code, mips_at, (guint32) &adjust_val);
4435                         mips_ldc1  (code, mips_ftemp, mips_at, 0);
4436                         mips_faddd (code, ins->dreg, ins->dreg, mips_ftemp);
4437                         /* target is here */
4438                         break;
4439                 }
4440                 case OP_ICONV_TO_R4:
4441                         mips_mtc1 (code, mips_ftemp, ins->sreg1);
4442                         mips_cvtsw (code, ins->dreg, mips_ftemp);
4443                         mips_cvtds (code, ins->dreg, ins->dreg);
4444                         break;
4445                 case OP_ICONV_TO_R8:
4446                         mips_mtc1 (code, mips_ftemp, ins->sreg1);
4447                         mips_cvtdw (code, ins->dreg, mips_ftemp);
4448                         break;
4449                 case OP_FCONV_TO_I1:
4450                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
4451                         break;
4452                 case OP_FCONV_TO_U1:
4453                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
4454                         break;
4455                 case OP_FCONV_TO_I2:
4456                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
4457                         break;
4458                 case OP_FCONV_TO_U2:
4459                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
4460                         break;
4461                 case OP_FCONV_TO_I4:
4462                 case OP_FCONV_TO_I:
4463                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
4464                         break;
4465                 case OP_FCONV_TO_U4:
4466                 case OP_FCONV_TO_U:
4467                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
4468                         break;
4469                 case OP_SQRT:
4470                         mips_fsqrtd (code, ins->dreg, ins->sreg1);
4471                         break;
4472                 case OP_FADD:
4473                         mips_faddd (code, ins->dreg, ins->sreg1, ins->sreg2);
4474                         break;
4475                 case OP_FSUB:
4476                         mips_fsubd (code, ins->dreg, ins->sreg1, ins->sreg2);
4477                         break;          
4478                 case OP_FMUL:
4479                         mips_fmuld (code, ins->dreg, ins->sreg1, ins->sreg2);
4480                         break;          
4481                 case OP_FDIV:
4482                         mips_fdivd (code, ins->dreg, ins->sreg1, ins->sreg2);
4483                         break;          
4484                 case OP_FNEG:
4485                         mips_fnegd (code, ins->dreg, ins->sreg1);
4486                         break;          
4487                 case OP_FCEQ:
4488                         mips_fcmpd (code, MIPS_FPU_EQ, ins->sreg1, ins->sreg2);
4489                         mips_addiu (code, ins->dreg, mips_zero, 1);
4490                         mips_fbtrue (code, 2);
4491                         mips_nop (code);
4492                         MIPS_MOVE (code, ins->dreg, mips_zero);
4493                         break;
4494                 case OP_FCLT:
4495                         mips_fcmpd (code, MIPS_FPU_LT, ins->sreg1, ins->sreg2);
4496                         mips_addiu (code, ins->dreg, mips_zero, 1);
4497                         mips_fbtrue (code, 2);
4498                         mips_nop (code);
4499                         MIPS_MOVE (code, ins->dreg, mips_zero);
4500                         break;
4501                 case OP_FCLT_UN:
4502                         /* Less than, or Unordered */
4503                         mips_fcmpd (code, MIPS_FPU_ULT, ins->sreg1, ins->sreg2);
4504                         mips_addiu (code, ins->dreg, mips_zero, 1);
4505                         mips_fbtrue (code, 2);
4506                         mips_nop (code);
4507                         MIPS_MOVE (code, ins->dreg, mips_zero);
4508                         break;
4509                 case OP_FCGT:
4510                         mips_fcmpd (code, MIPS_FPU_ULE, ins->sreg1, ins->sreg2);
4511                         MIPS_MOVE (code, ins->dreg, mips_zero);
4512                         mips_fbtrue (code, 2);
4513                         mips_nop (code);
4514                         mips_addiu (code, ins->dreg, mips_zero, 1);
4515                         break;
4516                 case OP_FCGT_UN:
4517                         /* Greater than, or Unordered */
4518                         mips_fcmpd (code, MIPS_FPU_OLE, ins->sreg1, ins->sreg2);
4519                         MIPS_MOVE (code, ins->dreg, mips_zero);
4520                         mips_fbtrue (code, 2);
4521                         mips_nop (code);
4522                         mips_addiu (code, ins->dreg, mips_zero, 1);
4523                         break;
4524                 case OP_MIPS_FBEQ:
4525                 case OP_MIPS_FBNE:
4526                 case OP_MIPS_FBLT:
4527                 case OP_MIPS_FBLT_UN:
4528                 case OP_MIPS_FBGT:
4529                 case OP_MIPS_FBGT_UN:
4530                 case OP_MIPS_FBGE:
4531                 case OP_MIPS_FBGE_UN:
4532                 case OP_MIPS_FBLE:
4533                 case OP_MIPS_FBLE_UN: {
4534                         int cond = 0;
4535                         gboolean is_true = TRUE, is_ordered = FALSE;
4536                         guint32 *buf = NULL;
4537
4538                         switch (ins->opcode) {
4539                         case OP_MIPS_FBEQ:
4540                                 cond = MIPS_FPU_EQ;
4541                                 is_true = TRUE;
4542                                 break;
4543                         case OP_MIPS_FBNE:
4544                                 cond = MIPS_FPU_EQ;
4545                                 is_true = FALSE;
4546                                 break;
4547                         case OP_MIPS_FBLT:
4548                                 cond = MIPS_FPU_LT;
4549                                 is_true = TRUE;
4550                                 is_ordered = TRUE;
4551                                 break;
4552                         case OP_MIPS_FBLT_UN:
4553                                 cond = MIPS_FPU_ULT;
4554                                 is_true = TRUE;
4555                                 break;
4556                         case OP_MIPS_FBGT:
4557                                 cond = MIPS_FPU_LE;
4558                                 is_true = FALSE;
4559                                 is_ordered = TRUE;
4560                                 break;
4561                         case OP_MIPS_FBGT_UN:
4562                                 cond = MIPS_FPU_OLE;
4563                                 is_true = FALSE;
4564                                 break;
4565                         case OP_MIPS_FBGE:
4566                                 cond = MIPS_FPU_LT;
4567                                 is_true = FALSE;
4568                                 is_ordered = TRUE;
4569                                 break;
4570                         case OP_MIPS_FBGE_UN:
4571                                 cond = MIPS_FPU_OLT;
4572                                 is_true = FALSE;
4573                                 break;
4574                         case OP_MIPS_FBLE:
4575                                 cond = MIPS_FPU_OLE;
4576                                 is_true = TRUE;
4577                                 is_ordered = TRUE;
4578                                 break;
4579                         case OP_MIPS_FBLE_UN:
4580                                 cond = MIPS_FPU_ULE;
4581                                 is_true = TRUE;
4582                                 break;
4583                         default:
4584                                 g_assert_not_reached ();
4585                         }
4586
4587                         if (is_ordered) {
4588                                 /* Skip the check if unordered */
4589                                 mips_fcmpd (code, MIPS_FPU_UN, ins->sreg1, ins->sreg2);
4590                                 mips_nop (code);
4591                                 buf = (guint32*)code;
4592                                 mips_fbtrue (code, 0);
4593                                 mips_nop (code);
4594                         }
4595                         
4596                         mips_fcmpd (code, cond, ins->sreg1, ins->sreg2);
4597                         mips_nop (code);
4598                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb);
4599                         if (is_true)
4600                                 mips_fbtrue (code, 0);
4601                         else
4602                                 mips_fbfalse (code, 0);
4603                         mips_nop (code);
4604
4605                         if (is_ordered)
4606                                 mips_patch (buf, (guint32)code);
4607                         break;
4608                 }
4609                 case OP_CKFINITE: {
4610                         guint32 *branch_patch;
4611
4612                         mips_mfc1 (code, mips_at, ins->sreg1+1);
4613                         mips_srl (code, mips_at, mips_at, 16+4);
4614                         mips_andi (code, mips_at, mips_at, 2047);
4615                         mips_addiu (code, mips_at, mips_at, -2047);
4616
4617                         branch_patch = (guint32 *)(void *)code;
4618                         mips_bne (code, mips_at, mips_zero, 0);
4619                         mips_nop (code);
4620
4621                         EMIT_SYSTEM_EXCEPTION_NAME("ArithmeticException");
4622                         mips_patch (branch_patch, (guint32)code);
4623                         mips_fmovd (code, ins->dreg, ins->sreg1);
4624                         break;
4625                 }
4626                 case OP_JUMP_TABLE:
4627                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_c1, ins->inst_p0);
4628                         mips_load (code, ins->dreg, 0x0f0f0f0f);
4629                         break;
4630
4631
4632                 default:
4633                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
4634                         g_assert_not_reached ();
4635                 }
4636
4637                 if ((cfg->opt & MONO_OPT_BRANCH) && ((code - cfg->native_code - offset) > max_len)) {
4638                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
4639                                    mono_inst_name (ins->opcode), max_len, code - cfg->native_code - offset);
4640                         g_assert_not_reached ();
4641                 }
4642                
4643                 cpos += max_len;
4644
4645                 last_ins = ins;
4646                 last_offset = offset;
4647         }
4648
4649         cfg->code_len = code - cfg->native_code;
4650 }
4651
4652 void
4653 mono_arch_register_lowlevel_calls (void)
4654 {
4655 }
4656
4657 void
4658 mono_arch_patch_code (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, MonoCodeManager *dyn_code_mp, gboolean run_cctors)
4659 {
4660         MonoJumpInfo *patch_info;
4661
4662         for (patch_info = ji; patch_info; patch_info = patch_info->next) {
4663                 unsigned char *ip = patch_info->ip.i + code;
4664                 const unsigned char *target = NULL;
4665
4666                 switch (patch_info->type) {
4667                 case MONO_PATCH_INFO_IP:
4668                         patch_lui_addiu ((guint32 *)(void *)ip, (guint32)ip);
4669                         continue;
4670                 case MONO_PATCH_INFO_SWITCH: {
4671                         gpointer *table = (gpointer *)patch_info->data.table->table;
4672                         int i;
4673
4674                         patch_lui_addiu ((guint32 *)(void *)ip, (guint32)table);
4675
4676                         for (i = 0; i < patch_info->data.table->table_size; i++) { 
4677                                 table [i] = (int)patch_info->data.table->table [i] + code;
4678                         }
4679                         continue;
4680                 }
4681                 case MONO_PATCH_INFO_METHODCONST:
4682                 case MONO_PATCH_INFO_CLASS:
4683                 case MONO_PATCH_INFO_IMAGE:
4684                 case MONO_PATCH_INFO_FIELD:
4685                 case MONO_PATCH_INFO_VTABLE:
4686                 case MONO_PATCH_INFO_IID:
4687                 case MONO_PATCH_INFO_SFLDA:
4688                 case MONO_PATCH_INFO_LDSTR:
4689                 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
4690                 case MONO_PATCH_INFO_LDTOKEN:
4691                 case MONO_PATCH_INFO_R4:
4692                 case MONO_PATCH_INFO_R8:
4693                         /* from OP_AOTCONST : lui + addiu */
4694                         target = mono_resolve_patch_target (method, domain, code, patch_info, run_cctors);
4695                         patch_lui_addiu ((guint32 *)(void *)ip, (guint32)target);
4696                         continue;
4697 #if 0
4698                 case MONO_PATCH_INFO_EXC_NAME:
4699                         g_assert_not_reached ();
4700                         *((gconstpointer *)(void *)(ip + 1)) = patch_info->data.name;
4701                         continue;
4702 #endif
4703                 case MONO_PATCH_INFO_NONE:
4704                         /* everything is dealt with at epilog output time */
4705                         continue;
4706                 default:
4707                         target = mono_resolve_patch_target (method, domain, code, patch_info, run_cctors);
4708                         mips_patch ((guint32 *)(void *)ip, (guint32)target);
4709                         break;
4710                 }
4711         }
4712 }
4713
4714 /*
4715  * Allow tracing to work with this interface (with an optional argument)
4716  *
4717  * This code is expected to be inserted just after the 'real' prolog code,
4718  * and before the first basic block.  We need to allocate a 2nd, temporary
4719  * stack frame so that we can preserve f12-f15 as well as a0-a3.
4720  */
4721
4722 void*
4723 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
4724 {
4725         guchar *code = p;
4726         int offset = cfg->arch.tracing_offset;
4727
4728         mips_nop (code);
4729         mips_nop (code);
4730         mips_nop (code);
4731
4732         MIPS_SW (code, mips_a0, mips_sp, offset + 0*SIZEOF_REGISTER);
4733         MIPS_SW (code, mips_a1, mips_sp, offset + 1*SIZEOF_REGISTER);
4734         MIPS_SW (code, mips_a2, mips_sp, offset + 2*SIZEOF_REGISTER);
4735         MIPS_SW (code, mips_a3, mips_sp, offset + 3*SIZEOF_REGISTER);
4736 #if _MIPS_SIM == _ABIN32
4737         NOT_IMPLEMENTED;
4738         /* FIXME: Need a separate region for these */
4739         MIPS_SW (code, mips_a4, mips_sp, offset + 4*SIZEOF_REGISTER);
4740         MIPS_SW (code, mips_a5, mips_sp, offset + 5*SIZEOF_REGISTER);
4741         MIPS_SW (code, mips_a6, mips_sp, offset + 6*SIZEOF_REGISTER);
4742         MIPS_SW (code, mips_a7, mips_sp, offset + 7*SIZEOF_REGISTER);
4743         */
4744 #endif
4745
4746         mips_load_const (code, mips_a0, cfg->method);
4747         mips_addiu (code, mips_a1, mips_sp, offset);
4748         mips_call (code, mips_t9, func);
4749         mips_nop (code);
4750
4751         MIPS_LW (code, mips_a0, mips_sp, offset + 0*SIZEOF_REGISTER);
4752         MIPS_LW (code, mips_a1, mips_sp, offset + 1*SIZEOF_REGISTER);
4753         MIPS_LW (code, mips_a2, mips_sp, offset + 2*SIZEOF_REGISTER);
4754         MIPS_LW (code, mips_a3, mips_sp, offset + 3*SIZEOF_REGISTER);
4755 #if _MIPS_SIM == _ABIN32
4756         NOT_IMPLEMENTED;
4757         /*
4758         MIPS_LW (code, mips_a4, mips_sp, offset + 4*SIZEOF_REGISTER);
4759         MIPS_LW (code, mips_a5, mips_sp, offset + 5*SIZEOF_REGISTER);
4760         MIPS_LW (code, mips_a6, mips_sp, offset + 6*SIZEOF_REGISTER);
4761         MIPS_LW (code, mips_a7, mips_sp, offset + 7*SIZEOF_REGISTER);
4762         */
4763 #endif
4764
4765         mips_nop (code);
4766         mips_nop (code);
4767         mips_nop (code);
4768         return code;
4769 }
4770
4771 void
4772 mips_adjust_stackframe(MonoCompile *cfg)
4773 {
4774         MonoBasicBlock *bb;
4775         int delta, threshold, i;
4776         MonoMethodSignature *sig;
4777         int ra_offset;
4778
4779         if (cfg->stack_offset == cfg->arch.local_alloc_offset)
4780                 return;
4781
4782         /* adjust cfg->stack_offset for account for down-spilling */
4783         cfg->stack_offset += SIZEOF_REGISTER;
4784
4785         /* re-align cfg->stack_offset if needed (due to var spilling) */
4786         cfg->stack_offset = (cfg->stack_offset + MIPS_STACK_ALIGNMENT - 1) & ~(MIPS_STACK_ALIGNMENT - 1);
4787         delta = cfg->stack_offset - cfg->arch.local_alloc_offset;
4788         if (cfg->verbose_level > 2) {
4789                 g_print ("mips_adjust_stackframe:\n");
4790                 g_print ("\tspillvars allocated 0x%x -> 0x%x\n", cfg->arch.local_alloc_offset, cfg->stack_offset);
4791         }
4792         threshold = cfg->arch.local_alloc_offset;
4793         ra_offset = cfg->stack_offset - sizeof(gpointer);
4794         if (cfg->verbose_level > 2) {
4795                 g_print ("\tra_offset %d/0x%x delta %d/0x%x\n", ra_offset, ra_offset, delta, delta);
4796         }
4797
4798         sig = mono_method_signature (cfg->method);
4799         if (sig && sig->ret && MONO_TYPE_ISSTRUCT (sig->ret)) {
4800                 cfg->vret_addr->inst_offset += delta;
4801         }
4802         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
4803                 MonoInst *inst = cfg->args [i];
4804
4805                 inst->inst_offset += delta;
4806         }
4807
4808         /*
4809          * loads and stores based off the frame reg that (used to) lie
4810          * above the spill var area need to be increased by 'delta'
4811          * to make room for the spill vars.
4812          */
4813         /* Need to find loads and stores to adjust that
4814          * are above where the spillvars were inserted, but
4815          * which are not the spillvar references themselves.
4816          *
4817          * Idea - since all offsets from fp are positive, make
4818          * spillvar offsets negative to begin with so we can spot
4819          * them here.
4820          */
4821
4822 #if 1
4823         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
4824                 int ins_cnt = 0;
4825                 MonoInst *ins;
4826
4827                 if (cfg->verbose_level > 2) {
4828                         g_print ("BASIC BLOCK %d:\n", bb->block_num);
4829                 }
4830                 MONO_BB_FOR_EACH_INS (bb, ins) {
4831                         int adj_c0 = 0;
4832                         int adj_imm = 0;
4833
4834                         if (cfg->verbose_level > 2) {
4835                                 mono_print_ins_index (ins_cnt, ins);
4836                         }
4837                         /* The == mips_sp tests catch FP spills */
4838                         if (MONO_IS_LOAD_MEMBASE(ins) && ((ins->inst_basereg == mips_fp) ||
4839                                                           (ins->inst_basereg == mips_sp))) {
4840                                 switch (ins->opcode) {
4841                                 case OP_LOADI8_MEMBASE:
4842                                 case OP_LOADR8_MEMBASE:
4843                                         adj_c0 = 8;
4844                                         break;
4845                                 default:
4846                                         adj_c0 = 4;
4847                                         break;
4848                                 }
4849                         } else if (MONO_IS_STORE_MEMBASE(ins) && ((ins->dreg == mips_fp) ||
4850                                                                   (ins->dreg == mips_sp))) {
4851                                 switch (ins->opcode) {
4852                                 case OP_STOREI8_MEMBASE_REG:
4853                                 case OP_STORER8_MEMBASE_REG:
4854                                 case OP_STOREI8_MEMBASE_IMM:
4855                                         adj_c0 = 8;
4856                                         break;
4857                                 default:
4858                                         adj_c0 = 4;
4859                                         break;
4860                                 }
4861                         }
4862                         if (((ins->opcode == OP_ADD_IMM) || (ins->opcode == OP_IADD_IMM)) && (ins->sreg1 == cfg->frame_reg))
4863                                 adj_imm = 1;
4864                         if (adj_c0) {
4865                                 if (ins->inst_c0 >= threshold) {
4866                                         ins->inst_c0 += delta;
4867                                         if (cfg->verbose_level > 2) {
4868                                                 g_print ("adj");
4869                                                 mono_print_ins_index (ins_cnt, ins);
4870                                         }
4871                                 }
4872                                 else if (ins->inst_c0 < 0) {
4873                                         /* Adj_c0 holds the size of the datatype. */
4874                                         ins->inst_c0 = - ins->inst_c0 - adj_c0;
4875                                         if (cfg->verbose_level > 2) {
4876                                                 g_print ("spill");
4877                                                 mono_print_ins_index (ins_cnt, ins);
4878                                         }
4879                                 }
4880                                 g_assert (ins->inst_c0 != ra_offset);
4881                         }
4882                         if (adj_imm) {
4883                                 if (ins->inst_imm >= threshold) {
4884                                         ins->inst_imm += delta;
4885                                         if (cfg->verbose_level > 2) {
4886                                                 g_print ("adj");
4887                                                 mono_print_ins_index (ins_cnt, ins);
4888                                         }
4889                                 }
4890                                 g_assert (ins->inst_c0 != ra_offset);
4891                         }
4892
4893                         ++ins_cnt;
4894                 }
4895         }
4896 #endif
4897 }
4898
4899 /*
4900  * Stack frame layout:
4901  * 
4902  *   ------------------- sp + cfg->stack_usage + cfg->param_area
4903  *      param area              incoming
4904  *   ------------------- sp + cfg->stack_usage + MIPS_STACK_PARAM_OFFSET
4905  *      a0-a3                   incoming
4906  *   ------------------- sp + cfg->stack_usage
4907  *      ra
4908  *   ------------------- sp + cfg->stack_usage-4
4909  *      spilled regs
4910  *   ------------------- sp + 
4911  *      MonoLMF structure       optional
4912  *   ------------------- sp + cfg->arch.lmf_offset
4913  *      saved registers         s0-s8
4914  *   ------------------- sp + cfg->arch.iregs_offset
4915  *      locals
4916  *   ------------------- sp + cfg->param_area
4917  *      param area              outgoing
4918  *   ------------------- sp + MIPS_STACK_PARAM_OFFSET
4919  *      a0-a3                   outgoing
4920  *   ------------------- sp
4921  *      red zone
4922  */
4923 guint8 *
4924 mono_arch_emit_prolog (MonoCompile *cfg)
4925 {
4926         MonoMethod *method = cfg->method;
4927         MonoMethodSignature *sig;
4928         MonoInst *inst;
4929         int alloc_size, pos, i, max_offset;
4930         int alloc2_size = 0;
4931         guint8 *code;
4932         CallInfo *cinfo;
4933         int tracing = 0;
4934         guint32 iregs_to_save = 0;
4935 #if SAVE_FP_REGS
4936         guint32 fregs_to_save = 0;
4937 #endif
4938         /* lmf_offset is the offset of the LMF from our stack pointer. */
4939         guint32 lmf_offset = cfg->arch.lmf_offset;
4940         int cfa_offset = 0;
4941         MonoBasicBlock *bb;
4942
4943         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
4944                 tracing = 1;
4945
4946         if (tracing)
4947                 cfg->flags |= MONO_CFG_HAS_CALLS;
4948         
4949         sig = mono_method_signature (method);
4950         cfg->code_size = 768 + sig->param_count * 20;
4951         code = cfg->native_code = g_malloc (cfg->code_size);
4952
4953         /* 
4954          * compute max_offset in order to use short forward jumps.
4955          */
4956         max_offset = 0;
4957         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
4958                 MonoInst *ins = bb->code;
4959                 bb->max_offset = max_offset;
4960
4961                 if (cfg->prof_options & MONO_PROFILE_COVERAGE)
4962                         max_offset += 6; 
4963
4964                 MONO_BB_FOR_EACH_INS (bb, ins)
4965                         max_offset += ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
4966         }
4967         if (max_offset > 0xffff)
4968                 cfg->arch.long_branch = TRUE;
4969
4970         /*
4971          * Currently, fp points to the bottom of the frame on MIPS, unlike other platforms.
4972          * This means that we have to adjust the offsets inside instructions which reference
4973          * arguments received on the stack, since the initial offset doesn't take into
4974          * account spill slots.
4975          */
4976         mips_adjust_stackframe (cfg);
4977
4978         /* Offset between current sp and the CFA */
4979         cfa_offset = 0;
4980         mono_emit_unwind_op_def_cfa (cfg, code, mips_sp, cfa_offset);
4981
4982         /* stack_offset should not be changed here. */
4983         alloc_size = cfg->stack_offset;
4984         cfg->stack_usage = alloc_size;
4985
4986         iregs_to_save = (cfg->used_int_regs & MONO_ARCH_CALLEE_SAVED_REGS);
4987 #if SAVE_FP_REGS
4988 #if 0
4989         fregs_to_save = (cfg->used_float_regs & MONO_ARCH_CALLEE_SAVED_FREGS);
4990 #else
4991         fregs_to_save = MONO_ARCH_CALLEE_SAVED_FREGS;
4992         fregs_to_save |= (fregs_to_save << 1);
4993 #endif
4994 #endif
4995         /* If the stack size is too big, save 1024 bytes to start with
4996          * so the prologue can use imm16(reg) addressing, then allocate
4997          * the rest of the frame.
4998          */
4999         if (alloc_size > ((1 << 15) - 1024)) {
5000                 alloc2_size = alloc_size - 1024;
5001                 alloc_size = 1024;
5002         }
5003         if (alloc_size) {
5004                 g_assert (mips_is_imm16 (-alloc_size));
5005                 mips_addiu (code, mips_sp, mips_sp, -alloc_size);
5006                 cfa_offset = alloc_size;
5007                 mono_emit_unwind_op_def_cfa_offset (cfg, code, cfa_offset);
5008         }
5009
5010         if ((cfg->flags & MONO_CFG_HAS_CALLS) || ALWAYS_SAVE_RA) {
5011                 int offset = alloc_size + MIPS_RET_ADDR_OFFSET;
5012                 if (mips_is_imm16(offset))
5013                         mips_sw (code, mips_ra, mips_sp, offset);
5014                 else {
5015                         g_assert_not_reached ();
5016                 }
5017                 /* sp = cfa - cfa_offset, so sp + offset = cfa - cfa_offset + offset */
5018                 mono_emit_unwind_op_offset (cfg, code, mips_ra, offset - cfa_offset);
5019         }
5020
5021         /* XXX - optimize this later to not save all regs if LMF constructed */
5022         pos = cfg->arch.iregs_offset - alloc2_size;
5023
5024         if (iregs_to_save) {
5025                 /* save used registers in own stack frame (at pos) */
5026                 for (i = MONO_MAX_IREGS-1; i >= 0; --i) {
5027                         if (iregs_to_save & (1 << i)) {
5028                                 g_assert (pos < (int)(cfg->stack_usage - sizeof(gpointer)));
5029                                 g_assert (mips_is_imm16(pos));
5030                                 MIPS_SW (code, i, mips_sp, pos);
5031                                 mono_emit_unwind_op_offset (cfg, code, i, pos - cfa_offset);
5032                                 pos += SIZEOF_REGISTER;
5033                         }
5034                 }
5035         }
5036
5037         // FIXME: Don't save registers twice if there is an LMF
5038         // s8 has to be special cased since it is overwritten with the updated value
5039         // below
5040         if (method->save_lmf) {
5041                 for (i = MONO_MAX_IREGS-1; i >= 0; --i) {
5042                         int offset = lmf_offset + G_STRUCT_OFFSET(MonoLMF, iregs[i]);
5043                         g_assert (mips_is_imm16(offset));
5044                         if (MIPS_LMF_IREGMASK & (1 << i))
5045                                 MIPS_SW (code, i, mips_sp, offset);
5046                 }
5047         }
5048
5049 #if SAVE_FP_REGS
5050         /* Save float registers */
5051         if (fregs_to_save) {
5052                 for (i = MONO_MAX_FREGS-1; i >= 0; --i) {
5053                         if (fregs_to_save & (1 << i)) {
5054                                 g_assert (pos < cfg->stack_usage - MIPS_STACK_ALIGNMENT);
5055                                 g_assert (mips_is_imm16(pos));
5056                                 mips_swc1 (code, i, mips_sp, pos);
5057                                 pos += sizeof (gulong);
5058                         }
5059                 }
5060         }
5061
5062         if (method->save_lmf) {
5063                 for (i = MONO_MAX_FREGS-1; i >= 0; --i) {
5064                         int offset = lmf_offset + G_STRUCT_OFFSET(MonoLMF, fregs[i]);
5065                         g_assert (mips_is_imm16(offset));
5066                         mips_swc1 (code, i, mips_sp, offset);
5067                 }
5068         }
5069
5070 #endif
5071         if (cfg->frame_reg != mips_sp) {
5072                 MIPS_MOVE (code, cfg->frame_reg, mips_sp);
5073                 mono_emit_unwind_op_def_cfa (cfg, code, cfg->frame_reg, cfa_offset);
5074
5075                 if (method->save_lmf) {
5076                         int offset = lmf_offset + G_STRUCT_OFFSET(MonoLMF, iregs[cfg->frame_reg]);
5077                         g_assert (mips_is_imm16(offset));
5078                         MIPS_SW (code, cfg->frame_reg, mips_sp, offset);
5079                 }
5080         }
5081
5082         /* store runtime generic context */
5083         if (cfg->rgctx_var) {
5084                 MonoInst *ins = cfg->rgctx_var;
5085
5086                 g_assert (ins->opcode == OP_REGOFFSET);
5087
5088                 g_assert (mips_is_imm16 (ins->inst_offset));
5089                 mips_sw (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ins->inst_offset);
5090         }
5091
5092         /* load arguments allocated to register from the stack */
5093         pos = 0;
5094
5095         if (!cfg->arch.cinfo)
5096                 cfg->arch.cinfo = get_call_info (cfg->generic_sharing_context, cfg->mempool, sig);
5097         cinfo = cfg->arch.cinfo;
5098
5099         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
5100                 ArgInfo *ainfo = &cinfo->ret;
5101                 inst = cfg->vret_addr;
5102                 if (inst->opcode == OP_REGVAR)
5103                         MIPS_MOVE (code, inst->dreg, ainfo->reg);
5104                 else if (mips_is_imm16 (inst->inst_offset)) {
5105                         mips_sw (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
5106                 } else {
5107                         mips_load_const (code, mips_at, inst->inst_offset);
5108                         mips_addu (code, mips_at, mips_at, inst->inst_basereg);
5109                         mips_sw (code, ainfo->reg, mips_at, 0);
5110                 }
5111         }
5112
5113         if (sig->call_convention == MONO_CALL_VARARG) {
5114                 ArgInfo *cookie = &cinfo->sig_cookie;
5115                 int offset = alloc_size + cookie->offset;
5116
5117                 /* Save the sig cookie address */
5118                 g_assert (cookie->storage == ArgOnStack);
5119
5120                 g_assert (mips_is_imm16(offset));
5121                 mips_addi (code, mips_at, cfg->frame_reg, offset);
5122                 mips_sw (code, mips_at, cfg->frame_reg, cfg->sig_cookie - alloc2_size);
5123         }
5124
5125         /* Keep this in sync with emit_load_volatile_arguments */
5126         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
5127                 ArgInfo *ainfo = cinfo->args + i;
5128                 inst = cfg->args [pos];
5129                 
5130                 if (cfg->verbose_level > 2)
5131                         g_print ("Saving argument %d (type: %d)\n", i, ainfo->storage);
5132                 if (inst->opcode == OP_REGVAR) {
5133                         /* Argument ends up in a register */
5134                         if (ainfo->storage == ArgInIReg)
5135                                 MIPS_MOVE (code, inst->dreg, ainfo->reg);
5136                         else if (ainfo->storage == ArgInFReg) {
5137                                 g_assert_not_reached();
5138 #if 0
5139                                 ppc_fmr (code, inst->dreg, ainfo->reg);
5140 #endif
5141                         }
5142                         else if (ainfo->storage == ArgOnStack) {
5143                                 int offset = cfg->stack_usage + ainfo->offset;
5144                                 g_assert (mips_is_imm16(offset));
5145                                 mips_lw (code, inst->dreg, mips_sp, offset);
5146                         } else
5147                                 g_assert_not_reached ();
5148
5149                         if (cfg->verbose_level > 2)
5150                                 g_print ("Argument %d assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
5151                 } else {
5152                         /* Argument ends up on the stack */
5153                         if (ainfo->storage == ArgInIReg) {
5154                                 int basereg_offset;
5155                                 /* Incoming parameters should be above this frame */
5156                                 if (cfg->verbose_level > 2)
5157                                         g_print ("stack slot at %d of %d+%d\n",
5158                                                  inst->inst_offset, alloc_size, alloc2_size);
5159                                 /* g_assert (inst->inst_offset >= alloc_size); */
5160                                 g_assert (inst->inst_basereg == cfg->frame_reg);
5161                                 basereg_offset = inst->inst_offset - alloc2_size;
5162                                 g_assert (mips_is_imm16 (basereg_offset));
5163                                 switch (ainfo->size) {
5164                                 case 1:
5165                                         mips_sb (code, ainfo->reg, inst->inst_basereg, basereg_offset);
5166                                         break;
5167                                 case 2:
5168                                         mips_sh (code, ainfo->reg, inst->inst_basereg, basereg_offset);
5169                                         break;
5170                                 case 0: /* XXX */
5171                                 case 4:
5172                                         mips_sw (code, ainfo->reg, inst->inst_basereg, basereg_offset);
5173                                         break;
5174                                 case 8:
5175 #if (SIZEOF_REGISTER == 4)
5176                                         mips_sw (code, ainfo->reg, inst->inst_basereg, basereg_offset + ls_word_offset);
5177                                         mips_sw (code, ainfo->reg + 1, inst->inst_basereg, basereg_offset + ms_word_offset);
5178 #elif (SIZEOF_REGISTER == 8)
5179                                         mips_sd (code, ainfo->reg, inst->inst_basereg, basereg_offset);
5180 #endif
5181                                         break;
5182                                 default:
5183                                         g_assert_not_reached ();
5184                                         break;
5185                                 }
5186                         } else if (ainfo->storage == ArgOnStack) {
5187                                 /*
5188                                  * Argument comes in on the stack, and ends up on the stack
5189                                  * 1 and 2 byte args are passed as 32-bit quantities, but used as
5190                                  * 8 and 16 bit quantities.  Shorten them in place.
5191                                  */
5192                                 g_assert (mips_is_imm16 (inst->inst_offset));
5193                                 switch (ainfo->size) {
5194                                 case 1:
5195                                         mips_lw (code, mips_at, inst->inst_basereg, inst->inst_offset);
5196                                         mips_sb (code, mips_at, inst->inst_basereg, inst->inst_offset);
5197                                         break;
5198                                 case 2:
5199                                         mips_lw (code, mips_at, inst->inst_basereg, inst->inst_offset);
5200                                         mips_sh (code, mips_at, inst->inst_basereg, inst->inst_offset);
5201                                         break;
5202                                 case 0: /* XXX */
5203                                 case 4:
5204                                 case 8:
5205                                         break;
5206                                 default:
5207                                         g_assert_not_reached ();
5208                                 }
5209                         } else if (ainfo->storage == ArgInFReg) {
5210                                 g_assert (mips_is_imm16 (inst->inst_offset));
5211                                 g_assert (mips_is_imm16 (inst->inst_offset+4));
5212                                 if (ainfo->size == 8) {
5213 #if _MIPS_SIM == _ABIO32
5214                                         mips_swc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset + ls_word_offset);
5215                                         mips_swc1 (code, ainfo->reg+1, inst->inst_basereg, inst->inst_offset + ms_word_offset);
5216 #elif _MIPS_SIM == _ABIN32
5217                                         mips_sdc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
5218 #endif
5219                                 }
5220                                 else if (ainfo->size == 4)
5221                                         mips_swc1 (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
5222                                 else
5223                                         g_assert_not_reached ();
5224                         } else if (ainfo->storage == ArgStructByVal) {
5225                                 int i;
5226                                 int doffset = inst->inst_offset;
5227
5228                                 g_assert (mips_is_imm16 (inst->inst_offset));
5229                                 g_assert (mips_is_imm16 (inst->inst_offset + ainfo->size * sizeof (gpointer)));
5230                                 /* Push the argument registers into their stack slots */
5231                                 for (i = 0; i < ainfo->size; ++i) {
5232                                         g_assert (mips_is_imm16(doffset));
5233                                         MIPS_SW (code, ainfo->reg + i, inst->inst_basereg, doffset);
5234                                         doffset += SIZEOF_REGISTER;
5235                                 }
5236                         } else if (ainfo->storage == ArgStructByAddr) {
5237                                 g_assert (mips_is_imm16 (inst->inst_offset));
5238                                 /* FIXME: handle overrun! with struct sizes not multiple of 4 */
5239                                 code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, inst->inst_offset, ainfo->reg, 0);
5240                         } else
5241                                 g_assert_not_reached ();
5242                 }
5243                 pos++;
5244         }
5245
5246         if (method->save_lmf) {
5247                 mips_load_const (code, mips_at, MIPS_LMF_MAGIC1);
5248                 mips_sw (code, mips_at, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, magic));
5249
5250                 if (lmf_pthread_key != -1) {
5251                         g_assert_not_reached();
5252 #if 0
5253                         emit_tls_access (code, mips_temp, lmf_pthread_key);
5254 #endif
5255                         if (G_STRUCT_OFFSET (MonoJitTlsData, lmf)) {
5256                                 int offset = G_STRUCT_OFFSET (MonoJitTlsData, lmf);
5257                                 g_assert (mips_is_imm16(offset));
5258                                 mips_addiu (code, mips_a0, mips_temp, offset);
5259                         }
5260                 } else {
5261                         /* This can/will clobber the a0-a3 registers */
5262                         mips_call (code, mips_t9, (gpointer)mono_get_lmf_addr);
5263                 }
5264
5265                 /* mips_v0 is the result from mono_get_lmf_addr () (MonoLMF **) */
5266                 g_assert (mips_is_imm16(lmf_offset + G_STRUCT_OFFSET(MonoLMF, lmf_addr)));
5267                 mips_sw (code, mips_v0, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, lmf_addr));
5268                 /* new_lmf->previous_lmf = *lmf_addr */
5269                 mips_lw (code, mips_at, mips_v0, 0);
5270                 g_assert (mips_is_imm16(lmf_offset + G_STRUCT_OFFSET(MonoLMF, previous_lmf)));
5271                 mips_sw (code, mips_at, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, previous_lmf));
5272                 /* *(lmf_addr) = sp + lmf_offset */
5273                 g_assert (mips_is_imm16(lmf_offset));
5274                 mips_addiu (code, mips_at, mips_sp, lmf_offset);
5275                 mips_sw (code, mips_at, mips_v0, 0);
5276
5277                 /* save method info */
5278                 mips_load_const (code, mips_at, method);
5279                 g_assert (mips_is_imm16(lmf_offset + G_STRUCT_OFFSET(MonoLMF, method)));
5280                 mips_sw (code, mips_at, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, method));
5281
5282                 /* save the current IP */
5283                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_IP, NULL);
5284                 mips_load_const (code, mips_at, 0x01010101);
5285                 mips_sw (code, mips_at, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, eip));
5286         }
5287
5288         if (alloc2_size) {
5289                 if (mips_is_imm16 (-alloc2_size)) {
5290                         mips_addu (code, mips_sp, mips_sp, -alloc2_size);
5291                 }
5292                 else {
5293                         mips_load_const (code, mips_at, -alloc2_size);
5294                         mips_addu (code, mips_sp, mips_sp, mips_at);
5295                 }
5296                 alloc_size += alloc2_size;
5297                 cfa_offset += alloc2_size;
5298                 if (cfg->frame_reg != mips_sp)
5299                         MIPS_MOVE (code, cfg->frame_reg, mips_sp);
5300                 else
5301                         mono_emit_unwind_op_def_cfa_offset (cfg, code, cfa_offset);
5302         }
5303
5304         if (tracing) {
5305 #if _MIPS_SIM == _ABIO32
5306                 cfg->arch.tracing_offset = cfg->stack_offset;
5307 #elif _MIPS_SIM == _ABIN32
5308                 /* no stack slots by default for argument regs, reserve a special block */
5309                 g_assert_not_reached ();
5310 #endif
5311                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
5312         }
5313
5314         cfg->code_len = code - cfg->native_code;
5315         g_assert (cfg->code_len < cfg->code_size);
5316
5317         return code;
5318 }
5319
5320 enum {
5321         SAVE_NONE,
5322         SAVE_STRUCT,
5323         SAVE_ONE,
5324         SAVE_TWO,
5325         SAVE_FP
5326 };
5327
5328 void*
5329 mono_arch_instrument_epilog_full (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments, gboolean preserve_argument_registers)
5330 {
5331         guchar *code = p;
5332         int save_mode = SAVE_NONE;
5333         int offset;
5334         MonoMethod *method = cfg->method;
5335         int rtype = mini_type_get_underlying_type (cfg->generic_sharing_context, mono_method_signature (method)->ret)->type;
5336         int save_offset = MIPS_STACK_PARAM_OFFSET;
5337
5338         g_assert ((save_offset & (MIPS_STACK_ALIGNMENT-1)) == 0);
5339         
5340         offset = code - cfg->native_code;
5341         /* we need about 16 instructions */
5342         if (offset > (cfg->code_size - 16 * 4)) {
5343                 cfg->code_size *= 2;
5344                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5345                 code = cfg->native_code + offset;
5346         }
5347         mips_nop (code);
5348         mips_nop (code);
5349         switch (rtype) {
5350         case MONO_TYPE_VOID:
5351                 /* special case string .ctor icall */
5352                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
5353                         save_mode = SAVE_ONE;
5354                 else
5355                         save_mode = SAVE_NONE;
5356                 break;
5357         case MONO_TYPE_R4:
5358         case MONO_TYPE_R8:
5359                 save_mode = SAVE_FP;
5360                 break;
5361         case MONO_TYPE_VALUETYPE:
5362                 save_mode = SAVE_STRUCT;
5363                 break;
5364         case MONO_TYPE_I8:
5365         case MONO_TYPE_U8:
5366 #if SIZEOF_REGISTER == 4
5367                 save_mode = SAVE_TWO;
5368 #elif SIZEOF_REGISTER == 8
5369                 save_mode = SAVE_ONE;
5370 #endif
5371                 break;
5372         default:
5373                 save_mode = SAVE_ONE;
5374                 break;
5375         }
5376
5377         mips_addiu (code, mips_sp, mips_sp, -32);
5378         g_assert (mips_is_imm16(save_offset));
5379         switch (save_mode) {
5380         case SAVE_TWO:
5381                 mips_sw (code, mips_v0, mips_sp, save_offset);
5382                 g_assert (mips_is_imm16(save_offset + SIZEOF_REGISTER));
5383                 mips_sw (code, mips_v1, mips_sp, save_offset + SIZEOF_REGISTER);
5384                 if (enable_arguments) {
5385                         MIPS_MOVE (code, mips_a1, mips_v0);
5386                         MIPS_MOVE (code, mips_a2, mips_v1);
5387                 }
5388                 break;
5389         case SAVE_ONE:
5390                 MIPS_SW (code, mips_v0, mips_sp, save_offset);
5391                 if (enable_arguments) {
5392                         MIPS_MOVE (code, mips_a1, mips_v0);
5393                 }
5394                 break;
5395         case SAVE_FP:
5396                 mips_sdc1 (code, mips_f0, mips_sp, save_offset);
5397                 mips_ldc1 (code, mips_f12, mips_sp, save_offset);
5398                 mips_lw (code, mips_a0, mips_sp, save_offset);
5399                 g_assert (mips_is_imm16(save_offset + SIZEOF_REGISTER));
5400                 mips_lw (code, mips_a1, mips_sp, save_offset + SIZEOF_REGISTER);
5401                 break;
5402         case SAVE_STRUCT:
5403         case SAVE_NONE:
5404         default:
5405                 break;
5406         }
5407         mips_load_const (code, mips_a0, cfg->method);
5408         mips_call (code, mips_t9, func);
5409
5410         switch (save_mode) {
5411         case SAVE_TWO:
5412                 mips_lw (code, mips_v0, mips_sp, save_offset);
5413                 g_assert (mips_is_imm16(save_offset + SIZEOF_REGISTER));
5414                 mips_lw (code, mips_v1, mips_sp, save_offset + SIZEOF_REGISTER);
5415                 break;
5416         case SAVE_ONE:
5417                 MIPS_LW (code, mips_v0, mips_sp, save_offset);
5418                 break;
5419         case SAVE_FP:
5420                 mips_ldc1 (code, mips_f0, mips_sp, save_offset);
5421                 break;
5422         case SAVE_STRUCT:
5423         case SAVE_NONE:
5424         default:
5425                 break;
5426         }
5427         mips_addiu (code, mips_sp, mips_sp, 32);
5428         mips_nop (code);
5429         mips_nop (code);
5430         return code;
5431 }
5432
5433 guint8 *
5434 mono_arch_emit_epilog_sub (MonoCompile *cfg, guint8 *code)
5435 {
5436         MonoMethod *method = cfg->method;
5437         int pos = 0, i;
5438         int max_epilog_size = 16 + 20*4;
5439         int alloc2_size = 0;
5440         guint32 iregs_to_restore;
5441 #if SAVE_FP_REGS
5442         guint32 fregs_to_restore;
5443 #endif
5444
5445         if (cfg->method->save_lmf)
5446                 max_epilog_size += 128;
5447         
5448         if (mono_jit_trace_calls != NULL)
5449                 max_epilog_size += 50;
5450
5451         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
5452                 max_epilog_size += 50;
5453
5454         if (code)
5455                 pos = code - cfg->native_code;
5456         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
5457                 cfg->code_size *= 2;
5458                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5459                 cfg->stat_code_reallocs++;
5460         }
5461
5462         /*
5463          * Keep in sync with OP_JMP
5464          */
5465         if (code)
5466                 code = cfg->native_code + pos;
5467         else
5468                 code = cfg->native_code + cfg->code_len;
5469
5470         if (mono_jit_trace_calls != NULL && mono_trace_eval (method)) {
5471                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
5472         }
5473         if (cfg->frame_reg != mips_sp) {
5474                 MIPS_MOVE (code, mips_sp, cfg->frame_reg);
5475         }
5476         /* If the stack frame is really large, deconstruct it in two steps */
5477         if (cfg->stack_usage > ((1 << 15) - 1024)) {
5478                 alloc2_size = cfg->stack_usage - 1024;
5479                 /* partially deconstruct the stack */
5480                 mips_load_const (code, mips_at, alloc2_size);
5481                 mips_addu (code, mips_sp, mips_sp, mips_at);
5482         }
5483         pos = cfg->arch.iregs_offset - alloc2_size;
5484         iregs_to_restore = (cfg->used_int_regs & MONO_ARCH_CALLEE_SAVED_REGS);
5485         if (iregs_to_restore) {
5486                 for (i = MONO_MAX_IREGS-1; i >= 0; --i) {
5487                         if (iregs_to_restore & (1 << i)) {
5488                                 g_assert (mips_is_imm16(pos));
5489                                 MIPS_LW (code, i, mips_sp, pos);
5490                                 pos += SIZEOF_REGISTER;
5491                         }
5492                 }
5493         }
5494
5495 #if SAVE_FP_REGS
5496 #if 0
5497         fregs_to_restore = (cfg->used_float_regs & MONO_ARCH_CALLEE_SAVED_FREGS);
5498 #else
5499         fregs_to_restore = MONO_ARCH_CALLEE_SAVED_FREGS;
5500         fregs_to_restore |= (fregs_to_restore << 1);
5501 #endif
5502         if (fregs_to_restore) {
5503                 for (i = MONO_MAX_FREGS-1; i >= 0; --i) {
5504                         if (fregs_to_restore & (1 << i)) {
5505                                 g_assert (pos < cfg->stack_usage - MIPS_STACK_ALIGNMENT);
5506                                 g_assert (mips_is_imm16(pos));
5507                                 mips_lwc1 (code, i, mips_sp, pos);
5508                                 pos += FREG_SIZE
5509                         }
5510                 }
5511         }
5512 #endif
5513
5514         /* Unlink the LMF if necessary */
5515         if (method->save_lmf) {
5516                 int lmf_offset = cfg->arch.lmf_offset;
5517
5518                 /* t0 = current_lmf->previous_lmf */
5519                 g_assert (mips_is_imm16(lmf_offset + G_STRUCT_OFFSET(MonoLMF, previous_lmf)));
5520                 mips_lw (code, mips_temp, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, previous_lmf));
5521                 /* t1 = lmf_addr */
5522                 g_assert (mips_is_imm16(lmf_offset + G_STRUCT_OFFSET(MonoLMF, lmf_addr)));
5523                 mips_lw (code, mips_t1, mips_sp, lmf_offset + G_STRUCT_OFFSET(MonoLMF, lmf_addr));
5524                 /* (*lmf_addr) = previous_lmf */
5525                 mips_sw (code, mips_temp, mips_t1, 0);
5526         }
5527
5528 #if 0
5529         /* Restore the fp */
5530         mips_lw (code, mips_fp, mips_sp, cfg->stack_usage + MIPS_FP_ADDR_OFFSET);
5531 #endif
5532         /* Restore ra */
5533         if ((cfg->flags & MONO_CFG_HAS_CALLS) || ALWAYS_SAVE_RA) {
5534                 g_assert (mips_is_imm16(cfg->stack_usage - alloc2_size + MIPS_RET_ADDR_OFFSET));
5535                 mips_lw (code, mips_ra, mips_sp, cfg->stack_usage - alloc2_size + MIPS_RET_ADDR_OFFSET);
5536         }
5537         /* Restore the stack pointer */
5538         g_assert (mips_is_imm16(cfg->stack_usage - alloc2_size));
5539         mips_addiu (code, mips_sp, mips_sp, cfg->stack_usage - alloc2_size);
5540
5541         /* Caller will emit either return or tail-call sequence */
5542
5543         cfg->code_len = code - cfg->native_code;
5544
5545         g_assert (cfg->code_len < cfg->code_size);
5546         return (code);
5547 }
5548
5549 void
5550 mono_arch_emit_epilog (MonoCompile *cfg)
5551 {
5552         guint8 *code;
5553
5554         code = mono_arch_emit_epilog_sub (cfg, NULL);
5555
5556         mips_jr (code, mips_ra);
5557         mips_nop (code);
5558
5559         cfg->code_len = code - cfg->native_code;
5560
5561         g_assert (cfg->code_len < cfg->code_size);
5562 }
5563
5564 /* remove once throw_exception_by_name is eliminated */
5565 #if 0
5566 static int
5567 exception_id_by_name (const char *name)
5568 {
5569         if (strcmp (name, "IndexOutOfRangeException") == 0)
5570                 return MONO_EXC_INDEX_OUT_OF_RANGE;
5571         if (strcmp (name, "OverflowException") == 0)
5572                 return MONO_EXC_OVERFLOW;
5573         if (strcmp (name, "ArithmeticException") == 0)
5574                 return MONO_EXC_ARITHMETIC;
5575         if (strcmp (name, "DivideByZeroException") == 0)
5576                 return MONO_EXC_DIVIDE_BY_ZERO;
5577         if (strcmp (name, "InvalidCastException") == 0)
5578                 return MONO_EXC_INVALID_CAST;
5579         if (strcmp (name, "NullReferenceException") == 0)
5580                 return MONO_EXC_NULL_REF;
5581         if (strcmp (name, "ArrayTypeMismatchException") == 0)
5582                 return MONO_EXC_ARRAY_TYPE_MISMATCH;
5583         if (strcmp (name, "ArgumentException") == 0)
5584                 return MONO_EXC_ARGUMENT;
5585         g_error ("Unknown intrinsic exception %s\n", name);
5586         return 0;
5587 }
5588 #endif
5589
5590 void
5591 mono_arch_emit_exceptions (MonoCompile *cfg)
5592 {
5593 #if 0
5594         MonoJumpInfo *patch_info;
5595         int i;
5596         guint8 *code;
5597         const guint8* exc_throw_pos [MONO_EXC_INTRINS_NUM] = {NULL};
5598         guint8 exc_throw_found [MONO_EXC_INTRINS_NUM] = {0};
5599         int max_epilog_size = 50;
5600
5601         /* count the number of exception infos */
5602      
5603         /* 
5604          * make sure we have enough space for exceptions
5605          * 24 is the simulated call to throw_exception_by_name
5606          */
5607         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
5608 #if 0
5609                 if (patch_info->type == MONO_PATCH_INFO_EXC) {
5610                         i = exception_id_by_name (patch_info->data.target);
5611                         g_assert (i < MONO_EXC_INTRINS_NUM);
5612                         if (!exc_throw_found [i]) {
5613                                 max_epilog_size += 12;
5614                                 exc_throw_found [i] = TRUE;
5615                         }
5616                 }
5617 #endif
5618         }
5619
5620         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
5621                 cfg->code_size *= 2;
5622                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5623                 cfg->stat_code_reallocs++;
5624         }
5625
5626         code = cfg->native_code + cfg->code_len;
5627
5628         /* add code to raise exceptions */
5629         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
5630                 switch (patch_info->type) {
5631                 case MONO_PATCH_INFO_EXC: {
5632 #if 0
5633                         //unsigned char *ip = patch_info->ip.i + cfg->native_code;
5634
5635                         i = exception_id_by_name (patch_info->data.target);
5636                         g_assert (i >= 0 && i < MONO_EXC_INTRINS_NUM);
5637                         if (!exc_throw_pos [i]) {
5638                                 guint32 addr;
5639
5640                                 exc_throw_pos [i] = code;
5641                                 //g_print ("exc: writing stub at %p\n", code);
5642                                 mips_load_const (code, mips_a0, patch_info->data.target);
5643                                 addr = (guint32) mono_arch_get_throw_exception_by_name ();
5644                                 mips_load_const (code, mips_t9, addr);
5645                                 mips_jr (code, mips_t9);
5646                                 mips_nop (code);
5647                         }
5648                         //g_print ("exc: patch %p to %p\n", ip, exc_throw_pos[i]);
5649
5650                         /* Turn into a Relative patch, pointing at code stub */
5651                         patch_info->type = MONO_PATCH_INFO_METHOD_REL;
5652                         patch_info->data.offset = exc_throw_pos[i] - cfg->native_code;
5653 #else
5654                         g_assert_not_reached();
5655 #endif
5656                         break;
5657                 }
5658                 default:
5659                         /* do nothing */
5660                         break;
5661                 }
5662         }
5663
5664         cfg->code_len = code - cfg->native_code;
5665
5666         g_assert (cfg->code_len < cfg->code_size);
5667 #endif
5668 }
5669
5670 /*
5671  * Thread local storage support
5672  */
5673 static void
5674 setup_tls_access (void)
5675 {
5676         guint32 ptk;
5677         //guint32 *ins, *code;
5678
5679         if (tls_mode == TLS_MODE_FAILED)
5680                 return;
5681
5682         if (g_getenv ("MONO_NO_TLS")) {
5683                 tls_mode = TLS_MODE_FAILED;
5684                 return;
5685         }
5686
5687         if (tls_mode == TLS_MODE_DETECT) {
5688                 /* XXX */
5689                 tls_mode = TLS_MODE_FAILED;
5690                 return;
5691 #if 0
5692
5693                 ins = (guint32*)pthread_getspecific;
5694                 /* uncond branch to the real method */
5695                 if ((*ins >> 26) == 18) {
5696                         gint32 val;
5697                         val = (*ins & ~3) << 6;
5698                         val >>= 6;
5699                         if (*ins & 2) {
5700                                 /* absolute */
5701                                 ins = (guint32*)val;
5702                         } else {
5703                                 ins = (guint32*) ((char*)ins + val);
5704                         }
5705                 }
5706                 code = &cmplwi_1023;
5707                 ppc_cmpli (code, 0, 0, ppc_r3, 1023);
5708                 code = &li_0x48;
5709                 ppc_li (code, ppc_r4, 0x48);
5710                 code = &blr_ins;
5711                 ppc_blr (code);
5712                 if (*ins == cmplwi_1023) {
5713                         int found_lwz_284 = 0;
5714                         for (ptk = 0; ptk < 20; ++ptk) {
5715                                 ++ins;
5716                                 if (!*ins || *ins == blr_ins)
5717                                         break;
5718                                 if ((guint16)*ins == 284 && (*ins >> 26) == 32) {
5719                                         found_lwz_284 = 1;
5720                                         break;
5721                                 }
5722                         }
5723                         if (!found_lwz_284) {
5724                                 tls_mode = TLS_MODE_FAILED;
5725                                 return;
5726                         }
5727                         tls_mode = TLS_MODE_LTHREADS;
5728                 } else if (*ins == li_0x48) {
5729                         ++ins;
5730                         /* uncond branch to the real method */
5731                         if ((*ins >> 26) == 18) {
5732                                 gint32 val;
5733                                 val = (*ins & ~3) << 6;
5734                                 val >>= 6;
5735                                 if (*ins & 2) {
5736                                         /* absolute */
5737                                         ins = (guint32*)val;
5738                                 } else {
5739                                         ins = (guint32*) ((char*)ins + val);
5740                                 }
5741                                 code = &val;
5742                                 ppc_li (code, ppc_r0, 0x7FF2);
5743                                 if (ins [1] == val) {
5744                                         /* Darwin on G4, implement */
5745                                         tls_mode = TLS_MODE_FAILED;
5746                                         return;
5747                                 } else {
5748                                         code = &val;
5749                                         ppc_mfspr (code, ppc_r3, 104);
5750                                         if (ins [1] != val) {
5751                                                 tls_mode = TLS_MODE_FAILED;
5752                                                 return;
5753                                         }
5754                                         tls_mode = TLS_MODE_DARWIN_G5;
5755                                 }
5756                         } else {
5757                                 tls_mode = TLS_MODE_FAILED;
5758                                 return;
5759                         }
5760                 } else {
5761                         tls_mode = TLS_MODE_FAILED;
5762                         return;
5763                 }
5764 #endif
5765         }
5766         if (lmf_pthread_key == -1) {
5767                 ptk = mono_jit_tls_id;
5768                 if (ptk < 1024) {
5769                         /*g_print ("MonoLMF at: %d\n", ptk);*/
5770                         /*if (!try_offset_access (mono_get_lmf_addr (), ptk)) {
5771                                 init_tls_failed = 1;
5772                                 return;
5773                         }*/
5774                         lmf_pthread_key = ptk;
5775                 }
5776         }
5777         if (monothread_key == -1) {
5778                 ptk = mono_thread_get_tls_key ();
5779                 if (ptk < 1024) {
5780                         monothread_key = ptk;
5781                         /*g_print ("thread inited: %d\n", ptk);*/
5782                 } else {
5783                         /*g_print ("thread not inited yet %d\n", ptk);*/
5784                 }
5785         }
5786 }
5787
5788 void
5789 mono_arch_finish_init (void)
5790 {
5791         setup_tls_access ();
5792 }
5793
5794 void
5795 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
5796 {
5797 }
5798
5799 void
5800 mono_arch_emit_this_vret_args (MonoCompile *cfg, MonoCallInst *inst, int this_reg, int this_type, int vt_reg)
5801 {
5802         int this_dreg = mips_a0;
5803         
5804         if (vt_reg != -1)
5805                 this_dreg = mips_a1;
5806
5807         /* add the this argument */
5808         if (this_reg != -1) {
5809                 MonoInst *this;
5810                 MONO_INST_NEW (cfg, this, OP_MOVE);
5811                 this->type = this_type;
5812                 this->sreg1 = this_reg;
5813                 this->dreg = mono_alloc_ireg (cfg);
5814                 mono_bblock_add_inst (cfg->cbb, this);
5815                 mono_call_inst_add_outarg_reg (cfg, inst, this->dreg, this_dreg, FALSE);
5816         }
5817
5818         if (vt_reg != -1) {
5819                 MonoInst *vtarg;
5820                 MONO_INST_NEW (cfg, vtarg, OP_MOVE);
5821                 vtarg->type = STACK_MP;
5822                 vtarg->sreg1 = vt_reg;
5823                 vtarg->dreg = mono_alloc_ireg (cfg);
5824                 mono_bblock_add_inst (cfg->cbb, vtarg);
5825                 mono_call_inst_add_outarg_reg (cfg, inst, vtarg->dreg, mips_a0, FALSE);
5826         }
5827 }
5828
5829 MonoInst*
5830 mono_arch_get_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5831 {
5832         MonoInst *ins = NULL;
5833
5834         return ins;
5835 }
5836
5837 MonoInst*
5838 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
5839 {
5840         return NULL;
5841 }
5842
5843 gboolean
5844 mono_arch_print_tree (MonoInst *tree, int arity)
5845 {
5846         return 0;
5847 }
5848
5849 mgreg_t
5850 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
5851 {
5852         return ctx->sc_regs [reg];
5853 }
5854
5855 #define ENABLE_WRONG_METHOD_CHECK 0
5856
5857 #define MIPS_LOAD_SEQUENCE_LENGTH       8
5858 #define CMP_SIZE                        (MIPS_LOAD_SEQUENCE_LENGTH + 4)
5859 #define BR_SIZE                         8
5860 #define LOADSTORE_SIZE                  4
5861 #define JUMP_IMM_SIZE                   16
5862 #define JUMP_IMM32_SIZE                 (MIPS_LOAD_SEQUENCE_LENGTH + 8)
5863 #define LOAD_CONST_SIZE                 8
5864 #define JUMP_JR_SIZE                    8
5865
5866 /*
5867  * LOCKING: called with the domain lock held
5868  */
5869 gpointer
5870 mono_arch_build_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
5871         gpointer fail_tramp)
5872 {
5873         int i;
5874         int size = 0;
5875         guint8 *code, *start, *patch;
5876
5877         for (i = 0; i < count; ++i) {
5878                 MonoIMTCheckItem *item = imt_entries [i];
5879
5880                 if (item->is_equals) {
5881                         if (item->check_target_idx) {
5882                                 item->chunk_size += LOAD_CONST_SIZE + BR_SIZE + JUMP_JR_SIZE;
5883                                 if (item->has_target_code)
5884                                         item->chunk_size += LOAD_CONST_SIZE;
5885                                 else
5886                                         item->chunk_size += LOADSTORE_SIZE;
5887                         } else {
5888                                 if (fail_tramp) {
5889                                         item->chunk_size += LOAD_CONST_SIZE + BR_SIZE + JUMP_IMM32_SIZE +
5890                                                 LOADSTORE_SIZE + JUMP_IMM32_SIZE;
5891                                         if (!item->has_target_code)
5892                                                 item->chunk_size += LOADSTORE_SIZE;
5893                                 } else {
5894                                         item->chunk_size += LOADSTORE_SIZE + JUMP_JR_SIZE;
5895 #if ENABLE_WRONG_METHOD_CHECK
5896                                         item->chunk_size += CMP_SIZE + BR_SIZE + 4;
5897 #endif
5898                                 }
5899                         }
5900                 } else {
5901                         item->chunk_size += CMP_SIZE + BR_SIZE;
5902                         imt_entries [item->check_target_idx]->compare_done = TRUE;
5903                 }
5904                 size += item->chunk_size;
5905         }
5906         /* the initial load of the vtable address */
5907         size += MIPS_LOAD_SEQUENCE_LENGTH;
5908         if (fail_tramp) {
5909                 code = mono_method_alloc_generic_virtual_thunk (domain, size);
5910         } else {
5911                 code = mono_domain_code_reserve (domain, size);
5912         }
5913         start = code;
5914
5915         /* t7 points to the vtable */
5916         mips_load_const (code, mips_t7, (gsize)(& (vtable->vtable [0])));
5917
5918         for (i = 0; i < count; ++i) {
5919                 MonoIMTCheckItem *item = imt_entries [i];
5920
5921                 item->code_target = code;
5922                 if (item->is_equals) {
5923                         if (item->check_target_idx) {
5924                                 mips_load_const (code, mips_temp, (gsize)item->key);
5925                                 item->jmp_code = code;
5926                                 mips_bne (code, mips_temp, MONO_ARCH_IMT_REG, 0);
5927                                 mips_nop (code);
5928                                 if (item->has_target_code) {
5929                                         mips_load_const (code, mips_t9,
5930                                                          item->value.target_code);
5931                                 }
5932                                 else {
5933                                         mips_lw (code, mips_t9, mips_t7,
5934                                                 (sizeof (gpointer) * item->value.vtable_slot));
5935                                 }
5936                                 mips_jr (code, mips_t9);
5937                                 mips_nop (code);
5938                         } else {
5939                                 if (fail_tramp) {
5940                                         mips_load_const (code, mips_temp, (gsize)item->key);
5941                                         patch = code;
5942                                         mips_bne (code, mips_temp, MONO_ARCH_IMT_REG, 0);
5943                                         mips_nop (code);
5944                                         if (item->has_target_code) {
5945                                                 mips_load_const (code, mips_t9,
5946                                                                  item->value.target_code);
5947                                         } else {
5948                                                 g_assert (vtable);
5949                                                 mips_load_const (code, mips_at,
5950                                                                  & (vtable->vtable [item->value.vtable_slot]));
5951                                                 mips_lw (code, mips_t9, mips_at, 0);
5952                                         }
5953                                         mips_jr (code, mips_t9);
5954                                         mips_nop (code);
5955                                         mips_patch ((guint32 *)(void *)patch, (guint32)code);
5956                                         mips_load_const (code, mips_t9, fail_tramp);
5957                                         mips_jr (code, mips_t9);
5958                                         mips_nop (code);
5959                                 } else {
5960                                         /* enable the commented code to assert on wrong method */
5961 #if ENABLE_WRONG_METHOD_CHECK
5962                                         ppc_load (code, ppc_r0, (guint32)item->key);
5963                                         ppc_compare_log (code, 0, MONO_ARCH_IMT_REG, ppc_r0);
5964                                         patch = code;
5965                                         ppc_bc (code, PPC_BR_FALSE, PPC_BR_EQ, 0);
5966 #endif
5967                                         mips_lw (code, mips_t9, mips_t7,
5968                                                  (sizeof (gpointer) * item->value.vtable_slot));
5969                                         mips_jr (code, mips_t9);
5970                                         mips_nop (code);
5971
5972 #if ENABLE_WRONG_METHOD_CHECK
5973                                         ppc_patch (patch, code);
5974                                         ppc_break (code);
5975 #endif
5976                                 }
5977                         }
5978                 } else {
5979                         mips_load_const (code, mips_temp, (gulong)item->key);
5980                         mips_slt (code, mips_temp, MONO_ARCH_IMT_REG, mips_temp);
5981
5982                         item->jmp_code = code;
5983                         mips_beq (code, mips_temp, mips_zero, 0);
5984                         mips_nop (code);
5985                 }
5986         }
5987         /* patch the branches to get to the target items */
5988         for (i = 0; i < count; ++i) {
5989                 MonoIMTCheckItem *item = imt_entries [i];
5990                 if (item->jmp_code && item->check_target_idx) {
5991                         mips_patch ((guint32 *)item->jmp_code,
5992                                    (guint32)imt_entries [item->check_target_idx]->code_target);
5993                 }
5994         }
5995
5996         if (!fail_tramp)
5997                 mono_stats.imt_thunks_size += code - start;
5998         g_assert (code - start <= size);
5999         mono_arch_flush_icache (start, size);
6000         return start;
6001 }
6002
6003 MonoMethod*
6004 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
6005 {
6006         return (MonoMethod*) regs [MONO_ARCH_IMT_REG];
6007 }
6008
6009 MonoVTable*
6010 mono_arch_find_static_call_vtable (mgreg_t *regs, guint8 *code)
6011 {
6012         return (MonoVTable*) regs [MONO_ARCH_RGCTX_REG];
6013 }
6014
6015 /* Soft Debug support */
6016 #ifdef MONO_ARCH_SOFT_DEBUG_SUPPORTED
6017
6018 /*
6019  * mono_arch_set_breakpoint:
6020  *
6021  *   See mini-amd64.c for docs.
6022  */
6023 void
6024 mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip)
6025 {
6026         guint8 *code = ip;
6027         guint32 addr = (guint32)bp_trigger_page;
6028
6029         mips_load_const (code, mips_t9, addr);
6030         mips_lw (code, mips_t9, mips_t9, 0);
6031
6032         mono_arch_flush_icache (ip, code - ip);
6033 }
6034
6035 /*
6036  * mono_arch_clear_breakpoint:
6037  *
6038  *   See mini-amd64.c for docs.
6039  */
6040 void
6041 mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip)
6042 {
6043         guint8 *code = ip;
6044
6045         mips_nop (code);
6046         mips_nop (code);
6047         mips_nop (code);
6048
6049         mono_arch_flush_icache (ip, code - ip);
6050 }
6051         
6052 /*
6053  * mono_arch_start_single_stepping:
6054  *
6055  *   See mini-amd64.c for docs.
6056  */
6057 void
6058 mono_arch_start_single_stepping (void)
6059 {
6060         mono_mprotect (ss_trigger_page, mono_pagesize (), 0);
6061 }
6062         
6063 /*
6064  * mono_arch_stop_single_stepping:
6065  *
6066  *   See mini-amd64.c for docs.
6067  */
6068 void
6069 mono_arch_stop_single_stepping (void)
6070 {
6071         mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ);
6072 }
6073
6074 /*
6075  * mono_arch_is_single_step_event:
6076  *
6077  *   See mini-amd64.c for docs.
6078  */
6079 gboolean
6080 mono_arch_is_single_step_event (void *info, void *sigctx)
6081 {
6082         siginfo_t* sinfo = (siginfo_t*) info;
6083         /* Sometimes the address is off by 4 */
6084         if (sinfo->si_addr >= ss_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)ss_trigger_page + 128)
6085                 return TRUE;
6086         else
6087                 return FALSE;
6088 }
6089
6090 /*
6091  * mono_arch_is_breakpoint_event:
6092  *
6093  *   See mini-amd64.c for docs.
6094  */
6095 gboolean
6096 mono_arch_is_breakpoint_event (void *info, void *sigctx)
6097 {
6098         siginfo_t* sinfo = (siginfo_t*) info;
6099         /* Sometimes the address is off by 4 */
6100         if (sinfo->si_addr >= bp_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)bp_trigger_page + 128)
6101                 return TRUE;
6102         else
6103                 return FALSE;
6104 }
6105
6106 /*
6107  * mono_arch_skip_breakpoint:
6108  *
6109  *   See mini-amd64.c for docs.
6110  */
6111 void
6112 mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji)
6113 {
6114         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
6115 }
6116
6117 /*
6118  * mono_arch_skip_single_step:
6119  *
6120  *   See mini-amd64.c for docs.
6121  */
6122 void
6123 mono_arch_skip_single_step (MonoContext *ctx)
6124 {
6125         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
6126 }
6127
6128 /*
6129  * mono_arch_get_seq_point_info:
6130  *
6131  *   See mini-amd64.c for docs.
6132  */
6133 gpointer
6134 mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code)
6135 {
6136         NOT_IMPLEMENTED;
6137         return NULL;
6138 }
6139
6140 void
6141 mono_arch_init_lmf_ext (MonoLMFExt *ext, gpointer prev_lmf)
6142 {
6143         ext->lmf.previous_lmf = prev_lmf;
6144         /* Mark that this is a MonoLMFExt */
6145         ext->lmf.previous_lmf = (gpointer)(((gssize)ext->lmf.previous_lmf) | 2);
6146         ext->lmf.iregs [mips_sp] = (gssize)ext;
6147 }
6148
6149 #endif /* MONO_ARCH_SOFT_DEBUG_SUPPORTED */
6150
6151 gboolean
6152 mono_arch_opcode_supported (int opcode)
6153 {
6154         return FALSE;
6155 }