1997-02-05 05:42:27 +08:00
|
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
sinclude(../common/aclocal.m4)
|
1996-06-26 11:26:09 +08:00
|
|
|
AC_PREREQ(2.5)dnl
|
1995-11-08 23:44:38 +08:00
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
|
1996-11-20 18:00:42 +08:00
|
|
|
SIM_AC_COMMON
|
1995-11-08 23:44:38 +08:00
|
|
|
|
1997-05-21 14:54:13 +08:00
|
|
|
dnl Options available in this module
|
|
|
|
SIM_AC_OPTION_INLINE(0)
|
1997-09-22 17:40:57 +08:00
|
|
|
SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
|
1997-05-21 14:54:13 +08:00
|
|
|
SIM_AC_OPTION_HOSTENDIAN
|
|
|
|
SIM_AC_OPTION_WARNINGS
|
|
|
|
|
|
|
|
|
1996-06-05 16:16:16 +08:00
|
|
|
# Ensure a reasonable default simulator is constructed:
|
|
|
|
case "${target}" in
|
1997-09-08 04:33:22 +08:00
|
|
|
# start-sanitize-tx19
|
|
|
|
mipstx19*-*-*) SIMCONF="-mips1 -mcpu=r1900 -mno-fp --warnings";;
|
|
|
|
# end-sanitize-tx19
|
1997-10-30 03:42:49 +08:00
|
|
|
# start-sanitize-tx49
|
|
|
|
mips64tx49*-*-*) SIMCONF="-mips3 --warnings -mcpu=r4900";;
|
|
|
|
# end-sanitize-tx49
|
1997-02-11 21:26:34 +08:00
|
|
|
# start-sanitize-r5900
|
1997-09-24 00:21:23 +08:00
|
|
|
mips64r59*-*-*) SIMCONF="-mips3 --warnings -mcpu=r5900";;
|
1997-02-11 21:26:34 +08:00
|
|
|
# end-sanitize-r5900
|
1996-06-05 16:16:16 +08:00
|
|
|
mips64*-*-*) SIMCONF="-mips0 --warnings";;
|
Add support for mips16 (16 bit MIPS implementation):
* gencode.c (inst_type): Add mips16 instruction encoding types.
(GETDATASIZEINSN): Define.
(MIPS_DECODE): Add REG flag to dsllv, dsrav, and dsrlv. Add
jalx. Add LEFT flag to mfhi and mflo. Add RIGHT flag to mthi and
mtlo.
(MIPS16_DECODE): New table, for mips16 instructions.
(bitmap_val): New static function.
(struct mips16_op): Define.
(mips16_op_table): New table, for mips16 operands.
(build_mips16_operands): New static function.
(process_instructions): If PC is odd, decode a mips16
instruction. Break out instruction handling into new
build_instruction function.
(build_instruction): New static function, broken out of
process_instructions. Check modifiers rather than flags for SHIFT
bit count and m[ft]{hi,lo} direction.
(usage): Pass program name to fprintf.
(main): Remove unused variable this_option_optind. Change
``*loptarg++'' to ``loptarg++''.
(my_strtoul): Parenthesize && within ||.
* interp.c (sim_trace): If tracefh is NULL, set it to stderr.
(LoadMemory): Accept a halfword pAddr if vAddr is odd.
(simulate): If PC is odd, fetch a 16 bit instruction, and
increment PC by 2 rather than 4.
* configure.in: Add case for mips16*-*-*.
* configure: Rebuild.
1996-11-27 02:12:44 +08:00
|
|
|
mips16*-*-*) SIMCONF="-mips0 --warnings";;
|
1996-06-05 16:16:16 +08:00
|
|
|
mips*-*-*) SIMCONF="-mips2 --warnings";;
|
|
|
|
*) SIMCONF="-mips0 --warnings";;
|
|
|
|
esac
|
1996-11-20 18:00:42 +08:00
|
|
|
AC_SUBST(SIMCONF)
|
1995-11-08 23:44:38 +08:00
|
|
|
|
1997-09-21 02:22:22 +08:00
|
|
|
case "${target}" in
|
|
|
|
# start-sanitize-tx19
|
|
|
|
mipstx19*-*-*) SIM_SUBTARGET="-DSUBTARGET_R3900=1";;
|
|
|
|
# end-sanitize-tx19
|
|
|
|
*) SIM_SUBTARGET="";;
|
|
|
|
esac
|
|
|
|
AC_SUBST(SIM_SUBTARGET)
|
|
|
|
|
1997-10-14 15:27:31 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Select the byte order of the target
|
|
|
|
#
|
|
|
|
case "${target}" in
|
|
|
|
# start-sanitize-tx19
|
|
|
|
mipstx19*-*-*) mips_endian=0 ;;
|
|
|
|
# end-sanitize-tx19
|
|
|
|
# start-sanitize-r5900
|
|
|
|
mips64r59*-*-*) mips_endian=LITTLE_ENDIAN ;;
|
|
|
|
# end-sanitize-r5900
|
|
|
|
mips64*-*-*) mips_endian=0 ;;
|
|
|
|
mips16*-*-*) mips_endian=0 ;;
|
|
|
|
mips*-*-*) mips_endian=0 ;;
|
|
|
|
*) mips_endian=0 ;;
|
|
|
|
esac
|
|
|
|
SIM_AC_OPTION_ENDIAN($mips_endian)
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Select the bitsize of the target
|
|
|
|
#
|
|
|
|
case "${target}" in
|
|
|
|
# start-sanitize-tx19
|
|
|
|
mipstx19*-*-*) mips_bitsize=32 ; mips_msb=31 ;;
|
|
|
|
# end-sanitize-tx19
|
|
|
|
# start-sanitize-r5900
|
|
|
|
mips64r59*-*-*) mips_bitsize=64 ; mips_msb=63 ;;
|
|
|
|
# end-sanitize-r5900
|
|
|
|
mips64*-*-*) mips_bitsize=64 ; mips_msb=63 ;;
|
|
|
|
mips16*-*-*) mips_bitsize=64 ; mips_msb=63 ;;
|
|
|
|
mips*-*-*) mips_bitsize=32 ; mips_msb=31 ;;
|
|
|
|
*) mips_bitsize=64 ; mips_msb=63 ;;
|
|
|
|
esac
|
|
|
|
SIM_AC_OPTION_BITSIZE($mips_bitsize,$mips_msb)
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Select the floating hardware support of the target
|
|
|
|
#
|
|
|
|
mips_fpu=HARDWARE_FLOATING_POINT
|
|
|
|
case "${target}" in
|
|
|
|
# start-sanitize-tx19
|
|
|
|
mipstx19*-*-*) mips_fpu=SOFT_FLOATING_POINT ;;
|
|
|
|
# end-sanitize-tx19
|
|
|
|
# start-sanitize-r5900
|
|
|
|
mips64r59*-*-*) mips_fpu=HARD_FLOATING_POINT ;;
|
|
|
|
# end-sanitize-r5900
|
|
|
|
mips64*-*-*) mips_fpu=HARD_FLOATING_POINT ;;
|
|
|
|
mips16*-*-*) mips_fpu=HARD_FLOATING_POINT ;;
|
|
|
|
mips*-*-*) mips_fpu=HARD_FLOATING_POINT ;;
|
|
|
|
*) mips_fpu=HARD_FLOATING_POINT ;;
|
|
|
|
esac
|
|
|
|
SIM_AC_OPTION_FLOAT($mips_fpu)
|
|
|
|
|
|
|
|
|
1997-10-24 15:54:21 +08:00
|
|
|
#
|
1997-11-05 17:43:34 +08:00
|
|
|
# Select the IGEN architecture
|
1997-10-24 15:54:21 +08:00
|
|
|
#
|
1997-11-05 17:43:34 +08:00
|
|
|
sim_use_gen=NO
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_machine="-M mipsIV"
|
|
|
|
sim_m16_machine="-M mips16"
|
1997-11-05 17:43:34 +08:00
|
|
|
sim_igen_filter="32,64,f"
|
|
|
|
sim_m16_filter="16"
|
1997-10-27 15:55:24 +08:00
|
|
|
|
1997-10-24 15:54:21 +08:00
|
|
|
case "${target}" in
|
1997-10-27 14:42:13 +08:00
|
|
|
# start-sanitize-tx19
|
1997-11-05 17:43:34 +08:00
|
|
|
mipstx19*-*-*) sim_default_gen=M16
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_machine="-M tx19"
|
|
|
|
sim_m16_machine="-M tx19"
|
1997-11-05 17:43:34 +08:00
|
|
|
sim_igen_filter="32"
|
|
|
|
sim_m16_filter="16"
|
|
|
|
;;
|
1997-10-27 14:42:13 +08:00
|
|
|
# end-sanitize-tx19
|
1997-10-24 15:54:21 +08:00
|
|
|
# start-sanitize-r5900
|
1997-11-05 17:43:34 +08:00
|
|
|
mips64r59*-*-*) sim_default_gen=IGEN
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_machine="-M r5900"
|
1997-11-05 17:43:34 +08:00
|
|
|
;;
|
1997-10-24 15:54:21 +08:00
|
|
|
# end-sanitize-r5900
|
|
|
|
# start-sanitize-vr5400
|
1997-11-05 17:43:34 +08:00
|
|
|
mips64vr54*-*-*) sim_default_gen=IGEN
|
|
|
|
sim_use_gen=IGEN
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_machine="-M vr5000,vr5400 -G gen-multi-sim=vr5400"
|
1997-11-05 17:43:34 +08:00
|
|
|
;;
|
1997-10-24 15:54:21 +08:00
|
|
|
# end-sanitize-vr5400
|
1997-11-14 16:27:38 +08:00
|
|
|
mips64vr5*-*-*) sim_default_gen=IGEN
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_machine="-M vr5000"
|
1997-11-14 16:27:38 +08:00
|
|
|
;;
|
1997-11-05 17:43:34 +08:00
|
|
|
mips16*-*-*) sim_default_gen=M16
|
|
|
|
;;
|
|
|
|
mips32*-*-*) sim_default_gen=IGEN
|
|
|
|
sim_igen_filter="32,f"
|
|
|
|
;;
|
|
|
|
*) sim_default_gen=IGEN
|
|
|
|
;;
|
1997-10-24 15:54:21 +08:00
|
|
|
esac
|
1997-12-09 12:01:06 +08:00
|
|
|
sim_igen_flags="-F ${sim_igen_filter} ${sim_igen_machine}"
|
|
|
|
sim_m16_flags=" -F ${sim_m16_filter} ${sim_m16_machine}"
|
1997-10-27 15:55:24 +08:00
|
|
|
AC_SUBST(sim_igen_flags)
|
|
|
|
AC_SUBST(sim_m16_flags)
|
1997-10-24 15:54:21 +08:00
|
|
|
|
1997-11-05 17:43:34 +08:00
|
|
|
#
|
|
|
|
# Enable igen
|
|
|
|
#
|
|
|
|
AC_ARG_ENABLE(sim-igen,
|
|
|
|
[ --enable-sim-igen=opts Enable IGEN simulator],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sim_gen="${sim_default_gen}";;
|
|
|
|
no) sim_gen=NO;;
|
|
|
|
16) sim_gen=M16;;
|
|
|
|
*) AC_MSG_ERROR("Unknown value $enableval passed to --enable-sim-stdio"); sim_gen="";;
|
|
|
|
esac
|
|
|
|
if test x"$silent" != x"yes" && test x"$sim_gen" != x""; then
|
|
|
|
echo "Setting sim_igen = $sim_gen" 6>&1
|
|
|
|
fi],[sim_gen="${sim_use_gen}"])dnl
|
|
|
|
AC_SUBST(sim_gen)
|
|
|
|
|
|
|
|
|
1997-10-24 15:54:21 +08:00
|
|
|
|
1997-05-21 14:54:13 +08:00
|
|
|
AC_CHECK_HEADERS(string.h strings.h stdlib.h stdlib.h)
|
1996-06-03 23:58:45 +08:00
|
|
|
AC_CHECK_LIB(m, fabs)
|
1996-09-26 18:39:34 +08:00
|
|
|
AC_CHECK_FUNCS(aint anint sqrt)
|
1996-06-03 23:58:45 +08:00
|
|
|
|
1996-11-20 18:00:42 +08:00
|
|
|
SIM_AC_OUTPUT
|