Move gdbserver tdesc header funcs to c file
[deliverable/binutils-gdb.git] / gdb / target-float.h
index 9ea1812035c31269cc3e9a61ad40b88515ce7809..00a85b2f00c276bdfc91df4bf89dcf759b67125a 100644 (file)
@@ -1,6 +1,6 @@
 /* Floating point definitions for GDB.
 
-   Copyright (C) 1986-2017 Free Software Foundation, Inc.
+   Copyright (C) 1986-2018 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -20,6 +20,8 @@
 #ifndef TYPED_FLOAT_H
 #define TYPED_FLOAT_H
 
+#include "expression.h"
+
 extern bool target_float_is_valid (const gdb_byte *addr,
                                   const struct type *type);
 extern bool target_float_is_zero (const gdb_byte *addr,
@@ -40,8 +42,20 @@ extern void target_float_from_longest (gdb_byte *addr,
 extern void target_float_from_ulongest (gdb_byte *addr,
                                        const struct type *type,
                                        ULONGEST val);
+extern double target_float_to_host_double (const gdb_byte *addr,
+                                          const struct type *type);
+extern void target_float_from_host_double (gdb_byte *addr,
+                                          const struct type *type,
+                                          double val);
 extern void target_float_convert (const gdb_byte *from,
                                  const struct type *from_type,
                                  gdb_byte *to, const struct type *to_type);
 
+extern void target_float_binop (enum exp_opcode opcode,
+                               const gdb_byte *x, const struct type *type_x,
+                               const gdb_byte *y, const struct type *type_y,
+                               gdb_byte *res, const struct type *type_res);
+extern int target_float_compare (const gdb_byte *x, const struct type *type_x,
+                                const gdb_byte *y, const struct type *type_y);
+
 #endif
This page took 0.023681 seconds and 4 git commands to generate.