Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/test/test_peepholer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2525,8 +2525,8 @@ def test_unoptimized_if_unconsumed(self):
]
expected = [
("LOAD_FAST", 0, 1),
("LOAD_FAST_BORROW", 1, 2),
("POP_TOP", None, 3),
("NOP", None, 2),
("NOP", None, 3),
]
self.check(insts, expected)

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Now, :opcode:`LOAD_FAST`; :opcode:`POP_TOP`, and :opcode:`LOAD_FAST_BORROW`;
:opcode:`POP_TOP` pairs become :opcode:`NOPs <NOP>`.
18 changes: 13 additions & 5 deletions Python/flowgraph.c
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,9 @@ remove_redundant_nops_and_pairs(basicblock *entryblock)
else if (prev_opcode == COPY && prev_oparg == 1) {
is_redundant_pair = true;
}
else if (prev_opcode == LOAD_FAST) {
is_redundant_pair = true;
}
}
if (is_redundant_pair) {
INSTR_SET_OP0(prev_instr, NOP);
Expand Down Expand Up @@ -2635,9 +2638,14 @@ remove_redundant_nops_and_jumps(cfg_builder *g)
Code trasnformations that reduce code size initially fill the gaps with
NOPs. Later those NOPs are removed.
*/

static int
add_checks_for_loads_of_uninitialized_variables(basicblock *entryblock,
int nlocals, int nparams);

static int
optimize_cfg(cfg_builder *g, PyObject *consts, PyObject *const_cache,
_Py_hashtable_t *consts_index, int firstlineno)
_Py_hashtable_t *consts_index, int firstlineno, int nlocals, int nparams)
{
assert(PyDict_CheckExact(const_cache));
RETURN_IF_ERROR(check_cfg(g));
Expand All @@ -2648,6 +2656,9 @@ optimize_cfg(cfg_builder *g, PyObject *consts, PyObject *const_cache,
for (basicblock *b = g->g_entryblock; b != NULL; b = b->b_next) {
RETURN_IF_ERROR(optimize_basic_block(const_cache, b, consts, consts_index));
}
RETURN_IF_ERROR(
add_checks_for_loads_of_uninitialized_variables(
g->g_entryblock, nlocals, nparams));
RETURN_IF_ERROR(remove_redundant_nops_and_pairs(g->g_entryblock));
RETURN_IF_ERROR(remove_unreachable(g->g_entryblock));
RETURN_IF_ERROR(remove_redundant_nops_and_jumps(g));
Expand Down Expand Up @@ -3790,16 +3801,13 @@ _PyCfg_OptimizeCodeUnit(cfg_builder *g, PyObject *consts, PyObject *const_cache,
}
}

int ret = optimize_cfg(g, consts, const_cache, consts_index, firstlineno);
int ret = optimize_cfg(g, consts, const_cache, consts_index, firstlineno, nlocals, nparams);

_Py_hashtable_destroy(consts_index);

RETURN_IF_ERROR(ret);

RETURN_IF_ERROR(remove_unused_consts(g->g_entryblock, consts));
RETURN_IF_ERROR(
add_checks_for_loads_of_uninitialized_variables(
g->g_entryblock, nlocals, nparams));
RETURN_IF_ERROR(insert_superinstructions(g));

RETURN_IF_ERROR(push_cold_blocks_to_end(g));
Expand Down
Loading