3 * mono Ahead of Time compiler
6 * Dietmar Maurer (dietmar@ximian.com)
7 * Zoltan Varga (vargaz@gmail.com)
9 * (C) 2002 Ximian, Inc.
10 * Copyright 2003-2011 Novell, Inc.
11 * Copyright 2011 Xamarin, Inc.
12 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
16 #include <sys/types.h>
22 #ifdef HAVE_SYS_MMAN_H
31 #ifdef HAVE_EXECINFO_H
38 #ifdef HAVE_SYS_WAIT_H
39 #include <sys/wait.h> /* for WIFEXITED, WEXITSTATUS */
42 #include <mono/metadata/abi-details.h>
43 #include <mono/metadata/tabledefs.h>
44 #include <mono/metadata/class.h>
45 #include <mono/metadata/object.h>
46 #include <mono/metadata/tokentype.h>
47 #include <mono/metadata/appdomain.h>
48 #include <mono/metadata/debug-helpers.h>
49 #include <mono/metadata/assembly.h>
50 #include <mono/metadata/assembly-internals.h>
51 #include <mono/metadata/metadata-internals.h>
52 #include <mono/metadata/exception-internals.h>
53 #include <mono/metadata/marshal.h>
54 #include <mono/metadata/gc-internals.h>
55 #include <mono/metadata/threads-types.h>
56 #include <mono/metadata/mono-endian.h>
57 #include <mono/utils/mono-logger-internals.h>
58 #include <mono/utils/mono-mmap.h>
59 #include <mono/utils/mono-compiler.h>
60 #include <mono/utils/mono-counters.h>
61 #include <mono/utils/mono-digest.h>
62 #include <mono/utils/mono-threads-coop.h>
65 #include "seq-points.h"
67 #include "debugger-agent.h"
68 #include "aot-compiler.h"
69 #include "aot-runtime.h"
70 #include "jit-icalls.h"
71 #include "mini-runtime.h"
76 #define ENABLE_AOT_CACHE
79 /* Number of got entries shared between the JIT and LLVM GOT */
80 #define N_COMMON_GOT_ENTRIES 10
82 #define ROUND_DOWN(VALUE,SIZE) ((VALUE) & ~((SIZE) - 1))
89 typedef struct MonoAotModule
{
91 /* Pointer to the Global Offset Table */
95 GHashTable
*name_cache
;
96 GHashTable
*extra_methods
;
97 /* Maps methods to their code */
98 GHashTable
*method_to_code
;
99 /* Maps pointers into the method info to the methods themselves */
100 GHashTable
*method_ref_to_method
;
101 MonoAssemblyName
*image_names
;
103 MonoAssembly
*assembly
;
104 MonoImage
**image_table
;
105 guint32 image_table_len
;
106 gboolean out_of_date
;
108 gboolean got_initializing
;
111 guint8
*jit_code_start
;
112 guint8
*jit_code_end
;
113 guint8
*llvm_code_start
;
114 guint8
*llvm_code_end
;
118 gpointer weak_field_indexes
;
119 /* Maps method indexes to their code */
121 /* Sorted array of method addresses */
122 gpointer
*sorted_methods
;
123 /* Method indexes for each method in sorted_methods */
124 int *sorted_method_indexes
;
125 /* The length of the two tables above */
126 int sorted_methods_len
;
127 guint32
*method_info_offsets
;
128 guint32
*ex_info_offsets
;
129 guint32
*class_info_offsets
;
130 guint32
*got_info_offsets
;
131 guint32
*llvm_got_info_offsets
;
132 guint32
*methods_loaded
;
133 guint16
*class_name_table
;
134 guint32
*extra_method_table
;
135 guint32
*extra_method_info_offsets
;
136 guint32
*unbox_trampolines
;
137 guint32
*unbox_trampolines_end
;
138 guint32
*unbox_trampoline_addresses
;
141 /* Points to the mono EH data created by LLVM */
142 guint8
*mono_eh_frame
;
144 /* Points to the data tables if MONO_AOT_FILE_FLAG_SEPARATE_DATA is set */
145 gpointer tables
[MONO_AOT_TABLE_NUM
];
146 /* Points to the trampolines */
147 guint8
*trampolines
[MONO_AOT_TRAMP_NUM
];
148 /* The first unused trampoline of each kind */
149 guint32 trampoline_index
[MONO_AOT_TRAMP_NUM
];
151 gboolean use_page_trampolines
;
153 MonoAotFileInfo info
;
158 JitInfoMap
*async_jit_info_table
;
164 unsigned char *trampolines
;
165 unsigned char *trampolines_end
;
168 static GHashTable
*aot_modules
;
169 #define mono_aot_lock() mono_os_mutex_lock (&aot_mutex)
170 #define mono_aot_unlock() mono_os_mutex_unlock (&aot_mutex)
171 static mono_mutex_t aot_mutex
;
174 * Maps assembly names to the mono_aot_module_<NAME>_info symbols in the
175 * AOT modules registered by mono_aot_register_module ().
177 static GHashTable
*static_aot_modules
;
179 * Same as above, but tracks module that must be loaded before others are
180 * This allows us to have a "container" module which contains resources for
181 * other modules. Since it doesn't provide methods for a managed assembly,
182 * and it needs to be fully loaded by the time the other code needs it, it
183 * must be eagerly loaded before other modules.
185 static char *container_assm_name
= NULL
;
186 static MonoAotModule
*container_amodule
= NULL
;
189 * Maps MonoJitInfo* to the aot module they belong to, this can be different
190 * from ji->method->klass->image's aot module for generic instances.
192 static GHashTable
*ji_to_amodule
;
195 * Whenever to AOT compile loaded assemblies on demand and store them in
198 static gboolean enable_aot_cache
= FALSE
;
200 static gboolean mscorlib_aot_loaded
;
203 static gint32 mono_last_aot_method
= -1;
205 static gboolean make_unreadable
= FALSE
;
206 static guint32 name_table_accesses
= 0;
207 static guint32 n_pagefaults
= 0;
209 /* Used to speed-up find_aot_module () */
210 static gsize aot_code_low_addr
= (gssize
)-1;
211 static gsize aot_code_high_addr
= 0;
214 static gint32 async_jit_info_size
;
216 static GHashTable
*aot_jit_icall_hash
;
219 #define USE_PAGE_TRAMPOLINES ((MonoAotModule*)mono_defaults.corlib->aot_module)->use_page_trampolines
221 #define USE_PAGE_TRAMPOLINES 0
224 #define mono_aot_page_lock() mono_os_mutex_lock (&aot_page_mutex)
225 #define mono_aot_page_unlock() mono_os_mutex_unlock (&aot_page_mutex)
226 static mono_mutex_t aot_page_mutex
;
228 static MonoAotModule
*mscorlib_aot_module
;
230 /* Embedding API hooks to load the AOT data for AOT images compiled with MONO_AOT_FILE_FLAG_SEPARATE_DATA */
231 static MonoLoadAotDataFunc aot_data_load_func
;
232 static MonoFreeAotDataFunc aot_data_free_func
;
233 static gpointer aot_data_func_user_data
;
236 init_plt (MonoAotModule
*info
);
239 compute_llvm_code_range (MonoAotModule
*amodule
, guint8
**code_start
, guint8
**code_end
);
242 init_method (MonoAotModule
*amodule
, guint32 method_index
, MonoMethod
*method
, MonoClass
*init_class
, MonoGenericContext
*context
, MonoError
*error
);
245 decode_patches (MonoAotModule
*amodule
, MonoMemPool
*mp
, int n_patches
, gboolean llvm
, guint32
*got_offsets
);
248 amodule_lock (MonoAotModule
*amodule
)
250 mono_os_mutex_lock (&amodule
->mutex
);
254 amodule_unlock (MonoAotModule
*amodule
)
256 mono_os_mutex_unlock (&amodule
->mutex
);
262 * Load one of the images referenced by AMODULE. Returns NULL if the image is not
263 * found, and sets @error for what happened
266 load_image (MonoAotModule
*amodule
, int index
, MonoError
*error
)
268 MonoAssembly
*assembly
;
269 MonoImageOpenStatus status
;
271 g_assert (index
< amodule
->image_table_len
);
275 if (amodule
->image_table
[index
])
276 return amodule
->image_table
[index
];
277 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: module %s wants to load image %d: %s", amodule
->aot_name
, index
, amodule
->image_names
[index
].name
);
278 if (amodule
->out_of_date
) {
279 mono_error_set_bad_image_by_name (error
, amodule
->aot_name
, "Image out of date");
284 * LoadFile allows loading more than one assembly with the same name.
285 * That means that just calling mono_assembly_load is unlikely to find
286 * the correct assembly (it'll just return the first one loaded). But
287 * we shouldn't hardcode the full assembly filepath into the AOT image,
288 * so it's not obvious that we can call mono_assembly_open_predicate.
290 * In the JIT, an assembly opened with LoadFile is supposed to only
291 * refer to already-loaded assemblies (or to GAC & MONO_PATH)
292 * assemblies - so nothing new should be loading. And for the
293 * LoadFile'd assembly itself, we can check if the name and guid of the
294 * current AOT module matches the wanted name and guid and just return
295 * the AOT module's assembly.
297 if (mono_asmctx_get_kind (&amodule
->assembly
->context
) == MONO_ASMCTX_INDIVIDUAL
&&
298 !strcmp (amodule
->assembly
->image
->guid
, amodule
->image_guids
[index
]) &&
299 mono_assembly_names_equal (&amodule
->image_names
[index
], &amodule
->assembly
->aname
))
300 assembly
= amodule
->assembly
;
302 assembly
= mono_assembly_load (&amodule
->image_names
[index
], amodule
->assembly
->basedir
, &status
);
304 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: module %s is unusable because dependency %s is not found.", amodule
->aot_name
, amodule
->image_names
[index
].name
);
305 mono_error_set_bad_image_by_name (error
, amodule
->aot_name
, "module is unusable because dependency %s is not found (error %d).\n", amodule
->image_names
[index
].name
, status
);
306 amodule
->out_of_date
= TRUE
;
310 if (strcmp (assembly
->image
->guid
, amodule
->image_guids
[index
])) {
311 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: module %s is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').", amodule
->aot_name
, amodule
->image_names
[index
].name
, amodule
->image_guids
[index
], assembly
->image
->guid
);
312 mono_error_set_bad_image_by_name (error
, amodule
->aot_name
, "module is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').", amodule
->image_names
[index
].name
, amodule
->image_guids
[index
], assembly
->image
->guid
);
313 amodule
->out_of_date
= TRUE
;
317 amodule
->image_table
[index
] = assembly
->image
;
318 return assembly
->image
;
322 decode_value (guint8
*ptr
, guint8
**rptr
)
327 if ((b
& 0x80) == 0){
330 } else if ((b
& 0x40) == 0){
331 len
= ((b
& 0x3f) << 8 | ptr
[1]);
333 } else if (b
!= 0xff) {
334 len
= ((b
& 0x1f) << 24) |
341 len
= (ptr
[1] << 24) | (ptr
[2] << 16) | (ptr
[3] << 8) | ptr
[4];
347 //printf ("DECODE: %d.\n", len);
352 * mono_aot_get_offset:
354 * Decode an offset table emitted by emit_offset_table (), returning the INDEXth
358 mono_aot_get_offset (guint32
*table
, int index
)
360 int i
, group
, ngroups
, index_entry_size
;
361 int start_offset
, offset
, group_size
;
362 guint8
*data_start
, *p
;
363 guint32
*index32
= NULL
;
364 guint16
*index16
= NULL
;
366 /* noffsets = table [0]; */
367 group_size
= table
[1];
369 index_entry_size
= table
[3];
370 group
= index
/ group_size
;
372 if (index_entry_size
== 2) {
373 index16
= (guint16
*)&table
[4];
374 data_start
= (guint8
*)&index16
[ngroups
];
375 p
= data_start
+ index16
[group
];
377 index32
= (guint32
*)&table
[4];
378 data_start
= (guint8
*)&index32
[ngroups
];
379 p
= data_start
+ index32
[group
];
382 /* offset will contain the value of offsets [group * group_size] */
383 offset
= start_offset
= decode_value (p
, &p
);
384 for (i
= group
* group_size
+ 1; i
<= index
; ++i
) {
385 offset
+= decode_value (p
, &p
);
388 //printf ("Offset lookup: %d -> %d, start=%d, p=%d\n", index, offset, start_offset, table [3 + group]);
394 decode_resolve_method_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
397 decode_klass_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
400 decode_type (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
402 static MonoGenericInst
*
403 decode_generic_inst (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
406 MonoType
**type_argv
;
407 MonoGenericInst
*inst
;
411 type_argc
= decode_value (p
, &p
);
412 type_argv
= g_new0 (MonoType
*, type_argc
);
414 for (i
= 0; i
< type_argc
; ++i
) {
415 MonoClass
*pclass
= decode_klass_ref (module
, p
, &p
, error
);
420 type_argv
[i
] = m_class_get_byval_arg (pclass
);
423 inst
= mono_metadata_get_generic_inst (type_argc
, type_argv
);
432 decode_generic_context (MonoAotModule
*module
, MonoGenericContext
*ctx
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
440 argc
= decode_value (p
, &p
);
443 ctx
->class_inst
= decode_generic_inst (module
, p
, &p
, error
);
444 if (!ctx
->class_inst
)
448 argc
= decode_value (p
, &p
);
451 ctx
->method_inst
= decode_generic_inst (module
, p
, &p
, error
);
452 if (!ctx
->method_inst
)
461 decode_klass_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
464 MonoClass
*klass
= NULL
, *eklass
;
465 guint32 token
, rank
, idx
;
470 reftype
= decode_value (p
, &p
);
473 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Decoding a null class ref");
478 case MONO_AOT_TYPEREF_TYPEDEF_INDEX
:
479 idx
= decode_value (p
, &p
);
480 image
= load_image (module
, 0, error
);
483 klass
= mono_class_get_checked (image
, MONO_TOKEN_TYPE_DEF
+ idx
, error
);
485 case MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE
:
486 idx
= decode_value (p
, &p
);
487 image
= load_image (module
, decode_value (p
, &p
), error
);
490 klass
= mono_class_get_checked (image
, MONO_TOKEN_TYPE_DEF
+ idx
, error
);
492 case MONO_AOT_TYPEREF_TYPESPEC_TOKEN
:
493 token
= decode_value (p
, &p
);
494 image
= module
->assembly
->image
;
496 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "No image associated with the aot module");
499 klass
= mono_class_get_checked (image
, token
, error
);
501 case MONO_AOT_TYPEREF_GINST
: {
503 MonoGenericContext ctx
;
506 gclass
= decode_klass_ref (module
, p
, &p
, error
);
509 g_assert (mono_class_is_gtd (gclass
));
511 memset (&ctx
, 0, sizeof (ctx
));
512 ctx
.class_inst
= decode_generic_inst (module
, p
, &p
, error
);
515 type
= mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass
), &ctx
, error
);
518 klass
= mono_class_from_mono_type (type
);
519 mono_metadata_free_type (type
);
522 case MONO_AOT_TYPEREF_VAR
: {
524 MonoGenericContainer
*container
= NULL
;
525 gboolean has_constraint
= decode_value (p
, &p
);
527 if (has_constraint
) {
528 MonoClass
*par_klass
;
529 MonoType
*gshared_constraint
;
531 gshared_constraint
= decode_type (module
, p
, &p
, error
);
532 if (!gshared_constraint
)
535 par_klass
= decode_klass_ref (module
, p
, &p
, error
);
539 t
= mini_get_shared_gparam (m_class_get_byval_arg (par_klass
), gshared_constraint
);
540 mono_metadata_free_type (gshared_constraint
);
541 klass
= mono_class_from_mono_type (t
);
543 int type
= decode_value (p
, &p
);
544 int num
= decode_value (p
, &p
);
545 gboolean is_not_anonymous
= decode_value (p
, &p
);
547 if (is_not_anonymous
) {
548 gboolean is_method
= decode_value (p
, &p
);
551 MonoMethod
*method_def
;
552 g_assert (type
== MONO_TYPE_MVAR
);
553 method_def
= decode_resolve_method_ref (module
, p
, &p
, error
);
557 container
= mono_method_get_generic_container (method_def
);
559 MonoClass
*class_def
;
560 g_assert (type
== MONO_TYPE_VAR
);
561 class_def
= decode_klass_ref (module
, p
, &p
, error
);
565 container
= mono_class_try_get_generic_container (class_def
); //FIXME is this a case for a try_get?
568 // We didn't decode is_method, so we have to infer it from type enum.
569 container
= mono_get_anonymous_container_for_image (module
->assembly
->image
, type
== MONO_TYPE_MVAR
);
572 t
= g_new0 (MonoType
, 1);
573 t
->type
= (MonoTypeEnum
)type
;
574 if (is_not_anonymous
) {
575 t
->data
.generic_param
= mono_generic_container_get_param (container
, num
);
578 MonoGenericParam
*par
= mono_metadata_create_anon_gparam (module
->assembly
->image
, num
, type
== MONO_TYPE_MVAR
);
579 t
->data
.generic_param
= par
;
580 // FIXME: maybe do this for all anon gparams?
581 ((MonoGenericParamFull
*)par
)->info
.name
= mono_make_generic_name_string (module
->assembly
->image
, num
);
583 // FIXME: Maybe use types directly to avoid
584 // the overhead of creating MonoClass-es
585 klass
= mono_class_from_mono_type (t
);
591 case MONO_AOT_TYPEREF_ARRAY
:
593 rank
= decode_value (p
, &p
);
594 eklass
= decode_klass_ref (module
, p
, &p
, error
);
597 klass
= mono_class_create_array (eklass
, rank
);
599 case MONO_AOT_TYPEREF_PTR
: {
602 t
= decode_type (module
, p
, &p
, error
);
605 klass
= mono_class_from_mono_type (t
);
609 case MONO_AOT_TYPEREF_BLOB_INDEX
: {
610 guint32 offset
= decode_value (p
, &p
);
613 p2
= module
->blob
+ offset
;
614 klass
= decode_klass_ref (module
, p2
, &p2
, error
);
618 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid klass reftype %d", reftype
);
621 //printf ("BLA: %s\n", mono_type_full_name (m_class_get_byval_arg (klass)));
626 static MonoClassField
*
627 decode_field_info (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
)
630 MonoClass
*klass
= decode_klass_ref (module
, buf
, &buf
, error
);
635 mono_error_cleanup (error
); /* FIXME don't swallow the error */
639 token
= MONO_TOKEN_FIELD_DEF
+ decode_value (p
, &p
);
643 return mono_class_get_field (klass
, token
);
647 * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
651 decode_type (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
656 if (*p
== MONO_TYPE_CMOD_REQD
) {
659 int count
= decode_value (p
, &p
);
661 t
= (MonoType
*)g_malloc0 (mono_sizeof_type_with_mods (count
));
664 MonoCustomModContainer
*cm
= mono_type_get_cmods (t
);
665 int iindex
= decode_value (p
, &p
);
666 cm
->image
= load_image (module
, iindex
, error
);
672 for (int i
= 0; i
< cm
->count
; ++i
) {
673 cm
->modifiers
[i
].required
= decode_value (p
, &p
);
674 cm
->modifiers
[i
].token
= decode_value (p
, &p
);
677 t
= (MonoType
*) g_malloc0 (sizeof (MonoType
));
681 if (*p
== MONO_TYPE_PINNED
) {
684 } else if (*p
== MONO_TYPE_BYREF
) {
692 t
->type
= (MonoTypeEnum
)*p
;
697 case MONO_TYPE_BOOLEAN
:
711 case MONO_TYPE_STRING
:
712 case MONO_TYPE_OBJECT
:
713 case MONO_TYPE_TYPEDBYREF
:
715 case MONO_TYPE_VALUETYPE
:
716 case MONO_TYPE_CLASS
:
717 t
->data
.klass
= decode_klass_ref (module
, p
, &p
, error
);
721 case MONO_TYPE_SZARRAY
:
722 t
->data
.klass
= decode_klass_ref (module
, p
, &p
, error
);
728 t
->data
.type
= decode_type (module
, p
, &p
, error
);
732 case MONO_TYPE_GENERICINST
: {
734 MonoGenericContext ctx
;
738 gclass
= decode_klass_ref (module
, p
, &p
, error
);
741 g_assert (mono_class_is_gtd (gclass
));
743 memset (&ctx
, 0, sizeof (ctx
));
744 ctx
.class_inst
= decode_generic_inst (module
, p
, &p
, error
);
747 type
= mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass
), &ctx
, error
);
750 klass
= mono_class_from_mono_type (type
);
751 t
->data
.generic_class
= mono_class_get_generic_class (klass
);
754 case MONO_TYPE_ARRAY
: {
755 MonoArrayType
*array
;
758 // FIXME: memory management
759 array
= g_new0 (MonoArrayType
, 1);
760 array
->eklass
= decode_klass_ref (module
, p
, &p
, error
);
763 array
->rank
= decode_value (p
, &p
);
764 array
->numsizes
= decode_value (p
, &p
);
767 array
->sizes
= (int *)g_malloc0 (sizeof (int) * array
->numsizes
);
768 for (i
= 0; i
< array
->numsizes
; ++i
)
769 array
->sizes
[i
] = decode_value (p
, &p
);
771 array
->numlobounds
= decode_value (p
, &p
);
772 if (array
->numlobounds
)
773 array
->lobounds
= (int *)g_malloc0 (sizeof (int) * array
->numlobounds
);
774 for (i
= 0; i
< array
->numlobounds
; ++i
)
775 array
->lobounds
[i
] = decode_value (p
, &p
);
776 t
->data
.array
= array
;
780 case MONO_TYPE_MVAR
: {
781 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
784 t
->data
.generic_param
= m_class_get_byval_arg (klass
)->data
.generic_param
;
788 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid encoded type %d", t
->type
);
800 // FIXME: Error handling, memory management
802 static MonoMethodSignature
*
803 decode_signature_with_target (MonoAotModule
*module
, MonoMethodSignature
*target
, guint8
*buf
, guint8
**endbuf
)
806 MonoMethodSignature
*sig
;
808 int i
, gen_param_count
= 0, param_count
, call_conv
;
810 gboolean hasthis
, explicit_this
, has_gen_params
;
814 has_gen_params
= (flags
& 0x10) != 0;
815 hasthis
= (flags
& 0x20) != 0;
816 explicit_this
= (flags
& 0x40) != 0;
817 call_conv
= flags
& 0x0F;
820 gen_param_count
= decode_value (p
, &p
);
821 param_count
= decode_value (p
, &p
);
822 if (target
&& param_count
!= target
->param_count
)
824 sig
= (MonoMethodSignature
*)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE
+ param_count
* sizeof (MonoType
*));
825 sig
->param_count
= param_count
;
826 sig
->sentinelpos
= -1;
827 sig
->hasthis
= hasthis
;
828 sig
->explicit_this
= explicit_this
;
829 sig
->call_convention
= call_conv
;
830 sig
->generic_param_count
= gen_param_count
;
831 sig
->ret
= decode_type (module
, p
, &p
, error
);
834 for (i
= 0; i
< param_count
; ++i
) {
835 if (*p
== MONO_TYPE_SENTINEL
) {
836 g_assert (sig
->call_convention
== MONO_CALL_VARARG
);
837 sig
->sentinelpos
= i
;
840 sig
->params
[i
] = decode_type (module
, p
, &p
, error
);
841 if (!sig
->params
[i
])
845 if (sig
->call_convention
== MONO_CALL_VARARG
&& sig
->sentinelpos
== -1)
846 sig
->sentinelpos
= sig
->param_count
;
852 mono_error_cleanup (error
); /* FIXME don't swallow the error */
857 static MonoMethodSignature
*
858 decode_signature (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
)
860 return decode_signature_with_target (module
, NULL
, buf
, endbuf
);
864 sig_matches_target (MonoAotModule
*module
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
)
866 MonoMethodSignature
*sig
;
870 sig
= decode_signature_with_target (module
, mono_method_signature (target
), p
, &p
);
871 res
= sig
&& mono_metadata_signature_equal (mono_method_signature (target
), sig
);
877 /* Stores information returned by decode_method_ref () */
882 gboolean no_aot_trampoline
;
886 * decode_method_ref_with_target:
888 * Decode a method reference, storing the image/token into a MethodRef structure.
889 * This avoids loading metadata for the method if the caller does not need it. If the method has
890 * no token, then it is loaded from metadata and ref->method is set to the method instance.
891 * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
892 * couldn't resolve to TARGET, and return FALSE.
893 * There are some kinds of method references which only support a non-null TARGET.
894 * This means that its not possible to decode this into a method, only to check
895 * that the method reference matches a given method. This is normally not a problem
896 * as these wrappers only occur in the extra_methods table, where we already have
897 * a method we want to lookup.
899 * If there was a decoding error, we return FALSE and set @error
902 decode_method_ref_with_target (MonoAotModule
*module
, MethodRef
*ref
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
904 guint32 image_index
, value
;
905 MonoImage
*image
= NULL
;
908 memset (ref
, 0, sizeof (MethodRef
));
911 value
= decode_value (p
, &p
);
912 image_index
= value
>> 24;
914 if (image_index
== MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE
) {
915 ref
->no_aot_trampoline
= TRUE
;
916 value
= decode_value (p
, &p
);
917 image_index
= value
>> 24;
920 if (image_index
< MONO_AOT_METHODREF_MIN
|| image_index
== MONO_AOT_METHODREF_METHODSPEC
|| image_index
== MONO_AOT_METHODREF_GINST
) {
921 if (target
&& target
->wrapper_type
) {
926 if (image_index
== MONO_AOT_METHODREF_WRAPPER
) {
928 guint32 wrapper_type
;
930 wrapper_type
= decode_value (p
, &p
);
932 if (target
&& target
->wrapper_type
!= wrapper_type
)
936 image
= mono_defaults
.corlib
;
938 switch (wrapper_type
) {
939 #ifndef DISABLE_REMOTING
940 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK
: {
941 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
944 mono_class_init (m
->klass
);
948 ref
->method
= mono_marshal_get_remoting_invoke_with_check (m
, error
);
949 return_val_if_nok (error
, FALSE
);
953 case MONO_WRAPPER_PROXY_ISINST
: {
954 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
957 ref
->method
= mono_marshal_get_proxy_cancast (klass
);
960 case MONO_WRAPPER_LDFLD
:
961 case MONO_WRAPPER_LDFLDA
:
962 case MONO_WRAPPER_STFLD
: {
963 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
966 MonoType
*type
= m_class_get_byval_arg (klass
);
967 if (wrapper_type
== MONO_WRAPPER_LDFLD
)
968 ref
->method
= mono_marshal_get_ldfld_wrapper (type
);
969 else if (wrapper_type
== MONO_WRAPPER_LDFLDA
)
970 ref
->method
= mono_marshal_get_ldflda_wrapper (type
);
971 else if (wrapper_type
== MONO_WRAPPER_STFLD
)
972 ref
->method
= mono_marshal_get_stfld_wrapper (type
);
974 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Unknown AOT wrapper type %d", wrapper_type
);
980 case MONO_WRAPPER_ALLOC
: {
981 int atype
= decode_value (p
, &p
);
982 ManagedAllocatorVariant variant
=
983 mono_profiler_allocations_enabled () ?
984 MANAGED_ALLOCATOR_PROFILER
: MANAGED_ALLOCATOR_REGULAR
;
986 ref
->method
= mono_gc_get_managed_allocator_by_type (atype
, variant
);
987 /* Try to fallback to the slow path version */
989 ref
->method
= mono_gc_get_managed_allocator_by_type (atype
, MANAGED_ALLOCATOR_SLOW_PATH
);
991 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Error: No managed allocator, but we need one for AOT.\nAre you using non-standard GC options?\n");
996 case MONO_WRAPPER_WRITE_BARRIER
: {
997 ref
->method
= mono_gc_get_write_barrier ();
1000 case MONO_WRAPPER_STELEMREF
: {
1001 int subtype
= decode_value (p
, &p
);
1003 if (subtype
== WRAPPER_SUBTYPE_NONE
) {
1004 ref
->method
= mono_marshal_get_stelemref ();
1005 } else if (subtype
== WRAPPER_SUBTYPE_VIRTUAL_STELEMREF
) {
1008 kind
= decode_value (p
, &p
);
1010 /* Can't decode this */
1013 if (target
->wrapper_type
== MONO_WRAPPER_STELEMREF
) {
1014 info
= mono_marshal_get_wrapper_info (target
);
1017 if (info
->subtype
== subtype
&& info
->d
.virtual_stelemref
.kind
== kind
)
1018 ref
->method
= target
;
1025 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid STELEMREF subtype %d", subtype
);
1030 case MONO_WRAPPER_SYNCHRONIZED
: {
1031 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1034 ref
->method
= mono_marshal_get_synchronized_wrapper (m
);
1037 case MONO_WRAPPER_UNKNOWN
: {
1038 int subtype
= decode_value (p
, &p
);
1040 if (subtype
== WRAPPER_SUBTYPE_PTR_TO_STRUCTURE
|| subtype
== WRAPPER_SUBTYPE_STRUCTURE_TO_PTR
) {
1041 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
1047 if (klass
!= target
->klass
)
1050 if (subtype
== WRAPPER_SUBTYPE_PTR_TO_STRUCTURE
) {
1051 if (strcmp (target
->name
, "PtrToStructure"))
1053 ref
->method
= mono_marshal_get_ptr_to_struct (klass
);
1055 if (strcmp (target
->name
, "StructureToPtr"))
1057 ref
->method
= mono_marshal_get_struct_to_ptr (klass
);
1059 } else if (subtype
== WRAPPER_SUBTYPE_SYNCHRONIZED_INNER
) {
1060 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1063 ref
->method
= mono_marshal_get_synchronized_inner_wrapper (m
);
1064 } else if (subtype
== WRAPPER_SUBTYPE_ARRAY_ACCESSOR
) {
1065 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1068 ref
->method
= mono_marshal_get_array_accessor_wrapper (m
);
1069 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_IN
) {
1070 ref
->method
= mono_marshal_get_gsharedvt_in_wrapper ();
1071 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_OUT
) {
1072 ref
->method
= mono_marshal_get_gsharedvt_out_wrapper ();
1073 } else if (subtype
== WRAPPER_SUBTYPE_INTERP_IN
) {
1074 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1077 ref
->method
= mini_get_interp_in_wrapper (sig
);
1078 } else if (subtype
== WRAPPER_SUBTYPE_INTERP_LMF
) {
1079 ref
->method
= mini_get_interp_lmf_wrapper ();
1080 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG
) {
1081 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1084 ref
->method
= mini_get_gsharedvt_in_sig_wrapper (sig
);
1085 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG
) {
1086 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1089 ref
->method
= mini_get_gsharedvt_out_sig_wrapper (sig
);
1091 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid UNKNOWN wrapper subtype %d", subtype
);
1096 case MONO_WRAPPER_MANAGED_TO_MANAGED
: {
1097 int subtype
= decode_value (p
, &p
);
1099 if (subtype
== WRAPPER_SUBTYPE_ELEMENT_ADDR
) {
1100 int rank
= decode_value (p
, &p
);
1101 int elem_size
= decode_value (p
, &p
);
1103 ref
->method
= mono_marshal_get_array_address (rank
, elem_size
);
1104 } else if (subtype
== WRAPPER_SUBTYPE_STRING_CTOR
) {
1107 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1113 g_assert (target
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_MANAGED
);
1115 info
= mono_marshal_get_wrapper_info (target
);
1116 if (info
&& info
->subtype
== subtype
&& info
->d
.string_ctor
.method
== m
)
1117 ref
->method
= target
;
1123 case MONO_WRAPPER_MANAGED_TO_NATIVE
: {
1125 int subtype
= decode_value (p
, &p
);
1128 if (subtype
== WRAPPER_SUBTYPE_ICALL_WRAPPER
) {
1133 if (strcmp (target
->name
, name
) != 0)
1135 ref
->method
= target
;
1137 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1141 /* This should only happen when looking for an extra method */
1144 if (mono_marshal_method_from_wrapper (target
) == m
)
1145 ref
->method
= target
;
1151 case MONO_WRAPPER_CASTCLASS
: {
1152 int subtype
= decode_value (p
, &p
);
1154 if (subtype
== WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE
)
1155 ref
->method
= mono_marshal_get_castclass_with_cache ();
1156 else if (subtype
== WRAPPER_SUBTYPE_ISINST_WITH_CACHE
)
1157 ref
->method
= mono_marshal_get_isinst_with_cache ();
1159 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid CASTCLASS wrapper subtype %d", subtype
);
1164 case MONO_WRAPPER_RUNTIME_INVOKE
: {
1165 int subtype
= decode_value (p
, &p
);
1170 if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC
) {
1171 if (strcmp (target
->name
, "runtime_invoke_dynamic") != 0)
1173 ref
->method
= target
;
1174 } else if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT
) {
1175 /* Direct wrapper */
1176 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1179 ref
->method
= mono_marshal_get_runtime_invoke (m
, FALSE
);
1180 } else if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL
) {
1181 /* Virtual direct wrapper */
1182 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1185 ref
->method
= mono_marshal_get_runtime_invoke (m
, TRUE
);
1187 MonoMethodSignature
*sig
;
1189 sig
= decode_signature_with_target (module
, NULL
, p
, &p
);
1190 info
= mono_marshal_get_wrapper_info (target
);
1193 if (info
->subtype
!= subtype
)
1195 g_assert (info
->d
.runtime_invoke
.sig
);
1196 if (mono_metadata_signature_equal (sig
, info
->d
.runtime_invoke
.sig
))
1197 ref
->method
= target
;
1203 case MONO_WRAPPER_DELEGATE_INVOKE
:
1204 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE
:
1205 case MONO_WRAPPER_DELEGATE_END_INVOKE
: {
1206 gboolean is_inflated
= decode_value (p
, &p
);
1207 WrapperSubtype subtype
;
1211 MonoMethod
*invoke
, *wrapper
;
1213 klass
= decode_klass_ref (module
, p
, &p
, error
);
1217 switch (wrapper_type
) {
1218 case MONO_WRAPPER_DELEGATE_INVOKE
:
1219 invoke
= mono_get_delegate_invoke (klass
);
1220 wrapper
= mono_marshal_get_delegate_invoke (invoke
, NULL
);
1222 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE
:
1223 invoke
= mono_get_delegate_begin_invoke (klass
);
1224 wrapper
= mono_marshal_get_delegate_begin_invoke (invoke
);
1226 case MONO_WRAPPER_DELEGATE_END_INVOKE
:
1227 invoke
= mono_get_delegate_end_invoke (klass
);
1228 wrapper
= mono_marshal_get_delegate_end_invoke (invoke
);
1231 g_assert_not_reached ();
1236 * Due to the way mini_get_shared_method_full () works, we could end up with
1237 * multiple copies of the same wrapper.
1239 if (wrapper
->klass
!= target
->klass
)
1241 ref
->method
= target
;
1243 ref
->method
= wrapper
;
1247 * These wrappers are associated with a signature, not with a method.
1248 * Since we can't decode them into methods, they need a target method.
1253 if (wrapper_type
== MONO_WRAPPER_DELEGATE_INVOKE
) {
1254 subtype
= (WrapperSubtype
)decode_value (p
, &p
);
1255 info
= mono_marshal_get_wrapper_info (target
);
1257 if (info
->subtype
!= subtype
)
1260 if (subtype
!= WRAPPER_SUBTYPE_NONE
)
1264 if (sig_matches_target (module
, target
, p
, &p
))
1265 ref
->method
= target
;
1271 case MONO_WRAPPER_NATIVE_TO_MANAGED
: {
1275 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1278 klass
= decode_klass_ref (module
, p
, &p
, error
);
1281 ref
->method
= mono_marshal_get_managed_wrapper (m
, klass
, 0, error
);
1282 if (!mono_error_ok (error
))
1287 g_assert_not_reached ();
1289 } else if (image_index
== MONO_AOT_METHODREF_METHODSPEC
) {
1290 image_index
= decode_value (p
, &p
);
1291 ref
->token
= decode_value (p
, &p
);
1293 image
= load_image (module
, image_index
, error
);
1296 } else if (image_index
== MONO_AOT_METHODREF_GINST
) {
1298 MonoGenericContext ctx
;
1301 * These methods do not have a token which resolves them, so we
1302 * resolve them immediately.
1304 klass
= decode_klass_ref (module
, p
, &p
, error
);
1308 if (target
&& target
->klass
!= klass
)
1311 image_index
= decode_value (p
, &p
);
1312 ref
->token
= decode_value (p
, &p
);
1314 image
= load_image (module
, image_index
, error
);
1318 ref
->method
= mono_get_method_checked (image
, ref
->token
, NULL
, NULL
, error
);
1323 memset (&ctx
, 0, sizeof (ctx
));
1325 if (FALSE
&& mono_class_is_ginst (klass
)) {
1326 ctx
.class_inst
= mono_class_get_generic_class (klass
)->context
.class_inst
;
1327 ctx
.method_inst
= NULL
;
1329 ref
->method
= mono_class_inflate_generic_method_full_checked (ref
->method
, klass
, &ctx
, error
);
1334 memset (&ctx
, 0, sizeof (ctx
));
1336 if (!decode_generic_context (module
, &ctx
, p
, &p
, error
))
1339 ref
->method
= mono_class_inflate_generic_method_full_checked (ref
->method
, klass
, &ctx
, error
);
1343 } else if (image_index
== MONO_AOT_METHODREF_ARRAY
) {
1347 klass
= decode_klass_ref (module
, p
, &p
, error
);
1350 method_type
= decode_value (p
, &p
);
1351 switch (method_type
) {
1353 ref
->method
= mono_class_get_method_from_name (klass
, ".ctor", m_class_get_rank (klass
));
1356 ref
->method
= mono_class_get_method_from_name (klass
, ".ctor", m_class_get_rank (klass
) * 2);
1359 ref
->method
= mono_class_get_method_from_name (klass
, "Get", -1);
1362 ref
->method
= mono_class_get_method_from_name (klass
, "Address", -1);
1365 ref
->method
= mono_class_get_method_from_name (klass
, "Set", -1);
1368 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid METHODREF_ARRAY method type %d", method_type
);
1372 if (image_index
== MONO_AOT_METHODREF_LARGE_IMAGE_INDEX
) {
1373 image_index
= decode_value (p
, &p
);
1374 value
= decode_value (p
, &p
);
1377 ref
->token
= MONO_TOKEN_METHOD_DEF
| (value
& 0xffffff);
1379 image
= load_image (module
, image_index
, error
);
1392 decode_method_ref (MonoAotModule
*module
, MethodRef
*ref
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1394 return decode_method_ref_with_target (module
, ref
, NULL
, buf
, endbuf
, error
);
1398 * decode_resolve_method_ref_with_target:
1400 * Similar to decode_method_ref, but resolve and return the method itself.
1403 decode_resolve_method_ref_with_target (MonoAotModule
*module
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1409 if (!decode_method_ref_with_target (module
, &ref
, target
, buf
, endbuf
, error
))
1414 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "No image found for methodref with target");
1417 return mono_get_method_checked (ref
.image
, ref
.token
, NULL
, NULL
, error
);
1421 decode_resolve_method_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1423 return decode_resolve_method_ref_with_target (module
, NULL
, buf
, endbuf
, error
);
1426 #ifdef ENABLE_AOT_CACHE
1432 * - Add options for controlling the cache size
1433 * - Handle full cache by deleting old assemblies lru style
1434 * - Maybe add a threshold after an assembly is AOT compiled
1435 * - Add options for enabling this for specific main assemblies
1438 /* The cache directory */
1439 static char *cache_dir
;
1441 /* The number of assemblies AOTed in this run */
1442 static int cache_count
;
1444 /* Whenever to AOT in-process */
1445 static gboolean in_process
;
1448 collect_assemblies (gpointer data
, gpointer user_data
)
1450 MonoAssembly
*ass
= data
;
1451 GSList
**l
= user_data
;
1453 *l
= g_slist_prepend (*l
, ass
);
1456 #define SHA1_DIGEST_LENGTH 20
1459 * get_aot_config_hash:
1461 * Return a hash for all the version information an AOT module depends on.
1463 static G_GNUC_UNUSED
char*
1464 get_aot_config_hash (MonoAssembly
*assembly
)
1467 GSList
*l
, *assembly_list
= NULL
;
1470 guint8 digest
[SHA1_DIGEST_LENGTH
];
1473 build_info
= mono_get_runtime_build_info ();
1475 s
= g_string_new (build_info
);
1477 mono_assembly_foreach (collect_assemblies
, &assembly_list
);
1480 * The assembly list includes the current assembly as well, no need
1483 for (l
= assembly_list
; l
; l
= l
->next
) {
1484 MonoAssembly
*ass
= l
->data
;
1486 g_string_append (s
, "_");
1487 g_string_append (s
, ass
->aname
.name
);
1488 g_string_append (s
, "_");
1489 g_string_append (s
, ass
->image
->guid
);
1492 for (i
= 0; i
< s
->len
; ++i
) {
1493 if (!isalnum (s
->str
[i
]) && s
->str
[i
] != '-')
1497 mono_sha1_get_digest ((guint8
*)s
->str
, s
->len
, digest
);
1499 digest_str
= g_malloc0 ((SHA1_DIGEST_LENGTH
* 2) + 1);
1500 for (i
= 0; i
< SHA1_DIGEST_LENGTH
; ++i
)
1501 sprintf (digest_str
+ (i
* 2), "%02x", digest
[i
]);
1503 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: file dependencies: %s, hash %s", s
->str
, digest_str
);
1505 g_string_free (s
, TRUE
);
1511 aot_cache_init (void)
1515 enable_aot_cache
= TRUE
;
1520 * aot_cache_load_module:
1522 * Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1525 aot_cache_load_module (MonoAssembly
*assembly
, char **aot_name
)
1527 MonoAotCacheConfig
*config
;
1529 char *fname
, *tmp2
, *aot_options
, *failure_fname
;
1541 if (image_is_dynamic (assembly
->image
))
1544 /* Check in the list of assemblies enabled for aot caching */
1545 config
= mono_get_aot_cache_config ();
1549 MonoDomain
*domain
= mono_domain_get ();
1550 MonoAssembly
*entry_assembly
= domain
->entry_assembly
;
1552 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1553 for (l
= config
->apps
; l
; l
= l
->next
) {
1556 if ((entry_assembly
&& !strcmp (entry_assembly
->aname
.name
, n
)) || (!entry_assembly
&& !strcmp (assembly
->aname
.name
, n
)))
1564 for (l
= config
->assemblies
; l
; l
= l
->next
) {
1567 if (!strcmp (assembly
->aname
.name
, n
))
1577 home
= g_get_home_dir ();
1580 cache_dir
= g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home
);
1581 if (!g_file_test (cache_dir
, G_FILE_TEST_EXISTS
|G_FILE_TEST_IS_DIR
))
1582 g_mkdir_with_parents (cache_dir
, 0777);
1586 * The same assembly can be used in multiple configurations, i.e. multiple
1587 * versions of the runtime, with multiple versions of dependent assemblies etc.
1588 * To handle this, we compute a version string containing all this information, hash it,
1589 * and use the hash as a filename suffix.
1591 hash
= get_aot_config_hash (assembly
);
1593 tmp2
= g_strdup_printf ("%s-%s%s", assembly
->image
->assembly_name
, hash
, MONO_SOLIB_EXT
);
1594 fname
= g_build_filename (cache_dir
, tmp2
, NULL
);
1598 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: loading from cache: '%s'.", fname
);
1599 module
= mono_dl_open (fname
, MONO_DL_LAZY
, NULL
);
1602 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: found in cache: '%s'.", fname
);
1606 if (!strcmp (assembly
->aname
.name
, "mscorlib") && !mscorlib_aot_loaded
)
1608 * Can't AOT this during startup, so we AOT it when called later from
1609 * mono_aot_get_method ().
1613 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: not found.");
1615 /* Only AOT one assembly per run to avoid slowing down execution too much */
1616 if (cache_count
> 0)
1620 /* Check for previous failure */
1621 failure_fname
= g_strdup_printf ("%s.failure", fname
);
1622 failure_file
= fopen (failure_fname
, "r");
1624 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly
->image
->name
, fname
, failure_fname
);
1625 g_free (failure_fname
);
1628 g_free (failure_fname
);
1629 fclose (failure_file
);
1632 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly
->image
->name
, fname
);
1635 * We need to invoke the AOT compiler here. There are multiple approaches:
1636 * - spawn a new runtime process. This can be hard when running with mkbundle, and
1637 * its hard to make the new process load the same set of assemblies.
1638 * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1640 * - fork a new process and do the work there.
1643 aot_options
= g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname
, fname
, config
->aot_options
? "," : "", config
->aot_options
? config
->aot_options
: "");
1644 /* Maybe due this in another thread ? */
1645 res
= mono_compile_assembly (assembly
, mono_parse_default_optimizations (NULL
), aot_options
, NULL
);
1647 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compilation failed.");
1648 failure_fname
= g_strdup_printf ("%s.failure", fname
);
1649 failure_file
= fopen (failure_fname
, "a+");
1650 fclose (failure_file
);
1651 g_free (failure_fname
);
1653 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compilation succeeded.");
1657 * - Avoid waiting for the aot process to finish ?
1658 * (less overhead, but multiple processes could aot the same assembly at the same time)
1667 logfile_name
= g_strdup_printf ("%s/aot.log", cache_dir
);
1668 logfile
= fopen (logfile_name
, "a+");
1669 g_free (logfile_name
);
1671 dup2 (fileno (logfile
), 1);
1672 dup2 (fileno (logfile
), 2);
1674 aot_options
= g_strdup_printf ("outfile=%s", fname
);
1675 res
= mono_compile_assembly (assembly
, mono_parse_default_optimizations (NULL
), aot_options
, NULL
);
1683 waitpid (pid
, &exit_status
, 0);
1684 if (!WIFEXITED (exit_status
) && (WEXITSTATUS (exit_status
) == 0))
1685 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: failed.");
1687 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: succeeded.");
1691 module
= mono_dl_open (fname
, MONO_DL_LAZY
, NULL
);
1699 aot_cache_init (void)
1704 aot_cache_load_module (MonoAssembly
*assembly
, char **aot_name
)
1712 find_symbol (MonoDl
*module
, gpointer
*globals
, const char *name
, gpointer
*value
)
1716 guint16
*table
, *entry
;
1719 char *symbol
= (char*)name
;
1722 symbol
= g_strdup_printf ("_%s", name
);
1725 /* The first entry points to the hash */
1726 table
= (guint16
*)globals
[0];
1729 table_size
= table
[0];
1732 hash
= mono_metadata_str_hash (symbol
) % table_size
;
1734 entry
= &table
[hash
* 2];
1736 /* Search the hash for the index into the globals table */
1738 while (entry
[0] != 0) {
1739 guint32 index
= entry
[0] - 1;
1740 guint32 next
= entry
[1];
1742 //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1744 if (!strcmp (globals
[index
* 2], symbol
)) {
1745 global_index
= index
;
1750 entry
= &table
[next
* 2];
1756 if (global_index
!= -1)
1757 *value
= globals
[global_index
* 2 + 1];
1764 char *err
= mono_dl_symbol (module
, name
, value
);
1772 find_amodule_symbol (MonoAotModule
*amodule
, const char *name
, gpointer
*value
)
1774 g_assert (!(amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
));
1776 find_symbol (amodule
->sofile
, amodule
->globals
, name
, value
);
1780 mono_install_load_aot_data_hook (MonoLoadAotDataFunc load_func
, MonoFreeAotDataFunc free_func
, gpointer user_data
)
1782 aot_data_load_func
= load_func
;
1783 aot_data_free_func
= free_func
;
1784 aot_data_func_user_data
= user_data
;
1787 /* Load the separate aot data file for ASSEMBLY */
1789 open_aot_data (MonoAssembly
*assembly
, MonoAotFileInfo
*info
, void **ret_handle
)
1795 if (aot_data_load_func
) {
1796 data
= aot_data_load_func (assembly
, info
->datafile_size
, aot_data_func_user_data
, ret_handle
);
1802 * Use <assembly name>.aotdata as the default implementation if no callback is given
1804 filename
= g_strdup_printf ("%s.aotdata", assembly
->image
->name
);
1805 map
= mono_file_map_open (filename
);
1807 data
= mono_file_map (info
->datafile_size
, MONO_MMAP_READ
, mono_file_map_fd (map
), 0, ret_handle
);
1814 check_usable (MonoAssembly
*assembly
, MonoAotFileInfo
*info
, guint8
*blob
, char **out_msg
)
1818 gboolean usable
= TRUE
;
1819 gboolean full_aot
, safepoints
;
1820 guint32 excluded_cpu_optimizations
;
1822 if (strcmp (assembly
->image
->guid
, info
->assembly_guid
)) {
1823 msg
= g_strdup_printf ("doesn't match assembly");
1827 build_info
= mono_get_runtime_build_info ();
1828 if (strlen ((const char *)info
->runtime_version
) > 0 && strcmp (info
->runtime_version
, build_info
)) {
1829 msg
= g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info
->runtime_version
, build_info
);
1832 g_free (build_info
);
1834 full_aot
= info
->flags
& MONO_AOT_FILE_FLAG_FULL_AOT
;
1836 if (mono_aot_only
&& !full_aot
) {
1837 msg
= g_strdup_printf ("not compiled with --aot=full");
1840 if (!mono_aot_only
&& full_aot
) {
1841 msg
= g_strdup_printf ("compiled with --aot=full");
1844 if (mono_llvm_only
&& !(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
1845 msg
= g_strdup_printf ("not compiled with --aot=llvmonly");
1848 if (mono_use_llvm
&& !(info
->flags
& MONO_AOT_FILE_FLAG_WITH_LLVM
)) {
1849 /* Prefer LLVM JITted code when using --llvm */
1850 msg
= g_strdup_printf ("not compiled with --aot=llvm");
1853 if (mini_get_debug_options ()->mdb_optimizations
&& !(info
->flags
& MONO_AOT_FILE_FLAG_DEBUG
) && !full_aot
) {
1854 msg
= g_strdup_printf ("not compiled for debugging");
1858 mono_arch_cpu_optimizations (&excluded_cpu_optimizations
);
1859 if (info
->opts
& excluded_cpu_optimizations
) {
1860 msg
= g_strdup_printf ("compiled with unsupported CPU optimizations");
1864 if (!mono_aot_only
&& (info
->simd_opts
& ~mono_arch_cpu_enumerate_simd_versions ())) {
1865 msg
= g_strdup_printf ("compiled with unsupported SIMD extensions");
1869 if (info
->gc_name_index
!= -1) {
1870 char *gc_name
= (char*)&blob
[info
->gc_name_index
];
1871 const char *current_gc_name
= mono_gc_get_gc_name ();
1873 if (strcmp (current_gc_name
, gc_name
) != 0) {
1874 msg
= g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name
, current_gc_name
);
1879 safepoints
= info
->flags
& MONO_AOT_FILE_FLAG_SAFEPOINTS
;
1881 if (!safepoints
&& mono_threads_are_safepoints_enabled ()) {
1882 msg
= g_strdup_printf ("not compiled with safepoints");
1891 * TABLE should point to a table of call instructions. Return the address called by the INDEXth entry.
1894 get_call_table_entry (void *table
, int index
)
1896 #if defined(TARGET_ARM)
1901 ins_addr
= (guint32
*)table
+ index
;
1903 if ((ins
>> ARMCOND_SHIFT
) == ARMCOND_NV
) {
1905 offset
= (((int)(((ins
& 0xffffff) << 1) | ((ins
>> 24) & 0x1))) << 7) >> 7;
1906 return (char*)ins_addr
+ (offset
* 2) + 8 + 1;
1908 offset
= (((int)ins
& 0xffffff) << 8) >> 8;
1909 return (char*)ins_addr
+ (offset
* 4) + 8;
1911 #elif defined(TARGET_ARM64)
1912 return mono_arch_get_call_target ((guint8
*)table
+ (index
* 4) + 4);
1913 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1914 /* The callee expects an ip which points after the call */
1915 return mono_arch_get_call_target ((guint8
*)table
+ (index
* 5) + 5);
1917 g_assert_not_reached ();
1925 * Initialize the shared got entries for AMODULE.
1928 init_amodule_got (MonoAotModule
*amodule
)
1932 MonoJumpInfo
*patches
;
1933 guint32 got_offsets
[128];
1937 /* These can't be initialized in load_aot_module () */
1938 if (amodule
->shared_got
[0] || amodule
->got_initializing
)
1941 amodule
->got_initializing
= TRUE
;
1943 mp
= mono_mempool_new ();
1944 npatches
= amodule
->info
.nshared_got_entries
;
1945 for (i
= 0; i
< npatches
; ++i
)
1946 got_offsets
[i
] = i
;
1947 patches
= decode_patches (amodule
, mp
, npatches
, FALSE
, got_offsets
);
1949 for (i
= 0; i
< npatches
; ++i
) {
1952 if (ji
->type
== MONO_PATCH_INFO_GC_CARD_TABLE_ADDR
&& !mono_gc_is_moving ()) {
1953 amodule
->shared_got
[i
] = NULL
;
1954 } else if (ji
->type
== MONO_PATCH_INFO_GC_NURSERY_START
&& !mono_gc_is_moving ()) {
1955 amodule
->shared_got
[i
] = NULL
;
1956 } else if (ji
->type
== MONO_PATCH_INFO_GC_NURSERY_BITS
&& !mono_gc_is_moving ()) {
1957 amodule
->shared_got
[i
] = NULL
;
1958 } else if (ji
->type
== MONO_PATCH_INFO_IMAGE
) {
1959 amodule
->shared_got
[i
] = amodule
->assembly
->image
;
1960 } else if (ji
->type
== MONO_PATCH_INFO_MSCORLIB_GOT_ADDR
) {
1961 if (mono_defaults
.corlib
) {
1962 MonoAotModule
*mscorlib_amodule
= (MonoAotModule
*)mono_defaults
.corlib
->aot_module
;
1964 if (mscorlib_amodule
)
1965 amodule
->shared_got
[i
] = mscorlib_amodule
->got
;
1967 amodule
->shared_got
[i
] = amodule
->got
;
1969 } else if (ji
->type
== MONO_PATCH_INFO_AOT_MODULE
) {
1970 amodule
->shared_got
[i
] = amodule
;
1972 amodule
->shared_got
[i
] = mono_resolve_patch_target (NULL
, mono_get_root_domain (), NULL
, ji
, FALSE
, error
);
1973 mono_error_assert_ok (error
);
1978 for (i
= 0; i
< npatches
; ++i
)
1979 amodule
->got
[i
] = amodule
->shared_got
[i
];
1981 if (amodule
->llvm_got
) {
1982 for (i
= 0; i
< npatches
; ++i
)
1983 amodule
->llvm_got
[i
] = amodule
->shared_got
[i
];
1986 mono_mempool_destroy (mp
);
1990 load_aot_module (MonoAssembly
*assembly
, gpointer user_data
)
1992 char *aot_name
, *found_aot_name
;
1993 MonoAotModule
*amodule
;
1995 gboolean usable
= TRUE
;
1996 char *version_symbol
= NULL
;
1998 gpointer
*globals
= NULL
;
1999 MonoAotFileInfo
*info
= NULL
;
2001 gboolean do_load_image
= TRUE
;
2002 int align_double
, align_int64
;
2003 guint8
*aot_data
= NULL
;
2005 if (mono_compile_aot
)
2008 if (assembly
->image
->aot_module
)
2010 * Already loaded. This can happen because the assembly loading code might invoke
2011 * the assembly load hooks multiple times for the same assembly.
2015 if (image_is_dynamic (assembly
->image
) || mono_asmctx_get_kind (&assembly
->context
) == MONO_ASMCTX_REFONLY
|| mono_domain_get () != mono_get_root_domain ())
2020 if (container_assm_name
&& !container_amodule
) {
2021 char *local_ref
= container_assm_name
;
2022 container_assm_name
= NULL
;
2023 MonoImageOpenStatus status
= MONO_IMAGE_OK
;
2024 gchar
*dll
= g_strdup_printf ( "%s.dll", local_ref
);
2025 MonoAssembly
*assm
= mono_assembly_open_a_lot (dll
, &status
, MONO_ASMCTX_DEFAULT
);
2027 gchar
*exe
= g_strdup_printf ("%s.exe", local_ref
);
2028 assm
= mono_assembly_open_a_lot (exe
, &status
, MONO_ASMCTX_DEFAULT
);
2031 load_aot_module (assm
, NULL
);
2032 container_amodule
= assm
->image
->aot_module
;
2035 if (static_aot_modules
)
2036 info
= (MonoAotFileInfo
*)g_hash_table_lookup (static_aot_modules
, assembly
->aname
.name
);
2042 found_aot_name
= NULL
;
2045 /* Statically linked AOT module */
2046 aot_name
= g_strdup_printf ("%s", assembly
->aname
.name
);
2047 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "Found statically linked AOT module '%s'.", aot_name
);
2048 if (!(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
2049 globals
= (void **)info
->globals
;
2052 found_aot_name
= g_strdup (aot_name
);
2056 if (enable_aot_cache
)
2057 sofile
= aot_cache_load_module (assembly
, &aot_name
);
2059 aot_name
= g_strdup_printf ("%s%s", assembly
->image
->name
, MONO_SOLIB_EXT
);
2061 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2063 found_aot_name
= g_strdup (aot_name
);
2065 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2071 char *basename
= g_path_get_basename (assembly
->image
->name
);
2072 aot_name
= g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE
, basename
, MONO_SOLIB_EXT
);
2074 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2076 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2084 for (l
= mono_aot_paths
; l
; l
= l
->next
) {
2085 char *path
= l
->data
;
2087 char *basename
= g_path_get_basename (assembly
->image
->name
);
2088 aot_name
= g_strdup_printf ("%s/%s%s", path
, basename
, MONO_SOLIB_EXT
);
2089 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2091 found_aot_name
= g_strdup (aot_name
);
2093 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2103 if (mono_aot_only
&& !mono_use_interpreter
&& assembly
->image
->tables
[MONO_TABLE_METHOD
].rows
) {
2104 aot_name
= g_strdup_printf ("%s%s", assembly
->image
->name
, MONO_SOLIB_EXT
);
2105 g_error ("Failed to load AOT module '%s' in aot-only mode.\n", aot_name
);
2113 find_symbol (sofile
, globals
, "mono_aot_version", (gpointer
*) &version_symbol
);
2114 find_symbol (sofile
, globals
, "mono_aot_file_info", (gpointer
*)&info
);
2117 // Copy aotid to MonoImage
2118 memcpy(&assembly
->image
->aotid
, info
->aotid
, 16);
2120 if (version_symbol
) {
2121 /* Old file format */
2122 version
= atoi (version_symbol
);
2125 version
= info
->version
;
2128 if (version
!= MONO_AOT_FILE_VERSION
) {
2129 msg
= g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION
, version
);
2135 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2136 aot_data
= open_aot_data (assembly
, info
, &handle
);
2138 blob
= aot_data
+ info
->table_offsets
[MONO_AOT_TABLE_BLOB
];
2140 blob
= (guint8
*)info
->blob
;
2143 usable
= check_usable (assembly
, info
, blob
, &msg
);
2147 if (mono_aot_only
&& !mono_use_interpreter
) {
2148 g_error ("Failed to load AOT module '%s' while running in aot-only mode: %s.\n", found_aot_name
, msg
);
2150 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: module %s is unusable: %s.", found_aot_name
, msg
);
2153 g_free (found_aot_name
);
2155 mono_dl_close (sofile
);
2156 assembly
->image
->aot_module
= NULL
;
2161 align_double
= MONO_ABI_ALIGNOF (double);
2162 align_int64
= MONO_ABI_ALIGNOF (gint64
);
2163 g_assert (info
->double_align
== align_double
);
2164 g_assert (info
->long_align
== align_int64
);
2165 g_assert (info
->generic_tramp_num
== MONO_TRAMPOLINE_NUM
);
2167 amodule
= g_new0 (MonoAotModule
, 1);
2168 amodule
->aot_name
= found_aot_name
;
2169 amodule
->assembly
= assembly
;
2171 memcpy (&amodule
->info
, info
, sizeof (*info
));
2173 amodule
->got
= (void **)amodule
->info
.jit_got
;
2174 amodule
->llvm_got
= (void **)amodule
->info
.llvm_got
;
2175 amodule
->globals
= globals
;
2176 amodule
->sofile
= sofile
;
2177 amodule
->method_to_code
= g_hash_table_new (mono_aligned_addr_hash
, NULL
);
2178 amodule
->extra_methods
= g_hash_table_new (NULL
, NULL
);
2179 amodule
->shared_got
= g_new0 (gpointer
, info
->nshared_got_entries
);
2181 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2182 for (i
= 0; i
< MONO_AOT_TABLE_NUM
; ++i
)
2183 amodule
->tables
[i
] = aot_data
+ info
->table_offsets
[i
];
2186 mono_os_mutex_init_recursive (&amodule
->mutex
);
2188 /* Read image table */
2190 guint32 table_len
, i
;
2193 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
)
2194 table
= amodule
->tables
[MONO_AOT_TABLE_IMAGE_TABLE
];
2196 table
= (char *)info
->image_table
;
2199 table_len
= *(guint32
*)table
;
2200 table
+= sizeof (guint32
);
2201 amodule
->image_table
= g_new0 (MonoImage
*, table_len
);
2202 amodule
->image_names
= g_new0 (MonoAssemblyName
, table_len
);
2203 amodule
->image_guids
= g_new0 (char*, table_len
);
2204 amodule
->image_table_len
= table_len
;
2205 for (i
= 0; i
< table_len
; ++i
) {
2206 MonoAssemblyName
*aname
= &(amodule
->image_names
[i
]);
2208 aname
->name
= g_strdup (table
);
2209 table
+= strlen (table
) + 1;
2210 amodule
->image_guids
[i
] = g_strdup (table
);
2211 table
+= strlen (table
) + 1;
2213 aname
->culture
= g_strdup (table
);
2214 table
+= strlen (table
) + 1;
2215 memcpy (aname
->public_key_token
, table
, strlen (table
) + 1);
2216 table
+= strlen (table
) + 1;
2218 table
= (char *)ALIGN_PTR_TO (table
, 8);
2219 aname
->flags
= *(guint32
*)table
;
2221 aname
->major
= *(guint32
*)table
;
2223 aname
->minor
= *(guint32
*)table
;
2225 aname
->build
= *(guint32
*)table
;
2227 aname
->revision
= *(guint32
*)table
;
2232 amodule
->jit_code_start
= (guint8
*)info
->jit_code_start
;
2233 amodule
->jit_code_end
= (guint8
*)info
->jit_code_end
;
2234 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2235 amodule
->blob
= amodule
->tables
[MONO_AOT_TABLE_BLOB
];
2236 amodule
->method_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_METHOD_INFO_OFFSETS
];
2237 amodule
->ex_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_EX_INFO_OFFSETS
];
2238 amodule
->class_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_CLASS_INFO_OFFSETS
];
2239 amodule
->class_name_table
= amodule
->tables
[MONO_AOT_TABLE_CLASS_NAME
];
2240 amodule
->extra_method_table
= amodule
->tables
[MONO_AOT_TABLE_EXTRA_METHOD_TABLE
];
2241 amodule
->extra_method_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS
];
2242 amodule
->got_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_GOT_INFO_OFFSETS
];
2243 amodule
->llvm_got_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS
];
2244 amodule
->weak_field_indexes
= amodule
->tables
[MONO_AOT_TABLE_WEAK_FIELD_INDEXES
];
2246 amodule
->blob
= info
->blob
;
2247 amodule
->method_info_offsets
= (guint32
*)info
->method_info_offsets
;
2248 amodule
->ex_info_offsets
= (guint32
*)info
->ex_info_offsets
;
2249 amodule
->class_info_offsets
= (guint32
*)info
->class_info_offsets
;
2250 amodule
->class_name_table
= (guint16
*)info
->class_name_table
;
2251 amodule
->extra_method_table
= (guint32
*)info
->extra_method_table
;
2252 amodule
->extra_method_info_offsets
= (guint32
*)info
->extra_method_info_offsets
;
2253 amodule
->got_info_offsets
= info
->got_info_offsets
;
2254 amodule
->llvm_got_info_offsets
= info
->llvm_got_info_offsets
;
2255 amodule
->weak_field_indexes
= info
->weak_field_indexes
;
2257 amodule
->unbox_trampolines
= (guint32
*)info
->unbox_trampolines
;
2258 amodule
->unbox_trampolines_end
= (guint32
*)info
->unbox_trampolines_end
;
2259 amodule
->unbox_trampoline_addresses
= (guint32
*)info
->unbox_trampoline_addresses
;
2260 amodule
->unwind_info
= (guint8
*)info
->unwind_info
;
2261 amodule
->mem_begin
= amodule
->jit_code_start
;
2262 amodule
->mem_end
= (guint8
*)info
->mem_end
;
2263 amodule
->plt
= (guint8
*)info
->plt
;
2264 amodule
->plt_end
= (guint8
*)info
->plt_end
;
2265 amodule
->mono_eh_frame
= (guint8
*)info
->mono_eh_frame
;
2266 amodule
->trampolines
[MONO_AOT_TRAMP_SPECIFIC
] = (guint8
*)info
->specific_trampolines
;
2267 amodule
->trampolines
[MONO_AOT_TRAMP_STATIC_RGCTX
] = (guint8
*)info
->static_rgctx_trampolines
;
2268 amodule
->trampolines
[MONO_AOT_TRAMP_IMT
] = (guint8
*)info
->imt_trampolines
;
2269 amodule
->trampolines
[MONO_AOT_TRAMP_GSHAREDVT_ARG
] = (guint8
*)info
->gsharedvt_arg_trampolines
;
2271 if (!strcmp (assembly
->aname
.name
, "mscorlib"))
2272 mscorlib_aot_module
= amodule
;
2274 /* Compute method addresses */
2275 amodule
->methods
= (void **)g_malloc0 (amodule
->info
.nmethods
* sizeof (gpointer
));
2276 for (i
= 0; i
< amodule
->info
.nmethods
; ++i
) {
2279 if (amodule
->info
.llvm_get_method
) {
2280 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
2282 addr
= get_method (i
);
2285 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
2286 if (!addr
&& amodule
->info
.method_addresses
) {
2287 addr
= get_call_table_entry (amodule
->info
.method_addresses
, i
);
2289 if (addr
== amodule
->info
.method_addresses
)
2293 amodule
->methods
[i
] = GINT_TO_POINTER (-1);
2295 amodule
->methods
[i
] = addr
;
2298 if (make_unreadable
) {
2299 #ifndef TARGET_WIN32
2301 guint8
*page_start
, *page_end
;
2304 addr
= amodule
->mem_begin
;
2306 len
= amodule
->mem_end
- amodule
->mem_begin
;
2308 /* Round down in both directions to avoid modifying data which is not ours */
2309 page_start
= (guint8
*) (((gssize
) (addr
)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2310 page_end
= (guint8
*) (((gssize
) (addr
+ len
)) & ~ (mono_pagesize () - 1));
2311 if (page_end
> page_start
) {
2312 err
= mono_mprotect (page_start
, (page_end
- page_start
), MONO_MMAP_NONE
);
2313 g_assert (err
== 0);
2318 /* Compute the boundaries of LLVM code */
2319 if (info
->flags
& MONO_AOT_FILE_FLAG_WITH_LLVM
)
2320 compute_llvm_code_range (amodule
, &amodule
->llvm_code_start
, &amodule
->llvm_code_end
);
2324 if (amodule
->jit_code_start
) {
2325 aot_code_low_addr
= MIN (aot_code_low_addr
, (gsize
)amodule
->jit_code_start
);
2326 aot_code_high_addr
= MAX (aot_code_high_addr
, (gsize
)amodule
->jit_code_end
);
2328 if (amodule
->llvm_code_start
) {
2329 aot_code_low_addr
= MIN (aot_code_low_addr
, (gsize
)amodule
->llvm_code_start
);
2330 aot_code_high_addr
= MAX (aot_code_high_addr
, (gsize
)amodule
->llvm_code_end
);
2333 g_hash_table_insert (aot_modules
, assembly
, amodule
);
2336 if (amodule
->jit_code_start
)
2337 mono_jit_info_add_aot_module (assembly
->image
, amodule
->jit_code_start
, amodule
->jit_code_end
);
2338 if (amodule
->llvm_code_start
)
2339 mono_jit_info_add_aot_module (assembly
->image
, amodule
->llvm_code_start
, amodule
->llvm_code_end
);
2341 assembly
->image
->aot_module
= amodule
;
2343 if (mono_aot_only
&& !mono_llvm_only
) {
2345 find_amodule_symbol (amodule
, "specific_trampolines_page", (gpointer
*)&code
);
2346 amodule
->use_page_trampolines
= code
!= NULL
;
2347 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2351 * Register the plt region as a single trampoline so we can unwind from this code
2353 mono_aot_tramp_info_register (
2354 mono_tramp_info_create (
2357 amodule
->plt_end
- amodule
->plt
,
2359 mono_unwind_get_cie_program ()
2365 * Since we store methoddef and classdef tokens when referring to methods/classes in
2366 * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2367 * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2368 * non-lazily, since we can't handle out-of-date errors later.
2369 * The cached class info also depends on the exact assemblies.
2371 if (do_load_image
) {
2372 for (i
= 0; i
< amodule
->image_table_len
; ++i
) {
2374 load_image (amodule
, i
, error
);
2375 mono_error_cleanup (error
); /* FIXME don't swallow the error */
2379 if (amodule
->out_of_date
) {
2380 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: Module %s is unusable because a dependency is out-of-date.", assembly
->image
->name
);
2382 g_error ("Failed to load AOT module '%s' while running in aot-only mode because a dependency cannot be found or it is out of date.\n", found_aot_name
);
2384 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' found.", found_aot_name
);
2389 * mono_aot_register_module:
2391 * This should be called by embedding code to register normal AOT modules statically linked
2392 * into the executable.
2394 * \param aot_info the value of the 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2397 mono_aot_register_module (gpointer
*aot_info
)
2401 MonoAotFileInfo
*info
= (MonoAotFileInfo
*)aot_info
;
2403 g_assert (info
->version
== MONO_AOT_FILE_VERSION
);
2405 if (!(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
2406 globals
= (void **)info
->globals
;
2410 aname
= (char *)info
->assembly_name
;
2412 /* This could be called before startup */
2416 if (!static_aot_modules
)
2417 static_aot_modules
= g_hash_table_new (g_str_hash
, g_str_equal
);
2419 g_hash_table_insert (static_aot_modules
, aname
, info
);
2421 if (info
->flags
& MONO_AOT_FILE_FLAG_EAGER_LOAD
) {
2422 g_assert (!container_assm_name
);
2423 container_assm_name
= aname
;
2431 mono_aot_init (void)
2433 mono_os_mutex_init_recursive (&aot_mutex
);
2434 mono_os_mutex_init_recursive (&aot_page_mutex
);
2435 aot_modules
= g_hash_table_new (NULL
, NULL
);
2437 mono_install_assembly_load_hook (load_aot_module
, NULL
);
2438 mono_counters_register ("Async JIT info size", MONO_COUNTER_INT
|MONO_COUNTER_JIT
, &async_jit_info_size
);
2440 char *lastaot
= g_getenv ("MONO_LASTAOT");
2442 mono_last_aot_method
= atoi (lastaot
);
2449 mono_aot_cleanup (void)
2451 g_hash_table_destroy (aot_jit_icall_hash
);
2452 g_hash_table_destroy (aot_modules
);
2456 decode_cached_class_info (MonoAotModule
*module
, MonoCachedClassInfo
*info
, guint8
*buf
, guint8
**endbuf
)
2463 info
->vtable_size
= decode_value (buf
, &buf
);
2464 if (info
->vtable_size
== -1)
2467 flags
= decode_value (buf
, &buf
);
2468 info
->ghcimpl
= (flags
>> 0) & 0x1;
2469 info
->has_finalize
= (flags
>> 1) & 0x1;
2470 info
->has_cctor
= (flags
>> 2) & 0x1;
2471 info
->has_nested_classes
= (flags
>> 3) & 0x1;
2472 info
->blittable
= (flags
>> 4) & 0x1;
2473 info
->has_references
= (flags
>> 5) & 0x1;
2474 info
->has_static_refs
= (flags
>> 6) & 0x1;
2475 info
->no_special_static_fields
= (flags
>> 7) & 0x1;
2476 info
->is_generic_container
= (flags
>> 8) & 0x1;
2477 info
->has_weak_fields
= (flags
>> 9) & 0x1;
2479 if (info
->has_cctor
) {
2480 res
= decode_method_ref (module
, &ref
, buf
, &buf
, error
);
2481 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
2484 info
->cctor_token
= ref
.token
;
2486 if (info
->has_finalize
) {
2487 res
= decode_method_ref (module
, &ref
, buf
, &buf
, error
);
2488 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
2491 info
->finalize_image
= ref
.image
;
2492 info
->finalize_token
= ref
.token
;
2495 info
->instance_size
= decode_value (buf
, &buf
);
2496 info
->class_size
= decode_value (buf
, &buf
);
2497 info
->packing_size
= decode_value (buf
, &buf
);
2498 info
->min_align
= decode_value (buf
, &buf
);
2506 mono_aot_get_method_from_vt_slot (MonoDomain
*domain
, MonoVTable
*vtable
, int slot
, MonoError
*error
)
2509 MonoClass
*klass
= vtable
->klass
;
2510 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
2512 MonoCachedClassInfo class_info
;
2517 ERROR_DECL_VALUE (inner_error
);
2521 if (MONO_CLASS_IS_INTERFACE (klass
) || m_class_get_rank (klass
) || !amodule
)
2524 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->class_info_offsets
, mono_metadata_token_index (m_class_get_type_token (klass
)) - 1)];
2527 err
= decode_cached_class_info (amodule
, &class_info
, p
, &p
);
2531 for (i
= 0; i
< slot
; ++i
) {
2532 decode_method_ref (amodule
, &ref
, p
, &p
, &inner_error
);
2533 mono_error_cleanup (&inner_error
); /* FIXME don't swallow the error */
2536 res
= decode_method_ref (amodule
, &ref
, p
, &p
, &inner_error
);
2537 mono_error_cleanup (&inner_error
); /* FIXME don't swallow the error */
2540 if (ref
.no_aot_trampoline
)
2543 if (mono_metadata_token_index (ref
.token
) == 0 || mono_metadata_token_table (ref
.token
) != MONO_TABLE_METHOD
)
2546 addr
= mono_aot_get_method_from_token (domain
, ref
.image
, ref
.token
, error
);
2551 mono_aot_get_cached_class_info (MonoClass
*klass
, MonoCachedClassInfo
*res
)
2553 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
2557 if (m_class_get_rank (klass
) || !m_class_get_type_token (klass
) || !amodule
)
2560 p
= (guint8
*)&amodule
->blob
[mono_aot_get_offset (amodule
->class_info_offsets
, mono_metadata_token_index (m_class_get_type_token (klass
)) - 1)];
2562 err
= decode_cached_class_info (amodule
, res
, p
, &p
);
2570 * mono_aot_get_class_from_name:
2572 * Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2573 * using a cache stored in the AOT file.
2574 * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2576 * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was
2580 mono_aot_get_class_from_name (MonoImage
*image
, const char *name_space
, const char *name
, MonoClass
**klass
)
2582 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
2583 guint16
*table
, *entry
;
2586 char full_name_buf
[1024];
2588 const char *name2
, *name_space2
;
2590 guint32 cols
[MONO_TYPEDEF_SIZE
];
2591 GHashTable
*nspace_table
;
2593 if (!amodule
|| !amodule
->class_name_table
)
2596 amodule_lock (amodule
);
2600 /* First look in the cache */
2601 if (!amodule
->name_cache
)
2602 amodule
->name_cache
= g_hash_table_new (g_str_hash
, g_str_equal
);
2603 nspace_table
= (GHashTable
*)g_hash_table_lookup (amodule
->name_cache
, name_space
);
2605 *klass
= (MonoClass
*)g_hash_table_lookup (nspace_table
, name
);
2607 amodule_unlock (amodule
);
2612 table_size
= amodule
->class_name_table
[0];
2613 table
= amodule
->class_name_table
+ 1;
2615 if (name_space
[0] == '\0')
2616 full_name
= g_strdup_printf ("%s", name
);
2618 if (strlen (name_space
) + strlen (name
) < 1000) {
2619 sprintf (full_name_buf
, "%s.%s", name_space
, name
);
2620 full_name
= full_name_buf
;
2622 full_name
= g_strdup_printf ("%s.%s", name_space
, name
);
2625 hash
= mono_metadata_str_hash (full_name
) % table_size
;
2626 if (full_name
!= full_name_buf
)
2629 entry
= &table
[hash
* 2];
2631 if (entry
[0] != 0) {
2632 t
= &image
->tables
[MONO_TABLE_TYPEDEF
];
2635 guint32 index
= entry
[0];
2636 guint32 next
= entry
[1];
2637 guint32 token
= mono_metadata_make_token (MONO_TABLE_TYPEDEF
, index
);
2639 name_table_accesses
++;
2641 mono_metadata_decode_row (t
, index
- 1, cols
, MONO_TYPEDEF_SIZE
);
2643 name2
= mono_metadata_string_heap (image
, cols
[MONO_TYPEDEF_NAME
]);
2644 name_space2
= mono_metadata_string_heap (image
, cols
[MONO_TYPEDEF_NAMESPACE
]);
2646 if (!strcmp (name
, name2
) && !strcmp (name_space
, name_space2
)) {
2648 amodule_unlock (amodule
);
2649 *klass
= mono_class_get_checked (image
, token
, error
);
2650 if (!mono_error_ok (error
))
2651 mono_error_cleanup (error
); /* FIXME don't swallow the error */
2655 amodule_lock (amodule
);
2656 nspace_table
= (GHashTable
*)g_hash_table_lookup (amodule
->name_cache
, name_space
);
2657 if (!nspace_table
) {
2658 nspace_table
= g_hash_table_new (g_str_hash
, g_str_equal
);
2659 g_hash_table_insert (amodule
->name_cache
, (char*)name_space2
, nspace_table
);
2661 g_hash_table_insert (nspace_table
, (char*)name2
, *klass
);
2662 amodule_unlock (amodule
);
2668 entry
= &table
[next
* 2];
2675 amodule_unlock (amodule
);
2681 mono_aot_get_weak_field_indexes (MonoImage
*image
)
2683 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
2688 /* Initialize weak field indexes from the cached copy */
2689 guint32
*indexes
= amodule
->weak_field_indexes
;
2690 int len
= indexes
[0];
2691 GHashTable
*indexes_hash
= g_hash_table_new (NULL
, NULL
);
2692 for (int i
= 0; i
< len
; ++i
)
2693 g_hash_table_insert (indexes_hash
, GUINT_TO_POINTER (indexes
[i
+ 1]), GUINT_TO_POINTER (1));
2694 return indexes_hash
;
2697 /* Compute the boundaries of the LLVM code for AMODULE. */
2699 compute_llvm_code_range (MonoAotModule
*amodule
, guint8
**code_start
, guint8
**code_end
)
2702 int version
, fde_count
;
2705 if (amodule
->info
.llvm_get_method
) {
2706 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
2708 *code_start
= (guint8
*)get_method (-1);
2709 *code_end
= (guint8
*)get_method (-2);
2711 g_assert (*code_end
> *code_start
);
2715 g_assert (amodule
->mono_eh_frame
);
2717 p
= amodule
->mono_eh_frame
;
2719 /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2723 g_assert (version
== 3);
2726 p
= (guint8
*)ALIGN_PTR_TO (p
, 4);
2728 fde_count
= *(guint32
*)p
;
2732 if (fde_count
> 0) {
2733 *code_start
= (guint8
*)amodule
->methods
[table
[0]];
2734 *code_end
= (guint8
*)amodule
->methods
[table
[(fde_count
- 1) * 2]] + table
[fde_count
* 2];
2742 is_llvm_code (MonoAotModule
*amodule
, guint8
*code
)
2744 if ((guint8
*)code
>= amodule
->llvm_code_start
&& (guint8
*)code
< amodule
->llvm_code_end
)
2751 is_thumb_code (MonoAotModule
*amodule
, guint8
*code
)
2753 if (is_llvm_code (amodule
, code
) && (amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_THUMB
))
2760 * decode_llvm_mono_eh_frame:
2762 * Decode the EH information emitted by our modified LLVM compiler and construct a
2763 * MonoJitInfo structure from it.
2764 * If JINFO is NULL, set OUT_LLVM_CLAUSES to the number of llvm level clauses.
2765 * This function is async safe when called in async context.
2768 decode_llvm_mono_eh_frame (MonoAotModule
*amodule
, MonoDomain
*domain
, MonoJitInfo
*jinfo
,
2769 guint8
*code
, guint32 code_len
,
2770 MonoJitExceptionInfo
*clauses
, int num_clauses
,
2772 int *this_reg
, int *this_offset
, int *out_llvm_clauses
)
2774 guint8
*p
, *code1
, *code2
;
2775 guint8
*fde
, *cie
, *code_start
, *code_end
;
2776 int version
, fde_count
;
2778 int i
, pos
, left
, right
;
2779 MonoJitExceptionInfo
*ei
;
2780 guint32 fde_len
, ei_len
, nested_len
, nindex
;
2781 gpointer
*type_info
;
2782 MonoLLVMFDEInfo info
;
2786 async
= mono_thread_info_is_async_context ();
2788 if (!amodule
->mono_eh_frame
) {
2790 *out_llvm_clauses
= num_clauses
;
2793 memcpy (jinfo
->clauses
, clauses
, num_clauses
* sizeof (MonoJitExceptionInfo
));
2797 g_assert (amodule
->mono_eh_frame
&& code
);
2799 p
= amodule
->mono_eh_frame
;
2801 /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2805 g_assert (version
== 3);
2807 /* func_encoding = *p; */
2809 p
= (guint8
*)ALIGN_PTR_TO (p
, 4);
2811 fde_count
= *(guint32
*)p
;
2815 /* There is +1 entry in the table */
2816 cie
= p
+ ((fde_count
+ 1) * 8);
2818 /* Binary search in the table to find the entry for code */
2822 pos
= (left
+ right
) / 2;
2824 /* The table contains method index/fde offset pairs */
2825 g_assert (table
[(pos
* 2)] != -1);
2826 code1
= (guint8
*)amodule
->methods
[table
[(pos
* 2)]];
2827 if (pos
+ 1 == fde_count
) {
2828 code2
= amodule
->llvm_code_end
;
2830 g_assert (table
[(pos
+ 1) * 2] != -1);
2831 code2
= (guint8
*)amodule
->methods
[table
[(pos
+ 1) * 2]];
2836 else if (code
>= code2
)
2842 code_start
= (guint8
*)amodule
->methods
[table
[(pos
* 2)]];
2843 if (pos
+ 1 == fde_count
) {
2844 /* The +1 entry in the table contains the length of the last method */
2845 int len
= table
[(pos
+ 1) * 2];
2846 code_end
= code_start
+ len
;
2848 code_end
= (guint8
*)amodule
->methods
[table
[(pos
+ 1) * 2]];
2851 code_len
= code_end
- code_start
;
2853 g_assert (code
>= code_start
&& code
< code_end
);
2855 if (is_thumb_code (amodule
, code_start
))
2856 /* Clear thumb flag */
2857 code_start
= (guint8
*)(((mgreg_t
)code_start
) & ~1);
2859 fde
= amodule
->mono_eh_frame
+ table
[(pos
* 2) + 1];
2860 /* This won't overflow because there is +1 entry in the table */
2861 fde_len
= table
[(pos
* 2) + 2 + 1] - table
[(pos
* 2) + 1];
2863 /* Compute lengths */
2864 mono_unwind_decode_llvm_mono_fde (fde
, fde_len
, cie
, code_start
, &info
, NULL
, NULL
, NULL
);
2867 /* These are leaked, but the leak is bounded */
2868 ei
= mono_domain_alloc0_lock_free (domain
, info
.ex_info_len
* sizeof (MonoJitExceptionInfo
));
2869 type_info
= mono_domain_alloc0_lock_free (domain
, info
.ex_info_len
* sizeof (gpointer
));
2870 unw_info
= mono_domain_alloc0_lock_free (domain
, info
.unw_info_len
);
2872 ei
= (MonoJitExceptionInfo
*)g_malloc0 (info
.ex_info_len
* sizeof (MonoJitExceptionInfo
));
2873 type_info
= (gpointer
*)g_malloc0 (info
.ex_info_len
* sizeof (gpointer
));
2874 unw_info
= (guint8
*)g_malloc0 (info
.unw_info_len
);
2876 mono_unwind_decode_llvm_mono_fde (fde
, fde_len
, cie
, code_start
, &info
, ei
, type_info
, unw_info
);
2878 ei_len
= info
.ex_info_len
;
2879 *this_reg
= info
.this_reg
;
2880 *this_offset
= info
.this_offset
;
2883 * LLVM might represent one IL region with multiple regions.
2886 /* Count number of nested clauses */
2888 for (i
= 0; i
< ei_len
; ++i
) {
2889 /* This might be unaligned */
2890 gint32 cindex1
= read32 (type_info
[i
]);
2893 for (l
= nesting
[cindex1
]; l
; l
= l
->next
)
2898 *out_llvm_clauses
= ei_len
+ nested_len
;
2902 /* Store the unwind info addr/length in the MonoJitInfo structure itself so its async safe */
2903 MonoUnwindJitInfo
*jinfo_unwind
= mono_jit_info_get_unwind_info (jinfo
);
2904 g_assert (jinfo_unwind
);
2905 jinfo_unwind
->unw_info
= unw_info
;
2906 jinfo_unwind
->unw_info_len
= info
.unw_info_len
;
2908 for (i
= 0; i
< ei_len
; ++i
) {
2910 * clauses contains the original IL exception info saved by the AOT
2911 * compiler, we have to combine that with the information produced by LLVM
2913 /* The type_info entries contain IL clause indexes */
2914 int clause_index
= read32 (type_info
[i
]);
2915 MonoJitExceptionInfo
*jei
= &jinfo
->clauses
[i
];
2916 MonoJitExceptionInfo
*orig_jei
= &clauses
[clause_index
];
2918 g_assert (clause_index
< num_clauses
);
2919 jei
->flags
= orig_jei
->flags
;
2920 jei
->data
.catch_class
= orig_jei
->data
.catch_class
;
2922 jei
->try_start
= ei
[i
].try_start
;
2923 jei
->try_end
= ei
[i
].try_end
;
2924 jei
->handler_start
= ei
[i
].handler_start
;
2925 jei
->clause_index
= clause_index
;
2927 if (is_thumb_code (amodule
, (guint8
*)jei
->try_start
)) {
2928 jei
->try_start
= (void*)((mgreg_t
)jei
->try_start
& ~1);
2929 jei
->try_end
= (void*)((mgreg_t
)jei
->try_end
& ~1);
2930 /* Make sure we transition to thumb when a handler starts */
2931 jei
->handler_start
= (void*)((mgreg_t
)jei
->handler_start
+ 1);
2935 /* See exception_cb () in mini-llvm.c as to why this is needed */
2937 for (i
= 0; i
< ei_len
; ++i
) {
2938 gint32 cindex1
= read32 (type_info
[i
]);
2941 for (l
= nesting
[cindex1
]; l
; l
= l
->next
) {
2942 gint32 nesting_cindex
= GPOINTER_TO_INT (l
->data
);
2943 MonoJitExceptionInfo
*nesting_ei
;
2944 MonoJitExceptionInfo
*nesting_clause
= &clauses
[nesting_cindex
];
2946 nesting_ei
= &jinfo
->clauses
[nindex
];
2949 memcpy (nesting_ei
, &jinfo
->clauses
[i
], sizeof (MonoJitExceptionInfo
));
2950 nesting_ei
->flags
= nesting_clause
->flags
;
2951 nesting_ei
->data
.catch_class
= nesting_clause
->data
.catch_class
;
2952 nesting_ei
->clause_index
= nesting_cindex
;
2955 g_assert (nindex
== ei_len
+ nested_len
);
2959 alloc0_jit_info_data (MonoDomain
*domain
, int size
, gboolean async_context
)
2963 if (async_context
) {
2964 res
= mono_domain_alloc0_lock_free (domain
, size
);
2965 mono_atomic_fetch_add_i32 (&async_jit_info_size
, size
);
2967 res
= mono_domain_alloc0 (domain
, size
);
2973 * LOCKING: Acquires the domain lock.
2974 * In async context, this is async safe.
2977 decode_exception_debug_info (MonoAotModule
*amodule
, MonoDomain
*domain
,
2978 MonoMethod
*method
, guint8
* ex_info
,
2979 guint8
*code
, guint32 code_len
)
2982 int i
, buf_len
, num_clauses
, len
;
2984 MonoJitInfoFlags flags
= JIT_INFO_NONE
;
2985 guint unwind_info
, eflags
;
2986 gboolean has_generic_jit_info
, has_dwarf_unwind_info
, has_clauses
, has_seq_points
, has_try_block_holes
, has_arch_eh_jit_info
;
2987 gboolean from_llvm
, has_gc_map
;
2989 int try_holes_info_size
, num_holes
;
2990 int this_reg
= 0, this_offset
= 0;
2993 /* Load the method info from the AOT file */
2994 async
= mono_thread_info_is_async_context ();
2997 eflags
= decode_value (p
, &p
);
2998 has_generic_jit_info
= (eflags
& 1) != 0;
2999 has_dwarf_unwind_info
= (eflags
& 2) != 0;
3000 has_clauses
= (eflags
& 4) != 0;
3001 has_seq_points
= (eflags
& 8) != 0;
3002 from_llvm
= (eflags
& 16) != 0;
3003 has_try_block_holes
= (eflags
& 32) != 0;
3004 has_gc_map
= (eflags
& 64) != 0;
3005 has_arch_eh_jit_info
= (eflags
& 128) != 0;
3007 if (has_dwarf_unwind_info
) {
3008 unwind_info
= decode_value (p
, &p
);
3009 g_assert (unwind_info
< (1 << 30));
3011 unwind_info
= decode_value (p
, &p
);
3013 if (has_generic_jit_info
)
3014 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_GENERIC_JIT_INFO
);
3016 if (has_try_block_holes
) {
3017 num_holes
= decode_value (p
, &p
);
3018 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_TRY_BLOCK_HOLES
);
3019 try_holes_info_size
= sizeof (MonoTryBlockHoleTableJitInfo
) + num_holes
* sizeof (MonoTryBlockHoleJitInfo
);
3021 num_holes
= try_holes_info_size
= 0;
3024 if (has_arch_eh_jit_info
) {
3025 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_ARCH_EH_INFO
);
3026 /* Overwrite the original code_len which includes alignment padding */
3027 code_len
= decode_value (p
, &p
);
3030 /* Exception table */
3032 num_clauses
= decode_value (p
, &p
);
3037 MonoJitExceptionInfo
*clauses
;
3041 * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
3045 if (num_clauses
< 16) {
3046 clauses
= g_newa (MonoJitExceptionInfo
, num_clauses
);
3047 nesting
= g_newa (GSList
*, num_clauses
);
3049 clauses
= alloc0_jit_info_data (domain
, sizeof (MonoJitExceptionInfo
) * num_clauses
, TRUE
);
3050 nesting
= alloc0_jit_info_data (domain
, sizeof (GSList
*) * num_clauses
, TRUE
);
3052 memset (clauses
, 0, sizeof (MonoJitExceptionInfo
) * num_clauses
);
3053 memset (nesting
, 0, sizeof (GSList
*) * num_clauses
);
3055 clauses
= g_new0 (MonoJitExceptionInfo
, num_clauses
);
3056 nesting
= g_new0 (GSList
*, num_clauses
);
3059 for (i
= 0; i
< num_clauses
; ++i
) {
3060 MonoJitExceptionInfo
*ei
= &clauses
[i
];
3062 ei
->flags
= decode_value (p
, &p
);
3064 if (!(ei
->flags
== MONO_EXCEPTION_CLAUSE_FILTER
|| ei
->flags
== MONO_EXCEPTION_CLAUSE_FINALLY
)) {
3065 int len
= decode_value (p
, &p
);
3071 ei
->data
.catch_class
= decode_klass_ref (amodule
, p
, &p
, error
);
3072 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3077 ei
->clause_index
= i
;
3079 ei
->try_offset
= decode_value (p
, &p
);
3080 ei
->try_len
= decode_value (p
, &p
);
3081 ei
->handler_offset
= decode_value (p
, &p
);
3082 ei
->handler_len
= decode_value (p
, &p
);
3084 /* Read the list of nesting clauses */
3086 int nesting_index
= decode_value (p
, &p
);
3087 if (nesting_index
== -1)
3091 nesting
[i
] = g_slist_prepend (nesting
[i
], GINT_TO_POINTER (nesting_index
));
3095 flags
|= JIT_INFO_HAS_UNWIND_INFO
;
3097 int num_llvm_clauses
;
3098 /* Get the length first */
3099 decode_llvm_mono_eh_frame (amodule
, domain
, NULL
, code
, code_len
, clauses
, num_clauses
, nesting
, &this_reg
, &this_offset
, &num_llvm_clauses
);
3100 len
= mono_jit_info_size (flags
, num_llvm_clauses
, num_holes
);
3101 jinfo
= (MonoJitInfo
*)alloc0_jit_info_data (domain
, len
, async
);
3102 mono_jit_info_init (jinfo
, method
, code
, code_len
, flags
, num_llvm_clauses
, num_holes
);
3104 decode_llvm_mono_eh_frame (amodule
, domain
, jinfo
, code
, code_len
, clauses
, num_clauses
, nesting
, &this_reg
, &this_offset
, NULL
);
3108 for (i
= 0; i
< num_clauses
; ++i
)
3109 g_slist_free (nesting
[i
]);
3112 jinfo
->from_llvm
= 1;
3114 len
= mono_jit_info_size (flags
, num_clauses
, num_holes
);
3115 jinfo
= (MonoJitInfo
*)alloc0_jit_info_data (domain
, len
, async
);
3116 mono_jit_info_init (jinfo
, method
, code
, code_len
, flags
, num_clauses
, num_holes
);
3118 for (i
= 0; i
< jinfo
->num_clauses
; ++i
) {
3119 MonoJitExceptionInfo
*ei
= &jinfo
->clauses
[i
];
3121 ei
->flags
= decode_value (p
, &p
);
3123 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
3124 /* Not used for catch clauses */
3125 if (ei
->flags
!= MONO_EXCEPTION_CLAUSE_NONE
)
3126 ei
->exvar_offset
= decode_value (p
, &p
);
3128 ei
->exvar_offset
= decode_value (p
, &p
);
3131 if (ei
->flags
== MONO_EXCEPTION_CLAUSE_FILTER
|| ei
->flags
== MONO_EXCEPTION_CLAUSE_FINALLY
)
3132 ei
->data
.filter
= code
+ decode_value (p
, &p
);
3134 int len
= decode_value (p
, &p
);
3140 ei
->data
.catch_class
= decode_klass_ref (amodule
, p
, &p
, error
);
3141 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3146 ei
->try_start
= code
+ decode_value (p
, &p
);
3147 ei
->try_end
= code
+ decode_value (p
, &p
);
3148 ei
->handler_start
= code
+ decode_value (p
, &p
);
3151 jinfo
->unwind_info
= unwind_info
;
3152 jinfo
->domain_neutral
= 0;
3153 jinfo
->from_aot
= 1;
3156 if (has_try_block_holes
) {
3157 MonoTryBlockHoleTableJitInfo
*table
;
3159 g_assert (jinfo
->has_try_block_holes
);
3161 table
= mono_jit_info_get_try_block_hole_table_info (jinfo
);
3164 table
->num_holes
= (guint16
)num_holes
;
3165 for (i
= 0; i
< num_holes
; ++i
) {
3166 MonoTryBlockHoleJitInfo
*hole
= &table
->holes
[i
];
3167 hole
->clause
= decode_value (p
, &p
);
3168 hole
->length
= decode_value (p
, &p
);
3169 hole
->offset
= decode_value (p
, &p
);
3173 if (has_arch_eh_jit_info
) {
3174 MonoArchEHJitInfo
*eh_info
;
3176 g_assert (jinfo
->has_arch_eh_info
);
3178 eh_info
= mono_jit_info_get_arch_eh_info (jinfo
);
3179 eh_info
->stack_size
= decode_value (p
, &p
);
3180 eh_info
->epilog_size
= decode_value (p
, &p
);
3184 /* The rest is not needed in async mode */
3185 jinfo
->async
= TRUE
;
3186 jinfo
->d
.aot_info
= amodule
;
3191 if (has_generic_jit_info
) {
3192 MonoGenericJitInfo
*gi
;
3195 g_assert (jinfo
->has_generic_jit_info
);
3197 gi
= mono_jit_info_get_generic_jit_info (jinfo
);
3200 gi
->nlocs
= decode_value (p
, &p
);
3202 gi
->locations
= (MonoDwarfLocListEntry
*)alloc0_jit_info_data (domain
, gi
->nlocs
* sizeof (MonoDwarfLocListEntry
), async
);
3203 for (i
= 0; i
< gi
->nlocs
; ++i
) {
3204 MonoDwarfLocListEntry
*entry
= &gi
->locations
[i
];
3206 entry
->is_reg
= decode_value (p
, &p
);
3207 entry
->reg
= decode_value (p
, &p
);
3209 entry
->offset
= decode_value (p
, &p
);
3211 entry
->from
= decode_value (p
, &p
);
3212 entry
->to
= decode_value (p
, &p
);
3217 gi
->has_this
= this_reg
!= -1;
3218 gi
->this_reg
= this_reg
;
3219 gi
->this_offset
= this_offset
;
3221 gi
->has_this
= decode_value (p
, &p
);
3222 gi
->this_reg
= decode_value (p
, &p
);
3223 gi
->this_offset
= decode_value (p
, &p
);
3227 len
= decode_value (p
, &p
);
3231 jinfo
->d
.method
= decode_resolve_method_ref (amodule
, p
, &p
, error
);
3232 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3235 gi
->generic_sharing_context
= alloc0_jit_info_data (domain
, sizeof (MonoGenericSharingContext
), async
);
3236 if (decode_value (p
, &p
)) {
3238 MonoGenericSharingContext
*gsctx
= gi
->generic_sharing_context
;
3240 gsctx
->is_gsharedvt
= TRUE
;
3244 if (method
&& has_seq_points
) {
3245 MonoSeqPointInfo
*seq_points
;
3247 p
+= mono_seq_point_info_read (&seq_points
, p
, FALSE
);
3249 mono_domain_lock (domain
);
3250 /* This could be set already since this function can be called more than once for the same method */
3251 if (!g_hash_table_lookup (domain_jit_info (domain
)->seq_points
, method
))
3252 g_hash_table_insert (domain_jit_info (domain
)->seq_points
, method
, seq_points
);
3254 mono_seq_point_info_free (seq_points
);
3255 mono_domain_unlock (domain
);
3258 /* Load debug info */
3259 buf_len
= decode_value (p
, &p
);
3261 mono_debug_add_aot_method (domain
, method
, code
, p
, buf_len
);
3265 int map_size
= decode_value (p
, &p
);
3266 /* The GC map requires 4 bytes of alignment */
3267 while ((guint64
)(gsize
)p
% 4)
3273 if (amodule
!= m_class_get_image (jinfo
->d
.method
->klass
)->aot_module
) {
3276 ji_to_amodule
= g_hash_table_new (NULL
, NULL
);
3277 g_hash_table_insert (ji_to_amodule
, jinfo
, amodule
);
3285 amodule_contains_code_addr (MonoAotModule
*amodule
, guint8
*code
)
3287 return (code
>= amodule
->jit_code_start
&& code
<= amodule
->jit_code_end
) ||
3288 (code
>= amodule
->llvm_code_start
&& code
<= amodule
->llvm_code_end
);
3292 * mono_aot_get_unwind_info:
3294 * Return a pointer to the DWARF unwind info belonging to JI.
3297 mono_aot_get_unwind_info (MonoJitInfo
*ji
, guint32
*unwind_info_len
)
3299 MonoAotModule
*amodule
;
3301 guint8
*code
= (guint8
*)ji
->code_start
;
3304 amodule
= (MonoAotModule
*)ji
->d
.aot_info
;
3306 amodule
= (MonoAotModule
*)m_class_get_image (jinfo_get_method (ji
)->klass
)->aot_module
;
3308 g_assert (ji
->from_aot
);
3310 if (!amodule_contains_code_addr (amodule
, code
)) {
3311 /* ji belongs to a different aot module than amodule */
3313 g_assert (ji_to_amodule
);
3314 amodule
= (MonoAotModule
*)g_hash_table_lookup (ji_to_amodule
, ji
);
3316 g_assert (amodule_contains_code_addr (amodule
, code
));
3320 p
= amodule
->unwind_info
+ ji
->unwind_info
;
3321 *unwind_info_len
= decode_value (p
, &p
);
3326 msort_method_addresses_internal (gpointer
*array
, int *indexes
, int lo
, int hi
, gpointer
*scratch
, int *scratch_indexes
)
3328 int mid
= (lo
+ hi
) / 2;
3335 for (i
= lo
; i
< hi
; ++i
)
3336 if (array
[i
] > array
[i
+ 1])
3339 /* Already sorted */
3343 msort_method_addresses_internal (array
, indexes
, lo
, mid
, scratch
, scratch_indexes
);
3344 msort_method_addresses_internal (array
, indexes
, mid
+ 1, hi
, scratch
, scratch_indexes
);
3346 if (array
[mid
] < array
[mid
+ 1])
3352 for (i
= lo
; i
<= hi
; i
++) {
3353 if (t_lo
<= mid
&& ((t_hi
> hi
) || array
[t_lo
] < array
[t_hi
])) {
3354 scratch
[i
] = array
[t_lo
];
3355 scratch_indexes
[i
] = indexes
[t_lo
];
3358 scratch
[i
] = array
[t_hi
];
3359 scratch_indexes
[i
] = indexes
[t_hi
];
3363 for (i
= lo
; i
<= hi
; ++i
) {
3364 array
[i
] = scratch
[i
];
3365 indexes
[i
] = scratch_indexes
[i
];
3370 msort_method_addresses (gpointer
*array
, int *indexes
, int len
)
3373 int *scratch_indexes
;
3375 scratch
= g_new (gpointer
, len
);
3376 scratch_indexes
= g_new (int, len
);
3377 msort_method_addresses_internal (array
, indexes
, 0, len
- 1, scratch
, scratch_indexes
);
3379 g_free (scratch_indexes
);
3383 * mono_aot_find_jit_info:
3385 * In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3386 * to the jit info tables.
3387 * FIXME: Large sizes in the lock free allocator
3390 mono_aot_find_jit_info (MonoDomain
*domain
, MonoImage
*image
, gpointer addr
)
3393 int pos
, left
, right
, code_len
;
3394 int method_index
, table_len
;
3396 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
3397 MonoMethod
*method
= NULL
;
3399 guint8
*code
, *ex_info
, *p
;
3403 guint8
*code1
, *code2
;
3410 nmethods
= amodule
->info
.nmethods
;
3412 if (domain
!= mono_get_root_domain ())
3416 if (!amodule_contains_code_addr (amodule
, (guint8
*)addr
))
3419 async
= mono_thread_info_is_async_context ();
3421 /* Compute a sorted table mapping code to method indexes. */
3422 if (!amodule
->sorted_methods
) {
3424 gpointer
*methods
= g_new0 (gpointer
, nmethods
);
3425 int *method_indexes
= g_new0 (int, nmethods
);
3426 int methods_len
= 0;
3428 for (i
= 0; i
< nmethods
; ++i
) {
3429 /* Skip the -1 entries to speed up sorting */
3430 if (amodule
->methods
[i
] == GINT_TO_POINTER (-1))
3432 methods
[methods_len
] = amodule
->methods
[i
];
3433 method_indexes
[methods_len
] = i
;
3436 /* Use a merge sort as this is mostly sorted */
3437 msort_method_addresses (methods
, method_indexes
, methods_len
);
3438 for (i
= 0; i
< methods_len
-1; ++i
)
3439 g_assert (methods
[i
] <= methods
[i
+ 1]);
3440 amodule
->sorted_methods_len
= methods_len
;
3441 if (mono_atomic_cas_ptr ((gpointer
*)&amodule
->sorted_methods
, methods
, NULL
) != NULL
)
3442 /* Somebody got in before us */
3444 if (mono_atomic_cas_ptr ((gpointer
*)&amodule
->sorted_method_indexes
, method_indexes
, NULL
) != NULL
)
3445 /* Somebody got in before us */
3446 g_free (method_indexes
);
3449 /* Binary search in the sorted_methods table */
3450 methods
= amodule
->sorted_methods
;
3451 methods_len
= amodule
->sorted_methods_len
;
3452 code
= (guint8
*)addr
;
3454 right
= methods_len
;
3456 pos
= (left
+ right
) / 2;
3458 code1
= (guint8
*)methods
[pos
];
3459 if (pos
+ 1 == methods_len
) {
3460 if (code1
>= amodule
->jit_code_start
&& code1
< amodule
->jit_code_end
)
3461 code2
= amodule
->jit_code_end
;
3463 code2
= amodule
->llvm_code_end
;
3465 code2
= (guint8
*)methods
[pos
+ 1];
3470 else if (code
>= code2
)
3476 g_assert (addr
>= methods
[pos
]);
3477 if (pos
+ 1 < methods_len
)
3478 g_assert (addr
< methods
[pos
+ 1]);
3479 method_index
= amodule
->sorted_method_indexes
[pos
];
3481 /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3483 JitInfoMap
*table
= amodule
->async_jit_info_table
;
3487 len
= table
[0].method_index
;
3488 for (i
= 1; i
< len
; ++i
) {
3489 if (table
[i
].method_index
== method_index
)
3490 return table
[i
].jinfo
;
3495 code
= (guint8
*)amodule
->methods
[method_index
];
3496 ex_info
= &amodule
->blob
[mono_aot_get_offset (amodule
->ex_info_offsets
, method_index
)];
3498 if (pos
== methods_len
- 1) {
3499 if (code
>= amodule
->jit_code_start
&& code
< amodule
->jit_code_end
)
3500 code_len
= amodule
->jit_code_end
- code
;
3502 code_len
= amodule
->llvm_code_end
- code
;
3504 code_len
= (guint8
*)methods
[pos
+ 1] - (guint8
*)methods
[pos
];
3507 g_assert ((guint8
*)code
<= (guint8
*)addr
&& (guint8
*)addr
< (guint8
*)code
+ code_len
);
3509 /* Might be a wrapper/extra method */
3511 if (amodule
->extra_methods
) {
3512 amodule_lock (amodule
);
3513 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
3514 amodule_unlock (amodule
);
3520 if (method_index
>= image
->tables
[MONO_TABLE_METHOD
].rows
) {
3522 * This is hit for extra methods which are called directly, so they are
3523 * not in amodule->extra_methods.
3525 table_len
= amodule
->extra_method_info_offsets
[0];
3526 table
= amodule
->extra_method_info_offsets
+ 1;
3533 pos
= ((left
+ right
) / 2);
3535 g_assert (pos
< table_len
);
3537 if (table
[pos
* 2] < method_index
)
3539 else if (table
[pos
* 2] > method_index
)
3545 p
= amodule
->blob
+ table
[(pos
* 2) + 1];
3546 method
= decode_resolve_method_ref (amodule
, p
, &p
, error
);
3547 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3549 /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3553 token
= mono_metadata_make_token (MONO_TABLE_METHOD
, method_index
+ 1);
3554 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
3556 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
3563 //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3565 jinfo
= decode_exception_debug_info (amodule
, domain
, method
, ex_info
, code
, code_len
);
3567 g_assert ((guint8
*)addr
>= (guint8
*)jinfo
->code_start
);
3569 /* Add it to the normal JitInfo tables */
3571 JitInfoMap
*old_table
, *new_table
;
3575 * Use a simple inmutable table with linear search to cache async jit info entries.
3576 * This assumes that the number of entries is small.
3579 /* Copy the table, adding a new entry at the end */
3580 old_table
= amodule
->async_jit_info_table
;
3582 len
= old_table
[0].method_index
;
3585 new_table
= (JitInfoMap
*)alloc0_jit_info_data (domain
, (len
+ 1) * sizeof (JitInfoMap
), async
);
3587 memcpy (new_table
, old_table
, len
* sizeof (JitInfoMap
));
3588 new_table
[0].method_index
= len
+ 1;
3589 new_table
[len
].method_index
= method_index
;
3590 new_table
[len
].jinfo
= jinfo
;
3592 mono_memory_barrier ();
3593 if (mono_atomic_cas_ptr ((volatile gpointer
*)&amodule
->async_jit_info_table
, new_table
, old_table
) == old_table
)
3597 mono_jit_info_table_add (domain
, jinfo
);
3600 if ((guint8
*)addr
>= (guint8
*)jinfo
->code_start
+ jinfo
->code_size
)
3601 /* addr is in the padding between methods, see the adjustment of code_size in decode_exception_debug_info () */
3608 decode_patch (MonoAotModule
*aot_module
, MonoMemPool
*mp
, MonoJumpInfo
*ji
, guint8
*buf
, guint8
**endbuf
)
3617 case MONO_PATCH_INFO_METHOD
:
3618 case MONO_PATCH_INFO_METHOD_JUMP
:
3619 case MONO_PATCH_INFO_ICALL_ADDR
:
3620 case MONO_PATCH_INFO_ICALL_ADDR_CALL
:
3621 case MONO_PATCH_INFO_METHOD_RGCTX
:
3622 case MONO_PATCH_INFO_METHOD_CODE_SLOT
: {
3626 res
= decode_method_ref (aot_module
, &ref
, p
, &p
, error
);
3627 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3631 if (!ref
.method
&& !mono_aot_only
&& !ref
.no_aot_trampoline
&& (ji
->type
== MONO_PATCH_INFO_METHOD
) && (mono_metadata_token_table (ref
.token
) == MONO_TABLE_METHOD
)) {
3632 ji
->data
.target
= mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref
.image
, ref
.token
));
3633 ji
->type
= MONO_PATCH_INFO_ABS
;
3637 ji
->data
.method
= ref
.method
;
3640 ji
->data
.method
= mono_get_method_checked (ref
.image
, ref
.token
, NULL
, NULL
, error
);
3641 if (!ji
->data
.method
)
3642 g_error ("AOT Runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
3644 g_assert (ji
->data
.method
);
3645 mono_class_init (ji
->data
.method
->klass
);
3649 case MONO_PATCH_INFO_INTERNAL_METHOD
:
3650 case MONO_PATCH_INFO_JIT_ICALL_ADDR
:
3651 case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL
: {
3652 guint32 len
= decode_value (p
, &p
);
3654 ji
->data
.name
= (char*)p
;
3658 case MONO_PATCH_INFO_METHODCONST
:
3660 ji
->data
.method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3661 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3662 if (!ji
->data
.method
)
3665 case MONO_PATCH_INFO_VTABLE
:
3666 case MONO_PATCH_INFO_CLASS
:
3667 case MONO_PATCH_INFO_IID
:
3668 case MONO_PATCH_INFO_ADJUSTED_IID
:
3670 ji
->data
.klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3671 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3672 if (!ji
->data
.klass
)
3675 case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE
:
3676 ji
->data
.del_tramp
= (MonoDelegateClassMethodPair
*)mono_mempool_alloc0 (mp
, sizeof (MonoDelegateClassMethodPair
));
3677 ji
->data
.del_tramp
->klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3678 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3679 if (!ji
->data
.del_tramp
->klass
)
3681 if (decode_value (p
, &p
)) {
3682 ji
->data
.del_tramp
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3683 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3684 if (!ji
->data
.del_tramp
->method
)
3687 ji
->data
.del_tramp
->is_virtual
= decode_value (p
, &p
) ? TRUE
: FALSE
;
3689 case MONO_PATCH_INFO_IMAGE
:
3690 ji
->data
.image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3691 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3692 if (!ji
->data
.image
)
3695 case MONO_PATCH_INFO_FIELD
:
3696 case MONO_PATCH_INFO_SFLDA
:
3698 ji
->data
.field
= decode_field_info (aot_module
, p
, &p
);
3699 if (!ji
->data
.field
)
3702 case MONO_PATCH_INFO_SWITCH
:
3703 ji
->data
.table
= (MonoJumpInfoBBTable
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoBBTable
));
3704 ji
->data
.table
->table_size
= decode_value (p
, &p
);
3705 table
= (void **)mono_domain_alloc (mono_domain_get (), sizeof (gpointer
) * ji
->data
.table
->table_size
);
3706 ji
->data
.table
->table
= (MonoBasicBlock
**)table
;
3707 for (i
= 0; i
< ji
->data
.table
->table_size
; i
++)
3708 table
[i
] = (gpointer
)(gssize
)decode_value (p
, &p
);
3710 case MONO_PATCH_INFO_R4
: {
3713 ji
->data
.target
= mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3714 val
= decode_value (p
, &p
);
3715 *(float*)ji
->data
.target
= *(float*)&val
;
3718 case MONO_PATCH_INFO_R8
: {
3722 ji
->data
.target
= mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3724 val
[0] = decode_value (p
, &p
);
3725 val
[1] = decode_value (p
, &p
);
3726 v
= ((guint64
)val
[1] << 32) | ((guint64
)val
[0]);
3727 *(double*)ji
->data
.target
= *(double*)&v
;
3730 case MONO_PATCH_INFO_LDSTR
:
3731 image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3732 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3735 ji
->data
.token
= mono_jump_info_token_new (mp
, image
, MONO_TOKEN_STRING
+ decode_value (p
, &p
));
3737 case MONO_PATCH_INFO_RVA
:
3738 case MONO_PATCH_INFO_DECLSEC
:
3739 case MONO_PATCH_INFO_LDTOKEN
:
3740 case MONO_PATCH_INFO_TYPE_FROM_HANDLE
:
3742 image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3743 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3746 ji
->data
.token
= mono_jump_info_token_new (mp
, image
, decode_value (p
, &p
));
3748 ji
->data
.token
->has_context
= decode_value (p
, &p
);
3749 if (ji
->data
.token
->has_context
) {
3750 gboolean res
= decode_generic_context (aot_module
, &ji
->data
.token
->context
, p
, &p
, error
);
3751 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3756 case MONO_PATCH_INFO_EXC_NAME
:
3757 ji
->data
.klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3758 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3759 if (!ji
->data
.klass
)
3761 ji
->data
.name
= m_class_get_name (ji
->data
.klass
);
3763 case MONO_PATCH_INFO_METHOD_REL
:
3764 ji
->data
.offset
= decode_value (p
, &p
);
3766 case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG
:
3767 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR
:
3768 case MONO_PATCH_INFO_GC_NURSERY_START
:
3769 case MONO_PATCH_INFO_GC_NURSERY_BITS
:
3770 case MONO_PATCH_INFO_PROFILER_ALLOCATION_COUNT
:
3771 case MONO_PATCH_INFO_PROFILER_CLAUSE_COUNT
:
3773 case MONO_PATCH_INFO_CASTCLASS_CACHE
:
3774 ji
->data
.index
= decode_value (p
, &p
);
3776 case MONO_PATCH_INFO_RGCTX_FETCH
:
3777 case MONO_PATCH_INFO_RGCTX_SLOT_INDEX
: {
3779 MonoJumpInfoRgctxEntry
*entry
;
3780 guint32 offset
, val
;
3783 offset
= decode_value (p
, &p
);
3784 val
= decode_value (p
, &p
);
3786 entry
= (MonoJumpInfoRgctxEntry
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoRgctxEntry
));
3787 p2
= aot_module
->blob
+ offset
;
3788 entry
->method
= decode_resolve_method_ref (aot_module
, p2
, &p2
, error
);
3789 entry
->in_mrgctx
= ((val
& 1) > 0) ? TRUE
: FALSE
;
3790 entry
->info_type
= (MonoRgctxInfoType
)((val
>> 1) & 0xff);
3791 entry
->data
= (MonoJumpInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfo
));
3792 entry
->data
->type
= (MonoJumpInfoType
)((val
>> 9) & 0xff);
3793 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3795 res
= decode_patch (aot_module
, mp
, entry
->data
, p
, &p
);
3798 ji
->data
.rgctx_entry
= entry
;
3801 case MONO_PATCH_INFO_SEQ_POINT_INFO
:
3802 case MONO_PATCH_INFO_AOT_MODULE
:
3803 case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR
:
3805 case MONO_PATCH_INFO_SIGNATURE
:
3806 case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER
:
3807 ji
->data
.target
= decode_signature (aot_module
, p
, &p
);
3809 case MONO_PATCH_INFO_GSHAREDVT_CALL
: {
3810 MonoJumpInfoGSharedVtCall
*info
= (MonoJumpInfoGSharedVtCall
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoGSharedVtCall
));
3811 info
->sig
= decode_signature (aot_module
, p
, &p
);
3812 g_assert (info
->sig
);
3813 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3814 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3816 ji
->data
.target
= info
;
3819 case MONO_PATCH_INFO_GSHAREDVT_METHOD
: {
3820 MonoGSharedVtMethodInfo
*info
= (MonoGSharedVtMethodInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoGSharedVtMethodInfo
));
3823 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3824 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3826 info
->num_entries
= decode_value (p
, &p
);
3827 info
->count_entries
= info
->num_entries
;
3828 info
->entries
= (MonoRuntimeGenericContextInfoTemplate
*)mono_mempool_alloc0 (mp
, sizeof (MonoRuntimeGenericContextInfoTemplate
) * info
->num_entries
);
3829 for (i
= 0; i
< info
->num_entries
; ++i
) {
3830 MonoRuntimeGenericContextInfoTemplate
*template_
= &info
->entries
[i
];
3832 template_
->info_type
= (MonoRgctxInfoType
)decode_value (p
, &p
);
3833 switch (mini_rgctx_info_type_to_patch_info_type (template_
->info_type
)) {
3834 case MONO_PATCH_INFO_CLASS
: {
3835 MonoClass
*klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3836 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3839 template_
->data
= m_class_get_byval_arg (klass
);
3842 case MONO_PATCH_INFO_FIELD
:
3843 template_
->data
= decode_field_info (aot_module
, p
, &p
);
3844 if (!template_
->data
)
3848 g_assert_not_reached ();
3852 ji
->data
.target
= info
;
3855 case MONO_PATCH_INFO_LDSTR_LIT
: {
3856 int len
= decode_value (p
, &p
);
3859 s
= (char *)mono_mempool_alloc0 (mp
, len
+ 1);
3860 memcpy (s
, p
, len
+ 1);
3863 ji
->data
.target
= s
;
3866 case MONO_PATCH_INFO_VIRT_METHOD
: {
3867 MonoJumpInfoVirtMethod
*info
= (MonoJumpInfoVirtMethod
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoVirtMethod
));
3869 info
->klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3870 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3872 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3873 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3875 ji
->data
.target
= info
;
3878 case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG
:
3879 case MONO_PATCH_INFO_JIT_THREAD_ATTACH
:
3881 case MONO_PATCH_INFO_GET_TLS_TRAMP
:
3882 case MONO_PATCH_INFO_SET_TLS_TRAMP
:
3883 case MONO_PATCH_INFO_AOT_JIT_INFO
:
3884 ji
->data
.index
= decode_value (p
, &p
);
3887 g_warning ("unhandled type %d", ji
->type
);
3888 g_assert_not_reached ();
3902 * Decode a list of patches identified by the got offsets in GOT_OFFSETS. Return an array of
3903 * MonoJumpInfo structures allocated from MP.
3905 static MonoJumpInfo
*
3906 decode_patches (MonoAotModule
*amodule
, MonoMemPool
*mp
, int n_patches
, gboolean llvm
, guint32
*got_offsets
)
3908 MonoJumpInfo
*patches
;
3911 guint32
*got_info_offsets
;
3916 got
= amodule
->llvm_got
;
3917 got_info_offsets
= (guint32
*)amodule
->llvm_got_info_offsets
;
3920 got_info_offsets
= (guint32
*)amodule
->got_info_offsets
;
3923 patches
= (MonoJumpInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfo
) * n_patches
);
3924 for (i
= 0; i
< n_patches
; ++i
) {
3925 guint8
*p
= amodule
->blob
+ mono_aot_get_offset (got_info_offsets
, got_offsets
[i
]);
3928 ji
->type
= (MonoJumpInfoType
)decode_value (p
, &p
);
3930 /* See load_method () for SFLDA */
3931 if (got
&& got
[got_offsets
[i
]] && ji
->type
!= MONO_PATCH_INFO_SFLDA
) {
3932 /* Already loaded */
3934 res
= decode_patch (amodule
, mp
, ji
, p
, &p
);
3943 static MonoJumpInfo
*
3944 load_patch_info (MonoAotModule
*amodule
, MonoMemPool
*mp
, int n_patches
,
3945 gboolean llvm
, guint32
**got_slots
,
3946 guint8
*buf
, guint8
**endbuf
)
3948 MonoJumpInfo
*patches
;
3954 *got_slots
= (guint32
*)g_malloc (sizeof (guint32
) * n_patches
);
3955 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
3956 (*got_slots
)[pindex
] = decode_value (p
, &p
);
3959 patches
= decode_patches (amodule
, mp
, n_patches
, llvm
, *got_slots
);
3961 g_free (*got_slots
);
3971 register_jump_target_got_slot (MonoDomain
*domain
, MonoMethod
*method
, gpointer
*got_slot
)
3974 * Jump addresses cannot be patched by the trampoline code since it
3975 * does not have access to the caller's address. Instead, we collect
3976 * the addresses of the GOT slots pointing to a method, and patch
3977 * them after the method has been compiled.
3979 MonoJitDomainInfo
*info
= domain_jit_info (domain
);
3981 MonoMethod
*shared_method
= mini_method_to_shared (method
);
3982 method
= shared_method
? shared_method
: method
;
3984 mono_domain_lock (domain
);
3985 if (!info
->jump_target_got_slot_hash
)
3986 info
->jump_target_got_slot_hash
= g_hash_table_new (NULL
, NULL
);
3987 list
= (GSList
*)g_hash_table_lookup (info
->jump_target_got_slot_hash
, method
);
3988 list
= g_slist_prepend (list
, got_slot
);
3989 g_hash_table_insert (info
->jump_target_got_slot_hash
, method
, list
);
3990 mono_domain_unlock (domain
);
3996 * Load the method identified by METHOD_INDEX from the AOT image. Return a
3997 * pointer to the native code of the method, or NULL if not found.
3998 * METHOD might not be set if the caller only has the image/token info.
4001 load_method (MonoDomain
*domain
, MonoAotModule
*amodule
, MonoImage
*image
, MonoMethod
*method
, guint32 token
, int method_index
,
4004 MonoJitInfo
*jinfo
= NULL
;
4005 guint8
*code
= NULL
, *info
;
4010 init_amodule_got (amodule
);
4012 if (domain
!= mono_get_root_domain ())
4013 /* Non shared AOT code can't be used in other appdomains */
4016 if (amodule
->out_of_date
)
4019 if (amodule
->info
.llvm_get_method
) {
4021 * Obtain the method address by calling a generated function in the LLVM module.
4023 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
4024 code
= (guint8
*)get_method (method_index
);
4029 if (amodule
->methods
[method_index
] == GINT_TO_POINTER (-1)) {
4030 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4034 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4038 if (!(method
->iflags
& METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL
)) {
4039 full_name
= mono_method_full_name (method
, TRUE
);
4040 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: NOT FOUND: %s.", full_name
);
4046 code
= (guint8
*)amodule
->methods
[method_index
];
4049 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->method_info_offsets
, method_index
)];
4051 if (!amodule
->methods_loaded
) {
4052 amodule_lock (amodule
);
4053 if (!amodule
->methods_loaded
) {
4056 loaded
= g_new0 (guint32
, amodule
->info
.nmethods
/ 32 + 1);
4057 mono_memory_barrier ();
4058 amodule
->methods_loaded
= loaded
;
4060 amodule_unlock (amodule
);
4063 if ((amodule
->methods_loaded
[method_index
/ 32] >> (method_index
% 32)) & 0x1)
4066 if (mono_last_aot_method
!= -1) {
4067 gint32 methods_aot
= mono_atomic_load_i32 (&mono_jit_stats
.methods_aot
);
4068 if (methods_aot
>= mono_last_aot_method
)
4070 else if (methods_aot
== mono_last_aot_method
- 1) {
4072 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4077 char *name
= mono_method_full_name (method
, TRUE
);
4078 g_print ("LAST AOT METHOD: %s.\n", name
);
4081 g_print ("LAST AOT METHOD: %p %d\n", code
, method_index
);
4086 if (!(is_llvm_code (amodule
, code
) && (amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) ||
4087 (mono_llvm_only
&& method
&& method
->wrapper_type
== MONO_WRAPPER_NATIVE_TO_MANAGED
)) {
4088 res
= init_method (amodule
, method_index
, method
, NULL
, NULL
, error
);
4093 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4097 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4102 full_name
= mono_method_full_name (method
, TRUE
);
4105 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4107 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: FOUND method %s [%p - %p %p]", full_name
, code
, code
+ jinfo
->code_size
, info
);
4111 amodule_lock (amodule
);
4115 mono_atomic_inc_i32 (&mono_jit_stats
.methods_aot
);
4117 if (method
&& method
->wrapper_type
)
4118 g_hash_table_insert (amodule
->method_to_code
, method
, code
);
4120 /* Commit changes since methods_loaded is accessed outside the lock */
4121 mono_memory_barrier ();
4123 amodule
->methods_loaded
[method_index
/ 32] |= 1 << (method_index
% 32);
4125 amodule_unlock (amodule
);
4127 if (MONO_PROFILER_ENABLED (jit_begin
) || MONO_PROFILER_ENABLED (jit_done
)) {
4131 method
= mono_get_method_checked (amodule
->assembly
->image
, token
, NULL
, NULL
, error
);
4135 MONO_PROFILER_RAISE (jit_begin
, (method
));
4136 jinfo
= mono_jit_info_table_find (domain
, code
);
4138 MONO_PROFILER_RAISE (jit_done
, (method
, jinfo
));
4150 /** find_aot_method_in_amodule
4152 * \param code_amodule The AOT module containing the code pointer
4153 * \param method The method to find the code index for
4154 * \param hash_full The hash for the method
4157 find_aot_method_in_amodule (MonoAotModule
*code_amodule
, MonoMethod
*method
, guint32 hash_full
)
4160 guint32 table_size
, entry_size
, hash
;
4161 guint32
*table
, *entry
;
4163 static guint32 n_extra_decodes
;
4165 // The AOT module containing the MonoMethod
4166 // The reference to the metadata amodule will differ among multiple dedup methods
4167 // which mangle to the same name but live in different assemblies. This leads to
4168 // the caching breaking. The solution seems to be to cache using the "metadata" amodule.
4169 MonoAotModule
*metadata_amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
4171 if (!metadata_amodule
|| metadata_amodule
->out_of_date
|| !code_amodule
|| code_amodule
->out_of_date
)
4174 table_size
= code_amodule
->extra_method_table
[0];
4175 hash
= hash_full
% table_size
;
4176 table
= code_amodule
->extra_method_table
+ 1;
4179 entry
= &table
[hash
* entry_size
];
4186 guint32 key
= entry
[0];
4187 guint32 value
= entry
[1];
4188 guint32 next
= entry
[entry_size
- 1];
4192 p
= code_amodule
->blob
+ key
;
4195 amodule_lock (metadata_amodule
);
4196 if (!metadata_amodule
->method_ref_to_method
)
4197 metadata_amodule
->method_ref_to_method
= g_hash_table_new (NULL
, NULL
);
4198 m
= (MonoMethod
*)g_hash_table_lookup (metadata_amodule
->method_ref_to_method
, p
);
4199 amodule_unlock (metadata_amodule
);
4201 m
= decode_resolve_method_ref_with_target (code_amodule
, method
, p
, &p
, error
);
4202 mono_error_cleanup (error
); /* FIXME don't swallow the error */
4204 * Can't catche runtime invoke wrappers since it would break
4205 * the check in decode_method_ref_with_target ().
4207 if (m
&& m
->wrapper_type
!= MONO_WRAPPER_RUNTIME_INVOKE
) {
4208 amodule_lock (metadata_amodule
);
4209 g_hash_table_insert (metadata_amodule
->method_ref_to_method
, orig_p
, m
);
4210 amodule_unlock (metadata_amodule
);
4218 /* Methods decoded needlessly */
4220 //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4225 entry
= &table
[next
* entry_size
];
4230 if (index
!= 0xffffff)
4231 g_assert (index
< code_amodule
->info
.nmethods
);
4237 add_module_cb (gpointer key
, gpointer value
, gpointer user_data
)
4239 g_ptr_array_add ((GPtrArray
*)user_data
, value
);
4243 mono_aot_can_dedup (MonoMethod
*method
)
4245 gboolean not_normal_gshared
= method
->is_inflated
&& !mono_method_is_generic_sharable_full (method
, TRUE
, FALSE
, FALSE
);
4246 gboolean extra_method
= (method
->wrapper_type
!= MONO_WRAPPER_NONE
) || not_normal_gshared
;
4248 return extra_method
;
4255 * Try finding METHOD in the extra_method table in all AOT images.
4256 * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4257 * module where the method was found.
4260 find_aot_method (MonoMethod
*method
, MonoAotModule
**out_amodule
)
4265 guint32 hash
= mono_aot_method_hash (method
);
4267 /* Try the place we expect to have moved the method only
4268 * We don't probe, as that causes hard-to-debug issues when we fail
4269 * to find the method */
4270 if (container_amodule
&& mono_aot_can_dedup (method
)) {
4271 *out_amodule
= container_amodule
;
4272 index
= find_aot_method_in_amodule (container_amodule
, method
, hash
);
4276 /* Try the method's module first */
4277 *out_amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
4278 index
= find_aot_method_in_amodule ((MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
, method
, hash
);
4279 if (index
!= 0xffffff)
4283 * Try all other modules.
4284 * This is needed because generic instances klass->image points to the image
4285 * containing the generic definition, but the native code is generated to the
4286 * AOT image which contains the reference.
4289 /* Make a copy to avoid doing the search inside the aot lock */
4290 modules
= g_ptr_array_new ();
4292 g_hash_table_foreach (aot_modules
, add_module_cb
, modules
);
4296 for (i
= 0; i
< modules
->len
; ++i
) {
4297 MonoAotModule
*amodule
= (MonoAotModule
*)g_ptr_array_index (modules
, i
);
4299 if (amodule
!= m_class_get_image (method
->klass
)->aot_module
)
4300 index
= find_aot_method_in_amodule (amodule
, method
, hash
);
4301 if (index
!= 0xffffff) {
4302 *out_amodule
= amodule
;
4307 g_ptr_array_free (modules
, TRUE
);
4313 mono_aot_find_method_index (MonoMethod
*method
)
4315 MonoAotModule
*out_amodule
;
4316 return find_aot_method (method
, &out_amodule
);
4320 init_method (MonoAotModule
*amodule
, guint32 method_index
, MonoMethod
*method
, MonoClass
*init_class
, MonoGenericContext
*context
, MonoError
*error
)
4322 MonoDomain
*domain
= mono_domain_get ();
4324 MonoClass
*klass_to_run_ctor
= NULL
;
4325 gboolean from_plt
= method
== NULL
;
4326 int pindex
, n_patches
;
4328 MonoJitInfo
*jinfo
= NULL
;
4329 guint8
*code
, *info
;
4333 code
= (guint8
*)amodule
->methods
[method_index
];
4334 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->method_info_offsets
, method_index
)];
4338 //does the method's class has a cctor?
4339 if (decode_value (p
, &p
) == 1)
4340 klass_to_run_ctor
= decode_klass_ref (amodule
, p
, &p
, error
);
4344 //FIXME old code would use the class from @method if not null and ignore the one encoded. I don't know if we need to honor that -- @kumpera
4346 klass_to_run_ctor
= method
->klass
;
4348 n_patches
= decode_value (p
, &p
);
4351 MonoJumpInfo
*patches
;
4356 mp
= mono_mempool_new ();
4358 if ((gpointer
)code
>= amodule
->info
.jit_code_start
&& (gpointer
)code
<= amodule
->info
.jit_code_end
) {
4363 got
= amodule
->llvm_got
;
4367 patches
= load_patch_info (amodule
, mp
, n_patches
, llvm
, &got_slots
, p
, &p
);
4368 if (patches
== NULL
) {
4369 mono_mempool_destroy (mp
);
4373 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
4374 MonoJumpInfo
*ji
= &patches
[pindex
];
4378 * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4379 * been initialized by load_method () for a static cctor before the cctor has
4380 * finished executing (#23242).
4382 if (!got
[got_slots
[pindex
]] || ji
->type
== MONO_PATCH_INFO_SFLDA
) {
4383 /* In llvm-only made, we might encounter shared methods */
4384 if (mono_llvm_only
&& ji
->type
== MONO_PATCH_INFO_METHOD
&& mono_method_check_context_used (ji
->data
.method
)) {
4386 ji
->data
.method
= mono_class_inflate_generic_method_checked (ji
->data
.method
, context
, error
);
4387 if (!mono_error_ok (error
)) {
4389 mono_mempool_destroy (mp
);
4393 /* This cannot be resolved in mono_resolve_patch_target () */
4394 if (ji
->type
== MONO_PATCH_INFO_AOT_JIT_INFO
) {
4395 // FIXME: Lookup using the index
4396 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4397 ji
->type
= MONO_PATCH_INFO_ABS
;
4398 ji
->data
.target
= jinfo
;
4400 addr
= mono_resolve_patch_target (method
, domain
, code
, ji
, TRUE
, error
);
4401 if (!mono_error_ok (error
)) {
4403 mono_mempool_destroy (mp
);
4406 if (ji
->type
== MONO_PATCH_INFO_METHOD_JUMP
)
4407 addr
= mono_create_ftnptr (domain
, addr
);
4408 mono_memory_barrier ();
4409 got
[got_slots
[pindex
]] = addr
;
4410 if (ji
->type
== MONO_PATCH_INFO_METHOD_JUMP
)
4411 register_jump_target_got_slot (domain
, ji
->data
.method
, &(got
[got_slots
[pindex
]]));
4413 ji
->type
= MONO_PATCH_INFO_NONE
;
4418 mono_mempool_destroy (mp
);
4421 if (mini_get_debug_options ()->load_aot_jit_info_eagerly
)
4422 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4424 gboolean inited_ok
= TRUE
;
4426 MonoVTable
*vt
= mono_class_vtable_checked (domain
, init_class
, error
);
4430 inited_ok
= mono_runtime_class_init_full (vt
, error
);
4431 } else if (from_plt
&& klass_to_run_ctor
&& !mono_class_is_gtd (klass_to_run_ctor
)) {
4432 MonoVTable
*vt
= mono_class_vtable_checked (domain
, klass_to_run_ctor
, error
);
4436 inited_ok
= mono_runtime_class_init_full (vt
, error
);
4451 init_llvmonly_method (MonoAotModule
*amodule
, guint32 method_index
, MonoMethod
*method
, MonoClass
*init_class
, MonoGenericContext
*context
)
4456 res
= init_method (amodule
, method_index
, method
, init_class
, context
, error
);
4457 if (!is_ok (error
)) {
4458 MonoException
*ex
= mono_error_convert_to_exception (error
);
4459 /* Its okay to raise in llvmonly mode */
4461 mono_llvm_throw_exception ((MonoObject
*)ex
);
4466 mono_aot_init_llvm_method (gpointer aot_module
, guint32 method_index
)
4468 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4470 init_llvmonly_method (amodule
, method_index
, NULL
, NULL
, NULL
);
4474 mono_aot_init_gshared_method_this (gpointer aot_module
, guint32 method_index
, MonoObject
*this_obj
)
4476 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4478 MonoGenericContext
*context
;
4482 g_assert (this_obj
);
4483 klass
= this_obj
->vtable
->klass
;
4485 amodule_lock (amodule
);
4486 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
4487 amodule_unlock (amodule
);
4490 context
= mono_method_get_context (method
);
4493 init_llvmonly_method (amodule
, method_index
, NULL
, klass
, context
);
4497 mono_aot_init_gshared_method_mrgctx (gpointer aot_module
, guint32 method_index
, MonoMethodRuntimeGenericContext
*rgctx
)
4499 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4500 MonoGenericContext context
= { NULL
, NULL
};
4501 MonoClass
*klass
= rgctx
->class_vtable
->klass
;
4503 if (mono_class_is_ginst (klass
))
4504 context
.class_inst
= mono_class_get_generic_class (klass
)->context
.class_inst
;
4505 else if (mono_class_is_gtd (klass
))
4506 context
.class_inst
= mono_class_get_generic_container (klass
)->context
.class_inst
;
4507 context
.method_inst
= rgctx
->method_inst
;
4509 init_llvmonly_method (amodule
, method_index
, NULL
, rgctx
->class_vtable
->klass
, &context
);
4513 mono_aot_init_gshared_method_vtable (gpointer aot_module
, guint32 method_index
, MonoVTable
*vtable
)
4515 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4517 MonoGenericContext
*context
;
4520 klass
= vtable
->klass
;
4522 amodule_lock (amodule
);
4523 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
4524 amodule_unlock (amodule
);
4527 context
= mono_method_get_context (method
);
4530 init_llvmonly_method (amodule
, method_index
, NULL
, klass
, context
);
4534 * mono_aot_get_method:
4536 * Return a pointer to the AOTed native code for METHOD if it can be found,
4538 * On platforms with function pointers, this doesn't return a function pointer.
4541 mono_aot_get_method (MonoDomain
*domain
, MonoMethod
*method
, MonoError
*error
)
4543 MonoClass
*klass
= method
->klass
;
4544 MonoMethod
*orig_method
= method
;
4545 guint32 method_index
;
4546 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
4548 gboolean cache_result
= FALSE
;
4549 ERROR_DECL_VALUE (inner_error
);
4553 if (domain
!= mono_get_root_domain ())
4554 /* Non shared AOT code can't be used in other appdomains */
4557 if (enable_aot_cache
&& !amodule
&& domain
->entry_assembly
&& m_class_get_image (klass
) == mono_defaults
.corlib
) {
4558 /* This cannot be AOTed during startup, so do it now */
4559 if (!mscorlib_aot_loaded
) {
4560 mscorlib_aot_loaded
= TRUE
;
4561 load_aot_module (m_class_get_image (klass
)->assembly
, NULL
);
4562 amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
4569 if (amodule
->out_of_date
)
4572 if ((method
->iflags
& METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL
) ||
4573 (method
->flags
& METHOD_ATTRIBUTE_PINVOKE_IMPL
) ||
4574 (method
->iflags
& METHOD_IMPL_ATTRIBUTE_RUNTIME
) ||
4575 (method
->flags
& METHOD_ATTRIBUTE_ABSTRACT
))
4579 * Use the original method instead of its invoke-with-check wrapper.
4580 * This is not a problem when using full-aot, since it doesn't support
4583 if (mono_aot_only
&& method
->wrapper_type
== MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK
)
4584 return mono_aot_get_method (domain
, mono_marshal_method_from_wrapper (method
), error
);
4586 g_assert (m_class_is_inited (klass
));
4588 /* Find method index */
4589 method_index
= 0xffffff;
4591 gboolean dedupable
= mono_aot_can_dedup (method
);
4593 if (method
->is_inflated
&& !method
->wrapper_type
&& mono_method_is_generic_sharable_full (method
, TRUE
, FALSE
, FALSE
) && !dedupable
) {
4594 MonoMethod
*orig_method
= method
;
4596 * For generic methods, we store the fully shared instance in place of the
4599 method
= mono_method_get_declaring_generic_method (method
);
4600 method_index
= mono_metadata_token_index (method
->token
) - 1;
4602 if (mono_llvm_only
) {
4603 /* Needed by mono_aot_init_gshared_method_this () */
4604 /* orig_method is a random instance but it is enough to make init_method () work */
4605 amodule_lock (amodule
);
4606 g_hash_table_insert (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
), orig_method
);
4607 amodule_unlock (amodule
);
4611 if (method_index
== 0xffffff && (method
->is_inflated
|| !method
->token
)) {
4612 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4613 amodule_lock (amodule
);
4614 code
= (guint8
*)g_hash_table_lookup (amodule
->method_to_code
, method
);
4615 amodule_unlock (amodule
);
4619 cache_result
= TRUE
;
4620 if (method_index
== 0xffffff)
4621 method_index
= find_aot_method (method
, &amodule
);
4624 * Special case the ICollection<T> wrappers for arrays, as they cannot
4625 * be statically enumerated, and each wrapper ends up calling the same
4628 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_MANAGED
&& m_class_get_rank (method
->klass
) && strstr (method
->name
, "System.Collections.Generic")) {
4629 MonoMethod
*m
= mono_aot_get_array_helper_from_wrapper (method
);
4631 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4632 mono_error_cleanup (&inner_error
);
4638 * Special case Array.GetGenericValueImpl which is a generic icall.
4639 * Generic sharing currently can't handle it, but the icall returns data using
4640 * an out parameter, so the managed-to-native wrappers can share the same code.
4642 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_NATIVE
&& method
->klass
== mono_defaults
.array_class
&& !strcmp (method
->name
, "GetGenericValueImpl")) {
4644 MonoGenericContext ctx
;
4645 MonoType
*args
[16];
4647 if (mono_method_signature (method
)->params
[1]->type
== MONO_TYPE_OBJECT
)
4648 /* Avoid recursion */
4651 m
= mono_class_get_method_from_name (mono_defaults
.array_class
, "GetGenericValueImpl", 2);
4654 memset (&ctx
, 0, sizeof (ctx
));
4655 args
[0] = m_class_get_byval_arg (mono_defaults
.object_class
);
4656 ctx
.method_inst
= mono_metadata_get_generic_inst (1, args
);
4658 m
= mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m
, &ctx
, error
), TRUE
, TRUE
);
4660 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
4663 * Get the code for the <object> instantiation which should be emitted into
4664 * the mscorlib aot image by the AOT compiler.
4666 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4667 mono_error_cleanup (&inner_error
);
4672 const char *klass_name_space
= m_class_get_name_space (method
->klass
);
4673 const char *klass_name
= m_class_get_name (method
->klass
);
4674 /* Same for CompareExchange<T> and Exchange<T> */
4675 /* Same for Volatile.Read<T>/Write<T> */
4676 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_NATIVE
&& m_class_get_image (method
->klass
) == mono_defaults
.corlib
&&
4677 ((!strcmp (klass_name_space
, "System.Threading") && !strcmp (klass_name
, "Interlocked") && (!strcmp (method
->name
, "CompareExchange") || !strcmp (method
->name
, "Exchange")) && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method
)->params
[1]))) ||
4678 (!strcmp (klass_name_space
, "System.Threading") && !strcmp (klass_name
, "Volatile") && (!strcmp (method
->name
, "Read") && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method
)->ret
)))) ||
4679 (!strcmp (klass_name_space
, "System.Threading") && !strcmp (klass_name
, "Volatile") && (!strcmp (method
->name
, "Write") && MONO_TYPE_IS_REFERENCE (mini_type_get_underlying_type (mono_method_signature (method
)->params
[1])))))) {
4681 MonoGenericContext ctx
;
4682 MonoType
*args
[16];
4683 gpointer iter
= NULL
;
4685 while ((m
= mono_class_get_methods (method
->klass
, &iter
))) {
4686 if (mono_method_signature (m
)->generic_param_count
&& !strcmp (m
->name
, method
->name
))
4691 memset (&ctx
, 0, sizeof (ctx
));
4692 args
[0] = mono_get_object_type ();
4693 ctx
.method_inst
= mono_metadata_get_generic_inst (1, args
);
4695 m
= mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m
, &ctx
, error
), TRUE
, TRUE
);
4697 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
4699 /* Avoid recursion */
4704 * Get the code for the <object> instantiation which should be emitted into
4705 * the mscorlib aot image by the AOT compiler.
4707 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4708 mono_error_cleanup (&inner_error
);
4713 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4714 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_UNKNOWN
) {
4715 WrapperInfo
*info
= mono_marshal_get_wrapper_info (method
);
4717 if (info
->subtype
== WRAPPER_SUBTYPE_ARRAY_ACCESSOR
) {
4718 MonoMethod
*array_method
= info
->d
.array_accessor
.method
;
4719 if (MONO_TYPE_IS_REFERENCE (m_class_get_byval_arg (m_class_get_element_class (array_method
->klass
)))) {
4722 if (!strcmp (array_method
->name
, "Set"))
4723 rank
= mono_method_signature (array_method
)->param_count
- 1;
4724 else if (!strcmp (array_method
->name
, "Get") || !strcmp (array_method
->name
, "Address"))
4725 rank
= mono_method_signature (array_method
)->param_count
;
4727 g_assert_not_reached ();
4728 MonoClass
*obj_array_class
= mono_class_create_array (mono_defaults
.object_class
, rank
);
4729 MonoMethod
*m
= mono_class_get_method_from_name (obj_array_class
, array_method
->name
, mono_method_signature (array_method
)->param_count
);
4732 m
= mono_marshal_get_array_accessor_wrapper (m
);
4734 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4735 mono_error_cleanup (&inner_error
);
4743 if (method_index
== 0xffffff && method
->is_inflated
&& mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, FALSE
)) {
4744 /* Partial sharing */
4747 shared
= mini_get_shared_method_full (method
, SHARE_MODE_NONE
, error
);
4748 return_val_if_nok (error
, NULL
);
4750 method_index
= find_aot_method (shared
, &amodule
);
4751 if (method_index
!= 0xffffff)
4755 if (method_index
== 0xffffff && method
->is_inflated
&& mono_method_is_generic_sharable_full (method
, FALSE
, FALSE
, TRUE
)) {
4758 /* Use the all-vt shared method since this is what was AOTed */
4759 shared
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
4763 method_index
= find_aot_method (shared
, &amodule
);
4764 if (method_index
!= 0xffffff) {
4765 method
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
4771 if (method_index
== 0xffffff) {
4772 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4775 full_name
= mono_method_full_name (method
, TRUE
);
4776 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT NOT FOUND: %s.", full_name
);
4782 if (method_index
== 0xffffff)
4785 /* Needed by find_jit_info */
4786 amodule_lock (amodule
);
4787 g_hash_table_insert (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
), method
);
4788 amodule_unlock (amodule
);
4791 method_index
= mono_metadata_token_index (method
->token
) - 1;
4794 code
= (guint8
*)load_method (domain
, amodule
, m_class_get_image (klass
), method
, method
->token
, method_index
, error
);
4797 if (code
&& cache_result
) {
4798 amodule_lock (amodule
);
4799 g_hash_table_insert (amodule
->method_to_code
, orig_method
, code
);
4800 amodule_unlock (amodule
);
4806 * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4810 mono_aot_get_method_from_token (MonoDomain
*domain
, MonoImage
*image
, guint32 token
, MonoError
*error
)
4812 MonoAotModule
*aot_module
= (MonoAotModule
*)image
->aot_module
;
4821 method_index
= mono_metadata_token_index (token
) - 1;
4823 res
= load_method (domain
, aot_module
, image
, NULL
, token
, method_index
, error
);
4830 } IsGotEntryUserData
;
4833 check_is_got_entry (gpointer key
, gpointer value
, gpointer user_data
)
4835 IsGotEntryUserData
*data
= (IsGotEntryUserData
*)user_data
;
4836 MonoAotModule
*aot_module
= (MonoAotModule
*)value
;
4838 if (aot_module
->got
&& (data
->addr
>= (guint8
*)(aot_module
->got
)) && (data
->addr
< (guint8
*)(aot_module
->got
+ aot_module
->info
.got_size
)))
4843 mono_aot_is_got_entry (guint8
*code
, guint8
*addr
)
4845 IsGotEntryUserData user_data
;
4850 user_data
.addr
= addr
;
4851 user_data
.res
= FALSE
;
4853 g_hash_table_foreach (aot_modules
, check_is_got_entry
, &user_data
);
4856 return user_data
.res
;
4861 MonoAotModule
*module
;
4862 } FindAotModuleUserData
;
4865 find_aot_module_cb (gpointer key
, gpointer value
, gpointer user_data
)
4867 FindAotModuleUserData
*data
= (FindAotModuleUserData
*)user_data
;
4868 MonoAotModule
*aot_module
= (MonoAotModule
*)value
;
4870 if (amodule_contains_code_addr (aot_module
, data
->addr
))
4871 data
->module
= aot_module
;
4874 static inline MonoAotModule
*
4875 find_aot_module (guint8
*code
)
4877 FindAotModuleUserData user_data
;
4882 /* Reading these need no locking */
4883 if (((gsize
)code
< aot_code_low_addr
) || ((gsize
)code
> aot_code_high_addr
))
4886 user_data
.addr
= code
;
4887 user_data
.module
= NULL
;
4890 g_hash_table_foreach (aot_modules
, find_aot_module_cb
, &user_data
);
4893 return user_data
.module
;
4897 mono_aot_patch_plt_entry (guint8
*code
, guint8
*plt_entry
, gpointer
*got
, mgreg_t
*regs
, guint8
*addr
)
4899 MonoAotModule
*amodule
;
4902 * Since AOT code is only used in the root domain,
4903 * mono_domain_get () != mono_get_root_domain () means the calling method
4904 * is AppDomain:InvokeInDomain, so this is the same check as in
4905 * mono_method_same_domain () but without loading the metadata for the method.
4907 if (mono_domain_get () == mono_get_root_domain ()) {
4909 amodule
= find_aot_module (code
);
4913 mono_arch_patch_plt_entry (plt_entry
, got
, regs
, addr
);
4918 * mono_aot_plt_resolve:
4920 * This function is called by the entries in the PLT to resolve the actual method that
4921 * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4922 * Returns NULL if the something cannot be loaded.
4925 mono_aot_plt_resolve (gpointer aot_module
, guint32 plt_info_offset
, guint8
*code
, MonoError
*error
)
4927 #ifdef MONO_ARCH_AOT_SUPPORTED
4928 guint8
*p
, *target
, *plt_entry
;
4930 MonoAotModule
*module
= (MonoAotModule
*)aot_module
;
4931 gboolean res
, no_ftnptr
= FALSE
;
4933 gboolean using_gsharedvt
= FALSE
;
4937 //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4939 p
= &module
->blob
[plt_info_offset
];
4941 ji
.type
= (MonoJumpInfoType
)decode_value (p
, &p
);
4943 mp
= mono_mempool_new ();
4944 res
= decode_patch (module
, mp
, &ji
, p
, &p
);
4947 mono_mempool_destroy (mp
);
4951 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4952 using_gsharedvt
= TRUE
;
4956 * Avoid calling resolve_patch_target in the full-aot case if possible, since
4957 * it would create a trampoline, and we don't need that.
4958 * We could do this only if the method does not need the special handling
4959 * in mono_magic_trampoline ().
4961 if (mono_aot_only
&& ji
.type
== MONO_PATCH_INFO_METHOD
&& !ji
.data
.method
->is_generic
&& !mono_method_check_context_used (ji
.data
.method
) && !(ji
.data
.method
->iflags
& METHOD_IMPL_ATTRIBUTE_SYNCHRONIZED
) &&
4962 !mono_method_needs_static_rgctx_invoke (ji
.data
.method
, FALSE
) && !using_gsharedvt
) {
4963 target
= (guint8
*)mono_jit_compile_method (ji
.data
.method
, error
);
4964 if (!mono_error_ok (error
)) {
4965 mono_mempool_destroy (mp
);
4970 target
= (guint8
*)mono_resolve_patch_target (NULL
, mono_domain_get (), NULL
, &ji
, TRUE
, error
);
4971 if (!mono_error_ok (error
)) {
4972 mono_mempool_destroy (mp
);
4978 * The trampoline expects us to return a function descriptor on platforms which use
4979 * it, but resolve_patch_target returns a direct function pointer for some type of
4980 * patches, so have to translate between the two.
4981 * FIXME: Clean this up, but how ?
4983 if (ji
.type
== MONO_PATCH_INFO_ABS
|| ji
.type
== MONO_PATCH_INFO_INTERNAL_METHOD
|| ji
.type
== MONO_PATCH_INFO_ICALL_ADDR
|| ji
.type
== MONO_PATCH_INFO_JIT_ICALL_ADDR
|| ji
.type
== MONO_PATCH_INFO_RGCTX_FETCH
) {
4984 /* These should already have a function descriptor */
4985 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4986 /* Our function descriptors have a 0 environment, gcc created ones don't */
4987 if (ji
.type
!= MONO_PATCH_INFO_INTERNAL_METHOD
&& ji
.type
!= MONO_PATCH_INFO_JIT_ICALL_ADDR
&& ji
.type
!= MONO_PATCH_INFO_ICALL_ADDR
)
4988 g_assert (((gpointer
*)target
) [2] == 0);
4991 } else if (!no_ftnptr
) {
4992 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4993 g_assert (((gpointer
*)target
) [2] != 0);
4995 target
= (guint8
*)mono_create_ftnptr (mono_domain_get (), target
);
4998 mono_mempool_destroy (mp
);
5000 /* Patch the PLT entry with target which might be the actual method not a trampoline */
5001 plt_entry
= mono_aot_get_plt_entry (code
);
5002 g_assert (plt_entry
);
5003 mono_aot_patch_plt_entry (code
, plt_entry
, module
->got
, NULL
, target
);
5007 g_assert_not_reached ();
5015 * Initialize the PLT table of the AOT module. Called lazily when the first AOT
5016 * method in the module is loaded to avoid committing memory by writing to it.
5017 * LOCKING: Assumes the AMODULE lock is held.
5020 init_plt (MonoAotModule
*amodule
)
5025 if (amodule
->plt_inited
)
5028 if (amodule
->info
.plt_size
<= 1) {
5029 amodule
->plt_inited
= TRUE
;
5033 tramp
= mono_create_specific_trampoline (amodule
, MONO_TRAMPOLINE_AOT_PLT
, mono_get_root_domain (), NULL
);
5036 * Initialize the PLT entries in the GOT to point to the default targets.
5039 tramp
= mono_create_ftnptr (mono_domain_get (), tramp
);
5040 for (i
= 1; i
< amodule
->info
.plt_size
; ++i
)
5041 /* All the default entries point to the AOT trampoline */
5042 ((gpointer
*)amodule
->got
)[amodule
->info
.plt_got_offset_base
+ i
] = tramp
;
5044 amodule
->plt_inited
= TRUE
;
5048 * mono_aot_get_plt_entry:
5050 * Return the address of the PLT entry called by the code at CODE if exists.
5053 mono_aot_get_plt_entry (guint8
*code
)
5055 MonoAotModule
*amodule
= find_aot_module (code
);
5056 guint8
*target
= NULL
;
5062 if (is_thumb_code (amodule
, code
- 4))
5063 return mono_arm_get_thumb_plt_entry (code
);
5066 #ifdef MONO_ARCH_AOT_SUPPORTED
5067 target
= mono_arch_get_call_target (code
);
5069 g_assert_not_reached ();
5073 while (target
!= NULL
) {
5074 if ((target
>= (guint8
*)(amodule
->plt
)) && (target
< (guint8
*)(amodule
->plt_end
)))
5077 // Add 4 since mono_arch_get_call_target assumes we're passing
5078 // the instruction after the actual branch instruction.
5079 target
= mono_arch_get_call_target (target
+ 4);
5084 if ((target
>= (guint8
*)(amodule
->plt
)) && (target
< (guint8
*)(amodule
->plt_end
)))
5092 * mono_aot_get_plt_info_offset:
5094 * Return the PLT info offset belonging to the plt entry called by CODE.
5097 mono_aot_get_plt_info_offset (mgreg_t
*regs
, guint8
*code
)
5099 guint8
*plt_entry
= mono_aot_get_plt_entry (code
);
5101 g_assert (plt_entry
);
5103 /* The offset is embedded inside the code after the plt entry */
5104 #ifdef MONO_ARCH_AOT_SUPPORTED
5105 return mono_arch_get_plt_info_offset (plt_entry
, regs
, code
);
5107 g_assert_not_reached ();
5113 mono_create_ftnptr_malloc (guint8
*code
)
5115 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5116 MonoPPCFunctionDescriptor
*ftnptr
= g_malloc0 (sizeof (MonoPPCFunctionDescriptor
));
5118 ftnptr
->code
= code
;
5129 * mono_aot_register_jit_icall:
5131 * Register a JIT icall which is called by trampolines in full-aot mode. This should
5132 * be called from mono_arch_init () during startup.
5135 mono_aot_register_jit_icall (const char *name
, gpointer addr
)
5137 /* No need for locking */
5138 if (!aot_jit_icall_hash
)
5139 aot_jit_icall_hash
= g_hash_table_new (g_str_hash
, g_str_equal
);
5140 g_hash_table_insert (aot_jit_icall_hash
, (char*)name
, addr
);
5144 * load_function_full:
5146 * Load the function named NAME from the aot image.
5149 load_function_full (MonoAotModule
*amodule
, const char *name
, MonoTrampInfo
**out_tinfo
)
5153 int n_patches
, pindex
;
5156 guint32 info_offset
;
5160 symbol
= g_strdup_printf ("%s", name
);
5161 find_amodule_symbol (amodule
, symbol
, (gpointer
*)&code
);
5164 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name
, amodule
->aot_name
);
5166 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: FOUND function '%s' in AOT file '%s'.", name
, amodule
->aot_name
);
5170 symbol
= g_strdup_printf ("%s_p", name
);
5171 find_amodule_symbol (amodule
, symbol
, (gpointer
*)&p
);
5174 /* Nothing to patch */
5177 info_offset
= *(guint32
*)p
;
5179 MonoTrampInfo
*tinfo
;
5180 guint32 code_size
, uw_info_len
, uw_offset
;
5182 /* Construct a MonoTrampInfo from the data in the AOT image */
5184 p
+= sizeof (guint32
);
5185 code_size
= *(guint32
*)p
;
5186 p
+= sizeof (guint32
);
5187 uw_offset
= *(guint32
*)p
;
5188 uw_info
= amodule
->unwind_info
+ uw_offset
;
5189 uw_info_len
= decode_value (uw_info
, &uw_info
);
5191 tinfo
= g_new0 (MonoTrampInfo
, 1);
5192 tinfo
->code
= (guint8
*)code
;
5193 tinfo
->code_size
= code_size
;
5194 tinfo
->uw_info_len
= uw_info_len
;
5196 tinfo
->uw_info
= uw_info
;
5201 p
= amodule
->blob
+ info_offset
;
5203 /* Similar to mono_aot_load_method () */
5205 n_patches
= decode_value (p
, &p
);
5208 MonoJumpInfo
*patches
;
5211 mp
= mono_mempool_new ();
5213 patches
= load_patch_info (amodule
, mp
, n_patches
, FALSE
, &got_slots
, p
, &p
);
5216 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
5217 MonoJumpInfo
*ji
= &patches
[pindex
];
5221 if (amodule
->got
[got_slots
[pindex
]])
5225 * When this code is executed, the runtime may not be initalized yet, so
5226 * resolve the patch info by hand.
5228 if (ji
->type
== MONO_PATCH_INFO_JIT_ICALL_ADDR
) {
5229 if (!strcmp (ji
->data
.name
, "mono_get_lmf_addr")) {
5230 target
= mono_get_lmf_addr
;
5231 } else if (!strcmp (ji
->data
.name
, "mono_thread_force_interruption_checkpoint_noraise")) {
5232 target
= mono_thread_force_interruption_checkpoint_noraise
;
5233 } else if (!strcmp (ji
->data
.name
, "mono_exception_from_token")) {
5234 target
= mono_exception_from_token
;
5235 } else if (!strcmp (ji
->data
.name
, "mono_throw_exception")) {
5236 target
= mono_get_throw_exception ();
5237 } else if (strstr (ji
->data
.name
, "trampoline_func_") == ji
->data
.name
) {
5238 MonoTrampolineType tramp_type2
= (MonoTrampolineType
)atoi (ji
->data
.name
+ strlen ("trampoline_func_"));
5239 target
= (gpointer
)mono_get_trampoline_func (tramp_type2
);
5240 } else if (strstr (ji
->data
.name
, "specific_trampoline_lazy_fetch_") == ji
->data
.name
) {
5241 /* atoll is needed because the the offset is unsigned */
5245 res
= sscanf (ji
->data
.name
, "specific_trampoline_lazy_fetch_%u", &slot
);
5246 g_assert (res
== 1);
5247 target
= mono_create_specific_trampoline (GUINT_TO_POINTER (slot
), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH
, mono_get_root_domain (), NULL
);
5248 target
= mono_create_ftnptr_malloc ((guint8
*)target
);
5249 } else if (!strcmp (ji
->data
.name
, "debugger_agent_single_step_from_context")) {
5250 target
= mini_get_dbg_callbacks ()->single_step_from_context
;
5251 } else if (!strcmp (ji
->data
.name
, "debugger_agent_breakpoint_from_context")) {
5252 target
= mini_get_dbg_callbacks ()->breakpoint_from_context
;
5253 } else if (!strcmp (ji
->data
.name
, "throw_exception_addr")) {
5254 target
= mono_get_throw_exception_addr ();
5255 } else if (strstr (ji
->data
.name
, "generic_trampoline_")) {
5256 target
= mono_aot_get_trampoline (ji
->data
.name
);
5257 } else if (aot_jit_icall_hash
&& g_hash_table_lookup (aot_jit_icall_hash
, ji
->data
.name
)) {
5258 /* Registered by mono_arch_init () */
5259 target
= g_hash_table_lookup (aot_jit_icall_hash
, ji
->data
.name
);
5261 fprintf (stderr
, "Unknown relocation '%s'\n", ji
->data
.name
);
5262 g_assert_not_reached ();
5266 /* Hopefully the code doesn't have patches which need method or
5269 target
= mono_resolve_patch_target (NULL
, NULL
, (guint8
*)code
, ji
, FALSE
, error
);
5270 mono_error_assert_ok (error
);
5274 amodule
->got
[got_slots
[pindex
]] = target
;
5279 mono_mempool_destroy (mp
);
5286 load_function (MonoAotModule
*amodule
, const char *name
)
5288 return load_function_full (amodule
, name
, NULL
);
5291 static MonoAotModule
*
5292 get_mscorlib_aot_module (void)
5295 MonoAotModule
*amodule
;
5297 image
= mono_defaults
.corlib
;
5299 amodule
= (MonoAotModule
*)image
->aot_module
;
5301 amodule
= mscorlib_aot_module
;
5307 no_trampolines (void)
5309 g_assert_not_reached ();
5313 * Return the trampoline identified by NAME from the mscorlib AOT file.
5314 * On ppc64, this returns a function descriptor.
5317 mono_aot_get_trampoline_full (const char *name
, MonoTrampInfo
**out_tinfo
)
5319 MonoAotModule
*amodule
= get_mscorlib_aot_module ();
5321 if (mono_llvm_only
) {
5323 return no_trampolines
;
5326 return mono_create_ftnptr_malloc ((guint8
*)load_function_full (amodule
, name
, out_tinfo
));
5330 mono_aot_get_trampoline (const char *name
)
5332 MonoTrampInfo
*out_tinfo
;
5335 code
= mono_aot_get_trampoline_full (name
, &out_tinfo
);
5336 mono_aot_tramp_info_register (out_tinfo
, NULL
);
5342 read_unwind_info (MonoAotModule
*amodule
, MonoTrampInfo
*info
, const char *symbol_name
)
5344 gpointer symbol_addr
;
5345 guint32 uw_offset
, uw_info_len
;
5348 find_amodule_symbol (amodule
, symbol_name
, &symbol_addr
);
5353 uw_offset
= *(guint32
*)symbol_addr
;
5354 uw_info
= amodule
->unwind_info
+ uw_offset
;
5355 uw_info_len
= decode_value (uw_info
, &uw_info
);
5357 info
->uw_info_len
= uw_info_len
;
5359 info
->uw_info
= uw_info
;
5361 info
->uw_info
= NULL
;
5363 /* If successful return the address of the following data */
5364 return (guint32
*)symbol_addr
+ 1;
5368 #include <mach/mach.h>
5370 static TrampolinePage
* trampoline_pages
[MONO_AOT_TRAMP_NUM
];
5373 read_page_trampoline_uwinfo (MonoTrampInfo
*info
, int tramp_type
, gboolean is_generic
)
5375 char symbol_name
[128];
5377 if (tramp_type
== MONO_AOT_TRAMP_SPECIFIC
)
5378 sprintf (symbol_name
, "specific_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5379 else if (tramp_type
== MONO_AOT_TRAMP_STATIC_RGCTX
)
5380 sprintf (symbol_name
, "rgctx_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5381 else if (tramp_type
== MONO_AOT_TRAMP_IMT
)
5382 sprintf (symbol_name
, "imt_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5383 else if (tramp_type
== MONO_AOT_TRAMP_GSHAREDVT_ARG
)
5384 sprintf (symbol_name
, "gsharedvt_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5386 g_assert_not_reached ();
5388 read_unwind_info (mono_defaults
.corlib
->aot_module
, info
, symbol_name
);
5391 static unsigned char*
5392 get_new_trampoline_from_page (int tramp_type
)
5394 MonoAotModule
*amodule
;
5396 TrampolinePage
*page
;
5399 vm_address_t addr
, taddr
;
5401 vm_prot_t prot
, max_prot
;
5402 int psize
, specific_trampoline_size
;
5403 unsigned char *code
;
5405 specific_trampoline_size
= 2 * sizeof (gpointer
);
5407 mono_aot_page_lock ();
5408 page
= trampoline_pages
[tramp_type
];
5409 if (page
&& page
->trampolines
< page
->trampolines_end
) {
5410 code
= page
->trampolines
;
5411 page
->trampolines
+= specific_trampoline_size
;
5412 mono_aot_page_unlock ();
5415 mono_aot_page_unlock ();
5416 /* the trampoline template page is in the mscorlib module */
5417 image
= mono_defaults
.corlib
;
5420 psize
= MONO_AOT_TRAMP_PAGE_SIZE
;
5422 amodule
= image
->aot_module
;
5425 if (tramp_type
== MONO_AOT_TRAMP_SPECIFIC
)
5426 tpage
= load_function (amodule
, "specific_trampolines_page");
5427 else if (tramp_type
== MONO_AOT_TRAMP_STATIC_RGCTX
)
5428 tpage
= load_function (amodule
, "rgctx_trampolines_page");
5429 else if (tramp_type
== MONO_AOT_TRAMP_IMT
)
5430 tpage
= load_function (amodule
, "imt_trampolines_page");
5431 else if (tramp_type
== MONO_AOT_TRAMP_GSHAREDVT_ARG
)
5432 tpage
= load_function (amodule
, "gsharedvt_arg_trampolines_page");
5434 g_error ("Incorrect tramp type for trampolines page");
5436 /*g_warning ("loaded trampolines page at %x", tpage);*/
5438 /* avoid the unlikely case of looping forever */
5441 while (page
== NULL
&& count
-- > 0) {
5442 MonoTrampInfo
*gen_info
, *sp_info
;
5445 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
5446 * while the second will contain the trampolines.
5449 ret
= vm_allocate (mach_task_self (), &addr
, psize
* 2, VM_FLAGS_ANYWHERE
);
5450 } while (ret
== KERN_ABORTED
);
5451 if (ret
!= KERN_SUCCESS
) {
5452 g_error ("Cannot allocate memory for trampolines: %d", ret
);
5455 /*g_warning ("allocated trampoline double page at %x", addr);*/
5456 /* replace the second page with a remapped trampoline page */
5457 taddr
= addr
+ psize
;
5458 vm_deallocate (mach_task_self (), taddr
, psize
);
5459 ret
= vm_remap (mach_task_self (), &taddr
, psize
, 0, FALSE
, mach_task_self(), (vm_address_t
)tpage
, FALSE
, &prot
, &max_prot
, VM_INHERIT_SHARE
);
5460 if (ret
!= KERN_SUCCESS
) {
5461 /* someone else got the page, try again */
5462 vm_deallocate (mach_task_self (), addr
, psize
);
5465 /*g_warning ("remapped trampoline page at %x", taddr);*/
5467 mono_aot_page_lock ();
5468 page
= trampoline_pages
[tramp_type
];
5469 /* some other thread already allocated, so use that to avoid wasting memory */
5470 if (page
&& page
->trampolines
< page
->trampolines_end
) {
5471 code
= page
->trampolines
;
5472 page
->trampolines
+= specific_trampoline_size
;
5473 mono_aot_page_unlock ();
5474 vm_deallocate (mach_task_self (), addr
, psize
);
5475 vm_deallocate (mach_task_self (), taddr
, psize
);
5478 page
= (TrampolinePage
*)addr
;
5479 page
->next
= trampoline_pages
[tramp_type
];
5480 trampoline_pages
[tramp_type
] = page
;
5481 page
->trampolines
= (void*)(taddr
+ amodule
->info
.tramp_page_code_offsets
[tramp_type
]);
5482 page
->trampolines_end
= (void*)(taddr
+ psize
- 64);
5483 code
= page
->trampolines
;
5484 page
->trampolines
+= specific_trampoline_size
;
5485 mono_aot_page_unlock ();
5487 /* Register the generic part at the beggining of the trampoline page */
5488 gen_info
= mono_tramp_info_create (NULL
, (guint8
*)taddr
, amodule
->info
.tramp_page_code_offsets
[tramp_type
], NULL
, NULL
);
5489 read_page_trampoline_uwinfo (gen_info
, tramp_type
, TRUE
);
5490 mono_aot_tramp_info_register (gen_info
, NULL
);
5493 * Registering each specific trampoline produces a lot of
5494 * MonoJitInfo structures. Jump trampolines are also registered
5497 if (tramp_type
!= MONO_AOT_TRAMP_SPECIFIC
) {
5498 /* Register the rest of the page as a single trampoline */
5499 sp_info
= mono_tramp_info_create (NULL
, code
, page
->trampolines_end
- code
, NULL
, NULL
);
5500 read_page_trampoline_uwinfo (sp_info
, tramp_type
, FALSE
);
5501 mono_aot_tramp_info_register (sp_info
, NULL
);
5505 g_error ("Cannot allocate more trampoline pages: %d", ret
);
5510 static unsigned char*
5511 get_new_trampoline_from_page (int tramp_type
)
5513 g_error ("Page trampolines not supported.");
5520 get_new_specific_trampoline_from_page (gpointer tramp
, gpointer arg
)
5525 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC
);
5527 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5530 /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5536 get_new_rgctx_trampoline_from_page (gpointer tramp
, gpointer arg
)
5541 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX
);
5543 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5546 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5552 get_new_imt_trampoline_from_page (gpointer arg
)
5557 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT
);
5559 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5561 /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
5567 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp
, gpointer arg
)
5572 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG
);
5574 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5577 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5581 /* Return a given kind of trampoline */
5582 /* FIXME set unwind info for these trampolines */
5584 get_numerous_trampoline (MonoAotTrampoline tramp_type
, int n_got_slots
, MonoAotModule
**out_amodule
, guint32
*got_offset
, guint32
*out_tramp_size
)
5587 MonoAotModule
*amodule
= get_mscorlib_aot_module ();
5588 int index
, tramp_size
;
5590 /* Currently, we keep all trampolines in the mscorlib AOT image */
5591 image
= mono_defaults
.corlib
;
5593 *out_amodule
= amodule
;
5598 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
5600 #define MONOTOUCH_TRAMPOLINES_ERROR ""
5602 if (amodule
->trampoline_index
[tramp_type
] == amodule
->info
.num_trampolines
[tramp_type
]) {
5603 g_error ("Ran out of trampolines of type %d in '%s' (limit %d)%s\n",
5604 tramp_type
, image
? image
->name
: "mscorlib", amodule
->info
.num_trampolines
[tramp_type
], MONOTOUCH_TRAMPOLINES_ERROR
);
5606 index
= amodule
->trampoline_index
[tramp_type
] ++;
5610 *got_offset
= amodule
->info
.trampoline_got_offset_base
[tramp_type
] + (index
* n_got_slots
);
5612 tramp_size
= amodule
->info
.trampoline_size
[tramp_type
];
5615 *out_tramp_size
= tramp_size
;
5617 return amodule
->trampolines
[tramp_type
] + (index
* tramp_size
);
5621 no_specific_trampoline (void)
5623 g_assert_not_reached ();
5627 * Return a specific trampoline from the AOT file.
5630 mono_aot_create_specific_trampoline (MonoImage
*image
, gpointer arg1
, MonoTrampolineType tramp_type
, MonoDomain
*domain
, guint32
*code_len
)
5632 MonoAotModule
*amodule
;
5633 guint32 got_offset
, tramp_size
;
5634 guint8
*code
, *tramp
;
5635 static gpointer generic_trampolines
[MONO_TRAMPOLINE_NUM
];
5636 static gboolean inited
;
5637 static guint32 num_trampolines
;
5639 if (mono_llvm_only
) {
5641 return no_specific_trampoline
;
5648 mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT
| MONO_COUNTER_INT
, &num_trampolines
);
5657 if (!generic_trampolines
[tramp_type
]) {
5660 symbol
= mono_get_generic_trampoline_name (tramp_type
);
5661 generic_trampolines
[tramp_type
] = mono_aot_get_trampoline (symbol
);
5665 tramp
= (guint8
*)generic_trampolines
[tramp_type
];
5668 if (USE_PAGE_TRAMPOLINES
) {
5669 code
= (guint8
*)get_new_specific_trampoline_from_page (tramp
, arg1
);
5672 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC
, 2, &amodule
, &got_offset
, &tramp_size
);
5674 amodule
->got
[got_offset
] = tramp
;
5675 amodule
->got
[got_offset
+ 1] = arg1
;
5679 *code_len
= tramp_size
;
5685 mono_aot_get_static_rgctx_trampoline (gpointer ctx
, gpointer addr
)
5687 MonoAotModule
*amodule
;
5691 if (USE_PAGE_TRAMPOLINES
) {
5692 code
= (guint8
*)get_new_rgctx_trampoline_from_page (addr
, ctx
);
5694 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX
, 2, &amodule
, &got_offset
, NULL
);
5696 amodule
->got
[got_offset
] = ctx
;
5697 amodule
->got
[got_offset
+ 1] = addr
;
5700 /* The caller expects an ftnptr */
5701 return mono_create_ftnptr (mono_domain_get (), code
);
5705 mono_aot_get_unbox_trampoline (MonoMethod
*method
)
5708 guint32 method_index
= mono_metadata_token_index (method
->token
) - 1;
5709 MonoAotModule
*amodule
;
5711 guint32
*ut
, *ut_end
, *entry
;
5712 int low
, high
, entry_index
= 0;
5713 gpointer symbol_addr
;
5714 MonoTrampInfo
*tinfo
;
5716 if (method
->is_inflated
&& !mono_method_is_generic_sharable_full (method
, FALSE
, FALSE
, FALSE
)) {
5717 method_index
= find_aot_method (method
, &amodule
);
5718 if (method_index
== 0xffffff && mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, FALSE
)) {
5719 MonoMethod
*shared
= mini_get_shared_method_full (method
, SHARE_MODE_NONE
, error
);
5720 mono_error_assert_ok (error
);
5721 method_index
= find_aot_method (shared
, &amodule
);
5723 if (method_index
== 0xffffff && mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, TRUE
)) {
5724 MonoMethod
*shared
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
5725 mono_error_assert_ok (error
);
5727 method_index
= find_aot_method (shared
, &amodule
);
5729 g_assert (method_index
!= 0xffffff);
5731 amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
5735 if (amodule
->info
.llvm_get_unbox_tramp
) {
5736 gpointer (*get_tramp
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_unbox_tramp
;
5737 code
= get_tramp (method_index
);
5743 ut
= amodule
->unbox_trampolines
;
5744 ut_end
= amodule
->unbox_trampolines_end
;
5746 /* Do a binary search in the sorted table */
5749 high
= (ut_end
- ut
);
5750 while (low
< high
) {
5751 entry_index
= (low
+ high
) / 2;
5752 entry
= &ut
[entry_index
];
5753 if (entry
[0] < method_index
) {
5754 low
= entry_index
+ 1;
5755 } else if (entry
[0] > method_index
) {
5762 code
= get_call_table_entry (amodule
->unbox_trampoline_addresses
, entry_index
);
5765 tinfo
= mono_tramp_info_create (NULL
, (guint8
*)code
, 0, NULL
, NULL
);
5767 symbol_addr
= read_unwind_info (amodule
, tinfo
, "unbox_trampoline_p");
5769 mono_tramp_info_free (tinfo
);
5773 tinfo
->code_size
= *(guint32
*)symbol_addr
;
5774 mono_aot_tramp_info_register (tinfo
, NULL
);
5776 /* The caller expects an ftnptr */
5777 return mono_create_ftnptr (mono_domain_get (), code
);
5781 mono_aot_get_lazy_fetch_trampoline (guint32 slot
)
5785 MonoAotModule
*amodule
= (MonoAotModule
*)mono_defaults
.corlib
->aot_module
;
5786 guint32 index
= MONO_RGCTX_SLOT_INDEX (slot
);
5787 static int count
= 0;
5790 if (index
>= amodule
->info
.num_rgctx_fetch_trampolines
) {
5791 static gpointer addr
;
5795 * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5798 addr
= load_function (amodule
, "rgctx_fetch_trampoline_general");
5799 info
= (void **)mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer
) * 2);
5800 info
[0] = GUINT_TO_POINTER (slot
);
5801 info
[1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot
), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH
, mono_get_root_domain (), NULL
);
5802 code
= mono_aot_get_static_rgctx_trampoline (info
, addr
);
5803 return mono_create_ftnptr (mono_domain_get (), code
);
5806 symbol
= mono_get_rgctx_fetch_trampoline_name (slot
);
5807 code
= load_function ((MonoAotModule
*)mono_defaults
.corlib
->aot_module
, symbol
);
5809 /* The caller expects an ftnptr */
5810 return mono_create_ftnptr (mono_domain_get (), code
);
5814 no_imt_trampoline (void)
5816 g_assert_not_reached ();
5820 mono_aot_get_imt_trampoline (MonoVTable
*vtable
, MonoDomain
*domain
, MonoIMTCheckItem
**imt_entries
, int count
, gpointer fail_tramp
)
5825 int i
, index
, real_count
;
5826 MonoAotModule
*amodule
;
5829 return no_imt_trampoline
;
5832 for (i
= 0; i
< count
; ++i
) {
5833 MonoIMTCheckItem
*item
= imt_entries
[i
];
5835 if (item
->is_equals
)
5839 /* Save the entries into an array */
5840 buf
= (void **)mono_domain_alloc (domain
, (real_count
+ 1) * 2 * sizeof (gpointer
));
5842 for (i
= 0; i
< count
; ++i
) {
5843 MonoIMTCheckItem
*item
= imt_entries
[i
];
5845 if (!item
->is_equals
)
5848 g_assert (item
->key
);
5850 buf
[(index
* 2)] = item
->key
;
5851 if (item
->has_target_code
) {
5852 gpointer
*p
= (gpointer
*)mono_domain_alloc (domain
, sizeof (gpointer
));
5853 *p
= item
->value
.target_code
;
5854 buf
[(index
* 2) + 1] = p
;
5856 buf
[(index
* 2) + 1] = &(vtable
->vtable
[item
->value
.vtable_slot
]);
5860 buf
[(index
* 2)] = NULL
;
5861 buf
[(index
* 2) + 1] = fail_tramp
;
5863 if (USE_PAGE_TRAMPOLINES
) {
5864 code
= get_new_imt_trampoline_from_page (buf
);
5866 code
= get_numerous_trampoline (MONO_AOT_TRAMP_IMT
, 1, &amodule
, &got_offset
, NULL
);
5868 amodule
->got
[got_offset
] = buf
;
5875 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg
, gpointer addr
)
5877 MonoAotModule
*amodule
;
5881 if (USE_PAGE_TRAMPOLINES
) {
5882 code
= (guint8
*)get_new_gsharedvt_arg_trampoline_from_page (addr
, arg
);
5884 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG
, 2, &amodule
, &got_offset
, NULL
);
5886 amodule
->got
[got_offset
] = arg
;
5887 amodule
->got
[got_offset
+ 1] = addr
;
5890 /* The caller expects an ftnptr */
5891 return mono_create_ftnptr (mono_domain_get (), code
);
5895 * mono_aot_set_make_unreadable:
5897 * Set whenever to make all mmaped memory unreadable. In conjuction with a
5898 * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5901 mono_aot_set_make_unreadable (gboolean unreadable
)
5905 make_unreadable
= unreadable
;
5907 if (make_unreadable
&& !inited
) {
5908 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT
| MONO_COUNTER_INT
, &n_pagefaults
);
5913 MonoAotModule
*module
;
5918 find_map (gpointer key
, gpointer value
, gpointer user_data
)
5920 MonoAotModule
*module
= (MonoAotModule
*)value
;
5921 FindMapUserData
*data
= (FindMapUserData
*)user_data
;
5924 if ((data
->ptr
>= module
->mem_begin
) && (data
->ptr
< module
->mem_end
))
5925 data
->module
= module
;
5928 static MonoAotModule
*
5929 find_module_for_addr (void *ptr
)
5931 FindMapUserData data
;
5933 if (!make_unreadable
)
5937 data
.ptr
= (guint8
*)ptr
;
5940 g_hash_table_foreach (aot_modules
, (GHFunc
)find_map
, &data
);
5947 * mono_aot_is_pagefault:
5949 * Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5950 * within memory allocated by this module.
5953 mono_aot_is_pagefault (void *ptr
)
5955 if (!make_unreadable
)
5959 * Not signal safe, but SIGSEGV's are synchronous, and
5960 * this is only turned on by a MONO_DEBUG option.
5962 return find_module_for_addr (ptr
) != NULL
;
5966 * mono_aot_handle_pagefault:
5968 * Handle a pagefault caused by an unreadable page by making it readable again.
5971 mono_aot_handle_pagefault (void *ptr
)
5974 guint8
* start
= (guint8
*)ROUND_DOWN (((gssize
)ptr
), mono_pagesize ());
5978 res
= mono_mprotect (start
, mono_pagesize (), MONO_MMAP_READ
|MONO_MMAP_WRITE
|MONO_MMAP_EXEC
);
5979 g_assert (res
== 0);
5990 mono_aot_init (void)
5995 mono_aot_cleanup (void)
6000 mono_aot_find_method_index (MonoMethod
*method
)
6002 g_assert_not_reached ();
6007 mono_aot_init_llvm_method (gpointer aot_module
, guint32 method_index
)
6012 mono_aot_init_gshared_method_this (gpointer aot_module
, guint32 method_index
, MonoObject
*this)
6017 mono_aot_init_gshared_method_mrgctx (gpointer aot_module
, guint32 method_index
, MonoMethodRuntimeGenericContext
*rgctx
)
6022 mono_aot_init_gshared_method_vtable (gpointer aot_module
, guint32 method_index
, MonoVTable
*vtable
)
6027 mono_aot_get_method (MonoDomain
*domain
,
6028 MonoMethod
*method
, MonoError
*error
)
6035 mono_aot_is_got_entry (guint8
*code
, guint8
*addr
)
6041 mono_aot_get_cached_class_info (MonoClass
*klass
, MonoCachedClassInfo
*res
)
6047 mono_aot_get_class_from_name (MonoImage
*image
, const char *name_space
, const char *name
, MonoClass
**klass
)
6053 mono_aot_find_jit_info (MonoDomain
*domain
, MonoImage
*image
, gpointer addr
)
6059 mono_aot_get_method_from_token (MonoDomain
*domain
, MonoImage
*image
, guint32 token
, MonoError
*error
)
6066 mono_aot_get_plt_entry (guint8
*code
)
6072 mono_aot_plt_resolve (gpointer aot_module
, guint32 plt_info_offset
, guint8
*code
, MonoError
*error
)
6078 mono_aot_patch_plt_entry (guint8
*code
, guint8
*plt_entry
, gpointer
*got
, mgreg_t
*regs
, guint8
*addr
)
6083 mono_aot_get_method_from_vt_slot (MonoDomain
*domain
, MonoVTable
*vtable
, int slot
, MonoError
*error
)
6091 mono_aot_get_plt_info_offset (mgreg_t
*regs
, guint8
*code
)
6093 g_assert_not_reached ();
6099 mono_aot_create_specific_trampoline (MonoImage
*image
, gpointer arg1
, MonoTrampolineType tramp_type
, MonoDomain
*domain
, guint32
*code_len
)
6101 g_assert_not_reached ();
6106 mono_aot_get_static_rgctx_trampoline (gpointer ctx
, gpointer addr
)
6108 g_assert_not_reached ();
6113 mono_aot_get_trampoline_full (const char *name
, MonoTrampInfo
**out_tinfo
)
6115 g_assert_not_reached ();
6120 mono_aot_get_trampoline (const char *name
)
6122 g_assert_not_reached ();
6127 mono_aot_get_unbox_trampoline (MonoMethod
*method
)
6129 g_assert_not_reached ();
6134 mono_aot_get_lazy_fetch_trampoline (guint32 slot
)
6136 g_assert_not_reached ();
6141 mono_aot_get_imt_trampoline (MonoVTable
*vtable
, MonoDomain
*domain
, MonoIMTCheckItem
**imt_entries
, int count
, gpointer fail_tramp
)
6143 g_assert_not_reached ();
6148 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg
, gpointer addr
)
6150 g_assert_not_reached ();
6155 mono_aot_set_make_unreadable (gboolean unreadable
)
6160 mono_aot_is_pagefault (void *ptr
)
6166 mono_aot_handle_pagefault (void *ptr
)
6171 mono_aot_get_unwind_info (MonoJitInfo
*ji
, guint32
*unwind_info_len
)
6173 g_assert_not_reached ();
6178 mono_aot_register_jit_icall (const char *name
, gpointer addr
)
6183 mono_aot_get_weak_field_indexes (MonoImage
*image
)