1987-04-29 10:22:07 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*
|
|
|
|
* Author: Ceriel J.H. Jacobs
|
|
|
|
*/
|
|
|
|
|
1986-03-26 15:11:02 +00:00
|
|
|
/* O V E R A L L S T R U C T U R E */
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
1986-03-26 15:11:02 +00:00
|
|
|
{
|
1986-05-01 19:06:53 +00:00
|
|
|
#include "debug.h"
|
1986-03-20 14:52:03 +00:00
|
|
|
|
1986-03-26 15:11:02 +00:00
|
|
|
#include <alloc.h>
|
1990-09-27 17:01:01 +00:00
|
|
|
#include <em_arith.h>
|
|
|
|
#include <em_label.h>
|
|
|
|
#include <em_code.h>
|
1990-08-01 14:35:07 +00:00
|
|
|
#include <stb.h>
|
1986-04-21 17:27:06 +00:00
|
|
|
|
1987-10-19 11:28:37 +00:00
|
|
|
#include "strict3rd.h"
|
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-08-26 14:33:24 +00:00
|
|
|
#include "f_info.h"
|
1986-11-05 14:33:00 +00:00
|
|
|
#include "warning.h"
|
1986-04-21 17:27:06 +00:00
|
|
|
|
1988-10-13 15:43:23 +00:00
|
|
|
extern t_def *GetDefinitionModule();
|
|
|
|
|
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
|
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
register t_def *df;
|
|
|
|
t_node *exportlist;
|
|
|
|
int qualified;
|
1986-03-29 01:04:49 +00:00
|
|
|
} :
|
1986-10-06 20:36:30 +00:00
|
|
|
MODULE IDENT { df = DefineLocalModule(dot.TOK_IDF); }
|
1988-02-10 14:06:34 +00:00
|
|
|
priority(&(df->mod_priority))
|
1986-04-17 09:28:09 +00:00
|
|
|
';'
|
1986-03-29 01:04:49 +00:00
|
|
|
import(1)*
|
1988-02-10 14:06:34 +00:00
|
|
|
export(&qualified, &exportlist)
|
1990-07-30 15:56:25 +00:00
|
|
|
{ if (options['g']) stb_string(df, D_MODULE); }
|
1986-07-08 14:59:02 +00:00
|
|
|
block(&(df->mod_body))
|
1988-02-10 14:06:34 +00:00
|
|
|
IDENT { EnterExportList(exportlist, qualified);
|
1990-07-30 15:56:25 +00:00
|
|
|
if (options['g']) stb_string(df, D_END);
|
1986-04-23 22:12:22 +00:00
|
|
|
close_scope(SC_CHKFORW|SC_CHKPROC|SC_REVERSE);
|
1986-10-06 20:36:30 +00:00
|
|
|
match_id(df->df_idf, dot.TOK_IDF);
|
1986-04-21 17:27:06 +00:00
|
|
|
}
|
1986-03-20 14:52:03 +00:00
|
|
|
;
|
|
|
|
|
1988-02-10 14:06:34 +00:00
|
|
|
priority(register t_node **prio;):
|
1986-12-01 10:06:53 +00:00
|
|
|
[
|
1988-02-10 14:06:34 +00:00
|
|
|
'[' ConstExpression(prio) ']'
|
|
|
|
{ if (! ((*prio)->nd_type->tp_fund & T_CARDINAL)) {
|
|
|
|
node_error(*prio, "illegal priority");
|
1986-04-21 17:27:06 +00:00
|
|
|
}
|
|
|
|
}
|
1986-12-01 10:06:53 +00:00
|
|
|
|
|
|
|
|
]
|
1986-03-20 14:52:03 +00:00
|
|
|
;
|
|
|
|
|
1987-09-23 16:39:43 +00:00
|
|
|
export(int *QUALflag; t_node **ExportList;):
|
1988-02-10 14:06:34 +00:00
|
|
|
{ *ExportList = 0; *QUALflag = D_EXPORTED; }
|
1986-03-26 22:46:48 +00:00
|
|
|
[
|
1988-02-10 14:06:34 +00:00
|
|
|
EXPORT
|
|
|
|
[
|
|
|
|
QUALIFIED
|
|
|
|
{ *QUALflag = D_QEXPORTED; }
|
|
|
|
|
|
|
|
|
]
|
|
|
|
IdentList(ExportList) ';'
|
1986-04-28 18:06:58 +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
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
t_node *ImportList;
|
|
|
|
register t_node *FromId = 0;
|
|
|
|
register t_def *df;
|
1986-03-20 14:52:03 +00:00
|
|
|
} :
|
1988-10-13 15:43:23 +00:00
|
|
|
/*
|
|
|
|
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-20 14:52:03 +00:00
|
|
|
[ FROM
|
1987-08-10 21:43:47 +00:00
|
|
|
IDENT { FromId = dot2leaf(Name);
|
1987-10-21 11:29:52 +00:00
|
|
|
if (local) {
|
|
|
|
df = lookfor(FromId,enclosing(CurrVis),0,D_USED);
|
|
|
|
}
|
1986-11-05 14:33:00 +00:00
|
|
|
else df = GetDefinitionModule(dot.TOK_IDF, 1);
|
1986-08-26 14:33:24 +00:00
|
|
|
}
|
1988-10-13 15:43:23 +00:00
|
|
|
IMPORT IdentList(&ImportList) ';'
|
|
|
|
{ EnterFromImportList(ImportList, df, FromId); }
|
1988-02-10 14:06:34 +00:00
|
|
|
|
|
1988-10-13 15:43:23 +00:00
|
|
|
IMPORT IdentList(&ImportList) ';'
|
|
|
|
{ EnterImportList(ImportList,
|
|
|
|
local,
|
|
|
|
enclosing(CurrVis)->sc_scope);
|
|
|
|
}
|
1988-02-10 14:06:34 +00:00
|
|
|
]
|
1988-10-13 15:43:23 +00:00
|
|
|
{
|
1987-10-19 11:28:37 +00:00
|
|
|
FreeNode(ImportList);
|
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
|
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
register t_def *df;
|
|
|
|
t_node *exportlist;
|
|
|
|
int dummy;
|
|
|
|
extern t_idf *DefId;
|
|
|
|
extern int ForeignFlag;
|
1988-03-23 17:44:25 +00:00
|
|
|
extern char *sprint();
|
1988-02-10 14:06:34 +00:00
|
|
|
register t_scope *currscope = CurrentScope;
|
1988-03-23 17:44:25 +00:00
|
|
|
char buf[512];
|
1986-03-26 22:46:48 +00:00
|
|
|
} :
|
1986-04-03 17:41:26 +00:00
|
|
|
DEFINITION
|
1986-10-06 20:36:30 +00:00
|
|
|
MODULE IDENT { df = define(dot.TOK_IDF, GlobalScope, D_MODULE);
|
1988-02-10 14:06:34 +00:00
|
|
|
df->df_flags |= D_BUSY | ForeignFlag;
|
|
|
|
currscope->sc_definedby = df;
|
1990-11-22 11:25:34 +00:00
|
|
|
if (DefId &&
|
|
|
|
df->df_idf != DefId &&
|
|
|
|
!is_anon_idf(df->df_idf)) {
|
1987-04-29 10:22:07 +00:00
|
|
|
error("DEFINITION MODULE name is \"%s\", not \"%s\"",
|
|
|
|
df->df_idf->id_text, DefId->id_text);
|
1986-12-09 17:41:06 +00:00
|
|
|
}
|
1988-03-23 17:44:25 +00:00
|
|
|
sprint(buf, "_%s_", df->df_idf->id_text);
|
|
|
|
currscope->sc_name = Salloc(buf, (unsigned) strlen(buf) + 1);
|
1986-06-17 12:04:05 +00:00
|
|
|
df->mod_vis = CurrVis;
|
1986-12-01 10:06:53 +00:00
|
|
|
df->df_type = standard_type(T_RECORD, 1, (arith) 1);
|
1988-02-10 14:06:34 +00:00
|
|
|
df->df_type->rec_scope = currscope;
|
1986-04-18 17:53:47 +00:00
|
|
|
DefinitionModule++;
|
1990-07-30 15:56:25 +00:00
|
|
|
if (!Defined) {
|
|
|
|
Defined = df;
|
|
|
|
if (options['g']) stb_string(df, D_MODULE);
|
|
|
|
}
|
1986-03-26 22:46:48 +00:00
|
|
|
}
|
1986-03-26 15:11:02 +00:00
|
|
|
';'
|
|
|
|
import(0)*
|
1988-02-10 14:06:34 +00:00
|
|
|
export(&dummy, &exportlist)
|
1986-07-08 14:59:02 +00:00
|
|
|
/* New Modula-2 does not have export lists in definition
|
|
|
|
modules. Issue a warning.
|
|
|
|
*/
|
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
if (exportlist) {
|
1987-10-19 11:28:37 +00:00
|
|
|
#ifndef STRICT_3RD_ED
|
1988-02-10 14:06:34 +00:00
|
|
|
if (! options['3'])
|
1986-11-17 11:41:28 +00:00
|
|
|
node_warning(exportlist, W_OLDFASHIONED, "export list in definition module ignored");
|
1988-02-10 14:06:34 +00:00
|
|
|
else
|
1987-10-19 11:28:37 +00:00
|
|
|
#endif
|
|
|
|
error("export list not allowed in definition module");
|
1988-02-10 14:06:34 +00:00
|
|
|
FreeNode(exportlist);
|
|
|
|
}
|
1986-06-10 13:18:52 +00:00
|
|
|
}
|
1986-04-03 17:41:26 +00:00
|
|
|
definition* END IDENT
|
1988-02-10 14:06:34 +00:00
|
|
|
{ end_definition_list(&(currscope->sc_def));
|
1986-04-18 17:53:47 +00:00
|
|
|
DefinitionModule--;
|
1986-10-06 20:36:30 +00:00
|
|
|
match_id(df->df_idf, dot.TOK_IDF);
|
1986-12-16 15:22:33 +00:00
|
|
|
df->df_flags &= ~D_BUSY;
|
1986-03-29 01:04:49 +00:00
|
|
|
}
|
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
|
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
register t_def *df;
|
|
|
|
t_def *dummy;
|
1986-03-26 22:46:48 +00:00
|
|
|
} :
|
1986-11-28 11:59:08 +00:00
|
|
|
CONST [ %persistent ConstantDeclaration ';' ]*
|
1986-03-20 14:52:03 +00:00
|
|
|
|
|
|
|
|
TYPE
|
1986-11-28 11:59:08 +00:00
|
|
|
[ %persistent
|
|
|
|
IDENT { df = define(dot.TOK_IDF, CurrentScope, D_TYPE); }
|
1986-04-08 18:15:46 +00:00
|
|
|
[ '=' type(&(df->df_type))
|
1988-11-15 14:45:59 +00:00
|
|
|
{ SolveForwardTypeRefs(df); }
|
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-06-04 09:01:48 +00:00
|
|
|
df->df_type = construct_type(T_HIDDEN, NULLTYPE);
|
1986-04-15 17:51:53 +00:00
|
|
|
}
|
1986-03-20 14:52:03 +00:00
|
|
|
]
|
1986-11-05 14:33:00 +00:00
|
|
|
';'
|
1990-07-30 15:56:25 +00:00
|
|
|
{ if (options['g']) stb_string(df, D_TYPE); }
|
1986-03-20 14:52:03 +00:00
|
|
|
]*
|
|
|
|
|
|
1986-11-28 11:59:08 +00:00
|
|
|
VAR [ %persistent VariableDeclaration ';' ]*
|
1986-03-20 14:52:03 +00:00
|
|
|
|
|
1988-02-10 14:06:34 +00:00
|
|
|
ProcedureHeading(&dummy, D_PROCHEAD) ';'
|
1986-03-20 14:52:03 +00:00
|
|
|
;
|
|
|
|
|
1986-05-28 18:36:51 +00:00
|
|
|
ProgramModule
|
1986-04-03 00:44:39 +00:00
|
|
|
{
|
1988-02-10 14:06:34 +00:00
|
|
|
register t_def *df;
|
1986-03-29 01:04:49 +00:00
|
|
|
} :
|
1986-04-03 17:41:26 +00:00
|
|
|
MODULE
|
1986-10-06 20:36:30 +00:00
|
|
|
IDENT { if (state == IMPLEMENTATION) {
|
|
|
|
df = GetDefinitionModule(dot.TOK_IDF, 0);
|
1986-04-28 18:06:58 +00:00
|
|
|
CurrVis = df->mod_vis;
|
1986-04-17 09:28:09 +00:00
|
|
|
}
|
|
|
|
else {
|
1986-12-01 10:06:53 +00:00
|
|
|
Defined = df = define(dot.TOK_IDF, GlobalScope, D_MODULE);
|
1986-04-17 09:28:09 +00:00
|
|
|
open_scope(CLOSEDSCOPE);
|
1986-04-28 18:06:58 +00:00
|
|
|
df->mod_vis = CurrVis;
|
1988-03-23 17:44:25 +00:00
|
|
|
CurrentScope->sc_name = "__M2M_";
|
1987-04-29 10:22:07 +00:00
|
|
|
CurrentScope->sc_definedby = df;
|
1990-07-30 15:56:25 +00:00
|
|
|
if (options['g']) stb_string(df, D_MODULE);
|
1986-04-17 09:28:09 +00:00
|
|
|
}
|
|
|
|
}
|
1988-02-10 14:06:34 +00:00
|
|
|
priority(&(df->mod_priority))
|
1986-03-29 01:04:49 +00:00
|
|
|
';' import(0)*
|
1986-07-08 14:59:02 +00:00
|
|
|
block(&(df->mod_body)) IDENT
|
1990-08-01 14:35:07 +00:00
|
|
|
{ if (options['g']) {
|
|
|
|
if (state == PROGRAM) {
|
|
|
|
C_ms_stb_cst(df->df_idf->id_text,
|
|
|
|
N_MAIN,
|
|
|
|
0,
|
|
|
|
(arith) 0);
|
|
|
|
}
|
|
|
|
stb_string(df, D_END);
|
|
|
|
}
|
1990-07-30 15:56:25 +00:00
|
|
|
close_scope(SC_CHKFORW|SC_CHKPROC|SC_REVERSE);
|
1986-10-06 20:36:30 +00:00
|
|
|
match_id(df->df_idf, dot.TOK_IDF);
|
1986-04-17 09:28:09 +00:00
|
|
|
}
|
1986-03-26 17:53:13 +00:00
|
|
|
'.'
|
1986-03-20 14:52:03 +00:00
|
|
|
;
|
|
|
|
|
1988-02-10 14:06:34 +00:00
|
|
|
CompilationUnit:
|
|
|
|
{ error("Compiling a definition module");
|
|
|
|
open_scope(CLOSEDSCOPE);
|
|
|
|
state = DEFINITION;
|
|
|
|
}
|
1988-01-22 12:04:27 +00:00
|
|
|
DefinitionModule
|
1988-02-10 14:06:34 +00:00
|
|
|
{ close_scope(SC_CHKFORW); }
|
1986-11-26 16:40:45 +00:00
|
|
|
| %default
|
1986-03-26 15:11:02 +00:00
|
|
|
[
|
1988-02-10 14:06:34 +00:00
|
|
|
IMPLEMENTATION
|
|
|
|
{ state = IMPLEMENTATION; }
|
1986-05-28 18:36:51 +00:00
|
|
|
|
|
1988-02-10 14:06:34 +00:00
|
|
|
/* empty */
|
|
|
|
{ state = PROGRAM; }
|
1986-05-28 18:36:51 +00:00
|
|
|
]
|
|
|
|
ProgramModule
|
1986-03-20 14:52:03 +00:00
|
|
|
;
|