removed
This commit is contained in:
@@ -1,4 +0,0 @@
|
||||
Makefile
|
||||
mach.c
|
||||
mach.h
|
||||
table
|
||||
@@ -1,161 +0,0 @@
|
||||
/*
|
||||
* (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
|
||||
static char rcs_m[]= "$Header$" ;
|
||||
static char rcs_mh[]= ID_MH ;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* machine dependent back end routines for the Intel 8086
|
||||
*/
|
||||
|
||||
con_part(sz,w) register sz; word w; {
|
||||
|
||||
while (part_size % sz)
|
||||
part_size++;
|
||||
if (part_size == TEM_WSIZE)
|
||||
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);
|
||||
fprintf(codefile,"\t.data2 %d,%d\n",
|
||||
(int)l&0xFFFF,(int)(l>>16)&0xFFFF);
|
||||
}
|
||||
|
||||
#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>
|
||||
|
||||
/*
|
||||
|
||||
string holstr(n) word n; {
|
||||
|
||||
sprintf(str,hol_off,n,holno);
|
||||
return(mystrcpy(str));
|
||||
}
|
||||
*/
|
||||
|
||||
prolog(nlocals) full nlocals; {
|
||||
|
||||
fputs("\tpush\tbp\n\tmov\tbp,sp\n", codefile);
|
||||
switch (nlocals) {
|
||||
case 4: fputs("\tpush\tax\n", codefile);
|
||||
case 2: fputs("\tpush\tax\n", codefile);
|
||||
case 0: break;
|
||||
default:
|
||||
fprintf(codefile, "\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;
|
||||
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;
|
||||
}
|
||||
|
||||
i_regsave()
|
||||
{
|
||||
si_off = -1;
|
||||
di_off = -1;
|
||||
firstreg = 0;
|
||||
}
|
||||
|
||||
f_regsave()
|
||||
{
|
||||
}
|
||||
|
||||
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("jmp .sdret\n", codefile);
|
||||
else fputs("jmp .dret\n", codefile);
|
||||
}
|
||||
else if (firstreg == -1) {
|
||||
if (di_off != -1) fputs("jmp .dsret\n", codefile);
|
||||
else fputs("jmp .sret\n", codefile);
|
||||
}
|
||||
else fputs("jmp .cret\n", codefile);
|
||||
}
|
||||
#endif REGVARS
|
||||
|
||||
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) ;
|
||||
fprintf(codefile, ".define %s\n",argstr) ;
|
||||
break ;
|
||||
}
|
||||
}
|
||||
default :
|
||||
while ( getarg(any_ptyp) != sp_cend ) ;
|
||||
break ;
|
||||
}
|
||||
}
|
||||
|
||||
char *segname[] = {
|
||||
".sect .text", /* SEGTXT */
|
||||
".sect .data", /* SEGCON */
|
||||
".sect .rom", /* SEGROM */
|
||||
".sect .bss" /* SEGBSS */
|
||||
};
|
||||
@@ -1,35 +0,0 @@
|
||||
/*
|
||||
* (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
|
||||
#define ID_MH "$Header$"
|
||||
#endif
|
||||
|
||||
#define ex_ap(y) fprintf(codefile,".extern %s\n",y)
|
||||
#define in_ap(y) /* nothing */
|
||||
|
||||
#define newilb(x) fprintf(codefile,"%s:\n",x)
|
||||
#define newdlb(x) fprintf(codefile,"%s:\n",x)
|
||||
#define dlbdlb(x,y) fprintf(codefile,"%s = %s\n",x,y)
|
||||
#define newlbss(l,x) fprintf(codefile,"%s: .space\t%d\n",l,x);
|
||||
|
||||
#define cst_fmt "%d"
|
||||
#define off_fmt "%d"
|
||||
#define ilb_fmt "I%x_%d"
|
||||
#define dlb_fmt "I_%d"
|
||||
#define hol_fmt "hol%d"
|
||||
|
||||
#define loc_off "%d(bp)"
|
||||
#define arg_off "4+%d(bp)"
|
||||
#define hol_off "%ld+hol%d"
|
||||
|
||||
#define con_cst(x) fprintf(codefile,".data2\t%ld\n",x)
|
||||
#define con_ilb(x) fprintf(codefile,".data2\t%s\n",x)
|
||||
#define con_dlb(x) fprintf(codefile,".data2\t%s\n",x)
|
||||
|
||||
#define modhead ".sect .text; .sect .rom; .sect .data; .sect .bss\n"
|
||||
|
||||
#define fmt_id(fr,to) sprintf(to, "_%s", fr)
|
||||
|
||||
#define BSS_INIT 0
|
||||
2895
mach/i86/cg/table
2895
mach/i86/cg/table
File diff suppressed because it is too large
Load Diff
@@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
compmodule
|
||||
@@ -1,21 +0,0 @@
|
||||
SUF=o
|
||||
MAKEFILE=../../proto/libg/Makefile
|
||||
MACHDEF="MACH=i86" "SUF=$(SUF)" "ASAR=aal"
|
||||
BCDEF="PREF=bc" "SUB=" "SRC=lang/basic/lib"
|
||||
|
||||
install:
|
||||
make -f $(MAKEFILE) $(BCDEF) $(MACHDEF) tailcp
|
||||
|
||||
cmp:
|
||||
make -f $(MAKEFILE) $(BCDEF) $(MACHDEF) tail
|
||||
-../../compare head_bc
|
||||
-../../compare tail_bc
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
||||
@@ -1,6 +0,0 @@
|
||||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then
|
||||
echo `basename $1 $2`.o
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
compmodule
|
||||
@@ -1,44 +0,0 @@
|
||||
SUF=o
|
||||
MAKEFILE=../../proto/libg/Makefile
|
||||
MACHDEF="MACH=i86" "SUF=$(SUF)" "ASAR=aal"
|
||||
STDIO="PREF=cc" "SUB=.1s" "SRC=lang/cem/libcc/stdio"
|
||||
GEN="PREF=cc" "SUB=.2g" "SRC=lang/cem/libcc/gen"
|
||||
MON="PREF=mon" "SRC=lang/cem/libcc/mon"
|
||||
LIBM="PREF=m" "SRC=lang/cem/libcc/math"
|
||||
|
||||
install: cpstdio cpgen cpmath
|
||||
|
||||
cpstdio:
|
||||
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tailcp
|
||||
cpgen:
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) cp
|
||||
cpmon:
|
||||
make -f $(MAKEFILE) $(MON) $(MACHDEF) tailcp
|
||||
cpmath:
|
||||
make -f $(MAKEFILE) $(LIBM) $(MACHDEF) tailcp
|
||||
|
||||
cmp: cmpstdio cmpgen cmpmath
|
||||
|
||||
cmpstdio:
|
||||
make -f $(MAKEFILE) $(STDIO) $(MACHDEF) tail
|
||||
-../../compare tail_cc.1s
|
||||
cmpgen:
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) head
|
||||
-../../compare head_cc
|
||||
make -f $(MAKEFILE) $(GEN) $(MACHDEF) tail
|
||||
-../../compare tail_cc.2g
|
||||
cmpmon:
|
||||
make -f $(MAKEFILE) $(MON) $(MACHDEF) tail
|
||||
-../../compare tail_mon
|
||||
cmpmath:
|
||||
make -f $(MAKEFILE) $(LIBM) $(MACHDEF) tail
|
||||
-../../compare tail_m
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
||||
@@ -1,6 +0,0 @@
|
||||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then
|
||||
echo `basename $1 $2`.o
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
compmodule
|
||||
@@ -1,30 +0,0 @@
|
||||
SUF=o
|
||||
EMHOME=../../..
|
||||
MAKEFILE=$(EMHOME)/mach/proto/libg/Makefile
|
||||
MACHDEF="MACH=i86" "SUF=$(SUF)" "ASAR=aal"
|
||||
M2LIB = lang/m2/libm2
|
||||
MOD="PREF=m2" "SUB=" "SRC=$(M2LIB)"
|
||||
|
||||
all:
|
||||
make -f $(MAKEFILE) $(MOD) $(MACHDEF) all
|
||||
|
||||
install: cpmod
|
||||
|
||||
cpmod:
|
||||
make -f $(MAKEFILE) $(MOD) $(MACHDEF) cp
|
||||
|
||||
cmp: cmpmod
|
||||
|
||||
cmpmod:
|
||||
make -f $(MAKEFILE) $(MOD) $(MACHDEF) all
|
||||
-$(EMHOME)/mach/compare tail_m2
|
||||
-$(EMHOME)/mach/compare head_m2
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
||||
@@ -1,4 +0,0 @@
|
||||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then echo `basename $1 $2`.o
|
||||
else exit 1
|
||||
fi
|
||||
@@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
compmodule
|
||||
@@ -1,20 +0,0 @@
|
||||
SUF=o
|
||||
MAKEFILE=../../proto/libg/Makefile
|
||||
MACHDEF="MACH=i86" "SUF=$(SUF)" "ASAR=aal"
|
||||
PCDEF="PREF=ocm" "SUB=" "SRC=lang/occam/lib"
|
||||
|
||||
install:
|
||||
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) tailcp
|
||||
|
||||
cmp:
|
||||
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) tail
|
||||
-../../compare tail_ocm
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
||||
@@ -1,6 +0,0 @@
|
||||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then
|
||||
echo `basename $1 $2`.o
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,2 +0,0 @@
|
||||
Makefile
|
||||
compmodule
|
||||
@@ -1,21 +0,0 @@
|
||||
SUF=o
|
||||
MAKEFILE=../../proto/libg/Makefile
|
||||
MACHDEF="MACH=i86" "SUF=$(SUF)" "ASAR=aal"
|
||||
PCDEF="PREF=pc" "SUB=" "SRC=lang/pc/libpc"
|
||||
|
||||
install:
|
||||
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) cp
|
||||
|
||||
cmp:
|
||||
make -f $(MAKEFILE) $(PCDEF) $(MACHDEF) all
|
||||
-../../compare head_pc
|
||||
-../../compare tail_pc
|
||||
|
||||
clean:
|
||||
-rm -f *.old *.[ce$(SUF)] tail* head*
|
||||
|
||||
opr:
|
||||
make pr | opr
|
||||
|
||||
pr:
|
||||
@pr Makefile
|
||||
@@ -1,6 +0,0 @@
|
||||
if ${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||
then
|
||||
echo `basename $1 $2`.o
|
||||
else
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user