ack/lang/m2/comp/program.g

285 lines
6 KiB
Plaintext
Raw Normal View History

1986-03-26 15:11:02 +00:00
/* O V E R A L L S T R U C T U R E */
{
1986-05-01 19:06:53 +00:00
#ifndef NORCSID
1986-03-26 15:11:02 +00:00
static char *RcsId = "$Header$";
1986-05-01 19:06:53 +00:00
#endif
#include "debug.h"
1986-03-20 14:52:03 +00:00
1986-03-26 15:11:02 +00:00
#include <alloc.h>
#include <em_arith.h>
1986-03-26 22:46:48 +00:00
#include <em_label.h>
1986-04-21 17:27:06 +00:00
1986-03-26 15:11:02 +00:00
#include "main.h"
1986-04-08 18:15:46 +00:00
#include "idf.h"
1986-03-26 15:11:02 +00:00
#include "LLlex.h"
1986-03-26 17:53:13 +00:00
#include "scope.h"
1986-03-26 22:46:48 +00:00
#include "def.h"
#include "type.h"
1986-04-06 17:42:56 +00:00
#include "node.h"
1986-04-21 17:27:06 +00:00
1986-04-12 02:21:24 +00:00
static int DEFofIMPL = 0; /* Flag indicating that we are currently
parsing the definition module of the
implementation module currently being
compiled
*/
1986-04-22 22:36:16 +00:00
struct def *currentdef; /* current definition of module or procedure */
1986-03-26 15:11:02 +00:00
}
1986-03-20 14:52:03 +00:00
/*
The grammar as given by Wirth is already almost LL(1); the
main problem is that the full form of a qualified designator
may be:
[ module_ident '.' ]* IDENT [ '.' field_ident ]*
which is quite confusing to an LL(1) parser. Rather than
resorting to context-sensitive techniques, I have decided
to render this as:
IDENT [ '.' IDENT ]*
on the grounds that it is quite natural to consider the first
IDENT to be the name of the object and regard the others as
field identifiers.
*/
%lexical LLlex;
%start CompUnit, CompilationUnit;
1986-04-03 00:44:39 +00:00
%start DefModule, DefinitionModule;
1986-03-20 14:52:03 +00:00
1986-03-29 01:04:49 +00:00
ModuleDeclaration
{
struct idf *id;
1986-04-17 09:28:09 +00:00
register struct def *df;
1986-04-22 22:36:16 +00:00
struct def *savecurr = currentdef;
1986-04-21 17:27:06 +00:00
extern int proclevel;
static int modulecount = 0;
char buf[256];
1986-04-23 22:12:22 +00:00
struct node *nd;
1986-04-28 18:06:58 +00:00
struct node *exportlist = 0;
int qualified;
1986-04-21 17:27:06 +00:00
extern char *sprint(), *Malloc(), *strcpy();
1986-03-29 01:04:49 +00:00
} :
1986-04-21 17:27:06 +00:00
MODULE IDENT {
id = dot.TOK_IDF;
df = define(id, CurrentScope, D_MODULE);
1986-04-22 22:36:16 +00:00
currentdef = df;
1986-04-28 18:06:58 +00:00
if (!df->mod_vis) {
1986-04-21 17:27:06 +00:00
open_scope(CLOSEDSCOPE);
1986-04-28 18:06:58 +00:00
df->mod_vis = CurrVis;
1986-04-21 17:27:06 +00:00
}
1986-05-16 17:15:36 +00:00
else {
CurrVis = df->mod_vis;
CurrentScope->sc_level = proclevel;
}
1986-04-22 22:36:16 +00:00
1986-04-21 17:27:06 +00:00
df->df_type = standard_type(T_RECORD, 0, (arith) 0);
1986-04-28 18:06:58 +00:00
df->df_type->rec_scope = df->mod_vis->sc_scope;
1986-05-16 17:15:36 +00:00
sprint(buf, "__%d%s", ++modulecount, id->id_text);
1986-04-21 17:27:06 +00:00
CurrentScope->sc_name =
Malloc((unsigned) (strlen(buf) + 1));
strcpy(CurrentScope->sc_name, buf);
1986-05-16 17:15:36 +00:00
if (! proclevel) C_ina_dnam(&buf[1]);
1986-04-21 17:27:06 +00:00
C_inp(buf);
}
1986-04-17 09:28:09 +00:00
priority(&(df->mod_priority))?
';'
1986-03-29 01:04:49 +00:00
import(1)*
1986-04-28 18:06:58 +00:00
export(&qualified, &exportlist, 0)?
1986-04-23 22:12:22 +00:00
block(&nd)
IDENT { InitProc(nd, df);
1986-04-28 18:06:58 +00:00
if (exportlist) {
Export(exportlist, qualified, df);
FreeNode(exportlist);
}
1986-04-23 22:12:22 +00:00
close_scope(SC_CHKFORW|SC_CHKPROC|SC_REVERSE);
1986-04-21 17:27:06 +00:00
match_id(id, dot.TOK_IDF);
1986-04-22 22:36:16 +00:00
currentdef = savecurr;
1986-04-21 17:27:06 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-04-17 09:28:09 +00:00
priority(arith *pprio;)
1986-04-06 17:42:56 +00:00
{
struct node *nd;
1986-04-17 09:28:09 +00:00
} :
1986-04-06 17:42:56 +00:00
'[' ConstExpression(&nd) ']'
1986-04-21 17:27:06 +00:00
{ if (!(nd->nd_type->tp_fund & T_INTORCARD)) {
node_error(nd, "Illegal priority");
}
*pprio = nd->nd_INT;
FreeNode(nd);
}
1986-03-20 14:52:03 +00:00
;
1986-04-28 18:06:58 +00:00
export(int *QUALflag; struct node **ExportList; int def;)
1986-03-20 14:52:03 +00:00
{
} :
1986-03-26 22:46:48 +00:00
EXPORT
[
1986-04-21 17:27:06 +00:00
QUALIFIED
1986-04-28 18:06:58 +00:00
{ *QUALflag = 1; }
|
{ *QUALflag = 0; }
]
IdentList(ExportList) ';'
1986-03-26 15:11:02 +00:00
{
1986-04-28 18:06:58 +00:00
if (def) {
node_warning(*ExportList, "export list in definition module ignored");
FreeNode(*ExportList);
1986-04-12 02:21:24 +00:00
}
1986-03-26 15:11:02 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-03-26 15:11:02 +00:00
import(int local;)
1986-03-20 14:52:03 +00:00
{
1986-04-06 17:42:56 +00:00
struct node *ImportList;
struct node *id = 0;
1986-03-20 14:52:03 +00:00
} :
[ FROM
1986-04-06 17:42:56 +00:00
IDENT { id = MkNode(Value, NULLNODE, NULLNODE, &dot); }
1986-03-20 14:52:03 +00:00
]?
IMPORT IdentList(&ImportList) ';'
/*
When parsing a global module, this is the place where we must
read already compiled definition modules.
If the FROM clause is present, the identifier in it is a module
name, otherwise the names in the import list are module names.
*/
1986-03-26 15:11:02 +00:00
{
1986-03-29 01:04:49 +00:00
Import(ImportList, id, local);
1986-03-26 15:11:02 +00:00
}
1986-03-20 14:52:03 +00:00
;
1986-03-26 22:46:48 +00:00
DefinitionModule
{
1986-04-03 00:44:39 +00:00
register struct def *df;
1986-03-29 01:04:49 +00:00
struct idf *id;
1986-04-28 18:06:58 +00:00
struct node *exportlist;
int dummy;
1986-03-26 22:46:48 +00:00
} :
1986-04-03 17:41:26 +00:00
DEFINITION
1986-04-21 17:27:06 +00:00
MODULE IDENT {
id = dot.TOK_IDF;
1986-04-03 00:44:39 +00:00
df = define(id, GlobalScope, D_MODULE);
1986-04-15 17:51:53 +00:00
if (!SYSTEMModule) open_scope(CLOSEDSCOPE);
1986-04-21 17:27:06 +00:00
if (!Defined) Defined = df;
1986-04-28 18:06:58 +00:00
df->mod_vis = CurrVis;
1986-04-18 17:53:47 +00:00
CurrentScope->sc_name = id->id_text;
1986-04-10 01:08:49 +00:00
df->df_type = standard_type(T_RECORD, 0, (arith) 0);
1986-04-28 18:06:58 +00:00
df->df_type->rec_scope = df->mod_vis->sc_scope;
1986-04-18 17:53:47 +00:00
DefinitionModule++;
DO_DEBUG(1, debug("Definition module \"%s\" %d",
id->id_text, DefinitionModule));
1986-03-26 22:46:48 +00:00
}
1986-03-26 15:11:02 +00:00
';'
import(0)*
1986-04-28 18:06:58 +00:00
export(&dummy, &exportlist, 1)?
1986-04-03 00:44:39 +00:00
/* New Modula-2 does not have export lists in definition modules.
1986-04-03 17:41:26 +00:00
For the time being, we ignore export lists here, and a
warning is issued.
1986-03-20 14:52:03 +00:00
*/
1986-04-03 17:41:26 +00:00
definition* END IDENT
1986-04-03 00:44:39 +00:00
{
1986-04-12 02:21:24 +00:00
if (DEFofIMPL) {
1986-04-03 17:41:26 +00:00
/* Just read the definition module of the
implementation module being compiled
*/
RemImports(&(CurrentScope->sc_def));
}
1986-04-03 00:44:39 +00:00
df = CurrentScope->sc_def;
while (df) {
/* Make all definitions "QUALIFIED EXPORT" */
df->df_flags |= D_QEXPORTED;
df = df->df_nextinscope;
}
1986-04-12 02:21:24 +00:00
if (!SYSTEMModule) close_scope(SC_CHKFORW);
1986-04-18 17:53:47 +00:00
DefinitionModule--;
1986-03-29 01:04:49 +00:00
match_id(id, dot.TOK_IDF);
}
1986-04-03 17:41:26 +00:00
'.'
1986-03-20 14:52:03 +00:00
;
1986-03-26 22:46:48 +00:00
definition
{
struct def *df;
} :
1986-04-17 09:28:09 +00:00
CONST [ ConstantDeclaration Semicolon ]*
1986-03-20 14:52:03 +00:00
|
TYPE
1986-04-03 00:44:39 +00:00
[ IDENT { df = define(dot.TOK_IDF, CurrentScope, D_TYPE); }
1986-04-08 18:15:46 +00:00
[ '=' type(&(df->df_type))
1986-03-20 14:52:03 +00:00
| /* empty */
/*
Here, the exported type has a hidden implementation.
The export is said to be opaque.
It is restricted to pointer types.
*/
1986-04-15 17:51:53 +00:00
{ df->df_kind = D_HIDDEN;
1986-04-22 22:36:16 +00:00
df->df_type = construct_type(T_POINTER, NULLTYPE);
1986-04-15 17:51:53 +00:00
}
1986-03-20 14:52:03 +00:00
]
1986-04-17 09:28:09 +00:00
Semicolon
1986-03-20 14:52:03 +00:00
]*
|
1986-04-17 09:28:09 +00:00
VAR [ VariableDeclaration Semicolon ]*
1986-03-20 14:52:03 +00:00
|
1986-04-17 09:28:09 +00:00
ProcedureHeading(&df, D_PROCHEAD) Semicolon
;
Semicolon:
';'
|
{ warning("; expected"); }
1986-03-20 14:52:03 +00:00
;
1986-04-03 17:41:26 +00:00
ProgramModule(int state;)
1986-04-03 00:44:39 +00:00
{
1986-03-29 01:04:49 +00:00
struct idf *id;
1986-04-17 09:28:09 +00:00
struct def *GetDefinitionModule();
register struct def *df;
1986-04-23 22:12:22 +00:00
struct node *nd;
1986-03-29 01:04:49 +00:00
} :
1986-04-03 17:41:26 +00:00
MODULE
1986-04-17 09:28:09 +00:00
IDENT {
id = dot.TOK_IDF;
if (state == IMPLEMENTATION) {
DEFofIMPL = 1;
df = GetDefinitionModule(id);
1986-04-22 22:36:16 +00:00
currentdef = df;
1986-04-28 18:06:58 +00:00
CurrVis = df->mod_vis;
CurrentScope = CurrVis->sc_scope;
1986-04-17 09:28:09 +00:00
DEFofIMPL = 0;
}
else {
df = define(id, CurrentScope, D_MODULE);
1986-04-21 17:27:06 +00:00
Defined = df;
1986-04-17 09:28:09 +00:00
open_scope(CLOSEDSCOPE);
1986-04-28 18:06:58 +00:00
df->mod_vis = CurrVis;
1986-04-23 22:12:22 +00:00
CurrentScope->sc_name = id->id_text;
1986-04-17 09:28:09 +00:00
}
}
priority(&(df->mod_priority))?
1986-03-29 01:04:49 +00:00
';' import(0)*
1986-04-23 22:12:22 +00:00
block(&nd) IDENT
{ InitProc(nd, df);
close_scope(SC_CHKFORW|SC_CHKPROC|SC_REVERSE);
1986-04-17 09:28:09 +00:00
match_id(id, dot.TOK_IDF);
}
1986-03-26 17:53:13 +00:00
'.'
1986-03-20 14:52:03 +00:00
;
1986-04-03 17:41:26 +00:00
Module
{
int state = PROGRAM;
} :
1986-03-20 14:52:03 +00:00
DefinitionModule
|
1986-03-26 15:11:02 +00:00
[
IMPLEMENTATION { state = IMPLEMENTATION; }
]?
1986-04-03 17:41:26 +00:00
ProgramModule(state)
1986-03-20 14:52:03 +00:00
;
CompilationUnit:
Module
;