[arm] Re-enable fast tls on all targets
[mono.git] / mono / mini / mini-arm.c
1 /*
2  * mini-arm.c: ARM backend for the Mono code generator
3  *
4  * Authors:
5  *   Paolo Molaro (lupus@ximian.com)
6  *   Dietmar Maurer (dietmar@ximian.com)
7  *
8  * (C) 2003 Ximian, Inc.
9  * Copyright 2003-2011 Novell, Inc (http://www.novell.com)
10  * Copyright 2011 Xamarin, Inc (http://www.xamarin.com)
11  */
12 #include "mini.h"
13 #include <string.h>
14
15 #include <mono/metadata/abi-details.h>
16 #include <mono/metadata/appdomain.h>
17 #include <mono/metadata/profiler-private.h>
18 #include <mono/metadata/debug-helpers.h>
19 #include <mono/utils/mono-mmap.h>
20 #include <mono/utils/mono-hwcap-arm.h>
21 #include <mono/utils/mono-memory-model.h>
22
23 #include "mini-arm.h"
24 #include "mini-arm-tls.h"
25 #include "cpu-arm.h"
26 #include "trace.h"
27 #include "ir-emit.h"
28 #include "debugger-agent.h"
29 #include "mini-gc.h"
30 #include "mono/arch/arm/arm-vfp-codegen.h"
31
32 #if (defined(HAVE_KW_THREAD) && defined(__linux__) && defined(__ARM_EABI__)) \
33         || defined(TARGET_ANDROID) \
34         || (defined(TARGET_IOS) && !defined(TARGET_WATCHOS))
35 #define HAVE_FAST_TLS
36 #endif
37
38 /* Sanity check: This makes no sense */
39 #if defined(ARM_FPU_NONE) && (defined(ARM_FPU_VFP) || defined(ARM_FPU_VFP_HARD))
40 #error "ARM_FPU_NONE is defined while one of ARM_FPU_VFP/ARM_FPU_VFP_HARD is defined"
41 #endif
42
43 /*
44  * IS_SOFT_FLOAT: Is full software floating point used?
45  * IS_HARD_FLOAT: Is full hardware floating point used?
46  * IS_VFP: Is hardware floating point with software ABI used?
47  *
48  * These are not necessarily constants, e.g. IS_SOFT_FLOAT and
49  * IS_VFP may delegate to mono_arch_is_soft_float ().
50  */
51
52 #if defined(ARM_FPU_VFP_HARD)
53 #define IS_SOFT_FLOAT (FALSE)
54 #define IS_HARD_FLOAT (TRUE)
55 #define IS_VFP (TRUE)
56 #elif defined(ARM_FPU_NONE)
57 #define IS_SOFT_FLOAT (mono_arch_is_soft_float ())
58 #define IS_HARD_FLOAT (FALSE)
59 #define IS_VFP (!mono_arch_is_soft_float ())
60 #else
61 #define IS_SOFT_FLOAT (FALSE)
62 #define IS_HARD_FLOAT (FALSE)
63 #define IS_VFP (TRUE)
64 #endif
65
66 #define THUNK_SIZE (3 * 4)
67
68 #ifdef __native_client_codegen__
69 const guint kNaClAlignment = kNaClAlignmentARM;
70 const guint kNaClAlignmentMask = kNaClAlignmentMaskARM;
71 gint8 nacl_align_byte = -1; /* 0xff */
72
73 guint8 *
74 mono_arch_nacl_pad (guint8 *code, int pad)
75 {
76   /* Not yet properly implemented. */
77   g_assert_not_reached ();
78   return code;
79 }
80
81 guint8 *
82 mono_arch_nacl_skip_nops (guint8 *code)
83 {
84   /* Not yet properly implemented. */
85   g_assert_not_reached ();
86   return code;
87 }
88
89 #endif /* __native_client_codegen__ */
90
91 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
92
93 #if __APPLE__
94 void sys_icache_invalidate (void *start, size_t len);
95 #endif
96
97 /* This mutex protects architecture specific caches */
98 #define mono_mini_arch_lock() mono_mutex_lock (&mini_arch_mutex)
99 #define mono_mini_arch_unlock() mono_mutex_unlock (&mini_arch_mutex)
100 static mono_mutex_t mini_arch_mutex;
101
102 static gboolean v5_supported = FALSE;
103 static gboolean v6_supported = FALSE;
104 static gboolean v7_supported = FALSE;
105 static gboolean v7s_supported = FALSE;
106 static gboolean v7k_supported = FALSE;
107 static gboolean thumb_supported = FALSE;
108 static gboolean thumb2_supported = FALSE;
109 /*
110  * Whenever to use the ARM EABI
111  */
112 static gboolean eabi_supported = FALSE;
113
114 /* 
115  * Whenever to use the iphone ABI extensions:
116  * http://developer.apple.com/library/ios/documentation/Xcode/Conceptual/iPhoneOSABIReference/index.html
117  * Basically, r7 is used as a frame pointer and it should point to the saved r7 + lr.
118  * This is required for debugging/profiling tools to work, but it has some overhead so it should
119  * only be turned on in debug builds.
120  */
121 static gboolean iphone_abi = FALSE;
122
123 /*
124  * The FPU we are generating code for. This is NOT runtime configurable right now,
125  * since some things like MONO_ARCH_CALLEE_FREGS still depend on defines.
126  */
127 static MonoArmFPU arm_fpu;
128
129 #if defined(ARM_FPU_VFP_HARD)
130 /*
131  * On armhf, d0-d7 are used for argument passing and d8-d15
132  * must be preserved across calls, which leaves us no room
133  * for scratch registers. So we use d14-d15 but back up their
134  * previous contents to a stack slot before using them - see
135  * mono_arm_emit_vfp_scratch_save/_restore ().
136  */
137 static int vfp_scratch1 = ARM_VFP_D14;
138 static int vfp_scratch2 = ARM_VFP_D15;
139 #else
140 /*
141  * On armel, d0-d7 do not need to be preserved, so we can
142  * freely make use of them as scratch registers.
143  */
144 static int vfp_scratch1 = ARM_VFP_D0;
145 static int vfp_scratch2 = ARM_VFP_D1;
146 #endif
147
148 static int i8_align;
149
150 static gpointer single_step_tramp, breakpoint_tramp;
151
152 /*
153  * The code generated for sequence points reads from this location, which is
154  * made read-only when single stepping is enabled.
155  */
156 static gpointer ss_trigger_page;
157
158 /* Enabled breakpoints read from this trigger page */
159 static gpointer bp_trigger_page;
160
161 /*
162  * TODO:
163  * floating point support: on ARM it is a mess, there are at least 3
164  * different setups, each of which binary incompat with the other.
165  * 1) FPA: old and ugly, but unfortunately what current distros use
166  *    the double binary format has the two words swapped. 8 double registers.
167  *    Implemented usually by kernel emulation.
168  * 2) softfloat: the compiler emulates all the fp ops. Usually uses the
169  *    ugly swapped double format (I guess a softfloat-vfp exists, too, though).
170  * 3) VFP: the new and actually sensible and useful FP support. Implemented
171  *    in HW or kernel-emulated, requires new tools. I think this is what symbian uses.
172  *
173  * We do not care about FPA. We will support soft float and VFP.
174  */
175 int mono_exc_esp_offset = 0;
176
177 #define arm_is_imm12(v) ((v) > -4096 && (v) < 4096)
178 #define arm_is_imm8(v) ((v) > -256 && (v) < 256)
179 #define arm_is_fpimm8(v) ((v) >= -1020 && (v) <= 1020)
180
181 #define LDR_MASK ((0xf << ARMCOND_SHIFT) | (3 << 26) | (1 << 22) | (1 << 20) | (15 << 12))
182 #define LDR_PC_VAL ((ARMCOND_AL << ARMCOND_SHIFT) | (1 << 26) | (0 << 22) | (1 << 20) | (15 << 12))
183 #define IS_LDR_PC(val) (((val) & LDR_MASK) == LDR_PC_VAL)
184
185 //#define DEBUG_IMT 0
186
187 #ifndef DISABLE_JIT
188 static void mono_arch_compute_omit_fp (MonoCompile *cfg);
189 #endif
190
191 const char*
192 mono_arch_regname (int reg)
193 {
194         static const char * rnames[] = {
195                 "arm_r0", "arm_r1", "arm_r2", "arm_r3", "arm_v1",
196                 "arm_v2", "arm_v3", "arm_v4", "arm_v5", "arm_v6",
197                 "arm_v7", "arm_fp", "arm_ip", "arm_sp", "arm_lr",
198                 "arm_pc"
199         };
200         if (reg >= 0 && reg < 16)
201                 return rnames [reg];
202         return "unknown";
203 }
204
205 const char*
206 mono_arch_fregname (int reg)
207 {
208         static const char * rnames[] = {
209                 "arm_f0", "arm_f1", "arm_f2", "arm_f3", "arm_f4",
210                 "arm_f5", "arm_f6", "arm_f7", "arm_f8", "arm_f9",
211                 "arm_f10", "arm_f11", "arm_f12", "arm_f13", "arm_f14",
212                 "arm_f15", "arm_f16", "arm_f17", "arm_f18", "arm_f19",
213                 "arm_f20", "arm_f21", "arm_f22", "arm_f23", "arm_f24",
214                 "arm_f25", "arm_f26", "arm_f27", "arm_f28", "arm_f29",
215                 "arm_f30", "arm_f31"
216         };
217         if (reg >= 0 && reg < 32)
218                 return rnames [reg];
219         return "unknown";
220 }
221
222
223 #ifndef DISABLE_JIT
224 static guint8*
225 emit_big_add (guint8 *code, int dreg, int sreg, int imm)
226 {
227         int imm8, rot_amount;
228         if ((imm8 = mono_arm_is_rotated_imm8 (imm, &rot_amount)) >= 0) {
229                 ARM_ADD_REG_IMM (code, dreg, sreg, imm8, rot_amount);
230                 return code;
231         }
232         if (dreg == sreg) {
233                 code = mono_arm_emit_load_imm (code, ARMREG_IP, imm);
234                 ARM_ADD_REG_REG (code, dreg, sreg, ARMREG_IP);
235         } else {
236                 code = mono_arm_emit_load_imm (code, dreg, imm);
237                 ARM_ADD_REG_REG (code, dreg, dreg, sreg);
238         }
239         return code;
240 }
241
242 /* If dreg == sreg, this clobbers IP */
243 static guint8*
244 emit_sub_imm (guint8 *code, int dreg, int sreg, int imm)
245 {
246         int imm8, rot_amount;
247         if ((imm8 = mono_arm_is_rotated_imm8 (imm, &rot_amount)) >= 0) {
248                 ARM_SUB_REG_IMM (code, dreg, sreg, imm8, rot_amount);
249                 return code;
250         }
251         if (dreg == sreg) {
252                 code = mono_arm_emit_load_imm (code, ARMREG_IP, imm);
253                 ARM_SUB_REG_REG (code, dreg, sreg, ARMREG_IP);
254         } else {
255                 code = mono_arm_emit_load_imm (code, dreg, imm);
256                 ARM_SUB_REG_REG (code, dreg, dreg, sreg);
257         }
258         return code;
259 }
260
261 static guint8*
262 emit_memcpy (guint8 *code, int size, int dreg, int doffset, int sreg, int soffset)
263 {
264         /* we can use r0-r3, since this is called only for incoming args on the stack */
265         if (size > sizeof (gpointer) * 4) {
266                 guint8 *start_loop;
267                 code = emit_big_add (code, ARMREG_R0, sreg, soffset);
268                 code = emit_big_add (code, ARMREG_R1, dreg, doffset);
269                 start_loop = code = mono_arm_emit_load_imm (code, ARMREG_R2, size);
270                 ARM_LDR_IMM (code, ARMREG_R3, ARMREG_R0, 0);
271                 ARM_STR_IMM (code, ARMREG_R3, ARMREG_R1, 0);
272                 ARM_ADD_REG_IMM8 (code, ARMREG_R0, ARMREG_R0, 4);
273                 ARM_ADD_REG_IMM8 (code, ARMREG_R1, ARMREG_R1, 4);
274                 ARM_SUBS_REG_IMM8 (code, ARMREG_R2, ARMREG_R2, 4);
275                 ARM_B_COND (code, ARMCOND_NE, 0);
276                 arm_patch (code - 4, start_loop);
277                 return code;
278         }
279         if (arm_is_imm12 (doffset) && arm_is_imm12 (doffset + size) &&
280                         arm_is_imm12 (soffset) && arm_is_imm12 (soffset + size)) {
281                 while (size >= 4) {
282                         ARM_LDR_IMM (code, ARMREG_LR, sreg, soffset);
283                         ARM_STR_IMM (code, ARMREG_LR, dreg, doffset);
284                         doffset += 4;
285                         soffset += 4;
286                         size -= 4;
287                 }
288         } else if (size) {
289                 code = emit_big_add (code, ARMREG_R0, sreg, soffset);
290                 code = emit_big_add (code, ARMREG_R1, dreg, doffset);
291                 doffset = soffset = 0;
292                 while (size >= 4) {
293                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_R0, soffset);
294                         ARM_STR_IMM (code, ARMREG_LR, ARMREG_R1, doffset);
295                         doffset += 4;
296                         soffset += 4;
297                         size -= 4;
298                 }
299         }
300         g_assert (size == 0);
301         return code;
302 }
303
304 static guint8*
305 emit_call_reg (guint8 *code, int reg)
306 {
307         if (v5_supported) {
308                 ARM_BLX_REG (code, reg);
309         } else {
310 #ifdef USE_JUMP_TABLES
311                 g_assert_not_reached ();
312 #endif
313                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
314                 if (thumb_supported)
315                         ARM_BX (code, reg);
316                 else
317                         ARM_MOV_REG_REG (code, ARMREG_PC, reg);
318         }
319         return code;
320 }
321
322 static guint8*
323 emit_call_seq (MonoCompile *cfg, guint8 *code)
324 {
325 #ifdef USE_JUMP_TABLES
326         code = mono_arm_patchable_bl (code, ARMCOND_AL);
327 #else
328         if (cfg->method->dynamic) {
329                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
330                 ARM_B (code, 0);
331                 *(gpointer*)code = NULL;
332                 code += 4;
333                 code = emit_call_reg (code, ARMREG_IP);
334         } else {
335                 ARM_BL (code, 0);
336         }
337         cfg->thunk_area += THUNK_SIZE;
338 #endif
339         return code;
340 }
341
342 guint8*
343 mono_arm_patchable_b (guint8 *code, int cond)
344 {
345 #ifdef USE_JUMP_TABLES
346         gpointer *jte;
347
348         jte = mono_jumptable_add_entry ();
349         code = mono_arm_load_jumptable_entry (code, jte, ARMREG_IP);
350         ARM_BX_COND (code, cond, ARMREG_IP);
351 #else
352         ARM_B_COND (code, cond, 0);
353 #endif
354         return code;
355 }
356
357 guint8*
358 mono_arm_patchable_bl (guint8 *code, int cond)
359 {
360 #ifdef USE_JUMP_TABLES
361         gpointer *jte;
362
363         jte = mono_jumptable_add_entry ();
364         code = mono_arm_load_jumptable_entry (code, jte,  ARMREG_IP);
365         ARM_BLX_REG_COND (code, cond, ARMREG_IP);
366 #else
367         ARM_BL_COND (code, cond, 0);
368 #endif
369         return code;
370 }
371
372 #ifdef USE_JUMP_TABLES
373 guint8*
374 mono_arm_load_jumptable_entry_addr (guint8 *code, gpointer *jte, ARMReg reg)
375 {
376         ARM_MOVW_REG_IMM (code, reg, GPOINTER_TO_UINT(jte) & 0xffff);
377         ARM_MOVT_REG_IMM (code, reg, (GPOINTER_TO_UINT(jte) >> 16) & 0xffff);
378         return code;
379 }
380
381 guint8*
382 mono_arm_load_jumptable_entry (guint8 *code, gpointer* jte, ARMReg reg)
383 {
384         code = mono_arm_load_jumptable_entry_addr (code, jte, reg);
385         ARM_LDR_IMM (code, reg, reg, 0);
386         return code;
387 }
388 #endif
389
390 static guint8*
391 mono_arm_emit_tls_get (MonoCompile *cfg, guint8* code, int dreg, int tls_offset)
392 {
393 #ifdef HAVE_FAST_TLS
394         code = mono_arm_emit_load_imm (code, ARMREG_R0, tls_offset);
395         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
396                         "mono_get_tls_key");
397         code = emit_call_seq (cfg, code);
398         if (dreg != ARMREG_R0)
399                 ARM_MOV_REG_REG (code, dreg, ARMREG_R0);
400 #else
401         g_assert_not_reached ();
402 #endif
403         return code;
404 }
405
406 static guint8*
407 mono_arm_emit_tls_get_reg (MonoCompile *cfg, guint8* code, int dreg, int tls_offset_reg)
408 {
409 #ifdef HAVE_FAST_TLS
410         if (tls_offset_reg != ARMREG_R0)
411                 ARM_MOV_REG_REG (code, ARMREG_R0, tls_offset_reg);
412         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
413                         "mono_get_tls_key");
414         code = emit_call_seq (cfg, code);
415         if (dreg != ARMREG_R0)
416                 ARM_MOV_REG_REG (code, dreg, ARMREG_R0);
417 #else
418         g_assert_not_reached ();
419 #endif
420         return code;
421 }
422
423 static guint8*
424 mono_arm_emit_tls_set (MonoCompile *cfg, guint8* code, int sreg, int tls_offset)
425 {
426 #ifdef HAVE_FAST_TLS
427         if (sreg != ARMREG_R1)
428                 ARM_MOV_REG_REG (code, ARMREG_R1, sreg);
429         code = mono_arm_emit_load_imm (code, ARMREG_R0, tls_offset);
430         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
431                         "mono_set_tls_key");
432         code = emit_call_seq (cfg, code);
433 #else
434         g_assert_not_reached ();
435 #endif
436         return code;
437 }
438
439 static guint8*
440 mono_arm_emit_tls_set_reg (MonoCompile *cfg, guint8* code, int sreg, int tls_offset_reg)
441 {
442 #ifdef HAVE_FAST_TLS
443         /* Get sreg in R1 and tls_offset_reg in R0 */
444         if (tls_offset_reg == ARMREG_R1) {
445                 if (sreg == ARMREG_R0) {
446                         /* swap sreg and tls_offset_reg */
447                         ARM_EOR_REG_REG (code, sreg, sreg, tls_offset_reg);
448                         ARM_EOR_REG_REG (code, tls_offset_reg, sreg, tls_offset_reg);
449                         ARM_EOR_REG_REG (code, sreg, sreg, tls_offset_reg);
450                 } else {
451                         ARM_MOV_REG_REG (code, ARMREG_R0, tls_offset_reg);
452                         if (sreg != ARMREG_R1)
453                                 ARM_MOV_REG_REG (code, ARMREG_R1, sreg);
454                 }
455         } else {
456                 if (sreg != ARMREG_R1)
457                         ARM_MOV_REG_REG (code, ARMREG_R1, sreg);
458                 if (tls_offset_reg != ARMREG_R0)
459                         ARM_MOV_REG_REG (code, ARMREG_R0, tls_offset_reg);
460         }
461         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
462                         "mono_set_tls_key");
463         code = emit_call_seq (cfg, code);
464 #else
465         g_assert_not_reached ();
466 #endif
467         return code;
468 }
469
470 /*
471  * emit_save_lmf:
472  *
473  *   Emit code to push an LMF structure on the LMF stack.
474  * On arm, this is intermixed with the initialization of other fields of the structure.
475  */
476 static guint8*
477 emit_save_lmf (MonoCompile *cfg, guint8 *code, gint32 lmf_offset)
478 {
479         gboolean get_lmf_fast = FALSE;
480         int i;
481
482         if (mono_arm_have_tls_get ()) {
483                 get_lmf_fast = TRUE;
484                 if (cfg->compile_aot) {
485                         /* OP_AOTCONST */
486                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_TLS_OFFSET, (gpointer)TLS_KEY_LMF_ADDR);
487                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
488                         ARM_B (code, 0);
489                         *(gpointer*)code = NULL;
490                         code += 4;
491                         /* Load the value from the GOT */
492                         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_PC, ARMREG_R1);
493                         code = mono_arm_emit_tls_get_reg (cfg, code, ARMREG_R0, ARMREG_R1);
494                 } else {
495                         gint32 lmf_addr_tls_offset = mono_get_lmf_addr_tls_offset ();
496                         g_assert (lmf_addr_tls_offset != -1);
497                         code = mono_arm_emit_tls_get (cfg, code, ARMREG_R0, lmf_addr_tls_offset);
498                 }
499         }
500
501         if (!get_lmf_fast) {
502                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
503                                                          (gpointer)"mono_get_lmf_addr");
504                 code = emit_call_seq (cfg, code);
505         }
506         /* we build the MonoLMF structure on the stack - see mini-arm.h */
507         /* lmf_offset is the offset from the previous stack pointer,
508          * alloc_size is the total stack space allocated, so the offset
509          * of MonoLMF from the current stack ptr is alloc_size - lmf_offset.
510          * The pointer to the struct is put in r1 (new_lmf).
511          * ip is used as scratch
512          * The callee-saved registers are already in the MonoLMF structure
513          */
514         code = emit_big_add (code, ARMREG_R1, ARMREG_SP, lmf_offset);
515         /* r0 is the result from mono_get_lmf_addr () */
516         ARM_STR_IMM (code, ARMREG_R0, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, lmf_addr));
517         /* new_lmf->previous_lmf = *lmf_addr */
518         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
519         ARM_STR_IMM (code, ARMREG_IP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
520         /* *(lmf_addr) = r1 */
521         ARM_STR_IMM (code, ARMREG_R1, ARMREG_R0, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
522         /* Skip method (only needed for trampoline LMF frames) */
523         ARM_STR_IMM (code, ARMREG_SP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, sp));
524         ARM_STR_IMM (code, ARMREG_FP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, fp));
525         /* save the current IP */
526         ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_PC);
527         ARM_STR_IMM (code, ARMREG_IP, ARMREG_R1, MONO_STRUCT_OFFSET (MonoLMF, ip));
528
529         for (i = 0; i < sizeof (MonoLMF); i += sizeof (mgreg_t))
530                 mini_gc_set_slot_type_from_fp (cfg, lmf_offset + i, SLOT_NOREF);
531
532         return code;
533 }
534
535 typedef struct {
536         gint32 vreg;
537         gint32 hreg;
538 } FloatArgData;
539
540 static guint8 *
541 emit_float_args (MonoCompile *cfg, MonoCallInst *inst, guint8 *code, int *max_len, guint *offset)
542 {
543         GSList *list;
544
545         g_assert (!cfg->r4fp);
546
547         for (list = inst->float_args; list; list = list->next) {
548                 FloatArgData *fad = list->data;
549                 MonoInst *var = get_vreg_to_inst (cfg, fad->vreg);
550                 gboolean imm = arm_is_fpimm8 (var->inst_offset);
551
552                 /* 4+1 insns for emit_big_add () and 1 for FLDS. */
553                 if (!imm)
554                         *max_len += 20 + 4;
555
556                 *max_len += 4;
557
558                 if (*offset + *max_len > cfg->code_size) {
559                         cfg->code_size += *max_len;
560                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
561
562                         code = cfg->native_code + *offset;
563                 }
564
565                 if (!imm) {
566                         code = emit_big_add (code, ARMREG_LR, var->inst_basereg, var->inst_offset);
567                         ARM_FLDS (code, fad->hreg, ARMREG_LR, 0);
568                 } else
569                         ARM_FLDS (code, fad->hreg, var->inst_basereg, var->inst_offset);
570
571                 *offset = code - cfg->native_code;
572         }
573
574         return code;
575 }
576
577 static guint8 *
578 mono_arm_emit_vfp_scratch_save (MonoCompile *cfg, guint8 *code, int reg)
579 {
580         MonoInst *inst;
581
582         g_assert (reg == vfp_scratch1 || reg == vfp_scratch2);
583
584         inst = (MonoInst *) cfg->arch.vfp_scratch_slots [reg == vfp_scratch1 ? 0 : 1];
585
586         if (IS_HARD_FLOAT) {
587                 if (!arm_is_fpimm8 (inst->inst_offset)) {
588                         code = emit_big_add (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
589                         ARM_FSTD (code, reg, ARMREG_LR, 0);
590                 } else
591                         ARM_FSTD (code, reg, inst->inst_basereg, inst->inst_offset);
592         }
593
594         return code;
595 }
596
597 static guint8 *
598 mono_arm_emit_vfp_scratch_restore (MonoCompile *cfg, guint8 *code, int reg)
599 {
600         MonoInst *inst;
601
602         g_assert (reg == vfp_scratch1 || reg == vfp_scratch2);
603
604         inst = (MonoInst *) cfg->arch.vfp_scratch_slots [reg == vfp_scratch1 ? 0 : 1];
605
606         if (IS_HARD_FLOAT) {
607                 if (!arm_is_fpimm8 (inst->inst_offset)) {
608                         code = emit_big_add (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
609                         ARM_FLDD (code, reg, ARMREG_LR, 0);
610                 } else
611                         ARM_FLDD (code, reg, inst->inst_basereg, inst->inst_offset);
612         }
613
614         return code;
615 }
616
617 /*
618  * emit_restore_lmf:
619  *
620  *   Emit code to pop an LMF structure from the LMF stack.
621  */
622 static guint8*
623 emit_restore_lmf (MonoCompile *cfg, guint8 *code, gint32 lmf_offset)
624 {
625         int basereg, offset;
626
627         if (lmf_offset < 32) {
628                 basereg = cfg->frame_reg;
629                 offset = lmf_offset;
630         } else {
631                 basereg = ARMREG_R2;
632                 offset = 0;
633                 code = emit_big_add (code, ARMREG_R2, cfg->frame_reg, lmf_offset);
634         }
635
636         /* ip = previous_lmf */
637         ARM_LDR_IMM (code, ARMREG_IP, basereg, offset + MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
638         /* lr = lmf_addr */
639         ARM_LDR_IMM (code, ARMREG_LR, basereg, offset + MONO_STRUCT_OFFSET (MonoLMF, lmf_addr));
640         /* *(lmf_addr) = previous_lmf */
641         ARM_STR_IMM (code, ARMREG_IP, ARMREG_LR, MONO_STRUCT_OFFSET (MonoLMF, previous_lmf));
642
643         return code;
644 }
645
646 #endif /* #ifndef DISABLE_JIT */
647
648 /*
649  * mono_arm_have_tls_get:
650  *
651  * Returns whether we have tls access implemented on the current
652  * platform
653  */
654 gboolean
655 mono_arm_have_tls_get (void)
656 {
657 #ifdef HAVE_FAST_TLS
658         return TRUE;
659 #else
660         return FALSE;
661 #endif
662 }
663
664 /*
665  * mono_arch_get_argument_info:
666  * @csig:  a method signature
667  * @param_count: the number of parameters to consider
668  * @arg_info: an array to store the result infos
669  *
670  * Gathers information on parameters such as size, alignment and
671  * padding. arg_info should be large enought to hold param_count + 1 entries. 
672  *
673  * Returns the size of the activation frame.
674  */
675 int
676 mono_arch_get_argument_info (MonoMethodSignature *csig, int param_count, MonoJitArgumentInfo *arg_info)
677 {
678         int k, frame_size = 0;
679         guint32 size, align, pad;
680         int offset = 8;
681         MonoType *t;
682
683         t = mini_get_underlying_type (csig->ret);
684         if (MONO_TYPE_ISSTRUCT (t)) {
685                 frame_size += sizeof (gpointer);
686                 offset += 4;
687         }
688
689         arg_info [0].offset = offset;
690
691         if (csig->hasthis) {
692                 frame_size += sizeof (gpointer);
693                 offset += 4;
694         }
695
696         arg_info [0].size = frame_size;
697
698         for (k = 0; k < param_count; k++) {
699                 size = mini_type_stack_size_full (csig->params [k], &align, csig->pinvoke);
700
701                 /* ignore alignment for now */
702                 align = 1;
703
704                 frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1); 
705                 arg_info [k].pad = pad;
706                 frame_size += size;
707                 arg_info [k + 1].pad = 0;
708                 arg_info [k + 1].size = size;
709                 offset += pad;
710                 arg_info [k + 1].offset = offset;
711                 offset += size;
712         }
713
714         align = MONO_ARCH_FRAME_ALIGNMENT;
715         frame_size += pad = (align - (frame_size & (align - 1))) & (align - 1);
716         arg_info [k].pad = pad;
717
718         return frame_size;
719 }
720
721 #define MAX_ARCH_DELEGATE_PARAMS 3
722
723 static gpointer
724 get_delegate_invoke_impl (MonoTrampInfo **info, gboolean has_target, gboolean param_count)
725 {
726         guint8 *code, *start;
727         GSList *unwind_ops = mono_arch_get_cie_program ();
728
729         if (has_target) {
730                 start = code = mono_global_codeman_reserve (12);
731
732                 /* Replace the this argument with the target */
733                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
734                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, target));
735                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
736
737                 g_assert ((code - start) <= 12);
738
739                 mono_arch_flush_icache (start, 12);
740         } else {
741                 int size, i;
742
743                 size = 8 + param_count * 4;
744                 start = code = mono_global_codeman_reserve (size);
745
746                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, MONO_STRUCT_OFFSET (MonoDelegate, method_ptr));
747                 /* slide down the arguments */
748                 for (i = 0; i < param_count; ++i) {
749                         ARM_MOV_REG_REG (code, (ARMREG_R0 + i), (ARMREG_R0 + i + 1));
750                 }
751                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
752
753                 g_assert ((code - start) <= size);
754
755                 mono_arch_flush_icache (start, size);
756         }
757
758         if (has_target) {
759                  *info = mono_tramp_info_create ("delegate_invoke_impl_has_target", start, code - start, NULL, unwind_ops);
760         } else {
761                  char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", param_count);
762                  *info = mono_tramp_info_create (name, start, code - start, NULL, unwind_ops);
763                  g_free (name);
764         }
765
766         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_DELEGATE_INVOKE, NULL);
767
768         return start;
769 }
770
771 /*
772  * mono_arch_get_delegate_invoke_impls:
773  *
774  *   Return a list of MonoAotTrampInfo structures for the delegate invoke impl
775  * trampolines.
776  */
777 GSList*
778 mono_arch_get_delegate_invoke_impls (void)
779 {
780         GSList *res = NULL;
781         MonoTrampInfo *info;
782         int i;
783
784         get_delegate_invoke_impl (&info, TRUE, 0);
785         res = g_slist_prepend (res, info);
786
787         for (i = 0; i <= MAX_ARCH_DELEGATE_PARAMS; ++i) {
788                 get_delegate_invoke_impl (&info, FALSE, i);
789                 res = g_slist_prepend (res, info);
790         }
791
792         return res;
793 }
794
795 gpointer
796 mono_arch_get_delegate_invoke_impl (MonoMethodSignature *sig, gboolean has_target)
797 {
798         guint8 *code, *start;
799         MonoType *sig_ret;
800
801         /* FIXME: Support more cases */
802         sig_ret = mini_get_underlying_type (sig->ret);
803         if (MONO_TYPE_ISSTRUCT (sig_ret))
804                 return NULL;
805
806         if (has_target) {
807                 static guint8* cached = NULL;
808                 mono_mini_arch_lock ();
809                 if (cached) {
810                         mono_mini_arch_unlock ();
811                         return cached;
812                 }
813
814                 if (mono_aot_only) {
815                         start = mono_aot_get_trampoline ("delegate_invoke_impl_has_target");
816                 } else {
817                         MonoTrampInfo *info;
818                         start = get_delegate_invoke_impl (&info, TRUE, 0);
819                         mono_tramp_info_register (info, NULL);
820                 }
821                 cached = start;
822                 mono_mini_arch_unlock ();
823                 return cached;
824         } else {
825                 static guint8* cache [MAX_ARCH_DELEGATE_PARAMS + 1] = {NULL};
826                 int i;
827
828                 if (sig->param_count > MAX_ARCH_DELEGATE_PARAMS)
829                         return NULL;
830                 for (i = 0; i < sig->param_count; ++i)
831                         if (!mono_is_regsize_var (sig->params [i]))
832                                 return NULL;
833
834                 mono_mini_arch_lock ();
835                 code = cache [sig->param_count];
836                 if (code) {
837                         mono_mini_arch_unlock ();
838                         return code;
839                 }
840
841                 if (mono_aot_only) {
842                         char *name = g_strdup_printf ("delegate_invoke_impl_target_%d", sig->param_count);
843                         start = mono_aot_get_trampoline (name);
844                         g_free (name);
845                 } else {
846                         MonoTrampInfo *info;
847                         start = get_delegate_invoke_impl (&info, FALSE, sig->param_count);
848                         mono_tramp_info_register (info, NULL);
849                 }
850                 cache [sig->param_count] = start;
851                 mono_mini_arch_unlock ();
852                 return start;
853         }
854
855         return NULL;
856 }
857
858 gpointer
859 mono_arch_get_delegate_virtual_invoke_impl (MonoMethodSignature *sig, MonoMethod *method, int offset, gboolean load_imt_reg)
860 {
861         return NULL;
862 }
863
864 gpointer
865 mono_arch_get_this_arg_from_call (mgreg_t *regs, guint8 *code)
866 {
867         return (gpointer)regs [ARMREG_R0];
868 }
869
870 /*
871  * Initialize the cpu to execute managed code.
872  */
873 void
874 mono_arch_cpu_init (void)
875 {
876         i8_align = MONO_ABI_ALIGNOF (gint64);
877 #ifdef MONO_CROSS_COMPILE
878         /* Need to set the alignment of i8 since it can different on the target */
879 #ifdef TARGET_ANDROID
880         /* linux gnueabi */
881         mono_type_set_alignment (MONO_TYPE_I8, i8_align);
882 #endif
883 #endif
884 }
885
886 /*
887  * Initialize architecture specific code.
888  */
889 void
890 mono_arch_init (void)
891 {
892         const char *cpu_arch;
893
894         mono_mutex_init_recursive (&mini_arch_mutex);
895         if (mini_get_debug_options ()->soft_breakpoints) {
896                 breakpoint_tramp = mini_get_breakpoint_trampoline ();
897         } else {
898                 ss_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
899                 bp_trigger_page = mono_valloc (NULL, mono_pagesize (), MONO_MMAP_READ|MONO_MMAP_32BIT);
900                 mono_mprotect (bp_trigger_page, mono_pagesize (), 0);
901         }
902
903         mono_aot_register_jit_icall ("mono_arm_throw_exception", mono_arm_throw_exception);
904         mono_aot_register_jit_icall ("mono_arm_throw_exception_by_token", mono_arm_throw_exception_by_token);
905         mono_aot_register_jit_icall ("mono_arm_resume_unwind", mono_arm_resume_unwind);
906 #if defined(ENABLE_GSHAREDVT)
907         mono_aot_register_jit_icall ("mono_arm_start_gsharedvt_call", mono_arm_start_gsharedvt_call);
908 #endif
909         mono_aot_register_jit_icall ("mono_arm_unaligned_stack", mono_arm_unaligned_stack);
910
911 #if defined(__ARM_EABI__)
912         eabi_supported = TRUE;
913 #endif
914
915 #if defined(ARM_FPU_VFP_HARD)
916         arm_fpu = MONO_ARM_FPU_VFP_HARD;
917 #else
918         arm_fpu = MONO_ARM_FPU_VFP;
919
920 #if defined(ARM_FPU_NONE) && !defined(__APPLE__)
921         /*
922          * If we're compiling with a soft float fallback and it
923          * turns out that no VFP unit is available, we need to
924          * switch to soft float. We don't do this for iOS, since
925          * iOS devices always have a VFP unit.
926          */
927         if (!mono_hwcap_arm_has_vfp)
928                 arm_fpu = MONO_ARM_FPU_NONE;
929
930         /*
931          * This environment variable can be useful in testing
932          * environments to make sure the soft float fallback
933          * works. Most ARM devices have VFP units these days, so
934          * normally soft float code would not be exercised much.
935          */
936         const char *soft = g_getenv ("MONO_ARM_FORCE_SOFT_FLOAT");
937
938         if (soft && !strncmp (soft, "1", 1))
939                 arm_fpu = MONO_ARM_FPU_NONE;
940 #endif
941 #endif
942
943         v5_supported = mono_hwcap_arm_is_v5;
944         v6_supported = mono_hwcap_arm_is_v6;
945         v7_supported = mono_hwcap_arm_is_v7;
946
947 #if defined(__APPLE__)
948         /* iOS is special-cased here because we don't yet
949            have a way to properly detect CPU features on it. */
950         thumb_supported = TRUE;
951         iphone_abi = TRUE;
952 #else
953         thumb_supported = mono_hwcap_arm_has_thumb;
954         thumb2_supported = mono_hwcap_arm_has_thumb2;
955 #endif
956
957         /* Format: armv(5|6|7[s])[-thumb[2]] */
958         cpu_arch = g_getenv ("MONO_CPU_ARCH");
959
960         /* Do this here so it overrides any detection. */
961         if (cpu_arch) {
962                 if (strncmp (cpu_arch, "armv", 4) == 0) {
963                         v5_supported = cpu_arch [4] >= '5';
964                         v6_supported = cpu_arch [4] >= '6';
965                         v7_supported = cpu_arch [4] >= '7';
966                         v7s_supported = strncmp (cpu_arch, "armv7s", 6) == 0;
967                         v7k_supported = strncmp (cpu_arch, "armv7k", 6) == 0;
968                 }
969
970                 thumb_supported = strstr (cpu_arch, "thumb") != NULL;
971                 thumb2_supported = strstr (cpu_arch, "thumb2") != NULL;
972         }
973 }
974
975 /*
976  * Cleanup architecture specific code.
977  */
978 void
979 mono_arch_cleanup (void)
980 {
981 }
982
983 /*
984  * This function returns the optimizations supported on this cpu.
985  */
986 guint32
987 mono_arch_cpu_optimizations (guint32 *exclude_mask)
988 {
989         /* no arm-specific optimizations yet */
990         *exclude_mask = 0;
991         return 0;
992 }
993
994 /*
995  * This function test for all SIMD functions supported.
996  *
997  * Returns a bitmask corresponding to all supported versions.
998  *
999  */
1000 guint32
1001 mono_arch_cpu_enumerate_simd_versions (void)
1002 {
1003         /* SIMD is currently unimplemented */
1004         return 0;
1005 }
1006
1007
1008 #ifndef DISABLE_JIT
1009
1010 gboolean
1011 mono_arch_opcode_needs_emulation (MonoCompile *cfg, int opcode)
1012 {
1013         if (v7s_supported || v7k_supported) {
1014                 switch (opcode) {
1015                 case OP_IDIV:
1016                 case OP_IREM:
1017                 case OP_IDIV_UN:
1018                 case OP_IREM_UN:
1019                         return FALSE;
1020                 default:
1021                         break;
1022                 }
1023         }
1024         return TRUE;
1025 }
1026
1027 #ifdef MONO_ARCH_SOFT_FLOAT_FALLBACK
1028 gboolean
1029 mono_arch_is_soft_float (void)
1030 {
1031         return arm_fpu == MONO_ARM_FPU_NONE;
1032 }
1033 #endif
1034
1035 gboolean
1036 mono_arm_is_hard_float (void)
1037 {
1038         return arm_fpu == MONO_ARM_FPU_VFP_HARD;
1039 }
1040
1041 static gboolean
1042 is_regsize_var (MonoType *t)
1043 {
1044         if (t->byref)
1045                 return TRUE;
1046         t = mini_get_underlying_type (t);
1047         switch (t->type) {
1048         case MONO_TYPE_I4:
1049         case MONO_TYPE_U4:
1050         case MONO_TYPE_I:
1051         case MONO_TYPE_U:
1052         case MONO_TYPE_PTR:
1053         case MONO_TYPE_FNPTR:
1054                 return TRUE;
1055         case MONO_TYPE_OBJECT:
1056         case MONO_TYPE_STRING:
1057         case MONO_TYPE_CLASS:
1058         case MONO_TYPE_SZARRAY:
1059         case MONO_TYPE_ARRAY:
1060                 return TRUE;
1061         case MONO_TYPE_GENERICINST:
1062                 if (!mono_type_generic_inst_is_valuetype (t))
1063                         return TRUE;
1064                 return FALSE;
1065         case MONO_TYPE_VALUETYPE:
1066                 return FALSE;
1067         }
1068         return FALSE;
1069 }
1070
1071 GList *
1072 mono_arch_get_allocatable_int_vars (MonoCompile *cfg)
1073 {
1074         GList *vars = NULL;
1075         int i;
1076
1077         for (i = 0; i < cfg->num_varinfo; i++) {
1078                 MonoInst *ins = cfg->varinfo [i];
1079                 MonoMethodVar *vmv = MONO_VARINFO (cfg, i);
1080
1081                 /* unused vars */
1082                 if (vmv->range.first_use.abs_pos >= vmv->range.last_use.abs_pos)
1083                         continue;
1084
1085                 if (ins->flags & (MONO_INST_VOLATILE|MONO_INST_INDIRECT) || (ins->opcode != OP_LOCAL && ins->opcode != OP_ARG))
1086                         continue;
1087
1088                 /* we can only allocate 32 bit values */
1089                 if (is_regsize_var (ins->inst_vtype)) {
1090                         g_assert (MONO_VARINFO (cfg, i)->reg == -1);
1091                         g_assert (i == vmv->idx);
1092                         vars = mono_varlist_insert_sorted (cfg, vars, vmv, FALSE);
1093                 }
1094         }
1095
1096         return vars;
1097 }
1098
1099 GList *
1100 mono_arch_get_global_int_regs (MonoCompile *cfg)
1101 {
1102         GList *regs = NULL;
1103
1104         mono_arch_compute_omit_fp (cfg);
1105
1106         /* 
1107          * FIXME: Interface calls might go through a static rgctx trampoline which
1108          * sets V5, but it doesn't save it, so we need to save it ourselves, and
1109          * avoid using it.
1110          */
1111         if (cfg->flags & MONO_CFG_HAS_CALLS)
1112                 cfg->uses_rgctx_reg = TRUE;
1113
1114         if (cfg->arch.omit_fp)
1115                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_FP));
1116         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V1));
1117         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V2));
1118         regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V3));
1119         if (iphone_abi)
1120                 /* V4=R7 is used as a frame pointer, but V7=R10 is preserved */
1121                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V7));
1122         else
1123                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V4));
1124         if (!(cfg->compile_aot || cfg->uses_rgctx_reg || COMPILE_LLVM (cfg)))
1125                 /* V5 is reserved for passing the vtable/rgctx/IMT method */
1126                 regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V5));
1127         /*regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V6));*/
1128         /*regs = g_list_prepend (regs, GUINT_TO_POINTER (ARMREG_V7));*/
1129
1130         return regs;
1131 }
1132
1133 /*
1134  * mono_arch_regalloc_cost:
1135  *
1136  *  Return the cost, in number of memory references, of the action of 
1137  * allocating the variable VMV into a register during global register
1138  * allocation.
1139  */
1140 guint32
1141 mono_arch_regalloc_cost (MonoCompile *cfg, MonoMethodVar *vmv)
1142 {
1143         /* FIXME: */
1144         return 2;
1145 }
1146
1147 #endif /* #ifndef DISABLE_JIT */
1148
1149 void
1150 mono_arch_flush_icache (guint8 *code, gint size)
1151 {
1152 #if defined(MONO_CROSS_COMPILE) || defined(__native_client__)
1153   // For Native Client we don't have to flush i-cache here,
1154   // as it's being done by dyncode interface.
1155 #elif __APPLE__
1156         sys_icache_invalidate (code, size);
1157 #else
1158     __builtin___clear_cache (code, code + size);
1159 #endif
1160 }
1161
1162 typedef enum {
1163         RegTypeNone,
1164         /* Passed/returned in an ireg */
1165         RegTypeGeneral,
1166         /* Passed/returned in a pair of iregs */
1167         RegTypeIRegPair,
1168         /* Passed on the stack */
1169         RegTypeBase,
1170         /* First word in r3, second word on the stack */
1171         RegTypeBaseGen,
1172         /* FP value passed in either an ireg or a vfp reg */
1173         RegTypeFP,
1174         RegTypeStructByVal,
1175         RegTypeStructByAddr,
1176         /* gsharedvt argument passed by addr in greg */
1177         RegTypeGSharedVtInReg,
1178         /* gsharedvt argument passed by addr on stack */
1179         RegTypeGSharedVtOnStack,
1180         RegTypeHFA
1181 } ArgStorage;
1182
1183 typedef struct {
1184         gint32  offset;
1185         guint16 vtsize; /* in param area */
1186         /* RegTypeHFA */
1187         int esize;
1188         /* RegTypeHFA */
1189         int nregs;
1190         guint8  reg;
1191         ArgStorage  storage;
1192         gint32  struct_size;
1193         guint8  size    : 4; /* 1, 2, 4, 8, or regs used by RegTypeStructByVal */
1194 } ArgInfo;
1195
1196 typedef struct {
1197         int nargs;
1198         guint32 stack_usage;
1199         /* The index of the vret arg in the argument list for RegTypeStructByAddr */
1200         int vret_arg_index;
1201         ArgInfo ret;
1202         ArgInfo sig_cookie;
1203         ArgInfo args [1];
1204 } CallInfo;
1205
1206 #define DEBUG(a)
1207
1208 static void inline
1209 add_general (guint *gr, guint *stack_size, ArgInfo *ainfo, gboolean simple)
1210 {
1211         if (simple) {
1212                 if (*gr > ARMREG_R3) {
1213                         ainfo->size = 4;
1214                         ainfo->offset = *stack_size;
1215                         ainfo->reg = ARMREG_SP; /* in the caller */
1216                         ainfo->storage = RegTypeBase;
1217                         *stack_size += 4;
1218                 } else {
1219                         ainfo->storage = RegTypeGeneral;
1220                         ainfo->reg = *gr;
1221                 }
1222         } else {
1223                 gboolean split;
1224
1225                 if (eabi_supported)
1226                         split = i8_align == 4;
1227                 else
1228                         split = TRUE;
1229
1230                 ainfo->size = 8;
1231                 if (*gr == ARMREG_R3 && split) {
1232                         /* first word in r3 and the second on the stack */
1233                         ainfo->offset = *stack_size;
1234                         ainfo->reg = ARMREG_SP; /* in the caller */
1235                         ainfo->storage = RegTypeBaseGen;
1236                         *stack_size += 4;
1237                 } else if (*gr >= ARMREG_R3) {
1238                         if (eabi_supported) {
1239                                 /* darwin aligns longs to 4 byte only */
1240                                 if (i8_align == 8) {
1241                                         *stack_size += 7;
1242                                         *stack_size &= ~7;
1243                                 }
1244                         }
1245                         ainfo->offset = *stack_size;
1246                         ainfo->reg = ARMREG_SP; /* in the caller */
1247                         ainfo->storage = RegTypeBase;
1248                         *stack_size += 8;
1249                 } else {
1250                         if (eabi_supported) {
1251                                 if (i8_align == 8 && ((*gr) & 1))
1252                                         (*gr) ++;
1253                         }
1254                         ainfo->storage = RegTypeIRegPair;
1255                         ainfo->reg = *gr;
1256                 }
1257                 (*gr) ++;
1258         }
1259         (*gr) ++;
1260 }
1261
1262 static void inline
1263 add_float (guint *fpr, guint *stack_size, ArgInfo *ainfo, gboolean is_double, gint *float_spare)
1264 {
1265         /*
1266          * If we're calling a function like this:
1267          *
1268          * void foo(float a, double b, float c)
1269          *
1270          * We pass a in s0 and b in d1. That leaves us
1271          * with s1 being unused. The armhf ABI recognizes
1272          * this and requires register assignment to then
1273          * use that for the next single-precision arg,
1274          * i.e. c in this example. So float_spare either
1275          * tells us which reg to use for the next single-
1276          * precision arg, or it's -1, meaning use *fpr.
1277          *
1278          * Note that even though most of the JIT speaks
1279          * double-precision, fpr represents single-
1280          * precision registers.
1281          *
1282          * See parts 5.5 and 6.1.2 of the AAPCS for how
1283          * this all works.
1284          */
1285
1286         if (*fpr < ARM_VFP_F16 || (!is_double && *float_spare >= 0)) {
1287                 ainfo->storage = RegTypeFP;
1288
1289                 if (is_double) {
1290                         /*
1291                          * If we're passing a double-precision value
1292                          * and *fpr is odd (e.g. it's s1, s3, ...)
1293                          * we need to use the next even register. So
1294                          * we mark the current *fpr as a spare that
1295                          * can be used for the next single-precision
1296                          * value.
1297                          */
1298                         if (*fpr % 2) {
1299                                 *float_spare = *fpr;
1300                                 (*fpr)++;
1301                         }
1302
1303                         /*
1304                          * At this point, we have an even register
1305                          * so we assign that and move along.
1306                          */
1307                         ainfo->reg = *fpr;
1308                         *fpr += 2;
1309                 } else if (*float_spare >= 0) {
1310                         /*
1311                          * We're passing a single-precision value
1312                          * and it looks like a spare single-
1313                          * precision register is available. Let's
1314                          * use it.
1315                          */
1316
1317                         ainfo->reg = *float_spare;
1318                         *float_spare = -1;
1319                 } else {
1320                         /*
1321                          * If we hit this branch, we're passing a
1322                          * single-precision value and we can simply
1323                          * use the next available register.
1324                          */
1325
1326                         ainfo->reg = *fpr;
1327                         (*fpr)++;
1328                 }
1329         } else {
1330                 /*
1331                  * We've exhausted available floating point
1332                  * regs, so pass the rest on the stack.
1333                  */
1334
1335                 if (is_double) {
1336                         *stack_size += 7;
1337                         *stack_size &= ~7;
1338                 }
1339
1340                 ainfo->offset = *stack_size;
1341                 ainfo->reg = ARMREG_SP;
1342                 ainfo->storage = RegTypeBase;
1343
1344                 *stack_size += 8;
1345         }
1346 }
1347
1348 static gboolean
1349 is_hfa (MonoType *t, int *out_nfields, int *out_esize)
1350 {
1351         MonoClass *klass;
1352         gpointer iter;
1353         MonoClassField *field;
1354         MonoType *ftype, *prev_ftype = NULL;
1355         int nfields = 0;
1356
1357         klass = mono_class_from_mono_type (t);
1358         iter = NULL;
1359         while ((field = mono_class_get_fields (klass, &iter))) {
1360                 if (field->type->attrs & FIELD_ATTRIBUTE_STATIC)
1361                         continue;
1362                 ftype = mono_field_get_type (field);
1363                 ftype = mini_get_underlying_type (ftype);
1364
1365                 if (MONO_TYPE_ISSTRUCT (ftype)) {
1366                         int nested_nfields, nested_esize;
1367
1368                         if (!is_hfa (ftype, &nested_nfields, &nested_esize))
1369                                 return FALSE;
1370                         if (nested_esize == 4)
1371                                 ftype = &mono_defaults.single_class->byval_arg;
1372                         else
1373                                 ftype = &mono_defaults.double_class->byval_arg;
1374                         if (prev_ftype && prev_ftype->type != ftype->type)
1375                                 return FALSE;
1376                         prev_ftype = ftype;
1377                         nfields += nested_nfields;
1378                 } else {
1379                         if (!(!ftype->byref && (ftype->type == MONO_TYPE_R4 || ftype->type == MONO_TYPE_R8)))
1380                                 return FALSE;
1381                         if (prev_ftype && prev_ftype->type != ftype->type)
1382                                 return FALSE;
1383                         prev_ftype = ftype;
1384                         nfields ++;
1385                 }
1386         }
1387         if (nfields == 0 || nfields > 4)
1388                 return FALSE;
1389         *out_nfields = nfields;
1390         *out_esize = prev_ftype->type == MONO_TYPE_R4 ? 4 : 8;
1391         return TRUE;
1392 }
1393
1394 static CallInfo*
1395 get_call_info (MonoMemPool *mp, MonoMethodSignature *sig)
1396 {
1397         guint i, gr, fpr, pstart;
1398         gint float_spare;
1399         int n = sig->hasthis + sig->param_count;
1400         int nfields, esize;
1401         guint32 align;
1402         MonoType *t;
1403         guint32 stack_size = 0;
1404         CallInfo *cinfo;
1405         gboolean is_pinvoke = sig->pinvoke;
1406         gboolean vtype_retaddr = FALSE;
1407
1408         if (mp)
1409                 cinfo = mono_mempool_alloc0 (mp, sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1410         else
1411                 cinfo = g_malloc0 (sizeof (CallInfo) + (sizeof (ArgInfo) * n));
1412
1413         cinfo->nargs = n;
1414         gr = ARMREG_R0;
1415         fpr = ARM_VFP_F0;
1416         float_spare = -1;
1417
1418         t = mini_get_underlying_type (sig->ret);
1419         switch (t->type) {
1420         case MONO_TYPE_I1:
1421         case MONO_TYPE_U1:
1422         case MONO_TYPE_I2:
1423         case MONO_TYPE_U2:
1424         case MONO_TYPE_I4:
1425         case MONO_TYPE_U4:
1426         case MONO_TYPE_I:
1427         case MONO_TYPE_U:
1428         case MONO_TYPE_PTR:
1429         case MONO_TYPE_FNPTR:
1430         case MONO_TYPE_CLASS:
1431         case MONO_TYPE_OBJECT:
1432         case MONO_TYPE_SZARRAY:
1433         case MONO_TYPE_ARRAY:
1434         case MONO_TYPE_STRING:
1435                 cinfo->ret.storage = RegTypeGeneral;
1436                 cinfo->ret.reg = ARMREG_R0;
1437                 break;
1438         case MONO_TYPE_U8:
1439         case MONO_TYPE_I8:
1440                 cinfo->ret.storage = RegTypeIRegPair;
1441                 cinfo->ret.reg = ARMREG_R0;
1442                 break;
1443         case MONO_TYPE_R4:
1444         case MONO_TYPE_R8:
1445                 cinfo->ret.storage = RegTypeFP;
1446
1447                 if (t->type == MONO_TYPE_R4)
1448                         cinfo->ret.size = 4;
1449                 else
1450                         cinfo->ret.size = 8;
1451
1452                 if (IS_HARD_FLOAT) {
1453                         cinfo->ret.reg = ARM_VFP_F0;
1454                 } else {
1455                         cinfo->ret.reg = ARMREG_R0;
1456                 }
1457                 break;
1458         case MONO_TYPE_GENERICINST:
1459                 if (!mono_type_generic_inst_is_valuetype (t)) {
1460                         cinfo->ret.storage = RegTypeGeneral;
1461                         cinfo->ret.reg = ARMREG_R0;
1462                         break;
1463                 }
1464                 if (mini_is_gsharedvt_variable_type (t)) {
1465                         cinfo->ret.storage = RegTypeStructByAddr;
1466                         break;
1467                 }
1468                 /* Fall through */
1469         case MONO_TYPE_VALUETYPE:
1470         case MONO_TYPE_TYPEDBYREF:
1471                 if (IS_HARD_FLOAT && sig->pinvoke && is_hfa (t, &nfields, &esize)) {
1472                         cinfo->ret.storage = RegTypeHFA;
1473                         cinfo->ret.reg = 0;
1474                         cinfo->ret.nregs = nfields;
1475                         cinfo->ret.esize = esize;
1476                 } else {
1477                         if (is_pinvoke && mono_class_native_size (mono_class_from_mono_type (t), &align) <= sizeof (gpointer))
1478                                 cinfo->ret.storage = RegTypeStructByVal;
1479                         else
1480                                 cinfo->ret.storage = RegTypeStructByAddr;
1481                 }
1482                 break;
1483         case MONO_TYPE_VAR:
1484         case MONO_TYPE_MVAR:
1485                 g_assert (mini_is_gsharedvt_type (t));
1486                 cinfo->ret.storage = RegTypeStructByAddr;
1487                 break;
1488         case MONO_TYPE_VOID:
1489                 break;
1490         default:
1491                 g_error ("Can't handle as return value 0x%x", sig->ret->type);
1492         }
1493
1494         vtype_retaddr = cinfo->ret.storage == RegTypeStructByAddr;
1495
1496         pstart = 0;
1497         n = 0;
1498         /*
1499          * To simplify get_this_arg_reg () and LLVM integration, emit the vret arg after
1500          * the first argument, allowing 'this' to be always passed in the first arg reg.
1501          * Also do this if the first argument is a reference type, since virtual calls
1502          * are sometimes made using calli without sig->hasthis set, like in the delegate
1503          * invoke wrappers.
1504          */
1505         if (vtype_retaddr && !is_pinvoke && (sig->hasthis || (sig->param_count > 0 && MONO_TYPE_IS_REFERENCE (mini_get_underlying_type (sig->params [0]))))) {
1506                 if (sig->hasthis) {
1507                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
1508                 } else {
1509                         add_general (&gr, &stack_size, &cinfo->args [sig->hasthis + 0], TRUE);
1510                         pstart = 1;
1511                 }
1512                 n ++;
1513                 cinfo->ret.reg = gr;
1514                 gr ++;
1515                 cinfo->vret_arg_index = 1;
1516         } else {
1517                 /* this */
1518                 if (sig->hasthis) {
1519                         add_general (&gr, &stack_size, cinfo->args + 0, TRUE);
1520                         n ++;
1521                 }
1522                 if (vtype_retaddr) {
1523                         cinfo->ret.reg = gr;
1524                         gr ++;
1525                 }
1526         }
1527
1528         DEBUG(g_print("params: %d\n", sig->param_count));
1529         for (i = pstart; i < sig->param_count; ++i) {
1530                 ArgInfo *ainfo = &cinfo->args [n];
1531
1532                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1533                         /* Prevent implicit arguments and sig_cookie from
1534                            being passed in registers */
1535                         gr = ARMREG_R3 + 1;
1536                         fpr = ARM_VFP_F16;
1537                         /* Emit the signature cookie just before the implicit arguments */
1538                         add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1539                 }
1540                 DEBUG(g_print("param %d: ", i));
1541                 if (sig->params [i]->byref) {
1542                         DEBUG(g_print("byref\n"));
1543                         add_general (&gr, &stack_size, ainfo, TRUE);
1544                         n++;
1545                         continue;
1546                 }
1547                 t = mini_get_underlying_type (sig->params [i]);
1548                 switch (t->type) {
1549                 case MONO_TYPE_I1:
1550                 case MONO_TYPE_U1:
1551                         cinfo->args [n].size = 1;
1552                         add_general (&gr, &stack_size, ainfo, TRUE);
1553                         break;
1554                 case MONO_TYPE_I2:
1555                 case MONO_TYPE_U2:
1556                         cinfo->args [n].size = 2;
1557                         add_general (&gr, &stack_size, ainfo, TRUE);
1558                         break;
1559                 case MONO_TYPE_I4:
1560                 case MONO_TYPE_U4:
1561                         cinfo->args [n].size = 4;
1562                         add_general (&gr, &stack_size, ainfo, TRUE);
1563                         break;
1564                 case MONO_TYPE_I:
1565                 case MONO_TYPE_U:
1566                 case MONO_TYPE_PTR:
1567                 case MONO_TYPE_FNPTR:
1568                 case MONO_TYPE_CLASS:
1569                 case MONO_TYPE_OBJECT:
1570                 case MONO_TYPE_STRING:
1571                 case MONO_TYPE_SZARRAY:
1572                 case MONO_TYPE_ARRAY:
1573                         cinfo->args [n].size = sizeof (gpointer);
1574                         add_general (&gr, &stack_size, ainfo, TRUE);
1575                         break;
1576                 case MONO_TYPE_GENERICINST:
1577                         if (!mono_type_generic_inst_is_valuetype (t)) {
1578                                 cinfo->args [n].size = sizeof (gpointer);
1579                                 add_general (&gr, &stack_size, ainfo, TRUE);
1580                                 break;
1581                         }
1582                         if (mini_is_gsharedvt_variable_type (t)) {
1583                                 /* gsharedvt arguments are passed by ref */
1584                                 g_assert (mini_is_gsharedvt_type (t));
1585                                 add_general (&gr, &stack_size, ainfo, TRUE);
1586                                 switch (ainfo->storage) {
1587                                 case RegTypeGeneral:
1588                                         ainfo->storage = RegTypeGSharedVtInReg;
1589                                         break;
1590                                 case RegTypeBase:
1591                                         ainfo->storage = RegTypeGSharedVtOnStack;
1592                                         break;
1593                                 default:
1594                                         g_assert_not_reached ();
1595                                 }
1596                                 break;
1597                         }
1598                         /* Fall through */
1599                 case MONO_TYPE_TYPEDBYREF:
1600                 case MONO_TYPE_VALUETYPE: {
1601                         gint size;
1602                         int align_size;
1603                         int nwords, nfields, esize;
1604                         guint32 align;
1605
1606                         if (IS_HARD_FLOAT && sig->pinvoke && is_hfa (t, &nfields, &esize)) {
1607                                 if (fpr + nfields < ARM_VFP_F16) {
1608                                         ainfo->storage = RegTypeHFA;
1609                                         ainfo->reg = fpr;
1610                                         ainfo->nregs = nfields;
1611                                         ainfo->esize = esize;
1612                                         if (esize == 4)
1613                                                 fpr += nfields;
1614                                         else
1615                                                 fpr += nfields * 2;
1616                                         break;
1617                                 } else {
1618                                         fpr = ARM_VFP_F16;
1619                                 }
1620                         }
1621
1622                         if (t->type == MONO_TYPE_TYPEDBYREF) {
1623                                 size = sizeof (MonoTypedRef);
1624                                 align = sizeof (gpointer);
1625                         } else {
1626                                 MonoClass *klass = mono_class_from_mono_type (sig->params [i]);
1627                                 if (is_pinvoke)
1628                                         size = mono_class_native_size (klass, &align);
1629                                 else
1630                                         size = mini_type_stack_size_full (t, &align, FALSE);
1631                         }
1632                         DEBUG(g_print ("load %d bytes struct\n", size));
1633                         align_size = size;
1634                         nwords = 0;
1635                         align_size += (sizeof (gpointer) - 1);
1636                         align_size &= ~(sizeof (gpointer) - 1);
1637                         nwords = (align_size + sizeof (gpointer) -1 ) / sizeof (gpointer);
1638                         ainfo->storage = RegTypeStructByVal;
1639                         ainfo->struct_size = size;
1640                         /* FIXME: align stack_size if needed */
1641                         if (eabi_supported) {
1642                                 if (align >= 8 && (gr & 1))
1643                                         gr ++;
1644                         }
1645                         if (gr > ARMREG_R3) {
1646                                 ainfo->size = 0;
1647                                 ainfo->vtsize = nwords;
1648                         } else {
1649                                 int rest = ARMREG_R3 - gr + 1;
1650                                 int n_in_regs = rest >= nwords? nwords: rest;
1651
1652                                 ainfo->size = n_in_regs;
1653                                 ainfo->vtsize = nwords - n_in_regs;
1654                                 ainfo->reg = gr;
1655                                 gr += n_in_regs;
1656                                 nwords -= n_in_regs;
1657                         }
1658                         if (sig->call_convention == MONO_CALL_VARARG)
1659                                 /* This matches the alignment in mono_ArgIterator_IntGetNextArg () */
1660                                 stack_size = ALIGN_TO (stack_size, align);
1661                         ainfo->offset = stack_size;
1662                         /*g_print ("offset for arg %d at %d\n", n, stack_size);*/
1663                         stack_size += nwords * sizeof (gpointer);
1664                         break;
1665                 }
1666                 case MONO_TYPE_U8:
1667                 case MONO_TYPE_I8:
1668                         ainfo->size = 8;
1669                         add_general (&gr, &stack_size, ainfo, FALSE);
1670                         break;
1671                 case MONO_TYPE_R4:
1672                         ainfo->size = 4;
1673
1674                         if (IS_HARD_FLOAT)
1675                                 add_float (&fpr, &stack_size, ainfo, FALSE, &float_spare);
1676                         else
1677                                 add_general (&gr, &stack_size, ainfo, TRUE);
1678                         break;
1679                 case MONO_TYPE_R8:
1680                         ainfo->size = 8;
1681
1682                         if (IS_HARD_FLOAT)
1683                                 add_float (&fpr, &stack_size, ainfo, TRUE, &float_spare);
1684                         else
1685                                 add_general (&gr, &stack_size, ainfo, FALSE);
1686                         break;
1687                 case MONO_TYPE_VAR:
1688                 case MONO_TYPE_MVAR:
1689                         /* gsharedvt arguments are passed by ref */
1690                         g_assert (mini_is_gsharedvt_type (t));
1691                         add_general (&gr, &stack_size, ainfo, TRUE);
1692                         switch (ainfo->storage) {
1693                         case RegTypeGeneral:
1694                                 ainfo->storage = RegTypeGSharedVtInReg;
1695                                 break;
1696                         case RegTypeBase:
1697                                 ainfo->storage = RegTypeGSharedVtOnStack;
1698                                 break;
1699                         default:
1700                                 g_assert_not_reached ();
1701                         }
1702                         break;
1703                 default:
1704                         g_error ("Can't handle 0x%x", sig->params [i]->type);
1705                 }
1706                 n ++;
1707         }
1708
1709         /* Handle the case where there are no implicit arguments */
1710         if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
1711                 /* Prevent implicit arguments and sig_cookie from
1712                    being passed in registers */
1713                 gr = ARMREG_R3 + 1;
1714                 fpr = ARM_VFP_F16;
1715                 /* Emit the signature cookie just before the implicit arguments */
1716                 add_general (&gr, &stack_size, &cinfo->sig_cookie, TRUE);
1717         }
1718
1719         /* align stack size to 8 */
1720         DEBUG (g_print ("      stack size: %d (%d)\n", (stack_size + 15) & ~15, stack_size));
1721         stack_size = (stack_size + 7) & ~7;
1722
1723         cinfo->stack_usage = stack_size;
1724         return cinfo;
1725 }
1726
1727
1728 gboolean
1729 mono_arch_tail_call_supported (MonoCompile *cfg, MonoMethodSignature *caller_sig, MonoMethodSignature *callee_sig)
1730 {
1731         MonoType *callee_ret;
1732         CallInfo *c1, *c2;
1733         gboolean res;
1734
1735         c1 = get_call_info (NULL, caller_sig);
1736         c2 = get_call_info (NULL, callee_sig);
1737
1738         /*
1739          * Tail calls with more callee stack usage than the caller cannot be supported, since
1740          * the extra stack space would be left on the stack after the tail call.
1741          */
1742         res = c1->stack_usage >= c2->stack_usage;
1743         callee_ret = mini_get_underlying_type (callee_sig->ret);
1744         if (callee_ret && MONO_TYPE_ISSTRUCT (callee_ret) && c2->ret.storage != RegTypeStructByVal)
1745                 /* An address on the callee's stack is passed as the first argument */
1746                 res = FALSE;
1747
1748         if (c2->stack_usage > 16 * 4)
1749                 res = FALSE;
1750
1751         g_free (c1);
1752         g_free (c2);
1753
1754         return res;
1755 }
1756
1757 #ifndef DISABLE_JIT
1758
1759 static gboolean
1760 debug_omit_fp (void)
1761 {
1762 #if 0
1763         return mono_debug_count ();
1764 #else
1765         return TRUE;
1766 #endif
1767 }
1768
1769 /**
1770  * mono_arch_compute_omit_fp:
1771  *
1772  *   Determine whenever the frame pointer can be eliminated.
1773  */
1774 static void
1775 mono_arch_compute_omit_fp (MonoCompile *cfg)
1776 {
1777         MonoMethodSignature *sig;
1778         MonoMethodHeader *header;
1779         int i, locals_size;
1780         CallInfo *cinfo;
1781
1782         if (cfg->arch.omit_fp_computed)
1783                 return;
1784
1785         header = cfg->header;
1786
1787         sig = mono_method_signature (cfg->method);
1788
1789         if (!cfg->arch.cinfo)
1790                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
1791         cinfo = cfg->arch.cinfo;
1792
1793         /*
1794          * FIXME: Remove some of the restrictions.
1795          */
1796         cfg->arch.omit_fp = TRUE;
1797         cfg->arch.omit_fp_computed = TRUE;
1798
1799         if (cfg->disable_omit_fp)
1800                 cfg->arch.omit_fp = FALSE;
1801         if (!debug_omit_fp ())
1802                 cfg->arch.omit_fp = FALSE;
1803         /*
1804         if (cfg->method->save_lmf)
1805                 cfg->arch.omit_fp = FALSE;
1806         */
1807         if (cfg->flags & MONO_CFG_HAS_ALLOCA)
1808                 cfg->arch.omit_fp = FALSE;
1809         if (header->num_clauses)
1810                 cfg->arch.omit_fp = FALSE;
1811         if (cfg->param_area)
1812                 cfg->arch.omit_fp = FALSE;
1813         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG))
1814                 cfg->arch.omit_fp = FALSE;
1815         if ((mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method)) ||
1816                 (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE))
1817                 cfg->arch.omit_fp = FALSE;
1818         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
1819                 ArgInfo *ainfo = &cinfo->args [i];
1820
1821                 if (ainfo->storage == RegTypeBase || ainfo->storage == RegTypeBaseGen || ainfo->storage == RegTypeStructByVal) {
1822                         /* 
1823                          * The stack offset can only be determined when the frame
1824                          * size is known.
1825                          */
1826                         cfg->arch.omit_fp = FALSE;
1827                 }
1828         }
1829
1830         locals_size = 0;
1831         for (i = cfg->locals_start; i < cfg->num_varinfo; i++) {
1832                 MonoInst *ins = cfg->varinfo [i];
1833                 int ialign;
1834
1835                 locals_size += mono_type_size (ins->inst_vtype, &ialign);
1836         }
1837 }
1838
1839 /*
1840  * Set var information according to the calling convention. arm version.
1841  * The locals var stuff should most likely be split in another method.
1842  */
1843 void
1844 mono_arch_allocate_vars (MonoCompile *cfg)
1845 {
1846         MonoMethodSignature *sig;
1847         MonoMethodHeader *header;
1848         MonoInst *ins;
1849         MonoType *sig_ret;
1850         int i, offset, size, align, curinst;
1851         CallInfo *cinfo;
1852         ArgInfo *ainfo;
1853         guint32 ualign;
1854
1855         sig = mono_method_signature (cfg->method);
1856
1857         if (!cfg->arch.cinfo)
1858                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
1859         cinfo = cfg->arch.cinfo;
1860         sig_ret = mini_get_underlying_type (sig->ret);
1861
1862         mono_arch_compute_omit_fp (cfg);
1863
1864         if (cfg->arch.omit_fp)
1865                 cfg->frame_reg = ARMREG_SP;
1866         else
1867                 cfg->frame_reg = ARMREG_FP;
1868
1869         cfg->flags |= MONO_CFG_HAS_SPILLUP;
1870
1871         /* allow room for the vararg method args: void* and long/double */
1872         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1873                 cfg->param_area = MAX (cfg->param_area, sizeof (gpointer)*8);
1874
1875         header = cfg->header;
1876
1877         /* See mono_arch_get_global_int_regs () */
1878         if (cfg->flags & MONO_CFG_HAS_CALLS)
1879                 cfg->uses_rgctx_reg = TRUE;
1880
1881         if (cfg->frame_reg != ARMREG_SP)
1882                 cfg->used_int_regs |= 1 << cfg->frame_reg;
1883
1884         if (cfg->compile_aot || cfg->uses_rgctx_reg || COMPILE_LLVM (cfg))
1885                 /* V5 is reserved for passing the vtable/rgctx/IMT method */
1886                 cfg->used_int_regs |= (1 << MONO_ARCH_IMT_REG);
1887
1888         offset = 0;
1889         curinst = 0;
1890         if (!MONO_TYPE_ISSTRUCT (sig_ret) && cinfo->ret.storage != RegTypeStructByAddr) {
1891                 if (sig_ret->type != MONO_TYPE_VOID) {
1892                         cfg->ret->opcode = OP_REGVAR;
1893                         cfg->ret->inst_c0 = ARMREG_R0;
1894                 }
1895         }
1896         /* local vars are at a positive offset from the stack pointer */
1897         /* 
1898          * also note that if the function uses alloca, we use FP
1899          * to point at the local variables.
1900          */
1901         offset = 0; /* linkage area */
1902         /* align the offset to 16 bytes: not sure this is needed here  */
1903         //offset += 8 - 1;
1904         //offset &= ~(8 - 1);
1905
1906         /* add parameter area size for called functions */
1907         offset += cfg->param_area;
1908         offset += 8 - 1;
1909         offset &= ~(8 - 1);
1910         if (cfg->flags & MONO_CFG_HAS_FPOUT)
1911                 offset += 8;
1912
1913         /* allow room to save the return value */
1914         if (mono_jit_trace_calls != NULL && mono_trace_eval (cfg->method))
1915                 offset += 8;
1916
1917         switch (cinfo->ret.storage) {
1918         case RegTypeStructByVal:
1919                 cfg->ret->opcode = OP_REGOFFSET;
1920                 cfg->ret->inst_basereg = cfg->frame_reg;
1921                 offset += sizeof (gpointer) - 1;
1922                 offset &= ~(sizeof (gpointer) - 1);
1923                 cfg->ret->inst_offset = - offset;
1924                 offset += sizeof(gpointer);
1925                 break;
1926         case RegTypeHFA:
1927                 /* Allocate a local to hold the result, the epilog will copy it to the correct place */
1928                 offset = ALIGN_TO (offset, 8);
1929                 cfg->ret->opcode = OP_REGOFFSET;
1930                 cfg->ret->inst_basereg = cfg->frame_reg;
1931                 cfg->ret->inst_offset = offset;
1932                 // FIXME:
1933                 offset += 32;
1934                 break;
1935         case RegTypeStructByAddr:
1936                 ins = cfg->vret_addr;
1937                 offset += sizeof(gpointer) - 1;
1938                 offset &= ~(sizeof(gpointer) - 1);
1939                 ins->inst_offset = offset;
1940                 ins->opcode = OP_REGOFFSET;
1941                 ins->inst_basereg = cfg->frame_reg;
1942                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
1943                         g_print ("vret_addr =");
1944                         mono_print_ins (cfg->vret_addr);
1945                 }
1946                 offset += sizeof(gpointer);
1947                 break;
1948         default:
1949                 break;
1950         }
1951
1952         /* Allocate these first so they have a small offset, OP_SEQ_POINT depends on this */
1953         if (cfg->arch.seq_point_info_var) {
1954                 MonoInst *ins;
1955
1956                 ins = cfg->arch.seq_point_info_var;
1957
1958                 size = 4;
1959                 align = 4;
1960                 offset += align - 1;
1961                 offset &= ~(align - 1);
1962                 ins->opcode = OP_REGOFFSET;
1963                 ins->inst_basereg = cfg->frame_reg;
1964                 ins->inst_offset = offset;
1965                 offset += size;
1966
1967                 ins = cfg->arch.ss_trigger_page_var;
1968                 size = 4;
1969                 align = 4;
1970                 offset += align - 1;
1971                 offset &= ~(align - 1);
1972                 ins->opcode = OP_REGOFFSET;
1973                 ins->inst_basereg = cfg->frame_reg;
1974                 ins->inst_offset = offset;
1975                 offset += size;
1976         }
1977
1978         if (cfg->arch.seq_point_ss_method_var) {
1979                 MonoInst *ins;
1980
1981                 ins = cfg->arch.seq_point_ss_method_var;
1982                 size = 4;
1983                 align = 4;
1984                 offset += align - 1;
1985                 offset &= ~(align - 1);
1986                 ins->opcode = OP_REGOFFSET;
1987                 ins->inst_basereg = cfg->frame_reg;
1988                 ins->inst_offset = offset;
1989                 offset += size;
1990
1991                 ins = cfg->arch.seq_point_bp_method_var;
1992                 size = 4;
1993                 align = 4;
1994                 offset += align - 1;
1995                 offset &= ~(align - 1);
1996                 ins->opcode = OP_REGOFFSET;
1997                 ins->inst_basereg = cfg->frame_reg;
1998                 ins->inst_offset = offset;
1999                 offset += size;
2000         }
2001
2002         if (cfg->has_atomic_exchange_i4 || cfg->has_atomic_cas_i4 || cfg->has_atomic_add_i4) {
2003                 /* Allocate a temporary used by the atomic ops */
2004                 size = 4;
2005                 align = 4;
2006
2007                 /* Allocate a local slot to hold the sig cookie address */
2008                 offset += align - 1;
2009                 offset &= ~(align - 1);
2010                 cfg->arch.atomic_tmp_offset = offset;
2011                 offset += size;
2012         } else {
2013                 cfg->arch.atomic_tmp_offset = -1;
2014         }
2015
2016         cfg->locals_min_stack_offset = offset;
2017
2018         curinst = cfg->locals_start;
2019         for (i = curinst; i < cfg->num_varinfo; ++i) {
2020                 MonoType *t;
2021
2022                 ins = cfg->varinfo [i];
2023                 if ((ins->flags & MONO_INST_IS_DEAD) || ins->opcode == OP_REGVAR || ins->opcode == OP_REGOFFSET)
2024                         continue;
2025
2026                 t = ins->inst_vtype;
2027                 if (cfg->gsharedvt && mini_is_gsharedvt_variable_type (t))
2028                         continue;
2029
2030                 /* inst->backend.is_pinvoke indicates native sized value types, this is used by the
2031                 * pinvoke wrappers when they call functions returning structure */
2032                 if (ins->backend.is_pinvoke && MONO_TYPE_ISSTRUCT (t) && t->type != MONO_TYPE_TYPEDBYREF) {
2033                         size = mono_class_native_size (mono_class_from_mono_type (t), &ualign);
2034                         align = ualign;
2035                 }
2036                 else
2037                         size = mono_type_size (t, &align);
2038
2039                 /* FIXME: if a structure is misaligned, our memcpy doesn't work,
2040                  * since it loads/stores misaligned words, which don't do the right thing.
2041                  */
2042                 if (align < 4 && size >= 4)
2043                         align = 4;
2044                 if (ALIGN_TO (offset, align) > ALIGN_TO (offset, 4))
2045                         mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
2046                 offset += align - 1;
2047                 offset &= ~(align - 1);
2048                 ins->opcode = OP_REGOFFSET;
2049                 ins->inst_offset = offset;
2050                 ins->inst_basereg = cfg->frame_reg;
2051                 offset += size;
2052                 //g_print ("allocating local %d to %d\n", i, inst->inst_offset);
2053         }
2054
2055         cfg->locals_max_stack_offset = offset;
2056
2057         curinst = 0;
2058         if (sig->hasthis) {
2059                 ins = cfg->args [curinst];
2060                 if (ins->opcode != OP_REGVAR) {
2061                         ins->opcode = OP_REGOFFSET;
2062                         ins->inst_basereg = cfg->frame_reg;
2063                         offset += sizeof (gpointer) - 1;
2064                         offset &= ~(sizeof (gpointer) - 1);
2065                         ins->inst_offset = offset;
2066                         offset += sizeof (gpointer);
2067                 }
2068                 curinst++;
2069         }
2070
2071         if (sig->call_convention == MONO_CALL_VARARG) {
2072                 size = 4;
2073                 align = 4;
2074
2075                 /* Allocate a local slot to hold the sig cookie address */
2076                 offset += align - 1;
2077                 offset &= ~(align - 1);
2078                 cfg->sig_cookie = offset;
2079                 offset += size;
2080         }                       
2081
2082         for (i = 0; i < sig->param_count; ++i) {
2083                 ainfo = cinfo->args + i;
2084
2085                 ins = cfg->args [curinst];
2086
2087                 switch (ainfo->storage) {
2088                 case RegTypeHFA:
2089                         offset = ALIGN_TO (offset, 8);
2090                         ins->opcode = OP_REGOFFSET;
2091                         ins->inst_basereg = cfg->frame_reg;
2092                         /* These arguments are saved to the stack in the prolog */
2093                         ins->inst_offset = offset;
2094                         if (cfg->verbose_level >= 2)
2095                                 g_print ("arg %d allocated to %s+0x%0x.\n", i, mono_arch_regname (ins->inst_basereg), (int)ins->inst_offset);
2096                         // FIXME:
2097                         offset += 32;
2098                         break;
2099                 default:
2100                         break;
2101                 }
2102
2103                 if (ins->opcode != OP_REGVAR) {
2104                         ins->opcode = OP_REGOFFSET;
2105                         ins->inst_basereg = cfg->frame_reg;
2106                         size = mini_type_stack_size_full (sig->params [i], &ualign, sig->pinvoke);
2107                         align = ualign;
2108                         /* FIXME: if a structure is misaligned, our memcpy doesn't work,
2109                          * since it loads/stores misaligned words, which don't do the right thing.
2110                          */
2111                         if (align < 4 && size >= 4)
2112                                 align = 4;
2113                         /* The code in the prolog () stores words when storing vtypes received in a register */
2114                         if (MONO_TYPE_ISSTRUCT (sig->params [i]))
2115                                 align = 4;
2116                         if (ALIGN_TO (offset, align) > ALIGN_TO (offset, 4))
2117                                 mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
2118                         offset += align - 1;
2119                         offset &= ~(align - 1);
2120                         ins->inst_offset = offset;
2121                         offset += size;
2122                 }
2123                 curinst++;
2124         }
2125
2126         /* align the offset to 8 bytes */
2127         if (ALIGN_TO (offset, 8) > ALIGN_TO (offset, 4))
2128                 mini_gc_set_slot_type_from_fp (cfg, ALIGN_TO (offset, 4), SLOT_NOREF);
2129         offset += 8 - 1;
2130         offset &= ~(8 - 1);
2131
2132         /* change sign? */
2133         cfg->stack_offset = offset;
2134 }
2135
2136 void
2137 mono_arch_create_vars (MonoCompile *cfg)
2138 {
2139         MonoMethodSignature *sig;
2140         CallInfo *cinfo;
2141         int i;
2142
2143         sig = mono_method_signature (cfg->method);
2144
2145         if (!cfg->arch.cinfo)
2146                 cfg->arch.cinfo = get_call_info (cfg->mempool, sig);
2147         cinfo = cfg->arch.cinfo;
2148
2149         if (IS_HARD_FLOAT) {
2150                 for (i = 0; i < 2; i++) {
2151                         MonoInst *inst = mono_compile_create_var (cfg, &mono_defaults.double_class->byval_arg, OP_LOCAL);
2152                         inst->flags |= MONO_INST_VOLATILE;
2153
2154                         cfg->arch.vfp_scratch_slots [i] = (gpointer) inst;
2155                 }
2156         }
2157
2158         if (cinfo->ret.storage == RegTypeStructByVal)
2159                 cfg->ret_var_is_local = TRUE;
2160
2161         if (cinfo->ret.storage == RegTypeStructByAddr) {
2162                 cfg->vret_addr = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_ARG);
2163                 if (G_UNLIKELY (cfg->verbose_level > 1)) {
2164                         g_print ("vret_addr = ");
2165                         mono_print_ins (cfg->vret_addr);
2166                 }
2167         }
2168
2169         if (cfg->gen_sdb_seq_points) {
2170                 if (cfg->soft_breakpoints) {
2171                         MonoInst *ins;
2172
2173                         ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2174                         ins->flags |= MONO_INST_VOLATILE;
2175                         cfg->arch.seq_point_ss_method_var = ins;
2176
2177                         ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2178                         ins->flags |= MONO_INST_VOLATILE;
2179                         cfg->arch.seq_point_bp_method_var = ins;
2180
2181                         g_assert (!cfg->compile_aot);
2182                 } else if (cfg->compile_aot) {
2183                         MonoInst *ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2184                         ins->flags |= MONO_INST_VOLATILE;
2185                         cfg->arch.seq_point_info_var = ins;
2186
2187                         /* Allocate a separate variable for this to save 1 load per seq point */
2188                         ins = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2189                         ins->flags |= MONO_INST_VOLATILE;
2190                         cfg->arch.ss_trigger_page_var = ins;
2191                 }
2192         }
2193 }
2194
2195 static void
2196 emit_sig_cookie (MonoCompile *cfg, MonoCallInst *call, CallInfo *cinfo)
2197 {
2198         MonoMethodSignature *tmp_sig;
2199         int sig_reg;
2200
2201         if (call->tail_call)
2202                 NOT_IMPLEMENTED;
2203
2204         g_assert (cinfo->sig_cookie.storage == RegTypeBase);
2205                         
2206         /*
2207          * mono_ArgIterator_Setup assumes the signature cookie is 
2208          * passed first and all the arguments which were before it are
2209          * passed on the stack after the signature. So compensate by 
2210          * passing a different signature.
2211          */
2212         tmp_sig = mono_metadata_signature_dup (call->signature);
2213         tmp_sig->param_count -= call->signature->sentinelpos;
2214         tmp_sig->sentinelpos = 0;
2215         memcpy (tmp_sig->params, call->signature->params + call->signature->sentinelpos, tmp_sig->param_count * sizeof (MonoType*));
2216
2217         sig_reg = mono_alloc_ireg (cfg);
2218         MONO_EMIT_NEW_SIGNATURECONST (cfg, sig_reg, tmp_sig);
2219
2220         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, cinfo->sig_cookie.offset, sig_reg);
2221 }
2222
2223 #ifdef ENABLE_LLVM
2224 LLVMCallInfo*
2225 mono_arch_get_llvm_call_info (MonoCompile *cfg, MonoMethodSignature *sig)
2226 {
2227         int i, n;
2228         CallInfo *cinfo;
2229         ArgInfo *ainfo;
2230         LLVMCallInfo *linfo;
2231
2232         n = sig->param_count + sig->hasthis;
2233
2234         cinfo = get_call_info (cfg->mempool, sig);
2235
2236         linfo = mono_mempool_alloc0 (cfg->mempool, sizeof (LLVMCallInfo) + (sizeof (LLVMArgInfo) * n));
2237
2238         /*
2239          * LLVM always uses the native ABI while we use our own ABI, the
2240          * only difference is the handling of vtypes:
2241          * - we only pass/receive them in registers in some cases, and only 
2242          *   in 1 or 2 integer registers.
2243          */
2244         switch (cinfo->ret.storage) {
2245         case RegTypeGeneral:
2246         case RegTypeNone:
2247         case RegTypeFP:
2248         case RegTypeIRegPair:
2249                 break;
2250         case RegTypeStructByAddr:
2251                 /* Vtype returned using a hidden argument */
2252                 linfo->ret.storage = LLVMArgVtypeRetAddr;
2253                 linfo->vret_arg_index = cinfo->vret_arg_index;
2254                 break;
2255         default:
2256                 cfg->exception_message = g_strdup_printf ("unknown ret conv (%d)", cinfo->ret.storage);
2257                 cfg->disable_llvm = TRUE;
2258                 return linfo;
2259         }
2260
2261         for (i = 0; i < n; ++i) {
2262                 ainfo = cinfo->args + i;
2263
2264                 linfo->args [i].storage = LLVMArgNone;
2265
2266                 switch (ainfo->storage) {
2267                 case RegTypeGeneral:
2268                 case RegTypeIRegPair:
2269                 case RegTypeBase:
2270                 case RegTypeBaseGen:
2271                         linfo->args [i].storage = LLVMArgNormal;
2272                         break;
2273                 case RegTypeStructByVal:
2274                         linfo->args [i].storage = LLVMArgAsIArgs;
2275                         linfo->args [i].nslots = ainfo->struct_size / sizeof (gpointer);
2276                         break;
2277                 default:
2278                         cfg->exception_message = g_strdup_printf ("ainfo->storage (%d)", ainfo->storage);
2279                         cfg->disable_llvm = TRUE;
2280                         break;
2281                 }
2282         }
2283
2284         return linfo;
2285 }
2286 #endif
2287
2288 void
2289 mono_arch_emit_call (MonoCompile *cfg, MonoCallInst *call)
2290 {
2291         MonoInst *in, *ins;
2292         MonoMethodSignature *sig;
2293         int i, n;
2294         CallInfo *cinfo;
2295
2296         sig = call->signature;
2297         n = sig->param_count + sig->hasthis;
2298         
2299         cinfo = get_call_info (cfg->mempool, sig);
2300
2301         switch (cinfo->ret.storage) {
2302         case RegTypeStructByVal:
2303                 /* The JIT will transform this into a normal call */
2304                 call->vret_in_reg = TRUE;
2305                 break;
2306         case RegTypeHFA:
2307                 /*
2308                  * The vtype is returned in registers, save the return area address in a local, and save the vtype into
2309                  * the location pointed to by it after call in emit_move_return_value ().
2310                  */
2311                 if (!cfg->arch.vret_addr_loc) {
2312                         cfg->arch.vret_addr_loc = mono_compile_create_var (cfg, &mono_defaults.int_class->byval_arg, OP_LOCAL);
2313                         /* Prevent it from being register allocated or optimized away */
2314                         ((MonoInst*)cfg->arch.vret_addr_loc)->flags |= MONO_INST_VOLATILE;
2315                 }
2316
2317                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, ((MonoInst*)cfg->arch.vret_addr_loc)->dreg, call->vret_var->dreg);
2318                 break;
2319         case RegTypeStructByAddr: {
2320                 MonoInst *vtarg;
2321                 MONO_INST_NEW (cfg, vtarg, OP_MOVE);
2322                 vtarg->sreg1 = call->vret_var->dreg;
2323                 vtarg->dreg = mono_alloc_preg (cfg);
2324                 MONO_ADD_INS (cfg->cbb, vtarg);
2325
2326                 mono_call_inst_add_outarg_reg (cfg, call, vtarg->dreg, cinfo->ret.reg, FALSE);
2327                 break;
2328         }
2329         default:
2330                 break;
2331         }
2332
2333         for (i = 0; i < n; ++i) {
2334                 ArgInfo *ainfo = cinfo->args + i;
2335                 MonoType *t;
2336
2337                 if (i >= sig->hasthis)
2338                         t = sig->params [i - sig->hasthis];
2339                 else
2340                         t = &mono_defaults.int_class->byval_arg;
2341                 t = mini_get_underlying_type (t);
2342
2343                 if ((sig->call_convention == MONO_CALL_VARARG) && (i == sig->sentinelpos)) {
2344                         /* Emit the signature cookie just before the implicit arguments */
2345                         emit_sig_cookie (cfg, call, cinfo);
2346                 }
2347
2348                 in = call->args [i];
2349
2350                 switch (ainfo->storage) {
2351                 case RegTypeGeneral:
2352                 case RegTypeIRegPair:
2353                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2354                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2355                                 ins->dreg = mono_alloc_ireg (cfg);
2356                                 ins->sreg1 = in->dreg + 1;
2357                                 MONO_ADD_INS (cfg->cbb, ins);
2358                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2359
2360                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2361                                 ins->dreg = mono_alloc_ireg (cfg);
2362                                 ins->sreg1 = in->dreg + 2;
2363                                 MONO_ADD_INS (cfg->cbb, ins);
2364                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + 1, FALSE);
2365                         } else if (!t->byref && ((t->type == MONO_TYPE_R8) || (t->type == MONO_TYPE_R4))) {
2366                                 if (ainfo->size == 4) {
2367                                         if (IS_SOFT_FLOAT) {
2368                                                 /* mono_emit_call_args () have already done the r8->r4 conversion */
2369                                                 /* The converted value is in an int vreg */
2370                                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2371                                                 ins->dreg = mono_alloc_ireg (cfg);
2372                                                 ins->sreg1 = in->dreg;
2373                                                 MONO_ADD_INS (cfg->cbb, ins);
2374                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2375                                         } else {
2376                                                 int creg;
2377
2378                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2379                                                 creg = mono_alloc_ireg (cfg);
2380                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2381                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg, FALSE);
2382                                         }
2383                                 } else {
2384                                         if (IS_SOFT_FLOAT) {
2385                                                 MONO_INST_NEW (cfg, ins, OP_FGETLOW32);
2386                                                 ins->dreg = mono_alloc_ireg (cfg);
2387                                                 ins->sreg1 = in->dreg;
2388                                                 MONO_ADD_INS (cfg->cbb, ins);
2389                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2390
2391                                                 MONO_INST_NEW (cfg, ins, OP_FGETHIGH32);
2392                                                 ins->dreg = mono_alloc_ireg (cfg);
2393                                                 ins->sreg1 = in->dreg;
2394                                                 MONO_ADD_INS (cfg->cbb, ins);
2395                                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg + 1, FALSE);
2396                                         } else {
2397                                                 int creg;
2398
2399                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2400                                                 creg = mono_alloc_ireg (cfg);
2401                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2402                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg, FALSE);
2403                                                 creg = mono_alloc_ireg (cfg);
2404                                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8 + 4));
2405                                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ainfo->reg + 1, FALSE);
2406                                         }
2407                                 }
2408                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
2409                         } else {
2410                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2411                                 ins->dreg = mono_alloc_ireg (cfg);
2412                                 ins->sreg1 = in->dreg;
2413                                 MONO_ADD_INS (cfg->cbb, ins);
2414
2415                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, FALSE);
2416                         }
2417                         break;
2418                 case RegTypeStructByAddr:
2419                         NOT_IMPLEMENTED;
2420 #if 0
2421                         /* FIXME: where si the data allocated? */
2422                         arg->backend.reg3 = ainfo->reg;
2423                         call->used_iregs |= 1 << ainfo->reg;
2424                         g_assert_not_reached ();
2425 #endif
2426                         break;
2427                 case RegTypeStructByVal:
2428                 case RegTypeGSharedVtInReg:
2429                 case RegTypeGSharedVtOnStack:
2430                 case RegTypeHFA:
2431                         MONO_INST_NEW (cfg, ins, OP_OUTARG_VT);
2432                         ins->opcode = OP_OUTARG_VT;
2433                         ins->sreg1 = in->dreg;
2434                         ins->klass = in->klass;
2435                         ins->inst_p0 = call;
2436                         ins->inst_p1 = mono_mempool_alloc (cfg->mempool, sizeof (ArgInfo));
2437                         memcpy (ins->inst_p1, ainfo, sizeof (ArgInfo));
2438                         mono_call_inst_add_outarg_vt (cfg, call, ins);
2439                         MONO_ADD_INS (cfg->cbb, ins);
2440                         break;
2441                 case RegTypeBase:
2442                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2443                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI8_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2444                         } else if (!t->byref && ((t->type == MONO_TYPE_R4) || (t->type == MONO_TYPE_R8))) {
2445                                 if (t->type == MONO_TYPE_R8) {
2446                                         MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2447                                 } else {
2448                                         if (IS_SOFT_FLOAT)
2449                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STOREI4_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2450                                         else
2451                                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER4_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2452                                 }
2453                         } else {
2454                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, in->dreg);
2455                         }
2456                         break;
2457                 case RegTypeBaseGen:
2458                         if (!t->byref && ((t->type == MONO_TYPE_I8) || (t->type == MONO_TYPE_U8))) {
2459                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, (G_BYTE_ORDER == G_BIG_ENDIAN) ? in->dreg + 1 : in->dreg + 2);
2460                                 MONO_INST_NEW (cfg, ins, OP_MOVE);
2461                                 ins->dreg = mono_alloc_ireg (cfg);
2462                                 ins->sreg1 = G_BYTE_ORDER == G_BIG_ENDIAN ? in->dreg + 2 : in->dreg + 1;
2463                                 MONO_ADD_INS (cfg->cbb, ins);
2464                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ARMREG_R3, FALSE);
2465                         } else if (!t->byref && (t->type == MONO_TYPE_R8)) {
2466                                 int creg;
2467
2468                                 /* This should work for soft-float as well */
2469
2470                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORER8_MEMBASE_REG, ARMREG_SP, (cfg->param_area - 8), in->dreg);
2471                                 creg = mono_alloc_ireg (cfg);
2472                                 mono_call_inst_add_outarg_reg (cfg, call, creg, ARMREG_R3, FALSE);
2473                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 8));
2474                                 creg = mono_alloc_ireg (cfg);
2475                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOAD_MEMBASE, creg, ARMREG_SP, (cfg->param_area - 4));
2476                                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, creg);
2477                                 cfg->flags |= MONO_CFG_HAS_FPOUT;
2478                         } else {
2479                                 g_assert_not_reached ();
2480                         }
2481                         break;
2482                 case RegTypeFP: {
2483                         int fdreg = mono_alloc_freg (cfg);
2484
2485                         if (ainfo->size == 8) {
2486                                 MONO_INST_NEW (cfg, ins, OP_FMOVE);
2487                                 ins->sreg1 = in->dreg;
2488                                 ins->dreg = fdreg;
2489                                 MONO_ADD_INS (cfg->cbb, ins);
2490
2491                                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, ainfo->reg, TRUE);
2492                         } else {
2493                                 FloatArgData *fad;
2494
2495                                 /*
2496                                  * Mono's register allocator doesn't speak single-precision registers that
2497                                  * overlap double-precision registers (i.e. armhf). So we have to work around
2498                                  * the register allocator and load the value from memory manually.
2499                                  *
2500                                  * So we create a variable for the float argument and an instruction to store
2501                                  * the argument into the variable. We then store the list of these arguments
2502                                  * in cfg->float_args. This list is then used by emit_float_args later to
2503                                  * pass the arguments in the various call opcodes.
2504                                  *
2505                                  * This is not very nice, and we should really try to fix the allocator.
2506                                  */
2507
2508                                 MonoInst *float_arg = mono_compile_create_var (cfg, &mono_defaults.single_class->byval_arg, OP_LOCAL);
2509
2510                                 /* Make sure the instruction isn't seen as pointless and removed.
2511                                  */
2512                                 float_arg->flags |= MONO_INST_VOLATILE;
2513
2514                                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, float_arg->dreg, in->dreg);
2515
2516                                 /* We use the dreg to look up the instruction later. The hreg is used to
2517                                  * emit the instruction that loads the value into the FP reg.
2518                                  */
2519                                 fad = mono_mempool_alloc0 (cfg->mempool, sizeof (FloatArgData));
2520                                 fad->vreg = float_arg->dreg;
2521                                 fad->hreg = ainfo->reg;
2522
2523                                 call->float_args = g_slist_append_mempool (cfg->mempool, call->float_args, fad);
2524                         }
2525
2526                         call->used_iregs |= 1 << ainfo->reg;
2527                         cfg->flags |= MONO_CFG_HAS_FPOUT;
2528                         break;
2529                 }
2530                 default:
2531                         g_assert_not_reached ();
2532                 }
2533         }
2534
2535         /* Handle the case where there are no implicit arguments */
2536         if (!sig->pinvoke && (sig->call_convention == MONO_CALL_VARARG) && (n == sig->sentinelpos))
2537                 emit_sig_cookie (cfg, call, cinfo);
2538
2539         call->call_info = cinfo;
2540         call->stack_usage = cinfo->stack_usage;
2541 }
2542
2543 static void
2544 add_outarg_reg (MonoCompile *cfg, MonoCallInst *call, ArgStorage storage, int reg, MonoInst *arg)
2545 {
2546         MonoInst *ins;
2547
2548         switch (storage) {
2549         case RegTypeFP:
2550                 MONO_INST_NEW (cfg, ins, OP_FMOVE);
2551                 ins->dreg = mono_alloc_freg (cfg);
2552                 ins->sreg1 = arg->dreg;
2553                 MONO_ADD_INS (cfg->cbb, ins);
2554                 mono_call_inst_add_outarg_reg (cfg, call, ins->dreg, reg, TRUE);
2555                 break;
2556         default:
2557                 g_assert_not_reached ();
2558                 break;
2559         }
2560 }
2561
2562 void
2563 mono_arch_emit_outarg_vt (MonoCompile *cfg, MonoInst *ins, MonoInst *src)
2564 {
2565         MonoCallInst *call = (MonoCallInst*)ins->inst_p0;
2566         MonoInst *load;
2567         ArgInfo *ainfo = ins->inst_p1;
2568         int ovf_size = ainfo->vtsize;
2569         int doffset = ainfo->offset;
2570         int struct_size = ainfo->struct_size;
2571         int i, soffset, dreg, tmpreg;
2572
2573         switch (ainfo->storage) {
2574         case RegTypeGSharedVtInReg:
2575                 /* Pass by addr */
2576                 mono_call_inst_add_outarg_reg (cfg, call, src->dreg, ainfo->reg, FALSE);
2577                 break;
2578         case RegTypeGSharedVtOnStack:
2579                 /* Pass by addr on stack */
2580                 MONO_EMIT_NEW_STORE_MEMBASE (cfg, OP_STORE_MEMBASE_REG, ARMREG_SP, ainfo->offset, src->dreg);
2581                 break;
2582         case RegTypeHFA:
2583                 for (i = 0; i < ainfo->nregs; ++i) {
2584                         if (ainfo->esize == 4)
2585                                 MONO_INST_NEW (cfg, load, OP_LOADR4_MEMBASE);
2586                         else
2587                                 MONO_INST_NEW (cfg, load, OP_LOADR8_MEMBASE);
2588                         load->dreg = mono_alloc_freg (cfg);
2589                         load->inst_basereg = src->dreg;
2590                         load->inst_offset = i * ainfo->esize;
2591                         MONO_ADD_INS (cfg->cbb, load);
2592
2593                         if (ainfo->esize == 4) {
2594                                 FloatArgData *fad;
2595
2596                                 /* See RegTypeFP in mono_arch_emit_call () */
2597                                 MonoInst *float_arg = mono_compile_create_var (cfg, &mono_defaults.single_class->byval_arg, OP_LOCAL);
2598                                 float_arg->flags |= MONO_INST_VOLATILE;
2599                                 MONO_EMIT_NEW_UNALU (cfg, OP_FMOVE, float_arg->dreg, load->dreg);
2600
2601                                 fad = mono_mempool_alloc0 (cfg->mempool, sizeof (FloatArgData));
2602                                 fad->vreg = float_arg->dreg;
2603                                 fad->hreg = ainfo->reg + i;
2604
2605                                 call->float_args = g_slist_append_mempool (cfg->mempool, call->float_args, fad);
2606                         } else {
2607                                 add_outarg_reg (cfg, call, RegTypeFP, ainfo->reg + (i * 2), load);
2608                         }
2609                 }
2610                 break;
2611         default:
2612                 soffset = 0;
2613                 for (i = 0; i < ainfo->size; ++i) {
2614                         dreg = mono_alloc_ireg (cfg);
2615                         switch (struct_size) {
2616                         case 1:
2617                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, dreg, src->dreg, soffset);
2618                                 break;
2619                         case 2:
2620                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU2_MEMBASE, dreg, src->dreg, soffset);
2621                                 break;
2622                         case 3:
2623                                 tmpreg = mono_alloc_ireg (cfg);
2624                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, dreg, src->dreg, soffset);
2625                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, tmpreg, src->dreg, soffset + 1);
2626                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, tmpreg, tmpreg, 8);
2627                                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, dreg, dreg, tmpreg);
2628                                 MONO_EMIT_NEW_LOAD_MEMBASE_OP (cfg, OP_LOADU1_MEMBASE, tmpreg, src->dreg, soffset + 2);
2629                                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_SHL_IMM, tmpreg, tmpreg, 16);
2630                                 MONO_EMIT_NEW_BIALU (cfg, OP_IOR, dreg, dreg, tmpreg);
2631                                 break;
2632                         default:
2633                                 MONO_EMIT_NEW_LOAD_MEMBASE (cfg, dreg, src->dreg, soffset);
2634                                 break;
2635                         }
2636                         mono_call_inst_add_outarg_reg (cfg, call, dreg, ainfo->reg + i, FALSE);
2637                         soffset += sizeof (gpointer);
2638                         struct_size -= sizeof (gpointer);
2639                 }
2640                 //g_print ("vt size: %d at R%d + %d\n", doffset, vt->inst_basereg, vt->inst_offset);
2641                 if (ovf_size != 0)
2642                         mini_emit_memcpy (cfg, ARMREG_SP, doffset, src->dreg, soffset, MIN (ovf_size * sizeof (gpointer), struct_size), struct_size < 4 ? 1 : 4);
2643                 break;
2644         }
2645 }
2646
2647 void
2648 mono_arch_emit_setret (MonoCompile *cfg, MonoMethod *method, MonoInst *val)
2649 {
2650         MonoType *ret = mini_get_underlying_type (mono_method_signature (method)->ret);
2651
2652         if (!ret->byref) {
2653                 if (ret->type == MONO_TYPE_I8 || ret->type == MONO_TYPE_U8) {
2654                         MonoInst *ins;
2655
2656                         if (COMPILE_LLVM (cfg)) {
2657                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2658                         } else {
2659                                 MONO_INST_NEW (cfg, ins, OP_SETLRET);
2660                                 ins->sreg1 = val->dreg + 1;
2661                                 ins->sreg2 = val->dreg + 2;
2662                                 MONO_ADD_INS (cfg->cbb, ins);
2663                         }
2664                         return;
2665                 }
2666                 switch (arm_fpu) {
2667                 case MONO_ARM_FPU_NONE:
2668                         if (ret->type == MONO_TYPE_R8) {
2669                                 MonoInst *ins;
2670
2671                                 MONO_INST_NEW (cfg, ins, OP_SETFRET);
2672                                 ins->dreg = cfg->ret->dreg;
2673                                 ins->sreg1 = val->dreg;
2674                                 MONO_ADD_INS (cfg->cbb, ins);
2675                                 return;
2676                         }
2677                         if (ret->type == MONO_TYPE_R4) {
2678                                 /* Already converted to an int in method_to_ir () */
2679                                 MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2680                                 return;
2681                         }
2682                         break;
2683                 case MONO_ARM_FPU_VFP:
2684                 case MONO_ARM_FPU_VFP_HARD:
2685                         if (ret->type == MONO_TYPE_R8 || ret->type == MONO_TYPE_R4) {
2686                                 MonoInst *ins;
2687
2688                                 MONO_INST_NEW (cfg, ins, OP_SETFRET);
2689                                 ins->dreg = cfg->ret->dreg;
2690                                 ins->sreg1 = val->dreg;
2691                                 MONO_ADD_INS (cfg->cbb, ins);
2692                                 return;
2693                         }
2694                         break;
2695                 default:
2696                         g_assert_not_reached ();
2697                 }
2698         }
2699
2700         MONO_EMIT_NEW_UNALU (cfg, OP_MOVE, cfg->ret->dreg, val->dreg);
2701 }
2702
2703 #endif /* #ifndef DISABLE_JIT */
2704
2705 gboolean 
2706 mono_arch_is_inst_imm (gint64 imm)
2707 {
2708         return TRUE;
2709 }
2710
2711 typedef struct {
2712         MonoMethodSignature *sig;
2713         CallInfo *cinfo;
2714         MonoType *rtype;
2715         MonoType **param_types;
2716 } ArchDynCallInfo;
2717
2718 static gboolean
2719 dyn_call_supported (CallInfo *cinfo, MonoMethodSignature *sig)
2720 {
2721         int i;
2722
2723         if (sig->hasthis + sig->param_count > PARAM_REGS + DYN_CALL_STACK_ARGS)
2724                 return FALSE;
2725
2726         switch (cinfo->ret.storage) {
2727         case RegTypeNone:
2728         case RegTypeGeneral:
2729         case RegTypeIRegPair:
2730         case RegTypeStructByAddr:
2731                 break;
2732         case RegTypeFP:
2733                 if (IS_VFP)
2734                         break;
2735                 else
2736                         return FALSE;
2737         default:
2738                 return FALSE;
2739         }
2740
2741         for (i = 0; i < cinfo->nargs; ++i) {
2742                 ArgInfo *ainfo = &cinfo->args [i];
2743                 int last_slot;
2744
2745                 switch (ainfo->storage) {
2746                 case RegTypeGeneral:
2747                 case RegTypeIRegPair:
2748                 case RegTypeBaseGen:
2749                         break;
2750                 case RegTypeBase:
2751                         if (ainfo->offset >= (DYN_CALL_STACK_ARGS * sizeof (gpointer)))
2752                                 return FALSE;
2753                         break;
2754                 case RegTypeStructByVal:
2755                         if (ainfo->size == 0)
2756                                 last_slot = PARAM_REGS + (ainfo->offset / 4) + ainfo->vtsize;
2757                         else
2758                                 last_slot = ainfo->reg + ainfo->size + ainfo->vtsize;
2759                         if (last_slot >= PARAM_REGS + DYN_CALL_STACK_ARGS)
2760                                 return FALSE;
2761                         break;
2762                 default:
2763                         return FALSE;
2764                 }
2765         }
2766
2767         // FIXME: Can't use cinfo only as it doesn't contain info about I8/float */
2768         for (i = 0; i < sig->param_count; ++i) {
2769                 MonoType *t = sig->params [i];
2770
2771                 if (t->byref)
2772                         continue;
2773
2774                 t = mini_get_underlying_type (t);
2775
2776                 switch (t->type) {
2777                 case MONO_TYPE_R4:
2778                 case MONO_TYPE_R8:
2779                         if (IS_SOFT_FLOAT)
2780                                 return FALSE;
2781                         else
2782                                 break;
2783                         /*
2784                 case MONO_TYPE_I8:
2785                 case MONO_TYPE_U8:
2786                         return FALSE;
2787                         */
2788                 default:
2789                         break;
2790                 }
2791         }
2792
2793         return TRUE;
2794 }
2795
2796 MonoDynCallInfo*
2797 mono_arch_dyn_call_prepare (MonoMethodSignature *sig)
2798 {
2799         ArchDynCallInfo *info;
2800         CallInfo *cinfo;
2801         int i;
2802
2803         cinfo = get_call_info (NULL, sig);
2804
2805         if (!dyn_call_supported (cinfo, sig)) {
2806                 g_free (cinfo);
2807                 return NULL;
2808         }
2809
2810         info = g_new0 (ArchDynCallInfo, 1);
2811         // FIXME: Preprocess the info to speed up start_dyn_call ()
2812         info->sig = sig;
2813         info->cinfo = cinfo;
2814         info->rtype = mini_get_underlying_type (sig->ret);
2815         info->param_types = g_new0 (MonoType*, sig->param_count);
2816         for (i = 0; i < sig->param_count; ++i)
2817                 info->param_types [i] = mini_get_underlying_type (sig->params [i]);
2818         
2819         return (MonoDynCallInfo*)info;
2820 }
2821
2822 void
2823 mono_arch_dyn_call_free (MonoDynCallInfo *info)
2824 {
2825         ArchDynCallInfo *ainfo = (ArchDynCallInfo*)info;
2826
2827         g_free (ainfo->cinfo);
2828         g_free (ainfo);
2829 }
2830
2831 void
2832 mono_arch_start_dyn_call (MonoDynCallInfo *info, gpointer **args, guint8 *ret, guint8 *buf, int buf_len)
2833 {
2834         ArchDynCallInfo *dinfo = (ArchDynCallInfo*)info;
2835         DynCallArgs *p = (DynCallArgs*)buf;
2836         int arg_index, greg, i, j, pindex;
2837         MonoMethodSignature *sig = dinfo->sig;
2838
2839         g_assert (buf_len >= sizeof (DynCallArgs));
2840
2841         p->res = 0;
2842         p->ret = ret;
2843
2844         arg_index = 0;
2845         greg = 0;
2846         pindex = 0;
2847
2848         if (sig->hasthis || dinfo->cinfo->vret_arg_index == 1) {
2849                 p->regs [greg ++] = (mgreg_t)*(args [arg_index ++]);
2850                 if (!sig->hasthis)
2851                         pindex = 1;
2852         }
2853
2854         if (dinfo->cinfo->ret.storage == RegTypeStructByAddr)
2855                 p->regs [greg ++] = (mgreg_t)ret;
2856
2857         for (i = pindex; i < sig->param_count; i++) {
2858                 MonoType *t = dinfo->param_types [i];
2859                 gpointer *arg = args [arg_index ++];
2860                 ArgInfo *ainfo = &dinfo->cinfo->args [i + sig->hasthis];
2861                 int slot = -1;
2862
2863                 if (ainfo->storage == RegTypeGeneral || ainfo->storage == RegTypeIRegPair || ainfo->storage == RegTypeStructByVal) {
2864                         slot = ainfo->reg;
2865                 } else if (ainfo->storage == RegTypeBase) {
2866                         slot = PARAM_REGS + (ainfo->offset / 4);
2867                 } else if (ainfo->storage == RegTypeBaseGen) {
2868                         /* slot + 1 is the first stack slot, so the code below will work */
2869                         slot = 3;
2870                 } else {
2871                         g_assert_not_reached ();
2872                 }
2873
2874                 if (t->byref) {
2875                         p->regs [slot] = (mgreg_t)*arg;
2876                         continue;
2877                 }
2878
2879                 switch (t->type) {
2880                 case MONO_TYPE_STRING:
2881                 case MONO_TYPE_CLASS:  
2882                 case MONO_TYPE_ARRAY:
2883                 case MONO_TYPE_SZARRAY:
2884                 case MONO_TYPE_OBJECT:
2885                 case MONO_TYPE_PTR:
2886                 case MONO_TYPE_I:
2887                 case MONO_TYPE_U:
2888                         p->regs [slot] = (mgreg_t)*arg;
2889                         break;
2890                 case MONO_TYPE_U1:
2891                         p->regs [slot] = *(guint8*)arg;
2892                         break;
2893                 case MONO_TYPE_I1:
2894                         p->regs [slot] = *(gint8*)arg;
2895                         break;
2896                 case MONO_TYPE_I2:
2897                         p->regs [slot] = *(gint16*)arg;
2898                         break;
2899                 case MONO_TYPE_U2:
2900                         p->regs [slot] = *(guint16*)arg;
2901                         break;
2902                 case MONO_TYPE_I4:
2903                         p->regs [slot] = *(gint32*)arg;
2904                         break;
2905                 case MONO_TYPE_U4:
2906                         p->regs [slot] = *(guint32*)arg;
2907                         break;
2908                 case MONO_TYPE_I8:
2909                 case MONO_TYPE_U8:
2910                         p->regs [slot ++] = (mgreg_t)arg [0];
2911                         p->regs [slot] = (mgreg_t)arg [1];
2912                         break;
2913                 case MONO_TYPE_R4:
2914                         p->regs [slot] = *(mgreg_t*)arg;
2915                         break;
2916                 case MONO_TYPE_R8:
2917                         p->regs [slot ++] = (mgreg_t)arg [0];
2918                         p->regs [slot] = (mgreg_t)arg [1];
2919                         break;
2920                 case MONO_TYPE_GENERICINST:
2921                         if (MONO_TYPE_IS_REFERENCE (t)) {
2922                                 p->regs [slot] = (mgreg_t)*arg;
2923                                 break;
2924                         } else {
2925                                 if (t->type == MONO_TYPE_GENERICINST && mono_class_is_nullable (mono_class_from_mono_type (t))) {
2926                                         MonoClass *klass = mono_class_from_mono_type (t);
2927                                         guint8 *nullable_buf;
2928                                         int size;
2929
2930                                         size = mono_class_value_size (klass, NULL);
2931                                         nullable_buf = g_alloca (size);
2932                                         g_assert (nullable_buf);
2933
2934                                         /* The argument pointed to by arg is either a boxed vtype or null */
2935                                         mono_nullable_init (nullable_buf, (MonoObject*)arg, klass);
2936
2937                                         arg = (gpointer*)nullable_buf;
2938                                         /* Fall though */
2939                                 } else {
2940                                         /* Fall though */
2941                                 }
2942                         }
2943                 case MONO_TYPE_VALUETYPE:
2944                         g_assert (ainfo->storage == RegTypeStructByVal);
2945
2946                         if (ainfo->size == 0)
2947                                 slot = PARAM_REGS + (ainfo->offset / 4);
2948                         else
2949                                 slot = ainfo->reg;
2950
2951                         for (j = 0; j < ainfo->size + ainfo->vtsize; ++j)
2952                                 p->regs [slot ++] = ((mgreg_t*)arg) [j];
2953                         break;
2954                 default:
2955                         g_assert_not_reached ();
2956                 }
2957         }
2958 }
2959
2960 void
2961 mono_arch_finish_dyn_call (MonoDynCallInfo *info, guint8 *buf)
2962 {
2963         ArchDynCallInfo *ainfo = (ArchDynCallInfo*)info;
2964         MonoType *ptype = ainfo->rtype;
2965         guint8 *ret = ((DynCallArgs*)buf)->ret;
2966         mgreg_t res = ((DynCallArgs*)buf)->res;
2967         mgreg_t res2 = ((DynCallArgs*)buf)->res2;
2968
2969         switch (ptype->type) {
2970         case MONO_TYPE_VOID:
2971                 *(gpointer*)ret = NULL;
2972                 break;
2973         case MONO_TYPE_STRING:
2974         case MONO_TYPE_CLASS:  
2975         case MONO_TYPE_ARRAY:
2976         case MONO_TYPE_SZARRAY:
2977         case MONO_TYPE_OBJECT:
2978         case MONO_TYPE_I:
2979         case MONO_TYPE_U:
2980         case MONO_TYPE_PTR:
2981                 *(gpointer*)ret = (gpointer)res;
2982                 break;
2983         case MONO_TYPE_I1:
2984                 *(gint8*)ret = res;
2985                 break;
2986         case MONO_TYPE_U1:
2987                 *(guint8*)ret = res;
2988                 break;
2989         case MONO_TYPE_I2:
2990                 *(gint16*)ret = res;
2991                 break;
2992         case MONO_TYPE_U2:
2993                 *(guint16*)ret = res;
2994                 break;
2995         case MONO_TYPE_I4:
2996                 *(gint32*)ret = res;
2997                 break;
2998         case MONO_TYPE_U4:
2999                 *(guint32*)ret = res;
3000                 break;
3001         case MONO_TYPE_I8:
3002         case MONO_TYPE_U8:
3003                 /* This handles endianness as well */
3004                 ((gint32*)ret) [0] = res;
3005                 ((gint32*)ret) [1] = res2;
3006                 break;
3007         case MONO_TYPE_GENERICINST:
3008                 if (MONO_TYPE_IS_REFERENCE (ptype)) {
3009                         *(gpointer*)ret = (gpointer)res;
3010                         break;
3011                 } else {
3012                         /* Fall though */
3013                 }
3014         case MONO_TYPE_VALUETYPE:
3015                 g_assert (ainfo->cinfo->ret.storage == RegTypeStructByAddr);
3016                 /* Nothing to do */
3017                 break;
3018         case MONO_TYPE_R4:
3019                 g_assert (IS_VFP);
3020                 *(float*)ret = *(float*)&res;
3021                 break;
3022         case MONO_TYPE_R8: {
3023                 mgreg_t regs [2];
3024
3025                 g_assert (IS_VFP);
3026                 regs [0] = res;
3027                 regs [1] = res2;
3028
3029                 *(double*)ret = *(double*)&regs;
3030                 break;
3031         }
3032         default:
3033                 g_assert_not_reached ();
3034         }
3035 }
3036
3037 #ifndef DISABLE_JIT
3038
3039 /*
3040  * Allow tracing to work with this interface (with an optional argument)
3041  */
3042
3043 void*
3044 mono_arch_instrument_prolog (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments)
3045 {
3046         guchar *code = p;
3047
3048         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
3049         ARM_MOV_REG_IMM8 (code, ARMREG_R1, 0); /* NULL ebp for now */
3050         code = mono_arm_emit_load_imm (code, ARMREG_R2, (guint32)func);
3051         code = emit_call_reg (code, ARMREG_R2);
3052         return code;
3053 }
3054
3055 enum {
3056         SAVE_NONE,
3057         SAVE_STRUCT,
3058         SAVE_ONE,
3059         SAVE_TWO,
3060         SAVE_ONE_FP,
3061         SAVE_TWO_FP
3062 };
3063
3064 void*
3065 mono_arch_instrument_epilog_full (MonoCompile *cfg, void *func, void *p, gboolean enable_arguments, gboolean preserve_argument_registers)
3066 {
3067         guchar *code = p;
3068         int save_mode = SAVE_NONE;
3069         int offset;
3070         MonoMethod *method = cfg->method;
3071         MonoType *ret_type = mini_get_underlying_type (mono_method_signature (method)->ret);
3072         int rtype = ret_type->type;
3073         int save_offset = cfg->param_area;
3074         save_offset += 7;
3075         save_offset &= ~7;
3076         
3077         offset = code - cfg->native_code;
3078         /* we need about 16 instructions */
3079         if (offset > (cfg->code_size - 16 * 4)) {
3080                 cfg->code_size *= 2;
3081                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
3082                 code = cfg->native_code + offset;
3083         }
3084         switch (rtype) {
3085         case MONO_TYPE_VOID:
3086                 /* special case string .ctor icall */
3087                 if (strcmp (".ctor", method->name) && method->klass == mono_defaults.string_class)
3088                         save_mode = SAVE_ONE;
3089                 else
3090                         save_mode = SAVE_NONE;
3091                 break;
3092         case MONO_TYPE_I8:
3093         case MONO_TYPE_U8:
3094                 save_mode = SAVE_TWO;
3095                 break;
3096         case MONO_TYPE_R4:
3097                 if (IS_HARD_FLOAT)
3098                         save_mode = SAVE_ONE_FP;
3099                 else
3100                         save_mode = SAVE_ONE;
3101                 break;
3102         case MONO_TYPE_R8:
3103                 if (IS_HARD_FLOAT)
3104                         save_mode = SAVE_TWO_FP;
3105                 else
3106                         save_mode = SAVE_TWO;
3107                 break;
3108         case MONO_TYPE_GENERICINST:
3109                 if (!mono_type_generic_inst_is_valuetype (ret_type)) {
3110                         save_mode = SAVE_ONE;
3111                         break;
3112                 }
3113                 /* Fall through */
3114         case MONO_TYPE_VALUETYPE:
3115                 save_mode = SAVE_STRUCT;
3116                 break;
3117         default:
3118                 save_mode = SAVE_ONE;
3119                 break;
3120         }
3121
3122         switch (save_mode) {
3123         case SAVE_TWO:
3124                 ARM_STR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3125                 ARM_STR_IMM (code, ARMREG_R1, cfg->frame_reg, save_offset + 4);
3126                 if (enable_arguments) {
3127                         ARM_MOV_REG_REG (code, ARMREG_R2, ARMREG_R1);
3128                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3129                 }
3130                 break;
3131         case SAVE_ONE:
3132                 ARM_STR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3133                 if (enable_arguments) {
3134                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3135                 }
3136                 break;
3137         case SAVE_ONE_FP:
3138                 ARM_FSTS (code, ARM_VFP_F0, cfg->frame_reg, save_offset);
3139                 if (enable_arguments) {
3140                         ARM_FMRS (code, ARMREG_R1, ARM_VFP_F0);
3141                 }
3142                 break;
3143         case SAVE_TWO_FP:
3144                 ARM_FSTD (code, ARM_VFP_D0, cfg->frame_reg, save_offset);
3145                 if (enable_arguments) {
3146                         ARM_FMDRR (code, ARMREG_R1, ARMREG_R2, ARM_VFP_D0);
3147                 }
3148                 break;
3149         case SAVE_STRUCT:
3150                 if (enable_arguments) {
3151                         /* FIXME: get the actual address  */
3152                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_R0);
3153                 }
3154                 break;
3155         case SAVE_NONE:
3156         default:
3157                 break;
3158         }
3159
3160         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
3161         code = mono_arm_emit_load_imm (code, ARMREG_IP, (guint32)func);
3162         code = emit_call_reg (code, ARMREG_IP);
3163
3164         switch (save_mode) {
3165         case SAVE_TWO:
3166                 ARM_LDR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3167                 ARM_LDR_IMM (code, ARMREG_R1, cfg->frame_reg, save_offset + 4);
3168                 break;
3169         case SAVE_ONE:
3170                 ARM_LDR_IMM (code, ARMREG_R0, cfg->frame_reg, save_offset);
3171                 break;
3172         case SAVE_ONE_FP:
3173                 ARM_FLDS (code, ARM_VFP_F0, cfg->frame_reg, save_offset);
3174                 break;
3175         case SAVE_TWO_FP:
3176                 ARM_FLDD (code, ARM_VFP_D0, cfg->frame_reg, save_offset);
3177                 break;
3178         case SAVE_NONE:
3179         default:
3180                 break;
3181         }
3182
3183         return code;
3184 }
3185
3186 /*
3187  * The immediate field for cond branches is big enough for all reasonable methods
3188  */
3189 #define EMIT_COND_BRANCH_FLAGS(ins,condcode) \
3190 if (0 && ins->inst_true_bb->native_offset) { \
3191         ARM_B_COND (code, (condcode), (code - cfg->native_code + ins->inst_true_bb->native_offset) & 0xffffff); \
3192 } else { \
3193         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_true_bb); \
3194         ARM_B_COND (code, (condcode), 0); \
3195 }
3196
3197 #define EMIT_COND_BRANCH(ins,cond) EMIT_COND_BRANCH_FLAGS(ins, branch_cc_table [(cond)])
3198
3199 /* emit an exception if condition is fail
3200  *
3201  * We assign the extra code used to throw the implicit exceptions
3202  * to cfg->bb_exit as far as the big branch handling is concerned
3203  */
3204 #define EMIT_COND_SYSTEM_EXCEPTION_FLAGS(condcode,exc_name)            \
3205         do {                                                        \
3206                 mono_add_patch_info (cfg, code - cfg->native_code,   \
3207                                     MONO_PATCH_INFO_EXC, exc_name); \
3208                 ARM_BL_COND (code, (condcode), 0); \
3209         } while (0); 
3210
3211 #define EMIT_COND_SYSTEM_EXCEPTION(cond,exc_name) EMIT_COND_SYSTEM_EXCEPTION_FLAGS(branch_cc_table [(cond)], (exc_name))
3212
3213 void
3214 mono_arch_peephole_pass_1 (MonoCompile *cfg, MonoBasicBlock *bb)
3215 {
3216 }
3217
3218 void
3219 mono_arch_peephole_pass_2 (MonoCompile *cfg, MonoBasicBlock *bb)
3220 {
3221         MonoInst *ins, *n;
3222
3223         MONO_BB_FOR_EACH_INS_SAFE (bb, n, ins) {
3224                 MonoInst *last_ins = mono_inst_prev (ins, FILTER_IL_SEQ_POINT);
3225
3226                 switch (ins->opcode) {
3227                 case OP_MUL_IMM: 
3228                 case OP_IMUL_IMM: 
3229                         /* Already done by an arch-independent pass */
3230                         break;
3231                 case OP_LOAD_MEMBASE:
3232                 case OP_LOADI4_MEMBASE:
3233                         /* 
3234                          * OP_STORE_MEMBASE_REG reg, offset(basereg) 
3235                          * OP_LOAD_MEMBASE offset(basereg), reg
3236                          */
3237                         if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_REG 
3238                                          || last_ins->opcode == OP_STORE_MEMBASE_REG) &&
3239                             ins->inst_basereg == last_ins->inst_destbasereg &&
3240                             ins->inst_offset == last_ins->inst_offset) {
3241                                 if (ins->dreg == last_ins->sreg1) {
3242                                         MONO_DELETE_INS (bb, ins);
3243                                         continue;
3244                                 } else {
3245                                         //static int c = 0; g_print ("MATCHX %s %d\n", cfg->method->name,c++);
3246                                         ins->opcode = OP_MOVE;
3247                                         ins->sreg1 = last_ins->sreg1;
3248                                 }
3249
3250                         /* 
3251                          * Note: reg1 must be different from the basereg in the second load
3252                          * OP_LOAD_MEMBASE offset(basereg), reg1
3253                          * OP_LOAD_MEMBASE offset(basereg), reg2
3254                          * -->
3255                          * OP_LOAD_MEMBASE offset(basereg), reg1
3256                          * OP_MOVE reg1, reg2
3257                          */
3258                         } if (last_ins && (last_ins->opcode == OP_LOADI4_MEMBASE
3259                                            || last_ins->opcode == OP_LOAD_MEMBASE) &&
3260                               ins->inst_basereg != last_ins->dreg &&
3261                               ins->inst_basereg == last_ins->inst_basereg &&
3262                               ins->inst_offset == last_ins->inst_offset) {
3263
3264                                 if (ins->dreg == last_ins->dreg) {
3265                                         MONO_DELETE_INS (bb, ins);
3266                                         continue;
3267                                 } else {
3268                                         ins->opcode = OP_MOVE;
3269                                         ins->sreg1 = last_ins->dreg;
3270                                 }
3271
3272                                 //g_assert_not_reached ();
3273
3274 #if 0
3275                         /* 
3276                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
3277                          * OP_LOAD_MEMBASE offset(basereg), reg
3278                          * -->
3279                          * OP_STORE_MEMBASE_IMM imm, offset(basereg) 
3280                          * OP_ICONST reg, imm
3281                          */
3282                         } else if (last_ins && (last_ins->opcode == OP_STOREI4_MEMBASE_IMM
3283                                                 || last_ins->opcode == OP_STORE_MEMBASE_IMM) &&
3284                                    ins->inst_basereg == last_ins->inst_destbasereg &&
3285                                    ins->inst_offset == last_ins->inst_offset) {
3286                                 //static int c = 0; g_print ("MATCHX %s %d\n", cfg->method->name,c++);
3287                                 ins->opcode = OP_ICONST;
3288                                 ins->inst_c0 = last_ins->inst_imm;
3289                                 g_assert_not_reached (); // check this rule
3290 #endif
3291                         }
3292                         break;
3293                 case OP_LOADU1_MEMBASE:
3294                 case OP_LOADI1_MEMBASE:
3295                         if (last_ins && (last_ins->opcode == OP_STOREI1_MEMBASE_REG) &&
3296                                         ins->inst_basereg == last_ins->inst_destbasereg &&
3297                                         ins->inst_offset == last_ins->inst_offset) {
3298                                 ins->opcode = (ins->opcode == OP_LOADI1_MEMBASE) ? OP_ICONV_TO_I1 : OP_ICONV_TO_U1;
3299                                 ins->sreg1 = last_ins->sreg1;                           
3300                         }
3301                         break;
3302                 case OP_LOADU2_MEMBASE:
3303                 case OP_LOADI2_MEMBASE:
3304                         if (last_ins && (last_ins->opcode == OP_STOREI2_MEMBASE_REG) &&
3305                                         ins->inst_basereg == last_ins->inst_destbasereg &&
3306                                         ins->inst_offset == last_ins->inst_offset) {
3307                                 ins->opcode = (ins->opcode == OP_LOADI2_MEMBASE) ? OP_ICONV_TO_I2 : OP_ICONV_TO_U2;
3308                                 ins->sreg1 = last_ins->sreg1;                           
3309                         }
3310                         break;
3311                 case OP_MOVE:
3312                         ins->opcode = OP_MOVE;
3313                         /* 
3314                          * OP_MOVE reg, reg 
3315                          */
3316                         if (ins->dreg == ins->sreg1) {
3317                                 MONO_DELETE_INS (bb, ins);
3318                                 continue;
3319                         }
3320                         /* 
3321                          * OP_MOVE sreg, dreg 
3322                          * OP_MOVE dreg, sreg
3323                          */
3324                         if (last_ins && last_ins->opcode == OP_MOVE &&
3325                             ins->sreg1 == last_ins->dreg &&
3326                             ins->dreg == last_ins->sreg1) {
3327                                 MONO_DELETE_INS (bb, ins);
3328                                 continue;
3329                         }
3330                         break;
3331                 }
3332         }
3333 }
3334
3335 /* 
3336  * the branch_cc_table should maintain the order of these
3337  * opcodes.
3338 case CEE_BEQ:
3339 case CEE_BGE:
3340 case CEE_BGT:
3341 case CEE_BLE:
3342 case CEE_BLT:
3343 case CEE_BNE_UN:
3344 case CEE_BGE_UN:
3345 case CEE_BGT_UN:
3346 case CEE_BLE_UN:
3347 case CEE_BLT_UN:
3348  */
3349 static const guchar 
3350 branch_cc_table [] = {
3351         ARMCOND_EQ, 
3352         ARMCOND_GE, 
3353         ARMCOND_GT, 
3354         ARMCOND_LE,
3355         ARMCOND_LT, 
3356         
3357         ARMCOND_NE, 
3358         ARMCOND_HS, 
3359         ARMCOND_HI, 
3360         ARMCOND_LS,
3361         ARMCOND_LO
3362 };
3363
3364 #define ADD_NEW_INS(cfg,dest,op) do {       \
3365                 MONO_INST_NEW ((cfg), (dest), (op)); \
3366         mono_bblock_insert_before_ins (bb, ins, (dest)); \
3367         } while (0)
3368
3369 static int
3370 map_to_reg_reg_op (int op)
3371 {
3372         switch (op) {
3373         case OP_ADD_IMM:
3374                 return OP_IADD;
3375         case OP_SUB_IMM:
3376                 return OP_ISUB;
3377         case OP_AND_IMM:
3378                 return OP_IAND;
3379         case OP_COMPARE_IMM:
3380                 return OP_COMPARE;
3381         case OP_ICOMPARE_IMM:
3382                 return OP_ICOMPARE;
3383         case OP_ADDCC_IMM:
3384                 return OP_ADDCC;
3385         case OP_ADC_IMM:
3386                 return OP_ADC;
3387         case OP_SUBCC_IMM:
3388                 return OP_SUBCC;
3389         case OP_SBB_IMM:
3390                 return OP_SBB;
3391         case OP_OR_IMM:
3392                 return OP_IOR;
3393         case OP_XOR_IMM:
3394                 return OP_IXOR;
3395         case OP_LOAD_MEMBASE:
3396                 return OP_LOAD_MEMINDEX;
3397         case OP_LOADI4_MEMBASE:
3398                 return OP_LOADI4_MEMINDEX;
3399         case OP_LOADU4_MEMBASE:
3400                 return OP_LOADU4_MEMINDEX;
3401         case OP_LOADU1_MEMBASE:
3402                 return OP_LOADU1_MEMINDEX;
3403         case OP_LOADI2_MEMBASE:
3404                 return OP_LOADI2_MEMINDEX;
3405         case OP_LOADU2_MEMBASE:
3406                 return OP_LOADU2_MEMINDEX;
3407         case OP_LOADI1_MEMBASE:
3408                 return OP_LOADI1_MEMINDEX;
3409         case OP_STOREI1_MEMBASE_REG:
3410                 return OP_STOREI1_MEMINDEX;
3411         case OP_STOREI2_MEMBASE_REG:
3412                 return OP_STOREI2_MEMINDEX;
3413         case OP_STOREI4_MEMBASE_REG:
3414                 return OP_STOREI4_MEMINDEX;
3415         case OP_STORE_MEMBASE_REG:
3416                 return OP_STORE_MEMINDEX;
3417         case OP_STORER4_MEMBASE_REG:
3418                 return OP_STORER4_MEMINDEX;
3419         case OP_STORER8_MEMBASE_REG:
3420                 return OP_STORER8_MEMINDEX;
3421         case OP_STORE_MEMBASE_IMM:
3422                 return OP_STORE_MEMBASE_REG;
3423         case OP_STOREI1_MEMBASE_IMM:
3424                 return OP_STOREI1_MEMBASE_REG;
3425         case OP_STOREI2_MEMBASE_IMM:
3426                 return OP_STOREI2_MEMBASE_REG;
3427         case OP_STOREI4_MEMBASE_IMM:
3428                 return OP_STOREI4_MEMBASE_REG;
3429         }
3430         g_assert_not_reached ();
3431 }
3432
3433 /*
3434  * Remove from the instruction list the instructions that can't be
3435  * represented with very simple instructions with no register
3436  * requirements.
3437  */
3438 void
3439 mono_arch_lowering_pass (MonoCompile *cfg, MonoBasicBlock *bb)
3440 {
3441         MonoInst *ins, *temp, *last_ins = NULL;
3442         int rot_amount, imm8, low_imm;
3443
3444         MONO_BB_FOR_EACH_INS (bb, ins) {
3445 loop_start:
3446                 switch (ins->opcode) {
3447                 case OP_ADD_IMM:
3448                 case OP_SUB_IMM:
3449                 case OP_AND_IMM:
3450                 case OP_COMPARE_IMM:
3451                 case OP_ICOMPARE_IMM:
3452                 case OP_ADDCC_IMM:
3453                 case OP_ADC_IMM:
3454                 case OP_SUBCC_IMM:
3455                 case OP_SBB_IMM:
3456                 case OP_OR_IMM:
3457                 case OP_XOR_IMM:
3458                 case OP_IADD_IMM:
3459                 case OP_ISUB_IMM:
3460                 case OP_IAND_IMM:
3461                 case OP_IADC_IMM:
3462                 case OP_ISBB_IMM:
3463                 case OP_IOR_IMM:
3464                 case OP_IXOR_IMM:
3465                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount)) < 0) {
3466                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3467                                 temp->inst_c0 = ins->inst_imm;
3468                                 temp->dreg = mono_alloc_ireg (cfg);
3469                                 ins->sreg2 = temp->dreg;
3470                                 ins->opcode = mono_op_imm_to_op (ins->opcode);
3471                         }
3472                         if (ins->opcode == OP_SBB || ins->opcode == OP_ISBB || ins->opcode == OP_SUBCC)
3473                                 goto loop_start;
3474                         else
3475                                 break;
3476                 case OP_MUL_IMM:
3477                 case OP_IMUL_IMM:
3478                         if (ins->inst_imm == 1) {
3479                                 ins->opcode = OP_MOVE;
3480                                 break;
3481                         }
3482                         if (ins->inst_imm == 0) {
3483                                 ins->opcode = OP_ICONST;
3484                                 ins->inst_c0 = 0;
3485                                 break;
3486                         }
3487                         imm8 = mono_is_power_of_two (ins->inst_imm);
3488                         if (imm8 > 0) {
3489                                 ins->opcode = OP_SHL_IMM;
3490                                 ins->inst_imm = imm8;
3491                                 break;
3492                         }
3493                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3494                         temp->inst_c0 = ins->inst_imm;
3495                         temp->dreg = mono_alloc_ireg (cfg);
3496                         ins->sreg2 = temp->dreg;
3497                         ins->opcode = OP_IMUL;
3498                         break;
3499                 case OP_SBB:
3500                 case OP_ISBB:
3501                 case OP_SUBCC:
3502                 case OP_ISUBCC:
3503                         if (ins->next  && (ins->next->opcode == OP_COND_EXC_C || ins->next->opcode == OP_COND_EXC_IC))
3504                                 /* ARM sets the C flag to 1 if there was _no_ overflow */
3505                                 ins->next->opcode = OP_COND_EXC_NC;
3506                         break;
3507                 case OP_IDIV_IMM:
3508                 case OP_IDIV_UN_IMM:
3509                 case OP_IREM_IMM:
3510                 case OP_IREM_UN_IMM:
3511                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3512                         temp->inst_c0 = ins->inst_imm;
3513                         temp->dreg = mono_alloc_ireg (cfg);
3514                         ins->sreg2 = temp->dreg;
3515                         ins->opcode = mono_op_imm_to_op (ins->opcode);
3516                         break;
3517                 case OP_LOCALLOC_IMM:
3518                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3519                         temp->inst_c0 = ins->inst_imm;
3520                         temp->dreg = mono_alloc_ireg (cfg);
3521                         ins->sreg1 = temp->dreg;
3522                         ins->opcode = OP_LOCALLOC;
3523                         break;
3524                 case OP_LOAD_MEMBASE:
3525                 case OP_LOADI4_MEMBASE:
3526                 case OP_LOADU4_MEMBASE:
3527                 case OP_LOADU1_MEMBASE:
3528                         /* we can do two things: load the immed in a register
3529                          * and use an indexed load, or see if the immed can be
3530                          * represented as an ad_imm + a load with a smaller offset
3531                          * that fits. We just do the first for now, optimize later.
3532                          */
3533                         if (arm_is_imm12 (ins->inst_offset))
3534                                 break;
3535                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3536                         temp->inst_c0 = ins->inst_offset;
3537                         temp->dreg = mono_alloc_ireg (cfg);
3538                         ins->sreg2 = temp->dreg;
3539                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3540                         break;
3541                 case OP_LOADI2_MEMBASE:
3542                 case OP_LOADU2_MEMBASE:
3543                 case OP_LOADI1_MEMBASE:
3544                         if (arm_is_imm8 (ins->inst_offset))
3545                                 break;
3546                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3547                         temp->inst_c0 = ins->inst_offset;
3548                         temp->dreg = mono_alloc_ireg (cfg);
3549                         ins->sreg2 = temp->dreg;
3550                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3551                         break;
3552                 case OP_LOADR4_MEMBASE:
3553                 case OP_LOADR8_MEMBASE:
3554                         if (arm_is_fpimm8 (ins->inst_offset))
3555                                 break;
3556                         low_imm = ins->inst_offset & 0x1ff;
3557                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_offset & ~0x1ff, &rot_amount)) >= 0) {
3558                                 ADD_NEW_INS (cfg, temp, OP_ADD_IMM);
3559                                 temp->inst_imm = ins->inst_offset & ~0x1ff;
3560                                 temp->sreg1 = ins->inst_basereg;
3561                                 temp->dreg = mono_alloc_ireg (cfg);
3562                                 ins->inst_basereg = temp->dreg;
3563                                 ins->inst_offset = low_imm;
3564                         } else {
3565                                 MonoInst *add_ins;
3566
3567                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3568                                 temp->inst_c0 = ins->inst_offset;
3569                                 temp->dreg = mono_alloc_ireg (cfg);
3570
3571                                 ADD_NEW_INS (cfg, add_ins, OP_IADD);
3572                                 add_ins->sreg1 = ins->inst_basereg;
3573                                 add_ins->sreg2 = temp->dreg;
3574                                 add_ins->dreg = mono_alloc_ireg (cfg);
3575
3576                                 ins->inst_basereg = add_ins->dreg;
3577                                 ins->inst_offset = 0;
3578                         }
3579                         break;
3580                 case OP_STORE_MEMBASE_REG:
3581                 case OP_STOREI4_MEMBASE_REG:
3582                 case OP_STOREI1_MEMBASE_REG:
3583                         if (arm_is_imm12 (ins->inst_offset))
3584                                 break;
3585                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3586                         temp->inst_c0 = ins->inst_offset;
3587                         temp->dreg = mono_alloc_ireg (cfg);
3588                         ins->sreg2 = temp->dreg;
3589                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3590                         break;
3591                 case OP_STOREI2_MEMBASE_REG:
3592                         if (arm_is_imm8 (ins->inst_offset))
3593                                 break;
3594                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3595                         temp->inst_c0 = ins->inst_offset;
3596                         temp->dreg = mono_alloc_ireg (cfg);
3597                         ins->sreg2 = temp->dreg;
3598                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3599                         break;
3600                 case OP_STORER4_MEMBASE_REG:
3601                 case OP_STORER8_MEMBASE_REG:
3602                         if (arm_is_fpimm8 (ins->inst_offset))
3603                                 break;
3604                         low_imm = ins->inst_offset & 0x1ff;
3605                         if ((imm8 = mono_arm_is_rotated_imm8 (ins->inst_offset & ~ 0x1ff, &rot_amount)) >= 0 && arm_is_fpimm8 (low_imm)) {
3606                                 ADD_NEW_INS (cfg, temp, OP_ADD_IMM);
3607                                 temp->inst_imm = ins->inst_offset & ~0x1ff;
3608                                 temp->sreg1 = ins->inst_destbasereg;
3609                                 temp->dreg = mono_alloc_ireg (cfg);
3610                                 ins->inst_destbasereg = temp->dreg;
3611                                 ins->inst_offset = low_imm;
3612                         } else {
3613                                 MonoInst *add_ins;
3614
3615                                 ADD_NEW_INS (cfg, temp, OP_ICONST);
3616                                 temp->inst_c0 = ins->inst_offset;
3617                                 temp->dreg = mono_alloc_ireg (cfg);
3618
3619                                 ADD_NEW_INS (cfg, add_ins, OP_IADD);
3620                                 add_ins->sreg1 = ins->inst_destbasereg;
3621                                 add_ins->sreg2 = temp->dreg;
3622                                 add_ins->dreg = mono_alloc_ireg (cfg);
3623
3624                                 ins->inst_destbasereg = add_ins->dreg;
3625                                 ins->inst_offset = 0;
3626                         }
3627                         break;
3628                 case OP_STORE_MEMBASE_IMM:
3629                 case OP_STOREI1_MEMBASE_IMM:
3630                 case OP_STOREI2_MEMBASE_IMM:
3631                 case OP_STOREI4_MEMBASE_IMM:
3632                         ADD_NEW_INS (cfg, temp, OP_ICONST);
3633                         temp->inst_c0 = ins->inst_imm;
3634                         temp->dreg = mono_alloc_ireg (cfg);
3635                         ins->sreg1 = temp->dreg;
3636                         ins->opcode = map_to_reg_reg_op (ins->opcode);
3637                         last_ins = temp;
3638                         goto loop_start; /* make it handle the possibly big ins->inst_offset */
3639                 case OP_FCOMPARE:
3640                 case OP_RCOMPARE: {
3641                         gboolean swap = FALSE;
3642                         int reg;
3643
3644                         if (!ins->next) {
3645                                 /* Optimized away */
3646                                 NULLIFY_INS (ins);
3647                                 break;
3648                         }
3649
3650                         /* Some fp compares require swapped operands */
3651                         switch (ins->next->opcode) {
3652                         case OP_FBGT:
3653                                 ins->next->opcode = OP_FBLT;
3654                                 swap = TRUE;
3655                                 break;
3656                         case OP_FBGT_UN:
3657                                 ins->next->opcode = OP_FBLT_UN;
3658                                 swap = TRUE;
3659                                 break;
3660                         case OP_FBLE:
3661                                 ins->next->opcode = OP_FBGE;
3662                                 swap = TRUE;
3663                                 break;
3664                         case OP_FBLE_UN:
3665                                 ins->next->opcode = OP_FBGE_UN;
3666                                 swap = TRUE;
3667                                 break;
3668                         default:
3669                                 break;
3670                         }
3671                         if (swap) {
3672                                 reg = ins->sreg1;
3673                                 ins->sreg1 = ins->sreg2;
3674                                 ins->sreg2 = reg;
3675                         }
3676                         break;
3677                 }
3678                 }
3679
3680                 last_ins = ins;
3681         }
3682         bb->last_ins = last_ins;
3683         bb->max_vreg = cfg->next_vreg;
3684 }
3685
3686 void
3687 mono_arch_decompose_long_opts (MonoCompile *cfg, MonoInst *long_ins)
3688 {
3689         MonoInst *ins;
3690
3691         if (long_ins->opcode == OP_LNEG) {
3692                 ins = long_ins;
3693                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ARM_RSBS_IMM, ins->dreg + 1, ins->sreg1 + 1, 0);
3694                 MONO_EMIT_NEW_BIALU_IMM (cfg, OP_ARM_RSC_IMM, ins->dreg + 2, ins->sreg1 + 2, 0);
3695                 NULLIFY_INS (ins);
3696         }
3697 }
3698
3699 static guchar*
3700 emit_float_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
3701 {
3702         /* sreg is a float, dreg is an integer reg  */
3703         if (IS_VFP) {
3704                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
3705                 if (is_signed)
3706                         ARM_TOSIZD (code, vfp_scratch1, sreg);
3707                 else
3708                         ARM_TOUIZD (code, vfp_scratch1, sreg);
3709                 ARM_FMRS (code, dreg, vfp_scratch1);
3710                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
3711         }
3712         if (!is_signed) {
3713                 if (size == 1)
3714                         ARM_AND_REG_IMM8 (code, dreg, dreg, 0xff);
3715                 else if (size == 2) {
3716                         ARM_SHL_IMM (code, dreg, dreg, 16);
3717                         ARM_SHR_IMM (code, dreg, dreg, 16);
3718                 }
3719         } else {
3720                 if (size == 1) {
3721                         ARM_SHL_IMM (code, dreg, dreg, 24);
3722                         ARM_SAR_IMM (code, dreg, dreg, 24);
3723                 } else if (size == 2) {
3724                         ARM_SHL_IMM (code, dreg, dreg, 16);
3725                         ARM_SAR_IMM (code, dreg, dreg, 16);
3726                 }
3727         }
3728         return code;
3729 }
3730
3731 static guchar*
3732 emit_r4_to_int (MonoCompile *cfg, guchar *code, int dreg, int sreg, int size, gboolean is_signed)
3733 {
3734         /* sreg is a float, dreg is an integer reg  */
3735         g_assert (IS_VFP);
3736         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
3737         if (is_signed)
3738                 ARM_TOSIZS (code, vfp_scratch1, sreg);
3739         else
3740                 ARM_TOUIZS (code, vfp_scratch1, sreg);
3741         ARM_FMRS (code, dreg, vfp_scratch1);
3742         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
3743
3744         if (!is_signed) {
3745                 if (size == 1)
3746                         ARM_AND_REG_IMM8 (code, dreg, dreg, 0xff);
3747                 else if (size == 2) {
3748                         ARM_SHL_IMM (code, dreg, dreg, 16);
3749                         ARM_SHR_IMM (code, dreg, dreg, 16);
3750                 }
3751         } else {
3752                 if (size == 1) {
3753                         ARM_SHL_IMM (code, dreg, dreg, 24);
3754                         ARM_SAR_IMM (code, dreg, dreg, 24);
3755                 } else if (size == 2) {
3756                         ARM_SHL_IMM (code, dreg, dreg, 16);
3757                         ARM_SAR_IMM (code, dreg, dreg, 16);
3758                 }
3759         }
3760         return code;
3761 }
3762
3763 #endif /* #ifndef DISABLE_JIT */
3764
3765 #define is_call_imm(diff) ((gint)(diff) >= -33554432 && (gint)(diff) <= 33554431)
3766
3767 static void
3768 emit_thunk (guint8 *code, gconstpointer target)
3769 {
3770         guint8 *p = code;
3771
3772         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
3773         if (thumb_supported)
3774                 ARM_BX (code, ARMREG_IP);
3775         else
3776                 ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
3777         *(guint32*)code = (guint32)target;
3778         code += 4;
3779         mono_arch_flush_icache (p, code - p);
3780 }
3781
3782 static void
3783 handle_thunk (MonoCompile *cfg, MonoDomain *domain, guchar *code, const guchar *target)
3784 {
3785         MonoJitInfo *ji = NULL;
3786         MonoThunkJitInfo *info;
3787         guint8 *thunks, *p;
3788         int thunks_size;
3789         guint8 *orig_target;
3790         guint8 *target_thunk;
3791
3792         if (!domain)
3793                 domain = mono_domain_get ();
3794
3795         if (cfg) {
3796                 /*
3797                  * This can be called multiple times during JITting,
3798                  * save the current position in cfg->arch to avoid
3799                  * doing a O(n^2) search.
3800                  */
3801                 if (!cfg->arch.thunks) {
3802                         cfg->arch.thunks = cfg->thunks;
3803                         cfg->arch.thunks_size = cfg->thunk_area;
3804                 }
3805                 thunks = cfg->arch.thunks;
3806                 thunks_size = cfg->arch.thunks_size;
3807                 if (!thunks_size) {
3808                         g_print ("thunk failed %p->%p, thunk space=%d method %s", code, target, thunks_size, mono_method_full_name (cfg->method, TRUE));
3809                         g_assert_not_reached ();
3810                 }
3811
3812                 g_assert (*(guint32*)thunks == 0);
3813                 emit_thunk (thunks, target);
3814                 arm_patch (code, thunks);
3815
3816                 cfg->arch.thunks += THUNK_SIZE;
3817                 cfg->arch.thunks_size -= THUNK_SIZE;
3818         } else {
3819                 ji = mini_jit_info_table_find (domain, (char*)code, NULL);
3820                 g_assert (ji);
3821                 info = mono_jit_info_get_thunk_info (ji);
3822                 g_assert (info);
3823
3824                 thunks = (guint8*)ji->code_start + info->thunks_offset;
3825                 thunks_size = info->thunks_size;
3826
3827                 orig_target = mono_arch_get_call_target (code + 4);
3828
3829                 mono_mini_arch_lock ();
3830
3831                 target_thunk = NULL;
3832                 if (orig_target >= thunks && orig_target < thunks + thunks_size) {
3833                         /* The call already points to a thunk, because of trampolines etc. */
3834                         target_thunk = orig_target;
3835                 } else {
3836                         for (p = thunks; p < thunks + thunks_size; p += THUNK_SIZE) {
3837                                 if (((guint32*)p) [0] == 0) {
3838                                         /* Free entry */
3839                                         target_thunk = p;
3840                                         break;
3841                                 } else if (((guint32*)p) [2] == (guint32)target) {
3842                                         /* Thunk already points to target */
3843                                         target_thunk = p;
3844                                         break;
3845                                 }
3846                         }
3847                 }
3848
3849                 //g_print ("THUNK: %p %p %p\n", code, target, target_thunk);
3850
3851                 if (!target_thunk) {
3852                         mono_mini_arch_unlock ();
3853                         g_print ("thunk failed %p->%p, thunk space=%d method %s", code, target, thunks_size, cfg ? mono_method_full_name (cfg->method, TRUE) : mono_method_full_name (jinfo_get_method (ji), TRUE));
3854                         g_assert_not_reached ();
3855                 }
3856
3857                 emit_thunk (target_thunk, target);
3858                 arm_patch (code, target_thunk);
3859                 mono_arch_flush_icache (code, 4);
3860
3861                 mono_mini_arch_unlock ();
3862         }
3863 }
3864
3865 static void
3866 arm_patch_general (MonoCompile *cfg, MonoDomain *domain, guchar *code, const guchar *target)
3867 {
3868         guint32 *code32 = (void*)code;
3869         guint32 ins = *code32;
3870         guint32 prim = (ins >> 25) & 7;
3871         guint32 tval = GPOINTER_TO_UINT (target);
3872
3873         //g_print ("patching 0x%08x (0x%08x) to point to 0x%08x\n", code, ins, target);
3874         if (prim == 5) { /* 101b */
3875                 /* the diff starts 8 bytes from the branch opcode */
3876                 gint diff = target - code - 8;
3877                 gint tbits;
3878                 gint tmask = 0xffffffff;
3879                 if (tval & 1) { /* entering thumb mode */
3880                         diff = target - 1 - code - 8;
3881                         g_assert (thumb_supported);
3882                         tbits = 0xf << 28; /* bl->blx bit pattern */
3883                         g_assert ((ins & (1 << 24))); /* it must be a bl, not b instruction */
3884                         /* this low bit of the displacement is moved to bit 24 in the instruction encoding */
3885                         if (diff & 2) {
3886                                 tbits |= 1 << 24;
3887                         }
3888                         tmask = ~(1 << 24); /* clear the link bit */
3889                         /*g_print ("blx to thumb: target: %p, code: %p, diff: %d, mask: %x\n", target, code, diff, tmask);*/
3890                 } else {
3891                         tbits = 0;
3892                 }
3893                 if (diff >= 0) {
3894                         if (diff <= 33554431) {
3895                                 diff >>= 2;
3896                                 ins = (ins & 0xff000000) | diff;
3897                                 ins &= tmask;
3898                                 *code32 = ins | tbits;
3899                                 return;
3900                         }
3901                 } else {
3902                         /* diff between 0 and -33554432 */
3903                         if (diff >= -33554432) {
3904                                 diff >>= 2;
3905                                 ins = (ins & 0xff000000) | (diff & ~0xff000000);
3906                                 ins &= tmask;
3907                                 *code32 = ins | tbits;
3908                                 return;
3909                         }
3910                 }
3911                 
3912                 handle_thunk (cfg, domain, code, target);
3913                 return;
3914         }
3915
3916 #ifdef USE_JUMP_TABLES
3917         {
3918                 gpointer *jte = mono_jumptable_get_entry (code);
3919                 g_assert (jte);
3920                 jte [0] = (gpointer) target;
3921         }
3922 #else
3923         /*
3924          * The alternative call sequences looks like this:
3925          *
3926          *      ldr ip, [pc] // loads the address constant
3927          *      b 1f         // jumps around the constant
3928          *      address constant embedded in the code
3929          *   1f:
3930          *      mov lr, pc
3931          *      mov pc, ip
3932          *
3933          * There are two cases for patching:
3934          * a) at the end of method emission: in this case code points to the start
3935          *    of the call sequence
3936          * b) during runtime patching of the call site: in this case code points
3937          *    to the mov pc, ip instruction
3938          *
3939          * We have to handle also the thunk jump code sequence:
3940          *
3941          *      ldr ip, [pc]
3942          *      mov pc, ip
3943          *      address constant // execution never reaches here
3944          */
3945         if ((ins & 0x0ffffff0) == 0x12fff10) {
3946                 /* Branch and exchange: the address is constructed in a reg 
3947                  * We can patch BX when the code sequence is the following:
3948                  *  ldr     ip, [pc, #0]    ; 0x8
3949                  *  b       0xc
3950                  *  .word code_ptr
3951                  *  mov     lr, pc
3952                  *  bx      ips
3953                  * */
3954                 guint32 ccode [4];
3955                 guint8 *emit = (guint8*)ccode;
3956                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
3957                 ARM_B (emit, 0);
3958                 ARM_MOV_REG_REG (emit, ARMREG_LR, ARMREG_PC);
3959                 ARM_BX (emit, ARMREG_IP);
3960
3961                 /*patching from magic trampoline*/
3962                 if (ins == ccode [3]) {
3963                         g_assert (code32 [-4] == ccode [0]);
3964                         g_assert (code32 [-3] == ccode [1]);
3965                         g_assert (code32 [-1] == ccode [2]);
3966                         code32 [-2] = (guint32)target;
3967                         return;
3968                 }
3969                 /*patching from JIT*/
3970                 if (ins == ccode [0]) {
3971                         g_assert (code32 [1] == ccode [1]);
3972                         g_assert (code32 [3] == ccode [2]);
3973                         g_assert (code32 [4] == ccode [3]);
3974                         code32 [2] = (guint32)target;
3975                         return;
3976                 }
3977                 g_assert_not_reached ();
3978         } else if ((ins & 0x0ffffff0) == 0x12fff30) {
3979                 /*
3980                  * ldr ip, [pc, #0]
3981                  * b 0xc
3982                  * .word code_ptr
3983                  * blx ip
3984                  */
3985                 guint32 ccode [4];
3986                 guint8 *emit = (guint8*)ccode;
3987                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
3988                 ARM_B (emit, 0);
3989                 ARM_BLX_REG (emit, ARMREG_IP);
3990
3991                 g_assert (code32 [-3] == ccode [0]);
3992                 g_assert (code32 [-2] == ccode [1]);
3993                 g_assert (code32 [0] == ccode [2]);
3994
3995                 code32 [-1] = (guint32)target;
3996         } else {
3997                 guint32 ccode [4];
3998                 guint32 *tmp = ccode;
3999                 guint8 *emit = (guint8*)tmp;
4000                 ARM_LDR_IMM (emit, ARMREG_IP, ARMREG_PC, 0);
4001                 ARM_MOV_REG_REG (emit, ARMREG_LR, ARMREG_PC);
4002                 ARM_MOV_REG_REG (emit, ARMREG_PC, ARMREG_IP);
4003                 ARM_BX (emit, ARMREG_IP);
4004                 if (ins == ccode [2]) {
4005                         g_assert_not_reached (); // should be -2 ...
4006                         code32 [-1] = (guint32)target;
4007                         return;
4008                 }
4009                 if (ins == ccode [0]) {
4010                         /* handles both thunk jump code and the far call sequence */
4011                         code32 [2] = (guint32)target;
4012                         return;
4013                 }
4014                 g_assert_not_reached ();
4015         }
4016 //      g_print ("patched with 0x%08x\n", ins);
4017 #endif
4018 }
4019
4020 void
4021 arm_patch (guchar *code, const guchar *target)
4022 {
4023         arm_patch_general (NULL, NULL, code, target);
4024 }
4025
4026 /* 
4027  * Return the >= 0 uimm8 value if val can be represented with a byte + rotation
4028  * (with the rotation amount in *rot_amount. rot_amount is already adjusted
4029  * to be used with the emit macros.
4030  * Return -1 otherwise.
4031  */
4032 int
4033 mono_arm_is_rotated_imm8 (guint32 val, gint *rot_amount)
4034 {
4035         guint32 res, i;
4036         for (i = 0; i < 31; i+= 2) {
4037                 res = (val << (32 - i)) | (val >> i);
4038                 if (res & ~0xff)
4039                         continue;
4040                 *rot_amount = i? 32 - i: 0;
4041                 return res;
4042         }
4043         return -1;
4044 }
4045
4046 /*
4047  * Emits in code a sequence of instructions that load the value 'val'
4048  * into the dreg register. Uses at most 4 instructions.
4049  */
4050 guint8*
4051 mono_arm_emit_load_imm (guint8 *code, int dreg, guint32 val)
4052 {
4053         int imm8, rot_amount;
4054 #if 0
4055         ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
4056         /* skip the constant pool */
4057         ARM_B (code, 0);
4058         *(int*)code = val;
4059         code += 4;
4060         return code;
4061 #endif
4062         if ((imm8 = mono_arm_is_rotated_imm8 (val, &rot_amount)) >= 0) {
4063                 ARM_MOV_REG_IMM (code, dreg, imm8, rot_amount);
4064         } else if ((imm8 = mono_arm_is_rotated_imm8 (~val, &rot_amount)) >= 0) {
4065                 ARM_MVN_REG_IMM (code, dreg, imm8, rot_amount);
4066         } else {
4067                 if (v7_supported) {
4068                         ARM_MOVW_REG_IMM (code, dreg, val & 0xffff);
4069                         if (val >> 16)
4070                                 ARM_MOVT_REG_IMM (code, dreg, (val >> 16) & 0xffff);
4071                         return code;
4072                 }
4073                 if (val & 0xFF) {
4074                         ARM_MOV_REG_IMM8 (code, dreg, (val & 0xFF));
4075                         if (val & 0xFF00) {
4076                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4077                         }
4078                         if (val & 0xFF0000) {
4079                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4080                         }
4081                         if (val & 0xFF000000) {
4082                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4083                         }
4084                 } else if (val & 0xFF00) {
4085                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF00) >> 8, 24);
4086                         if (val & 0xFF0000) {
4087                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4088                         }
4089                         if (val & 0xFF000000) {
4090                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4091                         }
4092                 } else if (val & 0xFF0000) {
4093                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF0000) >> 16, 16);
4094                         if (val & 0xFF000000) {
4095                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4096                         }
4097                 }
4098                 //g_assert_not_reached ();
4099         }
4100         return code;
4101 }
4102
4103 gboolean
4104 mono_arm_thumb_supported (void)
4105 {
4106         return thumb_supported;
4107 }
4108
4109 #ifndef DISABLE_JIT
4110
4111 static guint8*
4112 emit_move_return_value (MonoCompile *cfg, MonoInst *ins, guint8 *code)
4113 {
4114         CallInfo *cinfo;
4115         MonoCallInst *call;
4116
4117         call = (MonoCallInst*)ins;
4118         cinfo = call->call_info;
4119
4120         switch (cinfo->ret.storage) {
4121         case RegTypeHFA: {
4122                 MonoInst *loc = cfg->arch.vret_addr_loc;
4123                 int i;
4124
4125                 /* Load the destination address */
4126                 g_assert (loc && loc->opcode == OP_REGOFFSET);
4127
4128                 if (arm_is_imm12 (loc->inst_offset)) {
4129                         ARM_LDR_IMM (code, ARMREG_LR, loc->inst_basereg, loc->inst_offset);
4130                 } else {
4131                         code = mono_arm_emit_load_imm (code, ARMREG_LR, loc->inst_offset);
4132                         ARM_LDR_REG_REG (code, ARMREG_LR, loc->inst_basereg, ARMREG_LR);
4133                 }
4134                 for (i = 0; i < cinfo->ret.nregs; ++i) {
4135                         if (cinfo->ret.esize == 4)
4136                                 ARM_FSTS (code, cinfo->ret.reg + i, ARMREG_LR, i * 4);
4137                         else
4138                                 ARM_FSTD (code, cinfo->ret.reg + (i * 2), ARMREG_LR, i * 8);
4139                 }
4140                 return code;
4141         }
4142         default:
4143                 break;
4144         }
4145
4146         switch (ins->opcode) {
4147         case OP_FCALL:
4148         case OP_FCALL_REG:
4149         case OP_FCALL_MEMBASE:
4150                 if (IS_VFP) {
4151                         MonoType *sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4152                         if (sig_ret->type == MONO_TYPE_R4) {
4153                                 if (IS_HARD_FLOAT) {
4154                                         ARM_CVTS (code, ins->dreg, ARM_VFP_F0);
4155                                 } else {
4156                                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4157                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4158                                 }
4159                         } else {
4160                                 if (IS_HARD_FLOAT) {
4161                                         ARM_CPYD (code, ins->dreg, ARM_VFP_D0);
4162                                 } else {
4163                                         ARM_FMDRR (code, ARMREG_R0, ARMREG_R1, ins->dreg);
4164                                 }
4165                         }
4166                 }
4167                 break;
4168         case OP_RCALL:
4169         case OP_RCALL_REG:
4170         case OP_RCALL_MEMBASE: {
4171                 MonoType *sig_ret;
4172
4173                 g_assert (IS_VFP);
4174
4175                 sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4176                 g_assert (sig_ret->type == MONO_TYPE_R4);
4177                 if (IS_HARD_FLOAT) {
4178                         ARM_CPYS (code, ins->dreg, ARM_VFP_F0);
4179                 } else {
4180                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4181                         ARM_CPYS (code, ins->dreg, ins->dreg);
4182                 }
4183                 break;
4184         }
4185         default:
4186                 break;
4187         }
4188
4189         return code;
4190 }
4191
4192 void
4193 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
4194 {
4195         MonoInst *ins;
4196         MonoCallInst *call;
4197         guint offset;
4198         guint8 *code = cfg->native_code + cfg->code_len;
4199         MonoInst *last_ins = NULL;
4200         guint last_offset = 0;
4201         int max_len, cpos;
4202         int imm8, rot_amount;
4203
4204         /* we don't align basic blocks of loops on arm */
4205
4206         if (cfg->verbose_level > 2)
4207                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
4208
4209         cpos = bb->max_offset;
4210
4211         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
4212                 //MonoCoverageInfo *cov = mono_get_coverage_info (cfg->method);
4213                 //g_assert (!mono_compile_aot);
4214                 //cpos += 6;
4215                 //if (bb->cil_code)
4216                 //      cov->data [bb->dfn].iloffset = bb->cil_code - cfg->cil_code;
4217                 /* this is not thread save, but good enough */
4218                 /* fixme: howto handle overflows? */
4219                 //x86_inc_mem (code, &cov->data [bb->dfn].count); 
4220         }
4221
4222     if (mono_break_at_bb_method && mono_method_desc_full_match (mono_break_at_bb_method, cfg->method) && bb->block_num == mono_break_at_bb_bb_num) {
4223                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4224                                                          (gpointer)"mono_break");
4225                 code = emit_call_seq (cfg, code);
4226         }
4227
4228         MONO_BB_FOR_EACH_INS (bb, ins) {
4229                 offset = code - cfg->native_code;
4230
4231                 max_len = ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
4232
4233                 if (offset > (cfg->code_size - max_len - 16)) {
4234                         cfg->code_size *= 2;
4235                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4236                         code = cfg->native_code + offset;
4237                 }
4238         //      if (ins->cil_code)
4239         //              g_print ("cil code\n");
4240                 mono_debug_record_line_number (cfg, ins, offset);
4241
4242                 switch (ins->opcode) {
4243                 case OP_MEMORY_BARRIER:
4244                         if (v6_supported) {
4245                                 ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
4246                                 ARM_MCR (code, 15, 0, ARMREG_R0, 7, 10, 5);
4247                         }
4248                         break;
4249                 case OP_TLS_GET:
4250                         code = mono_arm_emit_tls_get (cfg, code, ins->dreg, ins->inst_offset);
4251                         break;
4252                 case OP_TLS_GET_REG:
4253                         code = mono_arm_emit_tls_get_reg (cfg, code, ins->dreg, ins->sreg1);
4254                         break;
4255                 case OP_TLS_SET:
4256                         code = mono_arm_emit_tls_set (cfg, code, ins->sreg1, ins->inst_offset);
4257                         break;
4258                 case OP_TLS_SET_REG:
4259                         code = mono_arm_emit_tls_set_reg (cfg, code, ins->sreg1, ins->sreg2);
4260                         break;
4261                 case OP_ATOMIC_EXCHANGE_I4:
4262                 case OP_ATOMIC_CAS_I4:
4263                 case OP_ATOMIC_ADD_I4: {
4264                         int tmpreg;
4265                         guint8 *buf [16];
4266
4267                         g_assert (v7_supported);
4268
4269                         /* Free up a reg */
4270                         if (ins->sreg1 != ARMREG_IP && ins->sreg2 != ARMREG_IP && ins->sreg3 != ARMREG_IP)
4271                                 tmpreg = ARMREG_IP;
4272                         else if (ins->sreg1 != ARMREG_R0 && ins->sreg2 != ARMREG_R0 && ins->sreg3 != ARMREG_R0)
4273                                 tmpreg = ARMREG_R0;
4274                         else if (ins->sreg1 != ARMREG_R1 && ins->sreg2 != ARMREG_R1 && ins->sreg3 != ARMREG_R1)
4275                                 tmpreg = ARMREG_R1;
4276                         else
4277                                 tmpreg = ARMREG_R2;
4278                         g_assert (cfg->arch.atomic_tmp_offset != -1);
4279                         ARM_STR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4280
4281                         switch (ins->opcode) {
4282                         case OP_ATOMIC_EXCHANGE_I4:
4283                                 buf [0] = code;
4284                                 ARM_DMB (code, ARM_DMB_SY);
4285                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4286                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4287                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4288                                 buf [1] = code;
4289                                 ARM_B_COND (code, ARMCOND_NE, 0);
4290                                 arm_patch (buf [1], buf [0]);
4291                                 break;
4292                         case OP_ATOMIC_CAS_I4:
4293                                 ARM_DMB (code, ARM_DMB_SY);
4294                                 buf [0] = code;
4295                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4296                                 ARM_CMP_REG_REG (code, ARMREG_LR, ins->sreg3);
4297                                 buf [1] = code;
4298                                 ARM_B_COND (code, ARMCOND_NE, 0);
4299                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4300                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4301                                 buf [2] = code;
4302                                 ARM_B_COND (code, ARMCOND_NE, 0);
4303                                 arm_patch (buf [2], buf [0]);
4304                                 arm_patch (buf [1], code);
4305                                 break;
4306                         case OP_ATOMIC_ADD_I4:
4307                                 buf [0] = code;
4308                                 ARM_DMB (code, ARM_DMB_SY);
4309                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4310                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->sreg2);
4311                                 ARM_STREX_REG (code, tmpreg, ARMREG_LR, ins->sreg1);
4312                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4313                                 buf [1] = code;
4314                                 ARM_B_COND (code, ARMCOND_NE, 0);
4315                                 arm_patch (buf [1], buf [0]);
4316                                 break;
4317                         default:
4318                                 g_assert_not_reached ();
4319                         }
4320
4321                         ARM_DMB (code, ARM_DMB_SY);
4322                         if (tmpreg != ins->dreg)
4323                                 ARM_LDR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4324                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_LR);
4325                         break;
4326                 }
4327                 case OP_ATOMIC_LOAD_I1:
4328                 case OP_ATOMIC_LOAD_U1:
4329                 case OP_ATOMIC_LOAD_I2:
4330                 case OP_ATOMIC_LOAD_U2:
4331                 case OP_ATOMIC_LOAD_I4:
4332                 case OP_ATOMIC_LOAD_U4:
4333                 case OP_ATOMIC_LOAD_R4:
4334                 case OP_ATOMIC_LOAD_R8: {
4335                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4336                                 ARM_DMB (code, ARM_DMB_SY);
4337
4338                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4339
4340                         switch (ins->opcode) {
4341                         case OP_ATOMIC_LOAD_I1:
4342                                 ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4343                                 break;
4344                         case OP_ATOMIC_LOAD_U1:
4345                                 ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4346                                 break;
4347                         case OP_ATOMIC_LOAD_I2:
4348                                 ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4349                                 break;
4350                         case OP_ATOMIC_LOAD_U2:
4351                                 ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4352                                 break;
4353                         case OP_ATOMIC_LOAD_I4:
4354                         case OP_ATOMIC_LOAD_U4:
4355                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4356                                 break;
4357                         case OP_ATOMIC_LOAD_R4:
4358                                 if (cfg->r4fp) {
4359                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4360                                         ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
4361                                 } else {
4362                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4363                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4364                                         ARM_FLDS (code, vfp_scratch1, ARMREG_LR, 0);
4365                                         ARM_CVTS (code, ins->dreg, vfp_scratch1);
4366                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4367                                 }
4368                                 break;
4369                         case OP_ATOMIC_LOAD_R8:
4370                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4371                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
4372                                 break;
4373                         }
4374
4375                         ARM_DMB (code, ARM_DMB_SY);
4376                         break;
4377                 }
4378                 case OP_ATOMIC_STORE_I1:
4379                 case OP_ATOMIC_STORE_U1:
4380                 case OP_ATOMIC_STORE_I2:
4381                 case OP_ATOMIC_STORE_U2:
4382                 case OP_ATOMIC_STORE_I4:
4383                 case OP_ATOMIC_STORE_U4:
4384                 case OP_ATOMIC_STORE_R4:
4385                 case OP_ATOMIC_STORE_R8: {
4386                         ARM_DMB (code, ARM_DMB_SY);
4387
4388                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4389
4390                         switch (ins->opcode) {
4391                         case OP_ATOMIC_STORE_I1:
4392                         case OP_ATOMIC_STORE_U1:
4393                                 ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4394                                 break;
4395                         case OP_ATOMIC_STORE_I2:
4396                         case OP_ATOMIC_STORE_U2:
4397                                 ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4398                                 break;
4399                         case OP_ATOMIC_STORE_I4:
4400                         case OP_ATOMIC_STORE_U4:
4401                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4402                                 break;
4403                         case OP_ATOMIC_STORE_R4:
4404                                 if (cfg->r4fp) {
4405                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4406                                         ARM_FSTS (code, ins->sreg1, ARMREG_LR, 0);
4407                                 } else {
4408                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4409                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4410                                         ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4411                                         ARM_FSTS (code, vfp_scratch1, ARMREG_LR, 0);
4412                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4413                                 }
4414                                 break;
4415                         case OP_ATOMIC_STORE_R8:
4416                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4417                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
4418                                 break;
4419                         }
4420
4421                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4422                                 ARM_DMB (code, ARM_DMB_SY);
4423                         break;
4424                 }
4425                 /*case OP_BIGMUL:
4426                         ppc_mullw (code, ppc_r4, ins->sreg1, ins->sreg2);
4427                         ppc_mulhw (code, ppc_r3, ins->sreg1, ins->sreg2);
4428                         break;
4429                 case OP_BIGMUL_UN:
4430                         ppc_mullw (code, ppc_r4, ins->sreg1, ins->sreg2);
4431                         ppc_mulhwu (code, ppc_r3, ins->sreg1, ins->sreg2);
4432                         break;*/
4433                 case OP_STOREI1_MEMBASE_IMM:
4434                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFF);
4435                         g_assert (arm_is_imm12 (ins->inst_offset));
4436                         ARM_STRB_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4437                         break;
4438                 case OP_STOREI2_MEMBASE_IMM:
4439                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFFFF);
4440                         g_assert (arm_is_imm8 (ins->inst_offset));
4441                         ARM_STRH_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4442                         break;
4443                 case OP_STORE_MEMBASE_IMM:
4444                 case OP_STOREI4_MEMBASE_IMM:
4445                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm);
4446                         g_assert (arm_is_imm12 (ins->inst_offset));
4447                         ARM_STR_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4448                         break;
4449                 case OP_STOREI1_MEMBASE_REG:
4450                         g_assert (arm_is_imm12 (ins->inst_offset));
4451                         ARM_STRB_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4452                         break;
4453                 case OP_STOREI2_MEMBASE_REG:
4454                         g_assert (arm_is_imm8 (ins->inst_offset));
4455                         ARM_STRH_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4456                         break;
4457                 case OP_STORE_MEMBASE_REG:
4458                 case OP_STOREI4_MEMBASE_REG:
4459                         /* this case is special, since it happens for spill code after lowering has been called */
4460                         if (arm_is_imm12 (ins->inst_offset)) {
4461                                 ARM_STR_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4462                         } else {
4463                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4464                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4465                         }
4466                         break;
4467                 case OP_STOREI1_MEMINDEX:
4468                         ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4469                         break;
4470                 case OP_STOREI2_MEMINDEX:
4471                         ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4472                         break;
4473                 case OP_STORE_MEMINDEX:
4474                 case OP_STOREI4_MEMINDEX:
4475                         ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4476                         break;
4477                 case OP_LOADU4_MEM:
4478                         g_assert_not_reached ();
4479                         break;
4480                 case OP_LOAD_MEMINDEX:
4481                 case OP_LOADI4_MEMINDEX:
4482                 case OP_LOADU4_MEMINDEX:
4483                         ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4484                         break;
4485                 case OP_LOADI1_MEMINDEX:
4486                         ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4487                         break;
4488                 case OP_LOADU1_MEMINDEX:
4489                         ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4490                         break;
4491                 case OP_LOADI2_MEMINDEX:
4492                         ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4493                         break;
4494                 case OP_LOADU2_MEMINDEX:
4495                         ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4496                         break;
4497                 case OP_LOAD_MEMBASE:
4498                 case OP_LOADI4_MEMBASE:
4499                 case OP_LOADU4_MEMBASE:
4500                         /* this case is special, since it happens for spill code after lowering has been called */
4501                         if (arm_is_imm12 (ins->inst_offset)) {
4502                                 ARM_LDR_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4503                         } else {
4504                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4505                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4506                         }
4507                         break;
4508                 case OP_LOADI1_MEMBASE:
4509                         g_assert (arm_is_imm8 (ins->inst_offset));
4510                         ARM_LDRSB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4511                         break;
4512                 case OP_LOADU1_MEMBASE:
4513                         g_assert (arm_is_imm12 (ins->inst_offset));
4514                         ARM_LDRB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4515                         break;
4516                 case OP_LOADU2_MEMBASE:
4517                         g_assert (arm_is_imm8 (ins->inst_offset));
4518                         ARM_LDRH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4519                         break;
4520                 case OP_LOADI2_MEMBASE:
4521                         g_assert (arm_is_imm8 (ins->inst_offset));
4522                         ARM_LDRSH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4523                         break;
4524                 case OP_ICONV_TO_I1:
4525                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 24);
4526                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 24);
4527                         break;
4528                 case OP_ICONV_TO_I2:
4529                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4530                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 16);
4531                         break;
4532                 case OP_ICONV_TO_U1:
4533                         ARM_AND_REG_IMM8 (code, ins->dreg, ins->sreg1, 0xff);
4534                         break;
4535                 case OP_ICONV_TO_U2:
4536                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4537                         ARM_SHR_IMM (code, ins->dreg, ins->dreg, 16);
4538                         break;
4539                 case OP_COMPARE:
4540                 case OP_ICOMPARE:
4541                         ARM_CMP_REG_REG (code, ins->sreg1, ins->sreg2);
4542                         break;
4543                 case OP_COMPARE_IMM:
4544                 case OP_ICOMPARE_IMM:
4545                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4546                         g_assert (imm8 >= 0);
4547                         ARM_CMP_REG_IMM (code, ins->sreg1, imm8, rot_amount);
4548                         break;
4549                 case OP_BREAK:
4550                         /*
4551                          * gdb does not like encountering the hw breakpoint ins in the debugged code. 
4552                          * So instead of emitting a trap, we emit a call a C function and place a 
4553                          * breakpoint there.
4554                          */
4555                         //*(int*)code = 0xef9f0001;
4556                         //code += 4;
4557                         //ARM_DBRK (code);
4558                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4559                                                                  (gpointer)"mono_break");
4560                         code = emit_call_seq (cfg, code);
4561                         break;
4562                 case OP_RELAXED_NOP:
4563                         ARM_NOP (code);
4564                         break;
4565                 case OP_NOP:
4566                 case OP_DUMMY_USE:
4567                 case OP_DUMMY_STORE:
4568                 case OP_DUMMY_ICONST:
4569                 case OP_DUMMY_R8CONST:
4570                 case OP_NOT_REACHED:
4571                 case OP_NOT_NULL:
4572                         break;
4573                 case OP_IL_SEQ_POINT:
4574                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4575                         break;
4576                 case OP_SEQ_POINT: {
4577                         int i;
4578                         MonoInst *info_var = cfg->arch.seq_point_info_var;
4579                         MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
4580                         MonoInst *ss_method_var = cfg->arch.seq_point_ss_method_var;
4581                         MonoInst *bp_method_var = cfg->arch.seq_point_bp_method_var;
4582                         MonoInst *var;
4583                         int dreg = ARMREG_LR;
4584
4585                         if (cfg->soft_breakpoints) {
4586                                 g_assert (!cfg->compile_aot);
4587                         }
4588
4589                         /*
4590                          * For AOT, we use one got slot per method, which will point to a
4591                          * SeqPointInfo structure, containing all the information required
4592                          * by the code below.
4593                          */
4594                         if (cfg->compile_aot) {
4595                                 g_assert (info_var);
4596                                 g_assert (info_var->opcode == OP_REGOFFSET);
4597                                 g_assert (arm_is_imm12 (info_var->inst_offset));
4598                         }
4599
4600                         if (!cfg->soft_breakpoints && !cfg->compile_aot) {
4601                                 /*
4602                                  * Read from the single stepping trigger page. This will cause a
4603                                  * SIGSEGV when single stepping is enabled.
4604                                  * We do this _before_ the breakpoint, so single stepping after
4605                                  * a breakpoint is hit will step to the next IL offset.
4606                                  */
4607                                 g_assert (((guint64)(gsize)ss_trigger_page >> 32) == 0);
4608                         }
4609
4610                         if (ins->flags & MONO_INST_SINGLE_STEP_LOC) {
4611                                 if (cfg->soft_breakpoints) {
4612                                         /* Load the address of the sequence point method variable. */
4613                                         var = ss_method_var;
4614                                         g_assert (var);
4615                                         g_assert (var->opcode == OP_REGOFFSET);
4616                                         g_assert (arm_is_imm12 (var->inst_offset));
4617                                         ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4618
4619                                         /* Read the value and check whether it is non-zero. */
4620                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4621                                         ARM_CMP_REG_IMM (code, dreg, 0, 0);
4622                                         /* Call it conditionally. */
4623                                         ARM_BLX_REG_COND (code, ARMCOND_NE, dreg);
4624                                 } else {
4625                                         if (cfg->compile_aot) {
4626                                                 /* Load the trigger page addr from the variable initialized in the prolog */
4627                                                 var = ss_trigger_page_var;
4628                                                 g_assert (var);
4629                                                 g_assert (var->opcode == OP_REGOFFSET);
4630                                                 g_assert (arm_is_imm12 (var->inst_offset));
4631                                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4632                                         } else {
4633 #ifdef USE_JUMP_TABLES
4634                                                 gpointer *jte = mono_jumptable_add_entry ();
4635                                                 code = mono_arm_load_jumptable_entry (code, jte, dreg);
4636                                                 jte [0] = ss_trigger_page;
4637 #else
4638                                                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
4639                                                 ARM_B (code, 0);
4640                                                 *(int*)code = (int)ss_trigger_page;
4641                                                 code += 4;
4642 #endif
4643                                         }
4644                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4645                                 }
4646                         }
4647
4648                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4649
4650                         if (cfg->soft_breakpoints) {
4651                                 /* Load the address of the breakpoint method into ip. */
4652                                 var = bp_method_var;
4653                                 g_assert (var);
4654                                 g_assert (var->opcode == OP_REGOFFSET);
4655                                 g_assert (arm_is_imm12 (var->inst_offset));
4656                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4657
4658                                 /*
4659                                  * A placeholder for a possible breakpoint inserted by
4660                                  * mono_arch_set_breakpoint ().
4661                                  */
4662                                 ARM_NOP (code);
4663                         } else if (cfg->compile_aot) {
4664                                 guint32 offset = code - cfg->native_code;
4665                                 guint32 val;
4666
4667                                 ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
4668                                 /* Add the offset */
4669                                 val = ((offset / 4) * sizeof (guint8*)) + MONO_STRUCT_OFFSET (SeqPointInfo, bp_addrs);
4670                                 /* Load the info->bp_addrs [offset], which is either 0 or the address of a trigger page */
4671                                 if (arm_is_imm12 ((int)val)) {
4672                                         ARM_LDR_IMM (code, dreg, dreg, val);
4673                                 } else {
4674                                         ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF), 0);
4675                                         if (val & 0xFF00)
4676                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4677                                         if (val & 0xFF0000)
4678                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4679                                         g_assert (!(val & 0xFF000000));
4680
4681                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4682                                 }
4683                                 /* What is faster, a branch or a load ? */
4684                                 ARM_CMP_REG_IMM (code, dreg, 0, 0);
4685                                 /* The breakpoint instruction */
4686                                 ARM_LDR_IMM_COND (code, dreg, dreg, 0, ARMCOND_NE);
4687                         } else {
4688                                 /* 
4689                                  * A placeholder for a possible breakpoint inserted by
4690                                  * mono_arch_set_breakpoint ().
4691                                  */
4692                                 for (i = 0; i < 4; ++i)
4693                                         ARM_NOP (code);
4694                         }
4695
4696                         /*
4697                          * Add an additional nop so skipping the bp doesn't cause the ip to point
4698                          * to another IL offset.
4699                          */
4700
4701                         ARM_NOP (code);
4702                         break;
4703                 }
4704                 case OP_ADDCC:
4705                 case OP_IADDCC:
4706                         ARM_ADDS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4707                         break;
4708                 case OP_IADD:
4709                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4710                         break;
4711                 case OP_ADC:
4712                 case OP_IADC:
4713                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4714                         break;
4715                 case OP_ADDCC_IMM:
4716                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4717                         g_assert (imm8 >= 0);
4718                         ARM_ADDS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4719                         break;
4720                 case OP_ADD_IMM:
4721                 case OP_IADD_IMM:
4722                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4723                         g_assert (imm8 >= 0);
4724                         ARM_ADD_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4725                         break;
4726                 case OP_ADC_IMM:
4727                 case OP_IADC_IMM:
4728                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4729                         g_assert (imm8 >= 0);
4730                         ARM_ADCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4731                         break;
4732                 case OP_IADD_OVF:
4733                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4734                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4735                         break;
4736                 case OP_IADD_OVF_UN:
4737                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4738                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4739                         break;
4740                 case OP_ISUB_OVF:
4741                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4742                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4743                         break;
4744                 case OP_ISUB_OVF_UN:
4745                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4746                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4747                         break;
4748                 case OP_ADD_OVF_CARRY:
4749                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4750                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4751                         break;
4752                 case OP_ADD_OVF_UN_CARRY:
4753                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4754                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4755                         break;
4756                 case OP_SUB_OVF_CARRY:
4757                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4758                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4759                         break;
4760                 case OP_SUB_OVF_UN_CARRY:
4761                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4762                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4763                         break;
4764                 case OP_SUBCC:
4765                 case OP_ISUBCC:
4766                         ARM_SUBS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4767                         break;
4768                 case OP_SUBCC_IMM:
4769                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4770                         g_assert (imm8 >= 0);
4771                         ARM_SUBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4772                         break;
4773                 case OP_ISUB:
4774                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4775                         break;
4776                 case OP_SBB:
4777                 case OP_ISBB:
4778                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4779                         break;
4780                 case OP_SUB_IMM:
4781                 case OP_ISUB_IMM:
4782                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4783                         g_assert (imm8 >= 0);
4784                         ARM_SUB_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4785                         break;
4786                 case OP_SBB_IMM:
4787                 case OP_ISBB_IMM:
4788                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4789                         g_assert (imm8 >= 0);
4790                         ARM_SBCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4791                         break;
4792                 case OP_ARM_RSBS_IMM:
4793                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4794                         g_assert (imm8 >= 0);
4795                         ARM_RSBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4796                         break;
4797                 case OP_ARM_RSC_IMM:
4798                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4799                         g_assert (imm8 >= 0);
4800                         ARM_RSC_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4801                         break;
4802                 case OP_IAND:
4803                         ARM_AND_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4804                         break;
4805                 case OP_AND_IMM:
4806                 case OP_IAND_IMM:
4807                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4808                         g_assert (imm8 >= 0);
4809                         ARM_AND_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4810                         break;
4811                 case OP_IDIV:
4812                         g_assert (v7s_supported || v7k_supported);
4813                         ARM_SDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4814                         break;
4815                 case OP_IDIV_UN:
4816                         g_assert (v7s_supported || v7k_supported);
4817                         ARM_UDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4818                         break;
4819                 case OP_IREM:
4820                         g_assert (v7s_supported || v7k_supported);
4821                         ARM_SDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4822                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4823                         break;
4824                 case OP_IREM_UN:
4825                         g_assert (v7s_supported || v7k_supported);
4826                         ARM_UDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4827                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4828                         break;
4829                 case OP_DIV_IMM:
4830                 case OP_REM_IMM:
4831                         g_assert_not_reached ();
4832                 case OP_IOR:
4833                         ARM_ORR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4834                         break;
4835                 case OP_OR_IMM:
4836                 case OP_IOR_IMM:
4837                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4838                         g_assert (imm8 >= 0);
4839                         ARM_ORR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4840                         break;
4841                 case OP_IXOR:
4842                         ARM_EOR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4843                         break;
4844                 case OP_XOR_IMM:
4845                 case OP_IXOR_IMM:
4846                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4847                         g_assert (imm8 >= 0);
4848                         ARM_EOR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4849                         break;
4850                 case OP_ISHL:
4851                         ARM_SHL_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4852                         break;
4853                 case OP_SHL_IMM:
4854                 case OP_ISHL_IMM:
4855                         if (ins->inst_imm)
4856                                 ARM_SHL_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4857                         else if (ins->dreg != ins->sreg1)
4858                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4859                         break;
4860                 case OP_ISHR:
4861                         ARM_SAR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4862                         break;
4863                 case OP_SHR_IMM:
4864                 case OP_ISHR_IMM:
4865                         if (ins->inst_imm)
4866                                 ARM_SAR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4867                         else if (ins->dreg != ins->sreg1)
4868                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4869                         break;
4870                 case OP_SHR_UN_IMM:
4871                 case OP_ISHR_UN_IMM:
4872                         if (ins->inst_imm)
4873                                 ARM_SHR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4874                         else if (ins->dreg != ins->sreg1)
4875                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4876                         break;
4877                 case OP_ISHR_UN:
4878                         ARM_SHR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4879                         break;
4880                 case OP_INOT:
4881                         ARM_MVN_REG_REG (code, ins->dreg, ins->sreg1);
4882                         break;
4883                 case OP_INEG:
4884                         ARM_RSB_REG_IMM8 (code, ins->dreg, ins->sreg1, 0);
4885                         break;
4886                 case OP_IMUL:
4887                         if (ins->dreg == ins->sreg2)
4888                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4889                         else
4890                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg2, ins->sreg1);
4891                         break;
4892                 case OP_MUL_IMM:
4893                         g_assert_not_reached ();
4894                         break;
4895                 case OP_IMUL_OVF:
4896                         /* FIXME: handle ovf/ sreg2 != dreg */
4897                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4898                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4899                         break;
4900                 case OP_IMUL_OVF_UN:
4901                         /* FIXME: handle ovf/ sreg2 != dreg */
4902                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4903                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4904                         break;
4905                 case OP_ICONST:
4906                         code = mono_arm_emit_load_imm (code, ins->dreg, ins->inst_c0);
4907                         break;
4908                 case OP_AOTCONST:
4909                         /* Load the GOT offset */
4910                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
4911                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4912                         ARM_B (code, 0);
4913                         *(gpointer*)code = NULL;
4914                         code += 4;
4915                         /* Load the value from the GOT */
4916                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4917                         break;
4918                 case OP_OBJC_GET_SELECTOR:
4919                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_OBJC_SELECTOR_REF, ins->inst_p0);
4920                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4921                         ARM_B (code, 0);
4922                         *(gpointer*)code = NULL;
4923                         code += 4;
4924                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4925                         break;
4926                 case OP_ICONV_TO_I4:
4927                 case OP_ICONV_TO_U4:
4928                 case OP_MOVE:
4929                         if (ins->dreg != ins->sreg1)
4930                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4931                         break;
4932                 case OP_SETLRET: {
4933                         int saved = ins->sreg2;
4934                         if (ins->sreg2 == ARM_LSW_REG) {
4935                                 ARM_MOV_REG_REG (code, ARMREG_LR, ins->sreg2);
4936                                 saved = ARMREG_LR;
4937                         }
4938                         if (ins->sreg1 != ARM_LSW_REG)
4939                                 ARM_MOV_REG_REG (code, ARM_LSW_REG, ins->sreg1);
4940                         if (saved != ARM_MSW_REG)
4941                                 ARM_MOV_REG_REG (code, ARM_MSW_REG, saved);
4942                         break;
4943                 }
4944                 case OP_FMOVE:
4945                         if (IS_VFP && ins->dreg != ins->sreg1)
4946                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
4947                         break;
4948                 case OP_RMOVE:
4949                         if (IS_VFP && ins->dreg != ins->sreg1)
4950                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
4951                         break;
4952                 case OP_MOVE_F_TO_I4:
4953                         if (cfg->r4fp) {
4954                                 ARM_FMRS (code, ins->dreg, ins->sreg1);
4955                         } else {
4956                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4957                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4958                                 ARM_FMRS (code, ins->dreg, vfp_scratch1);
4959                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4960                         }
4961                         break;
4962                 case OP_MOVE_I4_TO_F:
4963                         if (cfg->r4fp) {
4964                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4965                         } else {
4966                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4967                                 ARM_CVTS (code, ins->dreg, ins->dreg);
4968                         }
4969                         break;
4970                 case OP_FCONV_TO_R4:
4971                         if (IS_VFP) {
4972                                 if (cfg->r4fp) {
4973                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4974                                 } else {
4975                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4976                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4977                                 }
4978                         }
4979                         break;
4980                 case OP_TAILCALL: {
4981                         MonoCallInst *call = (MonoCallInst*)ins;
4982
4983                         /*
4984                          * The stack looks like the following:
4985                          * <caller argument area>
4986                          * <saved regs etc>
4987                          * <rest of frame>
4988                          * <callee argument area>
4989                          * Need to copy the arguments from the callee argument area to
4990                          * the caller argument area, and pop the frame.
4991                          */
4992                         if (call->stack_usage) {
4993                                 int i, prev_sp_offset = 0;
4994
4995                                 /* Compute size of saved registers restored below */
4996                                 if (iphone_abi)
4997                                         prev_sp_offset = 2 * 4;
4998                                 else
4999                                         prev_sp_offset = 1 * 4;
5000                                 for (i = 0; i < 16; ++i) {
5001                                         if (cfg->used_int_regs & (1 << i))
5002                                                 prev_sp_offset += 4;
5003                                 }
5004
5005                                 code = emit_big_add (code, ARMREG_IP, cfg->frame_reg, cfg->stack_usage + prev_sp_offset);
5006
5007                                 /* Copy arguments on the stack to our argument area */
5008                                 for (i = 0; i < call->stack_usage; i += sizeof (mgreg_t)) {
5009                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, i);
5010                                         ARM_STR_IMM (code, ARMREG_LR, ARMREG_IP, i);
5011                                 }
5012                         }
5013
5014                         /*
5015                          * Keep in sync with mono_arch_emit_epilog
5016                          */
5017                         g_assert (!cfg->method->save_lmf);
5018
5019                         code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage);
5020                         if (iphone_abi) {
5021                                 if (cfg->used_int_regs)
5022                                         ARM_POP (code, cfg->used_int_regs);
5023                                 ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
5024                         } else {
5025                                 ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_LR));
5026                         }
5027
5028                         mono_add_patch_info (cfg, (guint8*) code - cfg->native_code, MONO_PATCH_INFO_METHOD_JUMP, call->method);
5029                         if (cfg->compile_aot) {
5030                                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
5031                                 ARM_B (code, 0);
5032                                 *(gpointer*)code = NULL;
5033                                 code += 4;
5034                                 ARM_LDR_REG_REG (code, ARMREG_PC, ARMREG_PC, ARMREG_IP);
5035                         } else {
5036                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
5037                                 cfg->thunk_area += THUNK_SIZE;
5038                         }
5039                         break;
5040                 }
5041                 case OP_CHECK_THIS:
5042                         /* ensure ins->sreg1 is not NULL */
5043                         ARM_LDRB_IMM (code, ARMREG_LR, ins->sreg1, 0);
5044                         break;
5045                 case OP_ARGLIST: {
5046                         g_assert (cfg->sig_cookie < 128);
5047                         ARM_LDR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
5048                         ARM_STR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5049                         break;
5050                 }
5051                 case OP_FCALL:
5052                 case OP_RCALL:
5053                 case OP_LCALL:
5054                 case OP_VCALL:
5055                 case OP_VCALL2:
5056                 case OP_VOIDCALL:
5057                 case OP_CALL:
5058                         call = (MonoCallInst*)ins;
5059
5060                         if (IS_HARD_FLOAT)
5061                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5062
5063                         if (ins->flags & MONO_INST_HAS_METHOD)
5064                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
5065                         else
5066                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
5067                         code = emit_call_seq (cfg, code);
5068                         ins->flags |= MONO_INST_GC_CALLSITE;
5069                         ins->backend.pc_offset = code - cfg->native_code;
5070                         code = emit_move_return_value (cfg, ins, code);
5071                         break;
5072                 case OP_FCALL_REG:
5073                 case OP_RCALL_REG:
5074                 case OP_LCALL_REG:
5075                 case OP_VCALL_REG:
5076                 case OP_VCALL2_REG:
5077                 case OP_VOIDCALL_REG:
5078                 case OP_CALL_REG:
5079                         if (IS_HARD_FLOAT)
5080                                 code = emit_float_args (cfg, (MonoCallInst *)ins, code, &max_len, &offset);
5081
5082                         code = emit_call_reg (code, ins->sreg1);
5083                         ins->flags |= MONO_INST_GC_CALLSITE;
5084                         ins->backend.pc_offset = code - cfg->native_code;
5085                         code = emit_move_return_value (cfg, ins, code);
5086                         break;
5087                 case OP_FCALL_MEMBASE:
5088                 case OP_RCALL_MEMBASE:
5089                 case OP_LCALL_MEMBASE:
5090                 case OP_VCALL_MEMBASE:
5091                 case OP_VCALL2_MEMBASE:
5092                 case OP_VOIDCALL_MEMBASE:
5093                 case OP_CALL_MEMBASE: {
5094                         g_assert (ins->sreg1 != ARMREG_LR);
5095                         call = (MonoCallInst*)ins;
5096
5097                         if (IS_HARD_FLOAT)
5098                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5099                         if (!arm_is_imm12 (ins->inst_offset))
5100                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, ins->inst_offset);
5101                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5102                         if (!arm_is_imm12 (ins->inst_offset))
5103                                 ARM_LDR_REG_REG (code, ARMREG_PC, ins->sreg1, ARMREG_IP);
5104                         else
5105                                 ARM_LDR_IMM (code, ARMREG_PC, ins->sreg1, ins->inst_offset);
5106                         ins->flags |= MONO_INST_GC_CALLSITE;
5107                         ins->backend.pc_offset = code - cfg->native_code;
5108                         code = emit_move_return_value (cfg, ins, code);
5109                         break;
5110                 }
5111                 case OP_GENERIC_CLASS_INIT: {
5112                         static int byte_offset = -1;
5113                         static guint8 bitmask;
5114                         guint32 imm8;
5115                         guint8 *jump;
5116
5117                         if (byte_offset < 0)
5118                                 mono_marshal_find_bitfield_offset (MonoVTable, initialized, &byte_offset, &bitmask);
5119
5120                         g_assert (arm_is_imm8 (byte_offset));
5121                         ARM_LDRSB_IMM (code, ARMREG_IP, ins->sreg1, byte_offset);
5122                         imm8 = mono_arm_is_rotated_imm8 (bitmask, &rot_amount);
5123                         g_assert (imm8 >= 0);
5124                         ARM_AND_REG_IMM (code, ARMREG_IP, ARMREG_IP, imm8, rot_amount);
5125                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5126                         jump = code;
5127                         ARM_B_COND (code, ARMCOND_NE, 0);
5128
5129                         /* Uninitialized case */
5130                         g_assert (ins->sreg1 == ARMREG_R0);
5131
5132                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
5133                                                                  (gpointer)"mono_generic_class_init");
5134                         code = emit_call_seq (cfg, code);
5135
5136                         /* Initialized case */
5137                         arm_patch (jump, code);
5138                         break;
5139                 }
5140                 case OP_LOCALLOC: {
5141                         /* round the size to 8 bytes */
5142                         ARM_ADD_REG_IMM8 (code, ins->dreg, ins->sreg1, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5143                         ARM_BIC_REG_IMM8 (code, ins->dreg, ins->dreg, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5144                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ins->dreg);
5145                         /* memzero the area: dreg holds the size, sp is the pointer */
5146                         if (ins->flags & MONO_INST_INIT) {
5147                                 guint8 *start_loop, *branch_to_cond;
5148                                 ARM_MOV_REG_IMM8 (code, ARMREG_LR, 0);
5149                                 branch_to_cond = code;
5150                                 ARM_B (code, 0);
5151                                 start_loop = code;
5152                                 ARM_STR_REG_REG (code, ARMREG_LR, ARMREG_SP, ins->dreg);
5153                                 arm_patch (branch_to_cond, code);
5154                                 /* decrement by 4 and set flags */
5155                                 ARM_SUBS_REG_IMM8 (code, ins->dreg, ins->dreg, sizeof (mgreg_t));
5156                                 ARM_B_COND (code, ARMCOND_GE, 0);
5157                                 arm_patch (code - 4, start_loop);
5158                         }
5159                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_SP);
5160                         if (cfg->param_area)
5161                                 code = emit_sub_imm (code, ARMREG_SP, ARMREG_SP, ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT));
5162                         break;
5163                 }
5164                 case OP_DYN_CALL: {
5165                         int i;
5166                         MonoInst *var = cfg->dyn_call_var;
5167
5168                         g_assert (var->opcode == OP_REGOFFSET);
5169                         g_assert (arm_is_imm12 (var->inst_offset));
5170
5171                         /* lr = args buffer filled by mono_arch_get_dyn_call_args () */
5172                         ARM_MOV_REG_REG( code, ARMREG_LR, ins->sreg1);
5173                         /* ip = ftn */
5174                         ARM_MOV_REG_REG( code, ARMREG_IP, ins->sreg2);
5175
5176                         /* Save args buffer */
5177                         ARM_STR_IMM (code, ARMREG_LR, var->inst_basereg, var->inst_offset);
5178
5179                         /* Set stack slots using R0 as scratch reg */
5180                         /* MONO_ARCH_DYN_CALL_PARAM_AREA gives the size of stack space available */
5181                         for (i = 0; i < DYN_CALL_STACK_ARGS; ++i) {
5182                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, (PARAM_REGS + i) * sizeof (mgreg_t));
5183                                 ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, i * sizeof (mgreg_t));
5184                         }
5185
5186                         /* Set argument registers */
5187                         for (i = 0; i < PARAM_REGS; ++i)
5188                                 ARM_LDR_IMM (code, i, ARMREG_LR, i * sizeof (mgreg_t));
5189
5190                         /* Make the call */
5191                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5192                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5193
5194                         /* Save result */
5195                         ARM_LDR_IMM (code, ARMREG_IP, var->inst_basereg, var->inst_offset);
5196                         ARM_STR_IMM (code, ARMREG_R0, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res)); 
5197                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res2)); 
5198                         break;
5199                 }
5200                 case OP_THROW: {
5201                         if (ins->sreg1 != ARMREG_R0)
5202                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5203                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5204                                              (gpointer)"mono_arch_throw_exception");
5205                         code = emit_call_seq (cfg, code);
5206                         break;
5207                 }
5208                 case OP_RETHROW: {
5209                         if (ins->sreg1 != ARMREG_R0)
5210                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5211                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5212                                              (gpointer)"mono_arch_rethrow_exception");
5213                         code = emit_call_seq (cfg, code);
5214                         break;
5215                 }
5216                 case OP_START_HANDLER: {
5217                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5218                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5219                         int i, rot_amount;
5220
5221                         /* Reserve a param area, see filter-stack.exe */
5222                         if (param_area) {
5223                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5224                                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5225                                 } else {
5226                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5227                                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5228                                 }
5229                         }
5230
5231                         if (arm_is_imm12 (spvar->inst_offset)) {
5232                                 ARM_STR_IMM (code, ARMREG_LR, spvar->inst_basereg, spvar->inst_offset);
5233                         } else {
5234                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5235                                 ARM_STR_REG_REG (code, ARMREG_LR, spvar->inst_basereg, ARMREG_IP);
5236                         }
5237                         break;
5238                 }
5239                 case OP_ENDFILTER: {
5240                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5241                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5242                         int i, rot_amount;
5243
5244                         /* Free the param area */
5245                         if (param_area) {
5246                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5247                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5248                                 } else {
5249                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5250                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5251                                 }
5252                         }
5253
5254                         if (ins->sreg1 != ARMREG_R0)
5255                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5256                         if (arm_is_imm12 (spvar->inst_offset)) {
5257                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5258                         } else {
5259                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5260                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5261                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5262                         }
5263                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5264                         break;
5265                 }
5266                 case OP_ENDFINALLY: {
5267                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5268                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5269                         int i, rot_amount;
5270
5271                         /* Free the param area */
5272                         if (param_area) {
5273                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5274                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5275                                 } else {
5276                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5277                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5278                                 }
5279                         }
5280
5281                         if (arm_is_imm12 (spvar->inst_offset)) {
5282                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5283                         } else {
5284                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5285                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5286                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5287                         }
5288                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5289                         break;
5290                 }
5291                 case OP_CALL_HANDLER: 
5292                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5293                         code = mono_arm_patchable_bl (code, ARMCOND_AL);
5294                         cfg->thunk_area += THUNK_SIZE;
5295                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
5296                         break;
5297                 case OP_GET_EX_OBJ:
5298                         if (ins->dreg != ARMREG_R0)
5299                                 ARM_MOV_REG_REG (code, ins->dreg, ARMREG_R0);
5300                         break;
5301
5302                 case OP_LABEL:
5303                         ins->inst_c0 = code - cfg->native_code;
5304                         break;
5305                 case OP_BR:
5306                         /*if (ins->inst_target_bb->native_offset) {
5307                                 ARM_B (code, 0);
5308                                 //x86_jump_code (code, cfg->native_code + ins->inst_target_bb->native_offset); 
5309                         } else*/ {
5310                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5311                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
5312                         } 
5313                         break;
5314                 case OP_BR_REG:
5315                         ARM_MOV_REG_REG (code, ARMREG_PC, ins->sreg1);
5316                         break;
5317                 case OP_SWITCH:
5318                         /* 
5319                          * In the normal case we have:
5320                          *      ldr pc, [pc, ins->sreg1 << 2]
5321                          *      nop
5322                          * If aot, we have:
5323                          *      ldr lr, [pc, ins->sreg1 << 2]
5324                          *      add pc, pc, lr
5325                          * After follows the data.
5326                          * FIXME: add aot support.
5327                          */
5328                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_SWITCH, ins->inst_p0);
5329 #ifdef USE_JUMP_TABLES
5330                         {
5331                                 gpointer *jte = mono_jumptable_add_entries (GPOINTER_TO_INT (ins->klass));
5332                                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_IP);
5333                                 ARM_LDR_REG_REG_SHIFT (code, ARMREG_PC, ARMREG_IP, ins->sreg1, ARMSHIFT_LSL, 2);
5334                         }
5335 #else
5336
5337                         max_len += 4 * GPOINTER_TO_INT (ins->klass);
5338                         if (offset + max_len > (cfg->code_size - 16)) {
5339                                 cfg->code_size += max_len;
5340                                 cfg->code_size *= 2;
5341                                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5342                                 code = cfg->native_code + offset;
5343                         }
5344                         ARM_LDR_REG_REG_SHIFT (code, ARMREG_PC, ARMREG_PC, ins->sreg1, ARMSHIFT_LSL, 2);
5345                         ARM_NOP (code);
5346                         code += 4 * GPOINTER_TO_INT (ins->klass);
5347 #endif
5348                         break;
5349                 case OP_CEQ:
5350                 case OP_ICEQ:
5351                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5352                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5353                         break;
5354                 case OP_CLT:
5355                 case OP_ICLT:
5356                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5357                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LT);
5358                         break;
5359                 case OP_CLT_UN:
5360                 case OP_ICLT_UN:
5361                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5362                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LO);
5363                         break;
5364                 case OP_CGT:
5365                 case OP_ICGT:
5366                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5367                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_GT);
5368                         break;
5369                 case OP_CGT_UN:
5370                 case OP_ICGT_UN:
5371                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5372                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_HI);
5373                         break;
5374                 case OP_ICNEQ:
5375                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5376                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5377                         break;
5378                 case OP_ICGE:
5379                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5380                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LT);
5381                         break;
5382                 case OP_ICLE:
5383                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5384                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_GT);
5385                         break;
5386                 case OP_ICGE_UN:
5387                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5388                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LO);
5389                         break;
5390                 case OP_ICLE_UN:
5391                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5392                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_HI);
5393                         break;
5394                 case OP_COND_EXC_EQ:
5395                 case OP_COND_EXC_NE_UN:
5396                 case OP_COND_EXC_LT:
5397                 case OP_COND_EXC_LT_UN:
5398                 case OP_COND_EXC_GT:
5399                 case OP_COND_EXC_GT_UN:
5400                 case OP_COND_EXC_GE:
5401                 case OP_COND_EXC_GE_UN:
5402                 case OP_COND_EXC_LE:
5403                 case OP_COND_EXC_LE_UN:
5404                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_EQ, ins->inst_p1);
5405                         break;
5406                 case OP_COND_EXC_IEQ:
5407                 case OP_COND_EXC_INE_UN:
5408                 case OP_COND_EXC_ILT:
5409                 case OP_COND_EXC_ILT_UN:
5410                 case OP_COND_EXC_IGT:
5411                 case OP_COND_EXC_IGT_UN:
5412                 case OP_COND_EXC_IGE:
5413                 case OP_COND_EXC_IGE_UN:
5414                 case OP_COND_EXC_ILE:
5415                 case OP_COND_EXC_ILE_UN:
5416                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_IEQ, ins->inst_p1);
5417                         break;
5418                 case OP_COND_EXC_C:
5419                 case OP_COND_EXC_IC:
5420                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CS, ins->inst_p1);
5421                         break;
5422                 case OP_COND_EXC_OV:
5423                 case OP_COND_EXC_IOV:
5424                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, ins->inst_p1);
5425                         break;
5426                 case OP_COND_EXC_NC:
5427                 case OP_COND_EXC_INC:
5428                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CC, ins->inst_p1);
5429                         break;
5430                 case OP_COND_EXC_NO:
5431                 case OP_COND_EXC_INO:
5432                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VC, ins->inst_p1);
5433                         break;
5434                 case OP_IBEQ:
5435                 case OP_IBNE_UN:
5436                 case OP_IBLT:
5437                 case OP_IBLT_UN:
5438                 case OP_IBGT:
5439                 case OP_IBGT_UN:
5440                 case OP_IBGE:
5441                 case OP_IBGE_UN:
5442                 case OP_IBLE:
5443                 case OP_IBLE_UN:
5444                         EMIT_COND_BRANCH (ins, ins->opcode - OP_IBEQ);
5445                         break;
5446
5447                 /* floating point opcodes */
5448                 case OP_R8CONST:
5449                         if (cfg->compile_aot) {
5450                                 ARM_FLDD (code, ins->dreg, ARMREG_PC, 0);
5451                                 ARM_B (code, 1);
5452                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5453                                 code += 4;
5454                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[1];
5455                                 code += 4;
5456                         } else {
5457                                 /* FIXME: we can optimize the imm load by dealing with part of 
5458                                  * the displacement in LDFD (aligning to 512).
5459                                  */
5460                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5461                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5462                         }
5463                         break;
5464                 case OP_R4CONST:
5465                         if (cfg->compile_aot) {
5466                                 ARM_FLDS (code, ins->dreg, ARMREG_PC, 0);
5467                                 ARM_B (code, 0);
5468                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5469                                 code += 4;
5470                                 if (!cfg->r4fp)
5471                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5472                         } else {
5473                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5474                                 ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
5475                                 if (!cfg->r4fp)
5476                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5477                         }
5478                         break;
5479                 case OP_STORER8_MEMBASE_REG:
5480                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5481                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5482                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5483                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_destbasereg);
5484                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
5485                         } else {
5486                                 ARM_FSTD (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5487                         }
5488                         break;
5489                 case OP_LOADR8_MEMBASE:
5490                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5491                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5492                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5493                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_basereg);
5494                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5495                         } else {
5496                                 ARM_FLDD (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5497                         }
5498                         break;
5499                 case OP_STORER4_MEMBASE_REG:
5500                         g_assert (arm_is_fpimm8 (ins->inst_offset));
5501                         if (cfg->r4fp) {
5502                                 ARM_FSTS (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5503                         } else {
5504                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5505                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
5506                                 ARM_FSTS (code, vfp_scratch1, ins->inst_destbasereg, ins->inst_offset);
5507                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5508                         }
5509                         break;
5510                 case OP_LOADR4_MEMBASE:
5511                         if (cfg->r4fp) {
5512                                 ARM_FLDS (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5513                         } else {
5514                                 g_assert (arm_is_fpimm8 (ins->inst_offset));
5515                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5516                                 ARM_FLDS (code, vfp_scratch1, ins->inst_basereg, ins->inst_offset);
5517                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5518                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5519                         }
5520                         break;
5521                 case OP_ICONV_TO_R_UN: {
5522                         g_assert_not_reached ();
5523                         break;
5524                 }
5525                 case OP_ICONV_TO_R4:
5526                         if (cfg->r4fp) {
5527                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
5528                                 ARM_FSITOS (code, ins->dreg, ins->dreg);
5529                         } else {
5530                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5531                                 ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5532                                 ARM_FSITOS (code, vfp_scratch1, vfp_scratch1);
5533                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5534                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5535                         }
5536                         break;
5537                 case OP_ICONV_TO_R8:
5538                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5539                         ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5540                         ARM_FSITOD (code, ins->dreg, vfp_scratch1);
5541                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5542                         break;
5543
5544                 case OP_SETFRET: {
5545                         MonoType *sig_ret = mini_get_underlying_type (mono_method_signature (cfg->method)->ret);
5546                         if (sig_ret->type == MONO_TYPE_R4) {
5547                                 if (cfg->r4fp) {
5548                                         g_assert (!IS_HARD_FLOAT);
5549                                         ARM_FMRS (code, ARMREG_R0, ins->sreg1);
5550                                 } else {
5551                                         ARM_CVTD (code, ARM_VFP_F0, ins->sreg1);
5552
5553                                         if (!IS_HARD_FLOAT)
5554                                                 ARM_FMRS (code, ARMREG_R0, ARM_VFP_F0);
5555                                 }
5556                         } else {
5557                                 if (IS_HARD_FLOAT)
5558                                         ARM_CPYD (code, ARM_VFP_D0, ins->sreg1);
5559                                 else
5560                                         ARM_FMRRD (code, ARMREG_R0, ARMREG_R1, ins->sreg1);
5561                         }
5562                         break;
5563                 }
5564                 case OP_FCONV_TO_I1:
5565                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5566                         break;
5567                 case OP_FCONV_TO_U1:
5568                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5569                         break;
5570                 case OP_FCONV_TO_I2:
5571                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5572                         break;
5573                 case OP_FCONV_TO_U2:
5574                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5575                         break;
5576                 case OP_FCONV_TO_I4:
5577                 case OP_FCONV_TO_I:
5578                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5579                         break;
5580                 case OP_FCONV_TO_U4:
5581                 case OP_FCONV_TO_U:
5582                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5583                         break;
5584                 case OP_FCONV_TO_I8:
5585                 case OP_FCONV_TO_U8:
5586                         g_assert_not_reached ();
5587                         /* Implemented as helper calls */
5588                         break;
5589                 case OP_LCONV_TO_R_UN:
5590                         g_assert_not_reached ();
5591                         /* Implemented as helper calls */
5592                         break;
5593                 case OP_LCONV_TO_OVF_I4_2: {
5594                         guint8 *high_bit_not_set, *valid_negative, *invalid_negative, *valid_positive;
5595                         /* 
5596                          * Valid ints: 0xffffffff:8000000 to 00000000:0x7f000000
5597                          */
5598
5599                         ARM_CMP_REG_IMM8 (code, ins->sreg1, 0);
5600                         high_bit_not_set = code;
5601                         ARM_B_COND (code, ARMCOND_GE, 0); /*branch if bit 31 of the lower part is not set*/
5602
5603                         ARM_CMN_REG_IMM8 (code, ins->sreg2, 1); /*This have the same effect as CMP reg, 0xFFFFFFFF */
5604                         valid_negative = code;
5605                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0xFFFFFFFF (lower part has bit 31 set) */
5606                         invalid_negative = code;
5607                         ARM_B_COND (code, ARMCOND_AL, 0);
5608                         
5609                         arm_patch (high_bit_not_set, code);
5610
5611                         ARM_CMP_REG_IMM8 (code, ins->sreg2, 0);
5612                         valid_positive = code;
5613                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0 (lower part has bit 31 clear)*/
5614
5615                         arm_patch (invalid_negative, code);
5616                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_AL, "OverflowException");
5617
5618                         arm_patch (valid_negative, code);
5619                         arm_patch (valid_positive, code);
5620
5621                         if (ins->dreg != ins->sreg1)
5622                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
5623                         break;
5624                 }
5625                 case OP_FADD:
5626                         ARM_VFP_ADDD (code, ins->dreg, ins->sreg1, ins->sreg2);
5627                         break;
5628                 case OP_FSUB:
5629                         ARM_VFP_SUBD (code, ins->dreg, ins->sreg1, ins->sreg2);
5630                         break;          
5631                 case OP_FMUL:
5632                         ARM_VFP_MULD (code, ins->dreg, ins->sreg1, ins->sreg2);
5633                         break;          
5634                 case OP_FDIV:
5635                         ARM_VFP_DIVD (code, ins->dreg, ins->sreg1, ins->sreg2);
5636                         break;          
5637                 case OP_FNEG:
5638                         ARM_NEGD (code, ins->dreg, ins->sreg1);
5639                         break;
5640                 case OP_FREM:
5641                         /* emulated */
5642                         g_assert_not_reached ();
5643                         break;
5644                 case OP_FCOMPARE:
5645                         if (IS_VFP) {
5646                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5647                                 ARM_FMSTAT (code);
5648                         }
5649                         break;
5650                 case OP_RCOMPARE:
5651                         g_assert (IS_VFP);
5652                         ARM_CMPS (code, ins->sreg1, ins->sreg2);
5653                         ARM_FMSTAT (code);
5654                         break;
5655                 case OP_FCEQ:
5656                         if (IS_VFP) {
5657                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5658                                 ARM_FMSTAT (code);
5659                         }
5660                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5661                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5662                         break;
5663                 case OP_FCLT:
5664                         if (IS_VFP) {
5665                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5666                                 ARM_FMSTAT (code);
5667                         }
5668                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5669                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5670                         break;
5671                 case OP_FCLT_UN:
5672                         if (IS_VFP) {
5673                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5674                                 ARM_FMSTAT (code);
5675                         }
5676                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5677                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5678                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5679                         break;
5680                 case OP_FCGT:
5681                         if (IS_VFP) {
5682                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5683                                 ARM_FMSTAT (code);
5684                         }
5685                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5686                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5687                         break;
5688                 case OP_FCGT_UN:
5689                         if (IS_VFP) {
5690                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5691                                 ARM_FMSTAT (code);
5692                         }
5693                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5694                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5695                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5696                         break;
5697                 case OP_FCNEQ:
5698                         if (IS_VFP) {
5699                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5700                                 ARM_FMSTAT (code);
5701                         }
5702                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5703                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5704                         break;
5705                 case OP_FCGE:
5706                         if (IS_VFP) {
5707                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5708                                 ARM_FMSTAT (code);
5709                         }
5710                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5711                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5712                         break;
5713                 case OP_FCLE:
5714                         if (IS_VFP) {
5715                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5716                                 ARM_FMSTAT (code);
5717                         }
5718                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5719                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5720                         break;
5721
5722                 /* ARM FPA flags table:
5723                  * N        Less than               ARMCOND_MI
5724                  * Z        Equal                   ARMCOND_EQ
5725                  * C        Greater Than or Equal   ARMCOND_CS
5726                  * V        Unordered               ARMCOND_VS
5727                  */
5728                 case OP_FBEQ:
5729                         EMIT_COND_BRANCH (ins, OP_IBEQ - OP_IBEQ);
5730                         break;
5731                 case OP_FBNE_UN:
5732                         EMIT_COND_BRANCH (ins, OP_IBNE_UN - OP_IBEQ);
5733                         break;
5734                 case OP_FBLT:
5735                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5736                         break;
5737                 case OP_FBLT_UN:
5738                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5739                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5740                         break;
5741                 case OP_FBGT:
5742                 case OP_FBGT_UN:
5743                 case OP_FBLE:
5744                 case OP_FBLE_UN:
5745                         g_assert_not_reached ();
5746                         break;
5747                 case OP_FBGE:
5748                         if (IS_VFP) {
5749                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5750                         } else {
5751                                 /* FPA requires EQ even thou the docs suggests that just CS is enough */
5752                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_EQ);
5753                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_CS);
5754                         }
5755                         break;
5756                 case OP_FBGE_UN:
5757                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5758                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5759                         break;
5760
5761                 case OP_CKFINITE: {
5762                         if (IS_VFP) {
5763                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5764                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch2);
5765
5766 #ifdef USE_JUMP_TABLES
5767                                 {
5768                                         gpointer *jte = mono_jumptable_add_entries (2);
5769                                         jte [0] = GUINT_TO_POINTER (0xffffffff);
5770                                         jte [1] = GUINT_TO_POINTER (0x7fefffff);
5771                                         code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_IP);
5772                                         ARM_FLDD (code, vfp_scratch1, ARMREG_IP, 0);
5773                                 }
5774 #else
5775                                 ARM_ABSD (code, vfp_scratch2, ins->sreg1);
5776                                 ARM_FLDD (code, vfp_scratch1, ARMREG_PC, 0);
5777                                 ARM_B (code, 1);
5778                                 *(guint32*)code = 0xffffffff;
5779                                 code += 4;
5780                                 *(guint32*)code = 0x7fefffff;
5781                                 code += 4;
5782 #endif
5783                                 ARM_CMPD (code, vfp_scratch2, vfp_scratch1);
5784                                 ARM_FMSTAT (code);
5785                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_GT, "ArithmeticException");
5786                                 ARM_CMPD (code, ins->sreg1, ins->sreg1);
5787                                 ARM_FMSTAT (code);
5788                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, "ArithmeticException");
5789                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
5790
5791                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5792                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch2);
5793                         }
5794                         break;
5795                 }
5796
5797                 case OP_RCONV_TO_I1:
5798                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5799                         break;
5800                 case OP_RCONV_TO_U1:
5801                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5802                         break;
5803                 case OP_RCONV_TO_I2:
5804                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5805                         break;
5806                 case OP_RCONV_TO_U2:
5807                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5808                         break;
5809                 case OP_RCONV_TO_I4:
5810                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5811                         break;
5812                 case OP_RCONV_TO_U4:
5813                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5814                         break;
5815                 case OP_RCONV_TO_R4:
5816                         g_assert (IS_VFP);
5817                         if (ins->dreg != ins->sreg1)
5818                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
5819                         break;
5820                 case OP_RCONV_TO_R8:
5821                         g_assert (IS_VFP);
5822                         ARM_CVTS (code, ins->dreg, ins->sreg1);
5823                         break;
5824                 case OP_RADD:
5825                         ARM_VFP_ADDS (code, ins->dreg, ins->sreg1, ins->sreg2);
5826                         break;
5827                 case OP_RSUB:
5828                         ARM_VFP_SUBS (code, ins->dreg, ins->sreg1, ins->sreg2);
5829                         break;          
5830                 case OP_RMUL:
5831                         ARM_VFP_MULS (code, ins->dreg, ins->sreg1, ins->sreg2);
5832                         break;          
5833                 case OP_RDIV:
5834                         ARM_VFP_DIVS (code, ins->dreg, ins->sreg1, ins->sreg2);
5835                         break;          
5836                 case OP_RNEG:
5837                         ARM_NEGS (code, ins->dreg, ins->sreg1);
5838                         break;
5839                 case OP_RCEQ:
5840                         if (IS_VFP) {
5841                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5842                                 ARM_FMSTAT (code);
5843                         }
5844                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5845                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5846                         break;
5847                 case OP_RCLT:
5848                         if (IS_VFP) {
5849                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5850                                 ARM_FMSTAT (code);
5851                         }
5852                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5853                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5854                         break;
5855                 case OP_RCLT_UN:
5856                         if (IS_VFP) {
5857                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5858                                 ARM_FMSTAT (code);
5859                         }
5860                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5861                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5862                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5863                         break;
5864                 case OP_RCGT:
5865                         if (IS_VFP) {
5866                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5867                                 ARM_FMSTAT (code);
5868                         }
5869                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5870                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5871                         break;
5872                 case OP_RCGT_UN:
5873                         if (IS_VFP) {
5874                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5875                                 ARM_FMSTAT (code);
5876                         }
5877                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5878                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5879                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5880                         break;
5881                 case OP_RCNEQ:
5882                         if (IS_VFP) {
5883                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5884                                 ARM_FMSTAT (code);
5885                         }
5886                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5887                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5888                         break;
5889                 case OP_RCGE:
5890                         if (IS_VFP) {
5891                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5892                                 ARM_FMSTAT (code);
5893                         }
5894                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5895                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5896                         break;
5897                 case OP_RCLE:
5898                         if (IS_VFP) {
5899                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5900                                 ARM_FMSTAT (code);
5901                         }
5902                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5903                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5904                         break;
5905
5906                 case OP_GC_LIVENESS_DEF:
5907                 case OP_GC_LIVENESS_USE:
5908                 case OP_GC_PARAM_SLOT_LIVENESS_DEF:
5909                         ins->backend.pc_offset = code - cfg->native_code;
5910                         break;
5911                 case OP_GC_SPILL_SLOT_LIVENESS_DEF:
5912                         ins->backend.pc_offset = code - cfg->native_code;
5913                         bb->spill_slot_defs = g_slist_prepend_mempool (cfg->mempool, bb->spill_slot_defs, ins);
5914                         break;
5915                 case OP_GC_SAFE_POINT: {
5916                         const char *polling_func = NULL;
5917                         guint8 *buf [1];
5918
5919                         g_assert (mono_threads_is_coop_enabled ());
5920
5921                         polling_func = "mono_threads_state_poll";
5922                         ARM_LDR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5923                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5924                         buf [0] = code;
5925                         ARM_B_COND (code, ARMCOND_EQ, 0);
5926                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, polling_func);
5927                         code = emit_call_seq (cfg, code);
5928                         arm_patch (buf [0], code);
5929                         break;
5930                 }
5931
5932                 default:
5933                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
5934                         g_assert_not_reached ();
5935                 }
5936
5937                 if ((cfg->opt & MONO_OPT_BRANCH) && ((code - cfg->native_code - offset) > max_len)) {
5938                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
5939                                    mono_inst_name (ins->opcode), max_len, code - cfg->native_code - offset);
5940                         g_assert_not_reached ();
5941                 }
5942                
5943                 cpos += max_len;
5944
5945                 last_ins = ins;
5946                 last_offset = offset;
5947         }
5948
5949         cfg->code_len = code - cfg->native_code;
5950 }
5951
5952 #endif /* DISABLE_JIT */
5953
5954 void
5955 mono_arch_register_lowlevel_calls (void)
5956 {
5957         /* The signature doesn't matter */
5958         mono_register_jit_icall (mono_arm_throw_exception, "mono_arm_throw_exception", mono_create_icall_signature ("void"), TRUE);
5959         mono_register_jit_icall (mono_arm_throw_exception_by_token, "mono_arm_throw_exception_by_token", mono_create_icall_signature ("void"), TRUE);
5960         mono_register_jit_icall (mono_arm_unaligned_stack, "mono_arm_unaligned_stack", mono_create_icall_signature ("void"), TRUE);
5961
5962 #ifndef MONO_CROSS_COMPILE
5963         if (mono_arm_have_tls_get ()) {
5964                 MonoTlsImplementation tls_imp = mono_arm_get_tls_implementation ();
5965
5966                 mono_register_jit_icall (tls_imp.get_tls_thunk, "mono_get_tls_key", mono_create_icall_signature ("ptr ptr"), TRUE);
5967                 mono_register_jit_icall (tls_imp.set_tls_thunk, "mono_set_tls_key", mono_create_icall_signature ("void ptr ptr"), TRUE);
5968
5969                 if (tls_imp.get_tls_thunk_end) {
5970                         mono_tramp_info_register (
5971                                 mono_tramp_info_create (
5972                                         "mono_get_tls_key",
5973                                         (guint8*)tls_imp.get_tls_thunk,
5974                                         (guint8*)tls_imp.get_tls_thunk_end - (guint8*)tls_imp.get_tls_thunk,
5975                                         NULL,
5976                                         mono_arch_get_cie_program ()
5977                                         ),
5978                                 NULL
5979                                 );
5980                         mono_tramp_info_register (
5981                                 mono_tramp_info_create (
5982                                         "mono_set_tls_key",
5983                                         (guint8*)tls_imp.set_tls_thunk,
5984                                         (guint8*)tls_imp.set_tls_thunk_end - (guint8*)tls_imp.set_tls_thunk,
5985                                         NULL,
5986                                         mono_arch_get_cie_program ()
5987                                         ),
5988                                 NULL
5989                                 );
5990                 }
5991         }
5992 #endif
5993 }
5994
5995 #define patch_lis_ori(ip,val) do {\
5996                 guint16 *__lis_ori = (guint16*)(ip);    \
5997                 __lis_ori [1] = (((guint32)(val)) >> 16) & 0xffff;      \
5998                 __lis_ori [3] = ((guint32)(val)) & 0xffff;      \
5999         } while (0)
6000
6001 void
6002 mono_arch_patch_code_new (MonoCompile *cfg, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gpointer target)
6003 {
6004         unsigned char *ip = ji->ip.i + code;
6005
6006         if (ji->type == MONO_PATCH_INFO_SWITCH) {
6007         }
6008
6009         switch (ji->type) {
6010         case MONO_PATCH_INFO_SWITCH: {
6011 #ifdef USE_JUMP_TABLES
6012                 gpointer *jt = mono_jumptable_get_entry (ip);
6013 #else
6014                 gpointer *jt = (gpointer*)(ip + 8);
6015 #endif
6016                 int i;
6017                 /* jt is the inlined jump table, 2 instructions after ip
6018                  * In the normal case we store the absolute addresses,
6019                  * otherwise the displacements.
6020                  */
6021                 for (i = 0; i < ji->data.table->table_size; i++)
6022                         jt [i] = code + (int)ji->data.table->table [i];
6023                 break;
6024         }
6025         case MONO_PATCH_INFO_IP:
6026                 g_assert_not_reached ();
6027                 patch_lis_ori (ip, ip);
6028                 break;
6029         case MONO_PATCH_INFO_METHOD_REL:
6030                 g_assert_not_reached ();
6031                 *((gpointer *)(ip)) = target;
6032                 break;
6033         case MONO_PATCH_INFO_METHODCONST:
6034         case MONO_PATCH_INFO_CLASS:
6035         case MONO_PATCH_INFO_IMAGE:
6036         case MONO_PATCH_INFO_FIELD:
6037         case MONO_PATCH_INFO_VTABLE:
6038         case MONO_PATCH_INFO_IID:
6039         case MONO_PATCH_INFO_SFLDA:
6040         case MONO_PATCH_INFO_LDSTR:
6041         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
6042         case MONO_PATCH_INFO_LDTOKEN:
6043                 g_assert_not_reached ();
6044                 /* from OP_AOTCONST : lis + ori */
6045                 patch_lis_ori (ip, target);
6046                 break;
6047         case MONO_PATCH_INFO_R4:
6048         case MONO_PATCH_INFO_R8:
6049                 g_assert_not_reached ();
6050                 *((gconstpointer *)(ip + 2)) = target;
6051                 break;
6052         case MONO_PATCH_INFO_EXC_NAME:
6053                 g_assert_not_reached ();
6054                 *((gconstpointer *)(ip + 1)) = target;
6055                 break;
6056         case MONO_PATCH_INFO_NONE:
6057         case MONO_PATCH_INFO_BB_OVF:
6058         case MONO_PATCH_INFO_EXC_OVF:
6059                 /* everything is dealt with at epilog output time */
6060                 break;
6061         default:
6062                 arm_patch_general (cfg, domain, ip, target);
6063                 break;
6064         }
6065 }
6066
6067 void
6068 mono_arm_unaligned_stack (MonoMethod *method)
6069 {
6070         g_assert_not_reached ();
6071 }
6072
6073 #ifndef DISABLE_JIT
6074
6075 /*
6076  * Stack frame layout:
6077  * 
6078  *   ------------------- fp
6079  *      MonoLMF structure or saved registers
6080  *   -------------------
6081  *      locals
6082  *   -------------------
6083  *      spilled regs
6084  *   -------------------
6085  *      optional 8 bytes for tracing
6086  *   -------------------
6087  *      param area             size is cfg->param_area
6088  *   ------------------- sp
6089  */
6090 guint8 *
6091 mono_arch_emit_prolog (MonoCompile *cfg)
6092 {
6093         MonoMethod *method = cfg->method;
6094         MonoBasicBlock *bb;
6095         MonoMethodSignature *sig;
6096         MonoInst *inst;
6097         int alloc_size, orig_alloc_size, pos, max_offset, i, rot_amount, part;
6098         guint8 *code;
6099         CallInfo *cinfo;
6100         int tracing = 0;
6101         int lmf_offset = 0;
6102         int prev_sp_offset, reg_offset;
6103
6104         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
6105                 tracing = 1;
6106
6107         sig = mono_method_signature (method);
6108         cfg->code_size = 256 + sig->param_count * 64;
6109         code = cfg->native_code = g_malloc (cfg->code_size);
6110
6111         mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, 0);
6112
6113         alloc_size = cfg->stack_offset;
6114         pos = 0;
6115         prev_sp_offset = 0;
6116
6117         if (iphone_abi) {
6118                 /* 
6119                  * The iphone uses R7 as the frame pointer, and it points at the saved
6120                  * r7+lr:
6121                  *         <lr>
6122                  * r7 ->   <r7>
6123                  *         <rest of frame>
6124                  * We can't use r7 as a frame pointer since it points into the middle of
6125                  * the frame, so we keep using our own frame pointer.
6126                  * FIXME: Optimize this.
6127                  */
6128                 ARM_PUSH (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
6129                 prev_sp_offset += 8; /* r7 and lr */
6130                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6131                 mono_emit_unwind_op_offset (cfg, code, ARMREG_R7, (- prev_sp_offset) + 0);
6132                 ARM_MOV_REG_REG (code, ARMREG_R7, ARMREG_SP);
6133         }
6134
6135         if (!method->save_lmf) {
6136                 if (iphone_abi) {
6137                         /* No need to push LR again */
6138                         if (cfg->used_int_regs)
6139                                 ARM_PUSH (code, cfg->used_int_regs);
6140                 } else {
6141                         ARM_PUSH (code, cfg->used_int_regs | (1 << ARMREG_LR));
6142                         prev_sp_offset += 4;
6143                 }
6144                 for (i = 0; i < 16; ++i) {
6145                         if (cfg->used_int_regs & (1 << i))
6146                                 prev_sp_offset += 4;
6147                 }
6148                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6149                 reg_offset = 0;
6150                 for (i = 0; i < 16; ++i) {
6151                         if ((cfg->used_int_regs & (1 << i))) {
6152                                 mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6153                                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + reg_offset, SLOT_NOREF);
6154                                 reg_offset += 4;
6155                         }
6156                 }
6157                 if (iphone_abi) {
6158                         mono_emit_unwind_op_offset (cfg, code, ARMREG_LR, -4);
6159                         mini_gc_set_slot_type_from_cfa (cfg, -4, SLOT_NOREF);
6160                 } else {
6161                         mono_emit_unwind_op_offset (cfg, code, ARMREG_LR, -4);
6162                         mini_gc_set_slot_type_from_cfa (cfg, -4, SLOT_NOREF);
6163                 }
6164         } else {
6165                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_SP);
6166                 ARM_PUSH (code, 0x5ff0);
6167                 prev_sp_offset += 4 * 10; /* all but r0-r3, sp and pc */
6168                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6169                 reg_offset = 0;
6170                 for (i = 0; i < 16; ++i) {
6171                         if ((i > ARMREG_R3) && (i != ARMREG_SP) && (i != ARMREG_PC)) {
6172                                 /* The original r7 is saved at the start */
6173                                 if (!(iphone_abi && i == ARMREG_R7))
6174                                         mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6175                                 reg_offset += 4;
6176                         }
6177                 }
6178                 g_assert (reg_offset == 4 * 10);
6179                 pos += sizeof (MonoLMF) - (4 * 10);
6180                 lmf_offset = pos;
6181         }
6182         alloc_size += pos;
6183         orig_alloc_size = alloc_size;
6184         // align to MONO_ARCH_FRAME_ALIGNMENT bytes
6185         if (alloc_size & (MONO_ARCH_FRAME_ALIGNMENT - 1)) {
6186                 alloc_size += MONO_ARCH_FRAME_ALIGNMENT - 1;
6187                 alloc_size &= ~(MONO_ARCH_FRAME_ALIGNMENT - 1);
6188         }
6189
6190         /* the stack used in the pushed regs */
6191         alloc_size += ALIGN_TO (prev_sp_offset, MONO_ARCH_FRAME_ALIGNMENT) - prev_sp_offset;
6192         cfg->stack_usage = alloc_size;
6193         if (alloc_size) {
6194                 if ((i = mono_arm_is_rotated_imm8 (alloc_size, &rot_amount)) >= 0) {
6195                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
6196                 } else {
6197                         code = mono_arm_emit_load_imm (code, ARMREG_IP, alloc_size);
6198                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
6199                 }
6200                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset + alloc_size);
6201         }
6202         if (cfg->frame_reg != ARMREG_SP) {
6203                 ARM_MOV_REG_REG (code, cfg->frame_reg, ARMREG_SP);
6204                 mono_emit_unwind_op_def_cfa_reg (cfg, code, cfg->frame_reg);
6205         }
6206         //g_print ("prev_sp_offset: %d, alloc_size:%d\n", prev_sp_offset, alloc_size);
6207         prev_sp_offset += alloc_size;
6208
6209         for (i = 0; i < alloc_size - orig_alloc_size; i += 4)
6210                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + orig_alloc_size + i, SLOT_NOREF);
6211
6212         /* compute max_offset in order to use short forward jumps
6213          * we could skip do it on arm because the immediate displacement
6214          * for jumps is large enough, it may be useful later for constant pools
6215          */
6216         max_offset = 0;
6217         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
6218                 MonoInst *ins = bb->code;
6219                 bb->max_offset = max_offset;
6220
6221                 if (cfg->prof_options & MONO_PROFILE_COVERAGE)
6222                         max_offset += 6; 
6223
6224                 MONO_BB_FOR_EACH_INS (bb, ins)
6225                         max_offset += ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
6226         }
6227
6228         /* stack alignment check */
6229         /*
6230         {
6231                 guint8 *buf [16];
6232                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_SP);
6233                 code = mono_arm_emit_load_imm (code, ARMREG_IP, MONO_ARCH_FRAME_ALIGNMENT -1);
6234                 ARM_AND_REG_REG (code, ARMREG_LR, ARMREG_LR, ARMREG_IP);
6235                 ARM_CMP_REG_IMM (code, ARMREG_LR, 0, 0);
6236                 buf [0] = code;
6237                 ARM_B_COND (code, ARMCOND_EQ, 0);
6238                 if (cfg->compile_aot)
6239                         ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
6240                 else
6241                         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
6242                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, "mono_arm_unaligned_stack");
6243                 code = emit_call_seq (cfg, code);
6244                 arm_patch (buf [0], code);
6245         }
6246         */
6247
6248         /* store runtime generic context */
6249         if (cfg->rgctx_var) {
6250                 MonoInst *ins = cfg->rgctx_var;
6251
6252                 g_assert (ins->opcode == OP_REGOFFSET);
6253
6254                 if (arm_is_imm12 (ins->inst_offset)) {
6255                         ARM_STR_IMM (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ins->inst_offset);
6256                 } else {
6257                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6258                         ARM_STR_REG_REG (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ARMREG_LR);
6259                 }
6260         }
6261
6262         /* load arguments allocated to register from the stack */
6263         pos = 0;
6264
6265         cinfo = get_call_info (NULL, sig);
6266
6267         if (cinfo->ret.storage == RegTypeStructByAddr) {
6268                 ArgInfo *ainfo = &cinfo->ret;
6269                 inst = cfg->vret_addr;
6270                 g_assert (arm_is_imm12 (inst->inst_offset));
6271                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6272         }
6273
6274         if (sig->call_convention == MONO_CALL_VARARG) {
6275                 ArgInfo *cookie = &cinfo->sig_cookie;
6276
6277                 /* Save the sig cookie address */
6278                 g_assert (cookie->storage == RegTypeBase);
6279
6280                 g_assert (arm_is_imm12 (prev_sp_offset + cookie->offset));
6281                 g_assert (arm_is_imm12 (cfg->sig_cookie));
6282                 ARM_ADD_REG_IMM8 (code, ARMREG_IP, cfg->frame_reg, prev_sp_offset + cookie->offset);
6283                 ARM_STR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
6284         }
6285
6286         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
6287                 ArgInfo *ainfo = cinfo->args + i;
6288                 inst = cfg->args [pos];
6289                 
6290                 if (cfg->verbose_level > 2)
6291                         g_print ("Saving argument %d (type: %d)\n", i, ainfo->storage);
6292
6293                 if (inst->opcode == OP_REGVAR) {
6294                         if (ainfo->storage == RegTypeGeneral)
6295                                 ARM_MOV_REG_REG (code, inst->dreg, ainfo->reg);
6296                         else if (ainfo->storage == RegTypeFP) {
6297                                 g_assert_not_reached ();
6298                         } else if (ainfo->storage == RegTypeBase) {
6299                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6300                                         ARM_LDR_IMM (code, inst->dreg, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6301                                 } else {
6302                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6303                                         ARM_LDR_REG_REG (code, inst->dreg, ARMREG_SP, ARMREG_IP);
6304                                 }
6305                         } else
6306                                 g_assert_not_reached ();
6307
6308                         if (cfg->verbose_level > 2)
6309                                 g_print ("Argument %d assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
6310                 } else {
6311                         switch (ainfo->storage) {
6312                         case RegTypeHFA:
6313                                 for (part = 0; part < ainfo->nregs; part ++) {
6314                                         if (ainfo->esize == 4)
6315                                                 ARM_FSTS (code, ainfo->reg + part, inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6316                                         else
6317                                                 ARM_FSTD (code, ainfo->reg + (part * 2), inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6318                                 }
6319                                 break;
6320                         case RegTypeGeneral:
6321                         case RegTypeIRegPair:
6322                         case RegTypeGSharedVtInReg:
6323                                 switch (ainfo->size) {
6324                                 case 1:
6325                                         if (arm_is_imm12 (inst->inst_offset))
6326                                                 ARM_STRB_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6327                                         else {
6328                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6329                                                 ARM_STRB_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6330                                         }
6331                                         break;
6332                                 case 2:
6333                                         if (arm_is_imm8 (inst->inst_offset)) {
6334                                                 ARM_STRH_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6335                                         } else {
6336                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6337                                                 ARM_STRH_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6338                                         }
6339                                         break;
6340                                 case 8:
6341                                         if (arm_is_imm12 (inst->inst_offset)) {
6342                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6343                                         } else {
6344                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6345                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6346                                         }
6347                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6348                                                 ARM_STR_IMM (code, ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + 4);
6349                                         } else {
6350                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6351                                                 ARM_STR_REG_REG (code, ainfo->reg + 1, inst->inst_basereg, ARMREG_IP);
6352                                         }
6353                                         break;
6354                                 default:
6355                                         if (arm_is_imm12 (inst->inst_offset)) {
6356                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6357                                         } else {
6358                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6359                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6360                                         }
6361                                         break;
6362                                 }
6363                                 break;
6364                         case RegTypeBaseGen:
6365                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6366                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6367                                 } else {
6368                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6369                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6370                                 }
6371                                 if (arm_is_imm12 (inst->inst_offset + 4)) {
6372                                         ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6373                                         ARM_STR_IMM (code, ARMREG_R3, inst->inst_basereg, inst->inst_offset);
6374                                 } else {
6375                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6376                                         ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6377                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6378                                         ARM_STR_REG_REG (code, ARMREG_R3, inst->inst_basereg, ARMREG_IP);
6379                                 }
6380                                 break;
6381                         case RegTypeBase:
6382                         case RegTypeGSharedVtOnStack:
6383                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6384                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6385                                 } else {
6386                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6387                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6388                                 }
6389
6390                                 switch (ainfo->size) {
6391                                 case 1:
6392                                         if (arm_is_imm8 (inst->inst_offset)) {
6393                                                 ARM_STRB_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6394                                         } else {
6395                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6396                                                 ARM_STRB_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6397                                         }
6398                                         break;
6399                                 case 2:
6400                                         if (arm_is_imm8 (inst->inst_offset)) {
6401                                                 ARM_STRH_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6402                                         } else {
6403                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6404                                                 ARM_STRH_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6405                                         }
6406                                         break;
6407                                 case 8:
6408                                         if (arm_is_imm12 (inst->inst_offset)) {
6409                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6410                                         } else {
6411                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6412                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6413                                         }
6414                                         if (arm_is_imm12 (prev_sp_offset + ainfo->offset + 4)) {
6415                                                 ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset + 4));
6416                                         } else {
6417                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset + 4);
6418                                                 ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6419                                         }
6420                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6421                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6422                                         } else {
6423                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6424                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6425                                         }
6426                                         break;
6427                                 default:
6428                                         if (arm_is_imm12 (inst->inst_offset)) {
6429                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6430                                         } else {
6431                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6432                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6433                                         }
6434                                         break;
6435                                 }
6436                                 break;
6437                         case RegTypeFP: {
6438                                 int imm8, rot_amount;
6439
6440                                 if ((imm8 = mono_arm_is_rotated_imm8 (inst->inst_offset, &rot_amount)) == -1) {
6441                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6442                                         ARM_ADD_REG_REG (code, ARMREG_IP, ARMREG_IP, inst->inst_basereg);
6443                                 } else
6444                                         ARM_ADD_REG_IMM (code, ARMREG_IP, inst->inst_basereg, imm8, rot_amount);
6445
6446                                 if (ainfo->size == 8)
6447                                         ARM_FSTD (code, ainfo->reg, ARMREG_IP, 0);
6448                                 else
6449                                         ARM_FSTS (code, ainfo->reg, ARMREG_IP, 0);
6450                                 break;
6451                         }
6452                         case RegTypeStructByVal: {
6453                                 int doffset = inst->inst_offset;
6454                                 int soffset = 0;
6455                                 int cur_reg;
6456                                 int size = 0;
6457                                 size = mini_type_stack_size_full (inst->inst_vtype, NULL, sig->pinvoke);
6458                                 for (cur_reg = 0; cur_reg < ainfo->size; ++cur_reg) {
6459                                         if (arm_is_imm12 (doffset)) {
6460                                                 ARM_STR_IMM (code, ainfo->reg + cur_reg, inst->inst_basereg, doffset);
6461                                         } else {
6462                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, doffset);
6463                                                 ARM_STR_REG_REG (code, ainfo->reg + cur_reg, inst->inst_basereg, ARMREG_IP);
6464                                         }
6465                                         soffset += sizeof (gpointer);
6466                                         doffset += sizeof (gpointer);
6467                                 }
6468                                 if (ainfo->vtsize) {
6469                                         /* FIXME: handle overrun! with struct sizes not multiple of 4 */
6470                                         //g_print ("emit_memcpy (prev_sp_ofs: %d, ainfo->offset: %d, soffset: %d)\n", prev_sp_offset, ainfo->offset, soffset);
6471                                         code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, doffset, ARMREG_SP, prev_sp_offset + ainfo->offset);
6472                                 }
6473                                 break;
6474                         }
6475                         case RegTypeStructByAddr:
6476                                 g_assert_not_reached ();
6477                                 /* FIXME: handle overrun! with struct sizes not multiple of 4 */
6478                                 code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, inst->inst_offset, ainfo->reg, 0);
6479                         default:
6480                                 g_assert_not_reached ();
6481                                 break;
6482                         }
6483                 }
6484                 pos++;
6485         }
6486
6487         if (method->save_lmf)
6488                 code = emit_save_lmf (cfg, code, alloc_size - lmf_offset);
6489
6490         if (tracing)
6491                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
6492
6493         if (cfg->arch.seq_point_info_var) {
6494                 MonoInst *ins = cfg->arch.seq_point_info_var;
6495
6496                 /* Initialize the variable from a GOT slot */
6497                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_SEQ_POINT_INFO, cfg->method);
6498 #ifdef USE_JUMP_TABLES
6499                 {
6500                         gpointer *jte = mono_jumptable_add_entry ();
6501                         code = mono_arm_load_jumptable_entry (code, jte, ARMREG_IP);
6502                         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_IP, 0);
6503                 }
6504                 /** XXX: is it correct? */
6505 #else
6506                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6507                 ARM_B (code, 0);
6508                 *(gpointer*)code = NULL;
6509                 code += 4;
6510 #endif
6511                 ARM_LDR_REG_REG (code, ARMREG_R0, ARMREG_PC, ARMREG_R0);
6512
6513                 g_assert (ins->opcode == OP_REGOFFSET);
6514
6515                 if (arm_is_imm12 (ins->inst_offset)) {
6516                         ARM_STR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6517                 } else {
6518                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6519                         ARM_STR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6520                 }
6521         }
6522
6523         /* Initialize ss_trigger_page_var */
6524         if (!cfg->soft_breakpoints) {
6525                 MonoInst *info_var = cfg->arch.seq_point_info_var;
6526                 MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
6527                 int dreg = ARMREG_LR;
6528
6529                 if (info_var) {
6530                         g_assert (info_var->opcode == OP_REGOFFSET);
6531                         g_assert (arm_is_imm12 (info_var->inst_offset));
6532
6533                         ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
6534                         /* Load the trigger page addr */
6535                         ARM_LDR_IMM (code, dreg, dreg, MONO_STRUCT_OFFSET (SeqPointInfo, ss_trigger_page));
6536                         ARM_STR_IMM (code, dreg, ss_trigger_page_var->inst_basereg, ss_trigger_page_var->inst_offset);
6537                 }
6538         }
6539
6540         if (cfg->arch.seq_point_ss_method_var) {
6541                 MonoInst *ss_method_ins = cfg->arch.seq_point_ss_method_var;
6542                 MonoInst *bp_method_ins = cfg->arch.seq_point_bp_method_var;
6543 #ifdef USE_JUMP_TABLES
6544                 gpointer *jte;
6545 #endif
6546                 g_assert (ss_method_ins->opcode == OP_REGOFFSET);
6547                 g_assert (arm_is_imm12 (ss_method_ins->inst_offset));
6548                 g_assert (bp_method_ins->opcode == OP_REGOFFSET);
6549                 g_assert (arm_is_imm12 (bp_method_ins->inst_offset));
6550
6551 #ifdef USE_JUMP_TABLES
6552                 jte = mono_jumptable_add_entries (3);
6553                 jte [0] = &single_step_tramp;
6554                 jte [1] = breakpoint_tramp;
6555                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_LR);
6556 #else
6557                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
6558                 ARM_B (code, 2);
6559                 *(gpointer*)code = &single_step_tramp;
6560                 code += 4;
6561                 *(gpointer*)code = breakpoint_tramp;
6562                 code += 4;
6563 #endif
6564
6565                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 0);
6566                 ARM_STR_IMM (code, ARMREG_IP, ss_method_ins->inst_basereg, ss_method_ins->inst_offset);
6567                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 4);
6568                 ARM_STR_IMM (code, ARMREG_IP, bp_method_ins->inst_basereg, bp_method_ins->inst_offset);
6569         }
6570
6571         cfg->code_len = code - cfg->native_code;
6572         g_assert (cfg->code_len < cfg->code_size);
6573         g_free (cinfo);
6574
6575         return code;
6576 }
6577
6578 void
6579 mono_arch_emit_epilog (MonoCompile *cfg)
6580 {
6581         MonoMethod *method = cfg->method;
6582         int pos, i, rot_amount;
6583         int max_epilog_size = 16 + 20*4;
6584         guint8 *code;
6585         CallInfo *cinfo;
6586
6587         if (cfg->method->save_lmf)
6588                 max_epilog_size += 128;
6589         
6590         if (mono_jit_trace_calls != NULL)
6591                 max_epilog_size += 50;
6592
6593         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
6594                 max_epilog_size += 50;
6595
6596         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6597                 cfg->code_size *= 2;
6598                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6599                 cfg->stat_code_reallocs++;
6600         }
6601
6602         /*
6603          * Keep in sync with OP_JMP
6604          */
6605         code = cfg->native_code + cfg->code_len;
6606
6607         /* Save the uwind state which is needed by the out-of-line code */
6608         mono_emit_unwind_op_remember_state (cfg, code);
6609
6610         if (mono_jit_trace_calls != NULL && mono_trace_eval (method)) {
6611                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
6612         }
6613         pos = 0;
6614
6615         /* Load returned vtypes into registers if needed */
6616         cinfo = cfg->arch.cinfo;
6617         switch (cinfo->ret.storage) {
6618         case RegTypeStructByVal: {
6619                 MonoInst *ins = cfg->ret;
6620
6621                 if (arm_is_imm12 (ins->inst_offset)) {
6622                         ARM_LDR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6623                 } else {
6624                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6625                         ARM_LDR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6626                 }
6627                 break;
6628         }
6629         case RegTypeHFA: {
6630                 MonoInst *ins = cfg->ret;
6631
6632                 for (i = 0; i < cinfo->ret.nregs; ++i) {
6633                         if (cinfo->ret.esize == 4)
6634                                 ARM_FLDS (code, cinfo->ret.reg + i, ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6635                         else
6636                                 ARM_FLDD (code, cinfo->ret.reg + (i * 2), ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6637                 }
6638                 break;
6639         }
6640         default:
6641                 break;
6642         }
6643
6644         if (method->save_lmf) {
6645                 int lmf_offset, reg, sp_adj, regmask, nused_int_regs = 0;
6646                 /* all but r0-r3, sp and pc */
6647                 pos += sizeof (MonoLMF) - (MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6648                 lmf_offset = pos;
6649
6650                 code = emit_restore_lmf (cfg, code, cfg->stack_usage - lmf_offset);
6651
6652                 /* This points to r4 inside MonoLMF->iregs */
6653                 sp_adj = (sizeof (MonoLMF) - MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6654                 reg = ARMREG_R4;
6655                 regmask = 0x9ff0; /* restore lr to pc */
6656                 /* Skip caller saved registers not used by the method */
6657                 while (!(cfg->used_int_regs & (1 << reg)) && reg < ARMREG_FP) {
6658                         regmask &= ~(1 << reg);
6659                         sp_adj += 4;
6660                         reg ++;
6661                 }
6662                 if (iphone_abi)
6663                         /* Restored later */
6664                         regmask &= ~(1 << ARMREG_PC);
6665                 /* point sp at the registers to restore: 10 is 14 -4, because we skip r0-r3 */
6666                 code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage - lmf_offset + sp_adj);
6667                 for (i = 0; i < 16; i++) {
6668                         if (regmask & (1 << i))
6669                                 nused_int_regs ++;
6670                 }
6671                 mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, ((iphone_abi ? 3 : 0) + nused_int_regs) * 4);
6672                 /* restore iregs */
6673                 ARM_POP (code, regmask); 
6674                 if (iphone_abi) {
6675                         for (i = 0; i < 16; i++) {
6676                                 if (regmask & (1 << i))
6677                                         mono_emit_unwind_op_same_value (cfg, code, i);
6678                         }
6679                         /* Restore saved r7, restore LR to PC */
6680                         /* Skip lr from the lmf */
6681                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 3 * 4);
6682                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, sizeof (gpointer), 0);
6683                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6684                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6685                 }
6686         } else {
6687                 int i, nused_int_regs = 0;
6688
6689                 for (i = 0; i < 16; i++) {
6690                         if (cfg->used_int_regs & (1 << i))
6691                                 nused_int_regs ++;
6692                 }
6693
6694                 if ((i = mono_arm_is_rotated_imm8 (cfg->stack_usage, &rot_amount)) >= 0) {
6695                         ARM_ADD_REG_IMM (code, ARMREG_SP, cfg->frame_reg, i, rot_amount);
6696                 } else {
6697                         code = mono_arm_emit_load_imm (code, ARMREG_IP, cfg->stack_usage);
6698                         ARM_ADD_REG_REG (code, ARMREG_SP, cfg->frame_reg, ARMREG_IP);
6699                 }
6700
6701                 if (cfg->frame_reg != ARMREG_SP) {
6702                         mono_emit_unwind_op_def_cfa_reg (cfg, code, ARMREG_SP);
6703                 }
6704
6705                 if (iphone_abi) {
6706                         /* Restore saved gregs */
6707                         if (cfg->used_int_regs) {
6708                                 mono_emit_unwind_op_def_cfa_offset (cfg, code, (2 + nused_int_regs) * 4);
6709                                 ARM_POP (code, cfg->used_int_regs);
6710                                 for (i = 0; i < 16; i++) {
6711                                         if (cfg->used_int_regs & (1 << i))
6712                                                 mono_emit_unwind_op_same_value (cfg, code, i);
6713                                 }
6714                         }
6715                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6716                         /* Restore saved r7, restore LR to PC */
6717                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6718                 } else {
6719                         mono_emit_unwind_op_def_cfa_offset (cfg, code, (nused_int_regs + 1) * 4);
6720                         ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_PC));
6721                 }
6722         }
6723
6724         /* Restore the unwind state to be the same as before the epilog */
6725         mono_emit_unwind_op_restore_state (cfg, code);
6726
6727         cfg->code_len = code - cfg->native_code;
6728
6729         g_assert (cfg->code_len < cfg->code_size);
6730
6731 }
6732
6733 void
6734 mono_arch_emit_exceptions (MonoCompile *cfg)
6735 {
6736         MonoJumpInfo *patch_info;
6737         int i;
6738         guint8 *code;
6739         guint8* exc_throw_pos [MONO_EXC_INTRINS_NUM];
6740         guint8 exc_throw_found [MONO_EXC_INTRINS_NUM];
6741         int max_epilog_size = 50;
6742
6743         for (i = 0; i < MONO_EXC_INTRINS_NUM; i++) {
6744                 exc_throw_pos [i] = NULL;
6745                 exc_throw_found [i] = 0;
6746         }
6747
6748         /* count the number of exception infos */
6749      
6750         /* 
6751          * make sure we have enough space for exceptions
6752          */
6753         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6754                 if (patch_info->type == MONO_PATCH_INFO_EXC) {
6755                         i = mini_exception_id_by_name (patch_info->data.target);
6756                         if (!exc_throw_found [i]) {
6757                                 max_epilog_size += 32;
6758                                 exc_throw_found [i] = TRUE;
6759                         }
6760                 }
6761         }
6762
6763         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6764                 cfg->code_size *= 2;
6765                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6766                 cfg->stat_code_reallocs++;
6767         }
6768
6769         code = cfg->native_code + cfg->code_len;
6770
6771         /* add code to raise exceptions */
6772         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6773                 switch (patch_info->type) {
6774                 case MONO_PATCH_INFO_EXC: {
6775                         MonoClass *exc_class;
6776                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
6777
6778                         i = mini_exception_id_by_name (patch_info->data.target);
6779                         if (exc_throw_pos [i]) {
6780                                 arm_patch (ip, exc_throw_pos [i]);
6781                                 patch_info->type = MONO_PATCH_INFO_NONE;
6782                                 break;
6783                         } else {
6784                                 exc_throw_pos [i] = code;
6785                         }
6786                         arm_patch (ip, code);
6787
6788                         exc_class = mono_class_from_name (mono_defaults.corlib, "System", patch_info->data.name);
6789                         g_assert (exc_class);
6790
6791                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_LR);
6792 #ifdef USE_JUMP_TABLES
6793                         {
6794                                 gpointer *jte = mono_jumptable_add_entries (2);
6795                                 patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
6796                                 patch_info->data.name = "mono_arch_throw_corlib_exception";
6797                                 patch_info->ip.i = code - cfg->native_code;
6798                                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_R0);
6799                                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, 0);
6800                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
6801                                 ARM_BLX_REG (code, ARMREG_IP);
6802                                 jte [1] = GUINT_TO_POINTER (exc_class->type_token);
6803                         }
6804 #else
6805                         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6806                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
6807                         patch_info->data.name = "mono_arch_throw_corlib_exception";
6808                         patch_info->ip.i = code - cfg->native_code;
6809                         ARM_BL (code, 0);
6810                         cfg->thunk_area += THUNK_SIZE;
6811                         *(guint32*)(gpointer)code = exc_class->type_token;
6812                         code += 4;
6813 #endif
6814                         break;
6815                 }
6816                 default:
6817                         /* do nothing */
6818                         break;
6819                 }
6820         }
6821
6822         cfg->code_len = code - cfg->native_code;
6823
6824         g_assert (cfg->code_len < cfg->code_size);
6825
6826 }
6827
6828 #endif /* #ifndef DISABLE_JIT */
6829
6830 void
6831 mono_arch_finish_init (void)
6832 {
6833 }
6834
6835 void
6836 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
6837 {
6838 }
6839
6840 MonoInst*
6841 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
6842 {
6843         /* FIXME: */
6844         return NULL;
6845 }
6846
6847 gboolean
6848 mono_arch_print_tree (MonoInst *tree, int arity)
6849 {
6850         return 0;
6851 }
6852
6853 #ifndef DISABLE_JIT
6854
6855 #endif
6856
6857 guint32
6858 mono_arch_get_patch_offset (guint8 *code)
6859 {
6860         /* OP_AOTCONST */
6861         return 8;
6862 }
6863
6864 void
6865 mono_arch_flush_register_windows (void)
6866 {
6867 }
6868
6869 MonoMethod*
6870 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
6871 {
6872         return (MonoMethod*)regs [MONO_ARCH_IMT_REG];
6873 }
6874
6875 MonoVTable*
6876 mono_arch_find_static_call_vtable (mgreg_t *regs, guint8 *code)
6877 {
6878         return (MonoVTable*) regs [MONO_ARCH_RGCTX_REG];
6879 }
6880
6881 GSList*
6882 mono_arch_get_cie_program (void)
6883 {
6884         GSList *l = NULL;
6885
6886         mono_add_unwind_op_def_cfa (l, (guint8*)NULL, (guint8*)NULL, ARMREG_SP, 0);
6887
6888         return l;
6889 }
6890
6891 /* #define ENABLE_WRONG_METHOD_CHECK 1 */
6892 #define BASE_SIZE (6 * 4)
6893 #define BSEARCH_ENTRY_SIZE (4 * 4)
6894 #define CMP_SIZE (3 * 4)
6895 #define BRANCH_SIZE (1 * 4)
6896 #define CALL_SIZE (2 * 4)
6897 #define WMC_SIZE (8 * 4)
6898 #define DISTANCE(A, B) (((gint32)(B)) - ((gint32)(A)))
6899
6900 #ifdef USE_JUMP_TABLES
6901 static void
6902 set_jumptable_element (gpointer *base, guint32 index, gpointer value)
6903 {
6904         g_assert (base [index] == NULL);
6905         base [index] = value;
6906 }
6907 static arminstr_t *
6908 load_element_with_regbase_cond (arminstr_t *code, ARMReg dreg, ARMReg base, guint32 jti, int cond)
6909 {
6910         if (arm_is_imm12 (jti * 4)) {
6911                 ARM_LDR_IMM_COND (code, dreg, base, jti * 4, cond);
6912         } else {
6913                 ARM_MOVW_REG_IMM_COND (code, dreg, (jti * 4) & 0xffff, cond);
6914                 if ((jti * 4) >> 16)
6915                         ARM_MOVT_REG_IMM_COND (code, dreg, ((jti * 4) >> 16) & 0xffff, cond);
6916                 ARM_LDR_REG_REG_SHIFT_COND (code, dreg, base, dreg, ARMSHIFT_LSL, 0, cond);
6917         }
6918         return code;
6919 }
6920 #else
6921 static arminstr_t *
6922 arm_emit_value_and_patch_ldr (arminstr_t *code, arminstr_t *target, guint32 value)
6923 {
6924         guint32 delta = DISTANCE (target, code);
6925         delta -= 8;
6926         g_assert (delta >= 0 && delta <= 0xFFF);
6927         *target = *target | delta;
6928         *code = value;
6929         return code + 1;
6930 }
6931 #endif
6932
6933 #ifdef ENABLE_WRONG_METHOD_CHECK
6934 static void
6935 mini_dump_bad_imt (int input_imt, int compared_imt, int pc)
6936 {
6937         g_print ("BAD IMT comparing %x with expected %x at ip %x", input_imt, compared_imt, pc);
6938         g_assert (0);
6939 }
6940 #endif
6941
6942 gpointer
6943 mono_arch_build_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
6944         gpointer fail_tramp)
6945 {
6946         int size, i;
6947         arminstr_t *code, *start;
6948 #ifdef USE_JUMP_TABLES
6949         gpointer *jte;
6950 #else
6951         gboolean large_offsets = FALSE;
6952         guint32 **constant_pool_starts;
6953         arminstr_t *vtable_target = NULL;
6954         int extra_space = 0;
6955 #endif
6956 #ifdef ENABLE_WRONG_METHOD_CHECK
6957         char * cond;
6958 #endif
6959         GSList *unwind_ops;
6960
6961         size = BASE_SIZE;
6962 #ifdef USE_JUMP_TABLES
6963         for (i = 0; i < count; ++i) {
6964                 MonoIMTCheckItem *item = imt_entries [i];
6965                 item->chunk_size += 4 * 16;
6966                 if (!item->is_equals)
6967                         imt_entries [item->check_target_idx]->compare_done = TRUE;
6968                 size += item->chunk_size;
6969         }
6970 #else
6971         constant_pool_starts = g_new0 (guint32*, count);
6972
6973         for (i = 0; i < count; ++i) {
6974                 MonoIMTCheckItem *item = imt_entries [i];
6975                 if (item->is_equals) {
6976                         gboolean fail_case = !item->check_target_idx && fail_tramp;
6977
6978                         if (item->has_target_code || !arm_is_imm12 (DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]))) {
6979                                 item->chunk_size += 32;
6980                                 large_offsets = TRUE;
6981                         }
6982
6983                         if (item->check_target_idx || fail_case) {
6984                                 if (!item->compare_done || fail_case)
6985                                         item->chunk_size += CMP_SIZE;
6986                                 item->chunk_size += BRANCH_SIZE;
6987                         } else {
6988 #ifdef ENABLE_WRONG_METHOD_CHECK
6989                                 item->chunk_size += WMC_SIZE;
6990 #endif
6991                         }
6992                         if (fail_case) {
6993                                 item->chunk_size += 16;
6994                                 large_offsets = TRUE;
6995                         }
6996                         item->chunk_size += CALL_SIZE;
6997                 } else {
6998                         item->chunk_size += BSEARCH_ENTRY_SIZE;
6999                         imt_entries [item->check_target_idx]->compare_done = TRUE;
7000                 }
7001                 size += item->chunk_size;
7002         }
7003
7004         if (large_offsets)
7005                 size += 4 * count; /* The ARM_ADD_REG_IMM to pop the stack */
7006 #endif
7007
7008         if (fail_tramp)
7009                 code = mono_method_alloc_generic_virtual_thunk (domain, size);
7010         else
7011                 code = mono_domain_code_reserve (domain, size);
7012         start = code;
7013
7014         unwind_ops = mono_arch_get_cie_program ();
7015
7016 #ifdef DEBUG_IMT
7017         g_print ("Building IMT thunk for class %s %s entries %d code size %d code at %p end %p vtable %p fail_tramp %p\n", vtable->klass->name_space, vtable->klass->name, count, size, start, ((guint8*)start) + size, vtable, fail_tramp);
7018         for (i = 0; i < count; ++i) {
7019                 MonoIMTCheckItem *item = imt_entries [i];
7020                 g_print ("method %d (%p) %s vtable slot %p is_equals %d chunk size %d\n", i, item->key, ((MonoMethod*)item->key)->name, &vtable->vtable [item->value.vtable_slot], item->is_equals, item->chunk_size);
7021         }
7022 #endif
7023
7024 #ifdef USE_JUMP_TABLES
7025         ARM_PUSH3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7026         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 3 * sizeof (mgreg_t));
7027 #define VTABLE_JTI 0
7028 #define IMT_METHOD_OFFSET 0
7029 #define TARGET_CODE_OFFSET 1
7030 #define JUMP_CODE_OFFSET 2
7031 #define RECORDS_PER_ENTRY 3
7032 #define IMT_METHOD_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + IMT_METHOD_OFFSET)
7033 #define TARGET_CODE_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + TARGET_CODE_OFFSET)
7034 #define JUMP_CODE_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + JUMP_CODE_OFFSET)
7035
7036         jte = mono_jumptable_add_entries (RECORDS_PER_ENTRY * count + 1 /* vtable */);
7037         code = (arminstr_t *) mono_arm_load_jumptable_entry_addr ((guint8 *) code, jte, ARMREG_R2);
7038         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R2, VTABLE_JTI);
7039         set_jumptable_element (jte, VTABLE_JTI, vtable);
7040 #else
7041         if (large_offsets) {
7042                 ARM_PUSH4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7043                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 4 * sizeof (mgreg_t));
7044         } else {
7045                 ARM_PUSH2 (code, ARMREG_R0, ARMREG_R1);
7046                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
7047         }
7048         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, -4);
7049         vtable_target = code;
7050         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
7051 #endif
7052         ARM_MOV_REG_REG (code, ARMREG_R0, ARMREG_V5);
7053
7054         for (i = 0; i < count; ++i) {
7055                 MonoIMTCheckItem *item = imt_entries [i];
7056 #ifdef USE_JUMP_TABLES
7057                 guint32 imt_method_jti = 0, target_code_jti = 0;
7058 #else
7059                 arminstr_t *imt_method = NULL, *vtable_offset_ins = NULL, *target_code_ins = NULL;
7060 #endif
7061                 gint32 vtable_offset;
7062
7063                 item->code_target = (guint8*)code;
7064
7065                 if (item->is_equals) {
7066                         gboolean fail_case = !item->check_target_idx && fail_tramp;
7067
7068                         if (item->check_target_idx || fail_case) {
7069                                 if (!item->compare_done || fail_case) {
7070 #ifdef USE_JUMP_TABLES
7071                                         imt_method_jti = IMT_METHOD_JTI (i);
7072                                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, imt_method_jti, ARMCOND_AL);
7073 #else
7074                                         imt_method = code;
7075                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7076 #endif
7077                                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7078                                 }
7079 #ifdef USE_JUMP_TABLES
7080                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, JUMP_CODE_JTI (i), ARMCOND_NE);
7081                                 ARM_BX_COND (code, ARMCOND_NE, ARMREG_R1);
7082                                 item->jmp_code = GUINT_TO_POINTER (JUMP_CODE_JTI (i));
7083 #else
7084                                 item->jmp_code = (guint8*)code;
7085                                 ARM_B_COND (code, ARMCOND_NE, 0);
7086 #endif
7087                         } else {
7088                                 /*Enable the commented code to assert on wrong method*/
7089 #ifdef ENABLE_WRONG_METHOD_CHECK
7090 #ifdef USE_JUMP_TABLES
7091                                 imt_method_jti = IMT_METHOD_JTI (i);
7092                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, imt_method_jti, ARMCOND_AL);
7093 #else
7094                                 imt_method = code;
7095                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7096 #endif
7097                                 ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7098                                 cond = code;
7099                                 ARM_B_COND (code, ARMCOND_EQ, 0);
7100
7101 /* Define this if your system is so bad that gdb is failing. */
7102 #ifdef BROKEN_DEV_ENV
7103                                 ARM_MOV_REG_REG (code, ARMREG_R2, ARMREG_PC);
7104                                 ARM_BL (code, 0);
7105                                 arm_patch (code - 1, mini_dump_bad_imt);
7106 #else
7107                                 ARM_DBRK (code);
7108 #endif
7109                                 arm_patch (cond, code);
7110 #endif
7111                         }
7112
7113                         if (item->has_target_code) {
7114                                 /* Load target address */
7115 #ifdef USE_JUMP_TABLES
7116                                 target_code_jti = TARGET_CODE_JTI (i);
7117                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, target_code_jti, ARMCOND_AL);
7118                                 /* Restore registers */
7119                                 ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7120                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7121                                 /*  And branch */
7122                                 ARM_BX (code, ARMREG_R1);
7123                                 set_jumptable_element (jte, target_code_jti, item->value.target_code);
7124 #else
7125                                 target_code_ins = code;
7126                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7127                                 /* Save it to the fourth slot */
7128                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7129                                 /* Restore registers and branch */
7130                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7131                                 
7132                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)item->value.target_code);
7133 #endif
7134                         } else {
7135                                 vtable_offset = DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]);
7136                                 if (!arm_is_imm12 (vtable_offset)) {
7137                                         /* 
7138                                          * We need to branch to a computed address but we don't have
7139                                          * a free register to store it, since IP must contain the 
7140                                          * vtable address. So we push the two values to the stack, and
7141                                          * load them both using LDM.
7142                                          */
7143                                         /* Compute target address */
7144 #ifdef USE_JUMP_TABLES
7145                                         ARM_MOVW_REG_IMM (code, ARMREG_R1, vtable_offset & 0xffff);
7146                                         if (vtable_offset >> 16)
7147                                                 ARM_MOVT_REG_IMM (code, ARMREG_R1, (vtable_offset >> 16) & 0xffff);
7148                                         /* IP had vtable base. */
7149                                         ARM_LDR_REG_REG (code, ARMREG_IP, ARMREG_IP, ARMREG_R1);
7150                                         /* Restore registers and branch */
7151                                         ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7152                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7153                                         ARM_BX (code, ARMREG_IP);
7154 #else
7155                                         vtable_offset_ins = code;
7156                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7157                                         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_IP, ARMREG_R1);
7158                                         /* Save it to the fourth slot */
7159                                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7160                                         /* Restore registers and branch */
7161                                         ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7162                                 
7163                                         code = arm_emit_value_and_patch_ldr (code, vtable_offset_ins, vtable_offset);
7164 #endif
7165                                 } else {
7166 #ifdef USE_JUMP_TABLES
7167                                         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_IP, vtable_offset);
7168                                         ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7169                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7170                                         ARM_BX (code, ARMREG_IP);
7171 #else
7172                                         ARM_POP2 (code, ARMREG_R0, ARMREG_R1);
7173                                         if (large_offsets) {
7174                                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
7175                                                 ARM_ADD_REG_IMM8 (code, ARMREG_SP, ARMREG_SP, 2 * sizeof (gpointer));
7176                                         }
7177                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7178                                         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, vtable_offset);
7179 #endif
7180                                 }
7181                         }
7182
7183                         if (fail_case) {
7184 #ifdef USE_JUMP_TABLES
7185                                 set_jumptable_element (jte, GPOINTER_TO_UINT (item->jmp_code), code);
7186                                 target_code_jti = TARGET_CODE_JTI (i);
7187                                 /* Load target address */
7188                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, target_code_jti, ARMCOND_AL);
7189                                 /* Restore registers */
7190                                 ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7191                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7192                                 /* And branch */
7193                                 ARM_BX (code, ARMREG_R1);
7194                                 set_jumptable_element (jte, target_code_jti, fail_tramp);
7195 #else
7196                                 arm_patch (item->jmp_code, (guchar*)code);
7197
7198                                 target_code_ins = code;
7199                                 /* Load target address */
7200                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7201                                 /* Save it to the fourth slot */
7202                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7203                                 /* Restore registers and branch */
7204                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7205                                 
7206                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)fail_tramp);
7207 #endif
7208                                 item->jmp_code = NULL;
7209                         }
7210
7211 #ifdef USE_JUMP_TABLES
7212                         if (imt_method_jti)
7213                                 set_jumptable_element (jte, imt_method_jti, item->key);
7214 #else
7215                         if (imt_method)
7216                                 code = arm_emit_value_and_patch_ldr (code, imt_method, (guint32)item->key);
7217
7218                         /*must emit after unconditional branch*/
7219                         if (vtable_target) {
7220                                 code = arm_emit_value_and_patch_ldr (code, vtable_target, (guint32)vtable);
7221                                 item->chunk_size += 4;
7222                                 vtable_target = NULL;
7223                         }
7224
7225                         /*We reserve the space for bsearch IMT values after the first entry with an absolute jump*/
7226                         constant_pool_starts [i] = code;
7227                         if (extra_space) {
7228                                 code += extra_space;
7229                                 extra_space = 0;
7230                         }
7231 #endif
7232                 } else {
7233 #ifdef USE_JUMP_TABLES
7234                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, IMT_METHOD_JTI (i), ARMCOND_AL);
7235                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7236                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, JUMP_CODE_JTI (i), ARMCOND_HS);
7237                         ARM_BX_COND (code, ARMCOND_HS, ARMREG_R1);
7238                         item->jmp_code = GUINT_TO_POINTER (JUMP_CODE_JTI (i));
7239 #else
7240                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7241                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7242
7243                         item->jmp_code = (guint8*)code;
7244                         ARM_B_COND (code, ARMCOND_HS, 0);
7245                         ++extra_space;
7246 #endif
7247                 }
7248         }
7249
7250         for (i = 0; i < count; ++i) {
7251                 MonoIMTCheckItem *item = imt_entries [i];
7252                 if (item->jmp_code) {
7253                         if (item->check_target_idx)
7254 #ifdef USE_JUMP_TABLES
7255                                 set_jumptable_element (jte, GPOINTER_TO_UINT (item->jmp_code), imt_entries [item->check_target_idx]->code_target);
7256 #else
7257                                 arm_patch (item->jmp_code, imt_entries [item->check_target_idx]->code_target);
7258 #endif
7259                 }
7260                 if (i > 0 && item->is_equals) {
7261                         int j;
7262 #ifdef USE_JUMP_TABLES
7263                         for (j = i - 1; j >= 0 && !imt_entries [j]->is_equals; --j)
7264                                 set_jumptable_element (jte, IMT_METHOD_JTI (j), imt_entries [j]->key);
7265 #else
7266                         arminstr_t *space_start = constant_pool_starts [i];
7267                         for (j = i - 1; j >= 0 && !imt_entries [j]->is_equals; --j) {
7268                                 space_start = arm_emit_value_and_patch_ldr (space_start, (arminstr_t*)imt_entries [j]->code_target, (guint32)imt_entries [j]->key);
7269                         }
7270 #endif
7271                 }
7272         }
7273
7274 #ifdef DEBUG_IMT
7275         {
7276                 char *buff = g_strdup_printf ("thunk_for_class_%s_%s_entries_%d", vtable->klass->name_space, vtable->klass->name, count);
7277                 mono_disassemble_code (NULL, (guint8*)start, size, buff);
7278                 g_free (buff);
7279         }
7280 #endif
7281
7282 #ifndef USE_JUMP_TABLES
7283         g_free (constant_pool_starts);
7284 #endif
7285
7286         mono_arch_flush_icache ((guint8*)start, size);
7287         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_IMT_TRAMPOLINE, NULL);
7288         mono_stats.imt_thunks_size += code - start;
7289
7290         g_assert (DISTANCE (start, code) <= size);
7291
7292         mono_tramp_info_register (mono_tramp_info_create (NULL, (guint8*)start, DISTANCE (start, code), NULL, unwind_ops), domain);
7293
7294         return start;
7295 }
7296
7297 mgreg_t
7298 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
7299 {
7300         return ctx->regs [reg];
7301 }
7302
7303 void
7304 mono_arch_context_set_int_reg (MonoContext *ctx, int reg, mgreg_t val)
7305 {
7306         ctx->regs [reg] = val;
7307 }
7308
7309 /*
7310  * mono_arch_get_trampolines:
7311  *
7312  *   Return a list of MonoTrampInfo structures describing arch specific trampolines
7313  * for AOT.
7314  */
7315 GSList *
7316 mono_arch_get_trampolines (gboolean aot)
7317 {
7318         return mono_arm_get_exception_trampolines (aot);
7319 }
7320
7321 gpointer
7322 mono_arch_install_handler_block_guard (MonoJitInfo *ji, MonoJitExceptionInfo *clause, MonoContext *ctx, gpointer new_value)
7323 {
7324         gpointer *lr_loc;
7325         char *old_value;
7326         char *bp;
7327
7328         /*Load the spvar*/
7329         bp = MONO_CONTEXT_GET_BP (ctx);
7330         lr_loc = (gpointer*)(bp + clause->exvar_offset);
7331
7332         old_value = *lr_loc;
7333         if ((char*)old_value < (char*)ji->code_start || (char*)old_value > ((char*)ji->code_start + ji->code_size))
7334                 return old_value;
7335
7336         *lr_loc = new_value;
7337
7338         return old_value;
7339 }
7340
7341 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED)
7342 /*
7343  * mono_arch_set_breakpoint:
7344  *
7345  *   Set a breakpoint at the native code corresponding to JI at NATIVE_OFFSET.
7346  * The location should contain code emitted by OP_SEQ_POINT.
7347  */
7348 void
7349 mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip)
7350 {
7351         guint8 *code = ip;
7352         guint32 native_offset = ip - (guint8*)ji->code_start;
7353         MonoDebugOptions *opt = mini_get_debug_options ();
7354
7355         if (opt->soft_breakpoints) {
7356                 g_assert (!ji->from_aot);
7357                 code += 4;
7358                 ARM_BLX_REG (code, ARMREG_LR);
7359                 mono_arch_flush_icache (code - 4, 4);
7360         } else if (ji->from_aot) {
7361                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7362
7363                 g_assert (native_offset % 4 == 0);
7364                 g_assert (info->bp_addrs [native_offset / 4] == 0);
7365                 info->bp_addrs [native_offset / 4] = bp_trigger_page;
7366         } else {
7367                 int dreg = ARMREG_LR;
7368
7369                 /* Read from another trigger page */
7370 #ifdef USE_JUMP_TABLES
7371                 gpointer *jte = mono_jumptable_add_entry ();
7372                 code = mono_arm_load_jumptable_entry (code, jte, dreg);
7373                 jte [0] = bp_trigger_page;
7374 #else
7375                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
7376                 ARM_B (code, 0);
7377                 *(int*)code = (int)bp_trigger_page;
7378                 code += 4;
7379 #endif
7380                 ARM_LDR_IMM (code, dreg, dreg, 0);
7381
7382                 mono_arch_flush_icache (code - 16, 16);
7383
7384 #if 0
7385                 /* This is currently implemented by emitting an SWI instruction, which 
7386                  * qemu/linux seems to convert to a SIGILL.
7387                  */
7388                 *(int*)code = (0xef << 24) | 8;
7389                 code += 4;
7390                 mono_arch_flush_icache (code - 4, 4);
7391 #endif
7392         }
7393 }
7394
7395 /*
7396  * mono_arch_clear_breakpoint:
7397  *
7398  *   Clear the breakpoint at IP.
7399  */
7400 void
7401 mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip)
7402 {
7403         MonoDebugOptions *opt = mini_get_debug_options ();
7404         guint8 *code = ip;
7405         int i;
7406
7407         if (opt->soft_breakpoints) {
7408                 g_assert (!ji->from_aot);
7409                 code += 4;
7410                 ARM_NOP (code);
7411                 mono_arch_flush_icache (code - 4, 4);
7412         } else if (ji->from_aot) {
7413                 guint32 native_offset = ip - (guint8*)ji->code_start;
7414                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7415
7416                 g_assert (native_offset % 4 == 0);
7417                 g_assert (info->bp_addrs [native_offset / 4] == bp_trigger_page);
7418                 info->bp_addrs [native_offset / 4] = 0;
7419         } else {
7420                 for (i = 0; i < 4; ++i)
7421                         ARM_NOP (code);
7422
7423                 mono_arch_flush_icache (ip, code - ip);
7424         }
7425 }
7426         
7427 /*
7428  * mono_arch_start_single_stepping:
7429  *
7430  *   Start single stepping.
7431  */
7432 void
7433 mono_arch_start_single_stepping (void)
7434 {
7435         if (ss_trigger_page)
7436                 mono_mprotect (ss_trigger_page, mono_pagesize (), 0);
7437         else
7438                 single_step_tramp = mini_get_single_step_trampoline ();
7439 }
7440         
7441 /*
7442  * mono_arch_stop_single_stepping:
7443  *
7444  *   Stop single stepping.
7445  */
7446 void
7447 mono_arch_stop_single_stepping (void)
7448 {
7449         if (ss_trigger_page)
7450                 mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ);
7451         else
7452                 single_step_tramp = NULL;
7453 }
7454
7455 #if __APPLE__
7456 #define DBG_SIGNAL SIGBUS
7457 #else
7458 #define DBG_SIGNAL SIGSEGV
7459 #endif
7460
7461 /*
7462  * mono_arch_is_single_step_event:
7463  *
7464  *   Return whenever the machine state in SIGCTX corresponds to a single
7465  * step event.
7466  */
7467 gboolean
7468 mono_arch_is_single_step_event (void *info, void *sigctx)
7469 {
7470         siginfo_t *sinfo = info;
7471
7472         if (!ss_trigger_page)
7473                 return FALSE;
7474
7475         /* Sometimes the address is off by 4 */
7476         if (sinfo->si_addr >= ss_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)ss_trigger_page + 128)
7477                 return TRUE;
7478         else
7479                 return FALSE;
7480 }
7481
7482 /*
7483  * mono_arch_is_breakpoint_event:
7484  *
7485  *   Return whenever the machine state in SIGCTX corresponds to a breakpoint event.
7486  */
7487 gboolean
7488 mono_arch_is_breakpoint_event (void *info, void *sigctx)
7489 {
7490         siginfo_t *sinfo = info;
7491
7492         if (!ss_trigger_page)
7493                 return FALSE;
7494
7495         if (sinfo->si_signo == DBG_SIGNAL) {
7496                 /* Sometimes the address is off by 4 */
7497                 if (sinfo->si_addr >= bp_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)bp_trigger_page + 128)
7498                         return TRUE;
7499                 else
7500                         return FALSE;
7501         } else {
7502                 return FALSE;
7503         }
7504 }
7505
7506 /*
7507  * mono_arch_skip_breakpoint:
7508  *
7509  *   See mini-amd64.c for docs.
7510  */
7511 void
7512 mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji)
7513 {
7514         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7515 }
7516
7517 /*
7518  * mono_arch_skip_single_step:
7519  *
7520  *   See mini-amd64.c for docs.
7521  */
7522 void
7523 mono_arch_skip_single_step (MonoContext *ctx)
7524 {
7525         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7526 }
7527
7528 #endif /* MONO_ARCH_SOFT_DEBUG_SUPPORTED */
7529
7530 /*
7531  * mono_arch_get_seq_point_info:
7532  *
7533  *   See mini-amd64.c for docs.
7534  */
7535 gpointer
7536 mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code)
7537 {
7538         SeqPointInfo *info;
7539         MonoJitInfo *ji;
7540
7541         // FIXME: Add a free function
7542
7543         mono_domain_lock (domain);
7544         info = g_hash_table_lookup (domain_jit_info (domain)->arch_seq_points, 
7545                                                                 code);
7546         mono_domain_unlock (domain);
7547
7548         if (!info) {
7549                 ji = mono_jit_info_table_find (domain, (char*)code);
7550                 g_assert (ji);
7551
7552                 info = g_malloc0 (sizeof (SeqPointInfo) + ji->code_size);
7553
7554                 info->ss_trigger_page = ss_trigger_page;
7555                 info->bp_trigger_page = bp_trigger_page;
7556
7557                 mono_domain_lock (domain);
7558                 g_hash_table_insert (domain_jit_info (domain)->arch_seq_points,
7559                                                          code, info);
7560                 mono_domain_unlock (domain);
7561         }
7562
7563         return info;
7564 }
7565
7566 void
7567 mono_arch_init_lmf_ext (MonoLMFExt *ext, gpointer prev_lmf)
7568 {
7569         ext->lmf.previous_lmf = prev_lmf;
7570         /* Mark that this is a MonoLMFExt */
7571         ext->lmf.previous_lmf = (gpointer)(((gssize)ext->lmf.previous_lmf) | 2);
7572         ext->lmf.sp = (gssize)ext;
7573 }
7574
7575 /*
7576  * mono_arch_set_target:
7577  *
7578  *   Set the target architecture the JIT backend should generate code for, in the form
7579  * of a GNU target triplet. Only used in AOT mode.
7580  */
7581 void
7582 mono_arch_set_target (char *mtriple)
7583 {
7584         /* The GNU target triple format is not very well documented */
7585         if (strstr (mtriple, "armv7")) {
7586                 v5_supported = TRUE;
7587                 v6_supported = TRUE;
7588                 v7_supported = TRUE;
7589         }
7590         if (strstr (mtriple, "armv6")) {
7591                 v5_supported = TRUE;
7592                 v6_supported = TRUE;
7593         }
7594         if (strstr (mtriple, "armv7s")) {
7595                 v7s_supported = TRUE;
7596         }
7597         if (strstr (mtriple, "armv7k")) {
7598                 v7k_supported = TRUE;
7599         }
7600         if (strstr (mtriple, "thumbv7s")) {
7601                 v5_supported = TRUE;
7602                 v6_supported = TRUE;
7603                 v7_supported = TRUE;
7604                 v7s_supported = TRUE;
7605                 thumb_supported = TRUE;
7606                 thumb2_supported = TRUE;
7607         }
7608         if (strstr (mtriple, "darwin") || strstr (mtriple, "ios")) {
7609                 v5_supported = TRUE;
7610                 v6_supported = TRUE;
7611                 thumb_supported = TRUE;
7612                 iphone_abi = TRUE;
7613         }
7614         if (strstr (mtriple, "gnueabi"))
7615                 eabi_supported = TRUE;
7616 }
7617
7618 gboolean
7619 mono_arch_opcode_supported (int opcode)
7620 {
7621         switch (opcode) {
7622         case OP_ATOMIC_ADD_I4:
7623         case OP_ATOMIC_EXCHANGE_I4:
7624         case OP_ATOMIC_CAS_I4:
7625         case OP_ATOMIC_LOAD_I1:
7626         case OP_ATOMIC_LOAD_I2:
7627         case OP_ATOMIC_LOAD_I4:
7628         case OP_ATOMIC_LOAD_U1:
7629         case OP_ATOMIC_LOAD_U2:
7630         case OP_ATOMIC_LOAD_U4:
7631         case OP_ATOMIC_STORE_I1:
7632         case OP_ATOMIC_STORE_I2:
7633         case OP_ATOMIC_STORE_I4:
7634         case OP_ATOMIC_STORE_U1:
7635         case OP_ATOMIC_STORE_U2:
7636         case OP_ATOMIC_STORE_U4:
7637                 return v7_supported;
7638         case OP_ATOMIC_LOAD_R4:
7639         case OP_ATOMIC_LOAD_R8:
7640         case OP_ATOMIC_STORE_R4:
7641         case OP_ATOMIC_STORE_R8:
7642                 return v7_supported && IS_VFP;
7643         default:
7644                 return FALSE;
7645         }
7646 }
7647
7648 #if defined(ENABLE_GSHAREDVT)
7649
7650 #include "../../../mono-extensions/mono/mini/mini-arm-gsharedvt.c"
7651
7652 #endif /* !MONOTOUCH */