home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bison.sit.hqx / Bison / Source / main.c < prev    next >
Text File  |  1992-08-22  |  4KB  |  162 lines

  1. /***********************************************************
  2.  *
  3.  * Macintosh/MPW version of GNU Bison 1.18
  4.  * Please read the README_MPW file for more information
  5.  *
  6.  ***********************************************************/
  7.  
  8. /* Top level entry point of bison,
  9.    Copyright (C) 1984, 1986, 1989 Free Software Foundation, Inc.
  10.  
  11. This file is part of Bison, the GNU Compiler Compiler.
  12.  
  13. Bison is free software; you can redistribute it and/or modify
  14. it under the terms of the GNU General Public License as published by
  15. the Free Software Foundation; either version 2, or (at your option)
  16. any later version.
  17.  
  18. Bison is distributed in the hope that it will be useful,
  19. but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21. GNU General Public License for more details.
  22.  
  23. You should have received a copy of the GNU General Public License
  24. along with Bison; see the file COPYING.  If not, write to
  25. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  26.  
  27.  
  28. #include <stdio.h>
  29. #include "system.h"
  30. #include "machine.h"    /* JF for MAXSHORT */
  31.  
  32. #ifdef macintosh
  33. #include "CursorCtl.h"
  34. #endif
  35.  
  36. extern    int lineno;
  37. extern    int verboseflag;
  38.  
  39. /* Nonzero means failure has been detected; don't write a parser file.  */
  40. int failure;
  41.  
  42. /* The name this program was run with, for messages. */
  43. char *program_name;
  44.  
  45. extern void getargs(), openfiles(), reader(), reduce_grammar();
  46. extern void set_derives(), set_nullable(), generate_states();
  47. extern void lalr(), initialize_conflicts(), verbose(), terse();
  48. extern void output(), done(), abort();
  49.  
  50.  
  51. #ifdef macintosh
  52. void
  53. #else
  54. int
  55. #endif
  56. main(argc, argv)
  57. int argc;
  58. char *argv[];
  59. {
  60.   program_name = argv[0];
  61.   failure = 0;
  62.   lineno = 0;
  63.  
  64. #ifdef macintosh
  65.   InitCursorCtl( NULL );
  66. #endif
  67.  
  68.   getargs(argc, argv);
  69.   openfiles();
  70.  
  71.   /* read the input.  Copy some parts of it to fguard, faction, ftable and fattrs.
  72.      In file reader.c.
  73.      The other parts are recorded in the grammar; see gram.h.  */
  74.   reader();
  75.  
  76.   /* find useless nonterminals and productions and reduce the grammar.  In
  77.      file reduce.c */
  78.   reduce_grammar();
  79.  
  80.   /* record other info about the grammar.  In files derives and nullable.  */
  81.   set_derives();
  82.   set_nullable();
  83.  
  84.   /* convert to nondeterministic finite state machine.  In file LR0.
  85.      See state.h for more info.  */
  86.   generate_states();
  87.  
  88.   /* make it deterministic.  In file lalr.  */
  89.   lalr();
  90.  
  91.   /* Find and record any conflicts: places where one token of lookahead is not
  92.      enough to disambiguate the parsing.  In file conflicts.
  93.      Currently this does not do anything to resolve them;
  94.      the trivial form of conflict resolution that exists is done in output.  */
  95.   initialize_conflicts();
  96.  
  97.   /* print information about results, if requested.  In file print. */
  98.   if (verboseflag)
  99.     verbose();
  100.   else
  101.     terse();
  102.  
  103.   /* output the tables and the parser to ftable.  In file output. */
  104.   output();
  105.   done(failure);
  106. }
  107.  
  108. /* functions to report errors which prevent a parser from being generated */
  109.  
  110. void
  111. fatal(s)
  112. char *s;
  113. {
  114.   extern char *infile;
  115.  
  116.   if (infile == 0)
  117.     fprintf(stderr, "fatal error: %s\n", s);
  118.   else
  119. #ifdef macintosh
  120.     fprintf(stderr, "File \"%s\"; Line %d ## %s\n", infile, lineno, s);
  121. #else
  122.     fprintf(stderr, "\"%s\", line %d: %s\n", infile, lineno, s);
  123. #endif
  124.   done(1);
  125. }
  126.  
  127.  
  128. /* JF changed to accept/deal with variable args.  Is a real kludge since
  129.    we don't support _doprnt calls */
  130. /*VARARGS1*/
  131.  
  132. void
  133. fatals(fmt,x1,x2,x3,x4,x5,x6,x7,x8)
  134. char *fmt;
  135. {
  136.   char buffer[200];
  137.  
  138.   sprintf(buffer, fmt, x1,x2,x3,x4,x5,x6,x7,x8);
  139.   fatal(buffer);
  140. }
  141.  
  142.  
  143. void
  144. toomany(s)
  145. char *s;
  146. {
  147.   char buffer[200];
  148.  
  149.     /* JF new msg */
  150.   sprintf(buffer, "limit of %d exceeded, too many %s", MAXSHORT, s);
  151.   fatal(buffer);
  152. }
  153.  
  154.  
  155. void
  156. berror(s)
  157. char *s;
  158. {
  159.   fprintf(stderr, "internal error, %s\n", s);
  160.   abort();
  161. }
  162.