ack/lang/m2/comp/def.c

383 lines
7.8 KiB
C
Raw Normal View History

/*
* (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
/* D E F I N I T I O N M E C H A N I S M */
/* $Header$ */
1986-05-01 19:06:53 +00:00
#include "debug.h"
1986-03-26 15:11:02 +00:00
#include <alloc.h>
#include <em_arith.h>
#include <em_label.h>
1986-03-29 01:04:49 +00:00
#include <assert.h>
1986-04-21 17:27:06 +00:00
#include "LLlex.h"
1986-04-08 18:15:46 +00:00
#include "main.h"
1986-03-26 15:11:02 +00:00
#include "def.h"
1986-04-02 17:34:21 +00:00
#include "type.h"
1986-03-26 15:11:02 +00:00
#include "idf.h"
#include "scope.h"
1986-04-06 17:42:56 +00:00
#include "node.h"
1986-05-28 18:36:51 +00:00
#include "Lpars.h"
1986-04-21 17:27:06 +00:00
1986-10-06 20:36:30 +00:00
STATIC
DefInFront(df)
register t_def *df;
1986-10-06 20:36:30 +00:00
{
/* Put definition "df" in front of the list of definitions
in its scope.
This is neccessary because in some cases the order in this
list is important.
*/
register t_def *df1 = df->df_scope->sc_def;
1986-10-06 20:36:30 +00:00
if (df1 != df) {
/* Definition "df" is not in front of the list
*/
while (df1) {
/* Find definition "df"
*/
if (df1->df_nextinscope == df) {
/* It already was in the list. Remove it
*/
df1->df_nextinscope = df->df_nextinscope;
break;
}
df1 = df1->df_nextinscope;
}
/* Now put it in front
*/
df->df_nextinscope = df->df_scope->sc_def;
df->df_scope->sc_def = df;
}
}
1986-03-27 17:37:41 +00:00
t_def *
1986-04-18 17:53:47 +00:00
MkDef(id, scope, kind)
register t_idf *id;
register t_scope *scope;
1986-04-18 17:53:47 +00:00
{
/* Create a new definition structure in scope "scope", with
id "id" and kind "kind".
*/
register t_def *df;
1986-04-18 17:53:47 +00:00
df = new_def();
df->df_idf = id;
df->df_scope = scope;
df->df_kind = kind;
1987-07-16 19:51:40 +00:00
df->df_next = id->id_def;
1986-04-18 17:53:47 +00:00
id->id_def = df;
1987-10-05 16:17:51 +00:00
if (kind == D_ERROR || kind == D_FORWARD) df->df_type = error_type;
1986-04-18 17:53:47 +00:00
/* enter the definition in the list of definitions in this scope
*/
df->df_nextinscope = scope->sc_def;
scope->sc_def = df;
return df;
}
t_def *
1986-03-26 15:11:02 +00:00
define(id, scope, kind)
register t_idf *id;
register t_scope *scope;
1986-10-06 20:36:30 +00:00
int kind;
1986-03-26 15:11:02 +00:00
{
/* Declare an identifier in a scope, but first check if it
1986-10-06 20:36:30 +00:00
already has been defined.
If so, then check for the cases in which this is legal,
and otherwise give an error message.
1986-03-26 15:11:02 +00:00
*/
register t_def *df;
1986-03-26 15:11:02 +00:00
df = lookup(id, scope, 1);
1986-03-26 17:53:13 +00:00
if ( /* Already in this scope */
df
|| /* A closed scope, and id defined in the pervasive scope */
1986-04-28 18:06:58 +00:00
(
1986-04-15 17:51:53 +00:00
scopeclosed(scope)
1986-03-27 17:37:41 +00:00
&&
(df = lookup(id, PervasiveScope, 1)))
1986-03-26 17:53:13 +00:00
) {
1986-03-26 15:11:02 +00:00
switch(df->df_kind) {
case D_HIDDEN:
1986-06-04 09:01:48 +00:00
/* An opaque type. We may now have found the
definition of this type.
*/
1986-04-03 17:41:26 +00:00
if (kind == D_TYPE && !DefinitionModule) {
1986-05-28 18:36:51 +00:00
df->df_kind = D_TYPE;
1986-03-26 15:11:02 +00:00
return df;
}
break;
1986-04-28 18:06:58 +00:00
1986-04-11 11:57:19 +00:00
case D_FORWMODULE:
1986-06-04 09:01:48 +00:00
/* A forward reference to a module. We may have found
another one, or we may have found the definition
for this module.
*/
1986-04-12 02:21:24 +00:00
if (kind == D_FORWMODULE) {
return df;
}
1986-04-28 18:06:58 +00:00
1986-04-12 02:21:24 +00:00
if (kind == D_MODULE) {
FreeNode(df->for_node);
1986-04-28 18:06:58 +00:00
df->mod_vis = df->for_vis;
1986-04-11 11:57:19 +00:00
df->df_kind = kind;
1986-05-28 18:36:51 +00:00
DefInFront(df);
1986-04-11 11:57:19 +00:00
return df;
}
break;
1986-04-28 18:06:58 +00:00
case D_TYPE:
if (kind == D_FORWTYPE) return df;
break;
1986-11-26 16:40:45 +00:00
case D_FORWTYPE:
if (kind == D_FORWTYPE) return df;
if (kind == D_TYPE) {
df->df_kind = D_FTYPE;
}
else {
error("identifier \"%s\" must be a type",
id->id_text);
}
return df;
1986-04-11 11:57:19 +00:00
case D_FORWARD:
1986-06-04 09:01:48 +00:00
/* A forward reference, for which we may now have
found a definition.
*/
1986-04-12 02:21:24 +00:00
if (kind != D_FORWARD) {
FreeNode(df->for_node);
}
1986-04-28 18:06:58 +00:00
1986-06-04 09:01:48 +00:00
/* Fall through */
1986-04-28 18:06:58 +00:00
1986-04-12 02:21:24 +00:00
case D_ERROR:
1986-06-04 09:01:48 +00:00
/* A definition generated by the compiler, because
it found an error. Maybe, the user gives a
definition after all.
*/
1986-03-26 15:11:02 +00:00
df->df_kind = kind;
return df;
}
1986-04-28 18:06:58 +00:00
1986-04-02 17:34:21 +00:00
if (kind != D_ERROR) {
1986-06-04 09:01:48 +00:00
/* Avoid spurious error messages
*/
1986-10-06 20:36:30 +00:00
error("identifier \"%s\" already declared",
id->id_text);
1986-04-02 17:34:21 +00:00
}
1986-04-28 18:06:58 +00:00
1986-03-26 15:11:02 +00:00
return df;
}
1986-04-28 18:06:58 +00:00
1986-04-18 17:53:47 +00:00
return MkDef(id, scope, kind);
1986-03-26 15:11:02 +00:00
}
1986-06-04 09:01:48 +00:00
RemoveImports(pdf)
register t_def **pdf;
1986-04-03 17:41:26 +00:00
{
/* Remove all imports from a definition module. This is
neccesary because the implementation module might import
them again.
*/
register t_def *df = *pdf;
1986-04-03 17:41:26 +00:00
while (df) {
if (df->df_kind == D_IMPORT) {
1986-06-04 09:01:48 +00:00
RemoveFromIdList(df);
1986-04-12 02:21:24 +00:00
*pdf = df->df_nextinscope;
free_def(df);
1986-04-03 17:41:26 +00:00
}
else {
1986-04-12 02:21:24 +00:00
pdf = &(df->df_nextinscope);
1986-04-03 17:41:26 +00:00
}
1986-04-12 02:21:24 +00:00
df = *pdf;
1986-04-03 17:41:26 +00:00
}
}
1986-06-04 09:01:48 +00:00
RemoveFromIdList(df)
register t_def *df;
1986-04-03 17:41:26 +00:00
{
/* Remove definition "df" from the definition list
*/
register t_idf *id = df->df_idf;
register t_def *df1;
1986-04-03 17:41:26 +00:00
1987-07-16 19:51:40 +00:00
if ((df1 = id->id_def) == df) id->id_def = df->df_next;
1986-04-03 17:41:26 +00:00
else {
1987-07-16 19:51:40 +00:00
while (df1->df_next != df) {
assert(df1->df_next != 0);
df1 = df1->df_next;
1986-04-03 17:41:26 +00:00
}
1987-07-16 19:51:40 +00:00
df1->df_next = df->df_next;
1986-04-03 17:41:26 +00:00
}
}
1986-04-15 17:51:53 +00:00
t_def *
1986-10-06 20:36:30 +00:00
DeclProc(type, id)
register t_idf *id;
1986-04-21 17:27:06 +00:00
{
/* A procedure is declared, either in a definition or a program
1986-06-04 09:01:48 +00:00
module. Create a def structure for it (if neccessary).
Also create a name for it.
1986-04-21 17:27:06 +00:00
*/
register t_def *df;
register t_scope *scope;
1986-05-28 18:36:51 +00:00
extern char *sprint();
1986-06-06 02:22:09 +00:00
static int nmcount;
1986-04-21 17:27:06 +00:00
char buf[256];
assert(type & (D_PROCEDURE | D_PROCHEAD));
if (type == D_PROCHEAD) {
/* In a definition module
*/
1986-10-06 20:36:30 +00:00
df = define(id, CurrentScope, type);
df->for_node = dot2leaf(Name);
if (CurrentScope->sc_definedby->df_flags & D_FOREIGN) {
df->for_name = id->id_text;
}
else {
sprint(buf,"%s_%s",CurrentScope->sc_name,id->id_text);
df->for_name = Salloc(buf, (unsigned) (strlen(buf)+1));
}
1986-10-06 20:36:30 +00:00
if (CurrVis == Defined->mod_vis) {
/* The current module will define this routine.
make sure the name is exported.
*/
C_exp(df->for_name);
}
1986-04-21 17:27:06 +00:00
}
else {
1986-10-06 20:36:30 +00:00
char *name;
df = lookup(id, CurrentScope, 1);
1986-04-21 17:27:06 +00:00
if (df && df->df_kind == D_PROCHEAD) {
/* C_exp already generated when we saw the definition
in the definition module
*/
1986-04-22 22:36:16 +00:00
df->df_kind = D_PROCEDURE;
1986-10-06 20:36:30 +00:00
name = df->for_name;
1986-05-28 18:36:51 +00:00
DefInFront(df);
1986-04-21 17:27:06 +00:00
}
else {
1986-10-06 20:36:30 +00:00
df = define(id, CurrentScope, type);
sprint(buf,"_%d_%s",++nmcount,id->id_text);
name = Salloc(buf, (unsigned)(strlen(buf)+1));
if (options['x']) {
C_exp(buf);
}
else C_inp(buf);
1986-04-21 17:27:06 +00:00
}
1986-10-06 20:36:30 +00:00
open_scope(OPENSCOPE);
scope = CurrentScope;
scope->sc_name = name;
scope->sc_definedby = df;
1986-04-21 17:27:06 +00:00
}
df->prc_vis = CurrVis;
1986-04-21 17:27:06 +00:00
return df;
}
1986-10-06 20:36:30 +00:00
EndProc(df, id)
register t_def *df;
t_idf *id;
1986-05-28 18:36:51 +00:00
{
1986-10-06 20:36:30 +00:00
/* The end of a procedure declaration.
Check that the closing identifier matches the name of the
procedure, close the scope, and check that a function
procedure has at least one RETURN statement.
1986-05-28 18:36:51 +00:00
*/
1986-10-06 20:36:30 +00:00
extern int return_occurred;
1986-05-28 18:36:51 +00:00
1986-10-06 20:36:30 +00:00
match_id(id, df->df_idf);
close_scope(SC_CHKFORW|SC_REVERSE);
if (! return_occurred && ResultType(df->df_type)) {
error("function procedure %s does not return a value",
df->df_idf->id_text);
1986-05-28 18:36:51 +00:00
}
}
t_def *
1986-06-17 12:04:05 +00:00
DefineLocalModule(id)
t_idf *id;
1986-06-17 12:04:05 +00:00
{
/* Create a definition for a local module. Also give it
a name to be used for code generation.
*/
register t_def *df = define(id, CurrentScope, D_MODULE);
register t_scope *sc;
1986-06-17 12:04:05 +00:00
static int modulecount = 0;
char buf[256];
extern char *sprint();
extern int proclevel;
sprint(buf, "_%d%s", ++modulecount, id->id_text);
if (!df->mod_vis) {
/* We never saw the name of this module before. Create a
scope for it.
*/
open_scope(CLOSEDSCOPE);
df->mod_vis = CurrVis;
}
CurrVis = df->mod_vis;
sc = CurrentScope;
sc->sc_level = proclevel;
sc->sc_definedby = df;
sc->sc_name = Salloc(buf, (unsigned) (strlen(buf) + 1));
/* Create a type for it
*/
1986-11-26 16:40:45 +00:00
df->df_type = standard_type(T_RECORD, 1, (arith) 0);
1986-08-26 14:33:24 +00:00
df->df_type->rec_scope = sc;
1986-06-17 12:04:05 +00:00
/* Generate code that indicates that the initialization procedure
for this module is local.
*/
if (options['x']) {
C_exp(buf);
}
else C_inp(buf);
1986-06-17 12:04:05 +00:00
return df;
}
1986-10-06 20:36:30 +00:00
CheckWithDef(df, tp)
register t_def *df;
t_type *tp;
1986-10-06 20:36:30 +00:00
{
/* Check the header of a procedure declaration against a
possible earlier definition in the definition module.
*/
if (df->df_type) {
/* We already saw a definition of this type
in the definition module.
*/
if (!TstProcEquiv(tp, df->df_type)) {
error("inconsistent procedure declaration for \"%s\"",
df->df_idf->id_text);
}
FreeType(df->df_type);
}
df->df_type = tp;
}
1986-04-15 17:51:53 +00:00
#ifdef DEBUG
PrDef(df)
register t_def *df;
1986-04-15 17:51:53 +00:00
{
1986-05-01 19:06:53 +00:00
print("n: %s, k: %d\n", df->df_idf->id_text, df->df_kind);
1986-04-15 17:51:53 +00:00
}
#endif DEBUG