home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / pstruct < prev    next >
Text File  |  2004-02-17  |  36KB  |  1,360 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4. #
  5. #
  6. #   c2ph (aka pstruct)
  7. #   Tom Christiansen, <tchrist@convex.com>
  8. #
  9. #   As pstruct, dump C structures as generated from 'cc -g -S' stabs.
  10. #   As c2ph, do this PLUS generate perl code for getting at the structures.
  11. #
  12. #   See the usage message for more.  If this isn't enough, read the code.
  13. #
  14.  
  15. =head1 NAME
  16.  
  17. c2ph, pstruct - Dump C structures as generated from C<cc -g -S> stabs
  18.  
  19. =head1 SYNOPSIS
  20.  
  21.     c2ph [-dpnP] [var=val] [files ...]
  22.  
  23. =head2 OPTIONS
  24.  
  25.     Options:
  26.  
  27.     -w    wide; short for: type_width=45 member_width=35 offset_width=8
  28.     -x    hex; short for:  offset_fmt=x offset_width=08 size_fmt=x size_width=04
  29.  
  30.     -n    do not generate perl code  (default when invoked as pstruct)
  31.     -p    generate perl code         (default when invoked as c2ph)
  32.     -v    generate perl code, with C decls as comments
  33.  
  34.     -i    do NOT recompute sizes for intrinsic datatypes
  35.     -a    dump information on intrinsics also
  36.  
  37.     -t    trace execution
  38.     -d    spew reams of debugging output
  39.  
  40.     -slist  give comma-separated list a structures to dump
  41.  
  42. =head1 DESCRIPTION
  43.  
  44. The following is the old c2ph.doc documentation by Tom Christiansen
  45. <tchrist@perl.com>
  46. Date: 25 Jul 91 08:10:21 GMT
  47.  
  48. Once upon a time, I wrote a program called pstruct.  It was a perl
  49. program that tried to parse out C structures and display their member
  50. offsets for you.  This was especially useful for people looking at
  51. binary dumps or poking around the kernel.
  52.  
  53. Pstruct was not a pretty program.  Neither was it particularly robust.
  54. The problem, you see, was that the C compiler was much better at parsing
  55. C than I could ever hope to be.
  56.  
  57. So I got smart:  I decided to be lazy and let the C compiler parse the C,
  58. which would spit out debugger stabs for me to read.  These were much
  59. easier to parse.  It's still not a pretty program, but at least it's more
  60. robust.
  61.  
  62. Pstruct takes any .c or .h files, or preferably .s ones, since that's
  63. the format it is going to massage them into anyway, and spits out
  64. listings like this:
  65.  
  66.  struct tty {
  67.    int                          tty.t_locker                         000      4
  68.    int                          tty.t_mutex_index                    004      4
  69.    struct tty *                 tty.t_tp_virt                        008      4
  70.    struct clist                 tty.t_rawq                           00c     20
  71.      int                        tty.t_rawq.c_cc                      00c      4
  72.      int                        tty.t_rawq.c_cmax                    010      4
  73.      int                        tty.t_rawq.c_cfx                     014      4
  74.      int                        tty.t_rawq.c_clx                     018      4
  75.      struct tty *               tty.t_rawq.c_tp_cpu                  01c      4
  76.      struct tty *               tty.t_rawq.c_tp_iop                  020      4
  77.      unsigned char *            tty.t_rawq.c_buf_cpu                 024      4
  78.      unsigned char *            tty.t_rawq.c_buf_iop                 028      4
  79.    struct clist                 tty.t_canq                           02c     20
  80.      int                        tty.t_canq.c_cc                      02c      4
  81.      int                        tty.t_canq.c_cmax                    030      4
  82.      int                        tty.t_canq.c_cfx                     034      4
  83.      int                        tty.t_canq.c_clx                     038      4
  84.      struct tty *               tty.t_canq.c_tp_cpu                  03c      4
  85.      struct tty *               tty.t_canq.c_tp_iop                  040      4
  86.      unsigned char *            tty.t_canq.c_buf_cpu                 044      4
  87.      unsigned char *            tty.t_canq.c_buf_iop                 048      4
  88.    struct clist                 tty.t_outq                           04c     20
  89.      int                        tty.t_outq.c_cc                      04c      4
  90.      int                        tty.t_outq.c_cmax                    050      4
  91.      int                        tty.t_outq.c_cfx                     054      4
  92.      int                        tty.t_outq.c_clx                     058      4
  93.      struct tty *               tty.t_outq.c_tp_cpu                  05c      4
  94.      struct tty *               tty.t_outq.c_tp_iop                  060      4
  95.      unsigned char *            tty.t_outq.c_buf_cpu                 064      4
  96.      unsigned char *            tty.t_outq.c_buf_iop                 068      4
  97.    (*int)()                     tty.t_oproc_cpu                      06c      4
  98.    (*int)()                     tty.t_oproc_iop                      070      4
  99.    (*int)()                     tty.t_stopproc_cpu                   074      4
  100.    (*int)()                     tty.t_stopproc_iop                   078      4
  101.    struct thread *              tty.t_rsel                           07c      4
  102.  
  103. etc.
  104.  
  105.  
  106. Actually, this was generated by a particular set of options.  You can control
  107. the formatting of each column, whether you prefer wide or fat, hex or decimal,
  108. leading zeroes or whatever.
  109.  
  110. All you need to be able to use this is a C compiler than generates
  111. BSD/GCC-style stabs.  The B<-g> option on native BSD compilers and GCC
  112. should get this for you.
  113.  
  114. To learn more, just type a bogus option, like B<-\?>, and a long usage message
  115. will be provided.  There are a fair number of possibilities.
  116.  
  117. If you're only a C programmer, than this is the end of the message for you.
  118. You can quit right now, and if you care to, save off the source and run it
  119. when you feel like it.  Or not.
  120.  
  121.  
  122.  
  123. But if you're a perl programmer, then for you I have something much more
  124. wondrous than just a structure offset printer.
  125.  
  126. You see, if you call pstruct by its other incybernation, c2ph, you have a code
  127. generator that translates C code into perl code!  Well, structure and union
  128. declarations at least, but that's quite a bit.
  129.  
  130. Prior to this point, anyone programming in perl who wanted to interact
  131. with C programs, like the kernel, was forced to guess the layouts of
  132. the C structures, and then hardwire these into his program.  Of course,
  133. when you took your wonderfully crafted program to a system where the
  134. sgtty structure was laid out differently, your program broke.  Which is
  135. a shame.
  136.  
  137. We've had Larry's h2ph translator, which helped, but that only works on
  138. cpp symbols, not real C, which was also very much needed.  What I offer
  139. you is a symbolic way of getting at all the C structures.  I've couched
  140. them in terms of packages and functions.  Consider the following program:
  141.  
  142.     #!/usr/local/bin/perl
  143.  
  144.     require 'syscall.ph';
  145.     require 'sys/time.ph';
  146.     require 'sys/resource.ph';
  147.  
  148.     $ru = "\0" x &rusage'sizeof();
  149.  
  150.     syscall(&SYS_getrusage, &RUSAGE_SELF, $ru)      && die "getrusage: $!";
  151.  
  152.     @ru = unpack($t = &rusage'typedef(), $ru);
  153.  
  154.     $utime =  $ru[ &rusage'ru_utime + &timeval'tv_sec  ]
  155.        + ($ru[ &rusage'ru_utime + &timeval'tv_usec ]) / 1e6;
  156.  
  157.     $stime =  $ru[ &rusage'ru_stime + &timeval'tv_sec  ]
  158.        + ($ru[ &rusage'ru_stime + &timeval'tv_usec ]) / 1e6;
  159.  
  160.     printf "you have used %8.3fs+%8.3fu seconds.\n", $utime, $stime;
  161.  
  162.  
  163. As you see, the name of the package is the name of the structure.  Regular
  164. fields are just their own names.  Plus the following accessor functions are
  165. provided for your convenience:
  166.  
  167.     struct    This takes no arguments, and is merely the number of first-level
  168.         elements in the structure.  You would use this for indexing
  169.         into arrays of structures, perhaps like this
  170.  
  171.  
  172.             $usec = $u[ &user'u_utimer
  173.                 + (&ITIMER_VIRTUAL * &itimerval'struct)
  174.                 + &itimerval'it_value
  175.                 + &timeval'tv_usec
  176.                   ];
  177.  
  178.     sizeof       Returns the bytes in the structure, or the member if
  179.              you pass it an argument, such as
  180.  
  181.             &rusage'sizeof(&rusage'ru_utime)
  182.  
  183.     typedef      This is the perl format definition for passing to pack and
  184.              unpack.  If you ask for the typedef of a nothing, you get
  185.              the whole structure, otherwise you get that of the member
  186.              you ask for.  Padding is taken care of, as is the magic to
  187.              guarantee that a union is unpacked into all its aliases.
  188.              Bitfields are not quite yet supported however.
  189.  
  190.     offsetof    This function is the byte offset into the array of that
  191.         member.  You may wish to use this for indexing directly
  192.         into the packed structure with vec() if you're too lazy
  193.         to unpack it.
  194.  
  195.     typeof    Not to be confused with the typedef accessor function, this
  196.         one returns the C type of that field.  This would allow
  197.         you to print out a nice structured pretty print of some
  198.         structure without knoning anything about it beforehand.
  199.         No args to this one is a noop.  Someday I'll post such
  200.         a thing to dump out your u structure for you.
  201.  
  202.  
  203. The way I see this being used is like basically this:
  204.  
  205.     % h2ph <some_include_file.h  >  /usr/lib/perl/tmp.ph
  206.     % c2ph  some_include_file.h  >> /usr/lib/perl/tmp.ph
  207.     % install
  208.  
  209. It's a little tricker with c2ph because you have to get the includes right.
  210. I can't know this for your system, but it's not usually too terribly difficult.
  211.  
  212. The code isn't pretty as I mentioned  -- I never thought it would be a 1000-
  213. line program when I started, or I might not have begun. :-)  But I would have
  214. been less cavalier in how the parts of the program communicated with each
  215. other, etc.  It might also have helped if I didn't have to divine the makeup
  216. of the stabs on the fly, and then account for micro differences between my
  217. compiler and gcc.
  218.  
  219. Anyway, here it is.  Should run on perl v4 or greater.  Maybe less.
  220.  
  221.  
  222.  --tom
  223.  
  224. =cut
  225.  
  226. $RCSID = '$Id: c2ph,v 1.7 95/10/28 10:41:47 tchrist Exp Locker: tchrist $';
  227.  
  228.  
  229. ######################################################################
  230.  
  231. # some handy data definitions.   many of these can be reset later.
  232.  
  233. $bitorder = 'b';  # ascending; set to B for descending bit fields
  234.  
  235. %intrinsics =
  236. %template = (
  237.     'char',             'c',
  238.     'unsigned char',         'C',
  239.     'short',            's',
  240.     'short int',        's',
  241.     'unsigned short',        'S',
  242.     'unsigned short int',    'S',
  243.     'short unsigned int',    'S',
  244.     'int',            'i',
  245.     'unsigned int',        'I',
  246.     'long',            'l',
  247.     'long int',            'l',
  248.     'unsigned long',        'L',
  249.     'unsigned long',        'L',
  250.     'long unsigned int',    'L',
  251.     'unsigned long int',    'L',
  252.     'long long',        'q',
  253.     'long long int',        'q',
  254.     'unsigned long long',    'Q',
  255.     'unsigned long long int',    'Q',
  256.     'float',            'f',
  257.     'double',            'd',
  258.     'pointer',            'p',
  259.     'null',            'x',
  260.     'neganull',            'X',
  261.     'bit',            $bitorder,
  262. );
  263.  
  264. &buildscrunchlist;
  265. delete $intrinsics{'neganull'};
  266. delete $intrinsics{'bit'};
  267. delete $intrinsics{'null'};
  268.  
  269. # use -s to recompute sizes
  270. %sizeof = (
  271.     'char',             '1',
  272.     'unsigned char',         '1',
  273.     'short',            '2',
  274.     'short int',        '2',
  275.     'unsigned short',        '2',
  276.     'unsigned short int',    '2',
  277.     'short unsigned int',    '2',
  278.     'int',            '4',
  279.     'unsigned int',        '4',
  280.     'long',            '4',
  281.     'long int',            '4',
  282.     'unsigned long',        '4',
  283.     'unsigned long int',    '4',
  284.     'long unsigned int',    '4',
  285.     'long long',        '8',
  286.     'long long int',        '8',
  287.     'unsigned long long',    '8',
  288.     'unsigned long long int',    '8',
  289.     'float',            '4',
  290.     'double',            '8',
  291.     'pointer',            '4',
  292. );
  293.  
  294. ($type_width, $member_width, $offset_width, $size_width) = (20, 20, 6, 5);
  295.  
  296. ($offset_fmt, $size_fmt) = ('d', 'd');
  297.  
  298. $indent = 2;
  299.  
  300. $CC = 'cc';
  301. $CFLAGS = '-gstabs -S';
  302. $DEFINES = '';
  303.  
  304. $perl++ if $0 =~ m#/?c2ph$#;
  305.  
  306. require 'getopts.pl';
  307.  
  308. use File::Temp 'tempdir';
  309.  
  310. eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_]+=)(.*)/ && shift;
  311.  
  312. &Getopts('aixdpvtnws:') || &usage(0);
  313.  
  314. $opt_d && $debug++;
  315. $opt_t && $trace++;
  316. $opt_p && $perl++;
  317. $opt_v && $verbose++;
  318. $opt_n && ($perl = 0);
  319.  
  320. if ($opt_w) {
  321.     ($type_width, $member_width, $offset_width) = (45, 35, 8);
  322. }
  323. if ($opt_x) {
  324.     ($offset_fmt, $offset_width, $size_fmt, $size_width) = ( 'x', '08', 'x', 04 );
  325. }
  326.  
  327. eval '$'.$1.'$2;' while $ARGV[0] =~ /^([A-Za-z_]+=)(.*)/ && shift;
  328.  
  329. sub PLUMBER {
  330.     select(STDERR);
  331.     print "oops, apperent pager foulup\n";
  332.     $isatty++;
  333.     &usage(1);
  334. }
  335.  
  336. sub usage {
  337.     local($oops) = @_;
  338.     unless (-t STDOUT) {
  339.     select(STDERR);
  340.     } elsif (!$oops) {
  341.     $isatty++;
  342.     $| = 1;
  343.     print "hit <RETURN> for further explanation: ";
  344.     <STDIN>;
  345.     open (PIPE, "|". ($ENV{PAGER} || 'more'));
  346.     $SIG{PIPE} = PLUMBER;
  347.     select(PIPE);
  348.     }
  349.  
  350.     print "usage: $0 [-dpnP] [var=val] [files ...]\n";
  351.  
  352.     exit unless $isatty;
  353.  
  354.     print <<EOF;
  355.  
  356. Options:
  357.  
  358. -w    wide; short for: type_width=45 member_width=35 offset_width=8
  359. -x    hex; short for:  offset_fmt=x offset_width=08 size_fmt=x size_width=04
  360.  
  361. -n      do not generate perl code  (default when invoked as pstruct)
  362. -p      generate perl code         (default when invoked as c2ph)
  363. -v    generate perl code, with C decls as comments
  364.  
  365. -i    do NOT recompute sizes for intrinsic datatypes
  366. -a    dump information on intrinsics also
  367.  
  368. -t     trace execution
  369. -d    spew reams of debugging output
  370.  
  371. -slist  give comma-separated list a structures to dump
  372.  
  373.  
  374. Var Name        Default Value    Meaning
  375.  
  376. EOF
  377.  
  378.     &defvar('CC', 'which_compiler to call');
  379.     &defvar('CFLAGS', 'how to generate *.s files with stabs');
  380.     &defvar('DEFINES','any extra cflags or cpp defines, like -I, -D, -U');
  381.  
  382.     print "\n";
  383.  
  384.     &defvar('type_width', 'width of type field   (column 1)');
  385.     &defvar('member_width', 'width of member field (column 2)');
  386.     &defvar('offset_width', 'width of offset field (column 3)');
  387.     &defvar('size_width', 'width of size field   (column 4)');
  388.  
  389.     print "\n";
  390.  
  391.     &defvar('offset_fmt', 'sprintf format type for offset');
  392.     &defvar('size_fmt', 'sprintf format type for size');
  393.  
  394.     print "\n";
  395.  
  396.     &defvar('indent', 'how far to indent each nesting level');
  397.  
  398.    print <<'EOF';
  399.  
  400.     If any *.[ch] files are given, these will be catted together into
  401.     a temporary *.c file and sent through:
  402.         $CC $CFLAGS $DEFINES
  403.     and the resulting *.s groped for stab information.  If no files are
  404.     supplied, then stdin is read directly with the assumption that it
  405.     contains stab information.  All other liens will be ignored.  At
  406.     most one *.s file should be supplied.
  407.  
  408. EOF
  409.     close PIPE;
  410.     exit 1;
  411. }
  412.  
  413. sub defvar {
  414.     local($var, $msg) = @_;
  415.     printf "%-16s%-15s  %s\n", $var, eval "\$$var", $msg;
  416. }
  417.  
  418. $recurse = 1;
  419.  
  420. if (@ARGV) {
  421.     if (grep(!/\.[csh]$/,@ARGV)) {
  422.     warn "Only *.[csh] files expected!\n";
  423.     &usage;
  424.     }
  425.     elsif (grep(/\.s$/,@ARGV)) {
  426.     if (@ARGV > 1) {
  427.         warn "Only one *.s file allowed!\n";
  428.         &usage;
  429.     }
  430.     }
  431.     elsif (@ARGV == 1 && $ARGV[0] =~ /\.c$/) {
  432.     local($dir, $file) = $ARGV[0] =~ m#(.*/)?(.*)$#;
  433.     $chdir = "cd $dir; " if $dir;
  434.     &system("$chdir$CC $CFLAGS $DEFINES $file") && exit 1;
  435.     $ARGV[0] =~ s/\.c$/.s/;
  436.     }
  437.     else {
  438.     $TMPDIR = tempdir(CLEANUP => 1);
  439.     $TMP = "$TMPDIR/c2ph.$$.c";
  440.     &system("cat @ARGV > $TMP") && exit 1;
  441.     &system("cd $TMPDIR; $CC $CFLAGS $DEFINES $TMP") && exit 1;
  442.     unlink $TMP;
  443.     $TMP =~ s/\.c$/.s/;
  444.     @ARGV = ($TMP);
  445.     }
  446. }
  447.  
  448. if ($opt_s) {
  449.     for (split(/[\s,]+/, $opt_s)) {
  450.     $interested{$_}++;
  451.     }
  452. }
  453.  
  454.  
  455. $| = 1 if $debug;
  456.  
  457. main: {
  458.  
  459.     if ($trace) {
  460.     if (-t && !@ARGV) {
  461.         print STDERR "reading from your keyboard: ";
  462.     } else {
  463.         print STDERR "reading from " . (@ARGV ? "@ARGV" : "<STDIN>").": ";
  464.     }
  465.     }
  466.  
  467. STAB: while (<>) {
  468.     if ($trace && !($. % 10)) {
  469.         $lineno = $..'';
  470.         print STDERR $lineno, "\b" x length($lineno);
  471.     }
  472.     next unless /^\s*\.stabs\s+/;
  473.     $line = $_;
  474.     s/^\s*\.stabs\s+//;
  475.     if (s/\\\\"[d,]+$//) {
  476.         $saveline .= $line;
  477.         $savebar  = $_;
  478.         next STAB;
  479.     }
  480.     if ($saveline) {
  481.         s/^"//;
  482.         $_ = $savebar . $_;
  483.         $line = $saveline;
  484.     }
  485.     &stab;
  486.     $savebar = $saveline = undef;
  487.     }
  488.     print STDERR "$.\n" if $trace;
  489.     unlink $TMP if $TMP;
  490.  
  491.     &compute_intrinsics if $perl && !$opt_i;
  492.  
  493.     print STDERR "resolving types\n" if $trace;
  494.  
  495.     &resolve_types;
  496.     &adjust_start_addrs;
  497.  
  498.     $sum = 2 + $type_width + $member_width;
  499.     $pmask1 = "%-${type_width}s %-${member_width}s";
  500.     $pmask2 = "%-${sum}s %${offset_width}${offset_fmt}%s %${size_width}${size_fmt}%s";
  501.  
  502.  
  503.  
  504.     if ($perl) {
  505.     # resolve template -- should be in stab define order, but even this isn't enough.
  506.     print STDERR "\nbuilding type templates: " if $trace;
  507.     for $i (reverse 0..$#type) {
  508.         next unless defined($name = $type[$i]);
  509.         next unless defined $struct{$name};
  510.         ($iname = $name) =~ s/\..*//;
  511.         $build_recursed = 0;
  512.         &build_template($name) unless defined $template{&psou($name)} ||
  513.                     $opt_s && !$interested{$iname};
  514.     }
  515.     print STDERR "\n\n" if $trace;
  516.     }
  517.  
  518.     print STDERR "dumping structs: " if $trace;
  519.  
  520.     local($iam);
  521.  
  522.  
  523.  
  524.     foreach $name (sort keys %struct) {
  525.     ($iname = $name) =~ s/\..*//;
  526.     next if $opt_s && !$interested{$iname};
  527.     print STDERR "$name " if $trace;
  528.  
  529.     undef @sizeof;
  530.     undef @typedef;
  531.     undef @offsetof;
  532.     undef @indices;
  533.     undef @typeof;
  534.     undef @fieldnames;
  535.  
  536.     $mname = &munge($name);
  537.  
  538.     $fname = &psou($name);
  539.  
  540.     print "# " if $perl && $verbose;
  541.     $pcode = '';
  542.     print "$fname {\n" if !$perl || $verbose;
  543.     $template{$fname} = &scrunch($template{$fname}) if $perl;
  544.     &pstruct($name,$name,0);
  545.     print "# " if $perl && $verbose;
  546.     print "}\n" if !$perl || $verbose;
  547.     print "\n" if $perl && $verbose;
  548.  
  549.     if ($perl) {
  550.         print "$pcode";
  551.  
  552.         printf("\nsub %-32s { %4d; }\n\n", "${mname}'struct", $countof{$name});
  553.  
  554.         print <<EOF;
  555. sub ${mname}'typedef {
  556.     local(\$${mname}'index) = shift;
  557.     defined \$${mname}'index
  558.     ? \$${mname}'typedef[\$${mname}'index]
  559.     : \$${mname}'typedef;
  560. }
  561. EOF
  562.  
  563.         print <<EOF;
  564. sub ${mname}'sizeof {
  565.     local(\$${mname}'index) = shift;
  566.     defined \$${mname}'index
  567.     ? \$${mname}'sizeof[\$${mname}'index]
  568.     : \$${mname}'sizeof;
  569. }
  570. EOF
  571.  
  572.         print <<EOF;
  573. sub ${mname}'offsetof {
  574.     local(\$${mname}'index) = shift;
  575.     defined \$${mname}index
  576.     ? \$${mname}'offsetof[\$${mname}'index]
  577.     : \$${mname}'sizeof;
  578. }
  579. EOF
  580.  
  581.         print <<EOF;
  582. sub ${mname}'typeof {
  583.     local(\$${mname}'index) = shift;
  584.     defined \$${mname}index
  585.     ? \$${mname}'typeof[\$${mname}'index]
  586.     : '$name';
  587. }
  588. EOF
  589.  
  590.         print <<EOF;
  591. sub ${mname}'fieldnames {
  592.     \@${mname}'fieldnames;
  593. }
  594. EOF
  595.  
  596.     $iam = ($isastruct{$name} && 's') || ($isaunion{$name} && 'u');
  597.  
  598.         print <<EOF;
  599. sub ${mname}'isastruct {
  600.     '$iam';
  601. }
  602. EOF
  603.  
  604.         print "\$${mname}'typedef = '" . &scrunch($template{$fname})
  605.         . "';\n";
  606.  
  607.         print "\$${mname}'sizeof = $sizeof{$name};\n\n";
  608.  
  609.  
  610.         print "\@${mname}'indices = (", &squishseq(@indices), ");\n";
  611.  
  612.         print "\n";
  613.  
  614.         print "\@${mname}'typedef[\@${mname}'indices] = (",
  615.             join("\n\t", '', @typedef), "\n    );\n\n";
  616.         print "\@${mname}'sizeof[\@${mname}'indices] = (",
  617.             join("\n\t", '', @sizeof), "\n    );\n\n";
  618.         print "\@${mname}'offsetof[\@${mname}'indices] = (",
  619.             join("\n\t", '', @offsetof), "\n    );\n\n";
  620.         print "\@${mname}'typeof[\@${mname}'indices] = (",
  621.             join("\n\t", '', @typeof), "\n    );\n\n";
  622.         print "\@${mname}'fieldnames[\@${mname}'indices] = (",
  623.             join("\n\t", '', @fieldnames), "\n    );\n\n";
  624.  
  625.         $template_printed{$fname}++;
  626.         $size_printed{$fname}++;
  627.     }
  628.     print "\n";
  629.     }
  630.  
  631.     print STDERR "\n" if $trace;
  632.  
  633.     unless ($perl && $opt_a) {
  634.     print "\n1;\n" if $perl;
  635.     exit;
  636.     }
  637.  
  638.  
  639.  
  640.     foreach $name (sort bysizevalue keys %intrinsics) {
  641.     next if $size_printed{$name};
  642.     print '$',&munge($name),"'sizeof = ", $sizeof{$name}, ";\n";
  643.     }
  644.  
  645.     print "\n";
  646.  
  647.     sub bysizevalue { $sizeof{$a} <=> $sizeof{$b}; }
  648.  
  649.  
  650.     foreach $name (sort keys %intrinsics) {
  651.     print '$',&munge($name),"'typedef = '", $template{$name}, "';\n";
  652.     }
  653.  
  654.     print "\n1;\n" if $perl;
  655.  
  656.     exit;
  657. }
  658.  
  659. ########################################################################################
  660.  
  661.  
  662. sub stab {
  663.     next unless $continued || /:[\$\w]+(\(\d+,\d+\))?=[\*\$\w]+/;  # (\d+,\d+) is for sun
  664.     s/"//                         || next;
  665.     s/",([x\d]+),([x\d]+),([x\d]+),.*//         || next;
  666.  
  667.     next if /^\s*$/;
  668.  
  669.     $size = $3 if $3;
  670.     $_ = $continued . $_ if length($continued);
  671.     if (s/\\\\$//) {
  672.       # if last 2 chars of string are '\\' then stab is continued
  673.       # in next stab entry
  674.       chop;
  675.       $continued = $_;
  676.       next;
  677.     }
  678.     $continued = '';
  679.  
  680.  
  681.     $line = $_;
  682.  
  683.     if (($name, $pdecl) = /^([\$ \w]+):[tT]((\d+)(=[rufs*](\d+))+)$/) {
  684.     print "$name is a typedef for some funky pointers: $pdecl\n" if $debug;
  685.     &pdecl($pdecl);
  686.     next;
  687.     }
  688.  
  689.  
  690.  
  691.     if (/(([ \w]+):t(\d+|\(\d+,\d+\)))=r?(\d+|\(\d+,\d+\))(;\d+;\d+;)?/) {
  692.     local($ident) = $2;
  693.     push(@intrinsics, $ident);
  694.     $typeno = &typeno($3);
  695.     $type[$typeno] = $ident;
  696.     print STDERR "intrinsic $ident in new type $typeno\n" if $debug;
  697.     next;
  698.     }
  699.  
  700.     if (($name, $typeordef, $typeno, $extra, $struct, $_)
  701.     = /^([\$ \w]+):([ustT])(\d+|\(\d+,\d+\))(=[rufs*](\d+))?(.*)$/)
  702.     {
  703.     $typeno = &typeno($typeno);  # sun foolery
  704.     }
  705.     elsif (/^[\$\w]+:/) {
  706.     next; # variable
  707.     }
  708.     else {
  709.     warn "can't grok stab: <$_> in: $line " if $_;
  710.     next;
  711.     }
  712.  
  713.     #warn "got size $size for $name\n";
  714.     $sizeof{$name} = $size if $size;
  715.  
  716.     s/;[-\d]*;[-\d]*;$//;  # we don't care about ranges
  717.  
  718.     $typenos{$name} = $typeno;
  719.  
  720.     unless (defined $type[$typeno]) {
  721.     &panic("type 0??") unless $typeno;
  722.     $type[$typeno] = $name unless defined $type[$typeno];
  723.     printf "new type $typeno is $name" if $debug;
  724.     if ($extra =~ /\*/ && defined $type[$struct]) {
  725.         print ", a typedef for a pointer to " , $type[$struct] if $debug;
  726.     }
  727.     } else {
  728.     printf "%s is type %d", $name, $typeno if $debug;
  729.     print ", a typedef for " , $type[$typeno] if $debug;
  730.     }
  731.     print "\n" if $debug;
  732.     #next unless $extra =~ /[su*]/;
  733.  
  734.     #$type[$struct] = $name;
  735.  
  736.     if ($extra =~ /[us*]/) {
  737.     &sou($name, $extra);
  738.     $_ = &sdecl($name, $_, 0);
  739.     }
  740.     elsif (/^=ar/) {
  741.     print "it's a bare array typedef -- that's pretty sick\n" if $debug;
  742.     $_ = "$typeno$_";
  743.     $scripts = '';
  744.     $_ = &adecl($_,1);
  745.  
  746.     }
  747.     elsif (s/((\w+):t(\d+|\(\d+,\d+\)))?=r?(;\d+;\d+;)?//) {  # the ?'s are for gcc
  748.     push(@intrinsics, $2);
  749.     $typeno = &typeno($3);
  750.     $type[$typeno] = $2;
  751.     print STDERR "intrinsic $2 in new type $typeno\n" if $debug;
  752.     }
  753.     elsif (s/^=e//) { # blessed be thy compiler; mine won't do this
  754.     &edecl;
  755.     }
  756.     else {
  757.     warn "Funny remainder for $name on line $_ left in $line " if $_;
  758.     }
  759. }
  760.  
  761. sub typeno {  # sun thinks types are (0,27) instead of just 27
  762.     local($_) = @_;
  763.     s/\(\d+,(\d+)\)/$1/;
  764.     $_;
  765. }
  766.  
  767. sub pstruct {
  768.     local($what,$prefix,$base) = @_;
  769.     local($field, $fieldname, $typeno, $count, $offset, $entry);
  770.     local($fieldtype);
  771.     local($type, $tname);
  772.     local($mytype, $mycount, $entry2);
  773.     local($struct_count) = 0;
  774.     local($pad, $revpad, $length, $prepad, $lastoffset, $lastlength, $fmt);
  775.     local($bits,$bytes);
  776.     local($template);
  777.  
  778.  
  779.     local($mname) = &munge($name);
  780.  
  781.     sub munge {
  782.     local($_) = @_;
  783.     s/[\s\$\.]/_/g;
  784.     $_;
  785.     }
  786.  
  787.     local($sname) = &psou($what);
  788.  
  789.     $nesting++;
  790.  
  791.     for $field (split(/;/, $struct{$what})) {
  792.     $pad = $prepad = 0;
  793.     $entry = '';
  794.     ($fieldname, $typeno, $count, $offset, $length) = split(/,/, $field);
  795.  
  796.     $type = $type[$typeno];
  797.  
  798.     $type =~ /([^[]*)(\[.*\])?/;
  799.     $mytype = $1;
  800.     $count .= $2;
  801.     $fieldtype = &psou($mytype);
  802.  
  803.     local($fname) = &psou($name);
  804.  
  805.     if ($build_templates) {
  806.  
  807.         $pad = ($offset - ($lastoffset + $lastlength))/8
  808.         if defined $lastoffset;
  809.  
  810.         if (! $finished_template{$sname}) {
  811.         if ($isaunion{$what}) {
  812.             $template{$sname} .= 'X' x $revpad . ' '    if $revpad;
  813.         } else {
  814.             $template{$sname} .= 'x' x $pad    . ' '    if $pad;
  815.         }
  816.         }
  817.  
  818.         $template = &fetch_template($type);
  819.         &repeat_template($template,$count);
  820.  
  821.         if (! $finished_template{$sname}) {
  822.         $template{$sname} .= $template;
  823.         }
  824.  
  825.         $revpad = $length/8 if $isaunion{$what};
  826.  
  827.         ($lastoffset, $lastlength) = ($offset, $length);
  828.  
  829.     } else {
  830.         print '# ' if $perl && $verbose;
  831.         $entry = sprintf($pmask1,
  832.             ' ' x ($nesting * $indent) . $fieldtype,
  833.             "$prefix.$fieldname" . $count);
  834.  
  835.         $entry =~ s/(\*+)( )/$2$1/;
  836.  
  837.         printf $pmask2,
  838.             $entry,
  839.             ($base+$offset)/8,
  840.             ($bits = ($base+$offset)%8) ? ".$bits" : "  ",
  841.             $length/8,
  842.             ($bits = $length % 8) ? ".$bits": ""
  843.             if !$perl || $verbose;
  844.  
  845.         if ($perl) {
  846.         $template = &fetch_template($type);
  847.         &repeat_template($template,$count);
  848.         }
  849.  
  850.         if ($perl && $nesting == 1) {
  851.  
  852.         push(@sizeof, int($length/8) .",\t# $fieldname");
  853.         push(@offsetof, int($offset/8) .",\t# $fieldname");
  854.         local($little) = &scrunch($template);
  855.         push(@typedef, "'$little', \t# $fieldname");
  856.         $type =~ s/(struct|union) //;
  857.         push(@typeof, "'$mytype" . ($count ? $count : '') .
  858.             "',\t# $fieldname");
  859.         push(@fieldnames, "'$fieldname',");
  860.         }
  861.  
  862.         print '  ', ' ' x $indent x $nesting, $template
  863.                 if $perl && $verbose;
  864.  
  865.         print "\n" if !$perl || $verbose;
  866.  
  867.     }
  868.     if ($perl) {
  869.         local($mycount) = defined $struct{$mytype} ? $countof{$mytype} : 1;
  870.         $mycount *= &scripts2count($count) if $count;
  871.         if ($nesting==1 && !$build_templates) {
  872.         $pcode .= sprintf("sub %-32s { %4d; }\n",
  873.             "${mname}'${fieldname}", $struct_count);
  874.         push(@indices, $struct_count);
  875.         }
  876.         $struct_count += $mycount;
  877.     }
  878.  
  879.  
  880.     &pstruct($type, "$prefix.$fieldname", $base+$offset)
  881.         if $recurse && defined $struct{$type};
  882.     }
  883.  
  884.     $countof{$what} = $struct_count unless defined $countof{$whati};
  885.  
  886.     $template{$sname} .= '$' if $build_templates;
  887.     $finished_template{$sname}++;
  888.  
  889.     if ($build_templates && !defined $sizeof{$name}) {
  890.     local($fmt) = &scrunch($template{$sname});
  891.     print STDERR "no size for $name, punting with $fmt..." if $debug;
  892.     eval '$sizeof{$name} = length(pack($fmt, ()))';
  893.     if ($@) {
  894.         chop $@;
  895.         warn "couldn't get size for \$name: $@";
  896.     } else {
  897.         print STDERR $sizeof{$name}, "\n" if $debUg;
  898.     }
  899.     }
  900.  
  901.     --$nesting;
  902. }
  903.  
  904.  
  905. sub psize {
  906.     local($me) = @_;
  907.     local($amstruct) = $struct{$me} ?  'struct ' : '';
  908.  
  909.     print '$sizeof{\'', $amstruct, $me, '\'} = ';
  910.     printf "%d;\n", $sizeof{$me};
  911. }
  912.  
  913. sub pdecl {
  914.     local($pdecl) = @_;
  915.     local(@pdecls);
  916.     local($tname);
  917.  
  918.     warn "pdecl: $pdecl\n" if $debug;
  919.  
  920.     $pdecl =~ s/\(\d+,(\d+)\)/$1/g;
  921.     $pdecl =~ s/\*//g;
  922.     @pdecls = split(/=/, $pdecl);
  923.     $typeno = $pdecls[0];
  924.     $tname = pop @pdecls;
  925.  
  926.     if ($tname =~ s/^f//) { $tname = "$tname&"; }
  927.     #else { $tname = "$tname*"; }
  928.  
  929.     for (reverse @pdecls) {
  930.     $tname  .= s/^f// ? "&" : "*";
  931.     #$tname =~ s/^f(.*)/$1&/;
  932.     print "type[$_] is $tname\n" if $debug;
  933.     $type[$_] = $tname unless defined $type[$_];
  934.     }
  935. }
  936.  
  937.  
  938.  
  939. sub adecl {
  940.     ($arraytype, $unknown, $lower, $upper) = ();
  941.     #local($typeno);
  942.     # global $typeno, @type
  943.     local($_, $typedef) = @_;
  944.  
  945.     while (s/^((\d+|\(\d+,\d+\))=)?ar(\d+|\(\d+,\d+\));//) {
  946.     ($arraytype, $unknown) = ($2, $3);
  947.     $arraytype = &typeno($arraytype);
  948.     $unknown = &typeno($unknown);
  949.     if (s/^(\d+);(\d+);//) {
  950.         ($lower, $upper) = ($1, $2);
  951.         $scripts .= '[' .  ($upper+1) . ']';
  952.     } else {
  953.         warn "can't find array bounds: $_";
  954.     }
  955.     }
  956.     if (s/^([(,)\d*f=]*),(\d+),(\d+);//) {
  957.     ($start, $length) = ($2, $3);
  958.     $whatis = $1;
  959.     if ($whatis =~ /^(\d+|\(\d+,\d+\))=/) {
  960.         $typeno = &typeno($1);
  961.         &pdecl($whatis);
  962.     } else {
  963.         $typeno = &typeno($whatis);
  964.     }
  965.     } elsif (s/^(\d+)(=[*suf]\d*)//) {
  966.     local($whatis) = $2;
  967.  
  968.     if ($whatis =~ /[f*]/) {
  969.         &pdecl($whatis);
  970.     } elsif ($whatis =~ /[su]/) {  #
  971.         print "$prefix.$fieldname is an array$scripts anon structs; disgusting\n"
  972.         if $debug;
  973.         #$type[$typeno] = $name unless defined $type[$typeno];
  974.         ##printf "new type $typeno is $name" if $debug;
  975.         $typeno = $1;
  976.         $type[$typeno] = "$prefix.$fieldname";
  977.         local($name) = $type[$typeno];
  978.         &sou($name, $whatis);
  979.         $_ = &sdecl($name, $_, $start+$offset);
  980.         1;
  981.         $start = $start{$name};
  982.         $offset = $sizeof{$name};
  983.         $length = $offset;
  984.     } else {
  985.         warn "what's this? $whatis in $line ";
  986.     }
  987.     } elsif (/^\d+$/) {
  988.     $typeno = $_;
  989.     } else {
  990.     warn "bad array stab: $_ in $line ";
  991.     next STAB;
  992.     }
  993.     #local($wasdef) = defined($type[$typeno]) && $debug;
  994.     #if ($typedef) {
  995.     #print "redefining $type[$typeno] to " if $wasdef;
  996.     #$type[$typeno] = "$whatis$scripts"; # unless defined $type[$typeno];
  997.     #print "$type[$typeno]\n" if $wasdef;
  998.     #} else {
  999.     #$type[$arraytype] = $type[$typeno] unless defined $type[$arraytype];
  1000.     #}
  1001.     $type[$arraytype] = "$type[$typeno]$scripts" if defined $type[$typeno];
  1002.     print "type[$arraytype] is $type[$arraytype]\n" if $debug;
  1003.     print "$prefix.$fieldname is an array of $type[$arraytype]\n" if $debug;
  1004.     $_;
  1005. }
  1006.  
  1007.  
  1008.  
  1009. sub sdecl {
  1010.     local($prefix, $_, $offset) = @_;
  1011.  
  1012.     local($fieldname, $scripts, $type, $arraytype, $unknown,
  1013.     $whatis, $pdecl, $upper,$lower, $start,$length) = ();
  1014.     local($typeno,$sou);
  1015.  
  1016.  
  1017. SFIELD:
  1018.     while (/^([^;]+);/) {
  1019.     $scripts = '';
  1020.     warn "sdecl $_\n" if $debug;
  1021.     if (s/^([\$\w]+)://) {
  1022.         $fieldname = $1;
  1023.     } elsif (s/(\d+)=([us])(\d+|\(\d+,\d+\))//) { #
  1024.         $typeno = &typeno($1);
  1025.         $type[$typeno] = "$prefix.$fieldname";
  1026.         local($name) = "$prefix.$fieldname";
  1027.         &sou($name,$2);
  1028.         $_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
  1029.         $start = $start{$name};
  1030.         $offset += $sizeof{$name};
  1031.         #print "done with anon, start is $start, offset is $offset\n";
  1032.         #next SFIELD;
  1033.     } else  {
  1034.         warn "weird field $_ of $line" if $debug;
  1035.         next STAB;
  1036.         #$fieldname = &gensym;
  1037.         #$_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
  1038.     }
  1039.  
  1040.     if (/^(\d+|\(\d+,\d+\))=ar/) {
  1041.         $_ = &adecl($_);
  1042.     }
  1043.     elsif (s/^(\d+|\(\d+,\d+\))?,(\d+),(\d+);//) {
  1044.           ($start, $length) =  ($2, $3);
  1045.           &panic("no length?") unless $length;
  1046.           $typeno = &typeno($1) if $1;
  1047.         }
  1048.         elsif (s/^(\d+)=xs\w+:,(\d+),(\d+);//) {
  1049.         ($start, $length) =  ($2, $3);
  1050.         &panic("no length?") unless $length;
  1051.         $typeno = &typeno($1) if $1;
  1052.     }
  1053.     elsif (s/^((\d+|\(\d+,\d+\))(=[*f](\d+|\(\d+,\d+\)))+),(\d+),(\d+);//) {
  1054.         ($pdecl, $start, $length) =  ($1,$5,$6);
  1055.         &pdecl($pdecl);
  1056.     }
  1057.     elsif (s/(\d+)=([us])(\d+|\(\d+,\d+\))//) { # the dratted anon struct
  1058.         ($typeno, $sou) = ($1, $2);
  1059.         $typeno = &typeno($typeno);
  1060.         if (defined($type[$typeno])) {
  1061.         warn "now how did we get type $1 in $fieldname of $line?";
  1062.         } else {
  1063.         print "anon type $typeno is $prefix.$fieldname\n" if $debug;
  1064.         $type[$typeno] = "$prefix.$fieldname" unless defined $type[$typeno];
  1065.         };
  1066.         local($name) = "$prefix.$fieldname";
  1067.         &sou($name,$sou);
  1068.         print "anon ".($isastruct{$name}) ? "struct":"union"." for $prefix.$fieldname\n" if $debug;
  1069.         $type[$typeno] = "$prefix.$fieldname";
  1070.         $_ = &sdecl("$prefix.$fieldname", $_, $start+$offset);
  1071.         $start = $start{$name};
  1072.         $length = $sizeof{$name};
  1073.     }
  1074.     else {
  1075.         warn "can't grok stab for $name ($_) in line $line ";
  1076.         next STAB;
  1077.     }
  1078.  
  1079.     &panic("no length for $prefix.$fieldname") unless $length;
  1080.     $struct{$name} .= join(',', $fieldname, $typeno, $scripts, $start, $length) . ';';
  1081.     }
  1082.     if (s/;\d*,(\d+),(\d+);//) {
  1083.     local($start, $size) = ($1, $2);
  1084.     $sizeof{$prefix} = $size;
  1085.     print "start of $prefix is $start, size of $sizeof{$prefix}\n" if $debug;
  1086.     $start{$prefix} = $start;
  1087.     }
  1088.     $_;
  1089. }
  1090.  
  1091. sub edecl {
  1092.     s/;$//;
  1093.     $enum{$name} = $_;
  1094.     $_ = '';
  1095. }
  1096.  
  1097. sub resolve_types {
  1098.     local($sou);
  1099.     for $i (0 .. $#type) {
  1100.     next unless defined $type[$i];
  1101.     $_ = $type[$i];
  1102.     unless (/\d/) {
  1103.         print "type[$i] $type[$i]\n" if $debug;
  1104.         next;
  1105.     }
  1106.     print "type[$i] $_ ==> " if $debug;
  1107.     s/^(\d+)(\**)\&\*(\**)/"$2($3".&type($1) . ')()'/e;
  1108.     s/^(\d+)\&/&type($1)/e;
  1109.     s/^(\d+)/&type($1)/e;
  1110.     s/(\*+)([^*]+)(\*+)/$1$3$2/;
  1111.     s/\((\*+)(\w+)(\*+)\)/$3($1$2)/;
  1112.     s/^(\d+)([\*\[].*)/&type($1).$2/e;
  1113.     #s/(\d+)(\*|(\[[\[\]\d\*]+]\])+)/&type($1).$2/ge;
  1114.     $type[$i] = $_;
  1115.     print "$_\n" if $debug;
  1116.     }
  1117. }
  1118. sub type { &psou($type[$_[0]] || "<UNDEFINED>"); }
  1119.  
  1120. sub adjust_start_addrs {
  1121.     for (sort keys %start) {
  1122.     ($basename = $_) =~ s/\.[^.]+$//;
  1123.     $start{$_} += $start{$basename};
  1124.     print "start: $_ @ $start{$_}\n" if $debug;
  1125.     }
  1126. }
  1127.  
  1128. sub sou {
  1129.     local($what, $_) = @_;
  1130.     /u/ && $isaunion{$what}++;
  1131.     /s/ && $isastruct{$what}++;
  1132. }
  1133.  
  1134. sub psou {
  1135.     local($what) = @_;
  1136.     local($prefix) = '';
  1137.     if ($isaunion{$what})  {
  1138.     $prefix = 'union ';
  1139.     } elsif ($isastruct{$what})  {
  1140.     $prefix = 'struct ';
  1141.     }
  1142.     $prefix . $what;
  1143. }
  1144.  
  1145. sub scrunch {
  1146.     local($_) = @_;
  1147.  
  1148.     return '' if $_ eq '';
  1149.  
  1150.     study;
  1151.  
  1152.     s/\$//g;
  1153.     s/  / /g;
  1154.     1 while s/(\w) \1/$1$1/g;
  1155.  
  1156.     # i wanna say this, but perl resists my efforts:
  1157.     #       s/(\w)(\1+)/$2 . length($1)/ge;
  1158.  
  1159.     &quick_scrunch;
  1160.  
  1161.     s/ $//;
  1162.  
  1163.     $_;
  1164. }
  1165.  
  1166. sub buildscrunchlist {
  1167.     $scrunch_code = "sub quick_scrunch {\n";
  1168.     for (values %intrinsics) {
  1169.         $scrunch_code .= "\ts/(${_}{2,})/'$_' . length(\$1)/ge;\n";
  1170.     }
  1171.     $scrunch_code .= "}\n";
  1172.     print "$scrunch_code" if $debug;
  1173.     eval $scrunch_code;
  1174.     &panic("can't eval scrunch_code $@ \nscrunch_code") if $@;
  1175. }
  1176.  
  1177. sub fetch_template {
  1178.     local($mytype) = @_;
  1179.     local($fmt);
  1180.     local($count) = 1;
  1181.  
  1182.     &panic("why do you care?") unless $perl;
  1183.  
  1184.     if ($mytype =~ s/(\[\d+\])+$//) {
  1185.     $count .= $1;
  1186.     }
  1187.  
  1188.     if ($mytype =~ /\*/) {
  1189.     $fmt = $template{'pointer'};
  1190.     }
  1191.     elsif (defined $template{$mytype}) {
  1192.     $fmt = $template{$mytype};
  1193.     }
  1194.     elsif (defined $struct{$mytype}) {
  1195.     if (!defined $template{&psou($mytype)}) {
  1196.         &build_template($mytype) unless $mytype eq $name;
  1197.     }
  1198.     elsif ($template{&psou($mytype)} !~ /\$$/) {
  1199.         #warn "incomplete template for $mytype\n";
  1200.     }
  1201.     $fmt = $template{&psou($mytype)} || '?';
  1202.     }
  1203.     else {
  1204.     warn "unknown fmt for $mytype\n";
  1205.     $fmt = '?';
  1206.     }
  1207.  
  1208.     $fmt x $count . ' ';
  1209. }
  1210.  
  1211. sub compute_intrinsics {
  1212.     $TMPDIR ||= tempdir(CLEANUP => 1);
  1213.     local($TMP) = "$TMPDIR/c2ph-i.$$.c";
  1214.     open (TMP, ">$TMP") || die "can't open $TMP: $!";
  1215.     select(TMP);
  1216.  
  1217.     print STDERR "computing intrinsic sizes: " if $trace;
  1218.  
  1219.     undef %intrinsics;
  1220.  
  1221.     print <<'EOF';
  1222. main() {
  1223.     char *mask = "%d %s\n";
  1224. EOF
  1225.  
  1226.     for $type (@intrinsics) {
  1227.     next if !$type || $type eq 'void' || $type =~ /complex/; # sun stuff
  1228.     print <<"EOF";
  1229.     printf(mask,sizeof($type), "$type");
  1230. EOF
  1231.     }
  1232.  
  1233.     print <<'EOF';
  1234.     printf(mask,sizeof(char *), "pointer");
  1235.     exit(0);
  1236. }
  1237. EOF
  1238.     close TMP;
  1239.  
  1240.     select(STDOUT);
  1241.     open(PIPE, "cd $TMPDIR && $CC $TMP && $TMPDIR/a.out|");
  1242.     while (<PIPE>) {
  1243.     chop;
  1244.     split(' ',$_,2);;
  1245.     print "intrinsic $_[1] is size $_[0]\n" if $debug;
  1246.     $sizeof{$_[1]} = $_[0];
  1247.     $intrinsics{$_[1]} = $template{$_[0]};
  1248.     }
  1249.     close(PIPE) || die "couldn't read intrinsics!";
  1250.     unlink($TMP, '$TMPDIR/a.out');
  1251.     print STDERR "done\n" if $trace;
  1252. }
  1253.  
  1254. sub scripts2count {
  1255.     local($_) = @_;
  1256.  
  1257.     s/^\[//;
  1258.     s/\]$//;
  1259.     s/\]\[/*/g;
  1260.     $_ = eval;
  1261.     &panic("$_: $@") if $@;
  1262.     $_;
  1263. }
  1264.  
  1265. sub system {
  1266.     print STDERR "@_\n" if $trace;
  1267.     system @_;
  1268. }
  1269.  
  1270. sub build_template {
  1271.     local($name) = @_;
  1272.  
  1273.     &panic("already got a template for $name") if defined $template{$name};
  1274.  
  1275.     local($build_templates) = 1;
  1276.  
  1277.     local($lparen) = '(' x $build_recursed;
  1278.     local($rparen) = ')' x $build_recursed;
  1279.  
  1280.     print STDERR "$lparen$name$rparen " if $trace;
  1281.     $build_recursed++;
  1282.     &pstruct($name,$name,0);
  1283.     print STDERR "TEMPLATE for $name is ", $template{&psou($name)}, "\n" if $debug;
  1284.     --$build_recursed;
  1285. }
  1286.  
  1287.  
  1288. sub panic {
  1289.  
  1290.     select(STDERR);
  1291.  
  1292.     print "\npanic: @_\n";
  1293.  
  1294.     exit 1 if $] <= 4.003;  # caller broken
  1295.  
  1296.     local($i,$_);
  1297.     local($p,$f,$l,$s,$h,$a,@a,@sub);
  1298.     for ($i = 0; ($p,$f,$l,$s,$h,$w) = caller($i); $i++) {
  1299.     @a = @DB'args;
  1300.     for (@a) {
  1301.         if (/^StB\000/ && length($_) == length($_main{'_main'})) {
  1302.         $_ = sprintf("%s",$_);
  1303.         }
  1304.         else {
  1305.         s/'/\\'/g;
  1306.         s/([^\0]*)/'$1'/ unless /^-?[\d.]+$/;
  1307.         s/([\200-\377])/sprintf("M-%c",ord($1)&0177)/eg;
  1308.         s/([\0-\37\177])/sprintf("^%c",ord($1)^64)/eg;
  1309.         }
  1310.     }
  1311.     $w = $w ? '@ = ' : '$ = ';
  1312.     $a = $h ? '(' . join(', ', @a) . ')' : '';
  1313.     push(@sub, "$w&$s$a from file $f line $l\n");
  1314.     last if $signal;
  1315.     }
  1316.     for ($i=0; $i <= $#sub; $i++) {
  1317.     last if $signal;
  1318.     print $sub[$i];
  1319.     }
  1320.     exit 1;
  1321. }
  1322.  
  1323. sub squishseq {
  1324.     local($num);
  1325.     local($last) = -1e8;
  1326.     local($string);
  1327.     local($seq) = '..';
  1328.  
  1329.     while (defined($num = shift)) {
  1330.         if ($num == ($last + 1)) {
  1331.             $string .= $seq unless $inseq++;
  1332.             $last = $num;
  1333.             next;
  1334.         } elsif ($inseq) {
  1335.             $string .= $last unless $last == -1e8;
  1336.         }
  1337.  
  1338.         $string .= ',' if defined $string;
  1339.         $string .= $num;
  1340.         $last = $num;
  1341.         $inseq = 0;
  1342.     }
  1343.     $string .= $last if $inseq && $last != -e18;
  1344.     $string;
  1345. }
  1346.  
  1347. sub repeat_template {
  1348.     #  local($template, $scripts) = @_;  have to change caller's values
  1349.  
  1350.     if ( $_[1] ) {
  1351.     local($ncount) = &scripts2count($_[1]);
  1352.     if ($_[0] =~ /^\s*c\s*$/i) {
  1353.         $_[0] = "A$ncount ";
  1354.         $_[1] = '';
  1355.     } else {
  1356.         $_[0] = $template x $ncount;
  1357.     }
  1358.     }
  1359. }
  1360.