abc767234318 opened issue #9684:
I constructed a clif file.
I used the following command to run it.
clif-util run -v multi_func8.clifAnd I got the following error message:
cases/multi_func8.clif: Compilation error: Unsupported feature: should be implemented in ISLE: inst = `store.f16x8 notrap aligned little v2, v1`, type = `None` 1 file Error: 1 failureI think the error is triggered by the
store.f16x8instruction, but I can't find anystore.f16x8instruction in this clif file.
bjorn3 commented on issue #9684:
It is possible that the store.f16x8 is introduced by optimizations given that you enabled optimizations using
set opt_level=speed.
abc767234318 commented on issue #9684:
It is possible that the store.f16x8 is introduced by optimizations given that you enabled optimizations using
set opt_level=speed.Is it necessary to adjust the optimization strategy to avoid similar issues from occurring?
bjorn3 commented on issue #9684:
I would recommend avoiding f16 entirely until Cranelift has proper support for it.
alexcrichton closed issue #9684:
I constructed a clif file.
I used the following command to run it.
clif-util run -v multi_func8.clifAnd I got the following error message:
cases/multi_func8.clif: Compilation error: Unsupported feature: should be implemented in ISLE: inst = `store.f16x8 notrap aligned little v2, v1`, type = `None` 1 file Error: 1 failureI think the error is triggered by the
store.f16x8instruction, but I can't find anystore.f16x8instruction in this clif file.
alexcrichton commented on issue #9684:
I'm going to close this as working-as-intended for now as this is generally how unsupported functionality in Cranelift can get surfaced.
Last updated: Dec 13 2025 at 19:03 UTC