Silence ARI for valid calls to abort
[deliverable/binutils-gdb.git] / gdb / contrib / ari / gdb_ari.sh
1 #!/bin/sh
2
3 # GDB script to list of problems using awk.
4 #
5 # Copyright (C) 2002-2019 Free Software Foundation, Inc.
6 #
7 # This file is part of GDB.
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21
22 # Make certain that the script is not running in an internationalized
23 # environment.
24
25 LANG=C ; export LANG
26 LC_ALL=C ; export LC_ALL
27
28 # Permanent checks take the form:
29
30 # Do not use XXXX, C++11 implies YYYY
31 # Do not use XXXX, instead use YYYY''.
32
33 # and should never be removed.
34
35 # Temporary checks take the form:
36
37 # Replace XXXX with YYYY
38
39 # and once they reach zero, can be eliminated.
40
41 # FIXME: It should be able to override this on the command line
42 error="regression"
43 warning="regression"
44 ari="regression eol code comment deprecated legacy obsolete gettext"
45 all="regression eol code comment deprecated legacy obsolete gettext deprecate internal gdbarch macro"
46 print_doc=0
47 print_idx=0
48
49 usage ()
50 {
51 cat <<EOF 1>&2
52 Error: $1
53
54 Usage:
55 $0 --print-doc --print-idx -Wall -Werror -W<category> <file> ...
56 Options:
57 --print-doc Print a list of all potential problems, then exit.
58 --print-idx Include the problems IDX (index or key) in every message.
59 --src=file Write source lines to file.
60 -Werror Treat all problems as errors.
61 -Wall Report all problems.
62 -Wari Report problems that should be fixed in new code.
63 -W<category> Report problems in the specifed category. Valid categories
64 are: ${all}
65 EOF
66 exit 1
67 }
68
69
70 # Parse the various options
71 Woptions=
72 srclines=""
73 while test $# -gt 0
74 do
75 case "$1" in
76 -Wall ) Woptions="${all}" ;;
77 -Wari ) Woptions="${ari}" ;;
78 -Werror ) Werror=1 ;;
79 -W* ) Woptions="${Woptions} `echo x$1 | sed -e 's/x-W//'`" ;;
80 --print-doc ) print_doc=1 ;;
81 --print-idx ) print_idx=1 ;;
82 --src=* ) srclines="`echo $1 | sed -e 's/--src=/srclines=\"/'`\"" ;;
83 -- ) shift ; break ;;
84 - ) break ;;
85 -* ) usage "$1: unknown option" ;;
86 * ) break ;;
87 esac
88 shift
89 done
90 if test -n "$Woptions" ; then
91 warning="$Woptions"
92 error=
93 fi
94
95
96 # -Werror implies treating all warnings as errors.
97 if test -n "${Werror}" ; then
98 error="${error} ${warning}"
99 fi
100
101
102 # Validate all errors and warnings.
103 for w in ${warning} ${error}
104 do
105 case " ${all} " in
106 *" ${w} "* ) ;;
107 * ) usage "Unknown option -W${w}" ;;
108 esac
109 done
110
111
112 # make certain that there is at least one file.
113 if test $# -eq 0 -a ${print_doc} = 0
114 then
115 usage "Missing file."
116 fi
117
118
119 # Convert the errors/warnings into corresponding array entries.
120 for a in ${all}
121 do
122 aris="${aris} ari_${a} = \"${a}\";"
123 done
124 for w in ${warning}
125 do
126 warnings="${warnings} warning[ari_${w}] = 1;"
127 done
128 for e in ${error}
129 do
130 errors="${errors} error[ari_${e}] = 1;"
131 done
132
133 if [ "$AWK" = "" ] ; then
134 AWK=awk
135 fi
136
137 ${AWK} -- '
138 BEGIN {
139 # NOTE, for a per-file begin use "FNR == 1".
140 '"${aris}"'
141 '"${errors}"'
142 '"${warnings}"'
143 '"${srclines}"'
144 print_doc = '$print_doc'
145 print_idx = '$print_idx'
146 PWD = "'`pwd`'"
147 }
148
149 # Print the error message for BUG. Append SUPLEMENT if non-empty.
150 function print_bug(file,line,prefix,category,bug,doc,supplement, suffix,idx) {
151 if (print_idx) {
152 idx = bug ": "
153 } else {
154 idx = ""
155 }
156 if (supplement) {
157 suffix = " (" supplement ")"
158 } else {
159 suffix = ""
160 }
161 # ari.*.bug: <FILE>:<LINE>: <CATEGORY>: <BUG>: <DOC>
162 print file ":" line ": " prefix category ": " idx doc suffix
163 if (srclines != "") {
164 print file ":" line ":" $0 >> srclines
165 }
166 }
167
168 function fix(bug,file,count) {
169 skip[bug, file] = count
170 skipped[bug, file] = 0
171 }
172
173 function fail(bug,supplement) {
174 if (doc[bug] == "") {
175 print_bug("", 0, "internal: ", "internal", "internal", "Missing doc for bug " bug)
176 exit
177 }
178 if (category[bug] == "") {
179 print_bug("", 0, "internal: ", "internal", "internal", "Missing category for bug " bug)
180 exit
181 }
182
183 if (ARI_OK == bug) {
184 return
185 }
186 # Trim the filename down to just DIRECTORY/FILE so that it can be
187 # robustly used by the FIX code.
188
189 if (FILENAME ~ /^\//) {
190 canonicalname = FILENAME
191 } else {
192 canonicalname = PWD "/" FILENAME
193 }
194 shortname = gensub (/^.*\/([^\\]*\/[^\\]*)$/, "\\1", 1, canonicalname)
195
196 skipped[bug, shortname]++
197 if (skip[bug, shortname] >= skipped[bug, shortname]) {
198 # print FILENAME, FNR, skip[bug, FILENAME], skipped[bug, FILENAME], bug
199 # Do nothing
200 } else if (error[category[bug]]) {
201 # ari.*.bug: <FILE>:<LINE>: <CATEGORY>: <BUG>: <DOC>
202 print_bug(FILENAME, FNR, "", category[bug], bug, doc[bug], supplement)
203 } else if (warning[category[bug]]) {
204 # ari.*.bug: <FILE>:<LINE>: <CATEGORY>: <BUG>: <DOC>
205 print_bug(FILENAME, FNR, "warning: ", category[bug], bug, doc[bug], supplement)
206 }
207 }
208
209 FNR == 1 {
210 seen[FILENAME] = 1
211 if (match(FILENAME, "\\.[ly]$")) {
212 # FILENAME is a lex or yacc source
213 is_yacc_or_lex = 1
214 }
215 else {
216 is_yacc_or_lex = 0
217 }
218 }
219 END {
220 if (print_idx) {
221 idx = bug ": "
222 } else {
223 idx = ""
224 }
225 # Did we do only a partial skip?
226 for (bug_n_file in skip) {
227 split (bug_n_file, a, SUBSEP)
228 bug = a[1]
229 file = a[2]
230 if (seen[file] && (skipped[bug_n_file] < skip[bug_n_file])) {
231 # ari.*.bug: <FILE>:<LINE>: <CATEGORY>: <BUG>: <DOC>
232 b = file " missing " bug
233 print_bug(file, 0, "", "internal", file " missing " bug, "Expecting " skip[bug_n_file] " occurances of bug " bug " in file " file ", only found " skipped[bug_n_file])
234 }
235 }
236 }
237
238
239 # Skip OBSOLETE lines
240 /(^|[^_[:alnum:]])OBSOLETE([^_[:alnum:]]|$)/ { next; }
241
242 # Skip ARI lines
243
244 BEGIN {
245 ARI_OK = ""
246 }
247
248 /\/\* ARI:[[:space:]]*(.*)[[:space:]]*\*\// {
249 ARI_OK = gensub(/^.*\/\* ARI:[[:space:]]*(.*[^[:space:]])[[:space:]]*\*\/.*$/, "\\1", 1, $0)
250 # print "ARI line found \"" $0 "\""
251 # print "ARI_OK \"" ARI_OK "\""
252 }
253 ! /\/\* ARI:[[:space:]]*(.*)[[:space:]]*\*\// {
254 ARI_OK = ""
255 }
256
257
258 # SNIP - Strip out comments - SNIP
259
260 FNR == 1 {
261 comment_p = 0
262 }
263 comment_p && /\*\// { gsub (/^([^\*]|\*+[^\/\*])*\*+\//, " "); comment_p = 0; }
264 comment_p { next; }
265 !comment_p { gsub (/\/\*([^\*]|\*+[^\/\*])*\*+\//, " "); }
266 !comment_p && /(^|[^"])\/\*/ { gsub (/\/\*.*$/, " "); comment_p = 1; }
267
268
269 BEGIN { doc["_ markup"] = "\
270 All messages should be marked up with _."
271 category["_ markup"] = ari_gettext
272 }
273 /^[^"]*[[:space:]](warning|error|error_no_arg|query|perror_with_name)[[:space:]]*\([^_\(a-z]/ {
274 if (! /\("%s"/) {
275 fail("_ markup")
276 }
277 }
278
279 BEGIN { doc["trailing new line"] = "\
280 A message should not have a trailing new line"
281 category["trailing new line"] = ari_gettext
282 }
283 /(^|[^_[:alnum:]])(warning|error)[[:space:]]*\(_\(".*\\n"\)[\),]/ {
284 fail("trailing new line")
285 }
286
287 # Include files for which GDB has a custom version.
288
289 BEGIN { doc["assert.h"] = "\
290 Do not include assert.h, instead include \"gdb_assert.h\"";
291 category["assert.h"] = ari_regression
292 fix("assert.h", "gdb/gdb_assert.h", 0) # it does not use it
293 }
294 /^#[[:space:]]*include[[:space:]]+.assert\.h./ {
295 fail("assert.h")
296 }
297
298 BEGIN { doc["regex.h"] = "\
299 Do not include regex.h, instead include gdb_regex.h"
300 category["regex.h"] = ari_regression
301 fix("regex.h", "gdb/gdb_regex.h", 1)
302 }
303 /^#[[:space:]]*include[[:space:]]*.regex\.h./ {
304 fail("regex.h")
305 }
306
307 BEGIN { doc["xregex.h"] = "\
308 Do not include xregex.h, instead include gdb_regex.h"
309 category["xregex.h"] = ari_regression
310 fix("xregex.h", "gdb/gdb_regex.h", 1)
311 }
312 /^#[[:space:]]*include[[:space:]]*.xregex\.h./ {
313 fail("xregex.h")
314 }
315
316 BEGIN { doc["gnu-regex.h"] = "\
317 Do not include gnu-regex.h, instead include gdb_regex.h"
318 category["gnu-regex.h"] = ari_regression
319 }
320 /^#[[:space:]]*include[[:space:]]*.gnu-regex\.h./ {
321 fail("gnu regex.h")
322 }
323
324 BEGIN { doc["wait.h"] = "\
325 Do not include wait.h or sys/wait.h, instead include gdb_wait.h"
326 fix("wait.h", "gdbsupport/gdb_wait.h", 2);
327 category["wait.h"] = ari_regression
328 }
329 /^#[[:space:]]*include[[:space:]]*.wait\.h./ \
330 || /^#[[:space:]]*include[[:space:]]*.sys\/wait\.h./ {
331 fail("wait.h")
332 }
333
334 BEGIN { doc["vfork.h"] = "\
335 Do not include vfork.h, instead include gdb_vfork.h"
336 fix("vfork.h", "gdb/gdb_vfork.h", 1);
337 category["vfork.h"] = ari_regression
338 }
339 /^#[[:space:]]*include[[:space:]]*.vfork\.h./ {
340 fail("vfork.h")
341 }
342
343 BEGIN { doc["error not internal-warning"] = "\
344 Do not use error(\"internal-warning\"), instead use internal_warning"
345 category["error not internal-warning"] = ari_regression
346 }
347 /error.*\"[Ii]nternal.warning/ {
348 fail("error not internal-warning")
349 }
350
351 BEGIN { doc["%p"] = "\
352 Do not use printf(\"%p\"), instead use printf(\"%s\",paddr()) to dump a \
353 target address, or host_address_to_string() for a host address"
354 category["%p"] = ari_code
355 }
356 # Allow gdb %p extensions, but not other uses of %p.
357 /%p[^[\]sF]/ && !/%prec/ {
358 fail("%p")
359 }
360
361 BEGIN { doc["%ll"] = "\
362 Do not use printf(\"%ll\"), instead use printf(\"%s\",phex()) to dump a \
363 `long long'\'' value"
364 category["%ll"] = ari_code
365 }
366 # Allow %ll in scanf
367 /%[0-9]*ll/ && !/scanf \(.*%[0-9]*ll/ {
368 fail("%ll")
369 }
370
371
372 # SNIP - Strip out strings - SNIP
373
374 # Test on top.c, scm-valprint.c, remote-rdi.c, ada-lang.c
375 FNR == 1 {
376 string_p = 0
377 trace_string = 0
378 }
379 # Strip escaped characters.
380 { gsub(/\\./, "."); }
381 # Strip quoted quotes.
382 { gsub(/'\''.'\''/, "'\''.'\''"); }
383 # End of multi-line string
384 string_p && /\"/ {
385 if (trace_string) print "EOS:" FNR, $0;
386 gsub (/^[^\"]*\"/, "'\''");
387 string_p = 0;
388 }
389 # Middle of multi-line string, discard line.
390 string_p {
391 if (trace_string) print "MOS:" FNR, $0;
392 $0 = ""
393 }
394 # Strip complete strings from the middle of the line
395 !string_p && /\"[^\"]*\"/ {
396 if (trace_string) print "COS:" FNR, $0;
397 gsub (/\"[^\"]*\"/, "'\''");
398 }
399 # Start of multi-line string
400 BEGIN { doc["multi-line string"] = "\
401 Multi-line string must have the newline escaped"
402 category["multi-line string"] = ari_regression
403 }
404 !string_p && /\"/ {
405 if (trace_string) print "SOS:" FNR, $0;
406 if (/[^\\]$/) {
407 fail("multi-line string")
408 }
409 gsub (/\"[^\"]*$/, "'\''");
410 string_p = 1;
411 }
412 # { print }
413
414 # Multi-line string
415 string_p &&
416
417 # Accumulate continuation lines
418 FNR == 1 {
419 cont_p = 0
420 }
421 !cont_p { full_line = ""; }
422 /[^\\]\\$/ { gsub (/\\$/, ""); full_line = full_line $0; cont_p = 1; next; }
423 cont_p { $0 = full_line $0; cont_p = 0; full_line = ""; }
424
425
426 BEGIN { doc["__FUNCTION__"] = "\
427 Do not use __FUNCTION__, C++11 does not support this macro"
428 category["__FUNCTION__"] = ari_regression
429 }
430 /(^|[^_[:alnum:]])__FUNCTION__([^_[:alnum:]]|$)/ {
431 fail("__FUNCTION__")
432 }
433
434 BEGIN { doc["__CYGWIN32__"] = "\
435 Do not use __CYGWIN32__, instead use __CYGWIN__ or, better, an explicit \
436 autoconf tests"
437 category["__CYGWIN32__"] = ari_regression
438 }
439 /(^|[^_[:alnum:]])__CYGWIN32__([^_[:alnum:]]|$)/ {
440 fail("__CYGWIN32__")
441 }
442
443 BEGIN { doc["PTR"] = "\
444 Do not use PTR, C++11 implies `void *'\''"
445 category["PTR"] = ari_regression
446 #fix("PTR", "gdb/utils.c", 6)
447 }
448 /(^|[^_[:alnum:]])PTR([^_[:alnum:]]|$)/ {
449 fail("PTR")
450 }
451
452 BEGIN { doc["UCASE function"] = "\
453 Function name is uppercase."
454 category["UCASE function"] = ari_code
455 possible_UCASE = 0
456 UCASE_full_line = ""
457 }
458 (possible_UCASE) {
459 if (ARI_OK == "UCASE function") {
460 possible_UCASE = 0
461 }
462 # Closing brace found?
463 else if (UCASE_full_line ~ \
464 /^[A-Z][[:alnum:]_]*[[:space:]]*\([^()]*\).*$/) {
465 if ((UCASE_full_line ~ \
466 /^[A-Z][[:alnum:]_]*[[:space:]]*\([^()]*\)[[:space:]]*$/) \
467 && ($0 ~ /^\{/) && (is_yacc_or_lex == 0)) {
468 store_FNR = FNR
469 FNR = possible_FNR
470 store_0 = $0;
471 $0 = UCASE_full_line;
472 fail("UCASE function")
473 FNR = store_FNR
474 $0 = store_0;
475 }
476 possible_UCASE = 0
477 UCASE_full_line = ""
478 } else {
479 UCASE_full_line = UCASE_full_line $0;
480 }
481 }
482 /^[A-Z][[:alnum:]_]*[[:space:]]*\([^()]*(|\))[[:space:]]*$/ {
483 possible_UCASE = 1
484 if (ARI_OK == "UCASE function") {
485 possible_UCASE = 0
486 }
487 possible_FNR = FNR
488 UCASE_full_line = $0
489 }
490
491
492 BEGIN { doc["editCase function"] = "\
493 Function name starts lower case but has uppercased letters."
494 category["editCase function"] = ari_code
495 possible_editCase = 0
496 editCase_full_line = ""
497 }
498 (possible_editCase) {
499 if (ARI_OK == "editCase function") {
500 possible_editCase = 0
501 }
502 # Closing brace found?
503 else if (editCase_full_line ~ \
504 /^[a-z][a-z0-9_]*[A-Z][a-z0-9A-Z_]*[[:space:]]*\([^()]*\).*$/) {
505 if ((editCase_full_line ~ \
506 /^[a-z][a-z0-9_]*[A-Z][a-z0-9A-Z_]*[[:space:]]*\([^()]*\)[[:space:]]*$/) \
507 && ($0 ~ /^\{/) && (is_yacc_or_lex == 0)) {
508 store_FNR = FNR
509 FNR = possible_FNR
510 store_0 = $0;
511 $0 = editCase_full_line;
512 fail("editCase function")
513 FNR = store_FNR
514 $0 = store_0;
515 }
516 possible_editCase = 0
517 editCase_full_line = ""
518 } else {
519 editCase_full_line = editCase_full_line $0;
520 }
521 }
522 /^[a-z][a-z0-9_]*[A-Z][a-z0-9A-Z_]*[[:space:]]*\([^()]*(|\))[[:space:]]*$/ {
523 possible_editCase = 1
524 if (ARI_OK == "editCase function") {
525 possible_editCase = 0
526 }
527 possible_FNR = FNR
528 editCase_full_line = $0
529 }
530
531 # Only function implementation should be on first column
532 BEGIN { doc["function call in first column"] = "\
533 Function name in first column should be restricted to function implementation"
534 category["function call in first column"] = ari_code
535 }
536 /^[a-z][a-z0-9_]*[[:space:]]*\((|[^*][^()]*)\)[[:space:]]*[^ \t]+/ {
537 fail("function call in first column")
538 }
539
540
541 BEGIN { doc["hash"] = "\
542 Do not use ` #...'\'', instead use `#...'\''(some compilers only correctly \
543 parse a C preprocessor directive when `#'\'' is the first character on \
544 the line)"
545 category["hash"] = ari_regression
546 }
547 /^[[:space:]]+#/ {
548 fail("hash")
549 }
550
551 BEGIN { doc["OP eol"] = "\
552 Do not use &&, or || at the end of a line"
553 category["OP eol"] = ari_code
554 }
555 # * operator needs a special treatment as it can be a
556 # valid end of line for a pointer type definition
557 # Only catch case where an assignment or an opening brace is present
558 /(\|\||\&\&|==|!=|[[:space:]][+\-\/])[[:space:]]*$/ \
559 || /(\(|=)[[:space:]].*[[:space:]]\*[[:space:]]*$/ {
560 fail("OP eol")
561 }
562
563 BEGIN { doc["strerror"] = "\
564 Do not use strerror(), instead use safe_strerror()"
565 category["strerror"] = ari_regression
566 fix("strerror", "gdb/gdb_string.h", 1)
567 fix("strerror", "gdb/gdbsupport/mingw-strerror.c", 1)
568 fix("strerror", "gdb/gdbsupport/posix-strerror.c", 1)
569 }
570 /(^|[^_[:alnum:]])strerror[[:space:]]*\(/ {
571 fail("strerror")
572 }
573
574 BEGIN { doc["long long"] = "\
575 Do not use `long long'\'', instead use LONGEST"
576 category["long long"] = ari_code
577 # defs.h needs two such patterns for LONGEST and ULONGEST definitions
578 fix("long long", "gdb/defs.h", 2)
579 }
580 /(^|[^_[:alnum:]])long[[:space:]]+long([^_[:alnum:]]|$)/ {
581 fail("long long")
582 }
583
584 BEGIN { doc["ATTR_FORMAT"] = "\
585 Do not use ATTR_FORMAT, use ATTRIBUTE_PRINTF instead"
586 category["ATTR_FORMAT"] = ari_regression
587 }
588 /(^|[^_[:alnum:]])ATTR_FORMAT([^_[:alnum:]]|$)/ {
589 fail("ATTR_FORMAT")
590 }
591
592 BEGIN { doc["ATTR_NORETURN"] = "\
593 Do not use ATTR_NORETURN, use ATTRIBUTE_NORETURN instead"
594 category["ATTR_NORETURN"] = ari_regression
595 }
596 /(^|[^_[:alnum:]])ATTR_NORETURN([^_[:alnum:]]|$)/ {
597 fail("ATTR_NORETURN")
598 }
599
600 BEGIN { doc["NORETURN"] = "\
601 Do not use NORETURN, use ATTRIBUTE_NORETURN instead"
602 category["NORETURN"] = ari_regression
603 }
604 /(^|[^_[:alnum:]])NORETURN([^_[:alnum:]]|$)/ {
605 fail("NORETURN")
606 }
607
608
609 # General problems
610
611 BEGIN { doc["multiple messages"] = "\
612 Do not use multiple calls to warning or error, instead use a single call"
613 category["multiple messages"] = ari_gettext
614 }
615 FNR == 1 {
616 warning_fnr = -1
617 }
618 /(^|[^_[:alnum:]])(warning|error)[[:space:]]*\(/ {
619 if (FNR == warning_fnr + 1) {
620 fail("multiple messages")
621 } else {
622 warning_fnr = FNR
623 }
624 }
625
626 # Commented out, but left inside sources, just in case.
627 # BEGIN { doc["inline"] = "\
628 # Do not use the inline attribute; \
629 # since the compiler generally ignores this, better algorithm selection \
630 # is needed to improved performance"
631 # category["inline"] = ari_code
632 # }
633 # /(^|[^_[:alnum:]])inline([^_[:alnum:]]|$)/ {
634 # fail("inline")
635 # }
636
637 # This test is obsolete as this type
638 # has been deprecated and finally suppressed from GDB sources
639 #BEGIN { doc["obj_private"] = "\
640 #Replace obj_private with objfile_data"
641 # category["obj_private"] = ari_obsolete
642 #}
643 #/(^|[^_[:alnum:]])obj_private([^_[:alnum:]]|$)/ {
644 # fail("obj_private")
645 #}
646
647 BEGIN { doc["abort"] = "\
648 Do not use abort, instead use internal_error; GDB should never abort"
649 category["abort"] = ari_regression
650 }
651 /(^|[^_[:alnum:]])abort[[:space:]]*\(/ {
652 fail("abort")
653 }
654
655 BEGIN { doc["basename"] = "\
656 Do not use basename, instead use lbasename"
657 category["basename"] = ari_regression
658 }
659 /(^|[^_[:alnum:]])basename[[:space:]]*\(/ {
660 fail("basename")
661 }
662
663 BEGIN { doc["assert"] = "\
664 Do not use assert, instead use gdb_assert or internal_error; assert \
665 calls abort and GDB should never call abort"
666 category["assert"] = ari_regression
667 }
668 /(^|[^_[:alnum:]])assert[[:space:]]*\(/ {
669 fail("assert")
670 }
671
672 BEGIN { doc["TARGET_HAS_HARDWARE_WATCHPOINTS"] = "\
673 Replace TARGET_HAS_HARDWARE_WATCHPOINTS with nothing, not needed"
674 category["TARGET_HAS_HARDWARE_WATCHPOINTS"] = ari_regression
675 }
676 /(^|[^_[:alnum:]])TARGET_HAS_HARDWARE_WATCHPOINTS([^_[:alnum:]]|$)/ {
677 fail("TARGET_HAS_HARDWARE_WATCHPOINTS")
678 }
679
680 BEGIN { doc["ADD_SHARED_SYMBOL_FILES"] = "\
681 Replace ADD_SHARED_SYMBOL_FILES with nothing, not needed?"
682 category["ADD_SHARED_SYMBOL_FILES"] = ari_regression
683 }
684 /(^|[^_[:alnum:]])ADD_SHARED_SYMBOL_FILES([^_[:alnum:]]|$)/ {
685 fail("ADD_SHARED_SYMBOL_FILES")
686 }
687
688 BEGIN { doc["SOLIB_ADD"] = "\
689 Replace SOLIB_ADD with nothing, not needed?"
690 category["SOLIB_ADD"] = ari_regression
691 }
692 /(^|[^_[:alnum:]])SOLIB_ADD([^_[:alnum:]]|$)/ {
693 fail("SOLIB_ADD")
694 }
695
696 BEGIN { doc["SOLIB_CREATE_INFERIOR_HOOK"] = "\
697 Replace SOLIB_CREATE_INFERIOR_HOOK with nothing, not needed?"
698 category["SOLIB_CREATE_INFERIOR_HOOK"] = ari_regression
699 }
700 /(^|[^_[:alnum:]])SOLIB_CREATE_INFERIOR_HOOK([^_[:alnum:]]|$)/ {
701 fail("SOLIB_CREATE_INFERIOR_HOOK")
702 }
703
704 BEGIN { doc["SOLIB_LOADED_LIBRARY_PATHNAME"] = "\
705 Replace SOLIB_LOADED_LIBRARY_PATHNAME with nothing, not needed?"
706 category["SOLIB_LOADED_LIBRARY_PATHNAME"] = ari_regression
707 }
708 /(^|[^_[:alnum:]])SOLIB_LOADED_LIBRARY_PATHNAME([^_[:alnum:]]|$)/ {
709 fail("SOLIB_LOADED_LIBRARY_PATHNAME")
710 }
711
712 BEGIN { doc["REGISTER_U_ADDR"] = "\
713 Replace REGISTER_U_ADDR with nothing, not needed?"
714 category["REGISTER_U_ADDR"] = ari_regression
715 }
716 /(^|[^_[:alnum:]])REGISTER_U_ADDR([^_[:alnum:]]|$)/ {
717 fail("REGISTER_U_ADDR")
718 }
719
720 BEGIN { doc["PROCESS_LINENUMBER_HOOK"] = "\
721 Replace PROCESS_LINENUMBER_HOOK with nothing, not needed?"
722 category["PROCESS_LINENUMBER_HOOK"] = ari_regression
723 }
724 /(^|[^_[:alnum:]])PROCESS_LINENUMBER_HOOK([^_[:alnum:]]|$)/ {
725 fail("PROCESS_LINENUMBER_HOOK")
726 }
727
728 BEGIN { doc["PC_SOLIB"] = "\
729 Replace PC_SOLIB with nothing, not needed?"
730 category["PC_SOLIB"] = ari_regression
731 }
732 /(^|[^_[:alnum:]])PC_SOLIB([^_[:alnum:]]|$)/ {
733 fail("PC_SOLIB")
734 }
735
736 BEGIN { doc["IN_SOLIB_DYNSYM_RESOLVE_CODE"] = "\
737 Replace IN_SOLIB_DYNSYM_RESOLVE_CODE with nothing, not needed?"
738 category["IN_SOLIB_DYNSYM_RESOLVE_CODE"] = ari_regression
739 }
740 /(^|[^_[:alnum:]])IN_SOLIB_DYNSYM_RESOLVE_CODE([^_[:alnum:]]|$)/ {
741 fail("IN_SOLIB_DYNSYM_RESOLVE_CODE")
742 }
743
744 BEGIN { doc["GCC_COMPILED_FLAG_SYMBOL"] = "\
745 Replace GCC_COMPILED_FLAG_SYMBOL with nothing, not needed?"
746 category["GCC_COMPILED_FLAG_SYMBOL"] = ari_deprecate
747 }
748 /(^|[^_[:alnum:]])GCC_COMPILED_FLAG_SYMBOL([^_[:alnum:]]|$)/ {
749 fail("GCC_COMPILED_FLAG_SYMBOL")
750 }
751
752 BEGIN { doc["GCC2_COMPILED_FLAG_SYMBOL"] = "\
753 Replace GCC2_COMPILED_FLAG_SYMBOL with nothing, not needed?"
754 category["GCC2_COMPILED_FLAG_SYMBOL"] = ari_deprecate
755 }
756 /(^|[^_[:alnum:]])GCC2_COMPILED_FLAG_SYMBOL([^_[:alnum:]]|$)/ {
757 fail("GCC2_COMPILED_FLAG_SYMBOL")
758 }
759
760 BEGIN { doc["FUNCTION_EPILOGUE_SIZE"] = "\
761 Replace FUNCTION_EPILOGUE_SIZE with nothing, not needed?"
762 category["FUNCTION_EPILOGUE_SIZE"] = ari_regression
763 }
764 /(^|[^_[:alnum:]])FUNCTION_EPILOGUE_SIZE([^_[:alnum:]]|$)/ {
765 fail("FUNCTION_EPILOGUE_SIZE")
766 }
767
768 BEGIN { doc["HAVE_VFORK"] = "\
769 Do not use HAVE_VFORK, instead include \"gdb_vfork.h\" and call vfork() \
770 unconditionally"
771 category["HAVE_VFORK"] = ari_regression
772 }
773 /(^|[^_[:alnum:]])HAVE_VFORK([^_[:alnum:]]|$)/ {
774 fail("HAVE_VFORK")
775 }
776
777 BEGIN { doc["bcmp"] = "\
778 Do not use bcmp(), C++11 implies memcmp()"
779 category["bcmp"] = ari_regression
780 }
781 /(^|[^_[:alnum:]])bcmp[[:space:]]*\(/ {
782 fail("bcmp")
783 }
784
785 BEGIN { doc["setlinebuf"] = "\
786 Do not use setlinebuf(), C++11 implies setvbuf()"
787 category["setlinebuf"] = ari_regression
788 }
789 /(^|[^_[:alnum:]])setlinebuf[[:space:]]*\(/ {
790 fail("setlinebuf")
791 }
792
793 BEGIN { doc["bcopy"] = "\
794 Do not use bcopy(), C++11 implies memcpy() and memmove()"
795 category["bcopy"] = ari_regression
796 }
797 /(^|[^_[:alnum:]])bcopy[[:space:]]*\(/ {
798 fail("bcopy")
799 }
800
801 BEGIN { doc["get_frame_base"] = "\
802 Replace get_frame_base with get_frame_id, get_frame_base_address, \
803 get_frame_locals_address, or get_frame_args_address."
804 category["get_frame_base"] = ari_obsolete
805 }
806 /(^|[^_[:alnum:]])get_frame_base([^_[:alnum:]]|$)/ {
807 fail("get_frame_base")
808 }
809
810 BEGIN { doc["floatformat_to_double"] = "\
811 Do not use floatformat_to_double() from libierty, \
812 instead use floatformat_to_doublest()"
813 fix("floatformat_to_double", "gdb/doublest.c", 1)
814 category["floatformat_to_double"] = ari_regression
815 }
816 /(^|[^_[:alnum:]])floatformat_to_double[[:space:]]*\(/ {
817 fail("floatformat_to_double")
818 }
819
820 BEGIN { doc["floatformat_from_double"] = "\
821 Do not use floatformat_from_double() from libierty, \
822 instead use host_float_ops<T>::from_target()"
823 category["floatformat_from_double"] = ari_regression
824 }
825 /(^|[^_[:alnum:]])floatformat_from_double[[:space:]]*\(/ {
826 fail("floatformat_from_double")
827 }
828
829 BEGIN { doc["BIG_ENDIAN"] = "\
830 Do not use BIG_ENDIAN, instead use BFD_ENDIAN_BIG"
831 category["BIG_ENDIAN"] = ari_regression
832 }
833 /(^|[^_[:alnum:]])BIG_ENDIAN([^_[:alnum:]]|$)/ {
834 fail("BIG_ENDIAN")
835 }
836
837 BEGIN { doc["LITTLE_ENDIAN"] = "\
838 Do not use LITTLE_ENDIAN, instead use BFD_ENDIAN_LITTLE";
839 category["LITTLE_ENDIAN"] = ari_regression
840 }
841 /(^|[^_[:alnum:]])LITTLE_ENDIAN([^_[:alnum:]]|$)/ {
842 fail("LITTLE_ENDIAN")
843 }
844
845 BEGIN { doc["BIG_ENDIAN"] = "\
846 Do not use BIG_ENDIAN, instead use BFD_ENDIAN_BIG"
847 category["BIG_ENDIAN"] = ari_regression
848 }
849 /(^|[^_[:alnum:]])BIG_ENDIAN([^_[:alnum:]]|$)/ {
850 fail("BIG_ENDIAN")
851 }
852
853 BEGIN { doc["sec_ptr"] = "\
854 Instead of sec_ptr, use struct bfd_section";
855 category["sec_ptr"] = ari_regression
856 }
857 /(^|[^_[:alnum:]])sec_ptr([^_[:alnum:]]|$)/ {
858 fail("sec_ptr")
859 }
860
861 BEGIN { doc["frame_unwind_unsigned_register"] = "\
862 Replace frame_unwind_unsigned_register with frame_unwind_register_unsigned"
863 category["frame_unwind_unsigned_register"] = ari_regression
864 }
865 /(^|[^_[:alnum:]])frame_unwind_unsigned_register([^_[:alnum:]]|$)/ {
866 fail("frame_unwind_unsigned_register")
867 }
868
869 BEGIN { doc["frame_register_read"] = "\
870 Replace frame_register_read() with get_frame_register(), or \
871 possibly introduce a new method safe_get_frame_register()"
872 category["frame_register_read"] = ari_obsolete
873 }
874 /(^|[^_[:alnum:]])frame_register_read([^_[:alnum:]]|$)/ {
875 fail("frame_register_read")
876 }
877
878 BEGIN { doc["read_register"] = "\
879 Replace read_register() with regcache_read() et.al."
880 category["read_register"] = ari_regression
881 }
882 /(^|[^_[:alnum:]])read_register([^_[:alnum:]]|$)/ {
883 fail("read_register")
884 }
885
886 BEGIN { doc["write_register"] = "\
887 Replace write_register() with regcache_read() et.al."
888 category["write_register"] = ari_regression
889 }
890 /(^|[^_[:alnum:]])write_register([^_[:alnum:]]|$)/ {
891 fail("write_register")
892 }
893
894 function report(name) {
895 # Drop any trailing _P.
896 name = gensub(/(_P|_p)$/, "", 1, name)
897 # Convert to lower case
898 name = tolower(name)
899 # Split into category and bug
900 cat = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\1", 1, name)
901 bug = gensub(/^([[:alpha:]]+)_([_[:alnum:]]*)$/, "\\2", 1, name)
902 # Report it
903 name = cat " " bug
904 doc[name] = "Do not use " cat " " bug ", see declaration for details"
905 category[name] = cat
906 fail(name)
907 }
908
909 /(^|[^_[:alnum:]])(DEPRECATED|deprecated|set_gdbarch_deprecated|LEGACY|legacy|set_gdbarch_legacy)_/ {
910 line = $0
911 # print "0 =", $0
912 while (1) {
913 name = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\2", 1, line)
914 line = gensub(/^(|.*[^_[:alnum:]])((DEPRECATED|deprecated|LEGACY|legacy)_[_[:alnum:]]*)(.*)$/, "\\1 \\4", 1, line)
915 # print "name =", name, "line =", line
916 if (name == line) break;
917 report(name)
918 }
919 }
920
921 # Count the number of times each architecture method is set
922 /(^|[^_[:alnum:]])set_gdbarch_[_[:alnum:]]*([^_[:alnum:]]|$)/ {
923 name = gensub(/^.*set_gdbarch_([_[:alnum:]]*).*$/, "\\1", 1, $0)
924 doc["set " name] = "\
925 Call to set_gdbarch_" name
926 category["set " name] = ari_gdbarch
927 fail("set " name)
928 }
929
930 # Count the number of times each tm/xm/nm macro is defined or undefined
931 /^#[[:space:]]*(undef|define)[[:space:]]+[[:alnum:]_]+.*$/ \
932 && !/^#[[:space:]]*(undef|define)[[:space:]]+[[:alnum:]_]+_H($|[[:space:]])/ \
933 && FILENAME ~ /(^|\/)config\/(|[^\/]*\/)(tm-|xm-|nm-).*\.h$/ {
934 basename = gensub(/(^|.*\/)([^\/]*)$/, "\\2", 1, FILENAME)
935 type = gensub(/^(tm|xm|nm)-.*\.h$/, "\\1", 1, basename)
936 name = gensub(/^#[[:space:]]*(undef|define)[[:space:]]+([[:alnum:]_]+).*$/, "\\2", 1, $0)
937 if (type == basename) {
938 type = "macro"
939 }
940 doc[type " " name] = "\
941 Do not define macros such as " name " in a tm, nm or xm file, \
942 in fact do not provide a tm, nm or xm file"
943 category[type " " name] = ari_macro
944 fail(type " " name)
945 }
946
947 BEGIN { doc["deprecated_registers"] = "\
948 Replace deprecated_registers with nothing, they have reached \
949 end-of-life"
950 category["deprecated_registers"] = ari_eol
951 }
952 /(^|[^_[:alnum:]])deprecated_registers([^_[:alnum:]]|$)/ {
953 fail("deprecated_registers")
954 }
955
956 BEGIN { doc["read_pc"] = "\
957 Replace READ_PC() with frame_pc_unwind; \
958 at present the inferior function call code still uses this"
959 category["read_pc"] = ari_deprecate
960 }
961 /(^|[^_[:alnum:]])read_pc[[:space:]]*\(/ || \
962 /(^|[^_[:alnum:]])set_gdbarch_read_pc[[:space:]]*\(/ || \
963 /(^|[^_[:alnum:]])TARGET_READ_PC[[:space:]]*\(/ {
964 fail("read_pc")
965 }
966
967 BEGIN { doc["write_pc"] = "\
968 Replace write_pc() with get_frame_base_address or get_frame_id; \
969 at present the inferior function call code still uses this when doing \
970 a DECR_PC_AFTER_BREAK"
971 category["write_pc"] = ari_deprecate
972 }
973 /(^|[^_[:alnum:]])write_pc[[:space:]]*\(/ || \
974 /(^|[^_[:alnum:]])TARGET_WRITE_PC[[:space:]]*\(/ {
975 fail("write_pc")
976 }
977
978 BEGIN { doc["generic_target_write_pc"] = "\
979 Replace generic_target_write_pc with a per-architecture implementation, \
980 this relies on PC_REGNUM which is being eliminated"
981 category["generic_target_write_pc"] = ari_regression
982 }
983 /(^|[^_[:alnum:]])generic_target_write_pc([^_[:alnum:]]|$)/ {
984 fail("generic_target_write_pc")
985 }
986
987 BEGIN { doc["read_sp"] = "\
988 Replace read_sp() with frame_sp_unwind"
989 category["read_sp"] = ari_regression
990 }
991 /(^|[^_[:alnum:]])read_sp[[:space:]]*\(/ || \
992 /(^|[^_[:alnum:]])set_gdbarch_read_sp[[:space:]]*\(/ || \
993 /(^|[^_[:alnum:]])TARGET_READ_SP[[:space:]]*\(/ {
994 fail("read_sp")
995 }
996
997 BEGIN { doc["register_cached"] = "\
998 Replace register_cached() with nothing, does not have a regcache parameter"
999 category["register_cached"] = ari_regression
1000 }
1001 /(^|[^_[:alnum:]])register_cached[[:space:]]*\(/ {
1002 fail("register_cached")
1003 }
1004
1005 BEGIN { doc["set_register_cached"] = "\
1006 Replace set_register_cached() with nothing, does not have a regcache parameter"
1007 category["set_register_cached"] = ari_regression
1008 }
1009 /(^|[^_[:alnum:]])set_register_cached[[:space:]]*\(/ {
1010 fail("set_register_cached")
1011 }
1012
1013 # Print functions: Use versions that either check for buffer overflow
1014 # or safely allocate a fresh buffer.
1015
1016 BEGIN { doc["sprintf"] = "\
1017 Do not use sprintf, instead use xsnprintf or xstrprintf"
1018 category["sprintf"] = ari_code
1019 }
1020 /(^|[^_[:alnum:]])sprintf[[:space:]]*\(/ {
1021 fail("sprintf")
1022 }
1023
1024 BEGIN { doc["vsprintf"] = "\
1025 Do not use vsprintf(), instead use xstrvprintf"
1026 category["vsprintf"] = ari_regression
1027 }
1028 /(^|[^_[:alnum:]])vsprintf[[:space:]]*\(/ {
1029 fail("vsprintf")
1030 }
1031
1032 BEGIN { doc["asprintf"] = "\
1033 Do not use asprintf(), instead use xstrprintf()"
1034 category["asprintf"] = ari_regression
1035 }
1036 /(^|[^_[:alnum:]])asprintf[[:space:]]*\(/ {
1037 fail("asprintf")
1038 }
1039
1040 BEGIN { doc["vasprintf"] = "\
1041 Do not use vasprintf(), instead use xstrvprintf"
1042 fix("vasprintf", "gdbsupport/common-utils.c", 1)
1043 category["vasprintf"] = ari_regression
1044 }
1045 /(^|[^_[:alnum:]])vasprintf[[:space:]]*\(/ {
1046 fail("vasprintf")
1047 }
1048
1049 BEGIN { doc["printf_vma"] = "\
1050 Do not use printf_vma, instead use paddress or phex_nz"
1051 category["printf_vma"] = ari_code
1052 }
1053 /(^|[^_[:alnum:]])printf_vma[[:space:]]*\(/ {
1054 fail("printf_vma")
1055 }
1056
1057 BEGIN { doc["sprintf_vma"] = "\
1058 Do not use sprintf_vma, instead use paddress or phex_nz"
1059 category["sprintf_vma"] = ari_code
1060 }
1061 /(^|[^_[:alnum:]])sprintf_vma[[:space:]]*\(/ {
1062 fail("sprintf_vma")
1063 }
1064
1065 # More generic memory operations
1066
1067 BEGIN { doc["bzero"] = "\
1068 Do not use bzero(), instead use memset()"
1069 category["bzero"] = ari_regression
1070 }
1071 /(^|[^_[:alnum:]])bzero[[:space:]]*\(/ {
1072 fail("bzero")
1073 }
1074
1075 BEGIN { doc["strdup"] = "\
1076 Do not use strdup(), instead use xstrdup()";
1077 category["strdup"] = ari_regression
1078 }
1079 /(^|[^_[:alnum:]])strdup[[:space:]]*\(/ {
1080 fail("strdup")
1081 }
1082
1083 BEGIN { doc["strsave"] = "\
1084 Do not use strsave(), instead use xstrdup() et.al."
1085 category["strsave"] = ari_regression
1086 }
1087 /(^|[^_[:alnum:]])strsave[[:space:]]*\(/ {
1088 fail("strsave")
1089 }
1090
1091 # String compare functions
1092
1093 BEGIN { doc["strnicmp"] = "\
1094 Do not use strnicmp(), instead use strncasecmp()"
1095 category["strnicmp"] = ari_regression
1096 }
1097 /(^|[^_[:alnum:]])strnicmp[[:space:]]*\(/ {
1098 fail("strnicmp")
1099 }
1100
1101 # Typedefs that are either redundant or can be reduced to `struct
1102 # type *''.
1103 # Must be placed before if assignment otherwise ARI exceptions
1104 # are not handled correctly.
1105
1106 BEGIN { doc["d_namelen"] = "\
1107 Do not use dirent.d_namelen, instead use NAMELEN"
1108 category["d_namelen"] = ari_regression
1109 }
1110 /(^|[^_[:alnum:]])d_namelen([^_[:alnum:]]|$)/ {
1111 fail("d_namelen")
1112 }
1113
1114 BEGIN { doc["strlen d_name"] = "\
1115 Do not use strlen dirent.d_name, instead use NAMELEN"
1116 category["strlen d_name"] = ari_regression
1117 }
1118 /(^|[^_[:alnum:]])strlen[[:space:]]*\(.*[^_[:alnum:]]d_name([^_[:alnum:]]|$)/ {
1119 fail("strlen d_name")
1120 }
1121
1122 BEGIN { doc["generic_use_struct_convention"] = "\
1123 Replace generic_use_struct_convention with nothing, \
1124 EXTRACT_STRUCT_VALUE_ADDRESS is a predicate"
1125 category["generic_use_struct_convention"] = ari_regression
1126 }
1127 /(^|[^_[:alnum:]])generic_use_struct_convention([^_[:alnum:]]|$)/ {
1128 fail("generic_use_struct_convention")
1129 }
1130
1131 BEGIN { doc["if assignment"] = "\
1132 An IF statement'\''s expression contains an assignment (the GNU coding \
1133 standard discourages this)"
1134 category["if assignment"] = ari_code
1135 }
1136 BEGIN { doc["if clause more than 50 lines"] = "\
1137 An IF statement'\''s expression expands over 50 lines"
1138 category["if clause more than 50 lines"] = ari_code
1139 }
1140 #
1141 # Accumulate continuation lines
1142 FNR == 1 {
1143 in_if = 0
1144 }
1145
1146 /(^|[^_[:alnum:]])if / {
1147 in_if = 1;
1148 if_brace_level = 0;
1149 if_cont_p = 0;
1150 if_count = 0;
1151 if_brace_end_pos = 0;
1152 if_full_line = "";
1153 }
1154 (in_if) {
1155 # We want everything up to closing brace of same level
1156 if_count++;
1157 if (if_count > 50) {
1158 print "multiline if: " if_full_line $0
1159 fail("if clause more than 50 lines")
1160 if_brace_level = 0;
1161 if_full_line = "";
1162 } else {
1163 if (if_count == 1) {
1164 i = index($0,"if ");
1165 } else {
1166 i = 1;
1167 }
1168 for (i=i; i <= length($0); i++) {
1169 char = substr($0,i,1);
1170 if (char == "(") { if_brace_level++; }
1171 if (char == ")") {
1172 if_brace_level--;
1173 if (!if_brace_level) {
1174 if_brace_end_pos = i;
1175 after_if = substr($0,i+1,length($0));
1176 # Do not parse what is following
1177 break;
1178 }
1179 }
1180 }
1181 if (if_brace_level == 0) {
1182 $0 = substr($0,1,i);
1183 in_if = 0;
1184 } else {
1185 if_full_line = if_full_line $0;
1186 if_cont_p = 1;
1187 next;
1188 }
1189 }
1190 }
1191 # if we arrive here, we need to concatenate, but we are at brace level 0
1192
1193 (if_brace_end_pos) {
1194 $0 = if_full_line substr($0,1,if_brace_end_pos);
1195 if (if_count > 1) {
1196 # print "IF: multi line " if_count " found at " FILENAME ":" FNR " \"" $0 "\""
1197 }
1198 if_cont_p = 0;
1199 if_full_line = "";
1200 }
1201 /(^|[^_[:alnum:]])if .* = / {
1202 # print "fail in if " $0
1203 fail("if assignment")
1204 }
1205 (if_brace_end_pos) {
1206 $0 = $0 after_if;
1207 if_brace_end_pos = 0;
1208 in_if = 0;
1209 }
1210
1211 # Printout of all found bug
1212
1213 BEGIN {
1214 if (print_doc) {
1215 for (bug in doc) {
1216 fail(bug)
1217 }
1218 exit
1219 }
1220 }' "$@"
1221
This page took 0.077203 seconds and 4 git commands to generate.