2004-05-19 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mono / mini / mini-x86.c
1 /*
2  * mini-x86.c: x86 backend for the Mono code generator
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *   Patrik Torstensson
8  *
9  * (C) 2003 Ximian, Inc.
10  */
11 #include "mini.h"
12 #include <string.h>
13 #include <math.h>
14
15 #include <mono/metadata/appdomain.h>
16 #include <mono/metadata/debug-helpers.h>
17 #include <mono/metadata/profiler-private.h>
18 #include <mono/utils/mono-math.h>
19
20 #include "trace.h"
21 #include "mini-x86.h"
22 #include "inssel.h"
23 #include "cpu-pentium.h"
24
25 static gint lmf_tls_offset = -1;
26
27 #ifdef PLATFORM_WIN32
28 /* Under windows, the default pinvoke calling convention is stdcall */
29 #define CALLCONV_IS_STDCALL(call_conv) (((call_conv) == MONO_CALL_STDCALL) || ((call_conv) == MONO_CALL_DEFAULT))
30 #else
31 #define CALLCONV_IS_STDCALL(call_conv) ((call_conv) == MONO_CALL_STDCALL)
32 #endif
33
34 #define SIGNAL_STACK_SIZE (64 * 1024)
35
36 static gpointer mono_arch_get_lmf_addr (void);
37
38 const char*
39 mono_arch_regname (int reg) {
40         switch (reg) {
41         case X86_EAX: return "%eax";
42         case X86_EBX: return "%ebx";
43         case X86_ECX: return "%ecx";
44         case X86_EDX: return "%edx";
45         case X86_ESP: return "%esp";    case X86_EBP: return "%ebp";
46         case X86_EDI: return "%edi";
47         case X86_ESI: return "%esi";
48         }
49         return "unknown";
50 }
51
52 /*
53  * mono_arch_get_argument_info:
54  * @csig:  a method signature
55  * @param_count: the number of parameters to consider
56  * @arg_info: an array to store the result infos
57  *
58  * Gathers information on parameters such as size, alignment and
59  * padding. arg_info should be large enought to hold param_count + 1 entries. 
60  *
61  * Returns the size of the activation frame.
62  */
63 int
64 mono_arch_get_argument_info (MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
65 {
66         int k, frame_size = 0;
67         int size, align, pad;
68         int offset = 8;
69
70         if (MONO_TYPE_ISSTRUCT (csig->ret)) { 
71                 frame_size += sizeof (gpointer);
72                 offset += 4;
73         }
74
75         arg_info [0].offset = offset;
76
77         if (csig->hasthis) {
78                 frame_size += sizeof (gpointer);
79                 offset += 4;
80         }
81
82         arg_info [0].size = frame_size;
83
84         for (k = 0; k < param_count; k++) {
85                 
86                 if (csig->pinvoke)
87                         size = mono_type_native_stack_size (csig->params [k], &align);
88                 else
89                         size = mono_type_stack_size (csig->params [k], &align);
90
91                 /* ignore alignment for now */
92                 align = 1;
93
94                 frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1); 
95                 arg_info [k].pad = pad;
96                 frame_size += size;
97                 arg_info [k + 1].pad = 0;
98                 arg_info [k + 1].size = size;
99                 offset += pad;
100                 arg_info [k + 1].offset = offset;
101                 offset += size;
102         }
103
104         align = MONO_ARCH_FRAME_ALIGNMENT;
105         frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1);
106         arg_info [k].pad = pad;
107
108         return frame_size;
109 }
110
111 static const guchar cpuid_impl [] = {
112         0x55,                           /* push   %ebp */
113         0x89, 0xe5,                     /* mov    %esp,%ebp */
114         0x53,                           /* push   %ebx */
115         0x8b, 0x45, 0x08,               /* mov    0x8(%ebp),%eax */
116         0x0f, 0xa2,                     /* cpuid   */
117         0x50,                           /* push   %eax */
118         0x8b, 0x45, 0x10,               /* mov    0x10(%ebp),%eax */
119         0x89, 0x18,                     /* mov    %ebx,(%eax) */
120         0x8b, 0x45, 0x14,               /* mov    0x14(%ebp),%eax */
121         0x89, 0x08,                     /* mov    %ecx,(%eax) */
122         0x8b, 0x45, 0x18,               /* mov    0x18(%ebp),%eax */
123         0x89, 0x10,                     /* mov    %edx,(%eax) */
124         0x58,                           /* pop    %eax */
125         0x8b, 0x55, 0x0c,               /* mov    0xc(%ebp),%edx */
126         0x89, 0x02,                     /* mov    %eax,(%edx) */
127         0x5b,                           /* pop    %ebx */
128         0xc9,                           /* leave   */
129         0xc3,                           /* ret     */
130 };
131
132 typedef void (*CpuidFunc) (int id, int* p_eax, int* p_ebx, int* p_ecx, int* p_edx);
133
134 static int 
135 cpuid (int id, int* p_eax, int* p_ebx, int* p_ecx, int* p_edx)
136 {
137         int have_cpuid = 0;
138         __asm__  __volatile__ (
139                 "pushfl\n"
140                 "popl %%eax\n"
141                 "movl %%eax, %%edx\n"
142                 "xorl $0x200000, %%eax\n"
143                 "pushl %%eax\n"
144                 "popfl\n"
145                 "pushfl\n"
146                 "popl %%eax\n"
147                 "xorl %%edx, %%eax\n"
148                 "andl $0x200000, %%eax\n"
149                 "movl %%eax, %0"
150                 : "=r" (have_cpuid)
151                 :
152                 : "%eax", "%edx"
153         );
154
155         if (have_cpuid) {
156                 CpuidFunc func = (CpuidFunc)cpuid_impl;
157                 func (id, p_eax, p_ebx, p_ecx, p_edx);
158                 /*
159                  * We use this approach because of issues with gcc and pic code, see:
160                  * http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7329
161                 __asm__ __volatile__ ("cpuid"
162                         : "=a" (*p_eax), "=b" (*p_ebx), "=c" (*p_ecx), "=d" (*p_edx)
163                         : "a" (id));
164                 */
165                 return 1;
166         }
167         return 0;
168 }
169
170 /*
171  * Initialize the cpu to execute managed code.
172  */
173 void
174 mono_arch_cpu_init (void)
175 {
176         guint16 fpcw;
177
178         /* spec compliance requires running with double precision */
179         __asm__  __volatile__ ("fnstcw %0\n": "=m" (fpcw));
180         fpcw &= ~X86_FPCW_PRECC_MASK;
181         fpcw |= X86_FPCW_PREC_DOUBLE;
182         __asm__  __volatile__ ("fldcw %0\n": : "m" (fpcw));
183         __asm__  __volatile__ ("fnstcw %0\n": "=m" (fpcw));
184
185 }
186
187 /*
188  * This function returns the optimizations supported on this cpu.
189  */
190 guint32
191 mono_arch_cpu_optimizazions (guint32 *exclude_mask)
192 {
193         int eax, ebx, ecx, edx;
194         guint32 opts = 0;
195         
196         *exclude_mask = 0;
197         /* Feature Flags function, flags returned in EDX. */
198         if (cpuid (1, &eax, &ebx, &ecx, &edx)) {
199                 if (edx & (1 << 15)) {
200                         opts |= MONO_OPT_CMOV;
201                         if (edx & 1)
202                                 opts |= MONO_OPT_FCMOV;
203                         else
204                                 *exclude_mask |= MONO_OPT_FCMOV;
205                 } else
206                         *exclude_mask |= MONO_OPT_CMOV;
207         }
208         return opts;
209 }
210
211 static gboolean
212 is_regsize_var (MonoType *t) {
213         if (t->byref)
214                 return TRUE;
215         switch (t->type) {
216         case MONO_TYPE_I4:
217         case MONO_TYPE_U4:
218         case MONO_TYPE_I:
219         case MONO_TYPE_U:
220         case MONO_TYPE_PTR:
221                 return TRUE;
222         case MONO_TYPE_OBJECT:
223         case MONO_TYPE_STRING:
224         case MONO_TYPE_CLASS:
225         case MONO_TYPE_SZARRAY:
226         case MONO_TYPE_ARRAY:
227                 return TRUE;
228         case MONO_TYPE_VALUETYPE:
229                 if (t->data.klass->enumtype)
230                         return is_regsize_var (t->data.klass->enum_basetype);
231                 return FALSE;
232         }
233         return FALSE;
234 }
235
236 GList *
237 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
238 {
239         GList *vars = NULL;
240         int i;
241
242         for (i = 0; i < cfg->num_varinfo; i++) {
243                 MonoInst *ins = cfg->varinfo [i];
244                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
245
246                 /* unused vars */
247                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
248                         continue;
249
250                 if ((ins->flags & (MONO_INST_IS_DEAD|MONO_INST_VOLATILE|MONO_INST_INDIRECT)) || 
251                     (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG))
252                         continue;
253
254                 /* we dont allocate I1 to registers because there is no simply way to sign extend 
255                  * 8bit quantities in caller saved registers on x86 */
256                 if (is_regsize_var (ins->inst_vtype) || (ins->inst_vtype->type == MONO_TYPE_BOOLEAN) || 
257                     (ins->inst_vtype->type == MONO_TYPE_U1) || (ins->inst_vtype->type == MONO_TYPE_U2)||
258                     (ins->inst_vtype->type == MONO_TYPE_I2) || (ins->inst_vtype->type == MONO_TYPE_CHAR)) {
259                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
260                         g_assert (i == vmv->idx);
261                         vars = g_list_prepend (vars, vmv);
262                 }
263         }
264
265         vars = mono_varlist_sort (cfg, vars, 0);
266
267         return vars;
268 }
269
270 GList *
271 mono_arch_get_global_int_regs (MonoCompile *cfg)
272 {
273         GList *regs = NULL;
274
275         /* we can use 3 registers for global allocation */
276         regs = g_list_prepend (regs, (gpointer)X86_EBX);
277         regs = g_list_prepend (regs, (gpointer)X86_ESI);
278         regs = g_list_prepend (regs, (gpointer)X86_EDI);
279
280         return regs;
281 }
282
283 /*
284  * mono_arch_regalloc_cost:
285  *
286  *  Return the cost, in number of memory references, of the action of 
287  * allocating the variable VMV into a register during global register
288  * allocation.
289  */
290 guint32
291 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
292 {
293         MonoInst *ins = cfg->varinfo [vmv->idx];
294
295         if (cfg->method->save_lmf)
296                 /* The register is already saved */
297                 return (ins->opcode == OP_ARG) ? 1 : 0;
298         else
299                 /* push+pop+possible load if it is an argument */
300                 return (ins->opcode == OP_ARG) ? 3 : 2;
301 }
302  
303 /*
304  * Set var information according to the calling convention. X86 version.
305  * The locals var stuff should most likely be split in another method.
306  */
307 void
308 mono_arch_allocate_vars (MonoCompile *m)
309 {
310         MonoMethodSignature *sig;
311         MonoMethodHeader *header;
312         MonoInst *inst;
313         int i, offset, size, align, curinst;
314
315         header = ((MonoMethodNormal *)m->method)->header;
316
317         sig = m->method->signature;
318
319         offset = 8;
320         curinst = 0;
321         if (MONO_TYPE_ISSTRUCT (sig->ret)) {
322                 m->ret->opcode = OP_REGOFFSET;
323                 m->ret->inst_basereg = X86_EBP;
324                 m->ret->inst_offset = offset;
325                 offset += sizeof (gpointer);
326         } else {
327                 /* FIXME: handle long and FP values */
328                 switch (sig->ret->type) {
329                 case MONO_TYPE_VOID:
330                         break;
331                 default:
332                         m->ret->opcode = OP_REGVAR;
333                         m->ret->inst_c0 = X86_EAX;
334                         break;
335                 }
336         }
337         if (sig->hasthis) {
338                 inst = m->varinfo [curinst];
339                 if (inst->opcode != OP_REGVAR) {
340                         inst->opcode = OP_REGOFFSET;
341                         inst->inst_basereg = X86_EBP;
342                 }
343                 inst->inst_offset = offset;
344                 offset += sizeof (gpointer);
345                 curinst++;
346         }
347
348         if (sig->call_convention == MONO_CALL_VARARG) {
349                 m->sig_cookie = offset;
350                 offset += sizeof (gpointer);
351         }
352
353         for (i = 0; i < sig->param_count; ++i) {
354                 inst = m->varinfo [curinst];
355                 if (inst->opcode != OP_REGVAR) {
356                         inst->opcode = OP_REGOFFSET;
357                         inst->inst_basereg = X86_EBP;
358                 }
359                 inst->inst_offset = offset;
360                 size = mono_type_size (sig->params [i], &align);
361                 size += 4 - 1;
362                 size &= ~(4 - 1);
363                 offset += size;
364                 curinst++;
365         }
366
367         offset = 0;
368
369         /* reserve space to save LMF and caller saved registers */
370
371         if (m->method->save_lmf) {
372                 offset += sizeof (MonoLMF);
373         } else {
374                 if (m->used_int_regs & (1 << X86_EBX)) {
375                         offset += 4;
376                 }
377
378                 if (m->used_int_regs & (1 << X86_EDI)) {
379                         offset += 4;
380                 }
381
382                 if (m->used_int_regs & (1 << X86_ESI)) {
383                         offset += 4;
384                 }
385         }
386
387         for (i = curinst; i < m->num_varinfo; ++i) {
388                 inst = m->varinfo [i];
389
390                 if ((inst->flags & MONO_INST_IS_DEAD) || inst->opcode == OP_REGVAR)
391                         continue;
392
393                 /* inst->unused indicates native sized value types, this is used by the
394                 * pinvoke wrappers when they call functions returning structure */
395                 if (inst->unused && MONO_TYPE_ISSTRUCT (inst->inst_vtype) && inst->inst_vtype->type != MONO_TYPE_TYPEDBYREF)
396                         size = mono_class_native_size (inst->inst_vtype->data.klass, &align);
397                 else
398                         size = mono_type_size (inst->inst_vtype, &align);
399
400                 offset += size;
401                 offset += align - 1;
402                 offset &= ~(align - 1);
403                 inst->opcode = OP_REGOFFSET;
404                 inst->inst_basereg = X86_EBP;
405                 inst->inst_offset = -offset;
406                 //g_print ("allocating local %d to %d\n", i, -offset);
407         }
408         offset += (MONO_ARCH_FRAME_ALIGNMENT - 1);
409         offset &= ~(MONO_ARCH_FRAME_ALIGNMENT - 1);
410
411         /* change sign? */
412         m->stack_offset = -offset;
413 }
414
415 /* Fixme: we need an alignment solution for enter_method and mono_arch_call_opcode,
416  * currently alignment in mono_arch_call_opcode is computed without arch_get_argument_info 
417  */
418
419 /* 
420  * take the arguments and generate the arch-specific
421  * instructions to properly call the function in call.
422  * This includes pushing, moving arguments to the right register
423  * etc.
424  * Issue: who does the spilling if needed, and when?
425  */
426 MonoCallInst*
427 mono_arch_call_opcode (MonoCompile *cfg, MonoBasicBlock* bb, MonoCallInst *call, int is_virtual) {
428         MonoInst *arg, *in;
429         MonoMethodSignature *sig;
430         int i, n, stack_size, type;
431         MonoType *ptype;
432
433         stack_size = 0;
434         /* add the vararg cookie before the non-implicit args */
435         if (call->signature->call_convention == MONO_CALL_VARARG) {
436                 MonoInst *sig_arg;
437                 /* FIXME: Add support for signature tokens to AOT */
438                 cfg->disable_aot = TRUE;
439                 MONO_INST_NEW (cfg, arg, OP_OUTARG);
440                 MONO_INST_NEW (cfg, sig_arg, OP_ICONST);
441                 sig_arg->inst_p0 = call->signature;
442                 arg->inst_left = sig_arg;
443                 arg->type = STACK_PTR;
444                 /* prepend, so they get reversed */
445                 arg->next = call->out_args;
446                 call->out_args = arg;
447                 stack_size += sizeof (gpointer);
448         }
449         sig = call->signature;
450         n = sig->param_count + sig->hasthis;
451
452         if (sig->ret && MONO_TYPE_ISSTRUCT (sig->ret))
453                 stack_size += sizeof (gpointer);
454         for (i = 0; i < n; ++i) {
455                 if (is_virtual && i == 0) {
456                         /* the argument will be attached to the call instrucion */
457                         in = call->args [i];
458                         stack_size += 4;
459                 } else {
460                         MONO_INST_NEW (cfg, arg, OP_OUTARG);
461                         in = call->args [i];
462                         arg->cil_code = in->cil_code;
463                         arg->inst_left = in;
464                         arg->type = in->type;
465                         /* prepend, so they get reversed */
466                         arg->next = call->out_args;
467                         call->out_args = arg;
468                         if (i >= sig->hasthis) {
469                                 ptype = sig->params [i - sig->hasthis];
470                                 if (ptype->byref)
471                                         type = MONO_TYPE_U;
472                                 else
473                                         type = ptype->type;
474 handle_enum:
475                                 /* FIXME: validate arguments... */
476                                 switch (type) {
477                                 case MONO_TYPE_I:
478                                 case MONO_TYPE_U:
479                                 case MONO_TYPE_BOOLEAN:
480                                 case MONO_TYPE_CHAR:
481                                 case MONO_TYPE_I1:
482                                 case MONO_TYPE_U1:
483                                 case MONO_TYPE_I2:
484                                 case MONO_TYPE_U2:
485                                 case MONO_TYPE_I4:
486                                 case MONO_TYPE_U4:
487                                 case MONO_TYPE_STRING:
488                                 case MONO_TYPE_CLASS:
489                                 case MONO_TYPE_OBJECT:
490                                 case MONO_TYPE_PTR:
491                                 case MONO_TYPE_FNPTR:
492                                 case MONO_TYPE_ARRAY:
493                                 case MONO_TYPE_SZARRAY:
494                                         stack_size += 4;
495                                         break;
496                                 case MONO_TYPE_I8:
497                                 case MONO_TYPE_U8:
498                                         stack_size += 8;
499                                         break;
500                                 case MONO_TYPE_R4:
501                                         stack_size += 4;
502                                         arg->opcode = OP_OUTARG_R4;
503                                         break;
504                                 case MONO_TYPE_R8:
505                                         stack_size += 8;
506                                         arg->opcode = OP_OUTARG_R8;
507                                         break;
508                                 case MONO_TYPE_VALUETYPE:
509                                         if (MONO_TYPE_ISSTRUCT (ptype)) {
510                                                 int size;
511                                                 if (sig->pinvoke) 
512                                                         size = mono_type_native_stack_size (&in->klass->byval_arg, NULL);
513                                                 else 
514                                                         size = mono_type_stack_size (&in->klass->byval_arg, NULL);
515
516                                                 stack_size += size;
517                                                 arg->opcode = OP_OUTARG_VT;
518                                                 arg->klass = in->klass;
519                                                 arg->unused = sig->pinvoke;
520                                                 arg->inst_imm = size; 
521                                         } else {
522                                                 type = ptype->data.klass->enum_basetype->type;
523                                                 goto handle_enum;
524                                         }
525                                         break;
526                                 case MONO_TYPE_TYPEDBYREF:
527                                         stack_size += sizeof (MonoTypedRef);
528                                         arg->opcode = OP_OUTARG_VT;
529                                         arg->klass = in->klass;
530                                         arg->unused = sig->pinvoke;
531                                         arg->inst_imm = sizeof (MonoTypedRef); 
532                                         break;
533                                 case MONO_TYPE_GENERICINST:
534                                         type = ptype->data.generic_inst->generic_type->type;
535                                         goto handle_enum;
536
537                                 default:
538                                         g_error ("unknown type 0x%02x in mono_arch_call_opcode\n", type);
539                                 }
540                         } else {
541                                 /* the this argument */
542                                 stack_size += 4;
543                         }
544                 }
545         }
546         /* if the function returns a struct, the called method already does a ret $0x4 */
547         if (sig->ret && MONO_TYPE_ISSTRUCT (sig->ret))
548                 stack_size -= 4;
549         call->stack_usage = stack_size;
550         /* 
551          * should set more info in call, such as the stack space
552          * used by the args that needs to be added back to esp
553          */
554
555         return call;
556 }
557
558 /*
559  * Allow tracing to work with this interface (with an optional argument)
560  */
561
562 /*
563  * This may be needed on some archs or for debugging support.
564  */
565 void
566 mono_arch_instrument_mem_needs (MonoMethod *method, int *stack, int *code)
567 {
568         /* no stack room needed now (may be needed for FASTCALL-trace support) */
569         *stack = 0;
570         /* split prolog-epilog requirements? */
571         *code = 50; /* max bytes needed: check this number */
572 }
573
574 void*
575 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
576 {
577         guchar *code = p;
578
579         /* if some args are passed in registers, we need to save them here */
580         x86_push_reg (code, X86_EBP);
581         mono_add_patch_info (cfg, code-cfg->native_code, MONO_PATCH_INFO_METHODCONST, cfg->method);
582         x86_push_imm (code, cfg->method);
583         mono_add_patch_info (cfg, code-cfg->native_code, MONO_PATCH_INFO_ABS, func);
584         x86_call_code (code, 0);
585         x86_alu_reg_imm (code, X86_ADD, X86_ESP, 8);
586
587         return code;
588 }
589
590 enum {
591         SAVE_NONE,
592         SAVE_STRUCT,
593         SAVE_EAX,
594         SAVE_EAX_EDX,
595         SAVE_FP
596 };
597
598 void*
599 mono_arch_instrument_epilog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
600 {
601         guchar *code = p;
602         int arg_size = 0, save_mode = SAVE_NONE;
603         MonoMethod *method = cfg->method;
604         int rtype = method->signature->ret->type;
605         
606 handle_enum:
607         switch (rtype) {
608         case MONO_TYPE_VOID:
609                 /* special case string .ctor icall */
610                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
611                         save_mode = SAVE_EAX;
612                 else
613                         save_mode = SAVE_NONE;
614                 break;
615         case MONO_TYPE_I8:
616         case MONO_TYPE_U8:
617                 save_mode = SAVE_EAX_EDX;
618                 break;
619         case MONO_TYPE_R4:
620         case MONO_TYPE_R8:
621                 save_mode = SAVE_FP;
622                 break;
623         case MONO_TYPE_VALUETYPE:
624                 if (method->signature->ret->data.klass->enumtype) {
625                         rtype = method->signature->ret->data.klass->enum_basetype->type;
626                         goto handle_enum;
627                 }
628                 save_mode = SAVE_STRUCT;
629                 break;
630         default:
631                 save_mode = SAVE_EAX;
632                 break;
633         }
634
635         switch (save_mode) {
636         case SAVE_EAX_EDX:
637                 x86_push_reg (code, X86_EDX);
638                 x86_push_reg (code, X86_EAX);
639                 if (enable_arguments) {
640                         x86_push_reg (code, X86_EDX);
641                         x86_push_reg (code, X86_EAX);
642                         arg_size = 8;
643                 }
644                 break;
645         case SAVE_EAX:
646                 x86_push_reg (code, X86_EAX);
647                 if (enable_arguments) {
648                         x86_push_reg (code, X86_EAX);
649                         arg_size = 4;
650                 }
651                 break;
652         case SAVE_FP:
653                 x86_alu_reg_imm (code, X86_SUB, X86_ESP, 8);
654                 x86_fst_membase (code, X86_ESP, 0, TRUE, TRUE);
655                 if (enable_arguments) {
656                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 8);
657                         x86_fst_membase (code, X86_ESP, 0, TRUE, TRUE);
658                         arg_size = 8;
659                 }
660                 break;
661         case SAVE_STRUCT:
662                 if (enable_arguments) {
663                         x86_push_membase (code, X86_EBP, 8);
664                         arg_size = 4;
665                 }
666                 break;
667         case SAVE_NONE:
668         default:
669                 break;
670         }
671
672
673         mono_add_patch_info (cfg, code-cfg->native_code, MONO_PATCH_INFO_METHODCONST, method);
674         x86_push_imm (code, method);
675         mono_add_patch_info (cfg, code-cfg->native_code, MONO_PATCH_INFO_ABS, func);
676         x86_call_code (code, 0);
677         x86_alu_reg_imm (code, X86_ADD, X86_ESP, arg_size + 4);
678
679         switch (save_mode) {
680         case SAVE_EAX_EDX:
681                 x86_pop_reg (code, X86_EAX);
682                 x86_pop_reg (code, X86_EDX);
683                 break;
684         case SAVE_EAX:
685                 x86_pop_reg (code, X86_EAX);
686                 break;
687         case SAVE_FP:
688                 x86_fld_membase (code, X86_ESP, 0, TRUE);
689                 x86_alu_reg_imm (code, X86_ADD, X86_ESP, 8);
690                 break;
691         case SAVE_NONE:
692         default:
693                 break;
694         }
695
696         return code;
697 }
698
699 #define EMIT_COND_BRANCH(ins,cond,sign) \
700 if (ins->flags & MONO_INST_BRLABEL) { \
701         if (ins->inst_i0->inst_c0) { \
702                 x86_branch (code, cond, cfg->native_code + ins->inst_i0->inst_c0, sign); \
703         } else { \
704                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_LABEL, ins->inst_i0); \
705                 x86_branch32 (code, cond, 0, sign); \
706         } \
707 } else { \
708         if (ins->inst_true_bb->native_offset) { \
709                 x86_branch (code, cond, cfg->native_code + ins->inst_true_bb->native_offset, sign); \
710         } else { \
711                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb); \
712                 if ((cfg->opt & MONO_OPT_BRANCH) && \
713                     x86_is_imm8 (ins->inst_true_bb->max_offset - cpos)) \
714                         x86_branch8 (code, cond, 0, sign); \
715                 else \
716                         x86_branch32 (code, cond, 0, sign); \
717         } \
718 }
719
720 /* emit an exception if condition is fail */
721 #define EMIT_COND_SYSTEM_EXCEPTION(cond,signed,exc_name)            \
722         do {                                                        \
723                 mono_add_patch_info (cfg, code - cfg->native_code,   \
724                                     MONO_PATCH_INFO_EXC, exc_name);  \
725                 x86_branch32 (code, cond, 0, signed);               \
726         } while (0); 
727
728 #define EMIT_FPCOMPARE(code) do { \
729         x86_fcompp (code); \
730         x86_fnstsw (code); \
731 } while (0); 
732
733 /* FIXME: Add more instructions */
734 #define INST_IGNORES_CFLAGS(ins) (((ins)->opcode == CEE_BR) || ((ins)->opcode == OP_STORE_MEMBASE_IMM))
735
736 static void
737 peephole_pass (MonoCompile *cfg, MonoBasicBlock *bb)
738 {
739         MonoInst *ins, *last_ins = NULL;
740         ins = bb->code;
741
742         while (ins) {
743
744                 switch (ins->opcode) {
745                 case OP_ICONST:
746                         /* reg = 0 -> XOR (reg, reg) */
747                         /* XOR sets cflags on x86, so we cant do it always */
748                         if (ins->inst_c0 == 0 && ins->next && INST_IGNORES_CFLAGS (ins->next)) {
749                                 ins->opcode = CEE_XOR;
750                                 ins->sreg1 = ins->dreg;
751                                 ins->sreg2 = ins->dreg;
752                         }
753                         break;
754                 case OP_MUL_IMM: 
755                         /* remove unnecessary multiplication with 1 */
756                         if (ins->inst_imm == 1) {
757                                 if (ins->dreg != ins->sreg1) {
758                                         ins->opcode = OP_MOVE;
759                                 } else {
760                                         last_ins->next = ins->next;
761                                         ins = ins->next;
762                                         continue;
763                                 }
764                         }
765                         break;
766                 case OP_COMPARE_IMM:
767                         /* OP_COMPARE_IMM (reg, 0) 
768                          * --> 
769                          * OP_X86_TEST_NULL (reg) 
770                          */
771                         if (ins->inst_imm == 0 && ins->next &&
772                             (ins->next->opcode == CEE_BEQ || ins->next->opcode == CEE_BNE_UN ||
773                              ins->next->opcode == OP_CEQ)) {
774                                 ins->opcode = OP_X86_TEST_NULL;
775                         }     
776                         break;
777                 case OP_X86_COMPARE_MEMBASE_IMM:
778                         /* 
779                          * OP_STORE_MEMBASE_REG reg, offset(basereg)
780                          * OP_X86_COMPARE_MEMBASE_IMM offset(basereg), imm
781                          * -->
782                          * OP_STORE_MEMBASE_REG reg, offset(basereg)
783                          * OP_COMPARE_IMM reg, imm
784                          *
785                          * Note: if imm = 0 then OP_COMPARE_IMM replaced with OP_X86_TEST_NULL
786                          */
787                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG) &&
788                             ins->inst_basereg == last_ins->inst_destbasereg &&
789                             ins->inst_offset == last_ins->inst_offset) {
790                                         ins->opcode = OP_COMPARE_IMM;
791                                         ins->sreg1 = last_ins->sreg1;
792
793                                         /* check if we can remove cmp reg,0 with test null */
794                                         if (ins->inst_imm == 0 && ins->next &&
795                                                 (ins->next->opcode == CEE_BEQ || ins->next->opcode == CEE_BNE_UN ||
796                                                 ins->next->opcode == OP_CEQ)) {
797                                                 ins->opcode = OP_X86_TEST_NULL;
798                                         }     
799                                 }
800
801                         break;
802                 case OP_LOAD_MEMBASE:
803                 case OP_LOADI4_MEMBASE:
804                         /* 
805                          * Note: if reg1 = reg2 the load op is removed
806                          *
807                          * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
808                          * OP_LOAD_MEMBASE offset(basereg), reg2
809                          * -->
810                          * OP_STORE_MEMBASE_REG reg1, offset(basereg)
811                          * OP_MOVE reg1, reg2
812                          */
813                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG 
814                                          || last_ins->opcode == OP_STORE_MEMBASE_REG) &&
815                             ins->inst_basereg == last_ins->inst_destbasereg &&
816                             ins->inst_offset == last_ins->inst_offset) {
817                                 if (ins->dreg == last_ins->sreg1) {
818                                         last_ins->next = ins->next;                             
819                                         ins = ins->next;                                
820                                         continue;
821                                 } else {
822                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
823                                         ins->opcode = OP_MOVE;
824                                         ins->sreg1 = last_ins->sreg1;
825                                 }
826
827                         /* 
828                          * Note: reg1 must be different from the basereg in the second load
829                          * Note: if reg1 = reg2 is equal then second load is removed
830                          *
831                          * OP_LOAD_MEMBASE offset(basereg), reg1
832                          * OP_LOAD_MEMBASE offset(basereg), reg2
833                          * -->
834                          * OP_LOAD_MEMBASE offset(basereg), reg1
835                          * OP_MOVE reg1, reg2
836                          */
837                         } if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
838                                            || last_ins->opcode == OP_LOAD_MEMBASE) &&
839                               ins->inst_basereg != last_ins->dreg &&
840                               ins->inst_basereg == last_ins->inst_basereg &&
841                               ins->inst_offset == last_ins->inst_offset) {
842
843                                 if (ins->dreg == last_ins->dreg) {
844                                         last_ins->next = ins->next;                             
845                                         ins = ins->next;                                
846                                         continue;
847                                 } else {
848                                         ins->opcode = OP_MOVE;
849                                         ins->sreg1 = last_ins->dreg;
850                                 }
851
852                                 //g_assert_not_reached ();
853
854 #if 0
855                         /* 
856                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
857                          * OP_LOAD_MEMBASE offset(basereg), reg
858                          * -->
859                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
860                          * OP_ICONST reg, imm
861                          */
862                         } else if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
863                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
864                                    ins->inst_basereg == last_ins->inst_destbasereg &&
865                                    ins->inst_offset == last_ins->inst_offset) {
866                                 //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
867                                 ins->opcode = OP_ICONST;
868                                 ins->inst_c0 = last_ins->inst_imm;
869                                 g_assert_not_reached (); // check this rule
870 #endif
871                         }
872                         break;
873                 case OP_LOADU1_MEMBASE:
874                 case OP_LOADI1_MEMBASE:
875                         /* 
876                          * Note: if reg1 = reg2 the load op is removed
877                          *
878                          * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
879                          * OP_LOAD_MEMBASE offset(basereg), reg2
880                          * -->
881                          * OP_STORE_MEMBASE_REG reg1, offset(basereg)
882                          * OP_MOVE reg1, reg2
883                          */
884                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
885                                         ins->inst_basereg == last_ins->inst_destbasereg &&
886                                         ins->inst_offset == last_ins->inst_offset) {
887                                 if (ins->dreg == last_ins->sreg1) {
888                                         last_ins->next = ins->next;                             
889                                         ins = ins->next;                                
890                                         continue;
891                                 } else {
892                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
893                                         ins->opcode = OP_MOVE;
894                                         ins->sreg1 = last_ins->sreg1;
895                                 }
896                         }
897                         break;
898                 case OP_LOADU2_MEMBASE:
899                 case OP_LOADI2_MEMBASE:
900                         /* 
901                          * Note: if reg1 = reg2 the load op is removed
902                          *
903                          * OP_STORE_MEMBASE_REG reg1, offset(basereg) 
904                          * OP_LOAD_MEMBASE offset(basereg), reg2
905                          * -->
906                          * OP_STORE_MEMBASE_REG reg1, offset(basereg)
907                          * OP_MOVE reg1, reg2
908                          */
909                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
910                                         ins->inst_basereg == last_ins->inst_destbasereg &&
911                                         ins->inst_offset == last_ins->inst_offset) {
912                                 if (ins->dreg == last_ins->sreg1) {
913                                         last_ins->next = ins->next;                             
914                                         ins = ins->next;                                
915                                         continue;
916                                 } else {
917                                         //static int c = 0; printf ("MATCHX %s %d\n", cfg->method->name,c++);
918                                         ins->opcode = OP_MOVE;
919                                         ins->sreg1 = last_ins->sreg1;
920                                 }
921                         }
922                         break;
923                 case CEE_CONV_I4:
924                 case CEE_CONV_U4:
925                 case OP_MOVE:
926                         /*
927                          * Removes:
928                          *
929                          * OP_MOVE reg, reg 
930                          */
931                         if (ins->dreg == ins->sreg1) {
932                                 if (last_ins)
933                                         last_ins->next = ins->next;                             
934                                 ins = ins->next;
935                                 continue;
936                         }
937                         /* 
938                          * Removes:
939                          *
940                          * OP_MOVE sreg, dreg 
941                          * OP_MOVE dreg, sreg
942                          */
943                         if (last_ins && last_ins->opcode == OP_MOVE &&
944                             ins->sreg1 == last_ins->dreg &&
945                             ins->dreg == last_ins->sreg1) {
946                                 last_ins->next = ins->next;                             
947                                 ins = ins->next;                                
948                                 continue;
949                         }
950                         break;
951                 }
952                 last_ins = ins;
953                 ins = ins->next;
954         }
955         bb->last_ins = last_ins;
956 }
957
958 static const int 
959 branch_cc_table [] = {
960         X86_CC_EQ, X86_CC_GE, X86_CC_GT, X86_CC_LE, X86_CC_LT,
961         X86_CC_NE, X86_CC_GE, X86_CC_GT, X86_CC_LE, X86_CC_LT,
962         X86_CC_O, X86_CC_NO, X86_CC_C, X86_CC_NC
963 };
964
965 #define DEBUG(a) if (cfg->verbose_level > 1) a
966 //#define DEBUG(a)
967
968 /*
969  * returns the offset used by spillvar. It allocates a new
970  * spill variable if necessary. 
971  */
972 static int
973 mono_spillvar_offset (MonoCompile *cfg, int spillvar)
974 {
975         MonoSpillInfo **si, *info;
976         int i = 0;
977
978         si = &cfg->spill_info; 
979         
980         while (i <= spillvar) {
981
982                 if (!*si) {
983                         *si = info = mono_mempool_alloc (cfg->mempool, sizeof (MonoSpillInfo));
984                         info->next = NULL;
985                         cfg->stack_offset -= sizeof (gpointer);
986                         info->offset = cfg->stack_offset;
987                 }
988
989                 if (i == spillvar)
990                         return (*si)->offset;
991
992                 i++;
993                 si = &(*si)->next;
994         }
995
996         g_assert_not_reached ();
997         return 0;
998 }
999
1000 /*
1001  * returns the offset used by spillvar. It allocates a new
1002  * spill float variable if necessary. 
1003  * (same as mono_spillvar_offset but for float)
1004  */
1005 static int
1006 mono_spillvar_offset_float (MonoCompile *cfg, int spillvar)
1007 {
1008         MonoSpillInfo **si, *info;
1009         int i = 0;
1010
1011         si = &cfg->spill_info_float; 
1012         
1013         while (i <= spillvar) {
1014
1015                 if (!*si) {
1016                         *si = info = mono_mempool_alloc (cfg->mempool, sizeof (MonoSpillInfo));
1017                         info->next = NULL;
1018                         cfg->stack_offset -= sizeof (double);
1019                         info->offset = cfg->stack_offset;
1020                 }
1021
1022                 if (i == spillvar)
1023                         return (*si)->offset;
1024
1025                 i++;
1026                 si = &(*si)->next;
1027         }
1028
1029         g_assert_not_reached ();
1030         return 0;
1031 }
1032
1033 /*
1034  * Creates a store for spilled floating point items
1035  */
1036 static MonoInst*
1037 create_spilled_store_float (MonoCompile *cfg, int spill, int reg, MonoInst *ins)
1038 {
1039         MonoInst *store;
1040         MONO_INST_NEW (cfg, store, OP_STORER8_MEMBASE_REG);
1041         store->sreg1 = reg;
1042         store->inst_destbasereg = X86_EBP;
1043         store->inst_offset = mono_spillvar_offset_float (cfg, spill);
1044
1045         DEBUG (g_print ("SPILLED FLOAT STORE (%d at 0x%08x(%%sp)) (from %d)\n", spill, store->inst_offset, reg));
1046         return store;
1047 }
1048
1049 /*
1050  * Creates a load for spilled floating point items 
1051  */
1052 static MonoInst*
1053 create_spilled_load_float (MonoCompile *cfg, int spill, int reg, MonoInst *ins)
1054 {
1055         MonoInst *load;
1056         MONO_INST_NEW (cfg, load, OP_LOADR8_SPILL_MEMBASE);
1057         load->dreg = reg;
1058         load->inst_basereg = X86_EBP;
1059         load->inst_offset = mono_spillvar_offset_float (cfg, spill);
1060
1061         DEBUG (g_print ("SPILLED FLOAT LOAD (%d at 0x%08x(%%sp)) (from %d)\n", spill, load->inst_offset, reg));
1062         return load;
1063 }
1064
1065 #define reg_is_freeable(r) ((r) >= 0 && (r) <= 7 && X86_IS_CALLEE ((r)))
1066
1067 typedef struct {
1068         int born_in;
1069         int killed_in;
1070         int last_use;
1071         int prev_use;
1072         int flags;              /* used to track fp spill/load */
1073 } RegTrack;
1074
1075 static const char*const * ins_spec = pentium_desc;
1076
1077 static void
1078 print_ins (int i, MonoInst *ins)
1079 {
1080         const char *spec = ins_spec [ins->opcode];
1081         g_print ("\t%-2d %s", i, mono_inst_name (ins->opcode));
1082         if (spec [MONO_INST_DEST]) {
1083                 if (ins->dreg >= MONO_MAX_IREGS)
1084                         g_print (" R%d <-", ins->dreg);
1085                 else
1086                         g_print (" %s <-", mono_arch_regname (ins->dreg));
1087         }
1088         if (spec [MONO_INST_SRC1]) {
1089                 if (ins->sreg1 >= MONO_MAX_IREGS)
1090                         g_print (" R%d", ins->sreg1);
1091                 else
1092                         g_print (" %s", mono_arch_regname (ins->sreg1));
1093         }
1094         if (spec [MONO_INST_SRC2]) {
1095                 if (ins->sreg2 >= MONO_MAX_IREGS)
1096                         g_print (" R%d", ins->sreg2);
1097                 else
1098                         g_print (" %s", mono_arch_regname (ins->sreg2));
1099         }
1100         if (spec [MONO_INST_CLOB])
1101                 g_print (" clobbers: %c", spec [MONO_INST_CLOB]);
1102         g_print ("\n");
1103 }
1104
1105 static void
1106 print_regtrack (RegTrack *t, int num)
1107 {
1108         int i;
1109         char buf [32];
1110         const char *r;
1111         
1112         for (i = 0; i < num; ++i) {
1113                 if (!t [i].born_in)
1114                         continue;
1115                 if (i >= MONO_MAX_IREGS) {
1116                         g_snprintf (buf, sizeof(buf), "R%d", i);
1117                         r = buf;
1118                 } else
1119                         r = mono_arch_regname (i);
1120                 g_print ("liveness: %s [%d - %d]\n", r, t [i].born_in, t[i].last_use);
1121         }
1122 }
1123
1124 typedef struct InstList InstList;
1125
1126 struct InstList {
1127         InstList *prev;
1128         InstList *next;
1129         MonoInst *data;
1130 };
1131
1132 static inline InstList*
1133 inst_list_prepend (MonoMemPool *pool, InstList *list, MonoInst *data)
1134 {
1135         InstList *item = mono_mempool_alloc (pool, sizeof (InstList));
1136         item->data = data;
1137         item->prev = NULL;
1138         item->next = list;
1139         if (list)
1140                 list->prev = item;
1141         return item;
1142 }
1143
1144 /*
1145  * Force the spilling of the variable in the symbolic register 'reg'.
1146  */
1147 static int
1148 get_register_force_spilling (MonoCompile *cfg, InstList *item, MonoInst *ins, int reg)
1149 {
1150         MonoInst *load;
1151         int i, sel, spill;
1152         
1153         sel = cfg->rs->iassign [reg];
1154         /*i = cfg->rs->isymbolic [sel];
1155         g_assert (i == reg);*/
1156         i = reg;
1157         spill = ++cfg->spill_count;
1158         cfg->rs->iassign [i] = -spill - 1;
1159         mono_regstate_free_int (cfg->rs, sel);
1160         /* we need to create a spill var and insert a load to sel after the current instruction */
1161         MONO_INST_NEW (cfg, load, OP_LOAD_MEMBASE);
1162         load->dreg = sel;
1163         load->inst_basereg = X86_EBP;
1164         load->inst_offset = mono_spillvar_offset (cfg, spill);
1165         if (item->prev) {
1166                 while (ins->next != item->prev->data)
1167                         ins = ins->next;
1168         }
1169         load->next = ins->next;
1170         ins->next = load;
1171         DEBUG (g_print ("SPILLED LOAD (%d at 0x%08x(%%ebp)) R%d (freed %s)\n", spill, load->inst_offset, i, mono_arch_regname (sel)));
1172         i = mono_regstate_alloc_int (cfg->rs, 1 << sel);
1173         g_assert (i == sel);
1174
1175         return sel;
1176 }
1177
1178 static int
1179 get_register_spilling (MonoCompile *cfg, InstList *item, MonoInst *ins, guint32 regmask, int reg)
1180 {
1181         MonoInst *load;
1182         int i, sel, spill;
1183
1184         DEBUG (g_print ("\tstart regmask to assign R%d: 0x%08x (R%d <- R%d R%d)\n", reg, regmask, ins->dreg, ins->sreg1, ins->sreg2));
1185         /* exclude the registers in the current instruction */
1186         if (reg != ins->sreg1 && (reg_is_freeable (ins->sreg1) || (ins->sreg1 >= MONO_MAX_IREGS && cfg->rs->iassign [ins->sreg1] >= 0))) {
1187                 if (ins->sreg1 >= MONO_MAX_IREGS)
1188                         regmask &= ~ (1 << cfg->rs->iassign [ins->sreg1]);
1189                 else
1190                         regmask &= ~ (1 << ins->sreg1);
1191                 DEBUG (g_print ("\t\texcluding sreg1 %s\n", mono_arch_regname (ins->sreg1)));
1192         }
1193         if (reg != ins->sreg2 && (reg_is_freeable (ins->sreg2) || (ins->sreg2 >= MONO_MAX_IREGS && cfg->rs->iassign [ins->sreg2] >= 0))) {
1194                 if (ins->sreg2 >= MONO_MAX_IREGS)
1195                         regmask &= ~ (1 << cfg->rs->iassign [ins->sreg2]);
1196                 else
1197                         regmask &= ~ (1 << ins->sreg2);
1198                 DEBUG (g_print ("\t\texcluding sreg2 %s %d\n", mono_arch_regname (ins->sreg2), ins->sreg2));
1199         }
1200         if (reg != ins->dreg && reg_is_freeable (ins->dreg)) {
1201                 regmask &= ~ (1 << ins->dreg);
1202                 DEBUG (g_print ("\t\texcluding dreg %s\n", mono_arch_regname (ins->dreg)));
1203         }
1204
1205         DEBUG (g_print ("\t\tavailable regmask: 0x%08x\n", regmask));
1206         g_assert (regmask); /* need at least a register we can free */
1207         sel = -1;
1208         /* we should track prev_use and spill the register that's farther */
1209         for (i = 0; i < MONO_MAX_IREGS; ++i) {
1210                 if (regmask & (1 << i)) {
1211                         sel = i;
1212                         DEBUG (g_print ("\t\tselected register %s has assignment %d\n", mono_arch_regname (sel), cfg->rs->iassign [sel]));
1213                         break;
1214                 }
1215         }
1216         i = cfg->rs->isymbolic [sel];
1217         spill = ++cfg->spill_count;
1218         cfg->rs->iassign [i] = -spill - 1;
1219         mono_regstate_free_int (cfg->rs, sel);
1220         /* we need to create a spill var and insert a load to sel after the current instruction */
1221         MONO_INST_NEW (cfg, load, OP_LOAD_MEMBASE);
1222         load->dreg = sel;
1223         load->inst_basereg = X86_EBP;
1224         load->inst_offset = mono_spillvar_offset (cfg, spill);
1225         if (item->prev) {
1226                 while (ins->next != item->prev->data)
1227                         ins = ins->next;
1228         }
1229         load->next = ins->next;
1230         ins->next = load;
1231         DEBUG (g_print ("\tSPILLED LOAD (%d at 0x%08x(%%ebp)) R%d (freed %s)\n", spill, load->inst_offset, i, mono_arch_regname (sel)));
1232         i = mono_regstate_alloc_int (cfg->rs, 1 << sel);
1233         g_assert (i == sel);
1234         
1235         return sel;
1236 }
1237
1238 static MonoInst*
1239 create_copy_ins (MonoCompile *cfg, int dest, int src, MonoInst *ins)
1240 {
1241         MonoInst *copy;
1242         MONO_INST_NEW (cfg, copy, OP_MOVE);
1243         copy->dreg = dest;
1244         copy->sreg1 = src;
1245         if (ins) {
1246                 copy->next = ins->next;
1247                 ins->next = copy;
1248         }
1249         DEBUG (g_print ("\tforced copy from %s to %s\n", mono_arch_regname (src), mono_arch_regname (dest)));
1250         return copy;
1251 }
1252
1253 static MonoInst*
1254 create_spilled_store (MonoCompile *cfg, int spill, int reg, int prev_reg, MonoInst *ins)
1255 {
1256         MonoInst *store;
1257         MONO_INST_NEW (cfg, store, OP_STORE_MEMBASE_REG);
1258         store->sreg1 = reg;
1259         store->inst_destbasereg = X86_EBP;
1260         store->inst_offset = mono_spillvar_offset (cfg, spill);
1261         if (ins) {
1262                 store->next = ins->next;
1263                 ins->next = store;
1264         }
1265         DEBUG (g_print ("\tSPILLED STORE (%d at 0x%08x(%%ebp)) R%d (from %s)\n", spill, store->inst_offset, prev_reg, mono_arch_regname (reg)));
1266         return store;
1267 }
1268
1269 static void
1270 insert_before_ins (MonoInst *ins, InstList *item, MonoInst* to_insert)
1271 {
1272         MonoInst *prev;
1273         if (item->next) {
1274                 prev = item->next->data;
1275
1276                 while (prev->next != ins)
1277                         prev = prev->next;
1278                 to_insert->next = ins;
1279                 prev->next = to_insert;
1280         } else {
1281                 to_insert->next = ins;
1282         }
1283         /* 
1284          * needed otherwise in the next instruction we can add an ins to the 
1285          * end and that would get past this instruction.
1286          */
1287         item->data = to_insert; 
1288 }
1289
1290
1291 #if  0
1292 static int
1293 alloc_int_reg (MonoCompile *cfg, InstList *curinst, MonoInst *ins, int sym_reg, guint32 allow_mask)
1294 {
1295         int val = cfg->rs->iassign [sym_reg];
1296         if (val < 0) {
1297                 int spill = 0;
1298                 if (val < -1) {
1299                         /* the register gets spilled after this inst */
1300                         spill = -val -1;
1301                 }
1302                 val = mono_regstate_alloc_int (cfg->rs, allow_mask);
1303                 if (val < 0)
1304                         val = get_register_spilling (cfg, curinst, ins, allow_mask, sym_reg);
1305                 cfg->rs->iassign [sym_reg] = val;
1306                 /* add option to store before the instruction for src registers */
1307                 if (spill)
1308                         create_spilled_store (cfg, spill, val, sym_reg, ins);
1309         }
1310         cfg->rs->isymbolic [val] = sym_reg;
1311         return val;
1312 }
1313 #endif
1314
1315 /* flags used in reginfo->flags */
1316 #define MONO_X86_FP_NEEDS_LOAD_SPILL    1
1317 #define MONO_X86_FP_NEEDS_SPILL                 2
1318 #define MONO_X86_FP_NEEDS_LOAD                  4
1319
1320 /*#include "cprop.c"*/
1321
1322 /*
1323  * Local register allocation.
1324  * We first scan the list of instructions and we save the liveness info of
1325  * each register (when the register is first used, when it's value is set etc.).
1326  * We also reverse the list of instructions (in the InstList list) because assigning
1327  * registers backwards allows for more tricks to be used.
1328  */
1329 void
1330 mono_arch_local_regalloc (MonoCompile *cfg, MonoBasicBlock *bb)
1331 {
1332         MonoInst *ins;
1333         MonoRegState *rs = cfg->rs;
1334         int i, val, fpcount;
1335         RegTrack *reginfo, *reginfof;
1336         RegTrack *reginfo1, *reginfo2, *reginfod;
1337         InstList *tmp, *reversed = NULL;
1338         const char *spec;
1339         guint32 src1_mask, src2_mask, dest_mask;
1340         GList *fspill_list = NULL;
1341         int fspill = 0;
1342
1343         if (!bb->code)
1344                 return;
1345         rs->next_vireg = bb->max_ireg;
1346         rs->next_vfreg = bb->max_freg;
1347         mono_regstate_assign (rs);
1348         reginfo = g_malloc0 (sizeof (RegTrack) * rs->next_vireg);
1349         reginfof = g_malloc0 (sizeof (RegTrack) * rs->next_vfreg);
1350         rs->ifree_mask = X86_CALLEE_REGS;
1351
1352         ins = bb->code;
1353
1354         /*if (cfg->opt & MONO_OPT_COPYPROP)
1355                 local_copy_prop (cfg, ins);*/
1356
1357         i = 1;
1358         fpcount = 0;
1359         DEBUG (g_print ("LOCAL regalloc: basic block: %d\n", bb->block_num));
1360         /* forward pass on the instructions to collect register liveness info */
1361         while (ins) {
1362                 spec = ins_spec [ins->opcode];
1363                 
1364                 DEBUG (print_ins (i, ins));
1365
1366                 if (spec [MONO_INST_SRC1]) {
1367                         if (spec [MONO_INST_SRC1] == 'f') {
1368                                 GList *spill;
1369                                 reginfo1 = reginfof;
1370
1371                                 spill = g_list_first (fspill_list);
1372                                 if (spill && fpcount < MONO_MAX_FREGS) {
1373                                         reginfo1 [ins->sreg1].flags |= MONO_X86_FP_NEEDS_LOAD;
1374                                         fspill_list = g_list_remove (fspill_list, spill->data);
1375                                 } else
1376                                         fpcount--;
1377                         }
1378                         else
1379                                 reginfo1 = reginfo;
1380                         reginfo1 [ins->sreg1].prev_use = reginfo1 [ins->sreg1].last_use;
1381                         reginfo1 [ins->sreg1].last_use = i;
1382                         if (spec [MONO_INST_SRC1] == 'L') {
1383                                 /* The virtual register is allocated sequentially */
1384                                 reginfo1 [ins->sreg1 + 1].prev_use = reginfo1 [ins->sreg1 + 1].last_use;
1385                                 reginfo1 [ins->sreg1 + 1].last_use = i;
1386                                 if (reginfo1 [ins->sreg1 + 1].born_in == 0 || reginfo1 [ins->sreg1 + 1].born_in > i)
1387                                         reginfo1 [ins->sreg1 + 1].born_in = i;
1388                         }
1389                 } else {
1390                         ins->sreg1 = -1;
1391                 }
1392                 if (spec [MONO_INST_SRC2]) {
1393                         if (spec [MONO_INST_SRC2] == 'f') {
1394                                 GList *spill;
1395                                 reginfo2 = reginfof;
1396                                 spill = g_list_first (fspill_list);
1397                                 if (spill) {
1398                                         reginfo2 [ins->sreg2].flags |= MONO_X86_FP_NEEDS_LOAD;
1399                                         fspill_list = g_list_remove (fspill_list, spill->data);
1400                                         if (fpcount >= MONO_MAX_FREGS) {
1401                                                 fspill++;
1402                                                 fspill_list = g_list_prepend (fspill_list, GINT_TO_POINTER(fspill));
1403                                                 reginfo2 [ins->sreg2].flags |= MONO_X86_FP_NEEDS_LOAD_SPILL;
1404                                         }
1405                                 } else
1406                                         fpcount--;
1407                         }
1408                         else
1409                                 reginfo2 = reginfo;
1410                         reginfo2 [ins->sreg2].prev_use = reginfo2 [ins->sreg2].last_use;
1411                         reginfo2 [ins->sreg2].last_use = i;
1412                         if (spec [MONO_INST_SRC2] == 'L') {
1413                                 /* The virtual register is allocated sequentially */
1414                                 reginfo2 [ins->sreg2 + 1].prev_use = reginfo2 [ins->sreg2 + 1].last_use;
1415                                 reginfo2 [ins->sreg2 + 1].last_use = i;
1416                                 if (reginfo2 [ins->sreg2 + 1].born_in == 0 || reginfo2 [ins->sreg2 + 1].born_in > i)
1417                                         reginfo2 [ins->sreg2 + 1].born_in = i;
1418                         }
1419                 } else {
1420                         ins->sreg2 = -1;
1421                 }
1422                 if (spec [MONO_INST_DEST]) {
1423                         if (spec [MONO_INST_DEST] == 'f') {
1424                                 reginfod = reginfof;
1425                                 if (fpcount >= MONO_MAX_FREGS) {
1426                                         reginfod [ins->dreg].flags |= MONO_X86_FP_NEEDS_SPILL;
1427                                         fspill++;
1428                                         fspill_list = g_list_prepend (fspill_list, GINT_TO_POINTER(fspill));
1429                                         fpcount--;
1430                                 }
1431                                 fpcount++;
1432                         }
1433                         else
1434                                 reginfod = reginfo;
1435                         if (spec [MONO_INST_DEST] != 'b') /* it's not just a base register */
1436                                 reginfod [ins->dreg].killed_in = i;
1437                         reginfod [ins->dreg].prev_use = reginfod [ins->dreg].last_use;
1438                         reginfod [ins->dreg].last_use = i;
1439                         if (reginfod [ins->dreg].born_in == 0 || reginfod [ins->dreg].born_in > i)
1440                                 reginfod [ins->dreg].born_in = i;
1441                         if (spec [MONO_INST_DEST] == 'l' || spec [MONO_INST_DEST] == 'L') {
1442                                 /* The virtual register is allocated sequentially */
1443                                 reginfod [ins->dreg + 1].prev_use = reginfod [ins->dreg + 1].last_use;
1444                                 reginfod [ins->dreg + 1].last_use = i;
1445                                 if (reginfod [ins->dreg + 1].born_in == 0 || reginfod [ins->dreg + 1].born_in > i)
1446                                         reginfod [ins->dreg + 1].born_in = i;
1447                         } 
1448                 } else {
1449                         ins->dreg = -1;
1450                 }
1451                 reversed = inst_list_prepend (cfg->mempool, reversed, ins);
1452                 ++i;
1453                 ins = ins->next;
1454         }
1455
1456         // todo: check if we have anything left on fp stack, in verify mode?
1457         fspill = 0;
1458
1459         DEBUG (print_regtrack (reginfo, rs->next_vireg));
1460         DEBUG (print_regtrack (reginfof, rs->next_vfreg));
1461         tmp = reversed;
1462         while (tmp) {
1463                 int prev_dreg, prev_sreg1, prev_sreg2, clob_dreg;
1464                 dest_mask = src1_mask = src2_mask = X86_CALLEE_REGS;
1465                 --i;
1466                 ins = tmp->data;
1467                 spec = ins_spec [ins->opcode];
1468                 prev_dreg = -1;
1469                 clob_dreg = -1;
1470                 DEBUG (g_print ("processing:"));
1471                 DEBUG (print_ins (i, ins));
1472                 if (spec [MONO_INST_CLOB] == 's') {
1473                         if (rs->ifree_mask & (1 << X86_ECX)) {
1474                                 DEBUG (g_print ("\tshortcut assignment of R%d to ECX\n", ins->sreg2));
1475                                 rs->iassign [ins->sreg2] = X86_ECX;
1476                                 rs->isymbolic [X86_ECX] = ins->sreg2;
1477                                 ins->sreg2 = X86_ECX;
1478                                 rs->ifree_mask &= ~ (1 << X86_ECX);
1479                         } else {
1480                                 int need_ecx_spill = TRUE;
1481                                 /* 
1482                                  * we first check if src1/dreg is already assigned a register
1483                                  * and then we force a spill of the var assigned to ECX.
1484                                  */
1485                                 /* the destination register can't be ECX */
1486                                 dest_mask &= ~ (1 << X86_ECX);
1487                                 src1_mask &= ~ (1 << X86_ECX);
1488                                 val = rs->iassign [ins->dreg];
1489                                 /* 
1490                                  * the destination register is already assigned to ECX:
1491                                  * we need to allocate another register for it and then
1492                                  * copy from this to ECX.
1493                                  */
1494                                 if (val == X86_ECX && ins->dreg != ins->sreg2) {
1495                                         int new_dest = mono_regstate_alloc_int (rs, dest_mask);
1496                                         if (new_dest < 0)
1497                                                 new_dest = get_register_spilling (cfg, tmp, ins, dest_mask, ins->dreg);
1498                                         g_assert (new_dest >= 0);
1499                                         DEBUG (g_print ("\tclob:s changing dreg R%d to %s from ECX\n", ins->dreg, mono_arch_regname (new_dest)));
1500
1501                                         rs->isymbolic [new_dest] = ins->dreg;
1502                                         rs->iassign [ins->dreg] = new_dest;
1503                                         clob_dreg = ins->dreg;
1504                                         ins->dreg = new_dest;
1505                                         create_copy_ins (cfg, X86_ECX, new_dest, ins);
1506                                         need_ecx_spill = FALSE;
1507                                         /*DEBUG (g_print ("\tforced spill of R%d\n", ins->dreg));
1508                                         val = get_register_force_spilling (cfg, tmp, ins, ins->dreg);
1509                                         rs->iassign [ins->dreg] = val;
1510                                         rs->isymbolic [val] = prev_dreg;
1511                                         ins->dreg = val;*/
1512                                 }
1513                                 val = rs->iassign [ins->sreg1];
1514                                 if (val == X86_ECX) {
1515                                         g_assert_not_reached ();
1516                                 } else if (val >= 0) {
1517                                         /* 
1518                                          * the first src reg was already assigned to a register,
1519                                          * we need to copy it to the dest register because the 
1520                                          * shift instruction clobbers the first operand.
1521                                          */
1522                                         MonoInst *copy = create_copy_ins (cfg, ins->dreg, val, NULL);
1523                                         DEBUG (g_print ("\tclob:s moved sreg1 from R%d to R%d\n", val, ins->dreg));
1524                                         insert_before_ins (ins, tmp, copy);
1525                                 }
1526                                 val = rs->iassign [ins->sreg2];
1527                                 if (val >= 0 && val != X86_ECX) {
1528                                         MonoInst *move = create_copy_ins (cfg, X86_ECX, val, NULL);
1529                                         DEBUG (g_print ("\tmoved arg from R%d (%d) to ECX\n", val, ins->sreg2));
1530                                         move->next = ins;
1531                                         g_assert_not_reached ();
1532                                         /* FIXME: where is move connected to the instruction list? */
1533                                         //tmp->prev->data->next = move;
1534                                 }
1535                                 if (need_ecx_spill && !(rs->ifree_mask & (1 << X86_ECX))) {
1536                                         DEBUG (g_print ("\tforced spill of R%d\n", rs->isymbolic [X86_ECX]));
1537                                         get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [X86_ECX]);
1538                                         mono_regstate_free_int (rs, X86_ECX);
1539                                 }
1540                                 /* force-set sreg2 */
1541                                 rs->iassign [ins->sreg2] = X86_ECX;
1542                                 rs->isymbolic [X86_ECX] = ins->sreg2;
1543                                 ins->sreg2 = X86_ECX;
1544                                 rs->ifree_mask &= ~ (1 << X86_ECX);
1545                         }
1546                 } else if (spec [MONO_INST_CLOB] == 'd') { /* division */
1547                         int dest_reg = X86_EAX;
1548                         int clob_reg = X86_EDX;
1549                         if (spec [MONO_INST_DEST] == 'd') {
1550                                 dest_reg = X86_EDX; /* reminder */
1551                                 clob_reg = X86_EAX;
1552                         }
1553                         val = rs->iassign [ins->dreg];
1554                         if (0 && val >= 0 && val != dest_reg && !(rs->ifree_mask & (1 << dest_reg))) {
1555                                 DEBUG (g_print ("\tforced spill of R%d\n", rs->isymbolic [dest_reg]));
1556                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [dest_reg]);
1557                                 mono_regstate_free_int (rs, dest_reg);
1558                         }
1559                         if (val < 0) {
1560                                 if (val < -1) {
1561                                         /* the register gets spilled after this inst */
1562                                         int spill = -val -1;
1563                                         dest_mask = 1 << clob_reg;
1564                                         prev_dreg = ins->dreg;
1565                                         val = mono_regstate_alloc_int (rs, dest_mask);
1566                                         if (val < 0)
1567                                                 val = get_register_spilling (cfg, tmp, ins, dest_mask, ins->dreg);
1568                                         rs->iassign [ins->dreg] = val;
1569                                         if (spill)
1570                                                 create_spilled_store (cfg, spill, val, prev_dreg, ins);
1571                                         DEBUG (g_print ("\tassigned dreg %s to dest R%d\n", mono_arch_regname (val), ins->dreg));
1572                                         rs->isymbolic [val] = prev_dreg;
1573                                         ins->dreg = val;
1574                                         if (val != dest_reg) { /* force a copy */
1575                                                 create_copy_ins (cfg, val, dest_reg, ins);
1576                                         }
1577                                 } else {
1578                                         DEBUG (g_print ("\tshortcut assignment of R%d to %s\n", ins->dreg, mono_arch_regname (dest_reg)));
1579                                         prev_dreg = ins->dreg;
1580                                         rs->iassign [ins->dreg] = dest_reg;
1581                                         rs->isymbolic [dest_reg] = ins->dreg;
1582                                         ins->dreg = dest_reg;
1583                                         rs->ifree_mask &= ~ (1 << dest_reg);
1584                                 }
1585                         } else {
1586                                 //DEBUG (g_print ("dest reg in div assigned: %s\n", mono_arch_regname (val)));
1587                                 if (val != dest_reg) { /* force a copy */
1588                                         create_copy_ins (cfg, val, dest_reg, ins);
1589                                         if (!(rs->ifree_mask & (1 << dest_reg)) && rs->isymbolic [dest_reg] >= MONO_MAX_IREGS) {
1590                                                 DEBUG (g_print ("\tforced spill of R%d\n", rs->isymbolic [dest_reg]));
1591                                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [dest_reg]);
1592                                                 mono_regstate_free_int (rs, dest_reg);
1593                                         }
1594                                 }
1595                         }
1596                         if (!(rs->ifree_mask & (1 << clob_reg)) && (clob_reg != val) && (rs->isymbolic [clob_reg] >= 8)) {
1597                                 DEBUG (g_print ("\tforced spill of clobbered reg R%d\n", rs->isymbolic [clob_reg]));
1598                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [clob_reg]);
1599                                 mono_regstate_free_int (rs, clob_reg);
1600                         }
1601                         src1_mask = 1 << X86_EAX;
1602                         src2_mask = 1 << X86_ECX;
1603                 }
1604                 if (spec [MONO_INST_DEST] == 'l') {
1605                         if (!(rs->ifree_mask & (1 << X86_EAX))) {
1606                                 DEBUG (g_print ("\t(long-low) forced spill of R%d\n", rs->isymbolic [X86_EAX]));
1607                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [X86_EAX]);
1608                                 mono_regstate_free_int (rs, X86_EAX);
1609                         }
1610                         if (!(rs->ifree_mask & (1 << X86_EDX))) {
1611                                 DEBUG (g_print ("\t(long-high) forced spill of R%d\n", rs->isymbolic [X86_EDX]));
1612                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [X86_EDX]);
1613                                 mono_regstate_free_int (rs, X86_EDX);
1614                         }
1615                 }
1616
1617                 /* Track dreg */
1618                 if (spec [MONO_INST_DEST] == 'f') {
1619                         if (reginfof [ins->dreg].flags & MONO_X86_FP_NEEDS_SPILL) {
1620                                 GList *spill_node;
1621                                 MonoInst *store;
1622                                 spill_node = g_list_first (fspill_list);
1623                                 g_assert (spill_node);
1624
1625                                 store = create_spilled_store_float (cfg, GPOINTER_TO_INT (spill_node->data), ins->dreg, ins);
1626                                 insert_before_ins (ins, tmp, store);
1627                                 fspill_list = g_list_remove (fspill_list, spill_node->data);
1628                                 fspill--;
1629                         }
1630                 } else if (spec [MONO_INST_DEST] == 'L') {
1631                         int hreg;
1632                         val = rs->iassign [ins->dreg];
1633                         /* check special case when dreg have been moved from ecx (clob shift) */
1634                         if (spec [MONO_INST_CLOB] == 's' && clob_dreg != -1)
1635                                 hreg = clob_dreg + 1;
1636                         else
1637                                 hreg = ins->dreg + 1;
1638
1639                         /* base prev_dreg on fixed hreg, handle clob case */
1640                         prev_dreg = hreg - 1;
1641
1642                         if (val < 0) {
1643                                 int spill = 0;
1644                                 if (val < -1) {
1645                                         /* the register gets spilled after this inst */
1646                                         spill = -val -1;
1647                                 }
1648                                 val = mono_regstate_alloc_int (rs, dest_mask);
1649                                 if (val < 0)
1650                                         val = get_register_spilling (cfg, tmp, ins, dest_mask, prev_dreg);
1651                                 rs->iassign [prev_dreg] = val;
1652                                 if (spill)
1653                                         create_spilled_store (cfg, spill, val, prev_dreg, ins);
1654                         }
1655
1656                         DEBUG (g_print ("\tassigned dreg (long) %s to dest R%d\n", mono_arch_regname (val), prev_dreg));
1657
1658                         rs->isymbolic [val] = prev_dreg;
1659                         ins->dreg = val;
1660                         
1661                         val = rs->iassign [hreg];
1662                         if (val < 0) {
1663                                 int spill = 0;
1664                                 if (val < -1) {
1665                                         /* the register gets spilled after this inst */
1666                                         spill = -val -1;
1667                                 }
1668                                 val = mono_regstate_alloc_int (rs, dest_mask);
1669                                 if (val < 0)
1670                                         val = get_register_spilling (cfg, tmp, ins, dest_mask, hreg);
1671                                 rs->iassign [hreg] = val;
1672                                 if (spill)
1673                                         create_spilled_store (cfg, spill, val, hreg, ins);
1674                         }
1675
1676                         DEBUG (g_print ("\tassigned hreg (long-high) %s to dest R%d\n", mono_arch_regname (val), hreg));
1677                         rs->isymbolic [val] = hreg;
1678                         /* save reg allocating into unused */
1679                         ins->unused = val;
1680
1681                         /* Free the extra reg if possible */
1682                         if (reg_is_freeable (val) && hreg >= 0 && reginfo [hreg].born_in >= i) {
1683                                 DEBUG (g_print ("\tfreeable %s (R%d) (born in %d)\n", mono_arch_regname (val), hreg, reginfo [hreg].born_in));
1684                                 mono_regstate_free_int (rs, val);
1685                         }
1686                 }
1687                 else if (ins->dreg >= MONO_MAX_IREGS) {
1688                         int hreg;
1689                         val = rs->iassign [ins->dreg];
1690                         if (spec [MONO_INST_DEST] == 'l') {
1691                                 /* check special case when dreg have been moved from ecx (clob shift) */
1692                                 if (spec [MONO_INST_CLOB] == 's' && clob_dreg != -1)
1693                                         hreg = clob_dreg + 1;
1694                                 else
1695                                         hreg = ins->dreg + 1;
1696
1697                                 /* base prev_dreg on fixed hreg, handle clob case */
1698                                 prev_dreg = hreg - 1;
1699                         } else
1700                                 prev_dreg = ins->dreg;
1701
1702                         if (val < 0) {
1703                                 int spill = 0;
1704                                 if (val < -1) {
1705                                         /* the register gets spilled after this inst */
1706                                         spill = -val -1;
1707                                 }
1708                                 val = mono_regstate_alloc_int (rs, dest_mask);
1709                                 if (val < 0)
1710                                         val = get_register_spilling (cfg, tmp, ins, dest_mask, prev_dreg);
1711                                 rs->iassign [prev_dreg] = val;
1712                                 if (spill)
1713                                         create_spilled_store (cfg, spill, val, prev_dreg, ins);
1714                         }
1715                         DEBUG (g_print ("\tassigned dreg %s to dest R%d\n", mono_arch_regname (val), ins->dreg));
1716                         rs->isymbolic [val] = prev_dreg;
1717                         ins->dreg = val;
1718                         /* handle cases where lreg needs to be eax:edx */
1719                         if (spec [MONO_INST_DEST] == 'l') {
1720                                 /* check special case when dreg have been moved from ecx (clob shift) */
1721                                 int hreg = prev_dreg + 1;
1722                                 val = rs->iassign [hreg];
1723                                 if (val < 0) {
1724                                         int spill = 0;
1725                                         if (val < -1) {
1726                                                 /* the register gets spilled after this inst */
1727                                                 spill = -val -1;
1728                                         }
1729                                         val = mono_regstate_alloc_int (rs, dest_mask);
1730                                         if (val < 0)
1731                                                 val = get_register_spilling (cfg, tmp, ins, dest_mask, hreg);
1732                                         rs->iassign [hreg] = val;
1733                                         if (spill)
1734                                                 create_spilled_store (cfg, spill, val, hreg, ins);
1735                                 }
1736                                 DEBUG (g_print ("\tassigned hreg %s to dest R%d\n", mono_arch_regname (val), hreg));
1737                                 rs->isymbolic [val] = hreg;
1738                                 if (ins->dreg == X86_EAX) {
1739                                         if (val != X86_EDX)
1740                                                 create_copy_ins (cfg, val, X86_EDX, ins);
1741                                 } else if (ins->dreg == X86_EDX) {
1742                                         if (val == X86_EAX) {
1743                                                 /* swap */
1744                                                 g_assert_not_reached ();
1745                                         } else {
1746                                                 /* two forced copies */
1747                                                 create_copy_ins (cfg, val, X86_EDX, ins);
1748                                                 create_copy_ins (cfg, ins->dreg, X86_EAX, ins);
1749                                         }
1750                                 } else {
1751                                         if (val == X86_EDX) {
1752                                                 create_copy_ins (cfg, ins->dreg, X86_EAX, ins);
1753                                         } else {
1754                                                 /* two forced copies */
1755                                                 create_copy_ins (cfg, val, X86_EDX, ins);
1756                                                 create_copy_ins (cfg, ins->dreg, X86_EAX, ins);
1757                                         }
1758                                 }
1759                                 if (reg_is_freeable (val) && hreg >= 0 && reginfo [hreg].born_in >= i) {
1760                                         DEBUG (g_print ("\tfreeable %s (R%d)\n", mono_arch_regname (val), hreg));
1761                                         mono_regstate_free_int (rs, val);
1762                                 }
1763                         } else if (spec [MONO_INST_DEST] == 'a' && ins->dreg != X86_EAX && spec [MONO_INST_CLOB] != 'd') {
1764                                 /* this instruction only outputs to EAX, need to copy */
1765                                 create_copy_ins (cfg, ins->dreg, X86_EAX, ins);
1766                         } else if (spec [MONO_INST_DEST] == 'd' && ins->dreg != X86_EDX && spec [MONO_INST_CLOB] != 'd') {
1767                                 create_copy_ins (cfg, ins->dreg, X86_EDX, ins);
1768                         }
1769                 }
1770                 if (spec [MONO_INST_DEST] != 'f' && reg_is_freeable (ins->dreg) && prev_dreg >= 0 && reginfo [prev_dreg].born_in >= i) {
1771                         DEBUG (g_print ("\tfreeable %s (R%d) (born in %d)\n", mono_arch_regname (ins->dreg), prev_dreg, reginfo [prev_dreg].born_in));
1772                         mono_regstate_free_int (rs, ins->dreg);
1773                 }
1774                 /* put src1 in EAX if it needs to be */
1775                 if (spec [MONO_INST_SRC1] == 'a') {
1776                         if (!(rs->ifree_mask & (1 << X86_EAX))) {
1777                                 DEBUG (g_print ("\tforced spill of R%d\n", rs->isymbolic [X86_EAX]));
1778                                 get_register_force_spilling (cfg, tmp, ins, rs->isymbolic [X86_EAX]);
1779                                 mono_regstate_free_int (rs, X86_EAX);
1780                         }
1781                         /* force-set sreg1 */
1782                         rs->iassign [ins->sreg1] = X86_EAX;
1783                         rs->isymbolic [X86_EAX] = ins->sreg1;
1784                         ins->sreg1 = X86_EAX;
1785                         rs->ifree_mask &= ~ (1 << X86_EAX);
1786                 }
1787
1788                 /* Track sreg1 */
1789                 if (spec [MONO_INST_SRC1] == 'f') {
1790                         if (reginfof [ins->sreg1].flags & MONO_X86_FP_NEEDS_LOAD) {
1791                                 MonoInst *load;
1792                                 MonoInst *store = NULL;
1793
1794                                 if (reginfof [ins->sreg1].flags & MONO_X86_FP_NEEDS_LOAD_SPILL) {
1795                                         GList *spill_node;
1796                                         spill_node = g_list_first (fspill_list);
1797                                         g_assert (spill_node);
1798
1799                                         store = create_spilled_store_float (cfg, GPOINTER_TO_INT (spill_node->data), ins->sreg1, ins);          
1800                                         fspill_list = g_list_remove (fspill_list, spill_node->data);
1801                                 }
1802
1803                                 fspill++;
1804                                 fspill_list = g_list_prepend (fspill_list, GINT_TO_POINTER(fspill));
1805                                 load = create_spilled_load_float (cfg, fspill, ins->sreg1, ins);
1806                                 insert_before_ins (ins, tmp, load);
1807                                 if (store) 
1808                                         insert_before_ins (load, tmp, store);
1809                         }
1810                 } else if ((spec [MONO_INST_DEST] == 'L') && (spec [MONO_INST_SRC1] == 'L')) {
1811                         /* force source to be same as dest */
1812                         rs->iassign [ins->sreg1] = ins->dreg;
1813                         rs->iassign [ins->sreg1 + 1] = ins->unused;
1814
1815                         DEBUG (g_print ("\tassigned sreg1 (long) %s to sreg1 R%d\n", mono_arch_regname (ins->dreg), ins->sreg1));
1816                         DEBUG (g_print ("\tassigned sreg1 (long-high) %s to sreg1 R%d\n", mono_arch_regname (ins->unused), ins->sreg1 + 1));
1817
1818                         ins->sreg1 = ins->dreg;
1819                         /* no need for this, we know that src1=dest in this cases */
1820                         /*ins->inst_c0 = ins->unused;*/
1821
1822                         /* make sure that we remove them from free mask */
1823                         rs->ifree_mask &= ~ (1 << ins->dreg);
1824                         rs->ifree_mask &= ~ (1 << ins->unused);
1825                 }
1826                 else if (ins->sreg1 >= MONO_MAX_IREGS) {
1827                         val = rs->iassign [ins->sreg1];
1828                         prev_sreg1 = ins->sreg1;
1829                         if (val < 0) {
1830                                 int spill = 0;
1831                                 if (val < -1) {
1832                                         /* the register gets spilled after this inst */
1833                                         spill = -val -1;
1834                                 }
1835                                 if (0 && ins->opcode == OP_MOVE) {
1836                                         /* 
1837                                          * small optimization: the dest register is already allocated
1838                                          * but the src one is not: we can simply assign the same register
1839                                          * here and peephole will get rid of the instruction later.
1840                                          * This optimization may interfere with the clobbering handling:
1841                                          * it removes a mov operation that will be added again to handle clobbering.
1842                                          * There are also some other issues that should with make testjit.
1843                                          */
1844                                         mono_regstate_alloc_int (rs, 1 << ins->dreg);
1845                                         val = rs->iassign [ins->sreg1] = ins->dreg;
1846                                         //g_assert (val >= 0);
1847                                         DEBUG (g_print ("\tfast assigned sreg1 %s to R%d\n", mono_arch_regname (val), ins->sreg1));
1848                                 } else {
1849                                         //g_assert (val == -1); /* source cannot be spilled */
1850                                         val = mono_regstate_alloc_int (rs, src1_mask);
1851                                         if (val < 0)
1852                                                 val = get_register_spilling (cfg, tmp, ins, src1_mask, ins->sreg1);
1853                                         rs->iassign [ins->sreg1] = val;
1854                                         DEBUG (g_print ("\tassigned sreg1 %s to R%d\n", mono_arch_regname (val), ins->sreg1));
1855                                 }
1856                                 if (spill) {
1857                                         MonoInst *store = create_spilled_store (cfg, spill, val, prev_sreg1, NULL);
1858                                         insert_before_ins (ins, tmp, store);
1859                                 }
1860                         }
1861                         rs->isymbolic [val] = prev_sreg1;
1862                         ins->sreg1 = val;
1863                 } else {
1864                         prev_sreg1 = -1;
1865                 }
1866                 /* handle clobbering of sreg1 */
1867                 if ((spec [MONO_INST_CLOB] == '1' || spec [MONO_INST_CLOB] == 's') && ins->dreg != ins->sreg1) {
1868                         MonoInst *copy = create_copy_ins (cfg, ins->dreg, ins->sreg1, NULL);
1869                         DEBUG (g_print ("\tneed to copy sreg1 %s to dreg %s\n", mono_arch_regname (ins->sreg1), mono_arch_regname (ins->dreg)));
1870                         if (ins->sreg2 == -1 || spec [MONO_INST_CLOB] == 's') {
1871                                 /* note: the copy is inserted before the current instruction! */
1872                                 insert_before_ins (ins, tmp, copy);
1873                                 /* we set sreg1 to dest as well */
1874                                 prev_sreg1 = ins->sreg1 = ins->dreg;
1875                         } else {
1876                                 /* inserted after the operation */
1877                                 copy->next = ins->next;
1878                                 ins->next = copy;
1879                         }
1880                 }
1881                 /* track sreg2 */
1882                 if (spec [MONO_INST_SRC2] == 'f') {
1883                         if (reginfof [ins->sreg2].flags & MONO_X86_FP_NEEDS_LOAD) {
1884                                 MonoInst *load;
1885                                 MonoInst *store = NULL;
1886
1887                                 if (reginfof [ins->sreg2].flags & MONO_X86_FP_NEEDS_LOAD_SPILL) {
1888                                         GList *spill_node;
1889
1890                                         spill_node = g_list_first (fspill_list);
1891                                         g_assert (spill_node);
1892                                         if (spec [MONO_INST_SRC1] == 'f' && (reginfof [ins->sreg1].flags & MONO_X86_FP_NEEDS_LOAD_SPILL))
1893                                                 spill_node = g_list_next (spill_node);
1894         
1895                                         store = create_spilled_store_float (cfg, GPOINTER_TO_INT (spill_node->data), ins->sreg2, ins);
1896                                         fspill_list = g_list_remove (fspill_list, spill_node->data);
1897                                 } 
1898                                 
1899                                 fspill++;
1900                                 fspill_list = g_list_prepend (fspill_list, GINT_TO_POINTER(fspill));
1901                                 load = create_spilled_load_float (cfg, fspill, ins->sreg2, ins);
1902                                 insert_before_ins (ins, tmp, load);
1903                                 if (store) 
1904                                         insert_before_ins (load, tmp, store);
1905                         }
1906                 } 
1907                 else if (ins->sreg2 >= MONO_MAX_IREGS) {
1908                         val = rs->iassign [ins->sreg2];
1909                         prev_sreg2 = ins->sreg2;
1910                         if (val < 0) {
1911                                 int spill = 0;
1912                                 if (val < -1) {
1913                                         /* the register gets spilled after this inst */
1914                                         spill = -val -1;
1915                                 }
1916                                 val = mono_regstate_alloc_int (rs, src2_mask);
1917                                 if (val < 0)
1918                                         val = get_register_spilling (cfg, tmp, ins, src2_mask, ins->sreg2);
1919                                 rs->iassign [ins->sreg2] = val;
1920                                 DEBUG (g_print ("\tassigned sreg2 %s to R%d\n", mono_arch_regname (val), ins->sreg2));
1921                                 if (spill)
1922                                         create_spilled_store (cfg, spill, val, prev_sreg2, ins);
1923                         }
1924                         rs->isymbolic [val] = prev_sreg2;
1925                         ins->sreg2 = val;
1926                         if (spec [MONO_INST_CLOB] == 's' && ins->sreg2 != X86_ECX) {
1927                                 DEBUG (g_print ("\tassigned sreg2 %s to R%d, but ECX is needed (R%d)\n", mono_arch_regname (val), ins->sreg2, rs->iassign [X86_ECX]));
1928                         }
1929                 } else {
1930                         prev_sreg2 = -1;
1931                 }
1932
1933                 if (spec [MONO_INST_CLOB] == 'c') {
1934                         int j, s;
1935                         guint32 clob_mask = X86_CALLEE_REGS;
1936                         for (j = 0; j < MONO_MAX_IREGS; ++j) {
1937                                 s = 1 << j;
1938                                 if ((clob_mask & s) && !(rs->ifree_mask & s) && j != ins->sreg1) {
1939                                         //g_warning ("register %s busy at call site\n", mono_arch_regname (j));
1940                                 }
1941                         }
1942                 }
1943                 /*if (reg_is_freeable (ins->sreg1) && prev_sreg1 >= 0 && reginfo [prev_sreg1].born_in >= i) {
1944                         DEBUG (g_print ("freeable %s\n", mono_arch_regname (ins->sreg1)));
1945                         mono_regstate_free_int (rs, ins->sreg1);
1946                 }
1947                 if (reg_is_freeable (ins->sreg2) && prev_sreg2 >= 0 && reginfo [prev_sreg2].born_in >= i) {
1948                         DEBUG (g_print ("freeable %s\n", mono_arch_regname (ins->sreg2)));
1949                         mono_regstate_free_int (rs, ins->sreg2);
1950                 }*/
1951         
1952                 //DEBUG (print_ins (i, ins));
1953                 /* this may result from a insert_before call */
1954                 if (!tmp->next)
1955                         bb->code = tmp->data;
1956                 tmp = tmp->next;
1957         }
1958
1959         g_free (reginfo);
1960         g_free (reginfof);
1961         g_list_free (fspill_list);
1962 }
1963
1964 static unsigned char*
1965 emit_float_to_int (MonoCompile *cfg, guchar *code, int dreg, int size, gboolean is_signed)
1966 {
1967         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 4);
1968         x86_fnstcw_membase(code, X86_ESP, 0);
1969         x86_mov_reg_membase (code, dreg, X86_ESP, 0, 2);
1970         x86_alu_reg_imm (code, X86_OR, dreg, 0xc00);
1971         x86_mov_membase_reg (code, X86_ESP, 2, dreg, 2);
1972         x86_fldcw_membase (code, X86_ESP, 2);
1973         if (size == 8) {
1974                 x86_alu_reg_imm (code, X86_SUB, X86_ESP, 8);
1975                 x86_fist_pop_membase (code, X86_ESP, 0, TRUE);
1976                 x86_pop_reg (code, dreg);
1977                 /* FIXME: need the high register 
1978                  * x86_pop_reg (code, dreg_high);
1979                  */
1980         } else {
1981                 x86_push_reg (code, X86_EAX); // SP = SP - 4
1982                 x86_fist_pop_membase (code, X86_ESP, 0, FALSE);
1983                 x86_pop_reg (code, dreg);
1984         }
1985         x86_fldcw_membase (code, X86_ESP, 0);
1986         x86_alu_reg_imm (code, X86_ADD, X86_ESP, 4);
1987
1988         if (size == 1)
1989                 x86_widen_reg (code, dreg, dreg, is_signed, FALSE);
1990         else if (size == 2)
1991                 x86_widen_reg (code, dreg, dreg, is_signed, TRUE);
1992         return code;
1993 }
1994
1995 static unsigned char*
1996 mono_emit_stack_alloc (guchar *code, MonoInst* tree)
1997 {
1998         int sreg = tree->sreg1;
1999 #ifdef PLATFORM_WIN32
2000         guint8* br[5];
2001
2002         /*
2003          * Under Windows:
2004          * If requested stack size is larger than one page,
2005          * perform stack-touch operation
2006          */
2007         /*
2008          * Generate stack probe code.
2009          * Under Windows, it is necessary to allocate one page at a time,
2010          * "touching" stack after each successful sub-allocation. This is
2011          * because of the way stack growth is implemented - there is a
2012          * guard page before the lowest stack page that is currently commited.
2013          * Stack normally grows sequentially so OS traps access to the
2014          * guard page and commits more pages when needed.
2015          */
2016         x86_test_reg_imm (code, sreg, ~0xFFF);
2017         br[0] = code; x86_branch8 (code, X86_CC_Z, 0, FALSE);
2018
2019         br[2] = code; /* loop */
2020         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 0x1000);
2021         x86_test_membase_reg (code, X86_ESP, 0, X86_ESP);
2022         x86_alu_reg_imm (code, X86_SUB, sreg, 0x1000);
2023         x86_alu_reg_imm (code, X86_CMP, sreg, 0x1000);
2024         br[3] = code; x86_branch8 (code, X86_CC_AE, 0, FALSE);
2025         x86_patch (br[3], br[2]);
2026         x86_test_reg_reg (code, sreg, sreg);
2027         br[4] = code; x86_branch8 (code, X86_CC_Z, 0, FALSE);
2028         x86_alu_reg_reg (code, X86_SUB, X86_ESP, sreg);
2029
2030         br[1] = code; x86_jump8 (code, 0);
2031
2032         x86_patch (br[0], code);
2033         x86_alu_reg_reg (code, X86_SUB, X86_ESP, sreg);
2034         x86_patch (br[1], code);
2035         x86_patch (br[4], code);
2036 #else /* PLATFORM_WIN32 */
2037         x86_alu_reg_reg (code, X86_SUB, X86_ESP, tree->sreg1);
2038 #endif
2039         if (tree->flags & MONO_INST_INIT) {
2040                 int offset = 0;
2041                 if (tree->dreg != X86_EAX && sreg != X86_EAX) {
2042                         x86_push_reg (code, X86_EAX);
2043                         offset += 4;
2044                 }
2045                 if (tree->dreg != X86_ECX && sreg != X86_ECX) {
2046                         x86_push_reg (code, X86_ECX);
2047                         offset += 4;
2048                 }
2049                 if (tree->dreg != X86_EDI && sreg != X86_EDI) {
2050                         x86_push_reg (code, X86_EDI);
2051                         offset += 4;
2052                 }
2053                 
2054                 x86_shift_reg_imm (code, X86_SHR, sreg, 2);
2055                 if (sreg != X86_ECX)
2056                         x86_mov_reg_reg (code, X86_ECX, sreg, 4);
2057                 x86_alu_reg_reg (code, X86_XOR, X86_EAX, X86_EAX);
2058                                 
2059                 x86_lea_membase (code, X86_EDI, X86_ESP, offset);
2060                 x86_cld (code);
2061                 x86_prefix (code, X86_REP_PREFIX);
2062                 x86_stosl (code);
2063                 
2064                 if (tree->dreg != X86_EDI && sreg != X86_EDI)
2065                         x86_pop_reg (code, X86_EDI);
2066                 if (tree->dreg != X86_ECX && sreg != X86_ECX)
2067                         x86_pop_reg (code, X86_ECX);
2068                 if (tree->dreg != X86_EAX && sreg != X86_EAX)
2069                         x86_pop_reg (code, X86_EAX);
2070         }
2071         return code;
2072 }
2073
2074 #define REAL_PRINT_REG(text,reg) \
2075 mono_assert (reg >= 0); \
2076 x86_push_reg (code, X86_EAX); \
2077 x86_push_reg (code, X86_EDX); \
2078 x86_push_reg (code, X86_ECX); \
2079 x86_push_reg (code, reg); \
2080 x86_push_imm (code, reg); \
2081 x86_push_imm (code, text " %d %p\n"); \
2082 x86_mov_reg_imm (code, X86_EAX, printf); \
2083 x86_call_reg (code, X86_EAX); \
2084 x86_alu_reg_imm (code, X86_ADD, X86_ESP, 3*4); \
2085 x86_pop_reg (code, X86_ECX); \
2086 x86_pop_reg (code, X86_EDX); \
2087 x86_pop_reg (code, X86_EAX);
2088
2089 void
2090 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
2091 {
2092         MonoInst *ins;
2093         MonoCallInst *call;
2094         guint offset;
2095         guint8 *code = cfg->native_code + cfg->code_len;
2096         MonoInst *last_ins = NULL;
2097         guint last_offset = 0;
2098         int max_len, cpos;
2099
2100         if (cfg->opt & MONO_OPT_PEEPHOLE)
2101                 peephole_pass (cfg, bb);
2102
2103         if (cfg->opt & MONO_OPT_LOOP) {
2104                 int pad, align = 8;
2105                 /* set alignment depending on cpu */
2106                 if (bb->nesting && (bb->in_count == 1) && (pad = (cfg->code_len & (align - 1)))) {
2107                         pad = align - pad;
2108                         /*g_print ("adding %d pad at %x to loop in %s\n", pad, cfg->code_len, cfg->method->name);*/
2109                         x86_padding (code, pad);
2110                         cfg->code_len += pad;
2111                         bb->native_offset = cfg->code_len;
2112                 }
2113         }
2114
2115         if (cfg->verbose_level > 2)
2116                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
2117
2118         cpos = bb->max_offset;
2119
2120         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
2121                 MonoProfileCoverageInfo *cov = cfg->coverage_info;
2122                 g_assert (!mono_compile_aot);
2123                 cpos += 6;
2124
2125                 cov->data [bb->dfn].cil_code = bb->cil_code;
2126                 /* this is not thread save, but good enough */
2127                 x86_inc_mem (code, &cov->data [bb->dfn].count); 
2128         }
2129
2130         offset = code - cfg->native_code;
2131
2132         ins = bb->code;
2133         while (ins) {
2134                 offset = code - cfg->native_code;
2135
2136                 max_len = ((guint8 *)ins_spec [ins->opcode])[MONO_INST_LEN];
2137
2138                 if (offset > (cfg->code_size - max_len - 16)) {
2139                         cfg->code_size *= 2;
2140                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
2141                         code = cfg->native_code + offset;
2142                         mono_jit_stats.code_reallocs++;
2143                 }
2144
2145                 mono_debug_record_line_number (cfg, ins, offset);
2146
2147                 switch (ins->opcode) {
2148                 case OP_BIGMUL:
2149                         x86_mul_reg (code, ins->sreg2, TRUE);
2150                         break;
2151                 case OP_BIGMUL_UN:
2152                         x86_mul_reg (code, ins->sreg2, FALSE);
2153                         break;
2154                 case OP_X86_SETEQ_MEMBASE:
2155                         x86_set_membase (code, X86_CC_EQ, ins->inst_basereg, ins->inst_offset, TRUE);
2156                         break;
2157                 case OP_STOREI1_MEMBASE_IMM:
2158                         x86_mov_membase_imm (code, ins->inst_destbasereg, ins->inst_offset, ins->inst_imm, 1);
2159                         break;
2160                 case OP_STOREI2_MEMBASE_IMM:
2161                         x86_mov_membase_imm (code, ins->inst_destbasereg, ins->inst_offset, ins->inst_imm, 2);
2162                         break;
2163                 case OP_STORE_MEMBASE_IMM:
2164                 case OP_STOREI4_MEMBASE_IMM:
2165                         x86_mov_membase_imm (code, ins->inst_destbasereg, ins->inst_offset, ins->inst_imm, 4);
2166                         break;
2167                 case OP_STOREI1_MEMBASE_REG:
2168                         x86_mov_membase_reg (code, ins->inst_destbasereg, ins->inst_offset, ins->sreg1, 1);
2169                         break;
2170                 case OP_STOREI2_MEMBASE_REG:
2171                         x86_mov_membase_reg (code, ins->inst_destbasereg, ins->inst_offset, ins->sreg1, 2);
2172                         break;
2173                 case OP_STORE_MEMBASE_REG:
2174                 case OP_STOREI4_MEMBASE_REG:
2175                         x86_mov_membase_reg (code, ins->inst_destbasereg, ins->inst_offset, ins->sreg1, 4);
2176                         break;
2177                 case CEE_LDIND_I:
2178                 case CEE_LDIND_I4:
2179                 case CEE_LDIND_U4:
2180                         x86_mov_reg_mem (code, ins->dreg, ins->inst_p0, 4);
2181                         break;
2182                 case OP_LOADU4_MEM:
2183                         x86_mov_reg_imm (code, ins->dreg, ins->inst_p0);
2184                         x86_mov_reg_membase (code, ins->dreg, ins->dreg, 0, 4);
2185                         break;
2186                 case OP_LOAD_MEMBASE:
2187                 case OP_LOADI4_MEMBASE:
2188                 case OP_LOADU4_MEMBASE:
2189                         x86_mov_reg_membase (code, ins->dreg, ins->inst_basereg, ins->inst_offset, 4);
2190                         break;
2191                 case OP_LOADU1_MEMBASE:
2192                         x86_widen_membase (code, ins->dreg, ins->inst_basereg, ins->inst_offset, FALSE, FALSE);
2193                         break;
2194                 case OP_LOADI1_MEMBASE:
2195                         x86_widen_membase (code, ins->dreg, ins->inst_basereg, ins->inst_offset, TRUE, FALSE);
2196                         break;
2197                 case OP_LOADU2_MEMBASE:
2198                         x86_widen_membase (code, ins->dreg, ins->inst_basereg, ins->inst_offset, FALSE, TRUE);
2199                         break;
2200                 case OP_LOADI2_MEMBASE:
2201                         x86_widen_membase (code, ins->dreg, ins->inst_basereg, ins->inst_offset, TRUE, TRUE);
2202                         break;
2203                 case CEE_CONV_I1:
2204                         x86_widen_reg (code, ins->dreg, ins->sreg1, TRUE, FALSE);
2205                         break;
2206                 case CEE_CONV_I2:
2207                         x86_widen_reg (code, ins->dreg, ins->sreg1, TRUE, TRUE);
2208                         break;
2209                 case CEE_CONV_U1:
2210                         x86_widen_reg (code, ins->dreg, ins->sreg1, FALSE, FALSE);
2211                         break;
2212                 case CEE_CONV_U2:
2213                         x86_widen_reg (code, ins->dreg, ins->sreg1, FALSE, TRUE);
2214                         break;
2215                 case OP_COMPARE:
2216                         x86_alu_reg_reg (code, X86_CMP, ins->sreg1, ins->sreg2);
2217                         break;
2218                 case OP_COMPARE_IMM:
2219                         x86_alu_reg_imm (code, X86_CMP, ins->sreg1, ins->inst_imm);
2220                         break;
2221                 case OP_X86_COMPARE_MEMBASE_REG:
2222                         x86_alu_membase_reg (code, X86_CMP, ins->inst_basereg, ins->inst_offset, ins->sreg2);
2223                         break;
2224                 case OP_X86_COMPARE_MEMBASE_IMM:
2225                         x86_alu_membase_imm (code, X86_CMP, ins->inst_basereg, ins->inst_offset, ins->inst_imm);
2226                         break;
2227                 case OP_X86_COMPARE_REG_MEMBASE:
2228                         x86_alu_reg_membase (code, X86_CMP, ins->sreg1, ins->sreg2, ins->inst_offset);
2229                         break;
2230                 case OP_X86_TEST_NULL:
2231                         x86_test_reg_reg (code, ins->sreg1, ins->sreg1);
2232                         break;
2233                 case OP_X86_ADD_MEMBASE_IMM:
2234                         x86_alu_membase_imm (code, X86_ADD, ins->inst_basereg, ins->inst_offset, ins->inst_imm);
2235                         break;
2236                 case OP_X86_ADD_MEMBASE:
2237                         x86_alu_reg_membase (code, X86_ADD, ins->sreg1, ins->sreg2, ins->inst_offset);
2238                         break;
2239                 case OP_X86_SUB_MEMBASE_IMM:
2240                         x86_alu_membase_imm (code, X86_SUB, ins->inst_basereg, ins->inst_offset, ins->inst_imm);
2241                         break;
2242                 case OP_X86_SUB_MEMBASE:
2243                         x86_alu_reg_membase (code, X86_SUB, ins->sreg1, ins->sreg2, ins->inst_offset);
2244                         break;
2245                 case OP_X86_INC_MEMBASE:
2246                         x86_inc_membase (code, ins->inst_basereg, ins->inst_offset);
2247                         break;
2248                 case OP_X86_INC_REG:
2249                         x86_inc_reg (code, ins->dreg);
2250                         break;
2251                 case OP_X86_DEC_MEMBASE:
2252                         x86_dec_membase (code, ins->inst_basereg, ins->inst_offset);
2253                         break;
2254                 case OP_X86_DEC_REG:
2255                         x86_dec_reg (code, ins->dreg);
2256                         break;
2257                 case OP_X86_MUL_MEMBASE:
2258                         x86_imul_reg_membase (code, ins->sreg1, ins->sreg2, ins->inst_offset);
2259                         break;
2260                 case CEE_BREAK:
2261                         x86_breakpoint (code);
2262                         break;
2263                 case OP_ADDCC:
2264                 case CEE_ADD:
2265                         x86_alu_reg_reg (code, X86_ADD, ins->sreg1, ins->sreg2);
2266                         break;
2267                 case OP_ADC:
2268                         x86_alu_reg_reg (code, X86_ADC, ins->sreg1, ins->sreg2);
2269                         break;
2270                 case OP_ADD_IMM:
2271                         x86_alu_reg_imm (code, X86_ADD, ins->dreg, ins->inst_imm);
2272                         break;
2273                 case OP_ADC_IMM:
2274                         x86_alu_reg_imm (code, X86_ADC, ins->dreg, ins->inst_imm);
2275                         break;
2276                 case OP_SUBCC:
2277                 case CEE_SUB:
2278                         x86_alu_reg_reg (code, X86_SUB, ins->sreg1, ins->sreg2);
2279                         break;
2280                 case OP_SBB:
2281                         x86_alu_reg_reg (code, X86_SBB, ins->sreg1, ins->sreg2);
2282                         break;
2283                 case OP_SUB_IMM:
2284                         x86_alu_reg_imm (code, X86_SUB, ins->dreg, ins->inst_imm);
2285                         break;
2286                 case OP_SBB_IMM:
2287                         x86_alu_reg_imm (code, X86_SBB, ins->dreg, ins->inst_imm);
2288                         break;
2289                 case CEE_AND:
2290                         x86_alu_reg_reg (code, X86_AND, ins->sreg1, ins->sreg2);
2291                         break;
2292                 case OP_AND_IMM:
2293                         x86_alu_reg_imm (code, X86_AND, ins->sreg1, ins->inst_imm);
2294                         break;
2295                 case CEE_DIV:
2296                         x86_cdq (code);
2297                         x86_div_reg (code, ins->sreg2, TRUE);
2298                         break;
2299                 case CEE_DIV_UN:
2300                         x86_alu_reg_reg (code, X86_XOR, X86_EDX, X86_EDX);
2301                         x86_div_reg (code, ins->sreg2, FALSE);
2302                         break;
2303                 case OP_DIV_IMM:
2304                         x86_mov_reg_imm (code, ins->sreg2, ins->inst_imm);
2305                         x86_cdq (code);
2306                         x86_div_reg (code, ins->sreg2, TRUE);
2307                         break;
2308                 case CEE_REM:
2309                         x86_cdq (code);
2310                         x86_div_reg (code, ins->sreg2, TRUE);
2311                         break;
2312                 case CEE_REM_UN:
2313                         x86_alu_reg_reg (code, X86_XOR, X86_EDX, X86_EDX);
2314                         x86_div_reg (code, ins->sreg2, FALSE);
2315                         break;
2316                 case OP_REM_IMM:
2317                         x86_mov_reg_imm (code, ins->sreg2, ins->inst_imm);
2318                         x86_cdq (code);
2319                         x86_div_reg (code, ins->sreg2, TRUE);
2320                         break;
2321                 case CEE_OR:
2322                         x86_alu_reg_reg (code, X86_OR, ins->sreg1, ins->sreg2);
2323                         break;
2324                 case OP_OR_IMM:
2325                         x86_alu_reg_imm (code, X86_OR, ins->sreg1, ins->inst_imm);
2326                         break;
2327                 case CEE_XOR:
2328                         x86_alu_reg_reg (code, X86_XOR, ins->sreg1, ins->sreg2);
2329                         break;
2330                 case OP_XOR_IMM:
2331                         x86_alu_reg_imm (code, X86_XOR, ins->sreg1, ins->inst_imm);
2332                         break;
2333                 case CEE_SHL:
2334                         g_assert (ins->sreg2 == X86_ECX);
2335                         x86_shift_reg (code, X86_SHL, ins->dreg);
2336                         break;
2337                 case CEE_SHR:
2338                         g_assert (ins->sreg2 == X86_ECX);
2339                         x86_shift_reg (code, X86_SAR, ins->dreg);
2340                         break;
2341                 case OP_SHR_IMM:
2342                         x86_shift_reg_imm (code, X86_SAR, ins->dreg, ins->inst_imm);
2343                         break;
2344                 case OP_SHR_UN_IMM:
2345                         x86_shift_reg_imm (code, X86_SHR, ins->dreg, ins->inst_imm);
2346                         break;
2347                 case CEE_SHR_UN:
2348                         g_assert (ins->sreg2 == X86_ECX);
2349                         x86_shift_reg (code, X86_SHR, ins->dreg);
2350                         break;
2351                 case OP_SHL_IMM:
2352                         x86_shift_reg_imm (code, X86_SHL, ins->dreg, ins->inst_imm);
2353                         break;
2354                 case OP_LSHL: {
2355                         guint8 *jump_to_end;
2356
2357                         /* handle shifts below 32 bits */
2358                         x86_shld_reg (code, ins->unused, ins->sreg1);
2359                         x86_shift_reg (code, X86_SHL, ins->sreg1);
2360
2361                         x86_test_reg_imm (code, X86_ECX, 32);
2362                         jump_to_end = code; x86_branch8 (code, X86_CC_EQ, 0, TRUE);
2363
2364                         /* handle shift over 32 bit */
2365                         x86_mov_reg_reg (code, ins->unused, ins->sreg1, 4);
2366                         x86_clear_reg (code, ins->sreg1);
2367                         
2368                         x86_patch (jump_to_end, code);
2369                         }
2370                         break;
2371                 case OP_LSHR: {
2372                         guint8 *jump_to_end;
2373
2374                         /* handle shifts below 32 bits */
2375                         x86_shrd_reg (code, ins->sreg1, ins->unused);
2376                         x86_shift_reg (code, X86_SAR, ins->unused);
2377
2378                         x86_test_reg_imm (code, X86_ECX, 32);
2379                         jump_to_end = code; x86_branch8 (code, X86_CC_EQ, 0, FALSE);
2380
2381                         /* handle shifts over 31 bits */
2382                         x86_mov_reg_reg (code, ins->sreg1, ins->unused, 4);
2383                         x86_shift_reg_imm (code, X86_SAR, ins->unused, 31);
2384                         
2385                         x86_patch (jump_to_end, code);
2386                         }
2387                         break;
2388                 case OP_LSHR_UN: {
2389                         guint8 *jump_to_end;
2390
2391                         /* handle shifts below 32 bits */
2392                         x86_shrd_reg (code, ins->sreg1, ins->unused);
2393                         x86_shift_reg (code, X86_SHR, ins->unused);
2394
2395                         x86_test_reg_imm (code, X86_ECX, 32);
2396                         jump_to_end = code; x86_branch8 (code, X86_CC_EQ, 0, FALSE);
2397
2398                         /* handle shifts over 31 bits */
2399                         x86_mov_reg_reg (code, ins->sreg1, ins->unused, 4);
2400                         x86_shift_reg_imm (code, X86_SHR, ins->unused, 31);
2401                         
2402                         x86_patch (jump_to_end, code);
2403                         }
2404                         break;
2405                 case OP_LSHL_IMM:
2406                         if (ins->inst_imm >= 32) {
2407                                 x86_mov_reg_reg (code, ins->unused, ins->sreg1, 4);
2408                                 x86_clear_reg (code, ins->sreg1);
2409                                 x86_shift_reg_imm (code, X86_SHL, ins->unused, ins->inst_imm - 32);
2410                         } else {
2411                                 x86_shld_reg_imm (code, ins->unused, ins->sreg1, ins->inst_imm);
2412                                 x86_shift_reg_imm (code, X86_SHL, ins->sreg1, ins->inst_imm);
2413                         }
2414                         break;
2415                 case OP_LSHR_IMM:
2416                         if (ins->inst_imm >= 32) {
2417                                 x86_mov_reg_reg (code, ins->sreg1, ins->unused,  4);
2418                                 x86_shift_reg_imm (code, X86_SAR, ins->unused, 0x1f);
2419                                 x86_shift_reg_imm (code, X86_SAR, ins->sreg1, ins->inst_imm - 32);
2420                         } else {
2421                                 x86_shrd_reg_imm (code, ins->sreg1, ins->unused, ins->inst_imm);
2422                                 x86_shift_reg_imm (code, X86_SAR, ins->unused, ins->inst_imm);
2423                         }
2424                         break;
2425                 case OP_LSHR_UN_IMM:
2426                         if (ins->inst_imm >= 32) {
2427                                 x86_mov_reg_reg (code, ins->sreg1, ins->unused, 4);
2428                                 x86_clear_reg (code, ins->unused);
2429                                 x86_shift_reg_imm (code, X86_SHR, ins->sreg1, ins->inst_imm - 32);
2430                         } else {
2431                                 x86_shrd_reg_imm (code, ins->sreg1, ins->unused, ins->inst_imm);
2432                                 x86_shift_reg_imm (code, X86_SHR, ins->unused, ins->inst_imm);
2433                         }
2434                         break;
2435                 case CEE_NOT:
2436                         x86_not_reg (code, ins->sreg1);
2437                         break;
2438                 case CEE_NEG:
2439                         x86_neg_reg (code, ins->sreg1);
2440                         break;
2441                 case OP_SEXT_I1:
2442                         x86_widen_reg (code, ins->dreg, ins->sreg1, TRUE, FALSE);
2443                         break;
2444                 case OP_SEXT_I2:
2445                         x86_widen_reg (code, ins->dreg, ins->sreg1, TRUE, TRUE);
2446                         break;
2447                 case CEE_MUL:
2448                         x86_imul_reg_reg (code, ins->sreg1, ins->sreg2);
2449                         break;
2450                 case OP_MUL_IMM:
2451                         x86_imul_reg_reg_imm (code, ins->dreg, ins->sreg1, ins->inst_imm);
2452                         break;
2453                 case CEE_MUL_OVF:
2454                         x86_imul_reg_reg (code, ins->sreg1, ins->sreg2);
2455                         EMIT_COND_SYSTEM_EXCEPTION (X86_CC_O, FALSE, "OverflowException");
2456                         break;
2457                 case CEE_MUL_OVF_UN: {
2458                         /* the mul operation and the exception check should most likely be split */
2459                         int non_eax_reg, saved_eax = FALSE, saved_edx = FALSE;
2460                         /*g_assert (ins->sreg2 == X86_EAX);
2461                         g_assert (ins->dreg == X86_EAX);*/
2462                         if (ins->sreg2 == X86_EAX) {
2463                                 non_eax_reg = ins->sreg1;
2464                         } else if (ins->sreg1 == X86_EAX) {
2465                                 non_eax_reg = ins->sreg2;
2466                         } else {
2467                                 /* no need to save since we're going to store to it anyway */
2468                                 if (ins->dreg != X86_EAX) {
2469                                         saved_eax = TRUE;
2470                                         x86_push_reg (code, X86_EAX);
2471                                 }
2472                                 x86_mov_reg_reg (code, X86_EAX, ins->sreg1, 4);
2473                                 non_eax_reg = ins->sreg2;
2474                         }
2475                         if (ins->dreg == X86_EDX) {
2476                                 if (!saved_eax) {
2477                                         saved_eax = TRUE;
2478                                         x86_push_reg (code, X86_EAX);
2479                                 }
2480                         } else if (ins->dreg != X86_EAX) {
2481                                 saved_edx = TRUE;
2482                                 x86_push_reg (code, X86_EDX);
2483                         }
2484                         x86_mul_reg (code, non_eax_reg, FALSE);
2485                         /* save before the check since pop and mov don't change the flags */
2486                         if (ins->dreg != X86_EAX)
2487                                 x86_mov_reg_reg (code, ins->dreg, X86_EAX, 4);
2488                         if (saved_edx)
2489                                 x86_pop_reg (code, X86_EDX);
2490                         if (saved_eax)
2491                                 x86_pop_reg (code, X86_EAX);
2492                         EMIT_COND_SYSTEM_EXCEPTION (X86_CC_O, FALSE, "OverflowException");
2493                         break;
2494                 }
2495                 case OP_ICONST:
2496                         x86_mov_reg_imm (code, ins->dreg, ins->inst_c0);
2497                         break;
2498                 case OP_AOTCONST:
2499                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
2500                         x86_mov_reg_imm (code, ins->dreg, 0);
2501                         break;
2502                 case CEE_CONV_I4:
2503                 case OP_MOVE:
2504                         x86_mov_reg_reg (code, ins->dreg, ins->sreg1, 4);
2505                         break;
2506                 case CEE_CONV_U4:
2507                         g_assert_not_reached ();
2508                 case CEE_JMP: {
2509                         /*
2510                          * Note: this 'frame destruction' logic is useful for tail calls, too.
2511                          * Keep in sync with the code in emit_epilog.
2512                          */
2513                         int pos = 0;
2514
2515                         /* FIXME: no tracing support... */
2516                         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
2517                                 code = mono_arch_instrument_epilog (cfg, mono_profiler_method_leave, code, FALSE);
2518                         /* reset offset to make max_len work */
2519                         offset = code - cfg->native_code;
2520
2521                         g_assert (!cfg->method->save_lmf);
2522
2523                         if (cfg->used_int_regs & (1 << X86_EBX))
2524                                 pos -= 4;
2525                         if (cfg->used_int_regs & (1 << X86_EDI))
2526                                 pos -= 4;
2527                         if (cfg->used_int_regs & (1 << X86_ESI))
2528                                 pos -= 4;
2529                         if (pos)
2530                                 x86_lea_membase (code, X86_ESP, X86_EBP, pos);
2531         
2532                         if (cfg->used_int_regs & (1 << X86_ESI))
2533                                 x86_pop_reg (code, X86_ESI);
2534                         if (cfg->used_int_regs & (1 << X86_EDI))
2535                                 x86_pop_reg (code, X86_EDI);
2536                         if (cfg->used_int_regs & (1 << X86_EBX))
2537                                 x86_pop_reg (code, X86_EBX);
2538         
2539                         /* restore ESP/EBP */
2540                         x86_leave (code);
2541                         offset = code - cfg->native_code;
2542                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD_JUMP, ins->inst_p0);
2543                         x86_jump32 (code, 0);
2544                         break;
2545                 }
2546                 case OP_CHECK_THIS:
2547                         /* ensure ins->sreg1 is not NULL */
2548                         x86_alu_membase_imm (code, X86_CMP, ins->sreg1, 0, 0);
2549                         break;
2550                 case OP_ARGLIST: {
2551                         int hreg = ins->sreg1 == X86_EAX? X86_ECX: X86_EAX;
2552                         x86_push_reg (code, hreg);
2553                         x86_lea_membase (code, hreg, X86_EBP, cfg->sig_cookie);
2554                         x86_mov_membase_reg (code, ins->sreg1, 0, hreg, 4);
2555                         x86_pop_reg (code, hreg);
2556                         break;
2557                 }
2558                 case OP_FCALL:
2559                 case OP_LCALL:
2560                 case OP_VCALL:
2561                 case OP_VOIDCALL:
2562                 case CEE_CALL:
2563                         call = (MonoCallInst*)ins;
2564                         if (ins->flags & MONO_INST_HAS_METHOD)
2565                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
2566                         else {
2567                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
2568                         }
2569                         x86_call_code (code, 0);
2570                         if (call->stack_usage && !CALLCONV_IS_STDCALL (call->signature->call_convention))
2571                                 x86_alu_reg_imm (code, X86_ADD, X86_ESP, call->stack_usage);
2572                         break;
2573                 case OP_FCALL_REG:
2574                 case OP_LCALL_REG:
2575                 case OP_VCALL_REG:
2576                 case OP_VOIDCALL_REG:
2577                 case OP_CALL_REG:
2578                         call = (MonoCallInst*)ins;
2579                         x86_call_reg (code, ins->sreg1);
2580                         if (call->stack_usage && !CALLCONV_IS_STDCALL (call->signature->call_convention))
2581                                 x86_alu_reg_imm (code, X86_ADD, X86_ESP, call->stack_usage);
2582                         break;
2583                 case OP_FCALL_MEMBASE:
2584                 case OP_LCALL_MEMBASE:
2585                 case OP_VCALL_MEMBASE:
2586                 case OP_VOIDCALL_MEMBASE:
2587                 case OP_CALL_MEMBASE:
2588                         call = (MonoCallInst*)ins;
2589                         x86_call_membase (code, ins->sreg1, ins->inst_offset);
2590                         if (call->stack_usage && !CALLCONV_IS_STDCALL (call->signature->call_convention))
2591                                 x86_alu_reg_imm (code, X86_ADD, X86_ESP, call->stack_usage);
2592                         break;
2593                 case OP_OUTARG:
2594                 case OP_X86_PUSH:
2595                         x86_push_reg (code, ins->sreg1);
2596                         break;
2597                 case OP_X86_PUSH_IMM:
2598                         x86_push_imm (code, ins->inst_imm);
2599                         break;
2600                 case OP_X86_PUSH_MEMBASE:
2601                         x86_push_membase (code, ins->inst_basereg, ins->inst_offset);
2602                         break;
2603                 case OP_X86_PUSH_OBJ: 
2604                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, ins->inst_imm);
2605                         x86_push_reg (code, X86_EDI);
2606                         x86_push_reg (code, X86_ESI);
2607                         x86_push_reg (code, X86_ECX);
2608                         if (ins->inst_offset)
2609                                 x86_lea_membase (code, X86_ESI, ins->inst_basereg, ins->inst_offset);
2610                         else
2611                                 x86_mov_reg_reg (code, X86_ESI, ins->inst_basereg, 4);
2612                         x86_lea_membase (code, X86_EDI, X86_ESP, 12);
2613                         x86_mov_reg_imm (code, X86_ECX, (ins->inst_imm >> 2));
2614                         x86_cld (code);
2615                         x86_prefix (code, X86_REP_PREFIX);
2616                         x86_movsd (code);
2617                         x86_pop_reg (code, X86_ECX);
2618                         x86_pop_reg (code, X86_ESI);
2619                         x86_pop_reg (code, X86_EDI);
2620                         break;
2621                 case OP_X86_LEA:
2622                         x86_lea_memindex (code, ins->dreg, ins->sreg1, ins->inst_imm, ins->sreg2, ins->unused);
2623                         break;
2624                 case OP_X86_LEA_MEMBASE:
2625                         x86_lea_membase (code, ins->dreg, ins->sreg1, ins->inst_imm);
2626                         break;
2627                 case OP_X86_XCHG:
2628                         x86_xchg_reg_reg (code, ins->sreg1, ins->sreg2, 4);
2629                         break;
2630                 case OP_LOCALLOC:
2631                         /* keep alignment */
2632                         x86_alu_reg_imm (code, X86_ADD, ins->sreg1, MONO_ARCH_FRAME_ALIGNMENT - 1);
2633                         x86_alu_reg_imm (code, X86_AND, ins->sreg1, ~(MONO_ARCH_FRAME_ALIGNMENT - 1));
2634                         code = mono_emit_stack_alloc (code, ins);
2635                         x86_mov_reg_reg (code, ins->dreg, X86_ESP, 4);
2636                         break;
2637                 case CEE_RET:
2638                         x86_ret (code);
2639                         break;
2640                 case CEE_THROW: {
2641                         x86_push_reg (code, ins->sreg1);
2642                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
2643                                              (gpointer)"mono_arch_throw_exception");
2644                         x86_call_code (code, 0);
2645                         break;
2646                 }
2647                 case OP_CALL_HANDLER: 
2648                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_target_bb);
2649                         x86_call_imm (code, 0);
2650                         break;
2651                 case OP_LABEL:
2652                         ins->inst_c0 = code - cfg->native_code;
2653                         break;
2654                 case CEE_BR:
2655                         //g_print ("target: %p, next: %p, curr: %p, last: %p\n", ins->inst_target_bb, bb->next_bb, ins, bb->last_ins);
2656                         //if ((ins->inst_target_bb == bb->next_bb) && ins == bb->last_ins)
2657                         //break;
2658                         if (ins->flags & MONO_INST_BRLABEL) {
2659                                 if (ins->inst_i0->inst_c0) {
2660                                         x86_jump_code (code, cfg->native_code + ins->inst_i0->inst_c0);
2661                                 } else {
2662                                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_LABEL, ins->inst_i0);
2663                                         x86_jump32 (code, 0);
2664                                 }
2665                         } else {
2666                                 if (ins->inst_target_bb->native_offset) {
2667                                         x86_jump_code (code, cfg->native_code + ins->inst_target_bb->native_offset); 
2668                                 } else {
2669                                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
2670                                         if ((cfg->opt & MONO_OPT_BRANCH) &&
2671                                             x86_is_imm8 (ins->inst_target_bb->max_offset - cpos))
2672                                                 x86_jump8 (code, 0);
2673                                         else 
2674                                                 x86_jump32 (code, 0);
2675                                 } 
2676                         }
2677                         break;
2678                 case OP_BR_REG:
2679                         x86_jump_reg (code, ins->sreg1);
2680                         break;
2681                 case OP_CEQ:
2682                         x86_set_reg (code, X86_CC_EQ, ins->dreg, TRUE);
2683                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
2684                         break;
2685                 case OP_CLT:
2686                         x86_set_reg (code, X86_CC_LT, ins->dreg, TRUE);
2687                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
2688                         break;
2689                 case OP_CLT_UN:
2690                         x86_set_reg (code, X86_CC_LT, ins->dreg, FALSE);
2691                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
2692                         break;
2693                 case OP_CGT:
2694                         x86_set_reg (code, X86_CC_GT, ins->dreg, TRUE);
2695                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
2696                         break;
2697                 case OP_CGT_UN:
2698                         x86_set_reg (code, X86_CC_GT, ins->dreg, FALSE);
2699                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
2700                         break;
2701                 case OP_COND_EXC_EQ:
2702                 case OP_COND_EXC_NE_UN:
2703                 case OP_COND_EXC_LT:
2704                 case OP_COND_EXC_LT_UN:
2705                 case OP_COND_EXC_GT:
2706                 case OP_COND_EXC_GT_UN:
2707                 case OP_COND_EXC_GE:
2708                 case OP_COND_EXC_GE_UN:
2709                 case OP_COND_EXC_LE:
2710                 case OP_COND_EXC_LE_UN:
2711                 case OP_COND_EXC_OV:
2712                 case OP_COND_EXC_NO:
2713                 case OP_COND_EXC_C:
2714                 case OP_COND_EXC_NC:
2715                         EMIT_COND_SYSTEM_EXCEPTION (branch_cc_table [ins->opcode - OP_COND_EXC_EQ], 
2716                                                     (ins->opcode < OP_COND_EXC_NE_UN), ins->inst_p1);
2717                         break;
2718                 case CEE_BEQ:
2719                 case CEE_BNE_UN:
2720                 case CEE_BLT:
2721                 case CEE_BLT_UN:
2722                 case CEE_BGT:
2723                 case CEE_BGT_UN:
2724                 case CEE_BGE:
2725                 case CEE_BGE_UN:
2726                 case CEE_BLE:
2727                 case CEE_BLE_UN:
2728                         EMIT_COND_BRANCH (ins, branch_cc_table [ins->opcode - CEE_BEQ], (ins->opcode < CEE_BNE_UN));
2729                         break;
2730
2731                 /* floating point opcodes */
2732                 case OP_R8CONST: {
2733                         double d = *(double *)ins->inst_p0;
2734
2735                         if ((d == 0.0) && (mono_signbit (d) == 0)) {
2736                                 x86_fldz (code);
2737                         } else if (d == 1.0) {
2738                                 x86_fld1 (code);
2739                         } else {
2740                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_R8, ins->inst_p0);
2741                                 x86_fld (code, NULL, TRUE);
2742                         }
2743                         break;
2744                 }
2745                 case OP_R4CONST: {
2746                         float f = *(float *)ins->inst_p0;
2747
2748                         if ((f == 0.0) && (mono_signbit (f) == 0)) {
2749                                 x86_fldz (code);
2750                         } else if (f == 1.0) {
2751                                 x86_fld1 (code);
2752                         } else {
2753                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_R4, ins->inst_p0);
2754                                 x86_fld (code, NULL, FALSE);
2755                         }
2756                         break;
2757                 }
2758                 case OP_STORER8_MEMBASE_REG:
2759                         x86_fst_membase (code, ins->inst_destbasereg, ins->inst_offset, TRUE, TRUE);
2760                         break;
2761                 case OP_LOADR8_SPILL_MEMBASE:
2762                         x86_fld_membase (code, ins->inst_basereg, ins->inst_offset, TRUE);
2763                         x86_fxch (code, 1);
2764                         break;
2765                 case OP_LOADR8_MEMBASE:
2766                         x86_fld_membase (code, ins->inst_basereg, ins->inst_offset, TRUE);
2767                         break;
2768                 case OP_STORER4_MEMBASE_REG:
2769                         x86_fst_membase (code, ins->inst_destbasereg, ins->inst_offset, FALSE, TRUE);
2770                         break;
2771                 case OP_LOADR4_MEMBASE:
2772                         x86_fld_membase (code, ins->inst_basereg, ins->inst_offset, FALSE);
2773                         break;
2774                 case CEE_CONV_R4: /* FIXME: change precision */
2775                 case CEE_CONV_R8:
2776                         x86_push_reg (code, ins->sreg1);
2777                         x86_fild_membase (code, X86_ESP, 0, FALSE);
2778                         x86_alu_reg_imm (code, X86_ADD, X86_ESP, 4);
2779                         break;
2780                 case OP_X86_FP_LOAD_I8:
2781                         x86_fild_membase (code, ins->inst_basereg, ins->inst_offset, TRUE);
2782                         break;
2783                 case OP_X86_FP_LOAD_I4:
2784                         x86_fild_membase (code, ins->inst_basereg, ins->inst_offset, FALSE);
2785                         break;
2786                 case OP_FCONV_TO_I1:
2787                         code = emit_float_to_int (cfg, code, ins->dreg, 1, TRUE);
2788                         break;
2789                 case OP_FCONV_TO_U1:
2790                         code = emit_float_to_int (cfg, code, ins->dreg, 1, FALSE);
2791                         break;
2792                 case OP_FCONV_TO_I2:
2793                         code = emit_float_to_int (cfg, code, ins->dreg, 2, TRUE);
2794                         break;
2795                 case OP_FCONV_TO_U2:
2796                         code = emit_float_to_int (cfg, code, ins->dreg, 2, FALSE);
2797                         break;
2798                 case OP_FCONV_TO_I4:
2799                 case OP_FCONV_TO_I:
2800                         code = emit_float_to_int (cfg, code, ins->dreg, 4, TRUE);
2801                         break;
2802                 case OP_FCONV_TO_I8:
2803                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 4);
2804                         x86_fnstcw_membase(code, X86_ESP, 0);
2805                         x86_mov_reg_membase (code, ins->dreg, X86_ESP, 0, 2);
2806                         x86_alu_reg_imm (code, X86_OR, ins->dreg, 0xc00);
2807                         x86_mov_membase_reg (code, X86_ESP, 2, ins->dreg, 2);
2808                         x86_fldcw_membase (code, X86_ESP, 2);
2809                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 8);
2810                         x86_fist_pop_membase (code, X86_ESP, 0, TRUE);
2811                         x86_pop_reg (code, ins->dreg);
2812                         x86_pop_reg (code, ins->unused);
2813                         x86_fldcw_membase (code, X86_ESP, 0);
2814                         x86_alu_reg_imm (code, X86_ADD, X86_ESP, 4);
2815                         break;
2816                 case OP_LCONV_TO_R_UN: { 
2817                         static guint8 mn[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x3f, 0x40 };
2818                         guint8 *br;
2819
2820                         /* load 64bit integer to FP stack */
2821                         x86_push_imm (code, 0);
2822                         x86_push_reg (code, ins->sreg2);
2823                         x86_push_reg (code, ins->sreg1);
2824                         x86_fild_membase (code, X86_ESP, 0, TRUE);
2825                         /* store as 80bit FP value */
2826                         x86_fst80_membase (code, X86_ESP, 0);
2827                         
2828                         /* test if lreg is negative */
2829                         x86_test_reg_reg (code, ins->sreg2, ins->sreg2);
2830                         br = code; x86_branch8 (code, X86_CC_GEZ, 0, TRUE);
2831         
2832                         /* add correction constant mn */
2833                         x86_fld80_mem (code, mn);
2834                         x86_fld80_membase (code, X86_ESP, 0);
2835                         x86_fp_op_reg (code, X86_FADD, 1, TRUE);
2836                         x86_fst80_membase (code, X86_ESP, 0);
2837
2838                         x86_patch (br, code);
2839
2840                         x86_fld80_membase (code, X86_ESP, 0);
2841                         x86_alu_reg_imm (code, X86_ADD, X86_ESP, 12);
2842
2843                         break;
2844                 }
2845                 case OP_LCONV_TO_OVF_I: {
2846                         guint8 *br [3], *label [1];
2847
2848                         /* 
2849                          * Valid ints: 0xffffffff:8000000 to 00000000:0x7f000000
2850                          */
2851                         x86_test_reg_reg (code, ins->sreg1, ins->sreg1);
2852
2853                         /* If the low word top bit is set, see if we are negative */
2854                         br [0] = code; x86_branch8 (code, X86_CC_LT, 0, TRUE);
2855                         /* We are not negative (no top bit set, check for our top word to be zero */
2856                         x86_test_reg_reg (code, ins->sreg2, ins->sreg2);
2857                         br [1] = code; x86_branch8 (code, X86_CC_EQ, 0, TRUE);
2858                         label [0] = code;
2859
2860                         /* throw exception */
2861                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_EXC, "OverflowException");
2862                         x86_jump32 (code, 0);
2863         
2864                         x86_patch (br [0], code);
2865                         /* our top bit is set, check that top word is 0xfffffff */
2866                         x86_alu_reg_imm (code, X86_CMP, ins->sreg2, 0xffffffff);
2867                 
2868                         x86_patch (br [1], code);
2869                         /* nope, emit exception */
2870                         br [2] = code; x86_branch8 (code, X86_CC_NE, 0, TRUE);
2871                         x86_patch (br [2], label [0]);
2872
2873                         if (ins->dreg != ins->sreg1)
2874                                 x86_mov_reg_reg (code, ins->dreg, ins->sreg1, 4);
2875                         break;
2876                 }
2877                 case OP_FADD:
2878                         x86_fp_op_reg (code, X86_FADD, 1, TRUE);
2879                         break;
2880                 case OP_FSUB:
2881                         x86_fp_op_reg (code, X86_FSUB, 1, TRUE);
2882                         break;          
2883                 case OP_FMUL:
2884                         x86_fp_op_reg (code, X86_FMUL, 1, TRUE);
2885                         break;          
2886                 case OP_FDIV:
2887                         x86_fp_op_reg (code, X86_FDIV, 1, TRUE);
2888                         break;          
2889                 case OP_FNEG:
2890                         x86_fchs (code);
2891                         break;          
2892                 case OP_SIN:
2893                         x86_fsin (code);
2894                         break;          
2895                 case OP_COS:
2896                         x86_fcos (code);
2897                         break;          
2898                 case OP_ABS:
2899                         x86_fabs (code);
2900                         break;          
2901                 case OP_TAN: {
2902                         /* 
2903                          * it really doesn't make sense to inline all this code,
2904                          * it's here just to show that things may not be as simple 
2905                          * as they appear.
2906                          */
2907                         guchar *check_pos, *end_tan, *pop_jump;
2908                         x86_push_reg (code, X86_EAX);
2909                         x86_fptan (code);
2910                         x86_fnstsw (code);
2911                         x86_test_reg_imm (code, X86_EAX, X86_FP_C2);
2912                         check_pos = code;
2913                         x86_branch8 (code, X86_CC_NE, 0, FALSE);
2914                         x86_fstp (code, 0); /* pop the 1.0 */
2915                         end_tan = code;
2916                         x86_jump8 (code, 0);
2917                         x86_fldpi (code);
2918                         x86_fp_op (code, X86_FADD, 0);
2919                         x86_fxch (code, 1);
2920                         x86_fprem1 (code);
2921                         x86_fstsw (code);
2922                         x86_test_reg_imm (code, X86_EAX, X86_FP_C2);
2923                         pop_jump = code;
2924                         x86_branch8 (code, X86_CC_NE, 0, FALSE);
2925                         x86_fstp (code, 1);
2926                         x86_fptan (code);
2927                         x86_patch (pop_jump, code);
2928                         x86_fstp (code, 0); /* pop the 1.0 */
2929                         x86_patch (check_pos, code);
2930                         x86_patch (end_tan, code);
2931                         x86_pop_reg (code, X86_EAX);
2932                         break;
2933                 }
2934                 case OP_ATAN:
2935                         x86_fld1 (code);
2936                         x86_fpatan (code);
2937                         break;          
2938                 case OP_SQRT:
2939                         x86_fsqrt (code);
2940                         break;          
2941                 case OP_X86_FPOP:
2942                         x86_fstp (code, 0);
2943                         break;          
2944                 case OP_FREM: {
2945                         guint8 *l1, *l2;
2946
2947                         x86_push_reg (code, X86_EAX);
2948                         /* we need to exchange ST(0) with ST(1) */
2949                         x86_fxch (code, 1);
2950
2951                         /* this requires a loop, because fprem somtimes 
2952                          * returns a partial remainder */
2953                         l1 = code;
2954                         /* looks like MS is using fprem instead of the IEEE compatible fprem1 */
2955                         /* x86_fprem1 (code); */
2956                         x86_fprem (code);
2957                         x86_fnstsw (code);
2958                         x86_alu_reg_imm (code, X86_AND, X86_EAX, X86_FP_C2);
2959                         l2 = code + 2;
2960                         x86_branch8 (code, X86_CC_NE, l1 - l2, FALSE);
2961
2962                         /* pop result */
2963                         x86_fstp (code, 1);
2964
2965                         x86_pop_reg (code, X86_EAX);
2966                         break;
2967                 }
2968                 case OP_FCOMPARE:
2969                         if (cfg->opt & MONO_OPT_FCMOV) {
2970                                 x86_fcomip (code, 1);
2971                                 x86_fstp (code, 0);
2972                                 break;
2973                         }
2974                         /* this overwrites EAX */
2975                         EMIT_FPCOMPARE(code);
2976                         x86_alu_reg_imm (code, X86_AND, X86_EAX, X86_FP_CC_MASK);
2977                         break;
2978                 case OP_FCEQ:
2979                         if (cfg->opt & MONO_OPT_FCMOV) {
2980                                 /* zeroing the register at the start results in 
2981                                  * shorter and faster code (we can also remove the widening op)
2982                                  */
2983                                 guchar *unordered_check;
2984                                 x86_alu_reg_reg (code, X86_XOR, ins->dreg, ins->dreg);
2985                                 x86_fcomip (code, 1);
2986                                 x86_fstp (code, 0);
2987                                 unordered_check = code;
2988                                 x86_branch8 (code, X86_CC_P, 0, FALSE);
2989                                 x86_set_reg (code, X86_CC_EQ, ins->dreg, FALSE);
2990                                 x86_patch (unordered_check, code);
2991                                 break;
2992                         }
2993                         if (ins->dreg != X86_EAX) 
2994                                 x86_push_reg (code, X86_EAX);
2995
2996                         EMIT_FPCOMPARE(code);
2997                         x86_alu_reg_imm (code, X86_AND, X86_EAX, X86_FP_CC_MASK);
2998                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, 0x4000);
2999                         x86_set_reg (code, X86_CC_EQ, ins->dreg, TRUE);
3000                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
3001
3002                         if (ins->dreg != X86_EAX) 
3003                                 x86_pop_reg (code, X86_EAX);
3004                         break;
3005                 case OP_FCLT:
3006                 case OP_FCLT_UN:
3007                         if (cfg->opt & MONO_OPT_FCMOV) {
3008                                 /* zeroing the register at the start results in 
3009                                  * shorter and faster code (we can also remove the widening op)
3010                                  */
3011                                 x86_alu_reg_reg (code, X86_XOR, ins->dreg, ins->dreg);
3012                                 x86_fcomip (code, 1);
3013                                 x86_fstp (code, 0);
3014                                 if (ins->opcode == OP_FCLT_UN) {
3015                                         guchar *unordered_check = code;
3016                                         guchar *jump_to_end;
3017                                         x86_branch8 (code, X86_CC_P, 0, FALSE);
3018                                         x86_set_reg (code, X86_CC_GT, ins->dreg, FALSE);
3019                                         jump_to_end = code;
3020                                         x86_jump8 (code, 0);
3021                                         x86_patch (unordered_check, code);
3022                                         x86_inc_reg (code, ins->dreg);
3023                                         x86_patch (jump_to_end, code);
3024                                 } else {
3025                                         x86_set_reg (code, X86_CC_GT, ins->dreg, FALSE);
3026                                 }
3027                                 break;
3028                         }
3029                         if (ins->dreg != X86_EAX) 
3030                                 x86_push_reg (code, X86_EAX);
3031
3032                         EMIT_FPCOMPARE(code);
3033                         x86_alu_reg_imm (code, X86_AND, X86_EAX, X86_FP_CC_MASK);
3034                         if (ins->opcode == OP_FCLT_UN) {
3035                                 guchar *is_not_zero_check, *end_jump;
3036                                 is_not_zero_check = code;
3037                                 x86_branch8 (code, X86_CC_NZ, 0, TRUE);
3038                                 end_jump = code;
3039                                 x86_jump8 (code, 0);
3040                                 x86_patch (is_not_zero_check, code);
3041                                 x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_CC_MASK);
3042
3043                                 x86_patch (end_jump, code);
3044                         }
3045                         x86_set_reg (code, X86_CC_EQ, ins->dreg, TRUE);
3046                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
3047
3048                         if (ins->dreg != X86_EAX) 
3049                                 x86_pop_reg (code, X86_EAX);
3050                         break;
3051                 case OP_FCGT:
3052                 case OP_FCGT_UN:
3053                         if (cfg->opt & MONO_OPT_FCMOV) {
3054                                 /* zeroing the register at the start results in 
3055                                  * shorter and faster code (we can also remove the widening op)
3056                                  */
3057                                 guchar *unordered_check;
3058                                 x86_alu_reg_reg (code, X86_XOR, ins->dreg, ins->dreg);
3059                                 x86_fcomip (code, 1);
3060                                 x86_fstp (code, 0);
3061                                 if (ins->opcode == OP_FCGT) {
3062                                         unordered_check = code;
3063                                         x86_branch8 (code, X86_CC_P, 0, FALSE);
3064                                         x86_set_reg (code, X86_CC_LT, ins->dreg, FALSE);
3065                                         x86_patch (unordered_check, code);
3066                                 } else {
3067                                         x86_set_reg (code, X86_CC_LT, ins->dreg, FALSE);
3068                                 }
3069                                 break;
3070                         }
3071                         if (ins->dreg != X86_EAX) 
3072                                 x86_push_reg (code, X86_EAX);
3073
3074                         EMIT_FPCOMPARE(code);
3075                         x86_alu_reg_imm (code, X86_AND, X86_EAX, X86_FP_CC_MASK);
3076                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C0);
3077                         if (ins->opcode == OP_FCGT_UN) {
3078                                 guchar *is_not_zero_check, *end_jump;
3079                                 is_not_zero_check = code;
3080                                 x86_branch8 (code, X86_CC_NZ, 0, TRUE);
3081                                 end_jump = code;
3082                                 x86_jump8 (code, 0);
3083                                 x86_patch (is_not_zero_check, code);
3084                                 x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_CC_MASK);
3085
3086                                 x86_patch (end_jump, code);
3087                         }
3088                         x86_set_reg (code, X86_CC_EQ, ins->dreg, TRUE);
3089                         x86_widen_reg (code, ins->dreg, ins->dreg, FALSE, FALSE);
3090
3091                         if (ins->dreg != X86_EAX) 
3092                                 x86_pop_reg (code, X86_EAX);
3093                         break;
3094                 case OP_FBEQ:
3095                         if (cfg->opt & MONO_OPT_FCMOV) {
3096                                 guchar *jump = code;
3097                                 x86_branch8 (code, X86_CC_P, 0, TRUE);
3098                                 EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3099                                 x86_patch (jump, code);
3100                                 break;
3101                         }
3102                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, 0x4000);
3103                         EMIT_COND_BRANCH (ins, X86_CC_EQ, TRUE);
3104                         break;
3105                 case OP_FBNE_UN:
3106                         /* Branch if C013 != 100 */
3107                         if (cfg->opt & MONO_OPT_FCMOV) {
3108                                 /* branch if !ZF or (PF|CF) */
3109                                 EMIT_COND_BRANCH (ins, X86_CC_NE, FALSE);
3110                                 EMIT_COND_BRANCH (ins, X86_CC_P, FALSE);
3111                                 EMIT_COND_BRANCH (ins, X86_CC_B, FALSE);
3112                                 break;
3113                         }
3114                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C3);
3115                         EMIT_COND_BRANCH (ins, X86_CC_NE, FALSE);
3116                         break;
3117                 case OP_FBLT:
3118                         if (cfg->opt & MONO_OPT_FCMOV) {
3119                                 EMIT_COND_BRANCH (ins, X86_CC_GT, FALSE);
3120                                 break;
3121                         }
3122                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3123                         break;
3124                 case OP_FBLT_UN:
3125                         if (cfg->opt & MONO_OPT_FCMOV) {
3126                                 EMIT_COND_BRANCH (ins, X86_CC_P, FALSE);
3127                                 EMIT_COND_BRANCH (ins, X86_CC_GT, FALSE);
3128                                 break;
3129                         }
3130                         if (ins->opcode == OP_FBLT_UN) {
3131                                 guchar *is_not_zero_check, *end_jump;
3132                                 is_not_zero_check = code;
3133                                 x86_branch8 (code, X86_CC_NZ, 0, TRUE);
3134                                 end_jump = code;
3135                                 x86_jump8 (code, 0);
3136                                 x86_patch (is_not_zero_check, code);
3137                                 x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_CC_MASK);
3138
3139                                 x86_patch (end_jump, code);
3140                         }
3141                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3142                         break;
3143                 case OP_FBGT:
3144                 case OP_FBGT_UN:
3145                         if (cfg->opt & MONO_OPT_FCMOV) {
3146                                 EMIT_COND_BRANCH (ins, X86_CC_LT, FALSE);
3147                                 break;
3148                         }
3149                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C0);
3150                         if (ins->opcode == OP_FBGT_UN) {
3151                                 guchar *is_not_zero_check, *end_jump;
3152                                 is_not_zero_check = code;
3153                                 x86_branch8 (code, X86_CC_NZ, 0, TRUE);
3154                                 end_jump = code;
3155                                 x86_jump8 (code, 0);
3156                                 x86_patch (is_not_zero_check, code);
3157                                 x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_CC_MASK);
3158
3159                                 x86_patch (end_jump, code);
3160                         }
3161                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3162                         break;
3163                 case OP_FBGE:
3164                         /* Branch if C013 == 100 or 001 */
3165                         if (cfg->opt & MONO_OPT_FCMOV) {
3166                                 guchar *br1;
3167
3168                                 /* skip branch if C1=1 */
3169                                 br1 = code;
3170                                 x86_branch8 (code, X86_CC_P, 0, FALSE);
3171                                 /* branch if (C0 | C3) = 1 */
3172                                 EMIT_COND_BRANCH (ins, X86_CC_BE, FALSE);
3173                                 x86_patch (br1, code);
3174                                 break;
3175                         }
3176                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C0);
3177                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3178                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C3);
3179                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3180                         break;
3181                 case OP_FBGE_UN:
3182                         /* Branch if C013 == 000 */
3183                         if (cfg->opt & MONO_OPT_FCMOV) {
3184                                 EMIT_COND_BRANCH (ins, X86_CC_LE, FALSE);
3185                                 break;
3186                         }
3187                         EMIT_COND_BRANCH (ins, X86_CC_NE, FALSE);
3188                         break;
3189                 case OP_FBLE:
3190                         /* Branch if C013=000 or 100 */
3191                         if (cfg->opt & MONO_OPT_FCMOV) {
3192                                 guchar *br1;
3193
3194                                 /* skip branch if C1=1 */
3195                                 br1 = code;
3196                                 x86_branch8 (code, X86_CC_P, 0, FALSE);
3197                                 /* branch if C0=0 */
3198                                 EMIT_COND_BRANCH (ins, X86_CC_NB, FALSE);
3199                                 x86_patch (br1, code);
3200                                 break;
3201                         }
3202                         x86_alu_reg_imm (code, X86_AND, X86_EAX, (X86_FP_C0|X86_FP_C1));
3203                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, 0);
3204                         EMIT_COND_BRANCH (ins, X86_CC_EQ, FALSE);
3205                         break;
3206                 case OP_FBLE_UN:
3207                         /* Branch if C013 != 001 */
3208                         if (cfg->opt & MONO_OPT_FCMOV) {
3209                                 EMIT_COND_BRANCH (ins, X86_CC_P, FALSE);
3210                                 EMIT_COND_BRANCH (ins, X86_CC_GE, FALSE);
3211                                 break;
3212                         }
3213                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C0);
3214                         EMIT_COND_BRANCH (ins, X86_CC_NE, FALSE);
3215                         break;
3216                 case CEE_CKFINITE: {
3217                         x86_push_reg (code, X86_EAX);
3218                         x86_fxam (code);
3219                         x86_fnstsw (code);
3220                         x86_alu_reg_imm (code, X86_AND, X86_EAX, 0x4100);
3221                         x86_alu_reg_imm (code, X86_CMP, X86_EAX, X86_FP_C0);
3222                         x86_pop_reg (code, X86_EAX);
3223                         EMIT_COND_SYSTEM_EXCEPTION (X86_CC_EQ, FALSE, "ArithmeticException");
3224                         break;
3225                 }
3226                 default:
3227                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
3228                         g_assert_not_reached ();
3229                 }
3230
3231                 if ((code - cfg->native_code - offset) > max_len) {
3232                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
3233                                    mono_inst_name (ins->opcode), max_len, code - cfg->native_code - offset);
3234                         g_assert_not_reached ();
3235                 }
3236                
3237                 cpos += max_len;
3238
3239                 last_ins = ins;
3240                 last_offset = offset;
3241                 
3242                 ins = ins->next;
3243         }
3244
3245         cfg->code_len = code - cfg->native_code;
3246 }
3247
3248 void
3249 mono_arch_register_lowlevel_calls (void)
3250 {
3251         mono_register_jit_icall (mono_arch_get_lmf_addr, "mono_arch_get_lmf_addr", NULL, TRUE);
3252 }
3253
3254 void
3255 mono_arch_patch_code (MonoMethod *method, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gboolean run_cctors)
3256 {
3257         MonoJumpInfo *patch_info;
3258
3259         for (patch_info = ji; patch_info; patch_info = patch_info->next) {
3260                 unsigned char *ip = patch_info->ip.i + code;
3261                 const unsigned char *target;
3262
3263                 target = mono_resolve_patch_target (method, domain, code, patch_info, run_cctors);
3264
3265                 switch (patch_info->type) {
3266                 case MONO_PATCH_INFO_IP:
3267                         *((gconstpointer *)(ip)) = target;
3268                         continue;
3269                 case MONO_PATCH_INFO_METHOD_REL:
3270                         *((gconstpointer *)(ip)) = target;
3271                         continue;
3272                 case MONO_PATCH_INFO_SWITCH: {
3273                         *((gconstpointer *)(ip + 2)) = target;
3274                         /* we put into the table the absolute address, no need for x86_patch in this case */
3275                         continue;
3276                 }
3277                 case MONO_PATCH_INFO_IID:
3278                         *((guint32 *)(ip + 1)) = (guint32)target;
3279                         continue;                       
3280                 case MONO_PATCH_INFO_CLASS_INIT: {
3281                         guint8 *code = ip;
3282                         /* Might already been changed to a nop */
3283                         x86_call_imm (code, 0);
3284                         break;
3285                 }
3286                 case MONO_PATCH_INFO_R4:
3287                 case MONO_PATCH_INFO_R8:
3288                         *((gconstpointer *)(ip + 2)) = target;
3289                         continue;
3290                 case MONO_PATCH_INFO_METHODCONST:
3291                 case MONO_PATCH_INFO_CLASS:
3292                 case MONO_PATCH_INFO_IMAGE:
3293                 case MONO_PATCH_INFO_FIELD:
3294                 case MONO_PATCH_INFO_VTABLE:
3295                 case MONO_PATCH_INFO_SFLDA:
3296                 case MONO_PATCH_INFO_EXC_NAME:
3297                 case MONO_PATCH_INFO_LDSTR:
3298                 case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
3299                 case MONO_PATCH_INFO_LDTOKEN:
3300                         *((gconstpointer *)(ip + 1)) = target;
3301                         continue;
3302                 default:
3303                         break;
3304                 }
3305                 x86_patch (ip, target);
3306         }
3307 }
3308
3309 int
3310 mono_arch_max_epilog_size (MonoCompile *cfg)
3311 {
3312         int exc_count = 0, max_epilog_size = 16;
3313         MonoJumpInfo *patch_info;
3314         
3315         if (cfg->method->save_lmf)
3316                 max_epilog_size += 128;
3317         
3318         if (mono_jit_trace_calls != NULL)
3319                 max_epilog_size += 50;
3320
3321         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
3322                 max_epilog_size += 50;
3323
3324         /* count the number of exception infos */
3325      
3326         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
3327                 if (patch_info->type == MONO_PATCH_INFO_EXC)
3328                         exc_count++;
3329         }
3330
3331         /* 
3332          * make sure we have enough space for exceptions
3333          * 16 is the size of two push_imm instructions and a call
3334          */
3335         max_epilog_size += exc_count*16;
3336
3337         return max_epilog_size;
3338 }
3339
3340 guint8 *
3341 mono_arch_emit_prolog (MonoCompile *cfg)
3342 {
3343         MonoMethod *method = cfg->method;
3344         MonoBasicBlock *bb;
3345         MonoMethodSignature *sig;
3346         MonoInst *inst;
3347         int alloc_size, pos, max_offset, i;
3348         guint8 *code;
3349
3350         cfg->code_size =  MAX (((MonoMethodNormal *)method)->header->code_size * 4, 256);
3351         code = cfg->native_code = g_malloc (cfg->code_size);
3352
3353         x86_push_reg (code, X86_EBP);
3354         x86_mov_reg_reg (code, X86_EBP, X86_ESP, 4);
3355
3356         alloc_size = - cfg->stack_offset;
3357         pos = 0;
3358
3359         if (method->save_lmf) {
3360                 pos += sizeof (MonoLMF);
3361
3362                 /* save the current IP */
3363                 mono_add_patch_info (cfg, code + 1 - cfg->native_code, MONO_PATCH_INFO_IP, NULL);
3364                 x86_push_imm (code, 0);
3365
3366                 /* save all caller saved regs */
3367                 x86_push_reg (code, X86_EBP);
3368                 x86_push_reg (code, X86_ESI);
3369                 x86_push_reg (code, X86_EDI);
3370                 x86_push_reg (code, X86_EBX);
3371
3372                 /* save method info */
3373                 x86_push_imm (code, method);
3374
3375                 /* get the address of lmf for the current thread */
3376                 /* 
3377                  * This is performance critical so we try to use some tricks to make
3378                  * it fast.
3379                  */
3380                 if (lmf_tls_offset != -1) {
3381                         /* Load lmf quicky using the GS register */
3382                         x86_prefix (code, X86_GS_PREFIX);
3383                         x86_mov_reg_mem (code, X86_EAX, 0, 4);
3384                         x86_mov_reg_membase (code, X86_EAX, X86_EAX, lmf_tls_offset, 4);
3385                 }
3386                 else {
3387 #ifdef HAVE_KW_THREAD
3388                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3389                                                                  (gpointer)"mono_arch_get_lmf_addr");
3390 #else
3391                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
3392                                                                  (gpointer)"mono_get_lmf_addr");
3393 #endif
3394                         x86_call_code (code, 0);
3395                 }
3396
3397                 /* push lmf */
3398                 x86_push_reg (code, X86_EAX); 
3399                 /* push *lfm (previous_lmf) */
3400                 x86_push_membase (code, X86_EAX, 0);
3401                 /* *(lmf) = ESP */
3402                 x86_mov_membase_reg (code, X86_EAX, 0, X86_ESP, 4);
3403         } else {
3404
3405                 if (cfg->used_int_regs & (1 << X86_EBX)) {
3406                         x86_push_reg (code, X86_EBX);
3407                         pos += 4;
3408                 }
3409
3410                 if (cfg->used_int_regs & (1 << X86_EDI)) {
3411                         x86_push_reg (code, X86_EDI);
3412                         pos += 4;
3413                 }
3414
3415                 if (cfg->used_int_regs & (1 << X86_ESI)) {
3416                         x86_push_reg (code, X86_ESI);
3417                         pos += 4;
3418                 }
3419         }
3420
3421         alloc_size -= pos;
3422
3423         if (alloc_size) {
3424                 /* See mono_emit_stack_alloc */
3425 #ifdef PLATFORM_WIN32
3426                 guint32 remaining_size = alloc_size;
3427                 while (remaining_size >= 0x1000) {
3428                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, 0x1000);
3429                         x86_test_membase_reg (code, X86_ESP, 0, X86_ESP);
3430                         remaining_size -= 0x1000;
3431                 }
3432                 if (remaining_size)
3433                         x86_alu_reg_imm (code, X86_SUB, X86_ESP, remaining_size);
3434 #else
3435                 x86_alu_reg_imm (code, X86_SUB, X86_ESP, alloc_size);
3436 #endif
3437         }
3438
3439         /* compute max_offset in order to use short forward jumps */
3440         max_offset = 0;
3441         if (cfg->opt & MONO_OPT_BRANCH) {
3442                 for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
3443                         MonoInst *ins = bb->code;
3444                         bb->max_offset = max_offset;
3445
3446                         if (cfg->prof_options & MONO_PROFILE_COVERAGE)
3447                                 max_offset += 6; 
3448
3449                         while (ins) {
3450                                 max_offset += ((guint8 *)ins_spec [ins->opcode])[MONO_INST_LEN];
3451                                 ins = ins->next;
3452                         }
3453                 }
3454         }
3455
3456         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
3457                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
3458
3459         /* load arguments allocated to register from the stack */
3460         sig = method->signature;
3461         pos = 0;
3462
3463         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
3464                 inst = cfg->varinfo [pos];
3465                 if (inst->opcode == OP_REGVAR) {
3466                         x86_mov_reg_membase (code, inst->dreg, X86_EBP, inst->inst_offset, 4);
3467                         if (cfg->verbose_level > 2)
3468                                 g_print ("Argument %d assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
3469                 }
3470                 pos++;
3471         }
3472
3473         cfg->code_len = code - cfg->native_code;
3474
3475         return code;
3476 }
3477
3478 void
3479 mono_arch_emit_epilog (MonoCompile *cfg)
3480 {
3481         MonoJumpInfo *patch_info;
3482         MonoMethod *method = cfg->method;
3483         MonoMethodSignature *sig = method->signature;
3484         int pos;
3485         guint32 stack_to_pop;
3486         guint8 *code;
3487
3488         code = cfg->native_code + cfg->code_len;
3489
3490         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
3491                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
3492
3493         /* the code restoring the registers must be kept in sync with CEE_JMP */
3494         pos = 0;
3495         
3496         if (method->save_lmf) {
3497                 gint32 prev_lmf_reg;
3498
3499                 /* Find a spare register */
3500                 switch (sig->ret->type) {
3501                 case MONO_TYPE_I8:
3502                 case MONO_TYPE_U8:
3503                         prev_lmf_reg = X86_EDI;
3504                         cfg->used_int_regs |= (1 << X86_EDI);
3505                         break;
3506                 default:
3507                         prev_lmf_reg = X86_EDX;
3508                         break;
3509                 }
3510
3511                 /* reg = previous_lmf */
3512                 x86_mov_reg_membase (code, prev_lmf_reg, X86_EBP, -32, 4);
3513
3514                 /* ecx = lmf */
3515                 x86_mov_reg_membase (code, X86_ECX, X86_EBP, -28, 4);
3516
3517                 /* *(lmf) = previous_lmf */
3518                 x86_mov_membase_reg (code, X86_ECX, 0, prev_lmf_reg, 4);
3519
3520                 /* restore caller saved regs */
3521                 if (cfg->used_int_regs & (1 << X86_EBX)) {
3522                         x86_mov_reg_membase (code, X86_EBX, X86_EBP, -20, 4);
3523                 }
3524
3525                 if (cfg->used_int_regs & (1 << X86_EDI)) {
3526                         x86_mov_reg_membase (code, X86_EDI, X86_EBP, -16, 4);
3527                 }
3528                 if (cfg->used_int_regs & (1 << X86_ESI)) {
3529                         x86_mov_reg_membase (code, X86_ESI, X86_EBP, -12, 4);
3530                 }
3531
3532                 /* EBP is restored by LEAVE */
3533         } else {
3534                 if (cfg->used_int_regs & (1 << X86_EBX)) {
3535                         pos -= 4;
3536                 }
3537                 if (cfg->used_int_regs & (1 << X86_EDI)) {
3538                         pos -= 4;
3539                 }
3540                 if (cfg->used_int_regs & (1 << X86_ESI)) {
3541                         pos -= 4;
3542                 }
3543
3544                 if (pos)
3545                         x86_lea_membase (code, X86_ESP, X86_EBP, pos);
3546
3547                 if (cfg->used_int_regs & (1 << X86_ESI)) {
3548                         x86_pop_reg (code, X86_ESI);
3549                 }
3550                 if (cfg->used_int_regs & (1 << X86_EDI)) {
3551                         x86_pop_reg (code, X86_EDI);
3552                 }
3553                 if (cfg->used_int_regs & (1 << X86_EBX)) {
3554                         x86_pop_reg (code, X86_EBX);
3555                 }
3556         }
3557
3558         x86_leave (code);
3559
3560         if (CALLCONV_IS_STDCALL (sig->call_convention)) {
3561                 MonoJitArgumentInfo *arg_info = alloca (sizeof (MonoJitArgumentInfo) * (sig->param_count + 1));
3562
3563                 stack_to_pop = mono_arch_get_argument_info (sig, sig->param_count, arg_info);
3564         } else if (MONO_TYPE_ISSTRUCT (cfg->method->signature->ret))
3565                 stack_to_pop = 4;
3566         else
3567                 stack_to_pop = 0;
3568
3569         if (stack_to_pop)
3570                 x86_ret_imm (code, stack_to_pop);
3571         else
3572                 x86_ret (code);
3573
3574         /* add code to raise exceptions */
3575         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
3576                 switch (patch_info->type) {
3577                 case MONO_PATCH_INFO_EXC:
3578                         x86_patch (patch_info->ip.i + cfg->native_code, code);
3579                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_EXC_NAME, patch_info->data.target);
3580                         x86_push_imm (code, patch_info->data.target);
3581                         mono_add_patch_info (cfg, code + 1 - cfg->native_code, MONO_PATCH_INFO_METHOD_REL, (gpointer)patch_info->ip.i);
3582                         x86_push_imm (code, patch_info->ip.i + cfg->native_code);
3583                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
3584                         patch_info->data.name = "mono_arch_throw_exception_by_name";
3585                         patch_info->ip.i = code - cfg->native_code;
3586                         x86_jump_code (code, 0);
3587                         break;
3588                 default:
3589                         /* do nothing */
3590                         break;
3591                 }
3592         }
3593
3594         cfg->code_len = code - cfg->native_code;
3595
3596         g_assert (cfg->code_len < cfg->code_size);
3597
3598 }
3599
3600 void
3601 mono_arch_flush_icache (guint8 *code, gint size)
3602 {
3603         /* not needed */
3604 }
3605
3606 void
3607 mono_arch_flush_register_windows (void)
3608 {
3609 }
3610
3611 /*
3612  * Support for fast access to the thread-local lmf structure using the GS
3613  * segment register on NPTL + kernel 2.6.x.
3614  */
3615
3616 static gboolean tls_offset_inited = FALSE;
3617
3618 #ifdef HAVE_KW_THREAD
3619 static __thread gpointer mono_lmf_addr;
3620 #endif
3621
3622 static gpointer
3623 mono_arch_get_lmf_addr (void)
3624 {
3625 #ifdef HAVE_KW_THREAD
3626         return mono_lmf_addr;
3627 #else
3628         g_assert_not_reached ();
3629         return NULL;
3630 #endif
3631 }
3632
3633 void
3634 mono_arch_setup_jit_tls_data (MonoJitTlsData *tls)
3635 {
3636 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
3637         pthread_t self = pthread_self();
3638         pthread_attr_t attr;
3639         void *staddr = NULL;
3640         size_t stsize = 0;
3641         struct sigaltstack sa;
3642 #endif
3643
3644         if (!tls_offset_inited) {
3645                 guint8 *code;
3646
3647                 tls_offset_inited = TRUE;
3648
3649                 if (getenv ("MONO_NPTL")) {
3650                         /* 
3651                          * Determine the offset of mono_lfm_addr inside the TLS structures
3652                          * by disassembling the function above.
3653                          */
3654                         code = (guint8*)&mono_arch_get_lmf_addr;
3655
3656                         /* This is generated by gcc 3.3.2 */
3657                         if ((code [0] == 0x55) && (code [1] == 0x89) && (code [2] == 0xe5) &&
3658                                 (code [3] == 0x65) && (code [4] == 0xa1) && (code [5] == 0x00) &&
3659                                 (code [6] == 0x00) && (code [7] == 0x00) && (code [8] == 0x00) &&
3660                                 (code [9] == 0x8b) && (code [10] == 0x80)) {
3661                                 lmf_tls_offset = *(int*)&(code [11]);
3662                         }
3663                         else
3664                                 /* This is generated by gcc-3.4 */
3665                                 if ((code [0] == 0x55) && (code [1] == 0x89) && (code [2] == 0xe5) &&
3666                                         (code [3] == 0x65) && (code [4] == 0xa1)) {
3667                                         lmf_tls_offset = *(int*)&(code [5]);
3668                                 }
3669                 }
3670         }               
3671
3672 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
3673
3674         /* Determine stack boundaries */
3675         if (!mono_running_on_valgrind ()) {
3676 #ifdef HAVE_PTHREAD_GETATTR_NP
3677                 pthread_getattr_np( self, &attr );
3678 #else
3679 #ifdef HAVE_PTHREAD_ATTR_GET_NP
3680                 pthread_attr_get_np( self, &attr );
3681 #else
3682 #error "Not implemented"
3683 #endif
3684 #endif
3685                 pthread_attr_getstack( &attr, &staddr, &stsize );
3686         }
3687
3688         /* 
3689          * staddr seems to be wrong for the main thread, so we keep the value in
3690          * tls->end_of_stack
3691          */
3692         tls->stack_size = stsize;
3693
3694         /* Setup an alternate signal stack */
3695         tls->signal_stack = g_malloc (SIGNAL_STACK_SIZE);
3696         tls->signal_stack_size = SIGNAL_STACK_SIZE;
3697
3698         sa.ss_sp = tls->signal_stack;
3699         sa.ss_size = SIGNAL_STACK_SIZE;
3700         sa.ss_flags = SS_ONSTACK;
3701         sigaltstack (&sa, NULL);
3702 #endif
3703
3704 #ifdef HAVE_KW_THREAD
3705         mono_lmf_addr = &tls->lmf;
3706 #endif
3707 }
3708
3709 void
3710 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
3711 {
3712 #ifdef MONO_ARCH_SIGSEGV_ON_ALTSTACK
3713         struct sigaltstack sa;
3714
3715         sa.ss_sp = tls->signal_stack;
3716         sa.ss_size = SIGNAL_STACK_SIZE;
3717         sa.ss_flags = SS_DISABLE;
3718         sigaltstack  (&sa, NULL);
3719
3720         if (tls->signal_stack)
3721                 g_free (tls->signal_stack);
3722 #endif
3723 }
3724
3725 void
3726 mono_arch_emit_this_vret_args (MonoCompile *cfg, MonoCallInst *inst, int this_reg, int this_type, int vt_reg)
3727 {
3728
3729         /* add the this argument */
3730         if (this_reg != -1) {
3731                 MonoInst *this;
3732                 MONO_INST_NEW (cfg, this, OP_OUTARG);
3733                 this->type = this_type;
3734                 this->sreg1 = this_reg;
3735                 mono_bblock_add_inst (cfg->cbb, this);
3736         }
3737
3738         if (vt_reg != -1) {
3739                 MonoInst *vtarg;
3740                 MONO_INST_NEW (cfg, vtarg, OP_OUTARG);
3741                 vtarg->type = STACK_MP;
3742                 vtarg->sreg1 = vt_reg;
3743                 mono_bblock_add_inst (cfg->cbb, vtarg);
3744         }
3745 }
3746
3747
3748 gint
3749 mono_arch_get_opcode_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
3750 {
3751         if (cmethod->klass == mono_defaults.math_class) {
3752                 if (strcmp (cmethod->name, "Sin") == 0)
3753                         return OP_SIN;
3754                 else if (strcmp (cmethod->name, "Cos") == 0)
3755                         return OP_COS;
3756                 else if (strcmp (cmethod->name, "Tan") == 0)
3757                         return OP_TAN;
3758                 else if (strcmp (cmethod->name, "Atan") == 0)
3759                         return OP_ATAN;
3760                 else if (strcmp (cmethod->name, "Sqrt") == 0)
3761                         return OP_SQRT;
3762                 else if (strcmp (cmethod->name, "Abs") == 0 && fsig->params [0]->type == MONO_TYPE_R8)
3763                         return OP_ABS;
3764 #if 0
3765                 /* OP_FREM is not IEEE compatible */
3766                 else if (strcmp (cmethod->name, "IEEERemainder") == 0)
3767                         return OP_FREM;
3768 #endif
3769                 else
3770                         return -1;
3771         } else {
3772                 return -1;
3773         }
3774         return -1;
3775 }
3776
3777
3778 gboolean
3779 mono_arch_print_tree (MonoInst *tree, int arity)
3780 {
3781         return 0;
3782 }