gh-148211: decompose _POP_TWO/_POP_CALL(_ONE/_TWO) in JIT (GH-148377)

This commit is contained in:
Neko Asakura 2026-04-11 08:46:56 -04:00 committed by GitHub
parent 72006a71b2
commit 9831dea3bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 1027 additions and 1280 deletions

View file

@ -1272,7 +1272,10 @@ dummy_func(void) {
out = Py_True;
}
sym_set_const(res, out);
ADD_OP(_POP_CALL_TWO, 0, 0);
ADD_OP(_POP_TOP, 0, 0);
ADD_OP(_POP_TOP, 0, 0);
ADD_OP(_POP_TOP_NOP, 0, 0);
ADD_OP(_POP_TOP, 0, 0);
ADD_OP(_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)out);
}
}