mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
gh-106149: move unconditional jump direction resolution from optimizer to assembler (#106291)
This commit is contained in:
parent
d3abc9b516
commit
200f255411
4 changed files with 44 additions and 20 deletions
4
Python/opcode_metadata.h
generated
4
Python/opcode_metadata.h
generated
|
|
@ -4,7 +4,7 @@
|
|||
// Do not edit!
|
||||
|
||||
|
||||
#define IS_PSEUDO_INSTR(OP) \
|
||||
#define IS_PSEUDO_INSTR(OP) ( \
|
||||
((OP) == LOAD_CLOSURE) || \
|
||||
((OP) == STORE_FAST_MAYBE_NULL) || \
|
||||
((OP) == LOAD_SUPER_METHOD) || \
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
((OP) == SETUP_CLEANUP) || \
|
||||
((OP) == SETUP_WITH) || \
|
||||
((OP) == POP_BLOCK) || \
|
||||
0
|
||||
0)
|
||||
|
||||
#define EXIT_TRACE 300
|
||||
#define SET_IP 301
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue