1989-02-14 15:52:25 +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".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NORCSID
|
1994-06-24 14:02:31 +00:00
|
|
|
static char rcs_m[]= "$Id$" ;
|
1989-02-14 15:52:25 +00:00
|
|
|
static char rcs_mh[]= ID_MH ;
|
|
|
|
#endif
|
|
|
|
|
1990-11-01 09:42:03 +00:00
|
|
|
#include <stb.h>
|
|
|
|
|
1989-02-14 15:52:25 +00:00
|
|
|
/*
|
|
|
|
* machine dependent back end routines for the Intel 80386
|
|
|
|
*/
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
2019-10-25 22:17:13 +00:00
|
|
|
con_part(int sz, word w) {
|
1989-02-14 15:52:25 +00:00
|
|
|
|
|
|
|
while (part_size % sz)
|
|
|
|
part_size++;
|
|
|
|
if (part_size == TEM_WSIZE)
|
|
|
|
part_flush();
|
|
|
|
if (sz == 1 || sz == 2) {
|
|
|
|
w &= (sz == 1 ? 0xFF : 0xFFFF);
|
|
|
|
w <<= 8 * part_size;
|
|
|
|
part_word |= w;
|
|
|
|
} else {
|
|
|
|
assert(sz == 4);
|
|
|
|
part_word = w;
|
|
|
|
}
|
|
|
|
part_size += sz;
|
|
|
|
}
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
2019-08-13 19:37:05 +00:00
|
|
|
con_mult(word sz) {
|
1989-02-14 15:52:25 +00:00
|
|
|
|
2019-08-13 19:37:05 +00:00
|
|
|
if (sz != 8)
|
1989-02-14 15:52:25 +00:00
|
|
|
fatal("bad icon/ucon size");
|
2019-08-13 19:37:05 +00:00
|
|
|
fprintf(codefile,".data8\t%s\n", str);
|
1989-02-14 15:52:25 +00:00
|
|
|
}
|
|
|
|
|
1989-10-10 10:44:26 +00:00
|
|
|
#define CODE_GENERATOR
|
|
|
|
#define IEEEFLOAT
|
1989-10-24 15:00:09 +00:00
|
|
|
#define FL_MSL_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSW_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSB_AT_LOW_ADDRESS 0
|
1989-10-10 10:44:26 +00:00
|
|
|
#include <con_float>
|
1989-02-14 15:52:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
string holstr(n) word n; {
|
|
|
|
|
|
|
|
sprintf(str,hol_off,n,holno);
|
|
|
|
return(mystrcpy(str));
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
1991-11-18 09:51:35 +00:00
|
|
|
#ifdef REGVARS
|
|
|
|
full lbytes;
|
|
|
|
#endif
|
|
|
|
|
2016-11-10 21:04:18 +00:00
|
|
|
void
|
1989-02-14 15:52:25 +00:00
|
|
|
prolog(nlocals) full nlocals; {
|
|
|
|
|
1989-10-10 10:44:26 +00:00
|
|
|
fputs("push ebp\nmov ebp,esp\n", codefile);
|
1991-11-18 09:51:35 +00:00
|
|
|
#ifdef REGVARS
|
|
|
|
lbytes = nlocals;
|
|
|
|
#else
|
1991-02-20 09:54:55 +00:00
|
|
|
#ifdef NOTDEF
|
|
|
|
probably not better on 386.
|
1989-10-10 10:44:26 +00:00
|
|
|
switch(nlocals) {
|
|
|
|
case 8:
|
|
|
|
fputs("push eax\n", codefile);
|
|
|
|
/* fall through */
|
|
|
|
case 4:
|
|
|
|
fputs("push eax\n", codefile);
|
|
|
|
break;
|
|
|
|
default:
|
1991-02-20 09:54:55 +00:00
|
|
|
#endif
|
1992-06-12 09:46:43 +00:00
|
|
|
fprintf(codefile, "sub\tesp,%ld\n",nlocals);
|
1991-02-20 09:54:55 +00:00
|
|
|
#ifdef NOTDEF
|
1989-10-10 10:44:26 +00:00
|
|
|
break;
|
1989-02-14 15:52:25 +00:00
|
|
|
}
|
1991-02-20 09:54:55 +00:00
|
|
|
#endif
|
1991-11-18 09:51:35 +00:00
|
|
|
#endif
|
1989-02-14 15:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef REGVARS
|
|
|
|
long si_off;
|
|
|
|
long di_off;
|
|
|
|
int firstreg;
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
int
|
2022-08-01 20:08:23 +00:00
|
|
|
regscore(long off, int size, int typ, int score, int totyp)
|
1989-02-14 15:52:25 +00:00
|
|
|
{
|
|
|
|
if (size != 4) return -1;
|
|
|
|
score -= 1;
|
|
|
|
score += score;
|
|
|
|
if (typ == reg_pointer || typ == reg_loop) score += (score >> 2);
|
|
|
|
score -= 2; /* cost of saving */
|
|
|
|
if (off >= 0) score -= 3;
|
|
|
|
return score;
|
|
|
|
}
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
1989-02-14 15:52:25 +00:00
|
|
|
i_regsave()
|
|
|
|
{
|
|
|
|
si_off = -1;
|
|
|
|
di_off = -1;
|
|
|
|
firstreg = 0;
|
|
|
|
}
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
1989-02-14 15:52:25 +00:00
|
|
|
f_regsave()
|
|
|
|
{
|
1992-06-12 09:46:43 +00:00
|
|
|
if (si_off != di_off) {
|
|
|
|
if (si_off == -lbytes) lbytes -= 4;
|
|
|
|
if (di_off == -lbytes) lbytes -= 4;
|
|
|
|
if (si_off == -lbytes) lbytes -= 4;
|
|
|
|
}
|
|
|
|
if (lbytes) fprintf(codefile, "sub\tesp,%ld\n",(long) lbytes);
|
1991-11-18 09:51:35 +00:00
|
|
|
if (firstreg == 1) {
|
|
|
|
fputs("push edi\n", codefile);
|
|
|
|
if (si_off != -1) fputs("push esi\n", codefile);
|
|
|
|
}
|
|
|
|
else if (firstreg == -1) {
|
|
|
|
fputs("push esi\n", codefile);
|
|
|
|
if (di_off != -1) fputs("push edi\n", codefile);
|
|
|
|
}
|
|
|
|
if (si_off >= 0)
|
|
|
|
fprintf(codefile, "mov esi,%ld(ebp)\n", si_off);
|
|
|
|
if (di_off >= 0)
|
|
|
|
fprintf(codefile, "mov edi,%ld(ebp)\n", di_off);
|
1989-02-14 15:52:25 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
2022-08-01 20:08:23 +00:00
|
|
|
regsave(const char* regstr, long off, int size)
|
1989-02-14 15:52:25 +00:00
|
|
|
{
|
|
|
|
if (strcmp(regstr, "esi") == 0) {
|
|
|
|
if (! firstreg) firstreg = -1;
|
|
|
|
si_off = off;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (! firstreg) firstreg = 1;
|
|
|
|
di_off = off;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
1989-02-14 15:52:25 +00:00
|
|
|
regreturn()
|
|
|
|
{
|
|
|
|
if (firstreg == 1) {
|
|
|
|
if (si_off != -1) fputs("pop esi\n", codefile);
|
|
|
|
fputs("pop edi\n", codefile);
|
|
|
|
}
|
|
|
|
else if (firstreg == -1) {
|
|
|
|
if (di_off != -1) fputs("pop edi\n", codefile);
|
|
|
|
fputs("pop esi\n", codefile);
|
|
|
|
}
|
|
|
|
fputs("leave\nret\n", codefile);
|
|
|
|
}
|
1991-12-17 15:05:43 +00:00
|
|
|
#endif /* REGVARS */
|
1989-02-14 15:52:25 +00:00
|
|
|
|
1992-03-27 17:36:49 +00:00
|
|
|
#ifdef MACH_OPTIONS
|
|
|
|
static int gdb_flag = 0;
|
1995-03-17 12:37:06 +00:00
|
|
|
static char *fp_hook_nam;
|
1992-03-27 17:36:49 +00:00
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
void
|
1992-03-27 17:36:49 +00:00
|
|
|
mach_option(s)
|
|
|
|
char *s;
|
|
|
|
{
|
|
|
|
if (! strcmp(s, "-gdb")) {
|
|
|
|
gdb_flag = 1;
|
|
|
|
}
|
1995-03-17 12:37:06 +00:00
|
|
|
else if (s[1] == 'F') {
|
|
|
|
fp_hook_nam = &s[2];
|
|
|
|
}
|
1992-03-27 17:36:49 +00:00
|
|
|
else {
|
|
|
|
error("Unknown flag %s", s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MACH_OPTIONS */
|
|
|
|
|
2016-11-10 21:04:18 +00:00
|
|
|
void
|
1989-02-14 15:52:25 +00:00
|
|
|
mes(type) word type ; {
|
1990-11-01 09:42:03 +00:00
|
|
|
int argt, a1, a2 ;
|
1989-02-14 15:52:25 +00:00
|
|
|
|
|
|
|
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 ;
|
|
|
|
}
|
|
|
|
}
|
1990-11-01 09:42:03 +00:00
|
|
|
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);
|
1992-03-27 17:36:49 +00:00
|
|
|
#ifdef MACH_OPTIONS
|
|
|
|
if (gdb_flag) {
|
|
|
|
if (a1 == N_PSYM) {
|
|
|
|
/* Change offset from AB into offset from
|
|
|
|
the frame pointer (bp).
|
|
|
|
*/
|
|
|
|
argval += 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
1990-11-01 09:42:03 +00:00
|
|
|
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();
|
1992-03-27 17:36:49 +00:00
|
|
|
if (argval == N_SLINE
|
|
|
|
#ifdef MACH_OPTIONS
|
|
|
|
&& ! gdb_flag
|
|
|
|
#endif
|
|
|
|
) {
|
1990-11-01 09:42:03 +00:00
|
|
|
fputs("call ___u_LiB\n", codefile);
|
|
|
|
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;
|
1995-03-17 12:37:06 +00:00
|
|
|
#ifdef MACH_OPTIONS
|
|
|
|
case ms_flt:
|
|
|
|
if (fp_hook_nam) {
|
|
|
|
part_flush();
|
|
|
|
ex_ap(fp_hook_nam);
|
|
|
|
}
|
|
|
|
/* fall through */
|
|
|
|
#endif
|
1989-02-14 15:52:25 +00:00
|
|
|
default :
|
|
|
|
while ( getarg(any_ptyp) != sp_cend ) ;
|
|
|
|
break ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char *segname[] = {
|
|
|
|
".sect .text", /* SEGTXT */
|
|
|
|
".sect .data", /* SEGCON */
|
|
|
|
".sect .rom", /* SEGROM */
|
|
|
|
".sect .bss" /* SEGBSS */
|
|
|
|
};
|