Re: [PATCH 5/9] disas/riscv: Encapsulate opcode_data into decode

2023-06-11 Thread Alistair Francis
On Tue, May 30, 2023 at 11:23 PM Christoph Muellner wrote: > > From: Christoph Müllner > > This patch adds a reference to a struct rv_opcode_data object > into struct rv_decode. This further allows to remove all references > to the global variable opcode_data (which is renamed to rvi_opcode_data)

[PATCH 5/9] disas/riscv: Encapsulate opcode_data into decode

2023-05-30 Thread Christoph Muellner
From: Christoph Müllner This patch adds a reference to a struct rv_opcode_data object into struct rv_decode. This further allows to remove all references to the global variable opcode_data (which is renamed to rvi_opcode_data). This patch does not introduce any functional change, but prepares th