gh-106149: move unconditional jump direction resolution from optimizer to assembler (#106291)

This commit is contained in:
Irit Katriel 2023-07-01 11:28:07 +01:00 committed by GitHub
parent d3abc9b516
commit 200f255411
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 20 deletions

View file

@ -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