ack/lang/m2/comp/scope.h

43 lines
1.2 KiB
C
Raw Normal View History

1986-03-26 15:11:02 +00:00
/* S C O P E M E C H A N I S M */
#define OPENSCOPE 0 /* Indicating an open scope */
#define CLOSEDSCOPE 1 /* Indicating a closed scope (module) */
1986-04-12 02:21:24 +00:00
#define SC_CHKFORW 1 /* Check for forward definitions when closing
a scope
*/
#define SC_CHKPROC 2 /* Check for forward procedure definitions
when closing a scope
*/
1986-04-22 22:36:16 +00:00
#define SC_REVERSE 4 /* Reverse list of definitions, to get it
back into original order
*/
1986-04-12 02:21:24 +00:00
1986-03-26 15:11:02 +00:00
struct scope {
struct scope *next;
1986-04-18 17:53:47 +00:00
char *sc_name; /* name of this scope */
1986-03-29 01:04:49 +00:00
struct def *sc_def; /* list of definitions in this scope */
1986-04-15 17:51:53 +00:00
arith sc_off; /* offsets of variables in this scope */
char sc_scopeclosed; /* flag indicating closed or open scope */
1986-04-18 17:53:47 +00:00
int sc_level; /* level of this scope */
1986-05-30 18:48:00 +00:00
struct def *sc_definedby; /* The def structure defining this scope */
1986-03-26 15:11:02 +00:00
};
1986-04-28 18:06:58 +00:00
struct scopelist {
struct scopelist *next;
struct scope *sc_scope;
1986-05-16 17:15:36 +00:00
struct scopelist *sc_encl;
1986-04-28 18:06:58 +00:00
};
1986-03-26 15:11:02 +00:00
extern struct scope
1986-04-15 17:51:53 +00:00
*PervasiveScope,
1986-04-03 00:44:39 +00:00
*GlobalScope;
1986-03-26 15:11:02 +00:00
1986-04-28 18:06:58 +00:00
extern struct scopelist
*CurrVis;
#define CurrentScope (CurrVis->sc_scope)
#define enclosing(x) ((x)->sc_encl)
1986-04-15 17:51:53 +00:00
#define scopeclosed(x) ((x)->sc_scopeclosed)
1986-04-28 18:06:58 +00:00
#define nextvisible(x) ((x)->next) /* use with scopelists */