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-04-03 00:44:39 +00:00
|
|
|
/* D E F I N I T I O N M O D U L E S */
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
/* $Header$ */
|
|
|
|
|
1986-05-01 19:06:53 +00:00
|
|
|
#include "debug.h"
|
1986-04-04 13:47:04 +00:00
|
|
|
|
1986-04-03 00:44:39 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <em_arith.h>
|
|
|
|
#include <em_label.h>
|
1987-04-29 10:22:07 +00:00
|
|
|
#include <alloc.h>
|
1986-04-21 17:27:06 +00:00
|
|
|
|
1986-04-03 00:44:39 +00:00
|
|
|
#include "idf.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "scope.h"
|
|
|
|
#include "def.h"
|
|
|
|
#include "LLlex.h"
|
1986-10-06 20:36:30 +00:00
|
|
|
#include "Lpars.h"
|
1986-04-03 00:44:39 +00:00
|
|
|
#include "f_info.h"
|
1986-04-21 17:27:06 +00:00
|
|
|
#include "main.h"
|
1986-10-06 20:36:30 +00:00
|
|
|
#include "node.h"
|
1986-11-05 14:33:00 +00:00
|
|
|
#include "type.h"
|
1986-11-17 11:41:28 +00:00
|
|
|
#include "misc.h"
|
1986-04-21 17:27:06 +00:00
|
|
|
|
1986-04-08 18:15:46 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
long sys_filesize();
|
|
|
|
#endif
|
1986-04-03 00:44:39 +00:00
|
|
|
|
1986-12-09 17:41:06 +00:00
|
|
|
struct idf *DefId;
|
|
|
|
|
1987-04-29 10:22:07 +00:00
|
|
|
STATIC char *
|
|
|
|
getwdir(fn)
|
1987-05-18 15:57:33 +00:00
|
|
|
register char *fn;
|
1987-04-29 10:22:07 +00:00
|
|
|
{
|
|
|
|
register char *p;
|
|
|
|
char *strrindex();
|
|
|
|
|
|
|
|
p = strrindex(fn, '/');
|
|
|
|
while (p && *(p + 1) == '\0') { /* remove trailing /'s */
|
|
|
|
*p = '\0';
|
|
|
|
p = strrindex(fn, '/');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
*p = '\0';
|
1987-05-18 15:57:33 +00:00
|
|
|
fn = Salloc(fn, (unsigned) (p - &fn[0] + 1));
|
1987-04-29 10:22:07 +00:00
|
|
|
*p = '/';
|
|
|
|
return fn;
|
|
|
|
}
|
|
|
|
else return ".";
|
|
|
|
}
|
|
|
|
|
1986-11-05 14:33:00 +00:00
|
|
|
STATIC
|
1986-04-03 00:44:39 +00:00
|
|
|
GetFile(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
/* Try to find a file with basename "name" and extension ".def",
|
|
|
|
in the directories mentioned in "DEFPATH".
|
|
|
|
*/
|
1986-10-06 20:36:30 +00:00
|
|
|
char buf[15];
|
1987-05-18 15:57:33 +00:00
|
|
|
char *strncpy(), *strcat();
|
1987-04-29 10:22:07 +00:00
|
|
|
static char *WorkingDir = ".";
|
1986-04-03 00:44:39 +00:00
|
|
|
|
1986-10-06 20:36:30 +00:00
|
|
|
strncpy(buf, name, 10);
|
1986-06-06 02:22:09 +00:00
|
|
|
buf[10] = '\0'; /* maximum length */
|
|
|
|
strcat(buf, ".def");
|
1987-04-29 10:22:07 +00:00
|
|
|
DEFPATH[0] = WorkingDir;
|
1986-04-03 00:44:39 +00:00
|
|
|
if (! InsertFile(buf, DEFPATH, &(FileName))) {
|
1986-11-26 16:40:45 +00:00
|
|
|
error("could not find a DEFINITION MODULE for \"%s\"", name);
|
1986-11-05 14:33:00 +00:00
|
|
|
return 0;
|
1986-04-03 00:44:39 +00:00
|
|
|
}
|
1987-04-29 10:22:07 +00:00
|
|
|
WorkingDir = getwdir(FileName);
|
1986-04-03 00:44:39 +00:00
|
|
|
LineNumber = 1;
|
1986-06-26 09:39:36 +00:00
|
|
|
DO_DEBUG(options['F'], debug("File %s : %ld characters", FileName, sys_filesize(FileName)));
|
1986-11-05 14:33:00 +00:00
|
|
|
return 1;
|
1986-04-03 00:44:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct def *
|
1986-10-06 20:36:30 +00:00
|
|
|
GetDefinitionModule(id, incr)
|
|
|
|
register struct idf *id;
|
1986-04-03 00:44:39 +00:00
|
|
|
{
|
|
|
|
/* Return a pointer to the "def" structure of the definition
|
|
|
|
module indicated by "id".
|
|
|
|
We may have to read the definition module itself.
|
1986-10-06 20:36:30 +00:00
|
|
|
Also increment level by "incr".
|
1986-04-03 00:44:39 +00:00
|
|
|
*/
|
1986-12-16 15:22:33 +00:00
|
|
|
register struct def *df;
|
1986-05-28 18:36:51 +00:00
|
|
|
static int level;
|
1986-11-05 14:33:00 +00:00
|
|
|
struct scopelist *vis;
|
1986-04-03 00:44:39 +00:00
|
|
|
|
1986-10-06 20:36:30 +00:00
|
|
|
level += incr;
|
1986-11-17 11:41:28 +00:00
|
|
|
df = lookup(id, GlobalScope, 1);
|
1986-04-03 00:44:39 +00:00
|
|
|
if (!df) {
|
|
|
|
/* Read definition module. Make an exception for SYSTEM.
|
|
|
|
*/
|
1987-04-29 10:22:07 +00:00
|
|
|
DefId = id;
|
1986-04-03 00:44:39 +00:00
|
|
|
if (!strcmp(id->id_text, "SYSTEM")) {
|
|
|
|
do_SYSTEM();
|
1987-04-29 10:22:07 +00:00
|
|
|
df = lookup(id, GlobalScope, 1);
|
1986-04-03 00:44:39 +00:00
|
|
|
}
|
|
|
|
else {
|
1987-04-29 10:22:07 +00:00
|
|
|
extern int ForeignFlag;
|
|
|
|
|
|
|
|
ForeignFlag = 0;
|
1986-10-06 20:36:30 +00:00
|
|
|
open_scope(CLOSEDSCOPE);
|
1986-11-17 11:41:28 +00:00
|
|
|
if (!is_anon_idf(id) && GetFile(id->id_text)) {
|
1986-11-05 14:33:00 +00:00
|
|
|
DefModule();
|
1987-04-29 10:22:07 +00:00
|
|
|
df = lookup(id, GlobalScope, 1);
|
|
|
|
if (level == 1 &&
|
|
|
|
(!df || !(df->df_flags & D_FOREIGN))) {
|
1986-11-05 14:33:00 +00:00
|
|
|
/* The module is directly imported by
|
1987-04-29 10:22:07 +00:00
|
|
|
the currently defined module, and
|
|
|
|
is not foreign, so we have to
|
|
|
|
remember its name because we have
|
|
|
|
to call its initialization routine
|
1986-11-05 14:33:00 +00:00
|
|
|
*/
|
|
|
|
static struct node *nd_end;
|
|
|
|
register struct node *n;
|
|
|
|
extern struct node *Modules;
|
1986-10-06 20:36:30 +00:00
|
|
|
|
1986-11-05 14:33:00 +00:00
|
|
|
n = MkLeaf(Name, &dot);
|
|
|
|
n->nd_IDF = id;
|
|
|
|
n->nd_symb = IDENT;
|
|
|
|
if (nd_end) nd_end->next = n;
|
|
|
|
else Modules = n;
|
|
|
|
nd_end = n;
|
|
|
|
}
|
1986-05-28 18:36:51 +00:00
|
|
|
}
|
1987-04-29 10:22:07 +00:00
|
|
|
else {
|
|
|
|
df = lookup(id, GlobalScope, 1);
|
|
|
|
CurrentScope->sc_name = id->id_text;
|
|
|
|
}
|
1986-11-05 14:33:00 +00:00
|
|
|
vis = CurrVis;
|
1986-10-06 20:36:30 +00:00
|
|
|
close_scope(SC_CHKFORW);
|
1986-04-03 00:44:39 +00:00
|
|
|
}
|
1986-11-05 14:33:00 +00:00
|
|
|
if (! df) {
|
|
|
|
df = MkDef(id, GlobalScope, D_ERROR);
|
|
|
|
df->df_type = error_type;
|
1986-11-17 11:41:28 +00:00
|
|
|
df->mod_vis = vis;
|
1986-11-05 14:33:00 +00:00
|
|
|
}
|
1986-04-03 00:44:39 +00:00
|
|
|
}
|
1986-12-16 15:22:33 +00:00
|
|
|
else if (df->df_flags & D_BUSY) {
|
|
|
|
error("definition module \"%s\" depends on itself",
|
|
|
|
id->id_text);
|
|
|
|
}
|
1986-11-28 11:59:08 +00:00
|
|
|
else if (df == Defined && level == 1) {
|
1986-11-17 11:41:28 +00:00
|
|
|
error("cannot import from currently defined module");
|
|
|
|
df->df_kind = D_ERROR;
|
|
|
|
}
|
1986-11-05 14:33:00 +00:00
|
|
|
assert(df);
|
1986-10-06 20:36:30 +00:00
|
|
|
level -= incr;
|
1986-04-03 00:44:39 +00:00
|
|
|
return df;
|
|
|
|
}
|