Blame SOURCES/gdb-rhbz1320945-float128-9of9.patch

2c2fa1
commit 00d5215ecec4fa0a78dcc37fec9425593753eb66
2c2fa1
Author: Ulrich Weigand <ulrich.weigand@de.ibm.com>
2c2fa1
Date:   Tue Sep 6 17:33:15 2016 +0200
2c2fa1
2c2fa1
    Support 128-bit IEEE floating-point types on Intel and Power
2c2fa1
    
2c2fa1
    Now that all the prerequisites are in place, this commit finally adds support
2c2fa1
    for handling the __float128 type on Intel and Power, by providing appropriate
2c2fa1
    platform-specific versions of the floatformat_for_type callback.
2c2fa1
    
2c2fa1
    Since at this point we do not yet have any indication in the debug info to
2c2fa1
    distinguish different floating-point formats of the same length, we simply
2c2fa1
    use the type name as hint.  Types named "__float128" get the IEEE format.
2c2fa1
    In addition to handling "__float128" itself, we also recognize "_Float128"
2c2fa1
    and (on Power) "_Float64x", as well as the complex versions of those.
2c2fa1
    (As pointed out by Joseph Myers, starting with GCC 7, __float128 is just
2c2fa1
    a typedef for _Float128 -- but it's good to handle this anyway.)
2c2fa1
    
2c2fa1
    A new test case does some simple verification that the format is decoded
2c2fa1
    correctly, using both __float128 and "long double" to make sure using both
2c2fa1
    in the same file still works.  Another new test verifies handling of the
2c2fa1
    _FloatN and _FloatNx types supported by GCC 7, as well as the complex
2c2fa1
    versions of those types.
2c2fa1
    
2c2fa1
    Note that this still only supports basic format decoding and encoding.
2c2fa1
    We do not yet support the GNU extension 'g' suffix for __float128 constants.
2c2fa1
    In addition, since all *arithmetic* on floating-point values is still
2c2fa1
    performed in native host "long double" arithmetic, if that format is not
2c2fa1
    able to encode all target __float128 values, we may get incorrect results.
2c2fa1
    (To fix this would require implementing fully synthetic target floating-
2c2fa1
    point arithmetic along the lines of GCC's real.c, presumably using MPFR.)
2c2fa1
    
2c2fa1
    gdb/ChangeLog:
2c2fa1
    
2c2fa1
            * i386-tdep.c (i386_floatformat_for_type): New function.
2c2fa1
            (i386_gdbarch_init): Install it.
2c2fa1
            * ppc-linux-tdep.c (ppc_floatformat_for_type): New function.
2c2fa1
            (ppc_linux_init_abi): Install it.
2c2fa1
    
2c2fa1
    gdb/testsuite/ChangeLog:
2c2fa1
    
2c2fa1
            * gdb.base/float128.c: New file.
2c2fa1
            * gdb.base/float128.exp: Likewise.
2c2fa1
            * gdb.base/floatn.c: Likewise.
2c2fa1
            * gdb.base/floatn.exp: Likewise.
2c2fa1
    
2c2fa1
    Signed-off-by: Ulrich Weigand <ulrich.weigand@de.ibm.com>
2c2fa1
2c2fa1
### a/gdb/ChangeLog
2c2fa1
### b/gdb/ChangeLog
2c2fa1
## -1,5 +1,12 @@
2c2fa1
 2016-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
2c2fa1
 
2c2fa1
+	* i386-tdep.c (i386_floatformat_for_type): New function.
2c2fa1
+	(i386_gdbarch_init): Install it.
2c2fa1
+	* ppc-linux-tdep.c (ppc_floatformat_for_type): New function.
2c2fa1
+	(ppc_linux_init_abi): Install it.
2c2fa1
+
2c2fa1
+2016-09-05  Ulrich Weigand  <uweigand@de.ibm.com>
2c2fa1
+
2c2fa1
 	* gdbarch.sh (floatformat_for_type): New gdbarch callback.
2c2fa1
 	* gdbarch.h, gdbarch.c: Re-generate.
2c2fa1
 	* arch-utils.h (default_floatformat_for_type): New prototype.
2c2fa1
Index: gdb-7.6.1/gdb/i386-tdep.c
2c2fa1
===================================================================
2c2fa1
--- gdb-7.6.1.orig/gdb/i386-tdep.c	2017-03-11 22:05:54.267721188 +0100
2c2fa1
+++ gdb-7.6.1/gdb/i386-tdep.c	2017-03-11 22:07:59.209585676 +0100
2c2fa1
@@ -7495,6 +7495,23 @@
2c2fa1
     }
2c2fa1
 }
2c2fa1
 
2c2fa1
+/* Return a floating-point format for a floating-point variable of
2c2fa1
+   length LEN in bits.  If non-NULL, NAME is the name of its type.
2c2fa1
+   If no suitable type is found, return NULL.  */
2c2fa1
+
2c2fa1
+static const struct floatformat **
2c2fa1
+i386_floatformat_for_type (struct gdbarch *gdbarch,
2c2fa1
+			   const char *name, int len)
2c2fa1
+{
2c2fa1
+  if (len == 128 && name)
2c2fa1
+    if (strcmp (name, "__float128") == 0
2c2fa1
+	|| strcmp (name, "_Float128") == 0
2c2fa1
+	|| strcmp (name, "complex _Float128") == 0)
2c2fa1
+      return floatformats_ia64_quad;
2c2fa1
+
2c2fa1
+  return default_floatformat_for_type (gdbarch, name, len);
2c2fa1
+}
2c2fa1
+
2c2fa1
 static int
2c2fa1
 i386_validate_tdesc_p (struct gdbarch_tdep *tdep,
2c2fa1
 		       struct tdesc_arch_data *tdesc_data)
2c2fa1
@@ -7640,6 +7657,9 @@
2c2fa1
      alignment.  */
2c2fa1
   set_gdbarch_long_double_bit (gdbarch, 96);
2c2fa1
 
2c2fa1
+  /* Support for floating-point data type variants.  */
2c2fa1
+  set_gdbarch_floatformat_for_type (gdbarch, i386_floatformat_for_type);
2c2fa1
+
2c2fa1
   /* Register numbers of various important registers.  */
2c2fa1
   set_gdbarch_sp_regnum (gdbarch, I386_ESP_REGNUM); /* %esp */
2c2fa1
   set_gdbarch_pc_regnum (gdbarch, I386_EIP_REGNUM); /* %eip */
2c2fa1
Index: gdb-7.6.1/gdb/ppc-linux-tdep.c
2c2fa1
===================================================================
2c2fa1
--- gdb-7.6.1.orig/gdb/ppc-linux-tdep.c	2017-03-11 22:05:54.267721188 +0100
2c2fa1
+++ gdb-7.6.1/gdb/ppc-linux-tdep.c	2017-03-11 22:08:14.080688571 +0100
2c2fa1
@@ -1691,6 +1691,25 @@
2c2fa1
   record_tdep->ioctl_FIOQSIZE = 0x40086680;
2c2fa1
 }
2c2fa1
 
2c2fa1
+/* Return a floating-point format for a floating-point variable of
2c2fa1
+   length LEN in bits.  If non-NULL, NAME is the name of its type.
2c2fa1
+   If no suitable type is found, return NULL.  */
2c2fa1
+
2c2fa1
+static const struct floatformat **
2c2fa1
+ppc_floatformat_for_type (struct gdbarch *gdbarch,
2c2fa1
+                          const char *name, int len)
2c2fa1
+{
2c2fa1
+  if (len == 128 && name)
2c2fa1
+    if (strcmp (name, "__float128") == 0
2c2fa1
+        || strcmp (name, "_Float128") == 0
2c2fa1
+        || strcmp (name, "_Float64x") == 0
2c2fa1
+        || strcmp (name, "complex _Float128") == 0
2c2fa1
+        || strcmp (name, "complex _Float64x") == 0)
2c2fa1
+      return floatformats_ia64_quad;
2c2fa1
+
2c2fa1
+  return default_floatformat_for_type (gdbarch, name, len);
2c2fa1
+}
2c2fa1
+
2c2fa1
 static void
2c2fa1
 ppc_linux_init_abi (struct gdbarch_info info,
2c2fa1
                     struct gdbarch *gdbarch)
2c2fa1
@@ -1713,6 +1732,9 @@
2c2fa1
   set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT);
2c2fa1
   set_gdbarch_long_double_format (gdbarch, floatformats_ibm_long_double);
2c2fa1
 
2c2fa1
+  /* Support for floating-point data type variants.  */
2c2fa1
+  set_gdbarch_floatformat_for_type (gdbarch, ppc_floatformat_for_type);
2c2fa1
+
2c2fa1
   /* Handle inferior calls during interrupted system calls.  */
2c2fa1
   set_gdbarch_write_pc (gdbarch, ppc_linux_write_pc);
2c2fa1
 
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.base/float128.c
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.base/float128.c	2017-03-11 22:07:59.210585683 +0100
2c2fa1
@@ -0,0 +1,30 @@
2c2fa1
+/* This testcase is part of GDB, the GNU debugger.
2c2fa1
+
2c2fa1
+   Copyright 2016 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+   This program is free software; you can redistribute it and/or modify
2c2fa1
+   it under the terms of the GNU General Public License as published by
2c2fa1
+   the Free Software Foundation; either version 3 of the License, or
2c2fa1
+   (at your option) any later version.
2c2fa1
+
2c2fa1
+   This program is distributed in the hope that it will be useful,
2c2fa1
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+   GNU General Public License for more details.
2c2fa1
+
2c2fa1
+   You should have received a copy of the GNU General Public License
2c2fa1
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
2c2fa1
+
2c2fa1
+#include <stdio.h>
2c2fa1
+#include <stdlib.h>
2c2fa1
+
2c2fa1
+long double ld;
2c2fa1
+__float128 f128;
2c2fa1
+
2c2fa1
+int main()
2c2fa1
+{
2c2fa1
+  ld = 1.375l;
2c2fa1
+  f128 = 2.375q;
2c2fa1
+
2c2fa1
+  return 0;
2c2fa1
+}
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.base/float128.exp
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.base/float128.exp	2017-03-11 22:07:59.211585690 +0100
2c2fa1
@@ -0,0 +1,76 @@
2c2fa1
+# Copyright 2016 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+# This program is free software; you can redistribute it and/or modify
2c2fa1
+# it under the terms of the GNU General Public License as published by
2c2fa1
+# the Free Software Foundation; either version 3 of the License, or
2c2fa1
+# (at your option) any later version.
2c2fa1
+#
2c2fa1
+# This program is distributed in the hope that it will be useful,
2c2fa1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+# GNU General Public License for more details.
2c2fa1
+#
2c2fa1
+# You should have received a copy of the GNU General Public License
2c2fa1
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
2c2fa1
+
2c2fa1
+# This file is part of the gdb testsuite.  It is intended to test that
2c2fa1
+# gdb could correctly handle floating point constant with a suffix.
2c2fa1
+
2c2fa1
+standard_testfile .c
2c2fa1
+
2c2fa1
+proc do_compile { {opts {}} } {
2c2fa1
+    global srcdir subdir srcfile binfile
2c2fa1
+    set ccopts {debug quiet}
2c2fa1
+    foreach opt $opts {lappend ccopts "additional_flags=$opt"}
2c2fa1
+    gdb_compile "${srcdir}/${subdir}/${srcfile}" "$binfile" executable $ccopts
2c2fa1
+}
2c2fa1
+
2c2fa1
+if { [do_compile] != "" && [do_compile {-mfloat128}] != "" } {
2c2fa1
+    untested "compiler can't handle __float128 type?"
2c2fa1
+    return -1
2c2fa1
+}
2c2fa1
+
2c2fa1
+clean_restart ${binfile}
2c2fa1
+
2c2fa1
+if ![runto_main] then {
2c2fa1
+    perror "couldn't run to breakpoint"
2c2fa1
+    continue
2c2fa1
+}
2c2fa1
+
2c2fa1
+# Run to the breakpoint at return.
2c2fa1
+gdb_breakpoint [gdb_get_line_number "return"]
2c2fa1
+gdb_continue_to_breakpoint "return"
2c2fa1
+
2c2fa1
+# Print the original value of ld and f128
2c2fa1
+gdb_test "print ld" ".* = 1\\.375.*" "The original value of ld is 1.375"
2c2fa1
+gdb_test "print f128" ".* = 2\\.375.*" "The original value of f128 is 2.375"
2c2fa1
+
2c2fa1
+# Test that gdb could correctly recognize float constant expression with a suffix.
2c2fa1
+# FIXME: gdb does not yet recognize the GNU extension 'q' suffix for __float128 constants.
2c2fa1
+gdb_test "print ld=-1.375l" ".* = -1\\.375.*" "Try to change ld to -1.375 with 'print ld=-1.375l'"
2c2fa1
+gdb_test "print f128=-2.375l" ".* = -2\\.375.*" "Try to change f128 to -2.375 with 'print f128=-2.375l'"
2c2fa1
+
2c2fa1
+# Test that gdb could handle the above correctly with "set var" command.
2c2fa1
+set test "set variable ld=10.375l"
2c2fa1
+gdb_test_multiple "set var ld=10.375l" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 10.375l)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+set test "set variable f128=20.375l"
2c2fa1
+gdb_test_multiple "set var f128=20.375l" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 20.375l)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+gdb_test "print ld" ".* = 10\\.375.*" "The value of ld is changed to 10.375"
2c2fa1
+gdb_test "print f128" ".* = 20\\.375.*" "The value of f128 is changed to 20.375"
2c2fa1
+
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.base/floatn.c
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.base/floatn.c	2017-03-11 22:07:59.211585690 +0100
2c2fa1
@@ -0,0 +1,48 @@
2c2fa1
+/* This testcase is part of GDB, the GNU debugger.
2c2fa1
+
2c2fa1
+   Copyright 2016 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+   This program is free software; you can redistribute it and/or modify
2c2fa1
+   it under the terms of the GNU General Public License as published by
2c2fa1
+   the Free Software Foundation; either version 3 of the License, or
2c2fa1
+   (at your option) any later version.
2c2fa1
+
2c2fa1
+   This program is distributed in the hope that it will be useful,
2c2fa1
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+   GNU General Public License for more details.
2c2fa1
+
2c2fa1
+   You should have received a copy of the GNU General Public License
2c2fa1
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
2c2fa1
+
2c2fa1
+#include <stdio.h>
2c2fa1
+#include <stdlib.h>
2c2fa1
+
2c2fa1
+_Float32 f32;
2c2fa1
+_Float64 f64;
2c2fa1
+_Float128 f128;
2c2fa1
+_Float32x f32x;
2c2fa1
+_Float64x f64x;
2c2fa1
+
2c2fa1
+_Complex _Float32 c32;
2c2fa1
+_Complex _Float64 c64;
2c2fa1
+_Complex _Float128 c128;
2c2fa1
+_Complex _Float32x c32x;
2c2fa1
+_Complex _Float64x c64x;
2c2fa1
+
2c2fa1
+int main()
2c2fa1
+{
2c2fa1
+  f32 = 1.5f32;
2c2fa1
+  f64 = 2.25f64;
2c2fa1
+  f128 = 3.375f128;
2c2fa1
+  f32x = 10.5f32x;
2c2fa1
+  f64x = 20.25f64x;
2c2fa1
+
2c2fa1
+  c32 = 1.5f32 + 1.0if;
2c2fa1
+  c64 = 2.25f64 + 1.0if;
2c2fa1
+  c128 = 3.375f128 + 1.0if;
2c2fa1
+  c32x = 10.5f32x + 1.0if;
2c2fa1
+  c64x = 20.25f64x + 1.0if;
2c2fa1
+
2c2fa1
+  return 0;
2c2fa1
+}
2c2fa1
Index: gdb-7.6.1/gdb/testsuite/gdb.base/floatn.exp
2c2fa1
===================================================================
2c2fa1
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
2c2fa1
+++ gdb-7.6.1/gdb/testsuite/gdb.base/floatn.exp	2017-03-11 22:07:59.211585690 +0100
2c2fa1
@@ -0,0 +1,124 @@
2c2fa1
+# Copyright 2016 Free Software Foundation, Inc.
2c2fa1
+
2c2fa1
+# This program is free software; you can redistribute it and/or modify
2c2fa1
+# it under the terms of the GNU General Public License as published by
2c2fa1
+# the Free Software Foundation; either version 3 of the License, or
2c2fa1
+# (at your option) any later version.
2c2fa1
+#
2c2fa1
+# This program is distributed in the hope that it will be useful,
2c2fa1
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
2c2fa1
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2c2fa1
+# GNU General Public License for more details.
2c2fa1
+#
2c2fa1
+# You should have received a copy of the GNU General Public License
2c2fa1
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
2c2fa1
+
2c2fa1
+# This file is part of the gdb testsuite.  It is intended to test that
2c2fa1
+# gdb could correctly handle floating point constant with a suffix.
2c2fa1
+
2c2fa1
+standard_testfile .c
2c2fa1
+
2c2fa1
+proc do_compile { {opts {}} } {
2c2fa1
+    global srcdir subdir srcfile binfile
2c2fa1
+    set ccopts {debug quiet}
2c2fa1
+    foreach opt $opts {lappend ccopts "additional_flags=$opt"}
2c2fa1
+    gdb_compile "${srcdir}/${subdir}/${srcfile}" "$binfile" executable $ccopts
2c2fa1
+}
2c2fa1
+
2c2fa1
+if { [do_compile] != "" && [do_compile {-mfloat128}] != "" } {
2c2fa1
+    untested "compiler can't handle _FloatN/_FloatNx types?"
2c2fa1
+    return -1
2c2fa1
+}
2c2fa1
+
2c2fa1
+clean_restart ${binfile}
2c2fa1
+
2c2fa1
+if ![runto_main] then {
2c2fa1
+    perror "couldn't run to breakpoint"
2c2fa1
+    continue
2c2fa1
+}
2c2fa1
+
2c2fa1
+# Run to the breakpoint at return.
2c2fa1
+gdb_breakpoint [gdb_get_line_number "return"]
2c2fa1
+gdb_continue_to_breakpoint "return"
2c2fa1
+
2c2fa1
+# Print the original values of f32, f64, f128, f32x, f64x.
2c2fa1
+gdb_test "print f32" ".* = 1\\.5.*" "The original value of f32 is 1.5"
2c2fa1
+gdb_test "print f64" ".* = 2\\.25.*" "The original value of f64 is 2.25"
2c2fa1
+gdb_test "print f128" ".* = 3\\.375.*" "The original value of f128 is 3.375"
2c2fa1
+gdb_test "print f32x" ".* = 10\\.5.*" "The original value of f32x is 10.5"
2c2fa1
+gdb_test "print f64x" ".* = 20\\.25.*" "The original value of f64x is 20.25"
2c2fa1
+
2c2fa1
+# Test that gdb could correctly recognize float constant expression with a suffix.
2c2fa1
+# FIXME: gdb does not yet recognize the suffix for _FloatN/_FloatNx types.
2c2fa1
+gdb_test "print f32=-1.5" ".* = -1\\.5.*" "Try to change f32 to -1.5 with 'print f32=-1.5'"
2c2fa1
+gdb_test "print f64=-2.25" ".* = -2\\.25.*" "Try to change f64 to -2.25 with 'print f64=-2.25'"
2c2fa1
+gdb_test "print f128=-3.375" ".* = -3\\.375.*" "Try to change f128 to -3.375 with 'print f128=-3.375'"
2c2fa1
+gdb_test "print f32x=-10.5" ".* = -10\\.5.*" "Try to change f32x to -10.5 with 'print f32=-1.5x'"
2c2fa1
+gdb_test "print f64x=-20.25" ".* = -20\\.25.*" "Try to change f64x to -20.25 with 'print f64=-2.25x'"
2c2fa1
+
2c2fa1
+# Test that gdb could handle the above correctly with "set var" command.
2c2fa1
+set test "set variable f32 = 10.5"
2c2fa1
+gdb_test_multiple "set var f32=10.5" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 10.5)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+set test "set variable f64 = 20.25"
2c2fa1
+gdb_test_multiple "set var f64=20.25" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 20.25)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+set test "set variable f128 = 30.375"
2c2fa1
+gdb_test_multiple "set var f128=30.375" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 30.375)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+set test "set variable f32x = 100.5"
2c2fa1
+gdb_test_multiple "set var f32x=100.5" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 100.5)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+set test "set variable f64x = 200.25"
2c2fa1
+gdb_test_multiple "set var f64x=200.25" "$test" {
2c2fa1
+    -re "$gdb_prompt $" {
2c2fa1
+	pass "$test"
2c2fa1
+    }
2c2fa1
+    -re "Invalid number.*$gdb_prompt $" {
2c2fa1
+	fail "$test (do not recognize 200.25)"
2c2fa1
+    }
2c2fa1
+}
2c2fa1
+
2c2fa1
+gdb_test "print f32" ".* = 10\\.5.*" "The value of f32 is changed to 10.5"
2c2fa1
+gdb_test "print f64" ".* = 20\\.25.*" "The value of f64 is changed to 20.25"
2c2fa1
+gdb_test "print f128" ".* = 30\\.375.*" "The value of f128 is changed to 30.375"
2c2fa1
+gdb_test "print f32x" ".* = 100\\.5.*" "The value of f32x is changed to 100.5"
2c2fa1
+gdb_test "print f64x" ".* = 200\\.25.*" "The value of f64x is changed to 200.25"
2c2fa1
+
2c2fa1
+# Print the original values of c32, c64, c128, c32x, c64x.
2c2fa1
+gdb_test "print c32" ".* = 1\\.5 \\+ 1 \\* I.*" "The original value of c32 is 1.5 + 1 * I"
2c2fa1
+gdb_test "print c64" ".* = 2\\.25 \\+ 1 \\* I.*" "The original value of c64 is 2.25 + 1 * I"
2c2fa1
+gdb_test "print c128" ".* = 3\\.375 \\+ 1 \\* I.*" "The original value of c128 is 3.375 + 1 * I"
2c2fa1
+gdb_test "print c32x" ".* = 10\\.5 \\+ 1 \\* I.*" "The original value of c32x is 10.5 + 1 * I"
2c2fa1
+gdb_test "print c64x" ".* = 20\\.25 \\+ 1 \\* I.*" "The original value of c64x is 20.25 + 1 * I"
2c2fa1
+
2c2fa1
+# FIXME: GDB cannot parse non-trivial complex constants yet.
2c2fa1
+