From 766bf758ab557daeaf5a5d51c7bee2d01bcda64d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 30 Jan 2022 22:34:40 +0900 Subject: [PATCH] [gamecode] Redesign jump's B addressing Yet another redundant addressing mode (since ptr + 0 can be used), so replace it with a variable-indexed array (same as in v6p). Was forced into noticing the problem when trying to compile Machine.r. --- libs/gamecode/opcodes.py | 4 ++-- libs/gamecode/pr_exec.c | 4 ++-- libs/gamecode/test/test-jump.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/gamecode/opcodes.py b/libs/gamecode/opcodes.py index 61e65f136..a07714d88 100644 --- a/libs/gamecode/opcodes.py +++ b/libs/gamecode/opcodes.py @@ -204,11 +204,11 @@ jump_formats = { "jump_fmt": branch_fmt, "jump_types": [ "ev_short, ev_invalid, ev_invalid", - "ev_ptr, ev_invalid, ev_invalid", + "ev_void, ev_int, ev_invalid", "ev_ptr, ev_short, ev_invalid", "ev_ptr, ev_int, ev_invalid", ], - "jump_widths": [ "0, 0", "1, 0", "1, 0", "1, 1" ] + "jump_widths": [ "0, 0", "1, 1", "1, 0", "1, 1" ] }, } lea_formats = { diff --git a/libs/gamecode/pr_exec.c b/libs/gamecode/pr_exec.c index 9801d9936..15c63d0a4 100644 --- a/libs/gamecode/pr_exec.c +++ b/libs/gamecode/pr_exec.c @@ -1867,8 +1867,8 @@ pr_jump_mode (progs_t *pr, const dstatement_t *st, int jump_ind) jump_offs = jump_offs + (short) st->a; break; case 1: - // simple pointer dereference: *a - jump_offs = OPA(ptr); + // variable indexed array: a + *b (only +ve) + jump_offs = (op_a + OPB(uint))->uint_var; break; case 2: // constant indexed pointer: *a + b (supports -ve offset) diff --git a/libs/gamecode/test/test-jump.c b/libs/gamecode/test/test-jump.c index 59e40554d..d05d6b92b 100644 --- a/libs/gamecode/test/test-jump.c +++ b/libs/gamecode/test/test-jump.c @@ -19,7 +19,7 @@ static dstatement_t jump_A_statements[] = { }; static dstatement_t jump_B_statements[] = { - { OP(0, 0, 0, OP_JUMP_B), 3, 0, 0 }, + { OP(0, 0, 0, OP_JUMP_B), 1, 2, 0 }, { OP(0, 0, 0, OP_BREAK), 0, 0, 0 }, { OP(0, 0, 0, OP_LEA_A), 1, 0, 0 }, { OP(0, 0, 0, OP_LEA_A), 1, 0, 4 },