qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] PATCH: updated Solaris isinf  support
@ 2007-04-13 23:15 Ben Taylor
  0 siblings, 0 replies; only message in thread
From: Ben Taylor @ 2007-04-13 23:15 UTC (permalink / raw)
  To: qemu-devel

[-- Attachment #1: Type: text/plain, Size: 494 bytes --]


This is an update to a previous patch to fix the missing macro isinf
(and isnan)  for Solaris that is used in target-i386/helper.c.  This 
patch is against qemu/fpu/softfloat-native.h, which is a better place
for the macro, as opposed to putting it in target-i386/helper.c.

Attribution to Juergen Keil for extending the original idea, with
help from autoconf documentation.

Eventually, Solaris 10/11 will correctly support isinf, but until 
the updates are made, this will work for now.

Ben

[-- Attachment #2: qemu-sol-isinf.diff --]
[-- Type: text/x-patch, Size: 1103 bytes --]

--- qemu.ORIG/fpu/softfloat-native.h	2007-03-20 18:10:42.000000000 -0400
+++ qemu/fpu/softfloat-native.h	2007-04-13 17:58:22.643179000 -0400
@@ -33,6 +33,29 @@
 #define isunordered(x,y)        unordered(x, y)
 #endif
 
+#if defined(__sun__) && !defined(NEED_LIBSUNMATH)
+
+#ifndef isnan
+# define isnan(x) \
+    (sizeof (x) == sizeof (long double) ? isnan_ld (x) \
+     : sizeof (x) == sizeof (double) ? isnan_d (x) \
+     : isnan_f (x))
+static inline int isnan_f  (float       x) { return x != x; }
+static inline int isnan_d  (double      x) { return x != x; }
+static inline int isnan_ld (long double x) { return x != x; }
+#endif
+
+#ifndef isinf
+# define isinf(x) \
+    (sizeof (x) == sizeof (long double) ? isinf_ld (x) \
+     : sizeof (x) == sizeof (double) ? isinf_d (x) \
+     : isinf_f (x))
+static inline int isinf_f  (float       x) { return isnan (x - x); }
+static inline int isinf_d  (double      x) { return isnan (x - x); }
+static inline int isinf_ld (long double x) { return isnan (x - x); }
+#endif
+#endif
+
 typedef float float32;
 typedef double float64;
 #ifdef FLOATX80

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-04-13 23:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-13 23:15 [Qemu-devel] PATCH: updated Solaris isinf support Ben Taylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).