Stream: git-wasmtime

Topic: wasmtime / issue #6313 aarch64: Unsupported case for Load...


view this post on Zulip Wasmtime GitHub notifications bot (Apr 30 2023 at 17:51):

alexcrichton edited issue #6313:

With this input:

(module
  (func (param i32)
    v128.const i64x2 0 0
    i8x16.all_true
    v128.load64_splat
    i16x8.bitmask
    v128.load align=1
    drop
  )
  (memory 0)
)

Wasmtime panics with:

$ cargo run -q compile foo.wat
thread 'main' panicked at 'Unsupported case for LoadAddr: RegReg { rn: p1i, rm: p2i }', cranelift/codegen/src/isa/aarch64/inst/emit.rs:3393:26
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

view this post on Zulip Wasmtime GitHub notifications bot (May 01 2023 at 18:49):

cfallin closed issue #6313:

With this input:

(module
  (func (param i32)
    v128.const i64x2 0 0
    i8x16.all_true
    v128.load64_splat
    i16x8.bitmask
    v128.load align=1
    drop
  )
  (memory 0)
)

Wasmtime panics with:

$ cargo run -q compile foo.wat
thread 'main' panicked at 'Unsupported case for LoadAddr: RegReg { rn: p1i, rm: p2i }', cranelift/codegen/src/isa/aarch64/inst/emit.rs:3393:26
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace


Last updated: Nov 22 2024 at 16:03 UTC