6 ## Copyright (c) 1998 Michael Zucchi, All Rights Reserved ##
7 ## Copyright (C) 2000, 1 Tim Waugh <twaugh@redhat.com> ##
8 ## Copyright (C) 2001 Simon Huggins ##
9 ## Copyright (C) 2005-2012 Randy Dunlap ##
10 ## Copyright (C) 2012 Dan Luedtke ##
12 ## #define enhancements by Armin Kuster <akuster@mvista.com> ##
13 ## Copyright (c) 2000 MontaVista Software, Inc. ##
15 ## This software falls under the GNU General Public License. ##
16 ## Please read the COPYING file for more information ##
18 # 18/01/2001 - Cleanups
19 # Functions prototyped as foo(void) same as foo()
20 # Stop eval'ing where we don't need to.
23 # 27/06/2001 - Allowed whitespace after initial "/**" and
24 # allowed comments before function declarations.
25 # -- Christian Kreibich <ck@whoop.org>
28 # - add perldoc documentation
29 # - Look more closely at some of the scarier bits :)
31 # 26/05/2001 - Support for separate source and object trees.
33 # Keith Owens <kaos@ocs.com.au>
35 # 23/09/2001 - Added support for typedefs, structs, enums and unions
36 # Support for Context section; can be terminated using empty line
37 # Small fixes (like spaces vs. \s in regex)
38 # -- Tim Jansen <tim@tjansen.de>
40 # 25/07/2012 - Added support for HTML5
41 # -- Dan Luedtke <mail@danrl.de>
44 my $message = <<"EOF";
45 Usage: $0 [OPTION ...] FILE ...
47 Read C language source or header FILEs, extract embedded documentation comments,
48 and print formatted documentation to standard output.
50 The documentation comments are identified by "/**" opening comment mark. See
51 Documentation/kernel-doc-nano-HOWTO.txt for the documentation comment syntax.
53 Output format selection (mutually exclusive):
54 -docbook Output DocBook format.
55 -html Output HTML format.
56 -html5 Output HTML5 format.
57 -list Output symbol list format. This is for use by docproc.
58 -man Output troff manual page format. This is the default.
59 -rst Output reStructuredText format.
60 -text Output plain text format.
61 -none Do not output documentation, only warnings.
63 Output selection (mutually exclusive):
64 -export Only output documentation for symbols that have been
65 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
66 in any input FILE or -export-file FILE.
67 -internal Only output documentation for symbols that have NOT been
68 exported using EXPORT_SYMBOL() or EXPORT_SYMBOL_GPL()
69 in any input FILE or -export-file FILE.
70 -function NAME Only output documentation for the given function(s)
71 or DOC: section title(s). All other functions and DOC:
72 sections are ignored. May be specified multiple times.
73 -nofunction NAME Do NOT output documentation for the given function(s);
74 only output documentation for the other functions and
75 DOC: sections. May be specified multiple times.
77 Output selection modifiers:
78 -no-doc-sections Do not output DOC: sections.
79 -enable-lineno Enable output of #define LINENO lines. Only works with
80 reStructuredText format.
81 -export-file FILE Specify an additional FILE in which to look for
82 EXPORT_SYMBOL() and EXPORT_SYMBOL_GPL(). To be used with
83 -export or -internal. May be specified multiple times.
86 -v Verbose output, more warnings and other information.
96 # In the following table, (...)? signifies optional structure.
97 # (...)* signifies 0 or more structure elements
99 # * function_name(:)? (- short description)?
100 # (* @parameterx: (description of parameter x)?)*
102 # * (Description:)? (Description of function)?
103 # * (section header: (section description)? )*
106 # So .. the trivial example would be:
112 # If the Description: header tag is omitted, then there must be a blank line
113 # after the last parameter specification.
116 # * my_function - does my stuff
117 # * @my_arg: its mine damnit
119 # * Does my stuff explained.
122 # or, could also use:
124 # * my_function - does my stuff
125 # * @my_arg: its mine damnit
126 # * Description: Does my stuff explained.
130 # Besides functions you can also write documentation for structs, unions,
131 # enums and typedefs. Instead of the function name you must write the name
132 # of the declaration; the struct/union/enum/typedef must always precede
133 # the name. Nesting of declarations is not supported.
134 # Use the argument mechanism to document members or constants.
137 # * struct my_struct - short description
139 # * @b: second member
141 # * Longer description
150 # All descriptions can be multiline, except the short function description.
152 # For really longs structs, you can also describe arguments inside the
153 # body of the struct.
156 # * struct my_struct - short description
158 # * @b: second member
160 # * Longer description
166 # * @c: This is longer description of C
168 # * You can use paragraphs to describe arguments
169 # * using this method.
174 # This should be use only for struct/enum members.
176 # You can also add additional sections. When documenting kernel functions you
177 # should document the "Context:" of the function, e.g. whether the functions
178 # can be called form interrupts. Unlike other sections you can end it with an
180 # A non-void function should have a "Return:" section describing the return
182 # Example-sections should contain the string EXAMPLE so that they are marked
183 # appropriately in DocBook.
187 # * user_function - function that can only be called in user context
188 # * @a: some argument
189 # * Context: !in_interrupt()
193 # * user_function(22);
198 # All descriptive text is further processed, scanning for the following special
199 # patterns, which are highlighted appropriately.
201 # 'funcname()' - function
202 # '$ENVVAR' - environmental variable
203 # '&struct_name' - name of a structure (up to two words including 'struct')
204 # '&struct_name.member' - name of a structure member
205 # '@parameter' - name of a parameter
206 # '%CONST' - name of a constant.
207 # '``LITERAL``' - literal string without any spaces on it.
213 my $anon_struct_union = 0;
215 # match expressions used to find embedded type information
216 my $type_constant = '\b``([^\`]+)``\b';
217 my $type_constant2 = '\%([-_\w]+)';
218 my $type_func = '(\w+)\(\)';
219 my $type_param = '\@(\w+(\.\.\.)?)';
220 my $type_fp_param = '\@(\w+)\(\)'; # Special RST handling for func ptr params
221 my $type_env = '(\$\w+)';
222 my $type_enum = '\&(enum\s*([_\w]+))';
223 my $type_struct = '\&(struct\s*([_\w]+))';
224 my $type_typedef = '\&(typedef\s*([_\w]+))';
225 my $type_union = '\&(union\s*([_\w]+))';
226 my $type_member = '\&([_\w]+)(\.|->)([_\w]+)';
227 my $type_fallback = '\&([_\w]+)';
228 my $type_enum_xml = '\&(enum\s*([_\w]+))';
229 my $type_struct_xml = '\&(struct\s*([_\w]+))';
230 my $type_typedef_xml = '\&(typedef\s*([_\w]+))';
231 my $type_union_xml = '\&(union\s*([_\w]+))';
232 my $type_member_xml = '\&([_\w]+)(\.|-\>)([_\w]+)';
233 my $type_fallback_xml = '\&([_\w]+)';
234 my $type_member_func = $type_member . '\(\)';
236 # Output conversion substitutions.
237 # One for each output format
239 # these work fairly well
240 my @highlights_html = (
241 [$type_constant, "<i>\$1</i>"],
242 [$type_constant2, "<i>\$1</i>"],
243 [$type_func, "<b>\$1</b>"],
244 [$type_enum_xml, "<i>\$1</i>"],
245 [$type_struct_xml, "<i>\$1</i>"],
246 [$type_typedef_xml, "<i>\$1</i>"],
247 [$type_union_xml, "<i>\$1</i>"],
248 [$type_env, "<b><i>\$1</i></b>"],
249 [$type_param, "<tt><b>\$1</b></tt>"],
250 [$type_member_xml, "<tt><i>\$1</i>\$2\$3</tt>"],
251 [$type_fallback_xml, "<i>\$1</i>"]
253 my $local_lt = "\\\\\\\\lt:";
254 my $local_gt = "\\\\\\\\gt:";
255 my $blankline_html = $local_lt . "p" . $local_gt; # was "<p>"
258 my @highlights_html5 = (
259 [$type_constant, "<span class=\"const\">\$1</span>"],
260 [$type_constant2, "<span class=\"const\">\$1</span>"],
261 [$type_func, "<span class=\"func\">\$1</span>"],
262 [$type_enum_xml, "<span class=\"enum\">\$1</span>"],
263 [$type_struct_xml, "<span class=\"struct\">\$1</span>"],
264 [$type_typedef_xml, "<span class=\"typedef\">\$1</span>"],
265 [$type_union_xml, "<span class=\"union\">\$1</span>"],
266 [$type_env, "<span class=\"env\">\$1</span>"],
267 [$type_param, "<span class=\"param\">\$1</span>]"],
268 [$type_member_xml, "<span class=\"literal\"><span class=\"struct\">\$1</span>\$2<span class=\"member\">\$3</span></span>"],
269 [$type_fallback_xml, "<span class=\"struct\">\$1</span>"]
271 my $blankline_html5 = $local_lt . "br /" . $local_gt;
273 # XML, docbook format
274 my @highlights_xml = (
275 ["([^=])\\\"([^\\\"<]+)\\\"", "\$1<quote>\$2</quote>"],
276 [$type_constant, "<constant>\$1</constant>"],
277 [$type_constant2, "<constant>\$1</constant>"],
278 [$type_enum_xml, "<type>\$1</type>"],
279 [$type_struct_xml, "<structname>\$1</structname>"],
280 [$type_typedef_xml, "<type>\$1</type>"],
281 [$type_union_xml, "<structname>\$1</structname>"],
282 [$type_param, "<parameter>\$1</parameter>"],
283 [$type_func, "<function>\$1</function>"],
284 [$type_env, "<envar>\$1</envar>"],
285 [$type_member_xml, "<literal><structname>\$1</structname>\$2<structfield>\$3</structfield></literal>"],
286 [$type_fallback_xml, "<structname>\$1</structname>"]
288 my $blankline_xml = $local_lt . "/para" . $local_gt . $local_lt . "para" . $local_gt . "\n";
290 # gnome, docbook format
291 my @highlights_gnome = (
292 [$type_constant, "<replaceable class=\"option\">\$1</replaceable>"],
293 [$type_constant2, "<replaceable class=\"option\">\$1</replaceable>"],
294 [$type_func, "<function>\$1</function>"],
295 [$type_enum, "<type>\$1</type>"],
296 [$type_struct, "<structname>\$1</structname>"],
297 [$type_typedef, "<type>\$1</type>"],
298 [$type_union, "<structname>\$1</structname>"],
299 [$type_env, "<envar>\$1</envar>"],
300 [$type_param, "<parameter>\$1</parameter>" ],
301 [$type_member, "<literal><structname>\$1</structname>\$2<structfield>\$3</structfield></literal>"],
302 [$type_fallback, "<structname>\$1</structname>"]
304 my $blankline_gnome = "</para><para>\n";
306 # these are pretty rough
307 my @highlights_man = (
308 [$type_constant, "\$1"],
309 [$type_constant2, "\$1"],
310 [$type_func, "\\\\fB\$1\\\\fP"],
311 [$type_enum, "\\\\fI\$1\\\\fP"],
312 [$type_struct, "\\\\fI\$1\\\\fP"],
313 [$type_typedef, "\\\\fI\$1\\\\fP"],
314 [$type_union, "\\\\fI\$1\\\\fP"],
315 [$type_param, "\\\\fI\$1\\\\fP"],
316 [$type_member, "\\\\fI\$1\$2\$3\\\\fP"],
317 [$type_fallback, "\\\\fI\$1\\\\fP"]
319 my $blankline_man = "";
322 my @highlights_text = (
323 [$type_constant, "\$1"],
324 [$type_constant2, "\$1"],
327 [$type_struct, "\$1"],
328 [$type_typedef, "\$1"],
329 [$type_union, "\$1"],
330 [$type_param, "\$1"],
331 [$type_member, "\$1\$2\$3"],
332 [$type_fallback, "\$1"]
334 my $blankline_text = "";
337 my @highlights_rst = (
338 [$type_constant, "``\$1``"],
339 [$type_constant2, "``\$1``"],
340 # Note: need to escape () to avoid func matching later
341 [$type_member_func, "\\:c\\:type\\:`\$1\$2\$3\\\\(\\\\) <\$1>`"],
342 [$type_member, "\\:c\\:type\\:`\$1\$2\$3 <\$1>`"],
343 [$type_fp_param, "**\$1\\\\(\\\\)**"],
344 [$type_func, "\\:c\\:func\\:`\$1()`"],
345 [$type_enum, "\\:c\\:type\\:`\$1 <\$2>`"],
346 [$type_struct, "\\:c\\:type\\:`\$1 <\$2>`"],
347 [$type_typedef, "\\:c\\:type\\:`\$1 <\$2>`"],
348 [$type_union, "\\:c\\:type\\:`\$1 <\$2>`"],
349 # in rst this can refer to any type
350 [$type_fallback, "\\:c\\:type\\:`\$1`"],
351 [$type_param, "**\$1**"]
353 my $blankline_rst = "\n";
356 my @highlights_list = (
357 [$type_constant, "\$1"],
358 [$type_constant2, "\$1"],
361 [$type_struct, "\$1"],
362 [$type_typedef, "\$1"],
363 [$type_union, "\$1"],
364 [$type_param, "\$1"],
365 [$type_member, "\$1"],
366 [$type_fallback, "\$1"]
368 my $blankline_list = "";
376 my $dohighlight = "";
379 my $output_mode = "man";
380 my $output_preformatted = 0;
381 my $no_doc_sections = 0;
382 my $enable_lineno = 0;
383 my @highlights = @highlights_man;
384 my $blankline = $blankline_man;
385 my $modulename = "Kernel API";
388 OUTPUT_ALL
=> 0, # output all symbols and doc sections
389 OUTPUT_INCLUDE
=> 1, # output only specified symbols
390 OUTPUT_EXCLUDE
=> 2, # output everything except specified symbols
391 OUTPUT_EXPORTED
=> 3, # output exported symbols
392 OUTPUT_INTERNAL
=> 4, # output non-exported symbols
394 my $output_selection = OUTPUT_ALL
;
395 my $show_not_found = 0;
397 my @export_file_list;
400 if (defined($ENV{'KBUILD_BUILD_TIMESTAMP'}) &&
401 (my $seconds = `date -d"${ENV{'KBUILD_BUILD_TIMESTAMP'}}" +%s`) ne '') {
402 @build_time = gmtime($seconds);
404 @build_time = localtime;
407 my $man_date = ('January', 'February', 'March', 'April', 'May', 'June',
408 'July', 'August', 'September', 'October',
409 'November', 'December')[$build_time[4]] .
410 " " . ($build_time[5]+1900);
412 # Essentially these are globals.
413 # They probably want to be tidied up, made more localised or something.
414 # CAVEAT EMPTOR! Some of the others I localised may not want to be, which
415 # could cause "use of undefined value" or other bugs.
416 my ($function, %function_table, %parametertypes, $declaration_purpose);
417 my $declaration_start_line;
418 my ($type, $declaration_name, $return_type);
419 my ($newsection, $newcontents, $prototype, $brcount, %source_map);
421 if (defined($ENV{'KBUILD_VERBOSE'})) {
422 $verbose = "$ENV{'KBUILD_VERBOSE'}";
425 # Generated docbook code is inserted in a template at a point where
426 # docbook v3.1 requires a non-zero sequence of RefEntry's; see:
427 # http://www.oasis-open.org/docbook/documentation/reference/html/refentry.html
428 # We keep track of number of generated entries and generate a dummy
429 # if needs be to ensure the expanded template can be postprocessed
431 my $section_counter = 0;
437 STATE_NORMAL
=> 0, # normal code
438 STATE_NAME
=> 1, # looking for function name
439 STATE_FIELD
=> 2, # scanning field start
440 STATE_PROTO
=> 3, # scanning prototype
441 STATE_DOCBLOCK
=> 4, # documentation block
442 STATE_INLINE
=> 5, # gathering documentation outside main block
447 # Inline documentation state
449 STATE_INLINE_NA
=> 0, # not applicable ($state != STATE_INLINE)
450 STATE_INLINE_NAME
=> 1, # looking for member name (@foo:)
451 STATE_INLINE_TEXT
=> 2, # looking for member documentation
452 STATE_INLINE_END
=> 3, # done
453 STATE_INLINE_ERROR
=> 4, # error - Comment without header was found.
454 # Spit a warning as it's not
455 # proper kernel-doc and ignore the rest.
457 my $inline_doc_state;
459 #declaration types: can be
460 # 'function', 'struct', 'union', 'enum', 'typedef'
463 my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
465 my $doc_com = '\s*\*\s*';
466 my $doc_com_body = '\s*\* ?';
467 my $doc_decl = $doc_com . '(\w+)';
468 # @params and a strictly limited set of supported section names
469 my $doc_sect = $doc_com .
470 '\s*(\@[.\w]+|\@\.\.\.|description|context|returns?|notes?|examples?)\s*:(.*)';
471 my $doc_content = $doc_com_body . '(.*)';
472 my $doc_block = $doc_com . 'DOC:\s*(.*)?';
473 my $doc_inline_start = '^\s*/\*\*\s*$';
474 my $doc_inline_sect = '\s*\*\s*(@[\w\s]+):(.*)';
475 my $doc_inline_end = '^\s*\*/\s*$';
476 my $doc_inline_oneline = '^\s*/\*\*\s*(@[\w\s]+):\s*(.*)\s*\*/\s*$';
477 my $export_symbol = '^\s*EXPORT_SYMBOL(_GPL)?\s*\(\s*(\w+)\s*\)\s*;';
480 my %parameterdesc_start_lines;
484 my %section_start_lines;
489 my $new_start_line = 0;
491 # the canonical section names. see also $doc_sect above.
492 my $section_default = "Description"; # default section
493 my $section_intro = "Introduction";
494 my $section = $section_default;
495 my $section_context = "Context";
496 my $section_return = "Return";
498 my $undescribed = "-- undescribed --";
502 while ($ARGV[0] =~ m/^-(.*)/) {
503 my $cmd = shift @ARGV;
504 if ($cmd eq "-html") {
505 $output_mode = "html";
506 @highlights = @highlights_html;
507 $blankline = $blankline_html;
508 } elsif ($cmd eq "-html5") {
509 $output_mode = "html5";
510 @highlights = @highlights_html5;
511 $blankline = $blankline_html5;
512 } elsif ($cmd eq "-man") {
513 $output_mode = "man";
514 @highlights = @highlights_man;
515 $blankline = $blankline_man;
516 } elsif ($cmd eq "-text") {
517 $output_mode = "text";
518 @highlights = @highlights_text;
519 $blankline = $blankline_text;
520 } elsif ($cmd eq "-rst") {
521 $output_mode = "rst";
522 @highlights = @highlights_rst;
523 $blankline = $blankline_rst;
524 } elsif ($cmd eq "-docbook") {
525 $output_mode = "xml";
526 @highlights = @highlights_xml;
527 $blankline = $blankline_xml;
528 } elsif ($cmd eq "-list") {
529 $output_mode = "list";
530 @highlights = @highlights_list;
531 $blankline = $blankline_list;
532 } elsif ($cmd eq "-gnome") {
533 $output_mode = "gnome";
534 @highlights = @highlights_gnome;
535 $blankline = $blankline_gnome;
536 } elsif ($cmd eq "-none") {
537 $output_mode = "none";
538 } elsif ($cmd eq "-module") { # not needed for XML, inherits from calling document
539 $modulename = shift @ARGV;
540 } elsif ($cmd eq "-function") { # to only output specific functions
541 $output_selection = OUTPUT_INCLUDE
;
542 $function = shift @ARGV;
543 $function_table{$function} = 1;
544 } elsif ($cmd eq "-nofunction") { # output all except specific functions
545 $output_selection = OUTPUT_EXCLUDE
;
546 $function = shift @ARGV;
547 $function_table{$function} = 1;
548 } elsif ($cmd eq "-export") { # only exported symbols
549 $output_selection = OUTPUT_EXPORTED
;
550 %function_table = ();
551 } elsif ($cmd eq "-internal") { # only non-exported symbols
552 $output_selection = OUTPUT_INTERNAL
;
553 %function_table = ();
554 } elsif ($cmd eq "-export-file") {
555 my $file = shift @ARGV;
556 push(@export_file_list, $file);
557 } elsif ($cmd eq "-v") {
559 } elsif (($cmd eq "-h") || ($cmd eq "--help")) {
561 } elsif ($cmd eq '-no-doc-sections') {
562 $no_doc_sections = 1;
563 } elsif ($cmd eq '-enable-lineno') {
565 } elsif ($cmd eq '-show-not-found') {
570 # continue execution near EOF;
572 # get kernel version from env
573 sub get_kernel_version
() {
574 my $version = 'unknown kernel version';
576 if (defined($ENV{'KERNELVERSION'})) {
577 $version = $ENV{'KERNELVERSION'};
585 if ($enable_lineno && defined($lineno)) {
586 print "#define LINENO " . $lineno . "\n";
590 # dumps section contents to arrays/hashes intended for that purpose.
595 my $contents = join "\n", @_;
597 if ($name =~ m/$type_param/) {
599 $parameterdescs{$name} = $contents;
600 $sectcheck = $sectcheck . $name . " ";
601 $parameterdesc_start_lines{$name} = $new_start_line;
603 } elsif ($name eq "@\.\.\.") {
605 $parameterdescs{$name} = $contents;
606 $sectcheck = $sectcheck . $name . " ";
607 $parameterdesc_start_lines{$name} = $new_start_line;
610 if (defined($sections{$name}) && ($sections{$name} ne "")) {
611 # Only warn on user specified duplicate section names.
612 if ($name ne $section_default) {
613 print STDERR
"${file}:$.: warning: duplicate section name '$name'\n";
616 $sections{$name} .= $contents;
618 $sections{$name} = $contents;
619 push @sectionlist, $name;
620 $section_start_lines{$name} = $new_start_line;
627 # dump DOC: section after checking that it should go out
629 sub dump_doc_section
{
632 my $contents = join "\n", @_;
634 if ($no_doc_sections) {
638 if (($output_selection == OUTPUT_ALL
) ||
639 ($output_selection == OUTPUT_INCLUDE
&&
640 defined($function_table{$name})) ||
641 ($output_selection == OUTPUT_EXCLUDE
&&
642 !defined($function_table{$name})))
644 dump_section
($file, $name, $contents);
645 output_blockhead
({'sectionlist' => \
@sectionlist,
646 'sections' => \
%sections,
647 'module' => $modulename,
648 'content-only' => ($output_selection != OUTPUT_ALL
), });
655 # parameterdescs, a hash.
656 # function => "function name"
657 # parameterlist => @list of parameters
658 # parameterdescs => %parameter descriptions
659 # sectionlist => @list of sections
660 # sections => %section descriptions
663 sub output_highlight
{
664 my $contents = join "\n",@_;
668 # if (!defined $contents) {
670 # confess "output_highlight got called with no args?\n";
673 if ($output_mode eq "html" || $output_mode eq "html5" ||
674 $output_mode eq "xml") {
675 $contents = local_unescape
($contents);
676 # convert data read & converted thru xml_escape() into &xyz; format:
677 $contents =~ s/\\\\\\/\&/g;
679 # print STDERR "contents b4:$contents\n";
682 # print STDERR "contents af:$contents\n";
684 # strip whitespaces when generating html5
685 if ($output_mode eq "html5") {
686 $contents =~ s/^\s+//;
687 $contents =~ s/\s+$//;
689 foreach $line (split "\n", $contents) {
690 if (! $output_preformatted) {
694 if (! $output_preformatted) {
695 print $lineprefix, local_unescape
($blankline);
698 $line =~ s/\\\\\\/\&/g;
699 if ($output_mode eq "man" && substr($line, 0, 1) eq ".") {
702 print $lineprefix, $line;
709 # output sections in html
710 sub output_section_html
(%) {
714 foreach $section (@
{$args{'sectionlist'}}) {
715 print "<h3>$section</h3>\n";
716 print "<blockquote>\n";
717 output_highlight
($args{'sections'}{$section});
718 print "</blockquote>\n";
722 # output enum in html
723 sub output_enum_html
(%) {
727 print "<h2>enum " . $args{'enum'} . "</h2>\n";
729 print "<b>enum " . $args{'enum'} . "</b> {<br>\n";
731 foreach $parameter (@
{$args{'parameterlist'}}) {
732 print " <b>" . $parameter . "</b>";
733 if ($count != $#{$args{'parameterlist'}}) {
741 print "<h3>Constants</h3>\n";
743 foreach $parameter (@
{$args{'parameterlist'}}) {
744 print "<dt><b>" . $parameter . "</b>\n";
746 output_highlight
($args{'parameterdescs'}{$parameter});
749 output_section_html
(@_);
753 # output typedef in html
754 sub output_typedef_html
(%) {
758 print "<h2>typedef " . $args{'typedef'} . "</h2>\n";
760 print "<b>typedef " . $args{'typedef'} . "</b>\n";
761 output_section_html
(@_);
765 # output struct in html
766 sub output_struct_html
(%) {
770 print "<h2>" . $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "</h2>\n";
771 print "<b>" . $args{'type'} . " " . $args{'struct'} . "</b> {<br>\n";
772 foreach $parameter (@
{$args{'parameterlist'}}) {
773 if ($parameter =~ /^#/) {
774 print "$parameter<br>\n";
777 my $parameter_name = $parameter;
778 $parameter_name =~ s/\[.*//;
780 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
781 $type = $args{'parametertypes'}{$parameter};
782 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
783 # pointer-to-function
784 print " <i>$1</i><b>$parameter</b>) <i>($2)</i>;<br>\n";
785 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
787 print " <i>$1</i> <b>$parameter</b>$2;<br>\n";
789 print " <i>$type</i> <b>$parameter</b>;<br>\n";
794 print "<h3>Members</h3>\n";
796 foreach $parameter (@
{$args{'parameterlist'}}) {
797 ($parameter =~ /^#/) && next;
799 my $parameter_name = $parameter;
800 $parameter_name =~ s/\[.*//;
802 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
803 print "<dt><b>" . $parameter . "</b>\n";
805 output_highlight
($args{'parameterdescs'}{$parameter_name});
808 output_section_html
(@_);
812 # output function in html
813 sub output_function_html
(%) {
815 my ($parameter, $section);
818 print "<h2>" . $args{'function'} . " - " . $args{'purpose'} . "</h2>\n";
819 print "<i>" . $args{'functiontype'} . "</i>\n";
820 print "<b>" . $args{'function'} . "</b>\n";
823 foreach $parameter (@
{$args{'parameterlist'}}) {
824 $type = $args{'parametertypes'}{$parameter};
825 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
826 # pointer-to-function
827 print "<i>$1</i><b>$parameter</b>) <i>($2)</i>";
829 print "<i>" . $type . "</i> <b>" . $parameter . "</b>";
831 if ($count != $#{$args{'parameterlist'}}) {
838 print "<h3>Arguments</h3>\n";
840 foreach $parameter (@
{$args{'parameterlist'}}) {
841 my $parameter_name = $parameter;
842 $parameter_name =~ s/\[.*//;
844 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
845 print "<dt><b>" . $parameter . "</b>\n";
847 output_highlight
($args{'parameterdescs'}{$parameter_name});
850 output_section_html
(@_);
854 # output DOC: block header in html
855 sub output_blockhead_html
(%) {
857 my ($parameter, $section);
860 foreach $section (@
{$args{'sectionlist'}}) {
861 print "<h3>$section</h3>\n";
863 output_highlight
($args{'sections'}{$section});
869 # output sections in html5
870 sub output_section_html5
(%) {
874 foreach $section (@
{$args{'sectionlist'}}) {
876 print "<h1>$section</h1>\n";
878 output_highlight
($args{'sections'}{$section});
880 print "</section>\n";
884 # output enum in html5
885 sub output_enum_html5
(%) {
891 $html5id = $args{'enum'};
892 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
893 print "<article class=\"enum\" id=\"enum:". $html5id . "\">";
894 print "<h1>enum " . $args{'enum'} . "</h1>\n";
895 print "<ol class=\"code\">\n";
897 print "<span class=\"keyword\">enum</span> ";
898 print "<span class=\"identifier\">" . $args{'enum'} . "</span> {";
901 foreach $parameter (@
{$args{'parameterlist'}}) {
902 print "<li class=\"indent\">";
903 print "<span class=\"param\">" . $parameter . "</span>";
904 if ($count != $#{$args{'parameterlist'}}) {
910 print "<li>};</li>\n";
914 print "<h1>Constants</h1>\n";
916 foreach $parameter (@
{$args{'parameterlist'}}) {
917 print "<dt>" . $parameter . "</dt>\n";
919 output_highlight
($args{'parameterdescs'}{$parameter});
923 print "</section>\n";
924 output_section_html5
(@_);
925 print "</article>\n";
928 # output typedef in html5
929 sub output_typedef_html5
(%) {
935 $html5id = $args{'typedef'};
936 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
937 print "<article class=\"typedef\" id=\"typedef:" . $html5id . "\">\n";
938 print "<h1>typedef " . $args{'typedef'} . "</h1>\n";
940 print "<ol class=\"code\">\n";
942 print "<span class=\"keyword\">typedef</span> ";
943 print "<span class=\"identifier\">" . $args{'typedef'} . "</span>";
946 output_section_html5
(@_);
947 print "</article>\n";
950 # output struct in html5
951 sub output_struct_html5
(%) {
956 $html5id = $args{'struct'};
957 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
958 print "<article class=\"struct\" id=\"struct:" . $html5id . "\">\n";
960 print "<h1>" . $args{'type'} . " " . $args{'struct'} . "</h1>";
961 print "<h2>". $args{'purpose'} . "</h2>\n";
963 print "<ol class=\"code\">\n";
965 print "<span class=\"type\">" . $args{'type'} . "</span> ";
966 print "<span class=\"identifier\">" . $args{'struct'} . "</span> {";
968 foreach $parameter (@
{$args{'parameterlist'}}) {
969 print "<li class=\"indent\">";
970 if ($parameter =~ /^#/) {
971 print "<span class=\"param\">" . $parameter ."</span>\n";
975 my $parameter_name = $parameter;
976 $parameter_name =~ s/\[.*//;
978 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
979 $type = $args{'parametertypes'}{$parameter};
980 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
981 # pointer-to-function
982 print "<span class=\"type\">$1</span> ";
983 print "<span class=\"param\">$parameter</span>";
984 print "<span class=\"type\">)</span> ";
985 print "(<span class=\"args\">$2</span>);";
986 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
988 print "<span class=\"type\">$1</span> ";
989 print "<span class=\"param\">$parameter</span>";
990 print "<span class=\"bits\">$2</span>;";
992 print "<span class=\"type\">$type</span> ";
993 print "<span class=\"param\">$parameter</span>;";
997 print "<li>};</li>\n";
1000 print "<section>\n";
1001 print "<h1>Members</h1>\n";
1003 foreach $parameter (@
{$args{'parameterlist'}}) {
1004 ($parameter =~ /^#/) && next;
1006 my $parameter_name = $parameter;
1007 $parameter_name =~ s/\[.*//;
1009 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1010 print "<dt>" . $parameter . "</dt>\n";
1012 output_highlight
($args{'parameterdescs'}{$parameter_name});
1016 print "</section>\n";
1017 output_section_html5
(@_);
1018 print "</article>\n";
1021 # output function in html5
1022 sub output_function_html5
(%) {
1023 my %args = %{$_[0]};
1024 my ($parameter, $section);
1028 $html5id = $args{'function'};
1029 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
1030 print "<article class=\"function\" id=\"func:". $html5id . "\">\n";
1032 print "<h1>" . $args{'function'} . "</h1>";
1033 print "<h2>" . $args{'purpose'} . "</h2>\n";
1034 print "</hgroup>\n";
1035 print "<ol class=\"code\">\n";
1037 print "<span class=\"type\">" . $args{'functiontype'} . "</span> ";
1038 print "<span class=\"identifier\">" . $args{'function'} . "</span> (";
1041 foreach $parameter (@
{$args{'parameterlist'}}) {
1042 print "<li class=\"indent\">";
1043 $type = $args{'parametertypes'}{$parameter};
1044 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1045 # pointer-to-function
1046 print "<span class=\"type\">$1</span> ";
1047 print "<span class=\"param\">$parameter</span>";
1048 print "<span class=\"type\">)</span> ";
1049 print "(<span class=\"args\">$2</span>)";
1051 print "<span class=\"type\">$type</span> ";
1052 print "<span class=\"param\">$parameter</span>";
1054 if ($count != $#{$args{'parameterlist'}}) {
1060 print "<li>)</li>\n";
1063 print "<section>\n";
1064 print "<h1>Arguments</h1>\n";
1067 foreach $parameter (@
{$args{'parameterlist'}}) {
1068 my $parameter_name = $parameter;
1069 $parameter_name =~ s/\[.*//;
1071 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1072 print "<dt>" . $parameter . "</dt>\n";
1074 output_highlight
($args{'parameterdescs'}{$parameter_name});
1078 print "</section>\n";
1079 output_section_html5
(@_);
1080 print "</article>\n";
1083 # output DOC: block header in html5
1084 sub output_blockhead_html5
(%) {
1085 my %args = %{$_[0]};
1086 my ($parameter, $section);
1090 foreach $section (@
{$args{'sectionlist'}}) {
1091 $html5id = $section;
1092 $html5id =~ s/[^a-zA-Z0-9\-]+/_/g;
1093 print "<article class=\"doc\" id=\"doc:". $html5id . "\">\n";
1094 print "<h1>$section</h1>\n";
1096 output_highlight
($args{'sections'}{$section});
1099 print "</article>\n";
1102 sub output_section_xml
(%) {
1103 my %args = %{$_[0]};
1105 # print out each section
1107 foreach $section (@
{$args{'sectionlist'}}) {
1108 print "<refsect1>\n";
1109 print "<title>$section</title>\n";
1110 if ($section =~ m/EXAMPLE/i) {
1111 print "<informalexample><programlisting>\n";
1112 $output_preformatted = 1;
1116 output_highlight
($args{'sections'}{$section});
1117 $output_preformatted = 0;
1118 if ($section =~ m/EXAMPLE/i) {
1119 print "</programlisting></informalexample>\n";
1123 print "</refsect1>\n";
1127 # output function in XML DocBook
1128 sub output_function_xml
(%) {
1129 my %args = %{$_[0]};
1130 my ($parameter, $section);
1134 $id = "API-" . $args{'function'};
1135 $id =~ s/[^A-Za-z0-9]/-/g;
1137 print "<refentry id=\"$id\">\n";
1138 print "<refentryinfo>\n";
1139 print " <title>LINUX</title>\n";
1140 print " <productname>Kernel Hackers Manual</productname>\n";
1141 print " <date>$man_date</date>\n";
1142 print "</refentryinfo>\n";
1143 print "<refmeta>\n";
1144 print " <refentrytitle><phrase>" . $args{'function'} . "</phrase></refentrytitle>\n";
1145 print " <manvolnum>9</manvolnum>\n";
1146 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1147 print "</refmeta>\n";
1148 print "<refnamediv>\n";
1149 print " <refname>" . $args{'function'} . "</refname>\n";
1150 print " <refpurpose>\n";
1152 output_highlight
($args{'purpose'});
1153 print " </refpurpose>\n";
1154 print "</refnamediv>\n";
1156 print "<refsynopsisdiv>\n";
1157 print " <title>Synopsis</title>\n";
1158 print " <funcsynopsis><funcprototype>\n";
1159 print " <funcdef>" . $args{'functiontype'} . " ";
1160 print "<function>" . $args{'function'} . " </function></funcdef>\n";
1163 if ($#{$args{'parameterlist'}} >= 0) {
1164 foreach $parameter (@
{$args{'parameterlist'}}) {
1165 $type = $args{'parametertypes'}{$parameter};
1166 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1167 # pointer-to-function
1168 print " <paramdef>$1<parameter>$parameter</parameter>)\n";
1169 print " <funcparams>$2</funcparams></paramdef>\n";
1171 print " <paramdef>" . $type;
1172 print " <parameter>$parameter</parameter></paramdef>\n";
1178 print " </funcprototype></funcsynopsis>\n";
1179 print "</refsynopsisdiv>\n";
1182 print "<refsect1>\n <title>Arguments</title>\n";
1183 if ($#{$args{'parameterlist'}} >= 0) {
1184 print " <variablelist>\n";
1185 foreach $parameter (@
{$args{'parameterlist'}}) {
1186 my $parameter_name = $parameter;
1187 $parameter_name =~ s/\[.*//;
1188 $type = $args{'parametertypes'}{$parameter};
1190 print " <varlistentry>\n <term><parameter>$type $parameter</parameter></term>\n";
1191 print " <listitem>\n <para>\n";
1193 output_highlight
($args{'parameterdescs'}{$parameter_name});
1194 print " </para>\n </listitem>\n </varlistentry>\n";
1196 print " </variablelist>\n";
1198 print " <para>\n None\n </para>\n";
1200 print "</refsect1>\n";
1202 output_section_xml
(@_);
1203 print "</refentry>\n\n";
1206 # output struct in XML DocBook
1207 sub output_struct_xml
(%) {
1208 my %args = %{$_[0]};
1209 my ($parameter, $section);
1212 $id = "API-struct-" . $args{'struct'};
1213 $id =~ s/[^A-Za-z0-9]/-/g;
1215 print "<refentry id=\"$id\">\n";
1216 print "<refentryinfo>\n";
1217 print " <title>LINUX</title>\n";
1218 print " <productname>Kernel Hackers Manual</productname>\n";
1219 print " <date>$man_date</date>\n";
1220 print "</refentryinfo>\n";
1221 print "<refmeta>\n";
1222 print " <refentrytitle><phrase>" . $args{'type'} . " " . $args{'struct'} . "</phrase></refentrytitle>\n";
1223 print " <manvolnum>9</manvolnum>\n";
1224 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1225 print "</refmeta>\n";
1226 print "<refnamediv>\n";
1227 print " <refname>" . $args{'type'} . " " . $args{'struct'} . "</refname>\n";
1228 print " <refpurpose>\n";
1230 output_highlight
($args{'purpose'});
1231 print " </refpurpose>\n";
1232 print "</refnamediv>\n";
1234 print "<refsynopsisdiv>\n";
1235 print " <title>Synopsis</title>\n";
1236 print " <programlisting>\n";
1237 print $args{'type'} . " " . $args{'struct'} . " {\n";
1238 foreach $parameter (@
{$args{'parameterlist'}}) {
1239 if ($parameter =~ /^#/) {
1240 my $prm = $parameter;
1241 # convert data read & converted thru xml_escape() into &xyz; format:
1242 # This allows us to have #define macros interspersed in a struct.
1243 $prm =~ s/\\\\\\/\&/g;
1248 my $parameter_name = $parameter;
1249 $parameter_name =~ s/\[.*//;
1251 defined($args{'parameterdescs'}{$parameter_name}) || next;
1252 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1253 $type = $args{'parametertypes'}{$parameter};
1254 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1255 # pointer-to-function
1256 print " $1 $parameter) ($2);\n";
1257 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1259 print " $1 $parameter$2;\n";
1261 print " " . $type . " " . $parameter . ";\n";
1265 print " </programlisting>\n";
1266 print "</refsynopsisdiv>\n";
1268 print " <refsect1>\n";
1269 print " <title>Members</title>\n";
1271 if ($#{$args{'parameterlist'}} >= 0) {
1272 print " <variablelist>\n";
1273 foreach $parameter (@
{$args{'parameterlist'}}) {
1274 ($parameter =~ /^#/) && next;
1276 my $parameter_name = $parameter;
1277 $parameter_name =~ s/\[.*//;
1279 defined($args{'parameterdescs'}{$parameter_name}) || next;
1280 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1281 $type = $args{'parametertypes'}{$parameter};
1282 print " <varlistentry>";
1283 print " <term><literal>$type $parameter</literal></term>\n";
1284 print " <listitem><para>\n";
1285 output_highlight
($args{'parameterdescs'}{$parameter_name});
1286 print " </para></listitem>\n";
1287 print " </varlistentry>\n";
1289 print " </variablelist>\n";
1291 print " <para>\n None\n </para>\n";
1293 print " </refsect1>\n";
1295 output_section_xml
(@_);
1297 print "</refentry>\n\n";
1300 # output enum in XML DocBook
1301 sub output_enum_xml
(%) {
1302 my %args = %{$_[0]};
1303 my ($parameter, $section);
1307 $id = "API-enum-" . $args{'enum'};
1308 $id =~ s/[^A-Za-z0-9]/-/g;
1310 print "<refentry id=\"$id\">\n";
1311 print "<refentryinfo>\n";
1312 print " <title>LINUX</title>\n";
1313 print " <productname>Kernel Hackers Manual</productname>\n";
1314 print " <date>$man_date</date>\n";
1315 print "</refentryinfo>\n";
1316 print "<refmeta>\n";
1317 print " <refentrytitle><phrase>enum " . $args{'enum'} . "</phrase></refentrytitle>\n";
1318 print " <manvolnum>9</manvolnum>\n";
1319 print " <refmiscinfo class=\"version\">" . $kernelversion . "</refmiscinfo>\n";
1320 print "</refmeta>\n";
1321 print "<refnamediv>\n";
1322 print " <refname>enum " . $args{'enum'} . "</refname>\n";
1323 print " <refpurpose>\n";
1325 output_highlight
($args{'purpose'});
1326 print " </refpurpose>\n";
1327 print "</refnamediv>\n";
1329 print "<refsynopsisdiv>\n";
1330 print " <title>Synopsis</title>\n";
1331 print " <programlisting>\n";
1332 print "enum " . $args{'enum'} . " {\n";
1334 foreach $parameter (@
{$args{'parameterlist'}}) {
1335 print " $parameter";
1336 if ($count != $#{$args{'parameterlist'}}) {
1343 print " </programlisting>\n";
1344 print "</refsynopsisdiv>\n";
1346 print "<refsect1>\n";
1347 print " <title>Constants</title>\n";
1348 print " <variablelist>\n";
1349 foreach $parameter (@
{$args{'parameterlist'}}) {
1350 my $parameter_name = $parameter;
1351 $parameter_name =~ s/\[.*//;
1353 print " <varlistentry>";
1354 print " <term>$parameter</term>\n";
1355 print " <listitem><para>\n";
1356 output_highlight
($args{'parameterdescs'}{$parameter_name});
1357 print " </para></listitem>\n";
1358 print " </varlistentry>\n";
1360 print " </variablelist>\n";
1361 print "</refsect1>\n";
1363 output_section_xml
(@_);
1365 print "</refentry>\n\n";
1368 # output typedef in XML DocBook
1369 sub output_typedef_xml
(%) {
1370 my %args = %{$_[0]};
1371 my ($parameter, $section);
1374 $id = "API-typedef-" . $args{'typedef'};
1375 $id =~ s/[^A-Za-z0-9]/-/g;
1377 print "<refentry id=\"$id\">\n";
1378 print "<refentryinfo>\n";
1379 print " <title>LINUX</title>\n";
1380 print " <productname>Kernel Hackers Manual</productname>\n";
1381 print " <date>$man_date</date>\n";
1382 print "</refentryinfo>\n";
1383 print "<refmeta>\n";
1384 print " <refentrytitle><phrase>typedef " . $args{'typedef'} . "</phrase></refentrytitle>\n";
1385 print " <manvolnum>9</manvolnum>\n";
1386 print "</refmeta>\n";
1387 print "<refnamediv>\n";
1388 print " <refname>typedef " . $args{'typedef'} . "</refname>\n";
1389 print " <refpurpose>\n";
1391 output_highlight
($args{'purpose'});
1392 print " </refpurpose>\n";
1393 print "</refnamediv>\n";
1395 print "<refsynopsisdiv>\n";
1396 print " <title>Synopsis</title>\n";
1397 print " <synopsis>typedef " . $args{'typedef'} . ";</synopsis>\n";
1398 print "</refsynopsisdiv>\n";
1400 output_section_xml
(@_);
1402 print "</refentry>\n\n";
1405 # output in XML DocBook
1406 sub output_blockhead_xml
(%) {
1407 my %args = %{$_[0]};
1408 my ($parameter, $section);
1411 my $id = $args{'module'};
1412 $id =~ s/[^A-Za-z0-9]/-/g;
1414 # print out each section
1416 foreach $section (@
{$args{'sectionlist'}}) {
1417 if (!$args{'content-only'}) {
1418 print "<refsect1>\n <title>$section</title>\n";
1420 if ($section =~ m/EXAMPLE/i) {
1421 print "<example><para>\n";
1422 $output_preformatted = 1;
1426 output_highlight
($args{'sections'}{$section});
1427 $output_preformatted = 0;
1428 if ($section =~ m/EXAMPLE/i) {
1429 print "</para></example>\n";
1433 if (!$args{'content-only'}) {
1434 print "\n</refsect1>\n";
1441 # output in XML DocBook
1442 sub output_function_gnome
{
1443 my %args = %{$_[0]};
1444 my ($parameter, $section);
1448 $id = $args{'module'} . "-" . $args{'function'};
1449 $id =~ s/[^A-Za-z0-9]/-/g;
1452 print " <title id=\"$id\">" . $args{'function'} . "</title>\n";
1454 print " <funcsynopsis>\n";
1455 print " <funcdef>" . $args{'functiontype'} . " ";
1456 print "<function>" . $args{'function'} . " ";
1457 print "</function></funcdef>\n";
1460 if ($#{$args{'parameterlist'}} >= 0) {
1461 foreach $parameter (@
{$args{'parameterlist'}}) {
1462 $type = $args{'parametertypes'}{$parameter};
1463 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1464 # pointer-to-function
1465 print " <paramdef>$1 <parameter>$parameter</parameter>)\n";
1466 print " <funcparams>$2</funcparams></paramdef>\n";
1468 print " <paramdef>" . $type;
1469 print " <parameter>$parameter</parameter></paramdef>\n";
1475 print " </funcsynopsis>\n";
1476 if ($#{$args{'parameterlist'}} >= 0) {
1477 print " <informaltable pgwide=\"1\" frame=\"none\" role=\"params\">\n";
1478 print "<tgroup cols=\"2\">\n";
1479 print "<colspec colwidth=\"2*\">\n";
1480 print "<colspec colwidth=\"8*\">\n";
1482 foreach $parameter (@
{$args{'parameterlist'}}) {
1483 my $parameter_name = $parameter;
1484 $parameter_name =~ s/\[.*//;
1486 print " <row><entry align=\"right\"><parameter>$parameter</parameter></entry>\n";
1489 output_highlight
($args{'parameterdescs'}{$parameter_name});
1490 print " </entry></row>\n";
1492 print " </tbody></tgroup></informaltable>\n";
1494 print " <para>\n None\n </para>\n";
1497 # print out each section
1499 foreach $section (@
{$args{'sectionlist'}}) {
1500 print "<simplesect>\n <title>$section</title>\n";
1501 if ($section =~ m/EXAMPLE/i) {
1502 print "<example><programlisting>\n";
1503 $output_preformatted = 1;
1507 output_highlight
($args{'sections'}{$section});
1508 $output_preformatted = 0;
1510 if ($section =~ m/EXAMPLE/i) {
1511 print "</programlisting></example>\n";
1514 print " </simplesect>\n";
1517 print "</sect2>\n\n";
1521 # output function in man
1522 sub output_function_man
(%) {
1523 my %args = %{$_[0]};
1524 my ($parameter, $section);
1527 print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" LINUX\n";
1530 print $args{'function'} . " \\- " . $args{'purpose'} . "\n";
1532 print ".SH SYNOPSIS\n";
1533 if ($args{'functiontype'} ne "") {
1534 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n";
1536 print ".B \"" . $args{'function'} . "\n";
1541 foreach my $parameter (@
{$args{'parameterlist'}}) {
1542 if ($count == $#{$args{'parameterlist'}}) {
1545 $type = $args{'parametertypes'}{$parameter};
1546 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1547 # pointer-to-function
1548 print ".BI \"" . $parenth . $1 . "\" " . $parameter . " \") (" . $2 . ")" . $post . "\"\n";
1550 $type =~ s/([^\*])$/$1 /;
1551 print ".BI \"" . $parenth . $type . "\" " . $parameter . " \"" . $post . "\"\n";
1557 print ".SH ARGUMENTS\n";
1558 foreach $parameter (@
{$args{'parameterlist'}}) {
1559 my $parameter_name = $parameter;
1560 $parameter_name =~ s/\[.*//;
1562 print ".IP \"" . $parameter . "\" 12\n";
1563 output_highlight
($args{'parameterdescs'}{$parameter_name});
1565 foreach $section (@
{$args{'sectionlist'}}) {
1566 print ".SH \"", uc $section, "\"\n";
1567 output_highlight
($args{'sections'}{$section});
1572 # output enum in man
1573 sub output_enum_man
(%) {
1574 my %args = %{$_[0]};
1575 my ($parameter, $section);
1578 print ".TH \"$args{'module'}\" 9 \"enum $args{'enum'}\" \"$man_date\" \"API Manual\" LINUX\n";
1581 print "enum " . $args{'enum'} . " \\- " . $args{'purpose'} . "\n";
1583 print ".SH SYNOPSIS\n";
1584 print "enum " . $args{'enum'} . " {\n";
1586 foreach my $parameter (@
{$args{'parameterlist'}}) {
1587 print ".br\n.BI \" $parameter\"\n";
1588 if ($count == $#{$args{'parameterlist'}}) {
1598 print ".SH Constants\n";
1599 foreach $parameter (@
{$args{'parameterlist'}}) {
1600 my $parameter_name = $parameter;
1601 $parameter_name =~ s/\[.*//;
1603 print ".IP \"" . $parameter . "\" 12\n";
1604 output_highlight
($args{'parameterdescs'}{$parameter_name});
1606 foreach $section (@
{$args{'sectionlist'}}) {
1607 print ".SH \"$section\"\n";
1608 output_highlight
($args{'sections'}{$section});
1613 # output struct in man
1614 sub output_struct_man
(%) {
1615 my %args = %{$_[0]};
1616 my ($parameter, $section);
1618 print ".TH \"$args{'module'}\" 9 \"" . $args{'type'} . " " . $args{'struct'} . "\" \"$man_date\" \"API Manual\" LINUX\n";
1621 print $args{'type'} . " " . $args{'struct'} . " \\- " . $args{'purpose'} . "\n";
1623 print ".SH SYNOPSIS\n";
1624 print $args{'type'} . " " . $args{'struct'} . " {\n.br\n";
1626 foreach my $parameter (@
{$args{'parameterlist'}}) {
1627 if ($parameter =~ /^#/) {
1628 print ".BI \"$parameter\"\n.br\n";
1631 my $parameter_name = $parameter;
1632 $parameter_name =~ s/\[.*//;
1634 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1635 $type = $args{'parametertypes'}{$parameter};
1636 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1637 # pointer-to-function
1638 print ".BI \" " . $1 . "\" " . $parameter . " \") (" . $2 . ")" . "\"\n;\n";
1639 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1641 print ".BI \" " . $1 . "\ \" " . $parameter . $2 . " \"" . "\"\n;\n";
1643 $type =~ s/([^\*])$/$1 /;
1644 print ".BI \" " . $type . "\" " . $parameter . " \"" . "\"\n;\n";
1650 print ".SH Members\n";
1651 foreach $parameter (@
{$args{'parameterlist'}}) {
1652 ($parameter =~ /^#/) && next;
1654 my $parameter_name = $parameter;
1655 $parameter_name =~ s/\[.*//;
1657 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1658 print ".IP \"" . $parameter . "\" 12\n";
1659 output_highlight
($args{'parameterdescs'}{$parameter_name});
1661 foreach $section (@
{$args{'sectionlist'}}) {
1662 print ".SH \"$section\"\n";
1663 output_highlight
($args{'sections'}{$section});
1668 # output typedef in man
1669 sub output_typedef_man
(%) {
1670 my %args = %{$_[0]};
1671 my ($parameter, $section);
1673 print ".TH \"$args{'module'}\" 9 \"$args{'typedef'}\" \"$man_date\" \"API Manual\" LINUX\n";
1676 print "typedef " . $args{'typedef'} . " \\- " . $args{'purpose'} . "\n";
1678 foreach $section (@
{$args{'sectionlist'}}) {
1679 print ".SH \"$section\"\n";
1680 output_highlight
($args{'sections'}{$section});
1684 sub output_blockhead_man
(%) {
1685 my %args = %{$_[0]};
1686 my ($parameter, $section);
1689 print ".TH \"$args{'module'}\" 9 \"$args{'module'}\" \"$man_date\" \"API Manual\" LINUX\n";
1691 foreach $section (@
{$args{'sectionlist'}}) {
1692 print ".SH \"$section\"\n";
1693 output_highlight
($args{'sections'}{$section});
1699 sub output_function_text
(%) {
1700 my %args = %{$_[0]};
1701 my ($parameter, $section);
1705 print $args{'function'} . " - " . $args{'purpose'} . "\n";
1707 print "\nSynopsis:\n\n";
1708 if ($args{'functiontype'} ne "") {
1709 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
1711 $start = $args{'function'} . " (";
1716 foreach my $parameter (@
{$args{'parameterlist'}}) {
1717 $type = $args{'parametertypes'}{$parameter};
1718 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1719 # pointer-to-function
1720 print $1 . $parameter . ") (" . $2;
1722 print $type . " " . $parameter;
1724 if ($count != $#{$args{'parameterlist'}}) {
1727 print " " x
length($start);
1733 print "Arguments:\n\n";
1734 foreach $parameter (@
{$args{'parameterlist'}}) {
1735 my $parameter_name = $parameter;
1736 $parameter_name =~ s/\[.*//;
1738 print $parameter . "\n\t" . $args{'parameterdescs'}{$parameter_name} . "\n";
1740 output_section_text
(@_);
1743 #output sections in text
1744 sub output_section_text
(%) {
1745 my %args = %{$_[0]};
1749 foreach $section (@
{$args{'sectionlist'}}) {
1750 print "$section:\n\n";
1751 output_highlight
($args{'sections'}{$section});
1756 # output enum in text
1757 sub output_enum_text
(%) {
1758 my %args = %{$_[0]};
1763 print "enum " . $args{'enum'} . " - " . $args{'purpose'} . "\n\n";
1764 print "enum " . $args{'enum'} . " {\n";
1766 foreach $parameter (@
{$args{'parameterlist'}}) {
1767 print "\t$parameter";
1768 if ($count != $#{$args{'parameterlist'}}) {
1776 print "Constants:\n\n";
1777 foreach $parameter (@
{$args{'parameterlist'}}) {
1778 print "$parameter\n\t";
1779 print $args{'parameterdescs'}{$parameter} . "\n";
1782 output_section_text
(@_);
1785 # output typedef in text
1786 sub output_typedef_text
(%) {
1787 my %args = %{$_[0]};
1790 print "Typedef:\n\n";
1792 print "typedef " . $args{'typedef'} . " - " . $args{'purpose'} . "\n";
1793 output_section_text
(@_);
1796 # output struct as text
1797 sub output_struct_text
(%) {
1798 my %args = %{$_[0]};
1801 print $args{'type'} . " " . $args{'struct'} . " - " . $args{'purpose'} . "\n\n";
1802 print $args{'type'} . " " . $args{'struct'} . " {\n";
1803 foreach $parameter (@
{$args{'parameterlist'}}) {
1804 if ($parameter =~ /^#/) {
1805 print "$parameter\n";
1809 my $parameter_name = $parameter;
1810 $parameter_name =~ s/\[.*//;
1812 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1813 $type = $args{'parametertypes'}{$parameter};
1814 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1815 # pointer-to-function
1816 print "\t$1 $parameter) ($2);\n";
1817 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
1819 print "\t$1 $parameter$2;\n";
1821 print "\t" . $type . " " . $parameter . ";\n";
1826 print "Members:\n\n";
1827 foreach $parameter (@
{$args{'parameterlist'}}) {
1828 ($parameter =~ /^#/) && next;
1830 my $parameter_name = $parameter;
1831 $parameter_name =~ s/\[.*//;
1833 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
1834 print "$parameter\n\t";
1835 print $args{'parameterdescs'}{$parameter_name} . "\n";
1838 output_section_text
(@_);
1841 sub output_blockhead_text
(%) {
1842 my %args = %{$_[0]};
1843 my ($parameter, $section);
1845 foreach $section (@
{$args{'sectionlist'}}) {
1846 print " $section:\n";
1848 output_highlight
($args{'sections'}{$section});
1853 # output in restructured text
1857 # This could use some work; it's used to output the DOC: sections, and
1858 # starts by putting out the name of the doc section itself, but that tends
1859 # to duplicate a header already in the template file.
1861 sub output_blockhead_rst
(%) {
1862 my %args = %{$_[0]};
1863 my ($parameter, $section);
1865 foreach $section (@
{$args{'sectionlist'}}) {
1866 if ($output_selection != OUTPUT_INCLUDE
) {
1867 print "**$section**\n\n";
1869 print_lineno
($section_start_lines{$section});
1870 output_highlight_rst
($args{'sections'}{$section});
1875 sub output_highlight_rst
{
1876 my $contents = join "\n",@_;
1879 # undo the evil effects of xml_escape() earlier
1880 $contents = xml_unescape
($contents);
1885 foreach $line (split "\n", $contents) {
1886 print $lineprefix . $line . "\n";
1890 sub output_function_rst
(%) {
1891 my %args = %{$_[0]};
1892 my ($parameter, $section);
1893 my $oldprefix = $lineprefix;
1896 if ($args{'typedef'}) {
1897 print ".. c:type:: ". $args{'function'} . "\n\n";
1898 print_lineno
($declaration_start_line);
1899 print " **Typedef**: ";
1901 output_highlight_rst
($args{'purpose'});
1902 $start = "\n\n**Syntax**\n\n ``";
1904 print ".. c:function:: ";
1906 if ($args{'functiontype'} ne "") {
1907 $start .= $args{'functiontype'} . " " . $args{'function'} . " (";
1909 $start .= $args{'function'} . " (";
1914 foreach my $parameter (@
{$args{'parameterlist'}}) {
1919 $type = $args{'parametertypes'}{$parameter};
1921 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
1922 # pointer-to-function
1923 print $1 . $parameter . ") (" . $2;
1925 print $type . " " . $parameter;
1928 if ($args{'typedef'}) {
1932 print_lineno
($declaration_start_line);
1934 output_highlight_rst
($args{'purpose'});
1938 print "**Parameters**\n\n";
1940 foreach $parameter (@
{$args{'parameterlist'}}) {
1941 my $parameter_name = $parameter;
1942 $parameter_name =~ s/\[.*//;
1943 $type = $args{'parametertypes'}{$parameter};
1946 print "``$type $parameter``\n";
1948 print "``$parameter``\n";
1951 print_lineno
($parameterdesc_start_lines{$parameter_name});
1953 if (defined($args{'parameterdescs'}{$parameter_name}) &&
1954 $args{'parameterdescs'}{$parameter_name} ne $undescribed) {
1955 output_highlight_rst
($args{'parameterdescs'}{$parameter_name});
1957 print " *undescribed*\n";
1962 $lineprefix = $oldprefix;
1963 output_section_rst
(@_);
1966 sub output_section_rst
(%) {
1967 my %args = %{$_[0]};
1969 my $oldprefix = $lineprefix;
1972 foreach $section (@
{$args{'sectionlist'}}) {
1973 print "**$section**\n\n";
1974 print_lineno
($section_start_lines{$section});
1975 output_highlight_rst
($args{'sections'}{$section});
1979 $lineprefix = $oldprefix;
1982 sub output_enum_rst
(%) {
1983 my %args = %{$_[0]};
1985 my $oldprefix = $lineprefix;
1987 my $name = "enum " . $args{'enum'};
1989 print "\n\n.. c:type:: " . $name . "\n\n";
1990 print_lineno
($declaration_start_line);
1992 output_highlight_rst
($args{'purpose'});
1995 print "**Constants**\n\n";
1997 foreach $parameter (@
{$args{'parameterlist'}}) {
1998 print "``$parameter``\n";
1999 if ($args{'parameterdescs'}{$parameter} ne $undescribed) {
2000 output_highlight_rst
($args{'parameterdescs'}{$parameter});
2002 print " *undescribed*\n";
2007 $lineprefix = $oldprefix;
2008 output_section_rst
(@_);
2011 sub output_typedef_rst
(%) {
2012 my %args = %{$_[0]};
2014 my $oldprefix = $lineprefix;
2015 my $name = "typedef " . $args{'typedef'};
2017 print "\n\n.. c:type:: " . $name . "\n\n";
2018 print_lineno
($declaration_start_line);
2020 output_highlight_rst
($args{'purpose'});
2023 $lineprefix = $oldprefix;
2024 output_section_rst
(@_);
2027 sub output_struct_rst
(%) {
2028 my %args = %{$_[0]};
2030 my $oldprefix = $lineprefix;
2031 my $name = $args{'type'} . " " . $args{'struct'};
2033 print "\n\n.. c:type:: " . $name . "\n\n";
2034 print_lineno
($declaration_start_line);
2036 output_highlight_rst
($args{'purpose'});
2039 print "**Definition**\n\n";
2041 print " " . $args{'type'} . " " . $args{'struct'} . " {\n";
2042 foreach $parameter (@
{$args{'parameterlist'}}) {
2043 if ($parameter =~ /^#/) {
2044 print " " . "$parameter\n";
2048 my $parameter_name = $parameter;
2049 $parameter_name =~ s/\[.*//;
2051 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
2052 $type = $args{'parametertypes'}{$parameter};
2053 if ($type =~ m/([^\(]*\(\*)\s*\)\s*\(([^\)]*)\)/) {
2054 # pointer-to-function
2055 print " $1 $parameter) ($2);\n";
2056 } elsif ($type =~ m/^(.*?)\s*(:.*)/) {
2058 print " $1 $parameter$2;\n";
2060 print " " . $type . " " . $parameter . ";\n";
2065 print "**Members**\n\n";
2067 foreach $parameter (@
{$args{'parameterlist'}}) {
2068 ($parameter =~ /^#/) && next;
2070 my $parameter_name = $parameter;
2071 $parameter_name =~ s/\[.*//;
2073 ($args{'parameterdescs'}{$parameter_name} ne $undescribed) || next;
2074 $type = $args{'parametertypes'}{$parameter};
2075 print_lineno
($parameterdesc_start_lines{$parameter_name});
2076 print "``" . $parameter . "``\n";
2077 output_highlight_rst
($args{'parameterdescs'}{$parameter_name});
2082 $lineprefix = $oldprefix;
2083 output_section_rst
(@_);
2087 ## list mode output functions
2089 sub output_function_list
(%) {
2090 my %args = %{$_[0]};
2092 print $args{'function'} . "\n";
2095 # output enum in list
2096 sub output_enum_list
(%) {
2097 my %args = %{$_[0]};
2098 print $args{'enum'} . "\n";
2101 # output typedef in list
2102 sub output_typedef_list
(%) {
2103 my %args = %{$_[0]};
2104 print $args{'typedef'} . "\n";
2107 # output struct as list
2108 sub output_struct_list
(%) {
2109 my %args = %{$_[0]};
2111 print $args{'struct'} . "\n";
2114 sub output_blockhead_list
(%) {
2115 my %args = %{$_[0]};
2116 my ($parameter, $section);
2118 foreach $section (@
{$args{'sectionlist'}}) {
2119 print "DOC: $section\n";
2124 ## none mode output functions
2126 sub output_function_none
(%) {
2129 sub output_enum_none
(%) {
2132 sub output_typedef_none
(%) {
2135 sub output_struct_none
(%) {
2138 sub output_blockhead_none
(%) {
2142 # generic output function for all types (function, struct/union, typedef, enum);
2143 # calls the generated, variable output_ function name based on
2144 # functype and output_mode
2145 sub output_declaration
{
2148 my $functype = shift;
2149 my $func = "output_${functype}_$output_mode";
2150 if (($output_selection == OUTPUT_ALL
) ||
2151 (($output_selection == OUTPUT_INCLUDE
||
2152 $output_selection == OUTPUT_EXPORTED
) &&
2153 defined($function_table{$name})) ||
2154 (($output_selection == OUTPUT_EXCLUDE
||
2155 $output_selection == OUTPUT_INTERNAL
) &&
2156 !($functype eq "function" && defined($function_table{$name}))))
2164 # generic output function - calls the right one based on current output mode.
2165 sub output_blockhead
{
2167 my $func = "output_blockhead_" . $output_mode;
2173 # takes a declaration (struct, union, enum, typedef) and
2174 # invokes the right handler. NOT called for functions.
2175 sub dump_declaration
($$) {
2177 my ($prototype, $file) = @_;
2178 my $func = "dump_" . $decl_type;
2182 sub dump_union
($$) {
2186 sub dump_struct
($$) {
2191 if ($x =~ /(struct|union)\s+(\w+)\s*{(.*)}/) {
2193 $declaration_name = $2;
2196 # ignore embedded structs or unions
2197 $members =~ s/({.*})//g;
2200 # ignore members marked private:
2201 $members =~ s/\/\*\s*private:.*?\/\
*\s
*public
:.*?\
*\
///gosi
;
2202 $members =~ s/\/\*\s*private:.*//gosi
;
2204 $members =~ s/\/\*.*?\*\///gos;
2205 $nested =~ s/\/\*.*?\*\///gos;
2207 $members =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
2208 $members =~ s/__aligned\s*\([^;]*\)//gos;
2209 $members =~ s/\s*CRYPTO_MINALIGN_ATTR//gos;
2210 # replace DECLARE_BITMAP
2211 $members =~ s/DECLARE_BITMAP\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[BITS_TO_LONGS($2)\]/gos;
2212 # replace DECLARE_HASHTABLE
2213 $members =~ s/DECLARE_HASHTABLE\s*\(([^,)]+), ([^,)]+)\)/unsigned long $1\[1 << (($2) - 1)\]/gos;
2215 create_parameterlist
($members, ';', $file);
2216 check_sections
($file, $declaration_name, $decl_type, $sectcheck, $struct_actual, $nested);
2218 output_declaration
($declaration_name,
2220 {'struct' => $declaration_name,
2221 'module' => $modulename,
2222 'parameterlist' => \
@parameterlist,
2223 'parameterdescs' => \
%parameterdescs,
2224 'parametertypes' => \
%parametertypes,
2225 'sectionlist' => \
@sectionlist,
2226 'sections' => \
%sections,
2227 'purpose' => $declaration_purpose,
2228 'type' => $decl_type
2232 print STDERR
"${file}:$.: error: Cannot parse struct or union!\n";
2241 $x =~ s@
/\*.*?\*/@
@gos; # strip comments.
2242 # strip #define macros inside enums
2243 $x =~ s@
#\s*((define|ifdef)\s+|endif)[^;]*;@@gos;
2245 if ($x =~ /enum\s+(\w+)\s*{(.*)}/) {
2246 $declaration_name = $1;
2250 $members =~ s/\s+$//;
2252 foreach my $arg (split ',', $members) {
2253 $arg =~ s/^\s*(\w+).*/$1/;
2254 push @parameterlist, $arg;
2255 if (!$parameterdescs{$arg}) {
2256 $parameterdescs{$arg} = $undescribed;
2257 print STDERR
"${file}:$.: warning: Enum value '$arg' ".
2258 "not described in enum '$declaration_name'\n";
2260 $_members{$arg} = 1;
2263 while (my ($k, $v) = each %parameterdescs) {
2264 if (!exists($_members{$k})) {
2265 print STDERR
"${file}:$.: warning: Excess enum value " .
2266 "'$k' description in '$declaration_name'\n";
2270 output_declaration
($declaration_name,
2272 {'enum' => $declaration_name,
2273 'module' => $modulename,
2274 'parameterlist' => \
@parameterlist,
2275 'parameterdescs' => \
%parameterdescs,
2276 'sectionlist' => \
@sectionlist,
2277 'sections' => \
%sections,
2278 'purpose' => $declaration_purpose
2282 print STDERR
"${file}:$.: error: Cannot parse enum!\n";
2287 sub dump_typedef
($$) {
2291 $x =~ s@
/\*.*?\*/@
@gos; # strip comments.
2293 # Parse function prototypes
2294 if ($x =~ /typedef\s+(\w+)\s*\(\*\s*(\w\S+)\s*\)\s*\((.*)\);/ ||
2295 $x =~ /typedef\s+(\w+)\s*(\w\S+)\s*\s*\((.*)\);/) {
2299 $declaration_name = $2;
2302 create_parameterlist
($args, ',', $file);
2304 output_declaration
($declaration_name,
2306 {'function' => $declaration_name,
2308 'module' => $modulename,
2309 'functiontype' => $return_type,
2310 'parameterlist' => \
@parameterlist,
2311 'parameterdescs' => \
%parameterdescs,
2312 'parametertypes' => \
%parametertypes,
2313 'sectionlist' => \
@sectionlist,
2314 'sections' => \
%sections,
2315 'purpose' => $declaration_purpose
2320 while (($x =~ /\(*.\)\s*;$/) || ($x =~ /\[*.\]\s*;$/)) {
2321 $x =~ s/\(*.\)\s*;$/;/;
2322 $x =~ s/\[*.\]\s*;$/;/;
2325 if ($x =~ /typedef.*\s+(\w+)\s*;/) {
2326 $declaration_name = $1;
2328 output_declaration
($declaration_name,
2330 {'typedef' => $declaration_name,
2331 'module' => $modulename,
2332 'sectionlist' => \
@sectionlist,
2333 'sections' => \
%sections,
2334 'purpose' => $declaration_purpose
2338 print STDERR
"${file}:$.: error: Cannot parse typedef!\n";
2343 sub save_struct_actual
($) {
2346 # strip all spaces from the actual param so that it looks like one string item
2347 $actual =~ s/\s*//g;
2348 $struct_actual = $struct_actual . $actual . " ";
2351 sub create_parameterlist
($$$) {
2353 my $splitter = shift;
2358 # temporarily replace commas inside function pointer definition
2359 while ($args =~ /(\([^\),]+),/) {
2360 $args =~ s/(\([^\),]+),/$1#/g;
2363 foreach my $arg (split($splitter, $args)) {
2365 $arg =~ s/\/\*.*\*\///;
2366 # strip leading/trailing spaces
2372 # Treat preprocessor directive as a typeless variable just to fill
2373 # corresponding data structures "correctly". Catch it later in
2375 push_parameter
($arg, "", $file);
2376 } elsif ($arg =~ m/\(.+\)\s*\(/) {
2377 # pointer-to-function
2379 $arg =~ m/[^\(]+\(\*?\s*(\w*)\s*\)/;
2382 $type =~ s/([^\(]+\(\*?)\s*$param/$1/;
2383 save_struct_actual
($param);
2384 push_parameter
($param, $type, $file);
2386 $arg =~ s/\s*:\s*/:/g;
2387 $arg =~ s/\s*\[/\[/g;
2389 my @args = split('\s*,\s*', $arg);
2390 if ($args[0] =~ m/\*/) {
2391 $args[0] =~ s/(\*+)\s*/ $1/;
2395 if ($args[0] =~ /^(.*\s+)(.*?\[.*\].*)$/) {
2397 push(@first_arg, split('\s+', $1));
2398 push(@first_arg, $2);
2400 @first_arg = split('\s+', shift @args);
2403 unshift(@args, pop @first_arg);
2404 $type = join " ", @first_arg;
2406 foreach $param (@args) {
2407 if ($param =~ m/^(\*+)\s*(.*)/) {
2408 save_struct_actual
($2);
2409 push_parameter
($2, "$type $1", $file);
2411 elsif ($param =~ m/(.*?):(\d+)/) {
2412 if ($type ne "") { # skip unnamed bit-fields
2413 save_struct_actual
($1);
2414 push_parameter
($1, "$type:$2", $file)
2418 save_struct_actual
($param);
2419 push_parameter
($param, $type, $file);
2426 sub push_parameter
($$$) {
2431 if (($anon_struct_union == 1) && ($type eq "") &&
2433 return; # ignore the ending }; from anon. struct/union
2436 $anon_struct_union = 0;
2437 $param =~ s/[\[\)].*//;
2439 if ($type eq "" && $param =~ /\.\.\.$/)
2441 if (!$param =~ /\w\.\.\.$/) {
2442 # handles unnamed variable parameters
2445 if (!defined $parameterdescs{$param} || $parameterdescs{$param} eq "") {
2446 $parameterdescs{$param} = "variable arguments";
2449 elsif ($type eq "" && ($param eq "" or $param eq "void"))
2452 $parameterdescs{void
} = "no arguments";
2454 elsif ($type eq "" && ($param eq "struct" or $param eq "union"))
2455 # handle unnamed (anonymous) union or struct:
2458 $param = "{unnamed_" . $param . "}";
2459 $parameterdescs{$param} = "anonymous\n";
2460 $anon_struct_union = 1;
2463 # warn if parameter has no description
2464 # (but ignore ones starting with # as these are not parameters
2465 # but inline preprocessor statements);
2466 # also ignore unnamed structs/unions;
2467 if (!$anon_struct_union) {
2468 if (!defined $parameterdescs{$param} && $param !~ /^#/) {
2470 $parameterdescs{$param} = $undescribed;
2472 if (($type eq 'function') || ($type eq 'enum')) {
2473 print STDERR
"${file}:$.: warning: Function parameter ".
2474 "or member '$param' not " .
2475 "described in '$declaration_name'\n";
2477 print STDERR
"${file}:$.: warning:" .
2478 " No description found for parameter '$param'\n";
2483 $param = xml_escape
($param);
2485 # strip spaces from $param so that it is one continuous string
2486 # on @parameterlist;
2487 # this fixes a problem where check_sections() cannot find
2488 # a parameter like "addr[6 + 2]" because it actually appears
2489 # as "addr[6", "+", "2]" on the parameter list;
2490 # but it's better to maintain the param string unchanged for output,
2491 # so just weaken the string compare in check_sections() to ignore
2492 # "[blah" in a parameter string;
2493 ###$param =~ s/\s*//g;
2494 push @parameterlist, $param;
2495 $type =~ s/\s\s+/ /g;
2496 $parametertypes{$param} = $type;
2499 sub check_sections
($$$$$$) {
2500 my ($file, $decl_name, $decl_type, $sectcheck, $prmscheck, $nested) = @_;
2501 my @sects = split ' ', $sectcheck;
2502 my @prms = split ' ', $prmscheck;
2505 my $prm_clean; # strip trailing "[array size]" and/or beginning "*"
2507 foreach $sx (0 .. $#sects) {
2509 foreach $px (0 .. $#prms) {
2510 $prm_clean = $prms[$px];
2511 $prm_clean =~ s/\[.*\]//;
2512 $prm_clean =~ s/__attribute__\s*\(\([a-z,_\*\s\(\)]*\)\)//i;
2513 # ignore array size in a parameter string;
2514 # however, the original param string may contain
2515 # spaces, e.g.: addr[6 + 2]
2516 # and this appears in @prms as "addr[6" since the
2517 # parameter list is split at spaces;
2518 # hence just ignore "[..." for the sections check;
2519 $prm_clean =~ s/\[.*//;
2521 ##$prm_clean =~ s/^\**//;
2522 if ($prm_clean eq $sects[$sx]) {
2528 if ($decl_type eq "function") {
2529 print STDERR
"${file}:$.: warning: " .
2530 "Excess function parameter " .
2532 "description in '$decl_name'\n";
2535 if ($nested !~ m/\Q$sects[$sx]\E/) {
2536 print STDERR
"${file}:$.: warning: " .
2537 "Excess $decl_type member " .
2539 "description in '$decl_name'\n";
2548 # Checks the section describing the return value of a function.
2549 sub check_return_section
{
2551 my $declaration_name = shift;
2552 my $return_type = shift;
2554 # Ignore an empty return type (It's a macro)
2555 # Ignore functions with a "void" return type. (But don't ignore "void *")
2556 if (($return_type eq "") || ($return_type =~ /void\s*\w*\s*$/)) {
2560 if (!defined($sections{$section_return}) ||
2561 $sections{$section_return} eq "") {
2562 print STDERR
"${file}:$.: warning: " .
2563 "No description found for return value of " .
2564 "'$declaration_name'\n";
2570 # takes a function prototype and the name of the current file being
2571 # processed and spits out all the details stored in the global
2573 sub dump_function
($$) {
2574 my $prototype = shift;
2578 $prototype =~ s/^static +//;
2579 $prototype =~ s/^extern +//;
2580 $prototype =~ s/^asmlinkage +//;
2581 $prototype =~ s/^inline +//;
2582 $prototype =~ s/^__inline__ +//;
2583 $prototype =~ s/^__inline +//;
2584 $prototype =~ s/^__always_inline +//;
2585 $prototype =~ s/^noinline +//;
2586 $prototype =~ s/__init +//;
2587 $prototype =~ s/__init_or_module +//;
2588 $prototype =~ s/__meminit +//;
2589 $prototype =~ s/__must_check +//;
2590 $prototype =~ s/__weak +//;
2591 my $define = $prototype =~ s/^#\s*define\s+//; #ak added
2592 $prototype =~ s
/__attribute__\s
*\
(\
(
2594 [\w\s
]++ # attribute name
2595 (?
:\
([^)]*+\
))?
# attribute arguments
2596 \s
*+,?
# optional comma at the end
2600 # Yes, this truly is vile. We are looking for:
2601 # 1. Return type (may be nothing if we're looking at a macro)
2603 # 3. Function parameters.
2605 # All the while we have to watch out for function pointer parameters
2606 # (which IIRC is what the two sections are for), C types (these
2607 # regexps don't even start to express all the possibilities), and
2610 # If you mess with these regexps, it's a good idea to check that
2611 # the following functions' documentation still comes out right:
2612 # - parport_register_device (function pointer parameters)
2613 # - atomic_set (macro)
2614 # - pci_match_device, __copy_to_user (long return type)
2616 if ($define && $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s+/) {
2617 # This is an object-like macro, it has no return type and no parameter
2619 # Function-like macros are not allowed to have spaces between
2620 # declaration_name and opening parenthesis (notice the \s+).
2622 $declaration_name = $2;
2624 } elsif ($prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2625 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2626 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2627 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2628 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2629 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2630 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\(]*)\)/ ||
2631 $prototype =~ m/^()([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2632 $prototype =~ m/^(\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2633 $prototype =~ m/^(\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2634 $prototype =~ m/^(\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2635 $prototype =~ m/^(\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2636 $prototype =~ m/^(\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2637 $prototype =~ m/^(\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2638 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+)\s+([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2639 $prototype =~ m/^(\w+\s+\w+\s+\w+\s+\w+\s*\*+)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/ ||
2640 $prototype =~ m/^(\w+\s+\w+\s*\*+\s*\w+\s*\*+\s*)\s*([a-zA-Z0-9_~:]+)\s*\(([^\{]*)\)/) {
2642 $declaration_name = $2;
2645 create_parameterlist
($args, ',', $file);
2647 print STDERR
"${file}:$.: warning: cannot understand function prototype: '$prototype'\n";
2651 my $prms = join " ", @parameterlist;
2652 check_sections
($file, $declaration_name, "function", $sectcheck, $prms, "");
2654 # This check emits a lot of warnings at the moment, because many
2655 # functions don't have a 'Return' doc section. So until the number
2656 # of warnings goes sufficiently down, the check is only performed in
2658 # TODO: always perform the check.
2659 if ($verbose && !$noret) {
2660 check_return_section
($file, $declaration_name, $return_type);
2663 output_declaration
($declaration_name,
2665 {'function' => $declaration_name,
2666 'module' => $modulename,
2667 'functiontype' => $return_type,
2668 'parameterlist' => \
@parameterlist,
2669 'parameterdescs' => \
%parameterdescs,
2670 'parametertypes' => \
%parametertypes,
2671 'sectionlist' => \
@sectionlist,
2672 'sections' => \
%sections,
2673 'purpose' => $declaration_purpose
2679 %parameterdescs = ();
2680 %parametertypes = ();
2681 @parameterlist = ();
2685 $struct_actual = "";
2688 $state = STATE_NORMAL
;
2689 $inline_doc_state = STATE_INLINE_NA
;
2692 sub tracepoint_munge
($) {
2694 my $tracepointname = 0;
2695 my $tracepointargs = 0;
2697 if ($prototype =~ m/TRACE_EVENT\((.*?),/) {
2698 $tracepointname = $1;
2700 if ($prototype =~ m/DEFINE_SINGLE_EVENT\((.*?),/) {
2701 $tracepointname = $1;
2703 if ($prototype =~ m/DEFINE_EVENT\((.*?),(.*?),/) {
2704 $tracepointname = $2;
2706 $tracepointname =~ s/^\s+//; #strip leading whitespace
2707 if ($prototype =~ m/TP_PROTO\((.*?)\)/) {
2708 $tracepointargs = $1;
2710 if (($tracepointname eq 0) || ($tracepointargs eq 0)) {
2711 print STDERR
"${file}:$.: warning: Unrecognized tracepoint format: \n".
2714 $prototype = "static inline void trace_$tracepointname($tracepointargs)";
2718 sub syscall_munge
() {
2721 $prototype =~ s@
[\r\n\t]+@
@gos; # strip newlines/CR's/tabs
2722 ## if ($prototype =~ m/SYSCALL_DEFINE0\s*\(\s*(a-zA-Z0-9_)*\s*\)/) {
2723 if ($prototype =~ m/SYSCALL_DEFINE0/) {
2725 ## $prototype = "long sys_$1(void)";
2728 $prototype =~ s/SYSCALL_DEFINE.*\(/long sys_/; # fix return type & func name
2729 if ($prototype =~ m/long (sys_.*?),/) {
2730 $prototype =~ s/,/\(/;
2732 $prototype =~ s/\)/\(void\)/;
2735 # now delete all of the odd-number commas in $prototype
2736 # so that arg types & arg names don't have a comma between them
2738 my $len = length($prototype);
2740 $len = 0; # skip the for-loop
2742 for (my $ix = 0; $ix < $len; $ix++) {
2743 if (substr($prototype, $ix, 1) eq ',') {
2745 if ($count % 2 == 1) {
2746 substr($prototype, $ix, 1) = ' ';
2752 sub process_proto_function
($$) {
2756 $x =~ s@\
/\/.*$@
@gos; # strip C99-style comments to end of line
2758 if ($x =~ m
#\s*/\*\s+MACDOC\s*#io || ($x =~ /^#/ && $x !~ /^#\s*define/)) {
2761 elsif ($x =~ /([^\{]*)/) {
2765 if (($x =~ /\{/) || ($x =~ /\#\s*define/) || ($x =~ /;/)) {
2766 $prototype =~ s@
/\*.*?\*/@
@gos; # strip comments.
2767 $prototype =~ s@
[\r\n]+@
@gos; # strip newlines/cr's.
2768 $prototype =~ s@
^\s
+@
@gos; # strip leading spaces
2769 if ($prototype =~ /SYSCALL_DEFINE/) {
2772 if ($prototype =~ /TRACE_EVENT/ || $prototype =~ /DEFINE_EVENT/ ||
2773 $prototype =~ /DEFINE_SINGLE_EVENT/)
2775 tracepoint_munge
($file);
2777 dump_function
($prototype, $file);
2782 sub process_proto_type
($$) {
2786 $x =~ s@
[\r\n]+@
@gos; # strip newlines/cr's.
2787 $x =~ s@
^\s
+@
@gos; # strip leading spaces
2788 $x =~ s@\s
+$@
@gos; # strip trailing spaces
2789 $x =~ s@\
/\/.*$@
@gos; # strip C99-style comments to end of line
2792 # To distinguish preprocessor directive from regular declaration later.
2797 if ( $x =~ /([^{};]*)([{};])(.*)/ ) {
2798 if( length $prototype ) {
2801 $prototype .= $1 . $2;
2802 ($2 eq '{') && $brcount++;
2803 ($2 eq '}') && $brcount--;
2804 if (($2 eq ';') && ($brcount == 0)) {
2805 dump_declaration
($prototype, $file);
2817 # xml_escape: replace <, >, and & in the text stream;
2819 # however, formatting controls that are generated internally/locally in the
2820 # kernel-doc script are not escaped here; instead, they begin life like
2821 # $blankline_html (4 of '\' followed by a mnemonic + ':'), then these strings
2822 # are converted to their mnemonic-expected output, without the 4 * '\' & ':',
2823 # just before actual output; (this is done by local_unescape())
2826 if (($output_mode eq "text") || ($output_mode eq "man")) {
2829 $text =~ s/\&/\\\\\\amp;/g;
2830 $text =~ s/\</\\\\\\lt;/g;
2831 $text =~ s/\>/\\\\\\gt;/g;
2835 # xml_unescape: reverse the effects of xml_escape
2836 sub xml_unescape
($) {
2838 if (($output_mode eq "text") || ($output_mode eq "man")) {
2841 $text =~ s/\\\\\\amp;/\&/g;
2842 $text =~ s/\\\\\\lt;/</g;
2843 $text =~ s/\\\\\\gt;/>/g;
2847 # convert local escape strings to html
2848 # local escape strings look like: '\\\\menmonic:' (that's 4 backslashes)
2849 sub local_unescape
($) {
2851 if (($output_mode eq "text") || ($output_mode eq "man")) {
2854 $text =~ s/\\\\\\\\lt:/</g;
2855 $text =~ s/\\\\\\\\gt:/>/g;
2859 sub map_filename
($) {
2861 my ($orig_file) = @_;
2863 if (defined($ENV{'SRCTREE'})) {
2864 $file = "$ENV{'SRCTREE'}" . "/" . $orig_file;
2869 if (defined($source_map{$file})) {
2870 $file = $source_map{$file};
2876 sub process_export_file
($) {
2877 my ($orig_file) = @_;
2878 my $file = map_filename
($orig_file);
2880 if (!open(IN
,"<$file")) {
2881 print STDERR
"Error: Cannot open file $file\n";
2887 if (/$export_symbol/) {
2888 $function_table{$2} = 1;
2895 sub process_file
($) {
2901 my $initial_section_counter = $section_counter;
2902 my ($orig_file) = @_;
2905 $file = map_filename
($orig_file);
2907 if (!open(IN
,"<$file")) {
2908 print STDERR
"Error: Cannot open file $file\n";
2915 $section_counter = 0;
2917 while (s/\\\s*$//) {
2920 if ($state == STATE_NORMAL
) {
2921 if (/$doc_start/o) {
2922 $state = STATE_NAME
; # next line is always the function name
2924 $declaration_start_line = $. + 1;
2926 } elsif ($state == STATE_NAME
) {# this line is the function name (always)
2927 if (/$doc_block/o) {
2928 $state = STATE_DOCBLOCK
;
2930 $new_start_line = $. + 1;
2933 $section = $section_intro;
2938 elsif (/$doc_decl/o) {
2940 if (/\s*([\w\s]+?)\s*-/) {
2944 $state = STATE_FIELD
;
2945 # if there's no @param blocks need to set up default section
2948 $section = $section_default;
2949 $new_start_line = $. + 1;
2951 # strip leading/trailing/multiple spaces
2955 $descr =~ s/\s+/ /g;
2956 $declaration_purpose = xml_escape
($descr);
2959 $declaration_purpose = "";
2962 if (($declaration_purpose eq "") && $verbose) {
2963 print STDERR
"${file}:$.: warning: missing initial short description on line:\n";
2968 if ($identifier =~ m/^struct/) {
2969 $decl_type = 'struct';
2970 } elsif ($identifier =~ m/^union/) {
2971 $decl_type = 'union';
2972 } elsif ($identifier =~ m/^enum/) {
2973 $decl_type = 'enum';
2974 } elsif ($identifier =~ m/^typedef/) {
2975 $decl_type = 'typedef';
2977 $decl_type = 'function';
2981 print STDERR
"${file}:$.: info: Scanning doc for $identifier\n";
2984 print STDERR
"${file}:$.: warning: Cannot understand $_ on line $.",
2985 " - I thought it was a doc line\n";
2987 $state = STATE_NORMAL
;
2989 } elsif ($state == STATE_FIELD
) { # look for head: lines, and include content
2990 if (/$doc_sect/i) { # case insensitive for supported section names
2994 # map the supported section names to the canonical names
2995 if ($newsection =~ m/^description$/i) {
2996 $newsection = $section_default;
2997 } elsif ($newsection =~ m/^context$/i) {
2998 $newsection = $section_context;
2999 } elsif ($newsection =~ m/^returns?$/i) {
3000 $newsection = $section_return;
3001 } elsif ($newsection =~ m/^\@return$/) {
3002 # special: @return is a section, not a param description
3003 $newsection = $section_return;
3006 if (($contents ne "") && ($contents ne "\n")) {
3007 if (!$in_doc_sect && $verbose) {
3008 print STDERR
"${file}:$.: warning: contents before sections\n";
3011 dump_section
($file, $section, xml_escape
($contents));
3012 $section = $section_default;
3017 $contents = $newcontents;
3018 $new_start_line = $.;
3019 while ((substr($contents, 0, 1) eq " ") ||
3020 substr($contents, 0, 1) eq "\t") {
3021 $contents = substr($contents, 1);
3023 if ($contents ne "") {
3026 $section = $newsection;
3027 $leading_space = undef;
3028 } elsif (/$doc_end/) {
3029 if (($contents ne "") && ($contents ne "\n")) {
3030 dump_section
($file, $section, xml_escape
($contents));
3031 $section = $section_default;
3034 # look for doc_com + <text> + doc_end:
3035 if ($_ =~ m
'\s*\*\s*[a-zA-Z_0-9:\.]+\*/') {
3036 print STDERR
"${file}:$.: warning: suspicious ending line: $_";
3041 $state = STATE_PROTO
;
3043 # print STDERR "end of doc comment, looking for prototype\n";
3044 } elsif (/$doc_content/) {
3045 # miguel-style comment kludge, look for blank lines after
3046 # @parameter line to signify start of description
3048 if ($section =~ m/^@/ || $section eq $section_context) {
3049 dump_section
($file, $section, xml_escape
($contents));
3050 $section = $section_default;
3052 $new_start_line = $.;
3057 } elsif ($in_purpose == 1) {
3058 # Continued declaration purpose
3059 chomp($declaration_purpose);
3060 $declaration_purpose .= " " . xml_escape
($1);
3061 $declaration_purpose =~ s/\s+/ /g;
3064 if ($section =~ m/^@/ || $section eq $section_context) {
3065 if (!defined $leading_space) {
3066 if ($cont =~ m/^(\s+)/) {
3067 $leading_space = $1;
3069 $leading_space = "";
3073 $cont =~ s/^$leading_space//;
3075 $contents .= $cont . "\n";
3078 # i dont know - bad line? ignore.
3079 print STDERR
"${file}:$.: warning: bad line: $_";
3082 } elsif ($state == STATE_INLINE
) { # scanning for inline parameters
3083 # First line (state 1) needs to be a @parameter
3084 if ($inline_doc_state == STATE_INLINE_NAME
&& /$doc_inline_sect/o) {
3087 $new_start_line = $.;
3088 if ($contents ne "") {
3089 while ((substr($contents, 0, 1) eq " ") ||
3090 substr($contents, 0, 1) eq "\t") {
3091 $contents = substr($contents, 1);
3095 $inline_doc_state = STATE_INLINE_TEXT
;
3096 # Documentation block end */
3097 } elsif (/$doc_inline_end/) {
3098 if (($contents ne "") && ($contents ne "\n")) {
3099 dump_section
($file, $section, xml_escape
($contents));
3100 $section = $section_default;
3103 $state = STATE_PROTO
;
3104 $inline_doc_state = STATE_INLINE_NA
;
3106 } elsif (/$doc_content/) {
3107 if ($inline_doc_state == STATE_INLINE_TEXT
) {
3108 $contents .= $1 . "\n";
3109 # nuke leading blank lines
3110 if ($contents =~ /^\s*$/) {
3113 } elsif ($inline_doc_state == STATE_INLINE_NAME
) {
3114 $inline_doc_state = STATE_INLINE_ERROR
;
3115 print STDERR
"${file}:$.: warning: ";
3116 print STDERR
"Incorrect use of kernel-doc format: $_";
3120 } elsif ($state == STATE_PROTO
) { # scanning for function '{' (end of prototype)
3121 if (/$doc_inline_oneline/) {
3124 if ($contents ne "") {
3126 dump_section
($file, $section, xml_escape
($contents));
3127 $section = $section_default;
3130 } elsif (/$doc_inline_start/) {
3131 $state = STATE_INLINE
;
3132 $inline_doc_state = STATE_INLINE_NAME
;
3133 } elsif ($decl_type eq 'function') {
3134 process_proto_function
($_, $file);
3136 process_proto_type
($_, $file);
3138 } elsif ($state == STATE_DOCBLOCK
) {
3141 dump_doc_section
($file, $section, xml_escape
($contents));
3142 $section = $section_default;
3145 %parameterdescs = ();
3146 %parametertypes = ();
3147 @parameterlist = ();
3151 $state = STATE_NORMAL
;
3153 elsif (/$doc_content/)
3157 $contents .= $blankline;
3161 $contents .= $1 . "\n";
3166 if ($initial_section_counter == $section_counter) {
3167 if ($output_mode ne "none") {
3168 print STDERR
"${file}:1: warning: no structured comments found\n";
3170 if (($output_selection == OUTPUT_INCLUDE
) && ($show_not_found == 1)) {
3171 print STDERR
" Was looking for '$_'.\n" for keys %function_table;
3173 if ($output_mode eq "xml") {
3174 # The template wants at least one RefEntry here; make one.
3175 print "<refentry>\n";
3176 print " <refnamediv>\n";
3177 print " <refname>\n";
3178 print " ${orig_file}\n";
3179 print " </refname>\n";
3180 print " <refpurpose>\n";
3181 print " Document generation inconsistency\n";
3182 print " </refpurpose>\n";
3183 print " </refnamediv>\n";
3184 print " <refsect1>\n";
3187 print " </title>\n";
3188 print " <warning>\n";
3190 print " The template for this document tried to insert\n";
3191 print " the structured comment from the file\n";
3192 print " <filename>${orig_file}</filename> at this point,\n";
3193 print " but none was found.\n";
3194 print " This dummy section is inserted to allow\n";
3195 print " generation to continue.\n";
3197 print " </warning>\n";
3198 print " </refsect1>\n";
3199 print "</refentry>\n";
3205 $kernelversion = get_kernel_version
();
3207 # generate a sequence of code that will splice in highlighting information
3208 # using the s// operator.
3209 for (my $k = 0; $k < @highlights; $k++) {
3210 my $pattern = $highlights[$k][0];
3211 my $result = $highlights[$k][1];
3212 # print STDERR "scanning pattern:$pattern, highlight:($result)\n";
3213 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
3216 # Read the file that maps relative names to absolute names for
3217 # separate source and object directories and for shadow trees.
3218 if (open(SOURCE_MAP
, "<.tmp_filelist.txt")) {
3219 my ($relname, $absname);
3220 while(<SOURCE_MAP
>) {
3222 ($relname, $absname) = (split())[0..1];
3223 $relname =~ s
:^/+::;
3224 $source_map{$relname} = $absname;
3229 if ($output_selection == OUTPUT_EXPORTED
||
3230 $output_selection == OUTPUT_INTERNAL
) {
3232 push(@export_file_list, @ARGV);
3234 foreach (@export_file_list) {
3236 process_export_file
($_);
3244 if ($verbose && $errors) {
3245 print STDERR
"$errors errors\n";
3247 if ($verbose && $warnings) {
3248 print STDERR
"$warnings warnings\n";
3251 exit($output_mode eq "none" ?
0 : $errors);