mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	* elf/elf.h (PT_MIPS_ABIFLAGS): Define. (Elf_MIPS_ABIFlags_v0): New structure. (EF_MIPS_FP64): Define. (MIPS_AFL_REG_NONE, MIPS_AFL_REG_32, MIPS_AFL_REG_64): Likewise. (MIPS_AFL_REG_128, MIPS_AFL_ASE_DSP, MIPS_AFL_ASE_DSP64): Likewise. (MIPS_AFL_ASE_DSPR2, MIPS_AFL_ASE_EVA, MIPS_AFL_ASE_MCU): Likewise. (MIPS_AFL_ASE_MDMX, MIPS_AFL_ASE_MIPS3D, MIPS_AFL_ASE_MT): Likewise. (MIPS_AFL_ASE_SMARTMIPS, MIPS_AFL_ASE_VIRT): Likewise. (MIPS_AFL_ASE_VIRT64, MIPS_AFL_ASE_MSA, MIPS_AFL_ASE_MSA64): Likewise. (MIPS_AFL_ASE_MIPS16, MIPS_AFL_ASE_MICROMIPS): Likewise. (MIPS_AFL_ASE_XPA, MIPS_AFL_EXT_XLR, MIPS_AFL_EXT_OCTEON2): Likewise. (MIPS_AFL_EXT_OCTEONP, MIPS_AFL_EXT_LOONGSON_3A): Likewise. (MIPS_AFL_EXT_OCTEON, MIPS_AFL_EXT_5900, MIPS_AFL_EXT_4010): Likewise. (MIPS_AFL_EXT_4100, MIPS_AFL_EXT_3900, MIPS_AFL_EXT_10000): Likewise. (MIPS_AFL_EXT_SB1, MIPS_AFL_EXT_4111, MIPS_AFL_EXT_4120): Likewise. (MIPS_AFL_EXT_5400, MIPS_AFL_EXT_5500): Likewise. (MIPS_AFL_EXT_LOONGSON_2E, MIPS_AFL_EXT_LOONGSON_2F): Likewise. (Val_GNU_MIPS_ABI_FP_ANY, Val_GNU_MIPS_ABI_FP_DOUBLE): New enum values. (Val_GNU_MIPS_ABI_FP_SINGLE, Val_GNU_MIPS_ABI_FP_SOFT): Likewise. (Val_GNU_MIPS_ABI_FP_OLD_64, Val_GNU_MIPS_ABI_FP_XX): Likewise. (Val_GNU_MIPS_ABI_FP_64, Val_GNU_MIPS_ABI_FP_64A): Likewise. (Val_GNU_MIPS_ABI_FP_MAX): Likewise. * sysdeps/mips/Makefile [subdir=elf]: Add tst-abi-interlink, tst-mode-switch-1, tst-mode-switch-2, tst-mode-switch-3 tests. * sysdeps/mips/bits/linkmap.h (struct link_map_machine): Add fpmode field. * sysdeps/mips/dl-machine.h (elf_machine_matches_host): Reject EF_MIPS_FP64. * sysdeps/mips/dl-machine-reject-phdr.h: New file. * sysdeps/mips/tst-abi-fp32mod.c: Likewise. * sysdeps/mips/tst-abi-fpxxmod.c: Likewise. * sysdeps/mips/tst-abi-fpxxomod.c: Likewise. * sysdeps/mips/tst-abi-fp64mod.c: Likewise. * sysdeps/mips/tst-abi-fp64amod.c: Likewise. * sysdeps/mips/tst-abi-interlink.c: Likewise. * sysdeps/mips/tst-mode-switch-1.c: Likewise. * sysdeps/mips/tst-mode-switch-2.c: Likewise. * sysdeps/mips/tst-mode-switch-3.c: Likewise. * sysdeps/unix/sysv/linux/mips/configure.ac (o32-fpabi): Define to record the current FP ABI extension. (mips-mode-switch): Define to show if kernel headers support mode switching. * sysdeps/unix/sysv/linux/mips/configure: Regenerate. * sysdeps/unix/sysv/linux/mips/ldsodefs.h: Increase maximum supported SYSV ABI version to 3. * sysdeps/unix/sysv/linux/mips/libc-abis: Add new MIPS_O32_FP64 feature.
		
			
				
	
	
		
			133 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
sinclude(./aclocal.m4)dnl Autoconf lossage
 | 
						|
GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
 | 
						|
# Local configure fragment for sysdeps/unix/sysv/linux/mips.
 | 
						|
 | 
						|
AC_COMPILE_IFELSE(
 | 
						|
  [AC_LANG_PROGRAM([
 | 
						|
    #if (_MIPS_SIM != _ABIO32)
 | 
						|
    #error Not O32 ABI
 | 
						|
    #endif])],
 | 
						|
  [libc_mips_abi=o32],
 | 
						|
  [AC_COMPILE_IFELSE(
 | 
						|
    [AC_LANG_PROGRAM([
 | 
						|
      #if (_MIPS_SIM != _ABIN32)
 | 
						|
      #error Not N32 ABI
 | 
						|
      #endif])],
 | 
						|
    [libc_mips_abi=n32],
 | 
						|
    [AC_COMPILE_IFELSE(
 | 
						|
      [AC_LANG_PROGRAM([
 | 
						|
        #if (_MIPS_SIM != _ABI64)
 | 
						|
        #error Not 64 ABI
 | 
						|
        #endif])],
 | 
						|
      [libc_mips_abi=n64],
 | 
						|
      [])])])
 | 
						|
 | 
						|
if test -z "$libc_mips_abi"; then
 | 
						|
  AC_MSG_ERROR([could not determine what ABI the compiler is using])
 | 
						|
fi
 | 
						|
 | 
						|
AC_COMPILE_IFELSE(
 | 
						|
  [AC_LANG_PROGRAM([
 | 
						|
    #if !defined(__mips_soft_float)
 | 
						|
    #error Not soft ABI
 | 
						|
    #endif])],
 | 
						|
  [libc_mips_float=soft],
 | 
						|
  [AC_COMPILE_IFELSE(
 | 
						|
    [AC_LANG_PROGRAM([
 | 
						|
      #if !defined(__mips_hard_float)
 | 
						|
      #error Not hard ABI
 | 
						|
      #endif])],
 | 
						|
    [libc_mips_float=hard],
 | 
						|
    [])])
 | 
						|
 | 
						|
if test -z "$libc_mips_float"; then
 | 
						|
  AC_MSG_ERROR([could not determine if compiler is using hard or soft floating point ABI])
 | 
						|
fi
 | 
						|
 | 
						|
libc_mips_o32_fp=
 | 
						|
 | 
						|
if test x"$libc_mips_abi" = xo32 -a x"$libc_mips_float" = xhard; then
 | 
						|
  AC_COMPILE_IFELSE(
 | 
						|
    [AC_LANG_PROGRAM([
 | 
						|
      #if !defined(__mips_fpr)
 | 
						|
      #error Missing FPR sizes
 | 
						|
      #endif])],
 | 
						|
    [AC_COMPILE_IFELSE(
 | 
						|
      [AC_LANG_PROGRAM([
 | 
						|
        #if (__mips_fpr != 32)
 | 
						|
        #error Not FP32
 | 
						|
        #endif])],
 | 
						|
      [libc_mips_o32_fp=32],
 | 
						|
      [AC_COMPILE_IFELSE(
 | 
						|
        [AC_LANG_PROGRAM([
 | 
						|
          #if (__mips_fpr != 0) || !defined(_MIPS_SPFPSET) || (_MIPS_SPFPSET != 16)
 | 
						|
          #error Not FPXX (without odd single-precision registers)
 | 
						|
          #endif])],
 | 
						|
        [libc_mips_o32_fp=xx],
 | 
						|
        [AC_COMPILE_IFELSE(
 | 
						|
          [AC_LANG_PROGRAM([
 | 
						|
            #if (__mips_fpr != 0)
 | 
						|
            #error Not FPXX (with odd single precision registers)
 | 
						|
            #endif])],
 | 
						|
          [libc_mips_o32_fp=xxo],
 | 
						|
          [AC_COMPILE_IFELSE(
 | 
						|
            [AC_LANG_PROGRAM([
 | 
						|
              #if (__mips_fpr != 64) || !defined(_MIPS_SPFPSET) || (_MIPS_SPFPSET != 16)
 | 
						|
              #error Not FP64A
 | 
						|
              #endif])],
 | 
						|
            [libc_mips_o32_fp=64a],
 | 
						|
            [AC_COMPILE_IFELSE(
 | 
						|
              [AC_LANG_PROGRAM([
 | 
						|
                #if (__mips_fpr != 64)
 | 
						|
                #error Not FP64
 | 
						|
                #endif])],
 | 
						|
              [libc_mips_o32_fp=64],
 | 
						|
              [])])])])])],
 | 
						|
    [])
 | 
						|
fi
 | 
						|
LIBC_CONFIG_VAR([o32-fpabi],[${libc_mips_o32_fp}])
 | 
						|
 | 
						|
AC_COMPILE_IFELSE(
 | 
						|
  [AC_LANG_PROGRAM([
 | 
						|
    #include <linux/prctl.h>
 | 
						|
    #if !defined(PR_GET_FP_MODE) || !defined(PR_SET_FP_MODE)
 | 
						|
    #error New prctl support for setting FP modes not found
 | 
						|
    #endif])],
 | 
						|
  [libc_mips_mode_switch=yes],
 | 
						|
  [libc_mips_mode_switch=no])
 | 
						|
LIBC_CONFIG_VAR([mips-mode-switch],[${libc_mips_mode_switch}])
 | 
						|
 | 
						|
AC_CACHE_CHECK([whether the compiler is using the 2008 NaN encoding],
 | 
						|
  libc_cv_mips_nan2008, [AC_EGREP_CPP(yes, [dnl
 | 
						|
#ifdef __mips_nan2008
 | 
						|
yes
 | 
						|
#endif], libc_cv_mips_nan2008=yes, libc_cv_mips_nan2008=no)])
 | 
						|
 | 
						|
libc_mips_nan=
 | 
						|
if test x"$libc_cv_mips_nan2008" = xyes; then
 | 
						|
  libc_mips_nan=_2008
 | 
						|
fi
 | 
						|
 | 
						|
LIBC_CONFIG_VAR([default-abi],
 | 
						|
  [${libc_mips_abi}_${libc_mips_float}${libc_mips_nan}])
 | 
						|
 | 
						|
case $machine in
 | 
						|
mips/mips64/n64/*)
 | 
						|
  LIBC_SLIBDIR_RTLDDIR([lib64], [lib64])
 | 
						|
  ;;
 | 
						|
mips/mips64/n32/*)
 | 
						|
  LIBC_SLIBDIR_RTLDDIR([lib32], [lib32])
 | 
						|
  ;;
 | 
						|
esac
 | 
						|
 | 
						|
libc_cv_gcc_unwind_find_fde=yes
 | 
						|
 | 
						|
if test -z "$arch_minimum_kernel"; then
 | 
						|
  if test x$libc_cv_mips_nan2008 = xyes; then
 | 
						|
    # FIXME: Adjust this setting to the actual first upstream kernel
 | 
						|
    # version to support the 2008 NaN encoding and then remove this
 | 
						|
    # comment.
 | 
						|
    arch_minimum_kernel=10.0.0
 | 
						|
  fi
 | 
						|
fi
 |