7ab4794a05
If a .c file included "types.h" before "mach.h", then it missed the declaration of mach_option(). Fix by adding "xmach.h". Fix mach/powerpc/ncg/mach.h and mach/vc4/ncg/mach.h to use the correct type in their printf() format strings.
299 lines
5.4 KiB
C
299 lines
5.4 KiB
C
/* $Id$ */
|
|
/*
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* machine dependent back end routines for the Motorola 68000, 68010 or 68020
|
|
*/
|
|
|
|
#include <whichone.h>
|
|
|
|
#if TBL68020
|
|
#define SYNTAX_68020 1
|
|
#endif
|
|
|
|
#include <stb.h>
|
|
|
|
void
|
|
con_part(int sz, word w) {
|
|
|
|
while (part_size % sz)
|
|
part_size++;
|
|
if (part_size == TEM_WSIZE)
|
|
part_flush();
|
|
if (sz == 1) {
|
|
w &= 0xFF;
|
|
#if WORD_SIZE==4
|
|
w <<= 8*(3-part_size);
|
|
part_word |= w;
|
|
} else if (sz == 2) {
|
|
w &= 0xFFFF;
|
|
#endif
|
|
if (part_size == 0) {
|
|
/* Shift 8 for m68k2, 16 otherwise */
|
|
w <<= 4 * TEM_WSIZE;
|
|
}
|
|
part_word |= w;
|
|
} else {
|
|
assert(sz == TEM_WSIZE);
|
|
part_word = w;
|
|
}
|
|
part_size += sz;
|
|
}
|
|
|
|
void
|
|
con_mult(word sz) {
|
|
|
|
if (sz != 8)
|
|
fatal("bad icon/ucon size");
|
|
fprintf(codefile,".data8\t%s\n", str);
|
|
}
|
|
|
|
#define IEEEFLOAT
|
|
#define CODE_GENERATOR
|
|
#define FL_MSL_AT_LOW_ADDRESS 1
|
|
#define FL_MSW_AT_LOW_ADDRESS 1
|
|
#define FL_MSB_AT_LOW_ADDRESS 1
|
|
#include <con_float>
|
|
|
|
int
|
|
regscore(off,size,typ,score,totyp)
|
|
long off;
|
|
{
|
|
if (score == 0) return -1;
|
|
switch(typ) {
|
|
case reg_float:
|
|
return -1;
|
|
case reg_pointer:
|
|
if (size != 4 || totyp != reg_pointer) return -1;
|
|
score += (score >> 1);
|
|
break;
|
|
case reg_loop:
|
|
score += 5;
|
|
/* fall through .. */
|
|
case reg_any:
|
|
if (size != TEM_WSIZE || totyp == reg_pointer) return -1;
|
|
break;
|
|
}
|
|
if (off >= 0) {
|
|
/* parameters must be initialised with an instruction
|
|
* like "move.l 4(a6),d0", which costs 2 words.
|
|
*/
|
|
score -= 2;
|
|
}
|
|
score--; /* save/restore */
|
|
return score;
|
|
}
|
|
struct regsav_t {
|
|
const char *rs_reg; /* e.g. "a3" or "d5" */
|
|
long rs_off; /* offset of variable */
|
|
int rs_size; /* 2 or 4 bytes */
|
|
} regsav[9];
|
|
|
|
|
|
int regnr;
|
|
|
|
void
|
|
i_regsave()
|
|
{
|
|
regnr = 0;
|
|
}
|
|
|
|
full nlocals;
|
|
|
|
void
|
|
regreturn()
|
|
{
|
|
register struct regsav_t *p;
|
|
|
|
if (regnr > 1) {
|
|
#ifdef SYNTAX_68020
|
|
fprintf(codefile,"movem.l (-%ld,a6),", nlocals);
|
|
#else
|
|
fprintf(codefile,"movem.l -%ld(a6),", nlocals);
|
|
#endif
|
|
for (p = regsav; ;) {
|
|
fputs(p->rs_reg, codefile);
|
|
if (++p == ®sav[regnr]) break;
|
|
putc('/',codefile);
|
|
}
|
|
putc('\n',codefile);
|
|
} else if (regnr == 1) {
|
|
p = regsav;
|
|
#ifdef SYNTAX_68020
|
|
fprintf(codefile,"move.l (-%ld,a6),%s\n",nlocals, p->rs_reg);
|
|
#else
|
|
fprintf(codefile,"move.l -%ld(a6),%s\n",nlocals, p->rs_reg);
|
|
#endif
|
|
}
|
|
fputs("unlk a6\nrts\n", codefile);
|
|
}
|
|
|
|
void
|
|
f_regsave()
|
|
{
|
|
register struct regsav_t *p;
|
|
|
|
nlocals += regnr*4;
|
|
#ifdef TBL68020
|
|
fprintf(codefile,"link\ta6,#-%ld\n",nlocals);
|
|
#else
|
|
if (nlocals > 32768) {
|
|
fprintf(codefile, "move.l a6,-(sp)\nmove.l sp,a6\nsub #%ld,sp\n", nlocals);
|
|
}
|
|
else fprintf(codefile,"link\ta6,#-%ld\n",nlocals);
|
|
#endif
|
|
#ifndef NOSTACKTEST
|
|
fprintf(codefile, "tst.b %s\n",
|
|
#ifdef SYNTAX_68020
|
|
"(-40, sp)"
|
|
#else
|
|
"-40(sp)"
|
|
#endif
|
|
);
|
|
#endif
|
|
if (regnr > 1) {
|
|
fputs("movem.l ", codefile);
|
|
for (p = regsav; ;) {
|
|
fputs(p->rs_reg, codefile);
|
|
if (++p == ®sav[regnr]) break;
|
|
putc('/',codefile);
|
|
}
|
|
fputs(",(sp)\n", codefile);
|
|
} else if (regnr == 1) {
|
|
p = regsav;
|
|
fprintf(codefile,"move.l %s,(sp)\n",p->rs_reg);
|
|
}
|
|
/* initialise register-parameters */
|
|
for (p = regsav; p < ®sav[regnr]; p++) {
|
|
if (p->rs_off >= 0) {
|
|
#ifdef SYNTAX_68020
|
|
fprintf(codefile,"move.%c (%ld,a6),%s\n",
|
|
#else
|
|
fprintf(codefile,"move.%c %ld(a6),%s\n",
|
|
#endif
|
|
(p->rs_size == 4 ? 'l' : 'w'),
|
|
p->rs_off,
|
|
p->rs_reg);
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
regsave(s,off,size)
|
|
const char *s;
|
|
long off;
|
|
{
|
|
assert (regnr < 9);
|
|
regsav[regnr].rs_reg = s;
|
|
regsav[regnr].rs_off = off;
|
|
regsav[regnr++].rs_size = size;
|
|
fprintf(codefile, "!Local %ld into %s\n",off,s);
|
|
}
|
|
|
|
void
|
|
prolog(n) full n; {
|
|
|
|
nlocals = n;
|
|
}
|
|
|
|
#ifdef MACH_OPTIONS
|
|
static int gdb_flag = 0;
|
|
|
|
void
|
|
mach_option(s)
|
|
char *s;
|
|
{
|
|
if (! strcmp(s, "-gdb")) {
|
|
gdb_flag = 1;
|
|
}
|
|
else {
|
|
error("Unknown flag %s", s);
|
|
}
|
|
}
|
|
#endif /* MACH_OPTIONS */
|
|
|
|
void
|
|
mes(type) word type ; {
|
|
int argt, a1, a2 ;
|
|
|
|
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) ;
|
|
fprintf(codefile,".define %s\n",argstr) ;
|
|
break ;
|
|
}
|
|
}
|
|
case ms_stb:
|
|
argt = getarg(str_ptyp | cst_ptyp);
|
|
if (argt == sp_cstx)
|
|
fputs(".symb \"\", ", codefile);
|
|
else {
|
|
fprintf(codefile, ".symb \"%s\", ", str);
|
|
argt = getarg(cst_ptyp);
|
|
}
|
|
a1 = argval;
|
|
argt = getarg(cst_ptyp);
|
|
a2 = argval;
|
|
argt = getarg(cst_ptyp|nof_ptyp|sof_ptyp|ilb_ptyp|pro_ptyp);
|
|
#ifdef MACH_OPTIONS
|
|
if (gdb_flag) {
|
|
if (a1 == N_PSYM) {
|
|
/* Change offset from AB into offset from
|
|
the frame pointer.
|
|
*/
|
|
argval += 8;
|
|
}
|
|
}
|
|
#endif
|
|
fprintf(codefile, "%s, 0x%x, %d\n", strarg(argt), a1, a2);
|
|
argt = getarg(end_ptyp);
|
|
break;
|
|
case ms_std:
|
|
argt = getarg(str_ptyp | cst_ptyp);
|
|
if (argt == sp_cstx)
|
|
str[0] = '\0';
|
|
else {
|
|
argt = getarg(cst_ptyp);
|
|
}
|
|
swtxt();
|
|
if (argval == N_SLINE
|
|
#ifdef MACH_OPTIONS
|
|
&& ! gdb_flag
|
|
#endif
|
|
) {
|
|
#ifdef SYNTAX_68020
|
|
fputs("jsr (___u_LiB)\n", codefile);
|
|
#else
|
|
fputs("jsr ___u_LiB\n", codefile);
|
|
#endif
|
|
cleanregs(); /* debugger might change variables */
|
|
}
|
|
fprintf(codefile, ".symd \"%s\", 0x%x,", str, (int) argval);
|
|
argt = getarg(cst_ptyp);
|
|
fprintf(codefile, "%d\n", (int) argval);
|
|
argt = getarg(end_ptyp);
|
|
break;
|
|
default :
|
|
while ( getarg(any_ptyp) != sp_cend ) ;
|
|
break ;
|
|
}
|
|
}
|
|
|
|
|
|
char *segname[] = {
|
|
".sect .text", /* SEGTXT */
|
|
".sect .data", /* SEGCON */
|
|
".sect .rom", /* SEGROM */
|
|
".sect .bss" /* SEGBSS */
|
|
};
|