Support i387 AVX.
[deliverable/binutils-gdb.git] / gdb / i387-tdep.c
1 /* Intel 387 floating point stuff.
2
3 Copyright (C) 1988, 1989, 1991, 1992, 1993, 1994, 1998, 1999, 2000, 2001,
4 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22 #include "defs.h"
23 #include "doublest.h"
24 #include "floatformat.h"
25 #include "frame.h"
26 #include "gdbcore.h"
27 #include "inferior.h"
28 #include "language.h"
29 #include "regcache.h"
30 #include "value.h"
31
32 #include "gdb_assert.h"
33 #include "gdb_string.h"
34
35 #include "i386-tdep.h"
36 #include "i387-tdep.h"
37 #include "i386-xstate.h"
38
39 /* Print the floating point number specified by RAW. */
40
41 static void
42 print_i387_value (struct gdbarch *gdbarch,
43 const gdb_byte *raw, struct ui_file *file)
44 {
45 DOUBLEST value;
46
47 /* Using extract_typed_floating here might affect the representation
48 of certain numbers such as NaNs, even if GDB is running natively.
49 This is fine since our caller already detects such special
50 numbers and we print the hexadecimal representation anyway. */
51 value = extract_typed_floating (raw, i387_ext_type (gdbarch));
52
53 /* We try to print 19 digits. The last digit may or may not contain
54 garbage, but we'd better print one too many. We need enough room
55 to print the value, 1 position for the sign, 1 for the decimal
56 point, 19 for the digits and 6 for the exponent adds up to 27. */
57 #ifdef PRINTF_HAS_LONG_DOUBLE
58 fprintf_filtered (file, " %-+27.19Lg", (long double) value);
59 #else
60 fprintf_filtered (file, " %-+27.19g", (double) value);
61 #endif
62 }
63
64 /* Print the classification for the register contents RAW. */
65
66 static void
67 print_i387_ext (struct gdbarch *gdbarch,
68 const gdb_byte *raw, struct ui_file *file)
69 {
70 int sign;
71 int integer;
72 unsigned int exponent;
73 unsigned long fraction[2];
74
75 sign = raw[9] & 0x80;
76 integer = raw[7] & 0x80;
77 exponent = (((raw[9] & 0x7f) << 8) | raw[8]);
78 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]);
79 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16)
80 | (raw[5] << 8) | raw[4]);
81
82 if (exponent == 0x7fff && integer)
83 {
84 if (fraction[0] == 0x00000000 && fraction[1] == 0x00000000)
85 /* Infinity. */
86 fprintf_filtered (file, " %cInf", (sign ? '-' : '+'));
87 else if (sign && fraction[0] == 0x00000000 && fraction[1] == 0x40000000)
88 /* Real Indefinite (QNaN). */
89 fputs_unfiltered (" Real Indefinite (QNaN)", file);
90 else if (fraction[1] & 0x40000000)
91 /* QNaN. */
92 fputs_filtered (" QNaN", file);
93 else
94 /* SNaN. */
95 fputs_filtered (" SNaN", file);
96 }
97 else if (exponent < 0x7fff && exponent > 0x0000 && integer)
98 /* Normal. */
99 print_i387_value (gdbarch, raw, file);
100 else if (exponent == 0x0000)
101 {
102 /* Denormal or zero. */
103 print_i387_value (gdbarch, raw, file);
104
105 if (integer)
106 /* Pseudo-denormal. */
107 fputs_filtered (" Pseudo-denormal", file);
108 else if (fraction[0] || fraction[1])
109 /* Denormal. */
110 fputs_filtered (" Denormal", file);
111 }
112 else
113 /* Unsupported. */
114 fputs_filtered (" Unsupported", file);
115 }
116
117 /* Print the status word STATUS. */
118
119 static void
120 print_i387_status_word (unsigned int status, struct ui_file *file)
121 {
122 fprintf_filtered (file, "Status Word: %s",
123 hex_string_custom (status, 4));
124 fputs_filtered (" ", file);
125 fprintf_filtered (file, " %s", (status & 0x0001) ? "IE" : " ");
126 fprintf_filtered (file, " %s", (status & 0x0002) ? "DE" : " ");
127 fprintf_filtered (file, " %s", (status & 0x0004) ? "ZE" : " ");
128 fprintf_filtered (file, " %s", (status & 0x0008) ? "OE" : " ");
129 fprintf_filtered (file, " %s", (status & 0x0010) ? "UE" : " ");
130 fprintf_filtered (file, " %s", (status & 0x0020) ? "PE" : " ");
131 fputs_filtered (" ", file);
132 fprintf_filtered (file, " %s", (status & 0x0080) ? "ES" : " ");
133 fputs_filtered (" ", file);
134 fprintf_filtered (file, " %s", (status & 0x0040) ? "SF" : " ");
135 fputs_filtered (" ", file);
136 fprintf_filtered (file, " %s", (status & 0x0100) ? "C0" : " ");
137 fprintf_filtered (file, " %s", (status & 0x0200) ? "C1" : " ");
138 fprintf_filtered (file, " %s", (status & 0x0400) ? "C2" : " ");
139 fprintf_filtered (file, " %s", (status & 0x4000) ? "C3" : " ");
140
141 fputs_filtered ("\n", file);
142
143 fprintf_filtered (file,
144 " TOP: %d\n", ((status >> 11) & 7));
145 }
146
147 /* Print the control word CONTROL. */
148
149 static void
150 print_i387_control_word (unsigned int control, struct ui_file *file)
151 {
152 fprintf_filtered (file, "Control Word: %s",
153 hex_string_custom (control, 4));
154 fputs_filtered (" ", file);
155 fprintf_filtered (file, " %s", (control & 0x0001) ? "IM" : " ");
156 fprintf_filtered (file, " %s", (control & 0x0002) ? "DM" : " ");
157 fprintf_filtered (file, " %s", (control & 0x0004) ? "ZM" : " ");
158 fprintf_filtered (file, " %s", (control & 0x0008) ? "OM" : " ");
159 fprintf_filtered (file, " %s", (control & 0x0010) ? "UM" : " ");
160 fprintf_filtered (file, " %s", (control & 0x0020) ? "PM" : " ");
161
162 fputs_filtered ("\n", file);
163
164 fputs_filtered (" PC: ", file);
165 switch ((control >> 8) & 3)
166 {
167 case 0:
168 fputs_filtered ("Single Precision (24-bits)\n", file);
169 break;
170 case 1:
171 fputs_filtered ("Reserved\n", file);
172 break;
173 case 2:
174 fputs_filtered ("Double Precision (53-bits)\n", file);
175 break;
176 case 3:
177 fputs_filtered ("Extended Precision (64-bits)\n", file);
178 break;
179 }
180
181 fputs_filtered (" RC: ", file);
182 switch ((control >> 10) & 3)
183 {
184 case 0:
185 fputs_filtered ("Round to nearest\n", file);
186 break;
187 case 1:
188 fputs_filtered ("Round down\n", file);
189 break;
190 case 2:
191 fputs_filtered ("Round up\n", file);
192 break;
193 case 3:
194 fputs_filtered ("Round toward zero\n", file);
195 break;
196 }
197 }
198
199 /* Print out the i387 floating point state. Note that we ignore FRAME
200 in the code below. That's OK since floating-point registers are
201 never saved on the stack. */
202
203 void
204 i387_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
205 struct frame_info *frame, const char *args)
206 {
207 struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (frame));
208 gdb_byte buf[4];
209 ULONGEST fctrl;
210 ULONGEST fstat;
211 ULONGEST ftag;
212 ULONGEST fiseg;
213 ULONGEST fioff;
214 ULONGEST foseg;
215 ULONGEST fooff;
216 ULONGEST fop;
217 int fpreg;
218 int top;
219
220 gdb_assert (gdbarch == get_frame_arch (frame));
221
222 fctrl = get_frame_register_unsigned (frame, I387_FCTRL_REGNUM (tdep));
223 fstat = get_frame_register_unsigned (frame, I387_FSTAT_REGNUM (tdep));
224 ftag = get_frame_register_unsigned (frame, I387_FTAG_REGNUM (tdep));
225 fiseg = get_frame_register_unsigned (frame, I387_FISEG_REGNUM (tdep));
226 fioff = get_frame_register_unsigned (frame, I387_FIOFF_REGNUM (tdep));
227 foseg = get_frame_register_unsigned (frame, I387_FOSEG_REGNUM (tdep));
228 fooff = get_frame_register_unsigned (frame, I387_FOOFF_REGNUM (tdep));
229 fop = get_frame_register_unsigned (frame, I387_FOP_REGNUM (tdep));
230
231 top = ((fstat >> 11) & 7);
232
233 for (fpreg = 7; fpreg >= 0; fpreg--)
234 {
235 gdb_byte raw[I386_MAX_REGISTER_SIZE];
236 int tag = (ftag >> (fpreg * 2)) & 3;
237 int i;
238
239 fprintf_filtered (file, "%sR%d: ", fpreg == top ? "=>" : " ", fpreg);
240
241 switch (tag)
242 {
243 case 0:
244 fputs_filtered ("Valid ", file);
245 break;
246 case 1:
247 fputs_filtered ("Zero ", file);
248 break;
249 case 2:
250 fputs_filtered ("Special ", file);
251 break;
252 case 3:
253 fputs_filtered ("Empty ", file);
254 break;
255 }
256
257 get_frame_register (frame, (fpreg + 8 - top) % 8 + I387_ST0_REGNUM (tdep),
258 raw);
259
260 fputs_filtered ("0x", file);
261 for (i = 9; i >= 0; i--)
262 fprintf_filtered (file, "%02x", raw[i]);
263
264 if (tag != 3)
265 print_i387_ext (gdbarch, raw, file);
266
267 fputs_filtered ("\n", file);
268 }
269
270 fputs_filtered ("\n", file);
271
272 print_i387_status_word (fstat, file);
273 print_i387_control_word (fctrl, file);
274 fprintf_filtered (file, "Tag Word: %s\n",
275 hex_string_custom (ftag, 4));
276 fprintf_filtered (file, "Instruction Pointer: %s:",
277 hex_string_custom (fiseg, 2));
278 fprintf_filtered (file, "%s\n", hex_string_custom (fioff, 8));
279 fprintf_filtered (file, "Operand Pointer: %s:",
280 hex_string_custom (foseg, 2));
281 fprintf_filtered (file, "%s\n", hex_string_custom (fooff, 8));
282 fprintf_filtered (file, "Opcode: %s\n",
283 hex_string_custom (fop ? (fop | 0xd800) : 0, 4));
284 }
285 \f
286
287 /* Return nonzero if a value of type TYPE stored in register REGNUM
288 needs any special handling. */
289
290 int
291 i387_convert_register_p (struct gdbarch *gdbarch, int regnum, struct type *type)
292 {
293 if (i386_fp_regnum_p (gdbarch, regnum))
294 {
295 /* Floating point registers must be converted unless we are
296 accessing them in their hardware type. */
297 if (type == i387_ext_type (gdbarch))
298 return 0;
299 else
300 return 1;
301 }
302
303 return 0;
304 }
305
306 /* Read a value of type TYPE from register REGNUM in frame FRAME, and
307 return its contents in TO. */
308
309 void
310 i387_register_to_value (struct frame_info *frame, int regnum,
311 struct type *type, gdb_byte *to)
312 {
313 struct gdbarch *gdbarch = get_frame_arch (frame);
314 gdb_byte from[I386_MAX_REGISTER_SIZE];
315
316 gdb_assert (i386_fp_regnum_p (gdbarch, regnum));
317
318 /* We only support floating-point values. */
319 if (TYPE_CODE (type) != TYPE_CODE_FLT)
320 {
321 warning (_("Cannot convert floating-point register value "
322 "to non-floating-point type."));
323 return;
324 }
325
326 /* Convert to TYPE. */
327 get_frame_register (frame, regnum, from);
328 convert_typed_floating (from, i387_ext_type (gdbarch), to, type);
329 }
330
331 /* Write the contents FROM of a value of type TYPE into register
332 REGNUM in frame FRAME. */
333
334 void
335 i387_value_to_register (struct frame_info *frame, int regnum,
336 struct type *type, const gdb_byte *from)
337 {
338 struct gdbarch *gdbarch = get_frame_arch (frame);
339 gdb_byte to[I386_MAX_REGISTER_SIZE];
340
341 gdb_assert (i386_fp_regnum_p (gdbarch, regnum));
342
343 /* We only support floating-point values. */
344 if (TYPE_CODE (type) != TYPE_CODE_FLT)
345 {
346 warning (_("Cannot convert non-floating-point type "
347 "to floating-point register value."));
348 return;
349 }
350
351 /* Convert from TYPE. */
352 convert_typed_floating (from, type, to, i387_ext_type (gdbarch));
353 put_frame_register (frame, regnum, to);
354 }
355 \f
356
357 /* Handle FSAVE and FXSAVE formats. */
358
359 /* At fsave_offset[REGNUM] you'll find the offset to the location in
360 the data structure used by the "fsave" instruction where GDB
361 register REGNUM is stored. */
362
363 static int fsave_offset[] =
364 {
365 28 + 0 * 10, /* %st(0) ... */
366 28 + 1 * 10,
367 28 + 2 * 10,
368 28 + 3 * 10,
369 28 + 4 * 10,
370 28 + 5 * 10,
371 28 + 6 * 10,
372 28 + 7 * 10, /* ... %st(7). */
373 0, /* `fctrl' (16 bits). */
374 4, /* `fstat' (16 bits). */
375 8, /* `ftag' (16 bits). */
376 16, /* `fiseg' (16 bits). */
377 12, /* `fioff'. */
378 24, /* `foseg' (16 bits). */
379 20, /* `fooff'. */
380 18 /* `fop' (bottom 11 bits). */
381 };
382
383 #define FSAVE_ADDR(tdep, fsave, regnum) \
384 (fsave + fsave_offset[regnum - I387_ST0_REGNUM (tdep)])
385 \f
386
387 /* Fill register REGNUM in REGCACHE with the appropriate value from
388 *FSAVE. This function masks off any of the reserved bits in
389 *FSAVE. */
390
391 void
392 i387_supply_fsave (struct regcache *regcache, int regnum, const void *fsave)
393 {
394 struct gdbarch *gdbarch = get_regcache_arch (regcache);
395 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
396 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
397 const gdb_byte *regs = fsave;
398 int i;
399
400 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
401
402 for (i = I387_ST0_REGNUM (tdep); i < I387_XMM0_REGNUM (tdep); i++)
403 if (regnum == -1 || regnum == i)
404 {
405 if (fsave == NULL)
406 {
407 regcache_raw_supply (regcache, i, NULL);
408 continue;
409 }
410
411 /* Most of the FPU control registers occupy only 16 bits in the
412 fsave area. Give those a special treatment. */
413 if (i >= I387_FCTRL_REGNUM (tdep)
414 && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep))
415 {
416 gdb_byte val[4];
417
418 memcpy (val, FSAVE_ADDR (tdep, regs, i), 2);
419 val[2] = val[3] = 0;
420 if (i == I387_FOP_REGNUM (tdep))
421 val[1] &= ((1 << 3) - 1);
422 regcache_raw_supply (regcache, i, val);
423 }
424 else
425 regcache_raw_supply (regcache, i, FSAVE_ADDR (tdep, regs, i));
426 }
427
428 /* Provide dummy values for the SSE registers. */
429 for (i = I387_XMM0_REGNUM (tdep); i < I387_MXCSR_REGNUM (tdep); i++)
430 if (regnum == -1 || regnum == i)
431 regcache_raw_supply (regcache, i, NULL);
432 if (regnum == -1 || regnum == I387_MXCSR_REGNUM (tdep))
433 {
434 gdb_byte buf[4];
435
436 store_unsigned_integer (buf, 4, byte_order, 0x1f80);
437 regcache_raw_supply (regcache, I387_MXCSR_REGNUM (tdep), buf);
438 }
439 }
440
441 /* Fill register REGNUM (if it is a floating-point register) in *FSAVE
442 with the value from REGCACHE. If REGNUM is -1, do this for all
443 registers. This function doesn't touch any of the reserved bits in
444 *FSAVE. */
445
446 void
447 i387_collect_fsave (const struct regcache *regcache, int regnum, void *fsave)
448 {
449 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
450 gdb_byte *regs = fsave;
451 int i;
452
453 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
454
455 for (i = I387_ST0_REGNUM (tdep); i < I387_XMM0_REGNUM (tdep); i++)
456 if (regnum == -1 || regnum == i)
457 {
458 /* Most of the FPU control registers occupy only 16 bits in
459 the fsave area. Give those a special treatment. */
460 if (i >= I387_FCTRL_REGNUM (tdep)
461 && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep))
462 {
463 gdb_byte buf[4];
464
465 regcache_raw_collect (regcache, i, buf);
466
467 if (i == I387_FOP_REGNUM (tdep))
468 {
469 /* The opcode occupies only 11 bits. Make sure we
470 don't touch the other bits. */
471 buf[1] &= ((1 << 3) - 1);
472 buf[1] |= ((FSAVE_ADDR (tdep, regs, i))[1] & ~((1 << 3) - 1));
473 }
474 memcpy (FSAVE_ADDR (tdep, regs, i), buf, 2);
475 }
476 else
477 regcache_raw_collect (regcache, i, FSAVE_ADDR (tdep, regs, i));
478 }
479 }
480 \f
481
482 /* At fxsave_offset[REGNUM] you'll find the offset to the location in
483 the data structure used by the "fxsave" instruction where GDB
484 register REGNUM is stored. */
485
486 static int fxsave_offset[] =
487 {
488 32, /* %st(0) through ... */
489 48,
490 64,
491 80,
492 96,
493 112,
494 128,
495 144, /* ... %st(7) (80 bits each). */
496 0, /* `fctrl' (16 bits). */
497 2, /* `fstat' (16 bits). */
498 4, /* `ftag' (16 bits). */
499 12, /* `fiseg' (16 bits). */
500 8, /* `fioff'. */
501 20, /* `foseg' (16 bits). */
502 16, /* `fooff'. */
503 6, /* `fop' (bottom 11 bits). */
504 160 + 0 * 16, /* %xmm0 through ... */
505 160 + 1 * 16,
506 160 + 2 * 16,
507 160 + 3 * 16,
508 160 + 4 * 16,
509 160 + 5 * 16,
510 160 + 6 * 16,
511 160 + 7 * 16,
512 160 + 8 * 16,
513 160 + 9 * 16,
514 160 + 10 * 16,
515 160 + 11 * 16,
516 160 + 12 * 16,
517 160 + 13 * 16,
518 160 + 14 * 16,
519 160 + 15 * 16, /* ... %xmm15 (128 bits each). */
520 };
521
522 #define FXSAVE_ADDR(tdep, fxsave, regnum) \
523 (fxsave + fxsave_offset[regnum - I387_ST0_REGNUM (tdep)])
524
525 /* We made an unfortunate choice in putting %mxcsr after the SSE
526 registers %xmm0-%xmm7 instead of before, since it makes supporting
527 the registers %xmm8-%xmm15 on AMD64 a bit involved. Therefore we
528 don't include the offset for %mxcsr here above. */
529
530 #define FXSAVE_MXCSR_ADDR(fxsave) (fxsave + 24)
531
532 static int i387_tag (const gdb_byte *raw);
533 \f
534
535 /* Fill register REGNUM in REGCACHE with the appropriate
536 floating-point or SSE register value from *FXSAVE. This function
537 masks off any of the reserved bits in *FXSAVE. */
538
539 void
540 i387_supply_fxsave (struct regcache *regcache, int regnum, const void *fxsave)
541 {
542 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
543 const gdb_byte *regs = fxsave;
544 int i;
545
546 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
547 gdb_assert (tdep->num_xmm_regs > 0);
548
549 for (i = I387_ST0_REGNUM (tdep); i < I387_MXCSR_REGNUM (tdep); i++)
550 if (regnum == -1 || regnum == i)
551 {
552 if (regs == NULL)
553 {
554 regcache_raw_supply (regcache, i, NULL);
555 continue;
556 }
557
558 /* Most of the FPU control registers occupy only 16 bits in
559 the fxsave area. Give those a special treatment. */
560 if (i >= I387_FCTRL_REGNUM (tdep) && i < I387_XMM0_REGNUM (tdep)
561 && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep))
562 {
563 gdb_byte val[4];
564
565 memcpy (val, FXSAVE_ADDR (tdep, regs, i), 2);
566 val[2] = val[3] = 0;
567 if (i == I387_FOP_REGNUM (tdep))
568 val[1] &= ((1 << 3) - 1);
569 else if (i== I387_FTAG_REGNUM (tdep))
570 {
571 /* The fxsave area contains a simplified version of
572 the tag word. We have to look at the actual 80-bit
573 FP data to recreate the traditional i387 tag word. */
574
575 unsigned long ftag = 0;
576 int fpreg;
577 int top;
578
579 top = ((FXSAVE_ADDR (tdep, regs,
580 I387_FSTAT_REGNUM (tdep)))[1] >> 3);
581 top &= 0x7;
582
583 for (fpreg = 7; fpreg >= 0; fpreg--)
584 {
585 int tag;
586
587 if (val[0] & (1 << fpreg))
588 {
589 int regnum = (fpreg + 8 - top) % 8
590 + I387_ST0_REGNUM (tdep);
591 tag = i387_tag (FXSAVE_ADDR (tdep, regs, regnum));
592 }
593 else
594 tag = 3; /* Empty */
595
596 ftag |= tag << (2 * fpreg);
597 }
598 val[0] = ftag & 0xff;
599 val[1] = (ftag >> 8) & 0xff;
600 }
601 regcache_raw_supply (regcache, i, val);
602 }
603 else
604 regcache_raw_supply (regcache, i, FXSAVE_ADDR (tdep, regs, i));
605 }
606
607 if (regnum == I387_MXCSR_REGNUM (tdep) || regnum == -1)
608 {
609 if (regs == NULL)
610 regcache_raw_supply (regcache, I387_MXCSR_REGNUM (tdep), NULL);
611 else
612 regcache_raw_supply (regcache, I387_MXCSR_REGNUM (tdep),
613 FXSAVE_MXCSR_ADDR (regs));
614 }
615 }
616
617 /* Fill register REGNUM (if it is a floating-point or SSE register) in
618 *FXSAVE with the value from REGCACHE. If REGNUM is -1, do this for
619 all registers. This function doesn't touch any of the reserved
620 bits in *FXSAVE. */
621
622 void
623 i387_collect_fxsave (const struct regcache *regcache, int regnum, void *fxsave)
624 {
625 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
626 gdb_byte *regs = fxsave;
627 int i;
628
629 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
630 gdb_assert (tdep->num_xmm_regs > 0);
631
632 for (i = I387_ST0_REGNUM (tdep); i < I387_MXCSR_REGNUM (tdep); i++)
633 if (regnum == -1 || regnum == i)
634 {
635 /* Most of the FPU control registers occupy only 16 bits in
636 the fxsave area. Give those a special treatment. */
637 if (i >= I387_FCTRL_REGNUM (tdep) && i < I387_XMM0_REGNUM (tdep)
638 && i != I387_FIOFF_REGNUM (tdep) && i != I387_FOOFF_REGNUM (tdep))
639 {
640 gdb_byte buf[4];
641
642 regcache_raw_collect (regcache, i, buf);
643
644 if (i == I387_FOP_REGNUM (tdep))
645 {
646 /* The opcode occupies only 11 bits. Make sure we
647 don't touch the other bits. */
648 buf[1] &= ((1 << 3) - 1);
649 buf[1] |= ((FXSAVE_ADDR (tdep, regs, i))[1] & ~((1 << 3) - 1));
650 }
651 else if (i == I387_FTAG_REGNUM (tdep))
652 {
653 /* Converting back is much easier. */
654
655 unsigned short ftag;
656 int fpreg;
657
658 ftag = (buf[1] << 8) | buf[0];
659 buf[0] = 0;
660 buf[1] = 0;
661
662 for (fpreg = 7; fpreg >= 0; fpreg--)
663 {
664 int tag = (ftag >> (fpreg * 2)) & 3;
665
666 if (tag != 3)
667 buf[0] |= (1 << fpreg);
668 }
669 }
670 memcpy (FXSAVE_ADDR (tdep, regs, i), buf, 2);
671 }
672 else
673 regcache_raw_collect (regcache, i, FXSAVE_ADDR (tdep, regs, i));
674 }
675
676 if (regnum == I387_MXCSR_REGNUM (tdep) || regnum == -1)
677 regcache_raw_collect (regcache, I387_MXCSR_REGNUM (tdep),
678 FXSAVE_MXCSR_ADDR (regs));
679 }
680
681 /* `xstate_bv' is at byte offset 512. */
682 #define XSAVE_XSTATE_BV_ADDR(xsave) (xsave + 512)
683
684 /* At xsave_avxh_offset[REGNUM] you'll find the offset to the location in
685 the upper 128bit of AVX register data structure used by the "xsave"
686 instruction where GDB register REGNUM is stored. */
687
688 static int xsave_avxh_offset[] =
689 {
690 576 + 0 * 16, /* Upper 128bit of %ymm0 through ... */
691 576 + 1 * 16,
692 576 + 2 * 16,
693 576 + 3 * 16,
694 576 + 4 * 16,
695 576 + 5 * 16,
696 576 + 6 * 16,
697 576 + 7 * 16,
698 576 + 8 * 16,
699 576 + 9 * 16,
700 576 + 10 * 16,
701 576 + 11 * 16,
702 576 + 12 * 16,
703 576 + 13 * 16,
704 576 + 14 * 16,
705 576 + 15 * 16 /* Upper 128bit of ... %ymm15 (128 bits each). */
706 };
707
708 #define XSAVE_AVXH_ADDR(tdep, xsave, regnum) \
709 (xsave + xsave_avxh_offset[regnum - I387_YMM0H_REGNUM (tdep)])
710
711 /* Similar to i387_supply_fxsave, but use XSAVE extended state. */
712
713 void
714 i387_supply_xsave (struct regcache *regcache, int regnum,
715 const void *xsave)
716 {
717 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
718 const gdb_byte *regs = xsave;
719 int i;
720 unsigned int clear_bv;
721 const gdb_byte *p;
722 enum
723 {
724 none = 0x0,
725 x87 = 0x1,
726 sse = 0x2,
727 avxh = 0x4,
728 all = x87 | sse | avxh
729 } regclass;
730
731 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
732 gdb_assert (tdep->num_xmm_regs > 0);
733
734 if (regnum == -1)
735 regclass = all;
736 else if (regnum >= I387_YMM0H_REGNUM (tdep)
737 && regnum < I387_YMMENDH_REGNUM (tdep))
738 regclass = avxh;
739 else if (regnum >= I387_XMM0_REGNUM(tdep)
740 && regnum < I387_MXCSR_REGNUM (tdep))
741 regclass = sse;
742 else if (regnum >= I387_ST0_REGNUM (tdep)
743 && regnum < I387_FCTRL_REGNUM (tdep))
744 regclass = x87;
745 else
746 regclass = none;
747
748 if (regs != NULL && regclass != none)
749 {
750 /* Get `xstat_bv'. */
751 const gdb_byte *xstate_bv_p = XSAVE_XSTATE_BV_ADDR (regs);
752
753 /* The supported bits in `xstat_bv' are 1 byte. Clear part in
754 vector registers if its bit in xstat_bv is zero. */
755 clear_bv = (~(*xstate_bv_p)) & tdep->xcr0;
756 }
757 else
758 clear_bv = I386_XSTATE_AVX_MASK;
759
760 switch (regclass)
761 {
762 case none:
763 break;
764
765 case avxh:
766 if ((clear_bv & I386_XSTATE_AVX))
767 p = NULL;
768 else
769 p = XSAVE_AVXH_ADDR (tdep, regs, regnum);
770 regcache_raw_supply (regcache, regnum, p);
771 return;
772
773 case sse:
774 if ((clear_bv & I386_XSTATE_SSE))
775 p = NULL;
776 else
777 p = FXSAVE_ADDR (tdep, regs, regnum);
778 regcache_raw_supply (regcache, regnum, p);
779 return;
780
781 case x87:
782 if ((clear_bv & I386_XSTATE_X87))
783 p = NULL;
784 else
785 p = FXSAVE_ADDR (tdep, regs, regnum);
786 regcache_raw_supply (regcache, regnum, p);
787 return;
788
789 case all:
790 /* Hanle the upper YMM registers. */
791 if ((tdep->xcr0 & I386_XSTATE_AVX))
792 {
793 if ((clear_bv & I386_XSTATE_AVX))
794 p = NULL;
795 else
796 p = regs;
797
798 for (i = I387_YMM0H_REGNUM (tdep);
799 i < I387_YMMENDH_REGNUM (tdep); i++)
800 {
801 if (p != NULL)
802 p = XSAVE_AVXH_ADDR (tdep, regs, i);
803 regcache_raw_supply (regcache, i, p);
804 }
805 }
806
807 /* Handle the XMM registers. */
808 if ((tdep->xcr0 & I386_XSTATE_SSE))
809 {
810 if ((clear_bv & I386_XSTATE_SSE))
811 p = NULL;
812 else
813 p = regs;
814
815 for (i = I387_XMM0_REGNUM (tdep);
816 i < I387_MXCSR_REGNUM (tdep); i++)
817 {
818 if (p != NULL)
819 p = FXSAVE_ADDR (tdep, regs, i);
820 regcache_raw_supply (regcache, i, p);
821 }
822 }
823
824 /* Handle the x87 registers. */
825 if ((tdep->xcr0 & I386_XSTATE_X87))
826 {
827 if ((clear_bv & I386_XSTATE_X87))
828 p = NULL;
829 else
830 p = regs;
831
832 for (i = I387_ST0_REGNUM (tdep);
833 i < I387_FCTRL_REGNUM (tdep); i++)
834 {
835 if (p != NULL)
836 p = FXSAVE_ADDR (tdep, regs, i);
837 regcache_raw_supply (regcache, i, p);
838 }
839 }
840 break;
841 }
842
843 /* Only handle x87 control registers. */
844 for (i = I387_FCTRL_REGNUM (tdep); i < I387_XMM0_REGNUM (tdep); i++)
845 if (regnum == -1 || regnum == i)
846 {
847 if (regs == NULL)
848 {
849 regcache_raw_supply (regcache, i, NULL);
850 continue;
851 }
852
853 /* Most of the FPU control registers occupy only 16 bits in
854 the xsave extended state. Give those a special treatment. */
855 if (i != I387_FIOFF_REGNUM (tdep)
856 && i != I387_FOOFF_REGNUM (tdep))
857 {
858 gdb_byte val[4];
859
860 memcpy (val, FXSAVE_ADDR (tdep, regs, i), 2);
861 val[2] = val[3] = 0;
862 if (i == I387_FOP_REGNUM (tdep))
863 val[1] &= ((1 << 3) - 1);
864 else if (i== I387_FTAG_REGNUM (tdep))
865 {
866 /* The fxsave area contains a simplified version of
867 the tag word. We have to look at the actual 80-bit
868 FP data to recreate the traditional i387 tag word. */
869
870 unsigned long ftag = 0;
871 int fpreg;
872 int top;
873
874 top = ((FXSAVE_ADDR (tdep, regs,
875 I387_FSTAT_REGNUM (tdep)))[1] >> 3);
876 top &= 0x7;
877
878 for (fpreg = 7; fpreg >= 0; fpreg--)
879 {
880 int tag;
881
882 if (val[0] & (1 << fpreg))
883 {
884 int regnum = (fpreg + 8 - top) % 8
885 + I387_ST0_REGNUM (tdep);
886 tag = i387_tag (FXSAVE_ADDR (tdep, regs, regnum));
887 }
888 else
889 tag = 3; /* Empty */
890
891 ftag |= tag << (2 * fpreg);
892 }
893 val[0] = ftag & 0xff;
894 val[1] = (ftag >> 8) & 0xff;
895 }
896 regcache_raw_supply (regcache, i, val);
897 }
898 else
899 regcache_raw_supply (regcache, i, FXSAVE_ADDR (tdep, regs, i));
900 }
901
902 if (regnum == I387_MXCSR_REGNUM (tdep) || regnum == -1)
903 {
904 p = regs == NULL ? NULL : FXSAVE_MXCSR_ADDR (regs);
905 regcache_raw_supply (regcache, I387_MXCSR_REGNUM (tdep), p);
906 }
907 }
908
909 /* Similar to i387_collect_fxsave, but use XSAVE extended state. */
910
911 void
912 i387_collect_xsave (const struct regcache *regcache, int regnum,
913 void *xsave, int gcore)
914 {
915 struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache));
916 gdb_byte *regs = xsave;
917 int i;
918 enum
919 {
920 none = 0x0,
921 check = 0x1,
922 x87 = 0x2 | check,
923 sse = 0x4 | check,
924 avxh = 0x8 | check,
925 all = x87 | sse | avxh
926 } regclass;
927
928 gdb_assert (tdep->st0_regnum >= I386_ST0_REGNUM);
929 gdb_assert (tdep->num_xmm_regs > 0);
930
931 if (regnum == -1)
932 regclass = all;
933 else if (regnum >= I387_YMM0H_REGNUM (tdep)
934 && regnum < I387_YMMENDH_REGNUM (tdep))
935 regclass = avxh;
936 else if (regnum >= I387_XMM0_REGNUM(tdep)
937 && regnum < I387_MXCSR_REGNUM (tdep))
938 regclass = sse;
939 else if (regnum >= I387_ST0_REGNUM (tdep)
940 && regnum < I387_FCTRL_REGNUM (tdep))
941 regclass = x87;
942 else
943 regclass = none;
944
945 if (gcore)
946 {
947 /* Clear XSAVE extended state. */
948 memset (regs, 0, I386_XSTATE_SIZE (tdep->xcr0));
949
950 /* Update XCR0 and `xstate_bv' with XCR0 for gcore. */
951 if (tdep->xsave_xcr0_offset != -1)
952 memcpy (regs + tdep->xsave_xcr0_offset, &tdep->xcr0, 8);
953 memcpy (XSAVE_XSTATE_BV_ADDR (regs), &tdep->xcr0, 8);
954 }
955
956 if ((regclass & check))
957 {
958 gdb_byte raw[I386_MAX_REGISTER_SIZE];
959 gdb_byte *xstate_bv_p = XSAVE_XSTATE_BV_ADDR (regs);
960 unsigned int xstate_bv = 0;
961 /* The supported bits in `xstat_bv' are 1 byte. */
962 unsigned int clear_bv = (~(*xstate_bv_p)) & tdep->xcr0;
963 gdb_byte *p;
964
965 /* Clear register set if its bit in xstat_bv is zero. */
966 if (clear_bv)
967 {
968 if ((clear_bv & I386_XSTATE_AVX))
969 for (i = I387_YMM0H_REGNUM (tdep);
970 i < I387_YMMENDH_REGNUM (tdep); i++)
971 memset (XSAVE_AVXH_ADDR (tdep, regs, i), 0, 16);
972
973 if ((clear_bv & I386_XSTATE_SSE))
974 for (i = I387_XMM0_REGNUM (tdep);
975 i < I387_MXCSR_REGNUM (tdep); i++)
976 memset (FXSAVE_ADDR (tdep, regs, i), 0, 16);
977
978 if ((clear_bv & I386_XSTATE_X87))
979 for (i = I387_ST0_REGNUM (tdep);
980 i < I387_FCTRL_REGNUM (tdep); i++)
981 memset (FXSAVE_ADDR (tdep, regs, i), 0, 10);
982 }
983
984 if (regclass == all)
985 {
986 /* Check if any upper YMM registers are changed. */
987 if ((tdep->xcr0 & I386_XSTATE_AVX))
988 for (i = I387_YMM0H_REGNUM (tdep);
989 i < I387_YMMENDH_REGNUM (tdep); i++)
990 {
991 regcache_raw_collect (regcache, i, raw);
992 p = XSAVE_AVXH_ADDR (tdep, regs, i);
993 if (memcmp (raw, p, 16))
994 {
995 xstate_bv |= I386_XSTATE_AVX;
996 memcpy (p, raw, 16);
997 }
998 }
999
1000 /* Check if any SSE registers are changed. */
1001 if ((tdep->xcr0 & I386_XSTATE_SSE))
1002 for (i = I387_XMM0_REGNUM (tdep);
1003 i < I387_MXCSR_REGNUM (tdep); i++)
1004 {
1005 regcache_raw_collect (regcache, i, raw);
1006 p = FXSAVE_ADDR (tdep, regs, i);
1007 if (memcmp (raw, p, 16))
1008 {
1009 xstate_bv |= I386_XSTATE_SSE;
1010 memcpy (p, raw, 16);
1011 }
1012 }
1013
1014 /* Check if any X87 registers are changed. */
1015 if ((tdep->xcr0 & I386_XSTATE_X87))
1016 for (i = I387_ST0_REGNUM (tdep);
1017 i < I387_FCTRL_REGNUM (tdep); i++)
1018 {
1019 regcache_raw_collect (regcache, i, raw);
1020 p = FXSAVE_ADDR (tdep, regs, i);
1021 if (memcmp (raw, p, 10))
1022 {
1023 xstate_bv |= I386_XSTATE_X87;
1024 memcpy (p, raw, 10);
1025 }
1026 }
1027 }
1028 else
1029 {
1030 /* Check if REGNUM is changed. */
1031 regcache_raw_collect (regcache, regnum, raw);
1032
1033 switch (regclass)
1034 {
1035 default:
1036 abort ();
1037
1038 case avxh:
1039 /* This is an upper YMM register. */
1040 p = XSAVE_AVXH_ADDR (tdep, regs, regnum);
1041 if (memcmp (raw, p, 16))
1042 {
1043 xstate_bv |= I386_XSTATE_AVX;
1044 memcpy (p, raw, 16);
1045 }
1046 break;
1047
1048 case sse:
1049 /* This is an SSE register. */
1050 p = FXSAVE_ADDR (tdep, regs, regnum);
1051 if (memcmp (raw, p, 16))
1052 {
1053 xstate_bv |= I386_XSTATE_SSE;
1054 memcpy (p, raw, 16);
1055 }
1056 break;
1057
1058 case x87:
1059 /* This is an x87 register. */
1060 p = FXSAVE_ADDR (tdep, regs, regnum);
1061 if (memcmp (raw, p, 10))
1062 {
1063 xstate_bv |= I386_XSTATE_X87;
1064 memcpy (p, raw, 10);
1065 }
1066 break;
1067 }
1068 }
1069
1070 /* Update the corresponding bits in `xstate_bv' if any SSE/AVX
1071 registers are changed. */
1072 if (xstate_bv)
1073 {
1074 /* The supported bits in `xstat_bv' are 1 byte. */
1075 *xstate_bv_p |= (gdb_byte) xstate_bv;
1076
1077 switch (regclass)
1078 {
1079 default:
1080 abort ();
1081
1082 case all:
1083 break;
1084
1085 case x87:
1086 case sse:
1087 case avxh:
1088 /* Register REGNUM has been updated. Return. */
1089 return;
1090 }
1091 }
1092 else
1093 {
1094 /* Return if REGNUM isn't changed. */
1095 if (regclass != all)
1096 return;
1097 }
1098 }
1099
1100 /* Only handle x87 control registers. */
1101 for (i = I387_FCTRL_REGNUM (tdep); i < I387_XMM0_REGNUM (tdep); i++)
1102 if (regnum == -1 || regnum == i)
1103 {
1104 /* Most of the FPU control registers occupy only 16 bits in
1105 the xsave extended state. Give those a special treatment. */
1106 if (i != I387_FIOFF_REGNUM (tdep)
1107 && i != I387_FOOFF_REGNUM (tdep))
1108 {
1109 gdb_byte buf[4];
1110
1111 regcache_raw_collect (regcache, i, buf);
1112
1113 if (i == I387_FOP_REGNUM (tdep))
1114 {
1115 /* The opcode occupies only 11 bits. Make sure we
1116 don't touch the other bits. */
1117 buf[1] &= ((1 << 3) - 1);
1118 buf[1] |= ((FXSAVE_ADDR (tdep, regs, i))[1] & ~((1 << 3) - 1));
1119 }
1120 else if (i == I387_FTAG_REGNUM (tdep))
1121 {
1122 /* Converting back is much easier. */
1123
1124 unsigned short ftag;
1125 int fpreg;
1126
1127 ftag = (buf[1] << 8) | buf[0];
1128 buf[0] = 0;
1129 buf[1] = 0;
1130
1131 for (fpreg = 7; fpreg >= 0; fpreg--)
1132 {
1133 int tag = (ftag >> (fpreg * 2)) & 3;
1134
1135 if (tag != 3)
1136 buf[0] |= (1 << fpreg);
1137 }
1138 }
1139 memcpy (FXSAVE_ADDR (tdep, regs, i), buf, 2);
1140 }
1141 else
1142 regcache_raw_collect (regcache, i, FXSAVE_ADDR (tdep, regs, i));
1143 }
1144
1145 if (regnum == I387_MXCSR_REGNUM (tdep) || regnum == -1)
1146 regcache_raw_collect (regcache, I387_MXCSR_REGNUM (tdep),
1147 FXSAVE_MXCSR_ADDR (regs));
1148 }
1149
1150 /* Recreate the FTW (tag word) valid bits from the 80-bit FP data in
1151 *RAW. */
1152
1153 static int
1154 i387_tag (const gdb_byte *raw)
1155 {
1156 int integer;
1157 unsigned int exponent;
1158 unsigned long fraction[2];
1159
1160 integer = raw[7] & 0x80;
1161 exponent = (((raw[9] & 0x7f) << 8) | raw[8]);
1162 fraction[0] = ((raw[3] << 24) | (raw[2] << 16) | (raw[1] << 8) | raw[0]);
1163 fraction[1] = (((raw[7] & 0x7f) << 24) | (raw[6] << 16)
1164 | (raw[5] << 8) | raw[4]);
1165
1166 if (exponent == 0x7fff)
1167 {
1168 /* Special. */
1169 return (2);
1170 }
1171 else if (exponent == 0x0000)
1172 {
1173 if (fraction[0] == 0x0000 && fraction[1] == 0x0000 && !integer)
1174 {
1175 /* Zero. */
1176 return (1);
1177 }
1178 else
1179 {
1180 /* Special. */
1181 return (2);
1182 }
1183 }
1184 else
1185 {
1186 if (integer)
1187 {
1188 /* Valid. */
1189 return (0);
1190 }
1191 else
1192 {
1193 /* Special. */
1194 return (2);
1195 }
1196 }
1197 }
1198
1199 /* Prepare the FPU stack in REGCACHE for a function return. */
1200
1201 void
1202 i387_return_value (struct gdbarch *gdbarch, struct regcache *regcache)
1203 {
1204 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1205 ULONGEST fstat;
1206
1207 /* Set the top of the floating-point register stack to 7. The
1208 actual value doesn't really matter, but 7 is what a normal
1209 function return would end up with if the program started out with
1210 a freshly initialized FPU. */
1211 regcache_raw_read_unsigned (regcache, I387_FSTAT_REGNUM (tdep), &fstat);
1212 fstat |= (7 << 11);
1213 regcache_raw_write_unsigned (regcache, I387_FSTAT_REGNUM (tdep), fstat);
1214
1215 /* Mark %st(1) through %st(7) as empty. Since we set the top of the
1216 floating-point register stack to 7, the appropriate value for the
1217 tag word is 0x3fff. */
1218 regcache_raw_write_unsigned (regcache, I387_FTAG_REGNUM (tdep), 0x3fff);
1219
1220 }
This page took 0.176595 seconds and 5 git commands to generate.