AArch64: Enable fast shifts on Neoverse V1/N2
[official-gcc.git] / contrib / filter-clang-warnings.py
blob361a5c6a09860a0b7e4e4fd5f8c920ad117a91a0
1 #!/usr/bin/env python3
3 # Script to analyze warnings produced by clang.
5 # This file is part of GCC.
7 # GCC is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free
9 # Software Foundation; either version 3, or (at your option) any later
10 # version.
12 # GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 # for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GCC; see the file COPYING3. If not see
19 # <http://www.gnu.org/licenses/>. */
24 import argparse
27 def skip_warning(filename, message):
28 ignores = {
29 '': ['-Warray-bounds', '-Wmismatched-tags',
30 'gcc_gfc: -Wignored-attributes', '-Wchar-subscripts',
31 'string literal (potentially insecure): -Wformat-security',
32 '-Wdeprecated-register',
33 '-Wvarargs', 'keyword is hidden by macro definition',
34 "but the argument has type 'char *': -Wformat-pedantic",
35 '-Wnested-anon-types',
36 'qualifier in explicit instantiation of',
37 'attribute argument not supported: asm_fprintf',
38 'when in C++ mode, this behavior is deprecated',
39 '-Wignored-attributes', '-Wgnu-zero-variadic-macro-arguments',
40 '-Wformat-security', '-Wundefined-internal',
41 '-Wunknown-warning-option'],
42 'insn-modes.c': ['-Wshift-count-overflow'],
43 'insn-emit.c': ['-Wtautological-compare'],
44 'insn-attrtab.c': ['-Wparentheses-equality'],
45 'gimple-match.c': ['-Wunused-', '-Wtautological-compare'],
46 'generic-match.c': ['-Wunused-', '-Wtautological-compare'],
47 'i386.md': ['-Wparentheses-equality', '-Wtautological-compare',
48 '-Wtautological-overlap-compare'],
49 'sse.md': ['-Wparentheses-equality', '-Wtautological-compare'],
50 'mmx.md': ['-Wtautological-compare'],
51 'genautomata.c': ['-Wstring-plus-int'],
52 'gfortran.texi': [''],
53 'libtool': ['']
56 for name, ignores in ignores.items():
57 for i in ignores:
58 if name in filename and i in message:
59 return True
60 return False
63 parser = argparse.ArgumentParser()
64 parser.add_argument('log', help='Log file with clang warnings')
65 args = parser.parse_args()
67 lines = [line.strip() for line in open(args.log)]
68 total = 0
69 messages = []
70 for line in lines:
71 token = ': warning: '
72 i = line.find(token)
73 if i != -1:
74 location = line[:i]
75 message = line[i + len(token):]
76 if not skip_warning(location, message):
77 total += 1
78 messages.append(line)
80 for line in sorted(messages):
81 print(line)
82 print('\nTotal warnings: %d' % total)