* configure.in (hppa*-*-*): Also configure and build stabs-only
[deliverable/binutils-gdb.git] / gdb / i387-tdep.c
CommitLineData
cab7a417
JG
1/* Intel 387 floating point stuff.
2 Copyright (C) 1988, 1989, 1991 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
cab7a417 20#include "defs.h"
cab7a417
JG
21#include "frame.h"
22#include "inferior.h"
23#include "language.h"
24#include "gdbcore.h"
25#include "ieee-float.h"
26
cab7a417
JG
27struct ext_format ext_format_i387 = {
28/* tot sbyte smask expbyte manbyte */
29 10, 9, 0x80, 9,8, 4,0 /* i387 */
30};
31
32/* FIXME: Eliminate these routines when we have the time to change all
33 the callers. */
1ab3bf1b 34
cab7a417
JG
35void
36i387_to_double (from, to)
1ab3bf1b
JG
37 char *from;
38 char *to;
cab7a417
JG
39{
40 ieee_extended_to_double (&ext_format_i387, from, (double *)to);
41}
42
43void
44double_to_i387 (from, to)
1ab3bf1b
JG
45 char *from;
46 char *to;
cab7a417 47{
afe4ca15 48 double_to_ieee_extended (&ext_format_i387, (double *)from, to);
cab7a417
JG
49}
50
51void
52print_387_control_word (control)
1ab3bf1b 53 unsigned int control;
cab7a417 54{
199b2450
TL
55 printf_unfiltered ("control %s: ", local_hex_string(control));
56 printf_unfiltered ("compute to ");
cab7a417
JG
57 switch ((control >> 8) & 3)
58 {
199b2450
TL
59 case 0: printf_unfiltered ("24 bits; "); break;
60 case 1: printf_unfiltered ("(bad); "); break;
61 case 2: printf_unfiltered ("53 bits; "); break;
62 case 3: printf_unfiltered ("64 bits; "); break;
cab7a417 63 }
199b2450 64 printf_unfiltered ("round ");
cab7a417
JG
65 switch ((control >> 10) & 3)
66 {
199b2450
TL
67 case 0: printf_unfiltered ("NEAREST; "); break;
68 case 1: printf_unfiltered ("DOWN; "); break;
69 case 2: printf_unfiltered ("UP; "); break;
70 case 3: printf_unfiltered ("CHOP; "); break;
cab7a417
JG
71 }
72 if (control & 0x3f)
73 {
199b2450
TL
74 printf_unfiltered ("mask:");
75 if (control & 0x0001) printf_unfiltered (" INVALID");
76 if (control & 0x0002) printf_unfiltered (" DENORM");
77 if (control & 0x0004) printf_unfiltered (" DIVZ");
78 if (control & 0x0008) printf_unfiltered (" OVERF");
79 if (control & 0x0010) printf_unfiltered (" UNDERF");
80 if (control & 0x0020) printf_unfiltered (" LOS");
81 printf_unfiltered (";");
cab7a417 82 }
199b2450 83 printf_unfiltered ("\n");
318bf84f 84 if (control & 0xe080) warning ("reserved bits on: %s\n",
d8b3b00e 85 local_hex_string(control & 0xe080));
cab7a417
JG
86}
87
88void
89print_387_status_word (status)
1ab3bf1b 90 unsigned int status;
cab7a417 91{
199b2450 92 printf_unfiltered ("status %s: ", local_hex_string (status));
cab7a417
JG
93 if (status & 0xff)
94 {
199b2450
TL
95 printf_unfiltered ("exceptions:");
96 if (status & 0x0001) printf_unfiltered (" INVALID");
97 if (status & 0x0002) printf_unfiltered (" DENORM");
98 if (status & 0x0004) printf_unfiltered (" DIVZ");
99 if (status & 0x0008) printf_unfiltered (" OVERF");
100 if (status & 0x0010) printf_unfiltered (" UNDERF");
101 if (status & 0x0020) printf_unfiltered (" LOS");
102 if (status & 0x0040) printf_unfiltered (" FPSTACK");
103 printf_unfiltered ("; ");
cab7a417 104 }
199b2450 105 printf_unfiltered ("flags: %d%d%d%d; ",
cab7a417
JG
106 (status & 0x4000) != 0,
107 (status & 0x0400) != 0,
108 (status & 0x0200) != 0,
109 (status & 0x0100) != 0);
2c7ab4ca 110
199b2450 111 printf_unfiltered ("top %d\n", (status >> 11) & 7);
cab7a417 112}
This page took 0.128447 seconds and 4 git commands to generate.