We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363f4f9 commit 613cdcaCopy full SHA for 613cdca
Python/optimizer.c
@@ -419,6 +419,12 @@ translate_bytecode_to_trace(
419
opcode = instr->op.code;
420
operand = (operand << 8) | instr->op.arg;
421
}
422
+ if (opcode == ENTER_EXECUTOR) {
423
+ _PyExecutorObject *executor = (_PyExecutorObject *)code->co_executors->executors[operand&255];
424
+ opcode = executor->vm_data.opcode;
425
+ DPRINTF(2, " * ENTER_EXECUTOR -> %s\n", _PyOpcode_OpName[opcode]);
426
+ operand = (operand & 0xffffff00) | executor->vm_data.oparg;
427
+ }
428
switch (opcode) {
429
case LOAD_FAST_LOAD_FAST:
430
case STORE_FAST_LOAD_FAST:
0 commit comments