diff options
author | Michael Williamson <mike@zwobble.org> | 2023-06-27 22:26:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 14:26:19 -0700 |
commit | 6f58973e2680b71e56a41f798d6072208c721a12 (patch) | |
tree | d60443450291b115fb29bf2ca3c79d2cec05b6a1 /include/wabt/binary-reader-objdump.h | |
parent | c2d4c539abdd16aded08c890db970647c5c52052 (diff) | |
download | wabt-6f58973e2680b71e56a41f798d6072208c721a12.tar.gz wabt-6f58973e2680b71e56a41f798d6072208c721a12.tar.bz2 wabt-6f58973e2680b71e56a41f798d6072208c721a12.zip |
wasm-objdump: Fix local numbering in disassembly (#2265)
Previously, in BinaryReaderObjdumpDisassemble::BeginFunctionBody,
we had:
local_index_ = objdump_state_->function_param_counts[index];
where index is the index of the function i.e. we treat the keys of
function_param_counts as function indices.
However, function_param_counts is populated in OnFuncType with:
objdump_state_->function_param_counts[index] = param_count;
where index is the index of the type i.e. we treat the keys of
function_param_counts as type indices.
This discrepancy would cause the locals to be incorrectly numbered
in the "Code Disassembly" section.
This fixes the discrepancy by adding a new field, function_types,
which maps from function indices to type indices, and is populated
in BinaryReaderObjdump::OnFunction. This field is used in
BinaryReaderObjdumpDisassemble::BeginFunctionBody to get the type
index for the given function, which is then used to get the
parameter count.
Fixes #2264.
Diffstat (limited to 'include/wabt/binary-reader-objdump.h')
-rw-r--r-- | include/wabt/binary-reader-objdump.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/wabt/binary-reader-objdump.h b/include/wabt/binary-reader-objdump.h index 0ca7458f..a23a08d9 100644 --- a/include/wabt/binary-reader-objdump.h +++ b/include/wabt/binary-reader-objdump.h @@ -86,6 +86,7 @@ struct ObjdumpState { ObjdumpLocalNames local_names; std::vector<ObjdumpSymbol> symtab; std::map<Index, Index> function_param_counts; + std::map<Index, Index> function_types; }; Result ReadBinaryObjdump(const uint8_t* data, |