1 /* Target-dependent code for GDB, the GNU debugger.
3 Copyright (C) 2001-2017 Free Software Foundation, Inc.
5 Contributed by D.J. Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
6 for IBM Deutschland Entwicklung GmbH, IBM Corporation.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "arch-utils.h"
33 #include "floatformat.h"
35 #include "trad-frame.h"
36 #include "frame-base.h"
37 #include "frame-unwind.h"
38 #include "dwarf2-frame.h"
39 #include "reggroups.h"
43 #include "solib-svr4.h"
44 #include "prologue-value.h"
45 #include "linux-tdep.h"
46 #include "s390-linux-tdep.h"
47 #include "linux-record.h"
48 #include "record-full.h"
50 #include "xml-syscall.h"
52 #include "stap-probe.h"
55 #include "user-regs.h"
56 #include "cli/cli-utils.h"
58 #include "elf/common.h"
63 #include "features/s390-linux32.c"
64 #include "features/s390-linux32v1.c"
65 #include "features/s390-linux32v2.c"
66 #include "features/s390-linux64.c"
67 #include "features/s390-linux64v1.c"
68 #include "features/s390-linux64v2.c"
69 #include "features/s390-te-linux64.c"
70 #include "features/s390-vx-linux64.c"
71 #include "features/s390-tevx-linux64.c"
72 #include "features/s390x-linux64.c"
73 #include "features/s390x-linux64v1.c"
74 #include "features/s390x-linux64v2.c"
75 #include "features/s390x-te-linux64.c"
76 #include "features/s390x-vx-linux64.c"
77 #include "features/s390x-tevx-linux64.c"
79 #define XML_SYSCALL_FILENAME_S390 "syscalls/s390-linux.xml"
80 #define XML_SYSCALL_FILENAME_S390X "syscalls/s390x-linux.xml"
82 /* Holds the current set of options to be passed to the disassembler. */
83 static char *s390_disassembler_options;
91 enum s390_vector_abi_kind
97 /* The tdep structure. */
102 enum s390_abi_kind abi;
105 enum s390_vector_abi_kind vector_abi;
107 /* Pseudo register numbers. */
119 /* ABI call-saved register information. */
122 s390_register_call_saved (struct gdbarch *gdbarch, int regnum)
124 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
129 if ((regnum >= S390_R6_REGNUM && regnum <= S390_R15_REGNUM)
130 || regnum == S390_F4_REGNUM || regnum == S390_F6_REGNUM
131 || regnum == S390_A0_REGNUM)
136 case ABI_LINUX_ZSERIES:
137 if ((regnum >= S390_R6_REGNUM && regnum <= S390_R15_REGNUM)
138 || (regnum >= S390_F8_REGNUM && regnum <= S390_F15_REGNUM)
139 || (regnum >= S390_A0_REGNUM && regnum <= S390_A1_REGNUM))
149 s390_cannot_store_register (struct gdbarch *gdbarch, int regnum)
151 /* The last-break address is read-only. */
152 return regnum == S390_LAST_BREAK_REGNUM;
156 s390_write_pc (struct regcache *regcache, CORE_ADDR pc)
158 struct gdbarch *gdbarch = get_regcache_arch (regcache);
159 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
161 regcache_cooked_write_unsigned (regcache, tdep->pc_regnum, pc);
163 /* Set special SYSTEM_CALL register to 0 to prevent the kernel from
164 messing with the PC we just installed, if we happen to be within
165 an interrupted system call that the kernel wants to restart.
167 Note that after we return from the dummy call, the SYSTEM_CALL and
168 ORIG_R2 registers will be automatically restored, and the kernel
169 continues to restart the system call at this point. */
170 if (register_size (gdbarch, S390_SYSTEM_CALL_REGNUM) > 0)
171 regcache_cooked_write_unsigned (regcache, S390_SYSTEM_CALL_REGNUM, 0);
174 /* The "guess_tracepoint_registers" gdbarch method. */
177 s390_guess_tracepoint_registers (struct gdbarch *gdbarch,
178 struct regcache *regcache,
181 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
182 int sz = register_size (gdbarch, S390_PSWA_REGNUM);
183 gdb_byte *reg = (gdb_byte *) alloca (sz);
186 /* Set PSWA from the location and a default PSWM (the only part we're
187 unlikely to get right is the CC). */
188 if (tdep->abi == ABI_LINUX_S390)
190 /* 31-bit PSWA needs high bit set (it's very unlikely the target
191 was in 24-bit mode). */
192 pswa = addr | 0x80000000UL;
198 pswm = 0x0705000180000000ULL;
201 store_unsigned_integer (reg, sz, gdbarch_byte_order (gdbarch), pswa);
202 regcache_raw_supply (regcache, S390_PSWA_REGNUM, reg);
204 store_unsigned_integer (reg, sz, gdbarch_byte_order (gdbarch), pswm);
205 regcache_raw_supply (regcache, S390_PSWM_REGNUM, reg);
209 /* DWARF Register Mapping. */
211 static const short s390_dwarf_regmap[] =
213 /* 0-15: General Purpose Registers. */
214 S390_R0_REGNUM, S390_R1_REGNUM, S390_R2_REGNUM, S390_R3_REGNUM,
215 S390_R4_REGNUM, S390_R5_REGNUM, S390_R6_REGNUM, S390_R7_REGNUM,
216 S390_R8_REGNUM, S390_R9_REGNUM, S390_R10_REGNUM, S390_R11_REGNUM,
217 S390_R12_REGNUM, S390_R13_REGNUM, S390_R14_REGNUM, S390_R15_REGNUM,
219 /* 16-31: Floating Point Registers / Vector Registers 0-15. */
220 S390_F0_REGNUM, S390_F2_REGNUM, S390_F4_REGNUM, S390_F6_REGNUM,
221 S390_F1_REGNUM, S390_F3_REGNUM, S390_F5_REGNUM, S390_F7_REGNUM,
222 S390_F8_REGNUM, S390_F10_REGNUM, S390_F12_REGNUM, S390_F14_REGNUM,
223 S390_F9_REGNUM, S390_F11_REGNUM, S390_F13_REGNUM, S390_F15_REGNUM,
225 /* 32-47: Control Registers (not mapped). */
226 -1, -1, -1, -1, -1, -1, -1, -1,
227 -1, -1, -1, -1, -1, -1, -1, -1,
229 /* 48-63: Access Registers. */
230 S390_A0_REGNUM, S390_A1_REGNUM, S390_A2_REGNUM, S390_A3_REGNUM,
231 S390_A4_REGNUM, S390_A5_REGNUM, S390_A6_REGNUM, S390_A7_REGNUM,
232 S390_A8_REGNUM, S390_A9_REGNUM, S390_A10_REGNUM, S390_A11_REGNUM,
233 S390_A12_REGNUM, S390_A13_REGNUM, S390_A14_REGNUM, S390_A15_REGNUM,
235 /* 64-65: Program Status Word. */
239 /* 66-67: Reserved. */
242 /* 68-83: Vector Registers 16-31. */
243 S390_V16_REGNUM, S390_V18_REGNUM, S390_V20_REGNUM, S390_V22_REGNUM,
244 S390_V17_REGNUM, S390_V19_REGNUM, S390_V21_REGNUM, S390_V23_REGNUM,
245 S390_V24_REGNUM, S390_V26_REGNUM, S390_V28_REGNUM, S390_V30_REGNUM,
246 S390_V25_REGNUM, S390_V27_REGNUM, S390_V29_REGNUM, S390_V31_REGNUM,
248 /* End of "official" DWARF registers. The remainder of the map is
249 for GDB internal use only. */
251 /* GPR Lower Half Access. */
252 S390_R0_REGNUM, S390_R1_REGNUM, S390_R2_REGNUM, S390_R3_REGNUM,
253 S390_R4_REGNUM, S390_R5_REGNUM, S390_R6_REGNUM, S390_R7_REGNUM,
254 S390_R8_REGNUM, S390_R9_REGNUM, S390_R10_REGNUM, S390_R11_REGNUM,
255 S390_R12_REGNUM, S390_R13_REGNUM, S390_R14_REGNUM, S390_R15_REGNUM,
258 enum { s390_dwarf_reg_r0l = ARRAY_SIZE (s390_dwarf_regmap) - 16 };
260 /* Convert DWARF register number REG to the appropriate register
261 number used by GDB. */
263 s390_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
265 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
268 /* In a 32-on-64 debug scenario, debug info refers to the full
269 64-bit GPRs. Note that call frame information still refers to
270 the 32-bit lower halves, because s390_adjust_frame_regnum uses
271 special register numbers to access GPRs. */
272 if (tdep->gpr_full_regnum != -1 && reg >= 0 && reg < 16)
273 return tdep->gpr_full_regnum + reg;
275 if (reg >= 0 && reg < ARRAY_SIZE (s390_dwarf_regmap))
276 gdb_reg = s390_dwarf_regmap[reg];
278 if (tdep->v0_full_regnum == -1)
280 if (gdb_reg >= S390_V16_REGNUM && gdb_reg <= S390_V31_REGNUM)
285 if (gdb_reg >= S390_F0_REGNUM && gdb_reg <= S390_F15_REGNUM)
286 gdb_reg = gdb_reg - S390_F0_REGNUM + tdep->v0_full_regnum;
292 /* Translate a .eh_frame register to DWARF register, or adjust a
293 .debug_frame register. */
295 s390_adjust_frame_regnum (struct gdbarch *gdbarch, int num, int eh_frame_p)
297 /* See s390_dwarf_reg_to_regnum for comments. */
298 return (num >= 0 && num < 16) ? num + s390_dwarf_reg_r0l : num;
302 /* Pseudo registers. */
305 regnum_is_gpr_full (struct gdbarch_tdep *tdep, int regnum)
307 return (tdep->gpr_full_regnum != -1
308 && regnum >= tdep->gpr_full_regnum
309 && regnum <= tdep->gpr_full_regnum + 15);
312 /* Check whether REGNUM indicates a full vector register (v0-v15).
313 These pseudo-registers are composed of f0-f15 and v0l-v15l. */
316 regnum_is_vxr_full (struct gdbarch_tdep *tdep, int regnum)
318 return (tdep->v0_full_regnum != -1
319 && regnum >= tdep->v0_full_regnum
320 && regnum <= tdep->v0_full_regnum + 15);
323 /* Return the name of register REGNO. Return the empty string for
324 registers that shouldn't be visible. */
327 s390_register_name (struct gdbarch *gdbarch, int regnum)
329 if (regnum >= S390_V0_LOWER_REGNUM
330 && regnum <= S390_V15_LOWER_REGNUM)
332 return tdesc_register_name (gdbarch, regnum);
336 s390_pseudo_register_name (struct gdbarch *gdbarch, int regnum)
338 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
340 if (regnum == tdep->pc_regnum)
343 if (regnum == tdep->cc_regnum)
346 if (regnum_is_gpr_full (tdep, regnum))
348 static const char *full_name[] = {
349 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
350 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
352 return full_name[regnum - tdep->gpr_full_regnum];
355 if (regnum_is_vxr_full (tdep, regnum))
357 static const char *full_name[] = {
358 "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7",
359 "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15"
361 return full_name[regnum - tdep->v0_full_regnum];
364 internal_error (__FILE__, __LINE__, _("invalid regnum"));
368 s390_pseudo_register_type (struct gdbarch *gdbarch, int regnum)
370 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
372 if (regnum == tdep->pc_regnum)
373 return builtin_type (gdbarch)->builtin_func_ptr;
375 if (regnum == tdep->cc_regnum)
376 return builtin_type (gdbarch)->builtin_int;
378 if (regnum_is_gpr_full (tdep, regnum))
379 return builtin_type (gdbarch)->builtin_uint64;
381 if (regnum_is_vxr_full (tdep, regnum))
382 return tdesc_find_type (gdbarch, "vec128");
384 internal_error (__FILE__, __LINE__, _("invalid regnum"));
387 static enum register_status
388 s390_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
389 int regnum, gdb_byte *buf)
391 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
392 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
393 int regsize = register_size (gdbarch, regnum);
396 if (regnum == tdep->pc_regnum)
398 enum register_status status;
400 status = regcache_raw_read_unsigned (regcache, S390_PSWA_REGNUM, &val);
401 if (status == REG_VALID)
403 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
405 store_unsigned_integer (buf, regsize, byte_order, val);
410 if (regnum == tdep->cc_regnum)
412 enum register_status status;
414 status = regcache_raw_read_unsigned (regcache, S390_PSWM_REGNUM, &val);
415 if (status == REG_VALID)
417 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
418 val = (val >> 12) & 3;
420 val = (val >> 44) & 3;
421 store_unsigned_integer (buf, regsize, byte_order, val);
426 if (regnum_is_gpr_full (tdep, regnum))
428 enum register_status status;
431 regnum -= tdep->gpr_full_regnum;
433 status = regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + regnum, &val);
434 if (status == REG_VALID)
435 status = regcache_raw_read_unsigned (regcache, S390_R0_UPPER_REGNUM + regnum,
437 if (status == REG_VALID)
439 val |= val_upper << 32;
440 store_unsigned_integer (buf, regsize, byte_order, val);
445 if (regnum_is_vxr_full (tdep, regnum))
447 enum register_status status;
449 regnum -= tdep->v0_full_regnum;
451 status = regcache_raw_read (regcache, S390_F0_REGNUM + regnum, buf);
452 if (status == REG_VALID)
453 status = regcache_raw_read (regcache,
454 S390_V0_LOWER_REGNUM + regnum, buf + 8);
458 internal_error (__FILE__, __LINE__, _("invalid regnum"));
462 s390_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
463 int regnum, const gdb_byte *buf)
465 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
466 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
467 int regsize = register_size (gdbarch, regnum);
470 if (regnum == tdep->pc_regnum)
472 val = extract_unsigned_integer (buf, regsize, byte_order);
473 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
475 regcache_raw_read_unsigned (regcache, S390_PSWA_REGNUM, &psw);
476 val = (psw & 0x80000000) | (val & 0x7fffffff);
478 regcache_raw_write_unsigned (regcache, S390_PSWA_REGNUM, val);
482 if (regnum == tdep->cc_regnum)
484 val = extract_unsigned_integer (buf, regsize, byte_order);
485 regcache_raw_read_unsigned (regcache, S390_PSWM_REGNUM, &psw);
486 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
487 val = (psw & ~((ULONGEST)3 << 12)) | ((val & 3) << 12);
489 val = (psw & ~((ULONGEST)3 << 44)) | ((val & 3) << 44);
490 regcache_raw_write_unsigned (regcache, S390_PSWM_REGNUM, val);
494 if (regnum_is_gpr_full (tdep, regnum))
496 regnum -= tdep->gpr_full_regnum;
497 val = extract_unsigned_integer (buf, regsize, byte_order);
498 regcache_raw_write_unsigned (regcache, S390_R0_REGNUM + regnum,
500 regcache_raw_write_unsigned (regcache, S390_R0_UPPER_REGNUM + regnum,
505 if (regnum_is_vxr_full (tdep, regnum))
507 regnum -= tdep->v0_full_regnum;
508 regcache_raw_write (regcache, S390_F0_REGNUM + regnum, buf);
509 regcache_raw_write (regcache, S390_V0_LOWER_REGNUM + regnum, buf + 8);
513 internal_error (__FILE__, __LINE__, _("invalid regnum"));
516 /* 'float' values are stored in the upper half of floating-point
517 registers, even though we are otherwise a big-endian platform. The
518 same applies to a 'float' value within a vector. */
520 static struct value *
521 s390_value_from_register (struct gdbarch *gdbarch, struct type *type,
522 int regnum, struct frame_id frame_id)
524 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
525 struct value *value = default_value_from_register (gdbarch, type,
527 check_typedef (type);
529 if ((regnum >= S390_F0_REGNUM && regnum <= S390_F15_REGNUM
530 && TYPE_LENGTH (type) < 8)
531 || regnum_is_vxr_full (tdep, regnum)
532 || (regnum >= S390_V16_REGNUM && regnum <= S390_V31_REGNUM))
533 set_value_offset (value, 0);
538 /* Register groups. */
541 s390_pseudo_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
542 struct reggroup *group)
544 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
546 /* We usually save/restore the whole PSW, which includes PC and CC.
547 However, some older gdbservers may not support saving/restoring
548 the whole PSW yet, and will return an XML register description
549 excluding those from the save/restore register groups. In those
550 cases, we still need to explicitly save/restore PC and CC in order
551 to push or pop frames. Since this doesn't hurt anything if we
552 already save/restore the whole PSW (it's just redundant), we add
553 PC and CC at this point unconditionally. */
554 if (group == save_reggroup || group == restore_reggroup)
555 return regnum == tdep->pc_regnum || regnum == tdep->cc_regnum;
557 if (group == vector_reggroup)
558 return regnum_is_vxr_full (tdep, regnum);
560 if (group == general_reggroup && regnum_is_vxr_full (tdep, regnum))
563 return default_register_reggroup_p (gdbarch, regnum, group);
566 /* The "ax_pseudo_register_collect" gdbarch method. */
569 s390_ax_pseudo_register_collect (struct gdbarch *gdbarch,
570 struct agent_expr *ax, int regnum)
572 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
573 if (regnum == tdep->pc_regnum)
575 ax_reg_mask (ax, S390_PSWA_REGNUM);
577 else if (regnum == tdep->cc_regnum)
579 ax_reg_mask (ax, S390_PSWM_REGNUM);
581 else if (regnum_is_gpr_full (tdep, regnum))
583 regnum -= tdep->gpr_full_regnum;
584 ax_reg_mask (ax, S390_R0_REGNUM + regnum);
585 ax_reg_mask (ax, S390_R0_UPPER_REGNUM + regnum);
587 else if (regnum_is_vxr_full (tdep, regnum))
589 regnum -= tdep->v0_full_regnum;
590 ax_reg_mask (ax, S390_F0_REGNUM + regnum);
591 ax_reg_mask (ax, S390_V0_LOWER_REGNUM + regnum);
595 internal_error (__FILE__, __LINE__, _("invalid regnum"));
600 /* The "ax_pseudo_register_push_stack" gdbarch method. */
603 s390_ax_pseudo_register_push_stack (struct gdbarch *gdbarch,
604 struct agent_expr *ax, int regnum)
606 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
607 if (regnum == tdep->pc_regnum)
609 ax_reg (ax, S390_PSWA_REGNUM);
610 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
612 ax_zero_ext (ax, 31);
615 else if (regnum == tdep->cc_regnum)
617 ax_reg (ax, S390_PSWM_REGNUM);
618 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
622 ax_simple (ax, aop_rsh_unsigned);
625 else if (regnum_is_gpr_full (tdep, regnum))
627 regnum -= tdep->gpr_full_regnum;
628 ax_reg (ax, S390_R0_REGNUM + regnum);
629 ax_reg (ax, S390_R0_UPPER_REGNUM + regnum);
631 ax_simple (ax, aop_lsh);
632 ax_simple (ax, aop_bit_or);
634 else if (regnum_is_vxr_full (tdep, regnum))
636 /* Too large to stuff on the stack. */
641 internal_error (__FILE__, __LINE__, _("invalid regnum"));
646 /* The "gen_return_address" gdbarch method. Since this is supposed to be
647 just a best-effort method, and we don't really have the means to run
648 the full unwinder here, just collect the link register. */
651 s390_gen_return_address (struct gdbarch *gdbarch,
652 struct agent_expr *ax, struct axs_value *value,
655 value->type = register_type (gdbarch, S390_R14_REGNUM);
656 value->kind = axs_lvalue_register;
657 value->u.reg = S390_R14_REGNUM;
661 /* A helper for s390_software_single_step, decides if an instruction
662 is a partial-execution instruction that needs to be executed until
663 completion when in record mode. If it is, returns 1 and writes
664 instruction length to a pointer. */
667 s390_is_partial_instruction (struct gdbarch *gdbarch, CORE_ADDR loc, int *len)
669 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
672 insn = read_memory_integer (loc, 2, byte_order);
676 case 0xa8: /* MVCLE */
682 insn = read_memory_integer (loc + 4, 2, byte_order);
683 if ((insn & 0xff) == 0x8e)
695 case 0xb255: /* MVST */
696 case 0xb263: /* CMPSC */
697 case 0xb2a5: /* TRE */
698 case 0xb2a6: /* CU21 */
699 case 0xb2a7: /* CU12 */
700 case 0xb9b0: /* CU14 */
701 case 0xb9b1: /* CU24 */
702 case 0xb9b2: /* CU41 */
703 case 0xb9b3: /* CU42 */
704 case 0xb92a: /* KMF */
705 case 0xb92b: /* KMO */
706 case 0xb92f: /* KMC */
707 case 0xb92d: /* KMCTR */
708 case 0xb92e: /* KM */
709 case 0xb93c: /* PPNO */
710 case 0xb990: /* TRTT */
711 case 0xb991: /* TRTO */
712 case 0xb992: /* TROT */
713 case 0xb993: /* TROO */
721 /* Implement the "software_single_step" gdbarch method, needed to single step
722 through instructions like MVCLE in record mode, to make sure they are
723 executed to completion. Without that, record will save the full length
724 of destination buffer on every iteration, even though the CPU will only
725 process about 4kiB of it each time, leading to O(n**2) memory and time
728 static VEC (CORE_ADDR) *
729 s390_software_single_step (struct regcache *regcache)
731 struct gdbarch *gdbarch = get_regcache_arch (regcache);
732 CORE_ADDR loc = regcache_read_pc (regcache);
733 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
736 VEC (CORE_ADDR) *next_pcs = NULL;
738 /* Special handling only if recording. */
739 if (!record_full_is_used ())
742 /* First, match a partial instruction. */
743 if (!s390_is_partial_instruction (gdbarch, loc, &len))
748 /* Second, look for a branch back to it. */
749 insn = read_memory_integer (loc, 2, byte_order);
750 if (insn != 0xa714) /* BRC with mask 1 */
753 insn = read_memory_integer (loc + 2, 2, byte_order);
754 if (insn != (uint16_t) -(len / 2))
759 /* Found it, step past the whole thing. */
760 VEC_safe_push (CORE_ADDR, next_pcs, loc);
766 s390_displaced_step_hw_singlestep (struct gdbarch *gdbarch,
767 struct displaced_step_closure *closure)
773 /* Maps for register sets. */
775 static const struct regcache_map_entry s390_gregmap[] =
777 { 1, S390_PSWM_REGNUM },
778 { 1, S390_PSWA_REGNUM },
779 { 16, S390_R0_REGNUM },
780 { 16, S390_A0_REGNUM },
781 { 1, S390_ORIG_R2_REGNUM },
785 static const struct regcache_map_entry s390_fpregmap[] =
787 { 1, S390_FPC_REGNUM, 8 },
788 { 16, S390_F0_REGNUM, 8 },
792 static const struct regcache_map_entry s390_regmap_upper[] =
794 { 16, S390_R0_UPPER_REGNUM, 4 },
798 static const struct regcache_map_entry s390_regmap_last_break[] =
800 { 1, REGCACHE_MAP_SKIP, 4 },
801 { 1, S390_LAST_BREAK_REGNUM, 4 },
805 static const struct regcache_map_entry s390x_regmap_last_break[] =
807 { 1, S390_LAST_BREAK_REGNUM, 8 },
811 static const struct regcache_map_entry s390_regmap_system_call[] =
813 { 1, S390_SYSTEM_CALL_REGNUM, 4 },
817 static const struct regcache_map_entry s390_regmap_tdb[] =
819 { 1, S390_TDB_DWORD0_REGNUM, 8 },
820 { 1, S390_TDB_ABORT_CODE_REGNUM, 8 },
821 { 1, S390_TDB_CONFLICT_TOKEN_REGNUM, 8 },
822 { 1, S390_TDB_ATIA_REGNUM, 8 },
823 { 12, REGCACHE_MAP_SKIP, 8 },
824 { 16, S390_TDB_R0_REGNUM, 8 },
828 static const struct regcache_map_entry s390_regmap_vxrs_low[] =
830 { 16, S390_V0_LOWER_REGNUM, 8 },
834 static const struct regcache_map_entry s390_regmap_vxrs_high[] =
836 { 16, S390_V16_REGNUM, 16 },
841 /* Supply the TDB regset. Like regcache_supply_regset, but invalidate
842 the TDB registers unless the TDB format field is valid. */
845 s390_supply_tdb_regset (const struct regset *regset, struct regcache *regcache,
846 int regnum, const void *regs, size_t len)
849 enum register_status ret;
851 regcache_supply_regset (regset, regcache, regnum, regs, len);
852 ret = regcache_cooked_read_unsigned (regcache, S390_TDB_DWORD0_REGNUM, &tdw);
853 if (ret != REG_VALID || (tdw >> 56) != 1)
854 regcache_supply_regset (regset, regcache, regnum, NULL, len);
857 const struct regset s390_gregset = {
859 regcache_supply_regset,
860 regcache_collect_regset
863 const struct regset s390_fpregset = {
865 regcache_supply_regset,
866 regcache_collect_regset
869 static const struct regset s390_upper_regset = {
871 regcache_supply_regset,
872 regcache_collect_regset
875 const struct regset s390_last_break_regset = {
876 s390_regmap_last_break,
877 regcache_supply_regset,
878 regcache_collect_regset
881 const struct regset s390x_last_break_regset = {
882 s390x_regmap_last_break,
883 regcache_supply_regset,
884 regcache_collect_regset
887 const struct regset s390_system_call_regset = {
888 s390_regmap_system_call,
889 regcache_supply_regset,
890 regcache_collect_regset
893 const struct regset s390_tdb_regset = {
895 s390_supply_tdb_regset,
896 regcache_collect_regset
899 const struct regset s390_vxrs_low_regset = {
900 s390_regmap_vxrs_low,
901 regcache_supply_regset,
902 regcache_collect_regset
905 const struct regset s390_vxrs_high_regset = {
906 s390_regmap_vxrs_high,
907 regcache_supply_regset,
908 regcache_collect_regset
911 /* Iterate over supported core file register note sections. */
914 s390_iterate_over_regset_sections (struct gdbarch *gdbarch,
915 iterate_over_regset_sections_cb *cb,
917 const struct regcache *regcache)
919 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
920 const int gregset_size = (tdep->abi == ABI_LINUX_S390 ?
921 s390_sizeof_gregset : s390x_sizeof_gregset);
923 cb (".reg", gregset_size, &s390_gregset, NULL, cb_data);
924 cb (".reg2", s390_sizeof_fpregset, &s390_fpregset, NULL, cb_data);
926 if (tdep->abi == ABI_LINUX_S390 && tdep->gpr_full_regnum != -1)
927 cb (".reg-s390-high-gprs", 16 * 4, &s390_upper_regset,
928 "s390 GPR upper halves", cb_data);
930 if (tdep->have_linux_v1)
931 cb (".reg-s390-last-break", 8,
932 (gdbarch_ptr_bit (gdbarch) == 32
933 ? &s390_last_break_regset : &s390x_last_break_regset),
934 "s390 last-break address", cb_data);
936 if (tdep->have_linux_v2)
937 cb (".reg-s390-system-call", 4, &s390_system_call_regset,
938 "s390 system-call", cb_data);
940 /* If regcache is set, we are in "write" (gcore) mode. In this
941 case, don't iterate over the TDB unless its registers are
945 || REG_VALID == regcache_register_status (regcache,
946 S390_TDB_DWORD0_REGNUM)))
947 cb (".reg-s390-tdb", s390_sizeof_tdbregset, &s390_tdb_regset,
948 "s390 TDB", cb_data);
950 if (tdep->v0_full_regnum != -1)
952 cb (".reg-s390-vxrs-low", 16 * 8, &s390_vxrs_low_regset,
953 "s390 vector registers 0-15 lower half", cb_data);
954 cb (".reg-s390-vxrs-high", 16 * 16, &s390_vxrs_high_regset,
955 "s390 vector registers 16-31", cb_data);
959 static const struct target_desc *
960 s390_core_read_description (struct gdbarch *gdbarch,
961 struct target_ops *target, bfd *abfd)
963 asection *section = bfd_get_section_by_name (abfd, ".reg");
965 int high_gprs, v1, v2, te, vx;
967 target_auxv_search (target, AT_HWCAP, &hwcap);
971 high_gprs = (bfd_get_section_by_name (abfd, ".reg-s390-high-gprs")
973 v1 = (bfd_get_section_by_name (abfd, ".reg-s390-last-break") != NULL);
974 v2 = (bfd_get_section_by_name (abfd, ".reg-s390-system-call") != NULL);
975 vx = (hwcap & HWCAP_S390_VX);
976 te = (hwcap & HWCAP_S390_TE);
978 switch (bfd_section_size (abfd, section))
980 case s390_sizeof_gregset:
982 return (te && vx ? tdesc_s390_tevx_linux64 :
983 vx ? tdesc_s390_vx_linux64 :
984 te ? tdesc_s390_te_linux64 :
985 v2 ? tdesc_s390_linux64v2 :
986 v1 ? tdesc_s390_linux64v1 : tdesc_s390_linux64);
988 return (v2 ? tdesc_s390_linux32v2 :
989 v1 ? tdesc_s390_linux32v1 : tdesc_s390_linux32);
991 case s390x_sizeof_gregset:
992 return (te && vx ? tdesc_s390x_tevx_linux64 :
993 vx ? tdesc_s390x_vx_linux64 :
994 te ? tdesc_s390x_te_linux64 :
995 v2 ? tdesc_s390x_linux64v2 :
996 v1 ? tdesc_s390x_linux64v1 : tdesc_s390x_linux64);
1004 /* Decoding S/390 instructions. */
1006 /* Named opcode values for the S/390 instructions we recognize. Some
1007 instructions have their opcode split across two fields; those are the
1008 op1_* and op2_* enums. */
1011 op1_lhi = 0xa7, op2_lhi = 0x08,
1012 op1_lghi = 0xa7, op2_lghi = 0x09,
1013 op1_lgfi = 0xc0, op2_lgfi = 0x01,
1017 op1_ly = 0xe3, op2_ly = 0x58,
1018 op1_lg = 0xe3, op2_lg = 0x04,
1020 op1_lmy = 0xeb, op2_lmy = 0x98,
1021 op1_lmg = 0xeb, op2_lmg = 0x04,
1023 op1_sty = 0xe3, op2_sty = 0x50,
1024 op1_stg = 0xe3, op2_stg = 0x24,
1027 op1_stmy = 0xeb, op2_stmy = 0x90,
1028 op1_stmg = 0xeb, op2_stmg = 0x24,
1029 op1_aghi = 0xa7, op2_aghi = 0x0b,
1030 op1_ahi = 0xa7, op2_ahi = 0x0a,
1031 op1_agfi = 0xc2, op2_agfi = 0x08,
1032 op1_afi = 0xc2, op2_afi = 0x09,
1033 op1_algfi= 0xc2, op2_algfi= 0x0a,
1034 op1_alfi = 0xc2, op2_alfi = 0x0b,
1038 op1_ay = 0xe3, op2_ay = 0x5a,
1039 op1_ag = 0xe3, op2_ag = 0x08,
1040 op1_slgfi= 0xc2, op2_slgfi= 0x04,
1041 op1_slfi = 0xc2, op2_slfi = 0x05,
1045 op1_sy = 0xe3, op2_sy = 0x5b,
1046 op1_sg = 0xe3, op2_sg = 0x09,
1050 op1_lay = 0xe3, op2_lay = 0x71,
1051 op1_larl = 0xc0, op2_larl = 0x00,
1059 op1_bctg = 0xe3, op2_bctg = 0x46,
1061 op1_bxhg = 0xeb, op2_bxhg = 0x44,
1063 op1_bxleg= 0xeb, op2_bxleg= 0x45,
1064 op1_bras = 0xa7, op2_bras = 0x05,
1065 op1_brasl= 0xc0, op2_brasl= 0x05,
1066 op1_brc = 0xa7, op2_brc = 0x04,
1067 op1_brcl = 0xc0, op2_brcl = 0x04,
1068 op1_brct = 0xa7, op2_brct = 0x06,
1069 op1_brctg= 0xa7, op2_brctg= 0x07,
1071 op1_brxhg= 0xec, op2_brxhg= 0x44,
1073 op1_brxlg= 0xec, op2_brxlg= 0x45,
1078 /* Read a single instruction from address AT. */
1080 #define S390_MAX_INSTR_SIZE 6
1082 s390_readinstruction (bfd_byte instr[], CORE_ADDR at)
1084 static int s390_instrlen[] = { 2, 4, 4, 6 };
1087 if (target_read_memory (at, &instr[0], 2))
1089 instrlen = s390_instrlen[instr[0] >> 6];
1092 if (target_read_memory (at + 2, &instr[2], instrlen - 2))
1099 /* The functions below are for recognizing and decoding S/390
1100 instructions of various formats. Each of them checks whether INSN
1101 is an instruction of the given format, with the specified opcodes.
1102 If it is, it sets the remaining arguments to the values of the
1103 instruction's fields, and returns a non-zero value; otherwise, it
1106 These functions' arguments appear in the order they appear in the
1107 instruction, not in the machine-language form. So, opcodes always
1108 come first, even though they're sometimes scattered around the
1109 instructions. And displacements appear before base and extension
1110 registers, as they do in the assembly syntax, not at the end, as
1111 they do in the machine language. */
1113 is_ri (bfd_byte *insn, int op1, int op2, unsigned int *r1, int *i2)
1115 if (insn[0] == op1 && (insn[1] & 0xf) == op2)
1117 *r1 = (insn[1] >> 4) & 0xf;
1118 /* i2 is a 16-bit signed quantity. */
1119 *i2 = (((insn[2] << 8) | insn[3]) ^ 0x8000) - 0x8000;
1128 is_ril (bfd_byte *insn, int op1, int op2,
1129 unsigned int *r1, int *i2)
1131 if (insn[0] == op1 && (insn[1] & 0xf) == op2)
1133 *r1 = (insn[1] >> 4) & 0xf;
1134 /* i2 is a signed quantity. If the host 'int' is 32 bits long,
1135 no sign extension is necessary, but we don't want to assume
1137 *i2 = (((insn[2] << 24)
1140 | (insn[5])) ^ 0x80000000) - 0x80000000;
1149 is_rr (bfd_byte *insn, int op, unsigned int *r1, unsigned int *r2)
1153 *r1 = (insn[1] >> 4) & 0xf;
1154 *r2 = insn[1] & 0xf;
1163 is_rre (bfd_byte *insn, int op, unsigned int *r1, unsigned int *r2)
1165 if (((insn[0] << 8) | insn[1]) == op)
1167 /* Yes, insn[3]. insn[2] is unused in RRE format. */
1168 *r1 = (insn[3] >> 4) & 0xf;
1169 *r2 = insn[3] & 0xf;
1178 is_rs (bfd_byte *insn, int op,
1179 unsigned int *r1, unsigned int *r3, int *d2, unsigned int *b2)
1183 *r1 = (insn[1] >> 4) & 0xf;
1184 *r3 = insn[1] & 0xf;
1185 *b2 = (insn[2] >> 4) & 0xf;
1186 *d2 = ((insn[2] & 0xf) << 8) | insn[3];
1195 is_rsy (bfd_byte *insn, int op1, int op2,
1196 unsigned int *r1, unsigned int *r3, int *d2, unsigned int *b2)
1201 *r1 = (insn[1] >> 4) & 0xf;
1202 *r3 = insn[1] & 0xf;
1203 *b2 = (insn[2] >> 4) & 0xf;
1204 /* The 'long displacement' is a 20-bit signed integer. */
1205 *d2 = ((((insn[2] & 0xf) << 8) | insn[3] | (insn[4] << 12))
1206 ^ 0x80000) - 0x80000;
1215 is_rx (bfd_byte *insn, int op,
1216 unsigned int *r1, int *d2, unsigned int *x2, unsigned int *b2)
1220 *r1 = (insn[1] >> 4) & 0xf;
1221 *x2 = insn[1] & 0xf;
1222 *b2 = (insn[2] >> 4) & 0xf;
1223 *d2 = ((insn[2] & 0xf) << 8) | insn[3];
1232 is_rxy (bfd_byte *insn, int op1, int op2,
1233 unsigned int *r1, int *d2, unsigned int *x2, unsigned int *b2)
1238 *r1 = (insn[1] >> 4) & 0xf;
1239 *x2 = insn[1] & 0xf;
1240 *b2 = (insn[2] >> 4) & 0xf;
1241 /* The 'long displacement' is a 20-bit signed integer. */
1242 *d2 = ((((insn[2] & 0xf) << 8) | insn[3] | (insn[4] << 12))
1243 ^ 0x80000) - 0x80000;
1251 /* Prologue analysis. */
1253 #define S390_NUM_GPRS 16
1254 #define S390_NUM_FPRS 16
1256 struct s390_prologue_data {
1259 struct pv_area *stack;
1261 /* The size and byte-order of a GPR or FPR. */
1264 enum bfd_endian byte_order;
1266 /* The general-purpose registers. */
1267 pv_t gpr[S390_NUM_GPRS];
1269 /* The floating-point registers. */
1270 pv_t fpr[S390_NUM_FPRS];
1272 /* The offset relative to the CFA where the incoming GPR N was saved
1273 by the function prologue. 0 if not saved or unknown. */
1274 int gpr_slot[S390_NUM_GPRS];
1276 /* Likewise for FPRs. */
1277 int fpr_slot[S390_NUM_FPRS];
1279 /* Nonzero if the backchain was saved. This is assumed to be the
1280 case when the incoming SP is saved at the current SP location. */
1281 int back_chain_saved_p;
1284 /* Return the effective address for an X-style instruction, like:
1288 Here, X2 and B2 are registers, and D2 is a signed 20-bit
1289 constant; the effective address is the sum of all three. If either
1290 X2 or B2 are zero, then it doesn't contribute to the sum --- this
1291 means that r0 can't be used as either X2 or B2. */
1293 s390_addr (struct s390_prologue_data *data,
1294 int d2, unsigned int x2, unsigned int b2)
1298 result = pv_constant (d2);
1300 result = pv_add (result, data->gpr[x2]);
1302 result = pv_add (result, data->gpr[b2]);
1307 /* Do a SIZE-byte store of VALUE to D2(X2,B2). */
1309 s390_store (struct s390_prologue_data *data,
1310 int d2, unsigned int x2, unsigned int b2, CORE_ADDR size,
1313 pv_t addr = s390_addr (data, d2, x2, b2);
1316 /* Check whether we are storing the backchain. */
1317 offset = pv_subtract (data->gpr[S390_SP_REGNUM - S390_R0_REGNUM], addr);
1319 if (pv_is_constant (offset) && offset.k == 0)
1320 if (size == data->gpr_size
1321 && pv_is_register_k (value, S390_SP_REGNUM, 0))
1323 data->back_chain_saved_p = 1;
1328 /* Check whether we are storing a register into the stack. */
1329 if (!pv_area_store_would_trash (data->stack, addr))
1330 pv_area_store (data->stack, addr, size, value);
1333 /* Note: If this is some store we cannot identify, you might think we
1334 should forget our cached values, as any of those might have been hit.
1336 However, we make the assumption that the register save areas are only
1337 ever stored to once in any given function, and we do recognize these
1338 stores. Thus every store we cannot recognize does not hit our data. */
1341 /* Do a SIZE-byte load from D2(X2,B2). */
1343 s390_load (struct s390_prologue_data *data,
1344 int d2, unsigned int x2, unsigned int b2, CORE_ADDR size)
1347 pv_t addr = s390_addr (data, d2, x2, b2);
1349 /* If it's a load from an in-line constant pool, then we can
1350 simulate that, under the assumption that the code isn't
1351 going to change between the time the processor actually
1352 executed it creating the current frame, and the time when
1353 we're analyzing the code to unwind past that frame. */
1354 if (pv_is_constant (addr))
1356 struct target_section *secp;
1357 secp = target_section_by_addr (¤t_target, addr.k);
1359 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1360 secp->the_bfd_section)
1362 return pv_constant (read_memory_integer (addr.k, size,
1366 /* Check whether we are accessing one of our save slots. */
1367 return pv_area_fetch (data->stack, addr, size);
1370 /* Function for finding saved registers in a 'struct pv_area'; we pass
1371 this to pv_area_scan.
1373 If VALUE is a saved register, ADDR says it was saved at a constant
1374 offset from the frame base, and SIZE indicates that the whole
1375 register was saved, record its offset in the reg_offset table in
1376 PROLOGUE_UNTYPED. */
1378 s390_check_for_saved (void *data_untyped, pv_t addr,
1379 CORE_ADDR size, pv_t value)
1381 struct s390_prologue_data *data = (struct s390_prologue_data *) data_untyped;
1384 if (!pv_is_register (addr, S390_SP_REGNUM))
1387 offset = 16 * data->gpr_size + 32 - addr.k;
1389 /* If we are storing the original value of a register, we want to
1390 record the CFA offset. If the same register is stored multiple
1391 times, the stack slot with the highest address counts. */
1393 for (i = 0; i < S390_NUM_GPRS; i++)
1394 if (size == data->gpr_size
1395 && pv_is_register_k (value, S390_R0_REGNUM + i, 0))
1396 if (data->gpr_slot[i] == 0
1397 || data->gpr_slot[i] > offset)
1399 data->gpr_slot[i] = offset;
1403 for (i = 0; i < S390_NUM_FPRS; i++)
1404 if (size == data->fpr_size
1405 && pv_is_register_k (value, S390_F0_REGNUM + i, 0))
1406 if (data->fpr_slot[i] == 0
1407 || data->fpr_slot[i] > offset)
1409 data->fpr_slot[i] = offset;
1414 /* Analyze the prologue of the function starting at START_PC,
1415 continuing at most until CURRENT_PC. Initialize DATA to
1416 hold all information we find out about the state of the registers
1417 and stack slots. Return the address of the instruction after
1418 the last one that changed the SP, FP, or back chain; or zero
1421 s390_analyze_prologue (struct gdbarch *gdbarch,
1423 CORE_ADDR current_pc,
1424 struct s390_prologue_data *data)
1426 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1428 /* Our return value:
1429 The address of the instruction after the last one that changed
1430 the SP, FP, or back chain; zero if we got an error trying to
1432 CORE_ADDR result = start_pc;
1434 /* The current PC for our abstract interpretation. */
1437 /* The address of the next instruction after that. */
1440 /* Set up everything's initial value. */
1444 data->stack = make_pv_area (S390_SP_REGNUM, gdbarch_addr_bit (gdbarch));
1446 /* For the purpose of prologue tracking, we consider the GPR size to
1447 be equal to the ABI word size, even if it is actually larger
1448 (i.e. when running a 32-bit binary under a 64-bit kernel). */
1449 data->gpr_size = word_size;
1451 data->byte_order = gdbarch_byte_order (gdbarch);
1453 for (i = 0; i < S390_NUM_GPRS; i++)
1454 data->gpr[i] = pv_register (S390_R0_REGNUM + i, 0);
1456 for (i = 0; i < S390_NUM_FPRS; i++)
1457 data->fpr[i] = pv_register (S390_F0_REGNUM + i, 0);
1459 for (i = 0; i < S390_NUM_GPRS; i++)
1460 data->gpr_slot[i] = 0;
1462 for (i = 0; i < S390_NUM_FPRS; i++)
1463 data->fpr_slot[i] = 0;
1465 data->back_chain_saved_p = 0;
1468 /* Start interpreting instructions, until we hit the frame's
1469 current PC or the first branch instruction. */
1470 for (pc = start_pc; pc > 0 && pc < current_pc; pc = next_pc)
1472 bfd_byte insn[S390_MAX_INSTR_SIZE];
1473 int insn_len = s390_readinstruction (insn, pc);
1475 bfd_byte dummy[S390_MAX_INSTR_SIZE] = { 0 };
1476 bfd_byte *insn32 = word_size == 4 ? insn : dummy;
1477 bfd_byte *insn64 = word_size == 8 ? insn : dummy;
1479 /* Fields for various kinds of instructions. */
1480 unsigned int b2, r1, r2, x2, r3;
1483 /* The values of SP and FP before this instruction,
1484 for detecting instructions that change them. */
1485 pv_t pre_insn_sp, pre_insn_fp;
1486 /* Likewise for the flag whether the back chain was saved. */
1487 int pre_insn_back_chain_saved_p;
1489 /* If we got an error trying to read the instruction, report it. */
1496 next_pc = pc + insn_len;
1498 pre_insn_sp = data->gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1499 pre_insn_fp = data->gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
1500 pre_insn_back_chain_saved_p = data->back_chain_saved_p;
1503 /* LHI r1, i2 --- load halfword immediate. */
1504 /* LGHI r1, i2 --- load halfword immediate (64-bit version). */
1505 /* LGFI r1, i2 --- load fullword immediate. */
1506 if (is_ri (insn32, op1_lhi, op2_lhi, &r1, &i2)
1507 || is_ri (insn64, op1_lghi, op2_lghi, &r1, &i2)
1508 || is_ril (insn, op1_lgfi, op2_lgfi, &r1, &i2))
1509 data->gpr[r1] = pv_constant (i2);
1511 /* LR r1, r2 --- load from register. */
1512 /* LGR r1, r2 --- load from register (64-bit version). */
1513 else if (is_rr (insn32, op_lr, &r1, &r2)
1514 || is_rre (insn64, op_lgr, &r1, &r2))
1515 data->gpr[r1] = data->gpr[r2];
1517 /* L r1, d2(x2, b2) --- load. */
1518 /* LY r1, d2(x2, b2) --- load (long-displacement version). */
1519 /* LG r1, d2(x2, b2) --- load (64-bit version). */
1520 else if (is_rx (insn32, op_l, &r1, &d2, &x2, &b2)
1521 || is_rxy (insn32, op1_ly, op2_ly, &r1, &d2, &x2, &b2)
1522 || is_rxy (insn64, op1_lg, op2_lg, &r1, &d2, &x2, &b2))
1523 data->gpr[r1] = s390_load (data, d2, x2, b2, data->gpr_size);
1525 /* ST r1, d2(x2, b2) --- store. */
1526 /* STY r1, d2(x2, b2) --- store (long-displacement version). */
1527 /* STG r1, d2(x2, b2) --- store (64-bit version). */
1528 else if (is_rx (insn32, op_st, &r1, &d2, &x2, &b2)
1529 || is_rxy (insn32, op1_sty, op2_sty, &r1, &d2, &x2, &b2)
1530 || is_rxy (insn64, op1_stg, op2_stg, &r1, &d2, &x2, &b2))
1531 s390_store (data, d2, x2, b2, data->gpr_size, data->gpr[r1]);
1533 /* STD r1, d2(x2,b2) --- store floating-point register. */
1534 else if (is_rx (insn, op_std, &r1, &d2, &x2, &b2))
1535 s390_store (data, d2, x2, b2, data->fpr_size, data->fpr[r1]);
1537 /* STM r1, r3, d2(b2) --- store multiple. */
1538 /* STMY r1, r3, d2(b2) --- store multiple (long-displacement
1540 /* STMG r1, r3, d2(b2) --- store multiple (64-bit version). */
1541 else if (is_rs (insn32, op_stm, &r1, &r3, &d2, &b2)
1542 || is_rsy (insn32, op1_stmy, op2_stmy, &r1, &r3, &d2, &b2)
1543 || is_rsy (insn64, op1_stmg, op2_stmg, &r1, &r3, &d2, &b2))
1545 for (; r1 <= r3; r1++, d2 += data->gpr_size)
1546 s390_store (data, d2, 0, b2, data->gpr_size, data->gpr[r1]);
1549 /* AHI r1, i2 --- add halfword immediate. */
1550 /* AGHI r1, i2 --- add halfword immediate (64-bit version). */
1551 /* AFI r1, i2 --- add fullword immediate. */
1552 /* AGFI r1, i2 --- add fullword immediate (64-bit version). */
1553 else if (is_ri (insn32, op1_ahi, op2_ahi, &r1, &i2)
1554 || is_ri (insn64, op1_aghi, op2_aghi, &r1, &i2)
1555 || is_ril (insn32, op1_afi, op2_afi, &r1, &i2)
1556 || is_ril (insn64, op1_agfi, op2_agfi, &r1, &i2))
1557 data->gpr[r1] = pv_add_constant (data->gpr[r1], i2);
1559 /* ALFI r1, i2 --- add logical immediate. */
1560 /* ALGFI r1, i2 --- add logical immediate (64-bit version). */
1561 else if (is_ril (insn32, op1_alfi, op2_alfi, &r1, &i2)
1562 || is_ril (insn64, op1_algfi, op2_algfi, &r1, &i2))
1563 data->gpr[r1] = pv_add_constant (data->gpr[r1],
1564 (CORE_ADDR)i2 & 0xffffffff);
1566 /* AR r1, r2 -- add register. */
1567 /* AGR r1, r2 -- add register (64-bit version). */
1568 else if (is_rr (insn32, op_ar, &r1, &r2)
1569 || is_rre (insn64, op_agr, &r1, &r2))
1570 data->gpr[r1] = pv_add (data->gpr[r1], data->gpr[r2]);
1572 /* A r1, d2(x2, b2) -- add. */
1573 /* AY r1, d2(x2, b2) -- add (long-displacement version). */
1574 /* AG r1, d2(x2, b2) -- add (64-bit version). */
1575 else if (is_rx (insn32, op_a, &r1, &d2, &x2, &b2)
1576 || is_rxy (insn32, op1_ay, op2_ay, &r1, &d2, &x2, &b2)
1577 || is_rxy (insn64, op1_ag, op2_ag, &r1, &d2, &x2, &b2))
1578 data->gpr[r1] = pv_add (data->gpr[r1],
1579 s390_load (data, d2, x2, b2, data->gpr_size));
1581 /* SLFI r1, i2 --- subtract logical immediate. */
1582 /* SLGFI r1, i2 --- subtract logical immediate (64-bit version). */
1583 else if (is_ril (insn32, op1_slfi, op2_slfi, &r1, &i2)
1584 || is_ril (insn64, op1_slgfi, op2_slgfi, &r1, &i2))
1585 data->gpr[r1] = pv_add_constant (data->gpr[r1],
1586 -((CORE_ADDR)i2 & 0xffffffff));
1588 /* SR r1, r2 -- subtract register. */
1589 /* SGR r1, r2 -- subtract register (64-bit version). */
1590 else if (is_rr (insn32, op_sr, &r1, &r2)
1591 || is_rre (insn64, op_sgr, &r1, &r2))
1592 data->gpr[r1] = pv_subtract (data->gpr[r1], data->gpr[r2]);
1594 /* S r1, d2(x2, b2) -- subtract. */
1595 /* SY r1, d2(x2, b2) -- subtract (long-displacement version). */
1596 /* SG r1, d2(x2, b2) -- subtract (64-bit version). */
1597 else if (is_rx (insn32, op_s, &r1, &d2, &x2, &b2)
1598 || is_rxy (insn32, op1_sy, op2_sy, &r1, &d2, &x2, &b2)
1599 || is_rxy (insn64, op1_sg, op2_sg, &r1, &d2, &x2, &b2))
1600 data->gpr[r1] = pv_subtract (data->gpr[r1],
1601 s390_load (data, d2, x2, b2, data->gpr_size));
1603 /* LA r1, d2(x2, b2) --- load address. */
1604 /* LAY r1, d2(x2, b2) --- load address (long-displacement version). */
1605 else if (is_rx (insn, op_la, &r1, &d2, &x2, &b2)
1606 || is_rxy (insn, op1_lay, op2_lay, &r1, &d2, &x2, &b2))
1607 data->gpr[r1] = s390_addr (data, d2, x2, b2);
1609 /* LARL r1, i2 --- load address relative long. */
1610 else if (is_ril (insn, op1_larl, op2_larl, &r1, &i2))
1611 data->gpr[r1] = pv_constant (pc + i2 * 2);
1613 /* BASR r1, 0 --- branch and save.
1614 Since r2 is zero, this saves the PC in r1, but doesn't branch. */
1615 else if (is_rr (insn, op_basr, &r1, &r2)
1617 data->gpr[r1] = pv_constant (next_pc);
1619 /* BRAS r1, i2 --- branch relative and save. */
1620 else if (is_ri (insn, op1_bras, op2_bras, &r1, &i2))
1622 data->gpr[r1] = pv_constant (next_pc);
1623 next_pc = pc + i2 * 2;
1625 /* We'd better not interpret any backward branches. We'll
1631 /* BRC/BRCL -- branch relative on condition. Ignore "branch
1632 never", branch to following instruction, and "conditional
1633 trap" (BRC +2). Otherwise terminate search. */
1634 else if (is_ri (insn, op1_brc, op2_brc, &r1, &i2))
1636 if (r1 != 0 && i2 != 1 && i2 != 2)
1639 else if (is_ril (insn, op1_brcl, op2_brcl, &r1, &i2))
1641 if (r1 != 0 && i2 != 3)
1645 /* Terminate search when hitting any other branch instruction. */
1646 else if (is_rr (insn, op_basr, &r1, &r2)
1647 || is_rx (insn, op_bas, &r1, &d2, &x2, &b2)
1648 || is_rr (insn, op_bcr, &r1, &r2)
1649 || is_rx (insn, op_bc, &r1, &d2, &x2, &b2)
1650 || is_ril (insn, op1_brasl, op2_brasl, &r2, &i2))
1655 /* An instruction we don't know how to simulate. The only
1656 safe thing to do would be to set every value we're tracking
1657 to 'unknown'. Instead, we'll be optimistic: we assume that
1658 we *can* interpret every instruction that the compiler uses
1659 to manipulate any of the data we're interested in here --
1660 then we can just ignore anything else. */
1663 /* Record the address after the last instruction that changed
1664 the FP, SP, or backlink. Ignore instructions that changed
1665 them back to their original values --- those are probably
1666 restore instructions. (The back chain is never restored,
1669 pv_t sp = data->gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1670 pv_t fp = data->gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
1672 if ((! pv_is_identical (pre_insn_sp, sp)
1673 && ! pv_is_register_k (sp, S390_SP_REGNUM, 0)
1674 && sp.kind != pvk_unknown)
1675 || (! pv_is_identical (pre_insn_fp, fp)
1676 && ! pv_is_register_k (fp, S390_FRAME_REGNUM, 0)
1677 && fp.kind != pvk_unknown)
1678 || pre_insn_back_chain_saved_p != data->back_chain_saved_p)
1683 /* Record where all the registers were saved. */
1684 pv_area_scan (data->stack, s390_check_for_saved, data);
1686 free_pv_area (data->stack);
1692 /* Advance PC across any function entry prologue instructions to reach
1693 some "real" code. */
1695 s390_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
1697 struct s390_prologue_data data;
1698 CORE_ADDR skip_pc, func_addr;
1700 if (find_pc_partial_function (pc, NULL, &func_addr, NULL))
1702 CORE_ADDR post_prologue_pc
1703 = skip_prologue_using_sal (gdbarch, func_addr);
1704 if (post_prologue_pc != 0)
1705 return std::max (pc, post_prologue_pc);
1708 skip_pc = s390_analyze_prologue (gdbarch, pc, (CORE_ADDR)-1, &data);
1709 return skip_pc ? skip_pc : pc;
1712 /* Implmement the stack_frame_destroyed_p gdbarch method. */
1714 s390_stack_frame_destroyed_p (struct gdbarch *gdbarch, CORE_ADDR pc)
1716 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1718 /* In frameless functions, there's not frame to destroy and thus
1719 we don't care about the epilogue.
1721 In functions with frame, the epilogue sequence is a pair of
1722 a LM-type instruction that restores (amongst others) the
1723 return register %r14 and the stack pointer %r15, followed
1724 by a branch 'br %r14' --or equivalent-- that effects the
1727 In that situation, this function needs to return 'true' in
1728 exactly one case: when pc points to that branch instruction.
1730 Thus we try to disassemble the one instructions immediately
1731 preceding pc and check whether it is an LM-type instruction
1732 modifying the stack pointer.
1734 Note that disassembling backwards is not reliable, so there
1735 is a slight chance of false positives here ... */
1738 unsigned int r1, r3, b2;
1742 && !target_read_memory (pc - 4, insn, 4)
1743 && is_rs (insn, op_lm, &r1, &r3, &d2, &b2)
1744 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1748 && !target_read_memory (pc - 6, insn, 6)
1749 && is_rsy (insn, op1_lmy, op2_lmy, &r1, &r3, &d2, &b2)
1750 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1754 && !target_read_memory (pc - 6, insn, 6)
1755 && is_rsy (insn, op1_lmg, op2_lmg, &r1, &r3, &d2, &b2)
1756 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1762 /* Displaced stepping. */
1764 /* Return true if INSN is a non-branch RIL-b or RIL-c format
1768 is_non_branch_ril (gdb_byte *insn)
1770 gdb_byte op1 = insn[0];
1774 gdb_byte op2 = insn[1] & 0x0f;
1778 case 0x02: /* llhrl */
1779 case 0x04: /* lghrl */
1780 case 0x05: /* lhrl */
1781 case 0x06: /* llghrl */
1782 case 0x07: /* sthrl */
1783 case 0x08: /* lgrl */
1784 case 0x0b: /* stgrl */
1785 case 0x0c: /* lgfrl */
1786 case 0x0d: /* lrl */
1787 case 0x0e: /* llgfrl */
1788 case 0x0f: /* strl */
1792 else if (op1 == 0xc6)
1794 gdb_byte op2 = insn[1] & 0x0f;
1798 case 0x00: /* exrl */
1799 case 0x02: /* pfdrl */
1800 case 0x04: /* cghrl */
1801 case 0x05: /* chrl */
1802 case 0x06: /* clghrl */
1803 case 0x07: /* clhrl */
1804 case 0x08: /* cgrl */
1805 case 0x0a: /* clgrl */
1806 case 0x0c: /* cgfrl */
1807 case 0x0d: /* crl */
1808 case 0x0e: /* clgfrl */
1809 case 0x0f: /* clrl */
1817 /* Implementation of gdbarch_displaced_step_copy_insn. */
1819 static struct displaced_step_closure *
1820 s390_displaced_step_copy_insn (struct gdbarch *gdbarch,
1821 CORE_ADDR from, CORE_ADDR to,
1822 struct regcache *regs)
1824 size_t len = gdbarch_max_insn_length (gdbarch);
1825 gdb_byte *buf = (gdb_byte *) xmalloc (len);
1826 struct cleanup *old_chain = make_cleanup (xfree, buf);
1828 read_memory (from, buf, len);
1830 /* Adjust the displacement field of PC-relative RIL instructions,
1831 except branches. The latter are handled in the fixup hook. */
1832 if (is_non_branch_ril (buf))
1836 offset = extract_signed_integer (buf + 2, 4, BFD_ENDIAN_BIG);
1837 offset = (from - to + offset * 2) / 2;
1839 /* If the instruction is too far from the jump pad, punt. This
1840 will usually happen with instructions in shared libraries.
1841 We could probably support these by rewriting them to be
1842 absolute or fully emulating them. */
1843 if (offset < INT32_MIN || offset > INT32_MAX)
1845 /* Let the core fall back to stepping over the breakpoint
1847 if (debug_displaced)
1849 fprintf_unfiltered (gdb_stdlog,
1850 "displaced: can't displaced step "
1851 "RIL instruction: offset %s out of range\n",
1854 do_cleanups (old_chain);
1858 store_signed_integer (buf + 2, 4, BFD_ENDIAN_BIG, offset);
1861 write_memory (to, buf, len);
1863 if (debug_displaced)
1865 fprintf_unfiltered (gdb_stdlog, "displaced: copy %s->%s: ",
1866 paddress (gdbarch, from), paddress (gdbarch, to));
1867 displaced_step_dump_bytes (gdb_stdlog, buf, len);
1870 discard_cleanups (old_chain);
1871 return (struct displaced_step_closure *) buf;
1874 /* Fix up the state of registers and memory after having single-stepped
1875 a displaced instruction. */
1877 s390_displaced_step_fixup (struct gdbarch *gdbarch,
1878 struct displaced_step_closure *closure,
1879 CORE_ADDR from, CORE_ADDR to,
1880 struct regcache *regs)
1882 /* Our closure is a copy of the instruction. */
1883 gdb_byte *insn = (gdb_byte *) closure;
1884 static int s390_instrlen[] = { 2, 4, 4, 6 };
1885 int insnlen = s390_instrlen[insn[0] >> 6];
1887 /* Fields for various kinds of instructions. */
1888 unsigned int b2, r1, r2, x2, r3;
1891 /* Get current PC and addressing mode bit. */
1892 CORE_ADDR pc = regcache_read_pc (regs);
1895 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
1897 regcache_cooked_read_unsigned (regs, S390_PSWA_REGNUM, &amode);
1898 amode &= 0x80000000;
1901 if (debug_displaced)
1902 fprintf_unfiltered (gdb_stdlog,
1903 "displaced: (s390) fixup (%s, %s) pc %s len %d amode 0x%x\n",
1904 paddress (gdbarch, from), paddress (gdbarch, to),
1905 paddress (gdbarch, pc), insnlen, (int) amode);
1907 /* Handle absolute branch and save instructions. */
1908 if (is_rr (insn, op_basr, &r1, &r2)
1909 || is_rx (insn, op_bas, &r1, &d2, &x2, &b2))
1911 /* Recompute saved return address in R1. */
1912 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1913 amode | (from + insnlen));
1916 /* Handle absolute branch instructions. */
1917 else if (is_rr (insn, op_bcr, &r1, &r2)
1918 || is_rx (insn, op_bc, &r1, &d2, &x2, &b2)
1919 || is_rr (insn, op_bctr, &r1, &r2)
1920 || is_rre (insn, op_bctgr, &r1, &r2)
1921 || is_rx (insn, op_bct, &r1, &d2, &x2, &b2)
1922 || is_rxy (insn, op1_bctg, op2_brctg, &r1, &d2, &x2, &b2)
1923 || is_rs (insn, op_bxh, &r1, &r3, &d2, &b2)
1924 || is_rsy (insn, op1_bxhg, op2_bxhg, &r1, &r3, &d2, &b2)
1925 || is_rs (insn, op_bxle, &r1, &r3, &d2, &b2)
1926 || is_rsy (insn, op1_bxleg, op2_bxleg, &r1, &r3, &d2, &b2))
1928 /* Update PC iff branch was *not* taken. */
1929 if (pc == to + insnlen)
1930 regcache_write_pc (regs, from + insnlen);
1933 /* Handle PC-relative branch and save instructions. */
1934 else if (is_ri (insn, op1_bras, op2_bras, &r1, &i2)
1935 || is_ril (insn, op1_brasl, op2_brasl, &r1, &i2))
1938 regcache_write_pc (regs, pc - to + from);
1939 /* Recompute saved return address in R1. */
1940 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1941 amode | (from + insnlen));
1944 /* Handle LOAD ADDRESS RELATIVE LONG. */
1945 else if (is_ril (insn, op1_larl, op2_larl, &r1, &i2))
1948 regcache_write_pc (regs, from + insnlen);
1949 /* Recompute output address in R1. */
1950 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1951 amode | (from + i2 * 2));
1954 /* If we executed a breakpoint instruction, point PC right back at it. */
1955 else if (insn[0] == 0x0 && insn[1] == 0x1)
1956 regcache_write_pc (regs, from);
1958 /* For any other insn, adjust PC by negated displacement. PC then
1959 points right after the original instruction, except for PC-relative
1960 branches, where it points to the adjusted branch target. */
1962 regcache_write_pc (regs, pc - to + from);
1964 if (debug_displaced)
1965 fprintf_unfiltered (gdb_stdlog,
1966 "displaced: (s390) pc is now %s\n",
1967 paddress (gdbarch, regcache_read_pc (regs)));
1971 /* Helper routine to unwind pseudo registers. */
1973 static struct value *
1974 s390_unwind_pseudo_register (struct frame_info *this_frame, int regnum)
1976 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1977 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1978 struct type *type = register_type (gdbarch, regnum);
1980 /* Unwind PC via PSW address. */
1981 if (regnum == tdep->pc_regnum)
1985 val = frame_unwind_register_value (this_frame, S390_PSWA_REGNUM);
1986 if (!value_optimized_out (val))
1988 LONGEST pswa = value_as_long (val);
1990 if (TYPE_LENGTH (type) == 4)
1991 return value_from_pointer (type, pswa & 0x7fffffff);
1993 return value_from_pointer (type, pswa);
1997 /* Unwind CC via PSW mask. */
1998 if (regnum == tdep->cc_regnum)
2002 val = frame_unwind_register_value (this_frame, S390_PSWM_REGNUM);
2003 if (!value_optimized_out (val))
2005 LONGEST pswm = value_as_long (val);
2007 if (TYPE_LENGTH (type) == 4)
2008 return value_from_longest (type, (pswm >> 12) & 3);
2010 return value_from_longest (type, (pswm >> 44) & 3);
2014 /* Unwind full GPRs to show at least the lower halves (as the
2015 upper halves are undefined). */
2016 if (regnum_is_gpr_full (tdep, regnum))
2018 int reg = regnum - tdep->gpr_full_regnum;
2021 val = frame_unwind_register_value (this_frame, S390_R0_REGNUM + reg);
2022 if (!value_optimized_out (val))
2023 return value_cast (type, val);
2026 return allocate_optimized_out_value (type);
2029 static struct value *
2030 s390_trad_frame_prev_register (struct frame_info *this_frame,
2031 struct trad_frame_saved_reg saved_regs[],
2034 if (regnum < S390_NUM_REGS)
2035 return trad_frame_get_prev_register (this_frame, saved_regs, regnum);
2037 return s390_unwind_pseudo_register (this_frame, regnum);
2041 /* Normal stack frames. */
2043 struct s390_unwind_cache {
2046 CORE_ADDR frame_base;
2047 CORE_ADDR local_base;
2049 struct trad_frame_saved_reg *saved_regs;
2053 s390_prologue_frame_unwind_cache (struct frame_info *this_frame,
2054 struct s390_unwind_cache *info)
2056 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2057 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2058 struct s390_prologue_data data;
2059 pv_t *fp = &data.gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
2060 pv_t *sp = &data.gpr[S390_SP_REGNUM - S390_R0_REGNUM];
2069 struct frame_info *next_frame;
2071 /* Try to find the function start address. If we can't find it, we don't
2072 bother searching for it -- with modern compilers this would be mostly
2073 pointless anyway. Trust that we'll either have valid DWARF-2 CFI data
2074 or else a valid backchain ... */
2075 if (!get_frame_func_if_available (this_frame, &info->func))
2082 /* Try to analyze the prologue. */
2083 result = s390_analyze_prologue (gdbarch, func,
2084 get_frame_pc (this_frame), &data);
2088 /* If this was successful, we should have found the instruction that
2089 sets the stack pointer register to the previous value of the stack
2090 pointer minus the frame size. */
2091 if (!pv_is_register (*sp, S390_SP_REGNUM))
2094 /* A frame size of zero at this point can mean either a real
2095 frameless function, or else a failure to find the prologue.
2096 Perform some sanity checks to verify we really have a
2097 frameless function. */
2100 /* If the next frame is a NORMAL_FRAME, this frame *cannot* have frame
2101 size zero. This is only possible if the next frame is a sentinel
2102 frame, a dummy frame, or a signal trampoline frame. */
2103 /* FIXME: cagney/2004-05-01: This sanity check shouldn't be
2104 needed, instead the code should simpliy rely on its
2106 next_frame = get_next_frame (this_frame);
2107 while (next_frame && get_frame_type (next_frame) == INLINE_FRAME)
2108 next_frame = get_next_frame (next_frame);
2110 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME)
2113 /* If we really have a frameless function, %r14 must be valid
2114 -- in particular, it must point to a different function. */
2115 reg = get_frame_register_unsigned (this_frame, S390_RETADDR_REGNUM);
2116 reg = gdbarch_addr_bits_remove (gdbarch, reg) - 1;
2117 if (get_pc_function_start (reg) == func)
2119 /* However, there is one case where it *is* valid for %r14
2120 to point to the same function -- if this is a recursive
2121 call, and we have stopped in the prologue *before* the
2122 stack frame was allocated.
2124 Recognize this case by looking ahead a bit ... */
2126 struct s390_prologue_data data2;
2127 pv_t *sp = &data2.gpr[S390_SP_REGNUM - S390_R0_REGNUM];
2129 if (!(s390_analyze_prologue (gdbarch, func, (CORE_ADDR)-1, &data2)
2130 && pv_is_register (*sp, S390_SP_REGNUM)
2137 /* OK, we've found valid prologue data. */
2140 /* If the frame pointer originally also holds the same value
2141 as the stack pointer, we're probably using it. If it holds
2142 some other value -- even a constant offset -- it is most
2143 likely used as temp register. */
2144 if (pv_is_identical (*sp, *fp))
2145 frame_pointer = S390_FRAME_REGNUM;
2147 frame_pointer = S390_SP_REGNUM;
2149 /* If we've detected a function with stack frame, we'll still have to
2150 treat it as frameless if we're currently within the function epilog
2151 code at a point where the frame pointer has already been restored.
2152 This can only happen in an innermost frame. */
2153 /* FIXME: cagney/2004-05-01: This sanity check shouldn't be needed,
2154 instead the code should simpliy rely on its analysis. */
2155 next_frame = get_next_frame (this_frame);
2156 while (next_frame && get_frame_type (next_frame) == INLINE_FRAME)
2157 next_frame = get_next_frame (next_frame);
2159 && (next_frame == NULL
2160 || get_frame_type (get_next_frame (this_frame)) != NORMAL_FRAME))
2162 /* See the comment in s390_stack_frame_destroyed_p on why this is
2163 not completely reliable ... */
2164 if (s390_stack_frame_destroyed_p (gdbarch, get_frame_pc (this_frame)))
2166 memset (&data, 0, sizeof (data));
2168 frame_pointer = S390_SP_REGNUM;
2172 /* Once we know the frame register and the frame size, we can unwind
2173 the current value of the frame register from the next frame, and
2174 add back the frame size to arrive that the previous frame's
2175 stack pointer value. */
2176 prev_sp = get_frame_register_unsigned (this_frame, frame_pointer) + size;
2177 cfa = prev_sp + 16*word_size + 32;
2179 /* Set up ABI call-saved/call-clobbered registers. */
2180 for (i = 0; i < S390_NUM_REGS; i++)
2181 if (!s390_register_call_saved (gdbarch, i))
2182 trad_frame_set_unknown (info->saved_regs, i);
2184 /* CC is always call-clobbered. */
2185 trad_frame_set_unknown (info->saved_regs, S390_PSWM_REGNUM);
2187 /* Record the addresses of all register spill slots the prologue parser
2188 has recognized. Consider only registers defined as call-saved by the
2189 ABI; for call-clobbered registers the parser may have recognized
2192 for (i = 0; i < 16; i++)
2193 if (s390_register_call_saved (gdbarch, S390_R0_REGNUM + i)
2194 && data.gpr_slot[i] != 0)
2195 info->saved_regs[S390_R0_REGNUM + i].addr = cfa - data.gpr_slot[i];
2197 for (i = 0; i < 16; i++)
2198 if (s390_register_call_saved (gdbarch, S390_F0_REGNUM + i)
2199 && data.fpr_slot[i] != 0)
2200 info->saved_regs[S390_F0_REGNUM + i].addr = cfa - data.fpr_slot[i];
2202 /* Function return will set PC to %r14. */
2203 info->saved_regs[S390_PSWA_REGNUM] = info->saved_regs[S390_RETADDR_REGNUM];
2205 /* In frameless functions, we unwind simply by moving the return
2206 address to the PC. However, if we actually stored to the
2207 save area, use that -- we might only think the function frameless
2208 because we're in the middle of the prologue ... */
2210 && !trad_frame_addr_p (info->saved_regs, S390_PSWA_REGNUM))
2212 info->saved_regs[S390_PSWA_REGNUM].realreg = S390_RETADDR_REGNUM;
2215 /* Another sanity check: unless this is a frameless function,
2216 we should have found spill slots for SP and PC.
2217 If not, we cannot unwind further -- this happens e.g. in
2218 libc's thread_start routine. */
2221 if (!trad_frame_addr_p (info->saved_regs, S390_SP_REGNUM)
2222 || !trad_frame_addr_p (info->saved_regs, S390_PSWA_REGNUM))
2226 /* We use the current value of the frame register as local_base,
2227 and the top of the register save area as frame_base. */
2230 info->frame_base = prev_sp + 16*word_size + 32;
2231 info->local_base = prev_sp - size;
2238 s390_backchain_frame_unwind_cache (struct frame_info *this_frame,
2239 struct s390_unwind_cache *info)
2241 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2242 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2243 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2244 CORE_ADDR backchain;
2249 /* Set up ABI call-saved/call-clobbered registers. */
2250 for (i = 0; i < S390_NUM_REGS; i++)
2251 if (!s390_register_call_saved (gdbarch, i))
2252 trad_frame_set_unknown (info->saved_regs, i);
2254 /* CC is always call-clobbered. */
2255 trad_frame_set_unknown (info->saved_regs, S390_PSWM_REGNUM);
2257 /* Get the backchain. */
2258 reg = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2259 if (!safe_read_memory_integer (reg, word_size, byte_order, &tmp))
2261 backchain = (CORE_ADDR) tmp;
2263 /* A zero backchain terminates the frame chain. As additional
2264 sanity check, let's verify that the spill slot for SP in the
2265 save area pointed to by the backchain in fact links back to
2268 && safe_read_memory_integer (backchain + 15*word_size,
2269 word_size, byte_order, &sp)
2270 && (CORE_ADDR)sp == backchain)
2272 /* We don't know which registers were saved, but it will have
2273 to be at least %r14 and %r15. This will allow us to continue
2274 unwinding, but other prev-frame registers may be incorrect ... */
2275 info->saved_regs[S390_SP_REGNUM].addr = backchain + 15*word_size;
2276 info->saved_regs[S390_RETADDR_REGNUM].addr = backchain + 14*word_size;
2278 /* Function return will set PC to %r14. */
2279 info->saved_regs[S390_PSWA_REGNUM]
2280 = info->saved_regs[S390_RETADDR_REGNUM];
2282 /* We use the current value of the frame register as local_base,
2283 and the top of the register save area as frame_base. */
2284 info->frame_base = backchain + 16*word_size + 32;
2285 info->local_base = reg;
2288 info->func = get_frame_pc (this_frame);
2291 static struct s390_unwind_cache *
2292 s390_frame_unwind_cache (struct frame_info *this_frame,
2293 void **this_prologue_cache)
2295 struct s390_unwind_cache *info;
2297 if (*this_prologue_cache)
2298 return (struct s390_unwind_cache *) *this_prologue_cache;
2300 info = FRAME_OBSTACK_ZALLOC (struct s390_unwind_cache);
2301 *this_prologue_cache = info;
2302 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2304 info->frame_base = -1;
2305 info->local_base = -1;
2309 /* Try to use prologue analysis to fill the unwind cache.
2310 If this fails, fall back to reading the stack backchain. */
2311 if (!s390_prologue_frame_unwind_cache (this_frame, info))
2312 s390_backchain_frame_unwind_cache (this_frame, info);
2314 CATCH (ex, RETURN_MASK_ERROR)
2316 if (ex.error != NOT_AVAILABLE_ERROR)
2317 throw_exception (ex);
2325 s390_frame_this_id (struct frame_info *this_frame,
2326 void **this_prologue_cache,
2327 struct frame_id *this_id)
2329 struct s390_unwind_cache *info
2330 = s390_frame_unwind_cache (this_frame, this_prologue_cache);
2332 if (info->frame_base == -1)
2334 if (info->func != -1)
2335 *this_id = frame_id_build_unavailable_stack (info->func);
2339 *this_id = frame_id_build (info->frame_base, info->func);
2342 static struct value *
2343 s390_frame_prev_register (struct frame_info *this_frame,
2344 void **this_prologue_cache, int regnum)
2346 struct s390_unwind_cache *info
2347 = s390_frame_unwind_cache (this_frame, this_prologue_cache);
2349 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2352 static const struct frame_unwind s390_frame_unwind = {
2354 default_frame_unwind_stop_reason,
2356 s390_frame_prev_register,
2358 default_frame_sniffer
2362 /* Code stubs and their stack frames. For things like PLTs and NULL
2363 function calls (where there is no true frame and the return address
2364 is in the RETADDR register). */
2366 struct s390_stub_unwind_cache
2368 CORE_ADDR frame_base;
2369 struct trad_frame_saved_reg *saved_regs;
2372 static struct s390_stub_unwind_cache *
2373 s390_stub_frame_unwind_cache (struct frame_info *this_frame,
2374 void **this_prologue_cache)
2376 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2377 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2378 struct s390_stub_unwind_cache *info;
2381 if (*this_prologue_cache)
2382 return (struct s390_stub_unwind_cache *) *this_prologue_cache;
2384 info = FRAME_OBSTACK_ZALLOC (struct s390_stub_unwind_cache);
2385 *this_prologue_cache = info;
2386 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2388 /* The return address is in register %r14. */
2389 info->saved_regs[S390_PSWA_REGNUM].realreg = S390_RETADDR_REGNUM;
2391 /* Retrieve stack pointer and determine our frame base. */
2392 reg = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2393 info->frame_base = reg + 16*word_size + 32;
2399 s390_stub_frame_this_id (struct frame_info *this_frame,
2400 void **this_prologue_cache,
2401 struct frame_id *this_id)
2403 struct s390_stub_unwind_cache *info
2404 = s390_stub_frame_unwind_cache (this_frame, this_prologue_cache);
2405 *this_id = frame_id_build (info->frame_base, get_frame_pc (this_frame));
2408 static struct value *
2409 s390_stub_frame_prev_register (struct frame_info *this_frame,
2410 void **this_prologue_cache, int regnum)
2412 struct s390_stub_unwind_cache *info
2413 = s390_stub_frame_unwind_cache (this_frame, this_prologue_cache);
2414 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2418 s390_stub_frame_sniffer (const struct frame_unwind *self,
2419 struct frame_info *this_frame,
2420 void **this_prologue_cache)
2422 CORE_ADDR addr_in_block;
2423 bfd_byte insn[S390_MAX_INSTR_SIZE];
2425 /* If the current PC points to non-readable memory, we assume we
2426 have trapped due to an invalid function pointer call. We handle
2427 the non-existing current function like a PLT stub. */
2428 addr_in_block = get_frame_address_in_block (this_frame);
2429 if (in_plt_section (addr_in_block)
2430 || s390_readinstruction (insn, get_frame_pc (this_frame)) < 0)
2435 static const struct frame_unwind s390_stub_frame_unwind = {
2437 default_frame_unwind_stop_reason,
2438 s390_stub_frame_this_id,
2439 s390_stub_frame_prev_register,
2441 s390_stub_frame_sniffer
2445 /* Signal trampoline stack frames. */
2447 struct s390_sigtramp_unwind_cache {
2448 CORE_ADDR frame_base;
2449 struct trad_frame_saved_reg *saved_regs;
2452 static struct s390_sigtramp_unwind_cache *
2453 s390_sigtramp_frame_unwind_cache (struct frame_info *this_frame,
2454 void **this_prologue_cache)
2456 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2457 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2458 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2459 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2460 struct s390_sigtramp_unwind_cache *info;
2461 ULONGEST this_sp, prev_sp;
2462 CORE_ADDR next_ra, next_cfa, sigreg_ptr, sigreg_high_off;
2465 if (*this_prologue_cache)
2466 return (struct s390_sigtramp_unwind_cache *) *this_prologue_cache;
2468 info = FRAME_OBSTACK_ZALLOC (struct s390_sigtramp_unwind_cache);
2469 *this_prologue_cache = info;
2470 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2472 this_sp = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2473 next_ra = get_frame_pc (this_frame);
2474 next_cfa = this_sp + 16*word_size + 32;
2476 /* New-style RT frame:
2477 retcode + alignment (8 bytes)
2479 ucontext (contains sigregs at offset 5 words). */
2480 if (next_ra == next_cfa)
2482 sigreg_ptr = next_cfa + 8 + 128 + align_up (5*word_size, 8);
2483 /* sigregs are followed by uc_sigmask (8 bytes), then by the
2484 upper GPR halves if present. */
2485 sigreg_high_off = 8;
2488 /* Old-style RT frame and all non-RT frames:
2489 old signal mask (8 bytes)
2490 pointer to sigregs. */
2493 sigreg_ptr = read_memory_unsigned_integer (next_cfa + 8,
2494 word_size, byte_order);
2495 /* sigregs are followed by signo (4 bytes), then by the
2496 upper GPR halves if present. */
2497 sigreg_high_off = 4;
2500 /* The sigregs structure looks like this:
2509 /* PSW mask and address. */
2510 info->saved_regs[S390_PSWM_REGNUM].addr = sigreg_ptr;
2511 sigreg_ptr += word_size;
2512 info->saved_regs[S390_PSWA_REGNUM].addr = sigreg_ptr;
2513 sigreg_ptr += word_size;
2515 /* Then the GPRs. */
2516 for (i = 0; i < 16; i++)
2518 info->saved_regs[S390_R0_REGNUM + i].addr = sigreg_ptr;
2519 sigreg_ptr += word_size;
2522 /* Then the ACRs. */
2523 for (i = 0; i < 16; i++)
2525 info->saved_regs[S390_A0_REGNUM + i].addr = sigreg_ptr;
2529 /* The floating-point control word. */
2530 info->saved_regs[S390_FPC_REGNUM].addr = sigreg_ptr;
2533 /* And finally the FPRs. */
2534 for (i = 0; i < 16; i++)
2536 info->saved_regs[S390_F0_REGNUM + i].addr = sigreg_ptr;
2540 /* If we have them, the GPR upper halves are appended at the end. */
2541 sigreg_ptr += sigreg_high_off;
2542 if (tdep->gpr_full_regnum != -1)
2543 for (i = 0; i < 16; i++)
2545 info->saved_regs[S390_R0_UPPER_REGNUM + i].addr = sigreg_ptr;
2549 /* Restore the previous frame's SP. */
2550 prev_sp = read_memory_unsigned_integer (
2551 info->saved_regs[S390_SP_REGNUM].addr,
2552 word_size, byte_order);
2554 /* Determine our frame base. */
2555 info->frame_base = prev_sp + 16*word_size + 32;
2561 s390_sigtramp_frame_this_id (struct frame_info *this_frame,
2562 void **this_prologue_cache,
2563 struct frame_id *this_id)
2565 struct s390_sigtramp_unwind_cache *info
2566 = s390_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
2567 *this_id = frame_id_build (info->frame_base, get_frame_pc (this_frame));
2570 static struct value *
2571 s390_sigtramp_frame_prev_register (struct frame_info *this_frame,
2572 void **this_prologue_cache, int regnum)
2574 struct s390_sigtramp_unwind_cache *info
2575 = s390_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
2576 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2580 s390_sigtramp_frame_sniffer (const struct frame_unwind *self,
2581 struct frame_info *this_frame,
2582 void **this_prologue_cache)
2584 CORE_ADDR pc = get_frame_pc (this_frame);
2585 bfd_byte sigreturn[2];
2587 if (target_read_memory (pc, sigreturn, 2))
2590 if (sigreturn[0] != op_svc)
2593 if (sigreturn[1] != 119 /* sigreturn */
2594 && sigreturn[1] != 173 /* rt_sigreturn */)
2600 static const struct frame_unwind s390_sigtramp_frame_unwind = {
2602 default_frame_unwind_stop_reason,
2603 s390_sigtramp_frame_this_id,
2604 s390_sigtramp_frame_prev_register,
2606 s390_sigtramp_frame_sniffer
2609 /* Retrieve the syscall number at a ptrace syscall-stop. Return -1
2613 s390_linux_get_syscall_number (struct gdbarch *gdbarch,
2616 struct regcache *regs = get_thread_regcache (ptid);
2617 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2618 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2620 ULONGEST svc_number = -1;
2623 /* Assume that the PC points after the 2-byte SVC instruction. We
2624 don't currently support SVC via EXECUTE. */
2625 regcache_cooked_read_unsigned (regs, tdep->pc_regnum, &pc);
2627 opcode = read_memory_unsigned_integer ((CORE_ADDR) pc, 1, byte_order);
2628 if (opcode != op_svc)
2631 svc_number = read_memory_unsigned_integer ((CORE_ADDR) pc + 1, 1,
2633 if (svc_number == 0)
2634 regcache_cooked_read_unsigned (regs, S390_R1_REGNUM, &svc_number);
2639 /* Process record-replay */
2641 static struct linux_record_tdep s390_linux_record_tdep;
2642 static struct linux_record_tdep s390x_linux_record_tdep;
2644 /* Record all registers but PC register for process-record. */
2647 s390_all_but_pc_registers_record (struct regcache *regcache)
2649 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2650 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2653 for (i = 0; i < 16; i++)
2655 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
2657 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + i))
2659 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + i))
2661 if (tdep->gpr_full_regnum != -1)
2662 if (record_full_arch_list_add_reg (regcache, S390_R0_UPPER_REGNUM + i))
2664 if (tdep->v0_full_regnum != -1)
2666 if (record_full_arch_list_add_reg (regcache, S390_V0_LOWER_REGNUM + i))
2668 if (record_full_arch_list_add_reg (regcache, S390_V16_REGNUM + i))
2672 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
2674 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
2680 static enum gdb_syscall
2681 s390_canonicalize_syscall (int syscall, enum s390_abi_kind abi)
2685 /* s390 syscall numbers < 222 are mostly the same as x86, so just list
2688 return gdb_sys_no_syscall;
2690 return gdb_sys_restart_syscall;
2691 /* These syscalls work only on 31-bit. */
2693 case 16: /* lchown[16] */
2694 case 23: /* setuid[16] */
2695 case 24: /* getuid[16] */
2696 case 25: /* stime */
2697 case 46: /* setgid[16] */
2698 case 47: /* getgid[16] */
2699 case 49: /* seteuid[16] */
2700 case 50: /* getegid[16] */
2701 case 70: /* setreuid[16] */
2702 case 71: /* setregid[16] */
2703 case 76: /* [old_]getrlimit */
2704 case 80: /* getgroups[16] */
2705 case 81: /* setgroups[16] */
2706 case 95: /* fchown[16] */
2707 case 101: /* ioperm */
2708 case 138: /* setfsuid[16] */
2709 case 139: /* setfsgid[16] */
2710 case 140: /* _llseek */
2711 case 164: /* setresuid[16] */
2712 case 165: /* getresuid[16] */
2713 case 170: /* setresgid[16] */
2714 case 171: /* getresgid[16] */
2715 case 182: /* chown[16] */
2716 case 192: /* mmap2 */
2717 case 193: /* truncate64 */
2718 case 194: /* ftruncate64 */
2719 case 195: /* stat64 */
2720 case 196: /* lstat64 */
2721 case 197: /* fstat64 */
2722 case 221: /* fcntl64 */
2723 if (abi == ABI_LINUX_S390)
2724 return (enum gdb_syscall) syscall;
2725 return gdb_sys_no_syscall;
2726 /* These syscalls don't exist on s390. */
2727 case 17: /* break */
2728 case 18: /* oldstat */
2729 case 28: /* oldfstat */
2732 case 35: /* ftime */
2736 case 58: /* ulimit */
2737 case 59: /* oldolduname */
2738 case 68: /* sgetmask */
2739 case 69: /* ssetmask */
2740 case 82: /* [old_]select */
2741 case 84: /* oldlstat */
2742 case 98: /* profil */
2743 case 109: /* olduname */
2744 case 113: /* vm86old */
2745 case 123: /* modify_ldt */
2746 case 166: /* vm86 */
2747 return gdb_sys_no_syscall;
2749 return gdb_sys_lookup_dcookie;
2750 /* Here come the differences. */
2752 return gdb_sys_readahead;
2754 if (abi == ABI_LINUX_S390)
2755 return gdb_sys_sendfile64;
2756 return gdb_sys_no_syscall;
2757 /* 224-235 handled below */
2759 return gdb_sys_gettid;
2761 return gdb_sys_tkill;
2763 return gdb_sys_futex;
2765 return gdb_sys_sched_setaffinity;
2767 return gdb_sys_sched_getaffinity;
2769 return gdb_sys_tgkill;
2772 return gdb_sys_io_setup;
2774 return gdb_sys_io_destroy;
2776 return gdb_sys_io_getevents;
2778 return gdb_sys_io_submit;
2780 return gdb_sys_io_cancel;
2782 return gdb_sys_exit_group;
2784 return gdb_sys_epoll_create;
2786 return gdb_sys_epoll_ctl;
2788 return gdb_sys_epoll_wait;
2790 return gdb_sys_set_tid_address;
2792 return gdb_sys_fadvise64;
2793 /* 254-262 handled below */
2796 if (abi == ABI_LINUX_S390)
2797 return gdb_sys_fadvise64_64;
2798 return gdb_sys_no_syscall;
2800 return gdb_sys_statfs64;
2802 return gdb_sys_fstatfs64;
2804 return gdb_sys_remap_file_pages;
2805 /* 268-270 reserved */
2806 /* 271-277 handled below */
2808 return gdb_sys_add_key;
2810 return gdb_sys_request_key;
2812 return gdb_sys_keyctl;
2814 return gdb_sys_waitid;
2815 /* 282-312 handled below */
2817 if (abi == ABI_LINUX_S390)
2818 return gdb_sys_fstatat64;
2819 return gdb_sys_newfstatat;
2820 /* 313+ not yet supported */
2825 /* Most "old" syscalls copied from i386. */
2828 /* xattr syscalls. */
2829 else if (syscall >= 224 && syscall <= 235)
2831 /* timer syscalls. */
2832 else if (syscall >= 254 && syscall <= 262)
2834 /* mq_* and kexec_load */
2835 else if (syscall >= 271 && syscall <= 277)
2837 /* ioprio_set .. epoll_pwait */
2838 else if (syscall >= 282 && syscall <= 312)
2841 ret = gdb_sys_no_syscall;
2843 return (enum gdb_syscall) ret;
2849 s390_linux_syscall_record (struct regcache *regcache, LONGEST syscall_native)
2851 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2852 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2854 enum gdb_syscall syscall_gdb;
2856 /* On s390, syscall number can be passed either as immediate field of svc
2857 instruction, or in %r1 (with svc 0). */
2858 if (syscall_native == 0)
2859 regcache_raw_read_signed (regcache, S390_R1_REGNUM, &syscall_native);
2861 syscall_gdb = s390_canonicalize_syscall (syscall_native, tdep->abi);
2863 if (syscall_gdb < 0)
2865 printf_unfiltered (_("Process record and replay target doesn't "
2866 "support syscall number %s\n"),
2867 plongest (syscall_native));
2871 if (syscall_gdb == gdb_sys_sigreturn
2872 || syscall_gdb == gdb_sys_rt_sigreturn)
2874 if (s390_all_but_pc_registers_record (regcache))
2879 if (tdep->abi == ABI_LINUX_ZSERIES)
2880 ret = record_linux_system_call (syscall_gdb, regcache,
2881 &s390x_linux_record_tdep);
2883 ret = record_linux_system_call (syscall_gdb, regcache,
2884 &s390_linux_record_tdep);
2889 /* Record the return value of the system call. */
2890 if (record_full_arch_list_add_reg (regcache, S390_R2_REGNUM))
2897 s390_linux_record_signal (struct gdbarch *gdbarch, struct regcache *regcache,
2898 enum gdb_signal signal)
2900 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2901 /* There are two kinds of signal frames on s390. rt_sigframe is always
2902 the larger one, so don't even bother with sigframe. */
2903 const int sizeof_rt_sigframe = (tdep->abi == ABI_LINUX_ZSERIES ?
2904 160 + 8 + 128 + 1024 : 96 + 8 + 128 + 1000);
2908 for (i = 0; i < 16; i++)
2910 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
2912 if (tdep->gpr_full_regnum != -1)
2913 if (record_full_arch_list_add_reg (regcache, S390_R0_UPPER_REGNUM + i))
2916 if (record_full_arch_list_add_reg (regcache, S390_PSWA_REGNUM))
2918 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
2921 /* Record the change in the stack.
2922 frame-size = sizeof (struct rt_sigframe) + SIGNAL_FRAMESIZE */
2923 regcache_raw_read_unsigned (regcache, S390_SP_REGNUM, &sp);
2924 sp -= sizeof_rt_sigframe;
2926 if (record_full_arch_list_add_mem (sp, sizeof_rt_sigframe))
2929 if (record_full_arch_list_add_end ())
2935 /* Frame base handling. */
2938 s390_frame_base_address (struct frame_info *this_frame, void **this_cache)
2940 struct s390_unwind_cache *info
2941 = s390_frame_unwind_cache (this_frame, this_cache);
2942 return info->frame_base;
2946 s390_local_base_address (struct frame_info *this_frame, void **this_cache)
2948 struct s390_unwind_cache *info
2949 = s390_frame_unwind_cache (this_frame, this_cache);
2950 return info->local_base;
2953 static const struct frame_base s390_frame_base = {
2955 s390_frame_base_address,
2956 s390_local_base_address,
2957 s390_local_base_address
2961 s390_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
2963 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2965 pc = frame_unwind_register_unsigned (next_frame, tdep->pc_regnum);
2966 return gdbarch_addr_bits_remove (gdbarch, pc);
2970 s390_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
2973 sp = frame_unwind_register_unsigned (next_frame, S390_SP_REGNUM);
2974 return gdbarch_addr_bits_remove (gdbarch, sp);
2978 /* DWARF-2 frame support. */
2980 static struct value *
2981 s390_dwarf2_prev_register (struct frame_info *this_frame, void **this_cache,
2984 return s390_unwind_pseudo_register (this_frame, regnum);
2988 s390_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
2989 struct dwarf2_frame_state_reg *reg,
2990 struct frame_info *this_frame)
2992 /* The condition code (and thus PSW mask) is call-clobbered. */
2993 if (regnum == S390_PSWM_REGNUM)
2994 reg->how = DWARF2_FRAME_REG_UNDEFINED;
2996 /* The PSW address unwinds to the return address. */
2997 else if (regnum == S390_PSWA_REGNUM)
2998 reg->how = DWARF2_FRAME_REG_RA;
3000 /* Fixed registers are call-saved or call-clobbered
3001 depending on the ABI in use. */
3002 else if (regnum < S390_NUM_REGS)
3004 if (s390_register_call_saved (gdbarch, regnum))
3005 reg->how = DWARF2_FRAME_REG_SAME_VALUE;
3007 reg->how = DWARF2_FRAME_REG_UNDEFINED;
3010 /* We install a special function to unwind pseudos. */
3013 reg->how = DWARF2_FRAME_REG_FN;
3014 reg->loc.fn = s390_dwarf2_prev_register;
3019 /* Dummy function calls. */
3021 /* Unwrap any single-field structs in TYPE and return the effective
3022 "inner" type. E.g., yield "float" for all these cases:
3026 struct { struct { float x; } x; };
3027 struct { struct { struct { float x; } x; } x; };
3029 However, if an inner type is smaller than MIN_SIZE, abort the
3032 static struct type *
3033 s390_effective_inner_type (struct type *type, unsigned int min_size)
3035 while (TYPE_CODE (type) == TYPE_CODE_STRUCT
3036 && TYPE_NFIELDS (type) == 1)
3038 struct type *inner = check_typedef (TYPE_FIELD_TYPE (type, 0));
3040 if (TYPE_LENGTH (inner) < min_size)
3048 /* Return non-zero if TYPE should be passed like "float" or
3052 s390_function_arg_float (struct type *type)
3054 /* Note that long double as well as complex types are intentionally
3056 if (TYPE_LENGTH (type) > 8)
3059 /* A struct containing just a float or double is passed like a float
3061 type = s390_effective_inner_type (type, 0);
3063 return (TYPE_CODE (type) == TYPE_CODE_FLT
3064 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT);
3067 /* Return non-zero if TYPE should be passed like a vector. */
3070 s390_function_arg_vector (struct type *type)
3072 if (TYPE_LENGTH (type) > 16)
3075 /* Structs containing just a vector are passed like a vector. */
3076 type = s390_effective_inner_type (type, TYPE_LENGTH (type));
3078 return TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type);
3081 /* Determine whether N is a power of two. */
3084 is_power_of_two (unsigned int n)
3086 return n && ((n & (n - 1)) == 0);
3089 /* For an argument whose type is TYPE and which is not passed like a
3090 float or vector, return non-zero if it should be passed like "int"
3094 s390_function_arg_integer (struct type *type)
3096 enum type_code code = TYPE_CODE (type);
3098 if (TYPE_LENGTH (type) > 8)
3101 if (code == TYPE_CODE_INT
3102 || code == TYPE_CODE_ENUM
3103 || code == TYPE_CODE_RANGE
3104 || code == TYPE_CODE_CHAR
3105 || code == TYPE_CODE_BOOL
3106 || code == TYPE_CODE_PTR
3107 || code == TYPE_CODE_REF)
3110 return ((code == TYPE_CODE_UNION || code == TYPE_CODE_STRUCT)
3111 && is_power_of_two (TYPE_LENGTH (type)));
3114 /* Argument passing state: Internal data structure passed to helper
3115 routines of s390_push_dummy_call. */
3117 struct s390_arg_state
3119 /* Register cache, or NULL, if we are in "preparation mode". */
3120 struct regcache *regcache;
3121 /* Next available general/floating-point/vector register for
3122 argument passing. */
3124 /* Current pointer to copy area (grows downwards). */
3126 /* Current pointer to parameter area (grows upwards). */
3130 /* Prepare one argument ARG for a dummy call and update the argument
3131 passing state AS accordingly. If the regcache field in AS is set,
3132 operate in "write mode" and write ARG into the inferior. Otherwise
3133 run "preparation mode" and skip all updates to the inferior. */
3136 s390_handle_arg (struct s390_arg_state *as, struct value *arg,
3137 struct gdbarch_tdep *tdep, int word_size,
3138 enum bfd_endian byte_order, int is_unnamed)
3140 struct type *type = check_typedef (value_type (arg));
3141 unsigned int length = TYPE_LENGTH (type);
3142 int write_mode = as->regcache != NULL;
3144 if (s390_function_arg_float (type))
3146 /* The GNU/Linux for S/390 ABI uses FPRs 0 and 2 to pass
3147 arguments. The GNU/Linux for zSeries ABI uses 0, 2, 4, and
3149 if (as->fr <= (tdep->abi == ABI_LINUX_S390 ? 2 : 6))
3151 /* When we store a single-precision value in an FP register,
3152 it occupies the leftmost bits. */
3154 regcache_cooked_write_part (as->regcache,
3155 S390_F0_REGNUM + as->fr,
3157 value_contents (arg));
3162 /* When we store a single-precision value in a stack slot,
3163 it occupies the rightmost bits. */
3164 as->argp = align_up (as->argp + length, word_size);
3166 write_memory (as->argp - length, value_contents (arg),
3170 else if (tdep->vector_abi == S390_VECTOR_ABI_128
3171 && s390_function_arg_vector (type))
3173 static const char use_vr[] = {24, 26, 28, 30, 25, 27, 29, 31};
3175 if (!is_unnamed && as->vr < ARRAY_SIZE (use_vr))
3177 int regnum = S390_V24_REGNUM + use_vr[as->vr] - 24;
3180 regcache_cooked_write_part (as->regcache, regnum,
3182 value_contents (arg));
3188 write_memory (as->argp, value_contents (arg), length);
3189 as->argp = align_up (as->argp + length, word_size);
3192 else if (s390_function_arg_integer (type) && length <= word_size)
3194 /* Initialize it just to avoid a GCC false warning. */
3199 /* Place value in least significant bits of the register or
3200 memory word and sign- or zero-extend to full word size.
3201 This also applies to a struct or union. */
3202 val = TYPE_UNSIGNED (type)
3203 ? extract_unsigned_integer (value_contents (arg),
3205 : extract_signed_integer (value_contents (arg),
3206 length, byte_order);
3212 regcache_cooked_write_unsigned (as->regcache,
3213 S390_R0_REGNUM + as->gr,
3220 write_memory_unsigned_integer (as->argp, word_size,
3222 as->argp += word_size;
3225 else if (s390_function_arg_integer (type) && length == 8)
3231 regcache_cooked_write (as->regcache,
3232 S390_R0_REGNUM + as->gr,
3233 value_contents (arg));
3234 regcache_cooked_write (as->regcache,
3235 S390_R0_REGNUM + as->gr + 1,
3236 value_contents (arg) + word_size);
3242 /* If we skipped r6 because we couldn't fit a DOUBLE_ARG
3243 in it, then don't go back and use it again later. */
3247 write_memory (as->argp, value_contents (arg), length);
3253 /* This argument type is never passed in registers. Place the
3254 value in the copy area and pass a pointer to it. Use 8-byte
3255 alignment as a conservative assumption. */
3256 as->copy = align_down (as->copy - length, 8);
3258 write_memory (as->copy, value_contents (arg), length);
3263 regcache_cooked_write_unsigned (as->regcache,
3264 S390_R0_REGNUM + as->gr,
3271 write_memory_unsigned_integer (as->argp, word_size,
3272 byte_order, as->copy);
3273 as->argp += word_size;
3278 /* Put the actual parameter values pointed to by ARGS[0..NARGS-1] in
3279 place to be passed to a function, as specified by the "GNU/Linux
3280 for S/390 ELF Application Binary Interface Supplement".
3282 SP is the current stack pointer. We must put arguments, links,
3283 padding, etc. whereever they belong, and return the new stack
3286 If STRUCT_RETURN is non-zero, then the function we're calling is
3287 going to return a structure by value; STRUCT_ADDR is the address of
3288 a block we've allocated for it on the stack.
3290 Our caller has taken care of any type promotions needed to satisfy
3291 prototypes or the old K&R argument-passing rules. */
3294 s390_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
3295 struct regcache *regcache, CORE_ADDR bp_addr,
3296 int nargs, struct value **args, CORE_ADDR sp,
3297 int struct_return, CORE_ADDR struct_addr)
3299 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3300 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
3301 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3303 struct s390_arg_state arg_state, arg_prep;
3304 CORE_ADDR param_area_start, new_sp;
3305 struct type *ftype = check_typedef (value_type (function));
3307 if (TYPE_CODE (ftype) == TYPE_CODE_PTR)
3308 ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
3311 arg_prep.gr = struct_return ? 3 : 2;
3315 arg_prep.regcache = NULL;
3317 /* Initialize arg_state for "preparation mode". */
3318 arg_state = arg_prep;
3320 /* Update arg_state.copy with the start of the reference-to-copy area
3321 and arg_state.argp with the size of the parameter area. */
3322 for (i = 0; i < nargs; i++)
3323 s390_handle_arg (&arg_state, args[i], tdep, word_size, byte_order,
3324 TYPE_VARARGS (ftype) && i >= TYPE_NFIELDS (ftype));
3326 param_area_start = align_down (arg_state.copy - arg_state.argp, 8);
3328 /* Allocate the standard frame areas: the register save area, the
3329 word reserved for the compiler, and the back chain pointer. */
3330 new_sp = param_area_start - (16 * word_size + 32);
3332 /* Now we have the final stack pointer. Make sure we didn't
3333 underflow; on 31-bit, this would result in addresses with the
3334 high bit set, which causes confusion elsewhere. Note that if we
3335 error out here, stack and registers remain untouched. */
3336 if (gdbarch_addr_bits_remove (gdbarch, new_sp) != new_sp)
3337 error (_("Stack overflow"));
3339 /* Pass the structure return address in general register 2. */
3341 regcache_cooked_write_unsigned (regcache, S390_R2_REGNUM, struct_addr);
3343 /* Initialize arg_state for "write mode". */
3344 arg_state = arg_prep;
3345 arg_state.argp = param_area_start;
3346 arg_state.regcache = regcache;
3348 /* Write all parameters. */
3349 for (i = 0; i < nargs; i++)
3350 s390_handle_arg (&arg_state, args[i], tdep, word_size, byte_order,
3351 TYPE_VARARGS (ftype) && i >= TYPE_NFIELDS (ftype));
3353 /* Store return PSWA. In 31-bit mode, keep addressing mode bit. */
3357 regcache_cooked_read_unsigned (regcache, S390_PSWA_REGNUM, &pswa);
3358 bp_addr = (bp_addr & 0x7fffffff) | (pswa & 0x80000000);
3360 regcache_cooked_write_unsigned (regcache, S390_RETADDR_REGNUM, bp_addr);
3362 /* Store updated stack pointer. */
3363 regcache_cooked_write_unsigned (regcache, S390_SP_REGNUM, new_sp);
3365 /* We need to return the 'stack part' of the frame ID,
3366 which is actually the top of the register save area. */
3367 return param_area_start;
3370 /* Assuming THIS_FRAME is a dummy, return the frame ID of that
3371 dummy frame. The frame ID's base needs to match the TOS value
3372 returned by push_dummy_call, and the PC match the dummy frame's
3374 static struct frame_id
3375 s390_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
3377 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
3378 CORE_ADDR sp = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
3379 sp = gdbarch_addr_bits_remove (gdbarch, sp);
3381 return frame_id_build (sp + 16*word_size + 32,
3382 get_frame_pc (this_frame));
3386 s390_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
3388 /* Both the 32- and 64-bit ABI's say that the stack pointer should
3389 always be aligned on an eight-byte boundary. */
3394 /* Helper for s390_return_value: Set or retrieve a function return
3395 value if it resides in a register. */
3398 s390_register_return_value (struct gdbarch *gdbarch, struct type *type,
3399 struct regcache *regcache,
3400 gdb_byte *out, const gdb_byte *in)
3402 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3403 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
3404 int length = TYPE_LENGTH (type);
3405 int code = TYPE_CODE (type);
3407 if (code == TYPE_CODE_FLT || code == TYPE_CODE_DECFLOAT)
3409 /* Float-like value: left-aligned in f0. */
3411 regcache_cooked_write_part (regcache, S390_F0_REGNUM,
3414 regcache_cooked_read_part (regcache, S390_F0_REGNUM,
3417 else if (code == TYPE_CODE_ARRAY)
3419 /* Vector: left-aligned in v24. */
3421 regcache_cooked_write_part (regcache, S390_V24_REGNUM,
3424 regcache_cooked_read_part (regcache, S390_V24_REGNUM,
3427 else if (length <= word_size)
3429 /* Integer: zero- or sign-extended in r2. */
3431 regcache_cooked_read_part (regcache, S390_R2_REGNUM,
3432 word_size - length, length, out);
3433 else if (TYPE_UNSIGNED (type))
3434 regcache_cooked_write_unsigned
3435 (regcache, S390_R2_REGNUM,
3436 extract_unsigned_integer (in, length, byte_order));
3438 regcache_cooked_write_signed
3439 (regcache, S390_R2_REGNUM,
3440 extract_signed_integer (in, length, byte_order));
3442 else if (length == 2 * word_size)
3444 /* Double word: in r2 and r3. */
3447 regcache_cooked_write (regcache, S390_R2_REGNUM, in);
3448 regcache_cooked_write (regcache, S390_R3_REGNUM,
3453 regcache_cooked_read (regcache, S390_R2_REGNUM, out);
3454 regcache_cooked_read (regcache, S390_R3_REGNUM,
3459 internal_error (__FILE__, __LINE__, _("invalid return type"));
3463 /* Implement the 'return_value' gdbarch method. */
3465 static enum return_value_convention
3466 s390_return_value (struct gdbarch *gdbarch, struct value *function,
3467 struct type *type, struct regcache *regcache,
3468 gdb_byte *out, const gdb_byte *in)
3470 enum return_value_convention rvc;
3472 type = check_typedef (type);
3474 switch (TYPE_CODE (type))
3476 case TYPE_CODE_STRUCT:
3477 case TYPE_CODE_UNION:
3478 case TYPE_CODE_COMPLEX:
3479 rvc = RETURN_VALUE_STRUCT_CONVENTION;
3481 case TYPE_CODE_ARRAY:
3482 rvc = (gdbarch_tdep (gdbarch)->vector_abi == S390_VECTOR_ABI_128
3483 && TYPE_LENGTH (type) <= 16 && TYPE_VECTOR (type))
3484 ? RETURN_VALUE_REGISTER_CONVENTION
3485 : RETURN_VALUE_STRUCT_CONVENTION;
3488 rvc = TYPE_LENGTH (type) <= 8
3489 ? RETURN_VALUE_REGISTER_CONVENTION
3490 : RETURN_VALUE_STRUCT_CONVENTION;
3493 if (in != NULL || out != NULL)
3495 if (rvc == RETURN_VALUE_REGISTER_CONVENTION)
3496 s390_register_return_value (gdbarch, type, regcache, out, in);
3497 else if (in != NULL)
3498 error (_("Cannot set function return value."));
3500 error (_("Function return value unknown."));
3508 constexpr gdb_byte s390_break_insn[] = { 0x0, 0x1 };
3510 typedef BP_MANIPULATION (s390_break_insn) s390_breakpoint;
3512 /* Address handling. */
3515 s390_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
3517 return addr & 0x7fffffff;
3521 s390_address_class_type_flags (int byte_size, int dwarf2_addr_class)
3524 return TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
3530 s390_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
3532 if (type_flags & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1)
3539 s390_address_class_name_to_type_flags (struct gdbarch *gdbarch,
3541 int *type_flags_ptr)
3543 if (strcmp (name, "mode32") == 0)
3545 *type_flags_ptr = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
3552 /* Implement gdbarch_gcc_target_options. GCC does not know "-m32" or
3553 "-mcmodel=large". */
3556 s390_gcc_target_options (struct gdbarch *gdbarch)
3558 return xstrdup (gdbarch_ptr_bit (gdbarch) == 64 ? "-m64" : "-m31");
3561 /* Implement gdbarch_gnu_triplet_regexp. Target triplets are "s390-*"
3562 for 31-bit and "s390x-*" for 64-bit, while the BFD arch name is
3563 always "s390". Note that an s390x compiler supports "-m31" as
3567 s390_gnu_triplet_regexp (struct gdbarch *gdbarch)
3572 /* Implementation of `gdbarch_stap_is_single_operand', as defined in
3576 s390_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
3578 return ((isdigit (*s) && s[1] == '(' && s[2] == '%') /* Displacement
3580 || *s == '%' /* Register access. */
3581 || isdigit (*s)); /* Literal number. */
3584 /* Process record and replay helpers. */
3586 /* Takes the intermediate sum of address calculations and masks off upper
3587 bits according to current addressing mode. */
3590 s390_record_address_mask (struct gdbarch *gdbarch, struct regcache *regcache,
3592 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3593 ULONGEST pswm, pswa;
3595 if (tdep->abi == ABI_LINUX_S390)
3597 regcache_raw_read_unsigned (regcache, S390_PSWA_REGNUM, &pswa);
3598 am = pswa >> 31 & 1;
3602 regcache_raw_read_unsigned (regcache, S390_PSWM_REGNUM, &pswm);
3603 am = pswm >> 31 & 3;
3608 return val & 0xffffff;
3610 return val & 0x7fffffff;
3614 fprintf_unfiltered (gdb_stdlog, "Warning: Addressing mode %d used.", am);
3619 /* Calculates memory address using pre-calculated index, raw instruction word
3620 with b and d/dl fields, and raw instruction byte with dh field. Index and
3621 dh should be set to 0 if unused. */
3624 s390_record_calc_disp_common (struct gdbarch *gdbarch, struct regcache *regcache,
3625 ULONGEST x, uint16_t bd, int8_t dh)
3627 uint8_t rb = bd >> 12 & 0xf;
3628 int32_t d = (bd & 0xfff) | ((int32_t)dh << 12);
3630 CORE_ADDR res = d + x;
3633 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + rb, &b);
3636 return s390_record_address_mask (gdbarch, regcache, res);
3639 /* Calculates memory address using raw x, b + d/dl, dh fields from
3640 instruction. rx and dh should be set to 0 if unused. */
3643 s390_record_calc_disp (struct gdbarch *gdbarch, struct regcache *regcache,
3644 uint8_t rx, uint16_t bd, int8_t dh)
3648 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + rx, &x);
3649 return s390_record_calc_disp_common (gdbarch, regcache, x, bd, dh);
3652 /* Calculates memory address for VSCE[GF] instructions. */
3655 s390_record_calc_disp_vsce (struct gdbarch *gdbarch, struct regcache *regcache,
3656 uint8_t vx, uint8_t el, uint8_t es, uint16_t bd,
3657 int8_t dh, CORE_ADDR *res)
3659 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3660 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3663 if (tdep->v0_full_regnum == -1 || el * es >= 16)
3666 regcache_cooked_read (regcache, tdep->v0_full_regnum + vx, buf);
3668 regcache_raw_read (regcache, S390_V16_REGNUM + vx - 16, buf);
3669 x = extract_unsigned_integer (buf + el * es, es, byte_order);
3670 *res = s390_record_calc_disp_common (gdbarch, regcache, x, bd, dh);
3674 /* Calculates memory address for instructions with relative long addressing. */
3677 s390_record_calc_rl (struct gdbarch *gdbarch, struct regcache *regcache,
3678 CORE_ADDR addr, uint16_t i1, uint16_t i2)
3680 int32_t ri = i1 << 16 | i2;
3681 return s390_record_address_mask (gdbarch, regcache, addr + (LONGEST)ri * 2);
3684 /* Population count helper. */
3686 static int s390_popcnt (unsigned int x) {
3697 /* Record 64-bit register. */
3700 s390_record_gpr_g (struct gdbarch *gdbarch, struct regcache *regcache, int i)
3702 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3703 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
3705 if (tdep->abi == ABI_LINUX_S390)
3706 if (record_full_arch_list_add_reg (regcache, S390_R0_UPPER_REGNUM + i))
3711 /* Record high 32 bits of a register. */
3714 s390_record_gpr_h (struct gdbarch *gdbarch, struct regcache *regcache, int i)
3716 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
3717 if (tdep->abi == ABI_LINUX_S390)
3719 if (record_full_arch_list_add_reg (regcache, S390_R0_UPPER_REGNUM + i))
3724 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
3730 /* Record vector register. */
3733 s390_record_vr (struct gdbarch *gdbarch, struct regcache *regcache, int i)
3737 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + i))
3739 if (record_full_arch_list_add_reg (regcache, S390_V0_LOWER_REGNUM + i))
3744 if (record_full_arch_list_add_reg (regcache, S390_V16_REGNUM + i - 16))
3751 s390_process_record (struct gdbarch *gdbarch, struct regcache *regcache,
3754 uint16_t insn[3] = {0};
3755 /* Instruction as bytes. */
3757 /* Instruction as nibbles. */
3759 /* Instruction vector registers. */
3761 CORE_ADDR oaddr, oaddr2, oaddr3;
3764 /* if EX/EXRL instruction used, here's the reg parameter */
3766 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
3768 /* Attempting to use EX or EXRL jumps back here */
3771 /* Read instruction. */
3772 insn[0] = read_memory_unsigned_integer (addr, 2, byte_order);
3773 /* If execute was involved, do the adjustment. */
3775 insn[0] |= ex & 0xff;
3776 /* Two highest bits determine instruction size. */
3777 if (insn[0] >= 0x4000)
3778 insn[1] = read_memory_unsigned_integer (addr+2, 2, byte_order);
3780 /* Not necessary, but avoids uninitialized variable warnings. */
3782 if (insn[0] >= 0xc000)
3783 insn[2] = read_memory_unsigned_integer (addr+4, 2, byte_order);
3786 /* Split instruction into bytes and nibbles. */
3787 for (i = 0; i < 3; i++)
3789 ibyte[i*2] = insn[i] >> 8 & 0xff;
3790 ibyte[i*2+1] = insn[i] & 0xff;
3792 for (i = 0; i < 6; i++)
3794 inib[i*2] = ibyte[i] >> 4 & 0xf;
3795 inib[i*2+1] = ibyte[i] & 0xf;
3797 /* Compute vector registers, if applicable. */
3798 ivec[0] = (inib[9] >> 3 & 1) << 4 | inib[2];
3799 ivec[1] = (inib[9] >> 2 & 1) << 4 | inib[3];
3800 ivec[2] = (inib[9] >> 1 & 1) << 4 | inib[4];
3801 ivec[3] = (inib[9] >> 0 & 1) << 4 | inib[8];
3805 /* 0x00 undefined */
3808 /* E-format instruction */
3811 /* 0x00 undefined */
3812 /* 0x01 unsupported: PR - program return */
3813 /* 0x02 unsupported: UPT */
3814 /* 0x03 undefined */
3815 /* 0x04 privileged: PTFF - perform timing facility function */
3816 /* 0x05-0x06 undefined */
3817 /* 0x07 privileged: SCKPF - set clock programmable field */
3818 /* 0x08-0x09 undefined */
3820 case 0x0a: /* PFPO - perform floating point operation */
3821 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
3822 if (!(tmp & 0x80000000u))
3824 uint8_t ofc = tmp >> 16 & 0xff;
3827 case 0x00: /* HFP32 */
3828 case 0x01: /* HFP64 */
3829 case 0x05: /* BFP32 */
3830 case 0x06: /* BFP64 */
3831 case 0x08: /* DFP32 */
3832 case 0x09: /* DFP64 */
3833 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM))
3836 case 0x02: /* HFP128 */
3837 case 0x07: /* BFP128 */
3838 case 0x0a: /* DFP128 */
3839 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM))
3841 if (record_full_arch_list_add_reg (regcache, S390_F2_REGNUM))
3845 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown PFPO OFC %02x at %s.\n",
3846 ofc, paddress (gdbarch, addr));
3850 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
3853 if (record_full_arch_list_add_reg (regcache, S390_R1_REGNUM))
3855 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3859 case 0x0b: /* TAM - test address mode */
3860 case 0x0c: /* SAM24 - set address mode 24 */
3861 case 0x0d: /* SAM31 - set address mode 31 */
3862 case 0x0e: /* SAM64 - set address mode 64 */
3863 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3867 /* 0x0f-0xfe undefined */
3869 /* 0xff unsupported: TRAP */
3876 /* 0x02 undefined */
3877 /* 0x03 undefined */
3879 case 0x04: /* SPM - set program mask */
3880 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3884 case 0x05: /* BALR - branch and link */
3885 case 0x45: /* BAL - branch and link */
3886 case 0x06: /* BCTR - branch on count */
3887 case 0x46: /* BCT - branch on count */
3888 case 0x0d: /* BASR - branch and save */
3889 case 0x4d: /* BAS - branch and save */
3890 case 0x84: /* BRXH - branch relative on index high */
3891 case 0x85: /* BRXLE - branch relative on index low or equal */
3892 case 0x86: /* BXH - branch on index high */
3893 case 0x87: /* BXLE - branch on index low or equal */
3894 /* BA[SL]* use native-size destination for linkage info, BCT*, BRX*, BX*
3895 use 32-bit destination as counter. */
3896 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3900 case 0x07: /* BCR - branch on condition */
3901 case 0x47: /* BC - branch on condition */
3902 /* No effect other than PC transfer. */
3905 /* 0x08 undefined */
3906 /* 0x09 undefined */
3909 /* SVC - supervisor call */
3910 if (s390_linux_syscall_record (regcache, ibyte[1]))
3914 case 0x0b: /* BSM - branch and set mode */
3916 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3918 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3922 case 0x0c: /* BASSM - branch and save and set mode */
3923 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3925 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3929 case 0x0e: /* MVCL - move long [interruptible] */
3930 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[2], &tmp);
3931 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
3932 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[2] | 1), &tmp);
3934 if (record_full_arch_list_add_mem (oaddr, tmp))
3936 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3938 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
3940 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
3942 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[3] | 1)))
3944 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3948 case 0x0f: /* CLCL - compare logical long [interruptible] */
3949 case 0xa9: /* CLCLE - compare logical long extended [partial] */
3950 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3952 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
3954 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
3956 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[3] | 1)))
3958 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3962 case 0x10: /* LPR - load positive */
3963 case 0x11: /* LNR - load negative */
3964 case 0x12: /* LTR - load and test */
3965 case 0x13: /* LCR - load complement */
3966 case 0x14: /* NR - and */
3967 case 0x16: /* OR - or */
3968 case 0x17: /* XR - xor */
3969 case 0x1a: /* AR - add */
3970 case 0x1b: /* SR - subtract */
3971 case 0x1e: /* ALR - add logical */
3972 case 0x1f: /* SLR - subtract logical */
3973 case 0x54: /* N - and */
3974 case 0x56: /* O - or */
3975 case 0x57: /* X - xor */
3976 case 0x5a: /* A - add */
3977 case 0x5b: /* S - subtract */
3978 case 0x5e: /* AL - add logical */
3979 case 0x5f: /* SL - subtract logical */
3980 case 0x4a: /* AH - add halfword */
3981 case 0x4b: /* SH - subtract halfword */
3982 case 0x8a: /* SRA - shift right single */
3983 case 0x8b: /* SLA - shift left single */
3984 case 0xbf: /* ICM - insert characters under mask */
3985 /* 32-bit destination + flags */
3986 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
3988 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
3992 case 0x15: /* CLR - compare logical */
3993 case 0x55: /* CL - compare logical */
3994 case 0x19: /* CR - compare */
3995 case 0x29: /* CDR - compare */
3996 case 0x39: /* CER - compare */
3997 case 0x49: /* CH - compare halfword */
3998 case 0x59: /* C - compare */
3999 case 0x69: /* CD - compare */
4000 case 0x79: /* CE - compare */
4001 case 0x91: /* TM - test under mask */
4002 case 0x95: /* CLI - compare logical */
4003 case 0xbd: /* CLM - compare logical under mask */
4004 case 0xd5: /* CLC - compare logical */
4005 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4009 case 0x18: /* LR - load */
4010 case 0x48: /* LH - load halfword */
4011 case 0x58: /* L - load */
4012 case 0x41: /* LA - load address */
4013 case 0x43: /* IC - insert character */
4014 case 0x4c: /* MH - multiply halfword */
4015 case 0x71: /* MS - multiply single */
4016 case 0x88: /* SRL - shift right single logical */
4017 case 0x89: /* SLL - shift left single logical */
4018 /* 32-bit, 8-bit (IC), or native width (LA) destination, no flags */
4019 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4023 case 0x1c: /* MR - multiply */
4024 case 0x5c: /* M - multiply */
4025 case 0x1d: /* DR - divide */
4026 case 0x5d: /* D - divide */
4027 case 0x8c: /* SRDL - shift right double logical */
4028 case 0x8d: /* SLDL - shift left double logical */
4029 /* 32-bit pair destination, no flags */
4030 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4032 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
4036 case 0x20: /* LPDR - load positive */
4037 case 0x30: /* LPER - load positive */
4038 case 0x21: /* LNDR - load negative */
4039 case 0x31: /* LNER - load negative */
4040 case 0x22: /* LTDR - load and test */
4041 case 0x32: /* LTER - load and test */
4042 case 0x23: /* LCDR - load complement */
4043 case 0x33: /* LCER - load complement */
4044 case 0x2a: /* ADR - add */
4045 case 0x3a: /* AER - add */
4046 case 0x6a: /* AD - add */
4047 case 0x7a: /* AE - add */
4048 case 0x2b: /* SDR - subtract */
4049 case 0x3b: /* SER - subtract */
4050 case 0x6b: /* SD - subtract */
4051 case 0x7b: /* SE - subtract */
4052 case 0x2e: /* AWR - add unnormalized */
4053 case 0x3e: /* AUR - add unnormalized */
4054 case 0x6e: /* AW - add unnormalized */
4055 case 0x7e: /* AU - add unnormalized */
4056 case 0x2f: /* SWR - subtract unnormalized */
4057 case 0x3f: /* SUR - subtract unnormalized */
4058 case 0x6f: /* SW - subtract unnormalized */
4059 case 0x7f: /* SU - subtract unnormalized */
4060 /* float destination + flags */
4061 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
4063 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4067 case 0x24: /* HDR - halve */
4068 case 0x34: /* HER - halve */
4069 case 0x25: /* LDXR - load rounded */
4070 case 0x35: /* LEDR - load rounded */
4071 case 0x28: /* LDR - load */
4072 case 0x38: /* LER - load */
4073 case 0x68: /* LD - load */
4074 case 0x78: /* LE - load */
4075 case 0x2c: /* MDR - multiply */
4076 case 0x3c: /* MDER - multiply */
4077 case 0x6c: /* MD - multiply */
4078 case 0x7c: /* MDE - multiply */
4079 case 0x2d: /* DDR - divide */
4080 case 0x3d: /* DER - divide */
4081 case 0x6d: /* DD - divide */
4082 case 0x7d: /* DE - divide */
4083 /* float destination, no flags */
4084 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
4088 case 0x26: /* MXR - multiply */
4089 case 0x27: /* MXDR - multiply */
4090 case 0x67: /* MXD - multiply */
4091 /* float pair destination, no flags */
4092 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
4094 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[2] | 2)))
4098 case 0x36: /* AXR - add */
4099 case 0x37: /* SXR - subtract */
4100 /* float pair destination + flags */
4101 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
4103 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[2] | 2)))
4105 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4109 case 0x40: /* STH - store halfword */
4110 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
4111 if (record_full_arch_list_add_mem (oaddr, 2))
4115 case 0x42: /* STC - store character */
4116 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
4117 if (record_full_arch_list_add_mem (oaddr, 1))
4121 case 0x44: /* EX - execute */
4124 fprintf_unfiltered (gdb_stdlog, "Warning: Double execute at %s.\n",
4125 paddress (gdbarch, addr));
4128 addr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
4131 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[2], &tmp);
4140 case 0x4e: /* CVD - convert to decimal */
4141 case 0x60: /* STD - store */
4142 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
4143 if (record_full_arch_list_add_mem (oaddr, 8))
4147 case 0x4f: /* CVB - convert to binary */
4148 /* 32-bit gpr destination + FPC (DXC write) */
4149 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4151 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4155 case 0x50: /* ST - store */
4156 case 0x70: /* STE - store */
4157 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
4158 if (record_full_arch_list_add_mem (oaddr, 4))
4162 case 0x51: /* LAE - load address extended */
4163 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4165 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + inib[2]))
4169 /* 0x52 undefined */
4170 /* 0x53 undefined */
4172 /* 0x61-0x66 undefined */
4174 /* 0x72-0x77 undefined */
4176 /* 0x80 privileged: SSM - set system mask */
4177 /* 0x81 undefined */
4178 /* 0x82 privileged: LPSW - load PSW */
4179 /* 0x83 privileged: diagnose */
4181 case 0x8e: /* SRDA - shift right double */
4182 case 0x8f: /* SLDA - shift left double */
4183 /* 32-bit pair destination + flags */
4184 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4186 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
4188 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4192 case 0x90: /* STM - store multiple */
4193 case 0x9b: /* STAM - store access multiple */
4194 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4195 if (inib[2] <= inib[3])
4196 n = inib[3] - inib[2] + 1;
4198 n = inib[3] + 0x10 - inib[2] + 1;
4199 if (record_full_arch_list_add_mem (oaddr, n * 4))
4203 case 0x92: /* MVI - move */
4204 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4205 if (record_full_arch_list_add_mem (oaddr, 1))
4209 case 0x93: /* TS - test and set */
4210 case 0x94: /* NI - and */
4211 case 0x96: /* OI - or */
4212 case 0x97: /* XI - xor */
4213 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4214 if (record_full_arch_list_add_mem (oaddr, 1))
4216 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4220 case 0x98: /* LM - load multiple */
4221 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
4222 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
4224 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
4228 /* 0x99 privileged: TRACE */
4230 case 0x9a: /* LAM - load access multiple */
4231 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
4232 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + i))
4234 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + inib[3]))
4238 /* 0x9c-0x9f privileged and obsolete (old I/O) */
4239 /* 0xa0-0xa4 undefined */
4243 /* RI-format instruction */
4244 switch (ibyte[0] << 4 | inib[3])
4246 case 0xa50: /* IIHH - insert immediate */
4247 case 0xa51: /* IIHL - insert immediate */
4248 /* high 32-bit destination */
4249 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
4253 case 0xa52: /* IILH - insert immediate */
4254 case 0xa53: /* IILL - insert immediate */
4255 case 0xa75: /* BRAS - branch relative and save */
4256 case 0xa76: /* BRCT - branch relative on count */
4257 case 0xa78: /* LHI - load halfword immediate */
4258 case 0xa7c: /* MHI - multiply halfword immediate */
4259 /* 32-bit or native destination */
4260 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4264 case 0xa54: /* NIHH - and immediate */
4265 case 0xa55: /* NIHL - and immediate */
4266 case 0xa58: /* OIHH - or immediate */
4267 case 0xa59: /* OIHL - or immediate */
4268 /* high 32-bit destination + flags */
4269 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
4271 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4275 case 0xa56: /* NILH - and immediate */
4276 case 0xa57: /* NILL - and immediate */
4277 case 0xa5a: /* OILH - or immediate */
4278 case 0xa5b: /* OILL - or immediate */
4279 case 0xa7a: /* AHI - add halfword immediate */
4280 /* 32-bit destination + flags */
4281 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4283 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4287 case 0xa5c: /* LLIHH - load logical immediate */
4288 case 0xa5d: /* LLIHL - load logical immediate */
4289 case 0xa5e: /* LLILH - load logical immediate */
4290 case 0xa5f: /* LLILL - load logical immediate */
4291 case 0xa77: /* BRCTG - branch relative on count */
4292 case 0xa79: /* LGHI - load halfword immediate */
4293 case 0xa7d: /* MGHI - multiply halfword immediate */
4294 /* 64-bit destination */
4295 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
4299 case 0xa70: /* TMLH - test under mask */
4300 case 0xa71: /* TMLL - test under mask */
4301 case 0xa72: /* TMHH - test under mask */
4302 case 0xa73: /* TMHL - test under mask */
4303 case 0xa7e: /* CHI - compare halfword immediate */
4304 case 0xa7f: /* CGHI - compare halfword immediate */
4306 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4310 case 0xa74: /* BRC - branch relative on condition */
4311 /* no register change */
4314 case 0xa7b: /* AGHI - add halfword immediate */
4315 /* 64-bit destination + flags */
4316 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
4318 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4327 /* 0xa6 undefined */
4329 case 0xa8: /* MVCLE - move long extended [partial] */
4330 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[2], &tmp);
4331 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4332 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[2] | 1), &tmp);
4333 if (record_full_arch_list_add_mem (oaddr, tmp))
4335 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
4337 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
4339 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
4341 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[3] | 1)))
4343 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4347 /* 0xaa-0xab undefined */
4348 /* 0xac privileged: STNSM - store then and system mask */
4349 /* 0xad privileged: STOSM - store then or system mask */
4350 /* 0xae privileged: SIGP - signal processor */
4351 /* 0xaf unsupported: MC - monitor call */
4352 /* 0xb0 undefined */
4353 /* 0xb1 privileged: LRA - load real address */
4358 /* S/RRD/RRE/RRF/IE-format instruction */
4361 /* 0xb200-0xb204 undefined or privileged */
4363 case 0xb205: /* STCK - store clock */
4364 case 0xb27c: /* STCKF - store clock fast */
4365 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4366 if (record_full_arch_list_add_mem (oaddr, 8))
4368 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4372 /* 0xb206-0xb219 undefined, privileged, or unsupported */
4373 /* 0xb21a unsupported: CFC */
4374 /* 0xb21b-0xb221 undefined or privileged */
4376 case 0xb222: /* IPM - insert program mask */
4377 case 0xb24f: /* EAR - extract access */
4378 case 0xb252: /* MSR - multiply single */
4379 case 0xb2ec: /* ETND - extract transaction nesting depth */
4380 case 0xb38c: /* EFPC - extract fpc */
4381 case 0xb91f: /* LRVR - load reversed */
4382 case 0xb926: /* LBR - load byte */
4383 case 0xb927: /* LHR - load halfword */
4384 case 0xb994: /* LLCR - load logical character */
4385 case 0xb995: /* LLHR - load logical halfword */
4386 case 0xb9f2: /* LOCR - load on condition */
4387 /* 32-bit gpr destination */
4388 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4392 /* 0xb223-0xb22c privileged or unsupported */
4394 case 0xb22d: /* DXR - divide */
4395 case 0xb325: /* LXDR - load lengthened */
4396 case 0xb326: /* LXER - load lengthened */
4397 case 0xb336: /* SQXR - square root */
4398 case 0xb365: /* LXR - load */
4399 case 0xb367: /* FIXR - load fp integer */
4400 case 0xb376: /* LZXR - load zero */
4401 case 0xb3b6: /* CXFR - convert from fixed */
4402 case 0xb3c6: /* CXGR - convert from fixed */
4403 case 0xb3fe: /* IEXTR - insert biased exponent */
4404 /* float pair destination */
4405 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4407 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[6] | 2)))
4411 /* 0xb22e-0xb240 undefined, privileged, or unsupported */
4413 case 0xb241: /* CKSM - checksum [partial] */
4414 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4416 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4418 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
4420 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4424 /* 0xb242-0xb243 undefined */
4426 case 0xb244: /* SQDR - square root */
4427 case 0xb245: /* SQER - square root */
4428 case 0xb324: /* LDER - load lengthened */
4429 case 0xb337: /* MEER - multiply */
4430 case 0xb366: /* LEXR - load rounded */
4431 case 0xb370: /* LPDFR - load positive */
4432 case 0xb371: /* LNDFR - load negative */
4433 case 0xb372: /* CSDFR - copy sign */
4434 case 0xb373: /* LCDFR - load complement */
4435 case 0xb374: /* LZER - load zero */
4436 case 0xb375: /* LZDR - load zero */
4437 case 0xb377: /* FIER - load fp integer */
4438 case 0xb37f: /* FIDR - load fp integer */
4439 case 0xb3b4: /* CEFR - convert from fixed */
4440 case 0xb3b5: /* CDFR - convert from fixed */
4441 case 0xb3c1: /* LDGR - load fpr from gr */
4442 case 0xb3c4: /* CEGR - convert from fixed */
4443 case 0xb3c5: /* CDGR - convert from fixed */
4444 case 0xb3f6: /* IEDTR - insert biased exponent */
4445 /* float destination */
4446 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4450 /* 0xb246-0xb24c: privileged or unsupported */
4452 case 0xb24d: /* CPYA - copy access */
4453 case 0xb24e: /* SAR - set access */
4454 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + inib[6]))
4458 /* 0xb250-0xb251 undefined or privileged */
4459 /* 0xb253-0xb254 undefined or privileged */
4461 case 0xb255: /* MVST - move string [partial] */
4466 /* Read ending byte. */
4467 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
4469 /* Get address of second operand. */
4470 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[7], &tmp);
4471 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4472 /* Search for ending byte and compute length. */
4475 if (target_read_memory (oaddr, &cur, 1))
4478 } while (cur != end);
4479 /* Get address of first operand and record it. */
4480 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
4481 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4482 if (record_full_arch_list_add_mem (oaddr, num))
4484 /* Record the registers. */
4485 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4487 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4489 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4494 /* 0xb256 undefined */
4496 case 0xb257: /* CUSE - compare until substring equal [interruptible] */
4497 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4499 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
4501 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4503 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
4505 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4509 /* 0xb258-0xb25c undefined, privileged, or unsupported */
4511 case 0xb25d: /* CLST - compare logical string [partial] */
4512 case 0xb25e: /* SRST - search string [partial] */
4513 case 0xb9be: /* SRSTU - search string unicode [partial] */
4514 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4516 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4518 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4522 /* 0xb25f-0xb262 undefined */
4524 case 0xb263: /* CMPSC - compression call [interruptible] */
4525 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
4526 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4527 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[6] | 1), &tmp);
4528 if (record_full_arch_list_add_mem (oaddr, tmp))
4530 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4532 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
4534 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4536 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
4538 if (record_full_arch_list_add_reg (regcache, S390_R1_REGNUM))
4540 /* DXC may be written */
4541 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4543 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4547 /* 0xb264-0xb277 undefined, privileged, or unsupported */
4549 case 0xb278: /* STCKE - store clock extended */
4550 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4551 if (record_full_arch_list_add_mem (oaddr, 16))
4553 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4557 /* 0xb279-0xb27b undefined or unsupported */
4558 /* 0xb27d-0xb298 undefined or privileged */
4560 case 0xb299: /* SRNM - set rounding mode */
4561 case 0xb2b8: /* SRNMB - set bfp rounding mode */
4562 case 0xb2b9: /* SRNMT - set dfp rounding mode */
4563 case 0xb29d: /* LFPC - load fpc */
4564 case 0xb2bd: /* LFAS - load fpc and signal */
4565 case 0xb384: /* SFPC - set fpc */
4566 case 0xb385: /* SFASR - set fpc and signal */
4567 case 0xb960: /* CGRT - compare and trap */
4568 case 0xb961: /* CLGRT - compare logical and trap */
4569 case 0xb972: /* CRT - compare and trap */
4570 case 0xb973: /* CLRT - compare logical and trap */
4571 /* fpc only - including possible DXC write for trapping insns */
4572 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4576 /* 0xb29a-0xb29b undefined */
4578 case 0xb29c: /* STFPC - store fpc */
4579 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4580 if (record_full_arch_list_add_mem (oaddr, 4))
4584 /* 0xb29e-0xb2a4 undefined */
4586 case 0xb2a5: /* TRE - translate extended [partial] */
4587 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
4588 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4589 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[6] | 1), &tmp);
4590 if (record_full_arch_list_add_mem (oaddr, tmp))
4592 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4594 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
4596 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4600 case 0xb2a6: /* CU21 - convert UTF-16 to UTF-8 [partial] */
4601 case 0xb2a7: /* CU12 - convert UTF-8 to UTF-16 [partial] */
4602 case 0xb9b0: /* CU14 - convert UTF-8 to UTF-32 [partial] */
4603 case 0xb9b1: /* CU24 - convert UTF-16 to UTF-32 [partial] */
4604 case 0xb9b2: /* CU41 - convert UTF-32 to UTF-8 [partial] */
4605 case 0xb9b3: /* CU42 - convert UTF-32 to UTF-16 [partial] */
4606 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
4607 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
4608 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[6] | 1), &tmp);
4609 if (record_full_arch_list_add_mem (oaddr, tmp))
4611 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4613 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
4615 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
4617 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
4619 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4623 /* 0xb2a8-0xb2af undefined */
4625 case 0xb2b0: /* STFLE - store facility list extended */
4626 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
4627 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
4629 if (record_full_arch_list_add_mem (oaddr, 8 * (tmp + 1)))
4631 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM))
4633 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4637 /* 0xb2b1-0xb2b7 undefined or privileged */
4638 /* 0xb2ba-0xb2bc undefined */
4639 /* 0xb2be-0xb2e7 undefined */
4640 /* 0xb2e9-0xb2eb undefined */
4641 /* 0xb2ed-0xb2f7 undefined */
4642 /* 0xb2f8 unsupported: TEND */
4643 /* 0xb2f9 undefined */
4645 case 0xb2e8: /* PPA - perform processor assist */
4646 case 0xb2fa: /* NIAI - next instruction access intent */
4647 /* no visible effects */
4650 /* 0xb2fb undefined */
4651 /* 0xb2fc unsupported: TABORT */
4652 /* 0xb2fd-0xb2fe undefined */
4653 /* 0xb2ff unsupported: TRAP */
4655 case 0xb300: /* LPEBR - load positive */
4656 case 0xb301: /* LNEBR - load negative */
4657 case 0xb303: /* LCEBR - load complement */
4658 case 0xb310: /* LPDBR - load positive */
4659 case 0xb311: /* LNDBR - load negative */
4660 case 0xb313: /* LCDBR - load complement */
4661 case 0xb350: /* TBEDR - convert hfp to bfp */
4662 case 0xb351: /* TBDR - convert hfp to bfp */
4663 case 0xb358: /* THDER - convert bfp to hfp */
4664 case 0xb359: /* THDR - convert bfp to hfp */
4665 /* float destination + flags */
4666 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4668 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4672 case 0xb304: /* LDEBR - load lengthened */
4673 case 0xb30c: /* MDEBR - multiply */
4674 case 0xb30d: /* DEBR - divide */
4675 case 0xb314: /* SQEBR - square root */
4676 case 0xb315: /* SQDBR - square root */
4677 case 0xb317: /* MEEBR - multiply */
4678 case 0xb31c: /* MDBR - multiply */
4679 case 0xb31d: /* DDBR - divide */
4680 case 0xb344: /* LEDBRA - load rounded */
4681 case 0xb345: /* LDXBRA - load rounded */
4682 case 0xb346: /* LEXBRA - load rounded */
4683 case 0xb357: /* FIEBRA - load fp integer */
4684 case 0xb35f: /* FIDBRA - load fp integer */
4685 case 0xb390: /* CELFBR - convert from logical */
4686 case 0xb391: /* CDLFBR - convert from logical */
4687 case 0xb394: /* CEFBR - convert from fixed */
4688 case 0xb395: /* CDFBR - convert from fixed */
4689 case 0xb3a0: /* CELGBR - convert from logical */
4690 case 0xb3a1: /* CDLGBR - convert from logical */
4691 case 0xb3a4: /* CEGBR - convert from fixed */
4692 case 0xb3a5: /* CDGBR - convert from fixed */
4693 case 0xb3d0: /* MDTR - multiply */
4694 case 0xb3d1: /* DDTR - divide */
4695 case 0xb3d4: /* LDETR - load lengthened */
4696 case 0xb3d5: /* LEDTR - load lengthened */
4697 case 0xb3d7: /* FIDTR - load fp integer */
4698 case 0xb3dd: /* LDXTR - load lengthened */
4699 case 0xb3f1: /* CDGTR - convert from fixed */
4700 case 0xb3f2: /* CDUTR - convert from unsigned packed */
4701 case 0xb3f3: /* CDSTR - convert from signed packed */
4702 case 0xb3f5: /* QADTR - quantize */
4703 case 0xb3f7: /* RRDTR - reround */
4704 case 0xb951: /* CDFTR - convert from fixed */
4705 case 0xb952: /* CDLGTR - convert from logical */
4706 case 0xb953: /* CDLFTR - convert from logical */
4707 /* float destination + fpc */
4708 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4710 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4714 case 0xb305: /* LXDBR - load lengthened */
4715 case 0xb306: /* LXEBR - load lengthened */
4716 case 0xb307: /* MXDBR - multiply */
4717 case 0xb316: /* SQXBR - square root */
4718 case 0xb34c: /* MXBR - multiply */
4719 case 0xb34d: /* DXBR - divide */
4720 case 0xb347: /* FIXBRA - load fp integer */
4721 case 0xb392: /* CXLFBR - convert from logical */
4722 case 0xb396: /* CXFBR - convert from fixed */
4723 case 0xb3a2: /* CXLGBR - convert from logical */
4724 case 0xb3a6: /* CXGBR - convert from fixed */
4725 case 0xb3d8: /* MXTR - multiply */
4726 case 0xb3d9: /* DXTR - divide */
4727 case 0xb3dc: /* LXDTR - load lengthened */
4728 case 0xb3df: /* FIXTR - load fp integer */
4729 case 0xb3f9: /* CXGTR - convert from fixed */
4730 case 0xb3fa: /* CXUTR - convert from unsigned packed */
4731 case 0xb3fb: /* CXSTR - convert from signed packed */
4732 case 0xb3fd: /* QAXTR - quantize */
4733 case 0xb3ff: /* RRXTR - reround */
4734 case 0xb959: /* CXFTR - convert from fixed */
4735 case 0xb95a: /* CXLGTR - convert from logical */
4736 case 0xb95b: /* CXLFTR - convert from logical */
4737 /* float pair destination + fpc */
4738 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4740 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[6] | 2)))
4742 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4746 case 0xb308: /* KEBR - compare and signal */
4747 case 0xb309: /* CEBR - compare */
4748 case 0xb318: /* KDBR - compare and signal */
4749 case 0xb319: /* CDBR - compare */
4750 case 0xb348: /* KXBR - compare and signal */
4751 case 0xb349: /* CXBR - compare */
4752 case 0xb3e0: /* KDTR - compare and signal */
4753 case 0xb3e4: /* CDTR - compare */
4754 case 0xb3e8: /* KXTR - compare and signal */
4755 case 0xb3ec: /* CXTR - compare */
4756 /* flags + fpc only */
4757 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4759 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4763 case 0xb302: /* LTEBR - load and test */
4764 case 0xb312: /* LTDBR - load and test */
4765 case 0xb30a: /* AEBR - add */
4766 case 0xb30b: /* SEBR - subtract */
4767 case 0xb31a: /* ADBR - add */
4768 case 0xb31b: /* SDBR - subtract */
4769 case 0xb3d2: /* ADTR - add */
4770 case 0xb3d3: /* SDTR - subtract */
4771 case 0xb3d6: /* LTDTR - load and test */
4772 /* float destination + flags + fpc */
4773 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4775 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4777 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4781 case 0xb30e: /* MAEBR - multiply and add */
4782 case 0xb30f: /* MSEBR - multiply and subtract */
4783 case 0xb31e: /* MADBR - multiply and add */
4784 case 0xb31f: /* MSDBR - multiply and subtract */
4785 /* float destination [RRD] + fpc */
4786 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[4]))
4788 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4792 /* 0xb320-0xb323 undefined */
4793 /* 0xb327-0xb32d undefined */
4795 case 0xb32e: /* MAER - multiply and add */
4796 case 0xb32f: /* MSER - multiply and subtract */
4797 case 0xb338: /* MAYLR - multiply and add unnormalized */
4798 case 0xb339: /* MYLR - multiply unnormalized */
4799 case 0xb33c: /* MAYHR - multiply and add unnormalized */
4800 case 0xb33d: /* MYHR - multiply unnormalized */
4801 case 0xb33e: /* MADR - multiply and add */
4802 case 0xb33f: /* MSDR - multiply and subtract */
4803 /* float destination [RRD] */
4804 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[4]))
4808 /* 0xb330-0xb335 undefined */
4810 case 0xb33a: /* MAYR - multiply and add unnormalized */
4811 case 0xb33b: /* MYR - multiply unnormalized */
4812 /* float pair destination [RRD] */
4813 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[4]))
4815 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[4] | 2)))
4819 case 0xb340: /* LPXBR - load positive */
4820 case 0xb341: /* LNXBR - load negative */
4821 case 0xb343: /* LCXBR - load complement */
4822 case 0xb360: /* LPXR - load positive */
4823 case 0xb361: /* LNXR - load negative */
4824 case 0xb362: /* LTXR - load and test */
4825 case 0xb363: /* LCXR - load complement */
4826 /* float pair destination + flags */
4827 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4829 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[6] | 2)))
4831 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4835 case 0xb342: /* LTXBR - load and test */
4836 case 0xb34a: /* AXBR - add */
4837 case 0xb34b: /* SXBR - subtract */
4838 case 0xb3da: /* AXTR - add */
4839 case 0xb3db: /* SXTR - subtract */
4840 case 0xb3de: /* LTXTR - load and test */
4841 /* float pair destination + flags + fpc */
4842 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4844 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[6] | 2)))
4846 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4848 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4852 /* 0xb34e-0xb34f undefined */
4853 /* 0xb352 undefined */
4855 case 0xb353: /* DIEBR - divide to integer */
4856 case 0xb35b: /* DIDBR - divide to integer */
4857 /* two float destinations + flags + fpc */
4858 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[4]))
4860 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[6]))
4862 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4864 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4868 /* 0xb354-0xb356 undefined */
4869 /* 0xb35a undefined */
4871 /* 0xb35c-0xb35e undefined */
4872 /* 0xb364 undefined */
4873 /* 0xb368 undefined */
4875 case 0xb369: /* CXR - compare */
4876 case 0xb3f4: /* CEDTR - compare biased exponent */
4877 case 0xb3fc: /* CEXTR - compare biased exponent */
4878 case 0xb920: /* CGR - compare */
4879 case 0xb921: /* CLGR - compare logical */
4880 case 0xb930: /* CGFR - compare */
4881 case 0xb931: /* CLGFR - compare logical */
4882 case 0xb9cd: /* CHHR - compare high */
4883 case 0xb9cf: /* CLHHR - compare logical high */
4884 case 0xb9dd: /* CHLR - compare high */
4885 case 0xb9df: /* CLHLR - compare logical high */
4887 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4891 /* 0xb36a-0xb36f undefined */
4892 /* 0xb377-0xb37e undefined */
4893 /* 0xb380-0xb383 undefined */
4894 /* 0xb386-0xb38b undefined */
4895 /* 0xb38d-0xb38f undefined */
4896 /* 0xb393 undefined */
4897 /* 0xb397 undefined */
4899 case 0xb398: /* CFEBR - convert to fixed */
4900 case 0xb399: /* CFDBR - convert to fixed */
4901 case 0xb39a: /* CFXBR - convert to fixed */
4902 case 0xb39c: /* CLFEBR - convert to logical */
4903 case 0xb39d: /* CLFDBR - convert to logical */
4904 case 0xb39e: /* CLFXBR - convert to logical */
4905 case 0xb941: /* CFDTR - convert to fixed */
4906 case 0xb949: /* CFXTR - convert to fixed */
4907 case 0xb943: /* CLFDTR - convert to logical */
4908 case 0xb94b: /* CLFXTR - convert to logical */
4909 /* 32-bit gpr destination + flags + fpc */
4910 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4912 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4914 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4918 /* 0xb39b undefined */
4919 /* 0xb39f undefined */
4921 /* 0xb3a3 undefined */
4922 /* 0xb3a7 undefined */
4924 case 0xb3a8: /* CGEBR - convert to fixed */
4925 case 0xb3a9: /* CGDBR - convert to fixed */
4926 case 0xb3aa: /* CGXBR - convert to fixed */
4927 case 0xb3ac: /* CLGEBR - convert to logical */
4928 case 0xb3ad: /* CLGDBR - convert to logical */
4929 case 0xb3ae: /* CLGXBR - convert to logical */
4930 case 0xb3e1: /* CGDTR - convert to fixed */
4931 case 0xb3e9: /* CGXTR - convert to fixed */
4932 case 0xb942: /* CLGDTR - convert to logical */
4933 case 0xb94a: /* CLGXTR - convert to logical */
4934 /* 64-bit gpr destination + flags + fpc */
4935 if (s390_record_gpr_g (gdbarch, regcache, inib[6]))
4937 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4939 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
4943 /* 0xb3ab undefined */
4944 /* 0xb3af-0xb3b3 undefined */
4945 /* 0xb3b7 undefined */
4947 case 0xb3b8: /* CFER - convert to fixed */
4948 case 0xb3b9: /* CFDR - convert to fixed */
4949 case 0xb3ba: /* CFXR - convert to fixed */
4950 case 0xb998: /* ALCR - add logical with carry */
4951 case 0xb999: /* SLBR - subtract logical with borrow */
4952 case 0xb9f4: /* NRK - and */
4953 case 0xb9f6: /* ORK - or */
4954 case 0xb9f7: /* XRK - xor */
4955 case 0xb9f8: /* ARK - add */
4956 case 0xb9f9: /* SRK - subtract */
4957 case 0xb9fa: /* ALRK - add logical */
4958 case 0xb9fb: /* SLRK - subtract logical */
4959 /* 32-bit gpr destination + flags */
4960 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
4962 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
4966 case 0xb3c8: /* CGER - convert to fixed */
4967 case 0xb3c9: /* CGDR - convert to fixed */
4968 case 0xb3ca: /* CGXR - convert to fixed */
4969 case 0xb900: /* LPGR - load positive */
4970 case 0xb901: /* LNGR - load negative */
4971 case 0xb902: /* LTGR - load and test */
4972 case 0xb903: /* LCGR - load complement */
4973 case 0xb908: /* AGR - add */
4974 case 0xb909: /* SGR - subtract */
4975 case 0xb90a: /* ALGR - add logical */
4976 case 0xb90b: /* SLGR - subtract logical */
4977 case 0xb910: /* LPGFR - load positive */
4978 case 0xb911: /* LNGFR - load negative */
4979 case 0xb912: /* LTGFR - load and test */
4980 case 0xb913: /* LCGFR - load complement */
4981 case 0xb918: /* AGFR - add */
4982 case 0xb919: /* SGFR - subtract */
4983 case 0xb91a: /* ALGFR - add logical */
4984 case 0xb91b: /* SLGFR - subtract logical */
4985 case 0xb980: /* NGR - and */
4986 case 0xb981: /* OGR - or */
4987 case 0xb982: /* XGR - xor */
4988 case 0xb988: /* ALCGR - add logical with carry */
4989 case 0xb989: /* SLBGR - subtract logical with borrow */
4990 case 0xb9e1: /* POPCNT - population count */
4991 case 0xb9e4: /* NGRK - and */
4992 case 0xb9e6: /* OGRK - or */
4993 case 0xb9e7: /* XGRK - xor */
4994 case 0xb9e8: /* AGRK - add */
4995 case 0xb9e9: /* SGRK - subtract */
4996 case 0xb9ea: /* ALGRK - add logical */
4997 case 0xb9eb: /* SLGRK - subtract logical */
4998 /* 64-bit gpr destination + flags */
4999 if (s390_record_gpr_g (gdbarch, regcache, inib[6]))
5001 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5005 /* 0xb3bb-0xb3c0 undefined */
5006 /* 0xb3c2-0xb3c3 undefined */
5007 /* 0xb3c7 undefined */
5008 /* 0xb3cb-0xb3cc undefined */
5010 case 0xb3cd: /* LGDR - load gr from fpr */
5011 case 0xb3e2: /* CUDTR - convert to unsigned packed */
5012 case 0xb3e3: /* CSDTR - convert to signed packed */
5013 case 0xb3e5: /* EEDTR - extract biased exponent */
5014 case 0xb3e7: /* ESDTR - extract significance */
5015 case 0xb3ed: /* EEXTR - extract biased exponent */
5016 case 0xb3ef: /* ESXTR - extract significance */
5017 case 0xb904: /* LGR - load */
5018 case 0xb906: /* LGBR - load byte */
5019 case 0xb907: /* LGHR - load halfword */
5020 case 0xb90c: /* MSGR - multiply single */
5021 case 0xb90f: /* LRVGR - load reversed */
5022 case 0xb914: /* LGFR - load */
5023 case 0xb916: /* LLGFR - load logical */
5024 case 0xb917: /* LLGTR - load logical thirty one bits */
5025 case 0xb91c: /* MSGFR - load */
5026 case 0xb946: /* BCTGR - branch on count */
5027 case 0xb984: /* LLGCR - load logical character */
5028 case 0xb985: /* LLGHR - load logical halfword */
5029 case 0xb9e2: /* LOCGR - load on condition */
5030 /* 64-bit gpr destination */
5031 if (s390_record_gpr_g (gdbarch, regcache, inib[6]))
5035 /* 0xb3ce-0xb3cf undefined */
5036 /* 0xb3e6 undefined */
5038 case 0xb3ea: /* CUXTR - convert to unsigned packed */
5039 case 0xb3eb: /* CSXTR - convert to signed packed */
5040 case 0xb90d: /* DSGR - divide single */
5041 case 0xb91d: /* DSGFR - divide single */
5042 case 0xb986: /* MLGR - multiply logical */
5043 case 0xb987: /* DLGR - divide logical */
5044 /* 64-bit gpr pair destination */
5045 if (s390_record_gpr_g (gdbarch, regcache, inib[6]))
5047 if (s390_record_gpr_g (gdbarch, regcache, inib[6] | 1))
5051 /* 0xb3ee undefined */
5052 /* 0xb3f0 undefined */
5053 /* 0xb3f8 undefined */
5055 /* 0xb905 privileged */
5057 /* 0xb90e unsupported: EREGG */
5059 /* 0xb915 undefined */
5061 case 0xb91e: /* KMAC - compute message authentication code [partial] */
5062 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5063 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5064 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5068 case 0x00: /* KMAC-Query */
5069 if (record_full_arch_list_add_mem (oaddr, 16))
5073 case 0x01: /* KMAC-DEA */
5074 case 0x02: /* KMAC-TDEA-128 */
5075 case 0x03: /* KMAC-TDEA-192 */
5076 case 0x09: /* KMAC-Encrypted-DEA */
5077 case 0x0a: /* KMAC-Encrypted-TDEA-128 */
5078 case 0x0b: /* KMAC-Encrypted-TDEA-192 */
5079 if (record_full_arch_list_add_mem (oaddr, 8))
5083 case 0x12: /* KMAC-AES-128 */
5084 case 0x13: /* KMAC-AES-192 */
5085 case 0x14: /* KMAC-AES-256 */
5086 case 0x1a: /* KMAC-Encrypted-AES-128 */
5087 case 0x1b: /* KMAC-Encrypted-AES-192 */
5088 case 0x1c: /* KMAC-Encrypted-AES-256 */
5089 if (record_full_arch_list_add_mem (oaddr, 16))
5094 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown KMAC function %02x at %s.\n",
5095 (int)tmp, paddress (gdbarch, addr));
5100 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5102 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5105 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5109 /* 0xb922-0xb924 undefined */
5110 /* 0xb925 privileged */
5111 /* 0xb928 privileged */
5112 /* 0xb929 undefined */
5114 case 0xb92a: /* KMF - cipher message with cipher feedback [partial] */
5115 case 0xb92b: /* KMO - cipher message with output feedback [partial] */
5116 case 0xb92f: /* KMC - cipher message with chaining [partial] */
5117 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5118 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5119 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5123 case 0x00: /* KM*-Query */
5124 if (record_full_arch_list_add_mem (oaddr, 16))
5128 case 0x01: /* KM*-DEA */
5129 case 0x02: /* KM*-TDEA-128 */
5130 case 0x03: /* KM*-TDEA-192 */
5131 case 0x09: /* KM*-Encrypted-DEA */
5132 case 0x0a: /* KM*-Encrypted-TDEA-128 */
5133 case 0x0b: /* KM*-Encrypted-TDEA-192 */
5134 if (record_full_arch_list_add_mem (oaddr, 8))
5138 case 0x12: /* KM*-AES-128 */
5139 case 0x13: /* KM*-AES-192 */
5140 case 0x14: /* KM*-AES-256 */
5141 case 0x1a: /* KM*-Encrypted-AES-128 */
5142 case 0x1b: /* KM*-Encrypted-AES-192 */
5143 case 0x1c: /* KM*-Encrypted-AES-256 */
5144 if (record_full_arch_list_add_mem (oaddr, 16))
5148 case 0x43: /* KMC-PRNG */
5149 /* Only valid for KMC. */
5150 if (insn[0] == 0xb92f)
5152 if (record_full_arch_list_add_mem (oaddr, 8))
5156 /* For other instructions, fallthru. */
5158 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown KM* function %02x at %s.\n",
5159 (int)tmp, paddress (gdbarch, addr));
5164 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
5165 oaddr2 = s390_record_address_mask (gdbarch, regcache, tmp);
5166 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[7] | 1), &tmp);
5167 if (record_full_arch_list_add_mem (oaddr2, tmp))
5169 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5171 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5173 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5176 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5180 case 0xb92c: /* PCC - perform cryptographic computation [partial] */
5181 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5182 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5183 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5187 case 0x00: /* PCC-Query */
5188 if (record_full_arch_list_add_mem (oaddr, 16))
5192 case 0x01: /* PCC-Compute-Last-Block-CMAC-Using-DEA */
5193 case 0x02: /* PCC-Compute-Last-Block-CMAC-Using-TDEA-128 */
5194 case 0x03: /* PCC-Compute-Last-Block-CMAC-Using-TDEA-192 */
5195 case 0x09: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-DEA */
5196 case 0x0a: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-TDEA-128 */
5197 case 0x0b: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-TDEA-192 */
5198 if (record_full_arch_list_add_mem (oaddr + 0x10, 8))
5202 case 0x12: /* PCC-Compute-Last-Block-CMAC-Using-AES-128 */
5203 case 0x13: /* PCC-Compute-Last-Block-CMAC-Using-AES-192 */
5204 case 0x14: /* PCC-Compute-Last-Block-CMAC-Using-AES-256 */
5205 case 0x1a: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-AES-128 */
5206 case 0x1b: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-AES-192 */
5207 case 0x1c: /* PCC-Compute-Last-Block-CMAC-Using-Encrypted-AES-256 */
5208 if (record_full_arch_list_add_mem (oaddr + 0x18, 16))
5212 case 0x32: /* PCC-Compute-XTS-Parameter-Using-AES-128 */
5213 if (record_full_arch_list_add_mem (oaddr + 0x30, 32))
5217 case 0x34: /* PCC-Compute-XTS-Parameter-Using-AES-256 */
5218 if (record_full_arch_list_add_mem (oaddr + 0x40, 32))
5222 case 0x3a: /* PCC-Compute-XTS-Parameter-Using-Encrypted-AES-128 */
5223 if (record_full_arch_list_add_mem (oaddr + 0x50, 32))
5227 case 0x3c: /* PCC-Compute-XTS-Parameter-Using-Encrypted-AES-256 */
5228 if (record_full_arch_list_add_mem (oaddr + 0x60, 32))
5233 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown PCC function %02x at %s.\n",
5234 (int)tmp, paddress (gdbarch, addr));
5237 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5241 case 0xb92d: /* KMCTR - cipher message with counter [partial] */
5242 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5243 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5244 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5248 case 0x00: /* KMCTR-Query */
5249 if (record_full_arch_list_add_mem (oaddr, 16))
5253 case 0x01: /* KMCTR-DEA */
5254 case 0x02: /* KMCTR-TDEA-128 */
5255 case 0x03: /* KMCTR-TDEA-192 */
5256 case 0x09: /* KMCTR-Encrypted-DEA */
5257 case 0x0a: /* KMCTR-Encrypted-TDEA-128 */
5258 case 0x0b: /* KMCTR-Encrypted-TDEA-192 */
5259 case 0x12: /* KMCTR-AES-128 */
5260 case 0x13: /* KMCTR-AES-192 */
5261 case 0x14: /* KMCTR-AES-256 */
5262 case 0x1a: /* KMCTR-Encrypted-AES-128 */
5263 case 0x1b: /* KMCTR-Encrypted-AES-192 */
5264 case 0x1c: /* KMCTR-Encrypted-AES-256 */
5268 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown KMCTR function %02x at %s.\n",
5269 (int)tmp, paddress (gdbarch, addr));
5274 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
5275 oaddr2 = s390_record_address_mask (gdbarch, regcache, tmp);
5276 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[7] | 1), &tmp);
5277 if (record_full_arch_list_add_mem (oaddr2, tmp))
5279 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5281 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5283 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5285 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[4]))
5288 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5292 case 0xb92e: /* KM - cipher message [partial] */
5293 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5294 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5295 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5299 case 0x00: /* KM-Query */
5300 if (record_full_arch_list_add_mem (oaddr, 16))
5304 case 0x01: /* KM-DEA */
5305 case 0x02: /* KM-TDEA-128 */
5306 case 0x03: /* KM-TDEA-192 */
5307 case 0x09: /* KM-Encrypted-DEA */
5308 case 0x0a: /* KM-Encrypted-TDEA-128 */
5309 case 0x0b: /* KM-Encrypted-TDEA-192 */
5310 case 0x12: /* KM-AES-128 */
5311 case 0x13: /* KM-AES-192 */
5312 case 0x14: /* KM-AES-256 */
5313 case 0x1a: /* KM-Encrypted-AES-128 */
5314 case 0x1b: /* KM-Encrypted-AES-192 */
5315 case 0x1c: /* KM-Encrypted-AES-256 */
5318 case 0x32: /* KM-XTS-AES-128 */
5319 if (record_full_arch_list_add_mem (oaddr + 0x10, 16))
5323 case 0x34: /* KM-XTS-AES-256 */
5324 if (record_full_arch_list_add_mem (oaddr + 0x20, 16))
5328 case 0x3a: /* KM-XTS-Encrypted-AES-128 */
5329 if (record_full_arch_list_add_mem (oaddr + 0x30, 16))
5333 case 0x3c: /* KM-XTS-Encrypted-AES-256 */
5334 if (record_full_arch_list_add_mem (oaddr + 0x40, 16))
5339 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown KM function %02x at %s.\n",
5340 (int)tmp, paddress (gdbarch, addr));
5345 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
5346 oaddr2 = s390_record_address_mask (gdbarch, regcache, tmp);
5347 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[7] | 1), &tmp);
5348 if (record_full_arch_list_add_mem (oaddr2, tmp))
5350 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5352 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5354 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5357 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5361 /* 0xb932-0xb93b undefined */
5363 case 0xb93c: /* PPNO - perform pseudorandom number operation [partial] */
5364 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5365 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5366 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5370 case 0x00: /* PPNO-Query */
5371 case 0x80: /* PPNO-Query */
5372 if (record_full_arch_list_add_mem (oaddr, 16))
5376 case 0x03: /* PPNO-SHA-512-DRNG - generate */
5377 if (record_full_arch_list_add_mem (oaddr, 240))
5379 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
5380 oaddr2 = s390_record_address_mask (gdbarch, regcache, tmp);
5381 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[6] | 1), &tmp);
5382 if (record_full_arch_list_add_mem (oaddr2, tmp))
5384 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5386 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
5390 case 0x83: /* PPNO-SHA-512-DRNG - seed */
5391 if (record_full_arch_list_add_mem (oaddr, 240))
5393 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5395 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5400 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown PPNO function %02x at %s.\n",
5401 (int)tmp, paddress (gdbarch, addr));
5404 /* DXC may be written */
5405 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
5407 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5411 /* 0xb93d undefined */
5413 case 0xb93e: /* KIMD - compute intermediate message digest [partial] */
5414 case 0xb93f: /* KLMD - compute last message digest [partial] */
5415 regcache_raw_read_unsigned (regcache, S390_R1_REGNUM, &tmp);
5416 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5417 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5421 case 0x00: /* K*MD-Query */
5422 if (record_full_arch_list_add_mem (oaddr, 16))
5426 case 0x01: /* K*MD-SHA-1 */
5427 if (record_full_arch_list_add_mem (oaddr, 20))
5431 case 0x02: /* K*MD-SHA-256 */
5432 if (record_full_arch_list_add_mem (oaddr, 32))
5436 case 0x03: /* K*MD-SHA-512 */
5437 if (record_full_arch_list_add_mem (oaddr, 64))
5441 case 0x41: /* KIMD-GHASH */
5442 /* Only valid for KIMD. */
5443 if (insn[0] == 0xb93e)
5445 if (record_full_arch_list_add_mem (oaddr, 16))
5449 /* For KLMD, fallthru. */
5451 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown KMAC function %02x at %s.\n",
5452 (int)tmp, paddress (gdbarch, addr));
5457 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5459 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[7] | 1)))
5462 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5466 /* 0xb940 undefined */
5467 /* 0xb944-0xb945 undefined */
5468 /* 0xb947-0xb948 undefined */
5469 /* 0xb94c-0xb950 undefined */
5470 /* 0xb954-0xb958 undefined */
5471 /* 0xb95c-0xb95f undefined */
5472 /* 0xb962-0xb971 undefined */
5473 /* 0xb974-0xb97f undefined */
5475 case 0xb983: /* FLOGR - find leftmost one */
5476 /* 64-bit gpr pair destination + flags */
5477 if (s390_record_gpr_g (gdbarch, regcache, inib[6]))
5479 if (s390_record_gpr_g (gdbarch, regcache, inib[6] | 1))
5481 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5485 /* 0xb98a privileged */
5486 /* 0xb98b-0xb98c undefined */
5488 case 0xb98d: /* EPSW - extract psw */
5489 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5492 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5496 /* 0xb98e-0xb98f privileged */
5498 case 0xb990: /* TRTT - translate two to two [partial] */
5499 case 0xb991: /* TRTO - translate two to one [partial] */
5500 case 0xb992: /* TROT - translate one to two [partial] */
5501 case 0xb993: /* TROO - translate one to one [partial] */
5502 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[6], &tmp);
5503 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
5504 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[6] | 1), &tmp);
5505 /* tmp is source length, we want destination length. Adjust. */
5506 if (insn[0] == 0xb991)
5508 if (insn[0] == 0xb992)
5510 if (record_full_arch_list_add_mem (oaddr, tmp))
5512 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5514 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
5516 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5518 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5522 case 0xb996: /* MLR - multiply logical */
5523 case 0xb997: /* DLR - divide logical */
5524 /* 32-bit gpr pair destination */
5525 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5527 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
5531 /* 0xb99a-0xb9af unsupported, privileged, or undefined */
5532 /* 0xb9b4-0xb9bc undefined */
5534 case 0xb9bd: /* TRTRE - translate and test reverse extended [partial] */
5535 case 0xb9bf: /* TRTE - translate and test extended [partial] */
5536 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[6]))
5538 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[6] | 1)))
5540 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[7]))
5542 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5546 /* 0xb9c0-0xb9c7 undefined */
5548 case 0xb9c8: /* AHHHR - add high */
5549 case 0xb9c9: /* SHHHR - subtract high */
5550 case 0xb9ca: /* ALHHHR - add logical high */
5551 case 0xb9cb: /* SLHHHR - subtract logical high */
5552 case 0xb9d8: /* AHHLR - add high */
5553 case 0xb9d9: /* SHHLR - subtract high */
5554 case 0xb9da: /* ALHHLR - add logical high */
5555 case 0xb9db: /* SLHHLR - subtract logical high */
5556 /* 32-bit high gpr destination + flags */
5557 if (s390_record_gpr_h (gdbarch, regcache, inib[6]))
5559 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5563 /* 0xb9cc undefined */
5564 /* 0xb9ce undefined */
5565 /* 0xb9d0-0xb9d7 undefined */
5566 /* 0xb9dc undefined */
5567 /* 0xb9de undefined */
5569 case 0xb9e0: /* LOCFHR - load high on condition */
5570 /* 32-bit high gpr destination */
5571 if (s390_record_gpr_h (gdbarch, regcache, inib[6]))
5575 /* 0xb9e3 undefined */
5576 /* 0xb9e5 undefined */
5577 /* 0xb9ec-0xb9f1 undefined */
5578 /* 0xb9f3 undefined */
5579 /* 0xb9f5 undefined */
5580 /* 0xb9fc-0xb9ff undefined */
5587 /* 0xb4-0xb5 undefined */
5588 /* 0xb6 privileged: STCTL - store control */
5589 /* 0xb7 privileged: LCTL - load control */
5590 /* 0xb8 undefined */
5592 case 0xba: /* CS - compare and swap */
5593 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5594 if (record_full_arch_list_add_mem (oaddr, 4))
5596 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5598 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5602 case 0xbb: /* CDS - compare double and swap */
5603 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5604 if (record_full_arch_list_add_mem (oaddr, 8))
5606 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5608 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
5610 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5614 /* 0xbc undefined */
5616 case 0xbe: /* STCM - store characters under mask */
5617 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5618 if (record_full_arch_list_add_mem (oaddr, s390_popcnt (inib[3])))
5627 /* RIL-format instruction */
5628 switch (ibyte[0] << 4 | inib[3])
5630 case 0xc00: /* LARL - load address relative long */
5631 case 0xc05: /* BRASL - branch relative and save long */
5632 case 0xc09: /* IILF - insert immediate */
5633 case 0xc21: /* MSFI - multiply single immediate */
5634 case 0xc42: /* LLHRL - load logical halfword relative long */
5635 case 0xc45: /* LHRL - load halfword relative long */
5636 case 0xc4d: /* LRL - load relative long */
5637 /* 32-bit or native gpr destination */
5638 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5642 case 0xc01: /* LGFI - load immediate */
5643 case 0xc0e: /* LLIHF - load logical immediate */
5644 case 0xc0f: /* LLILF - load logical immediate */
5645 case 0xc20: /* MSGFI - multiply single immediate */
5646 case 0xc44: /* LGHRL - load halfword relative long */
5647 case 0xc46: /* LLGHRL - load logical halfword relative long */
5648 case 0xc48: /* LGRL - load relative long */
5649 case 0xc4c: /* LGFRL - load relative long */
5650 case 0xc4e: /* LLGFRL - load logical relative long */
5651 /* 64-bit gpr destination */
5652 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5656 /* 0xc02-0xc03 undefined */
5658 case 0xc04: /* BRCL - branch relative on condition long */
5659 case 0xc62: /* PFDRL - prefetch data relative long */
5662 case 0xc06: /* XIHF - xor immediate */
5663 case 0xc0a: /* NIHF - and immediate */
5664 case 0xc0c: /* OIHF - or immediate */
5665 case 0xcc8: /* AIH - add immediate high */
5666 case 0xcca: /* ALSIH - add logical with signed immediate high */
5667 /* 32-bit high gpr destination + flags */
5668 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
5670 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5674 case 0xc07: /* XILF - xor immediate */
5675 case 0xc0b: /* NILF - and immediate */
5676 case 0xc0d: /* OILF - or immediate */
5677 case 0xc25: /* SLFI - subtract logical immediate */
5678 case 0xc29: /* AFI - add immediate */
5679 case 0xc2b: /* ALFI - add logical immediate */
5680 /* 32-bit gpr destination + flags */
5681 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5683 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5687 case 0xc08: /* IIHF - insert immediate */
5688 case 0xcc6: /* BRCTH - branch relative on count high */
5689 case 0xccb: /* ALSIHN - add logical with signed immediate high */
5690 /* 32-bit high gpr destination */
5691 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
5695 /* 0xc22-0xc23 undefined */
5697 case 0xc24: /* SLGFI - subtract logical immediate */
5698 case 0xc28: /* AGFI - add immediate */
5699 case 0xc2a: /* ALGFI - add logical immediate */
5700 /* 64-bit gpr destination + flags */
5701 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5703 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5707 /* 0xc26-0xc27 undefined */
5709 case 0xc2c: /* CGFI - compare immediate */
5710 case 0xc2d: /* CFI - compare immediate */
5711 case 0xc2e: /* CLGFI - compare logical immediate */
5712 case 0xc2f: /* CLFI - compare logical immediate */
5713 case 0xc64: /* CGHRL - compare halfword relative long */
5714 case 0xc65: /* CHRL - compare halfword relative long */
5715 case 0xc66: /* CLGHRL - compare logical halfword relative long */
5716 case 0xc67: /* CLHRL - compare logical halfword relative long */
5717 case 0xc68: /* CGRL - compare relative long */
5718 case 0xc6a: /* CLGRL - compare logical relative long */
5719 case 0xc6c: /* CGFRL - compare relative long */
5720 case 0xc6d: /* CRL - compare relative long */
5721 case 0xc6e: /* CLGFRL - compare logical relative long */
5722 case 0xc6f: /* CLRL - compare logical relative long */
5723 case 0xccd: /* CIH - compare immediate high */
5724 case 0xccf: /* CLIH - compare logical immediate high */
5726 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5730 /* 0xc40-0xc41 undefined */
5731 /* 0xc43 undefined */
5733 case 0xc47: /* STHRL - store halfword relative long */
5734 oaddr = s390_record_calc_rl (gdbarch, regcache, addr, insn[1], insn[2]);
5735 if (record_full_arch_list_add_mem (oaddr, 2))
5739 /* 0xc49-0xc4a undefined */
5741 case 0xc4b: /* STGRL - store relative long */
5742 oaddr = s390_record_calc_rl (gdbarch, regcache, addr, insn[1], insn[2]);
5743 if (record_full_arch_list_add_mem (oaddr, 8))
5747 case 0xc4f: /* STRL - store relative long */
5748 oaddr = s390_record_calc_rl (gdbarch, regcache, addr, insn[1], insn[2]);
5749 if (record_full_arch_list_add_mem (oaddr, 4))
5753 case 0xc60: /* EXRL - execute relative long */
5756 fprintf_unfiltered (gdb_stdlog, "Warning: Double execute at %s.\n",
5757 paddress (gdbarch, addr));
5760 addr = s390_record_calc_rl (gdbarch, regcache, addr, insn[1], insn[2]);
5763 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[2], &tmp);
5772 /* 0xc61 undefined */
5773 /* 0xc63 undefined */
5774 /* 0xc69 undefined */
5775 /* 0xc6b undefined */
5776 /* 0xcc0-0xcc5 undefined */
5777 /* 0xcc7 undefined */
5778 /* 0xcc9 undefined */
5779 /* 0xccc undefined */
5780 /* 0xcce undefined */
5787 /* 0xc1 undefined */
5788 /* 0xc3 undefined */
5790 case 0xc5: /* BPRP - branch prediction relative preload */
5791 case 0xc7: /* BPP - branch prediction preload */
5792 /* no visible effect */
5796 /* SSF-format instruction */
5797 switch (ibyte[0] << 4 | inib[3])
5799 /* 0xc80 unsupported */
5801 case 0xc81: /* ECTG - extract cpu time */
5802 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5804 if (s390_record_gpr_g (gdbarch, regcache, 0))
5806 if (s390_record_gpr_g (gdbarch, regcache, 1))
5810 case 0xc82: /* CSST - compare and swap and store */
5813 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
5815 sc = tmp >> 8 & 0xff;
5817 /* First and third operands. */
5818 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5821 case 0x00: /* 32-bit */
5822 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5824 if (record_full_arch_list_add_mem (oaddr, 4))
5828 case 0x01: /* 64-bit */
5829 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5831 if (record_full_arch_list_add_mem (oaddr, 8))
5835 case 0x02: /* 128-bit */
5836 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5838 if (s390_record_gpr_g (gdbarch, regcache, inib[2] | 1))
5840 if (record_full_arch_list_add_mem (oaddr, 16))
5845 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown CSST FC %02x at %s.\n",
5846 fc, paddress (gdbarch, addr));
5850 /* Second operand. */
5851 oaddr2 = s390_record_calc_disp (gdbarch, regcache, 0, insn[2], 0);
5854 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown CSST FC %02x at %s.\n",
5855 sc, paddress (gdbarch, addr));
5859 if (record_full_arch_list_add_mem (oaddr2, 1 << sc))
5863 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5868 /* 0xc83 undefined */
5870 case 0xc84: /* LPD - load pair disjoint */
5871 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
5873 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
5875 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5879 case 0xc85: /* LPDG - load pair disjoint */
5880 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5882 if (s390_record_gpr_g (gdbarch, regcache, inib[2] | 1))
5884 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5888 /* 0xc86-0xc8f undefined */
5895 /* 0xc9-0xcb undefined */
5896 /* 0xcd-0xcf undefined */
5898 case 0xd0: /* TRTR - translate and test reversed */
5899 case 0xdd: /* TRT - translate and test */
5900 if (record_full_arch_list_add_reg (regcache, S390_R1_REGNUM))
5902 if (record_full_arch_list_add_reg (regcache, S390_R2_REGNUM))
5904 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5908 case 0xd1: /* MVN - move numbers */
5909 case 0xd2: /* MVC - move */
5910 case 0xd3: /* MVZ - move zones */
5911 case 0xdc: /* TR - translate */
5912 case 0xe8: /* MVCIN - move inverse */
5913 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5914 if (record_full_arch_list_add_mem (oaddr, ibyte[1] + 1))
5918 case 0xd4: /* NC - and */
5919 case 0xd6: /* OC - or*/
5920 case 0xd7: /* XC - xor */
5921 case 0xe2: /* UNPKU - unpack unicode */
5922 case 0xea: /* UNPKA - unpack ASCII */
5923 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5924 if (record_full_arch_list_add_mem (oaddr, ibyte[1] + 1))
5926 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5930 case 0xde: /* ED - edit */
5931 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5932 if (record_full_arch_list_add_mem (oaddr, ibyte[1] + 1))
5934 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5936 /* DXC may be written */
5937 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
5941 case 0xdf: /* EDMK - edit and mark */
5942 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5943 if (record_full_arch_list_add_mem (oaddr, ibyte[1] + 1))
5945 if (record_full_arch_list_add_reg (regcache, S390_R1_REGNUM))
5947 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
5949 /* DXC may be written */
5950 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
5954 /* 0xd8 undefined */
5955 /* 0xd9 unsupported: MVCK - move with key */
5956 /* 0xda unsupported: MVCP - move to primary */
5957 /* 0xdb unsupported: MVCS - move to secondary */
5958 /* 0xe0 undefined */
5960 case 0xe1: /* PKU - pack unicode */
5961 case 0xe9: /* PKA - pack ASCII */
5962 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
5963 if (record_full_arch_list_add_mem (oaddr, 16))
5971 /* RXY/RXE/RXF/RSL/RSY/SIY/V*-format instruction */
5972 switch (ibyte[0] << 8 | ibyte[5])
5974 /* 0xe300-0xe301 undefined */
5976 case 0xe302: /* LTG - load and test */
5977 case 0xe308: /* AG - add */
5978 case 0xe309: /* SG - subtract */
5979 case 0xe30a: /* ALG - add logical */
5980 case 0xe30b: /* SLG - subtract logical */
5981 case 0xe318: /* AGF - add */
5982 case 0xe319: /* SGF - subtract */
5983 case 0xe31a: /* ALGF - add logical */
5984 case 0xe31b: /* SLGF - subtract logical */
5985 case 0xe332: /* LTGF - load and test */
5986 case 0xe380: /* NG - and */
5987 case 0xe381: /* OG - or */
5988 case 0xe382: /* XG - xor */
5989 case 0xe388: /* ALCG - add logical with carry */
5990 case 0xe389: /* SLBG - subtract logical with borrow */
5991 case 0xeb0a: /* SRAG - shift right single */
5992 case 0xeb0b: /* SLAG - shift left single */
5993 /* 64-bit gpr destination + flags */
5994 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
5996 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6000 /* 0xe303 privileged */
6002 case 0xe304: /* LG - load */
6003 case 0xe30c: /* MSG - multiply single */
6004 case 0xe30f: /* LRVG - load reversed */
6005 case 0xe314: /* LGF - load */
6006 case 0xe315: /* LGH - load halfword */
6007 case 0xe316: /* LLGF - load logical */
6008 case 0xe317: /* LLGT - load logical thirty one bits */
6009 case 0xe31c: /* MSGF - multiply single */
6010 case 0xe32a: /* LZRG - load and zero rightmost byte */
6011 case 0xe33a: /* LLZRGF - load logical and zero rightmost byte */
6012 case 0xe346: /* BCTG - branch on count */
6013 case 0xe377: /* LGB - load byte */
6014 case 0xe390: /* LLGC - load logical character */
6015 case 0xe391: /* LLGH - load logical halfword */
6016 case 0xeb0c: /* SRLG - shift right single logical */
6017 case 0xeb0d: /* SLLG - shift left single logical */
6018 case 0xeb1c: /* RLLG - rotate left single logical */
6019 case 0xeb44: /* BXHG - branch on index high */
6020 case 0xeb45: /* BXLEG - branch on index low or equal */
6021 case 0xeb4c: /* ECAG - extract cpu attribute */
6022 case 0xebe2: /* LOCG - load on condition */
6023 /* 64-bit gpr destination */
6024 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6028 /* 0xe305 undefined */
6030 case 0xe306: /* CVBY - convert to binary */
6031 /* 32-bit or native gpr destination + FPC (DXC write) */
6032 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6034 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6038 /* 0xe307 undefined */
6040 case 0xe30d: /* DSG - divide single */
6041 case 0xe31d: /* DSGF - divide single */
6042 case 0xe386: /* MLG - multiply logical */
6043 case 0xe387: /* DLG - divide logical */
6044 case 0xe38f: /* LPQ - load pair from quadword */
6045 /* 64-bit gpr pair destination */
6046 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6048 if (s390_record_gpr_g (gdbarch, regcache, inib[2] | 1))
6052 case 0xe30e: /* CVBG - convert to binary */
6053 /* 64-bit gpr destination + FPC (DXC write) */
6054 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6056 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6060 /* 0xe310-0xe311 undefined */
6062 case 0xe312: /* LT - load and test */
6063 case 0xe354: /* NY - and */
6064 case 0xe356: /* OY - or */
6065 case 0xe357: /* XY - xor */
6066 case 0xe35a: /* AY - add */
6067 case 0xe35b: /* SY - subtract */
6068 case 0xe35e: /* ALY - add logical */
6069 case 0xe35f: /* SLY - subtract logical */
6070 case 0xe37a: /* AHY - add halfword */
6071 case 0xe37b: /* SHY - subtract halfword */
6072 case 0xe398: /* ALC - add logical with carry */
6073 case 0xe399: /* SLB - subtract logical with borrow */
6074 case 0xe727: /* LCBB - load count to block bounduary */
6075 case 0xeb81: /* ICMY - insert characters under mask */
6076 case 0xebdc: /* SRAK - shift left single */
6077 case 0xebdd: /* SLAK - shift left single */
6078 /* 32-bit gpr destination + flags */
6079 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6081 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6085 /* 0xe313 privileged */
6087 case 0xe31e: /* LRV - load reversed */
6088 case 0xe31f: /* LRVH - load reversed */
6089 case 0xe33b: /* LZRF - load and zero rightmost byte */
6090 case 0xe351: /* MSY - multiply single */
6091 case 0xe358: /* LY - load */
6092 case 0xe371: /* LAY - load address */
6093 case 0xe373: /* ICY - insert character */
6094 case 0xe376: /* LB - load byte */
6095 case 0xe378: /* LHY - load */
6096 case 0xe37c: /* MHY - multiply halfword */
6097 case 0xe394: /* LLC - load logical character */
6098 case 0xe395: /* LLH - load logical halfword */
6099 case 0xeb1d: /* RLL - rotate left single logical */
6100 case 0xebde: /* SRLK - shift left single logical */
6101 case 0xebdf: /* SLLK - shift left single logical */
6102 case 0xebf2: /* LOC - load on condition */
6103 /* 32-bit or native gpr destination */
6104 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6108 case 0xe320: /* CG - compare */
6109 case 0xe321: /* CLG - compare logical */
6110 case 0xe330: /* CGF - compare */
6111 case 0xe331: /* CLGF - compare logical */
6112 case 0xe334: /* CGH - compare halfword */
6113 case 0xe355: /* CLY - compare logical */
6114 case 0xe359: /* CY - compare */
6115 case 0xe379: /* CHY - compare halfword */
6116 case 0xe3cd: /* CHF - compare high */
6117 case 0xe3cf: /* CLHF - compare logical high */
6118 case 0xeb20: /* CLMH - compare logical under mask high */
6119 case 0xeb21: /* CLMY - compare logical under mask */
6120 case 0xeb51: /* TMY - test under mask */
6121 case 0xeb55: /* CLIY - compare logical */
6122 case 0xebc0: /* TP - test decimal */
6123 case 0xed10: /* TCEB - test data class */
6124 case 0xed11: /* TCDB - test data class */
6125 case 0xed12: /* TCXB - test data class */
6126 case 0xed50: /* TDCET - test data class */
6127 case 0xed51: /* TDGET - test data group */
6128 case 0xed54: /* TDCDT - test data class */
6129 case 0xed55: /* TDGDT - test data group */
6130 case 0xed58: /* TDCXT - test data class */
6131 case 0xed59: /* TDGXT - test data group */
6133 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6137 /* 0xe322-0xe323 undefined */
6139 case 0xe324: /* STG - store */
6140 case 0xe325: /* NTSTG - nontransactional store */
6141 case 0xe326: /* CVDY - convert to decimal */
6142 case 0xe32f: /* STRVG - store reversed */
6143 case 0xebe3: /* STOCG - store on condition */
6144 case 0xed67: /* STDY - store */
6145 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], ibyte[4]);
6146 if (record_full_arch_list_add_mem (oaddr, 8))
6150 /* 0xe327-0xe329 undefined */
6151 /* 0xe32b-0xe32d undefined */
6153 case 0xe32e: /* CVDG - convert to decimal */
6154 case 0xe38e: /* STPQ - store pair to quadword */
6155 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], ibyte[4]);
6156 if (record_full_arch_list_add_mem (oaddr, 16))
6160 /* 0xe333 undefined */
6161 /* 0xe335 undefined */
6163 case 0xe336: /* PFD - prefetch data */
6166 /* 0xe337-0xe339 undefined */
6167 /* 0xe33c-0xe33d undefined */
6169 case 0xe33e: /* STRV - store reversed */
6170 case 0xe350: /* STY - store */
6171 case 0xe3cb: /* STFH - store high */
6172 case 0xebe1: /* STOCFH - store high on condition */
6173 case 0xebf3: /* STOC - store on condition */
6174 case 0xed66: /* STEY - store */
6175 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], ibyte[4]);
6176 if (record_full_arch_list_add_mem (oaddr, 4))
6180 case 0xe33f: /* STRVH - store reversed */
6181 case 0xe370: /* STHY - store halfword */
6182 case 0xe3c7: /* STHH - store halfword high */
6183 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], ibyte[4]);
6184 if (record_full_arch_list_add_mem (oaddr, 2))
6188 /* 0xe340-0xe345 undefined */
6189 /* 0xe347-0xe34f undefined */
6190 /* 0xe352-0xe353 undefined */
6192 case 0xe35c: /* MFY - multiply */
6193 case 0xe396: /* ML - multiply logical */
6194 case 0xe397: /* DL - divide logical */
6195 /* 32-bit gpr pair destination */
6196 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6198 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
6202 /* 0xe35d undefined */
6203 /* 0xe360-0xe36f undefined */
6205 case 0xe372: /* STCY - store character */
6206 case 0xe3c3: /* STCH - store character high */
6207 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], ibyte[4]);
6208 if (record_full_arch_list_add_mem (oaddr, 1))
6212 /* 0xe374 undefined */
6214 case 0xe375: /* LAEY - load address extended */
6215 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6217 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + inib[2]))
6221 /* 0xe37d-0xe37f undefined */
6222 /* 0xe383-0xe384 undefined */
6224 case 0xe385: /* LGAT - load and trap */
6225 case 0xe39c: /* LLGTAT - load logical thirty one bits and trap */
6226 case 0xe39d: /* LLGFAT - load logical and trap */
6227 case 0xe721: /* VLGV - vector load gr from vr element */
6228 /* 64-bit gpr destination + fpc for possible DXC write */
6229 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6231 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6235 /* 0xe38a-0xe38d undefined */
6236 /* 0xe392-0xe393 undefined */
6237 /* 0xe39a-0xe39b undefined */
6238 /* 0xe39e undefined */
6240 case 0xe39f: /* LAT - load and trap */
6241 /* 32-bit gpr destination + fpc for possible DXC write */
6242 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6244 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6248 /* 0xe3a0-0xe3bf undefined */
6250 case 0xe3c0: /* LBH - load byte high */
6251 case 0xe3c2: /* LLCH - load logical character high */
6252 case 0xe3c4: /* LHH - load halfword high */
6253 case 0xe3c6: /* LLHH - load logical halfword high */
6254 case 0xe3ca: /* LFH - load high */
6255 case 0xebe0: /* LOCFH - load high on condition */
6256 /* 32-bit high gpr destination */
6257 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
6261 /* 0xe3c1 undefined */
6262 /* 0xe3c5 undefined */
6264 case 0xe3c8: /* LFHAT - load high and trap */
6265 /* 32-bit high gpr destination + fpc for possible DXC write */
6266 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
6268 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6272 /* 0xe3c9 undefined */
6273 /* 0xe3cc undefined */
6274 /* 0xe3ce undefined */
6275 /* 0xe3d0-0xe3ff undefined */
6277 case 0xe700: /* VLEB - vector load element */
6278 case 0xe701: /* VLEH - vector load element */
6279 case 0xe702: /* VLEG - vector load element */
6280 case 0xe703: /* VLEF - vector load element */
6281 case 0xe704: /* VLLEZ - vector load logical element and zero */
6282 case 0xe705: /* VLREP - vector load and replicate */
6283 case 0xe706: /* VL - vector load */
6284 case 0xe707: /* VLBB - vector load to block bounduary */
6285 case 0xe712: /* VGEG - vector gather element */
6286 case 0xe713: /* VGEF - vector gather element */
6287 case 0xe722: /* VLVG - vector load vr element from gr */
6288 case 0xe730: /* VESL - vector element shift left */
6289 case 0xe733: /* VERLL - vector element rotate left logical */
6290 case 0xe737: /* VLL - vector load with length */
6291 case 0xe738: /* VESRL - vector element shift right logical */
6292 case 0xe73a: /* VESRA - vector element shift right arithmetic */
6293 case 0xe740: /* VLEIB - vector load element immediate */
6294 case 0xe741: /* VLEIH - vector load element immediate */
6295 case 0xe742: /* VLEIG - vector load element immediate */
6296 case 0xe743: /* VLEIF - vector load element immediate */
6297 case 0xe744: /* VGBM - vector generate byte mask */
6298 case 0xe745: /* VREPI - vector replicate immediate */
6299 case 0xe746: /* VGM - vector generate mask */
6300 case 0xe74d: /* VREP - vector replicate */
6301 case 0xe750: /* VPOPCT - vector population count */
6302 case 0xe752: /* VCTZ - vector count trailing zeros */
6303 case 0xe753: /* VCLZ - vector count leading zeros */
6304 case 0xe756: /* VLR - vector load */
6305 case 0xe75f: /* VSEG -vector sign extend to doubleword */
6306 case 0xe760: /* VMRL - vector merge low */
6307 case 0xe761: /* VMRH - vector merge high */
6308 case 0xe762: /* VLVGP - vector load vr from grs disjoint */
6309 case 0xe764: /* VSUM - vector sum across word */
6310 case 0xe765: /* VSUMG - vector sum across doubleword */
6311 case 0xe766: /* VCKSM - vector checksum */
6312 case 0xe767: /* VSUMQ - vector sum across quadword */
6313 case 0xe768: /* VN - vector and */
6314 case 0xe769: /* VNC - vector and with complement */
6315 case 0xe76a: /* VO - vector or */
6316 case 0xe76b: /* VNO - vector nor */
6317 case 0xe76d: /* VX - vector xor */
6318 case 0xe770: /* VESLV - vector element shift left */
6319 case 0xe772: /* VERIM - vector element rotate and insert under mask */
6320 case 0xe773: /* VERLLV - vector element rotate left logical */
6321 case 0xe774: /* VSL - vector shift left */
6322 case 0xe775: /* VSLB - vector shift left by byte */
6323 case 0xe777: /* VSLDB - vector shift left double by byte */
6324 case 0xe778: /* VESRLV - vector element shift right logical */
6325 case 0xe77a: /* VESRAV - vector element shift right arithmetic */
6326 case 0xe77c: /* VSRL - vector shift right logical */
6327 case 0xe77d: /* VSRLB - vector shift right logical by byte */
6328 case 0xe77e: /* VSRA - vector shift right arithmetic */
6329 case 0xe77f: /* VSRAB - vector shift right arithmetic by byte */
6330 case 0xe784: /* VPDI - vector permute doubleword immediate */
6331 case 0xe78c: /* VPERM - vector permute */
6332 case 0xe78d: /* VSEL - vector select */
6333 case 0xe78e: /* VFMS - vector fp multiply and subtract */
6334 case 0xe78f: /* VFMA - vector fp multiply and add */
6335 case 0xe794: /* VPK - vector pack */
6336 case 0xe7a1: /* VMLH - vector multiply logical high */
6337 case 0xe7a2: /* VML - vector multiply low */
6338 case 0xe7a3: /* VMH - vector multiply high */
6339 case 0xe7a4: /* VMLE - vector multiply logical even */
6340 case 0xe7a5: /* VMLO - vector multiply logical odd */
6341 case 0xe7a6: /* VME - vector multiply even */
6342 case 0xe7a7: /* VMO - vector multiply odd */
6343 case 0xe7a9: /* VMALH - vector multiply and add logical high */
6344 case 0xe7aa: /* VMAL - vector multiply and add low */
6345 case 0xe7ab: /* VMAH - vector multiply and add high */
6346 case 0xe7ac: /* VMALE - vector multiply and add logical even */
6347 case 0xe7ad: /* VMALO - vector multiply and add logical odd */
6348 case 0xe7ae: /* VMAE - vector multiply and add even */
6349 case 0xe7af: /* VMAO - vector multiply and add odd */
6350 case 0xe7b4: /* VGFM - vector Galois field multiply sum */
6351 case 0xe7b9: /* VACCC - vector add with carry compute carry */
6352 case 0xe7bb: /* VAC - vector add with carry */
6353 case 0xe7bc: /* VGFMA - vector Galois field multiply sum and accumulate */
6354 case 0xe7bd: /* VSBCBI - vector subtract with borrow compute borrow indication */
6355 case 0xe7bf: /* VSBI - vector subtract with borrow indication */
6356 case 0xe7c0: /* VCLGD - vector convert to logical 64-bit */
6357 case 0xe7c1: /* VCDLG - vector convert from logical 64-bit */
6358 case 0xe7c2: /* VCGD - vector convert to fixed 64-bit */
6359 case 0xe7c3: /* VCDG - vector convert from fixed 64-bit */
6360 case 0xe7c4: /* VLDE - vector fp load lengthened */
6361 case 0xe7c5: /* VLED - vector fp load rounded */
6362 case 0xe7c7: /* VFI - vector load fp integer */
6363 case 0xe7cc: /* VFPSO - vector fp perform sign operation */
6364 case 0xe7ce: /* VFSQ - vector fp square root */
6365 case 0xe7d4: /* VUPLL - vector unpack logical low */
6366 case 0xe7d6: /* VUPL - vector unpack low */
6367 case 0xe7d5: /* VUPLH - vector unpack logical high */
6368 case 0xe7d7: /* VUPH - vector unpack high */
6369 case 0xe7de: /* VLC - vector load complement */
6370 case 0xe7df: /* VLP - vector load positive */
6371 case 0xe7e2: /* VFA - vector fp subtract */
6372 case 0xe7e3: /* VFA - vector fp add */
6373 case 0xe7e5: /* VFD - vector fp divide */
6374 case 0xe7e7: /* VFM - vector fp multiply */
6375 case 0xe7f0: /* VAVGL - vector average logical */
6376 case 0xe7f1: /* VACC - vector add and compute carry */
6377 case 0xe7f2: /* VAVG - vector average */
6378 case 0xe7f3: /* VA - vector add */
6379 case 0xe7f5: /* VSCBI - vector subtract compute borrow indication */
6380 case 0xe7f7: /* VS - vector subtract */
6381 case 0xe7fc: /* VMNL - vector minimum logical */
6382 case 0xe7fd: /* VMXL - vector maximum logical */
6383 case 0xe7fe: /* VMN - vector minimum */
6384 case 0xe7ff: /* VMX - vector maximum */
6385 /* vector destination + FPC */
6386 if (s390_record_vr (gdbarch, regcache, ivec[0]))
6388 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6392 case 0xe708: /* VSTEB - vector store element */
6393 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
6394 if (record_full_arch_list_add_mem (oaddr, 1))
6396 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6400 case 0xe709: /* VSTEH - vector store element */
6401 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
6402 if (record_full_arch_list_add_mem (oaddr, 2))
6404 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6408 case 0xe70a: /* VSTEG - vector store element */
6409 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
6410 if (record_full_arch_list_add_mem (oaddr, 8))
6412 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6416 case 0xe70b: /* VSTEF - vector store element */
6417 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
6418 if (record_full_arch_list_add_mem (oaddr, 4))
6420 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6424 /* 0xe70c-0xe70d undefined */
6426 case 0xe70e: /* VST - vector store */
6427 oaddr = s390_record_calc_disp (gdbarch, regcache, inib[3], insn[1], 0);
6428 if (record_full_arch_list_add_mem (oaddr, 16))
6430 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6434 /* 0xe70f-0xe711 undefined */
6435 /* 0xe714-0xe719 undefined */
6437 case 0xe71a: /* VSCEG - vector scatter element */
6438 if (s390_record_calc_disp_vsce (gdbarch, regcache, ivec[1], inib[8], 8, insn[1], 0, &oaddr))
6440 if (record_full_arch_list_add_mem (oaddr, 8))
6442 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6446 case 0xe71b: /* VSCEF - vector scatter element */
6447 if (s390_record_calc_disp_vsce (gdbarch, regcache, ivec[1], inib[8], 4, insn[1], 0, &oaddr))
6449 if (record_full_arch_list_add_mem (oaddr, 4))
6451 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6455 /* 0xe71c-0xe720 undefined */
6456 /* 0xe723-0xe726 undefined */
6457 /* 0xe728-0xe72f undefined */
6458 /* 0xe731-0xe732 undefined */
6459 /* 0xe734-0xe735 undefined */
6461 case 0xe736: /* VLM - vector load multiple */
6462 for (i = ivec[0]; i != ivec[1]; i++, i &= 0x1f)
6463 if (s390_record_vr (gdbarch, regcache, i))
6465 if (s390_record_vr (gdbarch, regcache, ivec[1]))
6467 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6471 /* 0xe739 undefined */
6472 /* 0xe73b-0xe73d undefined */
6474 case 0xe73e: /* VSTM - vector store multiple */
6475 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6476 if (ivec[0] <= ivec[1])
6477 n = ivec[1] - ivec[0] + 1;
6479 n = ivec[1] + 0x20 - ivec[0] + 1;
6480 if (record_full_arch_list_add_mem (oaddr, n * 16))
6482 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6486 case 0xe73f: /* VSTL - vector store with length */
6487 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6488 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[3], &tmp);
6492 if (record_full_arch_list_add_mem (oaddr, tmp))
6494 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6498 /* 0xe747-0xe749 undefined */
6500 case 0xe74a: /* VFTCI - vector fp test data class immediate */
6501 case 0xe75c: /* VISTR - vector isolate string */
6502 case 0xe780: /* VFEE - vector find element equal */
6503 case 0xe781: /* VFENE - vector find element not equal */
6504 case 0xe782: /* VFA - vector find any element equal */
6505 case 0xe78a: /* VSTRC - vector string range compare */
6506 case 0xe795: /* VPKLS - vector pack logical saturate */
6507 case 0xe797: /* VPKS - vector pack saturate */
6508 case 0xe7e8: /* VFCE - vector fp compare equal */
6509 case 0xe7ea: /* VFCHE - vector fp compare high or equal */
6510 case 0xe7eb: /* VFCE - vector fp compare high */
6511 case 0xe7f8: /* VCEQ - vector compare equal */
6512 case 0xe7f9: /* VCHL - vector compare high logical */
6513 case 0xe7fb: /* VCH - vector compare high */
6514 /* vector destination + flags + FPC */
6515 if (s390_record_vr (gdbarch, regcache, ivec[0]))
6517 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6519 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6523 /* 0xe74b-0xe74c undefined */
6524 /* 0xe74e-0xe74f undefined */
6525 /* 0xe751 undefined */
6526 /* 0xe754-0xe755 undefined */
6527 /* 0xe757-0xe75b undefined */
6528 /* 0xe75d-0xe75e undefined */
6529 /* 0xe763 undefined */
6530 /* 0xe76c undefined */
6531 /* 0xe76e-0xe76f undefined */
6532 /* 0xe771 undefined */
6533 /* 0xe776 undefined */
6534 /* 0xe779 undefined */
6535 /* 0xe77b undefined */
6536 /* 0xe783 undefined */
6537 /* 0xe785-0xe789 undefined */
6538 /* 0xe78b undefined */
6539 /* 0xe790-0xe793 undefined */
6540 /* 0xe796 undefined */
6541 /* 0xe798-0xe7a0 undefined */
6542 /* 0xe7a8 undefined */
6543 /* 0xe7b0-0xe7b3 undefined */
6544 /* 0xe7b5-0xe7b8 undefined */
6545 /* 0xe7ba undefined */
6546 /* 0xe7be undefined */
6547 /* 0xe7c6 undefined */
6548 /* 0xe7c8-0xe7c9 undefined */
6550 case 0xe7ca: /* WFK - vector fp compare and signal scalar */
6551 case 0xe7cb: /* WFC - vector fp compare scalar */
6552 case 0xe7d8: /* VTM - vector test under mask */
6553 case 0xe7d9: /* VECL - vector element compare logical */
6554 case 0xe7db: /* VEC - vector element compare */
6555 case 0xed08: /* KEB - compare and signal */
6556 case 0xed09: /* CEB - compare */
6557 case 0xed18: /* KDB - compare and signal */
6558 case 0xed19: /* CDB - compare */
6559 /* flags + fpc only */
6560 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6562 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6566 /* 0xe7cd undefined */
6567 /* 0xe7cf-0xe7d3 undefined */
6568 /* 0xe7da undefined */
6569 /* 0xe7dc-0xe7dd undefined */
6570 /* 0xe7e0-0xe7e1 undefined */
6571 /* 0xe7e4 undefined */
6572 /* 0xe7e6 undefined */
6573 /* 0xe7e9 undefined */
6574 /* 0xe7ec-0xe7ef undefined */
6575 /* 0xe7f4 undefined */
6576 /* 0xe7f6 undefined */
6577 /* 0xe7fa undefined */
6579 /* 0xeb00-0xeb03 undefined */
6581 case 0xeb04: /* LMG - load multiple */
6582 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
6583 if (s390_record_gpr_g (gdbarch, regcache, i))
6585 if (s390_record_gpr_g (gdbarch, regcache, inib[3]))
6589 /* 0xeb05-0xeb09 undefined */
6590 /* 0xeb0e undefined */
6591 /* 0xeb0f privileged: TRACG */
6592 /* 0xeb10-0xeb13 undefined */
6594 case 0xeb14: /* CSY - compare and swap */
6595 case 0xebf4: /* LAN - load and and */
6596 case 0xebf6: /* LAO - load and or */
6597 case 0xebf7: /* LAX - load and xor */
6598 case 0xebf8: /* LAA - load and add */
6599 case 0xebfa: /* LAAL - load and add logical */
6600 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6601 if (record_full_arch_list_add_mem (oaddr, 4))
6603 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6605 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6609 /* 0xeb15-0xeb1b undefined */
6610 /* 0xeb1e-0xeb1f undefined */
6611 /* 0xeb22 undefined */
6613 case 0xeb23: /* CLT - compare logical and trap */
6614 case 0xeb2b: /* CLGT - compare logical and trap */
6615 /* fpc only - including possible DXC write for trapping insns */
6616 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6620 case 0xeb24: /* STMG - store multiple */
6621 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6622 if (inib[2] <= inib[3])
6623 n = inib[3] - inib[2] + 1;
6625 n = inib[3] + 0x10 - inib[2] + 1;
6626 if (record_full_arch_list_add_mem (oaddr, n * 8))
6630 /* 0xeb25 privileged */
6632 case 0xeb26: /* STMH - store multiple high */
6633 case 0xeb90: /* STMY - store multiple */
6634 case 0xeb9b: /* STAMY - store access multiple */
6635 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6636 if (inib[2] <= inib[3])
6637 n = inib[3] - inib[2] + 1;
6639 n = inib[3] + 0x10 - inib[2] + 1;
6640 if (record_full_arch_list_add_mem (oaddr, n * 4))
6644 /* 0xeb27-0xeb2a undefined */
6646 case 0xeb2c: /* STCMH - store characters under mask */
6647 case 0xeb2d: /* STCMY - store characters under mask */
6648 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6649 if (record_full_arch_list_add_mem (oaddr, s390_popcnt (inib[3])))
6653 /* 0xeb2e undefined */
6654 /* 0xeb2f privileged */
6656 case 0xeb30: /* CSG - compare and swap */
6657 case 0xebe4: /* LANG - load and and */
6658 case 0xebe6: /* LAOG - load and or */
6659 case 0xebe7: /* LAXG - load and xor */
6660 case 0xebe8: /* LAAG - load and add */
6661 case 0xebea: /* LAALG - load and add logical */
6662 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6663 if (record_full_arch_list_add_mem (oaddr, 8))
6665 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6667 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6671 case 0xeb31: /* CDSY - compare double and swap */
6672 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6673 if (record_full_arch_list_add_mem (oaddr, 8))
6675 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6677 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
6679 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6683 /* 0xeb32-0xeb3d undefined */
6685 case 0xeb3e: /* CDSG - compare double and swap */
6686 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6687 if (record_full_arch_list_add_mem (oaddr, 16))
6689 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
6691 if (s390_record_gpr_g (gdbarch, regcache, inib[2] | 1))
6693 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6697 /* 0xeb3f-0xeb43 undefined */
6698 /* 0xeb46-0xeb4b undefined */
6699 /* 0xeb4d-0xeb50 undefined */
6701 case 0xeb52: /* MVIY - move */
6702 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6703 if (record_full_arch_list_add_mem (oaddr, 1))
6707 case 0xeb54: /* NIY - and */
6708 case 0xeb56: /* OIY - or */
6709 case 0xeb57: /* XIY - xor */
6710 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6711 if (record_full_arch_list_add_mem (oaddr, 1))
6713 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6717 /* 0xeb53 undefined */
6718 /* 0xeb58-0xeb69 undefined */
6720 case 0xeb6a: /* ASI - add immediate */
6721 case 0xeb6e: /* ALSI - add immediate */
6722 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6723 if (record_full_arch_list_add_mem (oaddr, 4))
6725 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6729 /* 0xeb6b-0xeb6d undefined */
6730 /* 0xeb6f-0xeb79 undefined */
6732 case 0xeb7a: /* AGSI - add immediate */
6733 case 0xeb7e: /* ALGSI - add immediate */
6734 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], ibyte[4]);
6735 if (record_full_arch_list_add_mem (oaddr, 8))
6737 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6741 /* 0xeb7b-0xeb7d undefined */
6742 /* 0xeb7f undefined */
6744 case 0xeb80: /* ICMH - insert characters under mask */
6745 /* 32-bit high gpr destination + flags */
6746 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
6748 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6752 /* 0xeb82-0xeb8d undefined */
6754 case 0xeb8e: /* MVCLU - move long unicode [partial] */
6755 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + inib[2], &tmp);
6756 oaddr = s390_record_address_mask (gdbarch, regcache, tmp);
6757 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + (inib[2] | 1), &tmp);
6758 if (record_full_arch_list_add_mem (oaddr, tmp))
6760 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6762 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
6764 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
6766 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[3] | 1)))
6768 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6772 case 0xeb8f: /* CLCLU - compare logical long unicode [partial] */
6773 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
6775 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[2] | 1)))
6777 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
6779 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + (inib[3] | 1)))
6781 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6785 /* 0xeb91-0xeb95 undefined */
6787 case 0xeb96: /* LMH - load multiple high */
6788 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
6789 if (s390_record_gpr_h (gdbarch, regcache, i))
6791 if (s390_record_gpr_h (gdbarch, regcache, inib[3]))
6795 /* 0xeb97 undefined */
6797 case 0xeb98: /* LMY - load multiple */
6798 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
6799 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + i))
6801 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
6805 /* 0xeb99 undefined */
6807 case 0xeb9a: /* LAMY - load access multiple */
6808 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
6809 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + i))
6811 if (record_full_arch_list_add_reg (regcache, S390_A0_REGNUM + inib[3]))
6815 /* 0xeb9c-0xebbf undefined */
6816 /* 0xebc1-0xebdb undefined */
6817 /* 0xebe5 undefined */
6818 /* 0xebe9 undefined */
6819 /* 0xebeb-0xebf1 undefined */
6820 /* 0xebf5 undefined */
6821 /* 0xebf9 undefined */
6822 /* 0xebfb-0xebff undefined */
6824 /* 0xed00-0xed03 undefined */
6826 case 0xed04: /* LDEB - load lengthened */
6827 case 0xed0c: /* MDEB - multiply */
6828 case 0xed0d: /* DEB - divide */
6829 case 0xed14: /* SQEB - square root */
6830 case 0xed15: /* SQDB - square root */
6831 case 0xed17: /* MEEB - multiply */
6832 case 0xed1c: /* MDB - multiply */
6833 case 0xed1d: /* DDB - divide */
6834 /* float destination + fpc */
6835 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
6837 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6841 case 0xed05: /* LXDB - load lengthened */
6842 case 0xed06: /* LXEB - load lengthened */
6843 case 0xed07: /* MXDB - multiply */
6844 /* float pair destination + fpc */
6845 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
6847 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[2] | 2)))
6849 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6853 case 0xed0a: /* AEB - add */
6854 case 0xed0b: /* SEB - subtract */
6855 case 0xed1a: /* ADB - add */
6856 case 0xed1b: /* SDB - subtract */
6857 /* float destination + flags + fpc */
6858 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
6860 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6862 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6866 case 0xed0e: /* MAEB - multiply and add */
6867 case 0xed0f: /* MSEB - multiply and subtract */
6868 case 0xed1e: /* MADB - multiply and add */
6869 case 0xed1f: /* MSDB - multiply and subtract */
6870 case 0xed40: /* SLDT - shift significand left */
6871 case 0xed41: /* SRDT - shift significand right */
6872 case 0xedaa: /* CDZT - convert from zoned */
6873 case 0xedae: /* CDPT - convert from packed */
6874 /* float destination [RXF] + fpc */
6875 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[8]))
6877 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6881 /* 0xed13 undefined */
6882 /* 0xed16 undefined */
6883 /* 0xed20-0xed23 undefined */
6885 case 0xed24: /* LDE - load lengthened */
6886 case 0xed34: /* SQE - square root */
6887 case 0xed35: /* SQD - square root */
6888 case 0xed37: /* MEE - multiply */
6889 case 0xed64: /* LEY - load */
6890 case 0xed65: /* LDY - load */
6891 /* float destination */
6892 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
6896 case 0xed25: /* LXD - load lengthened */
6897 case 0xed26: /* LXE - load lengthened */
6898 /* float pair destination */
6899 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[2]))
6901 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[2] | 2)))
6905 /* 0xed27-0xed2d undefined */
6907 case 0xed2e: /* MAE - multiply and add */
6908 case 0xed2f: /* MSE - multiply and subtract */
6909 case 0xed38: /* MAYL - multiply and add unnormalized */
6910 case 0xed39: /* MYL - multiply unnormalized */
6911 case 0xed3c: /* MAYH - multiply and add unnormalized */
6912 case 0xed3d: /* MYH - multiply unnormalized */
6913 case 0xed3e: /* MAD - multiply and add */
6914 case 0xed3f: /* MSD - multiply and subtract */
6915 /* float destination [RXF] */
6916 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[8]))
6920 /* 0xed30-0xed33 undefined */
6921 /* 0xed36 undefined */
6923 case 0xed3a: /* MAY - multiply and add unnormalized */
6924 case 0xed3b: /* MY - multiply unnormalized */
6925 /* float pair destination [RXF] */
6926 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[8]))
6928 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[8] | 2)))
6932 /* 0xed42-0xed47 undefind */
6934 case 0xed48: /* SLXT - shift significand left */
6935 case 0xed49: /* SRXT - shift significand right */
6936 case 0xedab: /* CXZT - convert from zoned */
6937 case 0xedaf: /* CXPT - convert from packed */
6938 /* float pair destination [RXF] + fpc */
6939 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + inib[8]))
6941 if (record_full_arch_list_add_reg (regcache, S390_F0_REGNUM + (inib[8] | 2)))
6943 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
6947 /* 0xed4a-0xed4f undefind */
6948 /* 0xed52-0xed53 undefind */
6949 /* 0xed56-0xed57 undefind */
6950 /* 0xed5a-0xed63 undefind */
6951 /* 0xed68-0xeda7 undefined */
6953 case 0xeda8: /* CZDT - convert to zoned */
6954 case 0xeda9: /* CZXT - convert to zoned */
6955 case 0xedac: /* CPDT - convert to packed */
6956 case 0xedad: /* CPXT - convert to packed */
6957 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6958 if (record_full_arch_list_add_mem (oaddr, ibyte[1] + 1))
6960 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
6964 /* 0xedb0-0xedff undefined */
6971 /* 0xe4 undefined */
6974 /* SSE/SIL-format instruction */
6977 /* 0xe500-0xe543 undefined, privileged, or unsupported */
6979 case 0xe544: /* MVHHI - move */
6980 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6981 if (record_full_arch_list_add_mem (oaddr, 2))
6985 /* 0xe545-0xe547 undefined */
6987 case 0xe548: /* MVGHI - move */
6988 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6989 if (record_full_arch_list_add_mem (oaddr, 8))
6993 /* 0xe549-0xe54b undefined */
6995 case 0xe54c: /* MVHI - move */
6996 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
6997 if (record_full_arch_list_add_mem (oaddr, 4))
7001 /* 0xe54d-0xe553 undefined */
7003 case 0xe554: /* CHHSI - compare halfword immediate */
7004 case 0xe555: /* CLHHSI - compare logical immediate */
7005 case 0xe558: /* CGHSI - compare halfword immediate */
7006 case 0xe559: /* CLGHSI - compare logical immediate */
7007 case 0xe55c: /* CHSI - compare halfword immediate */
7008 case 0xe55d: /* CLFHSI - compare logical immediate */
7009 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7013 /* 0xe556-0xe557 undefined */
7014 /* 0xe55a-0xe55b undefined */
7015 /* 0xe55e-0xe55f undefined */
7017 case 0xe560: /* TBEGIN - transaction begin */
7018 /* The transaction will be immediately aborted after this
7019 instruction, due to single-stepping. This instruction is
7020 only supported so that the program can fail a few times
7021 and go to the non-transactional fallback. */
7024 /* Transaction diagnostic block - user. */
7025 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
7026 if (record_full_arch_list_add_mem (oaddr, 256))
7029 /* Transaction diagnostic block - supervisor. */
7030 if (record_full_arch_list_add_reg (regcache, S390_TDB_DWORD0_REGNUM))
7032 if (record_full_arch_list_add_reg (regcache, S390_TDB_ABORT_CODE_REGNUM))
7034 if (record_full_arch_list_add_reg (regcache, S390_TDB_CONFLICT_TOKEN_REGNUM))
7036 if (record_full_arch_list_add_reg (regcache, S390_TDB_ATIA_REGNUM))
7038 for (i = 0; i < 16; i++)
7039 if (record_full_arch_list_add_reg (regcache, S390_TDB_R0_REGNUM + i))
7042 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7046 /* 0xe561 unsupported: TBEGINC */
7047 /* 0xe562-0xe5ff undefined */
7054 /* 0xe6 undefined */
7057 /* RIE/RIS/RRS-format instruction */
7058 switch (ibyte[0] << 8 | ibyte[5])
7060 /* 0xec00-0xec41 undefined */
7062 case 0xec42: /* LOCHI - load halfword immediate on condition */
7063 case 0xec51: /* RISBLG - rotate then insert selected bits low */
7064 /* 32-bit or native gpr destination */
7065 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
7069 /* 0xec43 undefined */
7071 case 0xec44: /* BRXHG - branch relative on index high */
7072 case 0xec45: /* BRXLG - branch relative on index low or equal */
7073 case 0xec46: /* LOCGHI - load halfword immediate on condition */
7074 case 0xec59: /* RISBGN - rotate then insert selected bits */
7075 /* 64-bit gpr destination */
7076 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
7080 /* 0xec47-0xec4d undefined */
7082 case 0xec4e: /* LOCHHI - load halfword immediate on condition */
7083 case 0xec5d: /* RISBHG - rotate then insert selected bits high */
7084 /* 32-bit high gpr destination */
7085 if (s390_record_gpr_h (gdbarch, regcache, inib[2]))
7089 /* 0xec4f-0xec50 undefined */
7090 /* 0xec52-0xec53 undefined */
7092 case 0xec54: /* RNSBG - rotate then and selected bits */
7093 case 0xec55: /* RISBG - rotate then insert selected bits */
7094 case 0xec56: /* ROSBG - rotate then or selected bits */
7095 case 0xec57: /* RXSBG - rotate then xor selected bits */
7096 case 0xecd9: /* AGHIK - add immediate */
7097 case 0xecdb: /* ALGHSIK - add logical immediate */
7098 /* 64-bit gpr destination + flags */
7099 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
7101 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7105 /* 0xec58 undefined */
7106 /* 0xec5a-0xec5c undefined */
7107 /* 0xec5e-0xec63 undefined */
7109 case 0xec64: /* CGRJ - compare and branch relative */
7110 case 0xec65: /* CLGRJ - compare logical and branch relative */
7111 case 0xec76: /* CRJ - compare and branch relative */
7112 case 0xec77: /* CLRJ - compare logical and branch relative */
7113 case 0xec7c: /* CGIJ - compare immediate and branch relative */
7114 case 0xec7d: /* CLGIJ - compare logical immediate and branch relative */
7115 case 0xec7e: /* CIJ - compare immediate and branch relative */
7116 case 0xec7f: /* CLIJ - compare logical immediate and branch relative */
7117 case 0xece4: /* CGRB - compare and branch */
7118 case 0xece5: /* CLGRB - compare logical and branch */
7119 case 0xecf6: /* CRB - compare and branch */
7120 case 0xecf7: /* CLRB - compare logical and branch */
7121 case 0xecfc: /* CGIB - compare immediate and branch */
7122 case 0xecfd: /* CLGIB - compare logical immediate and branch */
7123 case 0xecfe: /* CIB - compare immediate and branch */
7124 case 0xecff: /* CLIB - compare logical immediate and branch */
7127 /* 0xec66-0xec6f undefined */
7129 case 0xec70: /* CGIT - compare immediate and trap */
7130 case 0xec71: /* CLGIT - compare logical immediate and trap */
7131 case 0xec72: /* CIT - compare immediate and trap */
7132 case 0xec73: /* CLFIT - compare logical immediate and trap */
7133 /* fpc only - including possible DXC write for trapping insns */
7134 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
7138 /* 0xec74-0xec75 undefined */
7139 /* 0xec78-0xec7b undefined */
7141 /* 0xec80-0xecd7 undefined */
7143 case 0xecd8: /* AHIK - add immediate */
7144 case 0xecda: /* ALHSIK - add logical immediate */
7145 /* 32-bit gpr destination + flags */
7146 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
7148 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7152 /* 0xecdc-0xece3 undefined */
7153 /* 0xece6-0xecf5 undefined */
7154 /* 0xecf8-0xecfb undefined */
7161 case 0xee: /* PLO - perform locked operation */
7162 regcache_raw_read_unsigned (regcache, S390_R0_REGNUM, &tmp);
7163 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
7164 oaddr2 = s390_record_calc_disp (gdbarch, regcache, 0, insn[2], 0);
7167 uint8_t fc = tmp & 0xff;
7173 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
7176 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
7180 case 0x01: /* CLG */
7182 if (record_full_arch_list_add_mem (oaddr2 + 0x08, 8))
7185 if (record_full_arch_list_add_mem (oaddr2 + 0x28, 8))
7189 case 0x02: /* CLGR */
7191 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
7194 if (s390_record_gpr_g (gdbarch, regcache, inib[3]))
7198 case 0x03: /* CLX */
7200 if (record_full_arch_list_add_mem (oaddr2 + 0x00, 16))
7203 if (record_full_arch_list_add_mem (oaddr2 + 0x20, 16))
7207 case 0x08: /* DCS */
7209 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[3]))
7212 case 0x0c: /* CSST */
7214 if (record_full_arch_list_add_mem (oaddr2, 4))
7218 case 0x14: /* CSTST */
7220 if (target_read_memory (oaddr2 + 0x88, buf, 8))
7222 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7223 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7224 if (record_full_arch_list_add_mem (oaddr3, 4))
7227 case 0x10: /* CSDST */
7229 if (target_read_memory (oaddr2 + 0x68, buf, 8))
7231 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7232 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7233 if (record_full_arch_list_add_mem (oaddr3, 4))
7236 if (target_read_memory (oaddr2 + 0x48, buf, 8))
7238 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7239 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7240 if (record_full_arch_list_add_mem (oaddr3, 4))
7246 if (record_full_arch_list_add_reg (regcache, S390_R0_REGNUM + inib[2]))
7249 if (record_full_arch_list_add_mem (oaddr, 4))
7253 case 0x09: /* DCSG */
7255 if (record_full_arch_list_add_mem (oaddr2 + 0x28, 8))
7259 case 0x15: /* CSTSTG */
7261 if (target_read_memory (oaddr2 + 0x88, buf, 8))
7263 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7264 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7265 if (record_full_arch_list_add_mem (oaddr3, 8))
7268 case 0x11: /* CSDSTG */
7270 if (target_read_memory (oaddr2 + 0x68, buf, 8))
7272 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7273 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7274 if (record_full_arch_list_add_mem (oaddr3, 8))
7277 case 0x0d: /* CSSTG */
7280 if (target_read_memory (oaddr2 + 0x48, buf, 8))
7282 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7283 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7284 if (record_full_arch_list_add_mem (oaddr3, 8))
7287 case 0x05: /* CSG */
7289 if (record_full_arch_list_add_mem (oaddr2 + 0x08, 8))
7292 if (record_full_arch_list_add_mem (oaddr, 8))
7296 case 0x0a: /* DCSGR */
7298 if (s390_record_gpr_g (gdbarch, regcache, inib[3]))
7301 case 0x0e: /* CSSTGR */
7303 if (record_full_arch_list_add_mem (oaddr2, 8))
7307 case 0x16: /* CSTSTGR */
7309 if (target_read_memory (oaddr2 + 0x88, buf, 8))
7311 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7312 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7313 if (record_full_arch_list_add_mem (oaddr3, 8))
7316 case 0x12: /* CSDSTGR */
7318 if (target_read_memory (oaddr2 + 0x68, buf, 8))
7320 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7321 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7322 if (record_full_arch_list_add_mem (oaddr3, 8))
7325 if (target_read_memory (oaddr2 + 0x48, buf, 8))
7327 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7328 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7329 if (record_full_arch_list_add_mem (oaddr3, 8))
7332 case 0x06: /* CSGR */
7335 if (s390_record_gpr_g (gdbarch, regcache, inib[2]))
7338 if (record_full_arch_list_add_mem (oaddr, 8))
7342 case 0x0b: /* DCSX */
7344 if (record_full_arch_list_add_mem (oaddr2 + 0x20, 16))
7348 case 0x17: /* CSTSTX */
7350 if (target_read_memory (oaddr2 + 0x88, buf, 8))
7352 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7353 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7354 if (record_full_arch_list_add_mem (oaddr3, 16))
7357 case 0x13: /* CSDSTX */
7359 if (target_read_memory (oaddr2 + 0x68, buf, 8))
7361 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7362 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7363 if (record_full_arch_list_add_mem (oaddr3, 16))
7366 case 0x0f: /* CSSTX */
7369 if (target_read_memory (oaddr2 + 0x48, buf, 8))
7371 oaddr3 = extract_unsigned_integer (buf, 8, byte_order);
7372 oaddr3 = s390_record_address_mask (gdbarch, regcache, oaddr3);
7373 if (record_full_arch_list_add_mem (oaddr3, 16))
7376 case 0x07: /* CSX */
7378 if (record_full_arch_list_add_mem (oaddr2 + 0x00, 16))
7381 if (record_full_arch_list_add_mem (oaddr, 16))
7386 fprintf_unfiltered (gdb_stdlog, "Warning: Unknown PLO FC %02x at %s.\n",
7387 fc, paddress (gdbarch, addr));
7391 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7395 case 0xef: /* LMD - load multiple disjoint */
7396 for (i = inib[2]; i != inib[3]; i++, i &= 0xf)
7397 if (s390_record_gpr_g (gdbarch, regcache, i))
7399 if (s390_record_gpr_g (gdbarch, regcache, inib[3]))
7403 case 0xf0: /* SRP - shift and round decimal */
7404 case 0xf8: /* ZAP - zero and add */
7405 case 0xfa: /* AP - add decimal */
7406 case 0xfb: /* SP - subtract decimal */
7407 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
7408 if (record_full_arch_list_add_mem (oaddr, inib[2] + 1))
7410 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7412 /* DXC may be written */
7413 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
7417 case 0xf1: /* MVO - move with offset */
7418 case 0xf2: /* PACK - pack */
7419 case 0xf3: /* UNPK - unpack */
7420 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
7421 if (record_full_arch_list_add_mem (oaddr, inib[2] + 1))
7425 /* 0xf4-0xf7 undefined */
7427 case 0xf9: /* CP - compare decimal */
7428 if (record_full_arch_list_add_reg (regcache, S390_PSWM_REGNUM))
7430 /* DXC may be written */
7431 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
7435 case 0xfc: /* MP - multiply decimal */
7436 case 0xfd: /* DP - divide decimal */
7437 oaddr = s390_record_calc_disp (gdbarch, regcache, 0, insn[1], 0);
7438 if (record_full_arch_list_add_mem (oaddr, inib[2] + 1))
7440 /* DXC may be written */
7441 if (record_full_arch_list_add_reg (regcache, S390_FPC_REGNUM))
7445 /* 0xfe-0xff undefined */
7449 fprintf_unfiltered (gdb_stdlog, "Warning: Don't know how to record %04x "
7450 "at %s.\n", insn[0], paddress (gdbarch, addr));
7454 if (record_full_arch_list_add_reg (regcache, S390_PSWA_REGNUM))
7456 if (record_full_arch_list_add_end ())
7461 /* Initialize linux_record_tdep if not initialized yet. */
7464 s390_init_linux_record_tdep (struct linux_record_tdep *record_tdep,
7465 enum s390_abi_kind abi)
7467 /* These values are the size of the type that will be used in a system
7468 call. They are obtained from Linux Kernel source. */
7470 if (abi == ABI_LINUX_ZSERIES)
7472 record_tdep->size_pointer = 8;
7473 /* no _old_kernel_stat */
7474 record_tdep->size_tms = 32;
7475 record_tdep->size_loff_t = 8;
7476 record_tdep->size_flock = 32;
7477 record_tdep->size_ustat = 32;
7478 record_tdep->size_old_sigaction = 32;
7479 record_tdep->size_old_sigset_t = 8;
7480 record_tdep->size_rlimit = 16;
7481 record_tdep->size_rusage = 144;
7482 record_tdep->size_timeval = 16;
7483 record_tdep->size_timezone = 8;
7484 /* old_[ug]id_t never used */
7485 record_tdep->size_fd_set = 128;
7486 record_tdep->size_old_dirent = 280;
7487 record_tdep->size_statfs = 88;
7488 record_tdep->size_statfs64 = 88;
7489 record_tdep->size_sockaddr = 16;
7490 record_tdep->size_int = 4;
7491 record_tdep->size_long = 8;
7492 record_tdep->size_ulong = 8;
7493 record_tdep->size_msghdr = 56;
7494 record_tdep->size_itimerval = 32;
7495 record_tdep->size_stat = 144;
7496 /* old_utsname unused */
7497 record_tdep->size_sysinfo = 112;
7498 record_tdep->size_msqid_ds = 120;
7499 record_tdep->size_shmid_ds = 112;
7500 record_tdep->size_new_utsname = 390;
7501 record_tdep->size_timex = 208;
7502 record_tdep->size_mem_dqinfo = 24;
7503 record_tdep->size_if_dqblk = 72;
7504 record_tdep->size_fs_quota_stat = 80;
7505 record_tdep->size_timespec = 16;
7506 record_tdep->size_pollfd = 8;
7507 record_tdep->size_NFS_FHSIZE = 32;
7508 record_tdep->size_knfsd_fh = 132;
7509 record_tdep->size_TASK_COMM_LEN = 16;
7510 record_tdep->size_sigaction = 32;
7511 record_tdep->size_sigset_t = 8;
7512 record_tdep->size_siginfo_t = 128;
7513 record_tdep->size_cap_user_data_t = 12;
7514 record_tdep->size_stack_t = 24;
7515 record_tdep->size_off_t = 8;
7517 record_tdep->size_gid_t = 4;
7518 record_tdep->size_uid_t = 4;
7519 record_tdep->size_PAGE_SIZE = 0x1000; /* 4KB */
7520 record_tdep->size_flock64 = 32;
7521 record_tdep->size_io_event = 32;
7522 record_tdep->size_iocb = 64;
7523 record_tdep->size_epoll_event = 16;
7524 record_tdep->size_itimerspec = 32;
7525 record_tdep->size_mq_attr = 64;
7526 record_tdep->size_termios = 36;
7527 record_tdep->size_termios2 = 44;
7528 record_tdep->size_pid_t = 4;
7529 record_tdep->size_winsize = 8;
7530 record_tdep->size_serial_struct = 72;
7531 record_tdep->size_serial_icounter_struct = 80;
7532 record_tdep->size_size_t = 8;
7533 record_tdep->size_iovec = 16;
7534 record_tdep->size_time_t = 8;
7536 else if (abi == ABI_LINUX_S390)
7538 record_tdep->size_pointer = 4;
7539 record_tdep->size__old_kernel_stat = 32;
7540 record_tdep->size_tms = 16;
7541 record_tdep->size_loff_t = 8;
7542 record_tdep->size_flock = 16;
7543 record_tdep->size_ustat = 20;
7544 record_tdep->size_old_sigaction = 16;
7545 record_tdep->size_old_sigset_t = 4;
7546 record_tdep->size_rlimit = 8;
7547 record_tdep->size_rusage = 72;
7548 record_tdep->size_timeval = 8;
7549 record_tdep->size_timezone = 8;
7550 record_tdep->size_old_gid_t = 2;
7551 record_tdep->size_old_uid_t = 2;
7552 record_tdep->size_fd_set = 128;
7553 record_tdep->size_old_dirent = 268;
7554 record_tdep->size_statfs = 64;
7555 record_tdep->size_statfs64 = 88;
7556 record_tdep->size_sockaddr = 16;
7557 record_tdep->size_int = 4;
7558 record_tdep->size_long = 4;
7559 record_tdep->size_ulong = 4;
7560 record_tdep->size_msghdr = 28;
7561 record_tdep->size_itimerval = 16;
7562 record_tdep->size_stat = 64;
7563 /* old_utsname unused */
7564 record_tdep->size_sysinfo = 64;
7565 record_tdep->size_msqid_ds = 88;
7566 record_tdep->size_shmid_ds = 84;
7567 record_tdep->size_new_utsname = 390;
7568 record_tdep->size_timex = 128;
7569 record_tdep->size_mem_dqinfo = 24;
7570 record_tdep->size_if_dqblk = 72;
7571 record_tdep->size_fs_quota_stat = 80;
7572 record_tdep->size_timespec = 8;
7573 record_tdep->size_pollfd = 8;
7574 record_tdep->size_NFS_FHSIZE = 32;
7575 record_tdep->size_knfsd_fh = 132;
7576 record_tdep->size_TASK_COMM_LEN = 16;
7577 record_tdep->size_sigaction = 20;
7578 record_tdep->size_sigset_t = 8;
7579 record_tdep->size_siginfo_t = 128;
7580 record_tdep->size_cap_user_data_t = 12;
7581 record_tdep->size_stack_t = 12;
7582 record_tdep->size_off_t = 4;
7583 record_tdep->size_stat64 = 104;
7584 record_tdep->size_gid_t = 4;
7585 record_tdep->size_uid_t = 4;
7586 record_tdep->size_PAGE_SIZE = 0x1000; /* 4KB */
7587 record_tdep->size_flock64 = 32;
7588 record_tdep->size_io_event = 32;
7589 record_tdep->size_iocb = 64;
7590 record_tdep->size_epoll_event = 16;
7591 record_tdep->size_itimerspec = 16;
7592 record_tdep->size_mq_attr = 32;
7593 record_tdep->size_termios = 36;
7594 record_tdep->size_termios2 = 44;
7595 record_tdep->size_pid_t = 4;
7596 record_tdep->size_winsize = 8;
7597 record_tdep->size_serial_struct = 60;
7598 record_tdep->size_serial_icounter_struct = 80;
7599 record_tdep->size_size_t = 4;
7600 record_tdep->size_iovec = 8;
7601 record_tdep->size_time_t = 4;
7604 /* These values are the second argument of system call "sys_fcntl"
7605 and "sys_fcntl64". They are obtained from Linux Kernel source. */
7606 record_tdep->fcntl_F_GETLK = 5;
7607 record_tdep->fcntl_F_GETLK64 = 12;
7608 record_tdep->fcntl_F_SETLK64 = 13;
7609 record_tdep->fcntl_F_SETLKW64 = 14;
7611 record_tdep->arg1 = S390_R2_REGNUM;
7612 record_tdep->arg2 = S390_R3_REGNUM;
7613 record_tdep->arg3 = S390_R4_REGNUM;
7614 record_tdep->arg4 = S390_R5_REGNUM;
7615 record_tdep->arg5 = S390_R6_REGNUM;
7617 /* These values are the second argument of system call "sys_ioctl".
7618 They are obtained from Linux Kernel source.
7619 See arch/s390/include/uapi/asm/ioctls.h. */
7621 record_tdep->ioctl_TCGETS = 0x5401;
7622 record_tdep->ioctl_TCSETS = 0x5402;
7623 record_tdep->ioctl_TCSETSW = 0x5403;
7624 record_tdep->ioctl_TCSETSF = 0x5404;
7625 record_tdep->ioctl_TCGETA = 0x5405;
7626 record_tdep->ioctl_TCSETA = 0x5406;
7627 record_tdep->ioctl_TCSETAW = 0x5407;
7628 record_tdep->ioctl_TCSETAF = 0x5408;
7629 record_tdep->ioctl_TCSBRK = 0x5409;
7630 record_tdep->ioctl_TCXONC = 0x540a;
7631 record_tdep->ioctl_TCFLSH = 0x540b;
7632 record_tdep->ioctl_TIOCEXCL = 0x540c;
7633 record_tdep->ioctl_TIOCNXCL = 0x540d;
7634 record_tdep->ioctl_TIOCSCTTY = 0x540e;
7635 record_tdep->ioctl_TIOCGPGRP = 0x540f;
7636 record_tdep->ioctl_TIOCSPGRP = 0x5410;
7637 record_tdep->ioctl_TIOCOUTQ = 0x5411;
7638 record_tdep->ioctl_TIOCSTI = 0x5412;
7639 record_tdep->ioctl_TIOCGWINSZ = 0x5413;
7640 record_tdep->ioctl_TIOCSWINSZ = 0x5414;
7641 record_tdep->ioctl_TIOCMGET = 0x5415;
7642 record_tdep->ioctl_TIOCMBIS = 0x5416;
7643 record_tdep->ioctl_TIOCMBIC = 0x5417;
7644 record_tdep->ioctl_TIOCMSET = 0x5418;
7645 record_tdep->ioctl_TIOCGSOFTCAR = 0x5419;
7646 record_tdep->ioctl_TIOCSSOFTCAR = 0x541a;
7647 record_tdep->ioctl_FIONREAD = 0x541b;
7648 record_tdep->ioctl_TIOCINQ = 0x541b; /* alias */
7649 record_tdep->ioctl_TIOCLINUX = 0x541c;
7650 record_tdep->ioctl_TIOCCONS = 0x541d;
7651 record_tdep->ioctl_TIOCGSERIAL = 0x541e;
7652 record_tdep->ioctl_TIOCSSERIAL = 0x541f;
7653 record_tdep->ioctl_TIOCPKT = 0x5420;
7654 record_tdep->ioctl_FIONBIO = 0x5421;
7655 record_tdep->ioctl_TIOCNOTTY = 0x5422;
7656 record_tdep->ioctl_TIOCSETD = 0x5423;
7657 record_tdep->ioctl_TIOCGETD = 0x5424;
7658 record_tdep->ioctl_TCSBRKP = 0x5425;
7659 record_tdep->ioctl_TIOCSBRK = 0x5427;
7660 record_tdep->ioctl_TIOCCBRK = 0x5428;
7661 record_tdep->ioctl_TIOCGSID = 0x5429;
7662 record_tdep->ioctl_TCGETS2 = 0x802c542a;
7663 record_tdep->ioctl_TCSETS2 = 0x402c542b;
7664 record_tdep->ioctl_TCSETSW2 = 0x402c542c;
7665 record_tdep->ioctl_TCSETSF2 = 0x402c542d;
7666 record_tdep->ioctl_TIOCGPTN = 0x80045430;
7667 record_tdep->ioctl_TIOCSPTLCK = 0x40045431;
7668 record_tdep->ioctl_FIONCLEX = 0x5450;
7669 record_tdep->ioctl_FIOCLEX = 0x5451;
7670 record_tdep->ioctl_FIOASYNC = 0x5452;
7671 record_tdep->ioctl_TIOCSERCONFIG = 0x5453;
7672 record_tdep->ioctl_TIOCSERGWILD = 0x5454;
7673 record_tdep->ioctl_TIOCSERSWILD = 0x5455;
7674 record_tdep->ioctl_TIOCGLCKTRMIOS = 0x5456;
7675 record_tdep->ioctl_TIOCSLCKTRMIOS = 0x5457;
7676 record_tdep->ioctl_TIOCSERGSTRUCT = 0x5458;
7677 record_tdep->ioctl_TIOCSERGETLSR = 0x5459;
7678 record_tdep->ioctl_TIOCSERGETMULTI = 0x545a;
7679 record_tdep->ioctl_TIOCSERSETMULTI = 0x545b;
7680 record_tdep->ioctl_TIOCMIWAIT = 0x545c;
7681 record_tdep->ioctl_TIOCGICOUNT = 0x545d;
7682 record_tdep->ioctl_FIOQSIZE = 0x545e;
7685 /* Set up gdbarch struct. */
7687 static struct gdbarch *
7688 s390_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
7690 const struct target_desc *tdesc = info.target_desc;
7691 struct tdesc_arch_data *tdesc_data = NULL;
7692 struct gdbarch *gdbarch;
7693 struct gdbarch_tdep *tdep;
7694 enum s390_abi_kind tdep_abi;
7695 enum s390_vector_abi_kind vector_abi;
7697 int have_linux_v1 = 0;
7698 int have_linux_v2 = 0;
7701 int first_pseudo_reg, last_pseudo_reg;
7702 static const char *const stap_register_prefixes[] = { "%", NULL };
7703 static const char *const stap_register_indirection_prefixes[] = { "(",
7705 static const char *const stap_register_indirection_suffixes[] = { ")",
7708 /* Default ABI and register size. */
7709 switch (info.bfd_arch_info->mach)
7711 case bfd_mach_s390_31:
7712 tdep_abi = ABI_LINUX_S390;
7715 case bfd_mach_s390_64:
7716 tdep_abi = ABI_LINUX_ZSERIES;
7723 /* Use default target description if none provided by the target. */
7724 if (!tdesc_has_registers (tdesc))
7726 if (tdep_abi == ABI_LINUX_S390)
7727 tdesc = tdesc_s390_linux32;
7729 tdesc = tdesc_s390x_linux64;
7732 /* Check any target description for validity. */
7733 if (tdesc_has_registers (tdesc))
7735 static const char *const gprs[] = {
7736 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
7737 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
7739 static const char *const fprs[] = {
7740 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
7741 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15"
7743 static const char *const acrs[] = {
7744 "acr0", "acr1", "acr2", "acr3", "acr4", "acr5", "acr6", "acr7",
7745 "acr8", "acr9", "acr10", "acr11", "acr12", "acr13", "acr14", "acr15"
7747 static const char *const gprs_lower[] = {
7748 "r0l", "r1l", "r2l", "r3l", "r4l", "r5l", "r6l", "r7l",
7749 "r8l", "r9l", "r10l", "r11l", "r12l", "r13l", "r14l", "r15l"
7751 static const char *const gprs_upper[] = {
7752 "r0h", "r1h", "r2h", "r3h", "r4h", "r5h", "r6h", "r7h",
7753 "r8h", "r9h", "r10h", "r11h", "r12h", "r13h", "r14h", "r15h"
7755 static const char *const tdb_regs[] = {
7756 "tdb0", "tac", "tct", "atia",
7757 "tr0", "tr1", "tr2", "tr3", "tr4", "tr5", "tr6", "tr7",
7758 "tr8", "tr9", "tr10", "tr11", "tr12", "tr13", "tr14", "tr15"
7760 static const char *const vxrs_low[] = {
7761 "v0l", "v1l", "v2l", "v3l", "v4l", "v5l", "v6l", "v7l", "v8l",
7762 "v9l", "v10l", "v11l", "v12l", "v13l", "v14l", "v15l",
7764 static const char *const vxrs_high[] = {
7765 "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", "v24",
7766 "v25", "v26", "v27", "v28", "v29", "v30", "v31",
7768 const struct tdesc_feature *feature;
7771 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.core");
7772 if (feature == NULL)
7775 tdesc_data = tdesc_data_alloc ();
7777 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7778 S390_PSWM_REGNUM, "pswm");
7779 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7780 S390_PSWA_REGNUM, "pswa");
7782 if (tdesc_unnumbered_register (feature, "r0"))
7784 for (i = 0; i < 16; i++)
7785 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7786 S390_R0_REGNUM + i, gprs[i]);
7792 for (i = 0; i < 16; i++)
7793 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7796 for (i = 0; i < 16; i++)
7797 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7798 S390_R0_UPPER_REGNUM + i,
7802 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.fpr");
7803 if (feature == NULL)
7805 tdesc_data_cleanup (tdesc_data);
7809 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7810 S390_FPC_REGNUM, "fpc");
7811 for (i = 0; i < 16; i++)
7812 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7813 S390_F0_REGNUM + i, fprs[i]);
7815 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.acr");
7816 if (feature == NULL)
7818 tdesc_data_cleanup (tdesc_data);
7822 for (i = 0; i < 16; i++)
7823 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7824 S390_A0_REGNUM + i, acrs[i]);
7826 /* Optional GNU/Linux-specific "registers". */
7827 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.linux");
7830 tdesc_numbered_register (feature, tdesc_data,
7831 S390_ORIG_R2_REGNUM, "orig_r2");
7833 if (tdesc_numbered_register (feature, tdesc_data,
7834 S390_LAST_BREAK_REGNUM, "last_break"))
7837 if (tdesc_numbered_register (feature, tdesc_data,
7838 S390_SYSTEM_CALL_REGNUM, "system_call"))
7841 if (have_linux_v2 > have_linux_v1)
7845 /* Transaction diagnostic block. */
7846 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.tdb");
7849 for (i = 0; i < ARRAY_SIZE (tdb_regs); i++)
7850 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7851 S390_TDB_DWORD0_REGNUM + i,
7856 /* Vector registers. */
7857 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.vx");
7860 for (i = 0; i < 16; i++)
7861 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7862 S390_V0_LOWER_REGNUM + i,
7864 for (i = 0; i < 16; i++)
7865 valid_p &= tdesc_numbered_register (feature, tdesc_data,
7866 S390_V16_REGNUM + i,
7873 tdesc_data_cleanup (tdesc_data);
7878 /* Determine vector ABI. */
7879 vector_abi = S390_VECTOR_ABI_NONE;
7882 && info.abfd != NULL
7883 && info.abfd->format == bfd_object
7884 && bfd_get_flavour (info.abfd) == bfd_target_elf_flavour
7885 && bfd_elf_get_obj_attr_int (info.abfd, OBJ_ATTR_GNU,
7886 Tag_GNU_S390_ABI_Vector) == 2)
7887 vector_abi = S390_VECTOR_ABI_128;
7890 /* Find a candidate among extant architectures. */
7891 for (arches = gdbarch_list_lookup_by_info (arches, &info);
7893 arches = gdbarch_list_lookup_by_info (arches->next, &info))
7895 tdep = gdbarch_tdep (arches->gdbarch);
7898 if (tdep->abi != tdep_abi)
7900 if (tdep->vector_abi != vector_abi)
7902 if ((tdep->gpr_full_regnum != -1) != have_upper)
7904 if (tdesc_data != NULL)
7905 tdesc_data_cleanup (tdesc_data);
7906 return arches->gdbarch;
7909 /* Otherwise create a new gdbarch for the specified machine type. */
7910 tdep = XCNEW (struct gdbarch_tdep);
7911 tdep->abi = tdep_abi;
7912 tdep->vector_abi = vector_abi;
7913 tdep->have_linux_v1 = have_linux_v1;
7914 tdep->have_linux_v2 = have_linux_v2;
7915 tdep->have_tdb = have_tdb;
7916 gdbarch = gdbarch_alloc (&info, tdep);
7918 set_gdbarch_believe_pcc_promotion (gdbarch, 0);
7919 set_gdbarch_char_signed (gdbarch, 0);
7921 /* S/390 GNU/Linux uses either 64-bit or 128-bit long doubles.
7922 We can safely let them default to 128-bit, since the debug info
7923 will give the size of type actually used in each case. */
7924 set_gdbarch_long_double_bit (gdbarch, 128);
7925 set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
7927 /* Amount PC must be decremented by after a breakpoint. This is
7928 often the number of bytes returned by gdbarch_breakpoint_from_pc but not
7930 set_gdbarch_decr_pc_after_break (gdbarch, 2);
7931 /* Stack grows downward. */
7932 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
7933 set_gdbarch_breakpoint_kind_from_pc (gdbarch, s390_breakpoint::kind_from_pc);
7934 set_gdbarch_sw_breakpoint_from_kind (gdbarch, s390_breakpoint::bp_from_kind);
7935 set_gdbarch_software_single_step (gdbarch, s390_software_single_step);
7936 set_gdbarch_displaced_step_hw_singlestep (gdbarch, s390_displaced_step_hw_singlestep);
7937 set_gdbarch_skip_prologue (gdbarch, s390_skip_prologue);
7938 set_gdbarch_stack_frame_destroyed_p (gdbarch, s390_stack_frame_destroyed_p);
7940 set_gdbarch_num_regs (gdbarch, S390_NUM_REGS);
7941 set_gdbarch_sp_regnum (gdbarch, S390_SP_REGNUM);
7942 set_gdbarch_fp0_regnum (gdbarch, S390_F0_REGNUM);
7943 set_gdbarch_stab_reg_to_regnum (gdbarch, s390_dwarf_reg_to_regnum);
7944 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, s390_dwarf_reg_to_regnum);
7945 set_gdbarch_value_from_register (gdbarch, s390_value_from_register);
7946 set_gdbarch_core_read_description (gdbarch, s390_core_read_description);
7947 set_gdbarch_iterate_over_regset_sections (gdbarch,
7948 s390_iterate_over_regset_sections);
7949 set_gdbarch_cannot_store_register (gdbarch, s390_cannot_store_register);
7950 set_gdbarch_write_pc (gdbarch, s390_write_pc);
7951 set_gdbarch_guess_tracepoint_registers (gdbarch, s390_guess_tracepoint_registers);
7952 set_gdbarch_pseudo_register_read (gdbarch, s390_pseudo_register_read);
7953 set_gdbarch_pseudo_register_write (gdbarch, s390_pseudo_register_write);
7954 set_tdesc_pseudo_register_name (gdbarch, s390_pseudo_register_name);
7955 set_tdesc_pseudo_register_type (gdbarch, s390_pseudo_register_type);
7956 set_tdesc_pseudo_register_reggroup_p (gdbarch,
7957 s390_pseudo_register_reggroup_p);
7958 set_gdbarch_ax_pseudo_register_collect (gdbarch,
7959 s390_ax_pseudo_register_collect);
7960 set_gdbarch_ax_pseudo_register_push_stack
7961 (gdbarch, s390_ax_pseudo_register_push_stack);
7962 set_gdbarch_gen_return_address (gdbarch, s390_gen_return_address);
7963 tdesc_use_registers (gdbarch, tdesc, tdesc_data);
7964 set_gdbarch_register_name (gdbarch, s390_register_name);
7966 /* Assign pseudo register numbers. */
7967 first_pseudo_reg = gdbarch_num_regs (gdbarch);
7968 last_pseudo_reg = first_pseudo_reg;
7969 tdep->gpr_full_regnum = -1;
7972 tdep->gpr_full_regnum = last_pseudo_reg;
7973 last_pseudo_reg += 16;
7975 tdep->v0_full_regnum = -1;
7978 tdep->v0_full_regnum = last_pseudo_reg;
7979 last_pseudo_reg += 16;
7981 tdep->pc_regnum = last_pseudo_reg++;
7982 tdep->cc_regnum = last_pseudo_reg++;
7983 set_gdbarch_pc_regnum (gdbarch, tdep->pc_regnum);
7984 set_gdbarch_num_pseudo_regs (gdbarch, last_pseudo_reg - first_pseudo_reg);
7986 /* Inferior function calls. */
7987 set_gdbarch_push_dummy_call (gdbarch, s390_push_dummy_call);
7988 set_gdbarch_dummy_id (gdbarch, s390_dummy_id);
7989 set_gdbarch_frame_align (gdbarch, s390_frame_align);
7990 set_gdbarch_return_value (gdbarch, s390_return_value);
7992 /* Syscall handling. */
7993 set_gdbarch_get_syscall_number (gdbarch, s390_linux_get_syscall_number);
7995 /* Frame handling. */
7996 dwarf2_frame_set_init_reg (gdbarch, s390_dwarf2_frame_init_reg);
7997 dwarf2_frame_set_adjust_regnum (gdbarch, s390_adjust_frame_regnum);
7998 dwarf2_append_unwinders (gdbarch);
7999 frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
8000 frame_unwind_append_unwinder (gdbarch, &s390_stub_frame_unwind);
8001 frame_unwind_append_unwinder (gdbarch, &s390_sigtramp_frame_unwind);
8002 frame_unwind_append_unwinder (gdbarch, &s390_frame_unwind);
8003 frame_base_set_default (gdbarch, &s390_frame_base);
8004 set_gdbarch_unwind_pc (gdbarch, s390_unwind_pc);
8005 set_gdbarch_unwind_sp (gdbarch, s390_unwind_sp);
8007 /* Displaced stepping. */
8008 set_gdbarch_displaced_step_copy_insn (gdbarch,
8009 s390_displaced_step_copy_insn);
8010 set_gdbarch_displaced_step_fixup (gdbarch, s390_displaced_step_fixup);
8011 set_gdbarch_displaced_step_free_closure (gdbarch,
8012 simple_displaced_step_free_closure);
8013 set_gdbarch_displaced_step_location (gdbarch, linux_displaced_step_location);
8014 set_gdbarch_max_insn_length (gdbarch, S390_MAX_INSTR_SIZE);
8016 /* Note that GNU/Linux is the only OS supported on this
8018 linux_init_abi (info, gdbarch);
8022 case ABI_LINUX_S390:
8023 set_gdbarch_addr_bits_remove (gdbarch, s390_addr_bits_remove);
8024 set_solib_svr4_fetch_link_map_offsets
8025 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
8027 set_xml_syscall_file_name (gdbarch, XML_SYSCALL_FILENAME_S390);
8030 case ABI_LINUX_ZSERIES:
8031 set_gdbarch_long_bit (gdbarch, 64);
8032 set_gdbarch_long_long_bit (gdbarch, 64);
8033 set_gdbarch_ptr_bit (gdbarch, 64);
8034 set_solib_svr4_fetch_link_map_offsets
8035 (gdbarch, svr4_lp64_fetch_link_map_offsets);
8036 set_gdbarch_address_class_type_flags (gdbarch,
8037 s390_address_class_type_flags);
8038 set_gdbarch_address_class_type_flags_to_name (gdbarch,
8039 s390_address_class_type_flags_to_name);
8040 set_gdbarch_address_class_name_to_type_flags (gdbarch,
8041 s390_address_class_name_to_type_flags);
8042 set_xml_syscall_file_name (gdbarch, XML_SYSCALL_FILENAME_S390X);
8046 set_gdbarch_print_insn (gdbarch, print_insn_s390);
8048 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
8050 /* Enable TLS support. */
8051 set_gdbarch_fetch_tls_load_module_address (gdbarch,
8052 svr4_fetch_objfile_link_map);
8054 /* SystemTap functions. */
8055 set_gdbarch_stap_register_prefixes (gdbarch, stap_register_prefixes);
8056 set_gdbarch_stap_register_indirection_prefixes (gdbarch,
8057 stap_register_indirection_prefixes);
8058 set_gdbarch_stap_register_indirection_suffixes (gdbarch,
8059 stap_register_indirection_suffixes);
8060 set_gdbarch_stap_is_single_operand (gdbarch, s390_stap_is_single_operand);
8061 set_gdbarch_gcc_target_options (gdbarch, s390_gcc_target_options);
8062 set_gdbarch_gnu_triplet_regexp (gdbarch, s390_gnu_triplet_regexp);
8064 /* Support reverse debugging. */
8066 set_gdbarch_process_record (gdbarch, s390_process_record);
8067 set_gdbarch_process_record_signal (gdbarch, s390_linux_record_signal);
8069 s390_init_linux_record_tdep (&s390_linux_record_tdep, ABI_LINUX_S390);
8070 s390_init_linux_record_tdep (&s390x_linux_record_tdep, ABI_LINUX_ZSERIES);
8072 set_gdbarch_disassembler_options (gdbarch, &s390_disassembler_options);
8073 set_gdbarch_valid_disassembler_options (gdbarch,
8074 disassembler_options_s390 ());
8080 extern initialize_file_ftype _initialize_s390_tdep; /* -Wmissing-prototypes */
8083 _initialize_s390_tdep (void)
8085 /* Hook us into the gdbarch mechanism. */
8086 register_gdbarch_init (bfd_arch_s390, s390_gdbarch_init);
8088 /* Initialize the GNU/Linux target descriptions. */
8089 initialize_tdesc_s390_linux32 ();
8090 initialize_tdesc_s390_linux32v1 ();
8091 initialize_tdesc_s390_linux32v2 ();
8092 initialize_tdesc_s390_linux64 ();
8093 initialize_tdesc_s390_linux64v1 ();
8094 initialize_tdesc_s390_linux64v2 ();
8095 initialize_tdesc_s390_te_linux64 ();
8096 initialize_tdesc_s390_vx_linux64 ();
8097 initialize_tdesc_s390_tevx_linux64 ();
8098 initialize_tdesc_s390x_linux64 ();
8099 initialize_tdesc_s390x_linux64v1 ();
8100 initialize_tdesc_s390x_linux64v2 ();
8101 initialize_tdesc_s390x_te_linux64 ();
8102 initialize_tdesc_s390x_vx_linux64 ();
8103 initialize_tdesc_s390x_tevx_linux64 ();