changing order of functions to prepare for merge

This commit is contained in:
Tim Sweet
2025-06-26 16:03:02 -05:00
parent 421dcc062a
commit a14a6e7d4b
@@ -119,6 +119,189 @@ class TryElse3_12(ControlFlowTemplate):
"""
class BareExcept3_11(Except3_11):
template = T(
except_body=N("except_footer", None, "reraise"),
except_footer=~N("tail.").with_in_deg(1).with_cond(starting_instructions("POP_EXCEPT")),
reraise=reraise,
tail=N.tail(),
)
try_match = make_try_match(
{
EdgeKind.Fall: "tail",
EdgeKind.Exception: "reraise",
},
"except_body",
"except_footer",
)
@to_indented_source
def to_indented_source():
"""
except:
{except_body}
{except_footer}
"""
class ExcBody3_11(ControlFlowTemplate):
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
if x := NamedExc3_11.try_match(cfg, node):
return x
return node
class NamedExcTail3_11(ControlFlowTemplate):
template = T(
SWAP=N("tail", None, "reraise").with_cond(exact_instructions("SWAP")),
reraise=reraise,
tail=N.tail(),
)
@classmethod
def _try_match(cls, cfg, node):
mapping = cls.template.try_match(cfg, node)
if mapping is None:
return None
return condense_mapping(cls, cfg, mapping, "SWAP", "tail", out_filter=[EdgeCategory.Exception])
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
if x := cls._try_match(cfg, node):
return x
return node
to_indented_source = defer_source_to("tail")
class NamedExc3_11(ExcBody3_11):
template = T(
STORE=N("body", None, "reraise").with_cond(exact_instructions("STORE_FAST"), exact_instructions("STORE_NAME")),
body=N("tail.", None, "cleanup"),
cleanup=N(E.exc("reraise")).with_cond(exact_instructions("LOAD_CONST", "STORE_FAST", "DELETE_FAST", "RERAISE"), exact_instructions("LOAD_CONST", "STORE_NAME", "DELETE_NAME", "RERAISE")),
reraise=reraise,
tail=N.tail().of_subtemplate(NamedExcTail3_11),
)
try_match = make_try_match({EdgeKind.Fall: "tail", EdgeKind.Exception: "reraise"}, "STORE", "body", "cleanup")
to_indented_source = defer_source_to("body")
class ExceptExc3_11(Except3_11):
template = T(
except_header=N("except_body", "no_match", "reraise").with_cond(ending_instructions("CHECK_EXC_MATCH", "POP_JUMP_FORWARD_IF_FALSE"), ending_instructions("CHECK_EXC_MATCH", "POP_JUMP_IF_FALSE")),
except_body=N("except_footer.", None, "reraise").of_subtemplate(ExcBody3_11).with_in_deg(1),
no_match=N("tail?", None, "reraise").with_in_deg(1).of_subtemplate(Except3_11),
except_footer=~N("tail.").with_in_deg(1).with_cond(starting_instructions("POP_EXCEPT")),
reraise=reraise,
tail=N.tail(),
)
try_match = revert_on_fail(
make_try_match(
{
EdgeKind.Fall: "tail",
EdgeKind.Exception: "reraise",
},
"except_header",
"except_body",
"except_footer",
"no_match",
)
)
@to_indented_source
def to_indented_source():
"""
{except_header}
{except_body}
{except_footer}
{no_match}
"""
@register_template(0, 50)
@register_template(2, 50)
class TryFinally3_12(ControlFlowTemplate):
template = T(
try_header=N("try_body"),
try_body=N("finally_body", None, "fail_body"),
finally_body=~N("tail.").with_in_deg(1).with_cond(no_back_edges),
fail_body=N(E.exc("reraise")),
reraise=reraise,
tail=N.tail(),
)
template2 = T(
try_except=N("finally_body", None, "fail_body").of_type(Try3_12, TryElse3_12),
finally_body=~N("tail.").with_in_deg(1).with_cond(no_back_edges),
fail_body=N(E.exc("reraise")),
reraise=reraise,
tail=N.tail(),
)
@staticmethod
def find_finally_cutoff(mapping):
f = mapping["finally_body"]
g = mapping["fail_body"]
if any(x.starts_line is not None for x in g.get_instructions()):
return None
if not isinstance(f, BlockTemplate):
f = BlockTemplate([f])
if not isinstance(g, BlockTemplate):
g = BlockTemplate([g])
if isinstance(g.members[0], InstTemplate) and g.members[0].inst.opname == "PUSH_EXC_INFO":
g.members.pop(0)
if isinstance(g.members[-1], InstTemplate) and g.members[-1].inst.opname == "RERAISE":
g.members.pop()
x = None
for x, y in zip(f.members, g.members):
if all(type(a) in [IfThen, IfElse] for a in (x, y)):
continue
if type(x) is not type(y):
return None
return x and f.members.index(x)
cutoff: int
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
mapping = cls.template.try_match(cfg, node)
if mapping is None:
mapping = cls.template2.try_match(cfg, node)
if mapping is None:
return None
mapping["try_header"] = mapping.pop("try_except")
cutoff = cls.find_finally_cutoff(mapping)
if cutoff is None:
if cfg.run == 2:
cutoff = 9999
else:
return None
template = condense_mapping(cls, cfg, mapping, "try_header", "try_body", "finally_body", "fail_body", "reraise")
template.cutoff = cutoff
return template
def to_indented_source(self, source: SourceContext) -> list[SourceLine]:
header = source[self.try_header]
body = source[self.try_body, 1]
if isinstance(self.finally_body, BlockTemplate):
i = self.cutoff + 1
in_finally = source[BlockTemplate(self.finally_body.members[:i]), 1] if i > 0 else []
after = source[BlockTemplate(self.finally_body.members[i:])] if i < len(self.finally_body.members) else []
else:
in_finally = source[self.finally_body, 1]
after = []
return list(chain(header, self.line("try:"), body, self.line("finally:"), in_finally, after))
@register_template(0, 1, (3, 9), (3, 10))
class Try3_10(ControlFlowTemplate):
template = T(
@@ -336,186 +519,3 @@ class TryFinally3_10(ControlFlowTemplate):
return list(chain(header, self.line("try:"), body, self.line("finally:"), in_finally, after))
class BareExcept3_11(Except3_11):
template = T(
except_body=N("except_footer", None, "reraise"),
except_footer=~N("tail.").with_in_deg(1).with_cond(starting_instructions("POP_EXCEPT")),
reraise=reraise,
tail=N.tail(),
)
try_match = make_try_match(
{
EdgeKind.Fall: "tail",
EdgeKind.Exception: "reraise",
},
"except_body",
"except_footer",
)
@to_indented_source
def to_indented_source():
"""
except:
{except_body}
{except_footer}
"""
class ExcBody3_11(ControlFlowTemplate):
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
if x := NamedExc3_11.try_match(cfg, node):
return x
return node
class NamedExcTail3_11(ControlFlowTemplate):
template = T(
SWAP=N("tail", None, "reraise").with_cond(exact_instructions("SWAP")),
reraise=reraise,
tail=N.tail(),
)
@classmethod
def _try_match(cls, cfg, node):
mapping = cls.template.try_match(cfg, node)
if mapping is None:
return None
return condense_mapping(cls, cfg, mapping, "SWAP", "tail", out_filter=[EdgeCategory.Exception])
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
if x := cls._try_match(cfg, node):
return x
return node
to_indented_source = defer_source_to("tail")
class NamedExc3_11(ExcBody3_11):
template = T(
STORE=N("body", None, "reraise").with_cond(exact_instructions("STORE_FAST"), exact_instructions("STORE_NAME")),
body=N("tail.", None, "cleanup"),
cleanup=N(E.exc("reraise")).with_cond(exact_instructions("LOAD_CONST", "STORE_FAST", "DELETE_FAST", "RERAISE"), exact_instructions("LOAD_CONST", "STORE_NAME", "DELETE_NAME", "RERAISE")),
reraise=reraise,
tail=N.tail().of_subtemplate(NamedExcTail3_11),
)
try_match = make_try_match({EdgeKind.Fall: "tail", EdgeKind.Exception: "reraise"}, "STORE", "body", "cleanup")
to_indented_source = defer_source_to("body")
class ExceptExc3_11(Except3_11):
template = T(
except_header=N("except_body", "no_match", "reraise").with_cond(ending_instructions("CHECK_EXC_MATCH", "POP_JUMP_FORWARD_IF_FALSE"), ending_instructions("CHECK_EXC_MATCH", "POP_JUMP_IF_FALSE")),
except_body=N("except_footer.", None, "reraise").of_subtemplate(ExcBody3_11).with_in_deg(1),
no_match=N("tail?", None, "reraise").with_in_deg(1).of_subtemplate(Except3_11),
except_footer=~N("tail.").with_in_deg(1).with_cond(starting_instructions("POP_EXCEPT")),
reraise=reraise,
tail=N.tail(),
)
try_match = revert_on_fail(
make_try_match(
{
EdgeKind.Fall: "tail",
EdgeKind.Exception: "reraise",
},
"except_header",
"except_body",
"except_footer",
"no_match",
)
)
@to_indented_source
def to_indented_source():
"""
{except_header}
{except_body}
{except_footer}
{no_match}
"""
@register_template(0, 50)
@register_template(2, 50)
class TryFinally3_12(ControlFlowTemplate):
template = T(
try_header=N("try_body"),
try_body=N("finally_body", None, "fail_body"),
finally_body=~N("tail.").with_in_deg(1).with_cond(no_back_edges),
fail_body=N(E.exc("reraise")),
reraise=reraise,
tail=N.tail(),
)
template2 = T(
try_except=N("finally_body", None, "fail_body").of_type(Try3_12, TryElse3_12),
finally_body=~N("tail.").with_in_deg(1).with_cond(no_back_edges),
fail_body=N(E.exc("reraise")),
reraise=reraise,
tail=N.tail(),
)
@staticmethod
def find_finally_cutoff(mapping):
f = mapping["finally_body"]
g = mapping["fail_body"]
if any(x.starts_line is not None for x in g.get_instructions()):
return None
if not isinstance(f, BlockTemplate):
f = BlockTemplate([f])
if not isinstance(g, BlockTemplate):
g = BlockTemplate([g])
if isinstance(g.members[0], InstTemplate) and g.members[0].inst.opname == "PUSH_EXC_INFO":
g.members.pop(0)
if isinstance(g.members[-1], InstTemplate) and g.members[-1].inst.opname == "RERAISE":
g.members.pop()
x = None
for x, y in zip(f.members, g.members):
if all(type(a) in [IfThen, IfElse] for a in (x, y)):
continue
if type(x) is not type(y):
return None
return x and f.members.index(x)
cutoff: int
@classmethod
@override
def try_match(cls, cfg, node) -> ControlFlowTemplate | None:
mapping = cls.template.try_match(cfg, node)
if mapping is None:
mapping = cls.template2.try_match(cfg, node)
if mapping is None:
return None
mapping["try_header"] = mapping.pop("try_except")
cutoff = cls.find_finally_cutoff(mapping)
if cutoff is None:
if cfg.run == 2:
cutoff = 9999
else:
return None
template = condense_mapping(cls, cfg, mapping, "try_header", "try_body", "finally_body", "fail_body", "reraise")
template.cutoff = cutoff
return template
def to_indented_source(self, source: SourceContext) -> list[SourceLine]:
header = source[self.try_header]
body = source[self.try_body, 1]
if isinstance(self.finally_body, BlockTemplate):
i = self.cutoff + 1
in_finally = source[BlockTemplate(self.finally_body.members[:i]), 1] if i > 0 else []
after = source[BlockTemplate(self.finally_body.members[i:])] if i < len(self.finally_body.members) else []
else:
in_finally = source[self.finally_body, 1]
after = []
return list(chain(header, self.line("try:"), body, self.line("finally:"), in_finally, after))