Skip to content

Commit 0c4329b

Browse files
authored
[mono] Extend mono_gsharedvt_constrained_call JIT icall to handle static virtual methods (#90875)
* Handle static virtual calls in constrained_gsharedvt_call_setup
1 parent a3b1c63 commit 0c4329b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/mono/mono/mini/jit-icalls.c

+7-2
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ constrained_gsharedvt_call_setup (gpointer mp, MonoMethod *cmethod, MonoClass *k
13581358

13591359
error_init (error);
13601360

1361-
if (mono_class_is_interface (klass) || !m_class_is_valuetype (klass)) {
1361+
if ((mono_class_is_interface (klass) || !m_class_is_valuetype (klass)) && !m_method_is_static (cmethod)) {
13621362
MonoObject *this_obj;
13631363

13641364
is_iface = mono_class_is_interface (klass);
@@ -1390,7 +1390,12 @@ constrained_gsharedvt_call_setup (gpointer mp, MonoMethod *cmethod, MonoClass *k
13901390
}
13911391
}
13921392

1393-
if (m_class_is_valuetype (klass) && (m->klass == mono_defaults.object_class || m->klass == m_class_get_parent (mono_defaults.enum_class) || m->klass == mono_defaults.enum_class)) {
1393+
if (m_method_is_static (cmethod)) {
1394+
/*
1395+
* Static calls don't have this arg
1396+
*/
1397+
*this_arg = NULL;
1398+
} else if (m_class_is_valuetype (klass) && (m->klass == mono_defaults.object_class || m->klass == m_class_get_parent (mono_defaults.enum_class) || m->klass == mono_defaults.enum_class)) {
13941399
/*
13951400
* Calling a non-vtype method with a vtype receiver, has to box.
13961401
*/

0 commit comments

Comments
 (0)