mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
GH-130415: Optimize constant comparison in JIT builds (GH-131489)
This commit is contained in:
parent
0de5e0c544
commit
b92ee14b80
8 changed files with 142 additions and 35 deletions
|
@ -446,7 +446,25 @@ dummy_func(void) {
|
|||
}
|
||||
|
||||
op(_COMPARE_OP_INT, (left, right -- res)) {
|
||||
res = sym_new_type(ctx, &PyBool_Type);
|
||||
if (sym_is_const(ctx, left) && sym_is_const(ctx, right))
|
||||
{
|
||||
assert(PyLong_CheckExact(sym_get_const(ctx, left)));
|
||||
assert(PyLong_CheckExact(sym_get_const(ctx, right)));
|
||||
PyObject *tmp = PyObject_RichCompare(sym_get_const(ctx, left),
|
||||
sym_get_const(ctx, right),
|
||||
oparg >> 5);
|
||||
if (tmp == NULL) {
|
||||
goto error;
|
||||
}
|
||||
assert(PyBool_Check(tmp));
|
||||
assert(_Py_IsImmortal(tmp));
|
||||
REPLACE_OP(this_instr, _POP_TWO_LOAD_CONST_INLINE_BORROW, 0, (uintptr_t)tmp);
|
||||
res = sym_new_const(ctx, tmp);
|
||||
Py_DECREF(tmp);
|
||||
}
|
||||
else {
|
||||
res = sym_new_type(ctx, &PyBool_Type);
|
||||
}
|
||||
}
|
||||
|
||||
op(_COMPARE_OP_FLOAT, (left, right -- res)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue