From: Jiri Gaisler <jiri@gaisler.se>
To: gdb-patches@sourceware.org
Cc: Jiri Gaisler <jiri@gaisler.se>
Subject: [PATCH 04/23] sim/erc32: Add FPU support on x86_64 hosts.
Date: Tue, 17 Feb 2015 07:45:00 -0000 [thread overview]
Message-ID: <1424159099-5148-5-git-send-email-jiri@gaisler.se> (raw)
In-Reply-To: <1424159099-5148-1-git-send-email-jiri@gaisler.se>
* float.c (get_accex) access FPU control and status words on x64
---
sim/erc32/float.c | 80 +++++++++++++++++++++++--------------------------------
1 file changed, 34 insertions(+), 46 deletions(-)
diff --git a/sim/erc32/float.c b/sim/erc32/float.c
index 598b7cc..ce92a39 100644
--- a/sim/erc32/float.c
+++ b/sim/erc32/float.c
@@ -38,7 +38,6 @@
extern uint32 _get_sw (void);
extern uint32 _get_cw (void);
-static void __setfpucw (unsigned short fpu_control);
/* This host dependent routine should return the accrued exceptions */
int
@@ -46,7 +45,7 @@ get_accex()
{
#ifdef sparc
return ((_get_fsr_raw() >> 5) & 0x1F);
-#elif i386
+#elif defined(i386) || defined(__x86_64__)
uint32 accx;
accx = _get_sw() & 0x3f;
@@ -66,7 +65,7 @@ clear_accex()
{
#ifdef sparc
set_fsr((_get_fsr_raw() & ~0x3e0));
-#elif i386
+#elif defined(i386) || defined(__x86_64__)
asm("\n"
".text\n"
" fnclex\n"
@@ -84,9 +83,8 @@ uint32 fsr;
{
#ifdef sparc
_set_fsr_raw(fsr & ~0x0f800000);
-#elif i386
- void __setfpucw(unsigned short fpu_control);
- uint32 rawfsr;
+#elif defined(i386) || defined(__x86_64__)
+ unsigned short rawfsr;
fsr >>= 30;
switch (fsr) {
@@ -102,9 +100,8 @@ uint32 fsr;
fsr = 1;
break;
}
- rawfsr = _get_cw();
- rawfsr |= (fsr << 10) | 0x3ff;
- __setfpucw(rawfsr);
+ rawfsr = (fsr << 10) | 0x2FF; /* double precision, all traps masked */
+ __asm__ volatile ("fldcw %0" :: "m" (rawfsr));
#else
#warning no fpu trap support for this target
#endif
@@ -175,45 +172,36 @@ uint32 fsr;
"\n"
" ");
+#elif defined(__x86_64__)
+ asm ("\n"
+"\n"
+".text\n"
+".align 8\n"
+".globl _get_sw, __get_sw\n"
+"__get_sw:\n"
+"_get_sw:\n"
+" pushq %rbp\n"
+" movq %rsp, %rbp\n"
+" movl $0, %eax\n"
+" fnstsw %ax\n"
+" movq %rbp, %rsp\n"
+" popq %rbp\n"
+" ret\n"
+".align 8\n"
+".globl _get_cw, __get_cw\n"
+"__get_cw:\n"
+"_get_cw:\n"
+" pushq %rbp\n"
+" movq %rsp, %rbp\n"
+" subq $2, %rsp\n"
+" fnstcw -2(%rbp)\n"
+" movw -2(%rbp), %ax\n"
+" movq %rbp, %rsp\n"
+" popq %rbp\n"
+" ret\n"
+" ");
#else
#warning no fpu trap support for this target
#endif
-#if i386
-/* #if defined _WIN32 || defined __GO32__ */
-/* This is so floating exception handling works on NT
- These definitions are from the linux fpu_control.h, which
- doesn't exist on NT.
-
- default to:
- - extended precision
- - rounding to nearest
- - exceptions on overflow, zero divide and NaN
-*/
-#define _FPU_DEFAULT 0x1372
-#define _FPU_RESERVED 0xF0C0 /* Reserved bits in cw */
-
-static void
-__setfpucw(unsigned short fpu_control)
-{
- volatile unsigned short cw;
-
- /* If user supplied _fpu_control, use it ! */
- if (!fpu_control)
- {
- /* use defaults */
- fpu_control = _FPU_DEFAULT;
- }
- /* Get Control Word */
- __asm__ volatile ("fnstcw %0" : "=m" (cw) : );
-
- /* mask in */
- cw &= _FPU_RESERVED;
- cw = cw | (fpu_control & ~_FPU_RESERVED);
-
- /* set cw */
- __asm__ volatile ("fldcw %0" :: "m" (cw));
-}
-/* #endif */
-#endif
--
2.1.0
next prev parent reply other threads:[~2015-02-17 7:45 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-17 7:45 [PATCH 00/22] Update of the SPARC SIS simulator Jiri Gaisler
2015-02-17 7:45 ` [PATCH 15/23] sim/erc32: access memory subsystem through struct memsys to allow multiple configurations Jiri Gaisler
2015-02-17 7:45 ` [PATCH 17/23] sim/erc32: Move local extern declarations into sis.h Jiri Gaisler
2015-02-17 7:45 ` [PATCH 16/23] sim/erc32: use readline.h for readline types and functions Jiri Gaisler
2015-02-17 9:21 ` Mike Frysinger
2015-02-17 7:45 ` Jiri Gaisler [this message]
2015-02-17 9:05 ` [PATCH 04/23] sim/erc32: Add FPU support on x86_64 hosts Mike Frysinger
2015-02-19 20:45 ` Jiri Gaisler
2015-02-22 4:40 ` Mike Frysinger
2015-02-22 21:43 ` Jiri Gaisler
2015-02-17 7:45 ` [PATCH 05/23] sim/erc32: remove unused defines in Makefile and switch off statistics Jiri Gaisler
2015-02-17 11:04 ` Mike Frysinger
2015-02-17 7:45 ` [PATCH 07/23] sim/erc32: file loading via command line did not work Jiri Gaisler
2015-02-17 9:09 ` Mike Frysinger
2015-02-17 7:45 ` [PATCH 01/23] sim/erc32: Disassembly in stand-alone mode did not work due to API change Jiri Gaisler
2015-02-17 11:03 ` Mike Frysinger
2015-02-17 7:45 ` [PATCH 10/23] sim/erc32: Switched emulated memory to host endian order Jiri Gaisler
2015-02-17 7:45 ` [PATCH 02/23] sim/erc32: corrected wrong CPU implementation and version ID in %psr Jiri Gaisler
2015-02-17 11:03 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 18/23] sim/erc32: Add support for LEON3 processor emulation Jiri Gaisler
2015-02-17 15:58 ` Eli Zaretskii
2015-02-17 7:46 ` [PATCH 22/23] Added watchpoint support to gdb simulator interface Jiri Gaisler
2015-02-17 7:46 ` [PATCH 06/23] sim/erc32: Fix incorrect simulator performance report Jiri Gaisler
2015-02-17 9:07 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 08/23] sim/erc32: added -v and -vv command line switches for verbose output Jiri Gaisler
2015-02-17 9:13 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 14/23] sim/erc32: Use gdb callback for UART I/O when linked with gdb Jiri Gaisler
2015-02-17 7:46 ` [PATCH 09/23] sim/erc32: removed type mismatch compiler warnings Jiri Gaisler
2015-02-17 9:10 ` Mike Frysinger
2015-02-18 14:41 ` Jiri Gaisler
2015-02-18 16:57 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 12/23] sim/erc32: Use separate memory_iread() function for instruction fetching Jiri Gaisler
2015-02-17 7:46 ` [PATCH 13/23] sim/erc32: Fix a few compiler warnings Jiri Gaisler
2015-02-17 11:08 ` Mike Frysinger
2015-02-18 16:21 ` Jiri Gaisler
2015-02-18 16:51 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 20/23] sim/erc32: Updated documentation Jiri Gaisler
2015-02-17 11:03 ` Mike Frysinger
2015-02-17 15:52 ` Eli Zaretskii
2015-02-17 7:46 ` [PATCH 03/23] sim/erc32: Perform pseudo-init of system if binary starts from non-zero address Jiri Gaisler
2015-02-17 8:59 ` Mike Frysinger
2015-02-18 14:40 ` Jiri Gaisler
2015-02-18 16:53 ` Mike Frysinger
2015-02-19 16:11 ` Jiri Gaisler
2015-02-19 17:48 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 11/23] sim/erc32: use AC_C_BIGENDIAN to probe for host endian Jiri Gaisler
2015-02-17 9:19 ` Mike Frysinger
2015-02-17 7:46 ` [PATCH 21/23] sim/erc32: add data watchpoint support for all cpu targets Jiri Gaisler
2015-02-17 7:46 ` [PATCH 19/23] sim/erc32: Added support for the Leon2 processor Jiri Gaisler
2015-02-17 8:54 ` [PATCH 00/22] Update of the SPARC SIS simulator Mike Frysinger
2015-02-17 14:41 ` Jiri Gaisler
2015-02-18 0:16 ` Mike Frysinger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1424159099-5148-5-git-send-email-jiri@gaisler.se \
--to=jiri@gaisler.se \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox