3 # Read the source-form of the NASM manual and generate the various
8 # Ellipsis support would be nice.
10 # Source-form features:
11 # ---------------------
14 # Bullets the paragraph. Rest of paragraph is indented to cope. In
15 # HTML, consecutive groups of bulleted paragraphs become unordered
19 # produces `_foobar_' in text and italics in HTML, PS, RTF
21 # Inline code \c{foobar}
22 # produces ``foobar'' in text, and fixed-pitch font in HTML, PS, RTF
27 # produces fixed-pitch font where appropriate, and doesn't break
28 # pages except sufficiently far into the middle of a display.
30 # Chapter, header and subheader
31 # \C{intro} Introduction
32 # \H{whatsnasm} What is NASM?
33 # \S{free} NASM Is Free
34 # dealt with as appropriate. Chapters begin on new sides, possibly
35 # even new _pages_. (Sub)?headers are good places to begin new
36 # pages. Just _after_ a (sub)?header isn't.
37 # The keywords can be substituted with \K and \k.
39 # Keyword \K{cintro} \k{cintro}
40 # Expands to `Chapter 1', `Section 1.1', `Section 1.1.1'. \K has an
41 # initial capital whereas \k doesn't. In HTML, will produce
44 # Web link \W{http://foobar/}{text} or \W{mailto:me@here}\c{me@here}
45 # the \W prefix is ignored except in HTML; in HTML the last part
46 # becomes a hyperlink to the first part.
49 # In case it's necessary, they expand to the real versions.
51 # Nonbreaking hyphen \-
55 # Causes everything after it on the line to be ignored by the
56 # source-form processor.
58 # Indexable word \i{foobar} (or \i\e{foobar} or \i\c{foobar}, equally)
59 # makes word appear in index, referenced to that point
60 # \i\c comes up in code style even in the index; \i\e doesn't come
61 # up in emphasised style.
63 # Indexable non-displayed word \I{foobar} or \I\c{foobar}
64 # just as \i{foobar} except that nothing is displayed for it
67 # \IR{foobar} \c{foobar} operator, uses of
68 # tidies up the appearance in the index of something the \i or \I
69 # operator was applied to
72 # \IA{foobar}{bazquux}
73 # aliases one index tag (as might be supplied to \i or \I) to
74 # another, so that \I{foobar} has the effect of \I{bazquux}, and
75 # \i{foobar} has the effect of \I{bazquux}foobar
79 # defines document metadata, such as authorship, title and copyright;
80 # different output formats use this differently.
84 # Includes filename. Recursion is allowed.
89 $diag = 1, shift @ARGV if $ARGV[0] eq "-d";
93 $tstruct_previtem = $node = "Top";
95 $tstruct_level{$tstruct_previtem} = 0;
96 $tstruct_last[$tstruct_level{$tstruct_previtem}] = $tstruct_previtem;
97 $MAXLEVEL = 10; # really 3, but play safe ;-)
99 # Read the file; pass a paragraph at a time to the paragraph processor.
100 print "Reading input...";
101 $pname = "para000000";
102 @pnames = @pflags = ();
110 # Now we've read in the entire document and we know what all the
111 # heading keywords refer to. Go through and fix up the \k references.
112 print "Fixing up cross-references...";
116 # Sort the index tags, according to the slightly odd order I've decided on.
117 print "Sorting index tags...";
122 print "Writing index-diagnostic file...";
127 # OK. Write out the various output files.
128 print "Producing text output: ";
131 print "Producing HTML output: ";
134 print "Producing Texinfo output: ";
137 print "Producing WinHelp output: ";
140 print "Producing Documentation Intermediate Paragraphs: ";
154 if (!/\S/ || /^\\(IA|IR|M)/) { # special case: \IA \IR \M imply new-paragraph
159 s/\\#.*$//; # strip comments
165 my $F = IO
::File
->new($name)
166 or die "Cannot open $name: $!";
173 my $pflags = "", $i, $w, $l, $t;
178 # Strip off _leading_ spaces, then determine type of paragraph.
182 # A code paragraph. The paragraph-array will contain the simple
183 # strings which form each line of the paragraph.
185 while (/^\\c (([^\\]|\\[^c])*)(.*)$/) {
193 $_ = ''; # suppress word-by-word code
195 # A chapter heading. Define the keyword and allocate a chapter
200 $xref = "chapter-$cnum";
201 $pflags = "chap $cnum :$xref";
202 die "badly formatted chapter heading: $_\n" if !/^\\C{([^}]*)}\s*(.*)$/;
203 $refs{$1} = "chapter $cnum";
204 $node = "Chapter $cnum";
206 $xrefnodes{$node} = $xref; $nodexrefs{$xref} = $node;
209 # the standard word-by-word code will happen next
211 # An appendix heading. Define the keyword and allocate an appendix
214 $cnum = 'A' if $cnum =~ /[0-9]+/;
217 $xref = "appendix-$cnum";
218 $pflags = "appn $cnum :$xref";
219 die "badly formatted appendix heading: $_\n" if !/^\\A{([^}]*)}\s*(.*)$/;
220 $refs{$1} = "appendix $cnum";
221 $node = "Appendix $cnum";
223 $xrefnodes{$node} = $xref; $nodexrefs{$xref} = $node;
226 # the standard word-by-word code will happen next
228 # A major heading. Define the keyword and allocate a section number.
231 $xref = "section-$cnum.$hnum";
232 $pflags = "head $cnum.$hnum :$xref";
233 die "badly formatted heading: $_\n" if !/^\\[HP]{([^}]*)}\s*(.*)$/;
234 $refs{$1} = "section $cnum.$hnum";
235 $node = "Section $cnum.$hnum";
237 $xrefnodes{$node} = $xref; $nodexrefs{$xref} = $node;
240 # the standard word-by-word code will happen next
242 # A sub-heading. Define the keyword and allocate a section number.
244 $xref = "section-$cnum.$hnum.$snum";
245 $pflags = "subh $cnum.$hnum.$snum :$xref";
246 die "badly formatted subheading: $_\n" if !/^\\S{([^}]*)}\s*(.*)$/;
247 $refs{$1} = "section $cnum.$hnum.$snum";
248 $node = "Section $cnum.$hnum.$snum";
250 $xrefnodes{$node} = $xref; $nodexrefs{$xref} = $node;
253 # the standard word-by-word code will happen next
256 die "badly formatted index rewrite: $_\n" if !/^\\IR{([^}]*)}\s*(.*)$/;
259 # the standard word-by-word code will happen next
262 die "badly formatted index alias: $_\n" if !/^\\IA{([^}]*)}{([^}]*)}\s*$/;
264 return; # avoid word-by-word code
267 die "badly formed metadata: $_\n" if !/^\\M{([^}]*)}{([^}]*)}\s*$/;
269 return; # avoid word-by-word code
271 # A bulleted paragraph. Strip off the initial \b and let the
272 # word-by-word code take care of the rest.
276 # A normal paragraph. Just set $pflags: the word-by-word code does
281 # The word-by-word code: unless @$pname is already defined (which it
282 # will be in the case of a code paragraph), split the paragraph up
283 # into words and push each on @$pname.
285 # Each thing pushed on @$pname should have a two-character type
286 # code followed by the text.
291 # "es" for first emphasised word in emphasised bit
292 # "e " for emphasised in mid-emphasised-bit
293 # "ee" for last emphasised word in emphasised bit
294 # "eo" for single (only) emphasised word
297 # "kK" for capitalised cross-ref
299 # "wc" for code-type Web link
300 # "x " for beginning of resolved cross-ref; generates no visible output,
301 # and the text is the cross-reference code
302 # "xe" for end of resolved cross-ref; text is same as for "x ".
303 # "i " for point to be indexed: the text is the internal index into the
307 s/^\s*//, push @
$pname, "sp" if /^\s/;
308 $indexing = $qindex = 0;
309 if (/^(\\[iI])?\\c/) {
310 $qindex = 1 if $1 eq "\\I";
311 $indexing = 1, s/^\\[iI]// if $1;
313 die "badly formatted \\c: \\c$_\n" if !/{(([^\\}]|\\.)*)}(.*)$/;
320 (push @
$pname,"i"),$lastp = $#$pname if $indexing;
321 push @
$pname,"c $w" if !$qindex;
322 $$pname[$lastp] = &addidx
($node, $w, "c $w") if $indexing;
323 } elsif (/^\\[iIe]/) {
326 $qindex = 1 if $1 eq "\\I";
327 $indexing = 1, $type = "\\i" if $1;
328 $emph = 1, $type = "\\e" if $2;
329 s/^(\\[iI])?(\\e?)//;
330 die "badly formatted $type: $type$_\n" if !/{(([^\\}]|\\.)*)}(.*)$/;
337 $t = $emph ?
"es" : "n ";
339 (push @
$pname,"i"),$lastp = $#$pname if $indexing;
340 foreach $i (split /\s+/,$w) { # \e and \i can be multiple words
341 push @
$pname,"$t$i","sp" if !$qindex;
342 ($ii=$i) =~ tr/A-Z/a-z/, push @ientry,"n $ii","sp" if $indexing;
343 $t = $emph ?
"e " : "n ";
345 $w =~ tr/A-Z/a-z/, pop @ientry if $indexing;
346 $$pname[$lastp] = &addidx
($node, $w, @ientry) if $indexing;
347 pop @
$pname if !$qindex; # remove final space
348 if (substr($$pname[$#$pname],0,2) eq "es" && !$qindex) {
349 substr($$pname[$#$pname],0,2) = "eo";
350 } elsif ($emph && !$qindex) {
351 substr($$pname[$#$pname],0,2) = "ee";
353 } elsif (/^\\[kK]/) {
357 die "badly formatted \\k: \\c$_\n" if !/{([^}]*)}(.*)$/;
362 die "badly formatted \\W: \\W$_\n"
363 if !/{([^}]*)}(\\i)?(\\c)?{(([^\\}]|\\.)*)}(.*)$/;
368 $t = "wc" if $3 eq "\\c";
374 (push @
$pname,"i"),$lastp = $#$pname if $indexing;
375 push @
$pname,"$t<$l>$w";
376 $$pname[$lastp] = &addidx
($node, $w, "c $w") if $indexing;
378 die "what the hell? $_\n" if !/^(([^\s\\\-]|\\[\\{}\-])*-?)(.*)$/;
379 die "painful death! $_\n" if !length $1;
393 if ($irewrite ne undef) {
394 &addidx
(undef, $irewrite, @
$pname);
397 push @pnames, $pname;
398 push @pflags, $pflags;
404 my ($node, $text, @ientry) = @_;
405 $text = $idxalias{$text} || $text;
406 if ($node eq undef || !$idxmap{$text}) {
408 $idxmap{$text} = $ientry;
412 $idxnodes{$node,$text} = 1;
418 my $iitem, $ientry, $i, $piitem, $pcval, $cval, $clrcval;
420 @itags = map { # get back the original data as the 1st elt of each list
422 } sort { # compare auxiliary (non-first) elements of lists
423 $a->[1] cmp $b->[1] ||
424 $a->[2] cmp $b->[2] ||
426 } map { # transform array into list of 3-element lists
427 my $ientry = $idxmap{$_};
428 my $a = substr($$ientry[0],2);
429 $a =~ tr/A-Za-z0-9//cd;
430 [$_, uc($a), substr($$ientry[0],0,2)]
433 # Having done that, check for comma-hood.
435 foreach $iitem (@itags) {
436 $ientry = $idxmap{$iitem};
439 FL
:for ($i=0; $i <= $#$ientry; $i++) {
440 if ($$ientry[$i] =~ /^(n .*,)(.*)/) {
442 splice @
$ientry,$i+1,0,"n $2" if length $2;
443 $commapos{$iitem} = $i+1;
444 $cval = join("\002", @
$ientry[0..$i]);
449 $cval = undef if $clrcval;
450 $commanext{$iitem} = $commaafter{$piitem} = 1
451 if $cval and ($cval eq $pcval);
457 my $iitem,$ientry,$w,$ww,$foo,$node;
458 open INDEXDIAG
,">index.diag";
459 foreach $iitem (@itags) {
460 $ientry = $idxmap{$iitem};
461 print INDEXDIAG
"<$iitem> ";
462 foreach $w (@
$ientry) {
464 print INDEXDIAG
$ww unless $ww eq "\001";
468 foreach $node (@nodes) {
469 (print INDEXDIAG
$foo,$node), $foo = ", " if $idxnodes{$node,$iitem};
471 print INDEXDIAG
"\n";
477 my $pname, $p, $i, $j, $k, $caps, @repl;
479 for ($p=0; $p<=$#pnames; $p++) {
480 next if $pflags[$p] eq "code";
481 $pname = $pnames[$p];
482 for ($i=$#$pname; $i >= 0; $i--) {
483 if ($$pname[$i] =~ /^k/) {
485 $caps = ($k =~ /^kK/);
488 die "undefined keyword `$k'\n" unless $repl;
489 substr($repl,0,1) =~ tr/a-z/A-Z/ if $caps;
491 push @repl,"x $xrefs{$k}";
492 foreach $j (split /\s+/,$repl) {
496 pop @repl; # remove final space
497 push @repl,"xe$xrefs{$k}";
498 splice @
$pname,$i,1,@repl;
505 # This is called from the top level, so I won't bother using
509 print "writing file...";
510 open TEXT
,">nasmdoc.txt";
514 $title = "The Netwide Assembler: NASM";
515 $spaces = ' ' x
((75-(length $title))/2);
516 ($underscore = $title) =~ s/./=/g;
517 print "$spaces$title\n$spaces$underscore\n";
519 for ($para = 0; $para <= $#pnames; $para++) {
520 $pname = $pnames[$para];
521 $pflags = $pflags[$para];
522 $ptype = substr($pflags,0,4);
524 print "\n"; # always one of these before a new paragraph
526 if ($ptype eq "chap") {
527 # Chapter heading. "Chapter N: Title" followed by a line of
529 $pflags =~ /chap (.*) :(.*)/;
530 $title = "Chapter $1: ";
531 foreach $i (@
$pname) {
533 $title .= $ww unless $ww eq "\001";
538 } elsif ($ptype eq "appn") {
539 # Appendix heading. "Appendix N: Title" followed by a line of
541 $pflags =~ /appn (.*) :(.*)/;
542 $title = "Appendix $1: ";
543 foreach $i (@
$pname) {
545 $title .= $ww unless $ww eq "\001";
550 } elsif ($ptype eq "head" || $ptype eq "subh") {
551 # Heading or subheading. Just a number and some text.
552 $pflags =~ /.... (.*) :(.*)/;
553 $title = sprintf "%6s ", $1;
554 foreach $i (@
$pname) {
556 $title .= $ww unless $ww eq "\001";
559 } elsif ($ptype eq "code") {
560 # Code paragraph. Emit each line with a seven character indent.
561 foreach $i (@
$pname) {
562 warn "code line longer than 68 chars: $i\n" if length $i > 68;
563 print ' 'x7
, $i, "\n";
565 } elsif ($ptype eq "bull" || $ptype eq "norm") {
566 # Ordinary paragraph, optionally bulleted. We wrap, with ragged
567 # 75-char right margin and either 7 or 11 char left margin
568 # depending on bullets.
569 if ($ptype eq "bull") {
570 $line = ' 'x7
. '(*) ';
573 $line = $next = ' 'x7
;
578 do { $w = &word_txt
(shift @a) } while $w eq "\001"; # nasty hack
580 if ($wprev =~ /-$/ || $w eq ' ' || $w eq '' || $w eq undef) {
581 if (length ($line . $wd) > 75) {
582 $line =~ s/\s*$//; # trim trailing spaces
585 $wd =~ s/^\s*//; # trim leading spaces
591 } while ($w ne '' && $w ne undef);
593 $line =~ s/\s*$//; # trim trailing spaces
608 return undef if $w eq '' || $w eq undef;
609 $wtype = substr($w,0,2);
610 $wmajt = substr($wtype,0,1);
612 $w =~ s/<.*>// if $wmajt eq "w"; # remove web links
613 if ($wmajt eq "n" || $wtype eq "e " || $wtype eq "w ") {
615 } elsif ($wtype eq "sp") {
617 } elsif ($wtype eq "da") {
619 } elsif ($wmajt eq "c" || $wtype eq "wc") {
621 } elsif ($wtype eq "es") {
623 } elsif ($wtype eq "ee") {
625 } elsif ($wtype eq "eo") {
627 } elsif ($wmajt eq "x" || $wmajt eq "i") {
630 die "panic in word_txt: $wtype$w\n";
635 # This is called from the top level, so I won't bother using
638 # Write contents file. Just the preamble, then a menu of links to the
639 # separate chapter files and the nodes therein.
640 print "writing contents file...";
641 open TEXT
,">nasmdoc0.html";
644 print "<p>This manual documents NASM, the Netwide Assembler: an assembler\n";
645 print "targetting the Intel x86 series of processors, with portable source.\n";
647 for ($node = $tstruct_next{'Top'}; $node; $node = $tstruct_next{$node}) {
648 if ($tstruct_level{$node} == 1) {
649 # Invent a file name.
650 ($number = lc($xrefnodes{$node})) =~ s/.*-//;
651 $fname="nasmdocx.html";
652 substr($fname,8 - length $number, length $number) = $number;
653 $html_fnames{$node} = $fname;
657 # Use the preceding filename plus a marker point.
658 $link = $fname . "#$xrefnodes{$node}";
661 $pname = $tstruct_pname{$node};
662 foreach $i (@
$pname) {
663 $ww = &word_html
($i);
664 $title .= $ww unless $ww eq "\001";
666 print "<a href=\"$link\">$title</a><br>\n";
668 print "<p><a href=\"nasmdoci.html\">Index</a>\n";
669 print "</body></html>\n";
673 # Open a null file, to ensure output (eg random &html_jumppoints calls)
675 print "writing chapter files...";
676 open TEXT
,">/dev/null";
682 for ($para = 0; $para <= $#pnames; $para++) {
683 $pname = $pnames[$para];
684 $pflags = $pflags[$para];
685 $ptype = substr($pflags,0,4);
687 $in_list = 0, print "</ul>\n" if $in_list && $ptype ne "bull";
688 if ($ptype eq "chap") {
689 # Chapter heading. Begin a new file.
690 $pflags =~ /chap (.*) :(.*)/;
691 $title = "Chapter $1: ";
693 &html_jumppoints
; print "</body></html>\n"; select STDOUT
; close TEXT
;
694 $html_lastf = $html_fnames{$chapternode};
695 $chapternode = $nodexrefs{$xref};
696 $html_nextf = $html_fnames{$tstruct_mnext{$chapternode}};
697 open TEXT
,">$html_fnames{$chapternode}"; select TEXT
; &html_preamble
(1);
698 foreach $i (@
$pname) {
699 $ww = &word_html
($i);
700 $title .= $ww unless $ww eq "\001";
702 $h = "<h2><a name=\"$xref\">$title</a></h2>\n";
703 print $h; print FULL
$h;
704 } elsif ($ptype eq "appn") {
705 # Appendix heading. Begin a new file.
706 $pflags =~ /appn (.*) :(.*)/;
707 $title = "Appendix $1: ";
709 &html_jumppoints
; print "</body></html>\n"; select STDOUT
; close TEXT
;
710 $html_lastf = $html_fnames{$chapternode};
711 $chapternode = $nodexrefs{$xref};
712 $html_nextf = $html_fnames{$tstruct_mnext{$chapternode}};
713 open TEXT
,">$html_fnames{$chapternode}"; select TEXT
; &html_preamble
(1);
714 foreach $i (@
$pname) {
715 $ww = &word_html
($i);
716 $title .= $ww unless $ww eq "\001";
718 print "<h2><a name=\"$xref\">$title</a></h2>\n";
719 } elsif ($ptype eq "head" || $ptype eq "subh") {
720 # Heading or subheading.
721 $pflags =~ /.... (.*) :(.*)/;
722 $hdr = ($ptype eq "subh" ?
"h4" : "h3");
725 foreach $i (@
$pname) {
726 $ww = &word_html
($i);
727 $title .= $ww unless $ww eq "\001";
729 print "<$hdr><a name=\"$xref\">$title</a></$hdr>\n";
730 } elsif ($ptype eq "code") {
733 foreach $i (@
$pname) {
741 } elsif ($ptype eq "bull" || $ptype eq "norm") {
742 # Ordinary paragraph, optionally bulleted. We wrap, with ragged
743 # 75-char right margin and either 7 or 11 char left margin
744 # depending on bullets.
745 if ($ptype eq "bull") {
746 $in_list = 1, print "<ul>\n" unless $in_list;
754 do { $w = &word_html
(shift @a) } while $w eq "\001"; # nasty hack
756 if ($w eq ' ' || $w eq '' || $w eq undef) {
757 if (length ($line . $wd) > 75) {
758 $line =~ s/\s*$//; # trim trailing spaces
761 $wd =~ s/^\s*//; # trim leading spaces
767 } while ($w ne '' && $w ne undef);
769 $line =~ s/\s*$//; # trim trailing spaces
775 # Close whichever file was open.
777 print "</body></html>\n";
781 print "\n writing index file...";
782 open TEXT
,">nasmdoci.html";
785 print "<p align=center><a href=\"nasmdoc0.html\">Contents</a>\n";
788 print "<p align=center><a href=\"nasmdoc0.html\">Contents</a>\n";
789 print "</body></html>\n";
795 print "<html><head><title>NASM Manual</title></head>\n";
796 print "<body><h1 align=center>The Netwide Assembler: NASM</h1>\n\n";
797 &html_jumppoints
if $_[0];
800 sub html_jumppoints
{
801 print "<p align=center>";
802 print "<a href=\"$html_nextf\">Next Chapter</a> |\n" if $html_nextf;
803 print "<a href=\"$html_lastf\">Previous Chapter</a> |\n" if $html_lastf;
804 print "<a href=\"nasmdoc0.html\">Contents</a> |\n";
805 print "<a href=\"nasmdoci.html\">Index</a>\n";
809 my $itag, $a, @ientry, $sep, $w, $wd, $wprev, $line;
812 foreach $itag (@itags) {
813 $ientry = $idxmap{$itag};
817 foreach $node (@nodes) {
818 next if !$idxnodes{$node,$itag};
819 push @a, "n ," if $sep;
820 push @a, "sp", "x $xrefnodes{$node}", "n $node", "xe$xrefnodes{$node}";
825 do { $w = &word_html
(shift @a) } while $w eq "\001"; # nasty hack
827 if ($w eq ' ' || $w eq '' || $w eq undef) {
828 if (length ($line . $wd) > 75) {
829 $line =~ s/\s*$//; # trim trailing spaces
832 $wd =~ s/^\s*//; # trim leading spaces
838 } while ($w ne '' && $w ne undef);
840 $line =~ s/\s*$//; # trim trailing spaces
849 my $wtype, $wmajt, $pfx, $sfx;
851 return undef if $w eq '' || $w eq undef;
853 $wtype = substr($w,0,2);
854 $wmajt = substr($wtype,0,1);
857 $pfx = "<a href=\"$1\">", $sfx = "</a>", $w = $2
858 if $wmajt eq "w" && $w =~ /^<(.*)>(.*)$/;
862 if ($wmajt eq "n" || $wtype eq "e " || $wtype eq "w ") {
863 return $pfx . $w . $sfx;
864 } elsif ($wtype eq "sp") {
866 } elsif ($wtype eq "da") {
867 return '-'; # sadly, en-dashes are non-standard in HTML
868 } elsif ($wmajt eq "c" || $wtype eq "wc") {
869 return $pfx . "<code><nobr>${w}</nobr></code>" . $sfx;
870 } elsif ($wtype eq "es") {
872 } elsif ($wtype eq "ee") {
874 } elsif ($wtype eq "eo") {
875 return "<em>${w}</em>";
876 } elsif ($wtype eq "x ") {
877 # Magic: we must resolve the cross reference into file and marker
878 # parts, then dispose of the file part if it's us, and dispose of
879 # the marker part if the cross reference describes the top node of
881 my $node = $nodexrefs{$w}; # find the node we're aiming at
882 my $level = $tstruct_level{$node}; # and its level
883 my $up = $node, $uplev = $level-1;
884 $up = $tstruct_up{$up} while $uplev--; # get top node of containing file
885 my $file = ($up ne $chapternode) ?
$html_fnames{$up} : "";
886 my $marker = ($level == 1 and $file) ?
"" : "#$w";
887 return "<a href=\"$file$marker\">";
888 } elsif ($wtype eq "xe") {
890 } elsif ($wmajt eq "i") {
893 die "panic in word_html: $wtype$w\n";
898 # This is called from the top level, so I won't bother using
902 print "writing file...";
903 open TEXT
,">nasmdoc.texi";
907 print "\\input texinfo \@c -*-texinfo-*-\n";
908 print "\@c \%**start of header\n";
909 print "\@setfilename ",$metadata{'infofile'},".info\n";
910 print "\@dircategory ",$metadata{'category'},"\n";
911 print "\@direntry\n";
912 printf "* %-28s %s.\n",
913 sprintf('%s: (%s).', $metadata{'infoname'}, $metadata{'infofile'}),
914 $metadata{'infotitle'};
915 print "\@end direntry\n";
916 print "\@settitle ", $metadata{'title'},"\n";
917 print "\@setchapternewpage odd\n";
918 print "\@c \%**end of header\n";
921 print $metadata{'summary'}, "\n";
923 print "Copyright ",$metadata{'year'}," ",$metadata{'author'},"\n";
925 print $metadata{'license'}, "\n";
926 print "\@end ifinfo\n";
928 print "\@titlepage\n";
929 $title = $metadata{'title'};
930 $title =~ s/ - / --- /g;
931 print "\@title ${title}\n";
932 print "\@author ",$metadata{'author'},"\n";
935 print "\@vskip 0pt plus 1filll\n";
936 print "Copyright \@copyright{} ",$metadata{'year'},' ',$metadata{'author'},"\n";
938 print $metadata{'license'}, "\n";
939 print "\@end titlepage\n";
941 print "\@node Top, $tstruct_next{'Top'}, (dir), (dir)\n";
942 print "\@top ",$metadata{'infotitle'},"\n";
945 print $metadata{'summary'}, "\n";
946 print "\@end ifinfo\n";
951 for ($para = 0; $para <= $#pnames; $para++) {
952 $pname = $pnames[$para];
953 $pflags = $pflags[$para];
954 $ptype = substr($pflags,0,4);
956 $bulleting = 0, print "\@end itemize\n" if $bulleting && $ptype ne "bull";
957 print "\n"; # always one of these before a new paragraph
959 if ($ptype eq "chap") {
960 # Chapter heading. Begin a new node.
962 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
963 $pflags =~ /chap (.*) :(.*)/;
964 $node = "Chapter $1";
965 $title = "Chapter $1: ";
966 foreach $i (@
$pname) {
967 $ww = &word_texi
($i);
968 $title .= $ww unless $ww eq "\001";
970 print "\@node $node, $tstruct_next{$node}, $tstruct_prev{$node},";
971 print " $tstruct_up{$node}\n\@unnumbered $title\n";
972 } elsif ($ptype eq "appn") {
973 # Appendix heading. Begin a new node.
975 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
976 $pflags =~ /appn (.*) :(.*)/;
977 $node = "Appendix $1";
978 $title = "Appendix $1: ";
979 foreach $i (@
$pname) {
980 $ww = &word_texi
($i);
981 $title .= $ww unless $ww eq "\001";
983 print "\@node $node, $tstruct_next{$node}, $tstruct_prev{$node},";
984 print " $tstruct_up{$node}\n\@unnumbered $title\n";
985 } elsif ($ptype eq "head" || $ptype eq "subh") {
986 # Heading or subheading. Begin a new node.
988 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
989 $pflags =~ /.... (.*) :(.*)/;
990 $node = "Section $1";
992 foreach $i (@
$pname) {
993 $ww = &word_texi
($i);
994 $title .= $ww unless $ww eq "\001";
996 print "\@node $node, $tstruct_next{$node}, $tstruct_prev{$node},";
997 print " $tstruct_up{$node}\n";
998 $hdr = ($ptype eq "subh" ?
"\@unnumberedsubsec" : "\@unnumberedsec");
999 print "$hdr $title\n";
1000 } elsif ($ptype eq "code") {
1001 # Code paragraph. Surround with @example / @end example.
1002 print "\@example\n";
1003 foreach $i (@
$pname) {
1004 warn "code line longer than 68 chars: $i\n" if length $i > 68;
1010 print "\@end example\n";
1011 } elsif ($ptype eq "bull" || $ptype eq "norm") {
1012 # Ordinary paragraph, optionally bulleted. We wrap, FWIW.
1013 if ($ptype eq "bull") {
1014 $bulleting = 1, print "\@itemize \@bullet\n" if !$bulleting;
1021 do { $w = &word_texi
(shift @a); } while $w eq "\001"; # hack
1023 if ($wprev =~ /-$/ || $w eq ' ' || $w eq '' || $w eq undef) {
1024 if (length ($line . $wd) > 75) {
1025 $line =~ s/\s*$//; # trim trailing spaces
1028 $wd =~ s/^\s*//; # trim leading spaces
1034 } while ($w ne '' && $w ne undef);
1035 if ($line =~ /\S/) {
1036 $line =~ s/\s*$//; # trim trailing spaces
1046 print "\n\@contents\n\@bye\n";
1051 # Side effect of this procedure: update global `texiwdlen' to be the length
1052 # in chars of the formatted version of the word.
1057 return undef if $w eq '' || $w eq undef;
1058 $wtype = substr($w,0,2);
1059 $wmajt = substr($wtype,0,1);
1065 $w =~ s/<.*>// if $wmajt eq "w"; # remove web links
1066 substr($w,0,1) =~ tr/a-z/A-Z/, $capital = 0 if $capital;
1067 if ($wmajt eq "n" || $wtype eq "e " || $wtype eq "w ") {
1070 } elsif ($wtype eq "sp") {
1073 } elsif ($wtype eq "da") {
1076 } elsif ($wmajt eq "c" || $wtype eq "wc") {
1077 $texiwdlen = 2 + $wlen;
1078 return "\@code\{$w\}";
1079 } elsif ($wtype eq "es") {
1080 $texiwdlen = 1 + $wlen;
1081 return "\@emph\{${w}";
1082 } elsif ($wtype eq "ee") {
1083 $texiwdlen = 1 + $wlen;
1085 } elsif ($wtype eq "eo") {
1086 $texiwdlen = 2 + $wlen;
1087 return "\@emph\{${w}\}";
1088 } elsif ($wtype eq "x ") {
1089 $texiwdlen = 0; # we don't need it in this case
1090 $capital = 1; # hack
1092 } elsif ($wtype eq "xe") {
1093 $texiwdlen = 0; # we don't need it in this case
1095 } elsif ($wmajt eq "i") {
1096 $texiwdlen = 0; # we don't need it in this case
1099 die "panic in word_texi: $wtype$w\n";
1105 my $item, $i, $mpname, $title, $wd;
1107 $item = $tstruct_next{$topitem};
1111 $mpname = $tstruct_pname{$item};
1112 foreach $i (@
$mpname) {
1113 $wd = &word_texi
($i);
1114 $title .= $wd unless $wd eq "\001";
1116 print "* ${item}:: $title\n";
1117 $item = $tstruct_mnext{$item};
1119 print "* Index::\n" if $topitem eq "Top";
1120 print "\@end menu\n";
1124 my $itag, $ientry, @a, $wd, $item, $len;
1125 my $subnums = "123456789ABCDEFGHIJKLMNOPQRSTU" .
1126 "VWXYZabcdefghijklmnopqrstuvwxyz";
1128 print "\@ifinfo\n\@node Index, , $FIXMElastnode, Top\n";
1129 print "\@unnumbered Index\n\n\@menu\n";
1131 foreach $itag (@itags) {
1132 $ientry = $idxmap{$itag};
1137 $wd = &word_texi
($i);
1138 $item .= $wd, $len += $texiwdlen unless $wd eq "\001";
1141 foreach $node (@nodes) {
1142 next if !$idxnodes{$node,$itag};
1143 printf "* %s%s (%s): %s.\n",
1144 $item, " " x
(40-$len), substr($subnums,$i++,1), $node;
1147 print "\@end menu\n\@end ifinfo\n";
1151 # This is called from the top level, so I won't bother using
1154 # Build the index-tag text forms.
1155 print "building index entries...";
1158 my $ientry = $idxmap{$_};
1160 foreach $i (@
$ientry) {
1161 $ww = &word_hlp
($i,0);
1162 $title .= $ww unless $ww eq "\001";
1167 # Write the HPJ project-description file.
1168 print "writing .hpj file...";
1169 open HPJ
,">nasmdoc.hpj";
1170 print HPJ
"[OPTIONS]\ncompress=true\n";
1171 print HPJ
"title=NASM: The Netwide Assembler\noldkeyphrase=no\n\n";
1172 print HPJ
"[FILES]\nnasmdoc.rtf\n\n";
1173 print HPJ
"[CONFIG]\n";
1174 print HPJ
'CreateButton("btn_up", "&Up",'.
1175 ' "JumpContents(`nasmdoc.hlp'."'".')")';
1176 print HPJ
"\nBrowseButtons()\n";
1180 print "\n writing .rtf file...";
1181 open TEXT
,">nasmdoc.rtf";
1185 print "{\\rtf1\\ansi{\\fonttbl\n";
1186 print "\\f0\\froman Times New Roman;\\f1\\fmodern Courier New;\n";
1187 print "\\f2\\fswiss Arial;\\f3\\ftech Wingdings}\\deff0\n";
1188 print "#{\\footnote Top}\n";
1189 print "\${\\footnote Contents}\n";
1190 print "+{\\footnote browse:00000}\n";
1191 print "!{\\footnote DisableButton(\"btn_up\")}\n";
1192 print "\\keepn\\f2\\b\\fs30\\sb0\n";
1193 print "NASM: The Netwide Assembler\n";
1194 print "\\par\\pard\\plain\\sb120\n";
1195 print "This file documents NASM, the Netwide Assembler: an assembler \n";
1196 print "targetting the Intel x86 series of processors, with portable source.\n";
1201 $newpar = "\\par\\sb120\n";
1202 for ($para = 0; $para <= $#pnames; $para++) {
1203 $pname = $pnames[$para];
1204 $pflags = $pflags[$para];
1205 $ptype = substr($pflags,0,4);
1208 $newpar = "\\par\\sb120\n";
1210 if ($ptype eq "chap") {
1211 # Chapter heading. Begin a new node.
1213 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
1214 $pflags =~ /chap (.*) :(.*)/;
1215 $node = "Chapter $1";
1216 $title = $footnotetitle = "Chapter $1: ";
1217 foreach $i (@
$pname) {
1218 $ww = &word_hlp
($i,1);
1219 $title .= $ww, $footnotetitle .= &word_hlp
($i,0) unless $ww eq "\001";
1222 printf "#{\\footnote %s}\n", &hlp_sectkw
($node);
1223 print "\${\\footnote $footnotetitle}\n";
1224 printf "+{\\footnote browse:%05d}\n", ++$browse;
1225 printf "!{\\footnote ChangeButtonBinding(\"btn_up\"," .
1226 "\"JumpId(\`nasmdoc.hlp',\`%s')\");\n",
1227 &hlp_sectkw
($tstruct_up{$node});
1228 print "EnableButton(\"btn_up\")}\n";
1229 &hlp_keywords
($node);
1230 print "\\keepn\\f2\\b\\fs30\\sb60\\sa60\n";
1232 $newpar = "\\par\\pard\\plain\\sb120\n";
1233 } elsif ($ptype eq "appn") {
1234 # Appendix heading. Begin a new node.
1236 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
1237 $pflags =~ /appn (.*) :(.*)/;
1238 $node = "Appendix $1";
1239 $title = $footnotetitle = "Appendix $1: ";
1240 foreach $i (@
$pname) {
1241 $ww = &word_hlp
($i,1);
1242 $title .= $ww, $footnotetitle .= &word_hlp
($i,0) unless $ww eq "\001";
1245 printf "#{\\footnote %s}\n", &hlp_sectkw
($node);
1246 print "\${\\footnote $footnotetitle}\n";
1247 printf "+{\\footnote browse:%05d}\n", ++$browse;
1248 printf "!{\\footnote ChangeButtonBinding(\"btn_up\"," .
1249 "\"JumpId(\`nasmdoc.hlp',\`%s')\");\n",
1250 &hlp_sectkw
($tstruct_up{$node});
1251 print "EnableButton(\"btn_up\")}\n";
1252 &hlp_keywords
($node);
1253 print "\\keepn\\f2\\b\\fs30\\sb60\\sa60\n";
1255 $newpar = "\\par\\pard\\plain\\sb120\n";
1256 } elsif ($ptype eq "head" || $ptype eq "subh") {
1257 # Heading or subheading. Begin a new node.
1259 if $tstruct_level{$tstruct_next{$node}} > $tstruct_level{$node};
1260 $pflags =~ /.... (.*) :(.*)/;
1261 $node = "Section $1";
1262 $title = $footnotetitle = "$1. ";
1263 foreach $i (@
$pname) {
1264 $ww = &word_hlp
($i,1);
1265 $title .= $ww, $footnotetitle .= &word_hlp
($i,0) unless $ww eq "\001";
1268 printf "#{\\footnote %s}\n", &hlp_sectkw
($node);
1269 print "\${\\footnote $footnotetitle}\n";
1270 printf "+{\\footnote browse:%05d}\n", ++$browse;
1271 printf "!{\\footnote ChangeButtonBinding(\"btn_up\"," .
1272 "\"JumpId(\`nasmdoc.hlp',\`%s')\");\n",
1273 &hlp_sectkw
($tstruct_up{$node});
1274 print "EnableButton(\"btn_up\")}\n";
1275 &hlp_keywords
($node);
1276 print "\\keepn\\f2\\b\\fs30\\sb60\\sa60\n";
1278 $newpar = "\\par\\pard\\plain\\sb120\n";
1279 } elsif ($ptype eq "code") {
1281 print "\\keep\\f1\\sb120\n";
1282 foreach $i (@
$pname) {
1284 warn "code line longer than 68 chars: $i\n" if length $i > 68;
1288 print "$x\\par\\sb0\n";
1290 $newpar = "\\pard\\f0\\sb120\n";
1291 } elsif ($ptype eq "bull" || $ptype eq "norm") {
1292 # Ordinary paragraph, optionally bulleted. We wrap, FWIW.
1293 if ($ptype eq "bull") {
1294 print "\\tx360\\li360\\fi-360{\\f3\\'9F}\\tab\n";
1295 $newpar = "\\par\\pard\\sb120\n";
1297 $newpar = "\\par\\sb120\n";
1303 do { $w = &word_hlp
((shift @a),1); } while $w eq "\001"; # hack
1305 if ($w eq ' ' || $w eq '' || $w eq undef) {
1306 if (length ($line . $wd) > 75) {
1307 $line =~ s/\s*$//; # trim trailing spaces
1308 print "$line \n"; # and put one back
1310 $wd =~ s/^\s*//; # trim leading spaces
1316 } while ($w ne '' && $w ne undef);
1317 if ($line =~ /\S/) {
1318 $line =~ s/\s*$//; # trim trailing spaces
1331 my ($w, $docode) = @_;
1334 return undef if $w eq '' || $w eq undef;
1335 $wtype = substr($w,0,2);
1336 $wmajt = substr($wtype,0,1);
1341 $w =~ s/<.*>// if $wmajt eq "w"; # remove web links
1342 substr($w,0,length($w)-1) =~ s/-/\\\'AD/g if $wmajt ne "x"; #nonbreakhyphens
1343 if ($wmajt eq "n" || $wtype eq "e " || $wtype eq "w ") {
1345 } elsif ($wtype eq "sp") {
1347 } elsif ($wtype eq "da") {
1349 } elsif ($wmajt eq "c" || $wtype eq "wc") {
1350 $w =~ s/ /\\\'A0/g; # make spaces non-breaking
1351 return $docode ?
"{\\f1 ${w}}" : $w;
1352 } elsif ($wtype eq "es") {
1354 } elsif ($wtype eq "ee") {
1356 } elsif ($wtype eq "eo") {
1357 return "{\\i ${w}}";
1358 } elsif ($wtype eq "x ") {
1360 } elsif ($wtype eq "xe") {
1361 $w = &hlp_sectkw
($w);
1362 return "}{\\v ${w}}";
1363 } elsif ($wmajt eq "i") {
1366 die "panic in word_hlp: $wtype$w\n";
1372 my $item, $kword, $i, $mpname, $title;
1374 $item = $tstruct_next{$topitem};
1375 print "\\li360\\fi-360\n";
1378 $mpname = $tstruct_pname{$item};
1379 foreach $i (@
$mpname) {
1380 $ww = &word_hlp
($i, 0);
1381 $title .= $ww unless $ww eq "\001";
1383 $kword = &hlp_sectkw
($item);
1384 print "{\\uldb ${item}: $title}{\\v $kword}\\par\\sb0\n";
1385 $item = $tstruct_mnext{$item};
1387 print "\\pard\\sb120\n";
1392 $node =~ tr/A-Z/a-z/;
1393 $node =~ tr/- ./___/;
1399 my $pfx = "K{\\footnote ";
1401 foreach $i (0..$#itags) {
1402 (print $pfx,$hlp_index[$i]), $pfx = ";\n", $done++
1403 if $idxnodes{$node,$itags[$i]};
1405 print "}\n" if $done;
1408 # Make tree structures. $tstruct_* is top-level and global.
1410 my ($item, $level) = @_;
1413 $tstruct_pname{$item} = $pname;
1414 $tstruct_next{$tstruct_previtem} = $item;
1415 $tstruct_prev{$item} = $tstruct_previtem;
1416 $tstruct_level{$item} = $level;
1417 $tstruct_up{$item} = $tstruct_last[$level-1];
1418 $tstruct_mnext{$tstruct_last[$level]} = $item;
1419 $tstruct_last[$level] = $item;
1420 for ($i=$level+1; $i<$MAXLEVEL; $i++) { $tstruct_last[$i] = undef; }
1421 $tstruct_previtem = $item;
1426 # This produces documentation intermediate paragraph format; this is
1427 # basically the digested output of the front end. Intended for use
1428 # by future backends, instead of putting it all in the same script.
1431 open(PARAS
, "> nasmdoc.dip");
1432 foreach $k (keys(%metadata)) {
1433 print PARAS
'meta :', $k, "\n";
1434 print PARAS
$metadata{$k},"\n";
1436 for ($para = 0; $para <= $#pnames; $para++) {
1437 print PARAS
$pflags[$para], "\n";
1438 print PARAS
join("\037", @
{$pnames[$para]}, "\n");
1440 foreach $k (@itags) {
1441 print PARAS
'indx :', $k, "\n";
1442 print PARAS
join("\037", @
{$idxmap{$k}}), "\n";