[runtime] Actually clean up context-static data segments.
[mono.git] / mono / mini / mini-sparc.c
1 /*
2  * mini-sparc.c: Sparc backend for the Mono code generator
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * Modified for SPARC:
9  *   Christopher Taylor (ct@gentoo.org)
10  *   Mark Crichton (crichton@gimp.org)
11  *   Zoltan Varga (vargaz@freemail.hu)
12  *
13  * (C) 2003 Ximian, Inc.
14  */
15 #include "mini.h"
16 #include <string.h>
17 #include <pthread.h>
18 #include <unistd.h>
19
20 #ifndef __linux__
21 #include <thread.h>
22 #endif
23
24 #include <unistd.h>
25 #include <sys/mman.h>
26
27 #include <mono/metadata/appdomain.h>
28 #include <mono/metadata/debug-helpers.h>
29 #include <mono/metadata/tokentype.h>
30 #include <mono/utils/mono-math.h>
31 #include <mono/utils/mono-hwcap-sparc.h>
32
33 #include "mini-sparc.h"
34 #include "trace.h"
35 #include "cpu-sparc.h"
36 #include "jit-icalls.h"
37 #include "ir-emit.h"
38
39 /*
40  * Sparc V9 means two things:
41  * - the instruction set
42  * - the ABI
43  *
44  * V9 instructions are only usable if the underlying processor is 64 bit. Most Sparc 
45  * processors in use are 64 bit processors. The V9 ABI is only usable if the 
46  * mono executable is a 64 bit executable. So it would make sense to use the 64 bit
47  * instructions without using the 64 bit ABI.
48  */
49
50 /*
51  * Register usage:
52  * - %i0..%i<n> hold the incoming arguments, these are never written by JITted 
53  * code. Unused input registers are used for global register allocation.
54  * - %o0..%o5 and %l7 is used for local register allocation and passing arguments
55  * - %l0..%l6 is used for global register allocation
56  * - %o7 and %g1 is used as scratch registers in opcodes
57  * - all floating point registers are used for local register allocation except %f0. 
58  *   Only double precision registers are used.
59  * In 64 bit mode:
60  * - fp registers %d0..%d30 are used for parameter passing, and %d32..%d62 are
61  *   used for local allocation.
62  */
63
64 /*
65  * Alignment:
66  * - doubles and longs must be stored in dword aligned locations
67  */
68
69 /*
70  * The following things are not implemented or do not work:
71  *  - some fp arithmetic corner cases
72  * The following tests in mono/mini are expected to fail:
73  *  - test_0_simple_double_casts
74  *      This test casts (guint64)-1 to double and then back to guint64 again.
75  *    Under x86, it returns 0, while under sparc it returns -1.
76  *
77  * In addition to this, the runtime requires the trunc function, or its 
78  * solaris counterpart, aintl, to do some double->int conversions. If this 
79  * function is not available, it is emulated somewhat, but the results can be
80  * strange.
81  */
82
83 /*
84  * SPARCV9 FIXME:
85  * - optimize sparc_set according to the memory model
86  * - when non-AOT compiling, compute patch targets immediately so we don't
87  *   have to emit the 6 byte template.
88  * - varags
89  * - struct arguments/returns
90  */
91
92 /*
93  * SPARCV9 ISSUES:
94  * - sparc_call_simple can't be used in a lot of places since the displacement
95  *   might not fit into an imm30.
96  * - g1 can't be used in a lot of places since it is used as a scratch reg in
97  *   sparc_set.
98  * - sparc_f0 can't be used as a scratch register on V9
99  * - the %d34..%d62 fp registers are encoded as: %dx = %f(x - 32 + 1), ie.
100  *   %d36 = %f5.
101  * - ldind.i4/u4 needs to sign extend/clear out upper word -> slows things down
102  * - ins->dreg can't be used as a scatch register in r4 opcodes since it might
103  *   be a double precision register which has no single precision part.
104  * - passing/returning structs is hard to implement, because:
105  *   - the spec is very hard to understand
106  *   - it requires knowledge about the fields of structure, needs to handle
107  *     nested structures etc.
108  */
109
110 /*
111  * Possible optimizations:
112  * - delay slot scheduling
113  * - allocate large constants to registers
114  * - add more mul/div/rem optimizations
115  */
116
117 #ifndef __linux__
118 #define MONO_SPARC_THR_TLS 1
119 #endif
120
121 /*
122  * There was a 64 bit bug in glib-2.2: g_bit_nth_msf (0, -1) would return 32,
123  * causing infinite loops in dominator computation. So glib-2.4 is required.
124  */
125 #ifdef SPARCV9
126 #if GLIB_MAJOR_VERSION == 2 && GLIB_MINOR_VERSION < 4
127 #error "glib 2.4 or later is required for 64 bit mode."
128 #endif
129 #endif
130
131 #define ALIGN_TO(val,align) (((val) + ((align) - 1)) & ~((align) - 1))
132
133 #define SIGNAL_STACK_SIZE (64 * 1024)
134
135 #define STACK_BIAS MONO_SPARC_STACK_BIAS
136
137 #ifdef SPARCV9
138
139 /* %g1 is used by sparc_set */
140 #define GP_SCRATCH_REG sparc_g4
141 /* %f0 is used for parameter passing */
142 #define FP_SCRATCH_REG sparc_f30
143 #define ARGS_OFFSET (STACK_BIAS + 128)
144
145 #else
146
147 #define FP_SCRATCH_REG sparc_f0
148 #define ARGS_OFFSET 68
149 #define GP_SCRATCH_REG sparc_g1
150
151 #endif
152
153 /* Whenever this is a 64bit executable */
154 #if SPARCV9
155 static gboolean v64 = TRUE;
156 #else
157 static gboolean v64 = FALSE;
158 #endif
159
160 static gpointer mono_arch_get_lmf_addr (void);
161
162 const char*
163 mono_arch_regname (int reg) {
164         static const char * rnames[] = {
165                 "sparc_g0", "sparc_g1", "sparc_g2", "sparc_g3", "sparc_g4",
166                 "sparc_g5", "sparc_g6", "sparc_g7", "sparc_o0", "sparc_o1",
167                 "sparc_o2", "sparc_o3", "sparc_o4", "sparc_o5", "sparc_sp",
168                 "sparc_call", "sparc_l0", "sparc_l1", "sparc_l2", "sparc_l3",
169                 "sparc_l4", "sparc_l5", "sparc_l6", "sparc_l7", "sparc_i0",
170                 "sparc_i1", "sparc_i2", "sparc_i3", "sparc_i4", "sparc_i5",
171                 "sparc_fp", "sparc_retadr"
172         };
173         if (reg >= 0 && reg < 32)
174                 return rnames [reg];
175         return "unknown";
176 }
177
178 const char*
179 mono_arch_fregname (int reg) {
180         static const char *rnames [] = {
181                 "sparc_f0", "sparc_f1", "sparc_f2", "sparc_f3", "sparc_f4", 
182                 "sparc_f5", "sparc_f6", "sparc_f7", "sparc_f8", "sparc_f9",
183                 "sparc_f10", "sparc_f11", "sparc_f12", "sparc_f13", "sparc_f14", 
184                 "sparc_f15", "sparc_f16", "sparc_f17", "sparc_f18", "sparc_f19",
185                 "sparc_f20", "sparc_f21", "sparc_f22", "sparc_f23", "sparc_f24", 
186                 "sparc_f25", "sparc_f26", "sparc_f27", "sparc_f28", "sparc_f29",
187                 "sparc_f30", "sparc_f31"
188         };
189
190         if (reg >= 0 && reg < 32)
191                 return rnames [reg];
192         else
193                 return "unknown";
194 }
195
196 /*
197  * Initialize the cpu to execute managed code.
198  */
199 void
200 mono_arch_cpu_init (void)
201 {
202 }
203
204 /*
205  * Initialize architecture specific code.
206  */
207 void
208 mono_arch_init (void)
209 {
210 }
211
212 /*
213  * Cleanup architecture specific code.
214  */
215 void
216 mono_arch_cleanup (void)
217 {
218 }
219
220 /*
221  * This function returns the optimizations supported on this cpu.
222  */
223 guint32
224 mono_arch_cpu_optimizations (guint32 *exclude_mask)
225 {
226         guint32 opts = 0;
227
228         *exclude_mask = 0;
229
230         /*
231          * On some processors, the cmov instructions are even slower than the
232          * normal ones...
233          */
234         if (mono_hwcap_sparc_is_v9)
235                 opts |= MONO_OPT_CMOV | MONO_OPT_FCMOV;
236         else
237                 *exclude_mask |= MONO_OPT_CMOV | MONO_OPT_FCMOV;
238
239         return opts;
240 }
241
242 /*
243  * This function test for all SIMD functions supported.
244  *
245  * Returns a bitmask corresponding to all supported versions.
246  *
247  */
248 guint32
249 mono_arch_cpu_enumerate_simd_versions (void)
250 {
251         /* SIMD is currently unimplemented */
252         return 0;
253 }
254
255 #ifdef __GNUC__
256 #define flushi(addr)    __asm__ __volatile__ ("iflush %0"::"r"(addr):"memory")
257 #else /* assume Sun's compiler */
258 static void flushi(void *addr)
259 {
260     asm("flush %i0");
261 }
262 #endif
263
264 #ifndef __linux__
265 void sync_instruction_memory(caddr_t addr, int len);
266 #endif
267
268 void
269 mono_arch_flush_icache (guint8 *code, gint size)
270 {
271 #ifndef __linux__
272         /* Hopefully this is optimized based on the actual CPU */
273         sync_instruction_memory (code, size);
274 #else
275         gulong start = (gulong) code;
276         gulong end = start + size;
277         gulong align;
278
279         /* Sparcv9 chips only need flushes on 32 byte
280          * cacheline boundaries.
281          *
282          * Sparcv8 needs a flush every 8 bytes.
283          */
284         align = (mono_hwcap_sparc_is_v9 ? 32 : 8);
285
286         start &= ~(align - 1);
287         end = (end + (align - 1)) & ~(align - 1);
288
289         while (start < end) {
290 #ifdef __GNUC__
291                 __asm__ __volatile__ ("iflush %0"::"r"(start));
292 #else
293                 flushi (start);
294 #endif
295                 start += align;
296         }
297 #endif
298 }
299
300 /*
301  * mono_sparc_flushw:
302  *
303  * Flush all register windows to memory. Every register window is saved to
304  * a 16 word area on the stack pointed to by its %sp register.
305  */
306 void
307 mono_sparc_flushw (void)
308 {
309         static guint32 start [64];
310         static int inited = 0;
311         guint32 *code;
312         static void (*flushw) (void);
313
314         if (!inited) {
315                 code = start;
316
317                 sparc_save_imm (code, sparc_sp, -160, sparc_sp);
318                 sparc_flushw (code);
319                 sparc_ret (code);
320                 sparc_restore_simple (code);
321
322                 g_assert ((code - start) < 64);
323
324                 mono_arch_flush_icache ((guint8*)start, (guint8*)code - (guint8*)start);
325
326                 flushw = (gpointer)start;
327
328                 inited = 1;
329         }
330
331         flushw ();
332 }
333
334 void
335 mono_arch_flush_register_windows (void)
336 {
337         mono_sparc_flushw ();
338 }
339
340 gboolean 
341 mono_arch_is_inst_imm (gint64 imm)
342 {
343         return sparc_is_imm13 (imm);
344 }
345
346 gboolean 
347 mono_sparc_is_v9 (void) {
348         return mono_hwcap_sparc_is_v9;
349 }
350
351 gboolean 
352 mono_sparc_is_sparc64 (void) {
353         return v64;
354 }
355
356 typedef enum {
357         ArgInIReg,
358         ArgInIRegPair,
359         ArgInSplitRegStack,
360         ArgInFReg,
361         ArgInFRegPair,
362         ArgOnStack,
363         ArgOnStackPair,
364         ArgInFloatReg,  /* V9 only */
365         ArgInDoubleReg  /* V9 only */
366 } ArgStorage;
367
368 typedef struct {
369         gint16 offset;
370         /* This needs to be offset by %i0 or %o0 depending on caller/callee */
371         gint8  reg;
372         ArgStorage storage;
373         guint32 vt_offset; /* for valuetypes */
374 } ArgInfo;
375
376 typedef struct {
377         int nargs;
378         guint32 stack_usage;
379         guint32 reg_usage;
380         ArgInfo ret;
381         ArgInfo sig_cookie;
382         ArgInfo args [1];
383 } CallInfo;
384
385 #define DEBUG(a)
386
387 /* %o0..%o5 */
388 #define PARAM_REGS 6
389
390 static void inline
391 add_general (guint32 *gr, guint32 *stack_size, ArgInfo *ainfo, gboolean pair)
392 {
393         ainfo->offset = *stack_size;
394
395         if (!pair) {
396                 if (*gr >= PARAM_REGS) {
397                         ainfo->storage = ArgOnStack;
398                 }
399                 else {
400                         ainfo->storage = ArgInIReg;
401                         ainfo->reg = *gr;
402                         (*gr) ++;
403                 }
404
405                 /* Allways reserve stack space for parameters passed in registers */
406                 (*stack_size) += sizeof (gpointer);
407         }
408         else {
409                 if (*gr < PARAM_REGS - 1) {
410                         /* A pair of registers */
411                         ainfo->storage = ArgInIRegPair;
412                         ainfo->reg = *gr;
413                         (*gr) += 2;
414                 }
415                 else if (*gr >= PARAM_REGS) {
416                         /* A pair of stack locations */
417                         ainfo->storage = ArgOnStackPair;
418                 }
419                 else {
420                         ainfo->storage = ArgInSplitRegStack;
421                         ainfo->reg = *gr;
422                         (*gr) ++;
423                 }
424
425                 (*stack_size) += 2 * sizeof (gpointer);
426         }
427 }
428
429 #ifdef SPARCV9
430
431 #define FLOAT_PARAM_REGS 32
432
433 static void inline
434 add_float (guint32 *gr, guint32 *stack_size, ArgInfo *ainfo, gboolean single)
435 {
436         ainfo->offset = *stack_size;
437
438         if (single) {
439                 if (*gr >= FLOAT_PARAM_REGS) {
440                         ainfo->storage = ArgOnStack;
441                 }
442                 else {
443                         /* A single is passed in an even numbered fp register */
444                         ainfo->storage = ArgInFloatReg;
445                         ainfo->reg = *gr + 1;
446                         (*gr) += 2;
447                 }
448         }
449         else {
450                 if (*gr < FLOAT_PARAM_REGS) {
451                         /* A double register */
452                         ainfo->storage = ArgInDoubleReg;
453                         ainfo->reg = *gr;
454                         (*gr) += 2;
455                 }
456                 else {
457                         ainfo->storage = ArgOnStack;
458                 }
459         }
460
461         (*stack_size) += sizeof (gpointer);
462 }
463
464 #endif
465
466 /*
467  * get_call_info:
468  *
469  *  Obtain information about a call according to the calling convention.
470  * For V8, see the "System V ABI, Sparc Processor Supplement" Sparc V8 version 
471  * document for more information.
472  * For V9, see the "Low Level System Information (64-bit psABI)" chapter in
473  * the 'Sparc Compliance Definition 2.4' document.
474  */
475 static CallInfo*
476 get_call_info (MonoCompile *cfg, MonoMethodSignature *sig, gboolean is_pinvoke)
477 {
478         guint32 i, gr, fr;
479         int n = sig->hasthis + sig->param_count;
480         guint32 stack_size = 0;
481         CallInfo *cinfo;
482         MonoType *ret_type;
483
484         cinfo = g_malloc0 (sizeof (CallInfo) + (sizeof (ArgInfo) * n));
485
486         gr = 0;
487         fr = 0;
488
489 #ifdef SPARCV9
490         if (MONO_TYPE_ISSTRUCT ((sig->ret))) {
491                 /* The address of the return value is passed in %o0 */
492                 add_general (&gr, &stack_size, &cinfo->ret, FALSE);
493                 cinfo->ret.reg += sparc_i0;
494                 /* FIXME: Pass this after this as on other platforms */
495                 NOT_IMPLEMENTED;
496         }
497 #endif
498
499         /* this */
500         if (sig->hasthis)
501                 add_general (&gr, &stack_size, cinfo->args + 0, FALSE);
502
503         if ((sig->call_convention == MONO_CALL_VARARG) && (n == 0)) {
504                 gr = PARAM_REGS;
505
506                 /* Emit the signature cookie just before the implicit arguments */
507                 add_general (&gr, &stack_size, &cinfo->sig_cookie, FALSE);
508         }
509
510         for (i = 0; i < sig->param_count; ++i) {
511                 ArgInfo *ainfo = &cinfo->args [sig->hasthis + i];
512                 MonoType *ptype;
513
514                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
515                         gr = PARAM_REGS;
516
517                         /* Emit the signature cookie just before the implicit arguments */
518                         add_general (&gr, &stack_size, &cinfo->sig_cookie, FALSE);
519                 }
520
521                 DEBUG(printf("param %d: ", i));
522                 if (sig->params [i]->byref) {
523                         DEBUG(printf("byref\n"));
524                         
525                         add_general (&gr, &stack_size, ainfo, FALSE);
526                         continue;
527                 }
528                 ptype = mini_get_underlying_type (sig->params [i]);
529                 switch (ptype->type) {
530                 case MONO_TYPE_BOOLEAN:
531                 case MONO_TYPE_I1:
532                 case MONO_TYPE_U1:
533                         add_general (&gr, &stack_size, ainfo, FALSE);
534                         /* the value is in the ls byte */
535                         ainfo->offset += sizeof (gpointer) - 1;
536                         break;
537                 case MONO_TYPE_I2:
538                 case MONO_TYPE_U2:
539                 case MONO_TYPE_CHAR:
540                         add_general (&gr, &stack_size, ainfo, FALSE);
541                         /* the value is in the ls word */
542                         ainfo->offset += sizeof (gpointer) - 2;
543                         break;
544                 case MONO_TYPE_I4:
545                 case MONO_TYPE_U4:
546                         add_general (&gr, &stack_size, ainfo, FALSE);
547                         /* the value is in the ls dword */
548                         ainfo->offset += sizeof (gpointer) - 4;
549                         break;
550                 case MONO_TYPE_I:
551                 case MONO_TYPE_U:
552                 case MONO_TYPE_PTR:
553                 case MONO_TYPE_FNPTR:
554                 case MONO_TYPE_CLASS:
555                 case MONO_TYPE_OBJECT:
556                 case MONO_TYPE_STRING:
557                 case MONO_TYPE_SZARRAY:
558                 case MONO_TYPE_ARRAY:
559                         add_general (&gr, &stack_size, ainfo, FALSE);
560                         break;
561                 case MONO_TYPE_GENERICINST:
562                         if (!mono_type_generic_inst_is_valuetype (ptype)) {
563                                 add_general (&gr, &stack_size, ainfo, FALSE);
564                                 break;
565                         }
566                         /* Fall through */
567                 case MONO_TYPE_VALUETYPE:
568 #ifdef SPARCV9
569                         if (sig->pinvoke)
570                                 NOT_IMPLEMENTED;
571 #endif
572                         add_general (&gr, &stack_size, ainfo, FALSE);
573                         break;
574                 case MONO_TYPE_TYPEDBYREF:
575                         add_general (&gr, &stack_size, ainfo, FALSE);
576                         break;
577                 case MONO_TYPE_U8:
578                 case MONO_TYPE_I8:
579 #ifdef SPARCV9
580                         add_general (&gr, &stack_size, ainfo, FALSE);
581 #else
582                         add_general (&gr, &stack_size, ainfo, TRUE);
583 #endif
584                         break;
585                 case MONO_TYPE_R4:
586 #ifdef SPARCV9
587                         add_float (&fr, &stack_size, ainfo, TRUE);
588                         gr ++;
589 #else
590                         /* single precision values are passed in integer registers */
591                         add_general (&gr, &stack_size, ainfo, FALSE);
592 #endif
593                         break;
594                 case MONO_TYPE_R8:
595 #ifdef SPARCV9
596                         add_float (&fr, &stack_size, ainfo, FALSE);
597                         gr ++;
598 #else
599                         /* double precision values are passed in a pair of registers */
600                         add_general (&gr, &stack_size, ainfo, TRUE);
601 #endif
602                         break;
603                 default:
604                         g_assert_not_reached ();
605                 }
606         }
607
608         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n > 0) && (sig->sentinelpos == sig->param_count)) {
609                 gr = PARAM_REGS;
610
611                 /* Emit the signature cookie just before the implicit arguments */
612                 add_general (&gr, &stack_size, &cinfo->sig_cookie, FALSE);
613         }
614
615         /* return value */
616         ret_type = mini_get_underlying_type (sig->ret);
617         switch (ret_type->type) {
618         case MONO_TYPE_BOOLEAN:
619         case MONO_TYPE_I1:
620         case MONO_TYPE_U1:
621         case MONO_TYPE_I2:
622         case MONO_TYPE_U2:
623         case MONO_TYPE_CHAR:
624         case MONO_TYPE_I4:
625         case MONO_TYPE_U4:
626         case MONO_TYPE_I:
627         case MONO_TYPE_U:
628         case MONO_TYPE_PTR:
629         case MONO_TYPE_FNPTR:
630         case MONO_TYPE_CLASS:
631         case MONO_TYPE_OBJECT:
632         case MONO_TYPE_SZARRAY:
633         case MONO_TYPE_ARRAY:
634         case MONO_TYPE_STRING:
635                 cinfo->ret.storage = ArgInIReg;
636                 cinfo->ret.reg = sparc_i0;
637                 if (gr < 1)
638                         gr = 1;
639                 break;
640         case MONO_TYPE_U8:
641         case MONO_TYPE_I8:
642 #ifdef SPARCV9
643                 cinfo->ret.storage = ArgInIReg;
644                 cinfo->ret.reg = sparc_i0;
645                 if (gr < 1)
646                         gr = 1;
647 #else
648                 cinfo->ret.storage = ArgInIRegPair;
649                 cinfo->ret.reg = sparc_i0;
650                 if (gr < 2)
651                         gr = 2;
652 #endif
653                 break;
654         case MONO_TYPE_R4:
655         case MONO_TYPE_R8:
656                 cinfo->ret.storage = ArgInFReg;
657                 cinfo->ret.reg = sparc_f0;
658                 break;
659         case MONO_TYPE_GENERICINST:
660                 if (!mono_type_generic_inst_is_valuetype (ret_type)) {
661                         cinfo->ret.storage = ArgInIReg;
662                         cinfo->ret.reg = sparc_i0;
663                         if (gr < 1)
664                                 gr = 1;
665                         break;
666                 }
667                 /* Fall through */
668         case MONO_TYPE_VALUETYPE:
669                 if (v64) {
670                         if (sig->pinvoke)
671                                 NOT_IMPLEMENTED;
672                         else
673                                 /* Already done */
674                                 ;
675                 }
676                 else
677                         cinfo->ret.storage = ArgOnStack;
678                 break;
679         case MONO_TYPE_TYPEDBYREF:
680                 if (v64) {
681                         if (sig->pinvoke)
682                                 /* Same as a valuetype with size 24 */
683                                 NOT_IMPLEMENTED;
684                         else
685                                 /* Already done */
686                                 ;
687                 }
688                 else
689                         cinfo->ret.storage = ArgOnStack;
690                 break;
691         case MONO_TYPE_VOID:
692                 break;
693         default:
694                 g_error ("Can't handle as return value 0x%x", sig->ret->type);
695         }
696
697         cinfo->stack_usage = stack_size;
698         cinfo->reg_usage = gr;
699         return cinfo;
700 }
701
702 GList *
703 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
704 {
705         GList *vars = NULL;
706         int i;
707
708         /* 
709          * FIXME: If an argument is allocated to a register, then load it from the
710          * stack in the prolog.
711          */
712
713         for (i = 0; i < cfg->num_varinfo; i++) {
714                 MonoInst *ins = cfg->varinfo [i];
715                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
716
717                 /* unused vars */
718                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
719                         continue;
720
721                 /* FIXME: Make arguments on stack allocateable to registers */
722                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || (ins->opcode == OP_REGVAR) || (ins->opcode == OP_ARG))
723                         continue;
724
725                 if (mono_is_regsize_var (ins->inst_vtype)) {
726                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
727                         g_assert (i == vmv->idx);
728
729                         vars = mono_varlist_insert_sorted (cfg, vars, vmv, FALSE);
730                 }
731         }
732
733         return vars;
734 }
735
736 GList *
737 mono_arch_get_global_int_regs (MonoCompile *cfg)
738 {
739         GList *regs = NULL;
740         int i;
741         MonoMethodSignature *sig;
742         CallInfo *cinfo;
743
744         sig = mono_method_signature (cfg->method);
745
746         cinfo = get_call_info (cfg, sig, FALSE);
747
748         /* Use unused input registers */
749         for (i = cinfo->reg_usage; i < 6; ++i)
750                 regs = g_list_prepend (regs, GUINT_TO_POINTER (sparc_i0 + i));
751
752         /* Use %l0..%l6 as global registers */
753         for (i = sparc_l0; i < sparc_l7; ++i)
754                 regs = g_list_prepend (regs, GUINT_TO_POINTER (i));
755
756         g_free (cinfo);
757
758         return regs;
759 }
760
761 /*
762  * mono_arch_regalloc_cost:
763  *
764  *  Return the cost, in number of memory references, of the action of 
765  * allocating the variable VMV into a register during global register
766  * allocation.
767  */
768 guint32
769 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
770 {
771         return 0;
772 }
773
774 /*
775  * Set var information according to the calling convention. sparc version.
776  * The locals var stuff should most likely be split in another method.
777  */
778
779 void
780 mono_arch_allocate_vars (MonoCompile *cfg)
781 {
782         MonoMethodSignature *sig;
783         MonoMethodHeader *header;
784         MonoInst *inst;
785         int i, offset, size, align, curinst;
786         CallInfo *cinfo;
787
788         header = cfg->header;
789
790         sig = mono_method_signature (cfg->method);
791
792         cinfo = get_call_info (cfg, sig, FALSE);
793
794         if (sig->ret->type != MONO_TYPE_VOID) {
795                 switch (cinfo->ret.storage) {
796                 case ArgInIReg:
797                 case ArgInFReg:
798                         cfg->ret->opcode = OP_REGVAR;
799                         cfg->ret->inst_c0 = cinfo->ret.reg;
800                         break;
801                 case ArgInIRegPair: {
802                         MonoType *t = mini_get_underlying_type (sig->ret);
803                         if (((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
804                                 MonoInst *low = get_vreg_to_inst (cfg, cfg->ret->dreg + 1);
805                                 MonoInst *high = get_vreg_to_inst (cfg, cfg->ret->dreg + 2);
806
807                                 low->opcode = OP_REGVAR;
808                                 low->dreg = cinfo->ret.reg + 1;
809                                 high->opcode = OP_REGVAR;
810                                 high->dreg = cinfo->ret.reg;
811                         }
812                         cfg->ret->opcode = OP_REGVAR;
813                         cfg->ret->inst_c0 = cinfo->ret.reg;
814                         break;
815                 }
816                 case ArgOnStack:
817 #ifdef SPARCV9
818                         g_assert_not_reached ();
819 #else
820                         /* valuetypes */
821                         cfg->vret_addr->opcode = OP_REGOFFSET;
822                         cfg->vret_addr->inst_basereg = sparc_fp;
823                         cfg->vret_addr->inst_offset = 64;
824 #endif
825                         break;
826                 default:
827                         NOT_IMPLEMENTED;
828                 }
829                 cfg->ret->dreg = cfg->ret->inst_c0;
830         }
831
832         /*
833          * We use the ABI calling conventions for managed code as well.
834          * Exception: valuetypes are never returned in registers on V9.
835          * FIXME: Use something more optimized.
836          */
837
838         /* Locals are allocated backwards from %fp */
839         cfg->frame_reg = sparc_fp;
840         offset = 0;
841
842         /* 
843          * Reserve a stack slot for holding information used during exception 
844          * handling.
845          */
846         if (header->num_clauses)
847                 offset += sizeof (gpointer) * 2;
848
849         if (cfg->method->save_lmf) {
850                 offset += sizeof (MonoLMF);
851                 cfg->arch.lmf_offset = offset;
852         }
853
854         curinst = cfg->locals_start;
855         for (i = curinst; i < cfg->num_varinfo; ++i) {
856                 inst = cfg->varinfo [i];
857
858                 if ((inst->opcode == OP_REGVAR) || (inst->opcode == OP_REGOFFSET)) {
859                         //g_print ("allocating local %d to %s\n", i, mono_arch_regname (inst->dreg));
860                         continue;
861                 }
862
863                 if (inst->flags & MONO_INST_IS_DEAD)
864                         continue;
865
866                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
867                 * pinvoke wrappers when they call functions returning structure */
868                 if (inst->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (inst->inst_vtype) && inst->inst_vtype->type != MONO_TYPE_TYPEDBYREF)
869                         size = mono_class_native_size (mono_class_from_mono_type (inst->inst_vtype), &align);
870                 else
871                         size = mini_type_stack_size (inst->inst_vtype, &align);
872
873                 /* 
874                  * This is needed since structures containing doubles must be doubleword 
875          * aligned.
876                  * FIXME: Do this only if needed.
877                  */
878                 if (MONO_TYPE_ISSTRUCT (inst->inst_vtype))
879                         align = 8;
880
881                 /*
882                  * variables are accessed as negative offsets from %fp, so increase
883                  * the offset before assigning it to a variable
884                  */
885                 offset += size;
886
887                 offset += align - 1;
888                 offset &= ~(align - 1);
889                 inst->opcode = OP_REGOFFSET;
890                 inst->inst_basereg = sparc_fp;
891                 inst->inst_offset = STACK_BIAS + -offset;
892
893                 //g_print ("allocating local %d to [%s - %d]\n", i, mono_arch_regname (inst->inst_basereg), - inst->inst_offset);
894         }
895
896         if (sig->call_convention == MONO_CALL_VARARG) {
897                 cfg->sig_cookie = cinfo->sig_cookie.offset + ARGS_OFFSET;
898         }
899
900         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
901                 inst = cfg->args [i];
902                 if (inst->opcode != OP_REGVAR) {
903                         ArgInfo *ainfo = &cinfo->args [i];
904                         gboolean inreg = TRUE;
905                         MonoType *arg_type;
906                         ArgStorage storage;
907
908                         if (sig->hasthis && (i == 0))
909                                 arg_type = &mono_defaults.object_class->byval_arg;
910                         else
911                                 arg_type = sig->params [i - sig->hasthis];
912
913 #ifndef SPARCV9
914                         if (!arg_type->byref && ((arg_type->type == MONO_TYPE_R4) 
915                                                                          || (arg_type->type == MONO_TYPE_R8)))
916                                 /*
917                                  * Since float arguments are passed in integer registers, we need to
918                                  * save them to the stack in the prolog.
919                                  */
920                                 inreg = FALSE;
921 #endif
922
923                         /* FIXME: Allocate volatile arguments to registers */
924                         /* FIXME: This makes the argument holding a vtype address into volatile */
925                         if (inst->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT))
926                                 inreg = FALSE;
927
928                         if (MONO_TYPE_ISSTRUCT (arg_type))
929                                 /* FIXME: this isn't needed */
930                                 inreg = FALSE;
931
932                         inst->opcode = OP_REGOFFSET;
933
934                         if (!inreg)
935                                 storage = ArgOnStack;
936                         else
937                                 storage = ainfo->storage;
938
939                         switch (storage) {
940                         case ArgInIReg:
941                                 inst->opcode = OP_REGVAR;
942                                 inst->dreg = sparc_i0 + ainfo->reg;
943                                 break;
944                         case ArgInIRegPair:
945                                 if (inst->type == STACK_I8) {
946                                         MonoInst *low = get_vreg_to_inst (cfg, inst->dreg + 1);
947                                         MonoInst *high = get_vreg_to_inst (cfg, inst->dreg + 2);
948
949                                         low->opcode = OP_REGVAR;
950                                         low->dreg = sparc_i0 + ainfo->reg + 1;
951                                         high->opcode = OP_REGVAR;
952                                         high->dreg = sparc_i0 + ainfo->reg;
953                                 }
954                                 inst->opcode = OP_REGVAR;
955                                 inst->dreg = sparc_i0 + ainfo->reg;
956                                 break;
957                         case ArgInFloatReg:
958                         case ArgInDoubleReg:
959                                 /* 
960                                  * Since float regs are volatile, we save the arguments to
961                                  * the stack in the prolog.
962                                  * FIXME: Avoid this if the method contains no calls.
963                                  */
964                         case ArgOnStack:
965                         case ArgOnStackPair:
966                         case ArgInSplitRegStack:
967                                 /* Split arguments are saved to the stack in the prolog */
968                                 inst->opcode = OP_REGOFFSET;
969                                 /* in parent frame */
970                                 inst->inst_basereg = sparc_fp;
971                                 inst->inst_offset = ainfo->offset + ARGS_OFFSET;
972
973                                 if (!arg_type->byref && (arg_type->type == MONO_TYPE_R8)) {
974                                         /* 
975                                          * It is very hard to load doubles from non-doubleword aligned
976                                          * memory locations. So if the offset is misaligned, we copy the
977                                          * argument to a stack location in the prolog.
978                                          */
979                                         if ((inst->inst_offset - STACK_BIAS) % 8) {
980                                                 inst->inst_basereg = sparc_fp;
981                                                 offset += 8;
982                                                 align = 8;
983                                                 offset += align - 1;
984                                                 offset &= ~(align - 1);
985                                                 inst->inst_offset = STACK_BIAS + -offset;
986
987                                         }
988                                 }
989                                 break;
990                         default:
991                                 NOT_IMPLEMENTED;
992                         }
993
994                         if (MONO_TYPE_ISSTRUCT (arg_type)) {
995                                 /* Add a level of indirection */
996                                 /*
997                                  * It would be easier to add OP_LDIND_I here, but ldind_i instructions
998                                  * are destructively modified in a lot of places in inssel.brg.
999                                  */
1000                                 MonoInst *indir;
1001                                 MONO_INST_NEW (cfg, indir, 0);
1002                                 *indir = *inst;
1003                                 inst->opcode = OP_VTARG_ADDR;
1004                                 inst->inst_left = indir;
1005                         }
1006                 }
1007         }
1008
1009         /* 
1010          * spillvars are stored between the normal locals and the storage reserved
1011          * by the ABI.
1012          */
1013
1014         cfg->stack_offset = offset;
1015
1016         g_free (cinfo);
1017 }
1018
1019 void
1020 mono_arch_create_vars (MonoCompile *cfg)
1021 {
1022         MonoMethodSignature *sig;
1023
1024         sig = mono_method_signature (cfg->method);
1025
1026         if (MONO_TYPE_ISSTRUCT ((sig->ret))) {
1027                 cfg->vret_addr = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_ARG);
1028                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
1029                         printf ("vret_addr = ");
1030                         mono_print_ins (cfg->vret_addr);
1031                 }
1032         }
1033
1034         if (!sig->ret->byref && (sig->ret->type == MONO_TYPE_I8 || sig->ret->type == MONO_TYPE_U8)) {
1035                 MonoInst *low = get_vreg_to_inst (cfg, cfg->ret->dreg + 1);
1036                 MonoInst *high = get_vreg_to_inst (cfg, cfg->ret->dreg + 2);
1037
1038                 low->flags |= MONO_INST_VOLATILE;
1039                 high->flags |= MONO_INST_VOLATILE;
1040         }
1041
1042         /* Add a properly aligned dword for use by int<->float conversion opcodes */
1043         cfg->arch.float_spill_slot = mono_compile_create_var (cfg, &mono_defaults.double_class->byval_arg, OP_ARG);
1044         ((MonoInst*)cfg->arch.float_spill_slot)->flags |= MONO_INST_VOLATILE;
1045 }
1046
1047 static void
1048 add_outarg_reg (MonoCompile *cfg, MonoCallInst *call, ArgStorage storage, int reg, guint32 sreg)
1049 {
1050         MonoInst *arg;
1051
1052         MONO_INST_NEW (cfg, arg, 0);
1053
1054         arg->sreg1 = sreg;
1055
1056         switch (storage) {
1057         case ArgInIReg:
1058                 arg->opcode = OP_MOVE;
1059                 arg->dreg = mono_alloc_ireg (cfg);
1060
1061                 mono_call_inst_add_outarg_reg (cfg, call, arg->dreg, reg, FALSE);
1062                 break;
1063         case ArgInFloatReg:
1064                 arg->opcode = OP_FMOVE;
1065                 arg->dreg = mono_alloc_freg (cfg);
1066
1067                 mono_call_inst_add_outarg_reg (cfg, call, arg->dreg, reg, TRUE);
1068                 break;
1069         default:
1070                 g_assert_not_reached ();
1071         }
1072
1073         MONO_ADD_INS (cfg->cbb, arg);
1074 }
1075
1076 static void
1077 add_outarg_load (MonoCompile *cfg, MonoCallInst *call, int opcode, int basereg, int offset, int reg)
1078 {
1079         int dreg = mono_alloc_ireg (cfg);
1080
1081     MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, sparc_sp, offset);
1082
1083         mono_call_inst_add_outarg_reg (cfg, call, dreg, reg, FALSE);
1084 }
1085
1086 static void
1087 emit_pass_long (MonoCompile *cfg, MonoCallInst *call, ArgInfo *ainfo, MonoInst *in)
1088 {
1089         int offset = ARGS_OFFSET + ainfo->offset;
1090
1091         switch (ainfo->storage) {
1092         case ArgInIRegPair:
1093                 add_outarg_reg (cfg, call, ArgInIReg, sparc_o0 + ainfo->reg + 1, in->dreg + 1);
1094                 add_outarg_reg (cfg, call, ArgInIReg, sparc_o0 + ainfo->reg, in->dreg + 2);
1095                 break;
1096         case ArgOnStackPair:
1097                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, sparc_sp, offset, in->dreg + 2);
1098                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, sparc_sp, offset + 4, in->dreg + 1);
1099                 break;
1100         case ArgInSplitRegStack:
1101                 add_outarg_reg (cfg, call, ArgInIReg, sparc_o0 + ainfo->reg, in->dreg + 2);
1102                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, sparc_sp, offset + 4, in->dreg + 1);
1103                 break;
1104         default:
1105                 g_assert_not_reached ();
1106         }
1107 }
1108
1109 static void
1110 emit_pass_double (MonoCompile *cfg, MonoCallInst *call, ArgInfo *ainfo, MonoInst *in)
1111 {
1112         int offset = ARGS_OFFSET + ainfo->offset;
1113
1114         switch (ainfo->storage) {
1115         case ArgInIRegPair:
1116                 /* floating-point <-> integer transfer must go through memory */
1117                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, sparc_sp, offset, in->dreg);
1118
1119                 /* Load into a register pair */
1120                 add_outarg_load (cfg, call, OP_LOADI4_MEMBASE, sparc_sp, offset, sparc_o0 + ainfo->reg);
1121                 add_outarg_load (cfg, call, OP_LOADI4_MEMBASE, sparc_sp, offset + 4, sparc_o0 + ainfo->reg + 1);
1122                 break;
1123         case ArgOnStackPair:
1124                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, sparc_sp, offset, in->dreg);
1125                 break;
1126         case ArgInSplitRegStack:
1127                 /* floating-point <-> integer transfer must go through memory */
1128                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, sparc_sp, offset, in->dreg);
1129                 /* Load most significant word into register */
1130                 add_outarg_load (cfg, call, OP_LOADI4_MEMBASE, sparc_sp, offset, sparc_o0 + ainfo->reg);
1131                 break;
1132         default:
1133                 g_assert_not_reached ();
1134         }
1135 }
1136
1137 static void
1138 emit_pass_float (MonoCompile *cfg, MonoCallInst *call, ArgInfo *ainfo, MonoInst *in)
1139 {
1140         int offset = ARGS_OFFSET + ainfo->offset;
1141
1142         switch (ainfo->storage) {
1143         case ArgInIReg:
1144                 /* floating-point <-> integer transfer must go through memory */
1145                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, sparc_sp, offset, in->dreg);
1146                 add_outarg_load (cfg, call, OP_LOADI4_MEMBASE, sparc_sp, offset, sparc_o0 + ainfo->reg);
1147                 break;
1148         case ArgOnStack:
1149                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, sparc_sp, offset, in->dreg);
1150                 break;
1151         default:
1152                 g_assert_not_reached ();
1153         }
1154 }
1155
1156 static void
1157 emit_pass_other (MonoCompile *cfg, MonoCallInst *call, ArgInfo *ainfo, MonoType *arg_type, MonoInst *in);
1158
1159 static void
1160 emit_pass_vtype (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo, ArgInfo *ainfo, MonoType *arg_type, MonoInst *in, gboolean pinvoke)
1161 {
1162         MonoInst *arg;
1163         guint32 align, offset, pad, size;
1164
1165         if (arg_type->type == MONO_TYPE_TYPEDBYREF) {
1166                 size = sizeof (MonoTypedRef);
1167                 align = sizeof (gpointer);
1168         }
1169         else if (pinvoke)
1170                 size = mono_type_native_stack_size (&in->klass->byval_arg, &align);
1171         else {
1172                 /* 
1173                  * Other backends use mono_type_stack_size (), but that
1174                  * aligns the size to 8, which is larger than the size of
1175                  * the source, leading to reads of invalid memory if the
1176                  * source is at the end of address space.
1177                  */
1178                 size = mono_class_value_size (in->klass, &align);
1179         }
1180
1181         /* The first 6 argument locations are reserved */
1182         if (cinfo->stack_usage < 6 * sizeof (gpointer))
1183                 cinfo->stack_usage = 6 * sizeof (gpointer);
1184
1185         offset = ALIGN_TO ((ARGS_OFFSET - STACK_BIAS) + cinfo->stack_usage, align);
1186         pad = offset - ((ARGS_OFFSET - STACK_BIAS) + cinfo->stack_usage);
1187
1188         cinfo->stack_usage += size;
1189         cinfo->stack_usage += pad;
1190
1191         /* 
1192          * We use OP_OUTARG_VT to copy the valuetype to a stack location, then
1193          * use the normal OUTARG opcodes to pass the address of the location to
1194          * the callee.
1195          */
1196         if (size > 0) {
1197                 MONO_INST_NEW (cfg, arg, OP_OUTARG_VT);
1198                 arg->sreg1 = in->dreg;
1199                 arg->klass = in->klass;
1200                 arg->backend.size = size;
1201                 arg->inst_p0 = call;
1202                 arg->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
1203                 memcpy (arg->inst_p1, ainfo, sizeof (ArgInfo));
1204                 ((ArgInfo*)(arg->inst_p1))->offset = STACK_BIAS + offset;
1205                 MONO_ADD_INS (cfg->cbb, arg);
1206
1207                 MONO_INST_NEW (cfg, arg, OP_ADD_IMM);
1208                 arg->dreg = mono_alloc_preg (cfg);
1209                 arg->sreg1 = sparc_sp;
1210                 arg->inst_imm = STACK_BIAS + offset;
1211                 MONO_ADD_INS (cfg->cbb, arg);
1212
1213                 emit_pass_other (cfg, call, ainfo, NULL, arg);
1214         }
1215 }
1216
1217 static void
1218 emit_pass_other (MonoCompile *cfg, MonoCallInst *call, ArgInfo *ainfo, MonoType *arg_type, MonoInst *in)
1219 {
1220         int offset = ARGS_OFFSET + ainfo->offset;
1221         int opcode;
1222
1223         switch (ainfo->storage) {
1224         case ArgInIReg:
1225                 add_outarg_reg (cfg, call, ArgInIReg, sparc_o0 + ainfo->reg, in->dreg);
1226                 break;
1227         case ArgOnStack:
1228 #ifdef SPARCV9
1229                 NOT_IMPLEMENTED;
1230 #else
1231                 if (offset & 0x1)
1232                         opcode = OP_STOREI1_MEMBASE_REG;
1233                 else if (offset & 0x2)
1234                         opcode = OP_STOREI2_MEMBASE_REG;
1235                 else
1236                         opcode = OP_STOREI4_MEMBASE_REG;
1237                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, opcode, sparc_sp, offset, in->dreg);
1238 #endif
1239                 break;
1240         default:
1241                 g_assert_not_reached ();
1242         }
1243 }
1244
1245 static void
1246 emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
1247 {
1248         MonoMethodSignature *tmp_sig;
1249
1250         /*
1251          * mono_ArgIterator_Setup assumes the signature cookie is 
1252          * passed first and all the arguments which were before it are
1253          * passed on the stack after the signature. So compensate by 
1254          * passing a different signature.
1255          */
1256         tmp_sig = mono_metadata_signature_dup (call->signature);
1257         tmp_sig->param_count -= call->signature->sentinelpos;
1258         tmp_sig->sentinelpos = 0;
1259         memcpy (tmp_sig->params, call->signature->params + call->signature->sentinelpos, tmp_sig->param_count * sizeof (MonoType*));
1260
1261         /* FIXME: Add support for signature tokens to AOT */
1262         cfg->disable_aot = TRUE;
1263         /* We allways pass the signature on the stack for simplicity */
1264         MONO_EMIT_NEW_STORE_MEMBASE_IMM (cfg, OP_STORE_MEMBASE_IMM, sparc_sp, ARGS_OFFSET + cinfo->sig_cookie.offset, tmp_sig);
1265 }
1266
1267 void
1268 mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
1269 {
1270         MonoInst *in;
1271         MonoMethodSignature *sig;
1272         int i, n;
1273         CallInfo *cinfo;
1274         ArgInfo *ainfo;
1275         guint32 extra_space = 0;
1276
1277         sig = call->signature;
1278         n = sig->param_count + sig->hasthis;
1279         
1280         cinfo = get_call_info (cfg, sig, sig->pinvoke);
1281
1282         if (sig->ret && MONO_TYPE_ISSTRUCT (sig->ret)) {
1283                 /* Set the 'struct/union return pointer' location on the stack */
1284                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, sparc_sp, 64, call->vret_var->dreg);
1285         }
1286
1287         for (i = 0; i < n; ++i) {
1288                 MonoType *arg_type;
1289
1290                 ainfo = cinfo->args + i;
1291
1292                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1293                         /* Emit the signature cookie just before the first implicit argument */
1294                         emit_sig_cookie (cfg, call, cinfo);
1295                 }
1296
1297                 in = call->args [i];
1298
1299                 if (sig->hasthis && (i == 0))
1300                         arg_type = &mono_defaults.object_class->byval_arg;
1301                 else
1302                         arg_type = sig->params [i - sig->hasthis];
1303
1304                 arg_type = mini_get_underlying_type (arg_type);
1305                 if ((i >= sig->hasthis) && (MONO_TYPE_ISSTRUCT(sig->params [i - sig->hasthis])))
1306                         emit_pass_vtype (cfg, call, cinfo, ainfo, arg_type, in, sig->pinvoke);
1307                 else if (!arg_type->byref && ((arg_type->type == MONO_TYPE_I8) || (arg_type->type == MONO_TYPE_U8)))
1308                         emit_pass_long (cfg, call, ainfo, in);
1309                 else if (!arg_type->byref && (arg_type->type == MONO_TYPE_R8))
1310                         emit_pass_double (cfg, call, ainfo, in);
1311                 else if (!arg_type->byref && (arg_type->type == MONO_TYPE_R4))
1312                         emit_pass_float (cfg, call, ainfo, in);
1313                 else
1314                         emit_pass_other (cfg, call, ainfo, arg_type, in);
1315         }
1316
1317         /* Handle the case where there are no implicit arguments */
1318         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n == sig->sentinelpos)) {
1319                 emit_sig_cookie (cfg, call, cinfo);
1320         }
1321
1322         call->stack_usage = cinfo->stack_usage + extra_space;
1323
1324         g_free (cinfo);
1325 }
1326
1327 void
1328 mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
1329 {
1330         ArgInfo *ainfo = (ArgInfo*)ins->inst_p1;
1331         int size = ins->backend.size;
1332
1333         mini_emit_memcpy (cfg, sparc_sp, ainfo->offset, src->dreg, 0, size, 0);
1334 }
1335
1336 void
1337 mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
1338 {
1339         CallInfo *cinfo = get_call_info (cfg, mono_method_signature (method), FALSE);
1340         MonoType *ret = mini_get_underlying_type (mono_method_signature (method)->ret);
1341
1342         switch (cinfo->ret.storage) {
1343         case ArgInIReg:
1344                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
1345                 break;
1346         case ArgInIRegPair:
1347                 if (ret->type == MONO_TYPE_I8 || ret->type == MONO_TYPE_U8) {
1348                         MONO_EMIT_NEW_UNALU (cfg, OP_LMOVE, cfg->ret->dreg, val->dreg);
1349                 } else {
1350                         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg + 2, val->dreg + 2);
1351                         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg + 1, val->dreg + 1);
1352                 }
1353                 break;
1354         case ArgInFReg:
1355                 if (ret->type == MONO_TYPE_R4)
1356                         MONO_EMIT_NEW_UNALU (cfg, OP_SETFRET, cfg->ret->dreg, val->dreg);
1357                 else
1358                         MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, cfg->ret->dreg, val->dreg);
1359                 break;
1360         default:
1361                 g_assert_not_reached ();
1362         }
1363
1364         g_assert (cinfo);
1365 }
1366
1367 int cond_to_sparc_cond [][3] = {
1368         {sparc_be,   sparc_be,   sparc_fbe},
1369         {sparc_bne,  sparc_bne,  0},
1370         {sparc_ble,  sparc_ble,  sparc_fble},
1371         {sparc_bge,  sparc_bge,  sparc_fbge},
1372         {sparc_bl,   sparc_bl,   sparc_fbl},
1373         {sparc_bg,   sparc_bg,   sparc_fbg},
1374         {sparc_bleu, sparc_bleu, 0},
1375         {sparc_beu,  sparc_beu,  0},
1376         {sparc_blu,  sparc_blu,  sparc_fbl},
1377         {sparc_bgu,  sparc_bgu,  sparc_fbg}
1378 };
1379
1380 /* Map opcode to the sparc condition codes */
1381 static inline SparcCond
1382 opcode_to_sparc_cond (int opcode)
1383 {
1384         CompRelation rel;
1385         CompType t;
1386
1387         switch (opcode) {
1388         case OP_COND_EXC_OV:
1389         case OP_COND_EXC_IOV:
1390                 return sparc_bvs;
1391         case OP_COND_EXC_C:
1392         case OP_COND_EXC_IC:
1393                 return sparc_bcs;
1394         case OP_COND_EXC_NO:
1395         case OP_COND_EXC_NC:
1396                 NOT_IMPLEMENTED;
1397         default:
1398                 rel = mono_opcode_to_cond (opcode);
1399                 t = mono_opcode_to_type (opcode, -1);
1400
1401                 return cond_to_sparc_cond [rel][t];
1402                 break;
1403         }
1404
1405         return -1;
1406 }
1407
1408 #define COMPUTE_DISP(ins) \
1409 if (ins->inst_true_bb->native_offset) \
1410    disp = (ins->inst_true_bb->native_offset - ((guint8*)code - cfg->native_code)) >> 2; \
1411 else { \
1412     disp = 0; \
1413         mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb); \
1414 }
1415
1416 #ifdef SPARCV9
1417 #define DEFAULT_ICC sparc_xcc_short
1418 #else
1419 #define DEFAULT_ICC sparc_icc_short
1420 #endif
1421
1422 #ifdef SPARCV9
1423 #define EMIT_COND_BRANCH_ICC(ins,cond,annul,filldelay,icc) \
1424     do { \
1425         gint32 disp; \
1426         guint32 predict; \
1427         COMPUTE_DISP(ins); \
1428         predict = (disp != 0) ? 1 : 0; \
1429         g_assert (sparc_is_imm19 (disp)); \
1430         sparc_branchp (code, (annul), cond, icc, (predict), disp); \
1431         if (filldelay) sparc_nop (code); \
1432     } while (0)
1433 #define EMIT_COND_BRANCH(ins,cond,annul,filldelay) EMIT_COND_BRANCH_ICC ((ins), (cond), (annul), (filldelay), (sparc_xcc_short))
1434 #define EMIT_FLOAT_COND_BRANCH(ins,cond,annul,filldelay) \
1435     do { \
1436         gint32 disp; \
1437         guint32 predict; \
1438         COMPUTE_DISP(ins); \
1439         predict = (disp != 0) ? 1 : 0; \
1440         g_assert (sparc_is_imm19 (disp)); \
1441         sparc_fbranch (code, (annul), cond, disp); \
1442         if (filldelay) sparc_nop (code); \
1443     } while (0)
1444 #else
1445 #define EMIT_COND_BRANCH_ICC(ins,cond,annul,filldelay,icc) g_assert_not_reached ()
1446 #define EMIT_COND_BRANCH_GENERAL(ins,bop,cond,annul,filldelay) \
1447     do { \
1448         gint32 disp; \
1449         COMPUTE_DISP(ins); \
1450         g_assert (sparc_is_imm22 (disp)); \
1451         sparc_ ## bop (code, (annul), cond, disp); \
1452         if (filldelay) sparc_nop (code); \
1453     } while (0)
1454 #define EMIT_COND_BRANCH(ins,cond,annul,filldelay) EMIT_COND_BRANCH_GENERAL((ins),branch,(cond),annul,filldelay)
1455 #define EMIT_FLOAT_COND_BRANCH(ins,cond,annul,filldelay) EMIT_COND_BRANCH_GENERAL((ins),fbranch,(cond),annul,filldelay)
1456 #endif
1457
1458 #define EMIT_COND_BRANCH_PREDICTED(ins,cond,annul,filldelay) \
1459     do { \
1460             gint32 disp; \
1461         guint32 predict; \
1462         COMPUTE_DISP(ins); \
1463         predict = (disp != 0) ? 1 : 0; \
1464         g_assert (sparc_is_imm19 (disp)); \
1465                 sparc_branchp (code, (annul), (cond), DEFAULT_ICC, (predict), disp); \
1466         if (filldelay) sparc_nop (code); \
1467     } while (0)
1468
1469 #define EMIT_COND_BRANCH_BPR(ins,bop,predict,annul,filldelay) \
1470     do { \
1471             gint32 disp; \
1472         COMPUTE_DISP(ins); \
1473                 g_assert (sparc_is_imm22 (disp)); \
1474                 sparc_ ## bop (code, (annul), (predict), ins->sreg1, disp); \
1475         if (filldelay) sparc_nop (code); \
1476     } while (0)
1477
1478 /* emit an exception if condition is fail */
1479 /*
1480  * We put the exception throwing code out-of-line, at the end of the method
1481  */
1482 #define EMIT_COND_SYSTEM_EXCEPTION_GENERAL(ins,cond,sexc_name,filldelay,icc) do {     \
1483                 mono_add_patch_info (cfg, (guint8*)(code) - (cfg)->native_code,   \
1484                                     MONO_PATCH_INFO_EXC, sexc_name);  \
1485         if (mono_hwcap_sparc_is_v9 && ((icc) != sparc_icc_short)) {          \
1486            sparc_branchp (code, 0, (cond), (icc), 0, 0); \
1487         } \
1488         else { \
1489                         sparc_branch (code, 0, cond, 0);     \
1490         } \
1491         if (filldelay) sparc_nop (code);     \
1492         } while (0); 
1493
1494 #define EMIT_COND_SYSTEM_EXCEPTION(ins,cond,sexc_name) EMIT_COND_SYSTEM_EXCEPTION_GENERAL(ins,cond,sexc_name,TRUE,DEFAULT_ICC)
1495
1496 #define EMIT_COND_SYSTEM_EXCEPTION_BPR(ins,bop,sexc_name) do { \
1497                 mono_add_patch_info (cfg, (guint8*)(code) - (cfg)->native_code,   \
1498                                     MONO_PATCH_INFO_EXC, sexc_name);  \
1499                 sparc_ ## bop (code, FALSE, FALSE, ins->sreg1, 0); \
1500         sparc_nop (code);    \
1501 } while (0);
1502
1503 #define EMIT_ALU_IMM(ins,op,setcc) do { \
1504                         if (sparc_is_imm13 ((ins)->inst_imm)) \
1505                                 sparc_ ## op ## _imm (code, (setcc), (ins)->sreg1, ins->inst_imm, (ins)->dreg); \
1506                         else { \
1507                                 sparc_set (code, ins->inst_imm, sparc_o7); \
1508                                 sparc_ ## op (code, (setcc), (ins)->sreg1, sparc_o7, (ins)->dreg); \
1509                         } \
1510 } while (0);
1511
1512 #define EMIT_LOAD_MEMBASE(ins,op) do { \
1513                         if (sparc_is_imm13 (ins->inst_offset)) \
1514                                 sparc_ ## op ## _imm (code, ins->inst_basereg, ins->inst_offset, ins->dreg); \
1515                         else { \
1516                                 sparc_set (code, ins->inst_offset, sparc_o7); \
1517                                 sparc_ ## op (code, ins->inst_basereg, sparc_o7, ins->dreg); \
1518                         } \
1519 } while (0);
1520
1521 /* max len = 5 */
1522 #define EMIT_STORE_MEMBASE_IMM(ins,op) do { \
1523                         guint32 sreg; \
1524                         if (ins->inst_imm == 0) \
1525                                 sreg = sparc_g0; \
1526                         else { \
1527                                 sparc_set (code, ins->inst_imm, sparc_o7); \
1528                                 sreg = sparc_o7; \
1529                         } \
1530                         if (!sparc_is_imm13 (ins->inst_offset)) { \
1531                                 sparc_set (code, ins->inst_offset, GP_SCRATCH_REG); \
1532                                 sparc_ ## op (code, sreg, ins->inst_destbasereg, GP_SCRATCH_REG); \
1533                         } \
1534                         else \
1535                                 sparc_ ## op ## _imm (code, sreg, ins->inst_destbasereg, ins->inst_offset); \
1536                                                                                                                                                                                  } while (0);
1537
1538 #define EMIT_STORE_MEMBASE_REG(ins,op) do { \
1539                         if (!sparc_is_imm13 (ins->inst_offset)) { \
1540                                 sparc_set (code, ins->inst_offset, sparc_o7); \
1541                                 sparc_ ## op (code, ins->sreg1, ins->inst_destbasereg, sparc_o7); \
1542                         } \
1543                                   else \
1544                                 sparc_ ## op ## _imm (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset); \
1545                                                                                                                                                                                  } while (0);
1546
1547 #define EMIT_CALL() do { \
1548     if (v64) { \
1549         sparc_set_template (code, sparc_o7); \
1550         sparc_jmpl (code, sparc_o7, sparc_g0, sparc_o7); \
1551     } \
1552     else { \
1553         sparc_call_simple (code, 0); \
1554     } \
1555     sparc_nop (code); \
1556 } while (0);
1557
1558 /*
1559  * A call template is 7 instructions long, so we want to avoid it if possible.
1560  */
1561 static guint32*
1562 emit_call (MonoCompile *cfg, guint32 *code, guint32 patch_type, gconstpointer data)
1563 {
1564         gpointer target;
1565
1566         /* FIXME: This only works if the target method is already compiled */
1567         if (0 && v64 && !cfg->compile_aot) {
1568                 MonoJumpInfo patch_info;
1569
1570                 patch_info.type = patch_type;
1571                 patch_info.data.target = data;
1572
1573                 target = mono_resolve_patch_target (cfg->method, cfg->domain, NULL, &patch_info, FALSE);
1574
1575                 /* FIXME: Add optimizations if the target is close enough */
1576                 sparc_set (code, target, sparc_o7);
1577                 sparc_jmpl (code, sparc_o7, sparc_g0, sparc_o7);
1578                 sparc_nop (code);
1579         }
1580         else {
1581                 mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, patch_type, data);
1582                 EMIT_CALL ();
1583         }
1584         
1585         return code;
1586 }
1587
1588 void
1589 mono_arch_peephole_pass_1 (MonoCompile *cfg, MonoBasicBlock *bb)
1590 {
1591 }
1592
1593 void
1594 mono_arch_peephole_pass_2 (MonoCompile *cfg, MonoBasicBlock *bb)
1595 {
1596         MonoInst *ins, *n, *last_ins = NULL;
1597         ins = bb->code;
1598
1599         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
1600                 switch (ins->opcode) {
1601                 case OP_MUL_IMM: 
1602                         /* remove unnecessary multiplication with 1 */
1603                         if (ins->inst_imm == 1) {
1604                                 if (ins->dreg != ins->sreg1) {
1605                                         ins->opcode = OP_MOVE;
1606                                 } else {
1607                                         MONO_DELETE_INS (bb, ins);
1608                                         continue;
1609                                 }
1610                         }
1611                         break;
1612 #ifndef SPARCV9
1613                 case OP_LOAD_MEMBASE:
1614                 case OP_LOADI4_MEMBASE:
1615                         /* 
1616                          * OP_STORE_MEMBASE_REG reg, offset(basereg) 
1617                          * OP_LOAD_MEMBASE offset(basereg), reg
1618                          */
1619                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG 
1620                                          || last_ins->opcode == OP_STORE_MEMBASE_REG) &&
1621                             ins->inst_basereg == last_ins->inst_destbasereg &&
1622                             ins->inst_offset == last_ins->inst_offset) {
1623                                 if (ins->dreg == last_ins->sreg1) {
1624                                         MONO_DELETE_INS (bb, ins);
1625                                         continue;
1626                                 } else {
1627                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
1628                                         ins->opcode = OP_MOVE;
1629                                         ins->sreg1 = last_ins->sreg1;
1630                                 }
1631
1632                         /* 
1633                          * Note: reg1 must be different from the basereg in the second load
1634                          * OP_LOAD_MEMBASE offset(basereg), reg1
1635                          * OP_LOAD_MEMBASE offset(basereg), reg2
1636                          * -->
1637                          * OP_LOAD_MEMBASE offset(basereg), reg1
1638                          * OP_MOVE reg1, reg2
1639                          */
1640                         } if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
1641                                            || last_ins->opcode == OP_LOAD_MEMBASE) &&
1642                               ins->inst_basereg != last_ins->dreg &&
1643                               ins->inst_basereg == last_ins->inst_basereg &&
1644                               ins->inst_offset == last_ins->inst_offset) {
1645
1646                                 if (ins->dreg == last_ins->dreg) {
1647                                         MONO_DELETE_INS (bb, ins);
1648                                         continue;
1649                                 } else {
1650                                         ins->opcode = OP_MOVE;
1651                                         ins->sreg1 = last_ins->dreg;
1652                                 }
1653
1654                                 //g_assert_not_reached ();
1655
1656 #if 0
1657                         /* 
1658                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
1659                          * OP_LOAD_MEMBASE offset(basereg), reg
1660                          * -->
1661                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
1662                          * OP_ICONST reg, imm
1663                          */
1664                         } else if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
1665                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
1666                                    ins->inst_basereg == last_ins->inst_destbasereg &&
1667                                    ins->inst_offset == last_ins->inst_offset) {
1668                                 //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
1669                                 ins->opcode = OP_ICONST;
1670                                 ins->inst_c0 = last_ins->inst_imm;
1671                                 g_assert_not_reached (); // check this rule
1672 #endif
1673                         }
1674                         break;
1675 #endif
1676                 case OP_LOADI1_MEMBASE:
1677                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
1678                                         ins->inst_basereg == last_ins->inst_destbasereg &&
1679                                         ins->inst_offset == last_ins->inst_offset) {
1680                                 if (ins->dreg == last_ins->sreg1) {
1681                                         MONO_DELETE_INS (bb, ins);
1682                                         continue;
1683                                 } else {
1684                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
1685                                         ins->opcode = OP_MOVE;
1686                                         ins->sreg1 = last_ins->sreg1;
1687                                 }
1688                         }
1689                         break;
1690                 case OP_LOADI2_MEMBASE:
1691                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
1692                                         ins->inst_basereg == last_ins->inst_destbasereg &&
1693                                         ins->inst_offset == last_ins->inst_offset) {
1694                                 if (ins->dreg == last_ins->sreg1) {
1695                                         MONO_DELETE_INS (bb, ins);
1696                                         continue;
1697                                 } else {
1698                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
1699                                         ins->opcode = OP_MOVE;
1700                                         ins->sreg1 = last_ins->sreg1;
1701                                 }
1702                         }
1703                         break;
1704                 case OP_STOREI4_MEMBASE_IMM:
1705                         /* Convert pairs of 0 stores to a dword 0 store */
1706                         /* Used when initializing temporaries */
1707                         /* We know sparc_fp is dword aligned */
1708                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM) &&
1709                                 (ins->inst_destbasereg == last_ins->inst_destbasereg) && 
1710                                 (ins->inst_destbasereg == sparc_fp) &&
1711                                 (ins->inst_offset < 0) &&
1712                                 ((ins->inst_offset % 8) == 0) &&
1713                                 ((ins->inst_offset == last_ins->inst_offset - 4)) &&
1714                                 (ins->inst_imm == 0) &&
1715                                 (last_ins->inst_imm == 0)) {
1716                                 if (mono_hwcap_sparc_is_v9) {
1717                                         last_ins->opcode = OP_STOREI8_MEMBASE_IMM;
1718                                         last_ins->inst_offset = ins->inst_offset;
1719                                         MONO_DELETE_INS (bb, ins);
1720                                         continue;
1721                                 }
1722                         }
1723                         break;
1724                 case OP_IBEQ:
1725                 case OP_IBNE_UN:
1726                 case OP_IBLT:
1727                 case OP_IBGT:
1728                 case OP_IBGE:
1729                 case OP_IBLE:
1730                 case OP_COND_EXC_EQ:
1731                 case OP_COND_EXC_GE:
1732                 case OP_COND_EXC_GT:
1733                 case OP_COND_EXC_LE:
1734                 case OP_COND_EXC_LT:
1735                 case OP_COND_EXC_NE_UN:
1736                         /*
1737                          * Convert compare with zero+branch to BRcc
1738                          */
1739                         /* 
1740                          * This only works in 64 bit mode, since it examines all 64
1741                          * bits of the register.
1742                          * Only do this if the method is small since BPr only has a 16bit
1743                          * displacement.
1744                          */
1745                         if (v64 && (cfg->header->code_size < 10000) && last_ins && 
1746                                 (last_ins->opcode == OP_COMPARE_IMM) &&
1747                                 (last_ins->inst_imm == 0)) {
1748                                 switch (ins->opcode) {
1749                                 case OP_IBEQ:
1750                                         ins->opcode = OP_SPARC_BRZ;
1751                                         break;
1752                                 case OP_IBNE_UN:
1753                                         ins->opcode = OP_SPARC_BRNZ;
1754                                         break;
1755                                 case OP_IBLT:
1756                                         ins->opcode = OP_SPARC_BRLZ;
1757                                         break;
1758                                 case OP_IBGT:
1759                                         ins->opcode = OP_SPARC_BRGZ;
1760                                         break;
1761                                 case OP_IBGE:
1762                                         ins->opcode = OP_SPARC_BRGEZ;
1763                                         break;
1764                                 case OP_IBLE:
1765                                         ins->opcode = OP_SPARC_BRLEZ;
1766                                         break;
1767                                 case OP_COND_EXC_EQ:
1768                                         ins->opcode = OP_SPARC_COND_EXC_EQZ;
1769                                         break;
1770                                 case OP_COND_EXC_GE:
1771                                         ins->opcode = OP_SPARC_COND_EXC_GEZ;
1772                                         break;
1773                                 case OP_COND_EXC_GT:
1774                                         ins->opcode = OP_SPARC_COND_EXC_GTZ;
1775                                         break;
1776                                 case OP_COND_EXC_LE:
1777                                         ins->opcode = OP_SPARC_COND_EXC_LEZ;
1778                                         break;
1779                                 case OP_COND_EXC_LT:
1780                                         ins->opcode = OP_SPARC_COND_EXC_LTZ;
1781                                         break;
1782                                 case OP_COND_EXC_NE_UN:
1783                                         ins->opcode = OP_SPARC_COND_EXC_NEZ;
1784                                         break;
1785                                 default:
1786                                         g_assert_not_reached ();
1787                                 }
1788                                 ins->sreg1 = last_ins->sreg1;
1789                                 *last_ins = *ins;
1790                                 MONO_DELETE_INS (bb, ins);
1791                                 continue;
1792                         }
1793                         break;
1794                 case OP_MOVE:
1795                         /* 
1796                          * OP_MOVE reg, reg 
1797                          */
1798                         if (ins->dreg == ins->sreg1) {
1799                                 MONO_DELETE_INS (bb, ins);
1800                                 continue;
1801                         }
1802                         /* 
1803                          * OP_MOVE sreg, dreg 
1804                          * OP_MOVE dreg, sreg
1805                          */
1806                         if (last_ins && last_ins->opcode == OP_MOVE &&
1807                             ins->sreg1 == last_ins->dreg &&
1808                             ins->dreg == last_ins->sreg1) {
1809                                 MONO_DELETE_INS (bb, ins);
1810                                 continue;
1811                         }
1812                         break;
1813                 }
1814                 last_ins = ins;
1815                 ins = ins->next;
1816         }
1817         bb->last_ins = last_ins;
1818 }
1819
1820 void
1821 mono_arch_decompose_long_opts (MonoCompile *cfg, MonoInst *ins)
1822 {
1823         switch (ins->opcode) {
1824         case OP_LNEG:
1825                 MONO_EMIT_NEW_BIALU (cfg, OP_SUBCC, ins->dreg + 1, 0, ins->sreg1 + 1);
1826                 MONO_EMIT_NEW_BIALU (cfg, OP_SBB, ins->dreg + 2, 0, ins->sreg1 + 2);
1827                 NULLIFY_INS (ins);
1828                 break;
1829         default:
1830                 break;
1831         }
1832 }
1833
1834 void
1835 mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
1836 {
1837 }
1838
1839 /* FIXME: Strange loads from the stack in basic-float.cs:test_2_rem */
1840
1841 static void
1842 sparc_patch (guint32 *code, const gpointer target)
1843 {
1844         guint32 *c = code;
1845         guint32 ins = *code;
1846         guint32 op = ins >> 30;
1847         guint32 op2 = (ins >> 22) & 0x7;
1848         guint32 rd = (ins >> 25) & 0x1f;
1849         guint8* target8 = (guint8*)target;
1850         gint64 disp = (target8 - (guint8*)code) >> 2;
1851         int reg;
1852
1853 //      g_print ("patching 0x%08x (0x%08x) to point to 0x%08x\n", code, ins, target);
1854
1855         if ((op == 0) && (op2 == 2)) {
1856                 if (!sparc_is_imm22 (disp))
1857                         NOT_IMPLEMENTED;
1858                 /* Bicc */
1859                 *code = ((ins >> 22) << 22) | (disp & 0x3fffff);
1860         }
1861         else if ((op == 0) && (op2 == 1)) {
1862                 if (!sparc_is_imm19 (disp))
1863                         NOT_IMPLEMENTED;
1864                 /* BPcc */
1865                 *code = ((ins >> 19) << 19) | (disp & 0x7ffff);
1866         }
1867         else if ((op == 0) && (op2 == 3)) {
1868                 if (!sparc_is_imm16 (disp))
1869                         NOT_IMPLEMENTED;
1870                 /* BPr */
1871                 *code &= ~(0x180000 | 0x3fff);
1872                 *code |= ((disp << 21) & (0x180000)) | (disp & 0x3fff);
1873         }
1874         else if ((op == 0) && (op2 == 6)) {
1875                 if (!sparc_is_imm22 (disp))
1876                         NOT_IMPLEMENTED;
1877                 /* FBicc */
1878                 *code = ((ins >> 22) << 22) | (disp & 0x3fffff);
1879         }
1880         else if ((op == 0) && (op2 == 4)) {
1881                 guint32 ins2 = code [1];
1882
1883                 if (((ins2 >> 30) == 2) && (((ins2 >> 19) & 0x3f) == 2)) {
1884                         /* sethi followed by or */                      
1885                         guint32 *p = code;
1886                         sparc_set (p, target8, rd);
1887                         while (p <= (code + 1))
1888                                 sparc_nop (p);
1889                 }
1890                 else if (ins2 == 0x01000000) {
1891                         /* sethi followed by nop */
1892                         guint32 *p = code;
1893                         sparc_set (p, target8, rd);
1894                         while (p <= (code + 1))
1895                                 sparc_nop (p);
1896                 }
1897                 else if ((sparc_inst_op (ins2) == 3) && (sparc_inst_imm (ins2))) {
1898                         /* sethi followed by load/store */
1899 #ifndef SPARCV9
1900                         guint32 t = (guint32)target8;
1901                         *code &= ~(0x3fffff);
1902                         *code |= (t >> 10);
1903                         *(code + 1) &= ~(0x3ff);
1904                         *(code + 1) |= (t & 0x3ff);
1905 #endif
1906                 }
1907                 else if (v64 && 
1908                                  (sparc_inst_rd (ins) == sparc_g1) &&
1909                                  (sparc_inst_op (c [1]) == 0) && (sparc_inst_op2 (c [1]) == 4) &&
1910                                  (sparc_inst_op (c [2]) == 2) && (sparc_inst_op3 (c [2]) == 2) &&
1911                                  (sparc_inst_op (c [3]) == 2) && (sparc_inst_op3 (c [3]) == 2))
1912                 {
1913                         /* sparc_set */
1914                         guint32 *p = c;
1915                         reg = sparc_inst_rd (c [1]);
1916                         sparc_set (p, target8, reg);
1917                         while (p < (c + 6))
1918                                 sparc_nop (p);
1919                 }
1920                 else if ((sparc_inst_op (ins2) == 2) && (sparc_inst_op3 (ins2) == 0x38) && 
1921                                  (sparc_inst_imm (ins2))) {
1922                         /* sethi followed by jmpl */
1923 #ifndef SPARCV9
1924                         guint32 t = (guint32)target8;
1925                         *code &= ~(0x3fffff);
1926                         *code |= (t >> 10);
1927                         *(code + 1) &= ~(0x3ff);
1928                         *(code + 1) |= (t & 0x3ff);
1929 #endif
1930                 }
1931                 else
1932                         NOT_IMPLEMENTED;
1933         }
1934         else if (op == 01) {
1935                 gint64 disp = (target8 - (guint8*)code) >> 2;
1936
1937                 if (!sparc_is_imm30 (disp))
1938                         NOT_IMPLEMENTED;
1939                 sparc_call_simple (code, target8 - (guint8*)code);
1940         }
1941         else if ((op == 2) && (sparc_inst_op3 (ins) == 0x2) && sparc_inst_imm (ins)) {
1942                 /* mov imm, reg */
1943                 g_assert (sparc_is_imm13 (target8));
1944                 *code &= ~(0x1fff);
1945                 *code |= (guint32)target8;
1946         }
1947         else if ((sparc_inst_op (ins) == 2) && (sparc_inst_op3 (ins) == 0x7)) {
1948                 /* sparc_set case 5. */
1949                 guint32 *p = c;
1950
1951                 g_assert (v64);
1952                 reg = sparc_inst_rd (c [3]);
1953                 sparc_set (p, target, reg);
1954                 while (p < (c + 6))
1955                         sparc_nop (p);
1956         }
1957         else
1958                 NOT_IMPLEMENTED;
1959
1960 //      g_print ("patched with 0x%08x\n", ins);
1961 }
1962
1963 /*
1964  * mono_sparc_emit_save_lmf:
1965  *
1966  *  Emit the code neccesary to push a new entry onto the lmf stack. Used by
1967  * trampolines as well.
1968  */
1969 guint32*
1970 mono_sparc_emit_save_lmf (guint32 *code, guint32 lmf_offset)
1971 {
1972         /* Save lmf_addr */
1973         sparc_sti_imm (code, sparc_o0, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, lmf_addr));
1974         /* Save previous_lmf */
1975         sparc_ldi (code, sparc_o0, sparc_g0, sparc_o7);
1976         sparc_sti_imm (code, sparc_o7, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, previous_lmf));
1977         /* Set new lmf */
1978         sparc_add_imm (code, FALSE, sparc_fp, lmf_offset, sparc_o7);
1979         sparc_sti (code, sparc_o7, sparc_o0, sparc_g0);
1980
1981         return code;
1982 }
1983
1984 guint32*
1985 mono_sparc_emit_restore_lmf (guint32 *code, guint32 lmf_offset)
1986 {
1987         /* Load previous_lmf */
1988         sparc_ldi_imm (code, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, previous_lmf), sparc_l0);
1989         /* Load lmf_addr */
1990         sparc_ldi_imm (code, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, lmf_addr), sparc_l1);
1991         /* *(lmf) = previous_lmf */
1992         sparc_sti (code, sparc_l0, sparc_l1, sparc_g0);
1993         return code;
1994 }
1995
1996 static guint32*
1997 emit_save_sp_to_lmf (MonoCompile *cfg, guint32 *code)
1998 {
1999         /*
2000          * Since register windows are saved to the current value of %sp, we need to
2001          * set the sp field in the lmf before the call, not in the prolog.
2002          */
2003         if (cfg->method->save_lmf) {
2004                 gint32 lmf_offset = MONO_SPARC_STACK_BIAS - cfg->arch.lmf_offset;
2005
2006                 /* Save sp */
2007                 sparc_sti_imm (code, sparc_sp, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, sp));
2008         }
2009
2010         return code;
2011 }
2012
2013 static guint32*
2014 emit_vret_token (MonoInst *ins, guint32 *code)
2015 {
2016         MonoCallInst *call = (MonoCallInst*)ins;
2017         guint32 size;
2018
2019         /* 
2020          * The sparc ABI requires that calls to functions which return a structure
2021          * contain an additional unimpl instruction which is checked by the callee.
2022          */
2023         if (call->signature->pinvoke && MONO_TYPE_ISSTRUCT(call->signature->ret)) {
2024                 if (call->signature->ret->type == MONO_TYPE_TYPEDBYREF)
2025                         size = mini_type_stack_size (call->signature->ret, NULL);
2026                 else
2027                         size = mono_class_native_size (call->signature->ret->data.klass, NULL);
2028                 sparc_unimp (code, size & 0xfff);
2029         }
2030
2031         return code;
2032 }
2033
2034 static guint32*
2035 emit_move_return_value (MonoInst *ins, guint32 *code)
2036 {
2037         /* Move return value to the target register */
2038         /* FIXME: do more things in the local reg allocator */
2039         switch (ins->opcode) {
2040         case OP_VOIDCALL:
2041         case OP_VOIDCALL_REG:
2042         case OP_VOIDCALL_MEMBASE:
2043                 break;
2044         case OP_CALL:
2045         case OP_CALL_REG:
2046         case OP_CALL_MEMBASE:
2047                 g_assert (ins->dreg == sparc_o0);
2048                 break;
2049         case OP_LCALL:
2050         case OP_LCALL_REG:
2051         case OP_LCALL_MEMBASE:
2052                 /* 
2053                  * ins->dreg is the least significant reg due to the lreg: LCALL rule
2054                  * in inssel-long32.brg.
2055                  */
2056 #ifdef SPARCV9
2057                 sparc_mov_reg_reg (code, sparc_o0, ins->dreg);
2058 #else
2059                 g_assert (ins->dreg == sparc_o1);
2060 #endif
2061                 break;
2062         case OP_FCALL:
2063         case OP_FCALL_REG:
2064         case OP_FCALL_MEMBASE:
2065 #ifdef SPARCV9
2066                 if (((MonoCallInst*)ins)->signature->ret->type == MONO_TYPE_R4) {
2067                         sparc_fmovs (code, sparc_f0, ins->dreg);
2068                         sparc_fstod (code, ins->dreg, ins->dreg);
2069                 }
2070                 else
2071                         sparc_fmovd (code, sparc_f0, ins->dreg);
2072 #else           
2073                 sparc_fmovs (code, sparc_f0, ins->dreg);
2074                 if (((MonoCallInst*)ins)->signature->ret->type == MONO_TYPE_R4)
2075                         sparc_fstod (code, ins->dreg, ins->dreg);
2076                 else
2077                         sparc_fmovs (code, sparc_f1, ins->dreg + 1);
2078 #endif
2079                 break;
2080         case OP_VCALL:
2081         case OP_VCALL_REG:
2082         case OP_VCALL_MEMBASE:
2083         case OP_VCALL2:
2084         case OP_VCALL2_REG:
2085         case OP_VCALL2_MEMBASE:
2086                 break;
2087         default:
2088                 NOT_IMPLEMENTED;
2089         }
2090
2091         return code;
2092 }
2093
2094 /*
2095  * emit_load_volatile_arguments:
2096  *
2097  *  Load volatile arguments from the stack to the original input registers.
2098  * Required before a tail call.
2099  */
2100 static guint32*
2101 emit_load_volatile_arguments (MonoCompile *cfg, guint32 *code)
2102 {
2103         MonoMethod *method = cfg->method;
2104         MonoMethodSignature *sig;
2105         MonoInst *inst;
2106         CallInfo *cinfo;
2107         guint32 i, ireg;
2108
2109         /* FIXME: Generate intermediate code instead */
2110
2111         sig = mono_method_signature (method);
2112
2113         cinfo = get_call_info (cfg, sig, FALSE);
2114         
2115         /* This is the opposite of the code in emit_prolog */
2116
2117         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
2118                 ArgInfo *ainfo = cinfo->args + i;
2119                 gint32 stack_offset;
2120                 MonoType *arg_type;
2121
2122                 inst = cfg->args [i];
2123
2124                 if (sig->hasthis && (i == 0))
2125                         arg_type = &mono_defaults.object_class->byval_arg;
2126                 else
2127                         arg_type = sig->params [i - sig->hasthis];
2128
2129                 stack_offset = ainfo->offset + ARGS_OFFSET;
2130                 ireg = sparc_i0 + ainfo->reg;
2131
2132                 if (ainfo->storage == ArgInSplitRegStack) {
2133                         g_assert (inst->opcode == OP_REGOFFSET);
2134
2135                         if (!sparc_is_imm13 (stack_offset))
2136                                 NOT_IMPLEMENTED;
2137                         sparc_st_imm (code, inst->inst_basereg, stack_offset, sparc_i5);
2138                 }
2139
2140                 if (!v64 && !arg_type->byref && (arg_type->type == MONO_TYPE_R8)) {
2141                         if (ainfo->storage == ArgInIRegPair) {
2142                                 if (!sparc_is_imm13 (inst->inst_offset + 4))
2143                                         NOT_IMPLEMENTED;
2144                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset, ireg);
2145                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset + 4, ireg + 1);
2146                         }
2147                         else
2148                                 if (ainfo->storage == ArgInSplitRegStack) {
2149                                         if (stack_offset != inst->inst_offset) {
2150                                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset, sparc_i5);
2151                                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset + 4, sparc_o7);
2152                                                 sparc_st_imm (code, sparc_o7, sparc_fp, stack_offset + 4);
2153
2154                                         }
2155                                 }
2156                         else
2157                                 if (ainfo->storage == ArgOnStackPair) {
2158                                         if (stack_offset != inst->inst_offset) {
2159                                                 /* stack_offset is not dword aligned, so we need to make a copy */
2160                                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset, sparc_o7);
2161                                                 sparc_st_imm (code, sparc_o7, sparc_fp, stack_offset);
2162
2163                                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset + 4, sparc_o7);
2164                                                 sparc_st_imm (code, sparc_o7, sparc_fp, stack_offset + 4);
2165
2166                                         }
2167                                 }
2168                          else
2169                                 g_assert_not_reached ();
2170                 }
2171                 else
2172                         if ((ainfo->storage == ArgInIReg) && (inst->opcode != OP_REGVAR)) {
2173                                 /* Argument in register, but need to be saved to stack */
2174                                 if (!sparc_is_imm13 (stack_offset))
2175                                         NOT_IMPLEMENTED;
2176                                 if ((stack_offset - ARGS_OFFSET) & 0x1)
2177                                         /* FIXME: Is this ldsb or ldub ? */
2178                                         sparc_ldsb_imm (code, inst->inst_basereg, stack_offset, ireg);
2179                                 else
2180                                         if ((stack_offset - ARGS_OFFSET) & 0x2)
2181                                                 sparc_ldsh_imm (code, inst->inst_basereg, stack_offset, ireg);
2182                                 else
2183                                         if ((stack_offset - ARGS_OFFSET) & 0x4)
2184                                                 sparc_ld_imm (code, inst->inst_basereg, stack_offset, ireg);
2185                                         else {
2186                                                 if (v64)
2187                                                         sparc_ldx_imm (code, inst->inst_basereg, stack_offset, ireg);
2188                                                 else
2189                                                         sparc_ld_imm (code, inst->inst_basereg, stack_offset, ireg);
2190                                         }
2191                         }
2192                         else if ((ainfo->storage == ArgInIRegPair) && (inst->opcode != OP_REGVAR)) {
2193                                 /* Argument in regpair, but need to be saved to stack */
2194                                 if (!sparc_is_imm13 (inst->inst_offset + 4))
2195                                         NOT_IMPLEMENTED;
2196                                 sparc_ld_imm (code, inst->inst_basereg, inst->inst_offset, ireg);
2197                                 sparc_st_imm (code, inst->inst_basereg, inst->inst_offset + 4, ireg + 1);
2198                         }
2199                         else if ((ainfo->storage == ArgInFloatReg) && (inst->opcode != OP_REGVAR)) {
2200                                 NOT_IMPLEMENTED;
2201                         }
2202                         else if ((ainfo->storage == ArgInDoubleReg) && (inst->opcode != OP_REGVAR)) {
2203                                 NOT_IMPLEMENTED;
2204                         }
2205
2206                 if ((ainfo->storage == ArgInSplitRegStack) || (ainfo->storage == ArgOnStack))
2207                         if (inst->opcode == OP_REGVAR)
2208                                 /* FIXME: Load the argument into memory */
2209                                 NOT_IMPLEMENTED;
2210         }
2211
2212         g_free (cinfo);
2213
2214         return code;
2215 }
2216
2217 /*
2218  * mono_sparc_is_virtual_call:
2219  *
2220  *  Determine whenever the instruction at CODE is a virtual call.
2221  */
2222 gboolean 
2223 mono_sparc_is_virtual_call (guint32 *code)
2224 {
2225         guint32 buf[1];
2226         guint32 *p;
2227
2228         p = buf;
2229
2230         if ((sparc_inst_op (*code) == 0x2) && (sparc_inst_op3 (*code) == 0x38)) {
2231                 /*
2232                  * Register indirect call. If it is a virtual call, then the 
2233                  * instruction in the delay slot is a special kind of nop.
2234                  */
2235
2236                 /* Construct special nop */
2237                 sparc_or_imm (p, FALSE, sparc_g0, 0xca, sparc_g0);
2238                 p --;
2239
2240                 if (code [1] == p [0])
2241                         return TRUE;
2242         }
2243
2244         return FALSE;
2245 }
2246
2247 #define CMP_SIZE 3
2248 #define BR_SMALL_SIZE 2
2249 #define BR_LARGE_SIZE 2
2250 #define JUMP_IMM_SIZE 5
2251 #define ENABLE_WRONG_METHOD_CHECK 0
2252
2253 /*
2254  * LOCKING: called with the domain lock held
2255  */
2256 gpointer
2257 mono_arch_build_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
2258         gpointer fail_tramp)
2259 {
2260         int i;
2261         int size = 0;
2262         guint32 *code, *start;
2263
2264         for (i = 0; i < count; ++i) {
2265                 MonoIMTCheckItem *item = imt_entries [i];
2266                 if (item->is_equals) {
2267                         if (item->check_target_idx) {
2268                                 if (!item->compare_done)
2269                                         item->chunk_size += CMP_SIZE;
2270                                 item->chunk_size += BR_SMALL_SIZE + JUMP_IMM_SIZE;
2271                         } else {
2272                                 if (fail_tramp)
2273                                         item->chunk_size += 16;
2274                                 item->chunk_size += JUMP_IMM_SIZE;
2275 #if ENABLE_WRONG_METHOD_CHECK
2276                                 item->chunk_size += CMP_SIZE + BR_SMALL_SIZE + 1;
2277 #endif
2278                         }
2279                 } else {
2280                         item->chunk_size += CMP_SIZE + BR_LARGE_SIZE;
2281                         imt_entries [item->check_target_idx]->compare_done = TRUE;
2282                 }
2283                 size += item->chunk_size;
2284         }
2285         if (fail_tramp)
2286                 code = mono_method_alloc_generic_virtual_thunk (domain, size * 4);
2287         else
2288                 code = mono_domain_code_reserve (domain, size * 4);
2289         start = code;
2290         for (i = 0; i < count; ++i) {
2291                 MonoIMTCheckItem *item = imt_entries [i];
2292                 item->code_target = (guint8*)code;
2293                 if (item->is_equals) {
2294                         gboolean fail_case = !item->check_target_idx && fail_tramp;
2295
2296                         if (item->check_target_idx || fail_case) {
2297                                 if (!item->compare_done || fail_case) {
2298                                         sparc_set (code, (guint32)item->key, sparc_g5);
2299                                         sparc_cmp (code, MONO_ARCH_IMT_REG, sparc_g5);
2300                                 }
2301                                 item->jmp_code = (guint8*)code;
2302                                 sparc_branch (code, 0, sparc_bne, 0);
2303                                 sparc_nop (code);
2304                                 if (item->has_target_code) {
2305                                         sparc_set (code, item->value.target_code, sparc_f5);
2306                                 } else {
2307                                         sparc_set (code, ((guint32)(&(vtable->vtable [item->value.vtable_slot]))), sparc_g5);
2308                                         sparc_ld (code, sparc_g5, 0, sparc_g5);
2309                                 }
2310                                 sparc_jmpl (code, sparc_g5, sparc_g0, sparc_g0);
2311                                 sparc_nop (code);
2312
2313                                 if (fail_case) {
2314                                         sparc_patch (item->jmp_code, code);
2315                                         sparc_set (code, fail_tramp, sparc_g5);
2316                                         sparc_jmpl (code, sparc_g5, sparc_g0, sparc_g0);
2317                                         sparc_nop (code);
2318                                         item->jmp_code = NULL;
2319                                 }
2320                         } else {
2321                                 /* enable the commented code to assert on wrong method */
2322 #if ENABLE_WRONG_METHOD_CHECK
2323                                 g_assert_not_reached ();
2324 #endif
2325                                 sparc_set (code, ((guint32)(&(vtable->vtable [item->value.vtable_slot]))), sparc_g5);
2326                                 sparc_ld (code, sparc_g5, 0, sparc_g5);
2327                                 sparc_jmpl (code, sparc_g5, sparc_g0, sparc_g0);
2328                                 sparc_nop (code);
2329 #if ENABLE_WRONG_METHOD_CHECK
2330                                 g_assert_not_reached ();
2331 #endif
2332                         }
2333                 } else {
2334                         sparc_set (code, (guint32)item->key, sparc_g5);
2335                         sparc_cmp (code, MONO_ARCH_IMT_REG, sparc_g5);
2336                         item->jmp_code = (guint8*)code;
2337                         sparc_branch (code, 0, sparc_beu, 0);
2338                         sparc_nop (code);
2339                 }
2340         }
2341         /* patch the branches to get to the target items */
2342         for (i = 0; i < count; ++i) {
2343                 MonoIMTCheckItem *item = imt_entries [i];
2344                 if (item->jmp_code) {
2345                         if (item->check_target_idx) {
2346                                 sparc_patch ((guint32*)item->jmp_code, imt_entries [item->check_target_idx]->code_target);
2347                         }
2348                 }
2349         }
2350
2351         mono_arch_flush_icache ((guint8*)start, (code - start) * 4);
2352
2353         mono_stats.imt_thunks_size += (code - start) * 4;
2354         g_assert (code - start <= size);
2355
2356         mono_tramp_info_register (mono_tramp_info_create (NULL, start, code - start, NULL, NULL), domain);
2357
2358         return start;
2359 }
2360
2361 MonoMethod*
2362 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
2363 {
2364 #ifdef SPARCV9
2365         g_assert_not_reached ();
2366 #endif
2367
2368         return (MonoMethod*)regs [sparc_g1];
2369 }
2370
2371 gpointer
2372 mono_arch_get_this_arg_from_call (mgreg_t *regs, guint8 *code)
2373 {
2374         mono_sparc_flushw ();
2375
2376         return (gpointer)regs [sparc_o0];
2377 }
2378
2379 /*
2380  * Some conventions used in the following code.
2381  * 2) The only scratch registers we have are o7 and g1.  We try to
2382  * stick to o7 when we can, and use g1 when necessary.
2383  */
2384
2385 void
2386 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
2387 {
2388         MonoInst *ins;
2389         MonoCallInst *call;
2390         guint offset;
2391         guint32 *code = (guint32*)(cfg->native_code + cfg->code_len);
2392         MonoInst *last_ins = NULL;
2393         int max_len, cpos;
2394         const char *spec;
2395
2396         if (cfg->verbose_level > 2)
2397                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
2398
2399         cpos = bb->max_offset;
2400
2401         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
2402                 NOT_IMPLEMENTED;
2403         }
2404
2405         MONO_BB_FOR_EACH_INS (bb, ins) {
2406                 guint8* code_start;
2407
2408                 offset = (guint8*)code - cfg->native_code;
2409
2410                 spec = ins_get_spec (ins->opcode);
2411
2412                 max_len = ((guint8 *)spec)[MONO_INST_LEN];
2413
2414                 if (offset > (cfg->code_size - max_len - 16)) {
2415                         cfg->code_size *= 2;
2416                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
2417                         code = (guint32*)(cfg->native_code + offset);
2418                 }
2419                 code_start = (guint8*)code;
2420                 //      if (ins->cil_code)
2421                 //              g_print ("cil code\n");
2422                 mono_debug_record_line_number (cfg, ins, offset);
2423
2424                 switch (ins->opcode) {
2425                 case OP_STOREI1_MEMBASE_IMM:
2426                         EMIT_STORE_MEMBASE_IMM (ins, stb);
2427                         break;
2428                 case OP_STOREI2_MEMBASE_IMM:
2429                         EMIT_STORE_MEMBASE_IMM (ins, sth);
2430                         break;
2431                 case OP_STORE_MEMBASE_IMM:
2432                         EMIT_STORE_MEMBASE_IMM (ins, sti);
2433                         break;
2434                 case OP_STOREI4_MEMBASE_IMM:
2435                         EMIT_STORE_MEMBASE_IMM (ins, st);
2436                         break;
2437                 case OP_STOREI8_MEMBASE_IMM:
2438 #ifdef SPARCV9
2439                         EMIT_STORE_MEMBASE_IMM (ins, stx);
2440 #else
2441                         /* Only generated by peephole opts */
2442                         g_assert ((ins->inst_offset % 8) == 0);
2443                         g_assert (ins->inst_imm == 0);
2444                         EMIT_STORE_MEMBASE_IMM (ins, stx);
2445 #endif
2446                         break;
2447                 case OP_STOREI1_MEMBASE_REG:
2448                         EMIT_STORE_MEMBASE_REG (ins, stb);
2449                         break;
2450                 case OP_STOREI2_MEMBASE_REG:
2451                         EMIT_STORE_MEMBASE_REG (ins, sth);
2452                         break;
2453                 case OP_STOREI4_MEMBASE_REG:
2454                         EMIT_STORE_MEMBASE_REG (ins, st);
2455                         break;
2456                 case OP_STOREI8_MEMBASE_REG:
2457 #ifdef SPARCV9
2458                         EMIT_STORE_MEMBASE_REG (ins, stx);
2459 #else
2460                         /* Only used by OP_MEMSET */
2461                         EMIT_STORE_MEMBASE_REG (ins, std);
2462 #endif
2463                         break;
2464                 case OP_STORE_MEMBASE_REG:
2465                         EMIT_STORE_MEMBASE_REG (ins, sti);
2466                         break;
2467                 case OP_LOADU4_MEM:
2468                         sparc_set (code, ins->inst_c0, ins->dreg);
2469                         sparc_ld (code, ins->dreg, sparc_g0, ins->dreg);
2470                         break;
2471                 case OP_LOADI4_MEMBASE:
2472 #ifdef SPARCV9
2473                         EMIT_LOAD_MEMBASE (ins, ldsw);
2474 #else
2475                         EMIT_LOAD_MEMBASE (ins, ld);
2476 #endif
2477                         break;
2478                 case OP_LOADU4_MEMBASE:
2479                         EMIT_LOAD_MEMBASE (ins, ld);
2480                         break;
2481                 case OP_LOADU1_MEMBASE:
2482                         EMIT_LOAD_MEMBASE (ins, ldub);
2483                         break;
2484                 case OP_LOADI1_MEMBASE:
2485                         EMIT_LOAD_MEMBASE (ins, ldsb);
2486                         break;
2487                 case OP_LOADU2_MEMBASE:
2488                         EMIT_LOAD_MEMBASE (ins, lduh);
2489                         break;
2490                 case OP_LOADI2_MEMBASE:
2491                         EMIT_LOAD_MEMBASE (ins, ldsh);
2492                         break;
2493                 case OP_LOAD_MEMBASE:
2494 #ifdef SPARCV9
2495                                 EMIT_LOAD_MEMBASE (ins, ldx);
2496 #else
2497                                 EMIT_LOAD_MEMBASE (ins, ld);
2498 #endif
2499                         break;
2500 #ifdef SPARCV9
2501                 case OP_LOADI8_MEMBASE:
2502                         EMIT_LOAD_MEMBASE (ins, ldx);
2503                         break;
2504 #endif
2505                 case OP_ICONV_TO_I1:
2506                         sparc_sll_imm (code, ins->sreg1, 24, sparc_o7);
2507                         sparc_sra_imm (code, sparc_o7, 24, ins->dreg);
2508                         break;
2509                 case OP_ICONV_TO_I2:
2510                         sparc_sll_imm (code, ins->sreg1, 16, sparc_o7);
2511                         sparc_sra_imm (code, sparc_o7, 16, ins->dreg);
2512                         break;
2513                 case OP_ICONV_TO_U1:
2514                         sparc_and_imm (code, FALSE, ins->sreg1, 0xff, ins->dreg);
2515                         break;
2516                 case OP_ICONV_TO_U2:
2517                         sparc_sll_imm (code, ins->sreg1, 16, sparc_o7);
2518                         sparc_srl_imm (code, sparc_o7, 16, ins->dreg);
2519                         break;
2520                 case OP_LCONV_TO_OVF_U4:
2521                 case OP_ICONV_TO_OVF_U4:
2522                         /* Only used on V9 */
2523                         sparc_cmp_imm (code, ins->sreg1, 0);
2524                         mono_add_patch_info (cfg, (guint8*)(code) - (cfg)->native_code,
2525                                                                  MONO_PATCH_INFO_EXC, "OverflowException");
2526                         sparc_branchp (code, 0, sparc_bl, sparc_xcc_short, 0, 0);
2527                         /* Delay slot */
2528                         sparc_set (code, 1, sparc_o7);
2529                         sparc_sllx_imm (code, sparc_o7, 32, sparc_o7);
2530                         sparc_cmp (code, ins->sreg1, sparc_o7);
2531                         mono_add_patch_info (cfg, (guint8*)(code) - (cfg)->native_code,
2532                                                                  MONO_PATCH_INFO_EXC, "OverflowException");
2533                         sparc_branchp (code, 0, sparc_bge, sparc_xcc_short, 0, 0);
2534                         sparc_nop (code);
2535                         sparc_mov_reg_reg (code, ins->sreg1, ins->dreg);
2536                         break;
2537                 case OP_LCONV_TO_OVF_I4_UN:
2538                 case OP_ICONV_TO_OVF_I4_UN:
2539                         /* Only used on V9 */
2540                         NOT_IMPLEMENTED;
2541                         break;
2542                 case OP_COMPARE:
2543                 case OP_LCOMPARE:
2544                 case OP_ICOMPARE:
2545                         sparc_cmp (code, ins->sreg1, ins->sreg2);
2546                         break;
2547                 case OP_COMPARE_IMM:
2548                 case OP_ICOMPARE_IMM:
2549                         if (sparc_is_imm13 (ins->inst_imm))
2550                                 sparc_cmp_imm (code, ins->sreg1, ins->inst_imm);
2551                         else {
2552                                 sparc_set (code, ins->inst_imm, sparc_o7);
2553                                 sparc_cmp (code, ins->sreg1, sparc_o7);
2554                         }
2555                         break;
2556                 case OP_BREAK:
2557                         /*
2558                          * gdb does not like encountering 'ta 1' in the debugged code. So 
2559                          * instead of emitting a trap, we emit a call a C function and place a 
2560                          * breakpoint there.
2561                          */
2562                         //sparc_ta (code, 1);
2563                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, mono_break);
2564                         EMIT_CALL();
2565                         break;
2566                 case OP_ADDCC:
2567                 case OP_IADDCC:
2568                         sparc_add (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2569                         break;
2570                 case OP_IADD:
2571                         sparc_add (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2572                         break;
2573                 case OP_ADDCC_IMM:
2574                 case OP_ADD_IMM:
2575                 case OP_IADD_IMM:
2576                         /* according to inssel-long32.brg, this should set cc */
2577                         EMIT_ALU_IMM (ins, add, TRUE);
2578                         break;
2579                 case OP_ADC:
2580                 case OP_IADC:
2581                         /* according to inssel-long32.brg, this should set cc */
2582                         sparc_addx (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2583                         break;
2584                 case OP_ADC_IMM:
2585                 case OP_IADC_IMM:
2586                         EMIT_ALU_IMM (ins, addx, TRUE);
2587                         break;
2588                 case OP_SUBCC:
2589                 case OP_ISUBCC:
2590                         sparc_sub (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2591                         break;
2592                 case OP_ISUB:
2593                         sparc_sub (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2594                         break;
2595                 case OP_SUBCC_IMM:
2596                 case OP_SUB_IMM:
2597                 case OP_ISUB_IMM:
2598                         /* according to inssel-long32.brg, this should set cc */
2599                         EMIT_ALU_IMM (ins, sub, TRUE);
2600                         break;
2601                 case OP_SBB:
2602                 case OP_ISBB:
2603                         /* according to inssel-long32.brg, this should set cc */
2604                         sparc_subx (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2605                         break;
2606                 case OP_SBB_IMM:
2607                 case OP_ISBB_IMM:
2608                         EMIT_ALU_IMM (ins, subx, TRUE);
2609                         break;
2610                 case OP_IAND:
2611                         sparc_and (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2612                         break;
2613                 case OP_AND_IMM:
2614                 case OP_IAND_IMM:
2615                         EMIT_ALU_IMM (ins, and, FALSE);
2616                         break;
2617                 case OP_IDIV:
2618                         /* Sign extend sreg1 into %y */
2619                         sparc_sra_imm (code, ins->sreg1, 31, sparc_o7);
2620                         sparc_wry (code, sparc_o7, sparc_g0);
2621                         sparc_sdiv (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2622                         EMIT_COND_SYSTEM_EXCEPTION_GENERAL (code, sparc_boverflow, "ArithmeticException", TRUE, sparc_icc_short);
2623                         break;
2624                 case OP_IDIV_UN:
2625                         sparc_wry (code, sparc_g0, sparc_g0);
2626                         sparc_udiv (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2627                         break;
2628                 case OP_DIV_IMM:
2629                 case OP_IDIV_IMM: {
2630                         int i, imm;
2631
2632                         /* Transform division into a shift */
2633                         for (i = 1; i < 30; ++i) {
2634                                 imm = (1 << i);
2635                                 if (ins->inst_imm == imm)
2636                                         break;
2637                         }
2638                         if (i < 30) {
2639                                 if (i == 1) {
2640                                         /* gcc 2.95.3 */
2641                                         sparc_srl_imm (code, ins->sreg1, 31, sparc_o7);
2642                                         sparc_add (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2643                                         sparc_sra_imm (code, ins->dreg, 1, ins->dreg);
2644                                 }
2645                                 else {
2646                                         /* http://compilers.iecc.com/comparch/article/93-04-079 */
2647                                         sparc_sra_imm (code, ins->sreg1, 31, sparc_o7);
2648                                         sparc_srl_imm (code, sparc_o7, 32 - i, sparc_o7);
2649                                         sparc_add (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2650                                         sparc_sra_imm (code, ins->dreg, i, ins->dreg);
2651                                 }
2652                         }
2653                         else {
2654                                 /* Sign extend sreg1 into %y */
2655                                 sparc_sra_imm (code, ins->sreg1, 31, sparc_o7);
2656                                 sparc_wry (code, sparc_o7, sparc_g0);
2657                                 EMIT_ALU_IMM (ins, sdiv, TRUE);
2658                                 EMIT_COND_SYSTEM_EXCEPTION_GENERAL (code, sparc_boverflow, "ArithmeticException", TRUE, sparc_icc_short);
2659                         }
2660                         break;
2661                 }
2662                 case OP_IDIV_UN_IMM:
2663                         sparc_wry (code, sparc_g0, sparc_g0);
2664                         EMIT_ALU_IMM (ins, udiv, FALSE);
2665                         break;
2666                 case OP_IREM:
2667                         /* Sign extend sreg1 into %y */
2668                         sparc_sra_imm (code, ins->sreg1, 31, sparc_o7);
2669                         sparc_wry (code, sparc_o7, sparc_g0);
2670                         sparc_sdiv (code, TRUE, ins->sreg1, ins->sreg2, sparc_o7);
2671                         EMIT_COND_SYSTEM_EXCEPTION_GENERAL (code, sparc_boverflow, "ArithmeticException", TRUE, sparc_icc_short);
2672                         sparc_smul (code, FALSE, ins->sreg2, sparc_o7, sparc_o7);
2673                         sparc_sub (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2674                         break;
2675                 case OP_IREM_UN:
2676                         sparc_wry (code, sparc_g0, sparc_g0);
2677                         sparc_udiv (code, FALSE, ins->sreg1, ins->sreg2, sparc_o7);
2678                         sparc_umul (code, FALSE, ins->sreg2, sparc_o7, sparc_o7);
2679                         sparc_sub (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2680                         break;
2681                 case OP_REM_IMM:
2682                 case OP_IREM_IMM:
2683                         /* Sign extend sreg1 into %y */
2684                         sparc_sra_imm (code, ins->sreg1, 31, sparc_o7);
2685                         sparc_wry (code, sparc_o7, sparc_g0);
2686                         if (!sparc_is_imm13 (ins->inst_imm)) {
2687                                 sparc_set (code, ins->inst_imm, GP_SCRATCH_REG);
2688                                 sparc_sdiv (code, TRUE, ins->sreg1, GP_SCRATCH_REG, sparc_o7);
2689                                 EMIT_COND_SYSTEM_EXCEPTION_GENERAL (code, sparc_boverflow, "ArithmeticException", TRUE, sparc_icc_short);
2690                                 sparc_smul (code, FALSE, sparc_o7, GP_SCRATCH_REG, sparc_o7);
2691                         }
2692                         else {
2693                                 sparc_sdiv_imm (code, TRUE, ins->sreg1, ins->inst_imm, sparc_o7);
2694                                 EMIT_COND_SYSTEM_EXCEPTION_GENERAL (code, sparc_boverflow, "ArithmeticException", TRUE, sparc_icc_short);
2695                                 sparc_smul_imm (code, FALSE, sparc_o7, ins->inst_imm, sparc_o7);
2696                         }
2697                         sparc_sub (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2698                         break;
2699                 case OP_IREM_UN_IMM:
2700                         sparc_set (code, ins->inst_imm, GP_SCRATCH_REG);
2701                         sparc_wry (code, sparc_g0, sparc_g0);
2702                         sparc_udiv (code, FALSE, ins->sreg1, GP_SCRATCH_REG, sparc_o7);
2703                         sparc_umul (code, FALSE, GP_SCRATCH_REG, sparc_o7, sparc_o7);
2704                         sparc_sub (code, FALSE, ins->sreg1, sparc_o7, ins->dreg);
2705                         break;
2706                 case OP_IOR:
2707                         sparc_or (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2708                         break;
2709                 case OP_OR_IMM:
2710                 case OP_IOR_IMM:
2711                         EMIT_ALU_IMM (ins, or, FALSE);
2712                         break;
2713                 case OP_IXOR:
2714                         sparc_xor (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2715                         break;
2716                 case OP_XOR_IMM:
2717                 case OP_IXOR_IMM:
2718                         EMIT_ALU_IMM (ins, xor, FALSE);
2719                         break;
2720                 case OP_ISHL:
2721                         sparc_sll (code, ins->sreg1, ins->sreg2, ins->dreg);
2722                         break;
2723                 case OP_SHL_IMM:
2724                 case OP_ISHL_IMM:
2725                         if (ins->inst_imm < (1 << 5))
2726                                 sparc_sll_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2727                         else {
2728                                 sparc_set (code, ins->inst_imm, sparc_o7);
2729                                 sparc_sll (code, ins->sreg1, sparc_o7, ins->dreg);
2730                         }
2731                         break;
2732                 case OP_ISHR:
2733                         sparc_sra (code, ins->sreg1, ins->sreg2, ins->dreg);
2734                         break;
2735                 case OP_ISHR_IMM:
2736                 case OP_SHR_IMM:
2737                         if (ins->inst_imm < (1 << 5))
2738                                 sparc_sra_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2739                         else {
2740                                 sparc_set (code, ins->inst_imm, sparc_o7);
2741                                 sparc_sra (code, ins->sreg1, sparc_o7, ins->dreg);
2742                         }
2743                         break;
2744                 case OP_SHR_UN_IMM:
2745                 case OP_ISHR_UN_IMM:
2746                         if (ins->inst_imm < (1 << 5))
2747                                 sparc_srl_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2748                         else {
2749                                 sparc_set (code, ins->inst_imm, sparc_o7);
2750                                 sparc_srl (code, ins->sreg1, sparc_o7, ins->dreg);
2751                         }
2752                         break;
2753                 case OP_ISHR_UN:
2754                         sparc_srl (code, ins->sreg1, ins->sreg2, ins->dreg);
2755                         break;
2756                 case OP_LSHL:
2757                         sparc_sllx (code, ins->sreg1, ins->sreg2, ins->dreg);
2758                         break;
2759                 case OP_LSHL_IMM:
2760                         if (ins->inst_imm < (1 << 6))
2761                                 sparc_sllx_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2762                         else {
2763                                 sparc_set (code, ins->inst_imm, sparc_o7);
2764                                 sparc_sllx (code, ins->sreg1, sparc_o7, ins->dreg);
2765                         }
2766                         break;
2767                 case OP_LSHR:
2768                         sparc_srax (code, ins->sreg1, ins->sreg2, ins->dreg);
2769                         break;
2770                 case OP_LSHR_IMM:
2771                         if (ins->inst_imm < (1 << 6))
2772                                 sparc_srax_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2773                         else {
2774                                 sparc_set (code, ins->inst_imm, sparc_o7);
2775                                 sparc_srax (code, ins->sreg1, sparc_o7, ins->dreg);
2776                         }
2777                         break;
2778                 case OP_LSHR_UN:
2779                         sparc_srlx (code, ins->sreg1, ins->sreg2, ins->dreg);
2780                         break;
2781                 case OP_LSHR_UN_IMM:
2782                         if (ins->inst_imm < (1 << 6))
2783                                 sparc_srlx_imm (code, ins->sreg1, ins->inst_imm, ins->dreg);
2784                         else {
2785                                 sparc_set (code, ins->inst_imm, sparc_o7);
2786                                 sparc_srlx (code, ins->sreg1, sparc_o7, ins->dreg);
2787                         }
2788                         break;
2789                 case OP_INOT:
2790                         /* can't use sparc_not */
2791                         sparc_xnor (code, FALSE, ins->sreg1, sparc_g0, ins->dreg);
2792                         break;
2793                 case OP_INEG:
2794                         /* can't use sparc_neg */
2795                         sparc_sub (code, FALSE, sparc_g0, ins->sreg1, ins->dreg);
2796                         break;
2797                 case OP_IMUL:
2798                         sparc_smul (code, FALSE, ins->sreg1, ins->sreg2, ins->dreg);
2799                         break;
2800                 case OP_IMUL_IMM:
2801                 case OP_MUL_IMM: {
2802                         int i, imm;
2803
2804                         if ((ins->inst_imm == 1) && (ins->sreg1 == ins->dreg))
2805                                 break;
2806
2807                         /* Transform multiplication into a shift */
2808                         for (i = 0; i < 30; ++i) {
2809                                 imm = (1 << i);
2810                                 if (ins->inst_imm == imm)
2811                                         break;
2812                         }
2813                         if (i < 30)
2814                                 sparc_sll_imm (code, ins->sreg1, i, ins->dreg);
2815                         else
2816                                 EMIT_ALU_IMM (ins, smul, FALSE);
2817                         break;
2818                 }
2819                 case OP_IMUL_OVF:
2820                         sparc_smul (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2821                         sparc_rdy (code, sparc_g1);
2822                         sparc_sra_imm (code, ins->dreg, 31, sparc_o7);
2823                         sparc_cmp (code, sparc_g1, sparc_o7);
2824                         EMIT_COND_SYSTEM_EXCEPTION_GENERAL (ins, sparc_bne, "OverflowException", TRUE, sparc_icc_short);
2825                         break;
2826                 case OP_IMUL_OVF_UN:
2827                         sparc_umul (code, TRUE, ins->sreg1, ins->sreg2, ins->dreg);
2828                         sparc_rdy (code, sparc_o7);
2829                         sparc_cmp (code, sparc_o7, sparc_g0);
2830                         EMIT_COND_SYSTEM_EXCEPTION_GENERAL (ins, sparc_bne, "OverflowException", TRUE, sparc_icc_short);
2831                         break;
2832                 case OP_ICONST:
2833                         sparc_set (code, ins->inst_c0, ins->dreg);
2834                         break;
2835                 case OP_I8CONST:
2836                         sparc_set (code, ins->inst_l, ins->dreg);
2837                         break;
2838                 case OP_AOTCONST:
2839                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
2840                         sparc_set_template (code, ins->dreg);
2841                         break;
2842                 case OP_JUMP_TABLE:
2843                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
2844                         sparc_set_template (code, ins->dreg);
2845                         break;
2846                 case OP_ICONV_TO_I4:
2847                 case OP_ICONV_TO_U4:
2848                 case OP_MOVE:
2849                         if (ins->sreg1 != ins->dreg)
2850                                 sparc_mov_reg_reg (code, ins->sreg1, ins->dreg);
2851                         break;
2852                 case OP_FMOVE:
2853 #ifdef SPARCV9
2854                         if (ins->sreg1 != ins->dreg)
2855                                 sparc_fmovd (code, ins->sreg1, ins->dreg);
2856 #else
2857                         sparc_fmovs (code, ins->sreg1, ins->dreg);
2858                         sparc_fmovs (code, ins->sreg1 + 1, ins->dreg + 1);
2859 #endif
2860                         break;
2861                 case OP_JMP:
2862                         if (cfg->method->save_lmf)
2863                                 NOT_IMPLEMENTED;
2864
2865                         code = emit_load_volatile_arguments (cfg, code);
2866                         mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_METHOD_JUMP, ins->inst_p0);
2867                         sparc_set_template (code, sparc_o7);
2868                         sparc_jmpl (code, sparc_o7, sparc_g0, sparc_g0);
2869                         /* Restore parent frame in delay slot */
2870                         sparc_restore_imm (code, sparc_g0, 0, sparc_g0);
2871                         break;
2872                 case OP_CHECK_THIS:
2873                         /* ensure ins->sreg1 is not NULL */
2874                         /* Might be misaligned in case of vtypes so use a byte load */
2875                         sparc_ldsb_imm (code, ins->sreg1, 0, sparc_g0);
2876                         break;
2877                 case OP_ARGLIST:
2878                         sparc_add_imm (code, FALSE, sparc_fp, cfg->sig_cookie, sparc_o7);
2879                         sparc_sti_imm (code, sparc_o7, ins->sreg1, 0);
2880                         break;
2881                 case OP_FCALL:
2882                 case OP_LCALL:
2883                 case OP_VCALL:
2884                 case OP_VCALL2:
2885                 case OP_VOIDCALL:
2886                 case OP_CALL:
2887                         call = (MonoCallInst*)ins;
2888                         g_assert (!call->virtual);
2889                         code = emit_save_sp_to_lmf (cfg, code);
2890                         if (ins->flags & MONO_INST_HAS_METHOD)
2891                             code = emit_call (cfg, code, MONO_PATCH_INFO_METHOD, call->method);
2892                         else
2893                             code = emit_call (cfg, code, MONO_PATCH_INFO_ABS, call->fptr);
2894
2895                         code = emit_vret_token (ins, code);
2896                         code = emit_move_return_value (ins, code);
2897                         break;
2898                 case OP_FCALL_REG:
2899                 case OP_LCALL_REG:
2900                 case OP_VCALL_REG:
2901                 case OP_VCALL2_REG:
2902                 case OP_VOIDCALL_REG:
2903                 case OP_CALL_REG:
2904                         call = (MonoCallInst*)ins;
2905                         code = emit_save_sp_to_lmf (cfg, code);
2906                         sparc_jmpl (code, ins->sreg1, sparc_g0, sparc_callsite);
2907                         /*
2908                          * We emit a special kind of nop in the delay slot to tell the 
2909                          * trampoline code that this is a virtual call, thus an unbox
2910                          * trampoline might need to be called.
2911                          */
2912                         if (call->virtual)
2913                                 sparc_or_imm (code, FALSE, sparc_g0, 0xca, sparc_g0);
2914                         else
2915                                 sparc_nop (code);
2916
2917                         code = emit_vret_token (ins, code);
2918                         code = emit_move_return_value (ins, code);
2919                         break;
2920                 case OP_FCALL_MEMBASE:
2921                 case OP_LCALL_MEMBASE:
2922                 case OP_VCALL_MEMBASE:
2923                 case OP_VCALL2_MEMBASE:
2924                 case OP_VOIDCALL_MEMBASE:
2925                 case OP_CALL_MEMBASE:
2926                         call = (MonoCallInst*)ins;
2927                         code = emit_save_sp_to_lmf (cfg, code);
2928                         if (sparc_is_imm13 (ins->inst_offset)) {
2929                                 sparc_ldi_imm (code, ins->inst_basereg, ins->inst_offset, sparc_o7);
2930                         } else {
2931                                 sparc_set (code, ins->inst_offset, sparc_o7);
2932                                 sparc_ldi (code, ins->inst_basereg, sparc_o7, sparc_o7);
2933                         }
2934                         sparc_jmpl (code, sparc_o7, sparc_g0, sparc_callsite);
2935                         if (call->virtual)
2936                                 sparc_or_imm (code, FALSE, sparc_g0, 0xca, sparc_g0);
2937                         else
2938                                 sparc_nop (code);
2939
2940                         code = emit_vret_token (ins, code);
2941                         code = emit_move_return_value (ins, code);
2942                         break;
2943                 case OP_SETFRET:
2944                         if (mono_method_signature (cfg->method)->ret->type == MONO_TYPE_R4)
2945                                 sparc_fdtos (code, ins->sreg1, sparc_f0);
2946                         else {
2947 #ifdef SPARCV9
2948                                 sparc_fmovd (code, ins->sreg1, ins->dreg);
2949 #else
2950                                 /* FIXME: Why not use fmovd ? */
2951                                 sparc_fmovs (code, ins->sreg1, ins->dreg);
2952                                 sparc_fmovs (code, ins->sreg1 + 1, ins->dreg + 1);
2953 #endif
2954                         }
2955                         break;
2956                 case OP_LOCALLOC: {
2957                         guint32 size_reg;
2958                         gint32 offset2;
2959
2960 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
2961                         /* Perform stack touching */
2962                         NOT_IMPLEMENTED;
2963 #endif
2964
2965                         /* Keep alignment */
2966                         /* Add 4 to compensate for the rounding of localloc_offset */
2967                         sparc_add_imm (code, FALSE, ins->sreg1, 4 + MONO_ARCH_LOCALLOC_ALIGNMENT - 1, ins->dreg);
2968                         sparc_set (code, ~(MONO_ARCH_LOCALLOC_ALIGNMENT - 1), sparc_o7);
2969                         sparc_and (code, FALSE, ins->dreg, sparc_o7, ins->dreg);
2970
2971                         if ((ins->flags & MONO_INST_INIT) && (ins->sreg1 == ins->dreg)) {
2972 #ifdef SPARCV9
2973                                 size_reg = sparc_g4;
2974 #else
2975                                 size_reg = sparc_g1;
2976 #endif
2977                                 sparc_mov_reg_reg (code, ins->dreg, size_reg);
2978                         }
2979                         else
2980                                 size_reg = ins->sreg1;
2981
2982                         sparc_sub (code, FALSE, sparc_sp, ins->dreg, ins->dreg);
2983                         /* Keep %sp valid at all times */
2984                         sparc_mov_reg_reg (code, ins->dreg, sparc_sp);
2985                         /* Round localloc_offset too so the result is at least 8 aligned */
2986                         offset2 = ALIGN_TO (cfg->arch.localloc_offset, 8);
2987                         g_assert (sparc_is_imm13 (MONO_SPARC_STACK_BIAS + offset2));
2988                         sparc_add_imm (code, FALSE, ins->dreg, MONO_SPARC_STACK_BIAS + offset2, ins->dreg);
2989
2990                         if (ins->flags & MONO_INST_INIT) {
2991                                 guint32 *br [3];
2992                                 /* Initialize memory region */
2993                                 sparc_cmp_imm (code, size_reg, 0);
2994                                 br [0] = code;
2995                                 sparc_branch (code, 0, sparc_be, 0);
2996                                 /* delay slot */
2997                                 sparc_set (code, 0, sparc_o7);
2998                                 sparc_sub_imm (code, 0, size_reg, mono_hwcap_sparc_is_v9 ? 8 : 4, size_reg);
2999                                 /* start of loop */
3000                                 br [1] = code;
3001                                 if (mono_hwcap_sparc_is_v9)
3002                                         sparc_stx (code, sparc_g0, ins->dreg, sparc_o7);
3003                                 else
3004                                         sparc_st (code, sparc_g0, ins->dreg, sparc_o7);
3005                                 sparc_cmp (code, sparc_o7, size_reg);
3006                                 br [2] = code;
3007                                 sparc_branch (code, 0, sparc_bl, 0);
3008                                 sparc_patch (br [2], br [1]);
3009                                 /* delay slot */
3010                                 sparc_add_imm (code, 0, sparc_o7, mono_hwcap_sparc_is_v9 ? 8 : 4, sparc_o7);
3011                                 sparc_patch (br [0], code);
3012                         }
3013                         break;
3014                 }
3015                 case OP_LOCALLOC_IMM: {
3016                         gint32 offset = ins->inst_imm;
3017                         gint32 offset2;
3018                         
3019 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
3020                         /* Perform stack touching */
3021                         NOT_IMPLEMENTED;
3022 #endif
3023
3024                         /* To compensate for the rounding of localloc_offset */
3025                         offset += sizeof (gpointer);
3026                         offset = ALIGN_TO (offset, MONO_ARCH_FRAME_ALIGNMENT);
3027                         if (sparc_is_imm13 (offset))
3028                                 sparc_sub_imm (code, FALSE, sparc_sp, offset, sparc_sp);
3029                         else {
3030                                 sparc_set (code, offset, sparc_o7);
3031                                 sparc_sub (code, FALSE, sparc_sp, sparc_o7, sparc_sp);
3032                         }
3033                         /* Round localloc_offset too so the result is at least 8 aligned */
3034                         offset2 = ALIGN_TO (cfg->arch.localloc_offset, 8);
3035                         g_assert (sparc_is_imm13 (MONO_SPARC_STACK_BIAS + offset2));
3036                         sparc_add_imm (code, FALSE, sparc_sp, MONO_SPARC_STACK_BIAS + offset2, ins->dreg);
3037                         if ((ins->flags & MONO_INST_INIT) && (offset > 0)) {
3038                                 guint32 *br [2];
3039                                 int i;
3040
3041                                 if (offset <= 16) {
3042                                         i = 0;
3043                                         while (i < offset) {
3044                                                 if (mono_hwcap_sparc_is_v9) {
3045                                                         sparc_stx_imm (code, sparc_g0, ins->dreg, i);
3046                                                         i += 8;
3047                                                 }
3048                                                 else {
3049                                                         sparc_st_imm (code, sparc_g0, ins->dreg, i);
3050                                                         i += 4;
3051                                                 }
3052                                         }
3053                                 }
3054                                 else {
3055                                         sparc_set (code, offset, sparc_o7);
3056                                         sparc_sub_imm (code, 0, sparc_o7, mono_hwcap_sparc_is_v9 ? 8 : 4, sparc_o7);
3057                                         /* beginning of loop */
3058                                         br [0] = code;
3059                                         if (mono_hwcap_sparc_is_v9)
3060                                                 sparc_stx (code, sparc_g0, ins->dreg, sparc_o7);
3061                                         else
3062                                                 sparc_st (code, sparc_g0, ins->dreg, sparc_o7);
3063                                         sparc_cmp_imm (code, sparc_o7, 0);
3064                                         br [1] = code;
3065                                         sparc_branch (code, 0, sparc_bne, 0);
3066                                         /* delay slot */
3067                                         sparc_sub_imm (code, 0, sparc_o7, mono_hwcap_sparc_is_v9 ? 8 : 4, sparc_o7);
3068                                         sparc_patch (br [1], br [0]);
3069                                 }
3070                         }
3071                         break;
3072                 }
3073                 case OP_THROW:
3074                         sparc_mov_reg_reg (code, ins->sreg1, sparc_o0);
3075                         mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3076                                              (gpointer)"mono_arch_throw_exception");
3077                         EMIT_CALL ();
3078                         break;
3079                 case OP_RETHROW:
3080                         sparc_mov_reg_reg (code, ins->sreg1, sparc_o0);
3081                         mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3082                                              (gpointer)"mono_arch_rethrow_exception");
3083                         EMIT_CALL ();
3084                         break;
3085                 case OP_START_HANDLER: {
3086                         /*
3087                          * The START_HANDLER instruction marks the beginning of a handler 
3088                          * block. It is called using a call instruction, so %o7 contains 
3089                          * the return address. Since the handler executes in the same stack
3090              * frame as the method itself, we can't use save/restore to save 
3091                          * the return address. Instead, we save it into a dedicated 
3092                          * variable.
3093                          */
3094                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3095                         if (!sparc_is_imm13 (spvar->inst_offset)) {
3096                                 sparc_set (code, spvar->inst_offset, GP_SCRATCH_REG);
3097                                 sparc_sti (code, sparc_o7, spvar->inst_basereg, GP_SCRATCH_REG);
3098                         }
3099                         else
3100                                 sparc_sti_imm (code, sparc_o7, spvar->inst_basereg, spvar->inst_offset);
3101                         break;
3102                 }
3103                 case OP_ENDFILTER: {
3104                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3105                         if (!sparc_is_imm13 (spvar->inst_offset)) {
3106                                 sparc_set (code, spvar->inst_offset, GP_SCRATCH_REG);
3107                                 sparc_ldi (code, spvar->inst_basereg, GP_SCRATCH_REG, sparc_o7);
3108                         }
3109                         else
3110                                 sparc_ldi_imm (code, spvar->inst_basereg, spvar->inst_offset, sparc_o7);
3111                         sparc_jmpl_imm (code, sparc_o7, 8, sparc_g0);
3112                         /* Delay slot */
3113                         sparc_mov_reg_reg (code, ins->sreg1, sparc_o0);
3114                         break;
3115                 }
3116                 case OP_ENDFINALLY: {
3117                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
3118                         if (!sparc_is_imm13 (spvar->inst_offset)) {
3119                                 sparc_set (code, spvar->inst_offset, GP_SCRATCH_REG);
3120                                 sparc_ldi (code, spvar->inst_basereg, GP_SCRATCH_REG, sparc_o7);
3121                         }
3122                         else
3123                                 sparc_ldi_imm (code, spvar->inst_basereg, spvar->inst_offset, sparc_o7);
3124                         sparc_jmpl_imm (code, sparc_o7, 8, sparc_g0);
3125                         sparc_nop (code);
3126                         break;
3127                 }
3128                 case OP_CALL_HANDLER: 
3129                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
3130                         /* This is a jump inside the method, so call_simple works even on V9 */
3131                         sparc_call_simple (code, 0);
3132                         sparc_nop (code);
3133                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
3134                         break;
3135                 case OP_LABEL:
3136                         ins->inst_c0 = (guint8*)code - cfg->native_code;
3137                         break;
3138                 case OP_RELAXED_NOP:
3139                 case OP_NOP:
3140                 case OP_DUMMY_USE:
3141                 case OP_DUMMY_STORE:
3142                 case OP_NOT_REACHED:
3143                 case OP_NOT_NULL:
3144                         break;
3145                 case OP_BR:
3146                         //g_print ("target: %p, next: %p, curr: %p, last: %p\n", ins->inst_target_bb, bb->next_bb, ins, bb->last_ins);
3147                         if ((ins->inst_target_bb == bb->next_bb) && ins == bb->last_ins)
3148                                 break;
3149                         if (ins->inst_target_bb->native_offset) {
3150                                 gint32 disp = (ins->inst_target_bb->native_offset - ((guint8*)code - cfg->native_code)) >> 2;
3151                                 g_assert (sparc_is_imm22 (disp));
3152                                 sparc_branch (code, 1, sparc_ba, disp);
3153                         } else {
3154                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
3155                                 sparc_branch (code, 1, sparc_ba, 0);
3156                         }
3157                         sparc_nop (code);
3158                         break;
3159                 case OP_BR_REG:
3160                         sparc_jmp (code, ins->sreg1, sparc_g0);
3161                         sparc_nop (code);
3162                         break;
3163                 case OP_CEQ:
3164                 case OP_CLT:
3165                 case OP_CLT_UN:
3166                 case OP_CGT:
3167                 case OP_CGT_UN:
3168                         if (v64 && (cfg->opt & MONO_OPT_CMOV)) {
3169                                 sparc_clr_reg (code, ins->dreg);
3170                                 sparc_movcc_imm (code, sparc_xcc, opcode_to_sparc_cond (ins->opcode), 1, ins->dreg);
3171                         }
3172                         else {
3173                                 sparc_clr_reg (code, ins->dreg);
3174 #ifdef SPARCV9
3175                                 sparc_branchp (code, 1, opcode_to_sparc_cond (ins->opcode), DEFAULT_ICC, 0, 2);
3176 #else
3177                                 sparc_branch (code, 1, opcode_to_sparc_cond (ins->opcode), 2);
3178 #endif
3179                                 /* delay slot */
3180                                 sparc_set (code, 1, ins->dreg);
3181                         }
3182                         break;
3183                 case OP_ICEQ:
3184                 case OP_ICLT:
3185                 case OP_ICLT_UN:
3186                 case OP_ICGT:
3187                 case OP_ICGT_UN:
3188                     if (v64 && (cfg->opt & MONO_OPT_CMOV)) {
3189                                 sparc_clr_reg (code, ins->dreg);
3190                                 sparc_movcc_imm (code, sparc_icc, opcode_to_sparc_cond (ins->opcode), 1, ins->dreg);
3191                     }
3192                     else {
3193                         sparc_clr_reg (code, ins->dreg);
3194                         sparc_branchp (code, 1, opcode_to_sparc_cond (ins->opcode), sparc_icc_short, 0, 2);
3195                         /* delay slot */
3196                         sparc_set (code, 1, ins->dreg);
3197                     }
3198                     break;
3199                 case OP_COND_EXC_EQ:
3200                 case OP_COND_EXC_NE_UN:
3201                 case OP_COND_EXC_LT:
3202                 case OP_COND_EXC_LT_UN:
3203                 case OP_COND_EXC_GT:
3204                 case OP_COND_EXC_GT_UN:
3205                 case OP_COND_EXC_GE:
3206                 case OP_COND_EXC_GE_UN:
3207                 case OP_COND_EXC_LE:
3208                 case OP_COND_EXC_LE_UN:
3209                 case OP_COND_EXC_OV:
3210                 case OP_COND_EXC_NO:
3211                 case OP_COND_EXC_C:
3212                 case OP_COND_EXC_NC:
3213                 case OP_COND_EXC_IEQ:
3214                 case OP_COND_EXC_INE_UN:
3215                 case OP_COND_EXC_ILT:
3216                 case OP_COND_EXC_ILT_UN:
3217                 case OP_COND_EXC_IGT:
3218                 case OP_COND_EXC_IGT_UN:
3219                 case OP_COND_EXC_IGE:
3220                 case OP_COND_EXC_IGE_UN:
3221                 case OP_COND_EXC_ILE:
3222                 case OP_COND_EXC_ILE_UN:
3223                 case OP_COND_EXC_IOV:
3224                 case OP_COND_EXC_INO:
3225                 case OP_COND_EXC_IC:
3226                 case OP_COND_EXC_INC:
3227 #ifdef SPARCV9
3228                         NOT_IMPLEMENTED;
3229 #else
3230                         EMIT_COND_SYSTEM_EXCEPTION (ins, opcode_to_sparc_cond (ins->opcode), ins->inst_p1);
3231 #endif
3232                         break;
3233                 case OP_SPARC_COND_EXC_EQZ:
3234                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brz, ins->inst_p1);
3235                         break;
3236                 case OP_SPARC_COND_EXC_GEZ:
3237                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brgez, ins->inst_p1);
3238                         break;
3239                 case OP_SPARC_COND_EXC_GTZ:
3240                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brgz, ins->inst_p1);
3241                         break;
3242                 case OP_SPARC_COND_EXC_LEZ:
3243                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brlez, ins->inst_p1);
3244                         break;
3245                 case OP_SPARC_COND_EXC_LTZ:
3246                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brlz, ins->inst_p1);
3247                         break;
3248                 case OP_SPARC_COND_EXC_NEZ:
3249                         EMIT_COND_SYSTEM_EXCEPTION_BPR (ins, brnz, ins->inst_p1);
3250                         break;
3251
3252                 case OP_IBEQ:
3253                 case OP_IBNE_UN:
3254                 case OP_IBLT:
3255                 case OP_IBLT_UN:
3256                 case OP_IBGT:
3257                 case OP_IBGT_UN:
3258                 case OP_IBGE:
3259                 case OP_IBGE_UN:
3260                 case OP_IBLE:
3261                 case OP_IBLE_UN: {
3262                         if (mono_hwcap_sparc_is_v9)
3263                                 EMIT_COND_BRANCH_PREDICTED (ins, opcode_to_sparc_cond (ins->opcode), 1, 1);
3264                         else
3265                                 EMIT_COND_BRANCH (ins, opcode_to_sparc_cond (ins->opcode), 1, 1);
3266                         break;
3267                 }
3268
3269                 case OP_SPARC_BRZ:
3270                         EMIT_COND_BRANCH_BPR (ins, brz, 1, 1, 1);
3271                         break;
3272                 case OP_SPARC_BRLEZ:
3273                         EMIT_COND_BRANCH_BPR (ins, brlez, 1, 1, 1);
3274                         break;
3275                 case OP_SPARC_BRLZ:
3276                         EMIT_COND_BRANCH_BPR (ins, brlz, 1, 1, 1);
3277                         break;
3278                 case OP_SPARC_BRNZ:
3279                         EMIT_COND_BRANCH_BPR (ins, brnz, 1, 1, 1);
3280                         break;
3281                 case OP_SPARC_BRGZ:
3282                         EMIT_COND_BRANCH_BPR (ins, brgz, 1, 1, 1);
3283                         break;
3284                 case OP_SPARC_BRGEZ:
3285                         EMIT_COND_BRANCH_BPR (ins, brgez, 1, 1, 1);
3286                         break;
3287
3288                 /* floating point opcodes */
3289                 case OP_R8CONST:
3290                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_R8, ins->inst_p0);
3291 #ifdef SPARCV9
3292                         sparc_set_template (code, sparc_o7);
3293 #else
3294                         sparc_sethi (code, 0, sparc_o7);
3295 #endif
3296                         sparc_lddf_imm (code, sparc_o7, 0, ins->dreg);
3297                         break;
3298                 case OP_R4CONST:
3299                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_R4, ins->inst_p0);
3300 #ifdef SPARCV9
3301                         sparc_set_template (code, sparc_o7);
3302 #else
3303                         sparc_sethi (code, 0, sparc_o7);
3304 #endif
3305                         sparc_ldf_imm (code, sparc_o7, 0, FP_SCRATCH_REG);
3306
3307                         /* Extend to double */
3308                         sparc_fstod (code, FP_SCRATCH_REG, ins->dreg);
3309                         break;
3310                 case OP_STORER8_MEMBASE_REG:
3311                         if (!sparc_is_imm13 (ins->inst_offset + 4)) {
3312                                 sparc_set (code, ins->inst_offset, sparc_o7);
3313                                 /* SPARCV9 handles misaligned fp loads/stores */
3314                                 if (!v64 && (ins->inst_offset % 8)) {
3315                                         /* Misaligned */
3316                                         sparc_add (code, FALSE, ins->inst_destbasereg, sparc_o7, sparc_o7);
3317                                         sparc_stf (code, ins->sreg1, sparc_o7, sparc_g0);
3318                                         sparc_stf_imm (code, ins->sreg1 + 1, sparc_o7, 4);
3319                                 } else
3320                                         sparc_stdf (code, ins->sreg1, ins->inst_destbasereg, sparc_o7);
3321                         }
3322                         else {
3323                                 if (!v64 && (ins->inst_offset % 8)) {
3324                                         /* Misaligned */
3325                                         sparc_stf_imm (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3326                                         sparc_stf_imm (code, ins->sreg1 + 1, ins->inst_destbasereg, ins->inst_offset + 4);
3327                                 } else
3328                                         sparc_stdf_imm (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
3329                         }
3330                         break;
3331                 case OP_LOADR8_MEMBASE:
3332                         EMIT_LOAD_MEMBASE (ins, lddf);
3333                         break;
3334                 case OP_STORER4_MEMBASE_REG:
3335                         /* This requires a double->single conversion */
3336                         sparc_fdtos (code, ins->sreg1, FP_SCRATCH_REG);
3337                         if (!sparc_is_imm13 (ins->inst_offset)) {
3338                                 sparc_set (code, ins->inst_offset, sparc_o7);
3339                                 sparc_stf (code, FP_SCRATCH_REG, ins->inst_destbasereg, sparc_o7);
3340                         }
3341                         else
3342                                 sparc_stf_imm (code, FP_SCRATCH_REG, ins->inst_destbasereg, ins->inst_offset);
3343                         break;
3344                 case OP_LOADR4_MEMBASE: {
3345                         /* ldf needs a single precision register */
3346                         int dreg = ins->dreg;
3347                         ins->dreg = FP_SCRATCH_REG;
3348                         EMIT_LOAD_MEMBASE (ins, ldf);
3349                         ins->dreg = dreg;
3350                         /* Extend to double */
3351                         sparc_fstod (code, FP_SCRATCH_REG, ins->dreg);
3352                         break;
3353                 }
3354                 case OP_ICONV_TO_R4: {
3355                         MonoInst *spill = cfg->arch.float_spill_slot;
3356                         gint32 reg = spill->inst_basereg;
3357                         gint32 offset = spill->inst_offset;
3358
3359                         g_assert (spill->opcode == OP_REGOFFSET);
3360 #ifdef SPARCV9
3361                         if (!sparc_is_imm13 (offset)) {
3362                                 sparc_set (code, offset, sparc_o7);
3363                                 sparc_stx (code, ins->sreg1, reg, offset);
3364                                 sparc_lddf (code, reg, offset, FP_SCRATCH_REG);
3365                         } else {
3366                                 sparc_stx_imm (code, ins->sreg1, reg, offset);
3367                                 sparc_lddf_imm (code, reg, offset, FP_SCRATCH_REG);
3368                         }
3369                         sparc_fxtos (code, FP_SCRATCH_REG, FP_SCRATCH_REG);
3370 #else
3371                         if (!sparc_is_imm13 (offset)) {
3372                                 sparc_set (code, offset, sparc_o7);
3373                                 sparc_st (code, ins->sreg1, reg, sparc_o7);
3374                                 sparc_ldf (code, reg, sparc_o7, FP_SCRATCH_REG);
3375                         } else {
3376                                 sparc_st_imm (code, ins->sreg1, reg, offset);
3377                                 sparc_ldf_imm (code, reg, offset, FP_SCRATCH_REG);
3378                         }
3379                         sparc_fitos (code, FP_SCRATCH_REG, FP_SCRATCH_REG);
3380 #endif
3381                         sparc_fstod (code, FP_SCRATCH_REG, ins->dreg);
3382                         break;
3383                 }
3384                 case OP_ICONV_TO_R8: {
3385                         MonoInst *spill = cfg->arch.float_spill_slot;
3386                         gint32 reg = spill->inst_basereg;
3387                         gint32 offset = spill->inst_offset;
3388
3389                         g_assert (spill->opcode == OP_REGOFFSET);
3390
3391 #ifdef SPARCV9
3392                         if (!sparc_is_imm13 (offset)) {
3393                                 sparc_set (code, offset, sparc_o7);
3394                                 sparc_stx (code, ins->sreg1, reg, sparc_o7);
3395                                 sparc_lddf (code, reg, sparc_o7, FP_SCRATCH_REG);
3396                         } else {
3397                                 sparc_stx_imm (code, ins->sreg1, reg, offset);
3398                                 sparc_lddf_imm (code, reg, offset, FP_SCRATCH_REG);
3399                         }
3400                         sparc_fxtod (code, FP_SCRATCH_REG, ins->dreg);
3401 #else
3402                         if (!sparc_is_imm13 (offset)) {
3403                                 sparc_set (code, offset, sparc_o7);
3404                                 sparc_st (code, ins->sreg1, reg, sparc_o7);
3405                                 sparc_ldf (code, reg, sparc_o7, FP_SCRATCH_REG);
3406                         } else {
3407                                 sparc_st_imm (code, ins->sreg1, reg, offset);
3408                                 sparc_ldf_imm (code, reg, offset, FP_SCRATCH_REG);
3409                         }
3410                         sparc_fitod (code, FP_SCRATCH_REG, ins->dreg);
3411 #endif
3412                         break;
3413                 }
3414                 case OP_FCONV_TO_I1:
3415                 case OP_FCONV_TO_U1:
3416                 case OP_FCONV_TO_I2:
3417                 case OP_FCONV_TO_U2:
3418 #ifndef SPARCV9
3419                 case OP_FCONV_TO_I:
3420                 case OP_FCONV_TO_U:
3421 #endif
3422                 case OP_FCONV_TO_I4:
3423                 case OP_FCONV_TO_U4: {
3424                         MonoInst *spill = cfg->arch.float_spill_slot;
3425                         gint32 reg = spill->inst_basereg;
3426                         gint32 offset = spill->inst_offset;
3427
3428                         g_assert (spill->opcode == OP_REGOFFSET);
3429
3430                         sparc_fdtoi (code, ins->sreg1, FP_SCRATCH_REG);
3431                         if (!sparc_is_imm13 (offset)) {
3432                                 sparc_set (code, offset, sparc_o7);
3433                                 sparc_stdf (code, FP_SCRATCH_REG, reg, sparc_o7);
3434                                 sparc_ld (code, reg, sparc_o7, ins->dreg);
3435                         } else {
3436                                 sparc_stdf_imm (code, FP_SCRATCH_REG, reg, offset);
3437                                 sparc_ld_imm (code, reg, offset, ins->dreg);
3438                         }
3439
3440                         switch (ins->opcode) {
3441                         case OP_FCONV_TO_I1:
3442                         case OP_FCONV_TO_U1:
3443                                 sparc_and_imm (code, 0, ins->dreg, 0xff, ins->dreg);
3444                                 break;
3445                         case OP_FCONV_TO_I2:
3446                         case OP_FCONV_TO_U2:
3447                                 sparc_set (code, 0xffff, sparc_o7);
3448                                 sparc_and (code, 0, ins->dreg, sparc_o7, ins->dreg);
3449                                 break;
3450                         default:
3451                                 break;
3452                         }
3453                         break;
3454                 }
3455                 case OP_FCONV_TO_I8:
3456                 case OP_FCONV_TO_U8:
3457                         /* Emulated */
3458                         g_assert_not_reached ();
3459                         break;
3460                 case OP_FCONV_TO_R4:
3461                         /* FIXME: Change precision ? */
3462 #ifdef SPARCV9
3463                         sparc_fmovd (code, ins->sreg1, ins->dreg);
3464 #else
3465                         sparc_fmovs (code, ins->sreg1, ins->dreg);
3466                         sparc_fmovs (code, ins->sreg1 + 1, ins->dreg + 1);
3467 #endif
3468                         break;
3469                 case OP_LCONV_TO_R_UN: { 
3470                         /* Emulated */
3471                         g_assert_not_reached ();
3472                         break;
3473                 }
3474                 case OP_LCONV_TO_OVF_I:
3475                 case OP_LCONV_TO_OVF_I4_2: {
3476                         guint32 *br [3], *label [1];
3477
3478                         /* 
3479                          * Valid ints: 0xffffffff:8000000 to 00000000:0x7f000000
3480                          */
3481                         sparc_cmp_imm (code, ins->sreg1, 0);
3482                         br [0] = code; 
3483                         sparc_branch (code, 1, sparc_bneg, 0);
3484                         sparc_nop (code);
3485
3486                         /* positive */
3487                         /* ms word must be 0 */
3488                         sparc_cmp_imm (code, ins->sreg2, 0);
3489                         br [1] = code;
3490                         sparc_branch (code, 1, sparc_be, 0);
3491                         sparc_nop (code);
3492
3493                         label [0] = code;
3494
3495                         EMIT_COND_SYSTEM_EXCEPTION (ins, sparc_ba, "OverflowException");
3496
3497                         /* negative */
3498                         sparc_patch (br [0], code);
3499
3500                         /* ms word must 0xfffffff */
3501                         sparc_cmp_imm (code, ins->sreg2, -1);
3502                         br [2] = code;
3503                         sparc_branch (code, 1, sparc_bne, 0);
3504                         sparc_nop (code);
3505                         sparc_patch (br [2], label [0]);
3506
3507                         /* Ok */
3508                         sparc_patch (br [1], code);
3509                         if (ins->sreg1 != ins->dreg)
3510                                 sparc_mov_reg_reg (code, ins->sreg1, ins->dreg);
3511                         break;
3512                 }
3513                 case OP_FADD:
3514                         sparc_faddd (code, ins->sreg1, ins->sreg2, ins->dreg);
3515                         break;
3516                 case OP_FSUB:
3517                         sparc_fsubd (code, ins->sreg1, ins->sreg2, ins->dreg);
3518                         break;          
3519                 case OP_FMUL:
3520                         sparc_fmuld (code, ins->sreg1, ins->sreg2, ins->dreg);
3521                         break;          
3522                 case OP_FDIV:
3523                         sparc_fdivd (code, ins->sreg1, ins->sreg2, ins->dreg);
3524                         break;          
3525                 case OP_FNEG:
3526 #ifdef SPARCV9
3527                         sparc_fnegd (code, ins->sreg1, ins->dreg);
3528 #else
3529                         /* FIXME: why don't use fnegd ? */
3530                         sparc_fnegs (code, ins->sreg1, ins->dreg);
3531 #endif
3532                         break;          
3533                 case OP_FREM:
3534                         sparc_fdivd (code, ins->sreg1, ins->sreg2, FP_SCRATCH_REG);
3535                         sparc_fmuld (code, ins->sreg2, FP_SCRATCH_REG, FP_SCRATCH_REG);
3536                         sparc_fsubd (code, ins->sreg1, FP_SCRATCH_REG, ins->dreg);
3537                         break;
3538                 case OP_FCOMPARE:
3539                         sparc_fcmpd (code, ins->sreg1, ins->sreg2);
3540                         break;
3541                 case OP_FCEQ:
3542                 case OP_FCLT:
3543                 case OP_FCLT_UN:
3544                 case OP_FCGT:
3545                 case OP_FCGT_UN:
3546                         sparc_fcmpd (code, ins->sreg1, ins->sreg2);
3547                         sparc_clr_reg (code, ins->dreg);
3548                         switch (ins->opcode) {
3549                         case OP_FCLT_UN:
3550                         case OP_FCGT_UN:
3551                                 sparc_fbranch (code, 1, opcode_to_sparc_cond (ins->opcode), 4);
3552                                 /* delay slot */
3553                                 sparc_set (code, 1, ins->dreg);
3554                                 sparc_fbranch (code, 1, sparc_fbu, 2);
3555                                 /* delay slot */
3556                                 sparc_set (code, 1, ins->dreg);
3557                                 break;
3558                         default:
3559                                 sparc_fbranch (code, 1, opcode_to_sparc_cond (ins->opcode), 2);
3560                                 /* delay slot */
3561                                 sparc_set (code, 1, ins->dreg);                         
3562                         }
3563                         break;
3564                 case OP_FBEQ:
3565                 case OP_FBLT:
3566                 case OP_FBGT:
3567                         EMIT_FLOAT_COND_BRANCH (ins, opcode_to_sparc_cond (ins->opcode), 1, 1);
3568                         break;
3569                 case OP_FBGE: {
3570                         /* clt.un + brfalse */
3571                         guint32 *p = code;
3572                         sparc_fbranch (code, 1, sparc_fbul, 0);
3573                         /* delay slot */
3574                         sparc_nop (code);
3575                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fba, 1, 1);
3576                         sparc_patch (p, (guint8*)code);
3577                         break;
3578                 }
3579                 case OP_FBLE: {
3580                         /* cgt.un + brfalse */
3581                         guint32 *p = code;
3582                         sparc_fbranch (code, 1, sparc_fbug, 0);
3583                         /* delay slot */
3584                         sparc_nop (code);
3585                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fba, 1, 1);
3586                         sparc_patch (p, (guint8*)code);
3587                         break;
3588                 }
3589                 case OP_FBNE_UN:
3590                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbne, 1, 1);
3591                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbu, 1, 1);
3592                         break;
3593                 case OP_FBLT_UN:
3594                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbl, 1, 1);
3595                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbu, 1, 1);
3596                         break;
3597                 case OP_FBGT_UN:
3598                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbg, 1, 1);
3599                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbu, 1, 1);
3600                         break;
3601                 case OP_FBGE_UN:
3602                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbge, 1, 1);
3603                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbu, 1, 1);
3604                         break;
3605                 case OP_FBLE_UN:
3606                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fble, 1, 1);
3607                         EMIT_FLOAT_COND_BRANCH (ins, sparc_fbu, 1, 1);
3608                         break;
3609                 case OP_CKFINITE: {
3610                         MonoInst *spill = cfg->arch.float_spill_slot;
3611                         gint32 reg = spill->inst_basereg;
3612                         gint32 offset = spill->inst_offset;
3613
3614                         g_assert (spill->opcode == OP_REGOFFSET);
3615
3616                         if (!sparc_is_imm13 (offset)) {
3617                                 sparc_set (code, offset, sparc_o7);
3618                                 sparc_stdf (code, ins->sreg1, reg, sparc_o7);
3619                                 sparc_lduh (code, reg, sparc_o7, sparc_o7);
3620                         } else {
3621                                 sparc_stdf_imm (code, ins->sreg1, reg, offset);
3622                                 sparc_lduh_imm (code, reg, offset, sparc_o7);
3623                         }
3624                         sparc_srl_imm (code, sparc_o7, 4, sparc_o7);
3625                         sparc_and_imm (code, FALSE, sparc_o7, 2047, sparc_o7);
3626                         sparc_cmp_imm (code, sparc_o7, 2047);
3627                         EMIT_COND_SYSTEM_EXCEPTION (ins, sparc_be, "ArithmeticException");
3628 #ifdef SPARCV9
3629                         sparc_fmovd (code, ins->sreg1, ins->dreg);
3630 #else
3631                         sparc_fmovs (code, ins->sreg1, ins->dreg);
3632                         sparc_fmovs (code, ins->sreg1 + 1, ins->dreg + 1);
3633 #endif
3634                         break;
3635                 }
3636
3637                 case OP_MEMORY_BARRIER:
3638                         sparc_membar (code, sparc_membar_all);
3639                         break;
3640
3641                 default:
3642 #ifdef __GNUC__
3643                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
3644 #else
3645                         g_warning ("%s:%d: unknown opcode %s\n", __FILE__, __LINE__, mono_inst_name (ins->opcode));
3646 #endif
3647                         g_assert_not_reached ();
3648                 }
3649
3650                 if ((((guint8*)code) - code_start) > max_len) {
3651                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
3652                                    mono_inst_name (ins->opcode), max_len, ((guint8*)code) - code_start);
3653                         g_assert_not_reached ();
3654                 }
3655                
3656                 cpos += max_len;
3657
3658                 last_ins = ins;
3659         }
3660
3661         cfg->code_len = (guint8*)code - cfg->native_code;
3662 }
3663
3664 void
3665 mono_arch_register_lowlevel_calls (void)
3666 {
3667         mono_register_jit_icall (mono_arch_get_lmf_addr, "mono_arch_get_lmf_addr", NULL, TRUE);
3668 }
3669
3670 void
3671 mono_arch_patch_code (MonoCompile *cfg, MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gboolean run_cctors)
3672 {
3673         MonoJumpInfo *patch_info;
3674
3675         /* FIXME: Move part of this to arch independent code */
3676         for (patch_info = ji; patch_info; patch_info = patch_info->next) {
3677                 unsigned char *ip = patch_info->ip.i + code;
3678                 gpointer target;
3679
3680                 target = mono_resolve_patch_target (method, domain, code, patch_info, run_cctors);
3681
3682                 switch (patch_info->type) {
3683                 case MONO_PATCH_INFO_NONE:
3684                         continue;
3685                 case MONO_PATCH_INFO_METHOD_JUMP: {
3686                         guint32 *ip2 = (guint32*)ip;
3687                         /* Might already been patched */
3688                         sparc_set_template (ip2, sparc_o7);
3689                         break;
3690                 }
3691                 default:
3692                         break;
3693                 }
3694                 sparc_patch ((guint32*)ip, target);
3695         }
3696 }
3697
3698 void*
3699 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
3700 {
3701         int i;
3702         guint32 *code = (guint32*)p;
3703         MonoMethodSignature *sig = mono_method_signature (cfg->method);
3704         CallInfo *cinfo;
3705
3706         /* Save registers to stack */
3707         for (i = 0; i < 6; ++i)
3708                 sparc_sti_imm (code, sparc_i0 + i, sparc_fp, ARGS_OFFSET + (i * sizeof (gpointer)));
3709
3710         cinfo = get_call_info (cfg, sig, FALSE);
3711
3712         /* Save float regs on V9, since they are caller saved */
3713         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
3714                 ArgInfo *ainfo = cinfo->args + i;
3715                 gint32 stack_offset;
3716
3717                 stack_offset = ainfo->offset + ARGS_OFFSET;
3718
3719                 if (ainfo->storage == ArgInFloatReg) {
3720                         if (!sparc_is_imm13 (stack_offset))
3721                                 NOT_IMPLEMENTED;
3722                         sparc_stf_imm (code, ainfo->reg, sparc_fp, stack_offset);
3723                 }
3724                 else if (ainfo->storage == ArgInDoubleReg) {
3725                         /* The offset is guaranteed to be aligned by the ABI rules */
3726                         sparc_stdf_imm (code, ainfo->reg, sparc_fp, stack_offset);
3727                 }
3728         }
3729
3730         sparc_set (code, cfg->method, sparc_o0);
3731         sparc_add_imm (code, FALSE, sparc_fp, MONO_SPARC_STACK_BIAS, sparc_o1);
3732
3733         mono_add_patch_info (cfg, (guint8*)code-cfg->native_code, MONO_PATCH_INFO_ABS, func);
3734         EMIT_CALL ();
3735
3736         /* Restore float regs on V9 */
3737         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
3738                 ArgInfo *ainfo = cinfo->args + i;
3739                 gint32 stack_offset;
3740
3741                 stack_offset = ainfo->offset + ARGS_OFFSET;
3742
3743                 if (ainfo->storage == ArgInFloatReg) {
3744                         if (!sparc_is_imm13 (stack_offset))
3745                                 NOT_IMPLEMENTED;
3746                         sparc_ldf_imm (code, sparc_fp, stack_offset, ainfo->reg);
3747                 }
3748                 else if (ainfo->storage == ArgInDoubleReg) {
3749                         /* The offset is guaranteed to be aligned by the ABI rules */
3750                         sparc_lddf_imm (code, sparc_fp, stack_offset, ainfo->reg);
3751                 }
3752         }
3753
3754         g_free (cinfo);
3755
3756         return code;
3757 }
3758
3759 enum {
3760         SAVE_NONE,
3761         SAVE_STRUCT,
3762         SAVE_ONE,
3763         SAVE_TWO,
3764         SAVE_FP
3765 };
3766
3767 void*
3768 mono_arch_instrument_epilog_full (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments, gboolean preserve_argument_registers)
3769 {
3770         guint32 *code = (guint32*)p;
3771         int save_mode = SAVE_NONE;
3772         MonoMethod *method = cfg->method;
3773
3774         switch (mini_get_underlying_type (mono_method_signature (method)->ret)->type) {
3775         case MONO_TYPE_VOID:
3776                 /* special case string .ctor icall */
3777                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
3778                         save_mode = SAVE_ONE;
3779                 else
3780                         save_mode = SAVE_NONE;
3781                 break;
3782         case MONO_TYPE_I8:
3783         case MONO_TYPE_U8:
3784 #ifdef SPARCV9
3785                 save_mode = SAVE_ONE;
3786 #else
3787                 save_mode = SAVE_TWO;
3788 #endif
3789                 break;
3790         case MONO_TYPE_R4:
3791         case MONO_TYPE_R8:
3792                 save_mode = SAVE_FP;
3793                 break;
3794         case MONO_TYPE_VALUETYPE:
3795                 save_mode = SAVE_STRUCT;
3796                 break;
3797         default:
3798                 save_mode = SAVE_ONE;
3799                 break;
3800         }
3801
3802         /* Save the result to the stack and also put it into the output registers */
3803
3804         switch (save_mode) {
3805         case SAVE_TWO:
3806                 /* V8 only */
3807                 sparc_st_imm (code, sparc_i0, sparc_fp, 68);
3808                 sparc_st_imm (code, sparc_i0, sparc_fp, 72);
3809                 sparc_mov_reg_reg (code, sparc_i0, sparc_o1);
3810                 sparc_mov_reg_reg (code, sparc_i1, sparc_o2);
3811                 break;
3812         case SAVE_ONE:
3813                 sparc_sti_imm (code, sparc_i0, sparc_fp, ARGS_OFFSET);
3814                 sparc_mov_reg_reg (code, sparc_i0, sparc_o1);
3815                 break;
3816         case SAVE_FP:
3817 #ifdef SPARCV9
3818                 sparc_stdf_imm (code, sparc_f0, sparc_fp, ARGS_OFFSET);
3819 #else
3820                 sparc_stdf_imm (code, sparc_f0, sparc_fp, 72);
3821                 sparc_ld_imm (code, sparc_fp, 72, sparc_o1);
3822                 sparc_ld_imm (code, sparc_fp, 72 + 4, sparc_o2);
3823 #endif
3824                 break;
3825         case SAVE_STRUCT:
3826 #ifdef SPARCV9
3827                 sparc_mov_reg_reg (code, sparc_i0, sparc_o1);
3828 #else
3829                 sparc_ld_imm (code, sparc_fp, 64, sparc_o1);
3830 #endif
3831                 break;
3832         case SAVE_NONE:
3833         default:
3834                 break;
3835         }
3836
3837         sparc_set (code, cfg->method, sparc_o0);
3838
3839         mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_ABS, func);
3840         EMIT_CALL ();
3841
3842         /* Restore result */
3843
3844         switch (save_mode) {
3845         case SAVE_TWO:
3846                 sparc_ld_imm (code, sparc_fp, 68, sparc_i0);
3847                 sparc_ld_imm (code, sparc_fp, 72, sparc_i0);
3848                 break;
3849         case SAVE_ONE:
3850                 sparc_ldi_imm (code, sparc_fp, ARGS_OFFSET, sparc_i0);
3851                 break;
3852         case SAVE_FP:
3853                 sparc_lddf_imm (code, sparc_fp, ARGS_OFFSET, sparc_f0);
3854                 break;
3855         case SAVE_NONE:
3856         default:
3857                 break;
3858         }
3859
3860         return code;
3861 }
3862
3863 guint8 *
3864 mono_arch_emit_prolog (MonoCompile *cfg)
3865 {
3866         MonoMethod *method = cfg->method;
3867         MonoMethodSignature *sig;
3868         MonoInst *inst;
3869         guint32 *code;
3870         CallInfo *cinfo;
3871         guint32 i, offset;
3872
3873         cfg->code_size = 256;
3874         cfg->native_code = g_malloc (cfg->code_size);
3875         code = (guint32*)cfg->native_code;
3876
3877         /* FIXME: Generate intermediate code instead */
3878
3879         offset = cfg->stack_offset;
3880         offset += (16 * sizeof (gpointer)); /* register save area */
3881 #ifndef SPARCV9
3882         offset += 4; /* struct/union return pointer */
3883 #endif
3884
3885         /* add parameter area size for called functions */
3886         if (cfg->param_area < (6 * sizeof (gpointer)))
3887                 /* Reserve space for the first 6 arguments even if it is unused */
3888                 offset += 6 * sizeof (gpointer);
3889         else
3890                 offset += cfg->param_area;
3891         
3892         /* align the stack size */
3893         offset = ALIGN_TO (offset, MONO_ARCH_FRAME_ALIGNMENT);
3894
3895         /*
3896          * localloc'd memory is stored between the local variables (whose
3897          * size is given by cfg->stack_offset), and between the space reserved
3898          * by the ABI.
3899          */
3900         cfg->arch.localloc_offset = offset - cfg->stack_offset;
3901
3902         cfg->stack_offset = offset;
3903
3904 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
3905                         /* Perform stack touching */
3906                         NOT_IMPLEMENTED;
3907 #endif
3908
3909         if (!sparc_is_imm13 (- cfg->stack_offset)) {
3910                 /* Can't use sparc_o7 here, since we're still in the caller's frame */
3911                 sparc_set (code, (- cfg->stack_offset), GP_SCRATCH_REG);
3912                 sparc_save (code, sparc_sp, GP_SCRATCH_REG, sparc_sp);
3913         }
3914         else
3915                 sparc_save_imm (code, sparc_sp, - cfg->stack_offset, sparc_sp);
3916
3917 /*
3918         if (strstr (cfg->method->name, "foo")) {
3919                 mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_ABS, mono_sparc_break);
3920                 sparc_call_simple (code, 0);
3921                 sparc_nop (code);
3922         }
3923 */
3924
3925         sig = mono_method_signature (method);
3926
3927         cinfo = get_call_info (cfg, sig, FALSE);
3928
3929         /* Keep in sync with emit_load_volatile_arguments */
3930         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
3931                 ArgInfo *ainfo = cinfo->args + i;
3932                 gint32 stack_offset;
3933                 MonoType *arg_type;
3934                 inst = cfg->args [i];
3935
3936                 if (sig->hasthis && (i == 0))
3937                         arg_type = &mono_defaults.object_class->byval_arg;
3938                 else
3939                         arg_type = sig->params [i - sig->hasthis];
3940
3941                 stack_offset = ainfo->offset + ARGS_OFFSET;
3942
3943                 /* Save the split arguments so they will reside entirely on the stack */
3944                 if (ainfo->storage == ArgInSplitRegStack) {
3945                         /* Save the register to the stack */
3946                         g_assert (inst->opcode == OP_REGOFFSET);
3947                         if (!sparc_is_imm13 (stack_offset))
3948                                 NOT_IMPLEMENTED;
3949                         sparc_st_imm (code, sparc_i5, inst->inst_basereg, stack_offset);
3950                 }
3951
3952                 if (!v64 && !arg_type->byref && (arg_type->type == MONO_TYPE_R8)) {
3953                         /* Save the argument to a dword aligned stack location */
3954                         /*
3955                          * stack_offset contains the offset of the argument on the stack.
3956                          * inst->inst_offset contains the dword aligned offset where the value 
3957                          * should be stored.
3958                          */
3959                         if (ainfo->storage == ArgInIRegPair) {
3960                                 if (!sparc_is_imm13 (inst->inst_offset + 4))
3961                                         NOT_IMPLEMENTED;
3962                                 sparc_st_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, inst->inst_offset);
3963                                 sparc_st_imm (code, sparc_i0 + ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + 4);
3964                         }
3965                         else
3966                                 if (ainfo->storage == ArgInSplitRegStack) {
3967 #ifdef SPARCV9
3968                                         g_assert_not_reached ();
3969 #endif
3970                                         if (stack_offset != inst->inst_offset) {
3971                                                 /* stack_offset is not dword aligned, so we need to make a copy */
3972                                                 sparc_st_imm (code, sparc_i5, inst->inst_basereg, inst->inst_offset);
3973                                                 sparc_ld_imm (code, sparc_fp, stack_offset + 4, sparc_o7);
3974                                                 sparc_st_imm (code, sparc_o7, inst->inst_basereg, inst->inst_offset + 4);
3975                                         }
3976                                 }
3977                         else
3978                                 if (ainfo->storage == ArgOnStackPair) {
3979 #ifdef SPARCV9
3980                                         g_assert_not_reached ();
3981 #endif
3982                                         if (stack_offset != inst->inst_offset) {
3983                                                 /* stack_offset is not dword aligned, so we need to make a copy */
3984                                                 sparc_ld_imm (code, sparc_fp, stack_offset, sparc_o7);
3985                                                 sparc_st_imm (code, sparc_o7, inst->inst_basereg, inst->inst_offset);
3986                                                 sparc_ld_imm (code, sparc_fp, stack_offset + 4, sparc_o7);
3987                                                 sparc_st_imm (code, sparc_o7, inst->inst_basereg, inst->inst_offset + 4);
3988                                         }
3989                                 }
3990                         else
3991                                 g_assert_not_reached ();
3992                 }
3993                 else
3994                         if ((ainfo->storage == ArgInIReg) && (inst->opcode != OP_REGVAR)) {
3995                                 /* Argument in register, but need to be saved to stack */
3996                                 if (!sparc_is_imm13 (stack_offset))
3997                                         NOT_IMPLEMENTED;
3998                                 if ((stack_offset - ARGS_OFFSET) & 0x1)
3999                                         sparc_stb_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, stack_offset);
4000                                 else
4001                                         if ((stack_offset - ARGS_OFFSET) & 0x2)
4002                                                 sparc_sth_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, stack_offset);
4003                                 else
4004                                         if ((stack_offset - ARGS_OFFSET) & 0x4)
4005                                                 sparc_st_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, stack_offset);                           
4006                                         else {
4007                                                 if (v64)
4008                                                         sparc_stx_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, stack_offset);
4009                                                 else
4010                                                         sparc_st_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, stack_offset);
4011                                         }
4012                         }
4013                 else
4014                         if ((ainfo->storage == ArgInIRegPair) && (inst->opcode != OP_REGVAR)) {
4015 #ifdef SPARCV9
4016                                 NOT_IMPLEMENTED;
4017 #endif
4018                                 /* Argument in regpair, but need to be saved to stack */
4019                                 if (!sparc_is_imm13 (inst->inst_offset + 4))
4020                                         NOT_IMPLEMENTED;
4021                                 sparc_st_imm (code, sparc_i0 + ainfo->reg, inst->inst_basereg, inst->inst_offset);
4022                                 sparc_st_imm (code, sparc_i0 + ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + 4);                              
4023                         }
4024                 else if ((ainfo->storage == ArgInFloatReg) && (inst->opcode != OP_REGVAR)) {
4025                                 if (!sparc_is_imm13 (stack_offset))
4026                                         NOT_IMPLEMENTED;
4027                                 sparc_stf_imm (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
4028                                 }
4029                         else if ((ainfo->storage == ArgInDoubleReg) && (inst->opcode != OP_REGVAR)) {
4030                                 /* The offset is guaranteed to be aligned by the ABI rules */
4031                                 sparc_stdf_imm (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
4032                         }
4033                                         
4034                 if ((ainfo->storage == ArgInFloatReg) && (inst->opcode == OP_REGVAR)) {
4035                         /* Need to move into the a double precision register */
4036                         sparc_fstod (code, ainfo->reg, ainfo->reg - 1);
4037                 }
4038
4039                 if ((ainfo->storage == ArgInSplitRegStack) || (ainfo->storage == ArgOnStack))
4040                         if (inst->opcode == OP_REGVAR)
4041                                 /* FIXME: Load the argument into memory */
4042                                 NOT_IMPLEMENTED;
4043         }
4044
4045         g_free (cinfo);
4046
4047         if (cfg->method->save_lmf) {
4048                 gint32 lmf_offset = STACK_BIAS - cfg->arch.lmf_offset;
4049
4050                 /* Save ip */
4051                 mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_IP, NULL);
4052                 sparc_set_template (code, sparc_o7);
4053                 sparc_sti_imm (code, sparc_o7, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, ip));
4054                 /* Save sp */
4055                 sparc_sti_imm (code, sparc_sp, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, sp));
4056                 /* Save fp */
4057                 sparc_sti_imm (code, sparc_fp, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, ebp));
4058                 /* Save method */
4059                 /* FIXME: add a relocation for this */
4060                 sparc_set (code, cfg->method, sparc_o7);
4061                 sparc_sti_imm (code, sparc_o7, sparc_fp, lmf_offset + G_STRUCT_OFFSET (MonoLMF, method));
4062
4063                 mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4064                                                          (gpointer)"mono_arch_get_lmf_addr");           
4065                 EMIT_CALL ();
4066
4067                 code = (guint32*)mono_sparc_emit_save_lmf (code, lmf_offset);
4068         }
4069
4070         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
4071                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
4072
4073         cfg->code_len = (guint8*)code - cfg->native_code;
4074
4075         g_assert (cfg->code_len <= cfg->code_size);
4076
4077         return (guint8*)code;
4078 }
4079
4080 void
4081 mono_arch_emit_epilog (MonoCompile *cfg)
4082 {
4083         MonoMethod *method = cfg->method;
4084         guint32 *code;
4085         int can_fold = 0;
4086         int max_epilog_size = 16 + 20 * 4;
4087         
4088         if (cfg->method->save_lmf)
4089                 max_epilog_size += 128;
4090         
4091         if (mono_jit_trace_calls != NULL)
4092                 max_epilog_size += 50;
4093
4094         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
4095                 max_epilog_size += 50;
4096
4097         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
4098                 cfg->code_size *= 2;
4099                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4100                 cfg->stat_code_reallocs++;
4101         }
4102
4103         code = (guint32*)(cfg->native_code + cfg->code_len);
4104
4105         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
4106                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
4107
4108         if (cfg->method->save_lmf) {
4109                 gint32 lmf_offset = STACK_BIAS - cfg->arch.lmf_offset;
4110
4111                 code = mono_sparc_emit_restore_lmf (code, lmf_offset);
4112         }
4113
4114         /* 
4115          * The V8 ABI requires that calls to functions which return a structure
4116          * return to %i7+12
4117          */
4118         if (!v64 && mono_method_signature (cfg->method)->pinvoke && MONO_TYPE_ISSTRUCT(mono_method_signature (cfg->method)->ret))
4119                 sparc_jmpl_imm (code, sparc_i7, 12, sparc_g0);
4120         else
4121                 sparc_ret (code);
4122
4123         /* Only fold last instruction into the restore if the exit block has an in count of 1
4124            and the previous block hasn't been optimized away since it may have an in count > 1 */
4125         if (cfg->bb_exit->in_count == 1 && cfg->bb_exit->in_bb[0]->native_offset != cfg->bb_exit->native_offset)
4126                 can_fold = 1;
4127
4128         /* 
4129          * FIXME: The last instruction might have a branch pointing into it like in 
4130          * int_ceq sparc_i0 <-
4131          */
4132         can_fold = 0;
4133
4134         /* Try folding last instruction into the restore */
4135         if (can_fold && (sparc_inst_op (code [-2]) == 0x2) && (sparc_inst_op3 (code [-2]) == 0x2) && sparc_inst_imm (code [-2]) && (sparc_inst_rd (code [-2]) == sparc_i0)) {
4136                 /* or reg, imm, %i0 */
4137                 int reg = sparc_inst_rs1 (code [-2]);
4138                 int imm = (((gint32)(sparc_inst_imm13 (code [-2]))) << 19) >> 19;
4139                 code [-2] = code [-1];
4140                 code --;
4141                 sparc_restore_imm (code, reg, imm, sparc_o0);
4142         }
4143         else
4144         if (can_fold && (sparc_inst_op (code [-2]) == 0x2) && (sparc_inst_op3 (code [-2]) == 0x2) && (!sparc_inst_imm (code [-2])) && (sparc_inst_rd (code [-2]) == sparc_i0)) {
4145                 /* or reg, reg, %i0 */
4146                 int reg1 = sparc_inst_rs1 (code [-2]);
4147                 int reg2 = sparc_inst_rs2 (code [-2]);
4148                 code [-2] = code [-1];
4149                 code --;
4150                 sparc_restore (code, reg1, reg2, sparc_o0);
4151         }
4152         else
4153                 sparc_restore_imm (code, sparc_g0, 0, sparc_g0);
4154
4155         cfg->code_len = (guint8*)code - cfg->native_code;
4156
4157         g_assert (cfg->code_len < cfg->code_size);
4158
4159 }
4160
4161 void
4162 mono_arch_emit_exceptions (MonoCompile *cfg)
4163 {
4164         MonoJumpInfo *patch_info;
4165         guint32 *code;
4166         int nthrows = 0, i;
4167         int exc_count = 0;
4168         guint32 code_size;
4169         MonoClass *exc_classes [16];
4170         guint8 *exc_throw_start [16], *exc_throw_end [16];
4171
4172         /* Compute needed space */
4173         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
4174                 if (patch_info->type == MONO_PATCH_INFO_EXC)
4175                         exc_count++;
4176         }
4177      
4178         /* 
4179          * make sure we have enough space for exceptions
4180          */
4181 #ifdef SPARCV9
4182         code_size = exc_count * (20 * 4);
4183 #else
4184         code_size = exc_count * 24;
4185 #endif
4186
4187         while (cfg->code_len + code_size > (cfg->code_size - 16)) {
4188                 cfg->code_size *= 2;
4189                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4190                 cfg->stat_code_reallocs++;
4191         }
4192
4193         code = (guint32*)(cfg->native_code + cfg->code_len);
4194
4195         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
4196                 switch (patch_info->type) {
4197                 case MONO_PATCH_INFO_EXC: {
4198                         MonoClass *exc_class;
4199                         guint32 *buf, *buf2;
4200                         guint32 throw_ip, type_idx;
4201                         gint32 disp;
4202
4203                         sparc_patch ((guint32*)(cfg->native_code + patch_info->ip.i), code);
4204
4205                         exc_class = mono_class_from_name (mono_defaults.corlib, "System", patch_info->data.name);
4206                         g_assert (exc_class);
4207                         type_idx = exc_class->type_token - MONO_TOKEN_TYPE_DEF;
4208                         throw_ip = patch_info->ip.i;
4209
4210                         /* Find a throw sequence for the same exception class */
4211                         for (i = 0; i < nthrows; ++i)
4212                                 if (exc_classes [i] == exc_class)
4213                                         break;
4214
4215                         if (i < nthrows) {
4216                                 guint32 throw_offset = (((guint8*)exc_throw_end [i] - cfg->native_code) - throw_ip) >> 2;
4217                                 if (!sparc_is_imm13 (throw_offset))
4218                                         sparc_set32 (code, throw_offset, sparc_o1);
4219
4220                                 disp = (exc_throw_start [i] - (guint8*)code) >> 2;
4221                                 g_assert (sparc_is_imm22 (disp));
4222                                 sparc_branch (code, 0, sparc_ba, disp);
4223                                 if (sparc_is_imm13 (throw_offset))
4224                                         sparc_set32 (code, throw_offset, sparc_o1);
4225                                 else
4226                                         sparc_nop (code);
4227                                 patch_info->type = MONO_PATCH_INFO_NONE;
4228                         }
4229                         else {
4230                                 /* Emit the template for setting o1 */
4231                                 buf = code;
4232                                 if (sparc_is_imm13 (((((guint8*)code - cfg->native_code) - throw_ip) >> 2) - 8))
4233                                         /* Can use a short form */
4234                                         sparc_nop (code);
4235                                 else
4236                                         sparc_set_template (code, sparc_o1);
4237                                 buf2 = code;
4238
4239                                 if (nthrows < 16) {
4240                                         exc_classes [nthrows] = exc_class;
4241                                         exc_throw_start [nthrows] = (guint8*)code;
4242                                 }
4243
4244                                 /*
4245                                 mono_add_patch_info (cfg, (guint8*)code - cfg->native_code, MONO_PATCH_INFO_ABS, mono_sparc_break);
4246                                 EMIT_CALL();
4247                                 */
4248
4249                                 /* first arg = type token */
4250                                 /* Pass the type index to reduce the size of the sparc_set */
4251                                 if (!sparc_is_imm13 (type_idx))
4252                                         sparc_set32 (code, type_idx, sparc_o0);
4253
4254                                 /* second arg = offset between the throw ip and the current ip */
4255                                 /* On sparc, the saved ip points to the call instruction */
4256                                 disp = (((guint8*)code - cfg->native_code) - throw_ip) >> 2;
4257                                 sparc_set32 (buf, disp, sparc_o1);
4258                                 while (buf < buf2)
4259                                         sparc_nop (buf);
4260
4261                                 if (nthrows < 16) {
4262                                         exc_throw_end [nthrows] = (guint8*)code;
4263                                         nthrows ++;
4264                                 }
4265
4266                                 patch_info->data.name = "mono_arch_throw_corlib_exception";
4267                                 patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
4268                                 patch_info->ip.i = (guint8*)code - cfg->native_code;
4269
4270                                 EMIT_CALL ();
4271
4272                                 if (sparc_is_imm13 (type_idx)) {
4273                                         /* Put it into the delay slot */
4274                                         code --;
4275                                         buf = code;
4276                                         sparc_set32 (code, type_idx, sparc_o0);
4277                                         g_assert (code - buf == 1);
4278                                 }
4279                         }
4280                         break;
4281                 }
4282                 default:
4283                         /* do nothing */
4284                         break;
4285                 }
4286         }
4287
4288         cfg->code_len = (guint8*)code - cfg->native_code;
4289
4290         g_assert (cfg->code_len < cfg->code_size);
4291
4292 }
4293
4294 gboolean lmf_addr_key_inited = FALSE;
4295
4296 #ifdef MONO_SPARC_THR_TLS
4297 thread_key_t lmf_addr_key;
4298 #else
4299 pthread_key_t lmf_addr_key;
4300 #endif
4301
4302 gpointer
4303 mono_arch_get_lmf_addr (void)
4304 {
4305         /* This is perf critical so we bypass the IO layer */
4306         /* The thr_... functions seem to be somewhat faster */
4307 #ifdef MONO_SPARC_THR_TLS
4308         gpointer res;
4309         thr_getspecific (lmf_addr_key, &res);
4310         return res;
4311 #else
4312         return pthread_getspecific (lmf_addr_key);
4313 #endif
4314 }
4315
4316 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
4317
4318 /*
4319  * There seems to be no way to determine stack boundaries under solaris,
4320  * so it's not possible to determine whenever a SIGSEGV is caused by stack
4321  * overflow or not.
4322  */
4323 #error "--with-sigaltstack=yes not supported on solaris"
4324
4325 #endif
4326
4327 void
4328 mono_arch_tls_init (void)
4329 {
4330         MonoJitTlsData *jit_tls;
4331
4332         if (!lmf_addr_key_inited) {
4333                 int res;
4334
4335                 lmf_addr_key_inited = TRUE;
4336
4337 #ifdef MONO_SPARC_THR_TLS
4338                 res = thr_keycreate (&lmf_addr_key, NULL);
4339 #else
4340                 res = pthread_key_create (&lmf_addr_key, NULL);
4341 #endif
4342                 g_assert (res == 0);
4343
4344         }
4345
4346         jit_tls = mono_get_jit_tls ();
4347
4348 #ifdef MONO_SPARC_THR_TLS
4349         thr_setspecific (lmf_addr_key, &jit_tls->lmf);
4350 #else
4351         pthread_setspecific (lmf_addr_key, &jit_tls->lmf);
4352 #endif
4353 }
4354
4355 void
4356 mono_arch_finish_init (void)
4357 {
4358 }
4359
4360 void
4361 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
4362 {
4363 }
4364
4365 MonoInst*
4366 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
4367 {
4368         MonoInst *ins = NULL;
4369
4370         return ins;
4371 }
4372
4373 /*
4374  * mono_arch_get_argument_info:
4375  * @csig:  a method signature
4376  * @param_count: the number of parameters to consider
4377  * @arg_info: an array to store the result infos
4378  *
4379  * Gathers information on parameters such as size, alignment and
4380  * padding. arg_info should be large enought to hold param_count + 1 entries. 
4381  *
4382  * Returns the size of the activation frame.
4383  */
4384 int
4385 mono_arch_get_argument_info (MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
4386 {
4387         int k, align;
4388         CallInfo *cinfo;
4389         ArgInfo *ainfo;
4390
4391         cinfo = get_call_info (NULL, csig, FALSE);
4392
4393         if (csig->hasthis) {
4394                 ainfo = &cinfo->args [0];
4395                 arg_info [0].offset = ARGS_OFFSET - MONO_SPARC_STACK_BIAS + ainfo->offset;
4396         }
4397
4398         for (k = 0; k < param_count; k++) {
4399                 ainfo = &cinfo->args [k + csig->hasthis];
4400
4401                 arg_info [k + 1].offset = ARGS_OFFSET - MONO_SPARC_STACK_BIAS + ainfo->offset;
4402                 arg_info [k + 1].size = mono_type_size (csig->params [k], &align);
4403         }
4404
4405         g_free (cinfo);
4406
4407         return 0;
4408 }
4409
4410 gboolean
4411 mono_arch_print_tree (MonoInst *tree, int arity)
4412 {
4413         return 0;
4414 }
4415
4416 mgreg_t
4417 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
4418 {
4419         /* FIXME: implement */
4420         g_assert_not_reached ();
4421 }
4422
4423 gboolean
4424 mono_arch_opcode_supported (int opcode)
4425 {
4426         return FALSE;
4427 }