2018-09-25 07:08:44 +00:00
|
|
|
#!/usr/bin/env python3
|
2022-12-14 12:50:03 +00:00
|
|
|
|
2024-01-03 11:19:35 +00:00
|
|
|
# Copyright (C) 2018-2024 Free Software Foundation, Inc.
|
2018-09-25 07:08:44 +00:00
|
|
|
#
|
|
|
|
# Find missing and extra parameters in documentation compared to
|
|
|
|
# output of: gcc --help=params.
|
|
|
|
#
|
|
|
|
# This file is part of GCC.
|
|
|
|
#
|
|
|
|
# GCC is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License as published by the Free
|
|
|
|
# Software Foundation; either version 3, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GCC; see the file COPYING3. If not see
|
2024-01-04 15:01:20 +00:00
|
|
|
# <http://www.gnu.org/licenses/>.
|
2018-09-25 07:08:44 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import argparse
|
2020-12-04 08:36:32 +00:00
|
|
|
import sys
|
2020-05-28 08:36:48 +00:00
|
|
|
from itertools import dropwhile, takewhile
|
2018-09-25 07:08:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_param_tuple(line):
|
2020-05-28 08:36:48 +00:00
|
|
|
line = line.strip().replace('--param=', '')
|
2018-09-25 07:08:44 +00:00
|
|
|
i = line.find(' ')
|
2020-05-28 08:36:48 +00:00
|
|
|
name = line[:i]
|
|
|
|
if '=' in name:
|
|
|
|
name = name[:name.find('=')]
|
|
|
|
description = line[i:].strip()
|
|
|
|
return (name, description)
|
|
|
|
|
2024-04-12 07:52:27 +00:00
|
|
|
def target_specific(param):
|
|
|
|
return param.split('-')[0] in ('aarch64', 'gcn', 'x86')
|
|
|
|
|
2018-09-25 07:08:44 +00:00
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('texi_file')
|
|
|
|
parser.add_argument('params_output')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2024-04-12 07:52:27 +00:00
|
|
|
ignored = {'logical-op-non-short-circuit'}
|
|
|
|
help_params = {}
|
2018-09-25 07:08:44 +00:00
|
|
|
|
|
|
|
for line in open(args.params_output).readlines():
|
2021-11-23 07:26:51 +00:00
|
|
|
if line.startswith(' ' * 2) and not line.startswith(' ' * 8):
|
2018-09-25 07:08:44 +00:00
|
|
|
r = get_param_tuple(line)
|
2024-04-12 07:52:27 +00:00
|
|
|
help_params[r[0]] = r[1]
|
|
|
|
|
|
|
|
# Skip target-specific params
|
|
|
|
help_params = [x for x in help_params.keys() if not target_specific(x)]
|
2018-09-25 07:08:44 +00:00
|
|
|
|
|
|
|
# Find section in .texi manual with parameters
|
|
|
|
texi = ([x.strip() for x in open(args.texi_file).readlines()])
|
2020-05-28 08:36:48 +00:00
|
|
|
texi = dropwhile(lambda x: 'item --param' not in x, texi)
|
|
|
|
texi = takewhile(lambda x: '@node Instrumentation Options' not in x, texi)
|
2018-09-25 07:08:44 +00:00
|
|
|
texi = list(texi)[1:]
|
|
|
|
|
2021-11-23 07:26:51 +00:00
|
|
|
texi_params = []
|
2024-09-18 14:38:30 +00:00
|
|
|
skip = False
|
2021-11-23 07:26:51 +00:00
|
|
|
for line in texi:
|
2024-09-18 14:38:30 +00:00
|
|
|
# Skip @table @samp sections of manual where values of a param are usually
|
|
|
|
# listed
|
|
|
|
if skip:
|
|
|
|
if line.startswith('@end table'):
|
|
|
|
skip = False
|
|
|
|
continue
|
|
|
|
elif line.startswith('@table @samp'):
|
|
|
|
skip = True
|
|
|
|
continue
|
|
|
|
|
2021-11-23 07:26:51 +00:00
|
|
|
for token in ('@item ', '@itemx '):
|
|
|
|
if line.startswith(token):
|
|
|
|
texi_params.append(line[len(token):])
|
|
|
|
break
|
|
|
|
|
2024-04-12 07:52:27 +00:00
|
|
|
# Skip target-specific params
|
|
|
|
texi_params = [x for x in texi_params if not target_specific(x)]
|
2018-09-25 07:08:44 +00:00
|
|
|
|
2021-11-23 07:26:51 +00:00
|
|
|
texi_set = set(texi_params) - ignored
|
2024-04-12 07:52:27 +00:00
|
|
|
params_set = set(help_params) - ignored
|
2018-09-25 07:08:44 +00:00
|
|
|
|
2020-12-04 08:36:32 +00:00
|
|
|
success = True
|
2018-09-25 07:08:44 +00:00
|
|
|
extra = texi_set - params_set
|
|
|
|
if len(extra):
|
|
|
|
print('Extra:')
|
|
|
|
print(extra)
|
2020-12-04 08:36:32 +00:00
|
|
|
success = False
|
2018-09-25 07:08:44 +00:00
|
|
|
|
|
|
|
missing = params_set - texi_set
|
|
|
|
if len(missing):
|
|
|
|
print('Missing:')
|
|
|
|
for m in missing:
|
|
|
|
print('@item ' + m)
|
|
|
|
print(params[m])
|
|
|
|
print()
|
2020-12-04 08:36:32 +00:00
|
|
|
success = False
|
2018-09-25 07:08:44 +00:00
|
|
|
|
2020-12-04 08:36:32 +00:00
|
|
|
sys.exit(0 if success else 1)
|