1985-02-12 14:32:20 +00:00
|
|
|
#ifndef NORCSID
|
|
|
|
static char rcsid[] = "$Header$";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
1987-05-14 14:41:16 +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-02-12 14:32:20 +00:00
|
|
|
*
|
|
|
|
* Author: Hans van Staveren
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* machine dependent back end routines for the PDP-11
|
|
|
|
*/
|
|
|
|
|
1987-05-14 14:41:16 +00:00
|
|
|
/* #define REGPATCH /* save all registers in markblock */
|
|
|
|
|
1985-02-12 14:32:20 +00:00
|
|
|
con_part(sz,w) register sz; word w; {
|
|
|
|
|
|
|
|
while (part_size % sz)
|
|
|
|
part_size++;
|
1987-05-14 14:41:16 +00:00
|
|
|
if (part_size == TEM_WSIZE)
|
1985-02-12 14:32:20 +00:00
|
|
|
part_flush();
|
|
|
|
if (sz == 1) {
|
|
|
|
w &= 0xFF;
|
|
|
|
if (part_size)
|
|
|
|
w <<= 8;
|
|
|
|
part_word |= w;
|
|
|
|
} else {
|
|
|
|
assert(sz == 2);
|
|
|
|
part_word = w;
|
|
|
|
}
|
|
|
|
part_size += sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
con_mult(sz) word sz; {
|
1987-05-14 14:41:16 +00:00
|
|
|
long l, atol();
|
1985-02-12 14:32:20 +00:00
|
|
|
|
|
|
|
if (sz != 4)
|
|
|
|
fatal("bad icon/ucon size");
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef ACK_ASS
|
|
|
|
fprintf(codefile,".data4 %s\n",str);
|
|
|
|
#else
|
1985-02-12 14:32:20 +00:00
|
|
|
l = atol(str);
|
|
|
|
fprintf(codefile,"\t%o;%o\n",(int)(l>>16),(int)l);
|
1987-05-14 14:41:16 +00:00
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
}
|
|
|
|
|
1987-05-14 14:41:16 +00:00
|
|
|
/*
|
|
|
|
* The next function is difficult to do when not running on a PDP 11 or VAX
|
|
|
|
* The strategy followed is to assume the code generator is running on a PDP 11
|
|
|
|
* unless the ACK_ASS define is on.
|
|
|
|
*/
|
|
|
|
|
1985-02-12 14:32:20 +00:00
|
|
|
con_float() {
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef ACK_ASS
|
|
|
|
double f, f1;
|
|
|
|
double atof(), frexp(), modf();
|
|
|
|
int i, j;
|
|
|
|
int sign = 0;
|
|
|
|
int fraction ;
|
1985-02-12 14:32:20 +00:00
|
|
|
|
1987-05-14 14:41:16 +00:00
|
|
|
if (argval != 4 && argval != 8)
|
|
|
|
fatal("bad fcon size");
|
|
|
|
f = atof(str);
|
|
|
|
f = frexp(f, &i);
|
|
|
|
if (f < 0) {
|
|
|
|
f = -f;
|
|
|
|
sign = 1;
|
|
|
|
}
|
|
|
|
while (f < 0.5) {
|
|
|
|
f += f;
|
|
|
|
i --;
|
|
|
|
}
|
|
|
|
f = modf(2 * f, &f1); /* hidden bit */
|
|
|
|
i = (i + 128) & 0377;
|
|
|
|
fraction = (sign << 15) | (i << 7);
|
|
|
|
for (j = 6; j>= 0; j--) {
|
|
|
|
if (f >= 0.5) fraction |= (1 << j);
|
|
|
|
f = modf(2*f, &f1);
|
|
|
|
}
|
|
|
|
fprintf(codefile, ".data2 0%o", fraction);
|
|
|
|
for (i = argval / 2 - 1; i; i--) {
|
|
|
|
fraction = 0;
|
|
|
|
for (j = 15; j>= 0; j--) {
|
|
|
|
if (f >= 0.5) fraction |= (1 << j);
|
|
|
|
f = modf(2*f, &f1);
|
|
|
|
}
|
|
|
|
fprintf(codefile, ", 0%o", fraction);
|
|
|
|
}
|
|
|
|
putc('\n', codefile);
|
|
|
|
#else
|
|
|
|
double f;
|
|
|
|
double atof();
|
|
|
|
int i;
|
|
|
|
short *p;
|
1985-02-12 14:32:20 +00:00
|
|
|
|
|
|
|
if (argval != 4 && argval != 8)
|
|
|
|
fatal("bad fcon size");
|
|
|
|
f = atof(str);
|
|
|
|
p = (short *) &f;
|
|
|
|
i = *p++;
|
|
|
|
if (argval == 8) {
|
|
|
|
fprintf(codefile,"\t%o;%o;",i,*p++);
|
|
|
|
i = *p++;
|
|
|
|
}
|
|
|
|
fprintf(codefile,"\t%o;%o\n",i,*p++);
|
1987-05-14 14:41:16 +00:00
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef REGVARS
|
|
|
|
|
|
|
|
char Rstring[10];
|
|
|
|
full lbytes;
|
|
|
|
struct regadm {
|
|
|
|
char *ra_str;
|
|
|
|
long ra_off;
|
|
|
|
} regadm[2];
|
|
|
|
int n_regvars;
|
|
|
|
|
|
|
|
regscore(off,size,typ,score,totyp) long off; {
|
|
|
|
|
|
|
|
if (size != 2)
|
|
|
|
return(-1);
|
|
|
|
score -= 1; /* allow for save/restore */
|
|
|
|
if (off>=0)
|
|
|
|
score -= 2;
|
|
|
|
if (typ==reg_pointer)
|
|
|
|
score *= 17;
|
|
|
|
else if (typ==reg_loop)
|
|
|
|
score = 10*score+50; /* Guestimate */
|
|
|
|
else
|
|
|
|
score *= 10;
|
1987-05-14 14:41:16 +00:00
|
|
|
return(score); /* estimated # of words of profit */
|
1985-02-12 14:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i_regsave() {
|
|
|
|
|
|
|
|
Rstring[0] = 0;
|
|
|
|
n_regvars=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
f_regsave() {
|
|
|
|
register i;
|
|
|
|
|
|
|
|
if (n_regvars==0 || lbytes==0) {
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef REGPATCH
|
|
|
|
fprintf(codefile,"mov r2,-(sp)\nmov r4,-(sp)\n");
|
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
fprintf(codefile,"mov r5,-(sp)\nmov sp,r5\n");
|
|
|
|
if (lbytes == 2)
|
|
|
|
fprintf(codefile,"tst -(sp)\n");
|
|
|
|
else if (lbytes!=0)
|
|
|
|
fprintf(codefile,"sub $0%o,sp\n",lbytes);
|
|
|
|
for (i=0;i<n_regvars;i++)
|
|
|
|
fprintf(codefile,"mov %s,-(sp)\n",regadm[i].ra_str);
|
|
|
|
} else {
|
|
|
|
if (lbytes>6) {
|
|
|
|
fprintf(codefile,"mov $0%o,r0\n",lbytes);
|
|
|
|
fprintf(codefile,"jsr r5,PR%s\n",Rstring);
|
|
|
|
} else {
|
|
|
|
fprintf(codefile,"jsr r5,PR%d%s\n",lbytes,Rstring);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i=0;i<n_regvars;i++)
|
|
|
|
if (regadm[i].ra_off>=0)
|
|
|
|
fprintf(codefile,"mov 0%lo(r5),%s\n",regadm[i].ra_off,
|
|
|
|
regadm[i].ra_str);
|
|
|
|
}
|
|
|
|
|
|
|
|
regsave(regstr,off,size) char *regstr; long off; {
|
|
|
|
|
1987-05-14 14:41:16 +00:00
|
|
|
fprintf(codefile,"%c Local %ld into %s\n",COMMENTCHAR,off,regstr);
|
|
|
|
/* commented away
|
|
|
|
#ifndef REGPATCH
|
|
|
|
fprintf(codefile,"mov %s,-(sp)\n",regstr);
|
|
|
|
#endif
|
|
|
|
strcat(Rstring,regstr);
|
|
|
|
if (off>=0)
|
|
|
|
fprintf(codefile,"mov 0%lo(r5),%s\n",off,regstr);
|
|
|
|
end of commented away */
|
|
|
|
|
1985-02-12 14:32:20 +00:00
|
|
|
strcat(Rstring,regstr);
|
|
|
|
regadm[n_regvars].ra_str = regstr;
|
|
|
|
regadm[n_regvars].ra_off = off;
|
|
|
|
n_regvars++;
|
|
|
|
}
|
|
|
|
|
|
|
|
regreturn() {
|
|
|
|
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef REGPATCH
|
|
|
|
fprintf(codefile,"jmp eret\n");
|
|
|
|
#else
|
1985-02-12 14:32:20 +00:00
|
|
|
fprintf(codefile,"jmp RT%s\n",Rstring);
|
1987-05-14 14:41:16 +00:00
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
prolog(nlocals) full nlocals; {
|
|
|
|
|
|
|
|
#ifndef REGVARS
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef REGPATCH
|
|
|
|
fprintf(codefile,"mov r2,-(sp)\nmov r4,-(sp)\n");
|
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
fprintf(codefile,"mov r5,-(sp)\nmov sp,r5\n");
|
|
|
|
if (nlocals == 0)
|
|
|
|
return;
|
|
|
|
if (nlocals == 2)
|
|
|
|
fprintf(codefile,"tst -(sp)\n");
|
|
|
|
else
|
|
|
|
fprintf(codefile,"sub $0%o,sp\n",nlocals);
|
|
|
|
#else
|
|
|
|
lbytes = nlocals;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
dlbdlb(as,ls) string as,ls; {
|
|
|
|
|
|
|
|
if (strlen(as)+strlen(ls)+2<sizeof(labstr)) {
|
|
|
|
strcat(ls,":");
|
|
|
|
strcat(ls,as);
|
|
|
|
} else
|
|
|
|
fatal("too many consecutive labels");
|
|
|
|
}
|
|
|
|
|
|
|
|
mes(type) word type; {
|
|
|
|
int argt ;
|
|
|
|
|
|
|
|
switch ( (int)type ) {
|
|
|
|
case ms_ext :
|
|
|
|
for (;;) {
|
|
|
|
switch ( argt=getarg(
|
|
|
|
ptyp(sp_cend)|ptyp(sp_pnam)|sym_ptyp) ) {
|
|
|
|
case sp_cend :
|
|
|
|
return ;
|
|
|
|
default:
|
|
|
|
strarg(argt) ;
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef ACK_ASS
|
|
|
|
fprintf(codefile,".define %s\n",argstr) ;
|
|
|
|
#else
|
1985-02-12 14:32:20 +00:00
|
|
|
fprintf(codefile,".globl %s\n",argstr) ;
|
1987-05-14 14:41:16 +00:00
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
default :
|
|
|
|
while ( getarg(any_ptyp) != sp_cend ) ;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *segname[] = {
|
1987-05-14 14:41:16 +00:00
|
|
|
#ifdef ACK_ASS
|
|
|
|
".sect .text", /* SEGTXT */
|
|
|
|
".sect .data", /* SEGCON */
|
|
|
|
".sect .rom", /* SEGROM */
|
|
|
|
".sect .bss" /* SEGBSS */
|
|
|
|
#else
|
1985-02-12 14:32:20 +00:00
|
|
|
".text", /* SEGTXT */
|
|
|
|
".data", /* SEGCON */
|
|
|
|
".data", /* SEGROM */
|
|
|
|
".bss" /* SEGBSS */
|
1987-05-14 14:41:16 +00:00
|
|
|
#endif
|
1985-02-12 14:32:20 +00:00
|
|
|
};
|