Coder Social home page Coder Social logo

Comments (5)

sbc100 avatar sbc100 commented on June 22, 2024 1

What kind of response did you expect from running the get export? Presumably wasmtime is running get but are you expecting it to print the result somehow? Perhaps its returning the result as the return code?

Perhaps ask in the wasmtime support forums?

from wabt.

keithw avatar keithw commented on June 22, 2024 1

If you want to run the tests in that file, you can use wabt's interpreter (with the spectest imports):

$ ./bin/wast2json ./third_party/testsuite/left-to-right.wast -o /tmp/ltr/left-to-right.json
$ ./bin/spectest-interp /tmp/ltr/left-to-right.json
96/96 tests passed.

To run an individual exported function (without the spectest imports available):

$ ./bin/wasm-interp /tmp/ltr/left-to-right.0.wasm --run-export=i32_call_indirect
i32_call_indirect() => i32:66052

from wabt.

sbc100 avatar sbc100 commented on June 22, 2024

left-to-right.wast is not a wat file (a single module) but a wast file, which can contains many modules and also assertions about the module. This is the format used by the spec test.

If you want to process wast files, such as those found in the spec test, wabt does have a tool called wast2json which is used to split a wast into a set of wat files, along with a json description of the assertions.

from wabt.

shamb0 avatar shamb0 commented on June 22, 2024

Thanks @sbc100,

With help of your suggestion, I've successfully extracted the wasm file from wast using the wast2json tool by following these steps:

./out/clang/Debug/wast2json \
    --enable-all \
    ./third_party/testsuite/left-to-right.wast \
    -o ../temp01-shamb0-test/left-to-right.json
  • The resulting files are:
.
├── left-to-right.0.wasm
└── left-to-right.json
  • I attempted to test the wasm file with wasmtime using this command:
RUST_LOG=trace ./target/debug/wasmtime \
    --debug debug-info=true \
    ../temp01-shamb0-test/left-to-right.0.wasm \
    --invoke get 2

  • However, I did not receive a response from wasmtime. Could you advise on how to effectively test the extracted wasm file?

Your guidance is appreciated.

from wabt.

shamb0 avatar shamb0 commented on June 22, 2024

Thank you @keithw, following your suggestion, I successfully ran the wasm file using wasm-interp.

Thanks to @sbc100's pointer, I will check with the 'wasmtime' team regarding the observed behavior.

from wabt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.