0c2b6f523c
David Given made top for PowerPC. Copy the asopt phase (running top) from linuxppc to osxppc. Remove CC_ALIGN=-Vr to become compatible with Apple's gcc. Apple uses left adjustment for bitfields; the first bitfield is on the left side (the big end), not the right side. Remove unused variables C_LIB and OLD_C_LIB; the file libc-ansi.a doesn't exist. Change MACHOPT_F from -m10 to -m3. This means to use no more than 3 adds and shifts to optimize a multiply by a constant. I pick -m3 because -m4 can use too many instructions. At -m4, the compiler rewrites n * 14 as s = n << 1 (s << 3) + (0 - s) This means (n * 16 - n * 2), but even at ack -O6, the compiler doesn't rewrite (a + (0 - b)) as (a - b). The compiler emits 5 instructions: 2 of rlinmw for 2 left shifts, then addi to load 0 in a register, subf to subtract from that 0, then add. These 5 instructions cost 5 cycles on the MPC7450, using the cycle counts from mach/powerpc/ncg/table. At -m3, (n * 14) becomes 2 instructions: addi to load 14 in a register and mullw to multiply. This also costs 5 cycles (because mullw costs 4 cycles), but uses less space.
86 lines
1.6 KiB
Plaintext
86 lines
1.6 KiB
Plaintext
# plat/osxppc/descr
|
|
|
|
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 f={w}
|
|
var fa={w}
|
|
var d=8
|
|
var da={d}
|
|
var x=8
|
|
var xa={x}
|
|
var ARCH=powerpc
|
|
var PLATFORM=osxppc
|
|
var PLATFORMDIR={EM}/share/ack/{PLATFORM}
|
|
var CPP_F=-D__unix
|
|
var ALIGN=-a0:4 -a1:4 -a2:4096 -a3:4 -b0:0x129c
|
|
var MACHOPT_F=-m3
|
|
# var EGO_PLAT_FLAGS=-M{EM}/share/ack/ego/{ARCH}.descr
|
|
|
|
# Override the setting in fe so that files compiled for osxppc can see
|
|
# the platform-specific headers.
|
|
|
|
var C_INCLUDES=-I{EM}/share/ack/osx/include -I{EM}/share/ack/include/ansi
|
|
|
|
name be
|
|
from .m.g
|
|
to .s
|
|
program {EM}/lib/ack/linuxppc/ncg
|
|
mapflag -gdb GF=-gdb
|
|
args {GF?} <
|
|
stdout
|
|
need .e
|
|
end
|
|
name asopt
|
|
from .s
|
|
to .so
|
|
program {EM}/lib/ack/linuxppc/top
|
|
args
|
|
optimizer
|
|
stdin
|
|
stdout
|
|
end
|
|
name as
|
|
from .s.so
|
|
to .o
|
|
program {EM}/lib/ack/linuxppc/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?} \
|
|
(.e:{HEAD}={PLATFORMDIR}/boot.o) \
|
|
({RTS}:.ocm.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}/libbasic.a) \
|
|
(.mod:{TAIL}={PLATFORMDIR}/libmodula2.a) \
|
|
(.ocm:{TAIL}={PLATFORMDIR}/liboccam.a) \
|
|
(.ocm.b.mod.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}/lib/ack/cvmach
|
|
args -m18 < >
|
|
outfile osxppc.exe
|
|
end
|