1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1984-07-13 11:25:46 +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".
|
1984-07-13 11:25:46 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* machine dependent back end routines for the z8000
|
|
|
|
*/
|
|
|
|
|
2019-05-10 17:11:26 +00:00
|
|
|
void con_part(register int sz, word w)
|
|
|
|
{
|
1984-07-13 11:25:46 +00:00
|
|
|
while (part_size % sz)
|
|
|
|
part_size++;
|
1984-10-23 15:10:15 +00:00
|
|
|
if (part_size == TEM_WSIZE)
|
1984-07-13 11:25:46 +00:00
|
|
|
part_flush();
|
|
|
|
if (sz == 1) {
|
|
|
|
w &= 0xFF;
|
|
|
|
if (part_size == 0)
|
|
|
|
w <<= 8;
|
|
|
|
part_word |= w;
|
|
|
|
} else {
|
|
|
|
assert(sz == 2);
|
|
|
|
part_word = w;
|
|
|
|
}
|
|
|
|
part_size += sz;
|
|
|
|
}
|
|
|
|
|
2019-05-10 17:11:26 +00:00
|
|
|
void con_mult(word sz)
|
|
|
|
{
|
1984-07-13 11:25:46 +00:00
|
|
|
if (sz != 4)
|
|
|
|
fatal("bad icon/ucon size");
|
1987-01-20 10:04:32 +00:00
|
|
|
fprintf(codefile,"\t.data4 %s\n", str);
|
1984-07-13 11:25:46 +00:00
|
|
|
}
|
|
|
|
|
2019-05-10 17:11:26 +00:00
|
|
|
void con_float(void)
|
|
|
|
{
|
1984-07-13 11:25:46 +00:00
|
|
|
static int been_here;
|
|
|
|
if (argval != 4 && argval != 8)
|
|
|
|
fatal("bad fcon size");
|
1987-01-20 10:04:32 +00:00
|
|
|
fprintf(codefile,"\t.data4 ");
|
1984-07-13 11:25:46 +00:00
|
|
|
if (argval == 8)
|
|
|
|
fprintf(codefile,"F_DUM, ");
|
|
|
|
fprintf(codefile,"F_DUM\n");
|
|
|
|
if ( !been_here++)
|
|
|
|
{
|
|
|
|
fprintf(stderr,"Warning : dummy float-constant(s)\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
string holstr(n) word n; {
|
|
|
|
|
|
|
|
sprintf(str,hol_off,n,holno);
|
|
|
|
return(mystrcpy(str));
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2019-05-10 17:11:26 +00:00
|
|
|
void prolog(full nlocals)
|
|
|
|
{
|
1984-07-13 11:25:46 +00:00
|
|
|
|
|
|
|
fprintf(codefile,"\tpush\t*RR14, R13\n\tld\tR13, R15\n");
|
|
|
|
if (nlocals == 0)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
fprintf(codefile,"\tsub\tR15, $%d\n",nlocals);
|
|
|
|
}
|
|
|
|
|
2019-05-10 17:11:26 +00:00
|
|
|
void mes(word type)
|
|
|
|
{
|
1984-07-13 11:25:46 +00:00
|
|
|
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-20 10:04:32 +00:00
|
|
|
".sect .text", /* SEGTXT */
|
|
|
|
".sect .data", /* SEGCON */
|
|
|
|
".sect .rom", /* SEGROM */
|
|
|
|
".sect .bss" /* SEGBSS */
|
1984-07-13 11:25:46 +00:00
|
|
|
};
|