mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)
This commit is contained in:
parent
407c3afe19
commit
37c6db60f9
9 changed files with 145 additions and 88 deletions
|
@ -5624,6 +5624,15 @@ handle_eval_breaker:
|
|||
}
|
||||
|
||||
TARGET(EXTENDED_ARG) {
|
||||
assert(oparg);
|
||||
oparg <<= 8;
|
||||
oparg |= _Py_OPARG(*next_instr);
|
||||
opcode = _PyOpcode_Deopt[_Py_OPCODE(*next_instr)];
|
||||
PRE_DISPATCH_GOTO();
|
||||
DISPATCH_GOTO();
|
||||
}
|
||||
|
||||
TARGET(EXTENDED_ARG_QUICK) {
|
||||
assert(oparg);
|
||||
oparg <<= 8;
|
||||
oparg |= _Py_OPARG(*next_instr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue