mods for dynamically allocated display save area for formal calls
[unix-history] / usr / src / usr.bin / pascal / px / vars.h
CommitLineData
1e2b51bb
KM
1/* Copyright (c) 1979 Regents of the University of California */
2
6b4e6ddb 3/* static char sccsid[] = "@(#)vars.h 1.7 %G%"; */
1e2b51bb
KM
4
5#include <stdio.h>
6
7/*
8 * px - Berkeley Pascal interpreter
9 *
10 * Version 4.0, January 1981
11 *
12 * Original version by Ken Thompson
13 *
14 * Substantial revisions by Bill Joy and Chuck Haley
15 * November-December 1976
16 *
17 * Rewritten for VAX 11/780 by Kirk McKusick
18 * Fall 1978
19 *
20 * Rewritten in ``C'' using libpc by Kirk McKusick
21 * Winter 1981
22 *
23 * Px is described in detail in the "PX 4.0 Implementation Notes"
24 * The source code for px is in several major pieces:
25 *
26 * int.c C main program which reads in interpreter code
27 * interp.c Driver including main interpreter loop and
28 * the interpreter instructions grouped by their
29 * positions in the interpreter table.
30 * except.c Handlers for interpreter specific errors not
31 * included in libpc.
32 * utilities.c Interpreter exit, backtrace, and runtime statistics.
33 *
34 * In addition there are several headers defining mappings for panic
35 * names into codes, and a definition of the interpreter transfer
36 * table. These are made by the script make.ed1 in this directory and
37 * the routine opc.c from ${PASCALDIR}. (see the makefile for details)
38 */
39#define PXPFILE "pmon.out"
40#define BITSPERBYTE 8
41#define BITSPERLONG (BITSPERBYTE * sizeof(long))
42#define HZ 60
1e2b51bb
KM
43#define MAXLVL 20
44#define NAMSIZ 76
45#define MAXFILES 32
46#define PREDEF 2
9a92014d 47#ifdef VAX
1e2b51bb
KM
48#define STDLVL ((struct iorec *)(0x7ffffff1))
49#define GLVL ((struct iorec *)(0x7ffffff0))
9a92014d
KM
50#else
51#define STDLVL ((struct iorec *)(0xfff1))
52#define GLVL ((struct iorec *)(0xfff0))
53#endif VAX
1e2b51bb
KM
54#define FILNIL ((struct iorec *)(0))
55#define INPUT ((struct iorec *)(&input))
56#define OUTPUT ((struct iorec *)(&output))
57#define ERR ((struct iorec *)(&_err))
58#define PX 0 /* normal run of px */
59#define PIX 1 /* load and go */
60#define PIPE 2 /* bootstrap via a pipe */
61#define releq 0
15834a19
KM
62#define relne 2
63#define rellt 4
64#define relgt 6
65#define relle 8
66#define relge 10
9a92014d 67typedef enum {FALSE, TRUE} bool;
1e2b51bb
KM
68
69/*
70 * interrupt and allocation routines
71 */
72extern long createtime;
73extern char *PALLOC();
74extern char *malloc();
9a92014d 75extern long time();
1e2b51bb
KM
76extern intr();
77extern memsize();
78extern except();
79extern syserr();
80extern liberr();
81
82/*
796c7f60 83 * stack routines and structures
1e2b51bb 84 */
796c7f60
KM
85struct sze8 {
86 char element[8];
87};
1e2b51bb
KM
88extern short pop2();
89extern long pop4();
90extern double pop8();
796c7f60 91extern struct sze8 popsze8();
1e2b51bb
KM
92extern char *pushsp();
93
94/*
95 * emulated pc types
96 */
97union progcntr {
98 char *cp;
99 unsigned char *ucp;
100 short *sp;
101 unsigned short *usp;
102 long *lp;
9a92014d 103 double *dbp;
1e2b51bb
KM
104 struct hdr *hdrp;
105};
106\f
107/*
108 * THE RUNTIME DISPLAY
109 *
110 * The entries in the display point to the active static block marks.
111 * The first entry in the display is for the global variables,
112 * then the procedure or function at level one, etc.
113 * Each display entry points to a stack frame as shown:
114 *
115 * base of stack frame
116 * ---------------
117 * | |
118 * | block mark |
119 * | |
15834a19
KM
120 * --------------- <-- display entry "stp" points here
121 * | | <-- display entry "locvars" points here
1e2b51bb
KM
122 * | local |
123 * | variables |
124 * | |
125 * ---------------
126 * | |
127 * | expression |
128 * | temporary |
129 * | storage |
130 * | |
131 * - - - - - - - -
132 *
133 * The information in the block mark is thus at positive offsets from
15834a19
KM
134 * the display.stp pointer entries while the local variables are at negative
135 * offsets from display.locvars. The block mark actually consists of
136 * two parts. The first part is created at CALL and the second at entry,
137 * i.e. BEGIN. Thus:
1e2b51bb
KM
138 *
139 * -------------------------
140 * | |
141 * | Saved lino |
142 * | Saved lc |
143 * | Saved dp |
144 * | |
145 * -------------------------
146 * | |
147 * | Saved (dp) |
148 * | |
15834a19
KM
149 * | Pointer to current |
150 * | routine header info |
1e2b51bb 151 * | |
15834a19
KM
152 * | Saved value of |
153 * | "curfile" |
1e2b51bb
KM
154 * | |
155 * | Empty tos value |
156 * | |
157 * -------------------------
158 */
159\f
160/*
161 * runtime display structure
162 */
163struct disp {
164 char *locvars; /* pointer to local variables */
165 struct stack *stp; /* pointer to local stack frame */
166};
167
168struct stack {
169 char *tos; /* pointer to top of stack frame */
170 struct iorec *file; /* pointer to active file name */
171 struct hdr {
172 long framesze; /* number of bytes of local vars */
173 long nargs; /* number of bytes of arguments */
9a92014d 174 bool tests; /* TRUE => perform runtime tests */
1e2b51bb
KM
175 short offset; /* offset of procedure in source file */
176 char name[1]; /* name of active procedure */
177 } *entry;
178 struct disp odisp; /* previous display value for this level */
179 struct disp *dp; /* pointer to active display entry */
180 union progcntr pc; /* previous location counter */
181 long lino; /* previous line number */
182};
183
15834a19
KM
184union disply {
185 struct disp frame[MAXLVL];
186 char *raw[2*MAXLVL];
187};
188
1e2b51bb
KM
189/*
190 * formal routine structure
191 */
192struct formalrtn {
6b4e6ddb
KM
193 char *fentryaddr; /* formal entry point */
194 long fbn; /* block number of function */
195 struct disp fdisp[ MAXLVL ]; /* saved at first passing */
1e2b51bb
KM
196};
197
198/*
199 * program variables
200 */
15834a19
KM
201extern union disply _display; /* runtime display */
202extern struct disp *_dp; /* ptr to active frame */
203extern long _lino; /* current line number */
204extern int _argc; /* number of passed args */
205extern char **_argv; /* values of passed args */
9a92014d
KM
206extern bool _nodump; /* TRUE => no post mortum dump */
207extern bool _runtst; /* TRUE => runtime tests */
15834a19
KM
208extern long _mode; /* execl by PX, PIPE, or PIX */
209extern long _stlim; /* statement limit */
210extern long _stcnt; /* statement count */
50d6e33c 211extern long _seed; /* random number seed */
15834a19
KM
212extern char *_maxptr; /* maximum valid pointer */
213extern char *_minptr; /* minimum valid pointer */
214extern long *_pcpcount; /* pointer to pxp buffer */
215extern long _cntrs; /* number of counters */
216extern long _rtns; /* number of routine cntrs */
217\f
1e2b51bb
KM
218/*
219 * The file i/o routines maintain a notion of a "current file".
220 * A pointer to this file structure is kept in "curfile".
221 *
222 * file structures
223 */
224struct iorechd {
225 char *fileptr; /* ptr to file window */
226 long lcount; /* number of lines printed */
227 long llimit; /* maximum number of text lines */
228 FILE *fbuf; /* FILE ptr */
229 struct iorec *fchain; /* chain to next file */
230 struct iorec *flev; /* ptr to associated file variable */
231 char *pfname; /* ptr to name of file */
232 short funit; /* file status flags */
233 short fblk; /* index into active file table */
234 long fsize; /* size of elements in the file */
235 char fname[NAMSIZ]; /* name of associated UNIX file */
236};
237
238struct iorec {
239 char *fileptr; /* ptr to file window */
240 long lcount; /* number of lines printed */
241 long llimit; /* maximum number of text lines */
242 FILE *fbuf; /* FILE ptr */
243 struct iorec *fchain; /* chain to next file */
244 struct iorec *flev; /* ptr to associated file variable */
245 char *pfname; /* ptr to name of file */
246 short funit; /* file status flags */
247 short fblk; /* index into active file table */
248 long fsize; /* size of elements in the file */
249 char fname[NAMSIZ]; /* name of associated UNIX file */
250 char buf[BUFSIZ]; /* I/O buffer */
251 char window[1]; /* file window element */
252};
15834a19 253\f
1e2b51bb
KM
254/*
255 * unit flags
256 */
257#define FDEF 0x80 /* 1 => reserved file name */
258#define FTEXT 0x40 /* 1 => text file, process EOLN */
259#define FWRITE 0x20 /* 1 => open for writing */
260#define FREAD 0x10 /* 1 => open for reading */
261#define TEMP 0x08 /* 1 => temporary file */
262#define SYNC 0x04 /* 1 => window is out of sync */
263#define EOLN 0x02 /* 1 => at end of line */
264#define EOFF 0x01 /* 1 => at end of file */
265
266/*
267 * file routines
268 */
269extern struct iorec *GETNAME();
270extern char *MKTEMP();
271
272/*
273 * file record variables
274 */
275extern struct iorechd _fchain; /* head of active file chain */
276extern struct iorec *_actfile[]; /* table of active files */
277extern long _filefre; /* last used entry in _actfile */
278
279/*
280 * standard files
281 */
282extern struct iorechd input;
283extern struct iorechd output;
284extern struct iorechd _err;
15834a19 285
1e2b51bb 286/*
15834a19 287 * Px execution profile array
1e2b51bb 288 */
15834a19
KM
289#ifdef PROFILE
290#define NUMOPS 256
291extern long _profcnts[NUMOPS];
292#endif PROFILE