3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-15 15:25:28 +00:00
This commit is contained in:
Aki 2025-05-02 16:52:58 +00:00 committed by GitHub
commit 0ba801e81c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 91 additions and 0 deletions

61
misc/run-clang-tidy.py Executable file
View file

@ -0,0 +1,61 @@
#!/usr/bin/env python3
import sys
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
from pathlib import Path
from subprocess import run
from concurrent.futures import ThreadPoolExecutor
def main() -> int:
parser = ArgumentParser(
formatter_class = ArgumentDefaultsHelpFormatter,
description = 'clang-tidy runner',
prog = 'run-clang-tidy.py',
)
parser.add_argument(
'--source-path', '-s',
required = True,
type = Path,
metavar = 'source_path',
help = 'Path to the source directory to run clang-tidy in'
)
parser.add_argument(
'--build-path', '-p',
required = True,
type = Path,
metavar = 'build_path',
help = 'Path to the build directory containing a compile_commands.json'
)
args = parser.parse_args()
def glob_files():
paths = {'backends', 'frontend', 'kernel', 'passes', 'techlibs'}
suffixes = {'cc', 'h'}
for path in paths:
for suffix in suffixes:
yield args.source_path.glob(f'{path}/**/*.{suffix}')
def gather_files():
for file_glob in glob_files():
for file in file_glob:
yield file
extra_args = ()
futures = []
with ThreadPoolExecutor() as pool:
for file in gather_files():
futures.append(pool.submit(
run, ['clang-tidy', *extra_args, '-p', args.build_path, file]
))
return max((future.result().returncode for future in futures))
if __name__ == '__main__':
sys.exit(main())