Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Delete unused mono_unbox_int
  • Loading branch information
am11 committed Nov 9, 2021
commit 38f675c2ab204a3e6da84bd69542385c42b8a16e
35 changes: 0 additions & 35 deletions src/mono/wasm/runtime/driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -1072,41 +1072,6 @@ mono_wasm_try_unbox_primitive_and_get_type (MonoObject *obj, void *result, int r
return resultType;
}

// FIXME: This function is retained specifically because runtime-test.js uses it
EMSCRIPTEN_KEEPALIVE int
mono_unbox_int (MonoObject *obj)
{
if (!obj)
return 0;
MonoType *type = mono_class_get_type (mono_object_get_class(obj));

void *ptr = mono_object_unbox (obj);
switch (mono_type_get_type (type)) {
case MONO_TYPE_I1:
case MONO_TYPE_BOOLEAN:
return *(signed char*)ptr;
case MONO_TYPE_U1:
return *(unsigned char*)ptr;
case MONO_TYPE_I2:
return *(short*)ptr;
case MONO_TYPE_U2:
return *(unsigned short*)ptr;
case MONO_TYPE_I4:
case MONO_TYPE_I:
return *(int*)ptr;
case MONO_TYPE_U4:
return *(unsigned int*)ptr;
case MONO_TYPE_CHAR:
return *(short*)ptr;
// WASM doesn't support returning longs to JS
// case MONO_TYPE_I8:
// case MONO_TYPE_U8:
default:
printf ("Invalid type %d to mono_unbox_int\n", mono_type_get_type (type));
return 0;
}
}

EMSCRIPTEN_KEEPALIVE int
mono_wasm_array_length (MonoArray *array)
{
Expand Down