Merge pull request #2261 from BrzVlad/fix-arm-fast-tls-master
[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_os_mutex_lock (&mini_arch_mutex)
99 #define mono_mini_arch_unlock() mono_os_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_os_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 (mini_get_debug_options()->single_imm_size && v7_supported) {
4063                 ARM_MOVW_REG_IMM (code, dreg, val & 0xffff);
4064                 ARM_MOVT_REG_IMM (code, dreg, (val >> 16) & 0xffff);
4065                 return code;
4066         }
4067
4068         if ((imm8 = mono_arm_is_rotated_imm8 (val, &rot_amount)) >= 0) {
4069                 ARM_MOV_REG_IMM (code, dreg, imm8, rot_amount);
4070         } else if ((imm8 = mono_arm_is_rotated_imm8 (~val, &rot_amount)) >= 0) {
4071                 ARM_MVN_REG_IMM (code, dreg, imm8, rot_amount);
4072         } else {
4073                 if (v7_supported) {
4074                         ARM_MOVW_REG_IMM (code, dreg, val & 0xffff);
4075                         if (val >> 16)
4076                                 ARM_MOVT_REG_IMM (code, dreg, (val >> 16) & 0xffff);
4077                         return code;
4078                 }
4079                 if (val & 0xFF) {
4080                         ARM_MOV_REG_IMM8 (code, dreg, (val & 0xFF));
4081                         if (val & 0xFF00) {
4082                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4083                         }
4084                         if (val & 0xFF0000) {
4085                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4086                         }
4087                         if (val & 0xFF000000) {
4088                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4089                         }
4090                 } else if (val & 0xFF00) {
4091                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF00) >> 8, 24);
4092                         if (val & 0xFF0000) {
4093                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4094                         }
4095                         if (val & 0xFF000000) {
4096                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4097                         }
4098                 } else if (val & 0xFF0000) {
4099                         ARM_MOV_REG_IMM (code, dreg, (val & 0xFF0000) >> 16, 16);
4100                         if (val & 0xFF000000) {
4101                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF000000) >> 24, 8);
4102                         }
4103                 }
4104                 //g_assert_not_reached ();
4105         }
4106         return code;
4107 }
4108
4109 gboolean
4110 mono_arm_thumb_supported (void)
4111 {
4112         return thumb_supported;
4113 }
4114
4115 #ifndef DISABLE_JIT
4116
4117 static guint8*
4118 emit_move_return_value (MonoCompile *cfg, MonoInst *ins, guint8 *code)
4119 {
4120         CallInfo *cinfo;
4121         MonoCallInst *call;
4122
4123         call = (MonoCallInst*)ins;
4124         cinfo = call->call_info;
4125
4126         switch (cinfo->ret.storage) {
4127         case RegTypeHFA: {
4128                 MonoInst *loc = cfg->arch.vret_addr_loc;
4129                 int i;
4130
4131                 /* Load the destination address */
4132                 g_assert (loc && loc->opcode == OP_REGOFFSET);
4133
4134                 if (arm_is_imm12 (loc->inst_offset)) {
4135                         ARM_LDR_IMM (code, ARMREG_LR, loc->inst_basereg, loc->inst_offset);
4136                 } else {
4137                         code = mono_arm_emit_load_imm (code, ARMREG_LR, loc->inst_offset);
4138                         ARM_LDR_REG_REG (code, ARMREG_LR, loc->inst_basereg, ARMREG_LR);
4139                 }
4140                 for (i = 0; i < cinfo->ret.nregs; ++i) {
4141                         if (cinfo->ret.esize == 4)
4142                                 ARM_FSTS (code, cinfo->ret.reg + i, ARMREG_LR, i * 4);
4143                         else
4144                                 ARM_FSTD (code, cinfo->ret.reg + (i * 2), ARMREG_LR, i * 8);
4145                 }
4146                 return code;
4147         }
4148         default:
4149                 break;
4150         }
4151
4152         switch (ins->opcode) {
4153         case OP_FCALL:
4154         case OP_FCALL_REG:
4155         case OP_FCALL_MEMBASE:
4156                 if (IS_VFP) {
4157                         MonoType *sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4158                         if (sig_ret->type == MONO_TYPE_R4) {
4159                                 if (IS_HARD_FLOAT) {
4160                                         ARM_CVTS (code, ins->dreg, ARM_VFP_F0);
4161                                 } else {
4162                                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4163                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4164                                 }
4165                         } else {
4166                                 if (IS_HARD_FLOAT) {
4167                                         ARM_CPYD (code, ins->dreg, ARM_VFP_D0);
4168                                 } else {
4169                                         ARM_FMDRR (code, ARMREG_R0, ARMREG_R1, ins->dreg);
4170                                 }
4171                         }
4172                 }
4173                 break;
4174         case OP_RCALL:
4175         case OP_RCALL_REG:
4176         case OP_RCALL_MEMBASE: {
4177                 MonoType *sig_ret;
4178
4179                 g_assert (IS_VFP);
4180
4181                 sig_ret = mini_get_underlying_type (((MonoCallInst*)ins)->signature->ret);
4182                 g_assert (sig_ret->type == MONO_TYPE_R4);
4183                 if (IS_HARD_FLOAT) {
4184                         ARM_CPYS (code, ins->dreg, ARM_VFP_F0);
4185                 } else {
4186                         ARM_FMSR (code, ins->dreg, ARMREG_R0);
4187                         ARM_CPYS (code, ins->dreg, ins->dreg);
4188                 }
4189                 break;
4190         }
4191         default:
4192                 break;
4193         }
4194
4195         return code;
4196 }
4197
4198 void
4199 mono_arch_output_basic_block (MonoCompile *cfg, MonoBasicBlock *bb)
4200 {
4201         MonoInst *ins;
4202         MonoCallInst *call;
4203         guint offset;
4204         guint8 *code = cfg->native_code + cfg->code_len;
4205         MonoInst *last_ins = NULL;
4206         guint last_offset = 0;
4207         int max_len, cpos;
4208         int imm8, rot_amount;
4209
4210         /* we don't align basic blocks of loops on arm */
4211
4212         if (cfg->verbose_level > 2)
4213                 g_print ("Basic block %d starting at offset 0x%x\n", bb->block_num, bb->native_offset);
4214
4215         cpos = bb->max_offset;
4216
4217         if (cfg->prof_options & MONO_PROFILE_COVERAGE) {
4218                 //MonoCoverageInfo *cov = mono_get_coverage_info (cfg->method);
4219                 //g_assert (!mono_compile_aot);
4220                 //cpos += 6;
4221                 //if (bb->cil_code)
4222                 //      cov->data [bb->dfn].iloffset = bb->cil_code - cfg->cil_code;
4223                 /* this is not thread save, but good enough */
4224                 /* fixme: howto handle overflows? */
4225                 //x86_inc_mem (code, &cov->data [bb->dfn].count); 
4226         }
4227
4228     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) {
4229                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4230                                                          (gpointer)"mono_break");
4231                 code = emit_call_seq (cfg, code);
4232         }
4233
4234         MONO_BB_FOR_EACH_INS (bb, ins) {
4235                 offset = code - cfg->native_code;
4236
4237                 max_len = ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
4238
4239                 if (offset > (cfg->code_size - max_len - 16)) {
4240                         cfg->code_size *= 2;
4241                         cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
4242                         code = cfg->native_code + offset;
4243                 }
4244         //      if (ins->cil_code)
4245         //              g_print ("cil code\n");
4246                 mono_debug_record_line_number (cfg, ins, offset);
4247
4248                 switch (ins->opcode) {
4249                 case OP_MEMORY_BARRIER:
4250                         if (v6_supported) {
4251                                 ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
4252                                 ARM_MCR (code, 15, 0, ARMREG_R0, 7, 10, 5);
4253                         }
4254                         break;
4255                 case OP_TLS_GET:
4256                         code = mono_arm_emit_tls_get (cfg, code, ins->dreg, ins->inst_offset);
4257                         break;
4258                 case OP_TLS_GET_REG:
4259                         code = mono_arm_emit_tls_get_reg (cfg, code, ins->dreg, ins->sreg1);
4260                         break;
4261                 case OP_TLS_SET:
4262                         code = mono_arm_emit_tls_set (cfg, code, ins->sreg1, ins->inst_offset);
4263                         break;
4264                 case OP_TLS_SET_REG:
4265                         code = mono_arm_emit_tls_set_reg (cfg, code, ins->sreg1, ins->sreg2);
4266                         break;
4267                 case OP_ATOMIC_EXCHANGE_I4:
4268                 case OP_ATOMIC_CAS_I4:
4269                 case OP_ATOMIC_ADD_I4: {
4270                         int tmpreg;
4271                         guint8 *buf [16];
4272
4273                         g_assert (v7_supported);
4274
4275                         /* Free up a reg */
4276                         if (ins->sreg1 != ARMREG_IP && ins->sreg2 != ARMREG_IP && ins->sreg3 != ARMREG_IP)
4277                                 tmpreg = ARMREG_IP;
4278                         else if (ins->sreg1 != ARMREG_R0 && ins->sreg2 != ARMREG_R0 && ins->sreg3 != ARMREG_R0)
4279                                 tmpreg = ARMREG_R0;
4280                         else if (ins->sreg1 != ARMREG_R1 && ins->sreg2 != ARMREG_R1 && ins->sreg3 != ARMREG_R1)
4281                                 tmpreg = ARMREG_R1;
4282                         else
4283                                 tmpreg = ARMREG_R2;
4284                         g_assert (cfg->arch.atomic_tmp_offset != -1);
4285                         ARM_STR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4286
4287                         switch (ins->opcode) {
4288                         case OP_ATOMIC_EXCHANGE_I4:
4289                                 buf [0] = code;
4290                                 ARM_DMB (code, ARM_DMB_SY);
4291                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4292                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4293                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4294                                 buf [1] = code;
4295                                 ARM_B_COND (code, ARMCOND_NE, 0);
4296                                 arm_patch (buf [1], buf [0]);
4297                                 break;
4298                         case OP_ATOMIC_CAS_I4:
4299                                 ARM_DMB (code, ARM_DMB_SY);
4300                                 buf [0] = code;
4301                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4302                                 ARM_CMP_REG_REG (code, ARMREG_LR, ins->sreg3);
4303                                 buf [1] = code;
4304                                 ARM_B_COND (code, ARMCOND_NE, 0);
4305                                 ARM_STREX_REG (code, tmpreg, ins->sreg2, ins->sreg1);
4306                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4307                                 buf [2] = code;
4308                                 ARM_B_COND (code, ARMCOND_NE, 0);
4309                                 arm_patch (buf [2], buf [0]);
4310                                 arm_patch (buf [1], code);
4311                                 break;
4312                         case OP_ATOMIC_ADD_I4:
4313                                 buf [0] = code;
4314                                 ARM_DMB (code, ARM_DMB_SY);
4315                                 ARM_LDREX_REG (code, ARMREG_LR, ins->sreg1);
4316                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->sreg2);
4317                                 ARM_STREX_REG (code, tmpreg, ARMREG_LR, ins->sreg1);
4318                                 ARM_CMP_REG_IMM (code, tmpreg, 0, 0);
4319                                 buf [1] = code;
4320                                 ARM_B_COND (code, ARMCOND_NE, 0);
4321                                 arm_patch (buf [1], buf [0]);
4322                                 break;
4323                         default:
4324                                 g_assert_not_reached ();
4325                         }
4326
4327                         ARM_DMB (code, ARM_DMB_SY);
4328                         if (tmpreg != ins->dreg)
4329                                 ARM_LDR_IMM (code, tmpreg, cfg->frame_reg, cfg->arch.atomic_tmp_offset);
4330                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_LR);
4331                         break;
4332                 }
4333                 case OP_ATOMIC_LOAD_I1:
4334                 case OP_ATOMIC_LOAD_U1:
4335                 case OP_ATOMIC_LOAD_I2:
4336                 case OP_ATOMIC_LOAD_U2:
4337                 case OP_ATOMIC_LOAD_I4:
4338                 case OP_ATOMIC_LOAD_U4:
4339                 case OP_ATOMIC_LOAD_R4:
4340                 case OP_ATOMIC_LOAD_R8: {
4341                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4342                                 ARM_DMB (code, ARM_DMB_SY);
4343
4344                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4345
4346                         switch (ins->opcode) {
4347                         case OP_ATOMIC_LOAD_I1:
4348                                 ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4349                                 break;
4350                         case OP_ATOMIC_LOAD_U1:
4351                                 ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4352                                 break;
4353                         case OP_ATOMIC_LOAD_I2:
4354                                 ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4355                                 break;
4356                         case OP_ATOMIC_LOAD_U2:
4357                                 ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4358                                 break;
4359                         case OP_ATOMIC_LOAD_I4:
4360                         case OP_ATOMIC_LOAD_U4:
4361                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4362                                 break;
4363                         case OP_ATOMIC_LOAD_R4:
4364                                 if (cfg->r4fp) {
4365                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4366                                         ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
4367                                 } else {
4368                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4369                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4370                                         ARM_FLDS (code, vfp_scratch1, ARMREG_LR, 0);
4371                                         ARM_CVTS (code, ins->dreg, vfp_scratch1);
4372                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4373                                 }
4374                                 break;
4375                         case OP_ATOMIC_LOAD_R8:
4376                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_basereg, ARMREG_LR);
4377                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
4378                                 break;
4379                         }
4380
4381                         ARM_DMB (code, ARM_DMB_SY);
4382                         break;
4383                 }
4384                 case OP_ATOMIC_STORE_I1:
4385                 case OP_ATOMIC_STORE_U1:
4386                 case OP_ATOMIC_STORE_I2:
4387                 case OP_ATOMIC_STORE_U2:
4388                 case OP_ATOMIC_STORE_I4:
4389                 case OP_ATOMIC_STORE_U4:
4390                 case OP_ATOMIC_STORE_R4:
4391                 case OP_ATOMIC_STORE_R8: {
4392                         ARM_DMB (code, ARM_DMB_SY);
4393
4394                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4395
4396                         switch (ins->opcode) {
4397                         case OP_ATOMIC_STORE_I1:
4398                         case OP_ATOMIC_STORE_U1:
4399                                 ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4400                                 break;
4401                         case OP_ATOMIC_STORE_I2:
4402                         case OP_ATOMIC_STORE_U2:
4403                                 ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4404                                 break;
4405                         case OP_ATOMIC_STORE_I4:
4406                         case OP_ATOMIC_STORE_U4:
4407                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4408                                 break;
4409                         case OP_ATOMIC_STORE_R4:
4410                                 if (cfg->r4fp) {
4411                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4412                                         ARM_FSTS (code, ins->sreg1, ARMREG_LR, 0);
4413                                 } else {
4414                                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4415                                         ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4416                                         ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4417                                         ARM_FSTS (code, vfp_scratch1, ARMREG_LR, 0);
4418                                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4419                                 }
4420                                 break;
4421                         case OP_ATOMIC_STORE_R8:
4422                                 ARM_ADD_REG_REG (code, ARMREG_LR, ins->inst_destbasereg, ARMREG_LR);
4423                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
4424                                 break;
4425                         }
4426
4427                         if (ins->backend.memory_barrier_kind == MONO_MEMORY_BARRIER_SEQ)
4428                                 ARM_DMB (code, ARM_DMB_SY);
4429                         break;
4430                 }
4431                 /*case OP_BIGMUL:
4432                         ppc_mullw (code, ppc_r4, ins->sreg1, ins->sreg2);
4433                         ppc_mulhw (code, ppc_r3, ins->sreg1, ins->sreg2);
4434                         break;
4435                 case OP_BIGMUL_UN:
4436                         ppc_mullw (code, ppc_r4, ins->sreg1, ins->sreg2);
4437                         ppc_mulhwu (code, ppc_r3, ins->sreg1, ins->sreg2);
4438                         break;*/
4439                 case OP_STOREI1_MEMBASE_IMM:
4440                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFF);
4441                         g_assert (arm_is_imm12 (ins->inst_offset));
4442                         ARM_STRB_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4443                         break;
4444                 case OP_STOREI2_MEMBASE_IMM:
4445                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm & 0xFFFF);
4446                         g_assert (arm_is_imm8 (ins->inst_offset));
4447                         ARM_STRH_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4448                         break;
4449                 case OP_STORE_MEMBASE_IMM:
4450                 case OP_STOREI4_MEMBASE_IMM:
4451                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_imm);
4452                         g_assert (arm_is_imm12 (ins->inst_offset));
4453                         ARM_STR_IMM (code, ARMREG_LR, ins->inst_destbasereg, ins->inst_offset);
4454                         break;
4455                 case OP_STOREI1_MEMBASE_REG:
4456                         g_assert (arm_is_imm12 (ins->inst_offset));
4457                         ARM_STRB_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4458                         break;
4459                 case OP_STOREI2_MEMBASE_REG:
4460                         g_assert (arm_is_imm8 (ins->inst_offset));
4461                         ARM_STRH_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4462                         break;
4463                 case OP_STORE_MEMBASE_REG:
4464                 case OP_STOREI4_MEMBASE_REG:
4465                         /* this case is special, since it happens for spill code after lowering has been called */
4466                         if (arm_is_imm12 (ins->inst_offset)) {
4467                                 ARM_STR_IMM (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
4468                         } else {
4469                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4470                                 ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ARMREG_LR);
4471                         }
4472                         break;
4473                 case OP_STOREI1_MEMINDEX:
4474                         ARM_STRB_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4475                         break;
4476                 case OP_STOREI2_MEMINDEX:
4477                         ARM_STRH_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4478                         break;
4479                 case OP_STORE_MEMINDEX:
4480                 case OP_STOREI4_MEMINDEX:
4481                         ARM_STR_REG_REG (code, ins->sreg1, ins->inst_destbasereg, ins->sreg2);
4482                         break;
4483                 case OP_LOADU4_MEM:
4484                         g_assert_not_reached ();
4485                         break;
4486                 case OP_LOAD_MEMINDEX:
4487                 case OP_LOADI4_MEMINDEX:
4488                 case OP_LOADU4_MEMINDEX:
4489                         ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4490                         break;
4491                 case OP_LOADI1_MEMINDEX:
4492                         ARM_LDRSB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4493                         break;
4494                 case OP_LOADU1_MEMINDEX:
4495                         ARM_LDRB_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4496                         break;
4497                 case OP_LOADI2_MEMINDEX:
4498                         ARM_LDRSH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4499                         break;
4500                 case OP_LOADU2_MEMINDEX:
4501                         ARM_LDRH_REG_REG (code, ins->dreg, ins->inst_basereg, ins->sreg2);
4502                         break;
4503                 case OP_LOAD_MEMBASE:
4504                 case OP_LOADI4_MEMBASE:
4505                 case OP_LOADU4_MEMBASE:
4506                         /* this case is special, since it happens for spill code after lowering has been called */
4507                         if (arm_is_imm12 (ins->inst_offset)) {
4508                                 ARM_LDR_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4509                         } else {
4510                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
4511                                 ARM_LDR_REG_REG (code, ins->dreg, ins->inst_basereg, ARMREG_LR);
4512                         }
4513                         break;
4514                 case OP_LOADI1_MEMBASE:
4515                         g_assert (arm_is_imm8 (ins->inst_offset));
4516                         ARM_LDRSB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4517                         break;
4518                 case OP_LOADU1_MEMBASE:
4519                         g_assert (arm_is_imm12 (ins->inst_offset));
4520                         ARM_LDRB_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4521                         break;
4522                 case OP_LOADU2_MEMBASE:
4523                         g_assert (arm_is_imm8 (ins->inst_offset));
4524                         ARM_LDRH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4525                         break;
4526                 case OP_LOADI2_MEMBASE:
4527                         g_assert (arm_is_imm8 (ins->inst_offset));
4528                         ARM_LDRSH_IMM (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
4529                         break;
4530                 case OP_ICONV_TO_I1:
4531                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 24);
4532                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 24);
4533                         break;
4534                 case OP_ICONV_TO_I2:
4535                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4536                         ARM_SAR_IMM (code, ins->dreg, ins->dreg, 16);
4537                         break;
4538                 case OP_ICONV_TO_U1:
4539                         ARM_AND_REG_IMM8 (code, ins->dreg, ins->sreg1, 0xff);
4540                         break;
4541                 case OP_ICONV_TO_U2:
4542                         ARM_SHL_IMM (code, ins->dreg, ins->sreg1, 16);
4543                         ARM_SHR_IMM (code, ins->dreg, ins->dreg, 16);
4544                         break;
4545                 case OP_COMPARE:
4546                 case OP_ICOMPARE:
4547                         ARM_CMP_REG_REG (code, ins->sreg1, ins->sreg2);
4548                         break;
4549                 case OP_COMPARE_IMM:
4550                 case OP_ICOMPARE_IMM:
4551                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4552                         g_assert (imm8 >= 0);
4553                         ARM_CMP_REG_IMM (code, ins->sreg1, imm8, rot_amount);
4554                         break;
4555                 case OP_BREAK:
4556                         /*
4557                          * gdb does not like encountering the hw breakpoint ins in the debugged code. 
4558                          * So instead of emitting a trap, we emit a call a C function and place a 
4559                          * breakpoint there.
4560                          */
4561                         //*(int*)code = 0xef9f0001;
4562                         //code += 4;
4563                         //ARM_DBRK (code);
4564                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
4565                                                                  (gpointer)"mono_break");
4566                         code = emit_call_seq (cfg, code);
4567                         break;
4568                 case OP_RELAXED_NOP:
4569                         ARM_NOP (code);
4570                         break;
4571                 case OP_NOP:
4572                 case OP_DUMMY_USE:
4573                 case OP_DUMMY_STORE:
4574                 case OP_DUMMY_ICONST:
4575                 case OP_DUMMY_R8CONST:
4576                 case OP_NOT_REACHED:
4577                 case OP_NOT_NULL:
4578                         break;
4579                 case OP_IL_SEQ_POINT:
4580                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4581                         break;
4582                 case OP_SEQ_POINT: {
4583                         int i;
4584                         MonoInst *info_var = cfg->arch.seq_point_info_var;
4585                         MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
4586                         MonoInst *ss_method_var = cfg->arch.seq_point_ss_method_var;
4587                         MonoInst *bp_method_var = cfg->arch.seq_point_bp_method_var;
4588                         MonoInst *var;
4589                         int dreg = ARMREG_LR;
4590
4591                         if (cfg->soft_breakpoints) {
4592                                 g_assert (!cfg->compile_aot);
4593                         }
4594
4595                         /*
4596                          * For AOT, we use one got slot per method, which will point to a
4597                          * SeqPointInfo structure, containing all the information required
4598                          * by the code below.
4599                          */
4600                         if (cfg->compile_aot) {
4601                                 g_assert (info_var);
4602                                 g_assert (info_var->opcode == OP_REGOFFSET);
4603                                 g_assert (arm_is_imm12 (info_var->inst_offset));
4604                         }
4605
4606                         if (!cfg->soft_breakpoints && !cfg->compile_aot) {
4607                                 /*
4608                                  * Read from the single stepping trigger page. This will cause a
4609                                  * SIGSEGV when single stepping is enabled.
4610                                  * We do this _before_ the breakpoint, so single stepping after
4611                                  * a breakpoint is hit will step to the next IL offset.
4612                                  */
4613                                 g_assert (((guint64)(gsize)ss_trigger_page >> 32) == 0);
4614                         }
4615
4616                         if (ins->flags & MONO_INST_SINGLE_STEP_LOC) {
4617                                 if (cfg->soft_breakpoints) {
4618                                         /* Load the address of the sequence point method variable. */
4619                                         var = ss_method_var;
4620                                         g_assert (var);
4621                                         g_assert (var->opcode == OP_REGOFFSET);
4622                                         g_assert (arm_is_imm12 (var->inst_offset));
4623                                         ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4624
4625                                         /* Read the value and check whether it is non-zero. */
4626                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4627                                         ARM_CMP_REG_IMM (code, dreg, 0, 0);
4628                                         /* Call it conditionally. */
4629                                         ARM_BLX_REG_COND (code, ARMCOND_NE, dreg);
4630                                 } else {
4631                                         if (cfg->compile_aot) {
4632                                                 /* Load the trigger page addr from the variable initialized in the prolog */
4633                                                 var = ss_trigger_page_var;
4634                                                 g_assert (var);
4635                                                 g_assert (var->opcode == OP_REGOFFSET);
4636                                                 g_assert (arm_is_imm12 (var->inst_offset));
4637                                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4638                                         } else {
4639 #ifdef USE_JUMP_TABLES
4640                                                 gpointer *jte = mono_jumptable_add_entry ();
4641                                                 code = mono_arm_load_jumptable_entry (code, jte, dreg);
4642                                                 jte [0] = ss_trigger_page;
4643 #else
4644                                                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
4645                                                 ARM_B (code, 0);
4646                                                 *(int*)code = (int)ss_trigger_page;
4647                                                 code += 4;
4648 #endif
4649                                         }
4650                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4651                                 }
4652                         }
4653
4654                         mono_add_seq_point (cfg, bb, ins, code - cfg->native_code);
4655
4656                         if (cfg->soft_breakpoints) {
4657                                 /* Load the address of the breakpoint method into ip. */
4658                                 var = bp_method_var;
4659                                 g_assert (var);
4660                                 g_assert (var->opcode == OP_REGOFFSET);
4661                                 g_assert (arm_is_imm12 (var->inst_offset));
4662                                 ARM_LDR_IMM (code, dreg, var->inst_basereg, var->inst_offset);
4663
4664                                 /*
4665                                  * A placeholder for a possible breakpoint inserted by
4666                                  * mono_arch_set_breakpoint ().
4667                                  */
4668                                 ARM_NOP (code);
4669                         } else if (cfg->compile_aot) {
4670                                 guint32 offset = code - cfg->native_code;
4671                                 guint32 val;
4672
4673                                 ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
4674                                 /* Add the offset */
4675                                 val = ((offset / 4) * sizeof (guint8*)) + MONO_STRUCT_OFFSET (SeqPointInfo, bp_addrs);
4676                                 /* Load the info->bp_addrs [offset], which is either 0 or the address of a trigger page */
4677                                 if (arm_is_imm12 ((int)val)) {
4678                                         ARM_LDR_IMM (code, dreg, dreg, val);
4679                                 } else {
4680                                         ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF), 0);
4681                                         if (val & 0xFF00)
4682                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF00) >> 8, 24);
4683                                         if (val & 0xFF0000)
4684                                                 ARM_ADD_REG_IMM (code, dreg, dreg, (val & 0xFF0000) >> 16, 16);
4685                                         g_assert (!(val & 0xFF000000));
4686
4687                                         ARM_LDR_IMM (code, dreg, dreg, 0);
4688                                 }
4689                                 /* What is faster, a branch or a load ? */
4690                                 ARM_CMP_REG_IMM (code, dreg, 0, 0);
4691                                 /* The breakpoint instruction */
4692                                 ARM_LDR_IMM_COND (code, dreg, dreg, 0, ARMCOND_NE);
4693                         } else {
4694                                 /* 
4695                                  * A placeholder for a possible breakpoint inserted by
4696                                  * mono_arch_set_breakpoint ().
4697                                  */
4698                                 for (i = 0; i < 4; ++i)
4699                                         ARM_NOP (code);
4700                         }
4701
4702                         /*
4703                          * Add an additional nop so skipping the bp doesn't cause the ip to point
4704                          * to another IL offset.
4705                          */
4706
4707                         ARM_NOP (code);
4708                         break;
4709                 }
4710                 case OP_ADDCC:
4711                 case OP_IADDCC:
4712                         ARM_ADDS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4713                         break;
4714                 case OP_IADD:
4715                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4716                         break;
4717                 case OP_ADC:
4718                 case OP_IADC:
4719                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4720                         break;
4721                 case OP_ADDCC_IMM:
4722                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4723                         g_assert (imm8 >= 0);
4724                         ARM_ADDS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4725                         break;
4726                 case OP_ADD_IMM:
4727                 case OP_IADD_IMM:
4728                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4729                         g_assert (imm8 >= 0);
4730                         ARM_ADD_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4731                         break;
4732                 case OP_ADC_IMM:
4733                 case OP_IADC_IMM:
4734                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4735                         g_assert (imm8 >= 0);
4736                         ARM_ADCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4737                         break;
4738                 case OP_IADD_OVF:
4739                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4740                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4741                         break;
4742                 case OP_IADD_OVF_UN:
4743                         ARM_ADD_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4744                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4745                         break;
4746                 case OP_ISUB_OVF:
4747                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4748                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4749                         break;
4750                 case OP_ISUB_OVF_UN:
4751                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4752                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4753                         break;
4754                 case OP_ADD_OVF_CARRY:
4755                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4756                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4757                         break;
4758                 case OP_ADD_OVF_UN_CARRY:
4759                         ARM_ADCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4760                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4761                         break;
4762                 case OP_SUB_OVF_CARRY:
4763                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4764                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_FALSE, PPC_BR_EQ, "OverflowException");
4765                         break;
4766                 case OP_SUB_OVF_UN_CARRY:
4767                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4768                         //EMIT_COND_SYSTEM_EXCEPTION_FLAGS (PPC_BR_TRUE, PPC_BR_EQ, "OverflowException");
4769                         break;
4770                 case OP_SUBCC:
4771                 case OP_ISUBCC:
4772                         ARM_SUBS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4773                         break;
4774                 case OP_SUBCC_IMM:
4775                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4776                         g_assert (imm8 >= 0);
4777                         ARM_SUBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4778                         break;
4779                 case OP_ISUB:
4780                         ARM_SUB_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4781                         break;
4782                 case OP_SBB:
4783                 case OP_ISBB:
4784                         ARM_SBCS_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4785                         break;
4786                 case OP_SUB_IMM:
4787                 case OP_ISUB_IMM:
4788                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4789                         g_assert (imm8 >= 0);
4790                         ARM_SUB_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4791                         break;
4792                 case OP_SBB_IMM:
4793                 case OP_ISBB_IMM:
4794                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4795                         g_assert (imm8 >= 0);
4796                         ARM_SBCS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4797                         break;
4798                 case OP_ARM_RSBS_IMM:
4799                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4800                         g_assert (imm8 >= 0);
4801                         ARM_RSBS_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4802                         break;
4803                 case OP_ARM_RSC_IMM:
4804                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4805                         g_assert (imm8 >= 0);
4806                         ARM_RSC_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4807                         break;
4808                 case OP_IAND:
4809                         ARM_AND_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4810                         break;
4811                 case OP_AND_IMM:
4812                 case OP_IAND_IMM:
4813                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4814                         g_assert (imm8 >= 0);
4815                         ARM_AND_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4816                         break;
4817                 case OP_IDIV:
4818                         g_assert (v7s_supported || v7k_supported);
4819                         ARM_SDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4820                         break;
4821                 case OP_IDIV_UN:
4822                         g_assert (v7s_supported || v7k_supported);
4823                         ARM_UDIV (code, ins->dreg, ins->sreg1, ins->sreg2);
4824                         break;
4825                 case OP_IREM:
4826                         g_assert (v7s_supported || v7k_supported);
4827                         ARM_SDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4828                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4829                         break;
4830                 case OP_IREM_UN:
4831                         g_assert (v7s_supported || v7k_supported);
4832                         ARM_UDIV (code, ARMREG_LR, ins->sreg1, ins->sreg2);
4833                         ARM_MLS (code, ins->dreg, ARMREG_LR, ins->sreg2, ins->sreg1);
4834                         break;
4835                 case OP_DIV_IMM:
4836                 case OP_REM_IMM:
4837                         g_assert_not_reached ();
4838                 case OP_IOR:
4839                         ARM_ORR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4840                         break;
4841                 case OP_OR_IMM:
4842                 case OP_IOR_IMM:
4843                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4844                         g_assert (imm8 >= 0);
4845                         ARM_ORR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4846                         break;
4847                 case OP_IXOR:
4848                         ARM_EOR_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4849                         break;
4850                 case OP_XOR_IMM:
4851                 case OP_IXOR_IMM:
4852                         imm8 = mono_arm_is_rotated_imm8 (ins->inst_imm, &rot_amount);
4853                         g_assert (imm8 >= 0);
4854                         ARM_EOR_REG_IMM (code, ins->dreg, ins->sreg1, imm8, rot_amount);
4855                         break;
4856                 case OP_ISHL:
4857                         ARM_SHL_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4858                         break;
4859                 case OP_SHL_IMM:
4860                 case OP_ISHL_IMM:
4861                         if (ins->inst_imm)
4862                                 ARM_SHL_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4863                         else if (ins->dreg != ins->sreg1)
4864                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4865                         break;
4866                 case OP_ISHR:
4867                         ARM_SAR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4868                         break;
4869                 case OP_SHR_IMM:
4870                 case OP_ISHR_IMM:
4871                         if (ins->inst_imm)
4872                                 ARM_SAR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4873                         else if (ins->dreg != ins->sreg1)
4874                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4875                         break;
4876                 case OP_SHR_UN_IMM:
4877                 case OP_ISHR_UN_IMM:
4878                         if (ins->inst_imm)
4879                                 ARM_SHR_IMM (code, ins->dreg, ins->sreg1, (ins->inst_imm & 0x1f));
4880                         else if (ins->dreg != ins->sreg1)
4881                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4882                         break;
4883                 case OP_ISHR_UN:
4884                         ARM_SHR_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4885                         break;
4886                 case OP_INOT:
4887                         ARM_MVN_REG_REG (code, ins->dreg, ins->sreg1);
4888                         break;
4889                 case OP_INEG:
4890                         ARM_RSB_REG_IMM8 (code, ins->dreg, ins->sreg1, 0);
4891                         break;
4892                 case OP_IMUL:
4893                         if (ins->dreg == ins->sreg2)
4894                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4895                         else
4896                                 ARM_MUL_REG_REG (code, ins->dreg, ins->sreg2, ins->sreg1);
4897                         break;
4898                 case OP_MUL_IMM:
4899                         g_assert_not_reached ();
4900                         break;
4901                 case OP_IMUL_OVF:
4902                         /* FIXME: handle ovf/ sreg2 != dreg */
4903                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4904                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4905                         break;
4906                 case OP_IMUL_OVF_UN:
4907                         /* FIXME: handle ovf/ sreg2 != dreg */
4908                         ARM_MUL_REG_REG (code, ins->dreg, ins->sreg1, ins->sreg2);
4909                         /* FIXME: MUL doesn't set the C/O flags on ARM */
4910                         break;
4911                 case OP_ICONST:
4912                         code = mono_arm_emit_load_imm (code, ins->dreg, ins->inst_c0);
4913                         break;
4914                 case OP_AOTCONST:
4915                         /* Load the GOT offset */
4916                         mono_add_patch_info (cfg, offset, (MonoJumpInfoType)ins->inst_i1, ins->inst_p0);
4917                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4918                         ARM_B (code, 0);
4919                         *(gpointer*)code = NULL;
4920                         code += 4;
4921                         /* Load the value from the GOT */
4922                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4923                         break;
4924                 case OP_OBJC_GET_SELECTOR:
4925                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_OBJC_SELECTOR_REF, ins->inst_p0);
4926                         ARM_LDR_IMM (code, ins->dreg, ARMREG_PC, 0);
4927                         ARM_B (code, 0);
4928                         *(gpointer*)code = NULL;
4929                         code += 4;
4930                         ARM_LDR_REG_REG (code, ins->dreg, ARMREG_PC, ins->dreg);
4931                         break;
4932                 case OP_ICONV_TO_I4:
4933                 case OP_ICONV_TO_U4:
4934                 case OP_MOVE:
4935                         if (ins->dreg != ins->sreg1)
4936                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
4937                         break;
4938                 case OP_SETLRET: {
4939                         int saved = ins->sreg2;
4940                         if (ins->sreg2 == ARM_LSW_REG) {
4941                                 ARM_MOV_REG_REG (code, ARMREG_LR, ins->sreg2);
4942                                 saved = ARMREG_LR;
4943                         }
4944                         if (ins->sreg1 != ARM_LSW_REG)
4945                                 ARM_MOV_REG_REG (code, ARM_LSW_REG, ins->sreg1);
4946                         if (saved != ARM_MSW_REG)
4947                                 ARM_MOV_REG_REG (code, ARM_MSW_REG, saved);
4948                         break;
4949                 }
4950                 case OP_FMOVE:
4951                         if (IS_VFP && ins->dreg != ins->sreg1)
4952                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
4953                         break;
4954                 case OP_RMOVE:
4955                         if (IS_VFP && ins->dreg != ins->sreg1)
4956                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
4957                         break;
4958                 case OP_MOVE_F_TO_I4:
4959                         if (cfg->r4fp) {
4960                                 ARM_FMRS (code, ins->dreg, ins->sreg1);
4961                         } else {
4962                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
4963                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
4964                                 ARM_FMRS (code, ins->dreg, vfp_scratch1);
4965                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
4966                         }
4967                         break;
4968                 case OP_MOVE_I4_TO_F:
4969                         if (cfg->r4fp) {
4970                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4971                         } else {
4972                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
4973                                 ARM_CVTS (code, ins->dreg, ins->dreg);
4974                         }
4975                         break;
4976                 case OP_FCONV_TO_R4:
4977                         if (IS_VFP) {
4978                                 if (cfg->r4fp) {
4979                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4980                                 } else {
4981                                         ARM_CVTD (code, ins->dreg, ins->sreg1);
4982                                         ARM_CVTS (code, ins->dreg, ins->dreg);
4983                                 }
4984                         }
4985                         break;
4986                 case OP_TAILCALL: {
4987                         MonoCallInst *call = (MonoCallInst*)ins;
4988
4989                         /*
4990                          * The stack looks like the following:
4991                          * <caller argument area>
4992                          * <saved regs etc>
4993                          * <rest of frame>
4994                          * <callee argument area>
4995                          * Need to copy the arguments from the callee argument area to
4996                          * the caller argument area, and pop the frame.
4997                          */
4998                         if (call->stack_usage) {
4999                                 int i, prev_sp_offset = 0;
5000
5001                                 /* Compute size of saved registers restored below */
5002                                 if (iphone_abi)
5003                                         prev_sp_offset = 2 * 4;
5004                                 else
5005                                         prev_sp_offset = 1 * 4;
5006                                 for (i = 0; i < 16; ++i) {
5007                                         if (cfg->used_int_regs & (1 << i))
5008                                                 prev_sp_offset += 4;
5009                                 }
5010
5011                                 code = emit_big_add (code, ARMREG_IP, cfg->frame_reg, cfg->stack_usage + prev_sp_offset);
5012
5013                                 /* Copy arguments on the stack to our argument area */
5014                                 for (i = 0; i < call->stack_usage; i += sizeof (mgreg_t)) {
5015                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, i);
5016                                         ARM_STR_IMM (code, ARMREG_LR, ARMREG_IP, i);
5017                                 }
5018                         }
5019
5020                         /*
5021                          * Keep in sync with mono_arch_emit_epilog
5022                          */
5023                         g_assert (!cfg->method->save_lmf);
5024
5025                         code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage);
5026                         if (iphone_abi) {
5027                                 if (cfg->used_int_regs)
5028                                         ARM_POP (code, cfg->used_int_regs);
5029                                 ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
5030                         } else {
5031                                 ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_LR));
5032                         }
5033
5034                         mono_add_patch_info (cfg, (guint8*) code - cfg->native_code, MONO_PATCH_INFO_METHOD_JUMP, call->method);
5035                         if (cfg->compile_aot) {
5036                                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
5037                                 ARM_B (code, 0);
5038                                 *(gpointer*)code = NULL;
5039                                 code += 4;
5040                                 ARM_LDR_REG_REG (code, ARMREG_PC, ARMREG_PC, ARMREG_IP);
5041                         } else {
5042                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
5043                                 cfg->thunk_area += THUNK_SIZE;
5044                         }
5045                         break;
5046                 }
5047                 case OP_CHECK_THIS:
5048                         /* ensure ins->sreg1 is not NULL */
5049                         ARM_LDRB_IMM (code, ARMREG_LR, ins->sreg1, 0);
5050                         break;
5051                 case OP_ARGLIST: {
5052                         g_assert (cfg->sig_cookie < 128);
5053                         ARM_LDR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
5054                         ARM_STR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5055                         break;
5056                 }
5057                 case OP_FCALL:
5058                 case OP_RCALL:
5059                 case OP_LCALL:
5060                 case OP_VCALL:
5061                 case OP_VCALL2:
5062                 case OP_VOIDCALL:
5063                 case OP_CALL:
5064                         call = (MonoCallInst*)ins;
5065
5066                         if (IS_HARD_FLOAT)
5067                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5068
5069                         if (ins->flags & MONO_INST_HAS_METHOD)
5070                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_METHOD, call->method);
5071                         else
5072                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_ABS, call->fptr);
5073                         code = emit_call_seq (cfg, code);
5074                         ins->flags |= MONO_INST_GC_CALLSITE;
5075                         ins->backend.pc_offset = code - cfg->native_code;
5076                         code = emit_move_return_value (cfg, ins, code);
5077                         break;
5078                 case OP_FCALL_REG:
5079                 case OP_RCALL_REG:
5080                 case OP_LCALL_REG:
5081                 case OP_VCALL_REG:
5082                 case OP_VCALL2_REG:
5083                 case OP_VOIDCALL_REG:
5084                 case OP_CALL_REG:
5085                         if (IS_HARD_FLOAT)
5086                                 code = emit_float_args (cfg, (MonoCallInst *)ins, code, &max_len, &offset);
5087
5088                         code = emit_call_reg (code, ins->sreg1);
5089                         ins->flags |= MONO_INST_GC_CALLSITE;
5090                         ins->backend.pc_offset = code - cfg->native_code;
5091                         code = emit_move_return_value (cfg, ins, code);
5092                         break;
5093                 case OP_FCALL_MEMBASE:
5094                 case OP_RCALL_MEMBASE:
5095                 case OP_LCALL_MEMBASE:
5096                 case OP_VCALL_MEMBASE:
5097                 case OP_VCALL2_MEMBASE:
5098                 case OP_VOIDCALL_MEMBASE:
5099                 case OP_CALL_MEMBASE: {
5100                         g_assert (ins->sreg1 != ARMREG_LR);
5101                         call = (MonoCallInst*)ins;
5102
5103                         if (IS_HARD_FLOAT)
5104                                 code = emit_float_args (cfg, call, code, &max_len, &offset);
5105                         if (!arm_is_imm12 (ins->inst_offset))
5106                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, ins->inst_offset);
5107                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5108                         if (!arm_is_imm12 (ins->inst_offset))
5109                                 ARM_LDR_REG_REG (code, ARMREG_PC, ins->sreg1, ARMREG_IP);
5110                         else
5111                                 ARM_LDR_IMM (code, ARMREG_PC, ins->sreg1, ins->inst_offset);
5112                         ins->flags |= MONO_INST_GC_CALLSITE;
5113                         ins->backend.pc_offset = code - cfg->native_code;
5114                         code = emit_move_return_value (cfg, ins, code);
5115                         break;
5116                 }
5117                 case OP_GENERIC_CLASS_INIT: {
5118                         static int byte_offset = -1;
5119                         static guint8 bitmask;
5120                         guint32 imm8;
5121                         guint8 *jump;
5122
5123                         if (byte_offset < 0)
5124                                 mono_marshal_find_bitfield_offset (MonoVTable, initialized, &byte_offset, &bitmask);
5125
5126                         g_assert (arm_is_imm8 (byte_offset));
5127                         ARM_LDRSB_IMM (code, ARMREG_IP, ins->sreg1, byte_offset);
5128                         imm8 = mono_arm_is_rotated_imm8 (bitmask, &rot_amount);
5129                         g_assert (imm8 >= 0);
5130                         ARM_AND_REG_IMM (code, ARMREG_IP, ARMREG_IP, imm8, rot_amount);
5131                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5132                         jump = code;
5133                         ARM_B_COND (code, ARMCOND_NE, 0);
5134
5135                         /* Uninitialized case */
5136                         g_assert (ins->sreg1 == ARMREG_R0);
5137
5138                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD,
5139                                                                  (gpointer)"mono_generic_class_init");
5140                         code = emit_call_seq (cfg, code);
5141
5142                         /* Initialized case */
5143                         arm_patch (jump, code);
5144                         break;
5145                 }
5146                 case OP_LOCALLOC: {
5147                         /* round the size to 8 bytes */
5148                         ARM_ADD_REG_IMM8 (code, ins->dreg, ins->sreg1, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5149                         ARM_BIC_REG_IMM8 (code, ins->dreg, ins->dreg, (MONO_ARCH_FRAME_ALIGNMENT - 1));
5150                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ins->dreg);
5151                         /* memzero the area: dreg holds the size, sp is the pointer */
5152                         if (ins->flags & MONO_INST_INIT) {
5153                                 guint8 *start_loop, *branch_to_cond;
5154                                 ARM_MOV_REG_IMM8 (code, ARMREG_LR, 0);
5155                                 branch_to_cond = code;
5156                                 ARM_B (code, 0);
5157                                 start_loop = code;
5158                                 ARM_STR_REG_REG (code, ARMREG_LR, ARMREG_SP, ins->dreg);
5159                                 arm_patch (branch_to_cond, code);
5160                                 /* decrement by 4 and set flags */
5161                                 ARM_SUBS_REG_IMM8 (code, ins->dreg, ins->dreg, sizeof (mgreg_t));
5162                                 ARM_B_COND (code, ARMCOND_GE, 0);
5163                                 arm_patch (code - 4, start_loop);
5164                         }
5165                         ARM_MOV_REG_REG (code, ins->dreg, ARMREG_SP);
5166                         if (cfg->param_area)
5167                                 code = emit_sub_imm (code, ARMREG_SP, ARMREG_SP, ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT));
5168                         break;
5169                 }
5170                 case OP_DYN_CALL: {
5171                         int i;
5172                         MonoInst *var = cfg->dyn_call_var;
5173
5174                         g_assert (var->opcode == OP_REGOFFSET);
5175                         g_assert (arm_is_imm12 (var->inst_offset));
5176
5177                         /* lr = args buffer filled by mono_arch_get_dyn_call_args () */
5178                         ARM_MOV_REG_REG( code, ARMREG_LR, ins->sreg1);
5179                         /* ip = ftn */
5180                         ARM_MOV_REG_REG( code, ARMREG_IP, ins->sreg2);
5181
5182                         /* Save args buffer */
5183                         ARM_STR_IMM (code, ARMREG_LR, var->inst_basereg, var->inst_offset);
5184
5185                         /* Set stack slots using R0 as scratch reg */
5186                         /* MONO_ARCH_DYN_CALL_PARAM_AREA gives the size of stack space available */
5187                         for (i = 0; i < DYN_CALL_STACK_ARGS; ++i) {
5188                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, (PARAM_REGS + i) * sizeof (mgreg_t));
5189                                 ARM_STR_IMM (code, ARMREG_R0, ARMREG_SP, i * sizeof (mgreg_t));
5190                         }
5191
5192                         /* Set argument registers */
5193                         for (i = 0; i < PARAM_REGS; ++i)
5194                                 ARM_LDR_IMM (code, i, ARMREG_LR, i * sizeof (mgreg_t));
5195
5196                         /* Make the call */
5197                         ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
5198                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5199
5200                         /* Save result */
5201                         ARM_LDR_IMM (code, ARMREG_IP, var->inst_basereg, var->inst_offset);
5202                         ARM_STR_IMM (code, ARMREG_R0, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res)); 
5203                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_IP, MONO_STRUCT_OFFSET (DynCallArgs, res2)); 
5204                         break;
5205                 }
5206                 case OP_THROW: {
5207                         if (ins->sreg1 != ARMREG_R0)
5208                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5209                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5210                                              (gpointer)"mono_arch_throw_exception");
5211                         code = emit_call_seq (cfg, code);
5212                         break;
5213                 }
5214                 case OP_RETHROW: {
5215                         if (ins->sreg1 != ARMREG_R0)
5216                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5217                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, 
5218                                              (gpointer)"mono_arch_rethrow_exception");
5219                         code = emit_call_seq (cfg, code);
5220                         break;
5221                 }
5222                 case OP_START_HANDLER: {
5223                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5224                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5225                         int i, rot_amount;
5226
5227                         /* Reserve a param area, see filter-stack.exe */
5228                         if (param_area) {
5229                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5230                                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5231                                 } else {
5232                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5233                                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5234                                 }
5235                         }
5236
5237                         if (arm_is_imm12 (spvar->inst_offset)) {
5238                                 ARM_STR_IMM (code, ARMREG_LR, spvar->inst_basereg, spvar->inst_offset);
5239                         } else {
5240                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5241                                 ARM_STR_REG_REG (code, ARMREG_LR, spvar->inst_basereg, ARMREG_IP);
5242                         }
5243                         break;
5244                 }
5245                 case OP_ENDFILTER: {
5246                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5247                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5248                         int i, rot_amount;
5249
5250                         /* Free the param area */
5251                         if (param_area) {
5252                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5253                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5254                                 } else {
5255                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5256                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5257                                 }
5258                         }
5259
5260                         if (ins->sreg1 != ARMREG_R0)
5261                                 ARM_MOV_REG_REG (code, ARMREG_R0, ins->sreg1);
5262                         if (arm_is_imm12 (spvar->inst_offset)) {
5263                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5264                         } else {
5265                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5266                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5267                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5268                         }
5269                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5270                         break;
5271                 }
5272                 case OP_ENDFINALLY: {
5273                         MonoInst *spvar = mono_find_spvar_for_region (cfg, bb->region);
5274                         int param_area = ALIGN_TO (cfg->param_area, MONO_ARCH_FRAME_ALIGNMENT);
5275                         int i, rot_amount;
5276
5277                         /* Free the param area */
5278                         if (param_area) {
5279                                 if ((i = mono_arm_is_rotated_imm8 (param_area, &rot_amount)) >= 0) {
5280                                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
5281                                 } else {
5282                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, param_area);
5283                                         ARM_ADD_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
5284                                 }
5285                         }
5286
5287                         if (arm_is_imm12 (spvar->inst_offset)) {
5288                                 ARM_LDR_IMM (code, ARMREG_IP, spvar->inst_basereg, spvar->inst_offset);
5289                         } else {
5290                                 g_assert (ARMREG_IP != spvar->inst_basereg);
5291                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, spvar->inst_offset);
5292                                 ARM_LDR_REG_REG (code, ARMREG_IP, spvar->inst_basereg, ARMREG_IP);
5293                         }
5294                         ARM_MOV_REG_REG (code, ARMREG_PC, ARMREG_IP);
5295                         break;
5296                 }
5297                 case OP_CALL_HANDLER: 
5298                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5299                         code = mono_arm_patchable_bl (code, ARMCOND_AL);
5300                         cfg->thunk_area += THUNK_SIZE;
5301                         mono_cfg_add_try_hole (cfg, ins->inst_eh_block, code, bb);
5302                         break;
5303                 case OP_GET_EX_OBJ:
5304                         if (ins->dreg != ARMREG_R0)
5305                                 ARM_MOV_REG_REG (code, ins->dreg, ARMREG_R0);
5306                         break;
5307
5308                 case OP_LABEL:
5309                         ins->inst_c0 = code - cfg->native_code;
5310                         break;
5311                 case OP_BR:
5312                         /*if (ins->inst_target_bb->native_offset) {
5313                                 ARM_B (code, 0);
5314                                 //x86_jump_code (code, cfg->native_code + ins->inst_target_bb->native_offset); 
5315                         } else*/ {
5316                                 mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_BB, ins->inst_target_bb);
5317                                 code = mono_arm_patchable_b (code, ARMCOND_AL);
5318                         } 
5319                         break;
5320                 case OP_BR_REG:
5321                         ARM_MOV_REG_REG (code, ARMREG_PC, ins->sreg1);
5322                         break;
5323                 case OP_SWITCH:
5324                         /* 
5325                          * In the normal case we have:
5326                          *      ldr pc, [pc, ins->sreg1 << 2]
5327                          *      nop
5328                          * If aot, we have:
5329                          *      ldr lr, [pc, ins->sreg1 << 2]
5330                          *      add pc, pc, lr
5331                          * After follows the data.
5332                          * FIXME: add aot support.
5333                          */
5334                         mono_add_patch_info (cfg, offset, MONO_PATCH_INFO_SWITCH, ins->inst_p0);
5335 #ifdef USE_JUMP_TABLES
5336                         {
5337                                 gpointer *jte = mono_jumptable_add_entries (GPOINTER_TO_INT (ins->klass));
5338                                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_IP);
5339                                 ARM_LDR_REG_REG_SHIFT (code, ARMREG_PC, ARMREG_IP, ins->sreg1, ARMSHIFT_LSL, 2);
5340                         }
5341 #else
5342
5343                         max_len += 4 * GPOINTER_TO_INT (ins->klass);
5344                         if (offset + max_len > (cfg->code_size - 16)) {
5345                                 cfg->code_size += max_len;
5346                                 cfg->code_size *= 2;
5347                                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
5348                                 code = cfg->native_code + offset;
5349                         }
5350                         ARM_LDR_REG_REG_SHIFT (code, ARMREG_PC, ARMREG_PC, ins->sreg1, ARMSHIFT_LSL, 2);
5351                         ARM_NOP (code);
5352                         code += 4 * GPOINTER_TO_INT (ins->klass);
5353 #endif
5354                         break;
5355                 case OP_CEQ:
5356                 case OP_ICEQ:
5357                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5358                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5359                         break;
5360                 case OP_CLT:
5361                 case OP_ICLT:
5362                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5363                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LT);
5364                         break;
5365                 case OP_CLT_UN:
5366                 case OP_ICLT_UN:
5367                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5368                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_LO);
5369                         break;
5370                 case OP_CGT:
5371                 case OP_ICGT:
5372                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5373                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_GT);
5374                         break;
5375                 case OP_CGT_UN:
5376                 case OP_ICGT_UN:
5377                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5378                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_HI);
5379                         break;
5380                 case OP_ICNEQ:
5381                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5382                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5383                         break;
5384                 case OP_ICGE:
5385                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5386                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LT);
5387                         break;
5388                 case OP_ICLE:
5389                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5390                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_GT);
5391                         break;
5392                 case OP_ICGE_UN:
5393                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5394                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_LO);
5395                         break;
5396                 case OP_ICLE_UN:
5397                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5398                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_HI);
5399                         break;
5400                 case OP_COND_EXC_EQ:
5401                 case OP_COND_EXC_NE_UN:
5402                 case OP_COND_EXC_LT:
5403                 case OP_COND_EXC_LT_UN:
5404                 case OP_COND_EXC_GT:
5405                 case OP_COND_EXC_GT_UN:
5406                 case OP_COND_EXC_GE:
5407                 case OP_COND_EXC_GE_UN:
5408                 case OP_COND_EXC_LE:
5409                 case OP_COND_EXC_LE_UN:
5410                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_EQ, ins->inst_p1);
5411                         break;
5412                 case OP_COND_EXC_IEQ:
5413                 case OP_COND_EXC_INE_UN:
5414                 case OP_COND_EXC_ILT:
5415                 case OP_COND_EXC_ILT_UN:
5416                 case OP_COND_EXC_IGT:
5417                 case OP_COND_EXC_IGT_UN:
5418                 case OP_COND_EXC_IGE:
5419                 case OP_COND_EXC_IGE_UN:
5420                 case OP_COND_EXC_ILE:
5421                 case OP_COND_EXC_ILE_UN:
5422                         EMIT_COND_SYSTEM_EXCEPTION (ins->opcode - OP_COND_EXC_IEQ, ins->inst_p1);
5423                         break;
5424                 case OP_COND_EXC_C:
5425                 case OP_COND_EXC_IC:
5426                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CS, ins->inst_p1);
5427                         break;
5428                 case OP_COND_EXC_OV:
5429                 case OP_COND_EXC_IOV:
5430                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, ins->inst_p1);
5431                         break;
5432                 case OP_COND_EXC_NC:
5433                 case OP_COND_EXC_INC:
5434                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_CC, ins->inst_p1);
5435                         break;
5436                 case OP_COND_EXC_NO:
5437                 case OP_COND_EXC_INO:
5438                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VC, ins->inst_p1);
5439                         break;
5440                 case OP_IBEQ:
5441                 case OP_IBNE_UN:
5442                 case OP_IBLT:
5443                 case OP_IBLT_UN:
5444                 case OP_IBGT:
5445                 case OP_IBGT_UN:
5446                 case OP_IBGE:
5447                 case OP_IBGE_UN:
5448                 case OP_IBLE:
5449                 case OP_IBLE_UN:
5450                         EMIT_COND_BRANCH (ins, ins->opcode - OP_IBEQ);
5451                         break;
5452
5453                 /* floating point opcodes */
5454                 case OP_R8CONST:
5455                         if (cfg->compile_aot) {
5456                                 ARM_FLDD (code, ins->dreg, ARMREG_PC, 0);
5457                                 ARM_B (code, 1);
5458                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5459                                 code += 4;
5460                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[1];
5461                                 code += 4;
5462                         } else {
5463                                 /* FIXME: we can optimize the imm load by dealing with part of 
5464                                  * the displacement in LDFD (aligning to 512).
5465                                  */
5466                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5467                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5468                         }
5469                         break;
5470                 case OP_R4CONST:
5471                         if (cfg->compile_aot) {
5472                                 ARM_FLDS (code, ins->dreg, ARMREG_PC, 0);
5473                                 ARM_B (code, 0);
5474                                 *(guint32*)code = ((guint32*)(ins->inst_p0))[0];
5475                                 code += 4;
5476                                 if (!cfg->r4fp)
5477                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5478                         } else {
5479                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, (guint32)ins->inst_p0);
5480                                 ARM_FLDS (code, ins->dreg, ARMREG_LR, 0);
5481                                 if (!cfg->r4fp)
5482                                         ARM_CVTS (code, ins->dreg, ins->dreg);
5483                         }
5484                         break;
5485                 case OP_STORER8_MEMBASE_REG:
5486                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5487                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5488                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5489                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_destbasereg);
5490                                 ARM_FSTD (code, ins->sreg1, ARMREG_LR, 0);
5491                         } else {
5492                                 ARM_FSTD (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5493                         }
5494                         break;
5495                 case OP_LOADR8_MEMBASE:
5496                         /* This is generated by the local regalloc pass which runs after the lowering pass */
5497                         if (!arm_is_fpimm8 (ins->inst_offset)) {
5498                                 code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
5499                                 ARM_ADD_REG_REG (code, ARMREG_LR, ARMREG_LR, ins->inst_basereg);
5500                                 ARM_FLDD (code, ins->dreg, ARMREG_LR, 0);
5501                         } else {
5502                                 ARM_FLDD (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5503                         }
5504                         break;
5505                 case OP_STORER4_MEMBASE_REG:
5506                         g_assert (arm_is_fpimm8 (ins->inst_offset));
5507                         if (cfg->r4fp) {
5508                                 ARM_FSTS (code, ins->sreg1, ins->inst_destbasereg, ins->inst_offset);
5509                         } else {
5510                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5511                                 ARM_CVTD (code, vfp_scratch1, ins->sreg1);
5512                                 ARM_FSTS (code, vfp_scratch1, ins->inst_destbasereg, ins->inst_offset);
5513                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5514                         }
5515                         break;
5516                 case OP_LOADR4_MEMBASE:
5517                         if (cfg->r4fp) {
5518                                 ARM_FLDS (code, ins->dreg, ins->inst_basereg, ins->inst_offset);
5519                         } else {
5520                                 g_assert (arm_is_fpimm8 (ins->inst_offset));
5521                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5522                                 ARM_FLDS (code, vfp_scratch1, ins->inst_basereg, ins->inst_offset);
5523                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5524                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5525                         }
5526                         break;
5527                 case OP_ICONV_TO_R_UN: {
5528                         g_assert_not_reached ();
5529                         break;
5530                 }
5531                 case OP_ICONV_TO_R4:
5532                         if (cfg->r4fp) {
5533                                 ARM_FMSR (code, ins->dreg, ins->sreg1);
5534                                 ARM_FSITOS (code, ins->dreg, ins->dreg);
5535                         } else {
5536                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5537                                 ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5538                                 ARM_FSITOS (code, vfp_scratch1, vfp_scratch1);
5539                                 ARM_CVTS (code, ins->dreg, vfp_scratch1);
5540                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5541                         }
5542                         break;
5543                 case OP_ICONV_TO_R8:
5544                         code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5545                         ARM_FMSR (code, vfp_scratch1, ins->sreg1);
5546                         ARM_FSITOD (code, ins->dreg, vfp_scratch1);
5547                         code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5548                         break;
5549
5550                 case OP_SETFRET: {
5551                         MonoType *sig_ret = mini_get_underlying_type (mono_method_signature (cfg->method)->ret);
5552                         if (sig_ret->type == MONO_TYPE_R4) {
5553                                 if (cfg->r4fp) {
5554                                         g_assert (!IS_HARD_FLOAT);
5555                                         ARM_FMRS (code, ARMREG_R0, ins->sreg1);
5556                                 } else {
5557                                         ARM_CVTD (code, ARM_VFP_F0, ins->sreg1);
5558
5559                                         if (!IS_HARD_FLOAT)
5560                                                 ARM_FMRS (code, ARMREG_R0, ARM_VFP_F0);
5561                                 }
5562                         } else {
5563                                 if (IS_HARD_FLOAT)
5564                                         ARM_CPYD (code, ARM_VFP_D0, ins->sreg1);
5565                                 else
5566                                         ARM_FMRRD (code, ARMREG_R0, ARMREG_R1, ins->sreg1);
5567                         }
5568                         break;
5569                 }
5570                 case OP_FCONV_TO_I1:
5571                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5572                         break;
5573                 case OP_FCONV_TO_U1:
5574                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5575                         break;
5576                 case OP_FCONV_TO_I2:
5577                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5578                         break;
5579                 case OP_FCONV_TO_U2:
5580                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5581                         break;
5582                 case OP_FCONV_TO_I4:
5583                 case OP_FCONV_TO_I:
5584                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5585                         break;
5586                 case OP_FCONV_TO_U4:
5587                 case OP_FCONV_TO_U:
5588                         code = emit_float_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5589                         break;
5590                 case OP_FCONV_TO_I8:
5591                 case OP_FCONV_TO_U8:
5592                         g_assert_not_reached ();
5593                         /* Implemented as helper calls */
5594                         break;
5595                 case OP_LCONV_TO_R_UN:
5596                         g_assert_not_reached ();
5597                         /* Implemented as helper calls */
5598                         break;
5599                 case OP_LCONV_TO_OVF_I4_2: {
5600                         guint8 *high_bit_not_set, *valid_negative, *invalid_negative, *valid_positive;
5601                         /* 
5602                          * Valid ints: 0xffffffff:8000000 to 00000000:0x7f000000
5603                          */
5604
5605                         ARM_CMP_REG_IMM8 (code, ins->sreg1, 0);
5606                         high_bit_not_set = code;
5607                         ARM_B_COND (code, ARMCOND_GE, 0); /*branch if bit 31 of the lower part is not set*/
5608
5609                         ARM_CMN_REG_IMM8 (code, ins->sreg2, 1); /*This have the same effect as CMP reg, 0xFFFFFFFF */
5610                         valid_negative = code;
5611                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0xFFFFFFFF (lower part has bit 31 set) */
5612                         invalid_negative = code;
5613                         ARM_B_COND (code, ARMCOND_AL, 0);
5614                         
5615                         arm_patch (high_bit_not_set, code);
5616
5617                         ARM_CMP_REG_IMM8 (code, ins->sreg2, 0);
5618                         valid_positive = code;
5619                         ARM_B_COND (code, ARMCOND_EQ, 0); /*branch if upper part == 0 (lower part has bit 31 clear)*/
5620
5621                         arm_patch (invalid_negative, code);
5622                         EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_AL, "OverflowException");
5623
5624                         arm_patch (valid_negative, code);
5625                         arm_patch (valid_positive, code);
5626
5627                         if (ins->dreg != ins->sreg1)
5628                                 ARM_MOV_REG_REG (code, ins->dreg, ins->sreg1);
5629                         break;
5630                 }
5631                 case OP_FADD:
5632                         ARM_VFP_ADDD (code, ins->dreg, ins->sreg1, ins->sreg2);
5633                         break;
5634                 case OP_FSUB:
5635                         ARM_VFP_SUBD (code, ins->dreg, ins->sreg1, ins->sreg2);
5636                         break;          
5637                 case OP_FMUL:
5638                         ARM_VFP_MULD (code, ins->dreg, ins->sreg1, ins->sreg2);
5639                         break;          
5640                 case OP_FDIV:
5641                         ARM_VFP_DIVD (code, ins->dreg, ins->sreg1, ins->sreg2);
5642                         break;          
5643                 case OP_FNEG:
5644                         ARM_NEGD (code, ins->dreg, ins->sreg1);
5645                         break;
5646                 case OP_FREM:
5647                         /* emulated */
5648                         g_assert_not_reached ();
5649                         break;
5650                 case OP_FCOMPARE:
5651                         if (IS_VFP) {
5652                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5653                                 ARM_FMSTAT (code);
5654                         }
5655                         break;
5656                 case OP_RCOMPARE:
5657                         g_assert (IS_VFP);
5658                         ARM_CMPS (code, ins->sreg1, ins->sreg2);
5659                         ARM_FMSTAT (code);
5660                         break;
5661                 case OP_FCEQ:
5662                         if (IS_VFP) {
5663                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5664                                 ARM_FMSTAT (code);
5665                         }
5666                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5667                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5668                         break;
5669                 case OP_FCLT:
5670                         if (IS_VFP) {
5671                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5672                                 ARM_FMSTAT (code);
5673                         }
5674                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5675                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5676                         break;
5677                 case OP_FCLT_UN:
5678                         if (IS_VFP) {
5679                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5680                                 ARM_FMSTAT (code);
5681                         }
5682                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5683                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5684                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5685                         break;
5686                 case OP_FCGT:
5687                         if (IS_VFP) {
5688                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5689                                 ARM_FMSTAT (code);
5690                         }
5691                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5692                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5693                         break;
5694                 case OP_FCGT_UN:
5695                         if (IS_VFP) {
5696                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5697                                 ARM_FMSTAT (code);
5698                         }
5699                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5700                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5701                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5702                         break;
5703                 case OP_FCNEQ:
5704                         if (IS_VFP) {
5705                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5706                                 ARM_FMSTAT (code);
5707                         }
5708                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5709                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5710                         break;
5711                 case OP_FCGE:
5712                         if (IS_VFP) {
5713                                 ARM_CMPD (code, ins->sreg1, ins->sreg2);
5714                                 ARM_FMSTAT (code);
5715                         }
5716                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5717                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5718                         break;
5719                 case OP_FCLE:
5720                         if (IS_VFP) {
5721                                 ARM_CMPD (code, ins->sreg2, ins->sreg1);
5722                                 ARM_FMSTAT (code);
5723                         }
5724                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5725                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5726                         break;
5727
5728                 /* ARM FPA flags table:
5729                  * N        Less than               ARMCOND_MI
5730                  * Z        Equal                   ARMCOND_EQ
5731                  * C        Greater Than or Equal   ARMCOND_CS
5732                  * V        Unordered               ARMCOND_VS
5733                  */
5734                 case OP_FBEQ:
5735                         EMIT_COND_BRANCH (ins, OP_IBEQ - OP_IBEQ);
5736                         break;
5737                 case OP_FBNE_UN:
5738                         EMIT_COND_BRANCH (ins, OP_IBNE_UN - OP_IBEQ);
5739                         break;
5740                 case OP_FBLT:
5741                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5742                         break;
5743                 case OP_FBLT_UN:
5744                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5745                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_MI); /* N set */
5746                         break;
5747                 case OP_FBGT:
5748                 case OP_FBGT_UN:
5749                 case OP_FBLE:
5750                 case OP_FBLE_UN:
5751                         g_assert_not_reached ();
5752                         break;
5753                 case OP_FBGE:
5754                         if (IS_VFP) {
5755                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5756                         } else {
5757                                 /* FPA requires EQ even thou the docs suggests that just CS is enough */
5758                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_EQ);
5759                                 EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_CS);
5760                         }
5761                         break;
5762                 case OP_FBGE_UN:
5763                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_VS); /* V set */
5764                         EMIT_COND_BRANCH_FLAGS (ins, ARMCOND_GE);
5765                         break;
5766
5767                 case OP_CKFINITE: {
5768                         if (IS_VFP) {
5769                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch1);
5770                                 code = mono_arm_emit_vfp_scratch_save (cfg, code, vfp_scratch2);
5771
5772 #ifdef USE_JUMP_TABLES
5773                                 {
5774                                         gpointer *jte = mono_jumptable_add_entries (2);
5775                                         jte [0] = GUINT_TO_POINTER (0xffffffff);
5776                                         jte [1] = GUINT_TO_POINTER (0x7fefffff);
5777                                         code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_IP);
5778                                         ARM_FLDD (code, vfp_scratch1, ARMREG_IP, 0);
5779                                 }
5780 #else
5781                                 ARM_ABSD (code, vfp_scratch2, ins->sreg1);
5782                                 ARM_FLDD (code, vfp_scratch1, ARMREG_PC, 0);
5783                                 ARM_B (code, 1);
5784                                 *(guint32*)code = 0xffffffff;
5785                                 code += 4;
5786                                 *(guint32*)code = 0x7fefffff;
5787                                 code += 4;
5788 #endif
5789                                 ARM_CMPD (code, vfp_scratch2, vfp_scratch1);
5790                                 ARM_FMSTAT (code);
5791                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_GT, "ArithmeticException");
5792                                 ARM_CMPD (code, ins->sreg1, ins->sreg1);
5793                                 ARM_FMSTAT (code);
5794                                 EMIT_COND_SYSTEM_EXCEPTION_FLAGS (ARMCOND_VS, "ArithmeticException");
5795                                 ARM_CPYD (code, ins->dreg, ins->sreg1);
5796
5797                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch1);
5798                                 code = mono_arm_emit_vfp_scratch_restore (cfg, code, vfp_scratch2);
5799                         }
5800                         break;
5801                 }
5802
5803                 case OP_RCONV_TO_I1:
5804                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, TRUE);
5805                         break;
5806                 case OP_RCONV_TO_U1:
5807                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 1, FALSE);
5808                         break;
5809                 case OP_RCONV_TO_I2:
5810                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, TRUE);
5811                         break;
5812                 case OP_RCONV_TO_U2:
5813                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 2, FALSE);
5814                         break;
5815                 case OP_RCONV_TO_I4:
5816                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, TRUE);
5817                         break;
5818                 case OP_RCONV_TO_U4:
5819                         code = emit_r4_to_int (cfg, code, ins->dreg, ins->sreg1, 4, FALSE);
5820                         break;
5821                 case OP_RCONV_TO_R4:
5822                         g_assert (IS_VFP);
5823                         if (ins->dreg != ins->sreg1)
5824                                 ARM_CPYS (code, ins->dreg, ins->sreg1);
5825                         break;
5826                 case OP_RCONV_TO_R8:
5827                         g_assert (IS_VFP);
5828                         ARM_CVTS (code, ins->dreg, ins->sreg1);
5829                         break;
5830                 case OP_RADD:
5831                         ARM_VFP_ADDS (code, ins->dreg, ins->sreg1, ins->sreg2);
5832                         break;
5833                 case OP_RSUB:
5834                         ARM_VFP_SUBS (code, ins->dreg, ins->sreg1, ins->sreg2);
5835                         break;          
5836                 case OP_RMUL:
5837                         ARM_VFP_MULS (code, ins->dreg, ins->sreg1, ins->sreg2);
5838                         break;          
5839                 case OP_RDIV:
5840                         ARM_VFP_DIVS (code, ins->dreg, ins->sreg1, ins->sreg2);
5841                         break;          
5842                 case OP_RNEG:
5843                         ARM_NEGS (code, ins->dreg, ins->sreg1);
5844                         break;
5845                 case OP_RCEQ:
5846                         if (IS_VFP) {
5847                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5848                                 ARM_FMSTAT (code);
5849                         }
5850                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_NE);
5851                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_EQ);
5852                         break;
5853                 case OP_RCLT:
5854                         if (IS_VFP) {
5855                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5856                                 ARM_FMSTAT (code);
5857                         }
5858                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5859                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5860                         break;
5861                 case OP_RCLT_UN:
5862                         if (IS_VFP) {
5863                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5864                                 ARM_FMSTAT (code);
5865                         }
5866                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5867                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5868                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5869                         break;
5870                 case OP_RCGT:
5871                         if (IS_VFP) {
5872                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5873                                 ARM_FMSTAT (code);
5874                         }
5875                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5876                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5877                         break;
5878                 case OP_RCGT_UN:
5879                         if (IS_VFP) {
5880                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5881                                 ARM_FMSTAT (code);
5882                         }
5883                         ARM_MOV_REG_IMM8 (code, ins->dreg, 0);
5884                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_MI);
5885                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_VS);
5886                         break;
5887                 case OP_RCNEQ:
5888                         if (IS_VFP) {
5889                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5890                                 ARM_FMSTAT (code);
5891                         }
5892                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 1, ARMCOND_NE);
5893                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_EQ);
5894                         break;
5895                 case OP_RCGE:
5896                         if (IS_VFP) {
5897                                 ARM_CMPS (code, ins->sreg1, ins->sreg2);
5898                                 ARM_FMSTAT (code);
5899                         }
5900                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5901                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5902                         break;
5903                 case OP_RCLE:
5904                         if (IS_VFP) {
5905                                 ARM_CMPS (code, ins->sreg2, ins->sreg1);
5906                                 ARM_FMSTAT (code);
5907                         }
5908                         ARM_MOV_REG_IMM8 (code, ins->dreg, 1);
5909                         ARM_MOV_REG_IMM8_COND (code, ins->dreg, 0, ARMCOND_MI);
5910                         break;
5911
5912                 case OP_GC_LIVENESS_DEF:
5913                 case OP_GC_LIVENESS_USE:
5914                 case OP_GC_PARAM_SLOT_LIVENESS_DEF:
5915                         ins->backend.pc_offset = code - cfg->native_code;
5916                         break;
5917                 case OP_GC_SPILL_SLOT_LIVENESS_DEF:
5918                         ins->backend.pc_offset = code - cfg->native_code;
5919                         bb->spill_slot_defs = g_slist_prepend_mempool (cfg->mempool, bb->spill_slot_defs, ins);
5920                         break;
5921                 case OP_GC_SAFE_POINT: {
5922                         const char *polling_func = NULL;
5923                         guint8 *buf [1];
5924
5925                         g_assert (mono_threads_is_coop_enabled ());
5926
5927                         polling_func = "mono_threads_state_poll";
5928                         ARM_LDR_IMM (code, ARMREG_IP, ins->sreg1, 0);
5929                         ARM_CMP_REG_IMM (code, ARMREG_IP, 0, 0);
5930                         buf [0] = code;
5931                         ARM_B_COND (code, ARMCOND_EQ, 0);
5932                         mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, polling_func);
5933                         code = emit_call_seq (cfg, code);
5934                         arm_patch (buf [0], code);
5935                         break;
5936                 }
5937
5938                 default:
5939                         g_warning ("unknown opcode %s in %s()\n", mono_inst_name (ins->opcode), __FUNCTION__);
5940                         g_assert_not_reached ();
5941                 }
5942
5943                 if ((cfg->opt & MONO_OPT_BRANCH) && ((code - cfg->native_code - offset) > max_len)) {
5944                         g_warning ("wrong maximal instruction length of instruction %s (expected %d, got %d)",
5945                                    mono_inst_name (ins->opcode), max_len, code - cfg->native_code - offset);
5946                         g_assert_not_reached ();
5947                 }
5948                
5949                 cpos += max_len;
5950
5951                 last_ins = ins;
5952                 last_offset = offset;
5953         }
5954
5955         cfg->code_len = code - cfg->native_code;
5956 }
5957
5958 #endif /* DISABLE_JIT */
5959
5960 void
5961 mono_arch_register_lowlevel_calls (void)
5962 {
5963         /* The signature doesn't matter */
5964         mono_register_jit_icall (mono_arm_throw_exception, "mono_arm_throw_exception", mono_create_icall_signature ("void"), TRUE);
5965         mono_register_jit_icall (mono_arm_throw_exception_by_token, "mono_arm_throw_exception_by_token", mono_create_icall_signature ("void"), TRUE);
5966         mono_register_jit_icall (mono_arm_unaligned_stack, "mono_arm_unaligned_stack", mono_create_icall_signature ("void"), TRUE);
5967
5968 #ifndef MONO_CROSS_COMPILE
5969         if (mono_arm_have_tls_get ()) {
5970                 MonoTlsImplementation tls_imp = mono_arm_get_tls_implementation ();
5971
5972                 mono_register_jit_icall (tls_imp.get_tls_thunk, "mono_get_tls_key", mono_create_icall_signature ("ptr ptr"), TRUE);
5973                 mono_register_jit_icall (tls_imp.set_tls_thunk, "mono_set_tls_key", mono_create_icall_signature ("void ptr ptr"), TRUE);
5974
5975                 if (tls_imp.get_tls_thunk_end) {
5976                         mono_tramp_info_register (
5977                                 mono_tramp_info_create (
5978                                         "mono_get_tls_key",
5979                                         (guint8*)tls_imp.get_tls_thunk,
5980                                         (guint8*)tls_imp.get_tls_thunk_end - (guint8*)tls_imp.get_tls_thunk,
5981                                         NULL,
5982                                         mono_arch_get_cie_program ()
5983                                         ),
5984                                 NULL
5985                                 );
5986                         mono_tramp_info_register (
5987                                 mono_tramp_info_create (
5988                                         "mono_set_tls_key",
5989                                         (guint8*)tls_imp.set_tls_thunk,
5990                                         (guint8*)tls_imp.set_tls_thunk_end - (guint8*)tls_imp.set_tls_thunk,
5991                                         NULL,
5992                                         mono_arch_get_cie_program ()
5993                                         ),
5994                                 NULL
5995                                 );
5996                 }
5997         }
5998 #endif
5999 }
6000
6001 #define patch_lis_ori(ip,val) do {\
6002                 guint16 *__lis_ori = (guint16*)(ip);    \
6003                 __lis_ori [1] = (((guint32)(val)) >> 16) & 0xffff;      \
6004                 __lis_ori [3] = ((guint32)(val)) & 0xffff;      \
6005         } while (0)
6006
6007 void
6008 mono_arch_patch_code_new (MonoCompile *cfg, MonoDomain *domain, guint8 *code, MonoJumpInfo *ji, gpointer target)
6009 {
6010         unsigned char *ip = ji->ip.i + code;
6011
6012         if (ji->type == MONO_PATCH_INFO_SWITCH) {
6013         }
6014
6015         switch (ji->type) {
6016         case MONO_PATCH_INFO_SWITCH: {
6017 #ifdef USE_JUMP_TABLES
6018                 gpointer *jt = mono_jumptable_get_entry (ip);
6019 #else
6020                 gpointer *jt = (gpointer*)(ip + 8);
6021 #endif
6022                 int i;
6023                 /* jt is the inlined jump table, 2 instructions after ip
6024                  * In the normal case we store the absolute addresses,
6025                  * otherwise the displacements.
6026                  */
6027                 for (i = 0; i < ji->data.table->table_size; i++)
6028                         jt [i] = code + (int)ji->data.table->table [i];
6029                 break;
6030         }
6031         case MONO_PATCH_INFO_IP:
6032                 g_assert_not_reached ();
6033                 patch_lis_ori (ip, ip);
6034                 break;
6035         case MONO_PATCH_INFO_METHOD_REL:
6036                 g_assert_not_reached ();
6037                 *((gpointer *)(ip)) = target;
6038                 break;
6039         case MONO_PATCH_INFO_METHODCONST:
6040         case MONO_PATCH_INFO_CLASS:
6041         case MONO_PATCH_INFO_IMAGE:
6042         case MONO_PATCH_INFO_FIELD:
6043         case MONO_PATCH_INFO_VTABLE:
6044         case MONO_PATCH_INFO_IID:
6045         case MONO_PATCH_INFO_SFLDA:
6046         case MONO_PATCH_INFO_LDSTR:
6047         case MONO_PATCH_INFO_TYPE_FROM_HANDLE:
6048         case MONO_PATCH_INFO_LDTOKEN:
6049                 g_assert_not_reached ();
6050                 /* from OP_AOTCONST : lis + ori */
6051                 patch_lis_ori (ip, target);
6052                 break;
6053         case MONO_PATCH_INFO_R4:
6054         case MONO_PATCH_INFO_R8:
6055                 g_assert_not_reached ();
6056                 *((gconstpointer *)(ip + 2)) = target;
6057                 break;
6058         case MONO_PATCH_INFO_EXC_NAME:
6059                 g_assert_not_reached ();
6060                 *((gconstpointer *)(ip + 1)) = target;
6061                 break;
6062         case MONO_PATCH_INFO_NONE:
6063         case MONO_PATCH_INFO_BB_OVF:
6064         case MONO_PATCH_INFO_EXC_OVF:
6065                 /* everything is dealt with at epilog output time */
6066                 break;
6067         default:
6068                 arm_patch_general (cfg, domain, ip, target);
6069                 break;
6070         }
6071 }
6072
6073 void
6074 mono_arm_unaligned_stack (MonoMethod *method)
6075 {
6076         g_assert_not_reached ();
6077 }
6078
6079 #ifndef DISABLE_JIT
6080
6081 /*
6082  * Stack frame layout:
6083  * 
6084  *   ------------------- fp
6085  *      MonoLMF structure or saved registers
6086  *   -------------------
6087  *      locals
6088  *   -------------------
6089  *      spilled regs
6090  *   -------------------
6091  *      optional 8 bytes for tracing
6092  *   -------------------
6093  *      param area             size is cfg->param_area
6094  *   ------------------- sp
6095  */
6096 guint8 *
6097 mono_arch_emit_prolog (MonoCompile *cfg)
6098 {
6099         MonoMethod *method = cfg->method;
6100         MonoBasicBlock *bb;
6101         MonoMethodSignature *sig;
6102         MonoInst *inst;
6103         int alloc_size, orig_alloc_size, pos, max_offset, i, rot_amount, part;
6104         guint8 *code;
6105         CallInfo *cinfo;
6106         int tracing = 0;
6107         int lmf_offset = 0;
6108         int prev_sp_offset, reg_offset;
6109
6110         if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
6111                 tracing = 1;
6112
6113         sig = mono_method_signature (method);
6114         cfg->code_size = 256 + sig->param_count * 64;
6115         code = cfg->native_code = g_malloc (cfg->code_size);
6116
6117         mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, 0);
6118
6119         alloc_size = cfg->stack_offset;
6120         pos = 0;
6121         prev_sp_offset = 0;
6122
6123         if (iphone_abi) {
6124                 /* 
6125                  * The iphone uses R7 as the frame pointer, and it points at the saved
6126                  * r7+lr:
6127                  *         <lr>
6128                  * r7 ->   <r7>
6129                  *         <rest of frame>
6130                  * We can't use r7 as a frame pointer since it points into the middle of
6131                  * the frame, so we keep using our own frame pointer.
6132                  * FIXME: Optimize this.
6133                  */
6134                 ARM_PUSH (code, (1 << ARMREG_R7) | (1 << ARMREG_LR));
6135                 prev_sp_offset += 8; /* r7 and lr */
6136                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6137                 mono_emit_unwind_op_offset (cfg, code, ARMREG_R7, (- prev_sp_offset) + 0);
6138                 ARM_MOV_REG_REG (code, ARMREG_R7, ARMREG_SP);
6139         }
6140
6141         if (!method->save_lmf) {
6142                 if (iphone_abi) {
6143                         /* No need to push LR again */
6144                         if (cfg->used_int_regs)
6145                                 ARM_PUSH (code, cfg->used_int_regs);
6146                 } else {
6147                         ARM_PUSH (code, cfg->used_int_regs | (1 << ARMREG_LR));
6148                         prev_sp_offset += 4;
6149                 }
6150                 for (i = 0; i < 16; ++i) {
6151                         if (cfg->used_int_regs & (1 << i))
6152                                 prev_sp_offset += 4;
6153                 }
6154                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6155                 reg_offset = 0;
6156                 for (i = 0; i < 16; ++i) {
6157                         if ((cfg->used_int_regs & (1 << i))) {
6158                                 mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6159                                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + reg_offset, SLOT_NOREF);
6160                                 reg_offset += 4;
6161                         }
6162                 }
6163                 if (iphone_abi) {
6164                         mono_emit_unwind_op_offset (cfg, code, ARMREG_LR, -4);
6165                         mini_gc_set_slot_type_from_cfa (cfg, -4, SLOT_NOREF);
6166                 } else {
6167                         mono_emit_unwind_op_offset (cfg, code, ARMREG_LR, -4);
6168                         mini_gc_set_slot_type_from_cfa (cfg, -4, SLOT_NOREF);
6169                 }
6170         } else {
6171                 ARM_MOV_REG_REG (code, ARMREG_IP, ARMREG_SP);
6172                 ARM_PUSH (code, 0x5ff0);
6173                 prev_sp_offset += 4 * 10; /* all but r0-r3, sp and pc */
6174                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset);
6175                 reg_offset = 0;
6176                 for (i = 0; i < 16; ++i) {
6177                         if ((i > ARMREG_R3) && (i != ARMREG_SP) && (i != ARMREG_PC)) {
6178                                 /* The original r7 is saved at the start */
6179                                 if (!(iphone_abi && i == ARMREG_R7))
6180                                         mono_emit_unwind_op_offset (cfg, code, i, (- prev_sp_offset) + reg_offset);
6181                                 reg_offset += 4;
6182                         }
6183                 }
6184                 g_assert (reg_offset == 4 * 10);
6185                 pos += sizeof (MonoLMF) - (4 * 10);
6186                 lmf_offset = pos;
6187         }
6188         alloc_size += pos;
6189         orig_alloc_size = alloc_size;
6190         // align to MONO_ARCH_FRAME_ALIGNMENT bytes
6191         if (alloc_size & (MONO_ARCH_FRAME_ALIGNMENT - 1)) {
6192                 alloc_size += MONO_ARCH_FRAME_ALIGNMENT - 1;
6193                 alloc_size &= ~(MONO_ARCH_FRAME_ALIGNMENT - 1);
6194         }
6195
6196         /* the stack used in the pushed regs */
6197         alloc_size += ALIGN_TO (prev_sp_offset, MONO_ARCH_FRAME_ALIGNMENT) - prev_sp_offset;
6198         cfg->stack_usage = alloc_size;
6199         if (alloc_size) {
6200                 if ((i = mono_arm_is_rotated_imm8 (alloc_size, &rot_amount)) >= 0) {
6201                         ARM_SUB_REG_IMM (code, ARMREG_SP, ARMREG_SP, i, rot_amount);
6202                 } else {
6203                         code = mono_arm_emit_load_imm (code, ARMREG_IP, alloc_size);
6204                         ARM_SUB_REG_REG (code, ARMREG_SP, ARMREG_SP, ARMREG_IP);
6205                 }
6206                 mono_emit_unwind_op_def_cfa_offset (cfg, code, prev_sp_offset + alloc_size);
6207         }
6208         if (cfg->frame_reg != ARMREG_SP) {
6209                 ARM_MOV_REG_REG (code, cfg->frame_reg, ARMREG_SP);
6210                 mono_emit_unwind_op_def_cfa_reg (cfg, code, cfg->frame_reg);
6211         }
6212         //g_print ("prev_sp_offset: %d, alloc_size:%d\n", prev_sp_offset, alloc_size);
6213         prev_sp_offset += alloc_size;
6214
6215         for (i = 0; i < alloc_size - orig_alloc_size; i += 4)
6216                 mini_gc_set_slot_type_from_cfa (cfg, (- prev_sp_offset) + orig_alloc_size + i, SLOT_NOREF);
6217
6218         /* compute max_offset in order to use short forward jumps
6219          * we could skip do it on arm because the immediate displacement
6220          * for jumps is large enough, it may be useful later for constant pools
6221          */
6222         max_offset = 0;
6223         for (bb = cfg->bb_entry; bb; bb = bb->next_bb) {
6224                 MonoInst *ins = bb->code;
6225                 bb->max_offset = max_offset;
6226
6227                 if (cfg->prof_options & MONO_PROFILE_COVERAGE)
6228                         max_offset += 6; 
6229
6230                 MONO_BB_FOR_EACH_INS (bb, ins)
6231                         max_offset += ((guint8 *)ins_get_spec (ins->opcode))[MONO_INST_LEN];
6232         }
6233
6234         /* stack alignment check */
6235         /*
6236         {
6237                 guint8 *buf [16];
6238                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_SP);
6239                 code = mono_arm_emit_load_imm (code, ARMREG_IP, MONO_ARCH_FRAME_ALIGNMENT -1);
6240                 ARM_AND_REG_REG (code, ARMREG_LR, ARMREG_LR, ARMREG_IP);
6241                 ARM_CMP_REG_IMM (code, ARMREG_LR, 0, 0);
6242                 buf [0] = code;
6243                 ARM_B_COND (code, ARMCOND_EQ, 0);
6244                 if (cfg->compile_aot)
6245                         ARM_MOV_REG_IMM8 (code, ARMREG_R0, 0);
6246                 else
6247                         code = mono_arm_emit_load_imm (code, ARMREG_R0, (guint32)cfg->method);
6248                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_INTERNAL_METHOD, "mono_arm_unaligned_stack");
6249                 code = emit_call_seq (cfg, code);
6250                 arm_patch (buf [0], code);
6251         }
6252         */
6253
6254         /* store runtime generic context */
6255         if (cfg->rgctx_var) {
6256                 MonoInst *ins = cfg->rgctx_var;
6257
6258                 g_assert (ins->opcode == OP_REGOFFSET);
6259
6260                 if (arm_is_imm12 (ins->inst_offset)) {
6261                         ARM_STR_IMM (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ins->inst_offset);
6262                 } else {
6263                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6264                         ARM_STR_REG_REG (code, MONO_ARCH_RGCTX_REG, ins->inst_basereg, ARMREG_LR);
6265                 }
6266         }
6267
6268         /* load arguments allocated to register from the stack */
6269         pos = 0;
6270
6271         cinfo = get_call_info (NULL, sig);
6272
6273         if (cinfo->ret.storage == RegTypeStructByAddr) {
6274                 ArgInfo *ainfo = &cinfo->ret;
6275                 inst = cfg->vret_addr;
6276                 g_assert (arm_is_imm12 (inst->inst_offset));
6277                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6278         }
6279
6280         if (sig->call_convention == MONO_CALL_VARARG) {
6281                 ArgInfo *cookie = &cinfo->sig_cookie;
6282
6283                 /* Save the sig cookie address */
6284                 g_assert (cookie->storage == RegTypeBase);
6285
6286                 g_assert (arm_is_imm12 (prev_sp_offset + cookie->offset));
6287                 g_assert (arm_is_imm12 (cfg->sig_cookie));
6288                 ARM_ADD_REG_IMM8 (code, ARMREG_IP, cfg->frame_reg, prev_sp_offset + cookie->offset);
6289                 ARM_STR_IMM (code, ARMREG_IP, cfg->frame_reg, cfg->sig_cookie);
6290         }
6291
6292         for (i = 0; i < sig->param_count + sig->hasthis; ++i) {
6293                 ArgInfo *ainfo = cinfo->args + i;
6294                 inst = cfg->args [pos];
6295                 
6296                 if (cfg->verbose_level > 2)
6297                         g_print ("Saving argument %d (type: %d)\n", i, ainfo->storage);
6298
6299                 if (inst->opcode == OP_REGVAR) {
6300                         if (ainfo->storage == RegTypeGeneral)
6301                                 ARM_MOV_REG_REG (code, inst->dreg, ainfo->reg);
6302                         else if (ainfo->storage == RegTypeFP) {
6303                                 g_assert_not_reached ();
6304                         } else if (ainfo->storage == RegTypeBase) {
6305                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6306                                         ARM_LDR_IMM (code, inst->dreg, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6307                                 } else {
6308                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6309                                         ARM_LDR_REG_REG (code, inst->dreg, ARMREG_SP, ARMREG_IP);
6310                                 }
6311                         } else
6312                                 g_assert_not_reached ();
6313
6314                         if (cfg->verbose_level > 2)
6315                                 g_print ("Argument %d assigned to register %s\n", pos, mono_arch_regname (inst->dreg));
6316                 } else {
6317                         switch (ainfo->storage) {
6318                         case RegTypeHFA:
6319                                 for (part = 0; part < ainfo->nregs; part ++) {
6320                                         if (ainfo->esize == 4)
6321                                                 ARM_FSTS (code, ainfo->reg + part, inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6322                                         else
6323                                                 ARM_FSTD (code, ainfo->reg + (part * 2), inst->inst_basereg, inst->inst_offset + (part * ainfo->esize));
6324                                 }
6325                                 break;
6326                         case RegTypeGeneral:
6327                         case RegTypeIRegPair:
6328                         case RegTypeGSharedVtInReg:
6329                                 switch (ainfo->size) {
6330                                 case 1:
6331                                         if (arm_is_imm12 (inst->inst_offset))
6332                                                 ARM_STRB_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6333                                         else {
6334                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6335                                                 ARM_STRB_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6336                                         }
6337                                         break;
6338                                 case 2:
6339                                         if (arm_is_imm8 (inst->inst_offset)) {
6340                                                 ARM_STRH_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6341                                         } else {
6342                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6343                                                 ARM_STRH_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6344                                         }
6345                                         break;
6346                                 case 8:
6347                                         if (arm_is_imm12 (inst->inst_offset)) {
6348                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6349                                         } else {
6350                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6351                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6352                                         }
6353                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6354                                                 ARM_STR_IMM (code, ainfo->reg + 1, inst->inst_basereg, inst->inst_offset + 4);
6355                                         } else {
6356                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6357                                                 ARM_STR_REG_REG (code, ainfo->reg + 1, inst->inst_basereg, ARMREG_IP);
6358                                         }
6359                                         break;
6360                                 default:
6361                                         if (arm_is_imm12 (inst->inst_offset)) {
6362                                                 ARM_STR_IMM (code, ainfo->reg, inst->inst_basereg, inst->inst_offset);
6363                                         } else {
6364                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6365                                                 ARM_STR_REG_REG (code, ainfo->reg, inst->inst_basereg, ARMREG_IP);
6366                                         }
6367                                         break;
6368                                 }
6369                                 break;
6370                         case RegTypeBaseGen:
6371                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6372                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6373                                 } else {
6374                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6375                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6376                                 }
6377                                 if (arm_is_imm12 (inst->inst_offset + 4)) {
6378                                         ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6379                                         ARM_STR_IMM (code, ARMREG_R3, inst->inst_basereg, inst->inst_offset);
6380                                 } else {
6381                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6382                                         ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6383                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6384                                         ARM_STR_REG_REG (code, ARMREG_R3, inst->inst_basereg, ARMREG_IP);
6385                                 }
6386                                 break;
6387                         case RegTypeBase:
6388                         case RegTypeGSharedVtOnStack:
6389                                 if (arm_is_imm12 (prev_sp_offset + ainfo->offset)) {
6390                                         ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset));
6391                                 } else {
6392                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset);
6393                                         ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6394                                 }
6395
6396                                 switch (ainfo->size) {
6397                                 case 1:
6398                                         if (arm_is_imm8 (inst->inst_offset)) {
6399                                                 ARM_STRB_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6400                                         } else {
6401                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6402                                                 ARM_STRB_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6403                                         }
6404                                         break;
6405                                 case 2:
6406                                         if (arm_is_imm8 (inst->inst_offset)) {
6407                                                 ARM_STRH_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6408                                         } else {
6409                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6410                                                 ARM_STRH_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6411                                         }
6412                                         break;
6413                                 case 8:
6414                                         if (arm_is_imm12 (inst->inst_offset)) {
6415                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6416                                         } else {
6417                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6418                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6419                                         }
6420                                         if (arm_is_imm12 (prev_sp_offset + ainfo->offset + 4)) {
6421                                                 ARM_LDR_IMM (code, ARMREG_LR, ARMREG_SP, (prev_sp_offset + ainfo->offset + 4));
6422                                         } else {
6423                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, prev_sp_offset + ainfo->offset + 4);
6424                                                 ARM_LDR_REG_REG (code, ARMREG_LR, ARMREG_SP, ARMREG_IP);
6425                                         }
6426                                         if (arm_is_imm12 (inst->inst_offset + 4)) {
6427                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset + 4);
6428                                         } else {
6429                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset + 4);
6430                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6431                                         }
6432                                         break;
6433                                 default:
6434                                         if (arm_is_imm12 (inst->inst_offset)) {
6435                                                 ARM_STR_IMM (code, ARMREG_LR, inst->inst_basereg, inst->inst_offset);
6436                                         } else {
6437                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6438                                                 ARM_STR_REG_REG (code, ARMREG_LR, inst->inst_basereg, ARMREG_IP);
6439                                         }
6440                                         break;
6441                                 }
6442                                 break;
6443                         case RegTypeFP: {
6444                                 int imm8, rot_amount;
6445
6446                                 if ((imm8 = mono_arm_is_rotated_imm8 (inst->inst_offset, &rot_amount)) == -1) {
6447                                         code = mono_arm_emit_load_imm (code, ARMREG_IP, inst->inst_offset);
6448                                         ARM_ADD_REG_REG (code, ARMREG_IP, ARMREG_IP, inst->inst_basereg);
6449                                 } else
6450                                         ARM_ADD_REG_IMM (code, ARMREG_IP, inst->inst_basereg, imm8, rot_amount);
6451
6452                                 if (ainfo->size == 8)
6453                                         ARM_FSTD (code, ainfo->reg, ARMREG_IP, 0);
6454                                 else
6455                                         ARM_FSTS (code, ainfo->reg, ARMREG_IP, 0);
6456                                 break;
6457                         }
6458                         case RegTypeStructByVal: {
6459                                 int doffset = inst->inst_offset;
6460                                 int soffset = 0;
6461                                 int cur_reg;
6462                                 int size = 0;
6463                                 size = mini_type_stack_size_full (inst->inst_vtype, NULL, sig->pinvoke);
6464                                 for (cur_reg = 0; cur_reg < ainfo->size; ++cur_reg) {
6465                                         if (arm_is_imm12 (doffset)) {
6466                                                 ARM_STR_IMM (code, ainfo->reg + cur_reg, inst->inst_basereg, doffset);
6467                                         } else {
6468                                                 code = mono_arm_emit_load_imm (code, ARMREG_IP, doffset);
6469                                                 ARM_STR_REG_REG (code, ainfo->reg + cur_reg, inst->inst_basereg, ARMREG_IP);
6470                                         }
6471                                         soffset += sizeof (gpointer);
6472                                         doffset += sizeof (gpointer);
6473                                 }
6474                                 if (ainfo->vtsize) {
6475                                         /* FIXME: handle overrun! with struct sizes not multiple of 4 */
6476                                         //g_print ("emit_memcpy (prev_sp_ofs: %d, ainfo->offset: %d, soffset: %d)\n", prev_sp_offset, ainfo->offset, soffset);
6477                                         code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, doffset, ARMREG_SP, prev_sp_offset + ainfo->offset);
6478                                 }
6479                                 break;
6480                         }
6481                         case RegTypeStructByAddr:
6482                                 g_assert_not_reached ();
6483                                 /* FIXME: handle overrun! with struct sizes not multiple of 4 */
6484                                 code = emit_memcpy (code, ainfo->vtsize * sizeof (gpointer), inst->inst_basereg, inst->inst_offset, ainfo->reg, 0);
6485                         default:
6486                                 g_assert_not_reached ();
6487                                 break;
6488                         }
6489                 }
6490                 pos++;
6491         }
6492
6493         if (method->save_lmf)
6494                 code = emit_save_lmf (cfg, code, alloc_size - lmf_offset);
6495
6496         if (tracing)
6497                 code = mono_arch_instrument_prolog (cfg, mono_trace_enter_method, code, TRUE);
6498
6499         if (cfg->arch.seq_point_info_var) {
6500                 MonoInst *ins = cfg->arch.seq_point_info_var;
6501
6502                 /* Initialize the variable from a GOT slot */
6503                 mono_add_patch_info (cfg, code - cfg->native_code, MONO_PATCH_INFO_SEQ_POINT_INFO, cfg->method);
6504 #ifdef USE_JUMP_TABLES
6505                 {
6506                         gpointer *jte = mono_jumptable_add_entry ();
6507                         code = mono_arm_load_jumptable_entry (code, jte, ARMREG_IP);
6508                         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_IP, 0);
6509                 }
6510                 /** XXX: is it correct? */
6511 #else
6512                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6513                 ARM_B (code, 0);
6514                 *(gpointer*)code = NULL;
6515                 code += 4;
6516 #endif
6517                 ARM_LDR_REG_REG (code, ARMREG_R0, ARMREG_PC, ARMREG_R0);
6518
6519                 g_assert (ins->opcode == OP_REGOFFSET);
6520
6521                 if (arm_is_imm12 (ins->inst_offset)) {
6522                         ARM_STR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6523                 } else {
6524                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6525                         ARM_STR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6526                 }
6527         }
6528
6529         /* Initialize ss_trigger_page_var */
6530         if (!cfg->soft_breakpoints) {
6531                 MonoInst *info_var = cfg->arch.seq_point_info_var;
6532                 MonoInst *ss_trigger_page_var = cfg->arch.ss_trigger_page_var;
6533                 int dreg = ARMREG_LR;
6534
6535                 if (info_var) {
6536                         g_assert (info_var->opcode == OP_REGOFFSET);
6537                         g_assert (arm_is_imm12 (info_var->inst_offset));
6538
6539                         ARM_LDR_IMM (code, dreg, info_var->inst_basereg, info_var->inst_offset);
6540                         /* Load the trigger page addr */
6541                         ARM_LDR_IMM (code, dreg, dreg, MONO_STRUCT_OFFSET (SeqPointInfo, ss_trigger_page));
6542                         ARM_STR_IMM (code, dreg, ss_trigger_page_var->inst_basereg, ss_trigger_page_var->inst_offset);
6543                 }
6544         }
6545
6546         if (cfg->arch.seq_point_ss_method_var) {
6547                 MonoInst *ss_method_ins = cfg->arch.seq_point_ss_method_var;
6548                 MonoInst *bp_method_ins = cfg->arch.seq_point_bp_method_var;
6549 #ifdef USE_JUMP_TABLES
6550                 gpointer *jte;
6551 #endif
6552                 g_assert (ss_method_ins->opcode == OP_REGOFFSET);
6553                 g_assert (arm_is_imm12 (ss_method_ins->inst_offset));
6554                 g_assert (bp_method_ins->opcode == OP_REGOFFSET);
6555                 g_assert (arm_is_imm12 (bp_method_ins->inst_offset));
6556
6557 #ifdef USE_JUMP_TABLES
6558                 jte = mono_jumptable_add_entries (3);
6559                 jte [0] = &single_step_tramp;
6560                 jte [1] = breakpoint_tramp;
6561                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_LR);
6562 #else
6563                 ARM_MOV_REG_REG (code, ARMREG_LR, ARMREG_PC);
6564                 ARM_B (code, 2);
6565                 *(gpointer*)code = &single_step_tramp;
6566                 code += 4;
6567                 *(gpointer*)code = breakpoint_tramp;
6568                 code += 4;
6569 #endif
6570
6571                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 0);
6572                 ARM_STR_IMM (code, ARMREG_IP, ss_method_ins->inst_basereg, ss_method_ins->inst_offset);
6573                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_LR, 4);
6574                 ARM_STR_IMM (code, ARMREG_IP, bp_method_ins->inst_basereg, bp_method_ins->inst_offset);
6575         }
6576
6577         cfg->code_len = code - cfg->native_code;
6578         g_assert (cfg->code_len < cfg->code_size);
6579         g_free (cinfo);
6580
6581         return code;
6582 }
6583
6584 void
6585 mono_arch_emit_epilog (MonoCompile *cfg)
6586 {
6587         MonoMethod *method = cfg->method;
6588         int pos, i, rot_amount;
6589         int max_epilog_size = 16 + 20*4;
6590         guint8 *code;
6591         CallInfo *cinfo;
6592
6593         if (cfg->method->save_lmf)
6594                 max_epilog_size += 128;
6595         
6596         if (mono_jit_trace_calls != NULL)
6597                 max_epilog_size += 50;
6598
6599         if (cfg->prof_options & MONO_PROFILE_ENTER_LEAVE)
6600                 max_epilog_size += 50;
6601
6602         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6603                 cfg->code_size *= 2;
6604                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6605                 cfg->stat_code_reallocs++;
6606         }
6607
6608         /*
6609          * Keep in sync with OP_JMP
6610          */
6611         code = cfg->native_code + cfg->code_len;
6612
6613         /* Save the uwind state which is needed by the out-of-line code */
6614         mono_emit_unwind_op_remember_state (cfg, code);
6615
6616         if (mono_jit_trace_calls != NULL && mono_trace_eval (method)) {
6617                 code = mono_arch_instrument_epilog (cfg, mono_trace_leave_method, code, TRUE);
6618         }
6619         pos = 0;
6620
6621         /* Load returned vtypes into registers if needed */
6622         cinfo = cfg->arch.cinfo;
6623         switch (cinfo->ret.storage) {
6624         case RegTypeStructByVal: {
6625                 MonoInst *ins = cfg->ret;
6626
6627                 if (arm_is_imm12 (ins->inst_offset)) {
6628                         ARM_LDR_IMM (code, ARMREG_R0, ins->inst_basereg, ins->inst_offset);
6629                 } else {
6630                         code = mono_arm_emit_load_imm (code, ARMREG_LR, ins->inst_offset);
6631                         ARM_LDR_REG_REG (code, ARMREG_R0, ins->inst_basereg, ARMREG_LR);
6632                 }
6633                 break;
6634         }
6635         case RegTypeHFA: {
6636                 MonoInst *ins = cfg->ret;
6637
6638                 for (i = 0; i < cinfo->ret.nregs; ++i) {
6639                         if (cinfo->ret.esize == 4)
6640                                 ARM_FLDS (code, cinfo->ret.reg + i, ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6641                         else
6642                                 ARM_FLDD (code, cinfo->ret.reg + (i * 2), ins->inst_basereg, ins->inst_offset + (i * cinfo->ret.esize));
6643                 }
6644                 break;
6645         }
6646         default:
6647                 break;
6648         }
6649
6650         if (method->save_lmf) {
6651                 int lmf_offset, reg, sp_adj, regmask, nused_int_regs = 0;
6652                 /* all but r0-r3, sp and pc */
6653                 pos += sizeof (MonoLMF) - (MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6654                 lmf_offset = pos;
6655
6656                 code = emit_restore_lmf (cfg, code, cfg->stack_usage - lmf_offset);
6657
6658                 /* This points to r4 inside MonoLMF->iregs */
6659                 sp_adj = (sizeof (MonoLMF) - MONO_ARM_NUM_SAVED_REGS * sizeof (mgreg_t));
6660                 reg = ARMREG_R4;
6661                 regmask = 0x9ff0; /* restore lr to pc */
6662                 /* Skip caller saved registers not used by the method */
6663                 while (!(cfg->used_int_regs & (1 << reg)) && reg < ARMREG_FP) {
6664                         regmask &= ~(1 << reg);
6665                         sp_adj += 4;
6666                         reg ++;
6667                 }
6668                 if (iphone_abi)
6669                         /* Restored later */
6670                         regmask &= ~(1 << ARMREG_PC);
6671                 /* point sp at the registers to restore: 10 is 14 -4, because we skip r0-r3 */
6672                 code = emit_big_add (code, ARMREG_SP, cfg->frame_reg, cfg->stack_usage - lmf_offset + sp_adj);
6673                 for (i = 0; i < 16; i++) {
6674                         if (regmask & (1 << i))
6675                                 nused_int_regs ++;
6676                 }
6677                 mono_emit_unwind_op_def_cfa (cfg, code, ARMREG_SP, ((iphone_abi ? 3 : 0) + nused_int_regs) * 4);
6678                 /* restore iregs */
6679                 ARM_POP (code, regmask); 
6680                 if (iphone_abi) {
6681                         for (i = 0; i < 16; i++) {
6682                                 if (regmask & (1 << i))
6683                                         mono_emit_unwind_op_same_value (cfg, code, i);
6684                         }
6685                         /* Restore saved r7, restore LR to PC */
6686                         /* Skip lr from the lmf */
6687                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 3 * 4);
6688                         ARM_ADD_REG_IMM (code, ARMREG_SP, ARMREG_SP, sizeof (gpointer), 0);
6689                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6690                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6691                 }
6692         } else {
6693                 int i, nused_int_regs = 0;
6694
6695                 for (i = 0; i < 16; i++) {
6696                         if (cfg->used_int_regs & (1 << i))
6697                                 nused_int_regs ++;
6698                 }
6699
6700                 if ((i = mono_arm_is_rotated_imm8 (cfg->stack_usage, &rot_amount)) >= 0) {
6701                         ARM_ADD_REG_IMM (code, ARMREG_SP, cfg->frame_reg, i, rot_amount);
6702                 } else {
6703                         code = mono_arm_emit_load_imm (code, ARMREG_IP, cfg->stack_usage);
6704                         ARM_ADD_REG_REG (code, ARMREG_SP, cfg->frame_reg, ARMREG_IP);
6705                 }
6706
6707                 if (cfg->frame_reg != ARMREG_SP) {
6708                         mono_emit_unwind_op_def_cfa_reg (cfg, code, ARMREG_SP);
6709                 }
6710
6711                 if (iphone_abi) {
6712                         /* Restore saved gregs */
6713                         if (cfg->used_int_regs) {
6714                                 mono_emit_unwind_op_def_cfa_offset (cfg, code, (2 + nused_int_regs) * 4);
6715                                 ARM_POP (code, cfg->used_int_regs);
6716                                 for (i = 0; i < 16; i++) {
6717                                         if (cfg->used_int_regs & (1 << i))
6718                                                 mono_emit_unwind_op_same_value (cfg, code, i);
6719                                 }
6720                         }
6721                         mono_emit_unwind_op_def_cfa_offset (cfg, code, 2 * 4);
6722                         /* Restore saved r7, restore LR to PC */
6723                         ARM_POP (code, (1 << ARMREG_R7) | (1 << ARMREG_PC));
6724                 } else {
6725                         mono_emit_unwind_op_def_cfa_offset (cfg, code, (nused_int_regs + 1) * 4);
6726                         ARM_POP (code, cfg->used_int_regs | (1 << ARMREG_PC));
6727                 }
6728         }
6729
6730         /* Restore the unwind state to be the same as before the epilog */
6731         mono_emit_unwind_op_restore_state (cfg, code);
6732
6733         cfg->code_len = code - cfg->native_code;
6734
6735         g_assert (cfg->code_len < cfg->code_size);
6736
6737 }
6738
6739 void
6740 mono_arch_emit_exceptions (MonoCompile *cfg)
6741 {
6742         MonoJumpInfo *patch_info;
6743         int i;
6744         guint8 *code;
6745         guint8* exc_throw_pos [MONO_EXC_INTRINS_NUM];
6746         guint8 exc_throw_found [MONO_EXC_INTRINS_NUM];
6747         int max_epilog_size = 50;
6748
6749         for (i = 0; i < MONO_EXC_INTRINS_NUM; i++) {
6750                 exc_throw_pos [i] = NULL;
6751                 exc_throw_found [i] = 0;
6752         }
6753
6754         /* count the number of exception infos */
6755      
6756         /* 
6757          * make sure we have enough space for exceptions
6758          */
6759         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6760                 if (patch_info->type == MONO_PATCH_INFO_EXC) {
6761                         i = mini_exception_id_by_name (patch_info->data.target);
6762                         if (!exc_throw_found [i]) {
6763                                 max_epilog_size += 32;
6764                                 exc_throw_found [i] = TRUE;
6765                         }
6766                 }
6767         }
6768
6769         while (cfg->code_len + max_epilog_size > (cfg->code_size - 16)) {
6770                 cfg->code_size *= 2;
6771                 cfg->native_code = g_realloc (cfg->native_code, cfg->code_size);
6772                 cfg->stat_code_reallocs++;
6773         }
6774
6775         code = cfg->native_code + cfg->code_len;
6776
6777         /* add code to raise exceptions */
6778         for (patch_info = cfg->patch_info; patch_info; patch_info = patch_info->next) {
6779                 switch (patch_info->type) {
6780                 case MONO_PATCH_INFO_EXC: {
6781                         MonoClass *exc_class;
6782                         unsigned char *ip = patch_info->ip.i + cfg->native_code;
6783
6784                         i = mini_exception_id_by_name (patch_info->data.target);
6785                         if (exc_throw_pos [i]) {
6786                                 arm_patch (ip, exc_throw_pos [i]);
6787                                 patch_info->type = MONO_PATCH_INFO_NONE;
6788                                 break;
6789                         } else {
6790                                 exc_throw_pos [i] = code;
6791                         }
6792                         arm_patch (ip, code);
6793
6794                         exc_class = mono_class_from_name (mono_defaults.corlib, "System", patch_info->data.name);
6795                         g_assert (exc_class);
6796
6797                         ARM_MOV_REG_REG (code, ARMREG_R1, ARMREG_LR);
6798 #ifdef USE_JUMP_TABLES
6799                         {
6800                                 gpointer *jte = mono_jumptable_add_entries (2);
6801                                 patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
6802                                 patch_info->data.name = "mono_arch_throw_corlib_exception";
6803                                 patch_info->ip.i = code - cfg->native_code;
6804                                 code = mono_arm_load_jumptable_entry_addr (code, jte, ARMREG_R0);
6805                                 ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R0, 0);
6806                                 ARM_LDR_IMM (code, ARMREG_R0, ARMREG_R0, 4);
6807                                 ARM_BLX_REG (code, ARMREG_IP);
6808                                 jte [1] = GUINT_TO_POINTER (exc_class->type_token);
6809                         }
6810 #else
6811                         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_PC, 0);
6812                         patch_info->type = MONO_PATCH_INFO_INTERNAL_METHOD;
6813                         patch_info->data.name = "mono_arch_throw_corlib_exception";
6814                         patch_info->ip.i = code - cfg->native_code;
6815                         ARM_BL (code, 0);
6816                         cfg->thunk_area += THUNK_SIZE;
6817                         *(guint32*)(gpointer)code = exc_class->type_token;
6818                         code += 4;
6819 #endif
6820                         break;
6821                 }
6822                 default:
6823                         /* do nothing */
6824                         break;
6825                 }
6826         }
6827
6828         cfg->code_len = code - cfg->native_code;
6829
6830         g_assert (cfg->code_len < cfg->code_size);
6831
6832 }
6833
6834 #endif /* #ifndef DISABLE_JIT */
6835
6836 void
6837 mono_arch_finish_init (void)
6838 {
6839 }
6840
6841 void
6842 mono_arch_free_jit_tls_data (MonoJitTlsData *tls)
6843 {
6844 }
6845
6846 MonoInst*
6847 mono_arch_emit_inst_for_method (MonoCompile *cfg, MonoMethod *cmethod, MonoMethodSignature *fsig, MonoInst **args)
6848 {
6849         /* FIXME: */
6850         return NULL;
6851 }
6852
6853 gboolean
6854 mono_arch_print_tree (MonoInst *tree, int arity)
6855 {
6856         return 0;
6857 }
6858
6859 #ifndef DISABLE_JIT
6860
6861 #endif
6862
6863 guint32
6864 mono_arch_get_patch_offset (guint8 *code)
6865 {
6866         /* OP_AOTCONST */
6867         return 8;
6868 }
6869
6870 void
6871 mono_arch_flush_register_windows (void)
6872 {
6873 }
6874
6875 MonoMethod*
6876 mono_arch_find_imt_method (mgreg_t *regs, guint8 *code)
6877 {
6878         return (MonoMethod*)regs [MONO_ARCH_IMT_REG];
6879 }
6880
6881 MonoVTable*
6882 mono_arch_find_static_call_vtable (mgreg_t *regs, guint8 *code)
6883 {
6884         return (MonoVTable*) regs [MONO_ARCH_RGCTX_REG];
6885 }
6886
6887 GSList*
6888 mono_arch_get_cie_program (void)
6889 {
6890         GSList *l = NULL;
6891
6892         mono_add_unwind_op_def_cfa (l, (guint8*)NULL, (guint8*)NULL, ARMREG_SP, 0);
6893
6894         return l;
6895 }
6896
6897 /* #define ENABLE_WRONG_METHOD_CHECK 1 */
6898 #define BASE_SIZE (6 * 4)
6899 #define BSEARCH_ENTRY_SIZE (4 * 4)
6900 #define CMP_SIZE (3 * 4)
6901 #define BRANCH_SIZE (1 * 4)
6902 #define CALL_SIZE (2 * 4)
6903 #define WMC_SIZE (8 * 4)
6904 #define DISTANCE(A, B) (((gint32)(B)) - ((gint32)(A)))
6905
6906 #ifdef USE_JUMP_TABLES
6907 static void
6908 set_jumptable_element (gpointer *base, guint32 index, gpointer value)
6909 {
6910         g_assert (base [index] == NULL);
6911         base [index] = value;
6912 }
6913 static arminstr_t *
6914 load_element_with_regbase_cond (arminstr_t *code, ARMReg dreg, ARMReg base, guint32 jti, int cond)
6915 {
6916         if (arm_is_imm12 (jti * 4)) {
6917                 ARM_LDR_IMM_COND (code, dreg, base, jti * 4, cond);
6918         } else {
6919                 ARM_MOVW_REG_IMM_COND (code, dreg, (jti * 4) & 0xffff, cond);
6920                 if ((jti * 4) >> 16)
6921                         ARM_MOVT_REG_IMM_COND (code, dreg, ((jti * 4) >> 16) & 0xffff, cond);
6922                 ARM_LDR_REG_REG_SHIFT_COND (code, dreg, base, dreg, ARMSHIFT_LSL, 0, cond);
6923         }
6924         return code;
6925 }
6926 #else
6927 static arminstr_t *
6928 arm_emit_value_and_patch_ldr (arminstr_t *code, arminstr_t *target, guint32 value)
6929 {
6930         guint32 delta = DISTANCE (target, code);
6931         delta -= 8;
6932         g_assert (delta >= 0 && delta <= 0xFFF);
6933         *target = *target | delta;
6934         *code = value;
6935         return code + 1;
6936 }
6937 #endif
6938
6939 #ifdef ENABLE_WRONG_METHOD_CHECK
6940 static void
6941 mini_dump_bad_imt (int input_imt, int compared_imt, int pc)
6942 {
6943         g_print ("BAD IMT comparing %x with expected %x at ip %x", input_imt, compared_imt, pc);
6944         g_assert (0);
6945 }
6946 #endif
6947
6948 gpointer
6949 mono_arch_build_imt_thunk (MonoVTable *vtable, MonoDomain *domain, MonoIMTCheckItem **imt_entries, int count,
6950         gpointer fail_tramp)
6951 {
6952         int size, i;
6953         arminstr_t *code, *start;
6954 #ifdef USE_JUMP_TABLES
6955         gpointer *jte;
6956 #else
6957         gboolean large_offsets = FALSE;
6958         guint32 **constant_pool_starts;
6959         arminstr_t *vtable_target = NULL;
6960         int extra_space = 0;
6961 #endif
6962 #ifdef ENABLE_WRONG_METHOD_CHECK
6963         char * cond;
6964 #endif
6965         GSList *unwind_ops;
6966
6967         size = BASE_SIZE;
6968 #ifdef USE_JUMP_TABLES
6969         for (i = 0; i < count; ++i) {
6970                 MonoIMTCheckItem *item = imt_entries [i];
6971                 item->chunk_size += 4 * 16;
6972                 if (!item->is_equals)
6973                         imt_entries [item->check_target_idx]->compare_done = TRUE;
6974                 size += item->chunk_size;
6975         }
6976 #else
6977         constant_pool_starts = g_new0 (guint32*, count);
6978
6979         for (i = 0; i < count; ++i) {
6980                 MonoIMTCheckItem *item = imt_entries [i];
6981                 if (item->is_equals) {
6982                         gboolean fail_case = !item->check_target_idx && fail_tramp;
6983
6984                         if (item->has_target_code || !arm_is_imm12 (DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]))) {
6985                                 item->chunk_size += 32;
6986                                 large_offsets = TRUE;
6987                         }
6988
6989                         if (item->check_target_idx || fail_case) {
6990                                 if (!item->compare_done || fail_case)
6991                                         item->chunk_size += CMP_SIZE;
6992                                 item->chunk_size += BRANCH_SIZE;
6993                         } else {
6994 #ifdef ENABLE_WRONG_METHOD_CHECK
6995                                 item->chunk_size += WMC_SIZE;
6996 #endif
6997                         }
6998                         if (fail_case) {
6999                                 item->chunk_size += 16;
7000                                 large_offsets = TRUE;
7001                         }
7002                         item->chunk_size += CALL_SIZE;
7003                 } else {
7004                         item->chunk_size += BSEARCH_ENTRY_SIZE;
7005                         imt_entries [item->check_target_idx]->compare_done = TRUE;
7006                 }
7007                 size += item->chunk_size;
7008         }
7009
7010         if (large_offsets)
7011                 size += 4 * count; /* The ARM_ADD_REG_IMM to pop the stack */
7012 #endif
7013
7014         if (fail_tramp)
7015                 code = mono_method_alloc_generic_virtual_thunk (domain, size);
7016         else
7017                 code = mono_domain_code_reserve (domain, size);
7018         start = code;
7019
7020         unwind_ops = mono_arch_get_cie_program ();
7021
7022 #ifdef DEBUG_IMT
7023         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);
7024         for (i = 0; i < count; ++i) {
7025                 MonoIMTCheckItem *item = imt_entries [i];
7026                 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);
7027         }
7028 #endif
7029
7030 #ifdef USE_JUMP_TABLES
7031         ARM_PUSH3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7032         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 3 * sizeof (mgreg_t));
7033 #define VTABLE_JTI 0
7034 #define IMT_METHOD_OFFSET 0
7035 #define TARGET_CODE_OFFSET 1
7036 #define JUMP_CODE_OFFSET 2
7037 #define RECORDS_PER_ENTRY 3
7038 #define IMT_METHOD_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + IMT_METHOD_OFFSET)
7039 #define TARGET_CODE_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + TARGET_CODE_OFFSET)
7040 #define JUMP_CODE_JTI(idx) (1 + idx * RECORDS_PER_ENTRY + JUMP_CODE_OFFSET)
7041
7042         jte = mono_jumptable_add_entries (RECORDS_PER_ENTRY * count + 1 /* vtable */);
7043         code = (arminstr_t *) mono_arm_load_jumptable_entry_addr ((guint8 *) code, jte, ARMREG_R2);
7044         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_R2, VTABLE_JTI);
7045         set_jumptable_element (jte, VTABLE_JTI, vtable);
7046 #else
7047         if (large_offsets) {
7048                 ARM_PUSH4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7049                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 4 * sizeof (mgreg_t));
7050         } else {
7051                 ARM_PUSH2 (code, ARMREG_R0, ARMREG_R1);
7052                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
7053         }
7054         ARM_LDR_IMM (code, ARMREG_R0, ARMREG_LR, -4);
7055         vtable_target = code;
7056         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_PC, 0);
7057 #endif
7058         ARM_MOV_REG_REG (code, ARMREG_R0, ARMREG_V5);
7059
7060         for (i = 0; i < count; ++i) {
7061                 MonoIMTCheckItem *item = imt_entries [i];
7062 #ifdef USE_JUMP_TABLES
7063                 guint32 imt_method_jti = 0, target_code_jti = 0;
7064 #else
7065                 arminstr_t *imt_method = NULL, *vtable_offset_ins = NULL, *target_code_ins = NULL;
7066 #endif
7067                 gint32 vtable_offset;
7068
7069                 item->code_target = (guint8*)code;
7070
7071                 if (item->is_equals) {
7072                         gboolean fail_case = !item->check_target_idx && fail_tramp;
7073
7074                         if (item->check_target_idx || fail_case) {
7075                                 if (!item->compare_done || fail_case) {
7076 #ifdef USE_JUMP_TABLES
7077                                         imt_method_jti = IMT_METHOD_JTI (i);
7078                                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, imt_method_jti, ARMCOND_AL);
7079 #else
7080                                         imt_method = code;
7081                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7082 #endif
7083                                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7084                                 }
7085 #ifdef USE_JUMP_TABLES
7086                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, JUMP_CODE_JTI (i), ARMCOND_NE);
7087                                 ARM_BX_COND (code, ARMCOND_NE, ARMREG_R1);
7088                                 item->jmp_code = GUINT_TO_POINTER (JUMP_CODE_JTI (i));
7089 #else
7090                                 item->jmp_code = (guint8*)code;
7091                                 ARM_B_COND (code, ARMCOND_NE, 0);
7092 #endif
7093                         } else {
7094                                 /*Enable the commented code to assert on wrong method*/
7095 #ifdef ENABLE_WRONG_METHOD_CHECK
7096 #ifdef USE_JUMP_TABLES
7097                                 imt_method_jti = IMT_METHOD_JTI (i);
7098                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, imt_method_jti, ARMCOND_AL);
7099 #else
7100                                 imt_method = code;
7101                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7102 #endif
7103                                 ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7104                                 cond = code;
7105                                 ARM_B_COND (code, ARMCOND_EQ, 0);
7106
7107 /* Define this if your system is so bad that gdb is failing. */
7108 #ifdef BROKEN_DEV_ENV
7109                                 ARM_MOV_REG_REG (code, ARMREG_R2, ARMREG_PC);
7110                                 ARM_BL (code, 0);
7111                                 arm_patch (code - 1, mini_dump_bad_imt);
7112 #else
7113                                 ARM_DBRK (code);
7114 #endif
7115                                 arm_patch (cond, code);
7116 #endif
7117                         }
7118
7119                         if (item->has_target_code) {
7120                                 /* Load target address */
7121 #ifdef USE_JUMP_TABLES
7122                                 target_code_jti = TARGET_CODE_JTI (i);
7123                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, target_code_jti, ARMCOND_AL);
7124                                 /* Restore registers */
7125                                 ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7126                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7127                                 /*  And branch */
7128                                 ARM_BX (code, ARMREG_R1);
7129                                 set_jumptable_element (jte, target_code_jti, item->value.target_code);
7130 #else
7131                                 target_code_ins = code;
7132                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7133                                 /* Save it to the fourth slot */
7134                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7135                                 /* Restore registers and branch */
7136                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7137                                 
7138                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)item->value.target_code);
7139 #endif
7140                         } else {
7141                                 vtable_offset = DISTANCE (vtable, &vtable->vtable[item->value.vtable_slot]);
7142                                 if (!arm_is_imm12 (vtable_offset)) {
7143                                         /* 
7144                                          * We need to branch to a computed address but we don't have
7145                                          * a free register to store it, since IP must contain the 
7146                                          * vtable address. So we push the two values to the stack, and
7147                                          * load them both using LDM.
7148                                          */
7149                                         /* Compute target address */
7150 #ifdef USE_JUMP_TABLES
7151                                         ARM_MOVW_REG_IMM (code, ARMREG_R1, vtable_offset & 0xffff);
7152                                         if (vtable_offset >> 16)
7153                                                 ARM_MOVT_REG_IMM (code, ARMREG_R1, (vtable_offset >> 16) & 0xffff);
7154                                         /* IP had vtable base. */
7155                                         ARM_LDR_REG_REG (code, ARMREG_IP, ARMREG_IP, ARMREG_R1);
7156                                         /* Restore registers and branch */
7157                                         ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7158                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7159                                         ARM_BX (code, ARMREG_IP);
7160 #else
7161                                         vtable_offset_ins = code;
7162                                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7163                                         ARM_LDR_REG_REG (code, ARMREG_R1, ARMREG_IP, ARMREG_R1);
7164                                         /* Save it to the fourth slot */
7165                                         ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7166                                         /* Restore registers and branch */
7167                                         ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7168                                 
7169                                         code = arm_emit_value_and_patch_ldr (code, vtable_offset_ins, vtable_offset);
7170 #endif
7171                                 } else {
7172 #ifdef USE_JUMP_TABLES
7173                                         ARM_LDR_IMM (code, ARMREG_IP, ARMREG_IP, vtable_offset);
7174                                         ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7175                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7176                                         ARM_BX (code, ARMREG_IP);
7177 #else
7178                                         ARM_POP2 (code, ARMREG_R0, ARMREG_R1);
7179                                         if (large_offsets) {
7180                                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 2 * sizeof (mgreg_t));
7181                                                 ARM_ADD_REG_IMM8 (code, ARMREG_SP, ARMREG_SP, 2 * sizeof (gpointer));
7182                                         }
7183                                         mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7184                                         ARM_LDR_IMM (code, ARMREG_PC, ARMREG_IP, vtable_offset);
7185 #endif
7186                                 }
7187                         }
7188
7189                         if (fail_case) {
7190 #ifdef USE_JUMP_TABLES
7191                                 set_jumptable_element (jte, GPOINTER_TO_UINT (item->jmp_code), code);
7192                                 target_code_jti = TARGET_CODE_JTI (i);
7193                                 /* Load target address */
7194                                 code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, target_code_jti, ARMCOND_AL);
7195                                 /* Restore registers */
7196                                 ARM_POP3 (code, ARMREG_R0, ARMREG_R1, ARMREG_R2);
7197                                 mono_add_unwind_op_def_cfa_offset (unwind_ops, code, start, 0);
7198                                 /* And branch */
7199                                 ARM_BX (code, ARMREG_R1);
7200                                 set_jumptable_element (jte, target_code_jti, fail_tramp);
7201 #else
7202                                 arm_patch (item->jmp_code, (guchar*)code);
7203
7204                                 target_code_ins = code;
7205                                 /* Load target address */
7206                                 ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7207                                 /* Save it to the fourth slot */
7208                                 ARM_STR_IMM (code, ARMREG_R1, ARMREG_SP, 3 * sizeof (gpointer));
7209                                 /* Restore registers and branch */
7210                                 ARM_POP4 (code, ARMREG_R0, ARMREG_R1, ARMREG_IP, ARMREG_PC);
7211                                 
7212                                 code = arm_emit_value_and_patch_ldr (code, target_code_ins, (gsize)fail_tramp);
7213 #endif
7214                                 item->jmp_code = NULL;
7215                         }
7216
7217 #ifdef USE_JUMP_TABLES
7218                         if (imt_method_jti)
7219                                 set_jumptable_element (jte, imt_method_jti, item->key);
7220 #else
7221                         if (imt_method)
7222                                 code = arm_emit_value_and_patch_ldr (code, imt_method, (guint32)item->key);
7223
7224                         /*must emit after unconditional branch*/
7225                         if (vtable_target) {
7226                                 code = arm_emit_value_and_patch_ldr (code, vtable_target, (guint32)vtable);
7227                                 item->chunk_size += 4;
7228                                 vtable_target = NULL;
7229                         }
7230
7231                         /*We reserve the space for bsearch IMT values after the first entry with an absolute jump*/
7232                         constant_pool_starts [i] = code;
7233                         if (extra_space) {
7234                                 code += extra_space;
7235                                 extra_space = 0;
7236                         }
7237 #endif
7238                 } else {
7239 #ifdef USE_JUMP_TABLES
7240                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, IMT_METHOD_JTI (i), ARMCOND_AL);
7241                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7242                         code = load_element_with_regbase_cond (code, ARMREG_R1, ARMREG_R2, JUMP_CODE_JTI (i), ARMCOND_HS);
7243                         ARM_BX_COND (code, ARMCOND_HS, ARMREG_R1);
7244                         item->jmp_code = GUINT_TO_POINTER (JUMP_CODE_JTI (i));
7245 #else
7246                         ARM_LDR_IMM (code, ARMREG_R1, ARMREG_PC, 0);
7247                         ARM_CMP_REG_REG (code, ARMREG_R0, ARMREG_R1);
7248
7249                         item->jmp_code = (guint8*)code;
7250                         ARM_B_COND (code, ARMCOND_HS, 0);
7251                         ++extra_space;
7252 #endif
7253                 }
7254         }
7255
7256         for (i = 0; i < count; ++i) {
7257                 MonoIMTCheckItem *item = imt_entries [i];
7258                 if (item->jmp_code) {
7259                         if (item->check_target_idx)
7260 #ifdef USE_JUMP_TABLES
7261                                 set_jumptable_element (jte, GPOINTER_TO_UINT (item->jmp_code), imt_entries [item->check_target_idx]->code_target);
7262 #else
7263                                 arm_patch (item->jmp_code, imt_entries [item->check_target_idx]->code_target);
7264 #endif
7265                 }
7266                 if (i > 0 && item->is_equals) {
7267                         int j;
7268 #ifdef USE_JUMP_TABLES
7269                         for (j = i - 1; j >= 0 && !imt_entries [j]->is_equals; --j)
7270                                 set_jumptable_element (jte, IMT_METHOD_JTI (j), imt_entries [j]->key);
7271 #else
7272                         arminstr_t *space_start = constant_pool_starts [i];
7273                         for (j = i - 1; j >= 0 && !imt_entries [j]->is_equals; --j) {
7274                                 space_start = arm_emit_value_and_patch_ldr (space_start, (arminstr_t*)imt_entries [j]->code_target, (guint32)imt_entries [j]->key);
7275                         }
7276 #endif
7277                 }
7278         }
7279
7280 #ifdef DEBUG_IMT
7281         {
7282                 char *buff = g_strdup_printf ("thunk_for_class_%s_%s_entries_%d", vtable->klass->name_space, vtable->klass->name, count);
7283                 mono_disassemble_code (NULL, (guint8*)start, size, buff);
7284                 g_free (buff);
7285         }
7286 #endif
7287
7288 #ifndef USE_JUMP_TABLES
7289         g_free (constant_pool_starts);
7290 #endif
7291
7292         mono_arch_flush_icache ((guint8*)start, size);
7293         mono_profiler_code_buffer_new (start, code - start, MONO_PROFILER_CODE_BUFFER_IMT_TRAMPOLINE, NULL);
7294         mono_stats.imt_thunks_size += code - start;
7295
7296         g_assert (DISTANCE (start, code) <= size);
7297
7298         mono_tramp_info_register (mono_tramp_info_create (NULL, (guint8*)start, DISTANCE (start, code), NULL, unwind_ops), domain);
7299
7300         return start;
7301 }
7302
7303 mgreg_t
7304 mono_arch_context_get_int_reg (MonoContext *ctx, int reg)
7305 {
7306         return ctx->regs [reg];
7307 }
7308
7309 void
7310 mono_arch_context_set_int_reg (MonoContext *ctx, int reg, mgreg_t val)
7311 {
7312         ctx->regs [reg] = val;
7313 }
7314
7315 /*
7316  * mono_arch_get_trampolines:
7317  *
7318  *   Return a list of MonoTrampInfo structures describing arch specific trampolines
7319  * for AOT.
7320  */
7321 GSList *
7322 mono_arch_get_trampolines (gboolean aot)
7323 {
7324         return mono_arm_get_exception_trampolines (aot);
7325 }
7326
7327 gpointer
7328 mono_arch_install_handler_block_guard (MonoJitInfo *ji, MonoJitExceptionInfo *clause, MonoContext *ctx, gpointer new_value)
7329 {
7330         gpointer *lr_loc;
7331         char *old_value;
7332         char *bp;
7333
7334         /*Load the spvar*/
7335         bp = MONO_CONTEXT_GET_BP (ctx);
7336         lr_loc = (gpointer*)(bp + clause->exvar_offset);
7337
7338         old_value = *lr_loc;
7339         if ((char*)old_value < (char*)ji->code_start || (char*)old_value > ((char*)ji->code_start + ji->code_size))
7340                 return old_value;
7341
7342         *lr_loc = new_value;
7343
7344         return old_value;
7345 }
7346
7347 #if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED)
7348 /*
7349  * mono_arch_set_breakpoint:
7350  *
7351  *   Set a breakpoint at the native code corresponding to JI at NATIVE_OFFSET.
7352  * The location should contain code emitted by OP_SEQ_POINT.
7353  */
7354 void
7355 mono_arch_set_breakpoint (MonoJitInfo *ji, guint8 *ip)
7356 {
7357         guint8 *code = ip;
7358         guint32 native_offset = ip - (guint8*)ji->code_start;
7359         MonoDebugOptions *opt = mini_get_debug_options ();
7360
7361         if (opt->soft_breakpoints) {
7362                 g_assert (!ji->from_aot);
7363                 code += 4;
7364                 ARM_BLX_REG (code, ARMREG_LR);
7365                 mono_arch_flush_icache (code - 4, 4);
7366         } else if (ji->from_aot) {
7367                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7368
7369                 g_assert (native_offset % 4 == 0);
7370                 g_assert (info->bp_addrs [native_offset / 4] == 0);
7371                 info->bp_addrs [native_offset / 4] = bp_trigger_page;
7372         } else {
7373                 int dreg = ARMREG_LR;
7374
7375                 /* Read from another trigger page */
7376 #ifdef USE_JUMP_TABLES
7377                 gpointer *jte = mono_jumptable_add_entry ();
7378                 code = mono_arm_load_jumptable_entry (code, jte, dreg);
7379                 jte [0] = bp_trigger_page;
7380 #else
7381                 ARM_LDR_IMM (code, dreg, ARMREG_PC, 0);
7382                 ARM_B (code, 0);
7383                 *(int*)code = (int)bp_trigger_page;
7384                 code += 4;
7385 #endif
7386                 ARM_LDR_IMM (code, dreg, dreg, 0);
7387
7388                 mono_arch_flush_icache (code - 16, 16);
7389
7390 #if 0
7391                 /* This is currently implemented by emitting an SWI instruction, which 
7392                  * qemu/linux seems to convert to a SIGILL.
7393                  */
7394                 *(int*)code = (0xef << 24) | 8;
7395                 code += 4;
7396                 mono_arch_flush_icache (code - 4, 4);
7397 #endif
7398         }
7399 }
7400
7401 /*
7402  * mono_arch_clear_breakpoint:
7403  *
7404  *   Clear the breakpoint at IP.
7405  */
7406 void
7407 mono_arch_clear_breakpoint (MonoJitInfo *ji, guint8 *ip)
7408 {
7409         MonoDebugOptions *opt = mini_get_debug_options ();
7410         guint8 *code = ip;
7411         int i;
7412
7413         if (opt->soft_breakpoints) {
7414                 g_assert (!ji->from_aot);
7415                 code += 4;
7416                 ARM_NOP (code);
7417                 mono_arch_flush_icache (code - 4, 4);
7418         } else if (ji->from_aot) {
7419                 guint32 native_offset = ip - (guint8*)ji->code_start;
7420                 SeqPointInfo *info = mono_arch_get_seq_point_info (mono_domain_get (), ji->code_start);
7421
7422                 g_assert (native_offset % 4 == 0);
7423                 g_assert (info->bp_addrs [native_offset / 4] == bp_trigger_page);
7424                 info->bp_addrs [native_offset / 4] = 0;
7425         } else {
7426                 for (i = 0; i < 4; ++i)
7427                         ARM_NOP (code);
7428
7429                 mono_arch_flush_icache (ip, code - ip);
7430         }
7431 }
7432         
7433 /*
7434  * mono_arch_start_single_stepping:
7435  *
7436  *   Start single stepping.
7437  */
7438 void
7439 mono_arch_start_single_stepping (void)
7440 {
7441         if (ss_trigger_page)
7442                 mono_mprotect (ss_trigger_page, mono_pagesize (), 0);
7443         else
7444                 single_step_tramp = mini_get_single_step_trampoline ();
7445 }
7446         
7447 /*
7448  * mono_arch_stop_single_stepping:
7449  *
7450  *   Stop single stepping.
7451  */
7452 void
7453 mono_arch_stop_single_stepping (void)
7454 {
7455         if (ss_trigger_page)
7456                 mono_mprotect (ss_trigger_page, mono_pagesize (), MONO_MMAP_READ);
7457         else
7458                 single_step_tramp = NULL;
7459 }
7460
7461 #if __APPLE__
7462 #define DBG_SIGNAL SIGBUS
7463 #else
7464 #define DBG_SIGNAL SIGSEGV
7465 #endif
7466
7467 /*
7468  * mono_arch_is_single_step_event:
7469  *
7470  *   Return whenever the machine state in SIGCTX corresponds to a single
7471  * step event.
7472  */
7473 gboolean
7474 mono_arch_is_single_step_event (void *info, void *sigctx)
7475 {
7476         siginfo_t *sinfo = info;
7477
7478         if (!ss_trigger_page)
7479                 return FALSE;
7480
7481         /* Sometimes the address is off by 4 */
7482         if (sinfo->si_addr >= ss_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)ss_trigger_page + 128)
7483                 return TRUE;
7484         else
7485                 return FALSE;
7486 }
7487
7488 /*
7489  * mono_arch_is_breakpoint_event:
7490  *
7491  *   Return whenever the machine state in SIGCTX corresponds to a breakpoint event.
7492  */
7493 gboolean
7494 mono_arch_is_breakpoint_event (void *info, void *sigctx)
7495 {
7496         siginfo_t *sinfo = info;
7497
7498         if (!ss_trigger_page)
7499                 return FALSE;
7500
7501         if (sinfo->si_signo == DBG_SIGNAL) {
7502                 /* Sometimes the address is off by 4 */
7503                 if (sinfo->si_addr >= bp_trigger_page && (guint8*)sinfo->si_addr <= (guint8*)bp_trigger_page + 128)
7504                         return TRUE;
7505                 else
7506                         return FALSE;
7507         } else {
7508                 return FALSE;
7509         }
7510 }
7511
7512 /*
7513  * mono_arch_skip_breakpoint:
7514  *
7515  *   See mini-amd64.c for docs.
7516  */
7517 void
7518 mono_arch_skip_breakpoint (MonoContext *ctx, MonoJitInfo *ji)
7519 {
7520         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7521 }
7522
7523 /*
7524  * mono_arch_skip_single_step:
7525  *
7526  *   See mini-amd64.c for docs.
7527  */
7528 void
7529 mono_arch_skip_single_step (MonoContext *ctx)
7530 {
7531         MONO_CONTEXT_SET_IP (ctx, (guint8*)MONO_CONTEXT_GET_IP (ctx) + 4);
7532 }
7533
7534 #endif /* MONO_ARCH_SOFT_DEBUG_SUPPORTED */
7535
7536 /*
7537  * mono_arch_get_seq_point_info:
7538  *
7539  *   See mini-amd64.c for docs.
7540  */
7541 gpointer
7542 mono_arch_get_seq_point_info (MonoDomain *domain, guint8 *code)
7543 {
7544         SeqPointInfo *info;
7545         MonoJitInfo *ji;
7546
7547         // FIXME: Add a free function
7548
7549         mono_domain_lock (domain);
7550         info = g_hash_table_lookup (domain_jit_info (domain)->arch_seq_points, 
7551                                                                 code);
7552         mono_domain_unlock (domain);
7553
7554         if (!info) {
7555                 ji = mono_jit_info_table_find (domain, (char*)code);
7556                 g_assert (ji);
7557
7558                 info = g_malloc0 (sizeof (SeqPointInfo) + ji->code_size);
7559
7560                 info->ss_trigger_page = ss_trigger_page;
7561                 info->bp_trigger_page = bp_trigger_page;
7562
7563                 mono_domain_lock (domain);
7564                 g_hash_table_insert (domain_jit_info (domain)->arch_seq_points,
7565                                                          code, info);
7566                 mono_domain_unlock (domain);
7567         }
7568
7569         return info;
7570 }
7571
7572 void
7573 mono_arch_init_lmf_ext (MonoLMFExt *ext, gpointer prev_lmf)
7574 {
7575         ext->lmf.previous_lmf = prev_lmf;
7576         /* Mark that this is a MonoLMFExt */
7577         ext->lmf.previous_lmf = (gpointer)(((gssize)ext->lmf.previous_lmf) | 2);
7578         ext->lmf.sp = (gssize)ext;
7579 }
7580
7581 /*
7582  * mono_arch_set_target:
7583  *
7584  *   Set the target architecture the JIT backend should generate code for, in the form
7585  * of a GNU target triplet. Only used in AOT mode.
7586  */
7587 void
7588 mono_arch_set_target (char *mtriple)
7589 {
7590         /* The GNU target triple format is not very well documented */
7591         if (strstr (mtriple, "armv7")) {
7592                 v5_supported = TRUE;
7593                 v6_supported = TRUE;
7594                 v7_supported = TRUE;
7595         }
7596         if (strstr (mtriple, "armv6")) {
7597                 v5_supported = TRUE;
7598                 v6_supported = TRUE;
7599         }
7600         if (strstr (mtriple, "armv7s")) {
7601                 v7s_supported = TRUE;
7602         }
7603         if (strstr (mtriple, "armv7k")) {
7604                 v7k_supported = TRUE;
7605         }
7606         if (strstr (mtriple, "thumbv7s")) {
7607                 v5_supported = TRUE;
7608                 v6_supported = TRUE;
7609                 v7_supported = TRUE;
7610                 v7s_supported = TRUE;
7611                 thumb_supported = TRUE;
7612                 thumb2_supported = TRUE;
7613         }
7614         if (strstr (mtriple, "darwin") || strstr (mtriple, "ios")) {
7615                 v5_supported = TRUE;
7616                 v6_supported = TRUE;
7617                 thumb_supported = TRUE;
7618                 iphone_abi = TRUE;
7619         }
7620         if (strstr (mtriple, "gnueabi"))
7621                 eabi_supported = TRUE;
7622 }
7623
7624 gboolean
7625 mono_arch_opcode_supported (int opcode)
7626 {
7627         switch (opcode) {
7628         case OP_ATOMIC_ADD_I4:
7629         case OP_ATOMIC_EXCHANGE_I4:
7630         case OP_ATOMIC_CAS_I4:
7631         case OP_ATOMIC_LOAD_I1:
7632         case OP_ATOMIC_LOAD_I2:
7633         case OP_ATOMIC_LOAD_I4:
7634         case OP_ATOMIC_LOAD_U1:
7635         case OP_ATOMIC_LOAD_U2:
7636         case OP_ATOMIC_LOAD_U4:
7637         case OP_ATOMIC_STORE_I1:
7638         case OP_ATOMIC_STORE_I2:
7639         case OP_ATOMIC_STORE_I4:
7640         case OP_ATOMIC_STORE_U1:
7641         case OP_ATOMIC_STORE_U2:
7642         case OP_ATOMIC_STORE_U4:
7643                 return v7_supported;
7644         case OP_ATOMIC_LOAD_R4:
7645         case OP_ATOMIC_LOAD_R8:
7646         case OP_ATOMIC_STORE_R4:
7647         case OP_ATOMIC_STORE_R8:
7648                 return v7_supported && IS_VFP;
7649         default:
7650                 return FALSE;
7651         }
7652 }
7653
7654 #if defined(ENABLE_GSHAREDVT)
7655
7656 #include "../../../mono-extensions/mono/mini/mini-arm-gsharedvt.c"
7657
7658 #endif /* !MONOTOUCH */