From 8e3d2a904fe046910ee831e6fd9d2316aafc260a Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 30 Mar 2025 03:09:19 -0600 Subject: measurestack: Rework the skip-call API to speed things up --- build-aux/measurestack/util.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'build-aux/measurestack/util.py') diff --git a/build-aux/measurestack/util.py b/build-aux/measurestack/util.py index 5367da9..47b2617 100644 --- a/build-aux/measurestack/util.py +++ b/build-aux/measurestack/util.py @@ -6,7 +6,7 @@ import re import typing -from . import vcg +from . import analyze, vcg from .analyze import BaseName, Node, QName # pylint: disable=unused-variable @@ -82,7 +82,7 @@ class Plugin(typing.Protocol): def indirect_callees( self, loc: str, line: str ) -> tuple[typing.Collection[QName], bool] | None: ... - def skip_call(self, chain: typing.Sequence[QName], call: QName) -> bool: ... + def skipmodels(self) -> dict[BaseName, analyze.SkipModel]: ... class PluginApplication: @@ -118,8 +118,8 @@ class PluginApplication: placeholder += " at " + self._location_xform(elem.attrs.get("label", "")) return [QName(placeholder)], False - def skip_call(self, chain: typing.Sequence[QName], funcname: QName) -> bool: + def skipmodels(self) -> dict[BaseName, analyze.SkipModel]: + ret: dict[BaseName, analyze.SkipModel] = {} for plugin in self._plugins: - if plugin.skip_call(chain, funcname): - return True - return False + ret.update(plugin.skipmodels()) + return ret -- cgit v1.2.3-2-g168b