e867861f6d
Add rules for 8-byte integers to m68020 ncg. Add 8-byte long long to ACK C on linux68k. Enable long-long tests for linux68k. The tests pass in our emulator using musahi; I don't have a real 68k processor and haven't tried other emulators. Still missing are conversions between 8-byte integers and any size of floats. The long-long tests don't cover these conversions, and our emulator can't do floating-point. Our build always enables TBL68020 and uses word size 4. Without TBL68020, 8-byte multiply and divide are missing. With word size 2, some conversions between 2-byte and 8-byte integers are missing. Fix .cii in libem, which didn't work when converting from 1-byte or 2-byte integers. Now .cii and .cuu work, but also add some rules to skip .cii and .cuu when converting 8-byte integers. The new rule for loc 4 loc 8 cii `with test_set4` exposes a bug: the table may believe that the condition codes test a 4-byte register when they only test a word or byte, and this incorrect test may describe an unsigned word or byte as negative. Another rule `with exact test_set1+test_set2` works around the bug by ignoring the negative flag, because a zero-extended word or byte is never negative. The old rules for comparison and logic do work with 8-byte integers and bitsets, but add some specific 8-byte rules to skip libem calls or loops. There were no rules for 8-byte arithmetic, shift, or rotate; so add some. There is a register shortage, because the table requires preserving d3 to d7, leaving only 3 data registers (d0, d1, d2) for 8-byte operations. Because of the shortage, the code may move data to an address register, or read a memory location more than once. The multiplication and division code are translations of the i386 code. They pass the tests, but might not give the best performance on a real 68k processor.
88 lines
1.9 KiB
Plaintext
88 lines
1.9 KiB
Plaintext
# $Source: /cvsroot/tack/Ack/plat/linux386/descr,v $
|
|
# $State: Exp $
|
|
# $Revision: 1.1 $
|
|
|
|
var w=4
|
|
var wa=4
|
|
var p={w}
|
|
var pa={w}
|
|
var s=2
|
|
var sa={s}
|
|
var l={w}
|
|
var la={w}
|
|
var q=8
|
|
var qa=4
|
|
var f={w}
|
|
var fa={w}
|
|
var d=8
|
|
var da={d}
|
|
var x=8
|
|
var xa={x}
|
|
var ARCH=m68020
|
|
var PLATFORM=linux68k
|
|
var PLATFORMDIR={EM}/share/ack/{PLATFORM}
|
|
var CPP_F=-D__unix -D__mc68020 -D__m68k -D__mc68000 -D__M68020 -D_EM_LLSIZE={q}
|
|
var ALIGN=-a0:4 -a1:4 -a2:4 -a3:4 -b0:0x08000054
|
|
var C_LIB={PLATFORMDIR}/libc-ansi.a
|
|
# bitfields reversed for compatibility with (g)cc.
|
|
# long long enabled.
|
|
var CC_ALIGN=-Vrq{q}.{qa}
|
|
var OLD_C_LIB={C_LIB}
|
|
var MACHOPT_F=-ml10
|
|
var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
|
|
|
# Override the setting in fe so that files compiled for linux68k can see
|
|
# the platform-specific headers.
|
|
|
|
var C_INCLUDES=-I{EM}/share/ack/linux/include -I{EM}/share/ack/include/ansi
|
|
|
|
name be
|
|
from .m.g
|
|
to .s
|
|
program {EM}/lib/ack/{PLATFORM}/ncg
|
|
mapflag -gdb GF=-gdb
|
|
args {GF?} <
|
|
stdout
|
|
need .e
|
|
end
|
|
name as
|
|
from .s.so
|
|
to .o
|
|
program {EM}/lib/ack/{PLATFORM}/as
|
|
args - -o > <
|
|
prep cond
|
|
end
|
|
name led
|
|
from .o.a
|
|
to .out
|
|
program {EM}/lib/ack/em_led
|
|
mapflag -l* LNAME={PLATFORMDIR}/lib*
|
|
mapflag -fp FLOATS={EM}/{LIB}fp
|
|
args {ALIGN} {SEPID?} \
|
|
({RTS}:.b=-u _i_main) \
|
|
(.e:{HEAD}={PLATFORMDIR}/boot.o) \
|
|
({RTS}:.ocm.bas.b={PLATFORMDIR}/c-ansi.o) \
|
|
({RTS}:.c={PLATFORMDIR}/c-ansi.o) \
|
|
({RTS}:.mod={PLATFORMDIR}/modula2.o) \
|
|
({RTS}:.p={PLATFORMDIR}/pascal.o) \
|
|
-o > < \
|
|
(.p:{TAIL}={PLATFORMDIR}/libpascal.a) \
|
|
(.b:{TAIL}={PLATFORMDIR}/libb.a) \
|
|
(.bas:{TAIL}={PLATFORMDIR}/libbasic.a) \
|
|
(.mod:{TAIL}={PLATFORMDIR}/libmodula2.a) \
|
|
(.ocm:{TAIL}={PLATFORMDIR}/liboccam.a) \
|
|
(.ocm.bas.mod.b.c.p:{TAIL}={PLATFORMDIR}/libc.a) \
|
|
{FLOATS?} \
|
|
(.e:{TAIL}={PLATFORMDIR}/libem.a \
|
|
{PLATFORMDIR}/libsys.a \
|
|
{PLATFORMDIR}/libend.a)
|
|
linker
|
|
end
|
|
name cv
|
|
from .out
|
|
to .exe
|
|
program {EM}/bin/aelflod
|
|
args -m4 -b < >
|
|
outfile linux68k.exe
|
|
end
|