You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add jit support for x64 load and store index out of bounds
Out of bound memory access in Wasm traps. Code to insert relevant checks
and error is added in the interpreter and jit.
Wasm provides an offset + index addressing mode for memory accesses. We
represent this using an int64 to address problems with wrapping due to
overflow.
Also new opcode LdArrViewElemWasm is added specially for wasm since we
cannot use LdArrViewElem of AsmJs which is side-effect free.
0 commit comments