mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
8f9ab35ca2
A simple tool that prints the overestimated targets found by `getInvalidations` of all Kinds, without actually invalidating them.
33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
#
|
|
# This file is distributed under the MIT License. See LICENSE.md for details.
|
|
#
|
|
|
|
from revng.cli.commands_registry import Command, CommandsRegistry, Options
|
|
from revng.cli.support import build_command_with_loads, collect_files, interleave, run
|
|
|
|
|
|
class PipelineToolCommand(Command):
|
|
def __init__(self, name: str, description: str):
|
|
super().__init__((name,), description, False)
|
|
|
|
def register_arguments(self, parser):
|
|
pass
|
|
|
|
def run(self, options: Options):
|
|
pipelines = collect_files(options.search_prefixes, ["share", "revng", "pipelines"], "*.yml")
|
|
pipelines_args = interleave(pipelines, "-P")
|
|
command = build_command_with_loads(
|
|
f"revng-{self.name}", pipelines_args + options.remaining_args, options
|
|
)
|
|
return run(command, options)
|
|
|
|
|
|
def setup(commands_registry: CommandsRegistry):
|
|
commands_registry.register_command(PipelineToolCommand("artifact", "revng artifact producer"))
|
|
commands_registry.register_command(PipelineToolCommand("analyze", "revng analyzer"))
|
|
commands_registry.register_command(PipelineToolCommand("invalidate", "revng invalidate"))
|
|
commands_registry.register_command(PipelineToolCommand("pipeline", "revng pipeline"))
|
|
commands_registry.register_command(
|
|
PipelineToolCommand("print-invalidations", "revng print-invalidations")
|
|
)
|