scripts: kernel-doc: make it more compatible with Sphinx 3.x
[linux-block.git] / scripts / kernel-doc
CommitLineData
cb77f0d6 1#!/usr/bin/env perl
38476378 2# SPDX-License-Identifier: GPL-2.0
1da177e4 3
cb77f0d6 4use warnings;
1da177e4
LT
5use strict;
6
7## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
8## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
9## Copyright (C) 2001 Simon Huggins ##
70c95b00 10## Copyright (C) 2005-2012 Randy Dunlap ##
1b40c194 11## Copyright (C) 2012 Dan Luedtke ##
1da177e4
LT
12## ##
13## #define enhancements by Armin Kuster <akuster@mvista.com> ##
14## Copyright (c) 2000 MontaVista Software, Inc. ##
15## ##
16## This software falls under the GNU General Public License. ##
17## Please read the COPYING file for more information ##
18
1da177e4
LT
19# 18/01/2001 - Cleanups
20# Functions prototyped as foo(void) same as foo()
21# Stop eval'ing where we don't need to.
22# -- huggie@earth.li
23
24# 27/06/2001 - Allowed whitespace after initial "/**" and
25# allowed comments before function declarations.
26# -- Christian Kreibich <ck@whoop.org>
27
28# Still to do:
29# - add perldoc documentation
30# - Look more closely at some of the scarier bits :)
31
32# 26/05/2001 - Support for separate source and object trees.
33# Return error code.
34# Keith Owens <kaos@ocs.com.au>
35
36# 23/09/2001 - Added support for typedefs, structs, enums and unions
37# Support for Context section; can be terminated using empty line
38# Small fixes (like spaces vs. \s in regex)
39# -- Tim Jansen <tim@tjansen.de>
40
1b40c194
DL
41# 25/07/2012 - Added support for HTML5
42# -- Dan Luedtke <mail@danrl.de>
1da177e4 43
fadc0b31
JN
44sub usage {
45 my $message = <<"EOF";
46Usage: $0 [OPTION ...] FILE ...
47
48Read C language source or header FILEs, extract embedded documentation comments,
49and print formatted documentation to standard output.
50
51The documentation comments are identified by "/**" opening comment mark. See
857af3b7 52Documentation/doc-guide/kernel-doc.rst for the documentation comment syntax.
fadc0b31
JN
53
54Output format selection (mutually exclusive):
fadc0b31 55 -man Output troff manual page format. This is the default.
c0d1b6ee 56 -rst Output reStructuredText format.
3a025e1d 57 -none Do not output documentation, only warnings.
fadc0b31
JN
58
59Output selection (mutually exclusive):
86ae2e38
JN
60 -export Only output documentation for symbols that have been
61 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
c9b2cfb3 62 in any input FILE or -export-file FILE.
86ae2e38
JN
63 -internal Only output documentation for symbols that have NOT been
64 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
c9b2cfb3 65 in any input FILE or -export-file FILE.
fadc0b31
JN
66 -function NAME Only output documentation for the given function(s)
67 or DOC: section title(s). All other functions and DOC:
68 sections are ignored. May be specified multiple times.
69 -nofunction NAME Do NOT output documentation for the given function(s);
70 only output documentation for the other functions and
71 DOC: sections. May be specified multiple times.
72
73Output selection modifiers:
74 -no-doc-sections Do not output DOC: sections.
0b0f5f29
DV
75 -enable-lineno Enable output of #define LINENO lines. Only works with
76 reStructuredText format.
88c2b57d
JN
77 -export-file FILE Specify an additional FILE in which to look for
78 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
79 -export or -internal. May be specified multiple times.
fadc0b31
JN
80
81Other parameters:
82 -v Verbose output, more warnings and other information.
83 -h Print this help.
2c12c810 84 -Werror Treat warnings as errors.
fadc0b31
JN
85
86EOF
87 print $message;
88 exit 1;
89}
1da177e4
LT
90
91#
92# format of comments.
93# In the following table, (...)? signifies optional structure.
94# (...)* signifies 0 or more structure elements
95# /**
96# * function_name(:)? (- short description)?
97# (* @parameterx: (description of parameter x)?)*
98# (* a blank line)?
99# * (Description:)? (Description of function)?
100# * (section header: (section description)? )*
101# (*)?*/
102#
103# So .. the trivial example would be:
104#
105# /**
106# * my_function
b9d97328 107# */
1da177e4 108#
891dcd2f 109# If the Description: header tag is omitted, then there must be a blank line
1da177e4
LT
110# after the last parameter specification.
111# e.g.
112# /**
113# * my_function - does my stuff
114# * @my_arg: its mine damnit
115# *
3c3b809e 116# * Does my stuff explained.
1da177e4
LT
117# */
118#
119# or, could also use:
120# /**
121# * my_function - does my stuff
122# * @my_arg: its mine damnit
3c3b809e 123# * Description: Does my stuff explained.
1da177e4
LT
124# */
125# etc.
126#
b9d97328 127# Besides functions you can also write documentation for structs, unions,
3c3b809e
RD
128# enums and typedefs. Instead of the function name you must write the name
129# of the declaration; the struct/union/enum/typedef must always precede
130# the name. Nesting of declarations is not supported.
1da177e4
LT
131# Use the argument mechanism to document members or constants.
132# e.g.
133# /**
134# * struct my_struct - short description
135# * @a: first member
136# * @b: second member
3c3b809e 137# *
1da177e4
LT
138# * Longer description
139# */
140# struct my_struct {
141# int a;
142# int b;
aeec46b9
MW
143# /* private: */
144# int c;
1da177e4
LT
145# };
146#
147# All descriptions can be multiline, except the short function description.
3c3b809e 148#
a4c6ebed
DCLP
149# For really longs structs, you can also describe arguments inside the
150# body of the struct.
151# eg.
152# /**
153# * struct my_struct - short description
154# * @a: first member
155# * @b: second member
156# *
157# * Longer description
158# */
159# struct my_struct {
160# int a;
161# int b;
162# /**
163# * @c: This is longer description of C
164# *
165# * You can use paragraphs to describe arguments
166# * using this method.
167# */
168# int c;
169# };
170#
171# This should be use only for struct/enum members.
172#
3c3b809e
RD
173# You can also add additional sections. When documenting kernel functions you
174# should document the "Context:" of the function, e.g. whether the functions
1da177e4 175# can be called form interrupts. Unlike other sections you can end it with an
3c3b809e 176# empty line.
4092bac7
YB
177# A non-void function should have a "Return:" section describing the return
178# value(s).
3c3b809e 179# Example-sections should contain the string EXAMPLE so that they are marked
1da177e4
LT
180# appropriately in DocBook.
181#
182# Example:
183# /**
184# * user_function - function that can only be called in user context
185# * @a: some argument
186# * Context: !in_interrupt()
3c3b809e 187# *
1da177e4
LT
188# * Some description
189# * Example:
190# * user_function(22);
191# */
192# ...
193#
194#
195# All descriptive text is further processed, scanning for the following special
196# patterns, which are highlighted appropriately.
197#
198# 'funcname()' - function
199# '$ENVVAR' - environmental variable
200# '&struct_name' - name of a structure (up to two words including 'struct')
5267dd35 201# '&struct_name.member' - name of a structure member
1da177e4
LT
202# '@parameter' - name of a parameter
203# '%CONST' - name of a constant.
b97f193a 204# '``LITERAL``' - literal string without any spaces on it.
1da177e4 205
8484baaa
RD
206## init lots of data
207
1da177e4
LT
208my $errors = 0;
209my $warnings = 0;
5f8c7c98 210my $anon_struct_union = 0;
1da177e4
LT
211
212# match expressions used to find embedded type information
b97f193a
MCC
213my $type_constant = '\b``([^\`]+)``\b';
214my $type_constant2 = '\%([-_\w]+)';
1da177e4 215my $type_func = '(\w+)\(\)';
bfd228c7 216my $type_param = '\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
ee2aa759 217my $type_param_ref = '([\!]?)\@(\w*((\.\w+)|(->\w+))*(\.\.\.)?)';
5219f18a 218my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
346282db 219my $type_fp_param2 = '\@(\w+->\S+)\(\)'; # Special RST handling for structs with func ptr params
1da177e4 220my $type_env = '(\$\w+)';
df31175b
PB
221my $type_enum = '\&(enum\s*([_\w]+))';
222my $type_struct = '\&(struct\s*([_\w]+))';
223my $type_typedef = '\&(typedef\s*([_\w]+))';
224my $type_union = '\&(union\s*([_\w]+))';
5267dd35 225my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
df31175b 226my $type_fallback = '\&([_\w]+)';
f3341dcf 227my $type_member_func = $type_member . '\(\)';
1da177e4
LT
228
229# Output conversion substitutions.
230# One for each output format
231
1da177e4 232# these are pretty rough
4d732701
DCLP
233my @highlights_man = (
234 [$type_constant, "\$1"],
b97f193a 235 [$type_constant2, "\$1"],
4d732701 236 [$type_func, "\\\\fB\$1\\\\fP"],
df31175b 237 [$type_enum, "\\\\fI\$1\\\\fP"],
4d732701 238 [$type_struct, "\\\\fI\$1\\\\fP"],
df31175b
PB
239 [$type_typedef, "\\\\fI\$1\\\\fP"],
240 [$type_union, "\\\\fI\$1\\\\fP"],
5267dd35 241 [$type_param, "\\\\fI\$1\\\\fP"],
ee2aa759 242 [$type_param_ref, "\\\\fI\$1\$2\\\\fP"],
df31175b
PB
243 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
244 [$type_fallback, "\\\\fI\$1\\\\fP"]
4d732701 245 );
1da177e4
LT
246my $blankline_man = "";
247
c0d1b6ee
JC
248# rst-mode
249my @highlights_rst = (
250 [$type_constant, "``\$1``"],
b97f193a 251 [$type_constant2, "``\$1``"],
f3341dcf 252 # Note: need to escape () to avoid func matching later
5267dd35
PB
253 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
254 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
5219f18a 255 [$type_fp_param, "**\$1\\\\(\\\\)**"],
346282db 256 [$type_fp_param2, "**\$1\\\\(\\\\)**"],
344fdb28 257 [$type_func, "\$1()"],
df31175b
PB
258 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
259 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
260 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
261 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
a7291e7e 262 # in rst this can refer to any type
df31175b 263 [$type_fallback, "\\:c\\:type\\:`\$1`"],
ee2aa759 264 [$type_param_ref, "**\$1\$2**"]
c0d1b6ee
JC
265 );
266my $blankline_rst = "\n";
267
1da177e4 268# read arguments
b9d97328 269if ($#ARGV == -1) {
1da177e4
LT
270 usage();
271}
272
8484baaa 273my $kernelversion;
efa44475
MCC
274my $sphinx_major;
275
8484baaa
RD
276my $dohighlight = "";
277
1da177e4 278my $verbose = 0;
2c12c810 279my $Werror = 0;
bdfe2be3 280my $output_mode = "rst";
e314ba31 281my $output_preformatted = 0;
4b44595a 282my $no_doc_sections = 0;
0b0f5f29 283my $enable_lineno = 0;
bdfe2be3
MCC
284my @highlights = @highlights_rst;
285my $blankline = $blankline_rst;
1da177e4 286my $modulename = "Kernel API";
b6c3f456
JN
287
288use constant {
289 OUTPUT_ALL => 0, # output all symbols and doc sections
290 OUTPUT_INCLUDE => 1, # output only specified symbols
291 OUTPUT_EXCLUDE => 2, # output everything except specified symbols
292 OUTPUT_EXPORTED => 3, # output exported symbols
293 OUTPUT_INTERNAL => 4, # output non-exported symbols
294};
295my $output_selection = OUTPUT_ALL;
b0d60bfb 296my $show_not_found = 0; # No longer used
b2c4105b 297
88c2b57d
JN
298my @export_file_list;
299
b2c4105b
BH
300my @build_time;
301if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
302 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
303 @build_time = gmtime($seconds);
304} else {
305 @build_time = localtime;
306}
307
3c3b809e
RD
308my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
309 'July', 'August', 'September', 'October',
b2c4105b
BH
310 'November', 'December')[$build_time[4]] .
311 " " . ($build_time[5]+1900);
1da177e4 312
8484baaa 313# Essentially these are globals.
b9d97328
RD
314# They probably want to be tidied up, made more localised or something.
315# CAVEAT EMPTOR! Some of the others I localised may not want to be, which
1da177e4 316# could cause "use of undefined value" or other bugs.
b9d97328 317my ($function, %function_table, %parametertypes, $declaration_purpose);
0b0f5f29 318my $declaration_start_line;
b9d97328 319my ($type, $declaration_name, $return_type);
1c32fd0c 320my ($newsection, $newcontents, $prototype, $brcount, %source_map);
1da177e4 321
bd0e88e5
RD
322if (defined($ENV{'KBUILD_VERBOSE'})) {
323 $verbose = "$ENV{'KBUILD_VERBOSE'}";
324}
325
2c12c810
PLB
326if (defined($ENV{'KDOC_WERROR'})) {
327 $Werror = "$ENV{'KDOC_WERROR'}";
328}
329
330if (defined($ENV{'KCFLAGS'})) {
331 my $kcflags = "$ENV{'KCFLAGS'}";
332
333 if ($kcflags =~ /Werror/) {
334 $Werror = 1;
335 }
336}
337
3c3b809e 338# Generated docbook code is inserted in a template at a point where
1da177e4 339# docbook v3.1 requires a non-zero sequence of RefEntry's; see:
93431e06 340# https://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
1da177e4
LT
341# We keep track of number of generated entries and generate a dummy
342# if needs be to ensure the expanded template can be postprocessed
343# into html.
344my $section_counter = 0;
345
346my $lineprefix="";
347
48af606a
JN
348# Parser states
349use constant {
0d55d48b
MCC
350 STATE_NORMAL => 0, # normal code
351 STATE_NAME => 1, # looking for function name
352 STATE_BODY_MAYBE => 2, # body - or maybe more description
353 STATE_BODY => 3, # the body of the comment
354 STATE_BODY_WITH_BLANK_LINE => 4, # the body, which has a blank line
355 STATE_PROTO => 5, # scanning prototype
356 STATE_DOCBLOCK => 6, # documentation block
357 STATE_INLINE => 7, # gathering doc outside main block
48af606a 358};
1da177e4 359my $state;
850622df 360my $in_doc_sect;
d742f24d 361my $leading_space;
1da177e4 362
48af606a
JN
363# Inline documentation state
364use constant {
365 STATE_INLINE_NA => 0, # not applicable ($state != STATE_INLINE)
366 STATE_INLINE_NAME => 1, # looking for member name (@foo:)
367 STATE_INLINE_TEXT => 2, # looking for member documentation
368 STATE_INLINE_END => 3, # done
369 STATE_INLINE_ERROR => 4, # error - Comment without header was found.
370 # Spit a warning as it's not
371 # proper kernel-doc and ignore the rest.
372};
373my $inline_doc_state;
a4c6ebed 374
1da177e4
LT
375#declaration types: can be
376# 'function', 'struct', 'union', 'enum', 'typedef'
377my $decl_type;
378
1da177e4
LT
379my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
380my $doc_end = '\*/';
381my $doc_com = '\s*\*\s*';
12ae6779 382my $doc_com_body = '\s*\* ?';
b9d97328 383my $doc_decl = $doc_com . '(\w+)';
f624adef 384# @params and a strictly limited set of supported section names
76dd3e7b 385my $doc_sect = $doc_com .
ef00028b 386 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
12ae6779 387my $doc_content = $doc_com_body . '(.*)';
b9d97328 388my $doc_block = $doc_com . 'DOC:\s*(.*)?';
48af606a 389my $doc_inline_start = '^\s*/\*\*\s*$';
fe7bc493 390my $doc_inline_sect = '\s*\*\s*(@\s*[\w][\w\.]*\s*):(.*)';
48af606a 391my $doc_inline_end = '^\s*\*/\s*$';
0c9aa209 392my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
86ae2e38 393my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
1da177e4 394
1da177e4 395my %parameterdescs;
0b0f5f29 396my %parameterdesc_start_lines;
1da177e4
LT
397my @parameterlist;
398my %sections;
399my @sectionlist;
0b0f5f29 400my %section_start_lines;
a1d94aa5
RD
401my $sectcheck;
402my $struct_actual;
1da177e4
LT
403
404my $contents = "";
0b0f5f29 405my $new_start_line = 0;
f624adef
JN
406
407# the canonical section names. see also $doc_sect above.
1da177e4
LT
408my $section_default = "Description"; # default section
409my $section_intro = "Introduction";
410my $section = $section_default;
411my $section_context = "Context";
4092bac7 412my $section_return = "Return";
1da177e4
LT
413
414my $undescribed = "-- undescribed --";
415
416reset_state();
417
b031ac4e
MCC
418while ($ARGV[0] =~ m/^--?(.*)/) {
419 my $cmd = $1;
420 shift @ARGV;
421 if ($cmd eq "man") {
1da177e4 422 $output_mode = "man";
4d732701 423 @highlights = @highlights_man;
1da177e4 424 $blankline = $blankline_man;
b031ac4e 425 } elsif ($cmd eq "rst") {
c0d1b6ee
JC
426 $output_mode = "rst";
427 @highlights = @highlights_rst;
428 $blankline = $blankline_rst;
b031ac4e 429 } elsif ($cmd eq "none") {
3a025e1d 430 $output_mode = "none";
b031ac4e 431 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document
1da177e4 432 $modulename = shift @ARGV;
b031ac4e 433 } elsif ($cmd eq "function") { # to only output specific functions
b6c3f456 434 $output_selection = OUTPUT_INCLUDE;
1da177e4
LT
435 $function = shift @ARGV;
436 $function_table{$function} = 1;
b031ac4e 437 } elsif ($cmd eq "nofunction") { # output all except specific functions
b6c3f456 438 $output_selection = OUTPUT_EXCLUDE;
1da177e4
LT
439 $function = shift @ARGV;
440 $function_table{$function} = 1;
b031ac4e 441 } elsif ($cmd eq "export") { # only exported symbols
b6c3f456 442 $output_selection = OUTPUT_EXPORTED;
da9726ec 443 %function_table = ();
b031ac4e 444 } elsif ($cmd eq "internal") { # only non-exported symbols
b6c3f456 445 $output_selection = OUTPUT_INTERNAL;
da9726ec 446 %function_table = ();
b031ac4e 447 } elsif ($cmd eq "export-file") {
88c2b57d
JN
448 my $file = shift @ARGV;
449 push(@export_file_list, $file);
b031ac4e 450 } elsif ($cmd eq "v") {
1da177e4 451 $verbose = 1;
2c12c810
PLB
452 } elsif ($cmd eq "Werror") {
453 $Werror = 1;
b031ac4e 454 } elsif (($cmd eq "h") || ($cmd eq "help")) {
1da177e4 455 usage();
b031ac4e 456 } elsif ($cmd eq 'no-doc-sections') {
4b44595a 457 $no_doc_sections = 1;
b031ac4e 458 } elsif ($cmd eq 'enable-lineno') {
0b0f5f29 459 $enable_lineno = 1;
b031ac4e 460 } elsif ($cmd eq 'show-not-found') {
b0d60bfb 461 $show_not_found = 1; # A no-op but don't fail
b031ac4e
MCC
462 } else {
463 # Unknown argument
464 usage();
1da177e4
LT
465 }
466}
467
8484baaa
RD
468# continue execution near EOF;
469
efa44475
MCC
470# The C domain dialect changed on Sphinx 3. So, we need to check the
471# version in order to produce the right tags.
472sub findprog($)
473{
474 foreach(split(/:/, $ENV{PATH})) {
475 return "$_/$_[0]" if(-x "$_/$_[0]");
476 }
477}
478
479sub get_sphinx_version()
480{
481 my $ver;
482 my $major = 1;
483
484 my $cmd = "sphinx-build";
485 if (!findprog($cmd)) {
486 my $cmd = "sphinx-build3";
487 return $major if (!findprog($cmd));
488 }
489
490 open IN, "$cmd --version 2>&1 |";
491 while (<IN>) {
492 if (m/^\s*sphinx-build\s+([\d]+)\.([\d\.]+)(\+\/[\da-f]+)?$/) {
493 $major=$1;
494 last;
495 }
496 # Sphinx 1.2.x uses a different format
497 if (m/^\s*Sphinx.*\s+([\d]+)\.([\d\.]+)$/) {
498 $major=$1;
499 last;
500 }
501 }
502 close IN;
503
504 return $major;
505}
506
53f049fa
BP
507# get kernel version from env
508sub get_kernel_version() {
1b9bc22d 509 my $version = 'unknown kernel version';
53f049fa
BP
510
511 if (defined($ENV{'KERNELVERSION'})) {
512 $version = $ENV{'KERNELVERSION'};
513 }
514 return $version;
515}
1da177e4 516
0b0f5f29
DV
517#
518sub print_lineno {
519 my $lineno = shift;
520 if ($enable_lineno && defined($lineno)) {
521 print "#define LINENO " . $lineno . "\n";
522 }
523}
1da177e4
LT
524##
525# dumps section contents to arrays/hashes intended for that purpose.
526#
527sub dump_section {
94dc7ad5 528 my $file = shift;
1da177e4
LT
529 my $name = shift;
530 my $contents = join "\n", @_;
531
13901ef2 532 if ($name =~ m/$type_param/) {
1da177e4
LT
533 $name = $1;
534 $parameterdescs{$name} = $contents;
a1d94aa5 535 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
536 $parameterdesc_start_lines{$name} = $new_start_line;
537 $new_start_line = 0;
ced69090 538 } elsif ($name eq "@\.\.\.") {
ced69090
RD
539 $name = "...";
540 $parameterdescs{$name} = $contents;
a1d94aa5 541 $sectcheck = $sectcheck . $name . " ";
0b0f5f29
DV
542 $parameterdesc_start_lines{$name} = $new_start_line;
543 $new_start_line = 0;
1da177e4 544 } else {
94dc7ad5 545 if (defined($sections{$name}) && ($sections{$name} ne "")) {
95b6be9d
JN
546 # Only warn on user specified duplicate section names.
547 if ($name ne $section_default) {
548 print STDERR "${file}:$.: warning: duplicate section name '$name'\n";
549 ++$warnings;
550 }
32217761
JN
551 $sections{$name} .= $contents;
552 } else {
553 $sections{$name} = $contents;
554 push @sectionlist, $name;
0b0f5f29
DV
555 $section_start_lines{$name} = $new_start_line;
556 $new_start_line = 0;
94dc7ad5 557 }
1da177e4
LT
558 }
559}
560
b112e0f7
JB
561##
562# dump DOC: section after checking that it should go out
563#
564sub dump_doc_section {
94dc7ad5 565 my $file = shift;
b112e0f7
JB
566 my $name = shift;
567 my $contents = join "\n", @_;
568
4b44595a
JB
569 if ($no_doc_sections) {
570 return;
571 }
572
b6c3f456
JN
573 if (($output_selection == OUTPUT_ALL) ||
574 ($output_selection == OUTPUT_INCLUDE &&
575 defined($function_table{$name})) ||
576 ($output_selection == OUTPUT_EXCLUDE &&
577 !defined($function_table{$name})))
b112e0f7 578 {
94dc7ad5 579 dump_section($file, $name, $contents);
b112e0f7
JB
580 output_blockhead({'sectionlist' => \@sectionlist,
581 'sections' => \%sections,
582 'module' => $modulename,
b6c3f456 583 'content-only' => ($output_selection != OUTPUT_ALL), });
b112e0f7
JB
584 }
585}
586
1da177e4
LT
587##
588# output function
589#
590# parameterdescs, a hash.
591# function => "function name"
592# parameterlist => @list of parameters
593# parameterdescs => %parameter descriptions
594# sectionlist => @list of sections
a21217da 595# sections => %section descriptions
3c3b809e 596#
1da177e4
LT
597
598sub output_highlight {
599 my $contents = join "\n",@_;
600 my $line;
601
602# DEBUG
603# if (!defined $contents) {
604# use Carp;
605# confess "output_highlight got called with no args?\n";
606# }
607
3eb014a1 608# print STDERR "contents b4:$contents\n";
1da177e4
LT
609 eval $dohighlight;
610 die $@ if $@;
3eb014a1
RD
611# print STDERR "contents af:$contents\n";
612
1da177e4 613 foreach $line (split "\n", $contents) {
12ae6779
DS
614 if (! $output_preformatted) {
615 $line =~ s/^\s*//;
616 }
3c308798 617 if ($line eq ""){
e314ba31 618 if (! $output_preformatted) {
0bba924c 619 print $lineprefix, $blankline;
e314ba31 620 }
1da177e4 621 } else {
cdccb316
RD
622 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
623 print "\\&$line";
624 } else {
625 print $lineprefix, $line;
626 }
1da177e4
LT
627 }
628 print "\n";
629 }
630}
631
1da177e4
LT
632##
633# output function in man
634sub output_function_man(%) {
635 my %args = %{$_[0]};
636 my ($parameter, $section);
637 my $count;
638
639 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
640
641 print ".SH NAME\n";
b9d97328 642 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
643
644 print ".SH SYNOPSIS\n";
a21217da 645 if ($args{'functiontype'} ne "") {
b9d97328 646 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
a21217da 647 } else {
b9d97328 648 print ".B \"" . $args{'function'} . "\n";
a21217da 649 }
1da177e4
LT
650 $count = 0;
651 my $parenth = "(";
652 my $post = ",";
653 foreach my $parameter (@{$args{'parameterlist'}}) {
654 if ($count == $#{$args{'parameterlist'}}) {
655 $post = ");";
656 }
657 $type = $args{'parametertypes'}{$parameter};
658 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
659 # pointer-to-function
b9d97328 660 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
1da177e4
LT
661 } else {
662 $type =~ s/([^\*])$/$1 /;
b9d97328 663 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
1da177e4
LT
664 }
665 $count++;
666 $parenth = "";
667 }
668
669 print ".SH ARGUMENTS\n";
670 foreach $parameter (@{$args{'parameterlist'}}) {
671 my $parameter_name = $parameter;
672 $parameter_name =~ s/\[.*//;
673
b9d97328 674 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
675 output_highlight($args{'parameterdescs'}{$parameter_name});
676 }
677 foreach $section (@{$args{'sectionlist'}}) {
678 print ".SH \"", uc $section, "\"\n";
679 output_highlight($args{'sections'}{$section});
680 }
681}
682
683##
684# output enum in man
685sub output_enum_man(%) {
686 my %args = %{$_[0]};
687 my ($parameter, $section);
688 my $count;
689
690 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
691
692 print ".SH NAME\n";
b9d97328 693 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
694
695 print ".SH SYNOPSIS\n";
b9d97328 696 print "enum " . $args{'enum'} . " {\n";
1da177e4
LT
697 $count = 0;
698 foreach my $parameter (@{$args{'parameterlist'}}) {
3c308798 699 print ".br\n.BI \" $parameter\"\n";
1da177e4
LT
700 if ($count == $#{$args{'parameterlist'}}) {
701 print "\n};\n";
702 last;
703 }
704 else {
705 print ", \n.br\n";
706 }
707 $count++;
708 }
709
710 print ".SH Constants\n";
711 foreach $parameter (@{$args{'parameterlist'}}) {
712 my $parameter_name = $parameter;
713 $parameter_name =~ s/\[.*//;
714
b9d97328 715 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
716 output_highlight($args{'parameterdescs'}{$parameter_name});
717 }
718 foreach $section (@{$args{'sectionlist'}}) {
719 print ".SH \"$section\"\n";
720 output_highlight($args{'sections'}{$section});
721 }
722}
723
724##
725# output struct in man
726sub output_struct_man(%) {
727 my %args = %{$_[0]};
728 my ($parameter, $section);
729
b9d97328 730 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
1da177e4
LT
731
732 print ".SH NAME\n";
b9d97328 733 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
1da177e4 734
8ad72163
MCC
735 my $declaration = $args{'definition'};
736 $declaration =~ s/\t/ /g;
737 $declaration =~ s/\n/"\n.br\n.BI \"/g;
1da177e4 738 print ".SH SYNOPSIS\n";
b9d97328 739 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
8ad72163 740 print ".BI \"$declaration\n};\n.br\n\n";
1da177e4 741
c51d3dac 742 print ".SH Members\n";
1da177e4
LT
743 foreach $parameter (@{$args{'parameterlist'}}) {
744 ($parameter =~ /^#/) && next;
745
746 my $parameter_name = $parameter;
747 $parameter_name =~ s/\[.*//;
748
3c308798 749 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
b9d97328 750 print ".IP \"" . $parameter . "\" 12\n";
1da177e4
LT
751 output_highlight($args{'parameterdescs'}{$parameter_name});
752 }
753 foreach $section (@{$args{'sectionlist'}}) {
754 print ".SH \"$section\"\n";
755 output_highlight($args{'sections'}{$section});
756 }
757}
758
759##
760# output typedef in man
761sub output_typedef_man(%) {
762 my %args = %{$_[0]};
763 my ($parameter, $section);
764
765 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
766
767 print ".SH NAME\n";
b9d97328 768 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
1da177e4
LT
769
770 foreach $section (@{$args{'sectionlist'}}) {
771 print ".SH \"$section\"\n";
772 output_highlight($args{'sections'}{$section});
773 }
774}
775
b112e0f7 776sub output_blockhead_man(%) {
1da177e4
LT
777 my %args = %{$_[0]};
778 my ($parameter, $section);
779 my $count;
780
781 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
782
783 foreach $section (@{$args{'sectionlist'}}) {
784 print ".SH \"$section\"\n";
785 output_highlight($args{'sections'}{$section});
786 }
787}
788
c0d1b6ee
JC
789##
790# output in restructured text
791#
792
793#
794# This could use some work; it's used to output the DOC: sections, and
795# starts by putting out the name of the doc section itself, but that tends
796# to duplicate a header already in the template file.
797#
798sub output_blockhead_rst(%) {
799 my %args = %{$_[0]};
800 my ($parameter, $section);
801
802 foreach $section (@{$args{'sectionlist'}}) {
9e72184b
JN
803 if ($output_selection != OUTPUT_INCLUDE) {
804 print "**$section**\n\n";
805 }
0b0f5f29 806 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
807 output_highlight_rst($args{'sections'}{$section});
808 print "\n";
809 }
810}
811
af250290
JC
812#
813# Apply the RST highlights to a sub-block of text.
76dd3e7b 814#
af250290
JC
815sub highlight_block($) {
816 # The dohighlight kludge requires the text be called $contents
817 my $contents = shift;
c0d1b6ee
JC
818 eval $dohighlight;
819 die $@ if $@;
af250290
JC
820 return $contents;
821}
c0d1b6ee 822
af250290
JC
823#
824# Regexes used only here.
825#
826my $sphinx_literal = '^[^.].*::$';
827my $sphinx_cblock = '^\.\.\ +code-block::';
828
829sub output_highlight_rst {
830 my $input = join "\n",@_;
831 my $output = "";
832 my $line;
833 my $in_literal = 0;
834 my $litprefix;
835 my $block = "";
836
837 foreach $line (split "\n",$input) {
838 #
839 # If we're in a literal block, see if we should drop out
840 # of it. Otherwise pass the line straight through unmunged.
841 #
842 if ($in_literal) {
843 if (! ($line =~ /^\s*$/)) {
844 #
845 # If this is the first non-blank line in a literal
846 # block we need to figure out what the proper indent is.
847 #
848 if ($litprefix eq "") {
849 $line =~ /^(\s*)/;
850 $litprefix = '^' . $1;
851 $output .= $line . "\n";
852 } elsif (! ($line =~ /$litprefix/)) {
853 $in_literal = 0;
854 } else {
855 $output .= $line . "\n";
856 }
857 } else {
858 $output .= $line . "\n";
859 }
860 }
861 #
862 # Not in a literal block (or just dropped out)
863 #
864 if (! $in_literal) {
865 $block .= $line . "\n";
866 if (($line =~ /$sphinx_literal/) || ($line =~ /$sphinx_cblock/)) {
867 $in_literal = 1;
868 $litprefix = "";
869 $output .= highlight_block($block);
870 $block = ""
871 }
872 }
873 }
874
875 if ($block) {
876 $output .= highlight_block($block);
877 }
878 foreach $line (split "\n", $output) {
830066a7 879 print $lineprefix . $line . "\n";
c0d1b6ee
JC
880 }
881}
882
883sub output_function_rst(%) {
884 my %args = %{$_[0]};
885 my ($parameter, $section);
c099ff69 886 my $oldprefix = $lineprefix;
82801d06
MCC
887 my $start = "";
888
889 if ($args{'typedef'}) {
efa44475
MCC
890 if ($sphinx_major < 3) {
891 print ".. c:type:: ". $args{'function'} . "\n\n";
892 } else {
893 print ".. c:function:: ". $args{'function'} . "\n\n";
894 }
82801d06
MCC
895 print_lineno($declaration_start_line);
896 print " **Typedef**: ";
897 $lineprefix = "";
898 output_highlight_rst($args{'purpose'});
899 $start = "\n\n**Syntax**\n\n ``";
900 } else {
901 print ".. c:function:: ";
902 }
c0d1b6ee 903 if ($args{'functiontype'} ne "") {
82801d06 904 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
c0d1b6ee 905 } else {
82801d06 906 $start .= $args{'function'} . " (";
c0d1b6ee
JC
907 }
908 print $start;
909
910 my $count = 0;
911 foreach my $parameter (@{$args{'parameterlist'}}) {
912 if ($count ne 0) {
913 print ", ";
914 }
915 $count++;
916 $type = $args{'parametertypes'}{$parameter};
a88b1672 917
c0d1b6ee
JC
918 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
919 # pointer-to-function
e8f4ba83 920 print $1 . $parameter . ") (" . $2 . ")";
c0d1b6ee
JC
921 } else {
922 print $type . " " . $parameter;
923 }
924 }
82801d06
MCC
925 if ($args{'typedef'}) {
926 print ");``\n\n";
927 } else {
928 print ")\n\n";
929 print_lineno($declaration_start_line);
930 $lineprefix = " ";
931 output_highlight_rst($args{'purpose'});
932 print "\n";
933 }
c0d1b6ee 934
ecbcfba1
JN
935 print "**Parameters**\n\n";
936 $lineprefix = " ";
c0d1b6ee
JC
937 foreach $parameter (@{$args{'parameterlist'}}) {
938 my $parameter_name = $parameter;
ada5f446 939 $parameter_name =~ s/\[.*//;
c0d1b6ee
JC
940 $type = $args{'parametertypes'}{$parameter};
941
942 if ($type ne "") {
ecbcfba1 943 print "``$type $parameter``\n";
c0d1b6ee 944 } else {
ecbcfba1 945 print "``$parameter``\n";
c0d1b6ee 946 }
0b0f5f29
DV
947
948 print_lineno($parameterdesc_start_lines{$parameter_name});
949
5e64fa9c
JN
950 if (defined($args{'parameterdescs'}{$parameter_name}) &&
951 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
c0d1b6ee 952 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee 953 } else {
d4b08e0c 954 print " *undescribed*\n";
c0d1b6ee
JC
955 }
956 print "\n";
957 }
c099ff69
JN
958
959 $lineprefix = $oldprefix;
c0d1b6ee
JC
960 output_section_rst(@_);
961}
962
963sub output_section_rst(%) {
964 my %args = %{$_[0]};
965 my $section;
966 my $oldprefix = $lineprefix;
ecbcfba1 967 $lineprefix = "";
c0d1b6ee
JC
968
969 foreach $section (@{$args{'sectionlist'}}) {
ecbcfba1 970 print "**$section**\n\n";
0b0f5f29 971 print_lineno($section_start_lines{$section});
c0d1b6ee
JC
972 output_highlight_rst($args{'sections'}{$section});
973 print "\n";
974 }
975 print "\n";
976 $lineprefix = $oldprefix;
977}
978
979sub output_enum_rst(%) {
980 my %args = %{$_[0]};
981 my ($parameter);
c099ff69 982 my $oldprefix = $lineprefix;
c0d1b6ee 983 my $count;
62850976 984
efa44475
MCC
985 if ($sphinx_major < 3) {
986 my $name = "enum " . $args{'enum'};
987 print "\n\n.. c:type:: " . $name . "\n\n";
988 } else {
989 my $name = $args{'enum'};
990 print "\n\n.. c:enum:: " . $name . "\n\n";
991 }
0b0f5f29 992 print_lineno($declaration_start_line);
c099ff69
JN
993 $lineprefix = " ";
994 output_highlight_rst($args{'purpose'});
995 print "\n";
c0d1b6ee 996
ecbcfba1
JN
997 print "**Constants**\n\n";
998 $lineprefix = " ";
c0d1b6ee 999 foreach $parameter (@{$args{'parameterlist'}}) {
ecbcfba1 1000 print "``$parameter``\n";
c0d1b6ee
JC
1001 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
1002 output_highlight_rst($args{'parameterdescs'}{$parameter});
1003 } else {
d4b08e0c 1004 print " *undescribed*\n";
c0d1b6ee
JC
1005 }
1006 print "\n";
1007 }
c099ff69 1008
c0d1b6ee
JC
1009 $lineprefix = $oldprefix;
1010 output_section_rst(@_);
1011}
1012
1013sub output_typedef_rst(%) {
1014 my %args = %{$_[0]};
1015 my ($parameter);
c099ff69 1016 my $oldprefix = $lineprefix;
efa44475 1017 my $name;
c0d1b6ee 1018
efa44475
MCC
1019 if ($sphinx_major < 3) {
1020 $name = "typedef " . $args{'typedef'};
1021 } else {
1022 $name = $args{'typedef'};
1023 }
62850976 1024 print "\n\n.. c:type:: " . $name . "\n\n";
0b0f5f29 1025 print_lineno($declaration_start_line);
c099ff69
JN
1026 $lineprefix = " ";
1027 output_highlight_rst($args{'purpose'});
1028 print "\n";
c0d1b6ee 1029
c099ff69 1030 $lineprefix = $oldprefix;
c0d1b6ee
JC
1031 output_section_rst(@_);
1032}
1033
1034sub output_struct_rst(%) {
1035 my %args = %{$_[0]};
1036 my ($parameter);
c099ff69 1037 my $oldprefix = $lineprefix;
c0d1b6ee 1038
efa44475
MCC
1039 if ($sphinx_major < 3) {
1040 my $name = $args{'type'} . " " . $args{'struct'};
1041 print "\n\n.. c:type:: " . $name . "\n\n";
1042 } else {
1043 my $name = $args{'struct'};
1044 print "\n\n.. c:struct:: " . $name . "\n\n";
1045 }
0b0f5f29 1046 print_lineno($declaration_start_line);
c099ff69
JN
1047 $lineprefix = " ";
1048 output_highlight_rst($args{'purpose'});
1049 print "\n";
c0d1b6ee 1050
ecbcfba1
JN
1051 print "**Definition**\n\n";
1052 print "::\n\n";
8ad72163
MCC
1053 my $declaration = $args{'definition'};
1054 $declaration =~ s/\t/ /g;
1055 print " " . $args{'type'} . " " . $args{'struct'} . " {\n$declaration };\n\n";
c0d1b6ee 1056
ecbcfba1
JN
1057 print "**Members**\n\n";
1058 $lineprefix = " ";
c0d1b6ee
JC
1059 foreach $parameter (@{$args{'parameterlist'}}) {
1060 ($parameter =~ /^#/) && next;
1061
1062 my $parameter_name = $parameter;
1063 $parameter_name =~ s/\[.*//;
1064
1065 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1066 $type = $args{'parametertypes'}{$parameter};
0b0f5f29 1067 print_lineno($parameterdesc_start_lines{$parameter_name});
6d232c80 1068 print "``" . $parameter . "``\n";
c0d1b6ee 1069 output_highlight_rst($args{'parameterdescs'}{$parameter_name});
c0d1b6ee
JC
1070 print "\n";
1071 }
1072 print "\n";
c099ff69
JN
1073
1074 $lineprefix = $oldprefix;
c0d1b6ee
JC
1075 output_section_rst(@_);
1076}
1077
3a025e1d
MW
1078## none mode output functions
1079
1080sub output_function_none(%) {
1081}
1082
1083sub output_enum_none(%) {
1084}
1085
1086sub output_typedef_none(%) {
1087}
1088
1089sub output_struct_none(%) {
1090}
1091
1092sub output_blockhead_none(%) {
1093}
1094
1da177e4 1095##
27205744
RD
1096# generic output function for all types (function, struct/union, typedef, enum);
1097# calls the generated, variable output_ function name based on
1098# functype and output_mode
1da177e4
LT
1099sub output_declaration {
1100 no strict 'refs';
1101 my $name = shift;
1102 my $functype = shift;
1103 my $func = "output_${functype}_$output_mode";
b6c3f456
JN
1104 if (($output_selection == OUTPUT_ALL) ||
1105 (($output_selection == OUTPUT_INCLUDE ||
1106 $output_selection == OUTPUT_EXPORTED) &&
1107 defined($function_table{$name})) ||
1108 (($output_selection == OUTPUT_EXCLUDE ||
1109 $output_selection == OUTPUT_INTERNAL) &&
1110 !($functype eq "function" && defined($function_table{$name}))))
1da177e4 1111 {
3c308798 1112 &$func(@_);
1da177e4
LT
1113 $section_counter++;
1114 }
1115}
1116
1117##
27205744 1118# generic output function - calls the right one based on current output mode.
b112e0f7 1119sub output_blockhead {
1da177e4 1120 no strict 'refs';
b9d97328 1121 my $func = "output_blockhead_" . $output_mode;
1da177e4
LT
1122 &$func(@_);
1123 $section_counter++;
1124}
1125
1126##
3c3b809e 1127# takes a declaration (struct, union, enum, typedef) and
1da177e4
LT
1128# invokes the right handler. NOT called for functions.
1129sub dump_declaration($$) {
1130 no strict 'refs';
1131 my ($prototype, $file) = @_;
b9d97328 1132 my $func = "dump_" . $decl_type;
1da177e4
LT
1133 &$func(@_);
1134}
1135
1136sub dump_union($$) {
1137 dump_struct(@_);
1138}
1139
1140sub dump_struct($$) {
1141 my $x = shift;
1142 my $file = shift;
1143
a070991f 1144 if ($x =~ /(struct|union)\s+(\w+)\s*\{(.*)\}(\s*(__packed|__aligned|____cacheline_aligned_in_smp|____cacheline_aligned|__attribute__\s*\(\([a-z0-9,_\s\(\)]*\)\)))*/) {
5cb5c31c 1145 my $decl_type = $1;
3c308798
RD
1146 $declaration_name = $2;
1147 my $members = $3;
1da177e4 1148
aeec46b9 1149 # ignore members marked private:
0d8c39e6
MCC
1150 $members =~ s/\/\*\s*private:.*?\/\*\s*public:.*?\*\///gosi;
1151 $members =~ s/\/\*\s*private:.*//gosi;
aeec46b9
MW
1152 # strip comments:
1153 $members =~ s/\/\*.*?\*\///gos;
ef5da59f 1154 # strip attributes
2b5f78e5
AA
1155 $members =~ s/\s*__attribute__\s*\(\([a-z0-9,_\*\s\(\)]*\)\)/ /gi;
1156 $members =~ s/\s*__aligned\s*\([^;]*\)/ /gos;
1157 $members =~ s/\s*__packed\s*/ /gos;
1158 $members =~ s/\s*CRYPTO_MINALIGN_ATTR/ /gos;
f861537d 1159 $members =~ s/\s*____cacheline_aligned_in_smp/ /gos;
a070991f 1160 $members =~ s/\s*____cacheline_aligned/ /gos;
3556108e 1161
b22b5a9e 1162 # replace DECLARE_BITMAP
3556108e 1163 $members =~ s/__ETHTOOL_DECLARE_LINK_MODE_MASK\s*\(([^\)]+)\)/DECLARE_BITMAP($1, __ETHTOOL_LINK_MODE_MASK_NBITS)/gos;
45005b27 1164 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
1cb566ba 1165 # replace DECLARE_HASHTABLE
45005b27
MCC
1166 $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+),\s*([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
1167 # replace DECLARE_KFIFO
1168 $members =~ s/DECLARE_KFIFO\s*\(([^,)]+),\s*([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
1169 # replace DECLARE_KFIFO_PTR
1170 $members =~ s/DECLARE_KFIFO_PTR\s*\(([^,)]+),\s*([^,)]+)\)/$2 \*$1/gos;
aeec46b9 1171
8ad72163
MCC
1172 my $declaration = $members;
1173
1174 # Split nested struct/union elements as newer ones
84ce5b98
MCC
1175 while ($members =~ m/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/) {
1176 my $newmember;
1177 my $maintype = $1;
1178 my $ids = $4;
1179 my $content = $3;
1180 foreach my $id(split /,/, $ids) {
1181 $newmember .= "$maintype $id; ";
1182
8ad72163 1183 $id =~ s/[:\[].*//;
84ce5b98 1184 $id =~ s/^\s*\**(\S+)\s*/$1/;
8ad72163
MCC
1185 foreach my $arg (split /;/, $content) {
1186 next if ($arg =~ m/^\s*$/);
7c0d7e87
MCC
1187 if ($arg =~ m/^([^\(]+\(\*?\s*)([\w\.]*)(\s*\).*)/) {
1188 # pointer-to-function
1189 my $type = $1;
1190 my $name = $2;
1191 my $extra = $3;
1192 next if (!$name);
1193 if ($id =~ m/^\s*$/) {
1194 # anonymous struct/union
84ce5b98 1195 $newmember .= "$type$name$extra; ";
7c0d7e87 1196 } else {
84ce5b98 1197 $newmember .= "$type$id.$name$extra; ";
7c0d7e87 1198 }
8ad72163 1199 } else {
84ce5b98
MCC
1200 my $type;
1201 my $names;
1202 $arg =~ s/^\s+//;
1203 $arg =~ s/\s+$//;
1204 # Handle bitmaps
1205 $arg =~ s/:\s*\d+\s*//g;
1206 # Handle arrays
d404d579 1207 $arg =~ s/\[.*\]//g;
84ce5b98
MCC
1208 # The type may have multiple words,
1209 # and multiple IDs can be defined, like:
1210 # const struct foo, *bar, foobar
1211 # So, we remove spaces when parsing the
1212 # names, in order to match just names
1213 # and commas for the names
1214 $arg =~ s/\s*,\s*/,/g;
1215 if ($arg =~ m/(.*)\s+([\S+,]+)/) {
1216 $type = $1;
1217 $names = $2;
7c0d7e87 1218 } else {
84ce5b98
MCC
1219 $newmember .= "$arg; ";
1220 next;
1221 }
1222 foreach my $name (split /,/, $names) {
1223 $name =~ s/^\s*\**(\S+)\s*/$1/;
1224 next if (($name =~ m/^\s*$/));
1225 if ($id =~ m/^\s*$/) {
1226 # anonymous struct/union
1227 $newmember .= "$type $name; ";
1228 } else {
1229 $newmember .= "$type $id.$name; ";
1230 }
7c0d7e87 1231 }
8ad72163
MCC
1232 }
1233 }
84ce5b98 1234 }
673bb2df 1235 $members =~ s/(struct|union)([^\{\};]+)\{([^\{\}]*)\}([^\{\}\;]*)\;/$newmember/;
84ce5b98 1236 }
8ad72163
MCC
1237
1238 # Ignore other nested elements, like enums
673bb2df 1239 $members =~ s/(\{[^\{\}]*\})//g;
8ad72163 1240
151c468b 1241 create_parameterlist($members, ';', $file, $declaration_name);
1081de2d 1242 check_sections($file, $declaration_name, $decl_type, $sectcheck, $struct_actual);
1da177e4 1243
8ad72163 1244 # Adjust declaration for better display
673bb2df
BH
1245 $declaration =~ s/([\{;])/$1\n/g;
1246 $declaration =~ s/\}\s+;/};/g;
8ad72163 1247 # Better handle inlined enums
673bb2df 1248 do {} while ($declaration =~ s/(enum\s+\{[^\}]+),([^\n])/$1,\n$2/);
8ad72163
MCC
1249
1250 my @def_args = split /\n/, $declaration;
1251 my $level = 1;
1252 $declaration = "";
1253 foreach my $clause (@def_args) {
1254 $clause =~ s/^\s+//;
1255 $clause =~ s/\s+$//;
1256 $clause =~ s/\s+/ /;
1257 next if (!$clause);
673bb2df 1258 $level-- if ($clause =~ m/(\})/ && $level > 1);
8ad72163
MCC
1259 if (!($clause =~ m/^\s*#/)) {
1260 $declaration .= "\t" x $level;
1261 }
1262 $declaration .= "\t" . $clause . "\n";
673bb2df 1263 $level++ if ($clause =~ m/(\{)/ && !($clause =~m/\}/));
8ad72163 1264 }
1da177e4
LT
1265 output_declaration($declaration_name,
1266 'struct',
1267 {'struct' => $declaration_name,
1268 'module' => $modulename,
8ad72163 1269 'definition' => $declaration,
1da177e4
LT
1270 'parameterlist' => \@parameterlist,
1271 'parameterdescs' => \%parameterdescs,
1272 'parametertypes' => \%parametertypes,
1273 'sectionlist' => \@sectionlist,
1274 'sections' => \%sections,
1275 'purpose' => $declaration_purpose,
1276 'type' => $decl_type
1277 });
1278 }
1279 else {
d40e1e65 1280 print STDERR "${file}:$.: error: Cannot parse struct or union!\n";
1da177e4
LT
1281 ++$errors;
1282 }
1283}
1284
85afe608
MCC
1285
1286sub show_warnings($$) {
1287 my $functype = shift;
1288 my $name = shift;
1289
1290 return 1 if ($output_selection == OUTPUT_ALL);
1291
1292 if ($output_selection == OUTPUT_EXPORTED) {
1293 if (defined($function_table{$name})) {
1294 return 1;
1295 } else {
1296 return 0;
1297 }
1298 }
1299 if ($output_selection == OUTPUT_INTERNAL) {
1300 if (!($functype eq "function" && defined($function_table{$name}))) {
1301 return 1;
1302 } else {
1303 return 0;
1304 }
1305 }
1306 if ($output_selection == OUTPUT_INCLUDE) {
1307 if (defined($function_table{$name})) {
1308 return 1;
1309 } else {
1310 return 0;
1311 }
1312 }
1313 if ($output_selection == OUTPUT_EXCLUDE) {
1314 if (!defined($function_table{$name})) {
1315 return 1;
1316 } else {
1317 return 0;
1318 }
1319 }
1320 die("Please add the new output type at show_warnings()");
1321}
1322
1da177e4
LT
1323sub dump_enum($$) {
1324 my $x = shift;
1325 my $file = shift;
d38c8cfb
MCC
1326 my $members;
1327
1da177e4 1328
aeec46b9 1329 $x =~ s@/\*.*?\*/@@gos; # strip comments.
4468e21e
CN
1330 # strip #define macros inside enums
1331 $x =~ s@#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
b6d676db 1332
d38c8cfb
MCC
1333 if ($x =~ /typedef\s+enum\s*\{(.*)\}\s*(\w*)\s*;/) {
1334 $declaration_name = $2;
1335 $members = $1;
1336 } elsif ($x =~ /enum\s+(\w*)\s*\{(.*)\}/) {
3c308798 1337 $declaration_name = $1;
d38c8cfb
MCC
1338 $members = $2;
1339 }
1340
1341 if ($declaration_name) {
5cb5c31c
JB
1342 my %_members;
1343
463a0fdc 1344 $members =~ s/\s+$//;
1da177e4
LT
1345
1346 foreach my $arg (split ',', $members) {
1347 $arg =~ s/^\s*(\w+).*/$1/;
1348 push @parameterlist, $arg;
1349 if (!$parameterdescs{$arg}) {
3c308798 1350 $parameterdescs{$arg} = $undescribed;
85afe608 1351 if (show_warnings("enum", $declaration_name)) {
2defb272
MCC
1352 print STDERR "${file}:$.: warning: Enum value '$arg' not described in enum '$declaration_name'\n";
1353 }
1da177e4 1354 }
5cb5c31c 1355 $_members{$arg} = 1;
1da177e4 1356 }
3c3b809e 1357
5cb5c31c
JB
1358 while (my ($k, $v) = each %parameterdescs) {
1359 if (!exists($_members{$k})) {
85afe608 1360 if (show_warnings("enum", $declaration_name)) {
2defb272
MCC
1361 print STDERR "${file}:$.: warning: Excess enum value '$k' description in '$declaration_name'\n";
1362 }
5cb5c31c
JB
1363 }
1364 }
1365
1da177e4
LT
1366 output_declaration($declaration_name,
1367 'enum',
1368 {'enum' => $declaration_name,
1369 'module' => $modulename,
1370 'parameterlist' => \@parameterlist,
1371 'parameterdescs' => \%parameterdescs,
1372 'sectionlist' => \@sectionlist,
1373 'sections' => \%sections,
1374 'purpose' => $declaration_purpose
1375 });
d38c8cfb 1376 } else {
d40e1e65 1377 print STDERR "${file}:$.: error: Cannot parse enum!\n";
1da177e4
LT
1378 ++$errors;
1379 }
1380}
1381
1382sub dump_typedef($$) {
1383 my $x = shift;
1384 my $file = shift;
1385
aeec46b9 1386 $x =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4 1387
83766452 1388 # Parse function prototypes
d37c43ce
MCC
1389 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
1390 $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
1391
83766452
MCC
1392 # Function typedefs
1393 $return_type = $1;
1394 $declaration_name = $2;
1395 my $args = $3;
1396
151c468b 1397 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4
LT
1398
1399 output_declaration($declaration_name,
83766452
MCC
1400 'function',
1401 {'function' => $declaration_name,
82801d06 1402 'typedef' => 1,
1da177e4 1403 'module' => $modulename,
83766452
MCC
1404 'functiontype' => $return_type,
1405 'parameterlist' => \@parameterlist,
1406 'parameterdescs' => \%parameterdescs,
1407 'parametertypes' => \%parametertypes,
1da177e4
LT
1408 'sectionlist' => \@sectionlist,
1409 'sections' => \%sections,
1410 'purpose' => $declaration_purpose
1411 });
83766452
MCC
1412 return;
1413 }
1414
1415 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
1416 $x =~ s/\(*.\)\s*;$/;/;
1417 $x =~ s/\[*.\]\s*;$/;/;
1da177e4 1418 }
83766452
MCC
1419
1420 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
3a80a766
MCC
1421 $declaration_name = $1;
1422
1423 output_declaration($declaration_name,
1424 'typedef',
1425 {'typedef' => $declaration_name,
1426 'module' => $modulename,
1427 'sectionlist' => \@sectionlist,
1428 'sections' => \%sections,
1429 'purpose' => $declaration_purpose
1430 });
1431 }
1da177e4 1432 else {
d40e1e65 1433 print STDERR "${file}:$.: error: Cannot parse typedef!\n";
1da177e4
LT
1434 ++$errors;
1435 }
1436}
1437
a1d94aa5
RD
1438sub save_struct_actual($) {
1439 my $actual = shift;
1440
1441 # strip all spaces from the actual param so that it looks like one string item
1442 $actual =~ s/\s*//g;
1443 $struct_actual = $struct_actual . $actual . " ";
1444}
1445
151c468b 1446sub create_parameterlist($$$$) {
1da177e4
LT
1447 my $args = shift;
1448 my $splitter = shift;
1449 my $file = shift;
151c468b 1450 my $declaration_name = shift;
1da177e4
LT
1451 my $type;
1452 my $param;
1453
a6d3fe77 1454 # temporarily replace commas inside function pointer definition
1da177e4 1455 while ($args =~ /(\([^\),]+),/) {
3c308798 1456 $args =~ s/(\([^\),]+),/$1#/g;
1da177e4 1457 }
3c3b809e 1458
1da177e4
LT
1459 foreach my $arg (split($splitter, $args)) {
1460 # strip comments
1461 $arg =~ s/\/\*.*\*\///;
3c308798
RD
1462 # strip leading/trailing spaces
1463 $arg =~ s/^\s*//;
1da177e4
LT
1464 $arg =~ s/\s*$//;
1465 $arg =~ s/\s+/ /;
1466
1467 if ($arg =~ /^#/) {
1468 # Treat preprocessor directive as a typeless variable just to fill
1469 # corresponding data structures "correctly". Catch it later in
1470 # output_* subs.
1471 push_parameter($arg, "", $file);
00d62961 1472 } elsif ($arg =~ m/\(.+\)\s*\(/) {
1da177e4
LT
1473 # pointer-to-function
1474 $arg =~ tr/#/,/;
7c0d7e87 1475 $arg =~ m/[^\(]+\(\*?\s*([\w\.]*)\s*\)/;
1da177e4
LT
1476 $param = $1;
1477 $type = $arg;
00d62961 1478 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
a1d94aa5 1479 save_struct_actual($param);
151c468b 1480 push_parameter($param, $type, $file, $declaration_name);
aeec46b9 1481 } elsif ($arg) {
1da177e4
LT
1482 $arg =~ s/\s*:\s*/:/g;
1483 $arg =~ s/\s*\[/\[/g;
1484
1485 my @args = split('\s*,\s*', $arg);
1486 if ($args[0] =~ m/\*/) {
1487 $args[0] =~ s/(\*+)\s*/ $1/;
1488 }
884f2810
BP
1489
1490 my @first_arg;
1491 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
1492 shift @args;
1493 push(@first_arg, split('\s+', $1));
1494 push(@first_arg, $2);
1495 } else {
1496 @first_arg = split('\s+', shift @args);
1497 }
1498
1da177e4
LT
1499 unshift(@args, pop @first_arg);
1500 $type = join " ", @first_arg;
1501
1502 foreach $param (@args) {
1503 if ($param =~ m/^(\*+)\s*(.*)/) {
a1d94aa5 1504 save_struct_actual($2);
151c468b 1505 push_parameter($2, "$type $1", $file, $declaration_name);
1da177e4
LT
1506 }
1507 elsif ($param =~ m/(.*?):(\d+)/) {
7b97887e 1508 if ($type ne "") { # skip unnamed bit-fields
a1d94aa5 1509 save_struct_actual($1);
151c468b 1510 push_parameter($1, "$type:$2", $file, $declaration_name)
7b97887e 1511 }
1da177e4
LT
1512 }
1513 else {
a1d94aa5 1514 save_struct_actual($param);
151c468b 1515 push_parameter($param, $type, $file, $declaration_name);
1da177e4
LT
1516 }
1517 }
1518 }
1519 }
1520}
1521
151c468b 1522sub push_parameter($$$$) {
1da177e4
LT
1523 my $param = shift;
1524 my $type = shift;
1525 my $file = shift;
151c468b 1526 my $declaration_name = shift;
1da177e4 1527
5f8c7c98
RD
1528 if (($anon_struct_union == 1) && ($type eq "") &&
1529 ($param eq "}")) {
1530 return; # ignore the ending }; from anon. struct/union
1531 }
1532
1533 $anon_struct_union = 0;
f9b5c530 1534 $param =~ s/[\[\)].*//;
1da177e4 1535
a6d3fe77 1536 if ($type eq "" && $param =~ /\.\.\.$/)
1da177e4 1537 {
c950a173
SF
1538 if (!$param =~ /\w\.\.\.$/) {
1539 # handles unnamed variable parameters
1540 $param = "...";
1541 }
43756e34
JN
1542 elsif ($param =~ /\w\.\.\.$/) {
1543 # for named variable parameters of the form `x...`, remove the dots
1544 $param =~ s/\.\.\.$//;
1545 }
ced69090
RD
1546 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
1547 $parameterdescs{$param} = "variable arguments";
1548 }
1da177e4
LT
1549 }
1550 elsif ($type eq "" && ($param eq "" or $param eq "void"))
1551 {
1da177e4
LT
1552 $param="void";
1553 $parameterdescs{void} = "no arguments";
1554 }
134fe01b
RD
1555 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
1556 # handle unnamed (anonymous) union or struct:
1557 {
1558 $type = $param;
5f8c7c98 1559 $param = "{unnamed_" . $param . "}";
134fe01b 1560 $parameterdescs{$param} = "anonymous\n";
5f8c7c98 1561 $anon_struct_union = 1;
134fe01b
RD
1562 }
1563
a6d3fe77 1564 # warn if parameter has no description
134fe01b
RD
1565 # (but ignore ones starting with # as these are not parameters
1566 # but inline preprocessor statements);
151c468b 1567 # Note: It will also ignore void params and unnamed structs/unions
f9b5c530 1568 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
151c468b 1569 $parameterdescs{$param} = $undescribed;
a6d3fe77 1570
be5cd20c 1571 if (show_warnings($type, $declaration_name) && $param !~ /\./) {
2defb272
MCC
1572 print STDERR
1573 "${file}:$.: warning: Function parameter or member '$param' not described in '$declaration_name'\n";
1574 ++$warnings;
1575 }
3c308798 1576 }
1da177e4 1577
25985edc 1578 # strip spaces from $param so that it is one continuous string
e34e7dbb
RD
1579 # on @parameterlist;
1580 # this fixes a problem where check_sections() cannot find
1581 # a parameter like "addr[6 + 2]" because it actually appears
1582 # as "addr[6", "+", "2]" on the parameter list;
1583 # but it's better to maintain the param string unchanged for output,
1584 # so just weaken the string compare in check_sections() to ignore
1585 # "[blah" in a parameter string;
1586 ###$param =~ s/\s*//g;
1da177e4 1587 push @parameterlist, $param;
02a4f4fe 1588 $type =~ s/\s\s+/ /g;
1da177e4
LT
1589 $parametertypes{$param} = $type;
1590}
1591
1081de2d
MCC
1592sub check_sections($$$$$) {
1593 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck) = @_;
a1d94aa5
RD
1594 my @sects = split ' ', $sectcheck;
1595 my @prms = split ' ', $prmscheck;
1596 my $err;
1597 my ($px, $sx);
1598 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
1599
1600 foreach $sx (0 .. $#sects) {
1601 $err = 1;
1602 foreach $px (0 .. $#prms) {
1603 $prm_clean = $prms[$px];
1604 $prm_clean =~ s/\[.*\]//;
1f3a6688 1605 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
e34e7dbb
RD
1606 # ignore array size in a parameter string;
1607 # however, the original param string may contain
1608 # spaces, e.g.: addr[6 + 2]
1609 # and this appears in @prms as "addr[6" since the
1610 # parameter list is split at spaces;
1611 # hence just ignore "[..." for the sections check;
1612 $prm_clean =~ s/\[.*//;
1613
a1d94aa5
RD
1614 ##$prm_clean =~ s/^\**//;
1615 if ($prm_clean eq $sects[$sx]) {
1616 $err = 0;
1617 last;
1618 }
1619 }
1620 if ($err) {
1621 if ($decl_type eq "function") {
d40e1e65 1622 print STDERR "${file}:$.: warning: " .
a1d94aa5
RD
1623 "Excess function parameter " .
1624 "'$sects[$sx]' " .
1625 "description in '$decl_name'\n";
1626 ++$warnings;
a1d94aa5
RD
1627 }
1628 }
1629 }
1630}
1631
4092bac7
YB
1632##
1633# Checks the section describing the return value of a function.
1634sub check_return_section {
1635 my $file = shift;
1636 my $declaration_name = shift;
1637 my $return_type = shift;
1638
1639 # Ignore an empty return type (It's a macro)
1640 # Ignore functions with a "void" return type. (But don't ignore "void *")
1641 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
1642 return;
1643 }
1644
1645 if (!defined($sections{$section_return}) ||
1646 $sections{$section_return} eq "") {
d40e1e65 1647 print STDERR "${file}:$.: warning: " .
4092bac7
YB
1648 "No description found for return value of " .
1649 "'$declaration_name'\n";
1650 ++$warnings;
1651 }
1652}
1653
1da177e4
LT
1654##
1655# takes a function prototype and the name of the current file being
1656# processed and spits out all the details stored in the global
1657# arrays/hashes.
1658sub dump_function($$) {
1659 my $prototype = shift;
1660 my $file = shift;
cbb4d3e6 1661 my $noret = 0;
1da177e4 1662
5eb6b4b3
MCC
1663 print_lineno($.);
1664
1da177e4
LT
1665 $prototype =~ s/^static +//;
1666 $prototype =~ s/^extern +//;
4dc3b16b 1667 $prototype =~ s/^asmlinkage +//;
1da177e4
LT
1668 $prototype =~ s/^inline +//;
1669 $prototype =~ s/^__inline__ +//;
32e79401
RD
1670 $prototype =~ s/^__inline +//;
1671 $prototype =~ s/^__always_inline +//;
1672 $prototype =~ s/^noinline +//;
74fc5c65 1673 $prototype =~ s/__init +//;
20072205 1674 $prototype =~ s/__init_or_module +//;
270a0096 1675 $prototype =~ s/__meminit +//;
70c95b00 1676 $prototype =~ s/__must_check +//;
0df7c0e3 1677 $prototype =~ s/__weak +//;
0891f959 1678 $prototype =~ s/__sched +//;
95e760cb 1679 $prototype =~ s/__printf\s*\(\s*\d*\s*,\s*\d*\s*\) +//;
cbb4d3e6 1680 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
b1aaa546
PB
1681 $prototype =~ s/__attribute__\s*\(\(
1682 (?:
1683 [\w\s]++ # attribute name
1684 (?:\([^)]*+\))? # attribute arguments
1685 \s*+,? # optional comma at the end
1686 )+
1687 \)\)\s+//x;
1da177e4
LT
1688
1689 # Yes, this truly is vile. We are looking for:
1690 # 1. Return type (may be nothing if we're looking at a macro)
1691 # 2. Function name
1692 # 3. Function parameters.
1693 #
1694 # All the while we have to watch out for function pointer parameters
1695 # (which IIRC is what the two sections are for), C types (these
1696 # regexps don't even start to express all the possibilities), and
1697 # so on.
1698 #
1699 # If you mess with these regexps, it's a good idea to check that
1700 # the following functions' documentation still comes out right:
1701 # - parport_register_device (function pointer parameters)
1702 # - atomic_set (macro)
9598f91f 1703 # - pci_match_device, __copy_to_user (long return type)
1da177e4 1704
cbb4d3e6
HG
1705 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
1706 # This is an object-like macro, it has no return type and no parameter
1707 # list.
1708 # Function-like macros are not allowed to have spaces between
1709 # declaration_name and opening parenthesis (notice the \s+).
1710 $return_type = $1;
1711 $declaration_name = $2;
1712 $noret = 1;
1713 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1714 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
5a0bc578 1715 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1716 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
94b3e03c 1717 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4 1718 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
5a0bc578 1719 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
1da177e4
LT
1720 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1721 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1722 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1da177e4 1723 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1724 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1da177e4 1725 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578 1726 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
9598f91f 1727 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
5a0bc578
MW
1728 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
1729 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
1da177e4
LT
1730 $return_type = $1;
1731 $declaration_name = $2;
1732 my $args = $3;
1733
151c468b 1734 create_parameterlist($args, ',', $file, $declaration_name);
1da177e4 1735 } else {
d40e1e65 1736 print STDERR "${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
1da177e4
LT
1737 return;
1738 }
1739
a1d94aa5 1740 my $prms = join " ", @parameterlist;
1081de2d 1741 check_sections($file, $declaration_name, "function", $sectcheck, $prms);
a1d94aa5 1742
4092bac7
YB
1743 # This check emits a lot of warnings at the moment, because many
1744 # functions don't have a 'Return' doc section. So until the number
1745 # of warnings goes sufficiently down, the check is only performed in
1746 # verbose mode.
1747 # TODO: always perform the check.
cbb4d3e6 1748 if ($verbose && !$noret) {
4092bac7
YB
1749 check_return_section($file, $declaration_name, $return_type);
1750 }
1751
3c3b809e 1752 output_declaration($declaration_name,
1da177e4
LT
1753 'function',
1754 {'function' => $declaration_name,
1755 'module' => $modulename,
1756 'functiontype' => $return_type,
1757 'parameterlist' => \@parameterlist,
1758 'parameterdescs' => \%parameterdescs,
1759 'parametertypes' => \%parametertypes,
1760 'sectionlist' => \@sectionlist,
1761 'sections' => \%sections,
1762 'purpose' => $declaration_purpose
1763 });
1764}
1765
1da177e4
LT
1766sub reset_state {
1767 $function = "";
1da177e4
LT
1768 %parameterdescs = ();
1769 %parametertypes = ();
1770 @parameterlist = ();
1771 %sections = ();
1772 @sectionlist = ();
a1d94aa5
RD
1773 $sectcheck = "";
1774 $struct_actual = "";
1da177e4 1775 $prototype = "";
3c3b809e 1776
48af606a
JN
1777 $state = STATE_NORMAL;
1778 $inline_doc_state = STATE_INLINE_NA;
1da177e4
LT
1779}
1780
56afb0f8
JB
1781sub tracepoint_munge($) {
1782 my $file = shift;
1783 my $tracepointname = 0;
1784 my $tracepointargs = 0;
1785
3a9089fd 1786 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
56afb0f8
JB
1787 $tracepointname = $1;
1788 }
3a9089fd
JB
1789 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
1790 $tracepointname = $1;
1791 }
1792 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
1793 $tracepointname = $2;
1794 }
1795 $tracepointname =~ s/^\s+//; #strip leading whitespace
1796 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
56afb0f8
JB
1797 $tracepointargs = $1;
1798 }
1799 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
d40e1e65 1800 print STDERR "${file}:$.: warning: Unrecognized tracepoint format: \n".
56afb0f8
JB
1801 "$prototype\n";
1802 } else {
1803 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
1804 }
1805}
1806
b4870bc5
RD
1807sub syscall_munge() {
1808 my $void = 0;
1809
7c9aa015 1810 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/CR's
b4870bc5
RD
1811## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
1812 if ($prototype =~ m/SYSCALL_DEFINE0/) {
1813 $void = 1;
1814## $prototype = "long sys_$1(void)";
1815 }
1816
1817 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
1818 if ($prototype =~ m/long (sys_.*?),/) {
1819 $prototype =~ s/,/\(/;
1820 } elsif ($void) {
1821 $prototype =~ s/\)/\(void\)/;
1822 }
1823
1824 # now delete all of the odd-number commas in $prototype
1825 # so that arg types & arg names don't have a comma between them
1826 my $count = 0;
1827 my $len = length($prototype);
1828 if ($void) {
1829 $len = 0; # skip the for-loop
1830 }
1831 for (my $ix = 0; $ix < $len; $ix++) {
1832 if (substr($prototype, $ix, 1) eq ',') {
1833 $count++;
1834 if ($count % 2 == 1) {
1835 substr($prototype, $ix, 1) = ' ';
1836 }
1837 }
1838 }
1839}
1840
b7afa92b 1841sub process_proto_function($$) {
1da177e4
LT
1842 my $x = shift;
1843 my $file = shift;
1844
51f5a0c8
RD
1845 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1846
890c78c2 1847 if ($x =~ m#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
1da177e4
LT
1848 # do nothing
1849 }
1850 elsif ($x =~ /([^\{]*)/) {
3c308798 1851 $prototype .= $1;
1da177e4 1852 }
b4870bc5 1853
890c78c2 1854 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
3c308798 1855 $prototype =~ s@/\*.*?\*/@@gos; # strip comments.
1da177e4
LT
1856 $prototype =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1857 $prototype =~ s@^\s+@@gos; # strip leading spaces
7ae281b0
MCC
1858
1859 # Handle prototypes for function pointers like:
1860 # int (*pcs_config)(struct foo)
1861 $prototype =~ s@^(\S+\s+)\(\s*\*(\S+)\)@$1$2@gos;
1862
b4870bc5
RD
1863 if ($prototype =~ /SYSCALL_DEFINE/) {
1864 syscall_munge();
1865 }
3a9089fd
JB
1866 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
1867 $prototype =~ /DEFINE_SINGLE_EVENT/)
1868 {
56afb0f8
JB
1869 tracepoint_munge($file);
1870 }
b4870bc5 1871 dump_function($prototype, $file);
1da177e4
LT
1872 reset_state();
1873 }
1874}
1875
b7afa92b 1876sub process_proto_type($$) {
1da177e4
LT
1877 my $x = shift;
1878 my $file = shift;
1879
1da177e4
LT
1880 $x =~ s@[\r\n]+@ @gos; # strip newlines/cr's.
1881 $x =~ s@^\s+@@gos; # strip leading spaces
1882 $x =~ s@\s+$@@gos; # strip trailing spaces
51f5a0c8
RD
1883 $x =~ s@\/\/.*$@@gos; # strip C99-style comments to end of line
1884
1da177e4
LT
1885 if ($x =~ /^#/) {
1886 # To distinguish preprocessor directive from regular declaration later.
1887 $x .= ";";
1888 }
1889
1890 while (1) {
673bb2df 1891 if ( $x =~ /([^\{\};]*)([\{\};])(.*)/ ) {
463a0fdc
MH
1892 if( length $prototype ) {
1893 $prototype .= " "
1894 }
1da177e4
LT
1895 $prototype .= $1 . $2;
1896 ($2 eq '{') && $brcount++;
1897 ($2 eq '}') && $brcount--;
1898 if (($2 eq ';') && ($brcount == 0)) {
b9d97328 1899 dump_declaration($prototype, $file);
1da177e4 1900 reset_state();
3c308798 1901 last;
1da177e4
LT
1902 }
1903 $x = $3;
3c308798 1904 } else {
1da177e4
LT
1905 $prototype .= $x;
1906 last;
1907 }
1908 }
1909}
1910
6b5b55f6 1911
1ad560e4 1912sub map_filename($) {
2283a117 1913 my $file;
68f86662 1914 my ($orig_file) = @_;
1da177e4 1915
2283a117 1916 if (defined($ENV{'SRCTREE'})) {
68f86662 1917 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
1ad560e4 1918 } else {
68f86662 1919 $file = $orig_file;
2283a117 1920 }
1ad560e4 1921
1da177e4
LT
1922 if (defined($source_map{$file})) {
1923 $file = $source_map{$file};
1924 }
1925
1ad560e4
JN
1926 return $file;
1927}
1928
88c2b57d
JN
1929sub process_export_file($) {
1930 my ($orig_file) = @_;
1931 my $file = map_filename($orig_file);
1932
1933 if (!open(IN,"<$file")) {
1934 print STDERR "Error: Cannot open file $file\n";
1935 ++$errors;
1936 return;
1937 }
1938
1939 while (<IN>) {
1940 if (/$export_symbol/) {
1941 $function_table{$2} = 1;
1942 }
1943 }
1944
1945 close(IN);
1946}
1947
07048d13
JC
1948#
1949# Parsers for the various processing states.
1950#
1951# STATE_NORMAL: looking for the /** to begin everything.
1952#
1953sub process_normal() {
1954 if (/$doc_start/o) {
1955 $state = STATE_NAME; # next line is always the function name
1956 $in_doc_sect = 0;
1957 $declaration_start_line = $. + 1;
1958 }
1959}
1960
3cac2bc4
JC
1961#
1962# STATE_NAME: Looking for the "name - description" line
1963#
1964sub process_name($$) {
1965 my $file = shift;
1ad560e4 1966 my $identifier;
1ad560e4 1967 my $descr;
3cac2bc4
JC
1968
1969 if (/$doc_block/o) {
1970 $state = STATE_DOCBLOCK;
1971 $contents = "";
1972 $new_start_line = $. + 1;
1973
1974 if ( $1 eq "" ) {
1975 $section = $section_intro;
1976 } else {
1977 $section = $1;
1978 }
1979 }
1980 elsif (/$doc_decl/o) {
1981 $identifier = $1;
fcdf1df2 1982 if (/\s*([\w\s]+?)(\(\))?\s*-/) {
3cac2bc4
JC
1983 $identifier = $1;
1984 }
07048d13 1985
3cac2bc4
JC
1986 $state = STATE_BODY;
1987 # if there's no @param blocks need to set up default section
1988 # here
1989 $contents = "";
1990 $section = $section_default;
1991 $new_start_line = $. + 1;
1992 if (/-(.*)/) {
1993 # strip leading/trailing/multiple spaces
1994 $descr= $1;
1995 $descr =~ s/^\s*//;
1996 $descr =~ s/\s*$//;
1997 $descr =~ s/\s+/ /g;
1998 $declaration_purpose = $descr;
1999 $state = STATE_BODY_MAYBE;
2000 } else {
2001 $declaration_purpose = "";
2002 }
2003
2004 if (($declaration_purpose eq "") && $verbose) {
2005 print STDERR "${file}:$.: warning: missing initial short description on line:\n";
2006 print STDERR $_;
2007 ++$warnings;
2008 }
2009
cf419d54 2010 if ($identifier =~ m/^struct\b/) {
3cac2bc4 2011 $decl_type = 'struct';
cf419d54 2012 } elsif ($identifier =~ m/^union\b/) {
3cac2bc4 2013 $decl_type = 'union';
cf419d54 2014 } elsif ($identifier =~ m/^enum\b/) {
3cac2bc4 2015 $decl_type = 'enum';
cf419d54 2016 } elsif ($identifier =~ m/^typedef\b/) {
3cac2bc4
JC
2017 $decl_type = 'typedef';
2018 } else {
2019 $decl_type = 'function';
2020 }
2021
2022 if ($verbose) {
2023 print STDERR "${file}:$.: info: Scanning doc for $identifier\n";
2024 }
2025 } else {
2026 print STDERR "${file}:$.: warning: Cannot understand $_ on line $.",
2027 " - I thought it was a doc line\n";
2028 ++$warnings;
2029 $state = STATE_NORMAL;
2030 }
2031}
07048d13 2032
d742f24d
JC
2033
2034#
2035# STATE_BODY and STATE_BODY_MAYBE: the bulk of a kerneldoc comment.
2036#
2037sub process_body($$) {
2038 my $file = shift;
2039
43756e34
JN
2040 # Until all named variable macro parameters are
2041 # documented using the bare name (`x`) rather than with
2042 # dots (`x...`), strip the dots:
2043 if ($section =~ /\w\.\.\.$/) {
2044 $section =~ s/\.\.\.$//;
2045
2046 if ($verbose) {
2047 print STDERR "${file}:$.: warning: Variable macro arguments should be documented without dots\n";
2048 ++$warnings;
2049 }
2050 }
2051
0d55d48b
MCC
2052 if ($state == STATE_BODY_WITH_BLANK_LINE && /^\s*\*\s?\S/) {
2053 dump_section($file, $section, $contents);
2054 $section = $section_default;
2055 $contents = "";
2056 }
2057
d742f24d
JC
2058 if (/$doc_sect/i) { # case insensitive for supported section names
2059 $newsection = $1;
2060 $newcontents = $2;
2061
2062 # map the supported section names to the canonical names
2063 if ($newsection =~ m/^description$/i) {
2064 $newsection = $section_default;
2065 } elsif ($newsection =~ m/^context$/i) {
2066 $newsection = $section_context;
2067 } elsif ($newsection =~ m/^returns?$/i) {
2068 $newsection = $section_return;
2069 } elsif ($newsection =~ m/^\@return$/) {
2070 # special: @return is a section, not a param description
2071 $newsection = $section_return;
2072 }
2073
2074 if (($contents ne "") && ($contents ne "\n")) {
2075 if (!$in_doc_sect && $verbose) {
2076 print STDERR "${file}:$.: warning: contents before sections\n";
2077 ++$warnings;
2078 }
2079 dump_section($file, $section, $contents);
2080 $section = $section_default;
2081 }
2082
2083 $in_doc_sect = 1;
2084 $state = STATE_BODY;
2085 $contents = $newcontents;
2086 $new_start_line = $.;
2087 while (substr($contents, 0, 1) eq " ") {
2088 $contents = substr($contents, 1);
2089 }
2090 if ($contents ne "") {
2091 $contents .= "\n";
2092 }
2093 $section = $newsection;
2094 $leading_space = undef;
2095 } elsif (/$doc_end/) {
2096 if (($contents ne "") && ($contents ne "\n")) {
2097 dump_section($file, $section, $contents);
2098 $section = $section_default;
2099 $contents = "";
2100 }
2101 # look for doc_com + <text> + doc_end:
2102 if ($_ =~ m'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
2103 print STDERR "${file}:$.: warning: suspicious ending line: $_";
2104 ++$warnings;
2105 }
2106
2107 $prototype = "";
2108 $state = STATE_PROTO;
2109 $brcount = 0;
2110 } elsif (/$doc_content/) {
d742f24d 2111 if ($1 eq "") {
0d55d48b 2112 if ($section eq $section_context) {
d742f24d
JC
2113 dump_section($file, $section, $contents);
2114 $section = $section_default;
2115 $contents = "";
2116 $new_start_line = $.;
0d55d48b 2117 $state = STATE_BODY;
d742f24d 2118 } else {
0d55d48b
MCC
2119 if ($section ne $section_default) {
2120 $state = STATE_BODY_WITH_BLANK_LINE;
2121 } else {
2122 $state = STATE_BODY;
2123 }
d742f24d
JC
2124 $contents .= "\n";
2125 }
d742f24d
JC
2126 } elsif ($state == STATE_BODY_MAYBE) {
2127 # Continued declaration purpose
2128 chomp($declaration_purpose);
2129 $declaration_purpose .= " " . $1;
2130 $declaration_purpose =~ s/\s+/ /g;
2131 } else {
2132 my $cont = $1;
2133 if ($section =~ m/^@/ || $section eq $section_context) {
2134 if (!defined $leading_space) {
2135 if ($cont =~ m/^(\s+)/) {
2136 $leading_space = $1;
2137 } else {
2138 $leading_space = "";
2139 }
2140 }
2141 $cont =~ s/^$leading_space//;
2142 }
2143 $contents .= $cont . "\n";
2144 }
2145 } else {
2146 # i dont know - bad line? ignore.
2147 print STDERR "${file}:$.: warning: bad line: $_";
2148 ++$warnings;
2149 }
2150}
2151
2152
cc794812
JC
2153#
2154# STATE_PROTO: reading a function/whatever prototype.
2155#
2156sub process_proto($$) {
2157 my $file = shift;
2158
2159 if (/$doc_inline_oneline/) {
2160 $section = $1;
2161 $contents = $2;
2162 if ($contents ne "") {
2163 $contents .= "\n";
2164 dump_section($file, $section, $contents);
2165 $section = $section_default;
2166 $contents = "";
2167 }
2168 } elsif (/$doc_inline_start/) {
2169 $state = STATE_INLINE;
2170 $inline_doc_state = STATE_INLINE_NAME;
2171 } elsif ($decl_type eq 'function') {
2172 process_proto_function($_, $file);
2173 } else {
2174 process_proto_type($_, $file);
2175 }
2176}
2177
c17add56
JC
2178#
2179# STATE_DOCBLOCK: within a DOC: block.
2180#
2181sub process_docblock($$) {
2182 my $file = shift;
2183
2184 if (/$doc_end/) {
2185 dump_doc_section($file, $section, $contents);
2186 $section = $section_default;
2187 $contents = "";
2188 $function = "";
2189 %parameterdescs = ();
2190 %parametertypes = ();
2191 @parameterlist = ();
2192 %sections = ();
2193 @sectionlist = ();
2194 $prototype = "";
2195 $state = STATE_NORMAL;
2196 } elsif (/$doc_content/) {
2197 if ( $1 eq "" ) {
2198 $contents .= $blankline;
2199 } else {
2200 $contents .= $1 . "\n";
2201 }
2202 }
2203}
2204
2205#
2206# STATE_INLINE: docbook comments within a prototype.
2207#
2208sub process_inline($$) {
2209 my $file = shift;
2210
2211 # First line (state 1) needs to be a @parameter
2212 if ($inline_doc_state == STATE_INLINE_NAME && /$doc_inline_sect/o) {
2213 $section = $1;
2214 $contents = $2;
2215 $new_start_line = $.;
2216 if ($contents ne "") {
2217 while (substr($contents, 0, 1) eq " ") {
2218 $contents = substr($contents, 1);
2219 }
2220 $contents .= "\n";
2221 }
2222 $inline_doc_state = STATE_INLINE_TEXT;
2223 # Documentation block end */
2224 } elsif (/$doc_inline_end/) {
2225 if (($contents ne "") && ($contents ne "\n")) {
2226 dump_section($file, $section, $contents);
2227 $section = $section_default;
2228 $contents = "";
2229 }
2230 $state = STATE_PROTO;
2231 $inline_doc_state = STATE_INLINE_NA;
2232 # Regular text
2233 } elsif (/$doc_content/) {
2234 if ($inline_doc_state == STATE_INLINE_TEXT) {
2235 $contents .= $1 . "\n";
2236 # nuke leading blank lines
2237 if ($contents =~ /^\s*$/) {
2238 $contents = "";
2239 }
2240 } elsif ($inline_doc_state == STATE_INLINE_NAME) {
2241 $inline_doc_state = STATE_INLINE_ERROR;
2242 print STDERR "${file}:$.: warning: ";
2243 print STDERR "Incorrect use of kernel-doc format: $_";
2244 ++$warnings;
2245 }
2246 }
2247}
2248
cc794812 2249
1ad560e4
JN
2250sub process_file($) {
2251 my $file;
1ad560e4
JN
2252 my $initial_section_counter = $section_counter;
2253 my ($orig_file) = @_;
1ad560e4
JN
2254
2255 $file = map_filename($orig_file);
2256
1da177e4
LT
2257 if (!open(IN,"<$file")) {
2258 print STDERR "Error: Cannot open file $file\n";
2259 ++$errors;
2260 return;
2261 }
2262
a9e7314b
ID
2263 $. = 1;
2264
1da177e4
LT
2265 $section_counter = 0;
2266 while (<IN>) {
65478428
DS
2267 while (s/\\\s*$//) {
2268 $_ .= <IN>;
2269 }
7c9aa015
MCC
2270 # Replace tabs by spaces
2271 while ($_ =~ s/\t+/' ' x (length($&) * 8 - length($`) % 8)/e) {};
c17add56 2272 # Hand this line to the appropriate state handler
48af606a 2273 if ($state == STATE_NORMAL) {
07048d13 2274 process_normal();
3cac2bc4
JC
2275 } elsif ($state == STATE_NAME) {
2276 process_name($file, $_);
0d55d48b
MCC
2277 } elsif ($state == STATE_BODY || $state == STATE_BODY_MAYBE ||
2278 $state == STATE_BODY_WITH_BLANK_LINE) {
d742f24d 2279 process_body($file, $_);
48af606a 2280 } elsif ($state == STATE_INLINE) { # scanning for inline parameters
c17add56 2281 process_inline($file, $_);
cc794812
JC
2282 } elsif ($state == STATE_PROTO) {
2283 process_proto($file, $_);
48af606a 2284 } elsif ($state == STATE_DOCBLOCK) {
c17add56 2285 process_docblock($file, $_);
3c308798 2286 }
1da177e4 2287 }
c17add56
JC
2288
2289 # Make sure we got something interesting.
b0d60bfb
JC
2290 if ($initial_section_counter == $section_counter && $
2291 output_mode ne "none") {
2292 if ($output_selection == OUTPUT_INCLUDE) {
2293 print STDERR "${file}:1: warning: '$_' not found\n"
2294 for keys %function_table;
3a025e1d 2295 }
b0d60bfb
JC
2296 else {
2297 print STDERR "${file}:1: warning: no structured comments found\n";
e946c43a 2298 }
1da177e4
LT
2299 }
2300}
8484baaa
RD
2301
2302
efa44475 2303$sphinx_major = get_sphinx_version();
8484baaa
RD
2304$kernelversion = get_kernel_version();
2305
2306# generate a sequence of code that will splice in highlighting information
2307# using the s// operator.
1ef06233 2308for (my $k = 0; $k < @highlights; $k++) {
4d732701
DCLP
2309 my $pattern = $highlights[$k][0];
2310 my $result = $highlights[$k][1];
2311# print STDERR "scanning pattern:$pattern, highlight:($result)\n";
2312 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
8484baaa
RD
2313}
2314
2315# Read the file that maps relative names to absolute names for
2316# separate source and object directories and for shadow trees.
2317if (open(SOURCE_MAP, "<.tmp_filelist.txt")) {
2318 my ($relname, $absname);
2319 while(<SOURCE_MAP>) {
2320 chop();
2321 ($relname, $absname) = (split())[0..1];
2322 $relname =~ s:^/+::;
2323 $source_map{$relname} = $absname;
2324 }
2325 close(SOURCE_MAP);
2326}
2327
88c2b57d
JN
2328if ($output_selection == OUTPUT_EXPORTED ||
2329 $output_selection == OUTPUT_INTERNAL) {
c9b2cfb3
JN
2330
2331 push(@export_file_list, @ARGV);
2332
88c2b57d
JN
2333 foreach (@export_file_list) {
2334 chomp;
2335 process_export_file($_);
2336 }
2337}
2338
8484baaa
RD
2339foreach (@ARGV) {
2340 chomp;
2341 process_file($_);
2342}
2343if ($verbose && $errors) {
2344 print STDERR "$errors errors\n";
2345}
2346if ($verbose && $warnings) {
2347 print STDERR "$warnings warnings\n";
2348}
2349
2c12c810
PLB
2350if ($Werror && $warnings) {
2351 print STDERR "$warnings warnings as Errors\n";
2352 exit($warnings);
2353} else {
2354 exit($output_mode eq "none" ? 0 : $errors)
2355}