Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix bytecode stack frame printing #686

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions quickjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -28783,8 +28783,17 @@ static void dump_byte_code(JSContext *ctx, int pass,
printf(",%u", get_u16(tab + pos + 8));
break;
case OP_FMT_none_loc:
idx = (op - OP_get_loc0_loc1) % 4;
goto has_loc;
if (op == OP_get_loc0_loc1) {
printf(" 0, 1 ; ");
if (var_count > 0)
print_atom(ctx, vars[0].var_name);
if (var_count > 1)
print_atom(ctx, vars[1].var_name);
} else {
idx = (op - OP_get_loc0) % 4;
goto has_loc;
}
break;
case OP_FMT_loc8:
idx = get_u8(tab + pos);
goto has_loc;
Expand Down
Loading