ack/mach/i86/cg/mach.c

171 lines
2.9 KiB
C
Raw Normal View History

1985-01-07 13:49:31 +00:00
/*
1987-03-10 01:26:51 +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-01-07 13:49:31 +00:00
*
*/
1985-01-11 17:03:53 +00:00
#ifndef NORCSID
static char rcs_m[]= "$Header$" ;
static char rcs_mh[]= ID_MH ;
#endif
1985-01-07 13:49:31 +00:00
/*
* machine dependent back end routines for the Intel 8086
*/
con_part(sz,w) register sz; word w; {
while (part_size % sz)
part_size++;
1985-01-11 17:03:53 +00:00
if (part_size == TEM_WSIZE)
1985-01-07 13:49:31 +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; {
long l;
if (sz != 4)
fatal("bad icon/ucon size");
l = atol(str);
1987-01-08 09:39:54 +00:00
fprintf(codefile,"\t.data2 %d,%d\n",
1985-01-07 13:49:31 +00:00
(int)l&0xFFFF,(int)(l>>16)&0xFFFF);
}
con_float() {
register i;
static int warning_given;
1985-01-07 13:49:31 +00:00
i= argval ;
if (i!= 4 && i!= 8)
fatal("bad fcon size");
if (! warning_given) {
fprintf(stderr, "Warning: dummy floating point constant(s)\n");
warning_given = 1;
}
1985-01-07 13:49:31 +00:00
while ( i ) {
1987-01-08 09:39:54 +00:00
fprintf(codefile," .data2 0,0\n") ;
1985-01-07 13:49:31 +00:00
i -=4 ;
}
}
/*
string holstr(n) word n; {
sprintf(str,hol_off,n,holno);
return(mystrcpy(str));
}
*/
prolog(nlocals) full nlocals; {
fprintf(codefile,"\tpush\tbp\n\tmov\tbp,sp\n");
switch (nlocals) {
case 4: printf("\tpush\tax\n");
case 2: printf("\tpush\tax\n");
case 0: break;
default:
printf("\tsub\tsp,%d\n",nlocals); break;
}
}
#ifdef REGVARS
long si_off;
long di_off;
int firstreg;
regscore(off, size, typ, score, totyp)
long off;
{
if (size != 2) return -1;
if (typ == reg_pointer || typ == reg_loop) score *= 3;
else score *= 2;
score -= 2; /* cost of saving */
if (off >= 0) score -= 3;
return score;
}
i_regsave()
{
si_off = -1;
di_off = -1;
firstreg = 0;
}
f_regsave()
{
}
1985-01-07 13:49:31 +00:00
regsave(regstr, off, size)
char *regstr;
long off;
{
if (strcmp(regstr, "si") == 0) {
if (! firstreg) firstreg = -1;
si_off = off;
fputs("push si\n", codefile);
if (off >= 0)
fprintf(codefile, "mov si,%ld(bp)\n", off);
}
else {
if (! firstreg) firstreg = 1;
di_off = off;
fputs("push di\n", codefile);
if (off >= 0)
fprintf(codefile, "mov di,%ld(bp)\n", off);
}
}
regreturn()
{
if (firstreg == 1) {
if (si_off != -1) fputs("pop si\n", codefile);
fputs("pop di\n", codefile);
}
else if (firstreg == -1) {
if (di_off != -1) fputs("pop di\n", codefile);
fputs("pop si\n", codefile);
}
fputs("mov sp,bp\npop bp\nret\n", codefile);
1985-01-07 13:49:31 +00:00
}
#endif REGVARS
1985-01-07 13:49:31 +00:00
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) ;
printf(".define %s\n",argstr) ;
break ;
}
}
default :
while ( getarg(any_ptyp) != sp_cend ) ;
break ;
}
}
char *segname[] = {
1987-01-08 09:39:54 +00:00
".sect .text", /* SEGTXT */
".sect .data", /* SEGCON */
".sect .rom", /* SEGROM */
".sect .bss" /* SEGBSS */
1985-01-07 13:49:31 +00:00
};