ack/mach/i80/ncg/mach.c

93 lines
1.7 KiB
C
Raw Normal View History

1985-01-17 14:31:34 +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-17 14:31:34 +00:00
*
*/
/*
* machine dependent back end routines for the Intel 8080.
*/
#include <stdlib.h> /* atol */
2019-02-07 08:09:31 +00:00
void con_part(int sz, word w)
{
1985-01-17 14:31:34 +00:00
while (part_size % sz)
part_size++;
if (part_size == 2)
part_flush();
if (sz == 1)
{
1985-01-17 14:31:34 +00:00
w &= 0xFF;
if (part_size)
w <<= 8;
part_word |= w;
}
else
{
1985-01-17 14:31:34 +00:00
assert(sz == 2);
part_word = w;
}
part_size += sz;
}
void
con_mult(word sz) {
1985-01-17 14:31:34 +00:00
if (sz != 4 && sz != 8)
1985-01-17 14:31:34 +00:00
fatal("bad icon/ucon size");
fprintf(codefile,".data%d\t%s\n", (int)sz, str);
1985-01-17 14:31:34 +00:00
}
#define CODE_GENERATOR
#define IEEEFLOAT
#define FL_MSL_AT_LOW_ADDRESS 0
#define FL_MSW_AT_LOW_ADDRESS 0
#define FL_MSB_AT_LOW_ADDRESS 0
#include <con_float>
1985-01-17 14:31:34 +00:00
void prolog(full nlocals)
{
int16_t adjustment = -nlocals;
if (adjustment == 0)
fprintf(codefile, "\tcall .pro0\n");
else if (adjustment == -2)
fprintf(codefile, "\tcall .pro2\n");
else if (adjustment == -4)
fprintf(codefile, "\tcall .pro4\n");
else if ((adjustment >= -128) && (adjustment <= 127))
fprintf(codefile, "\tcall .probyte\n\t.data1 %d\n", adjustment);
else
fprintf(codefile, "\tcall .proword\n\t.data2 %d\n", adjustment);
1985-01-17 14:31:34 +00:00
}
void mes(type) word type;
{
int argt;
1985-01-17 14:31:34 +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;
}
1985-01-17 14:31:34 +00:00
}
default:
while (getarg(any_ptyp) != sp_cend)
;
break;
1985-01-17 14:31:34 +00:00
}
}
char* segname[] = { ".sect .text", ".sect .data", ".sect .rom", ".sect .bss" };