mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
GH-109369: Exit tier 2 if executor is invalid (GH-111657)
This commit is contained in:
parent
6046aec377
commit
25c4956488
11 changed files with 348 additions and 230 deletions
|
@ -4021,6 +4021,11 @@ dummy_func(
|
|||
memmove(&stack_pointer[-1 - oparg], &stack_pointer[-oparg], oparg * sizeof(stack_pointer[0]));
|
||||
}
|
||||
|
||||
op(_CHECK_VALIDITY, (--)) {
|
||||
TIER_TWO_ONLY
|
||||
DEOPT_IF(!current_executor->base.vm_data.valid);
|
||||
}
|
||||
|
||||
|
||||
// END BYTECODES //
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue