ack/lang/m2/comp/defmodule.c

185 lines
3.6 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-04-03 00:44:39 +00:00
/* D E F I N I T I O N M O D U L E S */
1994-06-24 14:02:31 +00:00
/* $Id$ */
2017-01-07 21:56:00 +00:00
#include "debug.h"
#include "parameters.h"
1986-04-04 13:47:04 +00:00
2017-01-07 21:56:00 +00:00
#include <alloc.h>
#include <assert.h>
#include <em_arith.h>
#include <em_label.h>
2013-05-16 23:04:54 +00:00
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
2017-01-07 21:56:00 +00:00
#include "LLlex.h"
#include "Lpars.h"
#include "def.h"
#include "f_info.h"
#include "idf.h"
#include "input.h"
#include "main.h"
#include "misc.h"
#include "node.h"
#include "scope.h"
#include "type.h"
1986-04-21 17:27:06 +00:00
1986-04-08 18:15:46 +00:00
#ifdef DEBUG
size_t sys_filesize();
1986-04-08 18:15:46 +00:00
#endif
1986-04-03 00:44:39 +00:00
2017-01-07 21:56:00 +00:00
t_idf* DefId;
1986-12-09 17:41:06 +00:00
2017-01-07 21:56:00 +00:00
char*
getwdir(fn) register char* fn;
{
2017-01-07 21:56:00 +00:00
register char* p;
char* strrchr();
2017-01-07 21:56:00 +00:00
while ((p = strrchr(fn, '/')) && *(p + 1) == '\0')
{
/* remove trailing /'s */
*p = '\0';
}
2017-01-07 21:56:00 +00:00
if (p)
{
*p = '\0';
2017-01-07 21:56:00 +00:00
fn = Salloc(fn, (unsigned)(p - &fn[0] + 1));
*p = '/';
return fn;
}
return "";
}
STATIC int
2017-01-07 21:56:00 +00:00
GetFile(name) char* name;
1986-04-03 00:44:39 +00:00
{
/* Try to find a file with basename "name" and extension ".def",
in the directories mentioned in "DEFPATH".
*/
size_t len;
int found;
char *buf;
len = strlen(name);
buf = Malloc(len + 5);
memcpy(buf, name, len);
memcpy(buf + len, ".def", 5);
DEFPATH[0] = WorkingDir;
found = InsertFile(buf, DEFPATH, &(FileName));
free(buf);
if (!found)
2017-01-07 21:56:00 +00:00
{
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
}
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
}
2017-01-07 21:56:00 +00:00
t_def*
GetDefinitionModule(id, incr) register t_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
*/
2017-01-07 21:56:00 +00:00
register t_def* df;
1986-05-28 18:36:51 +00:00
static int level;
2017-01-07 21:56:00 +00:00
t_scopelist* vis;
char* fn = FileName;
int ln = LineNumber;
2017-01-07 21:56:00 +00:00
t_scope* newsc;
1986-04-03 00:44:39 +00:00
1986-10-06 20:36:30 +00:00
level += incr;
df = lookup(id, GlobalScope, D_IMPORTED, 0);
2017-01-07 21:56:00 +00:00
if (!df)
{
1986-04-03 00:44:39 +00:00
/* Read definition module. Make an exception for SYSTEM.
*/
extern int ForeignFlag;
ForeignFlag = 0;
DefId = id;
open_scope(CLOSEDSCOPE);
1988-10-25 17:43:19 +00:00
newsc = CurrentScope;
1988-10-13 15:43:23 +00:00
vis = CurrVis;
1988-10-25 17:43:19 +00:00
newsc->sc_defmodule = incr;
2017-01-07 21:56:00 +00:00
if (!strcmp(id->id_text, "SYSTEM"))
{
1986-04-03 00:44:39 +00:00
do_SYSTEM();
df = lookup(id, GlobalScope, D_IMPORTED, 0);
1986-04-03 00:44:39 +00:00
}
2017-01-07 21:56:00 +00:00
else
{
if (!is_anon_idf(id) && GetFile(id->id_text))
{
2017-01-07 21:56:00 +00:00
char* f = FileName;
1986-11-05 14:33:00 +00:00
DefModule();
df = lookup(id, GlobalScope, D_IMPORTED, 0);
2017-01-07 21:56:00 +00:00
if (level == 1 && (df && !(df->df_flags & D_FOREIGN)))
{
1986-11-05 14:33:00 +00:00
/* The module is directly imported by
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
*/
2017-01-07 21:56:00 +00:00
static t_node* nd_end;
register t_node* n;
extern t_node* Modules;
1986-10-06 20:36:30 +00:00
1988-03-23 17:44:25 +00:00
n = dot2leaf(Def);
n->nd_def = newsc->sc_definedby;
2017-01-07 21:56:00 +00:00
if (nd_end)
nd_end->nd_NEXT = n;
else
Modules = n;
1986-11-05 14:33:00 +00:00
nd_end = n;
}
1993-01-19 15:33:35 +00:00
free(f);
1986-05-28 18:36:51 +00:00
}
2017-01-07 21:56:00 +00:00
else
{
df = lookup(id, GlobalScope, D_IMPORTED, 0);
newsc->sc_name = id->id_text;
}
1986-04-03 00:44:39 +00:00
}
close_scope(SC_CHKFORW);
2017-01-07 21:56:00 +00:00
if (!df)
{
1986-11-05 14:33:00 +00:00
df = MkDef(id, GlobalScope, D_ERROR);
df->mod_vis = vis;
newsc->sc_definedby = df;
1986-11-05 14:33:00 +00:00
}
1986-04-03 00:44:39 +00:00
}
2017-01-07 21:56:00 +00:00
else if (df->df_flags & D_BUSY)
{
error("definition module \"%s\" depends on itself",
2017-01-07 21:56:00 +00:00
id->id_text);
}
2017-01-07 21:56:00 +00:00
else if (df == Defined && level == 1)
{
1987-07-13 11:49:32 +00:00
error("cannot import from current module \"%s\"", id->id_text);
df->df_kind = D_ERROR;
}
FileName = fn;
LineNumber = ln;
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;
}