f28bdceb1e7e6f61c0d9bcb1261abaac1a5eb675
[binutils-gdb.git] / gdb / s390-tdep.c
1 /* Target-dependent code for GDB, the GNU debugger.
2
3 Copyright (C) 2001-2013 Free Software Foundation, Inc.
4
5 Contributed by D.J. Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
6 for IBM Deutschland Entwicklung GmbH, IBM Corporation.
7
8 This file is part of GDB.
9
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.
14
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.
19
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/>. */
22
23 #include "defs.h"
24 #include "arch-utils.h"
25 #include "frame.h"
26 #include "inferior.h"
27 #include "symtab.h"
28 #include "target.h"
29 #include "gdbcore.h"
30 #include "gdbcmd.h"
31 #include "objfiles.h"
32 #include "floatformat.h"
33 #include "regcache.h"
34 #include "trad-frame.h"
35 #include "frame-base.h"
36 #include "frame-unwind.h"
37 #include "dwarf2-frame.h"
38 #include "reggroups.h"
39 #include "regset.h"
40 #include "value.h"
41 #include "gdb_assert.h"
42 #include "dis-asm.h"
43 #include "solib-svr4.h"
44 #include "prologue-value.h"
45 #include "linux-tdep.h"
46 #include "s390-tdep.h"
47
48 #include "stap-probe.h"
49 #include "ax.h"
50 #include "ax-gdb.h"
51 #include "user-regs.h"
52 #include "cli/cli-utils.h"
53 #include <ctype.h>
54
55 #include "features/s390-linux32.c"
56 #include "features/s390-linux32v1.c"
57 #include "features/s390-linux32v2.c"
58 #include "features/s390-linux64.c"
59 #include "features/s390-linux64v1.c"
60 #include "features/s390-linux64v2.c"
61 #include "features/s390x-linux64.c"
62 #include "features/s390x-linux64v1.c"
63 #include "features/s390x-linux64v2.c"
64
65 /* The tdep structure. */
66
67 struct gdbarch_tdep
68 {
69 /* ABI version. */
70 enum { ABI_LINUX_S390, ABI_LINUX_ZSERIES } abi;
71
72 /* Pseudo register numbers. */
73 int gpr_full_regnum;
74 int pc_regnum;
75 int cc_regnum;
76
77 /* Core file register sets. */
78 const struct regset *gregset;
79 int sizeof_gregset;
80
81 const struct regset *fpregset;
82 int sizeof_fpregset;
83 };
84
85
86 /* ABI call-saved register information. */
87
88 static int
89 s390_register_call_saved (struct gdbarch *gdbarch, int regnum)
90 {
91 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
92
93 switch (tdep->abi)
94 {
95 case ABI_LINUX_S390:
96 if ((regnum >= S390_R6_REGNUM && regnum <= S390_R15_REGNUM)
97 || regnum == S390_F4_REGNUM || regnum == S390_F6_REGNUM
98 || regnum == S390_A0_REGNUM)
99 return 1;
100
101 break;
102
103 case ABI_LINUX_ZSERIES:
104 if ((regnum >= S390_R6_REGNUM && regnum <= S390_R15_REGNUM)
105 || (regnum >= S390_F8_REGNUM && regnum <= S390_F15_REGNUM)
106 || (regnum >= S390_A0_REGNUM && regnum <= S390_A1_REGNUM))
107 return 1;
108
109 break;
110 }
111
112 return 0;
113 }
114
115 static int
116 s390_cannot_store_register (struct gdbarch *gdbarch, int regnum)
117 {
118 /* The last-break address is read-only. */
119 return regnum == S390_LAST_BREAK_REGNUM;
120 }
121
122 static void
123 s390_write_pc (struct regcache *regcache, CORE_ADDR pc)
124 {
125 struct gdbarch *gdbarch = get_regcache_arch (regcache);
126 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
127
128 regcache_cooked_write_unsigned (regcache, tdep->pc_regnum, pc);
129
130 /* Set special SYSTEM_CALL register to 0 to prevent the kernel from
131 messing with the PC we just installed, if we happen to be within
132 an interrupted system call that the kernel wants to restart.
133
134 Note that after we return from the dummy call, the SYSTEM_CALL and
135 ORIG_R2 registers will be automatically restored, and the kernel
136 continues to restart the system call at this point. */
137 if (register_size (gdbarch, S390_SYSTEM_CALL_REGNUM) > 0)
138 regcache_cooked_write_unsigned (regcache, S390_SYSTEM_CALL_REGNUM, 0);
139 }
140
141
142 /* DWARF Register Mapping. */
143
144 static const short s390_dwarf_regmap[] =
145 {
146 /* General Purpose Registers. */
147 S390_R0_REGNUM, S390_R1_REGNUM, S390_R2_REGNUM, S390_R3_REGNUM,
148 S390_R4_REGNUM, S390_R5_REGNUM, S390_R6_REGNUM, S390_R7_REGNUM,
149 S390_R8_REGNUM, S390_R9_REGNUM, S390_R10_REGNUM, S390_R11_REGNUM,
150 S390_R12_REGNUM, S390_R13_REGNUM, S390_R14_REGNUM, S390_R15_REGNUM,
151
152 /* Floating Point Registers. */
153 S390_F0_REGNUM, S390_F2_REGNUM, S390_F4_REGNUM, S390_F6_REGNUM,
154 S390_F1_REGNUM, S390_F3_REGNUM, S390_F5_REGNUM, S390_F7_REGNUM,
155 S390_F8_REGNUM, S390_F10_REGNUM, S390_F12_REGNUM, S390_F14_REGNUM,
156 S390_F9_REGNUM, S390_F11_REGNUM, S390_F13_REGNUM, S390_F15_REGNUM,
157
158 /* Control Registers (not mapped). */
159 -1, -1, -1, -1, -1, -1, -1, -1,
160 -1, -1, -1, -1, -1, -1, -1, -1,
161
162 /* Access Registers. */
163 S390_A0_REGNUM, S390_A1_REGNUM, S390_A2_REGNUM, S390_A3_REGNUM,
164 S390_A4_REGNUM, S390_A5_REGNUM, S390_A6_REGNUM, S390_A7_REGNUM,
165 S390_A8_REGNUM, S390_A9_REGNUM, S390_A10_REGNUM, S390_A11_REGNUM,
166 S390_A12_REGNUM, S390_A13_REGNUM, S390_A14_REGNUM, S390_A15_REGNUM,
167
168 /* Program Status Word. */
169 S390_PSWM_REGNUM,
170 S390_PSWA_REGNUM,
171
172 /* GPR Lower Half Access. */
173 S390_R0_REGNUM, S390_R1_REGNUM, S390_R2_REGNUM, S390_R3_REGNUM,
174 S390_R4_REGNUM, S390_R5_REGNUM, S390_R6_REGNUM, S390_R7_REGNUM,
175 S390_R8_REGNUM, S390_R9_REGNUM, S390_R10_REGNUM, S390_R11_REGNUM,
176 S390_R12_REGNUM, S390_R13_REGNUM, S390_R14_REGNUM, S390_R15_REGNUM,
177
178 /* GNU/Linux-specific registers (not mapped). */
179 -1, -1, -1,
180 };
181
182 /* Convert DWARF register number REG to the appropriate register
183 number used by GDB. */
184 static int
185 s390_dwarf_reg_to_regnum (struct gdbarch *gdbarch, int reg)
186 {
187 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
188
189 /* In a 32-on-64 debug scenario, debug info refers to the full 64-bit
190 GPRs. Note that call frame information still refers to the 32-bit
191 lower halves, because s390_adjust_frame_regnum uses register numbers
192 66 .. 81 to access GPRs. */
193 if (tdep->gpr_full_regnum != -1 && reg >= 0 && reg < 16)
194 return tdep->gpr_full_regnum + reg;
195
196 if (reg >= 0 && reg < ARRAY_SIZE (s390_dwarf_regmap))
197 return s390_dwarf_regmap[reg];
198
199 warning (_("Unmapped DWARF Register #%d encountered."), reg);
200 return -1;
201 }
202
203 /* Translate a .eh_frame register to DWARF register, or adjust a
204 .debug_frame register. */
205 static int
206 s390_adjust_frame_regnum (struct gdbarch *gdbarch, int num, int eh_frame_p)
207 {
208 /* See s390_dwarf_reg_to_regnum for comments. */
209 return (num >= 0 && num < 16)? num + 66 : num;
210 }
211
212
213 /* Pseudo registers. */
214
215 static int
216 regnum_is_gpr_full (struct gdbarch_tdep *tdep, int regnum)
217 {
218 return (tdep->gpr_full_regnum != -1
219 && regnum >= tdep->gpr_full_regnum
220 && regnum <= tdep->gpr_full_regnum + 15);
221 }
222
223 static const char *
224 s390_pseudo_register_name (struct gdbarch *gdbarch, int regnum)
225 {
226 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
227
228 if (regnum == tdep->pc_regnum)
229 return "pc";
230
231 if (regnum == tdep->cc_regnum)
232 return "cc";
233
234 if (regnum_is_gpr_full (tdep, regnum))
235 {
236 static const char *full_name[] = {
237 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
238 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
239 };
240 return full_name[regnum - tdep->gpr_full_regnum];
241 }
242
243 internal_error (__FILE__, __LINE__, _("invalid regnum"));
244 }
245
246 static struct type *
247 s390_pseudo_register_type (struct gdbarch *gdbarch, int regnum)
248 {
249 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
250
251 if (regnum == tdep->pc_regnum)
252 return builtin_type (gdbarch)->builtin_func_ptr;
253
254 if (regnum == tdep->cc_regnum)
255 return builtin_type (gdbarch)->builtin_int;
256
257 if (regnum_is_gpr_full (tdep, regnum))
258 return builtin_type (gdbarch)->builtin_uint64;
259
260 internal_error (__FILE__, __LINE__, _("invalid regnum"));
261 }
262
263 static enum register_status
264 s390_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
265 int regnum, gdb_byte *buf)
266 {
267 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
268 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
269 int regsize = register_size (gdbarch, regnum);
270 ULONGEST val;
271
272 if (regnum == tdep->pc_regnum)
273 {
274 enum register_status status;
275
276 status = regcache_raw_read_unsigned (regcache, S390_PSWA_REGNUM, &val);
277 if (status == REG_VALID)
278 {
279 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
280 val &= 0x7fffffff;
281 store_unsigned_integer (buf, regsize, byte_order, val);
282 }
283 return status;
284 }
285
286 if (regnum == tdep->cc_regnum)
287 {
288 enum register_status status;
289
290 status = regcache_raw_read_unsigned (regcache, S390_PSWM_REGNUM, &val);
291 if (status == REG_VALID)
292 {
293 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
294 val = (val >> 12) & 3;
295 else
296 val = (val >> 44) & 3;
297 store_unsigned_integer (buf, regsize, byte_order, val);
298 }
299 return status;
300 }
301
302 if (regnum_is_gpr_full (tdep, regnum))
303 {
304 enum register_status status;
305 ULONGEST val_upper;
306
307 regnum -= tdep->gpr_full_regnum;
308
309 status = regcache_raw_read_unsigned (regcache, S390_R0_REGNUM + regnum, &val);
310 if (status == REG_VALID)
311 status = regcache_raw_read_unsigned (regcache, S390_R0_UPPER_REGNUM + regnum,
312 &val_upper);
313 if (status == REG_VALID)
314 {
315 val |= val_upper << 32;
316 store_unsigned_integer (buf, regsize, byte_order, val);
317 }
318 return status;
319 }
320
321 internal_error (__FILE__, __LINE__, _("invalid regnum"));
322 }
323
324 static void
325 s390_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
326 int regnum, const gdb_byte *buf)
327 {
328 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
329 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
330 int regsize = register_size (gdbarch, regnum);
331 ULONGEST val, psw;
332
333 if (regnum == tdep->pc_regnum)
334 {
335 val = extract_unsigned_integer (buf, regsize, byte_order);
336 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
337 {
338 regcache_raw_read_unsigned (regcache, S390_PSWA_REGNUM, &psw);
339 val = (psw & 0x80000000) | (val & 0x7fffffff);
340 }
341 regcache_raw_write_unsigned (regcache, S390_PSWA_REGNUM, val);
342 return;
343 }
344
345 if (regnum == tdep->cc_regnum)
346 {
347 val = extract_unsigned_integer (buf, regsize, byte_order);
348 regcache_raw_read_unsigned (regcache, S390_PSWM_REGNUM, &psw);
349 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
350 val = (psw & ~((ULONGEST)3 << 12)) | ((val & 3) << 12);
351 else
352 val = (psw & ~((ULONGEST)3 << 44)) | ((val & 3) << 44);
353 regcache_raw_write_unsigned (regcache, S390_PSWM_REGNUM, val);
354 return;
355 }
356
357 if (regnum_is_gpr_full (tdep, regnum))
358 {
359 regnum -= tdep->gpr_full_regnum;
360 val = extract_unsigned_integer (buf, regsize, byte_order);
361 regcache_raw_write_unsigned (regcache, S390_R0_REGNUM + regnum,
362 val & 0xffffffff);
363 regcache_raw_write_unsigned (regcache, S390_R0_UPPER_REGNUM + regnum,
364 val >> 32);
365 return;
366 }
367
368 internal_error (__FILE__, __LINE__, _("invalid regnum"));
369 }
370
371 /* 'float' values are stored in the upper half of floating-point
372 registers, even though we are otherwise a big-endian platform. */
373
374 static struct value *
375 s390_value_from_register (struct type *type, int regnum,
376 struct frame_info *frame)
377 {
378 struct value *value = default_value_from_register (type, regnum, frame);
379
380 check_typedef (type);
381
382 if (regnum >= S390_F0_REGNUM && regnum <= S390_F15_REGNUM
383 && TYPE_LENGTH (type) < 8)
384 set_value_offset (value, 0);
385
386 return value;
387 }
388
389 /* Register groups. */
390
391 static int
392 s390_pseudo_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
393 struct reggroup *group)
394 {
395 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
396
397 /* We usually save/restore the whole PSW, which includes PC and CC.
398 However, some older gdbservers may not support saving/restoring
399 the whole PSW yet, and will return an XML register description
400 excluding those from the save/restore register groups. In those
401 cases, we still need to explicitly save/restore PC and CC in order
402 to push or pop frames. Since this doesn't hurt anything if we
403 already save/restore the whole PSW (it's just redundant), we add
404 PC and CC at this point unconditionally. */
405 if (group == save_reggroup || group == restore_reggroup)
406 return regnum == tdep->pc_regnum || regnum == tdep->cc_regnum;
407
408 return default_register_reggroup_p (gdbarch, regnum, group);
409 }
410
411
412 /* Maps for register sets. */
413
414 const short s390_regmap_gregset[] =
415 {
416 0x00, S390_PSWM_REGNUM,
417 0x04, S390_PSWA_REGNUM,
418 0x08, S390_R0_REGNUM,
419 0x0c, S390_R1_REGNUM,
420 0x10, S390_R2_REGNUM,
421 0x14, S390_R3_REGNUM,
422 0x18, S390_R4_REGNUM,
423 0x1c, S390_R5_REGNUM,
424 0x20, S390_R6_REGNUM,
425 0x24, S390_R7_REGNUM,
426 0x28, S390_R8_REGNUM,
427 0x2c, S390_R9_REGNUM,
428 0x30, S390_R10_REGNUM,
429 0x34, S390_R11_REGNUM,
430 0x38, S390_R12_REGNUM,
431 0x3c, S390_R13_REGNUM,
432 0x40, S390_R14_REGNUM,
433 0x44, S390_R15_REGNUM,
434 0x48, S390_A0_REGNUM,
435 0x4c, S390_A1_REGNUM,
436 0x50, S390_A2_REGNUM,
437 0x54, S390_A3_REGNUM,
438 0x58, S390_A4_REGNUM,
439 0x5c, S390_A5_REGNUM,
440 0x60, S390_A6_REGNUM,
441 0x64, S390_A7_REGNUM,
442 0x68, S390_A8_REGNUM,
443 0x6c, S390_A9_REGNUM,
444 0x70, S390_A10_REGNUM,
445 0x74, S390_A11_REGNUM,
446 0x78, S390_A12_REGNUM,
447 0x7c, S390_A13_REGNUM,
448 0x80, S390_A14_REGNUM,
449 0x84, S390_A15_REGNUM,
450 0x88, S390_ORIG_R2_REGNUM,
451 -1, -1
452 };
453
454 const short s390x_regmap_gregset[] =
455 {
456 0x00, S390_PSWM_REGNUM,
457 0x08, S390_PSWA_REGNUM,
458 0x10, S390_R0_REGNUM,
459 0x18, S390_R1_REGNUM,
460 0x20, S390_R2_REGNUM,
461 0x28, S390_R3_REGNUM,
462 0x30, S390_R4_REGNUM,
463 0x38, S390_R5_REGNUM,
464 0x40, S390_R6_REGNUM,
465 0x48, S390_R7_REGNUM,
466 0x50, S390_R8_REGNUM,
467 0x58, S390_R9_REGNUM,
468 0x60, S390_R10_REGNUM,
469 0x68, S390_R11_REGNUM,
470 0x70, S390_R12_REGNUM,
471 0x78, S390_R13_REGNUM,
472 0x80, S390_R14_REGNUM,
473 0x88, S390_R15_REGNUM,
474 0x90, S390_A0_REGNUM,
475 0x94, S390_A1_REGNUM,
476 0x98, S390_A2_REGNUM,
477 0x9c, S390_A3_REGNUM,
478 0xa0, S390_A4_REGNUM,
479 0xa4, S390_A5_REGNUM,
480 0xa8, S390_A6_REGNUM,
481 0xac, S390_A7_REGNUM,
482 0xb0, S390_A8_REGNUM,
483 0xb4, S390_A9_REGNUM,
484 0xb8, S390_A10_REGNUM,
485 0xbc, S390_A11_REGNUM,
486 0xc0, S390_A12_REGNUM,
487 0xc4, S390_A13_REGNUM,
488 0xc8, S390_A14_REGNUM,
489 0xcc, S390_A15_REGNUM,
490 0x10, S390_R0_UPPER_REGNUM,
491 0x18, S390_R1_UPPER_REGNUM,
492 0x20, S390_R2_UPPER_REGNUM,
493 0x28, S390_R3_UPPER_REGNUM,
494 0x30, S390_R4_UPPER_REGNUM,
495 0x38, S390_R5_UPPER_REGNUM,
496 0x40, S390_R6_UPPER_REGNUM,
497 0x48, S390_R7_UPPER_REGNUM,
498 0x50, S390_R8_UPPER_REGNUM,
499 0x58, S390_R9_UPPER_REGNUM,
500 0x60, S390_R10_UPPER_REGNUM,
501 0x68, S390_R11_UPPER_REGNUM,
502 0x70, S390_R12_UPPER_REGNUM,
503 0x78, S390_R13_UPPER_REGNUM,
504 0x80, S390_R14_UPPER_REGNUM,
505 0x88, S390_R15_UPPER_REGNUM,
506 0xd0, S390_ORIG_R2_REGNUM,
507 -1, -1
508 };
509
510 const short s390_regmap_fpregset[] =
511 {
512 0x00, S390_FPC_REGNUM,
513 0x08, S390_F0_REGNUM,
514 0x10, S390_F1_REGNUM,
515 0x18, S390_F2_REGNUM,
516 0x20, S390_F3_REGNUM,
517 0x28, S390_F4_REGNUM,
518 0x30, S390_F5_REGNUM,
519 0x38, S390_F6_REGNUM,
520 0x40, S390_F7_REGNUM,
521 0x48, S390_F8_REGNUM,
522 0x50, S390_F9_REGNUM,
523 0x58, S390_F10_REGNUM,
524 0x60, S390_F11_REGNUM,
525 0x68, S390_F12_REGNUM,
526 0x70, S390_F13_REGNUM,
527 0x78, S390_F14_REGNUM,
528 0x80, S390_F15_REGNUM,
529 -1, -1
530 };
531
532 const short s390_regmap_upper[] =
533 {
534 0x00, S390_R0_UPPER_REGNUM,
535 0x04, S390_R1_UPPER_REGNUM,
536 0x08, S390_R2_UPPER_REGNUM,
537 0x0c, S390_R3_UPPER_REGNUM,
538 0x10, S390_R4_UPPER_REGNUM,
539 0x14, S390_R5_UPPER_REGNUM,
540 0x18, S390_R6_UPPER_REGNUM,
541 0x1c, S390_R7_UPPER_REGNUM,
542 0x20, S390_R8_UPPER_REGNUM,
543 0x24, S390_R9_UPPER_REGNUM,
544 0x28, S390_R10_UPPER_REGNUM,
545 0x2c, S390_R11_UPPER_REGNUM,
546 0x30, S390_R12_UPPER_REGNUM,
547 0x34, S390_R13_UPPER_REGNUM,
548 0x38, S390_R14_UPPER_REGNUM,
549 0x3c, S390_R15_UPPER_REGNUM,
550 -1, -1
551 };
552
553 const short s390_regmap_last_break[] =
554 {
555 0x04, S390_LAST_BREAK_REGNUM,
556 -1, -1
557 };
558
559 const short s390x_regmap_last_break[] =
560 {
561 0x00, S390_LAST_BREAK_REGNUM,
562 -1, -1
563 };
564
565 const short s390_regmap_system_call[] =
566 {
567 0x00, S390_SYSTEM_CALL_REGNUM,
568 -1, -1
569 };
570
571
572
573 /* Supply register REGNUM from the register set REGSET to register cache
574 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
575 static void
576 s390_supply_regset (const struct regset *regset, struct regcache *regcache,
577 int regnum, const void *regs, size_t len)
578 {
579 const short *map;
580 for (map = regset->descr; map[0] >= 0; map += 2)
581 if (regnum == -1 || regnum == map[1])
582 regcache_raw_supply (regcache, map[1], (const char *)regs + map[0]);
583 }
584
585 /* Collect register REGNUM from the register cache REGCACHE and store
586 it in the buffer specified by REGS and LEN as described by the
587 general-purpose register set REGSET. If REGNUM is -1, do this for
588 all registers in REGSET. */
589 static void
590 s390_collect_regset (const struct regset *regset,
591 const struct regcache *regcache,
592 int regnum, void *regs, size_t len)
593 {
594 const short *map;
595 for (map = regset->descr; map[0] >= 0; map += 2)
596 if (regnum == -1 || regnum == map[1])
597 regcache_raw_collect (regcache, map[1], (char *)regs + map[0]);
598 }
599
600 static const struct regset s390_gregset = {
601 s390_regmap_gregset,
602 s390_supply_regset,
603 s390_collect_regset
604 };
605
606 static const struct regset s390x_gregset = {
607 s390x_regmap_gregset,
608 s390_supply_regset,
609 s390_collect_regset
610 };
611
612 static const struct regset s390_fpregset = {
613 s390_regmap_fpregset,
614 s390_supply_regset,
615 s390_collect_regset
616 };
617
618 static const struct regset s390_upper_regset = {
619 s390_regmap_upper,
620 s390_supply_regset,
621 s390_collect_regset
622 };
623
624 static const struct regset s390_last_break_regset = {
625 s390_regmap_last_break,
626 s390_supply_regset,
627 s390_collect_regset
628 };
629
630 static const struct regset s390x_last_break_regset = {
631 s390x_regmap_last_break,
632 s390_supply_regset,
633 s390_collect_regset
634 };
635
636 static const struct regset s390_system_call_regset = {
637 s390_regmap_system_call,
638 s390_supply_regset,
639 s390_collect_regset
640 };
641
642 static struct core_regset_section s390_linux32_regset_sections[] =
643 {
644 { ".reg", s390_sizeof_gregset, "general-purpose" },
645 { ".reg2", s390_sizeof_fpregset, "floating-point" },
646 { NULL, 0}
647 };
648
649 static struct core_regset_section s390_linux32v1_regset_sections[] =
650 {
651 { ".reg", s390_sizeof_gregset, "general-purpose" },
652 { ".reg2", s390_sizeof_fpregset, "floating-point" },
653 { ".reg-s390-last-break", 8, "s390 last-break address" },
654 { NULL, 0}
655 };
656
657 static struct core_regset_section s390_linux32v2_regset_sections[] =
658 {
659 { ".reg", s390_sizeof_gregset, "general-purpose" },
660 { ".reg2", s390_sizeof_fpregset, "floating-point" },
661 { ".reg-s390-last-break", 8, "s390 last-break address" },
662 { ".reg-s390-system-call", 4, "s390 system-call" },
663 { NULL, 0}
664 };
665
666 static struct core_regset_section s390_linux64_regset_sections[] =
667 {
668 { ".reg", s390_sizeof_gregset, "general-purpose" },
669 { ".reg2", s390_sizeof_fpregset, "floating-point" },
670 { ".reg-s390-high-gprs", 16*4, "s390 GPR upper halves" },
671 { NULL, 0}
672 };
673
674 static struct core_regset_section s390_linux64v1_regset_sections[] =
675 {
676 { ".reg", s390_sizeof_gregset, "general-purpose" },
677 { ".reg2", s390_sizeof_fpregset, "floating-point" },
678 { ".reg-s390-high-gprs", 16*4, "s390 GPR upper halves" },
679 { ".reg-s390-last-break", 8, "s930 last-break address" },
680 { NULL, 0}
681 };
682
683 static struct core_regset_section s390_linux64v2_regset_sections[] =
684 {
685 { ".reg", s390_sizeof_gregset, "general-purpose" },
686 { ".reg2", s390_sizeof_fpregset, "floating-point" },
687 { ".reg-s390-high-gprs", 16*4, "s390 GPR upper halves" },
688 { ".reg-s390-last-break", 8, "s930 last-break address" },
689 { ".reg-s390-system-call", 4, "s390 system-call" },
690 { NULL, 0}
691 };
692
693 static struct core_regset_section s390x_linux64_regset_sections[] =
694 {
695 { ".reg", s390x_sizeof_gregset, "general-purpose" },
696 { ".reg2", s390_sizeof_fpregset, "floating-point" },
697 { NULL, 0}
698 };
699
700 static struct core_regset_section s390x_linux64v1_regset_sections[] =
701 {
702 { ".reg", s390x_sizeof_gregset, "general-purpose" },
703 { ".reg2", s390_sizeof_fpregset, "floating-point" },
704 { ".reg-s390-last-break", 8, "s930 last-break address" },
705 { NULL, 0}
706 };
707
708 static struct core_regset_section s390x_linux64v2_regset_sections[] =
709 {
710 { ".reg", s390x_sizeof_gregset, "general-purpose" },
711 { ".reg2", s390_sizeof_fpregset, "floating-point" },
712 { ".reg-s390-last-break", 8, "s930 last-break address" },
713 { ".reg-s390-system-call", 4, "s390 system-call" },
714 { NULL, 0}
715 };
716
717
718 /* Return the appropriate register set for the core section identified
719 by SECT_NAME and SECT_SIZE. */
720 static const struct regset *
721 s390_regset_from_core_section (struct gdbarch *gdbarch,
722 const char *sect_name, size_t sect_size)
723 {
724 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
725
726 if (strcmp (sect_name, ".reg") == 0 && sect_size >= tdep->sizeof_gregset)
727 return tdep->gregset;
728
729 if (strcmp (sect_name, ".reg2") == 0 && sect_size >= tdep->sizeof_fpregset)
730 return tdep->fpregset;
731
732 if (strcmp (sect_name, ".reg-s390-high-gprs") == 0 && sect_size >= 16*4)
733 return &s390_upper_regset;
734
735 if (strcmp (sect_name, ".reg-s390-last-break") == 0 && sect_size >= 8)
736 return (gdbarch_ptr_bit (gdbarch) == 32
737 ? &s390_last_break_regset : &s390x_last_break_regset);
738
739 if (strcmp (sect_name, ".reg-s390-system-call") == 0 && sect_size >= 4)
740 return &s390_system_call_regset;
741
742 return NULL;
743 }
744
745 static const struct target_desc *
746 s390_core_read_description (struct gdbarch *gdbarch,
747 struct target_ops *target, bfd *abfd)
748 {
749 asection *high_gprs = bfd_get_section_by_name (abfd, ".reg-s390-high-gprs");
750 asection *v1 = bfd_get_section_by_name (abfd, ".reg-s390-last-break");
751 asection *v2 = bfd_get_section_by_name (abfd, ".reg-s390-system-call");
752 asection *section = bfd_get_section_by_name (abfd, ".reg");
753 if (!section)
754 return NULL;
755
756 switch (bfd_section_size (abfd, section))
757 {
758 case s390_sizeof_gregset:
759 if (high_gprs)
760 return (v2? tdesc_s390_linux64v2 :
761 v1? tdesc_s390_linux64v1 : tdesc_s390_linux64);
762 else
763 return (v2? tdesc_s390_linux32v2 :
764 v1? tdesc_s390_linux32v1 : tdesc_s390_linux32);
765
766 case s390x_sizeof_gregset:
767 return (v2? tdesc_s390x_linux64v2 :
768 v1? tdesc_s390x_linux64v1 : tdesc_s390x_linux64);
769
770 default:
771 return NULL;
772 }
773 }
774
775
776 /* Decoding S/390 instructions. */
777
778 /* Named opcode values for the S/390 instructions we recognize. Some
779 instructions have their opcode split across two fields; those are the
780 op1_* and op2_* enums. */
781 enum
782 {
783 op1_lhi = 0xa7, op2_lhi = 0x08,
784 op1_lghi = 0xa7, op2_lghi = 0x09,
785 op1_lgfi = 0xc0, op2_lgfi = 0x01,
786 op_lr = 0x18,
787 op_lgr = 0xb904,
788 op_l = 0x58,
789 op1_ly = 0xe3, op2_ly = 0x58,
790 op1_lg = 0xe3, op2_lg = 0x04,
791 op_lm = 0x98,
792 op1_lmy = 0xeb, op2_lmy = 0x98,
793 op1_lmg = 0xeb, op2_lmg = 0x04,
794 op_st = 0x50,
795 op1_sty = 0xe3, op2_sty = 0x50,
796 op1_stg = 0xe3, op2_stg = 0x24,
797 op_std = 0x60,
798 op_stm = 0x90,
799 op1_stmy = 0xeb, op2_stmy = 0x90,
800 op1_stmg = 0xeb, op2_stmg = 0x24,
801 op1_aghi = 0xa7, op2_aghi = 0x0b,
802 op1_ahi = 0xa7, op2_ahi = 0x0a,
803 op1_agfi = 0xc2, op2_agfi = 0x08,
804 op1_afi = 0xc2, op2_afi = 0x09,
805 op1_algfi= 0xc2, op2_algfi= 0x0a,
806 op1_alfi = 0xc2, op2_alfi = 0x0b,
807 op_ar = 0x1a,
808 op_agr = 0xb908,
809 op_a = 0x5a,
810 op1_ay = 0xe3, op2_ay = 0x5a,
811 op1_ag = 0xe3, op2_ag = 0x08,
812 op1_slgfi= 0xc2, op2_slgfi= 0x04,
813 op1_slfi = 0xc2, op2_slfi = 0x05,
814 op_sr = 0x1b,
815 op_sgr = 0xb909,
816 op_s = 0x5b,
817 op1_sy = 0xe3, op2_sy = 0x5b,
818 op1_sg = 0xe3, op2_sg = 0x09,
819 op_nr = 0x14,
820 op_ngr = 0xb980,
821 op_la = 0x41,
822 op1_lay = 0xe3, op2_lay = 0x71,
823 op1_larl = 0xc0, op2_larl = 0x00,
824 op_basr = 0x0d,
825 op_bas = 0x4d,
826 op_bcr = 0x07,
827 op_bc = 0x0d,
828 op_bctr = 0x06,
829 op_bctgr = 0xb946,
830 op_bct = 0x46,
831 op1_bctg = 0xe3, op2_bctg = 0x46,
832 op_bxh = 0x86,
833 op1_bxhg = 0xeb, op2_bxhg = 0x44,
834 op_bxle = 0x87,
835 op1_bxleg= 0xeb, op2_bxleg= 0x45,
836 op1_bras = 0xa7, op2_bras = 0x05,
837 op1_brasl= 0xc0, op2_brasl= 0x05,
838 op1_brc = 0xa7, op2_brc = 0x04,
839 op1_brcl = 0xc0, op2_brcl = 0x04,
840 op1_brct = 0xa7, op2_brct = 0x06,
841 op1_brctg= 0xa7, op2_brctg= 0x07,
842 op_brxh = 0x84,
843 op1_brxhg= 0xec, op2_brxhg= 0x44,
844 op_brxle = 0x85,
845 op1_brxlg= 0xec, op2_brxlg= 0x45,
846 };
847
848
849 /* Read a single instruction from address AT. */
850
851 #define S390_MAX_INSTR_SIZE 6
852 static int
853 s390_readinstruction (bfd_byte instr[], CORE_ADDR at)
854 {
855 static int s390_instrlen[] = { 2, 4, 4, 6 };
856 int instrlen;
857
858 if (target_read_memory (at, &instr[0], 2))
859 return -1;
860 instrlen = s390_instrlen[instr[0] >> 6];
861 if (instrlen > 2)
862 {
863 if (target_read_memory (at + 2, &instr[2], instrlen - 2))
864 return -1;
865 }
866 return instrlen;
867 }
868
869
870 /* The functions below are for recognizing and decoding S/390
871 instructions of various formats. Each of them checks whether INSN
872 is an instruction of the given format, with the specified opcodes.
873 If it is, it sets the remaining arguments to the values of the
874 instruction's fields, and returns a non-zero value; otherwise, it
875 returns zero.
876
877 These functions' arguments appear in the order they appear in the
878 instruction, not in the machine-language form. So, opcodes always
879 come first, even though they're sometimes scattered around the
880 instructions. And displacements appear before base and extension
881 registers, as they do in the assembly syntax, not at the end, as
882 they do in the machine language. */
883 static int
884 is_ri (bfd_byte *insn, int op1, int op2, unsigned int *r1, int *i2)
885 {
886 if (insn[0] == op1 && (insn[1] & 0xf) == op2)
887 {
888 *r1 = (insn[1] >> 4) & 0xf;
889 /* i2 is a 16-bit signed quantity. */
890 *i2 = (((insn[2] << 8) | insn[3]) ^ 0x8000) - 0x8000;
891 return 1;
892 }
893 else
894 return 0;
895 }
896
897
898 static int
899 is_ril (bfd_byte *insn, int op1, int op2,
900 unsigned int *r1, int *i2)
901 {
902 if (insn[0] == op1 && (insn[1] & 0xf) == op2)
903 {
904 *r1 = (insn[1] >> 4) & 0xf;
905 /* i2 is a signed quantity. If the host 'int' is 32 bits long,
906 no sign extension is necessary, but we don't want to assume
907 that. */
908 *i2 = (((insn[2] << 24)
909 | (insn[3] << 16)
910 | (insn[4] << 8)
911 | (insn[5])) ^ 0x80000000) - 0x80000000;
912 return 1;
913 }
914 else
915 return 0;
916 }
917
918
919 static int
920 is_rr (bfd_byte *insn, int op, unsigned int *r1, unsigned int *r2)
921 {
922 if (insn[0] == op)
923 {
924 *r1 = (insn[1] >> 4) & 0xf;
925 *r2 = insn[1] & 0xf;
926 return 1;
927 }
928 else
929 return 0;
930 }
931
932
933 static int
934 is_rre (bfd_byte *insn, int op, unsigned int *r1, unsigned int *r2)
935 {
936 if (((insn[0] << 8) | insn[1]) == op)
937 {
938 /* Yes, insn[3]. insn[2] is unused in RRE format. */
939 *r1 = (insn[3] >> 4) & 0xf;
940 *r2 = insn[3] & 0xf;
941 return 1;
942 }
943 else
944 return 0;
945 }
946
947
948 static int
949 is_rs (bfd_byte *insn, int op,
950 unsigned int *r1, unsigned int *r3, int *d2, unsigned int *b2)
951 {
952 if (insn[0] == op)
953 {
954 *r1 = (insn[1] >> 4) & 0xf;
955 *r3 = insn[1] & 0xf;
956 *b2 = (insn[2] >> 4) & 0xf;
957 *d2 = ((insn[2] & 0xf) << 8) | insn[3];
958 return 1;
959 }
960 else
961 return 0;
962 }
963
964
965 static int
966 is_rsy (bfd_byte *insn, int op1, int op2,
967 unsigned int *r1, unsigned int *r3, int *d2, unsigned int *b2)
968 {
969 if (insn[0] == op1
970 && insn[5] == op2)
971 {
972 *r1 = (insn[1] >> 4) & 0xf;
973 *r3 = insn[1] & 0xf;
974 *b2 = (insn[2] >> 4) & 0xf;
975 /* The 'long displacement' is a 20-bit signed integer. */
976 *d2 = ((((insn[2] & 0xf) << 8) | insn[3] | (insn[4] << 12))
977 ^ 0x80000) - 0x80000;
978 return 1;
979 }
980 else
981 return 0;
982 }
983
984
985 static int
986 is_rsi (bfd_byte *insn, int op,
987 unsigned int *r1, unsigned int *r3, int *i2)
988 {
989 if (insn[0] == op)
990 {
991 *r1 = (insn[1] >> 4) & 0xf;
992 *r3 = insn[1] & 0xf;
993 /* i2 is a 16-bit signed quantity. */
994 *i2 = (((insn[2] << 8) | insn[3]) ^ 0x8000) - 0x8000;
995 return 1;
996 }
997 else
998 return 0;
999 }
1000
1001
1002 static int
1003 is_rie (bfd_byte *insn, int op1, int op2,
1004 unsigned int *r1, unsigned int *r3, int *i2)
1005 {
1006 if (insn[0] == op1
1007 && insn[5] == op2)
1008 {
1009 *r1 = (insn[1] >> 4) & 0xf;
1010 *r3 = insn[1] & 0xf;
1011 /* i2 is a 16-bit signed quantity. */
1012 *i2 = (((insn[2] << 8) | insn[3]) ^ 0x8000) - 0x8000;
1013 return 1;
1014 }
1015 else
1016 return 0;
1017 }
1018
1019
1020 static int
1021 is_rx (bfd_byte *insn, int op,
1022 unsigned int *r1, int *d2, unsigned int *x2, unsigned int *b2)
1023 {
1024 if (insn[0] == op)
1025 {
1026 *r1 = (insn[1] >> 4) & 0xf;
1027 *x2 = insn[1] & 0xf;
1028 *b2 = (insn[2] >> 4) & 0xf;
1029 *d2 = ((insn[2] & 0xf) << 8) | insn[3];
1030 return 1;
1031 }
1032 else
1033 return 0;
1034 }
1035
1036
1037 static int
1038 is_rxy (bfd_byte *insn, int op1, int op2,
1039 unsigned int *r1, int *d2, unsigned int *x2, unsigned int *b2)
1040 {
1041 if (insn[0] == op1
1042 && insn[5] == op2)
1043 {
1044 *r1 = (insn[1] >> 4) & 0xf;
1045 *x2 = insn[1] & 0xf;
1046 *b2 = (insn[2] >> 4) & 0xf;
1047 /* The 'long displacement' is a 20-bit signed integer. */
1048 *d2 = ((((insn[2] & 0xf) << 8) | insn[3] | (insn[4] << 12))
1049 ^ 0x80000) - 0x80000;
1050 return 1;
1051 }
1052 else
1053 return 0;
1054 }
1055
1056
1057 /* Prologue analysis. */
1058
1059 #define S390_NUM_GPRS 16
1060 #define S390_NUM_FPRS 16
1061
1062 struct s390_prologue_data {
1063
1064 /* The stack. */
1065 struct pv_area *stack;
1066
1067 /* The size and byte-order of a GPR or FPR. */
1068 int gpr_size;
1069 int fpr_size;
1070 enum bfd_endian byte_order;
1071
1072 /* The general-purpose registers. */
1073 pv_t gpr[S390_NUM_GPRS];
1074
1075 /* The floating-point registers. */
1076 pv_t fpr[S390_NUM_FPRS];
1077
1078 /* The offset relative to the CFA where the incoming GPR N was saved
1079 by the function prologue. 0 if not saved or unknown. */
1080 int gpr_slot[S390_NUM_GPRS];
1081
1082 /* Likewise for FPRs. */
1083 int fpr_slot[S390_NUM_FPRS];
1084
1085 /* Nonzero if the backchain was saved. This is assumed to be the
1086 case when the incoming SP is saved at the current SP location. */
1087 int back_chain_saved_p;
1088 };
1089
1090 /* Return the effective address for an X-style instruction, like:
1091
1092 L R1, D2(X2, B2)
1093
1094 Here, X2 and B2 are registers, and D2 is a signed 20-bit
1095 constant; the effective address is the sum of all three. If either
1096 X2 or B2 are zero, then it doesn't contribute to the sum --- this
1097 means that r0 can't be used as either X2 or B2. */
1098 static pv_t
1099 s390_addr (struct s390_prologue_data *data,
1100 int d2, unsigned int x2, unsigned int b2)
1101 {
1102 pv_t result;
1103
1104 result = pv_constant (d2);
1105 if (x2)
1106 result = pv_add (result, data->gpr[x2]);
1107 if (b2)
1108 result = pv_add (result, data->gpr[b2]);
1109
1110 return result;
1111 }
1112
1113 /* Do a SIZE-byte store of VALUE to D2(X2,B2). */
1114 static void
1115 s390_store (struct s390_prologue_data *data,
1116 int d2, unsigned int x2, unsigned int b2, CORE_ADDR size,
1117 pv_t value)
1118 {
1119 pv_t addr = s390_addr (data, d2, x2, b2);
1120 pv_t offset;
1121
1122 /* Check whether we are storing the backchain. */
1123 offset = pv_subtract (data->gpr[S390_SP_REGNUM - S390_R0_REGNUM], addr);
1124
1125 if (pv_is_constant (offset) && offset.k == 0)
1126 if (size == data->gpr_size
1127 && pv_is_register_k (value, S390_SP_REGNUM, 0))
1128 {
1129 data->back_chain_saved_p = 1;
1130 return;
1131 }
1132
1133
1134 /* Check whether we are storing a register into the stack. */
1135 if (!pv_area_store_would_trash (data->stack, addr))
1136 pv_area_store (data->stack, addr, size, value);
1137
1138
1139 /* Note: If this is some store we cannot identify, you might think we
1140 should forget our cached values, as any of those might have been hit.
1141
1142 However, we make the assumption that the register save areas are only
1143 ever stored to once in any given function, and we do recognize these
1144 stores. Thus every store we cannot recognize does not hit our data. */
1145 }
1146
1147 /* Do a SIZE-byte load from D2(X2,B2). */
1148 static pv_t
1149 s390_load (struct s390_prologue_data *data,
1150 int d2, unsigned int x2, unsigned int b2, CORE_ADDR size)
1151
1152 {
1153 pv_t addr = s390_addr (data, d2, x2, b2);
1154
1155 /* If it's a load from an in-line constant pool, then we can
1156 simulate that, under the assumption that the code isn't
1157 going to change between the time the processor actually
1158 executed it creating the current frame, and the time when
1159 we're analyzing the code to unwind past that frame. */
1160 if (pv_is_constant (addr))
1161 {
1162 struct target_section *secp;
1163 secp = target_section_by_addr (&current_target, addr.k);
1164 if (secp != NULL
1165 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1166 secp->the_bfd_section)
1167 & SEC_READONLY))
1168 return pv_constant (read_memory_integer (addr.k, size,
1169 data->byte_order));
1170 }
1171
1172 /* Check whether we are accessing one of our save slots. */
1173 return pv_area_fetch (data->stack, addr, size);
1174 }
1175
1176 /* Function for finding saved registers in a 'struct pv_area'; we pass
1177 this to pv_area_scan.
1178
1179 If VALUE is a saved register, ADDR says it was saved at a constant
1180 offset from the frame base, and SIZE indicates that the whole
1181 register was saved, record its offset in the reg_offset table in
1182 PROLOGUE_UNTYPED. */
1183 static void
1184 s390_check_for_saved (void *data_untyped, pv_t addr,
1185 CORE_ADDR size, pv_t value)
1186 {
1187 struct s390_prologue_data *data = data_untyped;
1188 int i, offset;
1189
1190 if (!pv_is_register (addr, S390_SP_REGNUM))
1191 return;
1192
1193 offset = 16 * data->gpr_size + 32 - addr.k;
1194
1195 /* If we are storing the original value of a register, we want to
1196 record the CFA offset. If the same register is stored multiple
1197 times, the stack slot with the highest address counts. */
1198
1199 for (i = 0; i < S390_NUM_GPRS; i++)
1200 if (size == data->gpr_size
1201 && pv_is_register_k (value, S390_R0_REGNUM + i, 0))
1202 if (data->gpr_slot[i] == 0
1203 || data->gpr_slot[i] > offset)
1204 {
1205 data->gpr_slot[i] = offset;
1206 return;
1207 }
1208
1209 for (i = 0; i < S390_NUM_FPRS; i++)
1210 if (size == data->fpr_size
1211 && pv_is_register_k (value, S390_F0_REGNUM + i, 0))
1212 if (data->fpr_slot[i] == 0
1213 || data->fpr_slot[i] > offset)
1214 {
1215 data->fpr_slot[i] = offset;
1216 return;
1217 }
1218 }
1219
1220 /* Analyze the prologue of the function starting at START_PC,
1221 continuing at most until CURRENT_PC. Initialize DATA to
1222 hold all information we find out about the state of the registers
1223 and stack slots. Return the address of the instruction after
1224 the last one that changed the SP, FP, or back chain; or zero
1225 on error. */
1226 static CORE_ADDR
1227 s390_analyze_prologue (struct gdbarch *gdbarch,
1228 CORE_ADDR start_pc,
1229 CORE_ADDR current_pc,
1230 struct s390_prologue_data *data)
1231 {
1232 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1233
1234 /* Our return value:
1235 The address of the instruction after the last one that changed
1236 the SP, FP, or back chain; zero if we got an error trying to
1237 read memory. */
1238 CORE_ADDR result = start_pc;
1239
1240 /* The current PC for our abstract interpretation. */
1241 CORE_ADDR pc;
1242
1243 /* The address of the next instruction after that. */
1244 CORE_ADDR next_pc;
1245
1246 /* Set up everything's initial value. */
1247 {
1248 int i;
1249
1250 data->stack = make_pv_area (S390_SP_REGNUM, gdbarch_addr_bit (gdbarch));
1251
1252 /* For the purpose of prologue tracking, we consider the GPR size to
1253 be equal to the ABI word size, even if it is actually larger
1254 (i.e. when running a 32-bit binary under a 64-bit kernel). */
1255 data->gpr_size = word_size;
1256 data->fpr_size = 8;
1257 data->byte_order = gdbarch_byte_order (gdbarch);
1258
1259 for (i = 0; i < S390_NUM_GPRS; i++)
1260 data->gpr[i] = pv_register (S390_R0_REGNUM + i, 0);
1261
1262 for (i = 0; i < S390_NUM_FPRS; i++)
1263 data->fpr[i] = pv_register (S390_F0_REGNUM + i, 0);
1264
1265 for (i = 0; i < S390_NUM_GPRS; i++)
1266 data->gpr_slot[i] = 0;
1267
1268 for (i = 0; i < S390_NUM_FPRS; i++)
1269 data->fpr_slot[i] = 0;
1270
1271 data->back_chain_saved_p = 0;
1272 }
1273
1274 /* Start interpreting instructions, until we hit the frame's
1275 current PC or the first branch instruction. */
1276 for (pc = start_pc; pc > 0 && pc < current_pc; pc = next_pc)
1277 {
1278 bfd_byte insn[S390_MAX_INSTR_SIZE];
1279 int insn_len = s390_readinstruction (insn, pc);
1280
1281 bfd_byte dummy[S390_MAX_INSTR_SIZE] = { 0 };
1282 bfd_byte *insn32 = word_size == 4 ? insn : dummy;
1283 bfd_byte *insn64 = word_size == 8 ? insn : dummy;
1284
1285 /* Fields for various kinds of instructions. */
1286 unsigned int b2, r1, r2, x2, r3;
1287 int i2, d2;
1288
1289 /* The values of SP and FP before this instruction,
1290 for detecting instructions that change them. */
1291 pv_t pre_insn_sp, pre_insn_fp;
1292 /* Likewise for the flag whether the back chain was saved. */
1293 int pre_insn_back_chain_saved_p;
1294
1295 /* If we got an error trying to read the instruction, report it. */
1296 if (insn_len < 0)
1297 {
1298 result = 0;
1299 break;
1300 }
1301
1302 next_pc = pc + insn_len;
1303
1304 pre_insn_sp = data->gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1305 pre_insn_fp = data->gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
1306 pre_insn_back_chain_saved_p = data->back_chain_saved_p;
1307
1308
1309 /* LHI r1, i2 --- load halfword immediate. */
1310 /* LGHI r1, i2 --- load halfword immediate (64-bit version). */
1311 /* LGFI r1, i2 --- load fullword immediate. */
1312 if (is_ri (insn32, op1_lhi, op2_lhi, &r1, &i2)
1313 || is_ri (insn64, op1_lghi, op2_lghi, &r1, &i2)
1314 || is_ril (insn, op1_lgfi, op2_lgfi, &r1, &i2))
1315 data->gpr[r1] = pv_constant (i2);
1316
1317 /* LR r1, r2 --- load from register. */
1318 /* LGR r1, r2 --- load from register (64-bit version). */
1319 else if (is_rr (insn32, op_lr, &r1, &r2)
1320 || is_rre (insn64, op_lgr, &r1, &r2))
1321 data->gpr[r1] = data->gpr[r2];
1322
1323 /* L r1, d2(x2, b2) --- load. */
1324 /* LY r1, d2(x2, b2) --- load (long-displacement version). */
1325 /* LG r1, d2(x2, b2) --- load (64-bit version). */
1326 else if (is_rx (insn32, op_l, &r1, &d2, &x2, &b2)
1327 || is_rxy (insn32, op1_ly, op2_ly, &r1, &d2, &x2, &b2)
1328 || is_rxy (insn64, op1_lg, op2_lg, &r1, &d2, &x2, &b2))
1329 data->gpr[r1] = s390_load (data, d2, x2, b2, data->gpr_size);
1330
1331 /* ST r1, d2(x2, b2) --- store. */
1332 /* STY r1, d2(x2, b2) --- store (long-displacement version). */
1333 /* STG r1, d2(x2, b2) --- store (64-bit version). */
1334 else if (is_rx (insn32, op_st, &r1, &d2, &x2, &b2)
1335 || is_rxy (insn32, op1_sty, op2_sty, &r1, &d2, &x2, &b2)
1336 || is_rxy (insn64, op1_stg, op2_stg, &r1, &d2, &x2, &b2))
1337 s390_store (data, d2, x2, b2, data->gpr_size, data->gpr[r1]);
1338
1339 /* STD r1, d2(x2,b2) --- store floating-point register. */
1340 else if (is_rx (insn, op_std, &r1, &d2, &x2, &b2))
1341 s390_store (data, d2, x2, b2, data->fpr_size, data->fpr[r1]);
1342
1343 /* STM r1, r3, d2(b2) --- store multiple. */
1344 /* STMY r1, r3, d2(b2) --- store multiple (long-displacement
1345 version). */
1346 /* STMG r1, r3, d2(b2) --- store multiple (64-bit version). */
1347 else if (is_rs (insn32, op_stm, &r1, &r3, &d2, &b2)
1348 || is_rsy (insn32, op1_stmy, op2_stmy, &r1, &r3, &d2, &b2)
1349 || is_rsy (insn64, op1_stmg, op2_stmg, &r1, &r3, &d2, &b2))
1350 {
1351 for (; r1 <= r3; r1++, d2 += data->gpr_size)
1352 s390_store (data, d2, 0, b2, data->gpr_size, data->gpr[r1]);
1353 }
1354
1355 /* AHI r1, i2 --- add halfword immediate. */
1356 /* AGHI r1, i2 --- add halfword immediate (64-bit version). */
1357 /* AFI r1, i2 --- add fullword immediate. */
1358 /* AGFI r1, i2 --- add fullword immediate (64-bit version). */
1359 else if (is_ri (insn32, op1_ahi, op2_ahi, &r1, &i2)
1360 || is_ri (insn64, op1_aghi, op2_aghi, &r1, &i2)
1361 || is_ril (insn32, op1_afi, op2_afi, &r1, &i2)
1362 || is_ril (insn64, op1_agfi, op2_agfi, &r1, &i2))
1363 data->gpr[r1] = pv_add_constant (data->gpr[r1], i2);
1364
1365 /* ALFI r1, i2 --- add logical immediate. */
1366 /* ALGFI r1, i2 --- add logical immediate (64-bit version). */
1367 else if (is_ril (insn32, op1_alfi, op2_alfi, &r1, &i2)
1368 || is_ril (insn64, op1_algfi, op2_algfi, &r1, &i2))
1369 data->gpr[r1] = pv_add_constant (data->gpr[r1],
1370 (CORE_ADDR)i2 & 0xffffffff);
1371
1372 /* AR r1, r2 -- add register. */
1373 /* AGR r1, r2 -- add register (64-bit version). */
1374 else if (is_rr (insn32, op_ar, &r1, &r2)
1375 || is_rre (insn64, op_agr, &r1, &r2))
1376 data->gpr[r1] = pv_add (data->gpr[r1], data->gpr[r2]);
1377
1378 /* A r1, d2(x2, b2) -- add. */
1379 /* AY r1, d2(x2, b2) -- add (long-displacement version). */
1380 /* AG r1, d2(x2, b2) -- add (64-bit version). */
1381 else if (is_rx (insn32, op_a, &r1, &d2, &x2, &b2)
1382 || is_rxy (insn32, op1_ay, op2_ay, &r1, &d2, &x2, &b2)
1383 || is_rxy (insn64, op1_ag, op2_ag, &r1, &d2, &x2, &b2))
1384 data->gpr[r1] = pv_add (data->gpr[r1],
1385 s390_load (data, d2, x2, b2, data->gpr_size));
1386
1387 /* SLFI r1, i2 --- subtract logical immediate. */
1388 /* SLGFI r1, i2 --- subtract logical immediate (64-bit version). */
1389 else if (is_ril (insn32, op1_slfi, op2_slfi, &r1, &i2)
1390 || is_ril (insn64, op1_slgfi, op2_slgfi, &r1, &i2))
1391 data->gpr[r1] = pv_add_constant (data->gpr[r1],
1392 -((CORE_ADDR)i2 & 0xffffffff));
1393
1394 /* SR r1, r2 -- subtract register. */
1395 /* SGR r1, r2 -- subtract register (64-bit version). */
1396 else if (is_rr (insn32, op_sr, &r1, &r2)
1397 || is_rre (insn64, op_sgr, &r1, &r2))
1398 data->gpr[r1] = pv_subtract (data->gpr[r1], data->gpr[r2]);
1399
1400 /* S r1, d2(x2, b2) -- subtract. */
1401 /* SY r1, d2(x2, b2) -- subtract (long-displacement version). */
1402 /* SG r1, d2(x2, b2) -- subtract (64-bit version). */
1403 else if (is_rx (insn32, op_s, &r1, &d2, &x2, &b2)
1404 || is_rxy (insn32, op1_sy, op2_sy, &r1, &d2, &x2, &b2)
1405 || is_rxy (insn64, op1_sg, op2_sg, &r1, &d2, &x2, &b2))
1406 data->gpr[r1] = pv_subtract (data->gpr[r1],
1407 s390_load (data, d2, x2, b2, data->gpr_size));
1408
1409 /* LA r1, d2(x2, b2) --- load address. */
1410 /* LAY r1, d2(x2, b2) --- load address (long-displacement version). */
1411 else if (is_rx (insn, op_la, &r1, &d2, &x2, &b2)
1412 || is_rxy (insn, op1_lay, op2_lay, &r1, &d2, &x2, &b2))
1413 data->gpr[r1] = s390_addr (data, d2, x2, b2);
1414
1415 /* LARL r1, i2 --- load address relative long. */
1416 else if (is_ril (insn, op1_larl, op2_larl, &r1, &i2))
1417 data->gpr[r1] = pv_constant (pc + i2 * 2);
1418
1419 /* BASR r1, 0 --- branch and save.
1420 Since r2 is zero, this saves the PC in r1, but doesn't branch. */
1421 else if (is_rr (insn, op_basr, &r1, &r2)
1422 && r2 == 0)
1423 data->gpr[r1] = pv_constant (next_pc);
1424
1425 /* BRAS r1, i2 --- branch relative and save. */
1426 else if (is_ri (insn, op1_bras, op2_bras, &r1, &i2))
1427 {
1428 data->gpr[r1] = pv_constant (next_pc);
1429 next_pc = pc + i2 * 2;
1430
1431 /* We'd better not interpret any backward branches. We'll
1432 never terminate. */
1433 if (next_pc <= pc)
1434 break;
1435 }
1436
1437 /* Terminate search when hitting any other branch instruction. */
1438 else if (is_rr (insn, op_basr, &r1, &r2)
1439 || is_rx (insn, op_bas, &r1, &d2, &x2, &b2)
1440 || is_rr (insn, op_bcr, &r1, &r2)
1441 || is_rx (insn, op_bc, &r1, &d2, &x2, &b2)
1442 || is_ri (insn, op1_brc, op2_brc, &r1, &i2)
1443 || is_ril (insn, op1_brcl, op2_brcl, &r1, &i2)
1444 || is_ril (insn, op1_brasl, op2_brasl, &r2, &i2))
1445 break;
1446
1447 else
1448 {
1449 /* An instruction we don't know how to simulate. The only
1450 safe thing to do would be to set every value we're tracking
1451 to 'unknown'. Instead, we'll be optimistic: we assume that
1452 we *can* interpret every instruction that the compiler uses
1453 to manipulate any of the data we're interested in here --
1454 then we can just ignore anything else. */
1455 }
1456
1457 /* Record the address after the last instruction that changed
1458 the FP, SP, or backlink. Ignore instructions that changed
1459 them back to their original values --- those are probably
1460 restore instructions. (The back chain is never restored,
1461 just popped.) */
1462 {
1463 pv_t sp = data->gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1464 pv_t fp = data->gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
1465
1466 if ((! pv_is_identical (pre_insn_sp, sp)
1467 && ! pv_is_register_k (sp, S390_SP_REGNUM, 0)
1468 && sp.kind != pvk_unknown)
1469 || (! pv_is_identical (pre_insn_fp, fp)
1470 && ! pv_is_register_k (fp, S390_FRAME_REGNUM, 0)
1471 && fp.kind != pvk_unknown)
1472 || pre_insn_back_chain_saved_p != data->back_chain_saved_p)
1473 result = next_pc;
1474 }
1475 }
1476
1477 /* Record where all the registers were saved. */
1478 pv_area_scan (data->stack, s390_check_for_saved, data);
1479
1480 free_pv_area (data->stack);
1481 data->stack = NULL;
1482
1483 return result;
1484 }
1485
1486 /* Advance PC across any function entry prologue instructions to reach
1487 some "real" code. */
1488 static CORE_ADDR
1489 s390_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
1490 {
1491 struct s390_prologue_data data;
1492 CORE_ADDR skip_pc;
1493 skip_pc = s390_analyze_prologue (gdbarch, pc, (CORE_ADDR)-1, &data);
1494 return skip_pc ? skip_pc : pc;
1495 }
1496
1497 /* Return true if we are in the functin's epilogue, i.e. after the
1498 instruction that destroyed the function's stack frame. */
1499 static int
1500 s390_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
1501 {
1502 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1503
1504 /* In frameless functions, there's not frame to destroy and thus
1505 we don't care about the epilogue.
1506
1507 In functions with frame, the epilogue sequence is a pair of
1508 a LM-type instruction that restores (amongst others) the
1509 return register %r14 and the stack pointer %r15, followed
1510 by a branch 'br %r14' --or equivalent-- that effects the
1511 actual return.
1512
1513 In that situation, this function needs to return 'true' in
1514 exactly one case: when pc points to that branch instruction.
1515
1516 Thus we try to disassemble the one instructions immediately
1517 preceding pc and check whether it is an LM-type instruction
1518 modifying the stack pointer.
1519
1520 Note that disassembling backwards is not reliable, so there
1521 is a slight chance of false positives here ... */
1522
1523 bfd_byte insn[6];
1524 unsigned int r1, r3, b2;
1525 int d2;
1526
1527 if (word_size == 4
1528 && !target_read_memory (pc - 4, insn, 4)
1529 && is_rs (insn, op_lm, &r1, &r3, &d2, &b2)
1530 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1531 return 1;
1532
1533 if (word_size == 4
1534 && !target_read_memory (pc - 6, insn, 6)
1535 && is_rsy (insn, op1_lmy, op2_lmy, &r1, &r3, &d2, &b2)
1536 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1537 return 1;
1538
1539 if (word_size == 8
1540 && !target_read_memory (pc - 6, insn, 6)
1541 && is_rsy (insn, op1_lmg, op2_lmg, &r1, &r3, &d2, &b2)
1542 && r3 == S390_SP_REGNUM - S390_R0_REGNUM)
1543 return 1;
1544
1545 return 0;
1546 }
1547
1548 /* Displaced stepping. */
1549
1550 /* Fix up the state of registers and memory after having single-stepped
1551 a displaced instruction. */
1552 static void
1553 s390_displaced_step_fixup (struct gdbarch *gdbarch,
1554 struct displaced_step_closure *closure,
1555 CORE_ADDR from, CORE_ADDR to,
1556 struct regcache *regs)
1557 {
1558 /* Since we use simple_displaced_step_copy_insn, our closure is a
1559 copy of the instruction. */
1560 gdb_byte *insn = (gdb_byte *) closure;
1561 static int s390_instrlen[] = { 2, 4, 4, 6 };
1562 int insnlen = s390_instrlen[insn[0] >> 6];
1563
1564 /* Fields for various kinds of instructions. */
1565 unsigned int b2, r1, r2, x2, r3;
1566 int i2, d2;
1567
1568 /* Get current PC and addressing mode bit. */
1569 CORE_ADDR pc = regcache_read_pc (regs);
1570 ULONGEST amode = 0;
1571
1572 if (register_size (gdbarch, S390_PSWA_REGNUM) == 4)
1573 {
1574 regcache_cooked_read_unsigned (regs, S390_PSWA_REGNUM, &amode);
1575 amode &= 0x80000000;
1576 }
1577
1578 if (debug_displaced)
1579 fprintf_unfiltered (gdb_stdlog,
1580 "displaced: (s390) fixup (%s, %s) pc %s len %d amode 0x%x\n",
1581 paddress (gdbarch, from), paddress (gdbarch, to),
1582 paddress (gdbarch, pc), insnlen, (int) amode);
1583
1584 /* Handle absolute branch and save instructions. */
1585 if (is_rr (insn, op_basr, &r1, &r2)
1586 || is_rx (insn, op_bas, &r1, &d2, &x2, &b2))
1587 {
1588 /* Recompute saved return address in R1. */
1589 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1590 amode | (from + insnlen));
1591 }
1592
1593 /* Handle absolute branch instructions. */
1594 else if (is_rr (insn, op_bcr, &r1, &r2)
1595 || is_rx (insn, op_bc, &r1, &d2, &x2, &b2)
1596 || is_rr (insn, op_bctr, &r1, &r2)
1597 || is_rre (insn, op_bctgr, &r1, &r2)
1598 || is_rx (insn, op_bct, &r1, &d2, &x2, &b2)
1599 || is_rxy (insn, op1_bctg, op2_brctg, &r1, &d2, &x2, &b2)
1600 || is_rs (insn, op_bxh, &r1, &r3, &d2, &b2)
1601 || is_rsy (insn, op1_bxhg, op2_bxhg, &r1, &r3, &d2, &b2)
1602 || is_rs (insn, op_bxle, &r1, &r3, &d2, &b2)
1603 || is_rsy (insn, op1_bxleg, op2_bxleg, &r1, &r3, &d2, &b2))
1604 {
1605 /* Update PC iff branch was *not* taken. */
1606 if (pc == to + insnlen)
1607 regcache_write_pc (regs, from + insnlen);
1608 }
1609
1610 /* Handle PC-relative branch and save instructions. */
1611 else if (is_ri (insn, op1_bras, op2_bras, &r1, &i2)
1612 || is_ril (insn, op1_brasl, op2_brasl, &r1, &i2))
1613 {
1614 /* Update PC. */
1615 regcache_write_pc (regs, pc - to + from);
1616 /* Recompute saved return address in R1. */
1617 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1618 amode | (from + insnlen));
1619 }
1620
1621 /* Handle PC-relative branch instructions. */
1622 else if (is_ri (insn, op1_brc, op2_brc, &r1, &i2)
1623 || is_ril (insn, op1_brcl, op2_brcl, &r1, &i2)
1624 || is_ri (insn, op1_brct, op2_brct, &r1, &i2)
1625 || is_ri (insn, op1_brctg, op2_brctg, &r1, &i2)
1626 || is_rsi (insn, op_brxh, &r1, &r3, &i2)
1627 || is_rie (insn, op1_brxhg, op2_brxhg, &r1, &r3, &i2)
1628 || is_rsi (insn, op_brxle, &r1, &r3, &i2)
1629 || is_rie (insn, op1_brxlg, op2_brxlg, &r1, &r3, &i2))
1630 {
1631 /* Update PC. */
1632 regcache_write_pc (regs, pc - to + from);
1633 }
1634
1635 /* Handle LOAD ADDRESS RELATIVE LONG. */
1636 else if (is_ril (insn, op1_larl, op2_larl, &r1, &i2))
1637 {
1638 /* Update PC. */
1639 regcache_write_pc (regs, from + insnlen);
1640 /* Recompute output address in R1. */
1641 regcache_cooked_write_unsigned (regs, S390_R0_REGNUM + r1,
1642 amode | (from + i2 * 2));
1643 }
1644
1645 /* If we executed a breakpoint instruction, point PC right back at it. */
1646 else if (insn[0] == 0x0 && insn[1] == 0x1)
1647 regcache_write_pc (regs, from);
1648
1649 /* For any other insn, PC points right after the original instruction. */
1650 else
1651 regcache_write_pc (regs, from + insnlen);
1652
1653 if (debug_displaced)
1654 fprintf_unfiltered (gdb_stdlog,
1655 "displaced: (s390) pc is now %s\n",
1656 paddress (gdbarch, regcache_read_pc (regs)));
1657 }
1658
1659
1660 /* Helper routine to unwind pseudo registers. */
1661
1662 static struct value *
1663 s390_unwind_pseudo_register (struct frame_info *this_frame, int regnum)
1664 {
1665 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1666 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1667 struct type *type = register_type (gdbarch, regnum);
1668
1669 /* Unwind PC via PSW address. */
1670 if (regnum == tdep->pc_regnum)
1671 {
1672 struct value *val;
1673
1674 val = frame_unwind_register_value (this_frame, S390_PSWA_REGNUM);
1675 if (!value_optimized_out (val))
1676 {
1677 LONGEST pswa = value_as_long (val);
1678
1679 if (TYPE_LENGTH (type) == 4)
1680 return value_from_pointer (type, pswa & 0x7fffffff);
1681 else
1682 return value_from_pointer (type, pswa);
1683 }
1684 }
1685
1686 /* Unwind CC via PSW mask. */
1687 if (regnum == tdep->cc_regnum)
1688 {
1689 struct value *val;
1690
1691 val = frame_unwind_register_value (this_frame, S390_PSWM_REGNUM);
1692 if (!value_optimized_out (val))
1693 {
1694 LONGEST pswm = value_as_long (val);
1695
1696 if (TYPE_LENGTH (type) == 4)
1697 return value_from_longest (type, (pswm >> 12) & 3);
1698 else
1699 return value_from_longest (type, (pswm >> 44) & 3);
1700 }
1701 }
1702
1703 /* Unwind full GPRs to show at least the lower halves (as the
1704 upper halves are undefined). */
1705 if (regnum_is_gpr_full (tdep, regnum))
1706 {
1707 int reg = regnum - tdep->gpr_full_regnum;
1708 struct value *val;
1709
1710 val = frame_unwind_register_value (this_frame, S390_R0_REGNUM + reg);
1711 if (!value_optimized_out (val))
1712 return value_cast (type, val);
1713 }
1714
1715 return allocate_optimized_out_value (type);
1716 }
1717
1718 static struct value *
1719 s390_trad_frame_prev_register (struct frame_info *this_frame,
1720 struct trad_frame_saved_reg saved_regs[],
1721 int regnum)
1722 {
1723 if (regnum < S390_NUM_REGS)
1724 return trad_frame_get_prev_register (this_frame, saved_regs, regnum);
1725 else
1726 return s390_unwind_pseudo_register (this_frame, regnum);
1727 }
1728
1729
1730 /* Normal stack frames. */
1731
1732 struct s390_unwind_cache {
1733
1734 CORE_ADDR func;
1735 CORE_ADDR frame_base;
1736 CORE_ADDR local_base;
1737
1738 struct trad_frame_saved_reg *saved_regs;
1739 };
1740
1741 static int
1742 s390_prologue_frame_unwind_cache (struct frame_info *this_frame,
1743 struct s390_unwind_cache *info)
1744 {
1745 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1746 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1747 struct s390_prologue_data data;
1748 pv_t *fp = &data.gpr[S390_FRAME_REGNUM - S390_R0_REGNUM];
1749 pv_t *sp = &data.gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1750 int i;
1751 CORE_ADDR cfa;
1752 CORE_ADDR func;
1753 CORE_ADDR result;
1754 ULONGEST reg;
1755 CORE_ADDR prev_sp;
1756 int frame_pointer;
1757 int size;
1758 struct frame_info *next_frame;
1759
1760 /* Try to find the function start address. If we can't find it, we don't
1761 bother searching for it -- with modern compilers this would be mostly
1762 pointless anyway. Trust that we'll either have valid DWARF-2 CFI data
1763 or else a valid backchain ... */
1764 func = get_frame_func (this_frame);
1765 if (!func)
1766 return 0;
1767
1768 /* Try to analyze the prologue. */
1769 result = s390_analyze_prologue (gdbarch, func,
1770 get_frame_pc (this_frame), &data);
1771 if (!result)
1772 return 0;
1773
1774 /* If this was successful, we should have found the instruction that
1775 sets the stack pointer register to the previous value of the stack
1776 pointer minus the frame size. */
1777 if (!pv_is_register (*sp, S390_SP_REGNUM))
1778 return 0;
1779
1780 /* A frame size of zero at this point can mean either a real
1781 frameless function, or else a failure to find the prologue.
1782 Perform some sanity checks to verify we really have a
1783 frameless function. */
1784 if (sp->k == 0)
1785 {
1786 /* If the next frame is a NORMAL_FRAME, this frame *cannot* have frame
1787 size zero. This is only possible if the next frame is a sentinel
1788 frame, a dummy frame, or a signal trampoline frame. */
1789 /* FIXME: cagney/2004-05-01: This sanity check shouldn't be
1790 needed, instead the code should simpliy rely on its
1791 analysis. */
1792 next_frame = get_next_frame (this_frame);
1793 while (next_frame && get_frame_type (next_frame) == INLINE_FRAME)
1794 next_frame = get_next_frame (next_frame);
1795 if (next_frame
1796 && get_frame_type (get_next_frame (this_frame)) == NORMAL_FRAME)
1797 return 0;
1798
1799 /* If we really have a frameless function, %r14 must be valid
1800 -- in particular, it must point to a different function. */
1801 reg = get_frame_register_unsigned (this_frame, S390_RETADDR_REGNUM);
1802 reg = gdbarch_addr_bits_remove (gdbarch, reg) - 1;
1803 if (get_pc_function_start (reg) == func)
1804 {
1805 /* However, there is one case where it *is* valid for %r14
1806 to point to the same function -- if this is a recursive
1807 call, and we have stopped in the prologue *before* the
1808 stack frame was allocated.
1809
1810 Recognize this case by looking ahead a bit ... */
1811
1812 struct s390_prologue_data data2;
1813 pv_t *sp = &data2.gpr[S390_SP_REGNUM - S390_R0_REGNUM];
1814
1815 if (!(s390_analyze_prologue (gdbarch, func, (CORE_ADDR)-1, &data2)
1816 && pv_is_register (*sp, S390_SP_REGNUM)
1817 && sp->k != 0))
1818 return 0;
1819 }
1820 }
1821
1822
1823 /* OK, we've found valid prologue data. */
1824 size = -sp->k;
1825
1826 /* If the frame pointer originally also holds the same value
1827 as the stack pointer, we're probably using it. If it holds
1828 some other value -- even a constant offset -- it is most
1829 likely used as temp register. */
1830 if (pv_is_identical (*sp, *fp))
1831 frame_pointer = S390_FRAME_REGNUM;
1832 else
1833 frame_pointer = S390_SP_REGNUM;
1834
1835 /* If we've detected a function with stack frame, we'll still have to
1836 treat it as frameless if we're currently within the function epilog
1837 code at a point where the frame pointer has already been restored.
1838 This can only happen in an innermost frame. */
1839 /* FIXME: cagney/2004-05-01: This sanity check shouldn't be needed,
1840 instead the code should simpliy rely on its analysis. */
1841 next_frame = get_next_frame (this_frame);
1842 while (next_frame && get_frame_type (next_frame) == INLINE_FRAME)
1843 next_frame = get_next_frame (next_frame);
1844 if (size > 0
1845 && (next_frame == NULL
1846 || get_frame_type (get_next_frame (this_frame)) != NORMAL_FRAME))
1847 {
1848 /* See the comment in s390_in_function_epilogue_p on why this is
1849 not completely reliable ... */
1850 if (s390_in_function_epilogue_p (gdbarch, get_frame_pc (this_frame)))
1851 {
1852 memset (&data, 0, sizeof (data));
1853 size = 0;
1854 frame_pointer = S390_SP_REGNUM;
1855 }
1856 }
1857
1858 /* Once we know the frame register and the frame size, we can unwind
1859 the current value of the frame register from the next frame, and
1860 add back the frame size to arrive that the previous frame's
1861 stack pointer value. */
1862 prev_sp = get_frame_register_unsigned (this_frame, frame_pointer) + size;
1863 cfa = prev_sp + 16*word_size + 32;
1864
1865 /* Set up ABI call-saved/call-clobbered registers. */
1866 for (i = 0; i < S390_NUM_REGS; i++)
1867 if (!s390_register_call_saved (gdbarch, i))
1868 trad_frame_set_unknown (info->saved_regs, i);
1869
1870 /* CC is always call-clobbered. */
1871 trad_frame_set_unknown (info->saved_regs, S390_PSWM_REGNUM);
1872
1873 /* Record the addresses of all register spill slots the prologue parser
1874 has recognized. Consider only registers defined as call-saved by the
1875 ABI; for call-clobbered registers the parser may have recognized
1876 spurious stores. */
1877
1878 for (i = 0; i < 16; i++)
1879 if (s390_register_call_saved (gdbarch, S390_R0_REGNUM + i)
1880 && data.gpr_slot[i] != 0)
1881 info->saved_regs[S390_R0_REGNUM + i].addr = cfa - data.gpr_slot[i];
1882
1883 for (i = 0; i < 16; i++)
1884 if (s390_register_call_saved (gdbarch, S390_F0_REGNUM + i)
1885 && data.fpr_slot[i] != 0)
1886 info->saved_regs[S390_F0_REGNUM + i].addr = cfa - data.fpr_slot[i];
1887
1888 /* Function return will set PC to %r14. */
1889 info->saved_regs[S390_PSWA_REGNUM] = info->saved_regs[S390_RETADDR_REGNUM];
1890
1891 /* In frameless functions, we unwind simply by moving the return
1892 address to the PC. However, if we actually stored to the
1893 save area, use that -- we might only think the function frameless
1894 because we're in the middle of the prologue ... */
1895 if (size == 0
1896 && !trad_frame_addr_p (info->saved_regs, S390_PSWA_REGNUM))
1897 {
1898 info->saved_regs[S390_PSWA_REGNUM].realreg = S390_RETADDR_REGNUM;
1899 }
1900
1901 /* Another sanity check: unless this is a frameless function,
1902 we should have found spill slots for SP and PC.
1903 If not, we cannot unwind further -- this happens e.g. in
1904 libc's thread_start routine. */
1905 if (size > 0)
1906 {
1907 if (!trad_frame_addr_p (info->saved_regs, S390_SP_REGNUM)
1908 || !trad_frame_addr_p (info->saved_regs, S390_PSWA_REGNUM))
1909 prev_sp = -1;
1910 }
1911
1912 /* We use the current value of the frame register as local_base,
1913 and the top of the register save area as frame_base. */
1914 if (prev_sp != -1)
1915 {
1916 info->frame_base = prev_sp + 16*word_size + 32;
1917 info->local_base = prev_sp - size;
1918 }
1919
1920 info->func = func;
1921 return 1;
1922 }
1923
1924 static void
1925 s390_backchain_frame_unwind_cache (struct frame_info *this_frame,
1926 struct s390_unwind_cache *info)
1927 {
1928 struct gdbarch *gdbarch = get_frame_arch (this_frame);
1929 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1930 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1931 CORE_ADDR backchain;
1932 ULONGEST reg;
1933 LONGEST sp;
1934 int i;
1935
1936 /* Set up ABI call-saved/call-clobbered registers. */
1937 for (i = 0; i < S390_NUM_REGS; i++)
1938 if (!s390_register_call_saved (gdbarch, i))
1939 trad_frame_set_unknown (info->saved_regs, i);
1940
1941 /* CC is always call-clobbered. */
1942 trad_frame_set_unknown (info->saved_regs, S390_PSWM_REGNUM);
1943
1944 /* Get the backchain. */
1945 reg = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
1946 backchain = read_memory_unsigned_integer (reg, word_size, byte_order);
1947
1948 /* A zero backchain terminates the frame chain. As additional
1949 sanity check, let's verify that the spill slot for SP in the
1950 save area pointed to by the backchain in fact links back to
1951 the save area. */
1952 if (backchain != 0
1953 && safe_read_memory_integer (backchain + 15*word_size,
1954 word_size, byte_order, &sp)
1955 && (CORE_ADDR)sp == backchain)
1956 {
1957 /* We don't know which registers were saved, but it will have
1958 to be at least %r14 and %r15. This will allow us to continue
1959 unwinding, but other prev-frame registers may be incorrect ... */
1960 info->saved_regs[S390_SP_REGNUM].addr = backchain + 15*word_size;
1961 info->saved_regs[S390_RETADDR_REGNUM].addr = backchain + 14*word_size;
1962
1963 /* Function return will set PC to %r14. */
1964 info->saved_regs[S390_PSWA_REGNUM]
1965 = info->saved_regs[S390_RETADDR_REGNUM];
1966
1967 /* We use the current value of the frame register as local_base,
1968 and the top of the register save area as frame_base. */
1969 info->frame_base = backchain + 16*word_size + 32;
1970 info->local_base = reg;
1971 }
1972
1973 info->func = get_frame_pc (this_frame);
1974 }
1975
1976 static struct s390_unwind_cache *
1977 s390_frame_unwind_cache (struct frame_info *this_frame,
1978 void **this_prologue_cache)
1979 {
1980 struct s390_unwind_cache *info;
1981 if (*this_prologue_cache)
1982 return *this_prologue_cache;
1983
1984 info = FRAME_OBSTACK_ZALLOC (struct s390_unwind_cache);
1985 *this_prologue_cache = info;
1986 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
1987 info->func = -1;
1988 info->frame_base = -1;
1989 info->local_base = -1;
1990
1991 /* Try to use prologue analysis to fill the unwind cache.
1992 If this fails, fall back to reading the stack backchain. */
1993 if (!s390_prologue_frame_unwind_cache (this_frame, info))
1994 s390_backchain_frame_unwind_cache (this_frame, info);
1995
1996 return info;
1997 }
1998
1999 static void
2000 s390_frame_this_id (struct frame_info *this_frame,
2001 void **this_prologue_cache,
2002 struct frame_id *this_id)
2003 {
2004 struct s390_unwind_cache *info
2005 = s390_frame_unwind_cache (this_frame, this_prologue_cache);
2006
2007 if (info->frame_base == -1)
2008 return;
2009
2010 *this_id = frame_id_build (info->frame_base, info->func);
2011 }
2012
2013 static struct value *
2014 s390_frame_prev_register (struct frame_info *this_frame,
2015 void **this_prologue_cache, int regnum)
2016 {
2017 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2018 struct s390_unwind_cache *info
2019 = s390_frame_unwind_cache (this_frame, this_prologue_cache);
2020
2021 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2022 }
2023
2024 static const struct frame_unwind s390_frame_unwind = {
2025 NORMAL_FRAME,
2026 default_frame_unwind_stop_reason,
2027 s390_frame_this_id,
2028 s390_frame_prev_register,
2029 NULL,
2030 default_frame_sniffer
2031 };
2032
2033
2034 /* Code stubs and their stack frames. For things like PLTs and NULL
2035 function calls (where there is no true frame and the return address
2036 is in the RETADDR register). */
2037
2038 struct s390_stub_unwind_cache
2039 {
2040 CORE_ADDR frame_base;
2041 struct trad_frame_saved_reg *saved_regs;
2042 };
2043
2044 static struct s390_stub_unwind_cache *
2045 s390_stub_frame_unwind_cache (struct frame_info *this_frame,
2046 void **this_prologue_cache)
2047 {
2048 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2049 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2050 struct s390_stub_unwind_cache *info;
2051 ULONGEST reg;
2052
2053 if (*this_prologue_cache)
2054 return *this_prologue_cache;
2055
2056 info = FRAME_OBSTACK_ZALLOC (struct s390_stub_unwind_cache);
2057 *this_prologue_cache = info;
2058 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2059
2060 /* The return address is in register %r14. */
2061 info->saved_regs[S390_PSWA_REGNUM].realreg = S390_RETADDR_REGNUM;
2062
2063 /* Retrieve stack pointer and determine our frame base. */
2064 reg = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2065 info->frame_base = reg + 16*word_size + 32;
2066
2067 return info;
2068 }
2069
2070 static void
2071 s390_stub_frame_this_id (struct frame_info *this_frame,
2072 void **this_prologue_cache,
2073 struct frame_id *this_id)
2074 {
2075 struct s390_stub_unwind_cache *info
2076 = s390_stub_frame_unwind_cache (this_frame, this_prologue_cache);
2077 *this_id = frame_id_build (info->frame_base, get_frame_pc (this_frame));
2078 }
2079
2080 static struct value *
2081 s390_stub_frame_prev_register (struct frame_info *this_frame,
2082 void **this_prologue_cache, int regnum)
2083 {
2084 struct s390_stub_unwind_cache *info
2085 = s390_stub_frame_unwind_cache (this_frame, this_prologue_cache);
2086 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2087 }
2088
2089 static int
2090 s390_stub_frame_sniffer (const struct frame_unwind *self,
2091 struct frame_info *this_frame,
2092 void **this_prologue_cache)
2093 {
2094 CORE_ADDR addr_in_block;
2095 bfd_byte insn[S390_MAX_INSTR_SIZE];
2096
2097 /* If the current PC points to non-readable memory, we assume we
2098 have trapped due to an invalid function pointer call. We handle
2099 the non-existing current function like a PLT stub. */
2100 addr_in_block = get_frame_address_in_block (this_frame);
2101 if (in_plt_section (addr_in_block)
2102 || s390_readinstruction (insn, get_frame_pc (this_frame)) < 0)
2103 return 1;
2104 return 0;
2105 }
2106
2107 static const struct frame_unwind s390_stub_frame_unwind = {
2108 NORMAL_FRAME,
2109 default_frame_unwind_stop_reason,
2110 s390_stub_frame_this_id,
2111 s390_stub_frame_prev_register,
2112 NULL,
2113 s390_stub_frame_sniffer
2114 };
2115
2116
2117 /* Signal trampoline stack frames. */
2118
2119 struct s390_sigtramp_unwind_cache {
2120 CORE_ADDR frame_base;
2121 struct trad_frame_saved_reg *saved_regs;
2122 };
2123
2124 static struct s390_sigtramp_unwind_cache *
2125 s390_sigtramp_frame_unwind_cache (struct frame_info *this_frame,
2126 void **this_prologue_cache)
2127 {
2128 struct gdbarch *gdbarch = get_frame_arch (this_frame);
2129 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2130 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2131 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2132 struct s390_sigtramp_unwind_cache *info;
2133 ULONGEST this_sp, prev_sp;
2134 CORE_ADDR next_ra, next_cfa, sigreg_ptr, sigreg_high_off;
2135 int i;
2136
2137 if (*this_prologue_cache)
2138 return *this_prologue_cache;
2139
2140 info = FRAME_OBSTACK_ZALLOC (struct s390_sigtramp_unwind_cache);
2141 *this_prologue_cache = info;
2142 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
2143
2144 this_sp = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2145 next_ra = get_frame_pc (this_frame);
2146 next_cfa = this_sp + 16*word_size + 32;
2147
2148 /* New-style RT frame:
2149 retcode + alignment (8 bytes)
2150 siginfo (128 bytes)
2151 ucontext (contains sigregs at offset 5 words). */
2152 if (next_ra == next_cfa)
2153 {
2154 sigreg_ptr = next_cfa + 8 + 128 + align_up (5*word_size, 8);
2155 /* sigregs are followed by uc_sigmask (8 bytes), then by the
2156 upper GPR halves if present. */
2157 sigreg_high_off = 8;
2158 }
2159
2160 /* Old-style RT frame and all non-RT frames:
2161 old signal mask (8 bytes)
2162 pointer to sigregs. */
2163 else
2164 {
2165 sigreg_ptr = read_memory_unsigned_integer (next_cfa + 8,
2166 word_size, byte_order);
2167 /* sigregs are followed by signo (4 bytes), then by the
2168 upper GPR halves if present. */
2169 sigreg_high_off = 4;
2170 }
2171
2172 /* The sigregs structure looks like this:
2173 long psw_mask;
2174 long psw_addr;
2175 long gprs[16];
2176 int acrs[16];
2177 int fpc;
2178 int __pad;
2179 double fprs[16]; */
2180
2181 /* PSW mask and address. */
2182 info->saved_regs[S390_PSWM_REGNUM].addr = sigreg_ptr;
2183 sigreg_ptr += word_size;
2184 info->saved_regs[S390_PSWA_REGNUM].addr = sigreg_ptr;
2185 sigreg_ptr += word_size;
2186
2187 /* Then the GPRs. */
2188 for (i = 0; i < 16; i++)
2189 {
2190 info->saved_regs[S390_R0_REGNUM + i].addr = sigreg_ptr;
2191 sigreg_ptr += word_size;
2192 }
2193
2194 /* Then the ACRs. */
2195 for (i = 0; i < 16; i++)
2196 {
2197 info->saved_regs[S390_A0_REGNUM + i].addr = sigreg_ptr;
2198 sigreg_ptr += 4;
2199 }
2200
2201 /* The floating-point control word. */
2202 info->saved_regs[S390_FPC_REGNUM].addr = sigreg_ptr;
2203 sigreg_ptr += 8;
2204
2205 /* And finally the FPRs. */
2206 for (i = 0; i < 16; i++)
2207 {
2208 info->saved_regs[S390_F0_REGNUM + i].addr = sigreg_ptr;
2209 sigreg_ptr += 8;
2210 }
2211
2212 /* If we have them, the GPR upper halves are appended at the end. */
2213 sigreg_ptr += sigreg_high_off;
2214 if (tdep->gpr_full_regnum != -1)
2215 for (i = 0; i < 16; i++)
2216 {
2217 info->saved_regs[S390_R0_UPPER_REGNUM + i].addr = sigreg_ptr;
2218 sigreg_ptr += 4;
2219 }
2220
2221 /* Restore the previous frame's SP. */
2222 prev_sp = read_memory_unsigned_integer (
2223 info->saved_regs[S390_SP_REGNUM].addr,
2224 word_size, byte_order);
2225
2226 /* Determine our frame base. */
2227 info->frame_base = prev_sp + 16*word_size + 32;
2228
2229 return info;
2230 }
2231
2232 static void
2233 s390_sigtramp_frame_this_id (struct frame_info *this_frame,
2234 void **this_prologue_cache,
2235 struct frame_id *this_id)
2236 {
2237 struct s390_sigtramp_unwind_cache *info
2238 = s390_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
2239 *this_id = frame_id_build (info->frame_base, get_frame_pc (this_frame));
2240 }
2241
2242 static struct value *
2243 s390_sigtramp_frame_prev_register (struct frame_info *this_frame,
2244 void **this_prologue_cache, int regnum)
2245 {
2246 struct s390_sigtramp_unwind_cache *info
2247 = s390_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
2248 return s390_trad_frame_prev_register (this_frame, info->saved_regs, regnum);
2249 }
2250
2251 static int
2252 s390_sigtramp_frame_sniffer (const struct frame_unwind *self,
2253 struct frame_info *this_frame,
2254 void **this_prologue_cache)
2255 {
2256 CORE_ADDR pc = get_frame_pc (this_frame);
2257 bfd_byte sigreturn[2];
2258
2259 if (target_read_memory (pc, sigreturn, 2))
2260 return 0;
2261
2262 if (sigreturn[0] != 0x0a /* svc */)
2263 return 0;
2264
2265 if (sigreturn[1] != 119 /* sigreturn */
2266 && sigreturn[1] != 173 /* rt_sigreturn */)
2267 return 0;
2268
2269 return 1;
2270 }
2271
2272 static const struct frame_unwind s390_sigtramp_frame_unwind = {
2273 SIGTRAMP_FRAME,
2274 default_frame_unwind_stop_reason,
2275 s390_sigtramp_frame_this_id,
2276 s390_sigtramp_frame_prev_register,
2277 NULL,
2278 s390_sigtramp_frame_sniffer
2279 };
2280
2281
2282 /* Frame base handling. */
2283
2284 static CORE_ADDR
2285 s390_frame_base_address (struct frame_info *this_frame, void **this_cache)
2286 {
2287 struct s390_unwind_cache *info
2288 = s390_frame_unwind_cache (this_frame, this_cache);
2289 return info->frame_base;
2290 }
2291
2292 static CORE_ADDR
2293 s390_local_base_address (struct frame_info *this_frame, void **this_cache)
2294 {
2295 struct s390_unwind_cache *info
2296 = s390_frame_unwind_cache (this_frame, this_cache);
2297 return info->local_base;
2298 }
2299
2300 static const struct frame_base s390_frame_base = {
2301 &s390_frame_unwind,
2302 s390_frame_base_address,
2303 s390_local_base_address,
2304 s390_local_base_address
2305 };
2306
2307 static CORE_ADDR
2308 s390_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
2309 {
2310 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2311 ULONGEST pc;
2312 pc = frame_unwind_register_unsigned (next_frame, tdep->pc_regnum);
2313 return gdbarch_addr_bits_remove (gdbarch, pc);
2314 }
2315
2316 static CORE_ADDR
2317 s390_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
2318 {
2319 ULONGEST sp;
2320 sp = frame_unwind_register_unsigned (next_frame, S390_SP_REGNUM);
2321 return gdbarch_addr_bits_remove (gdbarch, sp);
2322 }
2323
2324
2325 /* DWARF-2 frame support. */
2326
2327 static struct value *
2328 s390_dwarf2_prev_register (struct frame_info *this_frame, void **this_cache,
2329 int regnum)
2330 {
2331 return s390_unwind_pseudo_register (this_frame, regnum);
2332 }
2333
2334 static void
2335 s390_dwarf2_frame_init_reg (struct gdbarch *gdbarch, int regnum,
2336 struct dwarf2_frame_state_reg *reg,
2337 struct frame_info *this_frame)
2338 {
2339 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2340
2341 /* The condition code (and thus PSW mask) is call-clobbered. */
2342 if (regnum == S390_PSWM_REGNUM)
2343 reg->how = DWARF2_FRAME_REG_UNDEFINED;
2344
2345 /* The PSW address unwinds to the return address. */
2346 else if (regnum == S390_PSWA_REGNUM)
2347 reg->how = DWARF2_FRAME_REG_RA;
2348
2349 /* Fixed registers are call-saved or call-clobbered
2350 depending on the ABI in use. */
2351 else if (regnum < S390_NUM_REGS)
2352 {
2353 if (s390_register_call_saved (gdbarch, regnum))
2354 reg->how = DWARF2_FRAME_REG_SAME_VALUE;
2355 else
2356 reg->how = DWARF2_FRAME_REG_UNDEFINED;
2357 }
2358
2359 /* We install a special function to unwind pseudos. */
2360 else
2361 {
2362 reg->how = DWARF2_FRAME_REG_FN;
2363 reg->loc.fn = s390_dwarf2_prev_register;
2364 }
2365 }
2366
2367
2368 /* Dummy function calls. */
2369
2370 /* Return non-zero if TYPE is an integer-like type, zero otherwise.
2371 "Integer-like" types are those that should be passed the way
2372 integers are: integers, enums, ranges, characters, and booleans. */
2373 static int
2374 is_integer_like (struct type *type)
2375 {
2376 enum type_code code = TYPE_CODE (type);
2377
2378 return (code == TYPE_CODE_INT
2379 || code == TYPE_CODE_ENUM
2380 || code == TYPE_CODE_RANGE
2381 || code == TYPE_CODE_CHAR
2382 || code == TYPE_CODE_BOOL);
2383 }
2384
2385 /* Return non-zero if TYPE is a pointer-like type, zero otherwise.
2386 "Pointer-like" types are those that should be passed the way
2387 pointers are: pointers and references. */
2388 static int
2389 is_pointer_like (struct type *type)
2390 {
2391 enum type_code code = TYPE_CODE (type);
2392
2393 return (code == TYPE_CODE_PTR
2394 || code == TYPE_CODE_REF);
2395 }
2396
2397
2398 /* Return non-zero if TYPE is a `float singleton' or `double
2399 singleton', zero otherwise.
2400
2401 A `T singleton' is a struct type with one member, whose type is
2402 either T or a `T singleton'. So, the following are all float
2403 singletons:
2404
2405 struct { float x };
2406 struct { struct { float x; } x; };
2407 struct { struct { struct { float x; } x; } x; };
2408
2409 ... and so on.
2410
2411 All such structures are passed as if they were floats or doubles,
2412 as the (revised) ABI says. */
2413 static int
2414 is_float_singleton (struct type *type)
2415 {
2416 if (TYPE_CODE (type) == TYPE_CODE_STRUCT && TYPE_NFIELDS (type) == 1)
2417 {
2418 struct type *singleton_type = TYPE_FIELD_TYPE (type, 0);
2419 CHECK_TYPEDEF (singleton_type);
2420
2421 return (TYPE_CODE (singleton_type) == TYPE_CODE_FLT
2422 || TYPE_CODE (singleton_type) == TYPE_CODE_DECFLOAT
2423 || is_float_singleton (singleton_type));
2424 }
2425
2426 return 0;
2427 }
2428
2429
2430 /* Return non-zero if TYPE is a struct-like type, zero otherwise.
2431 "Struct-like" types are those that should be passed as structs are:
2432 structs and unions.
2433
2434 As an odd quirk, not mentioned in the ABI, GCC passes float and
2435 double singletons as if they were a plain float, double, etc. (The
2436 corresponding union types are handled normally.) So we exclude
2437 those types here. *shrug* */
2438 static int
2439 is_struct_like (struct type *type)
2440 {
2441 enum type_code code = TYPE_CODE (type);
2442
2443 return (code == TYPE_CODE_UNION
2444 || (code == TYPE_CODE_STRUCT && ! is_float_singleton (type)));
2445 }
2446
2447
2448 /* Return non-zero if TYPE is a float-like type, zero otherwise.
2449 "Float-like" types are those that should be passed as
2450 floating-point values are.
2451
2452 You'd think this would just be floats, doubles, long doubles, etc.
2453 But as an odd quirk, not mentioned in the ABI, GCC passes float and
2454 double singletons as if they were a plain float, double, etc. (The
2455 corresponding union types are handled normally.) So we include
2456 those types here. *shrug* */
2457 static int
2458 is_float_like (struct type *type)
2459 {
2460 return (TYPE_CODE (type) == TYPE_CODE_FLT
2461 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT
2462 || is_float_singleton (type));
2463 }
2464
2465
2466 static int
2467 is_power_of_two (unsigned int n)
2468 {
2469 return ((n & (n - 1)) == 0);
2470 }
2471
2472 /* Return non-zero if TYPE should be passed as a pointer to a copy,
2473 zero otherwise. */
2474 static int
2475 s390_function_arg_pass_by_reference (struct type *type)
2476 {
2477 if (TYPE_LENGTH (type) > 8)
2478 return 1;
2479
2480 return (is_struct_like (type) && !is_power_of_two (TYPE_LENGTH (type)))
2481 || TYPE_CODE (type) == TYPE_CODE_COMPLEX
2482 || (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type));
2483 }
2484
2485 /* Return non-zero if TYPE should be passed in a float register
2486 if possible. */
2487 static int
2488 s390_function_arg_float (struct type *type)
2489 {
2490 if (TYPE_LENGTH (type) > 8)
2491 return 0;
2492
2493 return is_float_like (type);
2494 }
2495
2496 /* Return non-zero if TYPE should be passed in an integer register
2497 (or a pair of integer registers) if possible. */
2498 static int
2499 s390_function_arg_integer (struct type *type)
2500 {
2501 if (TYPE_LENGTH (type) > 8)
2502 return 0;
2503
2504 return is_integer_like (type)
2505 || is_pointer_like (type)
2506 || (is_struct_like (type) && is_power_of_two (TYPE_LENGTH (type)));
2507 }
2508
2509 /* Return ARG, a `SIMPLE_ARG', sign-extended or zero-extended to a full
2510 word as required for the ABI. */
2511 static LONGEST
2512 extend_simple_arg (struct gdbarch *gdbarch, struct value *arg)
2513 {
2514 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2515 struct type *type = check_typedef (value_type (arg));
2516
2517 /* Even structs get passed in the least significant bits of the
2518 register / memory word. It's not really right to extract them as
2519 an integer, but it does take care of the extension. */
2520 if (TYPE_UNSIGNED (type))
2521 return extract_unsigned_integer (value_contents (arg),
2522 TYPE_LENGTH (type), byte_order);
2523 else
2524 return extract_signed_integer (value_contents (arg),
2525 TYPE_LENGTH (type), byte_order);
2526 }
2527
2528
2529 /* Return the alignment required by TYPE. */
2530 static int
2531 alignment_of (struct type *type)
2532 {
2533 int alignment;
2534
2535 if (is_integer_like (type)
2536 || is_pointer_like (type)
2537 || TYPE_CODE (type) == TYPE_CODE_FLT
2538 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
2539 alignment = TYPE_LENGTH (type);
2540 else if (TYPE_CODE (type) == TYPE_CODE_STRUCT
2541 || TYPE_CODE (type) == TYPE_CODE_UNION)
2542 {
2543 int i;
2544
2545 alignment = 1;
2546 for (i = 0; i < TYPE_NFIELDS (type); i++)
2547 {
2548 int field_alignment
2549 = alignment_of (check_typedef (TYPE_FIELD_TYPE (type, i)));
2550
2551 if (field_alignment > alignment)
2552 alignment = field_alignment;
2553 }
2554 }
2555 else
2556 alignment = 1;
2557
2558 /* Check that everything we ever return is a power of two. Lots of
2559 code doesn't want to deal with aligning things to arbitrary
2560 boundaries. */
2561 gdb_assert ((alignment & (alignment - 1)) == 0);
2562
2563 return alignment;
2564 }
2565
2566
2567 /* Put the actual parameter values pointed to by ARGS[0..NARGS-1] in
2568 place to be passed to a function, as specified by the "GNU/Linux
2569 for S/390 ELF Application Binary Interface Supplement".
2570
2571 SP is the current stack pointer. We must put arguments, links,
2572 padding, etc. whereever they belong, and return the new stack
2573 pointer value.
2574
2575 If STRUCT_RETURN is non-zero, then the function we're calling is
2576 going to return a structure by value; STRUCT_ADDR is the address of
2577 a block we've allocated for it on the stack.
2578
2579 Our caller has taken care of any type promotions needed to satisfy
2580 prototypes or the old K&R argument-passing rules. */
2581 static CORE_ADDR
2582 s390_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
2583 struct regcache *regcache, CORE_ADDR bp_addr,
2584 int nargs, struct value **args, CORE_ADDR sp,
2585 int struct_return, CORE_ADDR struct_addr)
2586 {
2587 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
2588 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2589 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2590 int i;
2591
2592 /* If the i'th argument is passed as a reference to a copy, then
2593 copy_addr[i] is the address of the copy we made. */
2594 CORE_ADDR *copy_addr = alloca (nargs * sizeof (CORE_ADDR));
2595
2596 /* Reserve space for the reference-to-copy area. */
2597 for (i = 0; i < nargs; i++)
2598 {
2599 struct value *arg = args[i];
2600 struct type *type = check_typedef (value_type (arg));
2601
2602 if (s390_function_arg_pass_by_reference (type))
2603 {
2604 sp -= TYPE_LENGTH (type);
2605 sp = align_down (sp, alignment_of (type));
2606 copy_addr[i] = sp;
2607 }
2608 }
2609
2610 /* Reserve space for the parameter area. As a conservative
2611 simplification, we assume that everything will be passed on the
2612 stack. Since every argument larger than 8 bytes will be
2613 passed by reference, we use this simple upper bound. */
2614 sp -= nargs * 8;
2615
2616 /* After all that, make sure it's still aligned on an eight-byte
2617 boundary. */
2618 sp = align_down (sp, 8);
2619
2620 /* Allocate the standard frame areas: the register save area, the
2621 word reserved for the compiler (which seems kind of meaningless),
2622 and the back chain pointer. */
2623 sp -= 16*word_size + 32;
2624
2625 /* Now we have the final SP value. Make sure we didn't underflow;
2626 on 31-bit, this would result in addresses with the high bit set,
2627 which causes confusion elsewhere. Note that if we error out
2628 here, stack and registers remain untouched. */
2629 if (gdbarch_addr_bits_remove (gdbarch, sp) != sp)
2630 error (_("Stack overflow"));
2631
2632
2633 /* Finally, place the actual parameters, working from SP towards
2634 higher addresses. The code above is supposed to reserve enough
2635 space for this. */
2636 {
2637 int fr = 0;
2638 int gr = 2;
2639 CORE_ADDR starg = sp + 16*word_size + 32;
2640
2641 /* A struct is returned using general register 2. */
2642 if (struct_return)
2643 {
2644 regcache_cooked_write_unsigned (regcache, S390_R0_REGNUM + gr,
2645 struct_addr);
2646 gr++;
2647 }
2648
2649 for (i = 0; i < nargs; i++)
2650 {
2651 struct value *arg = args[i];
2652 struct type *type = check_typedef (value_type (arg));
2653 unsigned length = TYPE_LENGTH (type);
2654
2655 if (s390_function_arg_pass_by_reference (type))
2656 {
2657 /* Actually copy the argument contents to the stack slot
2658 that was reserved above. */
2659 write_memory (copy_addr[i], value_contents (arg), length);
2660
2661 if (gr <= 6)
2662 {
2663 regcache_cooked_write_unsigned (regcache, S390_R0_REGNUM + gr,
2664 copy_addr[i]);
2665 gr++;
2666 }
2667 else
2668 {
2669 write_memory_unsigned_integer (starg, word_size, byte_order,
2670 copy_addr[i]);
2671 starg += word_size;
2672 }
2673 }
2674 else if (s390_function_arg_float (type))
2675 {
2676 /* The GNU/Linux for S/390 ABI uses FPRs 0 and 2 to pass arguments,
2677 the GNU/Linux for zSeries ABI uses 0, 2, 4, and 6. */
2678 if (fr <= (tdep->abi == ABI_LINUX_S390 ? 2 : 6))
2679 {
2680 /* When we store a single-precision value in an FP register,
2681 it occupies the leftmost bits. */
2682 regcache_cooked_write_part (regcache, S390_F0_REGNUM + fr,
2683 0, length, value_contents (arg));
2684 fr += 2;
2685 }
2686 else
2687 {
2688 /* When we store a single-precision value in a stack slot,
2689 it occupies the rightmost bits. */
2690 starg = align_up (starg + length, word_size);
2691 write_memory (starg - length, value_contents (arg), length);
2692 }
2693 }
2694 else if (s390_function_arg_integer (type) && length <= word_size)
2695 {
2696 if (gr <= 6)
2697 {
2698 /* Integer arguments are always extended to word size. */
2699 regcache_cooked_write_signed (regcache, S390_R0_REGNUM + gr,
2700 extend_simple_arg (gdbarch,
2701 arg));
2702 gr++;
2703 }
2704 else
2705 {
2706 /* Integer arguments are always extended to word size. */
2707 write_memory_signed_integer (starg, word_size, byte_order,
2708 extend_simple_arg (gdbarch, arg));
2709 starg += word_size;
2710 }
2711 }
2712 else if (s390_function_arg_integer (type) && length == 2*word_size)
2713 {
2714 if (gr <= 5)
2715 {
2716 regcache_cooked_write (regcache, S390_R0_REGNUM + gr,
2717 value_contents (arg));
2718 regcache_cooked_write (regcache, S390_R0_REGNUM + gr + 1,
2719 value_contents (arg) + word_size);
2720 gr += 2;
2721 }
2722 else
2723 {
2724 /* If we skipped r6 because we couldn't fit a DOUBLE_ARG
2725 in it, then don't go back and use it again later. */
2726 gr = 7;
2727
2728 write_memory (starg, value_contents (arg), length);
2729 starg += length;
2730 }
2731 }
2732 else
2733 internal_error (__FILE__, __LINE__, _("unknown argument type"));
2734 }
2735 }
2736
2737 /* Store return PSWA. In 31-bit mode, keep addressing mode bit. */
2738 if (word_size == 4)
2739 {
2740 ULONGEST pswa;
2741 regcache_cooked_read_unsigned (regcache, S390_PSWA_REGNUM, &pswa);
2742 bp_addr = (bp_addr & 0x7fffffff) | (pswa & 0x80000000);
2743 }
2744 regcache_cooked_write_unsigned (regcache, S390_RETADDR_REGNUM, bp_addr);
2745
2746 /* Store updated stack pointer. */
2747 regcache_cooked_write_unsigned (regcache, S390_SP_REGNUM, sp);
2748
2749 /* We need to return the 'stack part' of the frame ID,
2750 which is actually the top of the register save area. */
2751 return sp + 16*word_size + 32;
2752 }
2753
2754 /* Assuming THIS_FRAME is a dummy, return the frame ID of that
2755 dummy frame. The frame ID's base needs to match the TOS value
2756 returned by push_dummy_call, and the PC match the dummy frame's
2757 breakpoint. */
2758 static struct frame_id
2759 s390_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
2760 {
2761 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2762 CORE_ADDR sp = get_frame_register_unsigned (this_frame, S390_SP_REGNUM);
2763 sp = gdbarch_addr_bits_remove (gdbarch, sp);
2764
2765 return frame_id_build (sp + 16*word_size + 32,
2766 get_frame_pc (this_frame));
2767 }
2768
2769 static CORE_ADDR
2770 s390_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
2771 {
2772 /* Both the 32- and 64-bit ABI's say that the stack pointer should
2773 always be aligned on an eight-byte boundary. */
2774 return (addr & -8);
2775 }
2776
2777
2778 /* Function return value access. */
2779
2780 static enum return_value_convention
2781 s390_return_value_convention (struct gdbarch *gdbarch, struct type *type)
2782 {
2783 if (TYPE_LENGTH (type) > 8)
2784 return RETURN_VALUE_STRUCT_CONVENTION;
2785
2786 switch (TYPE_CODE (type))
2787 {
2788 case TYPE_CODE_STRUCT:
2789 case TYPE_CODE_UNION:
2790 case TYPE_CODE_ARRAY:
2791 case TYPE_CODE_COMPLEX:
2792 return RETURN_VALUE_STRUCT_CONVENTION;
2793
2794 default:
2795 return RETURN_VALUE_REGISTER_CONVENTION;
2796 }
2797 }
2798
2799 static enum return_value_convention
2800 s390_return_value (struct gdbarch *gdbarch, struct value *function,
2801 struct type *type, struct regcache *regcache,
2802 gdb_byte *out, const gdb_byte *in)
2803 {
2804 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2805 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2806 enum return_value_convention rvc;
2807 int length;
2808
2809 type = check_typedef (type);
2810 rvc = s390_return_value_convention (gdbarch, type);
2811 length = TYPE_LENGTH (type);
2812
2813 if (in)
2814 {
2815 switch (rvc)
2816 {
2817 case RETURN_VALUE_REGISTER_CONVENTION:
2818 if (TYPE_CODE (type) == TYPE_CODE_FLT
2819 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
2820 {
2821 /* When we store a single-precision value in an FP register,
2822 it occupies the leftmost bits. */
2823 regcache_cooked_write_part (regcache, S390_F0_REGNUM,
2824 0, length, in);
2825 }
2826 else if (length <= word_size)
2827 {
2828 /* Integer arguments are always extended to word size. */
2829 if (TYPE_UNSIGNED (type))
2830 regcache_cooked_write_unsigned (regcache, S390_R2_REGNUM,
2831 extract_unsigned_integer (in, length, byte_order));
2832 else
2833 regcache_cooked_write_signed (regcache, S390_R2_REGNUM,
2834 extract_signed_integer (in, length, byte_order));
2835 }
2836 else if (length == 2*word_size)
2837 {
2838 regcache_cooked_write (regcache, S390_R2_REGNUM, in);
2839 regcache_cooked_write (regcache, S390_R3_REGNUM, in + word_size);
2840 }
2841 else
2842 internal_error (__FILE__, __LINE__, _("invalid return type"));
2843 break;
2844
2845 case RETURN_VALUE_STRUCT_CONVENTION:
2846 error (_("Cannot set function return value."));
2847 break;
2848 }
2849 }
2850 else if (out)
2851 {
2852 switch (rvc)
2853 {
2854 case RETURN_VALUE_REGISTER_CONVENTION:
2855 if (TYPE_CODE (type) == TYPE_CODE_FLT
2856 || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
2857 {
2858 /* When we store a single-precision value in an FP register,
2859 it occupies the leftmost bits. */
2860 regcache_cooked_read_part (regcache, S390_F0_REGNUM,
2861 0, length, out);
2862 }
2863 else if (length <= word_size)
2864 {
2865 /* Integer arguments occupy the rightmost bits. */
2866 regcache_cooked_read_part (regcache, S390_R2_REGNUM,
2867 word_size - length, length, out);
2868 }
2869 else if (length == 2*word_size)
2870 {
2871 regcache_cooked_read (regcache, S390_R2_REGNUM, out);
2872 regcache_cooked_read (regcache, S390_R3_REGNUM, out + word_size);
2873 }
2874 else
2875 internal_error (__FILE__, __LINE__, _("invalid return type"));
2876 break;
2877
2878 case RETURN_VALUE_STRUCT_CONVENTION:
2879 error (_("Function return value unknown."));
2880 break;
2881 }
2882 }
2883
2884 return rvc;
2885 }
2886
2887
2888 /* Breakpoints. */
2889
2890 static const gdb_byte *
2891 s390_breakpoint_from_pc (struct gdbarch *gdbarch,
2892 CORE_ADDR *pcptr, int *lenptr)
2893 {
2894 static const gdb_byte breakpoint[] = { 0x0, 0x1 };
2895
2896 *lenptr = sizeof (breakpoint);
2897 return breakpoint;
2898 }
2899
2900
2901 /* Address handling. */
2902
2903 static CORE_ADDR
2904 s390_addr_bits_remove (struct gdbarch *gdbarch, CORE_ADDR addr)
2905 {
2906 return addr & 0x7fffffff;
2907 }
2908
2909 static int
2910 s390_address_class_type_flags (int byte_size, int dwarf2_addr_class)
2911 {
2912 if (byte_size == 4)
2913 return TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
2914 else
2915 return 0;
2916 }
2917
2918 static const char *
2919 s390_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
2920 {
2921 if (type_flags & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1)
2922 return "mode32";
2923 else
2924 return NULL;
2925 }
2926
2927 static int
2928 s390_address_class_name_to_type_flags (struct gdbarch *gdbarch,
2929 const char *name,
2930 int *type_flags_ptr)
2931 {
2932 if (strcmp (name, "mode32") == 0)
2933 {
2934 *type_flags_ptr = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
2935 return 1;
2936 }
2937 else
2938 return 0;
2939 }
2940
2941 /* Implementation of `gdbarch_stap_is_single_operand', as defined in
2942 gdbarch.h. */
2943
2944 static int
2945 s390_stap_is_single_operand (struct gdbarch *gdbarch, const char *s)
2946 {
2947 return ((isdigit (*s) && s[1] == '(' && s[2] == '%') /* Displacement
2948 or indirection. */
2949 || *s == '%' /* Register access. */
2950 || isdigit (*s)); /* Literal number. */
2951 }
2952
2953 /* Set up gdbarch struct. */
2954
2955 static struct gdbarch *
2956 s390_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
2957 {
2958 const struct target_desc *tdesc = info.target_desc;
2959 struct tdesc_arch_data *tdesc_data = NULL;
2960 struct gdbarch *gdbarch;
2961 struct gdbarch_tdep *tdep;
2962 int tdep_abi;
2963 int have_upper = 0;
2964 int have_linux_v1 = 0;
2965 int have_linux_v2 = 0;
2966 int first_pseudo_reg, last_pseudo_reg;
2967
2968 /* Default ABI and register size. */
2969 switch (info.bfd_arch_info->mach)
2970 {
2971 case bfd_mach_s390_31:
2972 tdep_abi = ABI_LINUX_S390;
2973 break;
2974
2975 case bfd_mach_s390_64:
2976 tdep_abi = ABI_LINUX_ZSERIES;
2977 break;
2978
2979 default:
2980 return NULL;
2981 }
2982
2983 /* Use default target description if none provided by the target. */
2984 if (!tdesc_has_registers (tdesc))
2985 {
2986 if (tdep_abi == ABI_LINUX_S390)
2987 tdesc = tdesc_s390_linux32;
2988 else
2989 tdesc = tdesc_s390x_linux64;
2990 }
2991
2992 /* Check any target description for validity. */
2993 if (tdesc_has_registers (tdesc))
2994 {
2995 static const char *const gprs[] = {
2996 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
2997 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15"
2998 };
2999 static const char *const fprs[] = {
3000 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
3001 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15"
3002 };
3003 static const char *const acrs[] = {
3004 "acr0", "acr1", "acr2", "acr3", "acr4", "acr5", "acr6", "acr7",
3005 "acr8", "acr9", "acr10", "acr11", "acr12", "acr13", "acr14", "acr15"
3006 };
3007 static const char *const gprs_lower[] = {
3008 "r0l", "r1l", "r2l", "r3l", "r4l", "r5l", "r6l", "r7l",
3009 "r8l", "r9l", "r10l", "r11l", "r12l", "r13l", "r14l", "r15l"
3010 };
3011 static const char *const gprs_upper[] = {
3012 "r0h", "r1h", "r2h", "r3h", "r4h", "r5h", "r6h", "r7h",
3013 "r8h", "r9h", "r10h", "r11h", "r12h", "r13h", "r14h", "r15h"
3014 };
3015 const struct tdesc_feature *feature;
3016 int i, valid_p = 1;
3017
3018 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.core");
3019 if (feature == NULL)
3020 return NULL;
3021
3022 tdesc_data = tdesc_data_alloc ();
3023
3024 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3025 S390_PSWM_REGNUM, "pswm");
3026 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3027 S390_PSWA_REGNUM, "pswa");
3028
3029 if (tdesc_unnumbered_register (feature, "r0"))
3030 {
3031 for (i = 0; i < 16; i++)
3032 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3033 S390_R0_REGNUM + i, gprs[i]);
3034 }
3035 else
3036 {
3037 have_upper = 1;
3038
3039 for (i = 0; i < 16; i++)
3040 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3041 S390_R0_REGNUM + i,
3042 gprs_lower[i]);
3043 for (i = 0; i < 16; i++)
3044 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3045 S390_R0_UPPER_REGNUM + i,
3046 gprs_upper[i]);
3047 }
3048
3049 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.fpr");
3050 if (feature == NULL)
3051 {
3052 tdesc_data_cleanup (tdesc_data);
3053 return NULL;
3054 }
3055
3056 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3057 S390_FPC_REGNUM, "fpc");
3058 for (i = 0; i < 16; i++)
3059 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3060 S390_F0_REGNUM + i, fprs[i]);
3061
3062 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.acr");
3063 if (feature == NULL)
3064 {
3065 tdesc_data_cleanup (tdesc_data);
3066 return NULL;
3067 }
3068
3069 for (i = 0; i < 16; i++)
3070 valid_p &= tdesc_numbered_register (feature, tdesc_data,
3071 S390_A0_REGNUM + i, acrs[i]);
3072
3073 /* Optional GNU/Linux-specific "registers". */
3074 feature = tdesc_find_feature (tdesc, "org.gnu.gdb.s390.linux");
3075 if (feature)
3076 {
3077 tdesc_numbered_register (feature, tdesc_data,
3078 S390_ORIG_R2_REGNUM, "orig_r2");
3079
3080 if (tdesc_numbered_register (feature, tdesc_data,
3081 S390_LAST_BREAK_REGNUM, "last_break"))
3082 have_linux_v1 = 1;
3083
3084 if (tdesc_numbered_register (feature, tdesc_data,
3085 S390_SYSTEM_CALL_REGNUM, "system_call"))
3086 have_linux_v2 = 1;
3087
3088 if (have_linux_v2 > have_linux_v1)
3089 valid_p = 0;
3090 }
3091
3092 if (!valid_p)
3093 {
3094 tdesc_data_cleanup (tdesc_data);
3095 return NULL;
3096 }
3097 }
3098
3099 /* Find a candidate among extant architectures. */
3100 for (arches = gdbarch_list_lookup_by_info (arches, &info);
3101 arches != NULL;
3102 arches = gdbarch_list_lookup_by_info (arches->next, &info))
3103 {
3104 tdep = gdbarch_tdep (arches->gdbarch);
3105 if (!tdep)
3106 continue;
3107 if (tdep->abi != tdep_abi)
3108 continue;
3109 if ((tdep->gpr_full_regnum != -1) != have_upper)
3110 continue;
3111 if (tdesc_data != NULL)
3112 tdesc_data_cleanup (tdesc_data);
3113 return arches->gdbarch;
3114 }
3115
3116 /* Otherwise create a new gdbarch for the specified machine type. */
3117 tdep = XCALLOC (1, struct gdbarch_tdep);
3118 tdep->abi = tdep_abi;
3119 gdbarch = gdbarch_alloc (&info, tdep);
3120
3121 set_gdbarch_believe_pcc_promotion (gdbarch, 0);
3122 set_gdbarch_char_signed (gdbarch, 0);
3123
3124 /* S/390 GNU/Linux uses either 64-bit or 128-bit long doubles.
3125 We can safely let them default to 128-bit, since the debug info
3126 will give the size of type actually used in each case. */
3127 set_gdbarch_long_double_bit (gdbarch, 128);
3128 set_gdbarch_long_double_format (gdbarch, floatformats_ia64_quad);
3129
3130 /* Amount PC must be decremented by after a breakpoint. This is
3131 often the number of bytes returned by gdbarch_breakpoint_from_pc but not
3132 always. */
3133 set_gdbarch_decr_pc_after_break (gdbarch, 2);
3134 /* Stack grows downward. */
3135 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
3136 set_gdbarch_breakpoint_from_pc (gdbarch, s390_breakpoint_from_pc);
3137 set_gdbarch_skip_prologue (gdbarch, s390_skip_prologue);
3138 set_gdbarch_in_function_epilogue_p (gdbarch, s390_in_function_epilogue_p);
3139
3140 set_gdbarch_num_regs (gdbarch, S390_NUM_REGS);
3141 set_gdbarch_sp_regnum (gdbarch, S390_SP_REGNUM);
3142 set_gdbarch_fp0_regnum (gdbarch, S390_F0_REGNUM);
3143 set_gdbarch_stab_reg_to_regnum (gdbarch, s390_dwarf_reg_to_regnum);
3144 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, s390_dwarf_reg_to_regnum);
3145 set_gdbarch_value_from_register (gdbarch, s390_value_from_register);
3146 set_gdbarch_regset_from_core_section (gdbarch,
3147 s390_regset_from_core_section);
3148 set_gdbarch_core_read_description (gdbarch, s390_core_read_description);
3149 set_gdbarch_cannot_store_register (gdbarch, s390_cannot_store_register);
3150 set_gdbarch_write_pc (gdbarch, s390_write_pc);
3151 set_gdbarch_pseudo_register_read (gdbarch, s390_pseudo_register_read);
3152 set_gdbarch_pseudo_register_write (gdbarch, s390_pseudo_register_write);
3153 set_tdesc_pseudo_register_name (gdbarch, s390_pseudo_register_name);
3154 set_tdesc_pseudo_register_type (gdbarch, s390_pseudo_register_type);
3155 set_tdesc_pseudo_register_reggroup_p (gdbarch,
3156 s390_pseudo_register_reggroup_p);
3157 tdesc_use_registers (gdbarch, tdesc, tdesc_data);
3158
3159 /* Assign pseudo register numbers. */
3160 first_pseudo_reg = gdbarch_num_regs (gdbarch);
3161 last_pseudo_reg = first_pseudo_reg;
3162 tdep->gpr_full_regnum = -1;
3163 if (have_upper)
3164 {
3165 tdep->gpr_full_regnum = last_pseudo_reg;
3166 last_pseudo_reg += 16;
3167 }
3168 tdep->pc_regnum = last_pseudo_reg++;
3169 tdep->cc_regnum = last_pseudo_reg++;
3170 set_gdbarch_pc_regnum (gdbarch, tdep->pc_regnum);
3171 set_gdbarch_num_pseudo_regs (gdbarch, last_pseudo_reg - first_pseudo_reg);
3172
3173 /* Inferior function calls. */
3174 set_gdbarch_push_dummy_call (gdbarch, s390_push_dummy_call);
3175 set_gdbarch_dummy_id (gdbarch, s390_dummy_id);
3176 set_gdbarch_frame_align (gdbarch, s390_frame_align);
3177 set_gdbarch_return_value (gdbarch, s390_return_value);
3178
3179 /* Frame handling. */
3180 dwarf2_frame_set_init_reg (gdbarch, s390_dwarf2_frame_init_reg);
3181 dwarf2_frame_set_adjust_regnum (gdbarch, s390_adjust_frame_regnum);
3182 dwarf2_append_unwinders (gdbarch);
3183 frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
3184 frame_unwind_append_unwinder (gdbarch, &s390_stub_frame_unwind);
3185 frame_unwind_append_unwinder (gdbarch, &s390_sigtramp_frame_unwind);
3186 frame_unwind_append_unwinder (gdbarch, &s390_frame_unwind);
3187 frame_base_set_default (gdbarch, &s390_frame_base);
3188 set_gdbarch_unwind_pc (gdbarch, s390_unwind_pc);
3189 set_gdbarch_unwind_sp (gdbarch, s390_unwind_sp);
3190
3191 /* Displaced stepping. */
3192 set_gdbarch_displaced_step_copy_insn (gdbarch,
3193 simple_displaced_step_copy_insn);
3194 set_gdbarch_displaced_step_fixup (gdbarch, s390_displaced_step_fixup);
3195 set_gdbarch_displaced_step_free_closure (gdbarch,
3196 simple_displaced_step_free_closure);
3197 set_gdbarch_displaced_step_location (gdbarch,
3198 displaced_step_at_entry_point);
3199 set_gdbarch_max_insn_length (gdbarch, S390_MAX_INSTR_SIZE);
3200
3201 /* Note that GNU/Linux is the only OS supported on this
3202 platform. */
3203 linux_init_abi (info, gdbarch);
3204
3205 switch (tdep->abi)
3206 {
3207 case ABI_LINUX_S390:
3208 tdep->gregset = &s390_gregset;
3209 tdep->sizeof_gregset = s390_sizeof_gregset;
3210 tdep->fpregset = &s390_fpregset;
3211 tdep->sizeof_fpregset = s390_sizeof_fpregset;
3212
3213 set_gdbarch_addr_bits_remove (gdbarch, s390_addr_bits_remove);
3214 set_solib_svr4_fetch_link_map_offsets
3215 (gdbarch, svr4_ilp32_fetch_link_map_offsets);
3216
3217 if (have_upper)
3218 {
3219 if (have_linux_v2)
3220 set_gdbarch_core_regset_sections (gdbarch,
3221 s390_linux64v2_regset_sections);
3222 else if (have_linux_v1)
3223 set_gdbarch_core_regset_sections (gdbarch,
3224 s390_linux64v1_regset_sections);
3225 else
3226 set_gdbarch_core_regset_sections (gdbarch,
3227 s390_linux64_regset_sections);
3228 }
3229 else
3230 {
3231 if (have_linux_v2)
3232 set_gdbarch_core_regset_sections (gdbarch,
3233 s390_linux32v2_regset_sections);
3234 else if (have_linux_v1)
3235 set_gdbarch_core_regset_sections (gdbarch,
3236 s390_linux32v1_regset_sections);
3237 else
3238 set_gdbarch_core_regset_sections (gdbarch,
3239 s390_linux32_regset_sections);
3240 }
3241 break;
3242
3243 case ABI_LINUX_ZSERIES:
3244 tdep->gregset = &s390x_gregset;
3245 tdep->sizeof_gregset = s390x_sizeof_gregset;
3246 tdep->fpregset = &s390_fpregset;
3247 tdep->sizeof_fpregset = s390_sizeof_fpregset;
3248
3249 set_gdbarch_long_bit (gdbarch, 64);
3250 set_gdbarch_long_long_bit (gdbarch, 64);
3251 set_gdbarch_ptr_bit (gdbarch, 64);
3252 set_solib_svr4_fetch_link_map_offsets
3253 (gdbarch, svr4_lp64_fetch_link_map_offsets);
3254 set_gdbarch_address_class_type_flags (gdbarch,
3255 s390_address_class_type_flags);
3256 set_gdbarch_address_class_type_flags_to_name (gdbarch,
3257 s390_address_class_type_flags_to_name);
3258 set_gdbarch_address_class_name_to_type_flags (gdbarch,
3259 s390_address_class_name_to_type_flags);
3260
3261 if (have_linux_v2)
3262 set_gdbarch_core_regset_sections (gdbarch,
3263 s390x_linux64v2_regset_sections);
3264 else if (have_linux_v1)
3265 set_gdbarch_core_regset_sections (gdbarch,
3266 s390x_linux64v1_regset_sections);
3267 else
3268 set_gdbarch_core_regset_sections (gdbarch,
3269 s390x_linux64_regset_sections);
3270 break;
3271 }
3272
3273 set_gdbarch_print_insn (gdbarch, print_insn_s390);
3274
3275 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
3276
3277 /* Enable TLS support. */
3278 set_gdbarch_fetch_tls_load_module_address (gdbarch,
3279 svr4_fetch_objfile_link_map);
3280
3281 set_gdbarch_get_siginfo_type (gdbarch, linux_get_siginfo_type);
3282
3283 /* SystemTap functions. */
3284 set_gdbarch_stap_register_prefix (gdbarch, "%");
3285 set_gdbarch_stap_register_indirection_prefix (gdbarch, "(");
3286 set_gdbarch_stap_register_indirection_suffix (gdbarch, ")");
3287 set_gdbarch_stap_is_single_operand (gdbarch, s390_stap_is_single_operand);
3288
3289 return gdbarch;
3290 }
3291
3292
3293 extern initialize_file_ftype _initialize_s390_tdep; /* -Wmissing-prototypes */
3294
3295 void
3296 _initialize_s390_tdep (void)
3297 {
3298 /* Hook us into the gdbarch mechanism. */
3299 register_gdbarch_init (bfd_arch_s390, s390_gdbarch_init);
3300
3301 /* Initialize the GNU/Linux target descriptions. */
3302 initialize_tdesc_s390_linux32 ();
3303 initialize_tdesc_s390_linux32v1 ();
3304 initialize_tdesc_s390_linux32v2 ();
3305 initialize_tdesc_s390_linux64 ();
3306 initialize_tdesc_s390_linux64v1 ();
3307 initialize_tdesc_s390_linux64v2 ();
3308 initialize_tdesc_s390x_linux64 ();
3309 initialize_tdesc_s390x_linux64v1 ();
3310 initialize_tdesc_s390x_linux64v2 ();
3311 }