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 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
);
277 if (amodule
->image_table
[index
])
278 return amodule
->image_table
[index
];
279 if (amodule
->out_of_date
) {
280 mono_error_set_bad_image_by_name (error
, amodule
->aot_name
, "Image out of date");
285 * LoadFile allows loading more than one assembly with the same name.
286 * That means that just calling mono_assembly_load is unlikely to find
287 * the correct assembly (it'll just return the first one loaded). But
288 * we shouldn't hardcode the full assembly filepath into the AOT image,
289 * so it's not obvious that we can call mono_assembly_open_predicate.
291 * In the JIT, an assembly opened with LoadFile is supposed to only
292 * refer to already-loaded assemblies (or to GAC & MONO_PATH)
293 * assemblies - so nothing new should be loading. And for the
294 * LoadFile'd assembly itself, we can check if the name and guid of the
295 * current AOT module matches the wanted name and guid and just return
296 * the AOT module's assembly.
298 if (mono_asmctx_get_kind (&amodule
->assembly
->context
) == MONO_ASMCTX_INDIVIDUAL
&&
299 !strcmp (amodule
->assembly
->image
->guid
, amodule
->image_guids
[index
]) &&
300 mono_assembly_names_equal (&amodule
->image_names
[index
], &amodule
->assembly
->aname
))
301 assembly
= amodule
->assembly
;
303 assembly
= mono_assembly_load (&amodule
->image_names
[index
], amodule
->assembly
->basedir
, &status
);
305 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
);
306 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
);
307 amodule
->out_of_date
= TRUE
;
311 if (strcmp (assembly
->image
->guid
, amodule
->image_guids
[index
])) {
312 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
);
313 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
);
314 amodule
->out_of_date
= TRUE
;
318 amodule
->image_table
[index
] = assembly
->image
;
319 return assembly
->image
;
323 decode_value (guint8
*ptr
, guint8
**rptr
)
328 if ((b
& 0x80) == 0){
331 } else if ((b
& 0x40) == 0){
332 len
= ((b
& 0x3f) << 8 | ptr
[1]);
334 } else if (b
!= 0xff) {
335 len
= ((b
& 0x1f) << 24) |
342 len
= (ptr
[1] << 24) | (ptr
[2] << 16) | (ptr
[3] << 8) | ptr
[4];
348 //printf ("DECODE: %d.\n", len);
353 * mono_aot_get_offset:
355 * Decode an offset table emitted by emit_offset_table (), returning the INDEXth
359 mono_aot_get_offset (guint32
*table
, int index
)
361 int i
, group
, ngroups
, index_entry_size
;
362 int start_offset
, offset
, group_size
;
363 guint8
*data_start
, *p
;
364 guint32
*index32
= NULL
;
365 guint16
*index16
= NULL
;
367 /* noffsets = table [0]; */
368 group_size
= table
[1];
370 index_entry_size
= table
[3];
371 group
= index
/ group_size
;
373 if (index_entry_size
== 2) {
374 index16
= (guint16
*)&table
[4];
375 data_start
= (guint8
*)&index16
[ngroups
];
376 p
= data_start
+ index16
[group
];
378 index32
= (guint32
*)&table
[4];
379 data_start
= (guint8
*)&index32
[ngroups
];
380 p
= data_start
+ index32
[group
];
383 /* offset will contain the value of offsets [group * group_size] */
384 offset
= start_offset
= decode_value (p
, &p
);
385 for (i
= group
* group_size
+ 1; i
<= index
; ++i
) {
386 offset
+= decode_value (p
, &p
);
389 //printf ("Offset lookup: %d -> %d, start=%d, p=%d\n", index, offset, start_offset, table [3 + group]);
395 decode_resolve_method_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
398 decode_klass_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
401 decode_type (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
);
403 static MonoGenericInst
*
404 decode_generic_inst (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
407 MonoType
**type_argv
;
408 MonoGenericInst
*inst
;
412 type_argc
= decode_value (p
, &p
);
413 type_argv
= g_new0 (MonoType
*, type_argc
);
415 for (i
= 0; i
< type_argc
; ++i
) {
416 MonoClass
*pclass
= decode_klass_ref (module
, p
, &p
, error
);
421 type_argv
[i
] = m_class_get_byval_arg (pclass
);
424 inst
= mono_metadata_get_generic_inst (type_argc
, type_argv
);
433 decode_generic_context (MonoAotModule
*module
, MonoGenericContext
*ctx
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
441 argc
= decode_value (p
, &p
);
444 ctx
->class_inst
= decode_generic_inst (module
, p
, &p
, error
);
445 if (!ctx
->class_inst
)
449 argc
= decode_value (p
, &p
);
452 ctx
->method_inst
= decode_generic_inst (module
, p
, &p
, error
);
453 if (!ctx
->method_inst
)
462 decode_klass_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
465 MonoClass
*klass
= NULL
, *eklass
;
466 guint32 token
, rank
, idx
;
471 reftype
= decode_value (p
, &p
);
474 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Decoding a null class ref");
479 case MONO_AOT_TYPEREF_TYPEDEF_INDEX
:
480 idx
= decode_value (p
, &p
);
481 image
= load_image (module
, 0, error
);
484 klass
= mono_class_get_checked (image
, MONO_TOKEN_TYPE_DEF
+ idx
, error
);
486 case MONO_AOT_TYPEREF_TYPEDEF_INDEX_IMAGE
:
487 idx
= decode_value (p
, &p
);
488 image
= load_image (module
, decode_value (p
, &p
), error
);
491 klass
= mono_class_get_checked (image
, MONO_TOKEN_TYPE_DEF
+ idx
, error
);
493 case MONO_AOT_TYPEREF_TYPESPEC_TOKEN
:
494 token
= decode_value (p
, &p
);
495 image
= module
->assembly
->image
;
497 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "No image associated with the aot module");
500 klass
= mono_class_get_checked (image
, token
, error
);
502 case MONO_AOT_TYPEREF_GINST
: {
504 MonoGenericContext ctx
;
507 gclass
= decode_klass_ref (module
, p
, &p
, error
);
510 g_assert (mono_class_is_gtd (gclass
));
512 memset (&ctx
, 0, sizeof (ctx
));
513 ctx
.class_inst
= decode_generic_inst (module
, p
, &p
, error
);
516 type
= mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass
), &ctx
, error
);
519 klass
= mono_class_from_mono_type (type
);
520 mono_metadata_free_type (type
);
523 case MONO_AOT_TYPEREF_VAR
: {
525 MonoGenericContainer
*container
= NULL
;
526 gboolean has_constraint
= decode_value (p
, &p
);
528 if (has_constraint
) {
529 MonoClass
*par_klass
;
530 MonoType
*gshared_constraint
;
532 gshared_constraint
= decode_type (module
, p
, &p
, error
);
533 if (!gshared_constraint
)
536 par_klass
= decode_klass_ref (module
, p
, &p
, error
);
540 t
= mini_get_shared_gparam (m_class_get_byval_arg (par_klass
), gshared_constraint
);
541 mono_metadata_free_type (gshared_constraint
);
542 klass
= mono_class_from_mono_type (t
);
544 int type
= decode_value (p
, &p
);
545 int num
= decode_value (p
, &p
);
546 gboolean is_not_anonymous
= decode_value (p
, &p
);
548 if (is_not_anonymous
) {
549 gboolean is_method
= decode_value (p
, &p
);
552 MonoMethod
*method_def
;
553 g_assert (type
== MONO_TYPE_MVAR
);
554 method_def
= decode_resolve_method_ref (module
, p
, &p
, error
);
558 container
= mono_method_get_generic_container (method_def
);
560 MonoClass
*class_def
;
561 g_assert (type
== MONO_TYPE_VAR
);
562 class_def
= decode_klass_ref (module
, p
, &p
, error
);
566 container
= mono_class_try_get_generic_container (class_def
); //FIXME is this a case for a try_get?
569 // We didn't decode is_method, so we have to infer it from type enum.
570 container
= mono_get_anonymous_container_for_image (module
->assembly
->image
, type
== MONO_TYPE_MVAR
);
573 t
= g_new0 (MonoType
, 1);
574 t
->type
= (MonoTypeEnum
)type
;
575 if (is_not_anonymous
) {
576 t
->data
.generic_param
= mono_generic_container_get_param (container
, num
);
579 MonoGenericParam
*par
= mono_metadata_create_anon_gparam (module
->assembly
->image
, num
, type
== MONO_TYPE_MVAR
);
580 t
->data
.generic_param
= par
;
581 // FIXME: maybe do this for all anon gparams?
582 ((MonoGenericParamFull
*)par
)->info
.name
= mono_make_generic_name_string (module
->assembly
->image
, num
);
584 // FIXME: Maybe use types directly to avoid
585 // the overhead of creating MonoClass-es
586 klass
= mono_class_from_mono_type (t
);
592 case MONO_AOT_TYPEREF_ARRAY
:
594 rank
= decode_value (p
, &p
);
595 eklass
= decode_klass_ref (module
, p
, &p
, error
);
598 klass
= mono_class_create_array (eklass
, rank
);
600 case MONO_AOT_TYPEREF_PTR
: {
603 t
= decode_type (module
, p
, &p
, error
);
606 klass
= mono_class_from_mono_type (t
);
610 case MONO_AOT_TYPEREF_BLOB_INDEX
: {
611 guint32 offset
= decode_value (p
, &p
);
614 p2
= module
->blob
+ offset
;
615 klass
= decode_klass_ref (module
, p2
, &p2
, error
);
619 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid klass reftype %d", reftype
);
622 //printf ("BLA: %s\n", mono_type_full_name (m_class_get_byval_arg (klass)));
627 static MonoClassField
*
628 decode_field_info (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
)
631 MonoClass
*klass
= decode_klass_ref (module
, buf
, &buf
, error
);
636 mono_error_cleanup (error
); /* FIXME don't swallow the error */
640 token
= MONO_TOKEN_FIELD_DEF
+ decode_value (p
, &p
);
644 return mono_class_get_field (klass
, token
);
648 * Parse a MonoType encoded by encode_type () in aot-compiler.c. Return malloc-ed
652 decode_type (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
657 // In encode_type, we have g_assert (!t->has_mods);
658 // This is the only reason we can do sizeof (MonoType)
659 t
= (MonoType
*) g_malloc0 (sizeof (MonoType
));
663 if (*p
== MONO_TYPE_PINNED
) {
666 } else if (*p
== MONO_TYPE_BYREF
) {
674 t
->type
= (MonoTypeEnum
)*p
;
679 case MONO_TYPE_BOOLEAN
:
693 case MONO_TYPE_STRING
:
694 case MONO_TYPE_OBJECT
:
695 case MONO_TYPE_TYPEDBYREF
:
697 case MONO_TYPE_VALUETYPE
:
698 case MONO_TYPE_CLASS
:
699 t
->data
.klass
= decode_klass_ref (module
, p
, &p
, error
);
703 case MONO_TYPE_SZARRAY
:
704 t
->data
.klass
= decode_klass_ref (module
, p
, &p
, error
);
710 t
->data
.type
= decode_type (module
, p
, &p
, error
);
714 case MONO_TYPE_GENERICINST
: {
716 MonoGenericContext ctx
;
720 gclass
= decode_klass_ref (module
, p
, &p
, error
);
723 g_assert (mono_class_is_gtd (gclass
));
725 memset (&ctx
, 0, sizeof (ctx
));
726 ctx
.class_inst
= decode_generic_inst (module
, p
, &p
, error
);
729 type
= mono_class_inflate_generic_type_checked (m_class_get_byval_arg (gclass
), &ctx
, error
);
732 klass
= mono_class_from_mono_type (type
);
733 t
->data
.generic_class
= mono_class_get_generic_class (klass
);
736 case MONO_TYPE_ARRAY
: {
737 MonoArrayType
*array
;
740 // FIXME: memory management
741 array
= g_new0 (MonoArrayType
, 1);
742 array
->eklass
= decode_klass_ref (module
, p
, &p
, error
);
745 array
->rank
= decode_value (p
, &p
);
746 array
->numsizes
= decode_value (p
, &p
);
749 array
->sizes
= (int *)g_malloc0 (sizeof (int) * array
->numsizes
);
750 for (i
= 0; i
< array
->numsizes
; ++i
)
751 array
->sizes
[i
] = decode_value (p
, &p
);
753 array
->numlobounds
= decode_value (p
, &p
);
754 if (array
->numlobounds
)
755 array
->lobounds
= (int *)g_malloc0 (sizeof (int) * array
->numlobounds
);
756 for (i
= 0; i
< array
->numlobounds
; ++i
)
757 array
->lobounds
[i
] = decode_value (p
, &p
);
758 t
->data
.array
= array
;
762 case MONO_TYPE_MVAR
: {
763 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
766 t
->data
.generic_param
= m_class_get_byval_arg (klass
)->data
.generic_param
;
770 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid encoded type %d", t
->type
);
782 // FIXME: Error handling, memory management
784 static MonoMethodSignature
*
785 decode_signature_with_target (MonoAotModule
*module
, MonoMethodSignature
*target
, guint8
*buf
, guint8
**endbuf
)
788 MonoMethodSignature
*sig
;
790 int i
, gen_param_count
= 0, param_count
, call_conv
;
792 gboolean hasthis
, explicit_this
, has_gen_params
;
796 has_gen_params
= (flags
& 0x10) != 0;
797 hasthis
= (flags
& 0x20) != 0;
798 explicit_this
= (flags
& 0x40) != 0;
799 call_conv
= flags
& 0x0F;
802 gen_param_count
= decode_value (p
, &p
);
803 param_count
= decode_value (p
, &p
);
804 if (target
&& param_count
!= target
->param_count
)
806 sig
= (MonoMethodSignature
*)g_malloc0 (MONO_SIZEOF_METHOD_SIGNATURE
+ param_count
* sizeof (MonoType
*));
807 sig
->param_count
= param_count
;
808 sig
->sentinelpos
= -1;
809 sig
->hasthis
= hasthis
;
810 sig
->explicit_this
= explicit_this
;
811 sig
->call_convention
= call_conv
;
812 sig
->generic_param_count
= gen_param_count
;
813 sig
->ret
= decode_type (module
, p
, &p
, error
);
816 for (i
= 0; i
< param_count
; ++i
) {
817 if (*p
== MONO_TYPE_SENTINEL
) {
818 g_assert (sig
->call_convention
== MONO_CALL_VARARG
);
819 sig
->sentinelpos
= i
;
822 sig
->params
[i
] = decode_type (module
, p
, &p
, error
);
823 if (!sig
->params
[i
])
827 if (sig
->call_convention
== MONO_CALL_VARARG
&& sig
->sentinelpos
== -1)
828 sig
->sentinelpos
= sig
->param_count
;
834 mono_error_cleanup (error
); /* FIXME don't swallow the error */
839 static MonoMethodSignature
*
840 decode_signature (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
)
842 return decode_signature_with_target (module
, NULL
, buf
, endbuf
);
846 sig_matches_target (MonoAotModule
*module
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
)
848 MonoMethodSignature
*sig
;
852 sig
= decode_signature_with_target (module
, mono_method_signature (target
), p
, &p
);
853 res
= sig
&& mono_metadata_signature_equal (mono_method_signature (target
), sig
);
859 /* Stores information returned by decode_method_ref () */
864 gboolean no_aot_trampoline
;
868 * decode_method_ref_with_target:
870 * Decode a method reference, storing the image/token into a MethodRef structure.
871 * This avoids loading metadata for the method if the caller does not need it. If the method has
872 * no token, then it is loaded from metadata and ref->method is set to the method instance.
873 * If TARGET is non-NULL, abort decoding if it can be determined that the decoded method
874 * couldn't resolve to TARGET, and return FALSE.
875 * There are some kinds of method references which only support a non-null TARGET.
876 * This means that its not possible to decode this into a method, only to check
877 * that the method reference matches a given method. This is normally not a problem
878 * as these wrappers only occur in the extra_methods table, where we already have
879 * a method we want to lookup.
881 * If there was a decoding error, we return FALSE and set @error
884 decode_method_ref_with_target (MonoAotModule
*module
, MethodRef
*ref
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
886 guint32 image_index
, value
;
887 MonoImage
*image
= NULL
;
890 memset (ref
, 0, sizeof (MethodRef
));
893 value
= decode_value (p
, &p
);
894 image_index
= value
>> 24;
896 if (image_index
== MONO_AOT_METHODREF_NO_AOT_TRAMPOLINE
) {
897 ref
->no_aot_trampoline
= TRUE
;
898 value
= decode_value (p
, &p
);
899 image_index
= value
>> 24;
902 if (image_index
< MONO_AOT_METHODREF_MIN
|| image_index
== MONO_AOT_METHODREF_METHODSPEC
|| image_index
== MONO_AOT_METHODREF_GINST
) {
903 if (target
&& target
->wrapper_type
) {
908 if (image_index
== MONO_AOT_METHODREF_WRAPPER
) {
910 guint32 wrapper_type
;
912 wrapper_type
= decode_value (p
, &p
);
914 if (target
&& target
->wrapper_type
!= wrapper_type
)
918 image
= mono_defaults
.corlib
;
920 switch (wrapper_type
) {
921 #ifndef DISABLE_REMOTING
922 case MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK
: {
923 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
926 mono_class_init (m
->klass
);
930 ref
->method
= mono_marshal_get_remoting_invoke_with_check (m
, error
);
931 return_val_if_nok (error
, FALSE
);
935 case MONO_WRAPPER_PROXY_ISINST
: {
936 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
939 ref
->method
= mono_marshal_get_proxy_cancast (klass
);
942 case MONO_WRAPPER_LDFLD
:
943 case MONO_WRAPPER_LDFLDA
:
944 case MONO_WRAPPER_STFLD
: {
945 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
948 MonoType
*type
= m_class_get_byval_arg (klass
);
949 if (wrapper_type
== MONO_WRAPPER_LDFLD
)
950 ref
->method
= mono_marshal_get_ldfld_wrapper (type
);
951 else if (wrapper_type
== MONO_WRAPPER_LDFLDA
)
952 ref
->method
= mono_marshal_get_ldflda_wrapper (type
);
953 else if (wrapper_type
== MONO_WRAPPER_STFLD
)
954 ref
->method
= mono_marshal_get_stfld_wrapper (type
);
956 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Unknown AOT wrapper type %d", wrapper_type
);
962 case MONO_WRAPPER_ALLOC
: {
963 int atype
= decode_value (p
, &p
);
964 ManagedAllocatorVariant variant
=
965 mono_profiler_allocations_enabled () ?
966 MANAGED_ALLOCATOR_PROFILER
: MANAGED_ALLOCATOR_REGULAR
;
968 ref
->method
= mono_gc_get_managed_allocator_by_type (atype
, variant
);
969 /* Try to fallback to the slow path version */
971 ref
->method
= mono_gc_get_managed_allocator_by_type (atype
, MANAGED_ALLOCATOR_SLOW_PATH
);
973 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");
978 case MONO_WRAPPER_WRITE_BARRIER
: {
979 ref
->method
= mono_gc_get_write_barrier ();
982 case MONO_WRAPPER_STELEMREF
: {
983 int subtype
= decode_value (p
, &p
);
985 if (subtype
== WRAPPER_SUBTYPE_NONE
) {
986 ref
->method
= mono_marshal_get_stelemref ();
987 } else if (subtype
== WRAPPER_SUBTYPE_VIRTUAL_STELEMREF
) {
990 kind
= decode_value (p
, &p
);
992 /* Can't decode this */
995 if (target
->wrapper_type
== MONO_WRAPPER_STELEMREF
) {
996 info
= mono_marshal_get_wrapper_info (target
);
999 if (info
->subtype
== subtype
&& info
->d
.virtual_stelemref
.kind
== kind
)
1000 ref
->method
= target
;
1007 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid STELEMREF subtype %d", subtype
);
1012 case MONO_WRAPPER_SYNCHRONIZED
: {
1013 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1016 ref
->method
= mono_marshal_get_synchronized_wrapper (m
);
1019 case MONO_WRAPPER_UNKNOWN
: {
1020 int subtype
= decode_value (p
, &p
);
1022 if (subtype
== WRAPPER_SUBTYPE_PTR_TO_STRUCTURE
|| subtype
== WRAPPER_SUBTYPE_STRUCTURE_TO_PTR
) {
1023 MonoClass
*klass
= decode_klass_ref (module
, p
, &p
, error
);
1029 if (klass
!= target
->klass
)
1032 if (subtype
== WRAPPER_SUBTYPE_PTR_TO_STRUCTURE
) {
1033 if (strcmp (target
->name
, "PtrToStructure"))
1035 ref
->method
= mono_marshal_get_ptr_to_struct (klass
);
1037 if (strcmp (target
->name
, "StructureToPtr"))
1039 ref
->method
= mono_marshal_get_struct_to_ptr (klass
);
1041 } else if (subtype
== WRAPPER_SUBTYPE_SYNCHRONIZED_INNER
) {
1042 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1045 ref
->method
= mono_marshal_get_synchronized_inner_wrapper (m
);
1046 } else if (subtype
== WRAPPER_SUBTYPE_ARRAY_ACCESSOR
) {
1047 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1050 ref
->method
= mono_marshal_get_array_accessor_wrapper (m
);
1051 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_IN
) {
1052 ref
->method
= mono_marshal_get_gsharedvt_in_wrapper ();
1053 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_OUT
) {
1054 ref
->method
= mono_marshal_get_gsharedvt_out_wrapper ();
1055 } else if (subtype
== WRAPPER_SUBTYPE_INTERP_IN
) {
1056 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1059 ref
->method
= mini_get_interp_in_wrapper (sig
);
1060 } else if (subtype
== WRAPPER_SUBTYPE_INTERP_LMF
) {
1061 ref
->method
= mini_get_interp_lmf_wrapper ();
1062 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_IN_SIG
) {
1063 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1066 ref
->method
= mini_get_gsharedvt_in_sig_wrapper (sig
);
1067 } else if (subtype
== WRAPPER_SUBTYPE_GSHAREDVT_OUT_SIG
) {
1068 MonoMethodSignature
*sig
= decode_signature (module
, p
, &p
);
1071 ref
->method
= mini_get_gsharedvt_out_sig_wrapper (sig
);
1073 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid UNKNOWN wrapper subtype %d", subtype
);
1078 case MONO_WRAPPER_MANAGED_TO_MANAGED
: {
1079 int subtype
= decode_value (p
, &p
);
1081 if (subtype
== WRAPPER_SUBTYPE_ELEMENT_ADDR
) {
1082 int rank
= decode_value (p
, &p
);
1083 int elem_size
= decode_value (p
, &p
);
1085 ref
->method
= mono_marshal_get_array_address (rank
, elem_size
);
1086 } else if (subtype
== WRAPPER_SUBTYPE_STRING_CTOR
) {
1089 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1095 g_assert (target
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_MANAGED
);
1097 info
= mono_marshal_get_wrapper_info (target
);
1098 if (info
&& info
->subtype
== subtype
&& info
->d
.string_ctor
.method
== m
)
1099 ref
->method
= target
;
1105 case MONO_WRAPPER_MANAGED_TO_NATIVE
: {
1107 int subtype
= decode_value (p
, &p
);
1110 if (subtype
== WRAPPER_SUBTYPE_ICALL_WRAPPER
) {
1115 if (strcmp (target
->name
, name
) != 0)
1117 ref
->method
= target
;
1119 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1123 /* This should only happen when looking for an extra method */
1126 if (mono_marshal_method_from_wrapper (target
) == m
)
1127 ref
->method
= target
;
1133 case MONO_WRAPPER_CASTCLASS
: {
1134 int subtype
= decode_value (p
, &p
);
1136 if (subtype
== WRAPPER_SUBTYPE_CASTCLASS_WITH_CACHE
)
1137 ref
->method
= mono_marshal_get_castclass_with_cache ();
1138 else if (subtype
== WRAPPER_SUBTYPE_ISINST_WITH_CACHE
)
1139 ref
->method
= mono_marshal_get_isinst_with_cache ();
1141 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid CASTCLASS wrapper subtype %d", subtype
);
1146 case MONO_WRAPPER_RUNTIME_INVOKE
: {
1147 int subtype
= decode_value (p
, &p
);
1152 if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_DYNAMIC
) {
1153 if (strcmp (target
->name
, "runtime_invoke_dynamic") != 0)
1155 ref
->method
= target
;
1156 } else if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_DIRECT
) {
1157 /* Direct wrapper */
1158 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1161 ref
->method
= mono_marshal_get_runtime_invoke (m
, FALSE
);
1162 } else if (subtype
== WRAPPER_SUBTYPE_RUNTIME_INVOKE_VIRTUAL
) {
1163 /* Virtual direct wrapper */
1164 MonoMethod
*m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1167 ref
->method
= mono_marshal_get_runtime_invoke (m
, TRUE
);
1169 MonoMethodSignature
*sig
;
1171 sig
= decode_signature_with_target (module
, NULL
, p
, &p
);
1172 info
= mono_marshal_get_wrapper_info (target
);
1175 if (info
->subtype
!= subtype
)
1177 g_assert (info
->d
.runtime_invoke
.sig
);
1178 if (mono_metadata_signature_equal (sig
, info
->d
.runtime_invoke
.sig
))
1179 ref
->method
= target
;
1185 case MONO_WRAPPER_DELEGATE_INVOKE
:
1186 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE
:
1187 case MONO_WRAPPER_DELEGATE_END_INVOKE
: {
1188 gboolean is_inflated
= decode_value (p
, &p
);
1189 WrapperSubtype subtype
;
1193 MonoMethod
*invoke
, *wrapper
;
1195 klass
= decode_klass_ref (module
, p
, &p
, error
);
1199 switch (wrapper_type
) {
1200 case MONO_WRAPPER_DELEGATE_INVOKE
:
1201 invoke
= mono_get_delegate_invoke (klass
);
1202 wrapper
= mono_marshal_get_delegate_invoke (invoke
, NULL
);
1204 case MONO_WRAPPER_DELEGATE_BEGIN_INVOKE
:
1205 invoke
= mono_get_delegate_begin_invoke (klass
);
1206 wrapper
= mono_marshal_get_delegate_begin_invoke (invoke
);
1208 case MONO_WRAPPER_DELEGATE_END_INVOKE
:
1209 invoke
= mono_get_delegate_end_invoke (klass
);
1210 wrapper
= mono_marshal_get_delegate_end_invoke (invoke
);
1213 g_assert_not_reached ();
1218 * Due to the way mini_get_shared_method_full () works, we could end up with
1219 * multiple copies of the same wrapper.
1221 if (wrapper
->klass
!= target
->klass
)
1223 ref
->method
= target
;
1225 ref
->method
= wrapper
;
1229 * These wrappers are associated with a signature, not with a method.
1230 * Since we can't decode them into methods, they need a target method.
1235 if (wrapper_type
== MONO_WRAPPER_DELEGATE_INVOKE
) {
1236 subtype
= (WrapperSubtype
)decode_value (p
, &p
);
1237 info
= mono_marshal_get_wrapper_info (target
);
1239 if (info
->subtype
!= subtype
)
1242 if (subtype
!= WRAPPER_SUBTYPE_NONE
)
1246 if (sig_matches_target (module
, target
, p
, &p
))
1247 ref
->method
= target
;
1253 case MONO_WRAPPER_NATIVE_TO_MANAGED
: {
1257 m
= decode_resolve_method_ref (module
, p
, &p
, error
);
1260 klass
= decode_klass_ref (module
, p
, &p
, error
);
1263 ref
->method
= mono_marshal_get_managed_wrapper (m
, klass
, 0, error
);
1264 if (!mono_error_ok (error
))
1269 g_assert_not_reached ();
1271 } else if (image_index
== MONO_AOT_METHODREF_METHODSPEC
) {
1272 image_index
= decode_value (p
, &p
);
1273 ref
->token
= decode_value (p
, &p
);
1275 image
= load_image (module
, image_index
, error
);
1278 } else if (image_index
== MONO_AOT_METHODREF_GINST
) {
1280 MonoGenericContext ctx
;
1283 * These methods do not have a token which resolves them, so we
1284 * resolve them immediately.
1286 klass
= decode_klass_ref (module
, p
, &p
, error
);
1290 if (target
&& target
->klass
!= klass
)
1293 image_index
= decode_value (p
, &p
);
1294 ref
->token
= decode_value (p
, &p
);
1296 image
= load_image (module
, image_index
, error
);
1300 ref
->method
= mono_get_method_checked (image
, ref
->token
, NULL
, NULL
, error
);
1305 memset (&ctx
, 0, sizeof (ctx
));
1307 if (FALSE
&& mono_class_is_ginst (klass
)) {
1308 ctx
.class_inst
= mono_class_get_generic_class (klass
)->context
.class_inst
;
1309 ctx
.method_inst
= NULL
;
1311 ref
->method
= mono_class_inflate_generic_method_full_checked (ref
->method
, klass
, &ctx
, error
);
1316 memset (&ctx
, 0, sizeof (ctx
));
1318 if (!decode_generic_context (module
, &ctx
, p
, &p
, error
))
1321 ref
->method
= mono_class_inflate_generic_method_full_checked (ref
->method
, klass
, &ctx
, error
);
1325 } else if (image_index
== MONO_AOT_METHODREF_ARRAY
) {
1329 klass
= decode_klass_ref (module
, p
, &p
, error
);
1332 method_type
= decode_value (p
, &p
);
1333 switch (method_type
) {
1335 ref
->method
= mono_class_get_method_from_name (klass
, ".ctor", m_class_get_rank (klass
));
1338 ref
->method
= mono_class_get_method_from_name (klass
, ".ctor", m_class_get_rank (klass
) * 2);
1341 ref
->method
= mono_class_get_method_from_name (klass
, "Get", -1);
1344 ref
->method
= mono_class_get_method_from_name (klass
, "Address", -1);
1347 ref
->method
= mono_class_get_method_from_name (klass
, "Set", -1);
1350 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "Invalid METHODREF_ARRAY method type %d", method_type
);
1354 if (image_index
== MONO_AOT_METHODREF_LARGE_IMAGE_INDEX
) {
1355 image_index
= decode_value (p
, &p
);
1356 value
= decode_value (p
, &p
);
1359 ref
->token
= MONO_TOKEN_METHOD_DEF
| (value
& 0xffffff);
1361 image
= load_image (module
, image_index
, error
);
1374 decode_method_ref (MonoAotModule
*module
, MethodRef
*ref
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1376 return decode_method_ref_with_target (module
, ref
, NULL
, buf
, endbuf
, error
);
1380 * decode_resolve_method_ref_with_target:
1382 * Similar to decode_method_ref, but resolve and return the method itself.
1385 decode_resolve_method_ref_with_target (MonoAotModule
*module
, MonoMethod
*target
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1391 if (!decode_method_ref_with_target (module
, &ref
, target
, buf
, endbuf
, error
))
1396 mono_error_set_bad_image_by_name (error
, module
->aot_name
, "No image found for methodref with target");
1399 return mono_get_method_checked (ref
.image
, ref
.token
, NULL
, NULL
, error
);
1403 decode_resolve_method_ref (MonoAotModule
*module
, guint8
*buf
, guint8
**endbuf
, MonoError
*error
)
1405 return decode_resolve_method_ref_with_target (module
, NULL
, buf
, endbuf
, error
);
1408 #ifdef ENABLE_AOT_CACHE
1414 * - Add options for controlling the cache size
1415 * - Handle full cache by deleting old assemblies lru style
1416 * - Maybe add a threshold after an assembly is AOT compiled
1417 * - Add options for enabling this for specific main assemblies
1420 /* The cache directory */
1421 static char *cache_dir
;
1423 /* The number of assemblies AOTed in this run */
1424 static int cache_count
;
1426 /* Whenever to AOT in-process */
1427 static gboolean in_process
;
1430 collect_assemblies (gpointer data
, gpointer user_data
)
1432 MonoAssembly
*ass
= data
;
1433 GSList
**l
= user_data
;
1435 *l
= g_slist_prepend (*l
, ass
);
1438 #define SHA1_DIGEST_LENGTH 20
1441 * get_aot_config_hash:
1443 * Return a hash for all the version information an AOT module depends on.
1445 static G_GNUC_UNUSED
char*
1446 get_aot_config_hash (MonoAssembly
*assembly
)
1449 GSList
*l
, *assembly_list
= NULL
;
1452 guint8 digest
[SHA1_DIGEST_LENGTH
];
1455 build_info
= mono_get_runtime_build_info ();
1457 s
= g_string_new (build_info
);
1459 mono_assembly_foreach (collect_assemblies
, &assembly_list
);
1462 * The assembly list includes the current assembly as well, no need
1465 for (l
= assembly_list
; l
; l
= l
->next
) {
1466 MonoAssembly
*ass
= l
->data
;
1468 g_string_append (s
, "_");
1469 g_string_append (s
, ass
->aname
.name
);
1470 g_string_append (s
, "_");
1471 g_string_append (s
, ass
->image
->guid
);
1474 for (i
= 0; i
< s
->len
; ++i
) {
1475 if (!isalnum (s
->str
[i
]) && s
->str
[i
] != '-')
1479 mono_sha1_get_digest ((guint8
*)s
->str
, s
->len
, digest
);
1481 digest_str
= g_malloc0 ((SHA1_DIGEST_LENGTH
* 2) + 1);
1482 for (i
= 0; i
< SHA1_DIGEST_LENGTH
; ++i
)
1483 sprintf (digest_str
+ (i
* 2), "%02x", digest
[i
]);
1485 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: file dependencies: %s, hash %s", s
->str
, digest_str
);
1487 g_string_free (s
, TRUE
);
1493 aot_cache_init (void)
1497 enable_aot_cache
= TRUE
;
1502 * aot_cache_load_module:
1504 * Load the AOT image corresponding to ASSEMBLY from the aot cache, AOTing it if neccessary.
1507 aot_cache_load_module (MonoAssembly
*assembly
, char **aot_name
)
1509 MonoAotCacheConfig
*config
;
1511 char *fname
, *tmp2
, *aot_options
, *failure_fname
;
1523 if (image_is_dynamic (assembly
->image
))
1526 /* Check in the list of assemblies enabled for aot caching */
1527 config
= mono_get_aot_cache_config ();
1531 MonoDomain
*domain
= mono_domain_get ();
1532 MonoAssembly
*entry_assembly
= domain
->entry_assembly
;
1534 // FIXME: This cannot be used for mscorlib during startup, since entry_assembly is not set yet
1535 for (l
= config
->apps
; l
; l
= l
->next
) {
1538 if ((entry_assembly
&& !strcmp (entry_assembly
->aname
.name
, n
)) || (!entry_assembly
&& !strcmp (assembly
->aname
.name
, n
)))
1546 for (l
= config
->assemblies
; l
; l
= l
->next
) {
1549 if (!strcmp (assembly
->aname
.name
, n
))
1559 home
= g_get_home_dir ();
1562 cache_dir
= g_strdup_printf ("%s/Library/Caches/mono/aot-cache", home
);
1563 if (!g_file_test (cache_dir
, G_FILE_TEST_EXISTS
|G_FILE_TEST_IS_DIR
))
1564 g_mkdir_with_parents (cache_dir
, 0777);
1568 * The same assembly can be used in multiple configurations, i.e. multiple
1569 * versions of the runtime, with multiple versions of dependent assemblies etc.
1570 * To handle this, we compute a version string containing all this information, hash it,
1571 * and use the hash as a filename suffix.
1573 hash
= get_aot_config_hash (assembly
);
1575 tmp2
= g_strdup_printf ("%s-%s%s", assembly
->image
->assembly_name
, hash
, MONO_SOLIB_EXT
);
1576 fname
= g_build_filename (cache_dir
, tmp2
, NULL
);
1580 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: loading from cache: '%s'.", fname
);
1581 module
= mono_dl_open (fname
, MONO_DL_LAZY
, NULL
);
1584 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: found in cache: '%s'.", fname
);
1588 if (!strcmp (assembly
->aname
.name
, "mscorlib") && !mscorlib_aot_loaded
)
1590 * Can't AOT this during startup, so we AOT it when called later from
1591 * mono_aot_get_method ().
1595 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: not found.");
1597 /* Only AOT one assembly per run to avoid slowing down execution too much */
1598 if (cache_count
> 0)
1602 /* Check for previous failure */
1603 failure_fname
= g_strdup_printf ("%s.failure", fname
);
1604 failure_file
= fopen (failure_fname
, "r");
1606 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: assembly '%s' previously failed to compile '%s' ('%s')... ", assembly
->image
->name
, fname
, failure_fname
);
1607 g_free (failure_fname
);
1610 g_free (failure_fname
);
1611 fclose (failure_file
);
1614 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compiling assembly '%s', logfile: '%s.log'... ", assembly
->image
->name
, fname
);
1617 * We need to invoke the AOT compiler here. There are multiple approaches:
1618 * - spawn a new runtime process. This can be hard when running with mkbundle, and
1619 * its hard to make the new process load the same set of assemblies.
1620 * - doing it in-process. This exposes the current process to bugs/leaks/side effects of
1622 * - fork a new process and do the work there.
1625 aot_options
= g_strdup_printf ("outfile=%s,internal-logfile=%s.log%s%s", fname
, fname
, config
->aot_options
? "," : "", config
->aot_options
? config
->aot_options
: "");
1626 /* Maybe due this in another thread ? */
1627 res
= mono_compile_assembly (assembly
, mono_parse_default_optimizations (NULL
), aot_options
, NULL
);
1629 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compilation failed.");
1630 failure_fname
= g_strdup_printf ("%s.failure", fname
);
1631 failure_file
= fopen (failure_fname
, "a+");
1632 fclose (failure_file
);
1633 g_free (failure_fname
);
1635 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: compilation succeeded.");
1639 * - Avoid waiting for the aot process to finish ?
1640 * (less overhead, but multiple processes could aot the same assembly at the same time)
1649 logfile_name
= g_strdup_printf ("%s/aot.log", cache_dir
);
1650 logfile
= fopen (logfile_name
, "a+");
1651 g_free (logfile_name
);
1653 dup2 (fileno (logfile
), 1);
1654 dup2 (fileno (logfile
), 2);
1656 aot_options
= g_strdup_printf ("outfile=%s", fname
);
1657 res
= mono_compile_assembly (assembly
, mono_parse_default_optimizations (NULL
), aot_options
, NULL
);
1665 waitpid (pid
, &exit_status
, 0);
1666 if (!WIFEXITED (exit_status
) && (WEXITSTATUS (exit_status
) == 0))
1667 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: failed.");
1669 mono_trace (G_LOG_LEVEL_MESSAGE
, MONO_TRACE_AOT
, "AOT: succeeded.");
1673 module
= mono_dl_open (fname
, MONO_DL_LAZY
, NULL
);
1681 aot_cache_init (void)
1686 aot_cache_load_module (MonoAssembly
*assembly
, char **aot_name
)
1694 find_symbol (MonoDl
*module
, gpointer
*globals
, const char *name
, gpointer
*value
)
1698 guint16
*table
, *entry
;
1701 char *symbol
= (char*)name
;
1704 symbol
= g_strdup_printf ("_%s", name
);
1707 /* The first entry points to the hash */
1708 table
= (guint16
*)globals
[0];
1711 table_size
= table
[0];
1714 hash
= mono_metadata_str_hash (symbol
) % table_size
;
1716 entry
= &table
[hash
* 2];
1718 /* Search the hash for the index into the globals table */
1720 while (entry
[0] != 0) {
1721 guint32 index
= entry
[0] - 1;
1722 guint32 next
= entry
[1];
1724 //printf ("X: %s %s\n", (char*)globals [index * 2], name);
1726 if (!strcmp (globals
[index
* 2], symbol
)) {
1727 global_index
= index
;
1732 entry
= &table
[next
* 2];
1738 if (global_index
!= -1)
1739 *value
= globals
[global_index
* 2 + 1];
1746 char *err
= mono_dl_symbol (module
, name
, value
);
1754 find_amodule_symbol (MonoAotModule
*amodule
, const char *name
, gpointer
*value
)
1756 g_assert (!(amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
));
1758 find_symbol (amodule
->sofile
, amodule
->globals
, name
, value
);
1762 mono_install_load_aot_data_hook (MonoLoadAotDataFunc load_func
, MonoFreeAotDataFunc free_func
, gpointer user_data
)
1764 aot_data_load_func
= load_func
;
1765 aot_data_free_func
= free_func
;
1766 aot_data_func_user_data
= user_data
;
1769 /* Load the separate aot data file for ASSEMBLY */
1771 open_aot_data (MonoAssembly
*assembly
, MonoAotFileInfo
*info
, void **ret_handle
)
1777 if (aot_data_load_func
) {
1778 data
= aot_data_load_func (assembly
, info
->datafile_size
, aot_data_func_user_data
, ret_handle
);
1784 * Use <assembly name>.aotdata as the default implementation if no callback is given
1786 filename
= g_strdup_printf ("%s.aotdata", assembly
->image
->name
);
1787 map
= mono_file_map_open (filename
);
1789 data
= mono_file_map (info
->datafile_size
, MONO_MMAP_READ
, mono_file_map_fd (map
), 0, ret_handle
);
1796 check_usable (MonoAssembly
*assembly
, MonoAotFileInfo
*info
, guint8
*blob
, char **out_msg
)
1800 gboolean usable
= TRUE
;
1801 gboolean full_aot
, safepoints
;
1802 guint32 excluded_cpu_optimizations
;
1804 if (strcmp (assembly
->image
->guid
, info
->assembly_guid
)) {
1805 msg
= g_strdup_printf ("doesn't match assembly");
1809 build_info
= mono_get_runtime_build_info ();
1810 if (strlen ((const char *)info
->runtime_version
) > 0 && strcmp (info
->runtime_version
, build_info
)) {
1811 msg
= g_strdup_printf ("compiled against runtime version '%s' while this runtime has version '%s'", info
->runtime_version
, build_info
);
1814 g_free (build_info
);
1816 full_aot
= info
->flags
& MONO_AOT_FILE_FLAG_FULL_AOT
;
1818 if (mono_aot_only
&& !full_aot
) {
1819 msg
= g_strdup_printf ("not compiled with --aot=full");
1822 if (!mono_aot_only
&& full_aot
) {
1823 msg
= g_strdup_printf ("compiled with --aot=full");
1826 if (mono_llvm_only
&& !(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
1827 msg
= g_strdup_printf ("not compiled with --aot=llvmonly");
1830 if (mono_use_llvm
&& !(info
->flags
& MONO_AOT_FILE_FLAG_WITH_LLVM
)) {
1831 /* Prefer LLVM JITted code when using --llvm */
1832 msg
= g_strdup_printf ("not compiled with --aot=llvm");
1835 if (mini_get_debug_options ()->mdb_optimizations
&& !(info
->flags
& MONO_AOT_FILE_FLAG_DEBUG
) && !full_aot
) {
1836 msg
= g_strdup_printf ("not compiled for debugging");
1840 mono_arch_cpu_optimizations (&excluded_cpu_optimizations
);
1841 if (info
->opts
& excluded_cpu_optimizations
) {
1842 msg
= g_strdup_printf ("compiled with unsupported CPU optimizations");
1846 if (!mono_aot_only
&& (info
->simd_opts
& ~mono_arch_cpu_enumerate_simd_versions ())) {
1847 msg
= g_strdup_printf ("compiled with unsupported SIMD extensions");
1851 if (info
->gc_name_index
!= -1) {
1852 char *gc_name
= (char*)&blob
[info
->gc_name_index
];
1853 const char *current_gc_name
= mono_gc_get_gc_name ();
1855 if (strcmp (current_gc_name
, gc_name
) != 0) {
1856 msg
= g_strdup_printf ("compiled against GC %s, while the current runtime uses GC %s.\n", gc_name
, current_gc_name
);
1861 safepoints
= info
->flags
& MONO_AOT_FILE_FLAG_SAFEPOINTS
;
1863 if (!safepoints
&& mono_threads_are_safepoints_enabled ()) {
1864 msg
= g_strdup_printf ("not compiled with safepoints");
1873 * TABLE should point to a table of call instructions. Return the address called by the INDEXth entry.
1876 get_call_table_entry (void *table
, int index
)
1878 #if defined(TARGET_ARM)
1883 ins_addr
= (guint32
*)table
+ index
;
1885 if ((ins
>> ARMCOND_SHIFT
) == ARMCOND_NV
) {
1887 offset
= (((int)(((ins
& 0xffffff) << 1) | ((ins
>> 24) & 0x1))) << 7) >> 7;
1888 return (char*)ins_addr
+ (offset
* 2) + 8 + 1;
1890 offset
= (((int)ins
& 0xffffff) << 8) >> 8;
1891 return (char*)ins_addr
+ (offset
* 4) + 8;
1893 #elif defined(TARGET_ARM64)
1894 return mono_arch_get_call_target ((guint8
*)table
+ (index
* 4) + 4);
1895 #elif defined(TARGET_X86) || defined(TARGET_AMD64)
1896 /* The callee expects an ip which points after the call */
1897 return mono_arch_get_call_target ((guint8
*)table
+ (index
* 5) + 5);
1899 g_assert_not_reached ();
1907 * Initialize the shared got entries for AMODULE.
1910 init_amodule_got (MonoAotModule
*amodule
)
1914 MonoJumpInfo
*patches
;
1915 guint32 got_offsets
[128];
1919 /* These can't be initialized in load_aot_module () */
1920 if (amodule
->shared_got
[0] || amodule
->got_initializing
)
1923 amodule
->got_initializing
= TRUE
;
1925 mp
= mono_mempool_new ();
1926 npatches
= amodule
->info
.nshared_got_entries
;
1927 for (i
= 0; i
< npatches
; ++i
)
1928 got_offsets
[i
] = i
;
1929 patches
= decode_patches (amodule
, mp
, npatches
, FALSE
, got_offsets
);
1931 for (i
= 0; i
< npatches
; ++i
) {
1934 if (ji
->type
== MONO_PATCH_INFO_GC_CARD_TABLE_ADDR
&& !mono_gc_is_moving ()) {
1935 amodule
->shared_got
[i
] = NULL
;
1936 } else if (ji
->type
== MONO_PATCH_INFO_GC_NURSERY_START
&& !mono_gc_is_moving ()) {
1937 amodule
->shared_got
[i
] = NULL
;
1938 } else if (ji
->type
== MONO_PATCH_INFO_GC_NURSERY_BITS
&& !mono_gc_is_moving ()) {
1939 amodule
->shared_got
[i
] = NULL
;
1940 } else if (ji
->type
== MONO_PATCH_INFO_IMAGE
) {
1941 amodule
->shared_got
[i
] = amodule
->assembly
->image
;
1942 } else if (ji
->type
== MONO_PATCH_INFO_MSCORLIB_GOT_ADDR
) {
1943 if (mono_defaults
.corlib
) {
1944 MonoAotModule
*mscorlib_amodule
= (MonoAotModule
*)mono_defaults
.corlib
->aot_module
;
1946 if (mscorlib_amodule
)
1947 amodule
->shared_got
[i
] = mscorlib_amodule
->got
;
1949 amodule
->shared_got
[i
] = amodule
->got
;
1951 } else if (ji
->type
== MONO_PATCH_INFO_AOT_MODULE
) {
1952 amodule
->shared_got
[i
] = amodule
;
1954 amodule
->shared_got
[i
] = mono_resolve_patch_target (NULL
, mono_get_root_domain (), NULL
, ji
, FALSE
, error
);
1955 mono_error_assert_ok (error
);
1960 for (i
= 0; i
< npatches
; ++i
)
1961 amodule
->got
[i
] = amodule
->shared_got
[i
];
1963 if (amodule
->llvm_got
) {
1964 for (i
= 0; i
< npatches
; ++i
)
1965 amodule
->llvm_got
[i
] = amodule
->shared_got
[i
];
1968 mono_mempool_destroy (mp
);
1972 load_aot_module (MonoAssembly
*assembly
, gpointer user_data
)
1974 char *aot_name
, *found_aot_name
;
1975 MonoAotModule
*amodule
;
1977 gboolean usable
= TRUE
;
1978 char *version_symbol
= NULL
;
1980 gpointer
*globals
= NULL
;
1981 MonoAotFileInfo
*info
= NULL
;
1983 gboolean do_load_image
= TRUE
;
1984 int align_double
, align_int64
;
1985 guint8
*aot_data
= NULL
;
1987 if (mono_compile_aot
)
1990 if (assembly
->image
->aot_module
)
1992 * Already loaded. This can happen because the assembly loading code might invoke
1993 * the assembly load hooks multiple times for the same assembly.
1997 if (image_is_dynamic (assembly
->image
) || mono_asmctx_get_kind (&assembly
->context
) == MONO_ASMCTX_REFONLY
|| mono_domain_get () != mono_get_root_domain ())
2002 if (container_assm_name
&& !container_amodule
) {
2003 char *local_ref
= container_assm_name
;
2004 container_assm_name
= NULL
;
2005 MonoImageOpenStatus status
= MONO_IMAGE_OK
;
2006 gchar
*dll
= g_strdup_printf ( "%s.dll", local_ref
);
2007 MonoAssembly
*assm
= mono_assembly_open_a_lot (dll
, &status
, MONO_ASMCTX_DEFAULT
);
2009 gchar
*exe
= g_strdup_printf ("%s.exe", local_ref
);
2010 assm
= mono_assembly_open_a_lot (exe
, &status
, MONO_ASMCTX_DEFAULT
);
2013 load_aot_module (assm
, NULL
);
2014 container_amodule
= assm
->image
->aot_module
;
2017 if (static_aot_modules
)
2018 info
= (MonoAotFileInfo
*)g_hash_table_lookup (static_aot_modules
, assembly
->aname
.name
);
2024 found_aot_name
= NULL
;
2027 /* Statically linked AOT module */
2028 aot_name
= g_strdup_printf ("%s", assembly
->aname
.name
);
2029 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "Found statically linked AOT module '%s'.", aot_name
);
2030 if (!(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
2031 globals
= (void **)info
->globals
;
2034 found_aot_name
= g_strdup (aot_name
);
2038 if (enable_aot_cache
)
2039 sofile
= aot_cache_load_module (assembly
, &aot_name
);
2041 aot_name
= g_strdup_printf ("%s%s", assembly
->image
->name
, MONO_SOLIB_EXT
);
2043 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2045 found_aot_name
= g_strdup (aot_name
);
2047 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2053 char *basename
= g_path_get_basename (assembly
->image
->name
);
2054 aot_name
= g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE
, basename
, MONO_SOLIB_EXT
);
2056 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2058 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2066 for (l
= mono_aot_paths
; l
; l
= l
->next
) {
2067 char *path
= l
->data
;
2069 char *basename
= g_path_get_basename (assembly
->image
->name
);
2070 aot_name
= g_strdup_printf ("%s/%s%s", path
, basename
, MONO_SOLIB_EXT
);
2071 sofile
= mono_dl_open (aot_name
, MONO_DL_LAZY
, &err
);
2073 found_aot_name
= g_strdup (aot_name
);
2075 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' not found: %s", aot_name
, err
);
2085 if (mono_aot_only
&& !mono_use_interpreter
&& assembly
->image
->tables
[MONO_TABLE_METHOD
].rows
) {
2086 aot_name
= g_strdup_printf ("%s%s", assembly
->image
->name
, MONO_SOLIB_EXT
);
2087 g_error ("Failed to load AOT module '%s' in aot-only mode.\n", aot_name
);
2095 find_symbol (sofile
, globals
, "mono_aot_version", (gpointer
*) &version_symbol
);
2096 find_symbol (sofile
, globals
, "mono_aot_file_info", (gpointer
*)&info
);
2099 // Copy aotid to MonoImage
2100 memcpy(&assembly
->image
->aotid
, info
->aotid
, 16);
2102 if (version_symbol
) {
2103 /* Old file format */
2104 version
= atoi (version_symbol
);
2107 version
= info
->version
;
2110 if (version
!= MONO_AOT_FILE_VERSION
) {
2111 msg
= g_strdup_printf ("wrong file format version (expected %d got %d)", MONO_AOT_FILE_VERSION
, version
);
2117 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2118 aot_data
= open_aot_data (assembly
, info
, &handle
);
2120 blob
= aot_data
+ info
->table_offsets
[MONO_AOT_TABLE_BLOB
];
2122 blob
= (guint8
*)info
->blob
;
2125 usable
= check_usable (assembly
, info
, blob
, &msg
);
2129 if (mono_aot_only
&& !mono_use_interpreter
) {
2130 g_error ("Failed to load AOT module '%s' while running in aot-only mode: %s.\n", found_aot_name
, msg
);
2132 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: module %s is unusable: %s.", found_aot_name
, msg
);
2135 g_free (found_aot_name
);
2137 mono_dl_close (sofile
);
2138 assembly
->image
->aot_module
= NULL
;
2143 align_double
= MONO_ABI_ALIGNOF (double);
2144 align_int64
= MONO_ABI_ALIGNOF (gint64
);
2145 g_assert (info
->double_align
== align_double
);
2146 g_assert (info
->long_align
== align_int64
);
2147 g_assert (info
->generic_tramp_num
== MONO_TRAMPOLINE_NUM
);
2149 amodule
= g_new0 (MonoAotModule
, 1);
2150 amodule
->aot_name
= found_aot_name
;
2151 amodule
->assembly
= assembly
;
2153 memcpy (&amodule
->info
, info
, sizeof (*info
));
2155 amodule
->got
= (void **)amodule
->info
.jit_got
;
2156 amodule
->llvm_got
= (void **)amodule
->info
.llvm_got
;
2157 amodule
->globals
= globals
;
2158 amodule
->sofile
= sofile
;
2159 amodule
->method_to_code
= g_hash_table_new (mono_aligned_addr_hash
, NULL
);
2160 amodule
->extra_methods
= g_hash_table_new (NULL
, NULL
);
2161 amodule
->shared_got
= g_new0 (gpointer
, info
->nshared_got_entries
);
2163 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2164 for (i
= 0; i
< MONO_AOT_TABLE_NUM
; ++i
)
2165 amodule
->tables
[i
] = aot_data
+ info
->table_offsets
[i
];
2168 mono_os_mutex_init_recursive (&amodule
->mutex
);
2170 /* Read image table */
2172 guint32 table_len
, i
;
2175 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
)
2176 table
= amodule
->tables
[MONO_AOT_TABLE_IMAGE_TABLE
];
2178 table
= (char *)info
->image_table
;
2181 table_len
= *(guint32
*)table
;
2182 table
+= sizeof (guint32
);
2183 amodule
->image_table
= g_new0 (MonoImage
*, table_len
);
2184 amodule
->image_names
= g_new0 (MonoAssemblyName
, table_len
);
2185 amodule
->image_guids
= g_new0 (char*, table_len
);
2186 amodule
->image_table_len
= table_len
;
2187 for (i
= 0; i
< table_len
; ++i
) {
2188 MonoAssemblyName
*aname
= &(amodule
->image_names
[i
]);
2190 aname
->name
= g_strdup (table
);
2191 table
+= strlen (table
) + 1;
2192 amodule
->image_guids
[i
] = g_strdup (table
);
2193 table
+= strlen (table
) + 1;
2195 aname
->culture
= g_strdup (table
);
2196 table
+= strlen (table
) + 1;
2197 memcpy (aname
->public_key_token
, table
, strlen (table
) + 1);
2198 table
+= strlen (table
) + 1;
2200 table
= (char *)ALIGN_PTR_TO (table
, 8);
2201 aname
->flags
= *(guint32
*)table
;
2203 aname
->major
= *(guint32
*)table
;
2205 aname
->minor
= *(guint32
*)table
;
2207 aname
->build
= *(guint32
*)table
;
2209 aname
->revision
= *(guint32
*)table
;
2214 amodule
->jit_code_start
= (guint8
*)info
->jit_code_start
;
2215 amodule
->jit_code_end
= (guint8
*)info
->jit_code_end
;
2216 if (info
->flags
& MONO_AOT_FILE_FLAG_SEPARATE_DATA
) {
2217 amodule
->blob
= amodule
->tables
[MONO_AOT_TABLE_BLOB
];
2218 amodule
->method_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_METHOD_INFO_OFFSETS
];
2219 amodule
->ex_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_EX_INFO_OFFSETS
];
2220 amodule
->class_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_CLASS_INFO_OFFSETS
];
2221 amodule
->class_name_table
= amodule
->tables
[MONO_AOT_TABLE_CLASS_NAME
];
2222 amodule
->extra_method_table
= amodule
->tables
[MONO_AOT_TABLE_EXTRA_METHOD_TABLE
];
2223 amodule
->extra_method_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_EXTRA_METHOD_INFO_OFFSETS
];
2224 amodule
->got_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_GOT_INFO_OFFSETS
];
2225 amodule
->llvm_got_info_offsets
= amodule
->tables
[MONO_AOT_TABLE_LLVM_GOT_INFO_OFFSETS
];
2226 amodule
->weak_field_indexes
= amodule
->tables
[MONO_AOT_TABLE_WEAK_FIELD_INDEXES
];
2228 amodule
->blob
= info
->blob
;
2229 amodule
->method_info_offsets
= (guint32
*)info
->method_info_offsets
;
2230 amodule
->ex_info_offsets
= (guint32
*)info
->ex_info_offsets
;
2231 amodule
->class_info_offsets
= (guint32
*)info
->class_info_offsets
;
2232 amodule
->class_name_table
= (guint16
*)info
->class_name_table
;
2233 amodule
->extra_method_table
= (guint32
*)info
->extra_method_table
;
2234 amodule
->extra_method_info_offsets
= (guint32
*)info
->extra_method_info_offsets
;
2235 amodule
->got_info_offsets
= info
->got_info_offsets
;
2236 amodule
->llvm_got_info_offsets
= info
->llvm_got_info_offsets
;
2237 amodule
->weak_field_indexes
= info
->weak_field_indexes
;
2239 amodule
->unbox_trampolines
= (guint32
*)info
->unbox_trampolines
;
2240 amodule
->unbox_trampolines_end
= (guint32
*)info
->unbox_trampolines_end
;
2241 amodule
->unbox_trampoline_addresses
= (guint32
*)info
->unbox_trampoline_addresses
;
2242 amodule
->unwind_info
= (guint8
*)info
->unwind_info
;
2243 amodule
->mem_begin
= amodule
->jit_code_start
;
2244 amodule
->mem_end
= (guint8
*)info
->mem_end
;
2245 amodule
->plt
= (guint8
*)info
->plt
;
2246 amodule
->plt_end
= (guint8
*)info
->plt_end
;
2247 amodule
->mono_eh_frame
= (guint8
*)info
->mono_eh_frame
;
2248 amodule
->trampolines
[MONO_AOT_TRAMP_SPECIFIC
] = (guint8
*)info
->specific_trampolines
;
2249 amodule
->trampolines
[MONO_AOT_TRAMP_STATIC_RGCTX
] = (guint8
*)info
->static_rgctx_trampolines
;
2250 amodule
->trampolines
[MONO_AOT_TRAMP_IMT
] = (guint8
*)info
->imt_trampolines
;
2251 amodule
->trampolines
[MONO_AOT_TRAMP_GSHAREDVT_ARG
] = (guint8
*)info
->gsharedvt_arg_trampolines
;
2253 if (!strcmp (assembly
->aname
.name
, "mscorlib"))
2254 mscorlib_aot_module
= amodule
;
2256 /* Compute method addresses */
2257 amodule
->methods
= (void **)g_malloc0 (amodule
->info
.nmethods
* sizeof (gpointer
));
2258 for (i
= 0; i
< amodule
->info
.nmethods
; ++i
) {
2261 if (amodule
->info
.llvm_get_method
) {
2262 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
2264 addr
= get_method (i
);
2267 /* method_addresses () contains a table of branches, since the ios linker can update those correctly */
2268 if (!addr
&& amodule
->info
.method_addresses
) {
2269 addr
= get_call_table_entry (amodule
->info
.method_addresses
, i
);
2271 if (addr
== amodule
->info
.method_addresses
)
2275 amodule
->methods
[i
] = GINT_TO_POINTER (-1);
2277 amodule
->methods
[i
] = addr
;
2280 if (make_unreadable
) {
2281 #ifndef TARGET_WIN32
2283 guint8
*page_start
, *page_end
;
2286 addr
= amodule
->mem_begin
;
2288 len
= amodule
->mem_end
- amodule
->mem_begin
;
2290 /* Round down in both directions to avoid modifying data which is not ours */
2291 page_start
= (guint8
*) (((gssize
) (addr
)) & ~ (mono_pagesize () - 1)) + mono_pagesize ();
2292 page_end
= (guint8
*) (((gssize
) (addr
+ len
)) & ~ (mono_pagesize () - 1));
2293 if (page_end
> page_start
) {
2294 err
= mono_mprotect (page_start
, (page_end
- page_start
), MONO_MMAP_NONE
);
2295 g_assert (err
== 0);
2300 /* Compute the boundaries of LLVM code */
2301 if (info
->flags
& MONO_AOT_FILE_FLAG_WITH_LLVM
)
2302 compute_llvm_code_range (amodule
, &amodule
->llvm_code_start
, &amodule
->llvm_code_end
);
2306 if (amodule
->jit_code_start
) {
2307 aot_code_low_addr
= MIN (aot_code_low_addr
, (gsize
)amodule
->jit_code_start
);
2308 aot_code_high_addr
= MAX (aot_code_high_addr
, (gsize
)amodule
->jit_code_end
);
2310 if (amodule
->llvm_code_start
) {
2311 aot_code_low_addr
= MIN (aot_code_low_addr
, (gsize
)amodule
->llvm_code_start
);
2312 aot_code_high_addr
= MAX (aot_code_high_addr
, (gsize
)amodule
->llvm_code_end
);
2315 g_hash_table_insert (aot_modules
, assembly
, amodule
);
2318 if (amodule
->jit_code_start
)
2319 mono_jit_info_add_aot_module (assembly
->image
, amodule
->jit_code_start
, amodule
->jit_code_end
);
2320 if (amodule
->llvm_code_start
)
2321 mono_jit_info_add_aot_module (assembly
->image
, amodule
->llvm_code_start
, amodule
->llvm_code_end
);
2323 assembly
->image
->aot_module
= amodule
;
2325 if (mono_aot_only
&& !mono_llvm_only
) {
2327 find_amodule_symbol (amodule
, "specific_trampolines_page", (gpointer
*)&code
);
2328 amodule
->use_page_trampolines
= code
!= NULL
;
2329 /*g_warning ("using page trampolines: %d", amodule->use_page_trampolines);*/
2333 * Register the plt region as a single trampoline so we can unwind from this code
2335 mono_aot_tramp_info_register (
2336 mono_tramp_info_create (
2339 amodule
->plt_end
- amodule
->plt
,
2341 mono_unwind_get_cie_program ()
2347 * Since we store methoddef and classdef tokens when referring to methods/classes in
2348 * referenced assemblies, we depend on the exact versions of the referenced assemblies.
2349 * MS calls this 'hard binding'. This means we have to load all referenced assemblies
2350 * non-lazily, since we can't handle out-of-date errors later.
2351 * The cached class info also depends on the exact assemblies.
2353 if (do_load_image
) {
2354 for (i
= 0; i
< amodule
->image_table_len
; ++i
) {
2356 load_image (amodule
, i
, error
);
2357 mono_error_cleanup (error
); /* FIXME don't swallow the error */
2361 if (amodule
->out_of_date
) {
2362 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: Module %s is unusable because a dependency is out-of-date.", assembly
->image
->name
);
2364 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
);
2366 mono_trace (G_LOG_LEVEL_INFO
, MONO_TRACE_AOT
, "AOT: image '%s' found.", found_aot_name
);
2371 * mono_aot_register_module:
2373 * This should be called by embedding code to register normal AOT modules statically linked
2374 * into the executable.
2376 * \param aot_info the value of the 'mono_aot_module_<ASSEMBLY_NAME>_info' global symbol from the AOT module.
2379 mono_aot_register_module (gpointer
*aot_info
)
2383 MonoAotFileInfo
*info
= (MonoAotFileInfo
*)aot_info
;
2385 g_assert (info
->version
== MONO_AOT_FILE_VERSION
);
2387 if (!(info
->flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) {
2388 globals
= (void **)info
->globals
;
2392 aname
= (char *)info
->assembly_name
;
2394 /* This could be called before startup */
2398 if (!static_aot_modules
)
2399 static_aot_modules
= g_hash_table_new (g_str_hash
, g_str_equal
);
2401 g_hash_table_insert (static_aot_modules
, aname
, info
);
2403 if (info
->flags
& MONO_AOT_FILE_FLAG_EAGER_LOAD
) {
2404 g_assert (!container_assm_name
);
2405 container_assm_name
= aname
;
2413 mono_aot_init (void)
2415 mono_os_mutex_init_recursive (&aot_mutex
);
2416 mono_os_mutex_init_recursive (&aot_page_mutex
);
2417 aot_modules
= g_hash_table_new (NULL
, NULL
);
2419 mono_install_assembly_load_hook (load_aot_module
, NULL
);
2420 mono_counters_register ("Async JIT info size", MONO_COUNTER_INT
|MONO_COUNTER_JIT
, &async_jit_info_size
);
2422 char *lastaot
= g_getenv ("MONO_LASTAOT");
2424 mono_last_aot_method
= atoi (lastaot
);
2431 mono_aot_cleanup (void)
2433 g_hash_table_destroy (aot_jit_icall_hash
);
2434 g_hash_table_destroy (aot_modules
);
2438 decode_cached_class_info (MonoAotModule
*module
, MonoCachedClassInfo
*info
, guint8
*buf
, guint8
**endbuf
)
2445 info
->vtable_size
= decode_value (buf
, &buf
);
2446 if (info
->vtable_size
== -1)
2449 flags
= decode_value (buf
, &buf
);
2450 info
->ghcimpl
= (flags
>> 0) & 0x1;
2451 info
->has_finalize
= (flags
>> 1) & 0x1;
2452 info
->has_cctor
= (flags
>> 2) & 0x1;
2453 info
->has_nested_classes
= (flags
>> 3) & 0x1;
2454 info
->blittable
= (flags
>> 4) & 0x1;
2455 info
->has_references
= (flags
>> 5) & 0x1;
2456 info
->has_static_refs
= (flags
>> 6) & 0x1;
2457 info
->no_special_static_fields
= (flags
>> 7) & 0x1;
2458 info
->is_generic_container
= (flags
>> 8) & 0x1;
2459 info
->has_weak_fields
= (flags
>> 9) & 0x1;
2461 if (info
->has_cctor
) {
2462 res
= decode_method_ref (module
, &ref
, buf
, &buf
, error
);
2463 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
2466 info
->cctor_token
= ref
.token
;
2468 if (info
->has_finalize
) {
2469 res
= decode_method_ref (module
, &ref
, buf
, &buf
, error
);
2470 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
2473 info
->finalize_image
= ref
.image
;
2474 info
->finalize_token
= ref
.token
;
2477 info
->instance_size
= decode_value (buf
, &buf
);
2478 info
->class_size
= decode_value (buf
, &buf
);
2479 info
->packing_size
= decode_value (buf
, &buf
);
2480 info
->min_align
= decode_value (buf
, &buf
);
2488 mono_aot_get_method_from_vt_slot (MonoDomain
*domain
, MonoVTable
*vtable
, int slot
, MonoError
*error
)
2491 MonoClass
*klass
= vtable
->klass
;
2492 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
2494 MonoCachedClassInfo class_info
;
2499 ERROR_DECL_VALUE (inner_error
);
2503 if (MONO_CLASS_IS_INTERFACE (klass
) || m_class_get_rank (klass
) || !amodule
)
2506 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->class_info_offsets
, mono_metadata_token_index (m_class_get_type_token (klass
)) - 1)];
2509 err
= decode_cached_class_info (amodule
, &class_info
, p
, &p
);
2513 for (i
= 0; i
< slot
; ++i
) {
2514 decode_method_ref (amodule
, &ref
, p
, &p
, &inner_error
);
2515 mono_error_cleanup (&inner_error
); /* FIXME don't swallow the error */
2518 res
= decode_method_ref (amodule
, &ref
, p
, &p
, &inner_error
);
2519 mono_error_cleanup (&inner_error
); /* FIXME don't swallow the error */
2522 if (ref
.no_aot_trampoline
)
2525 if (mono_metadata_token_index (ref
.token
) == 0 || mono_metadata_token_table (ref
.token
) != MONO_TABLE_METHOD
)
2528 addr
= mono_aot_get_method_from_token (domain
, ref
.image
, ref
.token
, error
);
2533 mono_aot_get_cached_class_info (MonoClass
*klass
, MonoCachedClassInfo
*res
)
2535 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
2539 if (m_class_get_rank (klass
) || !m_class_get_type_token (klass
) || !amodule
)
2542 p
= (guint8
*)&amodule
->blob
[mono_aot_get_offset (amodule
->class_info_offsets
, mono_metadata_token_index (m_class_get_type_token (klass
)) - 1)];
2544 err
= decode_cached_class_info (amodule
, res
, p
, &p
);
2552 * mono_aot_get_class_from_name:
2554 * Obtains a MonoClass with a given namespace and a given name which is located in IMAGE,
2555 * using a cache stored in the AOT file.
2556 * Stores the resulting class in *KLASS if found, stores NULL otherwise.
2558 * Returns: TRUE if the klass was found/not found in the cache, FALSE if no aot file was
2562 mono_aot_get_class_from_name (MonoImage
*image
, const char *name_space
, const char *name
, MonoClass
**klass
)
2564 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
2565 guint16
*table
, *entry
;
2568 char full_name_buf
[1024];
2570 const char *name2
, *name_space2
;
2572 guint32 cols
[MONO_TYPEDEF_SIZE
];
2573 GHashTable
*nspace_table
;
2575 if (!amodule
|| !amodule
->class_name_table
)
2578 amodule_lock (amodule
);
2582 /* First look in the cache */
2583 if (!amodule
->name_cache
)
2584 amodule
->name_cache
= g_hash_table_new (g_str_hash
, g_str_equal
);
2585 nspace_table
= (GHashTable
*)g_hash_table_lookup (amodule
->name_cache
, name_space
);
2587 *klass
= (MonoClass
*)g_hash_table_lookup (nspace_table
, name
);
2589 amodule_unlock (amodule
);
2594 table_size
= amodule
->class_name_table
[0];
2595 table
= amodule
->class_name_table
+ 1;
2597 if (name_space
[0] == '\0')
2598 full_name
= g_strdup_printf ("%s", name
);
2600 if (strlen (name_space
) + strlen (name
) < 1000) {
2601 sprintf (full_name_buf
, "%s.%s", name_space
, name
);
2602 full_name
= full_name_buf
;
2604 full_name
= g_strdup_printf ("%s.%s", name_space
, name
);
2607 hash
= mono_metadata_str_hash (full_name
) % table_size
;
2608 if (full_name
!= full_name_buf
)
2611 entry
= &table
[hash
* 2];
2613 if (entry
[0] != 0) {
2614 t
= &image
->tables
[MONO_TABLE_TYPEDEF
];
2617 guint32 index
= entry
[0];
2618 guint32 next
= entry
[1];
2619 guint32 token
= mono_metadata_make_token (MONO_TABLE_TYPEDEF
, index
);
2621 name_table_accesses
++;
2623 mono_metadata_decode_row (t
, index
- 1, cols
, MONO_TYPEDEF_SIZE
);
2625 name2
= mono_metadata_string_heap (image
, cols
[MONO_TYPEDEF_NAME
]);
2626 name_space2
= mono_metadata_string_heap (image
, cols
[MONO_TYPEDEF_NAMESPACE
]);
2628 if (!strcmp (name
, name2
) && !strcmp (name_space
, name_space2
)) {
2630 amodule_unlock (amodule
);
2631 *klass
= mono_class_get_checked (image
, token
, error
);
2632 if (!mono_error_ok (error
))
2633 mono_error_cleanup (error
); /* FIXME don't swallow the error */
2637 amodule_lock (amodule
);
2638 nspace_table
= (GHashTable
*)g_hash_table_lookup (amodule
->name_cache
, name_space
);
2639 if (!nspace_table
) {
2640 nspace_table
= g_hash_table_new (g_str_hash
, g_str_equal
);
2641 g_hash_table_insert (amodule
->name_cache
, (char*)name_space2
, nspace_table
);
2643 g_hash_table_insert (nspace_table
, (char*)name2
, *klass
);
2644 amodule_unlock (amodule
);
2650 entry
= &table
[next
* 2];
2657 amodule_unlock (amodule
);
2663 mono_aot_get_weak_field_indexes (MonoImage
*image
)
2665 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
2670 /* Initialize weak field indexes from the cached copy */
2671 guint32
*indexes
= amodule
->weak_field_indexes
;
2672 int len
= indexes
[0];
2673 GHashTable
*indexes_hash
= g_hash_table_new (NULL
, NULL
);
2674 for (int i
= 0; i
< len
; ++i
)
2675 g_hash_table_insert (indexes_hash
, GUINT_TO_POINTER (indexes
[i
+ 1]), GUINT_TO_POINTER (1));
2676 return indexes_hash
;
2679 /* Compute the boundaries of the LLVM code for AMODULE. */
2681 compute_llvm_code_range (MonoAotModule
*amodule
, guint8
**code_start
, guint8
**code_end
)
2684 int version
, fde_count
;
2687 if (amodule
->info
.llvm_get_method
) {
2688 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
2690 *code_start
= (guint8
*)get_method (-1);
2691 *code_end
= (guint8
*)get_method (-2);
2693 g_assert (*code_end
> *code_start
);
2697 g_assert (amodule
->mono_eh_frame
);
2699 p
= amodule
->mono_eh_frame
;
2701 /* p points to data emitted by LLVM in DwarfException::EmitMonoEHFrame () */
2705 g_assert (version
== 3);
2708 p
= (guint8
*)ALIGN_PTR_TO (p
, 4);
2710 fde_count
= *(guint32
*)p
;
2714 if (fde_count
> 0) {
2715 *code_start
= (guint8
*)amodule
->methods
[table
[0]];
2716 *code_end
= (guint8
*)amodule
->methods
[table
[(fde_count
- 1) * 2]] + table
[fde_count
* 2];
2724 is_llvm_code (MonoAotModule
*amodule
, guint8
*code
)
2726 if ((guint8
*)code
>= amodule
->llvm_code_start
&& (guint8
*)code
< amodule
->llvm_code_end
)
2733 is_thumb_code (MonoAotModule
*amodule
, guint8
*code
)
2735 if (is_llvm_code (amodule
, code
) && (amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_THUMB
))
2742 * decode_llvm_mono_eh_frame:
2744 * Decode the EH information emitted by our modified LLVM compiler and construct a
2745 * MonoJitInfo structure from it.
2746 * If JINFO is NULL, set OUT_LLVM_CLAUSES to the number of llvm level clauses.
2747 * This function is async safe when called in async context.
2750 decode_llvm_mono_eh_frame (MonoAotModule
*amodule
, MonoDomain
*domain
, MonoJitInfo
*jinfo
,
2751 guint8
*code
, guint32 code_len
,
2752 MonoJitExceptionInfo
*clauses
, int num_clauses
,
2754 int *this_reg
, int *this_offset
, int *out_llvm_clauses
)
2756 guint8
*p
, *code1
, *code2
;
2757 guint8
*fde
, *cie
, *code_start
, *code_end
;
2758 int version
, fde_count
;
2760 int i
, pos
, left
, right
;
2761 MonoJitExceptionInfo
*ei
;
2762 guint32 fde_len
, ei_len
, nested_len
, nindex
;
2763 gpointer
*type_info
;
2764 MonoLLVMFDEInfo info
;
2768 async
= mono_thread_info_is_async_context ();
2770 if (!amodule
->mono_eh_frame
) {
2772 *out_llvm_clauses
= num_clauses
;
2775 memcpy (jinfo
->clauses
, clauses
, num_clauses
* sizeof (MonoJitExceptionInfo
));
2779 g_assert (amodule
->mono_eh_frame
&& code
);
2781 p
= amodule
->mono_eh_frame
;
2783 /* p points to data emitted by LLVM in DwarfMonoException::EmitMonoEHFrame () */
2787 g_assert (version
== 3);
2789 /* func_encoding = *p; */
2791 p
= (guint8
*)ALIGN_PTR_TO (p
, 4);
2793 fde_count
= *(guint32
*)p
;
2797 /* There is +1 entry in the table */
2798 cie
= p
+ ((fde_count
+ 1) * 8);
2800 /* Binary search in the table to find the entry for code */
2804 pos
= (left
+ right
) / 2;
2806 /* The table contains method index/fde offset pairs */
2807 g_assert (table
[(pos
* 2)] != -1);
2808 code1
= (guint8
*)amodule
->methods
[table
[(pos
* 2)]];
2809 if (pos
+ 1 == fde_count
) {
2810 code2
= amodule
->llvm_code_end
;
2812 g_assert (table
[(pos
+ 1) * 2] != -1);
2813 code2
= (guint8
*)amodule
->methods
[table
[(pos
+ 1) * 2]];
2818 else if (code
>= code2
)
2824 code_start
= (guint8
*)amodule
->methods
[table
[(pos
* 2)]];
2825 if (pos
+ 1 == fde_count
) {
2826 /* The +1 entry in the table contains the length of the last method */
2827 int len
= table
[(pos
+ 1) * 2];
2828 code_end
= code_start
+ len
;
2830 code_end
= (guint8
*)amodule
->methods
[table
[(pos
+ 1) * 2]];
2833 code_len
= code_end
- code_start
;
2835 g_assert (code
>= code_start
&& code
< code_end
);
2837 if (is_thumb_code (amodule
, code_start
))
2838 /* Clear thumb flag */
2839 code_start
= (guint8
*)(((mgreg_t
)code_start
) & ~1);
2841 fde
= amodule
->mono_eh_frame
+ table
[(pos
* 2) + 1];
2842 /* This won't overflow because there is +1 entry in the table */
2843 fde_len
= table
[(pos
* 2) + 2 + 1] - table
[(pos
* 2) + 1];
2845 /* Compute lengths */
2846 mono_unwind_decode_llvm_mono_fde (fde
, fde_len
, cie
, code_start
, &info
, NULL
, NULL
, NULL
);
2849 /* These are leaked, but the leak is bounded */
2850 ei
= mono_domain_alloc0_lock_free (domain
, info
.ex_info_len
* sizeof (MonoJitExceptionInfo
));
2851 type_info
= mono_domain_alloc0_lock_free (domain
, info
.ex_info_len
* sizeof (gpointer
));
2852 unw_info
= mono_domain_alloc0_lock_free (domain
, info
.unw_info_len
);
2854 ei
= (MonoJitExceptionInfo
*)g_malloc0 (info
.ex_info_len
* sizeof (MonoJitExceptionInfo
));
2855 type_info
= (gpointer
*)g_malloc0 (info
.ex_info_len
* sizeof (gpointer
));
2856 unw_info
= (guint8
*)g_malloc0 (info
.unw_info_len
);
2858 mono_unwind_decode_llvm_mono_fde (fde
, fde_len
, cie
, code_start
, &info
, ei
, type_info
, unw_info
);
2860 ei_len
= info
.ex_info_len
;
2861 *this_reg
= info
.this_reg
;
2862 *this_offset
= info
.this_offset
;
2865 * LLVM might represent one IL region with multiple regions.
2868 /* Count number of nested clauses */
2870 for (i
= 0; i
< ei_len
; ++i
) {
2871 /* This might be unaligned */
2872 gint32 cindex1
= read32 (type_info
[i
]);
2875 for (l
= nesting
[cindex1
]; l
; l
= l
->next
)
2880 *out_llvm_clauses
= ei_len
+ nested_len
;
2884 /* Store the unwind info addr/length in the MonoJitInfo structure itself so its async safe */
2885 MonoUnwindJitInfo
*jinfo_unwind
= mono_jit_info_get_unwind_info (jinfo
);
2886 g_assert (jinfo_unwind
);
2887 jinfo_unwind
->unw_info
= unw_info
;
2888 jinfo_unwind
->unw_info_len
= info
.unw_info_len
;
2890 for (i
= 0; i
< ei_len
; ++i
) {
2892 * clauses contains the original IL exception info saved by the AOT
2893 * compiler, we have to combine that with the information produced by LLVM
2895 /* The type_info entries contain IL clause indexes */
2896 int clause_index
= read32 (type_info
[i
]);
2897 MonoJitExceptionInfo
*jei
= &jinfo
->clauses
[i
];
2898 MonoJitExceptionInfo
*orig_jei
= &clauses
[clause_index
];
2900 g_assert (clause_index
< num_clauses
);
2901 jei
->flags
= orig_jei
->flags
;
2902 jei
->data
.catch_class
= orig_jei
->data
.catch_class
;
2904 jei
->try_start
= ei
[i
].try_start
;
2905 jei
->try_end
= ei
[i
].try_end
;
2906 jei
->handler_start
= ei
[i
].handler_start
;
2907 jei
->clause_index
= clause_index
;
2909 if (is_thumb_code (amodule
, (guint8
*)jei
->try_start
)) {
2910 jei
->try_start
= (void*)((mgreg_t
)jei
->try_start
& ~1);
2911 jei
->try_end
= (void*)((mgreg_t
)jei
->try_end
& ~1);
2912 /* Make sure we transition to thumb when a handler starts */
2913 jei
->handler_start
= (void*)((mgreg_t
)jei
->handler_start
+ 1);
2917 /* See exception_cb () in mini-llvm.c as to why this is needed */
2919 for (i
= 0; i
< ei_len
; ++i
) {
2920 gint32 cindex1
= read32 (type_info
[i
]);
2923 for (l
= nesting
[cindex1
]; l
; l
= l
->next
) {
2924 gint32 nesting_cindex
= GPOINTER_TO_INT (l
->data
);
2925 MonoJitExceptionInfo
*nesting_ei
;
2926 MonoJitExceptionInfo
*nesting_clause
= &clauses
[nesting_cindex
];
2928 nesting_ei
= &jinfo
->clauses
[nindex
];
2931 memcpy (nesting_ei
, &jinfo
->clauses
[i
], sizeof (MonoJitExceptionInfo
));
2932 nesting_ei
->flags
= nesting_clause
->flags
;
2933 nesting_ei
->data
.catch_class
= nesting_clause
->data
.catch_class
;
2934 nesting_ei
->clause_index
= nesting_cindex
;
2937 g_assert (nindex
== ei_len
+ nested_len
);
2941 alloc0_jit_info_data (MonoDomain
*domain
, int size
, gboolean async_context
)
2945 if (async_context
) {
2946 res
= mono_domain_alloc0_lock_free (domain
, size
);
2947 mono_atomic_fetch_add_i32 (&async_jit_info_size
, size
);
2949 res
= mono_domain_alloc0 (domain
, size
);
2955 * LOCKING: Acquires the domain lock.
2956 * In async context, this is async safe.
2959 decode_exception_debug_info (MonoAotModule
*amodule
, MonoDomain
*domain
,
2960 MonoMethod
*method
, guint8
* ex_info
,
2961 guint8
*code
, guint32 code_len
)
2964 int i
, buf_len
, num_clauses
, len
;
2966 MonoJitInfoFlags flags
= JIT_INFO_NONE
;
2967 guint unwind_info
, eflags
;
2968 gboolean has_generic_jit_info
, has_dwarf_unwind_info
, has_clauses
, has_seq_points
, has_try_block_holes
, has_arch_eh_jit_info
;
2969 gboolean from_llvm
, has_gc_map
;
2971 int try_holes_info_size
, num_holes
;
2972 int this_reg
= 0, this_offset
= 0;
2975 /* Load the method info from the AOT file */
2976 async
= mono_thread_info_is_async_context ();
2979 eflags
= decode_value (p
, &p
);
2980 has_generic_jit_info
= (eflags
& 1) != 0;
2981 has_dwarf_unwind_info
= (eflags
& 2) != 0;
2982 has_clauses
= (eflags
& 4) != 0;
2983 has_seq_points
= (eflags
& 8) != 0;
2984 from_llvm
= (eflags
& 16) != 0;
2985 has_try_block_holes
= (eflags
& 32) != 0;
2986 has_gc_map
= (eflags
& 64) != 0;
2987 has_arch_eh_jit_info
= (eflags
& 128) != 0;
2989 if (has_dwarf_unwind_info
) {
2990 unwind_info
= decode_value (p
, &p
);
2991 g_assert (unwind_info
< (1 << 30));
2993 unwind_info
= decode_value (p
, &p
);
2995 if (has_generic_jit_info
)
2996 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_GENERIC_JIT_INFO
);
2998 if (has_try_block_holes
) {
2999 num_holes
= decode_value (p
, &p
);
3000 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_TRY_BLOCK_HOLES
);
3001 try_holes_info_size
= sizeof (MonoTryBlockHoleTableJitInfo
) + num_holes
* sizeof (MonoTryBlockHoleJitInfo
);
3003 num_holes
= try_holes_info_size
= 0;
3006 if (has_arch_eh_jit_info
) {
3007 flags
= (MonoJitInfoFlags
)(flags
| JIT_INFO_HAS_ARCH_EH_INFO
);
3008 /* Overwrite the original code_len which includes alignment padding */
3009 code_len
= decode_value (p
, &p
);
3012 /* Exception table */
3014 num_clauses
= decode_value (p
, &p
);
3019 MonoJitExceptionInfo
*clauses
;
3023 * Part of the info is encoded by the AOT compiler, the rest is in the .eh_frame
3027 if (num_clauses
< 16) {
3028 clauses
= g_newa (MonoJitExceptionInfo
, num_clauses
);
3029 nesting
= g_newa (GSList
*, num_clauses
);
3031 clauses
= alloc0_jit_info_data (domain
, sizeof (MonoJitExceptionInfo
) * num_clauses
, TRUE
);
3032 nesting
= alloc0_jit_info_data (domain
, sizeof (GSList
*) * num_clauses
, TRUE
);
3034 memset (clauses
, 0, sizeof (MonoJitExceptionInfo
) * num_clauses
);
3035 memset (nesting
, 0, sizeof (GSList
*) * num_clauses
);
3037 clauses
= g_new0 (MonoJitExceptionInfo
, num_clauses
);
3038 nesting
= g_new0 (GSList
*, num_clauses
);
3041 for (i
= 0; i
< num_clauses
; ++i
) {
3042 MonoJitExceptionInfo
*ei
= &clauses
[i
];
3044 ei
->flags
= decode_value (p
, &p
);
3046 if (!(ei
->flags
== MONO_EXCEPTION_CLAUSE_FILTER
|| ei
->flags
== MONO_EXCEPTION_CLAUSE_FINALLY
)) {
3047 int len
= decode_value (p
, &p
);
3053 ei
->data
.catch_class
= decode_klass_ref (amodule
, p
, &p
, error
);
3054 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3059 ei
->clause_index
= i
;
3061 ei
->try_offset
= decode_value (p
, &p
);
3062 ei
->try_len
= decode_value (p
, &p
);
3063 ei
->handler_offset
= decode_value (p
, &p
);
3064 ei
->handler_len
= decode_value (p
, &p
);
3066 /* Read the list of nesting clauses */
3068 int nesting_index
= decode_value (p
, &p
);
3069 if (nesting_index
== -1)
3073 nesting
[i
] = g_slist_prepend (nesting
[i
], GINT_TO_POINTER (nesting_index
));
3077 flags
|= JIT_INFO_HAS_UNWIND_INFO
;
3079 int num_llvm_clauses
;
3080 /* Get the length first */
3081 decode_llvm_mono_eh_frame (amodule
, domain
, NULL
, code
, code_len
, clauses
, num_clauses
, nesting
, &this_reg
, &this_offset
, &num_llvm_clauses
);
3082 len
= mono_jit_info_size (flags
, num_llvm_clauses
, num_holes
);
3083 jinfo
= (MonoJitInfo
*)alloc0_jit_info_data (domain
, len
, async
);
3084 mono_jit_info_init (jinfo
, method
, code
, code_len
, flags
, num_llvm_clauses
, num_holes
);
3086 decode_llvm_mono_eh_frame (amodule
, domain
, jinfo
, code
, code_len
, clauses
, num_clauses
, nesting
, &this_reg
, &this_offset
, NULL
);
3090 for (i
= 0; i
< num_clauses
; ++i
)
3091 g_slist_free (nesting
[i
]);
3094 jinfo
->from_llvm
= 1;
3096 len
= mono_jit_info_size (flags
, num_clauses
, num_holes
);
3097 jinfo
= (MonoJitInfo
*)alloc0_jit_info_data (domain
, len
, async
);
3098 mono_jit_info_init (jinfo
, method
, code
, code_len
, flags
, num_clauses
, num_holes
);
3100 for (i
= 0; i
< jinfo
->num_clauses
; ++i
) {
3101 MonoJitExceptionInfo
*ei
= &jinfo
->clauses
[i
];
3103 ei
->flags
= decode_value (p
, &p
);
3105 #ifdef MONO_CONTEXT_SET_LLVM_EXC_REG
3106 /* Not used for catch clauses */
3107 if (ei
->flags
!= MONO_EXCEPTION_CLAUSE_NONE
)
3108 ei
->exvar_offset
= decode_value (p
, &p
);
3110 ei
->exvar_offset
= decode_value (p
, &p
);
3113 if (ei
->flags
== MONO_EXCEPTION_CLAUSE_FILTER
|| ei
->flags
== MONO_EXCEPTION_CLAUSE_FINALLY
)
3114 ei
->data
.filter
= code
+ decode_value (p
, &p
);
3116 int len
= decode_value (p
, &p
);
3122 ei
->data
.catch_class
= decode_klass_ref (amodule
, p
, &p
, error
);
3123 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3128 ei
->try_start
= code
+ decode_value (p
, &p
);
3129 ei
->try_end
= code
+ decode_value (p
, &p
);
3130 ei
->handler_start
= code
+ decode_value (p
, &p
);
3133 jinfo
->unwind_info
= unwind_info
;
3134 jinfo
->domain_neutral
= 0;
3135 jinfo
->from_aot
= 1;
3138 if (has_try_block_holes
) {
3139 MonoTryBlockHoleTableJitInfo
*table
;
3141 g_assert (jinfo
->has_try_block_holes
);
3143 table
= mono_jit_info_get_try_block_hole_table_info (jinfo
);
3146 table
->num_holes
= (guint16
)num_holes
;
3147 for (i
= 0; i
< num_holes
; ++i
) {
3148 MonoTryBlockHoleJitInfo
*hole
= &table
->holes
[i
];
3149 hole
->clause
= decode_value (p
, &p
);
3150 hole
->length
= decode_value (p
, &p
);
3151 hole
->offset
= decode_value (p
, &p
);
3155 if (has_arch_eh_jit_info
) {
3156 MonoArchEHJitInfo
*eh_info
;
3158 g_assert (jinfo
->has_arch_eh_info
);
3160 eh_info
= mono_jit_info_get_arch_eh_info (jinfo
);
3161 eh_info
->stack_size
= decode_value (p
, &p
);
3162 eh_info
->epilog_size
= decode_value (p
, &p
);
3166 /* The rest is not needed in async mode */
3167 jinfo
->async
= TRUE
;
3168 jinfo
->d
.aot_info
= amodule
;
3173 if (has_generic_jit_info
) {
3174 MonoGenericJitInfo
*gi
;
3177 g_assert (jinfo
->has_generic_jit_info
);
3179 gi
= mono_jit_info_get_generic_jit_info (jinfo
);
3182 gi
->nlocs
= decode_value (p
, &p
);
3184 gi
->locations
= (MonoDwarfLocListEntry
*)alloc0_jit_info_data (domain
, gi
->nlocs
* sizeof (MonoDwarfLocListEntry
), async
);
3185 for (i
= 0; i
< gi
->nlocs
; ++i
) {
3186 MonoDwarfLocListEntry
*entry
= &gi
->locations
[i
];
3188 entry
->is_reg
= decode_value (p
, &p
);
3189 entry
->reg
= decode_value (p
, &p
);
3191 entry
->offset
= decode_value (p
, &p
);
3193 entry
->from
= decode_value (p
, &p
);
3194 entry
->to
= decode_value (p
, &p
);
3199 gi
->has_this
= this_reg
!= -1;
3200 gi
->this_reg
= this_reg
;
3201 gi
->this_offset
= this_offset
;
3203 gi
->has_this
= decode_value (p
, &p
);
3204 gi
->this_reg
= decode_value (p
, &p
);
3205 gi
->this_offset
= decode_value (p
, &p
);
3209 len
= decode_value (p
, &p
);
3213 jinfo
->d
.method
= decode_resolve_method_ref (amodule
, p
, &p
, error
);
3214 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3217 gi
->generic_sharing_context
= alloc0_jit_info_data (domain
, sizeof (MonoGenericSharingContext
), async
);
3218 if (decode_value (p
, &p
)) {
3220 MonoGenericSharingContext
*gsctx
= gi
->generic_sharing_context
;
3222 gsctx
->is_gsharedvt
= TRUE
;
3226 if (method
&& has_seq_points
) {
3227 MonoSeqPointInfo
*seq_points
;
3229 p
+= mono_seq_point_info_read (&seq_points
, p
, FALSE
);
3231 mono_domain_lock (domain
);
3232 /* This could be set already since this function can be called more than once for the same method */
3233 if (!g_hash_table_lookup (domain_jit_info (domain
)->seq_points
, method
))
3234 g_hash_table_insert (domain_jit_info (domain
)->seq_points
, method
, seq_points
);
3236 mono_seq_point_info_free (seq_points
);
3237 mono_domain_unlock (domain
);
3240 /* Load debug info */
3241 buf_len
= decode_value (p
, &p
);
3243 mono_debug_add_aot_method (domain
, method
, code
, p
, buf_len
);
3247 int map_size
= decode_value (p
, &p
);
3248 /* The GC map requires 4 bytes of alignment */
3249 while ((guint64
)(gsize
)p
% 4)
3255 if (amodule
!= m_class_get_image (jinfo
->d
.method
->klass
)->aot_module
) {
3258 ji_to_amodule
= g_hash_table_new (NULL
, NULL
);
3259 g_hash_table_insert (ji_to_amodule
, jinfo
, amodule
);
3267 amodule_contains_code_addr (MonoAotModule
*amodule
, guint8
*code
)
3269 return (code
>= amodule
->jit_code_start
&& code
<= amodule
->jit_code_end
) ||
3270 (code
>= amodule
->llvm_code_start
&& code
<= amodule
->llvm_code_end
);
3274 * mono_aot_get_unwind_info:
3276 * Return a pointer to the DWARF unwind info belonging to JI.
3279 mono_aot_get_unwind_info (MonoJitInfo
*ji
, guint32
*unwind_info_len
)
3281 MonoAotModule
*amodule
;
3283 guint8
*code
= (guint8
*)ji
->code_start
;
3286 amodule
= (MonoAotModule
*)ji
->d
.aot_info
;
3288 amodule
= (MonoAotModule
*)m_class_get_image (jinfo_get_method (ji
)->klass
)->aot_module
;
3290 g_assert (ji
->from_aot
);
3292 if (!amodule_contains_code_addr (amodule
, code
)) {
3293 /* ji belongs to a different aot module than amodule */
3295 g_assert (ji_to_amodule
);
3296 amodule
= (MonoAotModule
*)g_hash_table_lookup (ji_to_amodule
, ji
);
3298 g_assert (amodule_contains_code_addr (amodule
, code
));
3302 p
= amodule
->unwind_info
+ ji
->unwind_info
;
3303 *unwind_info_len
= decode_value (p
, &p
);
3308 msort_method_addresses_internal (gpointer
*array
, int *indexes
, int lo
, int hi
, gpointer
*scratch
, int *scratch_indexes
)
3310 int mid
= (lo
+ hi
) / 2;
3317 for (i
= lo
; i
< hi
; ++i
)
3318 if (array
[i
] > array
[i
+ 1])
3321 /* Already sorted */
3325 msort_method_addresses_internal (array
, indexes
, lo
, mid
, scratch
, scratch_indexes
);
3326 msort_method_addresses_internal (array
, indexes
, mid
+ 1, hi
, scratch
, scratch_indexes
);
3328 if (array
[mid
] < array
[mid
+ 1])
3334 for (i
= lo
; i
<= hi
; i
++) {
3335 if (t_lo
<= mid
&& ((t_hi
> hi
) || array
[t_lo
] < array
[t_hi
])) {
3336 scratch
[i
] = array
[t_lo
];
3337 scratch_indexes
[i
] = indexes
[t_lo
];
3340 scratch
[i
] = array
[t_hi
];
3341 scratch_indexes
[i
] = indexes
[t_hi
];
3345 for (i
= lo
; i
<= hi
; ++i
) {
3346 array
[i
] = scratch
[i
];
3347 indexes
[i
] = scratch_indexes
[i
];
3352 msort_method_addresses (gpointer
*array
, int *indexes
, int len
)
3355 int *scratch_indexes
;
3357 scratch
= g_new (gpointer
, len
);
3358 scratch_indexes
= g_new (int, len
);
3359 msort_method_addresses_internal (array
, indexes
, 0, len
- 1, scratch
, scratch_indexes
);
3361 g_free (scratch_indexes
);
3365 * mono_aot_find_jit_info:
3367 * In async context, the resulting MonoJitInfo will not have its method field set, and it will not be added
3368 * to the jit info tables.
3369 * FIXME: Large sizes in the lock free allocator
3372 mono_aot_find_jit_info (MonoDomain
*domain
, MonoImage
*image
, gpointer addr
)
3375 int pos
, left
, right
, code_len
;
3376 int method_index
, table_len
;
3378 MonoAotModule
*amodule
= (MonoAotModule
*)image
->aot_module
;
3379 MonoMethod
*method
= NULL
;
3381 guint8
*code
, *ex_info
, *p
;
3385 guint8
*code1
, *code2
;
3392 nmethods
= amodule
->info
.nmethods
;
3394 if (domain
!= mono_get_root_domain ())
3398 if (!amodule_contains_code_addr (amodule
, (guint8
*)addr
))
3401 async
= mono_thread_info_is_async_context ();
3403 /* Compute a sorted table mapping code to method indexes. */
3404 if (!amodule
->sorted_methods
) {
3406 gpointer
*methods
= g_new0 (gpointer
, nmethods
);
3407 int *method_indexes
= g_new0 (int, nmethods
);
3408 int methods_len
= 0;
3410 for (i
= 0; i
< nmethods
; ++i
) {
3411 /* Skip the -1 entries to speed up sorting */
3412 if (amodule
->methods
[i
] == GINT_TO_POINTER (-1))
3414 methods
[methods_len
] = amodule
->methods
[i
];
3415 method_indexes
[methods_len
] = i
;
3418 /* Use a merge sort as this is mostly sorted */
3419 msort_method_addresses (methods
, method_indexes
, methods_len
);
3420 for (i
= 0; i
< methods_len
-1; ++i
)
3421 g_assert (methods
[i
] <= methods
[i
+ 1]);
3422 amodule
->sorted_methods_len
= methods_len
;
3423 if (mono_atomic_cas_ptr ((gpointer
*)&amodule
->sorted_methods
, methods
, NULL
) != NULL
)
3424 /* Somebody got in before us */
3426 if (mono_atomic_cas_ptr ((gpointer
*)&amodule
->sorted_method_indexes
, method_indexes
, NULL
) != NULL
)
3427 /* Somebody got in before us */
3428 g_free (method_indexes
);
3431 /* Binary search in the sorted_methods table */
3432 methods
= amodule
->sorted_methods
;
3433 methods_len
= amodule
->sorted_methods_len
;
3434 code
= (guint8
*)addr
;
3436 right
= methods_len
;
3438 pos
= (left
+ right
) / 2;
3440 code1
= (guint8
*)methods
[pos
];
3441 if (pos
+ 1 == methods_len
) {
3442 if (code1
>= amodule
->jit_code_start
&& code1
< amodule
->jit_code_end
)
3443 code2
= amodule
->jit_code_end
;
3445 code2
= amodule
->llvm_code_end
;
3447 code2
= (guint8
*)methods
[pos
+ 1];
3452 else if (code
>= code2
)
3458 g_assert (addr
>= methods
[pos
]);
3459 if (pos
+ 1 < methods_len
)
3460 g_assert (addr
< methods
[pos
+ 1]);
3461 method_index
= amodule
->sorted_method_indexes
[pos
];
3463 /* In async mode, jinfo is not added to the normal jit info table, so have to cache it ourselves */
3465 JitInfoMap
*table
= amodule
->async_jit_info_table
;
3469 len
= table
[0].method_index
;
3470 for (i
= 1; i
< len
; ++i
) {
3471 if (table
[i
].method_index
== method_index
)
3472 return table
[i
].jinfo
;
3477 code
= (guint8
*)amodule
->methods
[method_index
];
3478 ex_info
= &amodule
->blob
[mono_aot_get_offset (amodule
->ex_info_offsets
, method_index
)];
3480 if (pos
== methods_len
- 1) {
3481 if (code
>= amodule
->jit_code_start
&& code
< amodule
->jit_code_end
)
3482 code_len
= amodule
->jit_code_end
- code
;
3484 code_len
= amodule
->llvm_code_end
- code
;
3486 code_len
= (guint8
*)methods
[pos
+ 1] - (guint8
*)methods
[pos
];
3489 g_assert ((guint8
*)code
<= (guint8
*)addr
&& (guint8
*)addr
< (guint8
*)code
+ code_len
);
3491 /* Might be a wrapper/extra method */
3493 if (amodule
->extra_methods
) {
3494 amodule_lock (amodule
);
3495 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
3496 amodule_unlock (amodule
);
3502 if (method_index
>= image
->tables
[MONO_TABLE_METHOD
].rows
) {
3504 * This is hit for extra methods which are called directly, so they are
3505 * not in amodule->extra_methods.
3507 table_len
= amodule
->extra_method_info_offsets
[0];
3508 table
= amodule
->extra_method_info_offsets
+ 1;
3515 pos
= ((left
+ right
) / 2);
3517 g_assert (pos
< table_len
);
3519 if (table
[pos
* 2] < method_index
)
3521 else if (table
[pos
* 2] > method_index
)
3527 p
= amodule
->blob
+ table
[(pos
* 2) + 1];
3528 method
= decode_resolve_method_ref (amodule
, p
, &p
, error
);
3529 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3531 /* Happens when a random address is passed in which matches a not-yey called wrapper encoded using its name */
3535 token
= mono_metadata_make_token (MONO_TABLE_METHOD
, method_index
+ 1);
3536 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
3538 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
3545 //printf ("F: %s\n", mono_method_full_name (method, TRUE));
3547 jinfo
= decode_exception_debug_info (amodule
, domain
, method
, ex_info
, code
, code_len
);
3549 g_assert ((guint8
*)addr
>= (guint8
*)jinfo
->code_start
);
3551 /* Add it to the normal JitInfo tables */
3553 JitInfoMap
*old_table
, *new_table
;
3557 * Use a simple inmutable table with linear search to cache async jit info entries.
3558 * This assumes that the number of entries is small.
3561 /* Copy the table, adding a new entry at the end */
3562 old_table
= amodule
->async_jit_info_table
;
3564 len
= old_table
[0].method_index
;
3567 new_table
= (JitInfoMap
*)alloc0_jit_info_data (domain
, (len
+ 1) * sizeof (JitInfoMap
), async
);
3569 memcpy (new_table
, old_table
, len
* sizeof (JitInfoMap
));
3570 new_table
[0].method_index
= len
+ 1;
3571 new_table
[len
].method_index
= method_index
;
3572 new_table
[len
].jinfo
= jinfo
;
3574 mono_memory_barrier ();
3575 if (mono_atomic_cas_ptr ((volatile gpointer
*)&amodule
->async_jit_info_table
, new_table
, old_table
) == old_table
)
3579 mono_jit_info_table_add (domain
, jinfo
);
3582 if ((guint8
*)addr
>= (guint8
*)jinfo
->code_start
+ jinfo
->code_size
)
3583 /* addr is in the padding between methods, see the adjustment of code_size in decode_exception_debug_info () */
3590 decode_patch (MonoAotModule
*aot_module
, MonoMemPool
*mp
, MonoJumpInfo
*ji
, guint8
*buf
, guint8
**endbuf
)
3599 case MONO_PATCH_INFO_METHOD
:
3600 case MONO_PATCH_INFO_METHOD_JUMP
:
3601 case MONO_PATCH_INFO_ICALL_ADDR
:
3602 case MONO_PATCH_INFO_ICALL_ADDR_CALL
:
3603 case MONO_PATCH_INFO_METHOD_RGCTX
:
3604 case MONO_PATCH_INFO_METHOD_CODE_SLOT
: {
3608 res
= decode_method_ref (aot_module
, &ref
, p
, &p
, error
);
3609 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3613 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
)) {
3614 ji
->data
.target
= mono_create_ftnptr (mono_domain_get (), mono_create_jit_trampoline_from_token (ref
.image
, ref
.token
));
3615 ji
->type
= MONO_PATCH_INFO_ABS
;
3619 ji
->data
.method
= ref
.method
;
3622 ji
->data
.method
= mono_get_method_checked (ref
.image
, ref
.token
, NULL
, NULL
, error
);
3623 if (!ji
->data
.method
)
3624 g_error ("AOT Runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
3626 g_assert (ji
->data
.method
);
3627 mono_class_init (ji
->data
.method
->klass
);
3631 case MONO_PATCH_INFO_INTERNAL_METHOD
:
3632 case MONO_PATCH_INFO_JIT_ICALL_ADDR
:
3633 case MONO_PATCH_INFO_JIT_ICALL_ADDR_NOCALL
: {
3634 guint32 len
= decode_value (p
, &p
);
3636 ji
->data
.name
= (char*)p
;
3640 case MONO_PATCH_INFO_METHODCONST
:
3642 ji
->data
.method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3643 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3644 if (!ji
->data
.method
)
3647 case MONO_PATCH_INFO_VTABLE
:
3648 case MONO_PATCH_INFO_CLASS
:
3649 case MONO_PATCH_INFO_IID
:
3650 case MONO_PATCH_INFO_ADJUSTED_IID
:
3652 ji
->data
.klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3653 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3654 if (!ji
->data
.klass
)
3657 case MONO_PATCH_INFO_DELEGATE_TRAMPOLINE
:
3658 ji
->data
.del_tramp
= (MonoDelegateClassMethodPair
*)mono_mempool_alloc0 (mp
, sizeof (MonoDelegateClassMethodPair
));
3659 ji
->data
.del_tramp
->klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3660 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3661 if (!ji
->data
.del_tramp
->klass
)
3663 if (decode_value (p
, &p
)) {
3664 ji
->data
.del_tramp
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3665 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3666 if (!ji
->data
.del_tramp
->method
)
3669 ji
->data
.del_tramp
->is_virtual
= decode_value (p
, &p
) ? TRUE
: FALSE
;
3671 case MONO_PATCH_INFO_IMAGE
:
3672 ji
->data
.image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3673 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3674 if (!ji
->data
.image
)
3677 case MONO_PATCH_INFO_FIELD
:
3678 case MONO_PATCH_INFO_SFLDA
:
3680 ji
->data
.field
= decode_field_info (aot_module
, p
, &p
);
3681 if (!ji
->data
.field
)
3684 case MONO_PATCH_INFO_SWITCH
:
3685 ji
->data
.table
= (MonoJumpInfoBBTable
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoBBTable
));
3686 ji
->data
.table
->table_size
= decode_value (p
, &p
);
3687 table
= (void **)mono_domain_alloc (mono_domain_get (), sizeof (gpointer
) * ji
->data
.table
->table_size
);
3688 ji
->data
.table
->table
= (MonoBasicBlock
**)table
;
3689 for (i
= 0; i
< ji
->data
.table
->table_size
; i
++)
3690 table
[i
] = (gpointer
)(gssize
)decode_value (p
, &p
);
3692 case MONO_PATCH_INFO_R4
: {
3695 ji
->data
.target
= mono_domain_alloc0 (mono_domain_get (), sizeof (float));
3696 val
= decode_value (p
, &p
);
3697 *(float*)ji
->data
.target
= *(float*)&val
;
3700 case MONO_PATCH_INFO_R8
: {
3704 ji
->data
.target
= mono_domain_alloc0 (mono_domain_get (), sizeof (double));
3706 val
[0] = decode_value (p
, &p
);
3707 val
[1] = decode_value (p
, &p
);
3708 v
= ((guint64
)val
[1] << 32) | ((guint64
)val
[0]);
3709 *(double*)ji
->data
.target
= *(double*)&v
;
3712 case MONO_PATCH_INFO_LDSTR
:
3713 image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3714 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3717 ji
->data
.token
= mono_jump_info_token_new (mp
, image
, MONO_TOKEN_STRING
+ decode_value (p
, &p
));
3719 case MONO_PATCH_INFO_RVA
:
3720 case MONO_PATCH_INFO_DECLSEC
:
3721 case MONO_PATCH_INFO_LDTOKEN
:
3722 case MONO_PATCH_INFO_TYPE_FROM_HANDLE
:
3724 image
= load_image (aot_module
, decode_value (p
, &p
), error
);
3725 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3728 ji
->data
.token
= mono_jump_info_token_new (mp
, image
, decode_value (p
, &p
));
3730 ji
->data
.token
->has_context
= decode_value (p
, &p
);
3731 if (ji
->data
.token
->has_context
) {
3732 gboolean res
= decode_generic_context (aot_module
, &ji
->data
.token
->context
, p
, &p
, error
);
3733 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3738 case MONO_PATCH_INFO_EXC_NAME
:
3739 ji
->data
.klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3740 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3741 if (!ji
->data
.klass
)
3743 ji
->data
.name
= m_class_get_name (ji
->data
.klass
);
3745 case MONO_PATCH_INFO_METHOD_REL
:
3746 ji
->data
.offset
= decode_value (p
, &p
);
3748 case MONO_PATCH_INFO_INTERRUPTION_REQUEST_FLAG
:
3749 case MONO_PATCH_INFO_GC_CARD_TABLE_ADDR
:
3750 case MONO_PATCH_INFO_GC_NURSERY_START
:
3751 case MONO_PATCH_INFO_GC_NURSERY_BITS
:
3752 case MONO_PATCH_INFO_PROFILER_ALLOCATION_COUNT
:
3753 case MONO_PATCH_INFO_PROFILER_CLAUSE_COUNT
:
3755 case MONO_PATCH_INFO_CASTCLASS_CACHE
:
3756 ji
->data
.index
= decode_value (p
, &p
);
3758 case MONO_PATCH_INFO_RGCTX_FETCH
:
3759 case MONO_PATCH_INFO_RGCTX_SLOT_INDEX
: {
3761 MonoJumpInfoRgctxEntry
*entry
;
3762 guint32 offset
, val
;
3765 offset
= decode_value (p
, &p
);
3766 val
= decode_value (p
, &p
);
3768 entry
= (MonoJumpInfoRgctxEntry
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoRgctxEntry
));
3769 p2
= aot_module
->blob
+ offset
;
3770 entry
->method
= decode_resolve_method_ref (aot_module
, p2
, &p2
, error
);
3771 entry
->in_mrgctx
= ((val
& 1) > 0) ? TRUE
: FALSE
;
3772 entry
->info_type
= (MonoRgctxInfoType
)((val
>> 1) & 0xff);
3773 entry
->data
= (MonoJumpInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfo
));
3774 entry
->data
->type
= (MonoJumpInfoType
)((val
>> 9) & 0xff);
3775 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3777 res
= decode_patch (aot_module
, mp
, entry
->data
, p
, &p
);
3780 ji
->data
.rgctx_entry
= entry
;
3783 case MONO_PATCH_INFO_SEQ_POINT_INFO
:
3784 case MONO_PATCH_INFO_AOT_MODULE
:
3785 case MONO_PATCH_INFO_MSCORLIB_GOT_ADDR
:
3787 case MONO_PATCH_INFO_SIGNATURE
:
3788 case MONO_PATCH_INFO_GSHAREDVT_IN_WRAPPER
:
3789 ji
->data
.target
= decode_signature (aot_module
, p
, &p
);
3791 case MONO_PATCH_INFO_GSHAREDVT_CALL
: {
3792 MonoJumpInfoGSharedVtCall
*info
= (MonoJumpInfoGSharedVtCall
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoGSharedVtCall
));
3793 info
->sig
= decode_signature (aot_module
, p
, &p
);
3794 g_assert (info
->sig
);
3795 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3796 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3798 ji
->data
.target
= info
;
3801 case MONO_PATCH_INFO_GSHAREDVT_METHOD
: {
3802 MonoGSharedVtMethodInfo
*info
= (MonoGSharedVtMethodInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoGSharedVtMethodInfo
));
3805 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3806 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3808 info
->num_entries
= decode_value (p
, &p
);
3809 info
->count_entries
= info
->num_entries
;
3810 info
->entries
= (MonoRuntimeGenericContextInfoTemplate
*)mono_mempool_alloc0 (mp
, sizeof (MonoRuntimeGenericContextInfoTemplate
) * info
->num_entries
);
3811 for (i
= 0; i
< info
->num_entries
; ++i
) {
3812 MonoRuntimeGenericContextInfoTemplate
*template_
= &info
->entries
[i
];
3814 template_
->info_type
= (MonoRgctxInfoType
)decode_value (p
, &p
);
3815 switch (mini_rgctx_info_type_to_patch_info_type (template_
->info_type
)) {
3816 case MONO_PATCH_INFO_CLASS
: {
3817 MonoClass
*klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3818 mono_error_cleanup (error
); /* FIXME don't swallow the error */
3821 template_
->data
= m_class_get_byval_arg (klass
);
3824 case MONO_PATCH_INFO_FIELD
:
3825 template_
->data
= decode_field_info (aot_module
, p
, &p
);
3826 if (!template_
->data
)
3830 g_assert_not_reached ();
3834 ji
->data
.target
= info
;
3837 case MONO_PATCH_INFO_LDSTR_LIT
: {
3838 int len
= decode_value (p
, &p
);
3841 s
= (char *)mono_mempool_alloc0 (mp
, len
+ 1);
3842 memcpy (s
, p
, len
+ 1);
3845 ji
->data
.target
= s
;
3848 case MONO_PATCH_INFO_VIRT_METHOD
: {
3849 MonoJumpInfoVirtMethod
*info
= (MonoJumpInfoVirtMethod
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfoVirtMethod
));
3851 info
->klass
= decode_klass_ref (aot_module
, p
, &p
, error
);
3852 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3854 info
->method
= decode_resolve_method_ref (aot_module
, p
, &p
, error
);
3855 mono_error_assert_ok (error
); /* FIXME don't swallow the error */
3857 ji
->data
.target
= info
;
3860 case MONO_PATCH_INFO_GC_SAFE_POINT_FLAG
:
3861 case MONO_PATCH_INFO_JIT_THREAD_ATTACH
:
3863 case MONO_PATCH_INFO_GET_TLS_TRAMP
:
3864 case MONO_PATCH_INFO_SET_TLS_TRAMP
:
3865 case MONO_PATCH_INFO_AOT_JIT_INFO
:
3866 ji
->data
.index
= decode_value (p
, &p
);
3869 g_warning ("unhandled type %d", ji
->type
);
3870 g_assert_not_reached ();
3884 * Decode a list of patches identified by the got offsets in GOT_OFFSETS. Return an array of
3885 * MonoJumpInfo structures allocated from MP.
3887 static MonoJumpInfo
*
3888 decode_patches (MonoAotModule
*amodule
, MonoMemPool
*mp
, int n_patches
, gboolean llvm
, guint32
*got_offsets
)
3890 MonoJumpInfo
*patches
;
3893 guint32
*got_info_offsets
;
3898 got
= amodule
->llvm_got
;
3899 got_info_offsets
= (guint32
*)amodule
->llvm_got_info_offsets
;
3902 got_info_offsets
= (guint32
*)amodule
->got_info_offsets
;
3905 patches
= (MonoJumpInfo
*)mono_mempool_alloc0 (mp
, sizeof (MonoJumpInfo
) * n_patches
);
3906 for (i
= 0; i
< n_patches
; ++i
) {
3907 guint8
*p
= amodule
->blob
+ mono_aot_get_offset (got_info_offsets
, got_offsets
[i
]);
3910 ji
->type
= (MonoJumpInfoType
)decode_value (p
, &p
);
3912 /* See load_method () for SFLDA */
3913 if (got
&& got
[got_offsets
[i
]] && ji
->type
!= MONO_PATCH_INFO_SFLDA
) {
3914 /* Already loaded */
3916 res
= decode_patch (amodule
, mp
, ji
, p
, &p
);
3925 static MonoJumpInfo
*
3926 load_patch_info (MonoAotModule
*amodule
, MonoMemPool
*mp
, int n_patches
,
3927 gboolean llvm
, guint32
**got_slots
,
3928 guint8
*buf
, guint8
**endbuf
)
3930 MonoJumpInfo
*patches
;
3936 *got_slots
= (guint32
*)g_malloc (sizeof (guint32
) * n_patches
);
3937 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
3938 (*got_slots
)[pindex
] = decode_value (p
, &p
);
3941 patches
= decode_patches (amodule
, mp
, n_patches
, llvm
, *got_slots
);
3943 g_free (*got_slots
);
3953 register_jump_target_got_slot (MonoDomain
*domain
, MonoMethod
*method
, gpointer
*got_slot
)
3956 * Jump addresses cannot be patched by the trampoline code since it
3957 * does not have access to the caller's address. Instead, we collect
3958 * the addresses of the GOT slots pointing to a method, and patch
3959 * them after the method has been compiled.
3961 MonoJitDomainInfo
*info
= domain_jit_info (domain
);
3963 MonoMethod
*shared_method
= mini_method_to_shared (method
);
3964 method
= shared_method
? shared_method
: method
;
3966 mono_domain_lock (domain
);
3967 if (!info
->jump_target_got_slot_hash
)
3968 info
->jump_target_got_slot_hash
= g_hash_table_new (NULL
, NULL
);
3969 list
= (GSList
*)g_hash_table_lookup (info
->jump_target_got_slot_hash
, method
);
3970 list
= g_slist_prepend (list
, got_slot
);
3971 g_hash_table_insert (info
->jump_target_got_slot_hash
, method
, list
);
3972 mono_domain_unlock (domain
);
3978 * Load the method identified by METHOD_INDEX from the AOT image. Return a
3979 * pointer to the native code of the method, or NULL if not found.
3980 * METHOD might not be set if the caller only has the image/token info.
3983 load_method (MonoDomain
*domain
, MonoAotModule
*amodule
, MonoImage
*image
, MonoMethod
*method
, guint32 token
, int method_index
,
3986 MonoJitInfo
*jinfo
= NULL
;
3987 guint8
*code
= NULL
, *info
;
3992 init_amodule_got (amodule
);
3994 if (domain
!= mono_get_root_domain ())
3995 /* Non shared AOT code can't be used in other appdomains */
3998 if (amodule
->out_of_date
)
4001 if (amodule
->info
.llvm_get_method
) {
4003 * Obtain the method address by calling a generated function in the LLVM module.
4005 gpointer (*get_method
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_method
;
4006 code
= (guint8
*)get_method (method_index
);
4011 if (amodule
->methods
[method_index
] == GINT_TO_POINTER (-1)) {
4012 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4016 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4020 if (!(method
->iflags
& METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL
)) {
4021 full_name
= mono_method_full_name (method
, TRUE
);
4022 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: NOT FOUND: %s.", full_name
);
4028 code
= (guint8
*)amodule
->methods
[method_index
];
4031 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->method_info_offsets
, method_index
)];
4033 if (!amodule
->methods_loaded
) {
4034 amodule_lock (amodule
);
4035 if (!amodule
->methods_loaded
) {
4038 loaded
= g_new0 (guint32
, amodule
->info
.nmethods
/ 32 + 1);
4039 mono_memory_barrier ();
4040 amodule
->methods_loaded
= loaded
;
4042 amodule_unlock (amodule
);
4045 if ((amodule
->methods_loaded
[method_index
/ 32] >> (method_index
% 32)) & 0x1)
4048 if (mono_last_aot_method
!= -1) {
4049 gint32 methods_aot
= mono_atomic_load_i32 (&mono_jit_stats
.methods_aot
);
4050 if (methods_aot
>= mono_last_aot_method
)
4052 else if (methods_aot
== mono_last_aot_method
- 1) {
4054 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4059 char *name
= mono_method_full_name (method
, TRUE
);
4060 g_print ("LAST AOT METHOD: %s.\n", name
);
4063 g_print ("LAST AOT METHOD: %p %d\n", code
, method_index
);
4068 if (!(is_llvm_code (amodule
, code
) && (amodule
->info
.flags
& MONO_AOT_FILE_FLAG_LLVM_ONLY
)) ||
4069 (mono_llvm_only
&& method
&& method
->wrapper_type
== MONO_WRAPPER_NATIVE_TO_MANAGED
)) {
4070 res
= init_method (amodule
, method_index
, method
, NULL
, NULL
, error
);
4075 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4079 method
= mono_get_method_checked (image
, token
, NULL
, NULL
, error
);
4084 full_name
= mono_method_full_name (method
, TRUE
);
4087 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4089 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: FOUND method %s [%p - %p %p]", full_name
, code
, code
+ jinfo
->code_size
, info
);
4093 amodule_lock (amodule
);
4097 mono_atomic_inc_i32 (&mono_jit_stats
.methods_aot
);
4099 if (method
&& method
->wrapper_type
)
4100 g_hash_table_insert (amodule
->method_to_code
, method
, code
);
4102 /* Commit changes since methods_loaded is accessed outside the lock */
4103 mono_memory_barrier ();
4105 amodule
->methods_loaded
[method_index
/ 32] |= 1 << (method_index
% 32);
4107 amodule_unlock (amodule
);
4109 if (MONO_PROFILER_ENABLED (jit_begin
) || MONO_PROFILER_ENABLED (jit_done
)) {
4113 method
= mono_get_method_checked (amodule
->assembly
->image
, token
, NULL
, NULL
, error
);
4117 MONO_PROFILER_RAISE (jit_begin
, (method
));
4118 jinfo
= mono_jit_info_table_find (domain
, code
);
4120 MONO_PROFILER_RAISE (jit_done
, (method
, jinfo
));
4132 /** find_aot_method_in_amodule
4134 * \param code_amodule The AOT module containing the code pointer
4135 * \param method The method to find the code index for
4136 * \param hash_full The hash for the method
4139 find_aot_method_in_amodule (MonoAotModule
*code_amodule
, MonoMethod
*method
, guint32 hash_full
)
4142 guint32 table_size
, entry_size
, hash
;
4143 guint32
*table
, *entry
;
4145 static guint32 n_extra_decodes
;
4147 // The AOT module containing the MonoMethod
4148 // The reference to the metadata amodule will differ among multiple dedup methods
4149 // which mangle to the same name but live in different assemblies. This leads to
4150 // the caching breaking. The solution seems to be to cache using the "metadata" amodule.
4151 MonoAotModule
*metadata_amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
4153 if (!metadata_amodule
|| metadata_amodule
->out_of_date
|| !code_amodule
|| code_amodule
->out_of_date
)
4156 table_size
= code_amodule
->extra_method_table
[0];
4157 hash
= hash_full
% table_size
;
4158 table
= code_amodule
->extra_method_table
+ 1;
4161 entry
= &table
[hash
* entry_size
];
4168 guint32 key
= entry
[0];
4169 guint32 value
= entry
[1];
4170 guint32 next
= entry
[entry_size
- 1];
4174 p
= code_amodule
->blob
+ key
;
4177 amodule_lock (metadata_amodule
);
4178 if (!metadata_amodule
->method_ref_to_method
)
4179 metadata_amodule
->method_ref_to_method
= g_hash_table_new (NULL
, NULL
);
4180 m
= (MonoMethod
*)g_hash_table_lookup (metadata_amodule
->method_ref_to_method
, p
);
4181 amodule_unlock (metadata_amodule
);
4183 m
= decode_resolve_method_ref_with_target (code_amodule
, method
, p
, &p
, error
);
4184 mono_error_cleanup (error
); /* FIXME don't swallow the error */
4186 * Can't catche runtime invoke wrappers since it would break
4187 * the check in decode_method_ref_with_target ().
4189 if (m
&& m
->wrapper_type
!= MONO_WRAPPER_RUNTIME_INVOKE
) {
4190 amodule_lock (metadata_amodule
);
4191 g_hash_table_insert (metadata_amodule
->method_ref_to_method
, orig_p
, m
);
4192 amodule_unlock (metadata_amodule
);
4200 /* Methods decoded needlessly */
4202 //printf ("%d %s %s %p\n", n_extra_decodes, mono_method_full_name (method, TRUE), mono_method_full_name (m, TRUE), orig_p);
4207 entry
= &table
[next
* entry_size
];
4212 if (index
!= 0xffffff)
4213 g_assert (index
< code_amodule
->info
.nmethods
);
4219 add_module_cb (gpointer key
, gpointer value
, gpointer user_data
)
4221 g_ptr_array_add ((GPtrArray
*)user_data
, value
);
4225 mono_aot_can_dedup (MonoMethod
*method
)
4227 gboolean not_normal_gshared
= method
->is_inflated
&& !mono_method_is_generic_sharable_full (method
, TRUE
, FALSE
, FALSE
);
4228 gboolean extra_method
= (method
->wrapper_type
!= MONO_WRAPPER_NONE
) || not_normal_gshared
;
4230 return extra_method
;
4237 * Try finding METHOD in the extra_method table in all AOT images.
4238 * Return its method index, or 0xffffff if not found. Set OUT_AMODULE to the AOT
4239 * module where the method was found.
4242 find_aot_method (MonoMethod
*method
, MonoAotModule
**out_amodule
)
4247 guint32 hash
= mono_aot_method_hash (method
);
4249 /* Try the place we expect to have moved the method only
4250 * We don't probe, as that causes hard-to-debug issues when we fail
4251 * to find the method */
4252 if (container_amodule
&& mono_aot_can_dedup (method
)) {
4253 *out_amodule
= container_amodule
;
4254 index
= find_aot_method_in_amodule (container_amodule
, method
, hash
);
4258 /* Try the method's module first */
4259 *out_amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
4260 index
= find_aot_method_in_amodule ((MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
, method
, hash
);
4261 if (index
!= 0xffffff)
4265 * Try all other modules.
4266 * This is needed because generic instances klass->image points to the image
4267 * containing the generic definition, but the native code is generated to the
4268 * AOT image which contains the reference.
4271 /* Make a copy to avoid doing the search inside the aot lock */
4272 modules
= g_ptr_array_new ();
4274 g_hash_table_foreach (aot_modules
, add_module_cb
, modules
);
4278 for (i
= 0; i
< modules
->len
; ++i
) {
4279 MonoAotModule
*amodule
= (MonoAotModule
*)g_ptr_array_index (modules
, i
);
4281 if (amodule
!= m_class_get_image (method
->klass
)->aot_module
)
4282 index
= find_aot_method_in_amodule (amodule
, method
, hash
);
4283 if (index
!= 0xffffff) {
4284 *out_amodule
= amodule
;
4289 g_ptr_array_free (modules
, TRUE
);
4295 mono_aot_find_method_index (MonoMethod
*method
)
4297 MonoAotModule
*out_amodule
;
4298 return find_aot_method (method
, &out_amodule
);
4302 init_method (MonoAotModule
*amodule
, guint32 method_index
, MonoMethod
*method
, MonoClass
*init_class
, MonoGenericContext
*context
, MonoError
*error
)
4304 MonoDomain
*domain
= mono_domain_get ();
4306 MonoClass
*klass_to_run_ctor
= NULL
;
4307 gboolean from_plt
= method
== NULL
;
4308 int pindex
, n_patches
;
4310 MonoJitInfo
*jinfo
= NULL
;
4311 guint8
*code
, *info
;
4315 code
= (guint8
*)amodule
->methods
[method_index
];
4316 info
= &amodule
->blob
[mono_aot_get_offset (amodule
->method_info_offsets
, method_index
)];
4320 //does the method's class has a cctor?
4321 if (decode_value (p
, &p
) == 1)
4322 klass_to_run_ctor
= decode_klass_ref (amodule
, p
, &p
, error
);
4326 //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
4328 klass_to_run_ctor
= method
->klass
;
4330 n_patches
= decode_value (p
, &p
);
4333 MonoJumpInfo
*patches
;
4338 mp
= mono_mempool_new ();
4340 if ((gpointer
)code
>= amodule
->info
.jit_code_start
&& (gpointer
)code
<= amodule
->info
.jit_code_end
) {
4345 got
= amodule
->llvm_got
;
4349 patches
= load_patch_info (amodule
, mp
, n_patches
, llvm
, &got_slots
, p
, &p
);
4350 if (patches
== NULL
) {
4351 mono_mempool_destroy (mp
);
4355 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
4356 MonoJumpInfo
*ji
= &patches
[pindex
];
4360 * For SFLDA, we need to call resolve_patch_target () since the GOT slot could have
4361 * been initialized by load_method () for a static cctor before the cctor has
4362 * finished executing (#23242).
4364 if (!got
[got_slots
[pindex
]] || ji
->type
== MONO_PATCH_INFO_SFLDA
) {
4365 /* In llvm-only made, we might encounter shared methods */
4366 if (mono_llvm_only
&& ji
->type
== MONO_PATCH_INFO_METHOD
&& mono_method_check_context_used (ji
->data
.method
)) {
4368 ji
->data
.method
= mono_class_inflate_generic_method_checked (ji
->data
.method
, context
, error
);
4369 if (!mono_error_ok (error
)) {
4371 mono_mempool_destroy (mp
);
4375 /* This cannot be resolved in mono_resolve_patch_target () */
4376 if (ji
->type
== MONO_PATCH_INFO_AOT_JIT_INFO
) {
4377 // FIXME: Lookup using the index
4378 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4379 ji
->type
= MONO_PATCH_INFO_ABS
;
4380 ji
->data
.target
= jinfo
;
4382 addr
= mono_resolve_patch_target (method
, domain
, code
, ji
, TRUE
, error
);
4383 if (!mono_error_ok (error
)) {
4385 mono_mempool_destroy (mp
);
4388 if (ji
->type
== MONO_PATCH_INFO_METHOD_JUMP
)
4389 addr
= mono_create_ftnptr (domain
, addr
);
4390 mono_memory_barrier ();
4391 got
[got_slots
[pindex
]] = addr
;
4392 if (ji
->type
== MONO_PATCH_INFO_METHOD_JUMP
)
4393 register_jump_target_got_slot (domain
, ji
->data
.method
, &(got
[got_slots
[pindex
]]));
4395 ji
->type
= MONO_PATCH_INFO_NONE
;
4400 mono_mempool_destroy (mp
);
4403 if (mini_get_debug_options ()->load_aot_jit_info_eagerly
)
4404 jinfo
= mono_aot_find_jit_info (domain
, amodule
->assembly
->image
, code
);
4406 gboolean inited_ok
= TRUE
;
4408 MonoVTable
*vt
= mono_class_vtable_checked (domain
, init_class
, error
);
4412 inited_ok
= mono_runtime_class_init_full (vt
, error
);
4413 } else if (from_plt
&& klass_to_run_ctor
&& !mono_class_is_gtd (klass_to_run_ctor
)) {
4414 MonoVTable
*vt
= mono_class_vtable_checked (domain
, klass_to_run_ctor
, error
);
4418 inited_ok
= mono_runtime_class_init_full (vt
, error
);
4433 init_llvmonly_method (MonoAotModule
*amodule
, guint32 method_index
, MonoMethod
*method
, MonoClass
*init_class
, MonoGenericContext
*context
)
4438 res
= init_method (amodule
, method_index
, method
, init_class
, context
, error
);
4439 if (!is_ok (error
)) {
4440 MonoException
*ex
= mono_error_convert_to_exception (error
);
4441 /* Its okay to raise in llvmonly mode */
4443 mono_llvm_throw_exception ((MonoObject
*)ex
);
4448 mono_aot_init_llvm_method (gpointer aot_module
, guint32 method_index
)
4450 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4452 init_llvmonly_method (amodule
, method_index
, NULL
, NULL
, NULL
);
4456 mono_aot_init_gshared_method_this (gpointer aot_module
, guint32 method_index
, MonoObject
*this_obj
)
4458 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4460 MonoGenericContext
*context
;
4464 g_assert (this_obj
);
4465 klass
= this_obj
->vtable
->klass
;
4467 amodule_lock (amodule
);
4468 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
4469 amodule_unlock (amodule
);
4472 context
= mono_method_get_context (method
);
4475 init_llvmonly_method (amodule
, method_index
, NULL
, klass
, context
);
4479 mono_aot_init_gshared_method_mrgctx (gpointer aot_module
, guint32 method_index
, MonoMethodRuntimeGenericContext
*rgctx
)
4481 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4482 MonoGenericContext context
= { NULL
, NULL
};
4483 MonoClass
*klass
= rgctx
->class_vtable
->klass
;
4485 if (mono_class_is_ginst (klass
))
4486 context
.class_inst
= mono_class_get_generic_class (klass
)->context
.class_inst
;
4487 else if (mono_class_is_gtd (klass
))
4488 context
.class_inst
= mono_class_get_generic_container (klass
)->context
.class_inst
;
4489 context
.method_inst
= rgctx
->method_inst
;
4491 init_llvmonly_method (amodule
, method_index
, NULL
, rgctx
->class_vtable
->klass
, &context
);
4495 mono_aot_init_gshared_method_vtable (gpointer aot_module
, guint32 method_index
, MonoVTable
*vtable
)
4497 MonoAotModule
*amodule
= (MonoAotModule
*)aot_module
;
4499 MonoGenericContext
*context
;
4502 klass
= vtable
->klass
;
4504 amodule_lock (amodule
);
4505 method
= (MonoMethod
*)g_hash_table_lookup (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
));
4506 amodule_unlock (amodule
);
4509 context
= mono_method_get_context (method
);
4512 init_llvmonly_method (amodule
, method_index
, NULL
, klass
, context
);
4516 * mono_aot_get_method:
4518 * Return a pointer to the AOTed native code for METHOD if it can be found,
4520 * On platforms with function pointers, this doesn't return a function pointer.
4523 mono_aot_get_method (MonoDomain
*domain
, MonoMethod
*method
, MonoError
*error
)
4525 MonoClass
*klass
= method
->klass
;
4526 MonoMethod
*orig_method
= method
;
4527 guint32 method_index
;
4528 MonoAotModule
*amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
4530 gboolean cache_result
= FALSE
;
4531 ERROR_DECL_VALUE (inner_error
);
4535 if (domain
!= mono_get_root_domain ())
4536 /* Non shared AOT code can't be used in other appdomains */
4539 if (enable_aot_cache
&& !amodule
&& domain
->entry_assembly
&& m_class_get_image (klass
) == mono_defaults
.corlib
) {
4540 /* This cannot be AOTed during startup, so do it now */
4541 if (!mscorlib_aot_loaded
) {
4542 mscorlib_aot_loaded
= TRUE
;
4543 load_aot_module (m_class_get_image (klass
)->assembly
, NULL
);
4544 amodule
= (MonoAotModule
*)m_class_get_image (klass
)->aot_module
;
4551 if (amodule
->out_of_date
)
4554 if ((method
->iflags
& METHOD_IMPL_ATTRIBUTE_INTERNAL_CALL
) ||
4555 (method
->flags
& METHOD_ATTRIBUTE_PINVOKE_IMPL
) ||
4556 (method
->iflags
& METHOD_IMPL_ATTRIBUTE_RUNTIME
) ||
4557 (method
->flags
& METHOD_ATTRIBUTE_ABSTRACT
))
4561 * Use the original method instead of its invoke-with-check wrapper.
4562 * This is not a problem when using full-aot, since it doesn't support
4565 if (mono_aot_only
&& method
->wrapper_type
== MONO_WRAPPER_REMOTING_INVOKE_WITH_CHECK
)
4566 return mono_aot_get_method (domain
, mono_marshal_method_from_wrapper (method
), error
);
4568 g_assert (m_class_is_inited (klass
));
4570 /* Find method index */
4571 method_index
= 0xffffff;
4573 gboolean dedupable
= mono_aot_can_dedup (method
);
4575 if (method
->is_inflated
&& !method
->wrapper_type
&& mono_method_is_generic_sharable_full (method
, TRUE
, FALSE
, FALSE
) && !dedupable
) {
4576 MonoMethod
*orig_method
= method
;
4578 * For generic methods, we store the fully shared instance in place of the
4581 method
= mono_method_get_declaring_generic_method (method
);
4582 method_index
= mono_metadata_token_index (method
->token
) - 1;
4584 if (mono_llvm_only
) {
4585 /* Needed by mono_aot_init_gshared_method_this () */
4586 /* orig_method is a random instance but it is enough to make init_method () work */
4587 amodule_lock (amodule
);
4588 g_hash_table_insert (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
), orig_method
);
4589 amodule_unlock (amodule
);
4593 if (method_index
== 0xffffff && (method
->is_inflated
|| !method
->token
)) {
4594 /* This hash table is used to avoid the slower search in the extra_method_table in the AOT image */
4595 amodule_lock (amodule
);
4596 code
= (guint8
*)g_hash_table_lookup (amodule
->method_to_code
, method
);
4597 amodule_unlock (amodule
);
4601 cache_result
= TRUE
;
4602 if (method_index
== 0xffffff)
4603 method_index
= find_aot_method (method
, &amodule
);
4606 * Special case the ICollection<T> wrappers for arrays, as they cannot
4607 * be statically enumerated, and each wrapper ends up calling the same
4610 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_MANAGED
&& m_class_get_rank (method
->klass
) && strstr (method
->name
, "System.Collections.Generic")) {
4611 MonoMethod
*m
= mono_aot_get_array_helper_from_wrapper (method
);
4613 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4614 mono_error_cleanup (&inner_error
);
4620 * Special case Array.GetGenericValueImpl which is a generic icall.
4621 * Generic sharing currently can't handle it, but the icall returns data using
4622 * an out parameter, so the managed-to-native wrappers can share the same code.
4624 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_NATIVE
&& method
->klass
== mono_defaults
.array_class
&& !strcmp (method
->name
, "GetGenericValueImpl")) {
4626 MonoGenericContext ctx
;
4627 MonoType
*args
[16];
4629 if (mono_method_signature (method
)->params
[1]->type
== MONO_TYPE_OBJECT
)
4630 /* Avoid recursion */
4633 m
= mono_class_get_method_from_name (mono_defaults
.array_class
, "GetGenericValueImpl", 2);
4636 memset (&ctx
, 0, sizeof (ctx
));
4637 args
[0] = m_class_get_byval_arg (mono_defaults
.object_class
);
4638 ctx
.method_inst
= mono_metadata_get_generic_inst (1, args
);
4640 m
= mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m
, &ctx
, error
), TRUE
, TRUE
);
4642 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
4645 * Get the code for the <object> instantiation which should be emitted into
4646 * the mscorlib aot image by the AOT compiler.
4648 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4649 mono_error_cleanup (&inner_error
);
4654 const char *klass_name_space
= m_class_get_name_space (method
->klass
);
4655 const char *klass_name
= m_class_get_name (method
->klass
);
4656 /* Same for CompareExchange<T> and Exchange<T> */
4657 /* Same for Volatile.Read<T>/Write<T> */
4658 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_MANAGED_TO_NATIVE
&& m_class_get_image (method
->klass
) == mono_defaults
.corlib
&&
4659 ((!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]))) ||
4660 (!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
)))) ||
4661 (!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])))))) {
4663 MonoGenericContext ctx
;
4664 MonoType
*args
[16];
4665 gpointer iter
= NULL
;
4667 while ((m
= mono_class_get_methods (method
->klass
, &iter
))) {
4668 if (mono_method_signature (m
)->generic_param_count
&& !strcmp (m
->name
, method
->name
))
4673 memset (&ctx
, 0, sizeof (ctx
));
4674 args
[0] = mono_get_object_type ();
4675 ctx
.method_inst
= mono_metadata_get_generic_inst (1, args
);
4677 m
= mono_marshal_get_native_wrapper (mono_class_inflate_generic_method_checked (m
, &ctx
, error
), TRUE
, TRUE
);
4679 g_error ("AOT runtime could not load method due to %s", mono_error_get_message (error
)); /* FIXME don't swallow the error */
4681 /* Avoid recursion */
4686 * Get the code for the <object> instantiation which should be emitted into
4687 * the mscorlib aot image by the AOT compiler.
4689 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4690 mono_error_cleanup (&inner_error
);
4695 /* For ARRAY_ACCESSOR wrappers with reference types, use the <object> instantiation saved in corlib */
4696 if (method_index
== 0xffffff && method
->wrapper_type
== MONO_WRAPPER_UNKNOWN
) {
4697 WrapperInfo
*info
= mono_marshal_get_wrapper_info (method
);
4699 if (info
->subtype
== WRAPPER_SUBTYPE_ARRAY_ACCESSOR
) {
4700 MonoMethod
*array_method
= info
->d
.array_accessor
.method
;
4701 if (MONO_TYPE_IS_REFERENCE (m_class_get_byval_arg (m_class_get_element_class (array_method
->klass
)))) {
4704 if (!strcmp (array_method
->name
, "Set"))
4705 rank
= mono_method_signature (array_method
)->param_count
- 1;
4706 else if (!strcmp (array_method
->name
, "Get") || !strcmp (array_method
->name
, "Address"))
4707 rank
= mono_method_signature (array_method
)->param_count
;
4709 g_assert_not_reached ();
4710 MonoClass
*obj_array_class
= mono_class_create_array (mono_defaults
.object_class
, rank
);
4711 MonoMethod
*m
= mono_class_get_method_from_name (obj_array_class
, array_method
->name
, mono_method_signature (array_method
)->param_count
);
4714 m
= mono_marshal_get_array_accessor_wrapper (m
);
4716 code
= (guint8
*)mono_aot_get_method (domain
, m
, &inner_error
);
4717 mono_error_cleanup (&inner_error
);
4725 if (method_index
== 0xffffff && method
->is_inflated
&& mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, FALSE
)) {
4726 /* Partial sharing */
4729 shared
= mini_get_shared_method_full (method
, SHARE_MODE_NONE
, error
);
4730 return_val_if_nok (error
, NULL
);
4732 method_index
= find_aot_method (shared
, &amodule
);
4733 if (method_index
!= 0xffffff)
4737 if (method_index
== 0xffffff && method
->is_inflated
&& mono_method_is_generic_sharable_full (method
, FALSE
, FALSE
, TRUE
)) {
4740 /* Use the all-vt shared method since this is what was AOTed */
4741 shared
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
4745 method_index
= find_aot_method (shared
, &amodule
);
4746 if (method_index
!= 0xffffff) {
4747 method
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
4753 if (method_index
== 0xffffff) {
4754 if (mono_trace_is_traced (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
)) {
4757 full_name
= mono_method_full_name (method
, TRUE
);
4758 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT NOT FOUND: %s.", full_name
);
4764 if (method_index
== 0xffffff)
4767 /* Needed by find_jit_info */
4768 amodule_lock (amodule
);
4769 g_hash_table_insert (amodule
->extra_methods
, GUINT_TO_POINTER (method_index
), method
);
4770 amodule_unlock (amodule
);
4773 method_index
= mono_metadata_token_index (method
->token
) - 1;
4776 code
= (guint8
*)load_method (domain
, amodule
, m_class_get_image (klass
), method
, method
->token
, method_index
, error
);
4779 if (code
&& cache_result
) {
4780 amodule_lock (amodule
);
4781 g_hash_table_insert (amodule
->method_to_code
, orig_method
, code
);
4782 amodule_unlock (amodule
);
4788 * Same as mono_aot_get_method, but we try to avoid loading any metadata from the
4792 mono_aot_get_method_from_token (MonoDomain
*domain
, MonoImage
*image
, guint32 token
, MonoError
*error
)
4794 MonoAotModule
*aot_module
= (MonoAotModule
*)image
->aot_module
;
4803 method_index
= mono_metadata_token_index (token
) - 1;
4805 res
= load_method (domain
, aot_module
, image
, NULL
, token
, method_index
, error
);
4812 } IsGotEntryUserData
;
4815 check_is_got_entry (gpointer key
, gpointer value
, gpointer user_data
)
4817 IsGotEntryUserData
*data
= (IsGotEntryUserData
*)user_data
;
4818 MonoAotModule
*aot_module
= (MonoAotModule
*)value
;
4820 if (aot_module
->got
&& (data
->addr
>= (guint8
*)(aot_module
->got
)) && (data
->addr
< (guint8
*)(aot_module
->got
+ aot_module
->info
.got_size
)))
4825 mono_aot_is_got_entry (guint8
*code
, guint8
*addr
)
4827 IsGotEntryUserData user_data
;
4832 user_data
.addr
= addr
;
4833 user_data
.res
= FALSE
;
4835 g_hash_table_foreach (aot_modules
, check_is_got_entry
, &user_data
);
4838 return user_data
.res
;
4843 MonoAotModule
*module
;
4844 } FindAotModuleUserData
;
4847 find_aot_module_cb (gpointer key
, gpointer value
, gpointer user_data
)
4849 FindAotModuleUserData
*data
= (FindAotModuleUserData
*)user_data
;
4850 MonoAotModule
*aot_module
= (MonoAotModule
*)value
;
4852 if (amodule_contains_code_addr (aot_module
, data
->addr
))
4853 data
->module
= aot_module
;
4856 static inline MonoAotModule
*
4857 find_aot_module (guint8
*code
)
4859 FindAotModuleUserData user_data
;
4864 /* Reading these need no locking */
4865 if (((gsize
)code
< aot_code_low_addr
) || ((gsize
)code
> aot_code_high_addr
))
4868 user_data
.addr
= code
;
4869 user_data
.module
= NULL
;
4872 g_hash_table_foreach (aot_modules
, find_aot_module_cb
, &user_data
);
4875 return user_data
.module
;
4879 mono_aot_patch_plt_entry (guint8
*code
, guint8
*plt_entry
, gpointer
*got
, mgreg_t
*regs
, guint8
*addr
)
4881 MonoAotModule
*amodule
;
4884 * Since AOT code is only used in the root domain,
4885 * mono_domain_get () != mono_get_root_domain () means the calling method
4886 * is AppDomain:InvokeInDomain, so this is the same check as in
4887 * mono_method_same_domain () but without loading the metadata for the method.
4889 if (mono_domain_get () == mono_get_root_domain ()) {
4891 amodule
= find_aot_module (code
);
4895 mono_arch_patch_plt_entry (plt_entry
, got
, regs
, addr
);
4900 * mono_aot_plt_resolve:
4902 * This function is called by the entries in the PLT to resolve the actual method that
4903 * needs to be called. It returns a trampoline to the method and patches the PLT entry.
4904 * Returns NULL if the something cannot be loaded.
4907 mono_aot_plt_resolve (gpointer aot_module
, guint32 plt_info_offset
, guint8
*code
, MonoError
*error
)
4909 #ifdef MONO_ARCH_AOT_SUPPORTED
4910 guint8
*p
, *target
, *plt_entry
;
4912 MonoAotModule
*module
= (MonoAotModule
*)aot_module
;
4913 gboolean res
, no_ftnptr
= FALSE
;
4915 gboolean using_gsharedvt
= FALSE
;
4919 //printf ("DYN: %p %d\n", aot_module, plt_info_offset);
4921 p
= &module
->blob
[plt_info_offset
];
4923 ji
.type
= (MonoJumpInfoType
)decode_value (p
, &p
);
4925 mp
= mono_mempool_new ();
4926 res
= decode_patch (module
, mp
, &ji
, p
, &p
);
4929 mono_mempool_destroy (mp
);
4933 #ifdef MONO_ARCH_GSHAREDVT_SUPPORTED
4934 using_gsharedvt
= TRUE
;
4938 * Avoid calling resolve_patch_target in the full-aot case if possible, since
4939 * it would create a trampoline, and we don't need that.
4940 * We could do this only if the method does not need the special handling
4941 * in mono_magic_trampoline ().
4943 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
) &&
4944 !mono_method_needs_static_rgctx_invoke (ji
.data
.method
, FALSE
) && !using_gsharedvt
) {
4945 target
= (guint8
*)mono_jit_compile_method (ji
.data
.method
, error
);
4946 if (!mono_error_ok (error
)) {
4947 mono_mempool_destroy (mp
);
4952 target
= (guint8
*)mono_resolve_patch_target (NULL
, mono_domain_get (), NULL
, &ji
, TRUE
, error
);
4953 if (!mono_error_ok (error
)) {
4954 mono_mempool_destroy (mp
);
4960 * The trampoline expects us to return a function descriptor on platforms which use
4961 * it, but resolve_patch_target returns a direct function pointer for some type of
4962 * patches, so have to translate between the two.
4963 * FIXME: Clean this up, but how ?
4965 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
) {
4966 /* These should already have a function descriptor */
4967 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4968 /* Our function descriptors have a 0 environment, gcc created ones don't */
4969 if (ji
.type
!= MONO_PATCH_INFO_INTERNAL_METHOD
&& ji
.type
!= MONO_PATCH_INFO_JIT_ICALL_ADDR
&& ji
.type
!= MONO_PATCH_INFO_ICALL_ADDR
)
4970 g_assert (((gpointer
*)target
) [2] == 0);
4973 } else if (!no_ftnptr
) {
4974 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
4975 g_assert (((gpointer
*)target
) [2] != 0);
4977 target
= (guint8
*)mono_create_ftnptr (mono_domain_get (), target
);
4980 mono_mempool_destroy (mp
);
4982 /* Patch the PLT entry with target which might be the actual method not a trampoline */
4983 plt_entry
= mono_aot_get_plt_entry (code
);
4984 g_assert (plt_entry
);
4985 mono_aot_patch_plt_entry (code
, plt_entry
, module
->got
, NULL
, target
);
4989 g_assert_not_reached ();
4997 * Initialize the PLT table of the AOT module. Called lazily when the first AOT
4998 * method in the module is loaded to avoid committing memory by writing to it.
4999 * LOCKING: Assumes the AMODULE lock is held.
5002 init_plt (MonoAotModule
*amodule
)
5007 if (amodule
->plt_inited
)
5010 if (amodule
->info
.plt_size
<= 1) {
5011 amodule
->plt_inited
= TRUE
;
5015 tramp
= mono_create_specific_trampoline (amodule
, MONO_TRAMPOLINE_AOT_PLT
, mono_get_root_domain (), NULL
);
5018 * Initialize the PLT entries in the GOT to point to the default targets.
5021 tramp
= mono_create_ftnptr (mono_domain_get (), tramp
);
5022 for (i
= 1; i
< amodule
->info
.plt_size
; ++i
)
5023 /* All the default entries point to the AOT trampoline */
5024 ((gpointer
*)amodule
->got
)[amodule
->info
.plt_got_offset_base
+ i
] = tramp
;
5026 amodule
->plt_inited
= TRUE
;
5030 * mono_aot_get_plt_entry:
5032 * Return the address of the PLT entry called by the code at CODE if exists.
5035 mono_aot_get_plt_entry (guint8
*code
)
5037 MonoAotModule
*amodule
= find_aot_module (code
);
5038 guint8
*target
= NULL
;
5044 if (is_thumb_code (amodule
, code
- 4))
5045 return mono_arm_get_thumb_plt_entry (code
);
5048 #ifdef MONO_ARCH_AOT_SUPPORTED
5049 target
= mono_arch_get_call_target (code
);
5051 g_assert_not_reached ();
5055 while (target
!= NULL
) {
5056 if ((target
>= (guint8
*)(amodule
->plt
)) && (target
< (guint8
*)(amodule
->plt_end
)))
5059 // Add 4 since mono_arch_get_call_target assumes we're passing
5060 // the instruction after the actual branch instruction.
5061 target
= mono_arch_get_call_target (target
+ 4);
5066 if ((target
>= (guint8
*)(amodule
->plt
)) && (target
< (guint8
*)(amodule
->plt_end
)))
5074 * mono_aot_get_plt_info_offset:
5076 * Return the PLT info offset belonging to the plt entry called by CODE.
5079 mono_aot_get_plt_info_offset (mgreg_t
*regs
, guint8
*code
)
5081 guint8
*plt_entry
= mono_aot_get_plt_entry (code
);
5083 g_assert (plt_entry
);
5085 /* The offset is embedded inside the code after the plt entry */
5086 #ifdef MONO_ARCH_AOT_SUPPORTED
5087 return mono_arch_get_plt_info_offset (plt_entry
, regs
, code
);
5089 g_assert_not_reached ();
5095 mono_create_ftnptr_malloc (guint8
*code
)
5097 #ifdef PPC_USES_FUNCTION_DESCRIPTOR
5098 MonoPPCFunctionDescriptor
*ftnptr
= g_malloc0 (sizeof (MonoPPCFunctionDescriptor
));
5100 ftnptr
->code
= code
;
5111 * mono_aot_register_jit_icall:
5113 * Register a JIT icall which is called by trampolines in full-aot mode. This should
5114 * be called from mono_arch_init () during startup.
5117 mono_aot_register_jit_icall (const char *name
, gpointer addr
)
5119 /* No need for locking */
5120 if (!aot_jit_icall_hash
)
5121 aot_jit_icall_hash
= g_hash_table_new (g_str_hash
, g_str_equal
);
5122 g_hash_table_insert (aot_jit_icall_hash
, (char*)name
, addr
);
5126 * load_function_full:
5128 * Load the function named NAME from the aot image.
5131 load_function_full (MonoAotModule
*amodule
, const char *name
, MonoTrampInfo
**out_tinfo
)
5135 int n_patches
, pindex
;
5138 guint32 info_offset
;
5142 symbol
= g_strdup_printf ("%s", name
);
5143 find_amodule_symbol (amodule
, symbol
, (gpointer
*)&code
);
5146 g_error ("Symbol '%s' not found in AOT file '%s'.\n", name
, amodule
->aot_name
);
5148 mono_trace (G_LOG_LEVEL_DEBUG
, MONO_TRACE_AOT
, "AOT: FOUND function '%s' in AOT file '%s'.", name
, amodule
->aot_name
);
5152 symbol
= g_strdup_printf ("%s_p", name
);
5153 find_amodule_symbol (amodule
, symbol
, (gpointer
*)&p
);
5156 /* Nothing to patch */
5159 info_offset
= *(guint32
*)p
;
5161 MonoTrampInfo
*tinfo
;
5162 guint32 code_size
, uw_info_len
, uw_offset
;
5164 /* Construct a MonoTrampInfo from the data in the AOT image */
5166 p
+= sizeof (guint32
);
5167 code_size
= *(guint32
*)p
;
5168 p
+= sizeof (guint32
);
5169 uw_offset
= *(guint32
*)p
;
5170 uw_info
= amodule
->unwind_info
+ uw_offset
;
5171 uw_info_len
= decode_value (uw_info
, &uw_info
);
5173 tinfo
= g_new0 (MonoTrampInfo
, 1);
5174 tinfo
->code
= (guint8
*)code
;
5175 tinfo
->code_size
= code_size
;
5176 tinfo
->uw_info_len
= uw_info_len
;
5178 tinfo
->uw_info
= uw_info
;
5183 p
= amodule
->blob
+ info_offset
;
5185 /* Similar to mono_aot_load_method () */
5187 n_patches
= decode_value (p
, &p
);
5190 MonoJumpInfo
*patches
;
5193 mp
= mono_mempool_new ();
5195 patches
= load_patch_info (amodule
, mp
, n_patches
, FALSE
, &got_slots
, p
, &p
);
5198 for (pindex
= 0; pindex
< n_patches
; ++pindex
) {
5199 MonoJumpInfo
*ji
= &patches
[pindex
];
5203 if (amodule
->got
[got_slots
[pindex
]])
5207 * When this code is executed, the runtime may not be initalized yet, so
5208 * resolve the patch info by hand.
5210 if (ji
->type
== MONO_PATCH_INFO_JIT_ICALL_ADDR
) {
5211 if (!strcmp (ji
->data
.name
, "mono_get_lmf_addr")) {
5212 target
= mono_get_lmf_addr
;
5213 } else if (!strcmp (ji
->data
.name
, "mono_thread_force_interruption_checkpoint_noraise")) {
5214 target
= mono_thread_force_interruption_checkpoint_noraise
;
5215 } else if (!strcmp (ji
->data
.name
, "mono_exception_from_token")) {
5216 target
= mono_exception_from_token
;
5217 } else if (!strcmp (ji
->data
.name
, "mono_throw_exception")) {
5218 target
= mono_get_throw_exception ();
5219 } else if (strstr (ji
->data
.name
, "trampoline_func_") == ji
->data
.name
) {
5220 MonoTrampolineType tramp_type2
= (MonoTrampolineType
)atoi (ji
->data
.name
+ strlen ("trampoline_func_"));
5221 target
= (gpointer
)mono_get_trampoline_func (tramp_type2
);
5222 } else if (strstr (ji
->data
.name
, "specific_trampoline_lazy_fetch_") == ji
->data
.name
) {
5223 /* atoll is needed because the the offset is unsigned */
5227 res
= sscanf (ji
->data
.name
, "specific_trampoline_lazy_fetch_%u", &slot
);
5228 g_assert (res
== 1);
5229 target
= mono_create_specific_trampoline (GUINT_TO_POINTER (slot
), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH
, mono_get_root_domain (), NULL
);
5230 target
= mono_create_ftnptr_malloc ((guint8
*)target
);
5231 } else if (!strcmp (ji
->data
.name
, "debugger_agent_single_step_from_context")) {
5232 target
= mini_get_dbg_callbacks ()->single_step_from_context
;
5233 } else if (!strcmp (ji
->data
.name
, "debugger_agent_breakpoint_from_context")) {
5234 target
= mini_get_dbg_callbacks ()->breakpoint_from_context
;
5235 } else if (!strcmp (ji
->data
.name
, "throw_exception_addr")) {
5236 target
= mono_get_throw_exception_addr ();
5237 } else if (strstr (ji
->data
.name
, "generic_trampoline_")) {
5238 target
= mono_aot_get_trampoline (ji
->data
.name
);
5239 } else if (aot_jit_icall_hash
&& g_hash_table_lookup (aot_jit_icall_hash
, ji
->data
.name
)) {
5240 /* Registered by mono_arch_init () */
5241 target
= g_hash_table_lookup (aot_jit_icall_hash
, ji
->data
.name
);
5243 fprintf (stderr
, "Unknown relocation '%s'\n", ji
->data
.name
);
5244 g_assert_not_reached ();
5248 /* Hopefully the code doesn't have patches which need method or
5251 target
= mono_resolve_patch_target (NULL
, NULL
, (guint8
*)code
, ji
, FALSE
, error
);
5252 mono_error_assert_ok (error
);
5256 amodule
->got
[got_slots
[pindex
]] = target
;
5261 mono_mempool_destroy (mp
);
5268 load_function (MonoAotModule
*amodule
, const char *name
)
5270 return load_function_full (amodule
, name
, NULL
);
5273 static MonoAotModule
*
5274 get_mscorlib_aot_module (void)
5277 MonoAotModule
*amodule
;
5279 image
= mono_defaults
.corlib
;
5281 amodule
= (MonoAotModule
*)image
->aot_module
;
5283 amodule
= mscorlib_aot_module
;
5289 no_trampolines (void)
5291 g_assert_not_reached ();
5295 * Return the trampoline identified by NAME from the mscorlib AOT file.
5296 * On ppc64, this returns a function descriptor.
5299 mono_aot_get_trampoline_full (const char *name
, MonoTrampInfo
**out_tinfo
)
5301 MonoAotModule
*amodule
= get_mscorlib_aot_module ();
5303 if (mono_llvm_only
) {
5305 return no_trampolines
;
5308 return mono_create_ftnptr_malloc ((guint8
*)load_function_full (amodule
, name
, out_tinfo
));
5312 mono_aot_get_trampoline (const char *name
)
5314 MonoTrampInfo
*out_tinfo
;
5317 code
= mono_aot_get_trampoline_full (name
, &out_tinfo
);
5318 mono_aot_tramp_info_register (out_tinfo
, NULL
);
5324 read_unwind_info (MonoAotModule
*amodule
, MonoTrampInfo
*info
, const char *symbol_name
)
5326 gpointer symbol_addr
;
5327 guint32 uw_offset
, uw_info_len
;
5330 find_amodule_symbol (amodule
, symbol_name
, &symbol_addr
);
5335 uw_offset
= *(guint32
*)symbol_addr
;
5336 uw_info
= amodule
->unwind_info
+ uw_offset
;
5337 uw_info_len
= decode_value (uw_info
, &uw_info
);
5339 info
->uw_info_len
= uw_info_len
;
5341 info
->uw_info
= uw_info
;
5343 info
->uw_info
= NULL
;
5345 /* If successful return the address of the following data */
5346 return (guint32
*)symbol_addr
+ 1;
5350 #include <mach/mach.h>
5352 static TrampolinePage
* trampoline_pages
[MONO_AOT_TRAMP_NUM
];
5355 read_page_trampoline_uwinfo (MonoTrampInfo
*info
, int tramp_type
, gboolean is_generic
)
5357 char symbol_name
[128];
5359 if (tramp_type
== MONO_AOT_TRAMP_SPECIFIC
)
5360 sprintf (symbol_name
, "specific_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5361 else if (tramp_type
== MONO_AOT_TRAMP_STATIC_RGCTX
)
5362 sprintf (symbol_name
, "rgctx_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5363 else if (tramp_type
== MONO_AOT_TRAMP_IMT
)
5364 sprintf (symbol_name
, "imt_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5365 else if (tramp_type
== MONO_AOT_TRAMP_GSHAREDVT_ARG
)
5366 sprintf (symbol_name
, "gsharedvt_trampolines_page_%s_p", is_generic
? "gen" : "sp");
5368 g_assert_not_reached ();
5370 read_unwind_info (mono_defaults
.corlib
->aot_module
, info
, symbol_name
);
5373 static unsigned char*
5374 get_new_trampoline_from_page (int tramp_type
)
5376 MonoAotModule
*amodule
;
5378 TrampolinePage
*page
;
5381 vm_address_t addr
, taddr
;
5383 vm_prot_t prot
, max_prot
;
5384 int psize
, specific_trampoline_size
;
5385 unsigned char *code
;
5387 specific_trampoline_size
= 2 * sizeof (gpointer
);
5389 mono_aot_page_lock ();
5390 page
= trampoline_pages
[tramp_type
];
5391 if (page
&& page
->trampolines
< page
->trampolines_end
) {
5392 code
= page
->trampolines
;
5393 page
->trampolines
+= specific_trampoline_size
;
5394 mono_aot_page_unlock ();
5397 mono_aot_page_unlock ();
5398 /* the trampoline template page is in the mscorlib module */
5399 image
= mono_defaults
.corlib
;
5402 psize
= MONO_AOT_TRAMP_PAGE_SIZE
;
5404 amodule
= image
->aot_module
;
5407 if (tramp_type
== MONO_AOT_TRAMP_SPECIFIC
)
5408 tpage
= load_function (amodule
, "specific_trampolines_page");
5409 else if (tramp_type
== MONO_AOT_TRAMP_STATIC_RGCTX
)
5410 tpage
= load_function (amodule
, "rgctx_trampolines_page");
5411 else if (tramp_type
== MONO_AOT_TRAMP_IMT
)
5412 tpage
= load_function (amodule
, "imt_trampolines_page");
5413 else if (tramp_type
== MONO_AOT_TRAMP_GSHAREDVT_ARG
)
5414 tpage
= load_function (amodule
, "gsharedvt_arg_trampolines_page");
5416 g_error ("Incorrect tramp type for trampolines page");
5418 /*g_warning ("loaded trampolines page at %x", tpage);*/
5420 /* avoid the unlikely case of looping forever */
5423 while (page
== NULL
&& count
-- > 0) {
5424 MonoTrampInfo
*gen_info
, *sp_info
;
5427 /* allocate two contiguous pages of memory: the first page will contain the data (like a local constant pool)
5428 * while the second will contain the trampolines.
5431 ret
= vm_allocate (mach_task_self (), &addr
, psize
* 2, VM_FLAGS_ANYWHERE
);
5432 } while (ret
== KERN_ABORTED
);
5433 if (ret
!= KERN_SUCCESS
) {
5434 g_error ("Cannot allocate memory for trampolines: %d", ret
);
5437 /*g_warning ("allocated trampoline double page at %x", addr);*/
5438 /* replace the second page with a remapped trampoline page */
5439 taddr
= addr
+ psize
;
5440 vm_deallocate (mach_task_self (), taddr
, psize
);
5441 ret
= vm_remap (mach_task_self (), &taddr
, psize
, 0, FALSE
, mach_task_self(), (vm_address_t
)tpage
, FALSE
, &prot
, &max_prot
, VM_INHERIT_SHARE
);
5442 if (ret
!= KERN_SUCCESS
) {
5443 /* someone else got the page, try again */
5444 vm_deallocate (mach_task_self (), addr
, psize
);
5447 /*g_warning ("remapped trampoline page at %x", taddr);*/
5449 mono_aot_page_lock ();
5450 page
= trampoline_pages
[tramp_type
];
5451 /* some other thread already allocated, so use that to avoid wasting memory */
5452 if (page
&& page
->trampolines
< page
->trampolines_end
) {
5453 code
= page
->trampolines
;
5454 page
->trampolines
+= specific_trampoline_size
;
5455 mono_aot_page_unlock ();
5456 vm_deallocate (mach_task_self (), addr
, psize
);
5457 vm_deallocate (mach_task_self (), taddr
, psize
);
5460 page
= (TrampolinePage
*)addr
;
5461 page
->next
= trampoline_pages
[tramp_type
];
5462 trampoline_pages
[tramp_type
] = page
;
5463 page
->trampolines
= (void*)(taddr
+ amodule
->info
.tramp_page_code_offsets
[tramp_type
]);
5464 page
->trampolines_end
= (void*)(taddr
+ psize
- 64);
5465 code
= page
->trampolines
;
5466 page
->trampolines
+= specific_trampoline_size
;
5467 mono_aot_page_unlock ();
5469 /* Register the generic part at the beggining of the trampoline page */
5470 gen_info
= mono_tramp_info_create (NULL
, (guint8
*)taddr
, amodule
->info
.tramp_page_code_offsets
[tramp_type
], NULL
, NULL
);
5471 read_page_trampoline_uwinfo (gen_info
, tramp_type
, TRUE
);
5472 mono_aot_tramp_info_register (gen_info
, NULL
);
5475 * Registering each specific trampoline produces a lot of
5476 * MonoJitInfo structures. Jump trampolines are also registered
5479 if (tramp_type
!= MONO_AOT_TRAMP_SPECIFIC
) {
5480 /* Register the rest of the page as a single trampoline */
5481 sp_info
= mono_tramp_info_create (NULL
, code
, page
->trampolines_end
- code
, NULL
, NULL
);
5482 read_page_trampoline_uwinfo (sp_info
, tramp_type
, FALSE
);
5483 mono_aot_tramp_info_register (sp_info
, NULL
);
5487 g_error ("Cannot allocate more trampoline pages: %d", ret
);
5492 static unsigned char*
5493 get_new_trampoline_from_page (int tramp_type
)
5495 g_error ("Page trampolines not supported.");
5502 get_new_specific_trampoline_from_page (gpointer tramp
, gpointer arg
)
5507 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_SPECIFIC
);
5509 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5512 /*g_warning ("new trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5518 get_new_rgctx_trampoline_from_page (gpointer tramp
, gpointer arg
)
5523 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_STATIC_RGCTX
);
5525 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5528 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5534 get_new_imt_trampoline_from_page (gpointer arg
)
5539 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_IMT
);
5541 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5543 /*g_warning ("new imt trampoline at %p for data %p, (stored at %p)", code, arg, data);*/
5549 get_new_gsharedvt_arg_trampoline_from_page (gpointer tramp
, gpointer arg
)
5554 code
= get_new_trampoline_from_page (MONO_AOT_TRAMP_GSHAREDVT_ARG
);
5556 data
= (gpointer
*)((char*)code
- MONO_AOT_TRAMP_PAGE_SIZE
);
5559 /*g_warning ("new rgctx trampoline at %p for data %p, tramp %p (stored at %p)", code, arg, tramp, data);*/
5563 /* Return a given kind of trampoline */
5564 /* FIXME set unwind info for these trampolines */
5566 get_numerous_trampoline (MonoAotTrampoline tramp_type
, int n_got_slots
, MonoAotModule
**out_amodule
, guint32
*got_offset
, guint32
*out_tramp_size
)
5569 MonoAotModule
*amodule
= get_mscorlib_aot_module ();
5570 int index
, tramp_size
;
5572 /* Currently, we keep all trampolines in the mscorlib AOT image */
5573 image
= mono_defaults
.corlib
;
5575 *out_amodule
= amodule
;
5580 #define MONOTOUCH_TRAMPOLINES_ERROR ". See http://docs.xamarin.com/ios/troubleshooting for instructions on how to fix this condition."
5582 #define MONOTOUCH_TRAMPOLINES_ERROR ""
5584 if (amodule
->trampoline_index
[tramp_type
] == amodule
->info
.num_trampolines
[tramp_type
]) {
5585 g_error ("Ran out of trampolines of type %d in '%s' (limit %d)%s\n",
5586 tramp_type
, image
? image
->name
: "mscorlib", amodule
->info
.num_trampolines
[tramp_type
], MONOTOUCH_TRAMPOLINES_ERROR
);
5588 index
= amodule
->trampoline_index
[tramp_type
] ++;
5592 *got_offset
= amodule
->info
.trampoline_got_offset_base
[tramp_type
] + (index
* n_got_slots
);
5594 tramp_size
= amodule
->info
.trampoline_size
[tramp_type
];
5597 *out_tramp_size
= tramp_size
;
5599 return amodule
->trampolines
[tramp_type
] + (index
* tramp_size
);
5603 no_specific_trampoline (void)
5605 g_assert_not_reached ();
5609 * Return a specific trampoline from the AOT file.
5612 mono_aot_create_specific_trampoline (MonoImage
*image
, gpointer arg1
, MonoTrampolineType tramp_type
, MonoDomain
*domain
, guint32
*code_len
)
5614 MonoAotModule
*amodule
;
5615 guint32 got_offset
, tramp_size
;
5616 guint8
*code
, *tramp
;
5617 static gpointer generic_trampolines
[MONO_TRAMPOLINE_NUM
];
5618 static gboolean inited
;
5619 static guint32 num_trampolines
;
5621 if (mono_llvm_only
) {
5623 return no_specific_trampoline
;
5630 mono_counters_register ("Specific trampolines", MONO_COUNTER_JIT
| MONO_COUNTER_INT
, &num_trampolines
);
5639 if (!generic_trampolines
[tramp_type
]) {
5642 symbol
= mono_get_generic_trampoline_name (tramp_type
);
5643 generic_trampolines
[tramp_type
] = mono_aot_get_trampoline (symbol
);
5647 tramp
= (guint8
*)generic_trampolines
[tramp_type
];
5650 if (USE_PAGE_TRAMPOLINES
) {
5651 code
= (guint8
*)get_new_specific_trampoline_from_page (tramp
, arg1
);
5654 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_SPECIFIC
, 2, &amodule
, &got_offset
, &tramp_size
);
5656 amodule
->got
[got_offset
] = tramp
;
5657 amodule
->got
[got_offset
+ 1] = arg1
;
5661 *code_len
= tramp_size
;
5667 mono_aot_get_static_rgctx_trampoline (gpointer ctx
, gpointer addr
)
5669 MonoAotModule
*amodule
;
5673 if (USE_PAGE_TRAMPOLINES
) {
5674 code
= (guint8
*)get_new_rgctx_trampoline_from_page (addr
, ctx
);
5676 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_STATIC_RGCTX
, 2, &amodule
, &got_offset
, NULL
);
5678 amodule
->got
[got_offset
] = ctx
;
5679 amodule
->got
[got_offset
+ 1] = addr
;
5682 /* The caller expects an ftnptr */
5683 return mono_create_ftnptr (mono_domain_get (), code
);
5687 mono_aot_get_unbox_trampoline (MonoMethod
*method
)
5690 guint32 method_index
= mono_metadata_token_index (method
->token
) - 1;
5691 MonoAotModule
*amodule
;
5693 guint32
*ut
, *ut_end
, *entry
;
5694 int low
, high
, entry_index
= 0;
5695 gpointer symbol_addr
;
5696 MonoTrampInfo
*tinfo
;
5698 if (method
->is_inflated
&& !mono_method_is_generic_sharable_full (method
, FALSE
, FALSE
, FALSE
)) {
5699 method_index
= find_aot_method (method
, &amodule
);
5700 if (method_index
== 0xffffff && mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, FALSE
)) {
5701 MonoMethod
*shared
= mini_get_shared_method_full (method
, SHARE_MODE_NONE
, error
);
5702 mono_error_assert_ok (error
);
5703 method_index
= find_aot_method (shared
, &amodule
);
5705 if (method_index
== 0xffffff && mono_method_is_generic_sharable_full (method
, FALSE
, TRUE
, TRUE
)) {
5706 MonoMethod
*shared
= mini_get_shared_method_full (method
, SHARE_MODE_GSHAREDVT
, error
);
5707 mono_error_assert_ok (error
);
5709 method_index
= find_aot_method (shared
, &amodule
);
5711 g_assert (method_index
!= 0xffffff);
5713 amodule
= (MonoAotModule
*)m_class_get_image (method
->klass
)->aot_module
;
5717 if (amodule
->info
.llvm_get_unbox_tramp
) {
5718 gpointer (*get_tramp
) (int) = (gpointer (*)(int))amodule
->info
.llvm_get_unbox_tramp
;
5719 code
= get_tramp (method_index
);
5725 ut
= amodule
->unbox_trampolines
;
5726 ut_end
= amodule
->unbox_trampolines_end
;
5728 /* Do a binary search in the sorted table */
5731 high
= (ut_end
- ut
);
5732 while (low
< high
) {
5733 entry_index
= (low
+ high
) / 2;
5734 entry
= &ut
[entry_index
];
5735 if (entry
[0] < method_index
) {
5736 low
= entry_index
+ 1;
5737 } else if (entry
[0] > method_index
) {
5744 code
= get_call_table_entry (amodule
->unbox_trampoline_addresses
, entry_index
);
5747 tinfo
= mono_tramp_info_create (NULL
, (guint8
*)code
, 0, NULL
, NULL
);
5749 symbol_addr
= read_unwind_info (amodule
, tinfo
, "unbox_trampoline_p");
5751 mono_tramp_info_free (tinfo
);
5755 tinfo
->code_size
= *(guint32
*)symbol_addr
;
5756 mono_aot_tramp_info_register (tinfo
, NULL
);
5758 /* The caller expects an ftnptr */
5759 return mono_create_ftnptr (mono_domain_get (), code
);
5763 mono_aot_get_lazy_fetch_trampoline (guint32 slot
)
5767 MonoAotModule
*amodule
= (MonoAotModule
*)mono_defaults
.corlib
->aot_module
;
5768 guint32 index
= MONO_RGCTX_SLOT_INDEX (slot
);
5769 static int count
= 0;
5772 if (index
>= amodule
->info
.num_rgctx_fetch_trampolines
) {
5773 static gpointer addr
;
5777 * Use the general version of the rgctx fetch trampoline. It receives a pair of <slot, trampoline> in the rgctx arg reg.
5780 addr
= load_function (amodule
, "rgctx_fetch_trampoline_general");
5781 info
= (void **)mono_domain_alloc0 (mono_get_root_domain (), sizeof (gpointer
) * 2);
5782 info
[0] = GUINT_TO_POINTER (slot
);
5783 info
[1] = mono_create_specific_trampoline (GUINT_TO_POINTER (slot
), MONO_TRAMPOLINE_RGCTX_LAZY_FETCH
, mono_get_root_domain (), NULL
);
5784 code
= mono_aot_get_static_rgctx_trampoline (info
, addr
);
5785 return mono_create_ftnptr (mono_domain_get (), code
);
5788 symbol
= mono_get_rgctx_fetch_trampoline_name (slot
);
5789 code
= load_function ((MonoAotModule
*)mono_defaults
.corlib
->aot_module
, symbol
);
5791 /* The caller expects an ftnptr */
5792 return mono_create_ftnptr (mono_domain_get (), code
);
5796 no_imt_trampoline (void)
5798 g_assert_not_reached ();
5802 mono_aot_get_imt_trampoline (MonoVTable
*vtable
, MonoDomain
*domain
, MonoIMTCheckItem
**imt_entries
, int count
, gpointer fail_tramp
)
5807 int i
, index
, real_count
;
5808 MonoAotModule
*amodule
;
5811 return no_imt_trampoline
;
5814 for (i
= 0; i
< count
; ++i
) {
5815 MonoIMTCheckItem
*item
= imt_entries
[i
];
5817 if (item
->is_equals
)
5821 /* Save the entries into an array */
5822 buf
= (void **)mono_domain_alloc (domain
, (real_count
+ 1) * 2 * sizeof (gpointer
));
5824 for (i
= 0; i
< count
; ++i
) {
5825 MonoIMTCheckItem
*item
= imt_entries
[i
];
5827 if (!item
->is_equals
)
5830 g_assert (item
->key
);
5832 buf
[(index
* 2)] = item
->key
;
5833 if (item
->has_target_code
) {
5834 gpointer
*p
= (gpointer
*)mono_domain_alloc (domain
, sizeof (gpointer
));
5835 *p
= item
->value
.target_code
;
5836 buf
[(index
* 2) + 1] = p
;
5838 buf
[(index
* 2) + 1] = &(vtable
->vtable
[item
->value
.vtable_slot
]);
5842 buf
[(index
* 2)] = NULL
;
5843 buf
[(index
* 2) + 1] = fail_tramp
;
5845 if (USE_PAGE_TRAMPOLINES
) {
5846 code
= get_new_imt_trampoline_from_page (buf
);
5848 code
= get_numerous_trampoline (MONO_AOT_TRAMP_IMT
, 1, &amodule
, &got_offset
, NULL
);
5850 amodule
->got
[got_offset
] = buf
;
5857 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg
, gpointer addr
)
5859 MonoAotModule
*amodule
;
5863 if (USE_PAGE_TRAMPOLINES
) {
5864 code
= (guint8
*)get_new_gsharedvt_arg_trampoline_from_page (addr
, arg
);
5866 code
= (guint8
*)get_numerous_trampoline (MONO_AOT_TRAMP_GSHAREDVT_ARG
, 2, &amodule
, &got_offset
, NULL
);
5868 amodule
->got
[got_offset
] = arg
;
5869 amodule
->got
[got_offset
+ 1] = addr
;
5872 /* The caller expects an ftnptr */
5873 return mono_create_ftnptr (mono_domain_get (), code
);
5877 * mono_aot_set_make_unreadable:
5879 * Set whenever to make all mmaped memory unreadable. In conjuction with a
5880 * SIGSEGV handler, this is useful to find out which pages the runtime tries to read.
5883 mono_aot_set_make_unreadable (gboolean unreadable
)
5887 make_unreadable
= unreadable
;
5889 if (make_unreadable
&& !inited
) {
5890 mono_counters_register ("AOT: pagefaults", MONO_COUNTER_JIT
| MONO_COUNTER_INT
, &n_pagefaults
);
5895 MonoAotModule
*module
;
5900 find_map (gpointer key
, gpointer value
, gpointer user_data
)
5902 MonoAotModule
*module
= (MonoAotModule
*)value
;
5903 FindMapUserData
*data
= (FindMapUserData
*)user_data
;
5906 if ((data
->ptr
>= module
->mem_begin
) && (data
->ptr
< module
->mem_end
))
5907 data
->module
= module
;
5910 static MonoAotModule
*
5911 find_module_for_addr (void *ptr
)
5913 FindMapUserData data
;
5915 if (!make_unreadable
)
5919 data
.ptr
= (guint8
*)ptr
;
5922 g_hash_table_foreach (aot_modules
, (GHFunc
)find_map
, &data
);
5929 * mono_aot_is_pagefault:
5931 * Should be called from a SIGSEGV signal handler to find out whenever @ptr is
5932 * within memory allocated by this module.
5935 mono_aot_is_pagefault (void *ptr
)
5937 if (!make_unreadable
)
5941 * Not signal safe, but SIGSEGV's are synchronous, and
5942 * this is only turned on by a MONO_DEBUG option.
5944 return find_module_for_addr (ptr
) != NULL
;
5948 * mono_aot_handle_pagefault:
5950 * Handle a pagefault caused by an unreadable page by making it readable again.
5953 mono_aot_handle_pagefault (void *ptr
)
5956 guint8
* start
= (guint8
*)ROUND_DOWN (((gssize
)ptr
), mono_pagesize ());
5960 res
= mono_mprotect (start
, mono_pagesize (), MONO_MMAP_READ
|MONO_MMAP_WRITE
|MONO_MMAP_EXEC
);
5961 g_assert (res
== 0);
5972 mono_aot_init (void)
5977 mono_aot_cleanup (void)
5982 mono_aot_find_method_index (MonoMethod
*method
)
5984 g_assert_not_reached ();
5989 mono_aot_init_llvm_method (gpointer aot_module
, guint32 method_index
)
5994 mono_aot_init_gshared_method_this (gpointer aot_module
, guint32 method_index
, MonoObject
*this)
5999 mono_aot_init_gshared_method_mrgctx (gpointer aot_module
, guint32 method_index
, MonoMethodRuntimeGenericContext
*rgctx
)
6004 mono_aot_init_gshared_method_vtable (gpointer aot_module
, guint32 method_index
, MonoVTable
*vtable
)
6009 mono_aot_get_method (MonoDomain
*domain
,
6010 MonoMethod
*method
, MonoError
*error
)
6017 mono_aot_is_got_entry (guint8
*code
, guint8
*addr
)
6023 mono_aot_get_cached_class_info (MonoClass
*klass
, MonoCachedClassInfo
*res
)
6029 mono_aot_get_class_from_name (MonoImage
*image
, const char *name_space
, const char *name
, MonoClass
**klass
)
6035 mono_aot_find_jit_info (MonoDomain
*domain
, MonoImage
*image
, gpointer addr
)
6041 mono_aot_get_method_from_token (MonoDomain
*domain
, MonoImage
*image
, guint32 token
, MonoError
*error
)
6048 mono_aot_get_plt_entry (guint8
*code
)
6054 mono_aot_plt_resolve (gpointer aot_module
, guint32 plt_info_offset
, guint8
*code
, MonoError
*error
)
6060 mono_aot_patch_plt_entry (guint8
*code
, guint8
*plt_entry
, gpointer
*got
, mgreg_t
*regs
, guint8
*addr
)
6065 mono_aot_get_method_from_vt_slot (MonoDomain
*domain
, MonoVTable
*vtable
, int slot
, MonoError
*error
)
6073 mono_aot_get_plt_info_offset (mgreg_t
*regs
, guint8
*code
)
6075 g_assert_not_reached ();
6081 mono_aot_create_specific_trampoline (MonoImage
*image
, gpointer arg1
, MonoTrampolineType tramp_type
, MonoDomain
*domain
, guint32
*code_len
)
6083 g_assert_not_reached ();
6088 mono_aot_get_static_rgctx_trampoline (gpointer ctx
, gpointer addr
)
6090 g_assert_not_reached ();
6095 mono_aot_get_trampoline_full (const char *name
, MonoTrampInfo
**out_tinfo
)
6097 g_assert_not_reached ();
6102 mono_aot_get_trampoline (const char *name
)
6104 g_assert_not_reached ();
6109 mono_aot_get_unbox_trampoline (MonoMethod
*method
)
6111 g_assert_not_reached ();
6116 mono_aot_get_lazy_fetch_trampoline (guint32 slot
)
6118 g_assert_not_reached ();
6123 mono_aot_get_imt_trampoline (MonoVTable
*vtable
, MonoDomain
*domain
, MonoIMTCheckItem
**imt_entries
, int count
, gpointer fail_tramp
)
6125 g_assert_not_reached ();
6130 mono_aot_get_gsharedvt_arg_trampoline (gpointer arg
, gpointer addr
)
6132 g_assert_not_reached ();
6137 mono_aot_set_make_unreadable (gboolean unreadable
)
6142 mono_aot_is_pagefault (void *ptr
)
6148 mono_aot_handle_pagefault (void *ptr
)
6153 mono_aot_get_unwind_info (MonoJitInfo
*ji
, guint32
*unwind_info_len
)
6155 g_assert_not_reached ();
6160 mono_aot_register_jit_icall (const char *name
, gpointer addr
)