alexcrichton opened PR #6580 from alexcrichton:x64-iabs-sse2
to bytecodealliance:main
:
Use instruction patterns modeled after LLVM's output for these lowerings.
<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
alexcrichton requested wasmtime-compiler-reviewers for a review on PR #6580.
alexcrichton requested abrown for a review on PR #6580.
abrown submitted PR review:
LGTM!
abrown submitted PR review:
LGTM!
abrown created PR review comment:
Can you remind me what
1
means here? Does it mean "higher priority", so the SSSE3 condition is checked _before_ we emit the long sequence?
alexcrichton created PR review comment:
Indeed! Rules are match in-order highest-to-lowest priority and the first matching one is the one used for lowering. Rules then aren't allowed to overlap at all which is why a priority is required here because otherwise if
use_ssse3
istrue
then it's ambiguous which rule to use here (so the priority says check this one first)
alexcrichton merged PR #6580.
Last updated: Dec 23 2024 at 12:05 UTC