1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1987-03-09 19:15:41 +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".
|
|
|
|
*/
|
1985-04-12 16:56:43 +00:00
|
|
|
/* @(#)comm4.c 1.6 */
|
|
|
|
/*
|
|
|
|
* Micro processor assembler framework written by
|
|
|
|
* Johan Stevenson, Vrije Universiteit, Amsterdam
|
|
|
|
* modified by
|
|
|
|
* Johan Stevenson, Han Schaminee and Hans de Vries
|
|
|
|
* Philips S&I, T&M, PMDS, Eindhoven
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "comm0.h"
|
|
|
|
#include "comm1.h"
|
|
|
|
#include "y.tab.h"
|
2019-03-24 16:13:42 +00:00
|
|
|
#include "object.h"
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
extern YYSTYPE yylval;
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void pass_1(int, char **);
|
|
|
|
#ifdef ASLD
|
|
|
|
static void archive(void);
|
|
|
|
static int needed(void);
|
|
|
|
#endif
|
|
|
|
static void parse(char *);
|
|
|
|
static void pass_23(int);
|
|
|
|
static void setupoutput(void);
|
|
|
|
static void commfinish(void);
|
2016-11-10 21:04:18 +00:00
|
|
|
|
1985-04-12 16:56:43 +00:00
|
|
|
/* ========== Machine independent C routines ========== */
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
void stop(void) {
|
1985-04-12 16:56:43 +00:00
|
|
|
exit(nerrors != 0);
|
|
|
|
}
|
|
|
|
|
Cut down some clang warnings
Edit C code to reduce warnings from clang. Most warnings are for
implicit declarations of functions, but some warnings want me to add
parentheses or curly braces, or to cast arguments for printf().
Make a few other changes, like declaring float_cst() in h/con_float to
be static, and using C99 bool in ego/ra/makeitems.c and
ego/share/makecldef.c. Such changes don't silence warnings; I make
such changes while I silence warnings in the same file. In
float_cst(), rename parameter `str` to `float_str`, so it doesn't
share a name with the global variable `str`.
Remove `const` from `newmodule(const char *)` in mach/proto/as to
silence a warning. I wrongly added the `const` in d347207.
For warnings about implicit declarations of functions, the fix is to
declare the function before calling it. For example, my OpenBSD
system needs <sys/wait.h> to declare wait().
In util/int, add "whatever.h" to declare more functions. Remove old
declarations from "mem.h", to prefer the newer declarations of the
same functions in "data.h" and "stack.h".
2019-10-23 20:06:36 +00:00
|
|
|
static void stop_on_signal(int sig) {
|
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
char *p;
|
|
|
|
int i;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
1986-12-01 15:41:29 +00:00
|
|
|
/* the next test should be performed by the
|
|
|
|
* preprocessor, but it cannot, so it is performed by the compiler.
|
1985-04-12 16:56:43 +00:00
|
|
|
*/
|
1986-12-01 15:41:29 +00:00
|
|
|
|
|
|
|
switch(0) {
|
|
|
|
case 1: break;
|
|
|
|
case (S_ETC|S_COM|S_VAR|S_DOT) != S_ETC : break;
|
|
|
|
}
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
progname = *argv++; argc--;
|
2022-07-16 21:52:41 +00:00
|
|
|
if (signal(SIGINT, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGINT, stop_on_signal);
|
1985-04-12 16:56:43 +00:00
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
p = argv[i];
|
|
|
|
if (*p++ != '-')
|
|
|
|
continue;
|
|
|
|
switch (*p++) {
|
|
|
|
case 'o':
|
1989-12-13 09:19:47 +00:00
|
|
|
if (*p != '\0') {
|
1985-04-12 16:56:43 +00:00
|
|
|
aoutpath = p;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
argv[i] = 0;
|
|
|
|
if (++i >= argc)
|
|
|
|
fatal("-o needs filename");
|
|
|
|
aoutpath = argv[i];
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
#ifdef LISTING
|
|
|
|
dflag = 0;
|
|
|
|
while (*p >= '0' && *p <= '7')
|
|
|
|
dflag = (dflag << 3) + *p++ - '0';
|
|
|
|
if ((dflag & 0777) == 0)
|
|
|
|
dflag |= 0700;
|
|
|
|
dflag &= ~4;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
sflag = 0;
|
|
|
|
while (*p >= '0' && *p <= '7')
|
|
|
|
sflag = (sflag << 3) + *p++ - '0';
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
#ifdef RELOCATION
|
|
|
|
#ifdef ASLD
|
|
|
|
rflag = 1;
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* ASLD */
|
|
|
|
#endif /* RELOCATION */
|
1985-04-12 16:56:43 +00:00
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
#ifdef THREE_PASS
|
|
|
|
bflag = 1;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#ifndef ASLD
|
|
|
|
case 'u':
|
|
|
|
case '\0':
|
|
|
|
uflag = 1;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
argv[i] = 0;
|
|
|
|
}
|
|
|
|
#ifdef RELOCATION
|
|
|
|
if (rflag)
|
|
|
|
sflag |= SYM_SCT;
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* RELOCATION */
|
1985-04-12 16:56:43 +00:00
|
|
|
pass_1(argc, argv);
|
|
|
|
#ifdef THREE_PASS
|
|
|
|
pass_23(PASS_2);
|
|
|
|
#endif
|
|
|
|
pass_23(PASS_3);
|
1986-12-01 15:41:29 +00:00
|
|
|
wr_close();
|
1985-04-12 16:56:43 +00:00
|
|
|
stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ---------- pass 1: arguments, modules, archives ---------- */
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
pass_1(int argc, char **argv)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
char *p;
|
|
|
|
item_t *ip;
|
1985-04-12 16:56:43 +00:00
|
|
|
#ifdef ASLD
|
1986-12-01 15:41:29 +00:00
|
|
|
char armagic[2];
|
1985-04-12 16:56:43 +00:00
|
|
|
#else
|
2017-11-11 04:30:46 +00:00
|
|
|
int nfile = 0;
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
|
|
|
|
1988-06-16 13:24:10 +00:00
|
|
|
#ifdef THREE_PASS
|
|
|
|
bitindex = -1;
|
|
|
|
nbits = BITCHUNK;
|
|
|
|
#endif
|
|
|
|
|
2019-02-10 13:36:15 +00:00
|
|
|
tempfile = tmpfile();
|
1985-04-12 16:56:43 +00:00
|
|
|
#ifdef LISTING
|
|
|
|
listmode = dflag;
|
|
|
|
if (listmode & 0440)
|
2019-02-10 13:36:15 +00:00
|
|
|
listfile = tmpfile();
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
|
|
|
for (ip = keytab; ip->i_type; ip++)
|
|
|
|
item_insert(ip, H_KEY+hash(ip->i_name));
|
|
|
|
machstart(PASS_1);
|
|
|
|
while (--argc >= 0) {
|
|
|
|
p = *argv++;
|
|
|
|
if (p == 0)
|
|
|
|
continue;
|
1986-12-01 15:41:29 +00:00
|
|
|
#ifndef ASLD
|
|
|
|
if (nfile != 0)
|
|
|
|
fatal("second source file %s", p);
|
|
|
|
nfile++;
|
1988-02-05 15:10:08 +00:00
|
|
|
#else
|
1985-04-12 16:56:43 +00:00
|
|
|
if (p[0] == '-' && p[1] == '\0') {
|
|
|
|
input = stdin;
|
|
|
|
parse("STDIN");
|
|
|
|
continue;
|
|
|
|
}
|
1988-02-05 15:10:08 +00:00
|
|
|
#endif
|
2022-07-17 10:58:48 +00:00
|
|
|
if ((input = fopen(p, "rb")) == NULL)
|
1985-04-12 16:56:43 +00:00
|
|
|
fatal("can't open %s", p);
|
|
|
|
#ifdef ASLD
|
|
|
|
if (
|
1986-12-01 15:41:29 +00:00
|
|
|
fread(armagic, 2, 1, input) == 1
|
1985-04-12 16:56:43 +00:00
|
|
|
&&
|
1986-12-01 15:41:29 +00:00
|
|
|
((armagic[0]&0377) |
|
|
|
|
((unsigned)(armagic[1]&0377)<<8)) == ARMAG
|
1985-04-12 16:56:43 +00:00
|
|
|
) {
|
|
|
|
archive();
|
|
|
|
fclose(input);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
rewind(input);
|
|
|
|
#endif
|
|
|
|
parse(p);
|
|
|
|
fclose(input);
|
|
|
|
}
|
1988-02-05 15:10:08 +00:00
|
|
|
#ifndef ASLD
|
|
|
|
if (nfile == 0) {
|
|
|
|
input = stdin;
|
|
|
|
parse("STDIN");
|
|
|
|
}
|
|
|
|
#endif
|
1985-04-12 16:56:43 +00:00
|
|
|
commfinish();
|
|
|
|
machfinish(PASS_1);
|
|
|
|
#ifdef ASLD
|
|
|
|
if (unresolved) {
|
2017-11-11 04:30:46 +00:00
|
|
|
int i;
|
1986-12-01 15:41:29 +00:00
|
|
|
|
1985-04-12 16:56:43 +00:00
|
|
|
nerrors++;
|
|
|
|
fflush(stdout);
|
|
|
|
fprintf(stderr, "unresolved references:\n");
|
|
|
|
for (i = 0; i < H_SIZE; i++) {
|
|
|
|
ip = hashtab[H_GLOBAL+i];
|
|
|
|
while (ip != 0) {
|
|
|
|
if ((ip->i_type & (S_EXT|S_TYP)) == (S_EXT|S_UND))
|
|
|
|
fprintf(stderr, "\t%s\n", ip->i_name);
|
|
|
|
ip = ip->i_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (unresolved)
|
|
|
|
outhead.oh_flags |= HF_LINK;
|
1988-02-05 15:10:08 +00:00
|
|
|
/*
|
1985-04-12 16:56:43 +00:00
|
|
|
if (nfile == 0)
|
|
|
|
fatal("no source file");
|
1988-02-05 15:10:08 +00:00
|
|
|
*/
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef ASLD
|
1989-01-19 16:41:55 +00:00
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
archive(void) {
|
|
|
|
long offset;
|
1986-12-01 15:41:29 +00:00
|
|
|
struct ar_hdr header;
|
2019-03-30 17:14:49 +00:00
|
|
|
char ar_name[AR_NAME_MAX+1];
|
1986-12-01 15:41:29 +00:00
|
|
|
char getsize[AR_TOTAL];
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
archmode++;
|
1986-12-01 15:41:29 +00:00
|
|
|
offset = 2;
|
1985-04-12 16:56:43 +00:00
|
|
|
for (;;) {
|
|
|
|
if (unresolved == 0)
|
|
|
|
break;
|
1986-12-01 15:41:29 +00:00
|
|
|
fseek(input,offset,0);
|
|
|
|
if (fread(getsize,AR_TOTAL,1,input) != 1)
|
1985-04-12 16:56:43 +00:00
|
|
|
break;
|
1986-12-01 15:41:29 +00:00
|
|
|
offset += AR_TOTAL;
|
2019-03-30 17:14:49 +00:00
|
|
|
strncpy(ar_name,getsize,sizeof(header.ar_name)) ;
|
1986-12-01 15:41:29 +00:00
|
|
|
header.ar_size= (((((long) (getsize[AR_SIZE+1]&0377))<<8)+
|
|
|
|
((long) (getsize[AR_SIZE ]&0377))<<8)+
|
|
|
|
((long) (getsize[AR_SIZE+3]&0377))<<8)+
|
|
|
|
((long) (getsize[AR_SIZE+2]&0377)) ;
|
|
|
|
archsize = header.ar_size;
|
1985-04-12 16:56:43 +00:00
|
|
|
if (needed()) {
|
1986-12-01 15:41:29 +00:00
|
|
|
fseek(input,offset,0);
|
|
|
|
archsize = header.ar_size;
|
2019-03-30 17:14:49 +00:00
|
|
|
ar_name[AR_NAME_MAX] = '\0';
|
|
|
|
parse(remember(ar_name));
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
1986-12-01 15:41:29 +00:00
|
|
|
offset += header.ar_size;
|
|
|
|
while (offset % 2)
|
|
|
|
offset++;
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
|
|
|
archmode = 0;
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static int
|
|
|
|
needed(void)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
int c, first;
|
|
|
|
item_t *ip;
|
|
|
|
int need;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
#ifdef LISTING
|
2017-11-11 04:30:46 +00:00
|
|
|
int save;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
save = listflag; listflag = 0;
|
|
|
|
#endif
|
|
|
|
need = 0;
|
|
|
|
peekc = -1;
|
|
|
|
first = 1;
|
|
|
|
for (;;) {
|
|
|
|
c = nextchar();
|
|
|
|
if (c == '\n') {
|
|
|
|
first = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c == ' ' || c == '\t' || c == ',')
|
|
|
|
continue;
|
|
|
|
if (ISALPHA(c) == 0)
|
|
|
|
break;
|
|
|
|
if ((ip = item_search(readident(c))) == 0) {
|
|
|
|
if (first)
|
|
|
|
break;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (first) {
|
1986-12-01 15:41:29 +00:00
|
|
|
if (ip == &keytab[KEYSECT]) {
|
|
|
|
while ((c = nextchar()) != '\n')
|
|
|
|
;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
1985-04-12 16:56:43 +00:00
|
|
|
if (ip != &keytab[KEYDEFINE])
|
|
|
|
break;
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
if ((ip->i_type & S_TYP) == S_UND) {
|
|
|
|
need++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef LISTING
|
|
|
|
listflag = save;
|
|
|
|
#endif
|
|
|
|
return(need);
|
|
|
|
}
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* ASLD */
|
1985-04-12 16:56:43 +00:00
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
parse(char *s)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
int i;
|
|
|
|
item_t *ip;
|
|
|
|
char *p;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
for (p = s; *p; )
|
|
|
|
if (*p++ == '/')
|
|
|
|
s = p;
|
|
|
|
#ifdef ASLD
|
|
|
|
yylval.y_strp = s;
|
|
|
|
putval(MODULE);
|
|
|
|
#endif
|
|
|
|
for (i = 0; i < FB_SIZE; i++)
|
|
|
|
fb_ptr[FB_BACK+i] = 0;
|
|
|
|
newmodule(s);
|
|
|
|
peekc = -1;
|
|
|
|
yyparse();
|
|
|
|
/*
|
|
|
|
* Check for undefined symbols
|
|
|
|
*/
|
|
|
|
#ifdef ASLD
|
|
|
|
for (i = 0; i < H_SIZE; i++) {
|
2019-03-24 16:13:42 +00:00
|
|
|
while ((ip = hashtab[H_LOCAL+i])) {
|
1985-04-12 16:56:43 +00:00
|
|
|
/*
|
|
|
|
* cleanup local queue
|
|
|
|
*/
|
|
|
|
hashtab[H_LOCAL+i] = ip->i_next;
|
|
|
|
/*
|
|
|
|
* make undefined references extern
|
|
|
|
*/
|
|
|
|
if ((ip->i_type & (S_VAR|S_TYP)) == S_UND)
|
|
|
|
ip->i_type |= S_EXT;
|
|
|
|
/*
|
|
|
|
* relink externals in global queue
|
|
|
|
*/
|
|
|
|
if (ip->i_type & S_EXT)
|
|
|
|
item_insert(ip, H_GLOBAL+i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
for (i = 0; i < H_SIZE; i++) {
|
|
|
|
for (ip = hashtab[H_LOCAL+i]; ip; ip = ip->i_next) {
|
|
|
|
if (ip->i_type & S_EXT)
|
|
|
|
continue;
|
|
|
|
if (ip->i_type != S_UND)
|
|
|
|
continue;
|
|
|
|
if (uflag == 0)
|
|
|
|
serror("undefined symbol %s", ip->i_name);
|
|
|
|
ip->i_type |= S_EXT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* Check for undefined numeric labels
|
|
|
|
*/
|
|
|
|
for (i = 0; i < FB_SIZE; i++) {
|
|
|
|
if ((ip = fb_ptr[FB_FORW+i]) == 0)
|
|
|
|
continue;
|
|
|
|
serror("undefined label %d", i);
|
|
|
|
fb_ptr[FB_FORW+i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
pass_23(int n)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
int i;
|
1985-04-12 16:56:43 +00:00
|
|
|
#ifdef ASLD
|
2017-11-11 04:30:46 +00:00
|
|
|
ADDR_T base = 0;
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
2017-11-11 04:30:46 +00:00
|
|
|
sect_t *sp;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
if (nerrors)
|
|
|
|
stop();
|
|
|
|
pass = n;
|
|
|
|
#ifdef LISTING
|
|
|
|
listmode >>= 3;
|
|
|
|
if (listmode & 4)
|
2019-02-10 13:32:17 +00:00
|
|
|
rewind(listfile);
|
1985-04-12 16:56:43 +00:00
|
|
|
listeoln = 1;
|
|
|
|
#endif
|
|
|
|
#ifdef THREE_PASS
|
1988-06-16 13:24:10 +00:00
|
|
|
bitindex = -1;
|
|
|
|
nbits = BITCHUNK;
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
|
|
|
for (i = 0; i < FB_SIZE; i++)
|
|
|
|
fb_ptr[FB_FORW+i] = fb_ptr[FB_HEAD+i];
|
|
|
|
outhead.oh_nemit = 0;
|
|
|
|
for (sp = sect; sp < §[outhead.oh_nsect]; sp++) {
|
|
|
|
#ifdef ASLD
|
|
|
|
if (sp->s_flag & BASED) {
|
|
|
|
base = sp->s_base;
|
|
|
|
if (base % sp->s_lign)
|
|
|
|
fatal("base not aligned");
|
|
|
|
} else {
|
|
|
|
base += (sp->s_lign - 1);
|
|
|
|
base -= (base % sp->s_lign);
|
|
|
|
sp->s_base = base;
|
|
|
|
}
|
|
|
|
base += sp->s_size;
|
|
|
|
base += sp->s_comm;
|
|
|
|
#endif
|
|
|
|
outhead.oh_nemit += sp->s_size - sp->s_zero;
|
|
|
|
}
|
|
|
|
if (pass == PASS_3)
|
|
|
|
setupoutput();
|
|
|
|
for (sp = sect; sp < §[outhead.oh_nsect]; sp++) {
|
|
|
|
sp->s_size = 0;
|
|
|
|
sp->s_zero = 0;
|
|
|
|
#ifdef THREE_PASS
|
|
|
|
sp->s_gain = 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
machstart(n);
|
|
|
|
#ifndef ASLD
|
|
|
|
newmodule(modulename);
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* ASLD */
|
2019-02-10 13:32:17 +00:00
|
|
|
rewind(tempfile);
|
1985-04-12 16:56:43 +00:00
|
|
|
yyparse();
|
|
|
|
commfinish();
|
|
|
|
machfinish(n);
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
void
|
Cut down some clang warnings
Edit C code to reduce warnings from clang. Most warnings are for
implicit declarations of functions, but some warnings want me to add
parentheses or curly braces, or to cast arguments for printf().
Make a few other changes, like declaring float_cst() in h/con_float to
be static, and using C99 bool in ego/ra/makeitems.c and
ego/share/makecldef.c. Such changes don't silence warnings; I make
such changes while I silence warnings in the same file. In
float_cst(), rename parameter `str` to `float_str`, so it doesn't
share a name with the global variable `str`.
Remove `const` from `newmodule(const char *)` in mach/proto/as to
silence a warning. I wrongly added the `const` in d347207.
For warnings about implicit declarations of functions, the fix is to
declare the function before calling it. For example, my OpenBSD
system needs <sys/wait.h> to declare wait().
In util/int, add "whatever.h" to declare more functions. Remove old
declarations from "mem.h", to prefer the newer declarations of the
same functions in "data.h" and "stack.h".
2019-10-23 20:06:36 +00:00
|
|
|
newmodule(char *s)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
1990-01-31 16:27:05 +00:00
|
|
|
static char nmbuf[STRINGMAX];
|
1989-01-19 13:48:09 +00:00
|
|
|
|
1985-04-12 16:56:43 +00:00
|
|
|
switchsect(S_UND);
|
1989-01-19 13:48:09 +00:00
|
|
|
if (s && s != modulename) {
|
1990-01-31 16:27:05 +00:00
|
|
|
strncpy(nmbuf, s, STRINGMAX-1);
|
1989-01-19 13:48:09 +00:00
|
|
|
modulename = nmbuf;
|
|
|
|
}
|
|
|
|
else modulename = s;
|
1985-04-12 16:56:43 +00:00
|
|
|
lineno = 1;
|
1988-05-06 17:03:30 +00:00
|
|
|
#ifdef NEEDED
|
|
|
|
/*
|
|
|
|
* problem: it shows the name of the tempfile, not any name
|
|
|
|
* the user is familiar with. Moreover, it is not reproducable.
|
|
|
|
*/
|
|
|
|
if ((sflag & (SYM_EXT|SYM_LOC|SYM_LAB)) && PASS_SYMB)
|
1991-01-11 14:20:59 +00:00
|
|
|
newsymb(s, S_MOD, 0, (valu_t)0);
|
1988-05-06 17:03:30 +00:00
|
|
|
#endif
|
1985-04-12 16:56:43 +00:00
|
|
|
#ifdef LISTING
|
|
|
|
listtemp = 0;
|
|
|
|
if (dflag & 01000)
|
|
|
|
listtemp = listmode;
|
|
|
|
listflag = listtemp;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
setupoutput(void)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
2017-11-11 04:30:46 +00:00
|
|
|
sect_t *sp;
|
|
|
|
long off;
|
1985-04-12 16:56:43 +00:00
|
|
|
struct outsect outsect;
|
2017-11-11 04:30:46 +00:00
|
|
|
struct outsect *pos = &outsect;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
1986-12-01 15:41:29 +00:00
|
|
|
if (! wr_open(aoutpath)) {
|
|
|
|
fatal("can't create %s", aoutpath);
|
|
|
|
}
|
|
|
|
wr_ohead(&outhead);
|
1985-04-12 16:56:43 +00:00
|
|
|
/*
|
|
|
|
* section table generation
|
|
|
|
*/
|
|
|
|
off = SZ_HEAD;
|
|
|
|
off += (long)outhead.oh_nsect * SZ_SECT;
|
|
|
|
for (sp = sect; sp < §[outhead.oh_nsect]; sp++) {
|
|
|
|
sp->s_foff = off;
|
1986-12-01 15:41:29 +00:00
|
|
|
pos->os_base = SETBASE(sp);
|
|
|
|
pos->os_size = sp->s_size + sp->s_comm;
|
|
|
|
pos->os_foff = sp->s_foff;
|
|
|
|
pos->os_flen = sp->s_size - sp->s_zero;
|
|
|
|
pos->os_lign = sp->s_lign;
|
|
|
|
off += pos->os_flen;
|
|
|
|
wr_sect(pos, 1);
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
|
|
|
#ifdef RELOCATION
|
|
|
|
off += (long)outhead.oh_nrelo * SZ_RELO;
|
|
|
|
#endif
|
|
|
|
if (sflag == 0)
|
|
|
|
return;
|
|
|
|
off += (long)outhead.oh_nname * SZ_NAME;
|
|
|
|
outhead.oh_nchar = off; /* see newsymb() */
|
|
|
|
}
|
|
|
|
|
2017-11-11 04:30:46 +00:00
|
|
|
static void
|
|
|
|
commfinish(void)
|
1985-04-12 16:56:43 +00:00
|
|
|
{
|
1986-12-01 15:41:29 +00:00
|
|
|
#ifndef ASLD
|
2017-11-11 04:30:46 +00:00
|
|
|
int i;
|
1986-12-01 15:41:29 +00:00
|
|
|
#endif
|
2017-11-11 04:30:46 +00:00
|
|
|
struct common_t *cp;
|
|
|
|
item_t *ip;
|
|
|
|
sect_t *sp;
|
|
|
|
valu_t addr;
|
1985-04-12 16:56:43 +00:00
|
|
|
|
|
|
|
switchsect(S_UND);
|
|
|
|
/*
|
|
|
|
* assign .comm labels and produce .comm symbol table entries
|
|
|
|
*/
|
1986-12-01 15:41:29 +00:00
|
|
|
for (cp = commons; cp; cp = cp->c_next) {
|
|
|
|
ip = cp->c_it;
|
|
|
|
#ifndef ASLD
|
|
|
|
if (!( ip->i_type & S_EXT)) {
|
|
|
|
#endif
|
1985-04-12 16:56:43 +00:00
|
|
|
sp = §[(ip->i_type & S_TYP) - S_MIN];
|
|
|
|
if (pass == PASS_1) {
|
|
|
|
addr = sp->s_size + sp->s_comm;
|
|
|
|
sp->s_comm += ip->i_valu;
|
|
|
|
ip->i_valu = addr;
|
1986-12-01 15:41:29 +00:00
|
|
|
#ifndef ASLD
|
|
|
|
ip->i_type &= ~S_COM;
|
|
|
|
#endif
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
1986-12-01 15:41:29 +00:00
|
|
|
#ifdef ASLD
|
1985-04-12 16:56:43 +00:00
|
|
|
#ifdef THREE_PASS
|
1986-12-01 15:41:29 +00:00
|
|
|
if (pass == PASS_2) {
|
1985-04-12 16:56:43 +00:00
|
|
|
ip->i_valu -= sp->s_gain;
|
1986-12-01 15:41:29 +00:00
|
|
|
}
|
1985-04-12 16:56:43 +00:00
|
|
|
#endif
|
|
|
|
if ((sflag & SYM_EXT) && PASS_SYMB)
|
|
|
|
newsymb(
|
|
|
|
ip->i_name,
|
|
|
|
ip->i_type & (S_EXT|S_TYP),
|
1991-01-11 14:20:59 +00:00
|
|
|
0,
|
1985-04-12 16:56:43 +00:00
|
|
|
load(ip)
|
|
|
|
);
|
1991-12-17 15:05:43 +00:00
|
|
|
#else /* not ASLD */
|
1986-12-01 15:41:29 +00:00
|
|
|
#ifdef THREE_PASS
|
|
|
|
if (pass == PASS_2) {
|
|
|
|
cp->c_size -= sp->s_gain;
|
|
|
|
}
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* THREE_PASS */
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
1986-12-01 15:41:29 +00:00
|
|
|
if (pass == PASS_1) cp->c_size = ip->i_valu;
|
|
|
|
if (PASS_SYMB) {
|
|
|
|
if (pass != PASS_3 && (ip->i_type & S_EXT)) {
|
|
|
|
ip->i_valu = outhead.oh_nname;
|
|
|
|
}
|
|
|
|
newsymb(
|
|
|
|
ip->i_name,
|
|
|
|
ip->i_type,
|
1991-01-11 14:20:59 +00:00
|
|
|
0,
|
1986-12-01 15:41:29 +00:00
|
|
|
cp->c_size
|
|
|
|
);
|
|
|
|
}
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* not ASLD */
|
1986-12-01 15:41:29 +00:00
|
|
|
}
|
1985-04-12 16:56:43 +00:00
|
|
|
if (PASS_SYMB == 0)
|
|
|
|
return;
|
|
|
|
#ifndef ASLD
|
|
|
|
/*
|
|
|
|
* produce symbol table entries for undefined's
|
|
|
|
*/
|
|
|
|
for (i = 0; i<H_SIZE; i++)
|
|
|
|
for (ip = hashtab[H_LOCAL+i]; ip; ip = ip->i_next) {
|
|
|
|
if (ip->i_type != (S_EXT|S_UND))
|
|
|
|
continue;
|
|
|
|
if (pass != PASS_3)
|
|
|
|
/*
|
|
|
|
* save symbol table index
|
|
|
|
* for possible relocation
|
|
|
|
*/
|
|
|
|
ip->i_valu = outhead.oh_nname;
|
1986-12-01 15:41:29 +00:00
|
|
|
newsymb(
|
|
|
|
ip->i_name,
|
|
|
|
S_EXT|S_UND,
|
1991-01-11 14:20:59 +00:00
|
|
|
0,
|
1986-12-01 15:41:29 +00:00
|
|
|
(valu_t)0
|
|
|
|
);
|
1985-04-12 16:56:43 +00:00
|
|
|
}
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* not ASLD */
|
1985-04-12 16:56:43 +00:00
|
|
|
/*
|
|
|
|
* produce symbol table entries for sections
|
|
|
|
*/
|
|
|
|
if (sflag & SYM_SCT)
|
|
|
|
for (sp = sect; sp < §[outhead.oh_nsect]; sp++) {
|
|
|
|
ip = sp->s_item;
|
|
|
|
newsymb(
|
|
|
|
ip->i_name,
|
1991-01-11 14:20:59 +00:00
|
|
|
(ip->i_type | S_SCT),
|
|
|
|
0,
|
1985-04-12 16:56:43 +00:00
|
|
|
load(ip)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|