home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / f2c-1993.04.28-src.lha / f2c-1993.04.28 / src / lex.c < prev    next >
C/C++ Source or Header  |  1993-04-28  |  30KB  |  1,495 lines

  1. /****************************************************************
  2. Copyright 1990, 1992 by AT&T Bell Laboratories and Bellcore.
  3.  
  4. Permission to use, copy, modify, and distribute this software
  5. and its documentation for any purpose and without fee is hereby
  6. granted, provided that the above copyright notice appear in all
  7. copies and that both that the copyright notice and this
  8. permission notice and warranty disclaimer appear in supporting
  9. documentation, and that the names of AT&T Bell Laboratories or
  10. Bellcore or any of their entities not be used in advertising or
  11. publicity pertaining to distribution of the software without
  12. specific, written prior permission.
  13.  
  14. AT&T and Bellcore disclaim all warranties with regard to this
  15. software, including all implied warranties of merchantability
  16. and fitness.  In no event shall AT&T or Bellcore be liable for
  17. any special, indirect or consequential damages or any damages
  18. whatsoever resulting from loss of use, data or profits, whether
  19. in an action of contract, negligence or other tortious action,
  20. arising out of or in connection with the use or performance of
  21. this software.
  22. ****************************************************************/
  23.  
  24. #include "defs.h"
  25. #include "tokdefs.h"
  26. #include "p1defs.h"
  27.  
  28. #ifdef NO_EOF_CHAR_CHECK
  29. #undef EOF_CHAR
  30. #else
  31. #ifndef EOF_CHAR
  32. #define EOF_CHAR 26    /* ASCII control-Z */
  33. #endif
  34. #endif
  35.  
  36. #define BLANK    ' '
  37. #define MYQUOTE (2)
  38. #define SEOF 0
  39.  
  40. /* card types */
  41.  
  42. #define STEOF 1
  43. #define STINITIAL 2
  44. #define STCONTINUE 3
  45.  
  46. /* lex states */
  47.  
  48. #define NEWSTMT    1
  49. #define FIRSTTOKEN    2
  50. #define OTHERTOKEN    3
  51. #define RETEOS    4
  52.  
  53.  
  54. LOCAL int stkey;    /* Type of the current statement (DO, END, IF, etc) */
  55. extern char token[];    /* holds the actual token text */
  56. static int needwkey;
  57. ftnint yystno;
  58. flag intonly;
  59. extern int new_dcl;
  60. LOCAL long int stno;
  61. LOCAL long int nxtstno;    /* Statement label */
  62. LOCAL int parlev;    /* Parentheses level */
  63. LOCAL int parseen;
  64. LOCAL int expcom;
  65. LOCAL int expeql;
  66. LOCAL char *nextch;
  67. LOCAL char *lastch;
  68. LOCAL char *nextcd     = NULL;
  69. LOCAL char *endcd;
  70. LOCAL long prevlin;
  71. LOCAL long thislin;
  72. LOCAL int code;        /* Card type; INITIAL, CONTINUE or EOF */
  73. LOCAL int lexstate    = NEWSTMT;
  74. LOCAL char *sbuf;    /* Main buffer for Fortran source input. */
  75. LOCAL char *send;    /* Was = sbuf+20*66 with sbuf[1390]. */
  76. LOCAL int maxcont;
  77. LOCAL int nincl    = 0;    /* Current number of include files */
  78. LOCAL long firstline;
  79. LOCAL char *laststb, *stb0;
  80. extern int addftnsrc;
  81. static char **linestart;
  82. LOCAL int ncont;
  83. LOCAL char comstart[Table_size];
  84. #define USC (unsigned char *)
  85.  
  86. static char anum_buf[Table_size];
  87. #define isalnum_(x) anum_buf[x]
  88. #define isalpha_(x) (anum_buf[x] == 1)
  89.  
  90. #define COMMENT_BUF_STORE 4088
  91.  
  92. typedef struct comment_buf {
  93.     struct comment_buf *next;
  94.     char *last;
  95.     char buf[COMMENT_BUF_STORE];
  96.     } comment_buf;
  97. static comment_buf *cbfirst, *cbcur;
  98. static char *cbinit, *cbnext, *cblast;
  99. static void flush_comments();
  100. extern flag use_bs;
  101.  
  102.  
  103. /* Comment buffering data
  104.  
  105.     Comments are kept in a list until the statement before them has
  106.    been parsed.  This list is implemented with the above comment_buf
  107.    structure and the pointers cbnext and cblast.
  108.  
  109.     The comments are stored with terminating NULL, and no other
  110.    intervening space.  The last few bytes of each block are likely to
  111.    remain unused.
  112. */
  113.  
  114. /* struct Inclfile   holds the state information for each include file */
  115. struct Inclfile
  116. {
  117.     struct Inclfile *inclnext;
  118.     FILEP inclfp;
  119.     char *inclname;
  120.     int incllno;
  121.     char *incllinp;
  122.     int incllen;
  123.     int inclcode;
  124.     ftnint inclstno;
  125. };
  126.  
  127. LOCAL struct Inclfile *inclp    =  NULL;
  128. struct Keylist {
  129.     char *keyname;
  130.     int keyval;
  131.     char notinf66;
  132. };
  133. struct Punctlist {
  134.     char punchar;
  135.     int punval;
  136. };
  137. struct Fmtlist {
  138.     char fmtchar;
  139.     int fmtval;
  140. };
  141. struct Dotlist {
  142.     char *dotname;
  143.     int dotval;
  144.     };
  145. LOCAL struct Keylist *keystart[26], *keyend[26];
  146.  
  147. /* KEYWORD AND SPECIAL CHARACTER TABLES
  148. */
  149.  
  150. static struct Punctlist puncts[ ] =
  151. {
  152.     '(', SLPAR,
  153.     ')', SRPAR,
  154.     '=', SEQUALS,
  155.     ',', SCOMMA,
  156.     '+', SPLUS,
  157.     '-', SMINUS,
  158.     '*', SSTAR,
  159.     '/', SSLASH,
  160.     '$', SCURRENCY,
  161.     ':', SCOLON,
  162.     '<', SLT,
  163.     '>', SGT,
  164.     0, 0 };
  165.  
  166. LOCAL struct Dotlist  dots[ ] =
  167. {
  168.     "and.", SAND,
  169.         "or.", SOR,
  170.         "not.", SNOT,
  171.         "true.", STRUE,
  172.         "false.", SFALSE,
  173.         "eq.", SEQ,
  174.         "ne.", SNE,
  175.         "lt.", SLT,
  176.         "le.", SLE,
  177.         "gt.", SGT,
  178.         "ge.", SGE,
  179.         "neqv.", SNEQV,
  180.         "eqv.", SEQV,
  181.         0, 0 };
  182.  
  183. LOCAL struct Keylist  keys[ ] =
  184. {
  185.     { "assign",  SASSIGN  },
  186.     { "automatic",  SAUTOMATIC, YES  },
  187.     { "backspace",  SBACKSPACE  },
  188.     { "blockdata",  SBLOCK  },
  189.     { "call",  SCALL  },
  190.     { "character",  SCHARACTER, YES  },
  191.     { "close",  SCLOSE, YES  },
  192.     { "common",  SCOMMON  },
  193.     { "complex",  SCOMPLEX  },
  194.     { "continue",  SCONTINUE  },
  195.     { "data",  SDATA  },
  196.     { "dimension",  SDIMENSION  },
  197.     { "doubleprecision",  SDOUBLE  },
  198.     { "doublecomplex", SDCOMPLEX, YES  },
  199.     { "elseif",  SELSEIF, YES  },
  200.     { "else",  SELSE, YES  },
  201.     { "endfile",  SENDFILE  },
  202.     { "endif",  SENDIF, YES  },
  203.     { "enddo", SENDDO, YES },
  204.     { "end",  SEND  },
  205.     { "entry",  SENTRY, YES  },
  206.     { "equivalence",  SEQUIV  },
  207.     { "external",  SEXTERNAL  },
  208.     { "format",  SFORMAT  },
  209.     { "function",  SFUNCTION  },
  210.     { "goto",  SGOTO  },
  211.     { "implicit",  SIMPLICIT, YES  },
  212.     { "include",  SINCLUDE, YES  },
  213.     { "inquire",  SINQUIRE, YES  },
  214.     { "intrinsic",  SINTRINSIC, YES  },
  215.     { "integer",  SINTEGER  },
  216.     { "logical",  SLOGICAL  },
  217.     { "namelist", SNAMELIST, YES },
  218.     { "none", SUNDEFINED, YES },
  219.     { "open",  SOPEN, YES  },
  220.     { "parameter",  SPARAM, YES  },
  221.     { "pause",  SPAUSE  },
  222.     { "print",  SPRINT  },
  223.     { "program",  SPROGRAM, YES  },
  224.     { "punch",  SPUNCH, YES  },
  225.     { "read",  SREAD  },
  226.     { "real",  SREAL  },
  227.     { "return",  SRETURN  },
  228.     { "rewind",  SREWIND  },
  229.     { "save",  SSAVE, YES  },
  230.     { "static",  SSTATIC, YES  },
  231.     { "stop",  SSTOP  },
  232.     { "subroutine",  SSUBROUTINE  },
  233.     { "then",  STHEN, YES  },
  234.     { "undefined", SUNDEFINED, YES  },
  235.     { "while", SWHILE, YES  },
  236.     { "write",  SWRITE  },
  237.     { 0, 0 }
  238. };
  239.  
  240. LOCAL void analyz(), crunch(), store_comment();
  241. LOCAL int getcd(), getcds(), getkwd(), gettok();
  242. LOCAL char *stbuf[3];
  243.  
  244. inilex(name)
  245. char *name;
  246. {
  247.     stbuf[0] = Alloc(3*P1_STMTBUFSIZE);
  248.     stbuf[1] = stbuf[0] + P1_STMTBUFSIZE;
  249.     stbuf[2] = stbuf[1] + P1_STMTBUFSIZE;
  250.     nincl = 0;
  251.     inclp = NULL;
  252.     doinclude(name);
  253.     lexstate = NEWSTMT;
  254.     return(NO);
  255. }
  256.  
  257.  
  258.  
  259. /* throw away the rest of the current line */
  260. flline()
  261. {
  262.     lexstate = RETEOS;
  263. }
  264.  
  265.  
  266.  
  267. char *lexline(n)
  268. int *n;
  269. {
  270.     *n = (lastch - nextch) + 1;
  271.     return(nextch);
  272. }
  273.  
  274.  
  275.  
  276.  
  277.  
  278. doinclude(name)
  279. char *name;
  280. {
  281.     FILEP fp;
  282.     struct Inclfile *t;
  283.  
  284.     if(inclp)
  285.     {
  286.         inclp->incllno = thislin;
  287.         inclp->inclcode = code;
  288.         inclp->inclstno = nxtstno;
  289.         if(nextcd)
  290.             inclp->incllinp = copyn(inclp->incllen = endcd-nextcd , nextcd);
  291.         else
  292.             inclp->incllinp = 0;
  293.     }
  294.     nextcd = NULL;
  295.  
  296.     if(++nincl >= MAXINCLUDES)
  297.         Fatal("includes nested too deep");
  298.     if(name[0] == '\0')
  299.         fp = stdin;
  300.     else
  301.         fp = fopen(name, textread);
  302.     if (fp)
  303.     {
  304.         t = inclp;
  305.         inclp = ALLOC(Inclfile);
  306.         inclp->inclnext = t;
  307.         prevlin = thislin = 0;
  308.         infname = inclp->inclname = name;
  309.         infile = inclp->inclfp = fp;
  310.     }
  311.     else
  312.     {
  313.         fprintf(diagfile, "Cannot open file %s\n", name);
  314.         done(1);
  315.     }
  316. }
  317.  
  318.  
  319.  
  320.  
  321. LOCAL popinclude()
  322. {
  323.     struct Inclfile *t;
  324.     register char *p;
  325.     register int k;
  326.  
  327.     if(infile != stdin)
  328.         clf(&infile, infname, 1);    /* Close the input file */
  329.     free(infname);
  330.  
  331.     --nincl;
  332.     t = inclp->inclnext;
  333.     free( (charptr) inclp);
  334.     inclp = t;
  335.     if(inclp == NULL) {
  336.         infname = 0;
  337.         return(NO);
  338.         }
  339.  
  340.     infile = inclp->inclfp;
  341.     infname = inclp->inclname;
  342.     prevlin = thislin = inclp->incllno;
  343.     code = inclp->inclcode;
  344.     stno = nxtstno = inclp->inclstno;
  345.     if(inclp->incllinp)
  346.     {
  347.         endcd = nextcd = sbuf;
  348.         k = inclp->incllen;
  349.         p = inclp->incllinp;
  350.         while(--k >= 0)
  351.             *endcd++ = *p++;
  352.         free( (charptr) (inclp->incllinp) );
  353.     }
  354.     else
  355.         nextcd = NULL;
  356.     return(YES);
  357. }
  358.  
  359.  static void
  360. putlineno()
  361. {
  362.     static long lastline;
  363.     static char *lastfile = "??", *lastfile0 = "?";
  364.     static char fbuf[P1_FILENAME_MAX];
  365.     extern int gflag;
  366.     register char *s0, *s1;
  367.  
  368.     if (gflag) {
  369.         if (lastline) {
  370.             if (lastfile != lastfile0) {
  371.                 p1puts(P1_FILENAME, fbuf);
  372.                 lastfile0 = lastfile;
  373.                 }
  374.             p1_line_number(lastline);
  375.             }
  376.         lastline = firstline;
  377.         if (lastfile != infname)
  378.             if (lastfile = infname) {
  379.                 strnc