alexcrichton labeled issue #5291:
Currently when translating the
call_indirect
instruction Wasmtime will insert a null-check to ensure that we're not calling a null function pointer. Because our representation of a null function pointer is literally a null pointer, however, I think we can actually skip this check entirely due to the next instruction being guaranteed to segfault if it's actually a null pointer.I don't think this is necessarily as easy as simply removing the null pointer check, however, since I think the
load
needs to at least somehow be annotated with the proper trap code and probably "this can segfault", which I'm not precisely sure how to do. This could be a nice way to clean up the generated code forcall_indirect
slightly thought which is already somewhat large I believe.
alexcrichton labeled issue #5291:
Currently when translating the
call_indirect
instruction Wasmtime will insert a null-check to ensure that we're not calling a null function pointer. Because our representation of a null function pointer is literally a null pointer, however, I think we can actually skip this check entirely due to the next instruction being guaranteed to segfault if it's actually a null pointer.I don't think this is necessarily as easy as simply removing the null pointer check, however, since I think the
load
needs to at least somehow be annotated with the proper trap code and probably "this can segfault", which I'm not precisely sure how to do. This could be a nice way to clean up the generated code forcall_indirect
slightly thought which is already somewhat large I believe.
alexcrichton opened issue #5291:
Currently when translating the
call_indirect
instruction Wasmtime will insert a null-check to ensure that we're not calling a null function pointer. Because our representation of a null function pointer is literally a null pointer, however, I think we can actually skip this check entirely due to the next instruction being guaranteed to segfault if it's actually a null pointer.I don't think this is necessarily as easy as simply removing the null pointer check, however, since I think the
load
needs to at least somehow be annotated with the proper trap code and probably "this can segfault", which I'm not precisely sure how to do. This could be a nice way to clean up the generated code forcall_indirect
slightly thought which is already somewhat large I believe.
fitzgen commented on issue #5291:
Not sure if we have a bit free in
MemFlags
but if so, we could have a bit that means "the trap code should be indirect-call-to-null-rather-than-heap-out-of-bounds".
jameysharp commented on issue #5291:
MemFlags
is a u8 and already has 8 flags defined.But several flags are mutually exclusive, so we could encode them more concisely. In particular, the
Heap
,Table
, andVmctx
flags represent four states (counting "other") which could be encoded in two bits instead of three.
jameysharp commented on issue #5291:
At some point we widened
MemFlags
to 16 bits, and in #8134 we added aMemFlags
bit for indicating another trap-code, so we could do something similar for this case too.That means there are four cases (can't trap, or could trap with one of three different trap codes). I would kind of like to start packing these enumeration flags into groups of bits, so that this wouldn't change how many bits we're using in
MemFlags
.It wouldn't be the end of the world to add another bit for this though.
alexcrichton closed issue #5291:
Currently when translating the
call_indirect
instruction Wasmtime will insert a null-check to ensure that we're not calling a null function pointer. Because our representation of a null function pointer is literally a null pointer, however, I think we can actually skip this check entirely due to the next instruction being guaranteed to segfault if it's actually a null pointer.I don't think this is necessarily as easy as simply removing the null pointer check, however, since I think the
load
needs to at least somehow be annotated with the proper trap code and probably "this can segfault", which I'm not precisely sure how to do. This could be a nice way to clean up the generated code forcall_indirect
slightly thought which is already somewhat large I believe.
Last updated: Nov 22 2024 at 17:03 UTC