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 / defs.h < prev    next >
C/C++ Source or Header  |  1994-05-02  |  24KB  |  785 lines

  1. /****************************************************************
  2. Copyright 1990, 1991, 1992, 1993 by AT&T Bell Laboratories, 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 "sysdep.h"
  25.  
  26. #include "ftypes.h"
  27. #include "defines.h"
  28. #include "machdefs.h"
  29.  
  30. #define MAXDIM 20
  31. #define MAXINCLUDES 10
  32. #define MAXLITERALS 200        /* Max number of constants in the literal
  33.                    pool */
  34. #define MAXTOKENLEN 302        /* length of longest token */
  35. #define MAXCTL 20
  36. #define MAXHASH 401
  37. #define MAXSTNO 801
  38. #define MAXEXT 200
  39. #define MAXEQUIV 150
  40. #define MAXLABLIST 258        /* Max number of labels in an alternate
  41.                    return CALL or computed GOTO */
  42. #define MAXCONTIN 99        /* Max continuation lines */
  43.  
  44. /* These are the primary pointer types used in the compiler */
  45.  
  46. typedef union Expression *expptr, *tagptr;
  47. typedef struct Chain *chainp;
  48. typedef struct Addrblock *Addrp;
  49. typedef struct Constblock *Constp;
  50. typedef struct Exprblock *Exprp;
  51. typedef struct Nameblock *Namep;
  52.  
  53. extern FILEP opf();
  54. extern FILEP infile;
  55. extern FILEP diagfile;
  56. extern FILEP textfile;
  57. extern FILEP asmfile;
  58. extern FILEP c_file;        /* output file for all functions; extern
  59.                    declarations will have to be prepended */
  60. extern FILEP pass1_file;    /* Temp file to hold the function bodies
  61.                    read on pass 1 */
  62. extern FILEP expr_file;        /* Debugging file */
  63. extern FILEP initfile;        /* Intermediate data file pointer */
  64. extern FILEP blkdfile;        /* BLOCK DATA file */
  65.  
  66. extern int current_ftn_file;
  67. extern int maxcontin;
  68.  
  69. extern char *blkdfname, *initfname, *sortfname;
  70. extern long int headoffset;    /* Since the header block requires data we
  71.                    don't know about until AFTER each
  72.                    function has been processed, we keep a
  73.                    pointer to the current (dummy) header
  74.                    block (at the top of the assembly file)
  75.                    here */
  76.  
  77. extern char main_alias[];    /* name given to PROGRAM psuedo-op */
  78. extern char token [ ];
  79. extern int toklen;
  80. extern long lineno;
  81. extern char *infname;
  82. extern int needkwd;
  83. extern struct Labelblock *thislabel;
  84.  
  85. /* Used to allow runtime expansion of internal tables.  In particular,
  86.    these values can exceed their associated constants */
  87.  
  88. extern int maxctl;
  89. extern int maxequiv;
  90. extern int maxstno;
  91. extern int maxhash;
  92. extern int maxext;
  93.  
  94. extern flag nowarnflag;
  95. extern flag ftn66flag;        /* Generate warnings when weird f77
  96.                    features are used (undeclared dummy
  97.                    procedure, non-char initialized with
  98.                    string, 1-dim subscript in EQUIV) */
  99. extern flag no66flag;        /* Generate an error when a generic
  100.                    function (f77 feature) is used */
  101. extern flag noextflag;        /* Generate an error when an extension to
  102.                    Fortran 77 is used (hex/oct/bin
  103.                    constants, automatic, static, double
  104.                    complex types) */
  105. extern flag zflag;        /* enable double complex intrinsics */
  106. extern flag shiftcase;
  107. extern flag undeftype;
  108. extern flag shortsubs;        /* Use short subscripts on arrays? */
  109. extern flag onetripflag;    /* if true, always execute DO loop body */
  110. extern flag checksubs;
  111. extern flag debugflag;
  112. extern int nerr;
  113. extern int nwarn;
  114.  
  115. extern int parstate;
  116. extern flag headerdone;        /* True iff the current procedure's header
  117.                    data has been written */
  118. extern int blklevel;
  119. extern flag saveall;
  120. extern flag substars;        /* True iff some formal parameter is an
  121.                    asterisk */
  122. extern int impltype[ ];
  123. extern ftnint implleng[ ];
  124. extern int implstg[ ];
  125.  
  126. extern int tycomplex, tyint, tyioint, tyreal;
  127. extern int tylog, tylogical;    /* TY____ of the implementation of   logical.
  128.                    This will be LONG unless '-2' is given
  129.                    on the command line */
  130. extern int type_choice[];
  131. extern char *typename[];
  132.  
  133. extern int typesize[];    /* size (in bytes) of an object of each
  134.                    type.  Indexed by TY___ macros */
  135. extern int typealign[];
  136. extern int proctype;    /* Type of return value in this procedure */
  137. extern char * procname;    /* External name of the procedure, or last ENTRY name */
  138. extern int rtvlabel[ ];    /* Return value labels, indexed by TY___ macros */
  139. extern Addrp retslot;
  140. extern Addrp xretslot[];
  141. extern int cxslot;    /* Complex return argument slot (frame pointer offset)*/
  142. extern int chslot;    /* Character return argument slot (fp offset) */
  143. extern int chlgslot;    /* Argument slot for length of character buffer */
  144. extern int procclass;    /* Class of the current procedure:  either CLPROC,
  145.                CLMAIN, CLBLOCK or CLUNKNOWN */
  146. extern ftnint procleng;    /* Length of function return value (e.g. char
  147.                string length).  If this is -1, then the length is
  148.                not known at compile time */
  149. extern int nentry;    /* Number of entry points (other than the original
  150.                function call) into this procedure */
  151. extern flag multitype;    /* YES iff there is more than one return value
  152.                possible */
  153. extern int blklevel;
  154. extern long lastiolabno;
  155. extern int lastlabno;
  156. extern int lastvarno;
  157. extern int lastargslot;    /* integer offset pointing to the next free
  158.                location for an argument to the current routine */
  159. extern int argloc;
  160. extern int autonum[];        /* for numbering
  161.                    automatic variables, e.g. temporaries */
  162. extern int retlabel;
  163. extern int ret0label;
  164. extern int dorange;        /* Number of the label which terminates
  165.                    the innermost DO loop */
  166. extern int regnum[ ];        /* Numbers of DO indicies named in
  167.                    regnamep   (below) */
  168. extern Namep regnamep[ ];    /* List of DO indicies in registers */
  169. extern int maxregvar;        /* number of elts in   regnamep   */
  170. extern int highregvar;        /* keeps track of the highest register
  171.                    number used by DO index allocator */
  172. extern int nregvar;        /* count of DO indicies in registers */
  173.  
  174. extern chainp templist[];
  175. extern int maxdim;
  176. extern chainp earlylabs;
  177. extern chainp holdtemps;
  178. extern struct Entrypoint *entries;
  179. extern struct Rplblock *rpllist;
  180. extern struct Chain *curdtp;
  181. extern ftnint curdtelt;
  182. extern chainp allargs;        /* union of args in entries */
  183. extern int nallargs;        /* total number of args */
  184. extern int nallchargs;        /* total number of character args */
  185. extern flag toomanyinit;    /* True iff too many initializers in a
  186.                    DATA statement */
  187.  
  188. extern flag inioctl;
  189. extern int iostmt;
  190. extern Addrp ioblkp;
  191. extern int nioctl;
  192. extern int nequiv;
  193. extern int eqvstart;    /* offset to eqv number to guarantee uniqueness
  194.                and prevent <something> from going negative */
  195. extern int nintnames;
  196.  
  197. /* Chain of tagged blocks */
  198.  
  199. struct Chain
  200.     {
  201.     chainp nextp;
  202.     char * datap;        /* Tagged block */
  203.     };
  204.  
  205. extern chainp chains;
  206.  
  207. /* Recall that   field   is intended to hold four-bit characters */
  208.  
  209. /* This structure exists only to defeat the type checking */
  210.  
  211. struct Headblock
  212.     {
  213.     field tag;
  214.     field vtype;
  215.     field vclass;
  216.     field vstg;
  217.     expptr vleng;        /* Expression for length of char string -
  218.                    this may be a constant, or an argument
  219.                    generated by mkarg() */
  220.     } ;
  221.  
  222. /* Control construct info (for do loops, else, etc) */
  223.  
  224. struct Ctlframe
  225.     {
  226.     unsigned ctltype:8;
  227.     unsigned dostepsign:8;    /* 0 - variable, 1 - pos, 2 - neg */
  228.     unsigned dowhile:1;
  229.     int ctlabels[4];    /* Control labels, defined below */
  230.     int dolabel;        /* label marking end of this DO loop */
  231.     Namep donamep;        /* DO index variable */
  232.     expptr domax;        /* constant or temp variable holding MAX
  233.                    loop value; or expr of while(expr) */
  234.     expptr dostep;        /* expressi