ggreif edited PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This fixes up to the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
ggreif edited PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism, the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This fixes up to the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
ggreif edited PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism, the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This PR fixes up the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
yurydelendik submitted PR Review.
yurydelendik created PR Review Comment:
How about
DW_OP_swap DW_OP_plus_uconst 32
instead ofDW_OP_const1u 32 shr* DW_OP_swap
?
yurydelendik submitted PR Review.
yurydelendik created PR Review Comment:
Can you expand on "normalisation" here? I recommend just include this PR description-like text here.
yurydelendik created PR Review Comment:
Do we need to include
Shr
here?
ggreif submitted PR Review.
ggreif created PR Review Comment:
I wanted to present it as clearly as possible in the first commit, for posterity :-)
I am preparing a commit, that adds an optimisation.
ggreif submitted PR Review.
ggreif created PR Review Comment:
Yes, I have seen dirt bits ending up in the semantic operand with
lldb
.
ggreif submitted PR Review.
ggreif created PR Review Comment:
Well, that may be in fact an indication that reading of WASM arguments/locals is not hygienic. :-( can you check that?
ggreif updated PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism, the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This PR fixes up the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
ggreif updated PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism, the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This PR fixes up the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
ggreif submitted PR Review.
ggreif created PR Review Comment:
Done: a806b96
ggreif submitted PR Review.
ggreif created PR Review Comment:
Mostly because I was not sure whether two shifts can be collapsed to a single one by the DWARF spec. But I now assume this is the case.
yurydelendik submitted PR Review.
yurydelendik created PR Review Comment:
it might be the case, though I expect DWARF expression not to know that, or the fact that register data is 16, 32 or 64 bit, and be proactive to mask only needed bits. We can keep Shr here for "symmetry".
ggreif updated PR #2276 from main
to main
:
Due to the 32-bit WASM/64-bit wasmtime VM schism, the
DW_OP_shr*
operations end up with random bits frobbed from the upper portion of the 64-bit operand word. This PR fixes up the location translator such that it inserts (something akin to)DW_OP_lit32; DW_OP_shl; DW_OP_lit32; DW_OP_shrX
in front ofDW_OP_shrX
. The rationale is that this will clean out the upper portion, respecting 32-bit signedness.<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
ggreif submitted PR Review.
ggreif created PR Review Comment:
This is now fe7f041.
ggreif submitted PR Review.
ggreif created PR Review Comment:
Okay, I'll keep an eye on this. If the _dirt issue_ happens to pop up elsewhere, I'll file a bug. Then we can revisit here.
ggreif submitted PR Review.
ggreif created PR Review Comment:
This normalisation is only needed for
wasm32
, it is not allowed forwasm64
. Can we do it guardedly?
ggreif requested yurydelendik for a review on PR #2276.
yurydelendik submitted PR Review.
yurydelendik created PR Review Comment:
good question, but I think we don't have to answer it right now. we probably need to: a) start tracking values types that are coming from DW_OP_WASM_location (which can be 32 or 64-bit), b) and try to be proactive and track types and implicit bit expansion.
yurydelendik submitted PR Review.
yurydelendik merged PR #2276.
Last updated: Nov 22 2024 at 16:03 UTC