Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust text or trace and format! throws RuntimeError: unreachable executed #36

Closed
FreeMasen opened this issue Aug 30, 2021 · 1 comment · Fixed by #111
Closed

Rust text or trace and format! throws RuntimeError: unreachable executed #36

FreeMasen opened this issue Aug 30, 2021 · 1 comment · Fixed by #111
Labels
bug Something isn't working help wanted Extra attention is needed

Comments

@FreeMasen
Copy link
Contributor

When attempting to draw dynamic text to the screen in rust, the runtime aborts entirely.

// lib.rs
mod wasm4;
use wasm4::*;

#[no_mangle]
fn update() {
    unsafe {
        *DRAW_COLORS = 2;
    }
    text(format!("{:02x}", unsafe {CT}).as_str(), 10, 10);
    unsafe { CT += CT.wrapping_add(1) }
}

Error in the console:

Uncaught (in promise) RuntimeError: unreachable executed
    update http://localhost:4444/wasm4.js:1
    t http://localhost:4444/wasm4.js:1
    <anonymous> http://localhost:4444/wasm4.js:1
    async* http://localhost:4444/wasm4.js:1
    <anonymous> http://localhost:4444/wasm4.js:1
wasm4.js line 1 > WebAssembly.instantiate:15530:1
    <anonymous> http://localhost:4444/wasm4.js:1
    AsyncFunctionNext self-hosted:692
    (Async: async)
    <anonymous> http://localhost:4444/wasm4.js:1
    <anonymous> http://localhost:4444/wasm4.js:1
@aduros aduros added the bug Something isn't working label Aug 30, 2021
@aduros
Copy link
Owner

aduros commented Aug 30, 2021

Hmm, it looks like any heap allocation in Rust isn't working. Looking at the call stack, it seems to be hitting a function called $rust_oom, which suggests "out of memory".

I wonder if Rust's allocator is trying to prereserve a block of memory larger than available in this constrained environment.

@aduros aduros added the help wanted Extra attention is needed label Sep 1, 2021
FaberVitale added a commit to FaberVitale/wasm4 that referenced this issue Sep 26, 2021
Description

Adds buddy-alloc as optional alloocator and increases the stack size.

See also:

- aduros#37

- aduros#78

- aduros#36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working help wanted Extra attention is needed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants