2 * mini-amd64-gsharedvt.c: libcorkscrew-based native unwinder
5 * Zoltan Varga <vargaz@gmail.com>
6 * Rodrigo Kumpera <kumpera@gmail.com>
7 * Andi McClure <andi.mcclure@xamarin.com>
8 * Johan Lorensson <johan.lorensson@xamarin.com>
10 * Copyright 2015 Xamarin, Inc (http://www.xamarin.com)
11 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
16 #include <mono/metadata/abi-details.h>
17 #include <mono/metadata/appdomain.h>
18 #include <mono/metadata/marshal.h>
19 #include <mono/metadata/tabledefs.h>
20 #include <mono/metadata/mono-debug-debugger.h>
21 #include <mono/metadata/profiler-private.h>
22 #include <mono/metadata/gc-internals.h>
23 #include <mono/arch/amd64/amd64-codegen.h>
25 #include <mono/utils/memcheck.h>
28 #include "mini-amd64.h"
29 #include "mini-amd64-gsharedvt.h"
30 #include "debugger-agent.h"
32 #if defined (MONO_ARCH_GSHAREDVT_SUPPORTED)
34 #define ALIGN_TO(val,align) ((((guint64)val) + ((align) - 1)) & ~((align) - 1))
37 mono_arch_gsharedvt_sig_supported (MonoMethodSignature
*sig
)
43 storage_name (ArgStorage st
)
46 case ArgInIReg
: return "ArgInIReg";
47 case ArgInFloatSSEReg
: return "ArgInFloatSSEReg";
48 case ArgInDoubleSSEReg
: return "ArgInDoubleSSEReg";
49 case ArgOnStack
: return "ArgOnStack";
50 case ArgValuetypeInReg
: return "ArgValuetypeInReg";
51 case ArgValuetypeAddrInIReg
: return "ArgValuetypeAddrInIReg";
52 case ArgGSharedVtInReg
: return "ArgGSharedVtInReg";
53 case ArgGSharedVtOnStack
: return "ArgGSharedVtOnStack";
54 case ArgNone
: return "ArgNone";
55 default: return "unknown";
60 arg_info_desc (ArgInfo
*info
)
62 GString
*str
= g_string_new ("");
64 g_string_append_printf (str
, "offset %d reg %s storage %s nregs %d", info
->offset
, mono_arch_regname (info
->reg
), storage_name (info
->storage
), info
->nregs
);
65 if (info
->storage
== ArgValuetypeInReg
)
66 g_string_append_printf (str
, " {(%s %s), (%s %s)",
67 storage_name (info
->pair_storage
[0]),
68 mono_arch_regname (info
->pair_regs
[0]),
69 storage_name (info
->pair_storage
[1]),
70 mono_arch_regname (info
->pair_regs
[1]));
72 return g_string_free (str
, FALSE
);
76 add_to_map (GPtrArray
*map
, int src
, int dst
)
78 g_ptr_array_add (map
, GUINT_TO_POINTER (src
));
79 g_ptr_array_add (map
, GUINT_TO_POINTER (dst
));
86 * 0..5 - rdi, rsi, rdx, rcx, r8, r9
91 * 0..3 - rcx, rdx, r8, r9
100 for (i
= 0; i
< PARAM_REGS
; ++i
) {
101 if (param_regs
[i
] == reg
)
104 g_error ("Invalid argument register number %d", reg
);
111 return reg
+ PARAM_REGS
;
115 map_stack_slot (int slot
)
117 return slot
+ PARAM_REGS
+ FLOAT_PARAM_REGS
;
121 Format for the source descriptor:
124 Format for the destination descriptor:
125 bits 0:15 - source register
126 bits 16:23 - return marshal
127 bits 24:32 - slot count
129 #define SRC_DESCRIPTOR_MARSHAL_SHIFT 16
130 #define SRC_DESCRIPTOR_MARSHAL_MASK 0x0Ff
132 #define SLOT_COUNT_SHIFT 24
133 #define SLOT_COUNT_MASK 0xff
134 #define SLOT_BYTE_SIZE 8
137 get_arg_slots (ArgInfo
*ainfo
, int **out_slots
, gboolean is_source_argument
)
139 int sreg
= ainfo
->reg
;
140 int sslot
= ainfo
->offset
/ 8;
144 switch (ainfo
->storage
) {
147 src
= g_malloc (nsrc
* sizeof (int));
148 src
[0] = map_reg (sreg
);
150 case ArgValuetypeInReg
:
152 src
= g_malloc (nsrc
* sizeof (int));
153 for (i
= 0; i
< ainfo
->nregs
; ++i
)
154 src
[i
] = map_reg (ainfo
->pair_regs
[i
]);
157 nsrc
= ainfo
->arg_size
/ SLOT_BYTE_SIZE
;
158 src
= g_malloc (nsrc
* sizeof (int));
159 // is_source_argument adds 2 because we're skipping over the old BBP and the return address
160 // XXX this is a very fragile setup as changes in alignment for the caller reg array can cause the magic number be 3
161 for (i
= 0; i
< nsrc
; ++i
)
162 src
[i
] = map_stack_slot (sslot
+ i
+ (is_source_argument
? 2 : 0));
164 case ArgInDoubleSSEReg
:
165 case ArgInFloatSSEReg
:
167 src
= g_malloc (nsrc
* sizeof (int));
168 src
[0] = map_freg (sreg
);
179 // Once src is known, operate on the dst
181 handle_marshal_when_src_gsharedvt (ArgInfo
*dst_info
, int *arg_marshal
, int *arg_slots
)
183 switch (dst_info
->storage
) {
185 case ArgInDoubleSSEReg
:
186 case ArgInFloatSSEReg
:
187 *arg_marshal
= GSHAREDVT_ARG_BYREF_TO_BYVAL
;
191 *arg_marshal
= GSHAREDVT_ARG_BYREF_TO_BYVAL
;
192 g_assert (dst_info
->arg_size
% SLOT_BYTE_SIZE
== 0); // Assert quadword aligned
193 *arg_slots
= dst_info
->arg_size
/ SLOT_BYTE_SIZE
;
195 case ArgValuetypeInReg
:
196 *arg_marshal
= GSHAREDVT_ARG_BYREF_TO_BYVAL
;
197 *arg_slots
= dst_info
->nregs
;
200 NOT_IMPLEMENTED
; // Inappropriate value: if dst and src are gsharedvt at once, we shouldn't be here
205 // Once dst is known, operate on the src
207 handle_marshal_when_dst_gsharedvt (ArgInfo
*src_info
, int *arg_marshal
)
209 switch (src_info
->storage
) {
211 case ArgInDoubleSSEReg
:
212 case ArgInFloatSSEReg
:
213 case ArgValuetypeInReg
:
215 *arg_marshal
= GSHAREDVT_ARG_BYVAL_TO_BYREF
;
218 NOT_IMPLEMENTED
; // See above
224 handle_map_when_gsharedvt_in_reg (ArgInfo
*reg_info
, int *n
, int **map
)
227 *map
= g_new0 (int, 1);
228 (*map
) [0] = map_reg (reg_info
->reg
);
232 handle_map_when_gsharedvt_on_stack (ArgInfo
*reg_info
, int *n
, int **map
, gboolean is_source_argument
)
235 *map
= g_new0 (int, 1);
236 int sslot
= reg_info
->offset
/ SLOT_BYTE_SIZE
;
237 (*map
) [0] = map_stack_slot (sslot
+ (is_source_argument
? 2 : 0)); // see get_arg_slots
241 mono_arch_get_gsharedvt_call_info (gpointer addr
, MonoMethodSignature
*normal_sig
, MonoMethodSignature
*gsharedvt_sig
, gboolean gsharedvt_in
, gint32 vcall_offset
, gboolean calli
)
243 GSharedVtCallInfo
*info
;
244 CallInfo
*caller_cinfo
, *callee_cinfo
;
245 MonoMethodSignature
*caller_sig
, *callee_sig
;
247 gboolean var_ret
= FALSE
;
248 CallInfo
*cinfo
, *gcinfo
;
249 MonoMethodSignature
*sig
, *gsig
;
253 caller_sig
= normal_sig
;
254 callee_sig
= gsharedvt_sig
;
255 caller_cinfo
= mono_arch_get_call_info (NULL
, caller_sig
);
256 callee_cinfo
= mono_arch_get_call_info (NULL
, callee_sig
);
258 callee_sig
= normal_sig
;
259 caller_sig
= gsharedvt_sig
;
260 callee_cinfo
= mono_arch_get_call_info (NULL
, callee_sig
);
261 caller_cinfo
= mono_arch_get_call_info (NULL
, caller_sig
);
265 * If GSHAREDVT_IN is true, this means we are transitioning from normal to gsharedvt code. The caller uses the
266 * normal call signature, while the callee uses the gsharedvt signature.
267 * If GSHAREDVT_IN is false, its the other way around.
270 /* sig/cinfo describes the normal call, while gsig/gcinfo describes the gsharedvt call */
274 cinfo
= caller_cinfo
;
275 gcinfo
= callee_cinfo
;
279 cinfo
= callee_cinfo
;
280 gcinfo
= caller_cinfo
;
283 DEBUG_AMD64_GSHAREDVT_PRINT ("source sig: (%s) return (%s)\n", mono_signature_get_desc (caller_sig
, FALSE
), mono_type_full_name (mono_signature_get_return_type (caller_sig
))); // Leak
284 DEBUG_AMD64_GSHAREDVT_PRINT ("dest sig: (%s) return (%s)\n", mono_signature_get_desc (callee_sig
, FALSE
), mono_type_full_name (mono_signature_get_return_type (callee_sig
)));
286 if (gcinfo
->ret
.storage
== ArgGsharedvtVariableInReg
) {
288 * The return type is gsharedvt
294 * The stack looks like this:
298 * We have to map the stack slots in <arguments> to the stack slots in <call area>.
300 map
= g_ptr_array_new ();
302 for (aindex
= 0; aindex
< cinfo
->nargs
; ++aindex
) {
303 ArgInfo
*src_info
= &caller_cinfo
->args
[aindex
];
304 ArgInfo
*dst_info
= &callee_cinfo
->args
[aindex
];
305 int *src
= NULL
, *dst
= NULL
;
306 int nsrc
= -1, ndst
= -1, nslots
= 0;
308 int arg_marshal
= GSHAREDVT_ARG_NONE
;
309 int arg_slots
= 0; // Size in quadwords
310 DEBUG_AMD64_GSHAREDVT_PRINT ("-- arg %d in (%s) out (%s)\n", aindex
, arg_info_desc (src_info
), arg_info_desc (dst_info
));
312 switch (src_info
->storage
) {
314 case ArgInDoubleSSEReg
:
315 case ArgInFloatSSEReg
:
316 case ArgValuetypeInReg
:
318 nsrc
= get_arg_slots (src_info
, &src
, TRUE
);
320 case ArgGSharedVtInReg
:
321 handle_marshal_when_src_gsharedvt (dst_info
, &arg_marshal
, &arg_slots
);
322 handle_map_when_gsharedvt_in_reg (src_info
, &nsrc
, &src
);
324 case ArgGSharedVtOnStack
:
325 handle_marshal_when_src_gsharedvt (dst_info
, &arg_marshal
, &arg_slots
);
326 handle_map_when_gsharedvt_on_stack (src_info
, &nsrc
, &src
, TRUE
);
329 g_error ("Gsharedvt can't handle source arg type %d", (int)src_info
->storage
); // Inappropriate value: ArgValuetypeAddrInIReg is for returns only
332 switch (dst_info
->storage
) {
334 case ArgInDoubleSSEReg
:
335 case ArgInFloatSSEReg
:
337 case ArgValuetypeInReg
:
338 ndst
= get_arg_slots (dst_info
, &dst
, FALSE
);
340 case ArgGSharedVtInReg
:
341 handle_marshal_when_dst_gsharedvt (src_info
, &arg_marshal
);
342 handle_map_when_gsharedvt_in_reg (dst_info
, &ndst
, &dst
);
344 case ArgGSharedVtOnStack
:
345 handle_marshal_when_dst_gsharedvt (src_info
, &arg_marshal
);
346 handle_map_when_gsharedvt_on_stack (dst_info
, &ndst
, &dst
, FALSE
);
349 g_error ("Gsharedvt can't handle dest arg type %d", (int)dst_info
->storage
); // See above
352 src
[0] |= (arg_marshal
<< SRC_DESCRIPTOR_MARSHAL_SHIFT
) | (arg_slots
<< SLOT_COUNT_SHIFT
);
354 /* Merge and add to the global list*/
355 nslots
= MIN (nsrc
, ndst
);
356 DEBUG_AMD64_GSHAREDVT_PRINT ("nsrc %d ndst %d\n", nsrc
, ndst
);
358 for (i
= 0; i
< nslots
; ++i
)
359 add_to_map (map
, src
[i
], dst
[i
]);
365 DEBUG_AMD64_GSHAREDVT_PRINT ("-- return in (%s) out (%s) var_ret %d\n", arg_info_desc (&caller_cinfo
->ret
), arg_info_desc (&callee_cinfo
->ret
), var_ret
);
367 if (cinfo
->ret
.storage
== ArgValuetypeAddrInIReg
) {
368 /* Both the caller and the callee pass the vtype ret address in r8 (System V) and RCX or RDX (Windows) */
369 g_assert (gcinfo
->ret
.storage
== ArgValuetypeAddrInIReg
|| gcinfo
->ret
.storage
== ArgGsharedvtVariableInReg
);
370 add_to_map (map
, map_reg (cinfo
->ret
.reg
), map_reg (cinfo
->ret
.reg
));
373 info
= mono_domain_alloc0 (mono_domain_get (), sizeof (GSharedVtCallInfo
) + (map
->len
* sizeof (int)));
375 info
->stack_usage
= callee_cinfo
->stack_usage
;
376 info
->ret_marshal
= GSHAREDVT_RET_NONE
;
377 info
->gsharedvt_in
= gsharedvt_in
? 1 : 0;
378 info
->vret_slot
= -1;
382 g_assert (gcinfo
->ret
.storage
== ArgGsharedvtVariableInReg
);
383 info
->vret_arg_reg
= map_reg (gcinfo
->ret
.reg
);
384 DEBUG_AMD64_GSHAREDVT_PRINT ("mapping vreg_arg_reg to %d in reg %s\n", info
->vret_arg_reg
, mono_arch_regname (gcinfo
->ret
.reg
));
386 info
->vret_arg_reg
= -1;
389 #ifdef DEBUG_AMD64_GSHAREDVT
390 printf ("final map:\n");
391 for (i
= 0; i
< map
->len
; i
+= 2) {
392 printf ("\t[%d] src %x dst %x\n ",
394 GPOINTER_TO_UINT (g_ptr_array_index (map
, i
)),
395 GPOINTER_TO_UINT (g_ptr_array_index (map
, i
+ 1)));
399 info
->vcall_offset
= vcall_offset
;
400 info
->map_count
= map
->len
/ 2;
401 for (i
= 0; i
< map
->len
; ++i
)
402 info
->map
[i
] = GPOINTER_TO_UINT (g_ptr_array_index (map
, i
));
403 g_ptr_array_free (map
, TRUE
);
405 /* Compute return value marshalling */
407 /* Compute return value marshalling */
408 switch (cinfo
->ret
.storage
) {
410 if (!gsharedvt_in
|| sig
->ret
->byref
) {
411 info
->ret_marshal
= GSHAREDVT_RET_IREGS_1
;
413 MonoType
*ret
= sig
->ret
;
416 if (ret
->type
== MONO_TYPE_VALUETYPE
)
417 ret
= mini_type_get_underlying_type (ret
);
421 info
->ret_marshal
= GSHAREDVT_RET_I1
;
423 case MONO_TYPE_BOOLEAN
:
425 info
->ret_marshal
= GSHAREDVT_RET_U1
;
428 info
->ret_marshal
= GSHAREDVT_RET_I2
;
432 info
->ret_marshal
= GSHAREDVT_RET_U2
;
435 info
->ret_marshal
= GSHAREDVT_RET_I4
;
438 info
->ret_marshal
= GSHAREDVT_RET_U4
;
443 case MONO_TYPE_FNPTR
:
444 case MONO_TYPE_CLASS
:
445 case MONO_TYPE_OBJECT
:
446 case MONO_TYPE_SZARRAY
:
447 case MONO_TYPE_ARRAY
:
448 case MONO_TYPE_STRING
:
451 info
->ret_marshal
= GSHAREDVT_RET_I8
;
453 case MONO_TYPE_GENERICINST
:
454 g_assert (!mono_type_generic_inst_is_valuetype (ret
));
455 info
->ret_marshal
= GSHAREDVT_RET_I8
;
458 g_error ("Gsharedvt can't handle dst type [%d]", (int)sig
->ret
->type
);
462 case ArgValuetypeInReg
:
463 info
->ret_marshal
= GSHAREDVT_RET_IREGS_1
- 1 + cinfo
->ret
.nregs
;
464 g_assert (cinfo
->ret
.nregs
== 1); // ABI supports 2-register return but we do not implement this.
466 case ArgInDoubleSSEReg
:
467 case ArgInFloatSSEReg
:
468 info
->ret_marshal
= GSHAREDVT_RET_R8
;
470 case ArgValuetypeAddrInIReg
:
473 g_error ("Can't marshal return of storage [%d] %s", (int)cinfo
->ret
.storage
, storage_name (cinfo
->ret
.storage
));
476 if (gsharedvt_in
&& cinfo
->ret
.storage
!= ArgValuetypeAddrInIReg
) {
477 /* Allocate stack space for the return value */
478 info
->vret_slot
= map_stack_slot (info
->stack_usage
/ sizeof (gpointer
));
479 info
->stack_usage
+= mono_type_stack_size_internal (normal_sig
->ret
, NULL
, FALSE
) + sizeof (gpointer
);
481 DEBUG_AMD64_GSHAREDVT_PRINT ("RET marshal is %s\n", ret_marshal_name
[info
->ret_marshal
]);
484 info
->stack_usage
= ALIGN_TO (info
->stack_usage
, MONO_ARCH_FRAME_ALIGNMENT
);
486 DEBUG_AMD64_GSHAREDVT_PRINT ("allocated an info at %p stack usage %d\n", info
, info
->stack_usage
);