gdb: rename floatformats_ia64_quad to floatformats_ieee_quad
It is better to rename floatformats_ia64_quad to floatformats_ieee_quad to reflect the reality, and then we can clean up the related code. As Tom Tromey said [1]: These files are maintained in gcc and then imported into the binutils-gdb repository, so any changes to them will have to be proposed there first. the related changes have been merged into gcc master now [2], it is time to do it for gdb. [1] https://sourceware.org/pipermail/gdb-patches/2022-March/186569.html [2] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=b2dff6b2d9d6 Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn>
This commit is contained in:
+1
-1
@@ -3618,7 +3618,7 @@ aarch64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
set_gdbarch_wchar_signed (gdbarch, 0);
|
||||
set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
|
||||
set_gdbarch_double_format (gdbarch, floatformats_ieee_double);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
set_gdbarch_type_align (gdbarch, aarch64_type_align);
|
||||
|
||||
/* Detect whether PC is at a point where the stack has been destroyed. */
|
||||
|
||||
+4
-4
@@ -85,6 +85,10 @@ const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_ieee_double_big,
|
||||
&floatformat_ieee_double_little
|
||||
};
|
||||
const struct floatformat *floatformats_ieee_quad[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_ieee_quad_big,
|
||||
&floatformat_ieee_quad_little
|
||||
};
|
||||
const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_ieee_double_big,
|
||||
&floatformat_ieee_double_littlebyte_bigword
|
||||
@@ -105,10 +109,6 @@ const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_ia64_spill_big,
|
||||
&floatformat_ia64_spill_little
|
||||
};
|
||||
const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_ia64_quad_big,
|
||||
&floatformat_ia64_quad_little
|
||||
};
|
||||
const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN] = {
|
||||
&floatformat_vax_f,
|
||||
&floatformat_vax_f
|
||||
|
||||
+1
-1
@@ -2440,12 +2440,12 @@ extern const struct objfile_type *objfile_type (struct objfile *objfile);
|
||||
extern const struct floatformat *floatformats_ieee_half[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ieee_single[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ieee_double[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ieee_quad[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ieee_double_littlebyte_bigword[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_i387_ext[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_m68881_ext[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_arm_ext[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ia64_spill[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ia64_quad[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_vax_f[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_vax_d[BFD_ENDIAN_UNKNOWN];
|
||||
extern const struct floatformat *floatformats_ibm_long_double[BFD_ENDIAN_UNKNOWN];
|
||||
|
||||
+1
-1
@@ -3072,7 +3072,7 @@ hppa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
and LP64, but might show differences some day. */
|
||||
set_gdbarch_long_long_bit (gdbarch, 64);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
|
||||
/* The following gdbarch vector elements do not depend on the address
|
||||
size, or in any other gdbarch element previously set. */
|
||||
|
||||
+1
-1
@@ -8243,7 +8243,7 @@ i386_floatformat_for_type (struct gdbarch *gdbarch,
|
||||
|| strcmp (name, "real(kind=16)") == 0
|
||||
|| strcmp (name, "real*16") == 0
|
||||
|| strcmp (name, "REAL*16") == 0)
|
||||
return floatformats_ia64_quad;
|
||||
return floatformats_ieee_quad;
|
||||
|
||||
return default_floatformat_for_type (gdbarch, name, len);
|
||||
}
|
||||
|
||||
+1
-1
@@ -132,7 +132,7 @@ static struct libunwind_descr ia64_vms_libunwind_descr;
|
||||
static void
|
||||
ia64_openvms_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
||||
{
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
|
||||
#ifdef HAVE_LIBUNWIND_IA64_H
|
||||
/* Override the default descriptor. */
|
||||
|
||||
@@ -271,7 +271,7 @@ loongarch_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
set_gdbarch_float_bit (gdbarch, 32);
|
||||
set_gdbarch_double_bit (gdbarch, 64);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
set_gdbarch_ptr_bit (gdbarch, info.bfd_arch_info->bits_per_address);
|
||||
set_gdbarch_char_signed (gdbarch, 0);
|
||||
|
||||
|
||||
+2
-10
@@ -1556,11 +1556,7 @@ mips_linux_init_abi (struct gdbarch_info info,
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, linux_ilp32_fetch_link_map_offsets);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
/* These floatformats should probably be renamed. MIPS uses
|
||||
the same 128-bit IEEE floating point format that IA-64 uses,
|
||||
except that the quiet/signalling NaN bit is reversed (GDB
|
||||
does not distinguish between quiet and signalling NaNs). */
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
tramp_frame_prepend_unwinder (gdbarch,
|
||||
µmips_linux_n32_rt_sigframe);
|
||||
tramp_frame_prepend_unwinder (gdbarch, &mips_linux_n32_rt_sigframe);
|
||||
@@ -1572,11 +1568,7 @@ mips_linux_init_abi (struct gdbarch_info info,
|
||||
set_solib_svr4_fetch_link_map_offsets
|
||||
(gdbarch, linux_lp64_fetch_link_map_offsets);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
/* These floatformats should probably be renamed. MIPS uses
|
||||
the same 128-bit IEEE floating point format that IA-64 uses,
|
||||
except that the quiet/signalling NaN bit is reversed (GDB
|
||||
does not distinguish between quiet and signalling NaNs). */
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
tramp_frame_prepend_unwinder (gdbarch,
|
||||
µmips_linux_n64_rt_sigframe);
|
||||
tramp_frame_prepend_unwinder (gdbarch, &mips_linux_n64_rt_sigframe);
|
||||
|
||||
@@ -29,10 +29,6 @@
|
||||
#include "mips-tdep.h"
|
||||
#include "solib-svr4.h"
|
||||
|
||||
/* The MIPS64 Floating-Point Quad-Precision format is similar to
|
||||
big-endian IA-64 Quad-Precision format. */
|
||||
#define floatformats_mips64_quad floatformats_ia64_quad
|
||||
|
||||
#define MIPS64OBSD_NUM_REGS 73
|
||||
|
||||
/* Core file support. */
|
||||
@@ -150,7 +146,7 @@ mips64obsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
||||
tramp_frame_prepend_unwinder (gdbarch, &mips64obsd_sigframe);
|
||||
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_mips64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
|
||||
obsd_init_abi(info, gdbarch);
|
||||
|
||||
|
||||
@@ -1974,7 +1974,7 @@ ppc_floatformat_for_type (struct gdbarch *gdbarch,
|
||||
|| strcmp (name, "_Float64x") == 0
|
||||
|| strcmp (name, "complex _Float128") == 0
|
||||
|| strcmp (name, "complex _Float64x") == 0)
|
||||
return floatformats_ia64_quad;
|
||||
return floatformats_ieee_quad;
|
||||
|
||||
if (strcmp (name, "__ibm128") == 0)
|
||||
return floatformats_ibm_long_double;
|
||||
@@ -2053,7 +2053,7 @@ ppc_linux_init_abi (struct gdbarch_info info,
|
||||
to distinguish between the IBM long double and IEEE quad cases. */
|
||||
set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT);
|
||||
if (tdep->long_double_abi == POWERPC_LONG_DOUBLE_IEEE128)
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
else
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ibm_long_double);
|
||||
|
||||
|
||||
+1
-1
@@ -3769,7 +3769,7 @@ riscv_gdbarch_init (struct gdbarch_info info,
|
||||
set_gdbarch_float_bit (gdbarch, 32);
|
||||
set_gdbarch_double_bit (gdbarch, 64);
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
set_gdbarch_ptr_bit (gdbarch, riscv_isa_xlen (gdbarch) * 8);
|
||||
set_gdbarch_char_signed (gdbarch, 0);
|
||||
set_gdbarch_type_align (gdbarch, riscv_type_align);
|
||||
|
||||
+1
-1
@@ -2434,7 +2434,7 @@ rs6000_builtin_type_vec128 (struct gdbarch *gdbarch)
|
||||
|
||||
/* PPC specific type for IEEE 128-bit float field */
|
||||
struct type *t_float128
|
||||
= arch_float_type (gdbarch, 128, "float128_t", floatformats_ia64_quad);
|
||||
= arch_float_type (gdbarch, 128, "float128_t", floatformats_ieee_quad);
|
||||
|
||||
struct type *t;
|
||||
|
||||
|
||||
+1
-1
@@ -7038,7 +7038,7 @@ s390_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
We can safely let them default to 128-bit, since the debug info
|
||||
will give the size of type actually used in each case. */
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
|
||||
set_gdbarch_type_align (gdbarch, s390_type_align);
|
||||
|
||||
|
||||
+1
-5
@@ -61,10 +61,6 @@ struct regset;
|
||||
code that can handle both. The 64-bit specific code lives in
|
||||
sparc64-tdep.c; don't add any here. */
|
||||
|
||||
/* The SPARC Floating-Point Quad-Precision format is similar to
|
||||
big-endian IA-64 Quad-Precision format. */
|
||||
#define floatformats_sparc_quad floatformats_ia64_quad
|
||||
|
||||
/* The stack pointer is offset from the stack frame by a BIAS of 2047
|
||||
(0x7ff) for 64-bit code. BIAS is likely to be defined on SPARC
|
||||
hosts, so undefine it first. */
|
||||
@@ -1837,7 +1833,7 @@ sparc32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
tdep->cp0_registers_num = ARRAY_SIZE (sparc32_cp0_register_names);
|
||||
|
||||
set_gdbarch_long_double_bit (gdbarch, 128);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_sparc_quad);
|
||||
set_gdbarch_long_double_format (gdbarch, floatformats_ieee_quad);
|
||||
|
||||
set_gdbarch_wchar_bit (gdbarch, 16);
|
||||
set_gdbarch_wchar_signed (gdbarch, 1);
|
||||
|
||||
@@ -97,7 +97,7 @@ struct floatformat
|
||||
const struct floatformat *split_half;
|
||||
};
|
||||
|
||||
/* floatformats for IEEE single and double, big and little endian. */
|
||||
/* floatformats for IEEE half, single, double and quad, big and little endian. */
|
||||
|
||||
extern const struct floatformat floatformat_ieee_half_big;
|
||||
extern const struct floatformat floatformat_ieee_half_little;
|
||||
@@ -105,6 +105,8 @@ extern const struct floatformat floatformat_ieee_single_big;
|
||||
extern const struct floatformat floatformat_ieee_single_little;
|
||||
extern const struct floatformat floatformat_ieee_double_big;
|
||||
extern const struct floatformat floatformat_ieee_double_little;
|
||||
extern const struct floatformat floatformat_ieee_quad_big;
|
||||
extern const struct floatformat floatformat_ieee_quad_little;
|
||||
|
||||
/* floatformat for ARM IEEE double, little endian bytes and big endian words */
|
||||
|
||||
@@ -128,8 +130,6 @@ extern const struct floatformat floatformat_arm_ext_littlebyte_bigword;
|
||||
/* IA-64 Floating Point register spilt into memory. */
|
||||
extern const struct floatformat floatformat_ia64_spill_big;
|
||||
extern const struct floatformat floatformat_ia64_spill_little;
|
||||
extern const struct floatformat floatformat_ia64_quad_big;
|
||||
extern const struct floatformat floatformat_ia64_quad_little;
|
||||
/* IBM long double (double+double). */
|
||||
extern const struct floatformat floatformat_ibm_long_double_big;
|
||||
extern const struct floatformat floatformat_ibm_long_double_little;
|
||||
|
||||
+17
-17
@@ -78,7 +78,7 @@ floatformat_always_valid (const struct floatformat *fmt ATTRIBUTE_UNUSED,
|
||||
a system header, what we do if not, etc. */
|
||||
#define FLOATFORMAT_CHAR_BIT 8
|
||||
|
||||
/* floatformats for IEEE half, single and double, big and little endian. */
|
||||
/* floatformats for IEEE half, single, double and quad, big and little endian. */
|
||||
const struct floatformat floatformat_ieee_half_big =
|
||||
{
|
||||
floatformat_big, 16, 0, 1, 5, 15, 31, 6, 10,
|
||||
@@ -127,6 +127,22 @@ const struct floatformat floatformat_ieee_double_little =
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
const struct floatformat floatformat_ieee_quad_big =
|
||||
{
|
||||
floatformat_big, 128, 0, 1, 15, 16383, 0x7fff, 16, 112,
|
||||
floatformat_intbit_no,
|
||||
"floatformat_ieee_quad_big",
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
const struct floatformat floatformat_ieee_quad_little =
|
||||
{
|
||||
floatformat_little, 128, 0, 1, 15, 16383, 0x7fff, 16, 112,
|
||||
floatformat_intbit_no,
|
||||
"floatformat_ieee_quad_little",
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
|
||||
/* floatformat for IEEE double, little endian byte order, with big endian word
|
||||
ordering, as on the ARM. */
|
||||
@@ -269,22 +285,6 @@ const struct floatformat floatformat_ia64_spill_little =
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
const struct floatformat floatformat_ia64_quad_big =
|
||||
{
|
||||
floatformat_big, 128, 0, 1, 15, 16383, 0x7fff, 16, 112,
|
||||
floatformat_intbit_no,
|
||||
"floatformat_ia64_quad_big",
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
const struct floatformat floatformat_ia64_quad_little =
|
||||
{
|
||||
floatformat_little, 128, 0, 1, 15, 16383, 0x7fff, 16, 112,
|
||||
floatformat_intbit_no,
|
||||
"floatformat_ia64_quad_little",
|
||||
floatformat_always_valid,
|
||||
NULL
|
||||
};
|
||||
|
||||
static int
|
||||
floatformat_ibm_long_double_is_valid (const struct floatformat *fmt,
|
||||
|
||||
Reference in New Issue
Block a user