Re: Instruction 320

Armin Rigo <[email protected]> Thu, 28 Oct 2021 08:29:29 +0200
Newsgroups gmane.comp.python.pypy
Message-ID <CAMSv6X2dQotdAgEGzxqK-m7QUoxyUV6thwdwRUb9tJZherX++Q@mail.gmail.com>
Hi,

On Wed, 27 Oct 2021 at 20:09, M A <[email protected]> wrote:
> Hi, would anyone know what instruction/opcode 320 does? I'm in the file pyopcode.py tracing a problem to  dispatch_bytecode(). The problem I have encountered happens when next_instr and self.last_instr are both equal to 320. I have tried looking at the file opcode.py. There was no mention of 320 anywhere. Any hints or help would be great.

`next_instr` is not the instruction itself, it is the offset inside
your bytecode string...

Armin