2004-04-22 Randolph Chung <tausq@debian.org>
[deliverable/binutils-gdb.git] / gdb / hppa-tdep.c
1 /* Target-dependent code for the HP PA architecture, for GDB.
2
3 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
5 Foundation, Inc.
6
7 Contributed by the Center for Software Science at the
8 University of Utah (pa-gdb-bugs@cs.utah.edu).
9
10 This file is part of GDB.
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place - Suite 330,
25 Boston, MA 02111-1307, USA. */
26
27 #include "defs.h"
28 #include "frame.h"
29 #include "bfd.h"
30 #include "inferior.h"
31 #include "value.h"
32 #include "regcache.h"
33 #include "completer.h"
34 #include "language.h"
35 #include "osabi.h"
36 #include "gdb_assert.h"
37 #include "infttrace.h"
38 #include "arch-utils.h"
39 /* For argument passing to the inferior */
40 #include "symtab.h"
41 #include "infcall.h"
42 #include "dis-asm.h"
43 #include "trad-frame.h"
44 #include "frame-unwind.h"
45 #include "frame-base.h"
46
47 #include "gdb_stat.h"
48 #include "gdb_wait.h"
49
50 #include "gdbcore.h"
51 #include "gdbcmd.h"
52 #include "target.h"
53 #include "symfile.h"
54 #include "objfiles.h"
55 #include "hppa-tdep.h"
56
57 static int hppa_debug = 0;
58
59 /* Some local constants. */
60 static const int hppa32_num_regs = 128;
61 static const int hppa64_num_regs = 96;
62
63 /* hppa-specific object data -- unwind and solib info.
64 TODO/maybe: think about splitting this into two parts; the unwind data is
65 common to all hppa targets, but is only used in this file; we can register
66 that separately and make this static. The solib data is probably hpux-
67 specific, so we can create a separate extern objfile_data that is registered
68 by hppa-hpux-tdep.c and shared with pa64solib.c and somsolib.c. */
69 const struct objfile_data *hppa_objfile_priv_data = NULL;
70
71 /* Get at various relevent fields of an instruction word. */
72 #define MASK_5 0x1f
73 #define MASK_11 0x7ff
74 #define MASK_14 0x3fff
75 #define MASK_21 0x1fffff
76
77 /* Define offsets into the call dummy for the _sr4export address.
78 See comments related to CALL_DUMMY for more info. */
79 #define SR4EXPORT_LDIL_OFFSET (HPPA_INSTRUCTION_SIZE * 12)
80 #define SR4EXPORT_LDO_OFFSET (HPPA_INSTRUCTION_SIZE * 13)
81
82 /* To support detection of the pseudo-initial frame
83 that threads have. */
84 #define THREAD_INITIAL_FRAME_SYMBOL "__pthread_exit"
85 #define THREAD_INITIAL_FRAME_SYM_LEN sizeof(THREAD_INITIAL_FRAME_SYMBOL)
86
87 /* Sizes (in bytes) of the native unwind entries. */
88 #define UNWIND_ENTRY_SIZE 16
89 #define STUB_UNWIND_ENTRY_SIZE 8
90
91 static void unwind_command (char *, int);
92
93 static int hppa_alignof (struct type *);
94
95 static int prologue_inst_adjust_sp (unsigned long);
96
97 static int is_branch (unsigned long);
98
99 static int inst_saves_gr (unsigned long);
100
101 static int inst_saves_fr (unsigned long);
102
103 static int compare_unwind_entries (const void *, const void *);
104
105 static void read_unwind_info (struct objfile *);
106
107 static void internalize_unwinds (struct objfile *,
108 struct unwind_table_entry *,
109 asection *, unsigned int,
110 unsigned int, CORE_ADDR);
111 static void record_text_segment_lowaddr (bfd *, asection *, void *);
112 /* FIXME: brobecker 2002-11-07: We will likely be able to make the
113 following functions static, once we hppa is partially multiarched. */
114 int hppa_pc_requires_run_before_use (CORE_ADDR pc);
115 int hppa_instruction_nullified (void);
116
117 /* Handle 32/64-bit struct return conventions. */
118
119 static enum return_value_convention
120 hppa32_return_value (struct gdbarch *gdbarch,
121 struct type *type, struct regcache *regcache,
122 void *readbuf, const void *writebuf)
123 {
124 if (TYPE_CODE (type) == TYPE_CODE_FLT)
125 {
126 if (readbuf != NULL)
127 regcache_cooked_read_part (regcache, FP4_REGNUM, 0,
128 TYPE_LENGTH (type), readbuf);
129 if (writebuf != NULL)
130 regcache_cooked_write_part (regcache, FP4_REGNUM, 0,
131 TYPE_LENGTH (type), writebuf);
132 return RETURN_VALUE_REGISTER_CONVENTION;
133 }
134 if (TYPE_LENGTH (type) <= 2 * 4)
135 {
136 /* The value always lives in the right hand end of the register
137 (or register pair)? */
138 int b;
139 int reg = 28;
140 int part = TYPE_LENGTH (type) % 4;
141 /* The left hand register contains only part of the value,
142 transfer that first so that the rest can be xfered as entire
143 4-byte registers. */
144 if (part > 0)
145 {
146 if (readbuf != NULL)
147 regcache_cooked_read_part (regcache, reg, 4 - part,
148 part, readbuf);
149 if (writebuf != NULL)
150 regcache_cooked_write_part (regcache, reg, 4 - part,
151 part, writebuf);
152 reg++;
153 }
154 /* Now transfer the remaining register values. */
155 for (b = part; b < TYPE_LENGTH (type); b += 4)
156 {
157 if (readbuf != NULL)
158 regcache_cooked_read (regcache, reg, (char *) readbuf + b);
159 if (writebuf != NULL)
160 regcache_cooked_write (regcache, reg, (const char *) writebuf + b);
161 reg++;
162 }
163 return RETURN_VALUE_REGISTER_CONVENTION;
164 }
165 else
166 return RETURN_VALUE_STRUCT_CONVENTION;
167 }
168
169 static enum return_value_convention
170 hppa64_return_value (struct gdbarch *gdbarch,
171 struct type *type, struct regcache *regcache,
172 void *readbuf, const void *writebuf)
173 {
174 /* RM: Floats are returned in FR4R, doubles in FR4. Integral values
175 are in r28, padded on the left. Aggregates less that 65 bits are
176 in r28, right padded. Aggregates upto 128 bits are in r28 and
177 r29, right padded. */
178 if (TYPE_CODE (type) == TYPE_CODE_FLT
179 && TYPE_LENGTH (type) <= 8)
180 {
181 /* Floats are right aligned? */
182 int offset = register_size (gdbarch, FP4_REGNUM) - TYPE_LENGTH (type);
183 if (readbuf != NULL)
184 regcache_cooked_read_part (regcache, FP4_REGNUM, offset,
185 TYPE_LENGTH (type), readbuf);
186 if (writebuf != NULL)
187 regcache_cooked_write_part (regcache, FP4_REGNUM, offset,
188 TYPE_LENGTH (type), writebuf);
189 return RETURN_VALUE_REGISTER_CONVENTION;
190 }
191 else if (TYPE_LENGTH (type) <= 8 && is_integral_type (type))
192 {
193 /* Integrals are right aligned. */
194 int offset = register_size (gdbarch, FP4_REGNUM) - TYPE_LENGTH (type);
195 if (readbuf != NULL)
196 regcache_cooked_read_part (regcache, 28, offset,
197 TYPE_LENGTH (type), readbuf);
198 if (writebuf != NULL)
199 regcache_cooked_write_part (regcache, 28, offset,
200 TYPE_LENGTH (type), writebuf);
201 return RETURN_VALUE_REGISTER_CONVENTION;
202 }
203 else if (TYPE_LENGTH (type) <= 2 * 8)
204 {
205 /* Composite values are left aligned. */
206 int b;
207 for (b = 0; b < TYPE_LENGTH (type); b += 8)
208 {
209 int part = min (8, TYPE_LENGTH (type) - b);
210 if (readbuf != NULL)
211 regcache_cooked_read_part (regcache, 28 + b / 8, 0, part,
212 (char *) readbuf + b);
213 if (writebuf != NULL)
214 regcache_cooked_write_part (regcache, 28 + b / 8, 0, part,
215 (const char *) writebuf + b);
216 }
217 return RETURN_VALUE_REGISTER_CONVENTION;
218 }
219 else
220 return RETURN_VALUE_STRUCT_CONVENTION;
221 }
222
223 /* Routines to extract various sized constants out of hppa
224 instructions. */
225
226 /* This assumes that no garbage lies outside of the lower bits of
227 value. */
228
229 int
230 hppa_sign_extend (unsigned val, unsigned bits)
231 {
232 return (int) (val >> (bits - 1) ? (-1 << bits) | val : val);
233 }
234
235 /* For many immediate values the sign bit is the low bit! */
236
237 int
238 hppa_low_hppa_sign_extend (unsigned val, unsigned bits)
239 {
240 return (int) ((val & 0x1 ? (-1 << (bits - 1)) : 0) | val >> 1);
241 }
242
243 /* Extract the bits at positions between FROM and TO, using HP's numbering
244 (MSB = 0). */
245
246 int
247 hppa_get_field (unsigned word, int from, int to)
248 {
249 return ((word) >> (31 - (to)) & ((1 << ((to) - (from) + 1)) - 1));
250 }
251
252 /* extract the immediate field from a ld{bhw}s instruction */
253
254 int
255 hppa_extract_5_load (unsigned word)
256 {
257 return hppa_low_hppa_sign_extend (word >> 16 & MASK_5, 5);
258 }
259
260 /* extract the immediate field from a break instruction */
261
262 unsigned
263 hppa_extract_5r_store (unsigned word)
264 {
265 return (word & MASK_5);
266 }
267
268 /* extract the immediate field from a {sr}sm instruction */
269
270 unsigned
271 hppa_extract_5R_store (unsigned word)
272 {
273 return (word >> 16 & MASK_5);
274 }
275
276 /* extract a 14 bit immediate field */
277
278 int
279 hppa_extract_14 (unsigned word)
280 {
281 return hppa_low_hppa_sign_extend (word & MASK_14, 14);
282 }
283
284 /* extract a 21 bit constant */
285
286 int
287 hppa_extract_21 (unsigned word)
288 {
289 int val;
290
291 word &= MASK_21;
292 word <<= 11;
293 val = hppa_get_field (word, 20, 20);
294 val <<= 11;
295 val |= hppa_get_field (word, 9, 19);
296 val <<= 2;
297 val |= hppa_get_field (word, 5, 6);
298 val <<= 5;
299 val |= hppa_get_field (word, 0, 4);
300 val <<= 2;
301 val |= hppa_get_field (word, 7, 8);
302 return hppa_sign_extend (val, 21) << 11;
303 }
304
305 /* extract a 17 bit constant from branch instructions, returning the
306 19 bit signed value. */
307
308 int
309 hppa_extract_17 (unsigned word)
310 {
311 return hppa_sign_extend (hppa_get_field (word, 19, 28) |
312 hppa_get_field (word, 29, 29) << 10 |
313 hppa_get_field (word, 11, 15) << 11 |
314 (word & 0x1) << 16, 17) << 2;
315 }
316 \f
317
318 /* Compare the start address for two unwind entries returning 1 if
319 the first address is larger than the second, -1 if the second is
320 larger than the first, and zero if they are equal. */
321
322 static int
323 compare_unwind_entries (const void *arg1, const void *arg2)
324 {
325 const struct unwind_table_entry *a = arg1;
326 const struct unwind_table_entry *b = arg2;
327
328 if (a->region_start > b->region_start)
329 return 1;
330 else if (a->region_start < b->region_start)
331 return -1;
332 else
333 return 0;
334 }
335
336 static void
337 record_text_segment_lowaddr (bfd *abfd, asection *section, void *data)
338 {
339 if ((section->flags & (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
340 == (SEC_ALLOC | SEC_LOAD | SEC_READONLY))
341 {
342 bfd_vma value = section->vma - section->filepos;
343 CORE_ADDR *low_text_segment_address = (CORE_ADDR *)data;
344
345 if (value < *low_text_segment_address)
346 *low_text_segment_address = value;
347 }
348 }
349
350 static void
351 internalize_unwinds (struct objfile *objfile, struct unwind_table_entry *table,
352 asection *section, unsigned int entries, unsigned int size,
353 CORE_ADDR text_offset)
354 {
355 /* We will read the unwind entries into temporary memory, then
356 fill in the actual unwind table. */
357
358 if (size > 0)
359 {
360 unsigned long tmp;
361 unsigned i;
362 char *buf = alloca (size);
363 CORE_ADDR low_text_segment_address;
364
365 /* For ELF targets, then unwinds are supposed to
366 be segment relative offsets instead of absolute addresses.
367
368 Note that when loading a shared library (text_offset != 0) the
369 unwinds are already relative to the text_offset that will be
370 passed in. */
371 if (gdbarch_tdep (current_gdbarch)->is_elf && text_offset == 0)
372 {
373 low_text_segment_address = -1;
374
375 bfd_map_over_sections (objfile->obfd,
376 record_text_segment_lowaddr,
377 &low_text_segment_address);
378
379 text_offset = low_text_segment_address;
380 }
381
382 bfd_get_section_contents (objfile->obfd, section, buf, 0, size);
383
384 /* Now internalize the information being careful to handle host/target
385 endian issues. */
386 for (i = 0; i < entries; i++)
387 {
388 table[i].region_start = bfd_get_32 (objfile->obfd,
389 (bfd_byte *) buf);
390 table[i].region_start += text_offset;
391 buf += 4;
392 table[i].region_end = bfd_get_32 (objfile->obfd, (bfd_byte *) buf);
393 table[i].region_end += text_offset;
394 buf += 4;
395 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *) buf);
396 buf += 4;
397 table[i].Cannot_unwind = (tmp >> 31) & 0x1;
398 table[i].Millicode = (tmp >> 30) & 0x1;
399 table[i].Millicode_save_sr0 = (tmp >> 29) & 0x1;
400 table[i].Region_description = (tmp >> 27) & 0x3;
401 table[i].reserved1 = (tmp >> 26) & 0x1;
402 table[i].Entry_SR = (tmp >> 25) & 0x1;
403 table[i].Entry_FR = (tmp >> 21) & 0xf;
404 table[i].Entry_GR = (tmp >> 16) & 0x1f;
405 table[i].Args_stored = (tmp >> 15) & 0x1;
406 table[i].Variable_Frame = (tmp >> 14) & 0x1;
407 table[i].Separate_Package_Body = (tmp >> 13) & 0x1;
408 table[i].Frame_Extension_Millicode = (tmp >> 12) & 0x1;
409 table[i].Stack_Overflow_Check = (tmp >> 11) & 0x1;
410 table[i].Two_Instruction_SP_Increment = (tmp >> 10) & 0x1;
411 table[i].Ada_Region = (tmp >> 9) & 0x1;
412 table[i].cxx_info = (tmp >> 8) & 0x1;
413 table[i].cxx_try_catch = (tmp >> 7) & 0x1;
414 table[i].sched_entry_seq = (tmp >> 6) & 0x1;
415 table[i].reserved2 = (tmp >> 5) & 0x1;
416 table[i].Save_SP = (tmp >> 4) & 0x1;
417 table[i].Save_RP = (tmp >> 3) & 0x1;
418 table[i].Save_MRP_in_frame = (tmp >> 2) & 0x1;
419 table[i].extn_ptr_defined = (tmp >> 1) & 0x1;
420 table[i].Cleanup_defined = tmp & 0x1;
421 tmp = bfd_get_32 (objfile->obfd, (bfd_byte *) buf);
422 buf += 4;
423 table[i].MPE_XL_interrupt_marker = (tmp >> 31) & 0x1;
424 table[i].HP_UX_interrupt_marker = (tmp >> 30) & 0x1;
425 table[i].Large_frame = (tmp >> 29) & 0x1;
426 table[i].Pseudo_SP_Set = (tmp >> 28) & 0x1;
427 table[i].reserved4 = (tmp >> 27) & 0x1;
428 table[i].Total_frame_size = tmp & 0x7ffffff;
429
430 /* Stub unwinds are handled elsewhere. */
431 table[i].stub_unwind.stub_type = 0;
432 table[i].stub_unwind.padding = 0;
433 }
434 }
435 }
436
437 /* Read in the backtrace information stored in the `$UNWIND_START$' section of
438 the object file. This info is used mainly by find_unwind_entry() to find
439 out the stack frame size and frame pointer used by procedures. We put
440 everything on the psymbol obstack in the objfile so that it automatically
441 gets freed when the objfile is destroyed. */
442
443 static void
444 read_unwind_info (struct objfile *objfile)
445 {
446 asection *unwind_sec, *stub_unwind_sec;
447 unsigned unwind_size, stub_unwind_size, total_size;
448 unsigned index, unwind_entries;
449 unsigned stub_entries, total_entries;
450 CORE_ADDR text_offset;
451 struct hppa_unwind_info *ui;
452 struct hppa_objfile_private *obj_private;
453
454 text_offset = ANOFFSET (objfile->section_offsets, 0);
455 ui = (struct hppa_unwind_info *) obstack_alloc (&objfile->objfile_obstack,
456 sizeof (struct hppa_unwind_info));
457
458 ui->table = NULL;
459 ui->cache = NULL;
460 ui->last = -1;
461
462 /* For reasons unknown the HP PA64 tools generate multiple unwinder
463 sections in a single executable. So we just iterate over every
464 section in the BFD looking for unwinder sections intead of trying
465 to do a lookup with bfd_get_section_by_name.
466
467 First determine the total size of the unwind tables so that we
468 can allocate memory in a nice big hunk. */
469 total_entries = 0;
470 for (unwind_sec = objfile->obfd->sections;
471 unwind_sec;
472 unwind_sec = unwind_sec->next)
473 {
474 if (strcmp (unwind_sec->name, "$UNWIND_START$") == 0
475 || strcmp (unwind_sec->name, ".PARISC.unwind") == 0)
476 {
477 unwind_size = bfd_section_size (objfile->obfd, unwind_sec);
478 unwind_entries = unwind_size / UNWIND_ENTRY_SIZE;
479
480 total_entries += unwind_entries;
481 }
482 }
483
484 /* Now compute the size of the stub unwinds. Note the ELF tools do not
485 use stub unwinds at the curren time. */
486 stub_unwind_sec = bfd_get_section_by_name (objfile->obfd, "$UNWIND_END$");
487
488 if (stub_unwind_sec)
489 {
490 stub_unwind_size = bfd_section_size (objfile->obfd, stub_unwind_sec);
491 stub_entries = stub_unwind_size / STUB_UNWIND_ENTRY_SIZE;
492 }
493 else
494 {
495 stub_unwind_size = 0;
496 stub_entries = 0;
497 }
498
499 /* Compute total number of unwind entries and their total size. */
500 total_entries += stub_entries;
501 total_size = total_entries * sizeof (struct unwind_table_entry);
502
503 /* Allocate memory for the unwind table. */
504 ui->table = (struct unwind_table_entry *)
505 obstack_alloc (&objfile->objfile_obstack, total_size);
506 ui->last = total_entries - 1;
507
508 /* Now read in each unwind section and internalize the standard unwind
509 entries. */
510 index = 0;
511 for (unwind_sec = objfile->obfd->sections;
512 unwind_sec;
513 unwind_sec = unwind_sec->next)
514 {
515 if (strcmp (unwind_sec->name, "$UNWIND_START$") == 0
516 || strcmp (unwind_sec->name, ".PARISC.unwind") == 0)
517 {
518 unwind_size = bfd_section_size (objfile->obfd, unwind_sec);
519 unwind_entries = unwind_size / UNWIND_ENTRY_SIZE;
520
521 internalize_unwinds (objfile, &ui->table[index], unwind_sec,
522 unwind_entries, unwind_size, text_offset);
523 index += unwind_entries;
524 }
525 }
526
527 /* Now read in and internalize the stub unwind entries. */
528 if (stub_unwind_size > 0)
529 {
530 unsigned int i;
531 char *buf = alloca (stub_unwind_size);
532
533 /* Read in the stub unwind entries. */
534 bfd_get_section_contents (objfile->obfd, stub_unwind_sec, buf,
535 0, stub_unwind_size);
536
537 /* Now convert them into regular unwind entries. */
538 for (i = 0; i < stub_entries; i++, index++)
539 {
540 /* Clear out the next unwind entry. */
541 memset (&ui->table[index], 0, sizeof (struct unwind_table_entry));
542
543 /* Convert offset & size into region_start and region_end.
544 Stuff away the stub type into "reserved" fields. */
545 ui->table[index].region_start = bfd_get_32 (objfile->obfd,
546 (bfd_byte *) buf);
547 ui->table[index].region_start += text_offset;
548 buf += 4;
549 ui->table[index].stub_unwind.stub_type = bfd_get_8 (objfile->obfd,
550 (bfd_byte *) buf);
551 buf += 2;
552 ui->table[index].region_end
553 = ui->table[index].region_start + 4 *
554 (bfd_get_16 (objfile->obfd, (bfd_byte *) buf) - 1);
555 buf += 2;
556 }
557
558 }
559
560 /* Unwind table needs to be kept sorted. */
561 qsort (ui->table, total_entries, sizeof (struct unwind_table_entry),
562 compare_unwind_entries);
563
564 /* Keep a pointer to the unwind information. */
565 obj_private = (struct hppa_objfile_private *)
566 objfile_data (objfile, hppa_objfile_priv_data);
567 if (obj_private == NULL)
568 {
569 obj_private = (struct hppa_objfile_private *)
570 obstack_alloc (&objfile->objfile_obstack,
571 sizeof (struct hppa_objfile_private));
572 set_objfile_data (objfile, hppa_objfile_priv_data, obj_private);
573 obj_private->unwind_info = NULL;
574 obj_private->so_info = NULL;
575 obj_private->dp = 0;
576 }
577 obj_private->unwind_info = ui;
578 }
579
580 /* Lookup the unwind (stack backtrace) info for the given PC. We search all
581 of the objfiles seeking the unwind table entry for this PC. Each objfile
582 contains a sorted list of struct unwind_table_entry. Since we do a binary
583 search of the unwind tables, we depend upon them to be sorted. */
584
585 struct unwind_table_entry *
586 find_unwind_entry (CORE_ADDR pc)
587 {
588 int first, middle, last;
589 struct objfile *objfile;
590 struct hppa_objfile_private *priv;
591
592 if (hppa_debug)
593 fprintf_unfiltered (gdb_stdlog, "{ find_unwind_entry 0x%s -> ",
594 paddr_nz (pc));
595
596 /* A function at address 0? Not in HP-UX! */
597 if (pc == (CORE_ADDR) 0)
598 {
599 if (hppa_debug)
600 fprintf_unfiltered (gdb_stdlog, "NULL }\n");
601 return NULL;
602 }
603
604 ALL_OBJFILES (objfile)
605 {
606 struct hppa_unwind_info *ui;
607 ui = NULL;
608 priv = objfile_data (objfile, hppa_objfile_priv_data);
609 if (priv)
610 ui = ((struct hppa_objfile_private *) priv)->unwind_info;
611
612 if (!ui)
613 {
614 read_unwind_info (objfile);
615 priv = objfile_data (objfile, hppa_objfile_priv_data);
616 if (priv == NULL)
617 error ("Internal error reading unwind information.");
618 ui = ((struct hppa_objfile_private *) priv)->unwind_info;
619 }
620
621 /* First, check the cache */
622
623 if (ui->cache
624 && pc >= ui->cache->region_start
625 && pc <= ui->cache->region_end)
626 {
627 if (hppa_debug)
628 fprintf_unfiltered (gdb_stdlog, "0x%s (cached) }\n",
629 paddr_nz ((CORE_ADDR) ui->cache));
630 return ui->cache;
631 }
632
633 /* Not in the cache, do a binary search */
634
635 first = 0;
636 last = ui->last;
637
638 while (first <= last)
639 {
640 middle = (first + last) / 2;
641 if (pc >= ui->table[middle].region_start
642 && pc <= ui->table[middle].region_end)
643 {
644 ui->cache = &ui->table[middle];
645 if (hppa_debug)
646 fprintf_unfiltered (gdb_stdlog, "0x%s }\n",
647 paddr_nz ((CORE_ADDR) ui->cache));
648 return &ui->table[middle];
649 }
650
651 if (pc < ui->table[middle].region_start)
652 last = middle - 1;
653 else
654 first = middle + 1;
655 }
656 } /* ALL_OBJFILES() */
657
658 if (hppa_debug)
659 fprintf_unfiltered (gdb_stdlog, "NULL (not found) }\n");
660
661 return NULL;
662 }
663
664 static const unsigned char *
665 hppa_breakpoint_from_pc (CORE_ADDR *pc, int *len)
666 {
667 static const unsigned char breakpoint[] = {0x00, 0x01, 0x00, 0x04};
668 (*len) = sizeof (breakpoint);
669 return breakpoint;
670 }
671
672 /* Return the name of a register. */
673
674 const char *
675 hppa32_register_name (int i)
676 {
677 static char *names[] = {
678 "flags", "r1", "rp", "r3",
679 "r4", "r5", "r6", "r7",
680 "r8", "r9", "r10", "r11",
681 "r12", "r13", "r14", "r15",
682 "r16", "r17", "r18", "r19",
683 "r20", "r21", "r22", "r23",
684 "r24", "r25", "r26", "dp",
685 "ret0", "ret1", "sp", "r31",
686 "sar", "pcoqh", "pcsqh", "pcoqt",
687 "pcsqt", "eiem", "iir", "isr",
688 "ior", "ipsw", "goto", "sr4",
689 "sr0", "sr1", "sr2", "sr3",
690 "sr5", "sr6", "sr7", "cr0",
691 "cr8", "cr9", "ccr", "cr12",
692 "cr13", "cr24", "cr25", "cr26",
693 "mpsfu_high","mpsfu_low","mpsfu_ovflo","pad",
694 "fpsr", "fpe1", "fpe2", "fpe3",
695 "fpe4", "fpe5", "fpe6", "fpe7",
696 "fr4", "fr4R", "fr5", "fr5R",
697 "fr6", "fr6R", "fr7", "fr7R",
698 "fr8", "fr8R", "fr9", "fr9R",
699 "fr10", "fr10R", "fr11", "fr11R",
700 "fr12", "fr12R", "fr13", "fr13R",
701 "fr14", "fr14R", "fr15", "fr15R",
702 "fr16", "fr16R", "fr17", "fr17R",
703 "fr18", "fr18R", "fr19", "fr19R",
704 "fr20", "fr20R", "fr21", "fr21R",
705 "fr22", "fr22R", "fr23", "fr23R",
706 "fr24", "fr24R", "fr25", "fr25R",
707 "fr26", "fr26R", "fr27", "fr27R",
708 "fr28", "fr28R", "fr29", "fr29R",
709 "fr30", "fr30R", "fr31", "fr31R"
710 };
711 if (i < 0 || i >= (sizeof (names) / sizeof (*names)))
712 return NULL;
713 else
714 return names[i];
715 }
716
717 const char *
718 hppa64_register_name (int i)
719 {
720 static char *names[] = {
721 "flags", "r1", "rp", "r3",
722 "r4", "r5", "r6", "r7",
723 "r8", "r9", "r10", "r11",
724 "r12", "r13", "r14", "r15",
725 "r16", "r17", "r18", "r19",
726 "r20", "r21", "r22", "r23",
727 "r24", "r25", "r26", "dp",
728 "ret0", "ret1", "sp", "r31",
729 "sar", "pcoqh", "pcsqh", "pcoqt",
730 "pcsqt", "eiem", "iir", "isr",
731 "ior", "ipsw", "goto", "sr4",
732 "sr0", "sr1", "sr2", "sr3",
733 "sr5", "sr6", "sr7", "cr0",
734 "cr8", "cr9", "ccr", "cr12",
735 "cr13", "cr24", "cr25", "cr26",
736 "mpsfu_high","mpsfu_low","mpsfu_ovflo","pad",
737 "fpsr", "fpe1", "fpe2", "fpe3",
738 "fr4", "fr5", "fr6", "fr7",
739 "fr8", "fr9", "fr10", "fr11",
740 "fr12", "fr13", "fr14", "fr15",
741 "fr16", "fr17", "fr18", "fr19",
742 "fr20", "fr21", "fr22", "fr23",
743 "fr24", "fr25", "fr26", "fr27",
744 "fr28", "fr29", "fr30", "fr31"
745 };
746 if (i < 0 || i >= (sizeof (names) / sizeof (*names)))
747 return NULL;
748 else
749 return names[i];
750 }
751
752 /* This function pushes a stack frame with arguments as part of the
753 inferior function calling mechanism.
754
755 This is the version of the function for the 32-bit PA machines, in
756 which later arguments appear at lower addresses. (The stack always
757 grows towards higher addresses.)
758
759 We simply allocate the appropriate amount of stack space and put
760 arguments into their proper slots. */
761
762 CORE_ADDR
763 hppa32_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
764 struct regcache *regcache, CORE_ADDR bp_addr,
765 int nargs, struct value **args, CORE_ADDR sp,
766 int struct_return, CORE_ADDR struct_addr)
767 {
768 /* NOTE: cagney/2004-02-27: This is a guess - its implemented by
769 reverse engineering testsuite failures. */
770
771 /* Stack base address at which any pass-by-reference parameters are
772 stored. */
773 CORE_ADDR struct_end = 0;
774 /* Stack base address at which the first parameter is stored. */
775 CORE_ADDR param_end = 0;
776
777 /* The inner most end of the stack after all the parameters have
778 been pushed. */
779 CORE_ADDR new_sp = 0;
780
781 /* Two passes. First pass computes the location of everything,
782 second pass writes the bytes out. */
783 int write_pass;
784 for (write_pass = 0; write_pass < 2; write_pass++)
785 {
786 CORE_ADDR struct_ptr = 0;
787 CORE_ADDR param_ptr = 0;
788 int reg = 27; /* NOTE: Registers go down. */
789 int i;
790 for (i = 0; i < nargs; i++)
791 {
792 struct value *arg = args[i];
793 struct type *type = check_typedef (VALUE_TYPE (arg));
794 /* The corresponding parameter that is pushed onto the
795 stack, and [possibly] passed in a register. */
796 char param_val[8];
797 int param_len;
798 memset (param_val, 0, sizeof param_val);
799 if (TYPE_LENGTH (type) > 8)
800 {
801 /* Large parameter, pass by reference. Store the value
802 in "struct" area and then pass its address. */
803 param_len = 4;
804 struct_ptr += align_up (TYPE_LENGTH (type), 8);
805 if (write_pass)
806 write_memory (struct_end - struct_ptr, VALUE_CONTENTS (arg),
807 TYPE_LENGTH (type));
808 store_unsigned_integer (param_val, 4, struct_end - struct_ptr);
809 }
810 else if (TYPE_CODE (type) == TYPE_CODE_INT
811 || TYPE_CODE (type) == TYPE_CODE_ENUM)
812 {
813 /* Integer value store, right aligned. "unpack_long"
814 takes care of any sign-extension problems. */
815 param_len = align_up (TYPE_LENGTH (type), 4);
816 store_unsigned_integer (param_val, param_len,
817 unpack_long (type,
818 VALUE_CONTENTS (arg)));
819 }
820 else
821 {
822 /* Small struct value, store right aligned? */
823 param_len = align_up (TYPE_LENGTH (type), 4);
824 memcpy (param_val + param_len - TYPE_LENGTH (type),
825 VALUE_CONTENTS (arg), TYPE_LENGTH (type));
826 }
827 param_ptr += param_len;
828 reg -= param_len / 4;
829 if (write_pass)
830 {
831 write_memory (param_end - param_ptr, param_val, param_len);
832 if (reg >= 23)
833 {
834 regcache_cooked_write (regcache, reg, param_val);
835 if (param_len > 4)
836 regcache_cooked_write (regcache, reg + 1, param_val + 4);
837 }
838 }
839 }
840
841 /* Update the various stack pointers. */
842 if (!write_pass)
843 {
844 struct_end = sp + struct_ptr;
845 /* PARAM_PTR already accounts for all the arguments passed
846 by the user. However, the ABI mandates minimum stack
847 space allocations for outgoing arguments. The ABI also
848 mandates minimum stack alignments which we must
849 preserve. */
850 param_end = struct_end + max (align_up (param_ptr, 8), 16);
851 }
852 }
853
854 /* If a structure has to be returned, set up register 28 to hold its
855 address */
856 if (struct_return)
857 write_register (28, struct_addr);
858
859 /* Set the return address. */
860 regcache_cooked_write_unsigned (regcache, RP_REGNUM, bp_addr);
861
862 /* Update the Stack Pointer. */
863 regcache_cooked_write_unsigned (regcache, SP_REGNUM, param_end + 32);
864
865 /* The stack will have 32 bytes of additional space for a frame marker. */
866 return param_end + 32;
867 }
868
869 /* This function pushes a stack frame with arguments as part of the
870 inferior function calling mechanism.
871
872 This is the version for the PA64, in which later arguments appear
873 at higher addresses. (The stack always grows towards higher
874 addresses.)
875
876 We simply allocate the appropriate amount of stack space and put
877 arguments into their proper slots.
878
879 This ABI also requires that the caller provide an argument pointer
880 to the callee, so we do that too. */
881
882 CORE_ADDR
883 hppa64_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
884 struct regcache *regcache, CORE_ADDR bp_addr,
885 int nargs, struct value **args, CORE_ADDR sp,
886 int struct_return, CORE_ADDR struct_addr)
887 {
888 /* NOTE: cagney/2004-02-27: This is a guess - its implemented by
889 reverse engineering testsuite failures. */
890
891 /* Stack base address at which any pass-by-reference parameters are
892 stored. */
893 CORE_ADDR struct_end = 0;
894 /* Stack base address at which the first parameter is stored. */
895 CORE_ADDR param_end = 0;
896
897 /* The inner most end of the stack after all the parameters have
898 been pushed. */
899 CORE_ADDR new_sp = 0;
900
901 /* Two passes. First pass computes the location of everything,
902 second pass writes the bytes out. */
903 int write_pass;
904 for (write_pass = 0; write_pass < 2; write_pass++)
905 {
906 CORE_ADDR struct_ptr = 0;
907 CORE_ADDR param_ptr = 0;
908 int i;
909 for (i = 0; i < nargs; i++)
910 {
911 struct value *arg = args[i];
912 struct type *type = check_typedef (VALUE_TYPE (arg));
913 if ((TYPE_CODE (type) == TYPE_CODE_INT
914 || TYPE_CODE (type) == TYPE_CODE_ENUM)
915 && TYPE_LENGTH (type) <= 8)
916 {
917 /* Integer value store, right aligned. "unpack_long"
918 takes care of any sign-extension problems. */
919 param_ptr += 8;
920 if (write_pass)
921 {
922 ULONGEST val = unpack_long (type, VALUE_CONTENTS (arg));
923 int reg = 27 - param_ptr / 8;
924 write_memory_unsigned_integer (param_end - param_ptr,
925 val, 8);
926 if (reg >= 19)
927 regcache_cooked_write_unsigned (regcache, reg, val);
928 }
929 }
930 else
931 {
932 /* Small struct value, store left aligned? */
933 int reg;
934 if (TYPE_LENGTH (type) > 8)
935 {
936 param_ptr = align_up (param_ptr, 16);
937 reg = 26 - param_ptr / 8;
938 param_ptr += align_up (TYPE_LENGTH (type), 16);
939 }
940 else
941 {
942 param_ptr = align_up (param_ptr, 8);
943 reg = 26 - param_ptr / 8;
944 param_ptr += align_up (TYPE_LENGTH (type), 8);
945 }
946 if (write_pass)
947 {
948 int byte;
949 write_memory (param_end - param_ptr, VALUE_CONTENTS (arg),
950 TYPE_LENGTH (type));
951 for (byte = 0; byte < TYPE_LENGTH (type); byte += 8)
952 {
953 if (reg >= 19)
954 {
955 int len = min (8, TYPE_LENGTH (type) - byte);
956 regcache_cooked_write_part (regcache, reg, 0, len,
957 VALUE_CONTENTS (arg) + byte);
958 }
959 reg--;
960 }
961 }
962 }
963 }
964 /* Update the various stack pointers. */
965 if (!write_pass)
966 {
967 struct_end = sp + struct_ptr;
968 /* PARAM_PTR already accounts for all the arguments passed
969 by the user. However, the ABI mandates minimum stack
970 space allocations for outgoing arguments. The ABI also
971 mandates minimum stack alignments which we must
972 preserve. */
973 param_end = struct_end + max (align_up (param_ptr, 16), 64);
974 }
975 }
976
977 /* If a structure has to be returned, set up register 28 to hold its
978 address */
979 if (struct_return)
980 write_register (28, struct_addr);
981
982 /* Set the return address. */
983 regcache_cooked_write_unsigned (regcache, RP_REGNUM, bp_addr);
984
985 /* Update the Stack Pointer. */
986 regcache_cooked_write_unsigned (regcache, SP_REGNUM, param_end + 64);
987
988 /* The stack will have 32 bytes of additional space for a frame marker. */
989 return param_end + 64;
990 }
991
992 static CORE_ADDR
993 hppa32_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
994 {
995 /* HP frames are 64-byte (or cache line) aligned (yes that's _byte_
996 and not _bit_)! */
997 return align_up (addr, 64);
998 }
999
1000 /* Force all frames to 16-byte alignment. Better safe than sorry. */
1001
1002 static CORE_ADDR
1003 hppa64_frame_align (struct gdbarch *gdbarch, CORE_ADDR addr)
1004 {
1005 /* Just always 16-byte align. */
1006 return align_up (addr, 16);
1007 }
1008
1009
1010 /* Get the PC from %r31 if currently in a syscall. Also mask out privilege
1011 bits. */
1012
1013 static CORE_ADDR
1014 hppa_target_read_pc (ptid_t ptid)
1015 {
1016 int flags = read_register_pid (FLAGS_REGNUM, ptid);
1017
1018 /* The following test does not belong here. It is OS-specific, and belongs
1019 in native code. */
1020 /* Test SS_INSYSCALL */
1021 if (flags & 2)
1022 return read_register_pid (31, ptid) & ~0x3;
1023
1024 return read_register_pid (PCOQ_HEAD_REGNUM, ptid) & ~0x3;
1025 }
1026
1027 /* Write out the PC. If currently in a syscall, then also write the new
1028 PC value into %r31. */
1029
1030 static void
1031 hppa_target_write_pc (CORE_ADDR v, ptid_t ptid)
1032 {
1033 int flags = read_register_pid (FLAGS_REGNUM, ptid);
1034
1035 /* The following test does not belong here. It is OS-specific, and belongs
1036 in native code. */
1037 /* If in a syscall, then set %r31. Also make sure to get the
1038 privilege bits set correctly. */
1039 /* Test SS_INSYSCALL */
1040 if (flags & 2)
1041 write_register_pid (31, v | 0x3, ptid);
1042
1043 write_register_pid (PCOQ_HEAD_REGNUM, v, ptid);
1044 write_register_pid (PCOQ_TAIL_REGNUM, v + 4, ptid);
1045 }
1046
1047 /* return the alignment of a type in bytes. Structures have the maximum
1048 alignment required by their fields. */
1049
1050 static int
1051 hppa_alignof (struct type *type)
1052 {
1053 int max_align, align, i;
1054 CHECK_TYPEDEF (type);
1055 switch (TYPE_CODE (type))
1056 {
1057 case TYPE_CODE_PTR:
1058 case TYPE_CODE_INT:
1059 case TYPE_CODE_FLT:
1060 return TYPE_LENGTH (type);
1061 case TYPE_CODE_ARRAY:
1062 return hppa_alignof (TYPE_FIELD_TYPE (type, 0));
1063 case TYPE_CODE_STRUCT:
1064 case TYPE_CODE_UNION:
1065 max_align = 1;
1066 for (i = 0; i < TYPE_NFIELDS (type); i++)
1067 {
1068 /* Bit fields have no real alignment. */
1069 /* if (!TYPE_FIELD_BITPOS (type, i)) */
1070 if (!TYPE_FIELD_BITSIZE (type, i)) /* elz: this should be bitsize */
1071 {
1072 align = hppa_alignof (TYPE_FIELD_TYPE (type, i));
1073 max_align = max (max_align, align);
1074 }
1075 }
1076 return max_align;
1077 default:
1078 return 4;
1079 }
1080 }
1081
1082 /* For the given instruction (INST), return any adjustment it makes
1083 to the stack pointer or zero for no adjustment.
1084
1085 This only handles instructions commonly found in prologues. */
1086
1087 static int
1088 prologue_inst_adjust_sp (unsigned long inst)
1089 {
1090 /* This must persist across calls. */
1091 static int save_high21;
1092
1093 /* The most common way to perform a stack adjustment ldo X(sp),sp */
1094 if ((inst & 0xffffc000) == 0x37de0000)
1095 return hppa_extract_14 (inst);
1096
1097 /* stwm X,D(sp) */
1098 if ((inst & 0xffe00000) == 0x6fc00000)
1099 return hppa_extract_14 (inst);
1100
1101 /* std,ma X,D(sp) */
1102 if ((inst & 0xffe00008) == 0x73c00008)
1103 return (inst & 0x1 ? -1 << 13 : 0) | (((inst >> 4) & 0x3ff) << 3);
1104
1105 /* addil high21,%r1; ldo low11,(%r1),%r30)
1106 save high bits in save_high21 for later use. */
1107 if ((inst & 0xffe00000) == 0x28200000)
1108 {
1109 save_high21 = hppa_extract_21 (inst);
1110 return 0;
1111 }
1112
1113 if ((inst & 0xffff0000) == 0x343e0000)
1114 return save_high21 + hppa_extract_14 (inst);
1115
1116 /* fstws as used by the HP compilers. */
1117 if ((inst & 0xffffffe0) == 0x2fd01220)
1118 return hppa_extract_5_load (inst);
1119
1120 /* No adjustment. */
1121 return 0;
1122 }
1123
1124 /* Return nonzero if INST is a branch of some kind, else return zero. */
1125
1126 static int
1127 is_branch (unsigned long inst)
1128 {
1129 switch (inst >> 26)
1130 {
1131 case 0x20:
1132 case 0x21:
1133 case 0x22:
1134 case 0x23:
1135 case 0x27:
1136 case 0x28:
1137 case 0x29:
1138 case 0x2a:
1139 case 0x2b:
1140 case 0x2f:
1141 case 0x30:
1142 case 0x31:
1143 case 0x32:
1144 case 0x33:
1145 case 0x38:
1146 case 0x39:
1147 case 0x3a:
1148 case 0x3b:
1149 return 1;
1150
1151 default:
1152 return 0;
1153 }
1154 }
1155
1156 /* Return the register number for a GR which is saved by INST or
1157 zero it INST does not save a GR. */
1158
1159 static int
1160 inst_saves_gr (unsigned long inst)
1161 {
1162 /* Does it look like a stw? */
1163 if ((inst >> 26) == 0x1a || (inst >> 26) == 0x1b
1164 || (inst >> 26) == 0x1f
1165 || ((inst >> 26) == 0x1f
1166 && ((inst >> 6) == 0xa)))
1167 return hppa_extract_5R_store (inst);
1168
1169 /* Does it look like a std? */
1170 if ((inst >> 26) == 0x1c
1171 || ((inst >> 26) == 0x03
1172 && ((inst >> 6) & 0xf) == 0xb))
1173 return hppa_extract_5R_store (inst);
1174
1175 /* Does it look like a stwm? GCC & HPC may use this in prologues. */
1176 if ((inst >> 26) == 0x1b)
1177 return hppa_extract_5R_store (inst);
1178
1179 /* Does it look like sth or stb? HPC versions 9.0 and later use these
1180 too. */
1181 if ((inst >> 26) == 0x19 || (inst >> 26) == 0x18
1182 || ((inst >> 26) == 0x3
1183 && (((inst >> 6) & 0xf) == 0x8
1184 || (inst >> 6) & 0xf) == 0x9))
1185 return hppa_extract_5R_store (inst);
1186
1187 return 0;
1188 }
1189
1190 /* Return the register number for a FR which is saved by INST or
1191 zero it INST does not save a FR.
1192
1193 Note we only care about full 64bit register stores (that's the only
1194 kind of stores the prologue will use).
1195
1196 FIXME: What about argument stores with the HP compiler in ANSI mode? */
1197
1198 static int
1199 inst_saves_fr (unsigned long inst)
1200 {
1201 /* is this an FSTD ? */
1202 if ((inst & 0xfc00dfc0) == 0x2c001200)
1203 return hppa_extract_5r_store (inst);
1204 if ((inst & 0xfc000002) == 0x70000002)
1205 return hppa_extract_5R_store (inst);
1206 /* is this an FSTW ? */
1207 if ((inst & 0xfc00df80) == 0x24001200)
1208 return hppa_extract_5r_store (inst);
1209 if ((inst & 0xfc000002) == 0x7c000000)
1210 return hppa_extract_5R_store (inst);
1211 return 0;
1212 }
1213
1214 /* Advance PC across any function entry prologue instructions
1215 to reach some "real" code.
1216
1217 Use information in the unwind table to determine what exactly should
1218 be in the prologue. */
1219
1220
1221 CORE_ADDR
1222 skip_prologue_hard_way (CORE_ADDR pc)
1223 {
1224 char buf[4];
1225 CORE_ADDR orig_pc = pc;
1226 unsigned long inst, stack_remaining, save_gr, save_fr, save_rp, save_sp;
1227 unsigned long args_stored, status, i, restart_gr, restart_fr;
1228 struct unwind_table_entry *u;
1229
1230 restart_gr = 0;
1231 restart_fr = 0;
1232
1233 restart:
1234 u = find_unwind_entry (pc);
1235 if (!u)
1236 return pc;
1237
1238 /* If we are not at the beginning of a function, then return now. */
1239 if ((pc & ~0x3) != u->region_start)
1240 return pc;
1241
1242 /* This is how much of a frame adjustment we need to account for. */
1243 stack_remaining = u->Total_frame_size << 3;
1244
1245 /* Magic register saves we want to know about. */
1246 save_rp = u->Save_RP;
1247 save_sp = u->Save_SP;
1248
1249 /* An indication that args may be stored into the stack. Unfortunately
1250 the HPUX compilers tend to set this in cases where no args were
1251 stored too!. */
1252 args_stored = 1;
1253
1254 /* Turn the Entry_GR field into a bitmask. */
1255 save_gr = 0;
1256 for (i = 3; i < u->Entry_GR + 3; i++)
1257 {
1258 /* Frame pointer gets saved into a special location. */
1259 if (u->Save_SP && i == HPPA_FP_REGNUM)
1260 continue;
1261
1262 save_gr |= (1 << i);
1263 }
1264 save_gr &= ~restart_gr;
1265
1266 /* Turn the Entry_FR field into a bitmask too. */
1267 save_fr = 0;
1268 for (i = 12; i < u->Entry_FR + 12; i++)
1269 save_fr |= (1 << i);
1270 save_fr &= ~restart_fr;
1271
1272 /* Loop until we find everything of interest or hit a branch.
1273
1274 For unoptimized GCC code and for any HP CC code this will never ever
1275 examine any user instructions.
1276
1277 For optimzied GCC code we're faced with problems. GCC will schedule
1278 its prologue and make prologue instructions available for delay slot
1279 filling. The end result is user code gets mixed in with the prologue
1280 and a prologue instruction may be in the delay slot of the first branch
1281 or call.
1282
1283 Some unexpected things are expected with debugging optimized code, so
1284 we allow this routine to walk past user instructions in optimized
1285 GCC code. */
1286 while (save_gr || save_fr || save_rp || save_sp || stack_remaining > 0
1287 || args_stored)
1288 {
1289 unsigned int reg_num;
1290 unsigned long old_stack_remaining, old_save_gr, old_save_fr;
1291 unsigned long old_save_rp, old_save_sp, next_inst;
1292
1293 /* Save copies of all the triggers so we can compare them later
1294 (only for HPC). */
1295 old_save_gr = save_gr;
1296 old_save_fr = save_fr;
1297 old_save_rp = save_rp;
1298 old_save_sp = save_sp;
1299 old_stack_remaining = stack_remaining;
1300
1301 status = target_read_memory (pc, buf, 4);
1302 inst = extract_unsigned_integer (buf, 4);
1303
1304 /* Yow! */
1305 if (status != 0)
1306 return pc;
1307
1308 /* Note the interesting effects of this instruction. */
1309 stack_remaining -= prologue_inst_adjust_sp (inst);
1310
1311 /* There are limited ways to store the return pointer into the
1312 stack. */
1313 if (inst == 0x6bc23fd9 || inst == 0x0fc212c1)
1314 save_rp = 0;
1315
1316 /* These are the only ways we save SP into the stack. At this time
1317 the HP compilers never bother to save SP into the stack. */
1318 if ((inst & 0xffffc000) == 0x6fc10000
1319 || (inst & 0xffffc00c) == 0x73c10008)
1320 save_sp = 0;
1321
1322 /* Are we loading some register with an offset from the argument
1323 pointer? */
1324 if ((inst & 0xffe00000) == 0x37a00000
1325 || (inst & 0xffffffe0) == 0x081d0240)
1326 {
1327 pc += 4;
1328 continue;
1329 }
1330
1331 /* Account for general and floating-point register saves. */
1332 reg_num = inst_saves_gr (inst);
1333 save_gr &= ~(1 << reg_num);
1334
1335 /* Ugh. Also account for argument stores into the stack.
1336 Unfortunately args_stored only tells us that some arguments
1337 where stored into the stack. Not how many or what kind!
1338
1339 This is a kludge as on the HP compiler sets this bit and it
1340 never does prologue scheduling. So once we see one, skip past
1341 all of them. We have similar code for the fp arg stores below.
1342
1343 FIXME. Can still die if we have a mix of GR and FR argument
1344 stores! */
1345 if (reg_num >= (TARGET_PTR_BIT == 64 ? 19 : 23) && reg_num <= 26)
1346 {
1347 while (reg_num >= (TARGET_PTR_BIT == 64 ? 19 : 23) && reg_num <= 26)
1348 {
1349 pc += 4;
1350 status = target_read_memory (pc, buf, 4);
1351 inst = extract_unsigned_integer (buf, 4);
1352 if (status != 0)
1353 return pc;
1354 reg_num = inst_saves_gr (inst);
1355 }
1356 args_stored = 0;
1357 continue;
1358 }
1359
1360 reg_num = inst_saves_fr (inst);
1361 save_fr &= ~(1 << reg_num);
1362
1363 status = target_read_memory (pc + 4, buf, 4);
1364 next_inst = extract_unsigned_integer (buf, 4);
1365
1366 /* Yow! */
1367 if (status != 0)
1368 return pc;
1369
1370 /* We've got to be read to handle the ldo before the fp register
1371 save. */
1372 if ((inst & 0xfc000000) == 0x34000000
1373 && inst_saves_fr (next_inst) >= 4
1374 && inst_saves_fr (next_inst) <= (TARGET_PTR_BIT == 64 ? 11 : 7))
1375 {
1376 /* So we drop into the code below in a reasonable state. */
1377 reg_num = inst_saves_fr (next_inst);
1378 pc -= 4;
1379 }
1380
1381 /* Ugh. Also account for argument stores into the stack.
1382 This is a kludge as on the HP compiler sets this bit and it
1383 never does prologue scheduling. So once we see one, skip past
1384 all of them. */
1385 if (reg_num >= 4 && reg_num <= (TARGET_PTR_BIT == 64 ? 11 : 7))
1386 {
1387 while (reg_num >= 4 && reg_num <= (TARGET_PTR_BIT == 64 ? 11 : 7))
1388 {
1389 pc += 8;
1390 status = target_read_memory (pc, buf, 4);
1391 inst = extract_unsigned_integer (buf, 4);
1392 if (status != 0)
1393 return pc;
1394 if ((inst & 0xfc000000) != 0x34000000)
1395 break;
1396 status = target_read_memory (pc + 4, buf, 4);
1397 next_inst = extract_unsigned_integer (buf, 4);
1398 if (status != 0)
1399 return pc;
1400 reg_num = inst_saves_fr (next_inst);
1401 }
1402 args_stored = 0;
1403 continue;
1404 }
1405
1406 /* Quit if we hit any kind of branch. This can happen if a prologue
1407 instruction is in the delay slot of the first call/branch. */
1408 if (is_branch (inst))
1409 break;
1410
1411 /* What a crock. The HP compilers set args_stored even if no
1412 arguments were stored into the stack (boo hiss). This could
1413 cause this code to then skip a bunch of user insns (up to the
1414 first branch).
1415
1416 To combat this we try to identify when args_stored was bogusly
1417 set and clear it. We only do this when args_stored is nonzero,
1418 all other resources are accounted for, and nothing changed on
1419 this pass. */
1420 if (args_stored
1421 && !(save_gr || save_fr || save_rp || save_sp || stack_remaining > 0)
1422 && old_save_gr == save_gr && old_save_fr == save_fr
1423 && old_save_rp == save_rp && old_save_sp == save_sp
1424 && old_stack_remaining == stack_remaining)
1425 break;
1426
1427 /* Bump the PC. */
1428 pc += 4;
1429 }
1430
1431 /* We've got a tenative location for the end of the prologue. However
1432 because of limitations in the unwind descriptor mechanism we may
1433 have went too far into user code looking for the save of a register
1434 that does not exist. So, if there registers we expected to be saved
1435 but never were, mask them out and restart.
1436
1437 This should only happen in optimized code, and should be very rare. */
1438 if (save_gr || (save_fr && !(restart_fr || restart_gr)))
1439 {
1440 pc = orig_pc;
1441 restart_gr = save_gr;
1442 restart_fr = save_fr;
1443 goto restart;
1444 }
1445
1446 return pc;
1447 }
1448
1449
1450 /* Return the address of the PC after the last prologue instruction if
1451 we can determine it from the debug symbols. Else return zero. */
1452
1453 static CORE_ADDR
1454 after_prologue (CORE_ADDR pc)
1455 {
1456 struct symtab_and_line sal;
1457 CORE_ADDR func_addr, func_end;
1458 struct symbol *f;
1459
1460 /* If we can not find the symbol in the partial symbol table, then
1461 there is no hope we can determine the function's start address
1462 with this code. */
1463 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
1464 return 0;
1465
1466 /* Get the line associated with FUNC_ADDR. */
1467 sal = find_pc_line (func_addr, 0);
1468
1469 /* There are only two cases to consider. First, the end of the source line
1470 is within the function bounds. In that case we return the end of the
1471 source line. Second is the end of the source line extends beyond the
1472 bounds of the current function. We need to use the slow code to
1473 examine instructions in that case.
1474
1475 Anything else is simply a bug elsewhere. Fixing it here is absolutely
1476 the wrong thing to do. In fact, it should be entirely possible for this
1477 function to always return zero since the slow instruction scanning code
1478 is supposed to *always* work. If it does not, then it is a bug. */
1479 if (sal.end < func_end)
1480 return sal.end;
1481 else
1482 return 0;
1483 }
1484
1485 /* To skip prologues, I use this predicate. Returns either PC itself
1486 if the code at PC does not look like a function prologue; otherwise
1487 returns an address that (if we're lucky) follows the prologue. If
1488 LENIENT, then we must skip everything which is involved in setting
1489 up the frame (it's OK to skip more, just so long as we don't skip
1490 anything which might clobber the registers which are being saved.
1491 Currently we must not skip more on the alpha, but we might the lenient
1492 stuff some day. */
1493
1494 static CORE_ADDR
1495 hppa_skip_prologue (CORE_ADDR pc)
1496 {
1497 unsigned long inst;
1498 int offset;
1499 CORE_ADDR post_prologue_pc;
1500 char buf[4];
1501
1502 /* See if we can determine the end of the prologue via the symbol table.
1503 If so, then return either PC, or the PC after the prologue, whichever
1504 is greater. */
1505
1506 post_prologue_pc = after_prologue (pc);
1507
1508 /* If after_prologue returned a useful address, then use it. Else
1509 fall back on the instruction skipping code.
1510
1511 Some folks have claimed this causes problems because the breakpoint
1512 may be the first instruction of the prologue. If that happens, then
1513 the instruction skipping code has a bug that needs to be fixed. */
1514 if (post_prologue_pc != 0)
1515 return max (pc, post_prologue_pc);
1516 else
1517 return (skip_prologue_hard_way (pc));
1518 }
1519
1520 struct hppa_frame_cache
1521 {
1522 CORE_ADDR base;
1523 struct trad_frame_saved_reg *saved_regs;
1524 };
1525
1526 static struct hppa_frame_cache *
1527 hppa_frame_cache (struct frame_info *next_frame, void **this_cache)
1528 {
1529 struct hppa_frame_cache *cache;
1530 long saved_gr_mask;
1531 long saved_fr_mask;
1532 CORE_ADDR this_sp;
1533 long frame_size;
1534 struct unwind_table_entry *u;
1535 int i;
1536
1537 if (hppa_debug)
1538 fprintf_unfiltered (gdb_stdlog, "{ hppa_frame_cache (frame=%d) -> ",
1539 frame_relative_level(next_frame));
1540
1541 if ((*this_cache) != NULL)
1542 {
1543 if (hppa_debug)
1544 fprintf_unfiltered (gdb_stdlog, "base=0x%s (cached) }",
1545 paddr_nz (((struct hppa_frame_cache *)*this_cache)->base));
1546 return (*this_cache);
1547 }
1548 cache = FRAME_OBSTACK_ZALLOC (struct hppa_frame_cache);
1549 (*this_cache) = cache;
1550 cache->saved_regs = trad_frame_alloc_saved_regs (next_frame);
1551
1552 /* Yow! */
1553 u = find_unwind_entry (frame_func_unwind (next_frame));
1554 if (!u)
1555 {
1556 if (hppa_debug)
1557 fprintf_unfiltered (gdb_stdlog, "base=NULL (no unwind entry) }");
1558 return (*this_cache);
1559 }
1560
1561 /* Turn the Entry_GR field into a bitmask. */
1562 saved_gr_mask = 0;
1563 for (i = 3; i < u->Entry_GR + 3; i++)
1564 {
1565 /* Frame pointer gets saved into a special location. */
1566 if (u->Save_SP && i == HPPA_FP_REGNUM)
1567 continue;
1568
1569 saved_gr_mask |= (1 << i);
1570 }
1571
1572 /* Turn the Entry_FR field into a bitmask too. */
1573 saved_fr_mask = 0;
1574 for (i = 12; i < u->Entry_FR + 12; i++)
1575 saved_fr_mask |= (1 << i);
1576
1577 /* Loop until we find everything of interest or hit a branch.
1578
1579 For unoptimized GCC code and for any HP CC code this will never ever
1580 examine any user instructions.
1581
1582 For optimized GCC code we're faced with problems. GCC will schedule
1583 its prologue and make prologue instructions available for delay slot
1584 filling. The end result is user code gets mixed in with the prologue
1585 and a prologue instruction may be in the delay slot of the first branch
1586 or call.
1587
1588 Some unexpected things are expected with debugging optimized code, so
1589 we allow this routine to walk past user instructions in optimized
1590 GCC code. */
1591 {
1592 int final_iteration = 0;
1593 CORE_ADDR pc;
1594 CORE_ADDR end_pc;
1595 int looking_for_sp = u->Save_SP;
1596 int looking_for_rp = u->Save_RP;
1597 int fp_loc = -1;
1598 end_pc = skip_prologue_using_sal (frame_func_unwind (next_frame));
1599 if (end_pc == 0)
1600 end_pc = frame_pc_unwind (next_frame);
1601 frame_size = 0;
1602 for (pc = frame_func_unwind (next_frame);
1603 ((saved_gr_mask || saved_fr_mask
1604 || looking_for_sp || looking_for_rp
1605 || frame_size < (u->Total_frame_size << 3))
1606 && pc <= end_pc);
1607 pc += 4)
1608 {
1609 int reg;
1610 char buf4[4];
1611 long status = target_read_memory (pc, buf4, sizeof buf4);
1612 long inst = extract_unsigned_integer (buf4, sizeof buf4);
1613
1614 /* Note the interesting effects of this instruction. */
1615 frame_size += prologue_inst_adjust_sp (inst);
1616
1617 /* There are limited ways to store the return pointer into the
1618 stack. */
1619 if (inst == 0x6bc23fd9) /* stw rp,-0x14(sr0,sp) */
1620 {
1621 looking_for_rp = 0;
1622 cache->saved_regs[RP_REGNUM].addr = -20;
1623 }
1624 else if (inst == 0x0fc212c1) /* std rp,-0x10(sr0,sp) */
1625 {
1626 looking_for_rp = 0;
1627 cache->saved_regs[RP_REGNUM].addr = -16;
1628 }
1629
1630 /* Check to see if we saved SP into the stack. This also
1631 happens to indicate the location of the saved frame
1632 pointer. */
1633 if ((inst & 0xffffc000) == 0x6fc10000 /* stw,ma r1,N(sr0,sp) */
1634 || (inst & 0xffffc00c) == 0x73c10008) /* std,ma r1,N(sr0,sp) */
1635 {
1636 looking_for_sp = 0;
1637 cache->saved_regs[HPPA_FP_REGNUM].addr = 0;
1638 }
1639
1640 /* Account for general and floating-point register saves. */
1641 reg = inst_saves_gr (inst);
1642 if (reg >= 3 && reg <= 18
1643 && (!u->Save_SP || reg != HPPA_FP_REGNUM))
1644 {
1645 saved_gr_mask &= ~(1 << reg);
1646 if ((inst >> 26) == 0x1b && hppa_extract_14 (inst) >= 0)
1647 /* stwm with a positive displacement is a _post_
1648 _modify_. */
1649 cache->saved_regs[reg].addr = 0;
1650 else if ((inst & 0xfc00000c) == 0x70000008)
1651 /* A std has explicit post_modify forms. */
1652 cache->saved_regs[reg].addr = 0;
1653 else
1654 {
1655 CORE_ADDR offset;
1656
1657 if ((inst >> 26) == 0x1c)
1658 offset = (inst & 0x1 ? -1 << 13 : 0) | (((inst >> 4) & 0x3ff) << 3);
1659 else if ((inst >> 26) == 0x03)
1660 offset = hppa_low_hppa_sign_extend (inst & 0x1f, 5);
1661 else
1662 offset = hppa_extract_14 (inst);
1663
1664 /* Handle code with and without frame pointers. */
1665 if (u->Save_SP)
1666 cache->saved_regs[reg].addr = offset;
1667 else
1668 cache->saved_regs[reg].addr = (u->Total_frame_size << 3) + offset;
1669 }
1670 }
1671
1672 /* GCC handles callee saved FP regs a little differently.
1673
1674 It emits an instruction to put the value of the start of
1675 the FP store area into %r1. It then uses fstds,ma with a
1676 basereg of %r1 for the stores.
1677
1678 HP CC emits them at the current stack pointer modifying the
1679 stack pointer as it stores each register. */
1680
1681 /* ldo X(%r3),%r1 or ldo X(%r30),%r1. */
1682 if ((inst & 0xffffc000) == 0x34610000
1683 || (inst & 0xffffc000) == 0x37c10000)
1684 fp_loc = hppa_extract_14 (inst);
1685
1686 reg = inst_saves_fr (inst);
1687 if (reg >= 12 && reg <= 21)
1688 {
1689 /* Note +4 braindamage below is necessary because the FP
1690 status registers are internally 8 registers rather than
1691 the expected 4 registers. */
1692 saved_fr_mask &= ~(1 << reg);
1693 if (fp_loc == -1)
1694 {
1695 /* 1st HP CC FP register store. After this
1696 instruction we've set enough state that the GCC and
1697 HPCC code are both handled in the same manner. */
1698 cache->saved_regs[reg + FP4_REGNUM + 4].addr = 0;
1699 fp_loc = 8;
1700 }
1701 else
1702 {
1703 cache->saved_regs[reg + HPPA_FP0_REGNUM + 4].addr = fp_loc;
1704 fp_loc += 8;
1705 }
1706 }
1707
1708 /* Quit if we hit any kind of branch the previous iteration. */
1709 if (final_iteration)
1710 break;
1711 /* We want to look precisely one instruction beyond the branch
1712 if we have not found everything yet. */
1713 if (is_branch (inst))
1714 final_iteration = 1;
1715 }
1716 }
1717
1718 {
1719 /* The frame base always represents the value of %sp at entry to
1720 the current function (and is thus equivalent to the "saved"
1721 stack pointer. */
1722 CORE_ADDR this_sp = frame_unwind_register_unsigned (next_frame, HPPA_SP_REGNUM);
1723 /* FIXME: cagney/2004-02-22: This assumes that the frame has been
1724 created. If it hasn't everything will be out-of-wack. */
1725 if (u->Save_SP && trad_frame_addr_p (cache->saved_regs, HPPA_SP_REGNUM))
1726 /* Both we're expecting the SP to be saved and the SP has been
1727 saved. The entry SP value is saved at this frame's SP
1728 address. */
1729 cache->base = read_memory_integer (this_sp, TARGET_PTR_BIT / 8);
1730 else
1731 /* The prologue has been slowly allocating stack space. Adjust
1732 the SP back. */
1733 cache->base = this_sp - frame_size;
1734 trad_frame_set_value (cache->saved_regs, HPPA_SP_REGNUM, cache->base);
1735 }
1736
1737 /* The PC is found in the "return register", "Millicode" uses "r31"
1738 as the return register while normal code uses "rp". */
1739 if (u->Millicode)
1740 cache->saved_regs[PCOQ_HEAD_REGNUM] = cache->saved_regs[31];
1741 else
1742 cache->saved_regs[PCOQ_HEAD_REGNUM] = cache->saved_regs[RP_REGNUM];
1743
1744 {
1745 /* Convert all the offsets into addresses. */
1746 int reg;
1747 for (reg = 0; reg < NUM_REGS; reg++)
1748 {
1749 if (trad_frame_addr_p (cache->saved_regs, reg))
1750 cache->saved_regs[reg].addr += cache->base;
1751 }
1752 }
1753
1754 if (hppa_debug)
1755 fprintf_unfiltered (gdb_stdlog, "base=0x%s }",
1756 paddr_nz (((struct hppa_frame_cache *)*this_cache)->base));
1757 return (*this_cache);
1758 }
1759
1760 static void
1761 hppa_frame_this_id (struct frame_info *next_frame, void **this_cache,
1762 struct frame_id *this_id)
1763 {
1764 struct hppa_frame_cache *info = hppa_frame_cache (next_frame, this_cache);
1765 (*this_id) = frame_id_build (info->base, frame_func_unwind (next_frame));
1766 }
1767
1768 static void
1769 hppa_frame_prev_register (struct frame_info *next_frame,
1770 void **this_cache,
1771 int regnum, int *optimizedp,
1772 enum lval_type *lvalp, CORE_ADDR *addrp,
1773 int *realnump, void *valuep)
1774 {
1775 struct hppa_frame_cache *info = hppa_frame_cache (next_frame, this_cache);
1776 struct gdbarch *gdbarch = get_frame_arch (next_frame);
1777 if (regnum == PCOQ_TAIL_REGNUM)
1778 {
1779 /* The PCOQ TAIL, or NPC, needs to be computed from the unwound
1780 PC register. */
1781 *optimizedp = 0;
1782 *lvalp = not_lval;
1783 *addrp = 0;
1784 *realnump = 0;
1785 if (valuep)
1786 {
1787 int regsize = register_size (gdbarch, PCOQ_HEAD_REGNUM);
1788 CORE_ADDR pc;
1789 int optimized;
1790 enum lval_type lval;
1791 CORE_ADDR addr;
1792 int realnum;
1793 bfd_byte value[MAX_REGISTER_SIZE];
1794 trad_frame_prev_register (next_frame, info->saved_regs,
1795 PCOQ_HEAD_REGNUM, &optimized, &lval, &addr,
1796 &realnum, &value);
1797 pc = extract_unsigned_integer (&value, regsize);
1798 store_unsigned_integer (valuep, regsize, pc + 4);
1799 }
1800 }
1801 else
1802 {
1803 trad_frame_prev_register (next_frame, info->saved_regs, regnum,
1804 optimizedp, lvalp, addrp, realnump, valuep);
1805 }
1806 }
1807
1808 static const struct frame_unwind hppa_frame_unwind =
1809 {
1810 NORMAL_FRAME,
1811 hppa_frame_this_id,
1812 hppa_frame_prev_register
1813 };
1814
1815 static const struct frame_unwind *
1816 hppa_frame_unwind_sniffer (struct frame_info *next_frame)
1817 {
1818 return &hppa_frame_unwind;
1819 }
1820
1821 static CORE_ADDR
1822 hppa_frame_base_address (struct frame_info *next_frame,
1823 void **this_cache)
1824 {
1825 struct hppa_frame_cache *info = hppa_frame_cache (next_frame,
1826 this_cache);
1827 return info->base;
1828 }
1829
1830 static const struct frame_base hppa_frame_base = {
1831 &hppa_frame_unwind,
1832 hppa_frame_base_address,
1833 hppa_frame_base_address,
1834 hppa_frame_base_address
1835 };
1836
1837 static const struct frame_base *
1838 hppa_frame_base_sniffer (struct frame_info *next_frame)
1839 {
1840 return &hppa_frame_base;
1841 }
1842
1843 static struct frame_id
1844 hppa_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
1845 {
1846 return frame_id_build (frame_unwind_register_unsigned (next_frame,
1847 HPPA_SP_REGNUM),
1848 frame_pc_unwind (next_frame));
1849 }
1850
1851 static CORE_ADDR
1852 hppa_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
1853 {
1854 return frame_unwind_register_signed (next_frame, PCOQ_HEAD_REGNUM) & ~3;
1855 }
1856
1857 /* Instead of this nasty cast, add a method pvoid() that prints out a
1858 host VOID data type (remember %p isn't portable). */
1859
1860 static CORE_ADDR
1861 hppa_pointer_to_address_hack (void *ptr)
1862 {
1863 gdb_assert (sizeof (ptr) == TYPE_LENGTH (builtin_type_void_data_ptr));
1864 return POINTER_TO_ADDRESS (builtin_type_void_data_ptr, &ptr);
1865 }
1866
1867 static void
1868 unwind_command (char *exp, int from_tty)
1869 {
1870 CORE_ADDR address;
1871 struct unwind_table_entry *u;
1872
1873 /* If we have an expression, evaluate it and use it as the address. */
1874
1875 if (exp != 0 && *exp != 0)
1876 address = parse_and_eval_address (exp);
1877 else
1878 return;
1879
1880 u = find_unwind_entry (address);
1881
1882 if (!u)
1883 {
1884 printf_unfiltered ("Can't find unwind table entry for %s\n", exp);
1885 return;
1886 }
1887
1888 printf_unfiltered ("unwind_table_entry (0x%s):\n",
1889 paddr_nz (hppa_pointer_to_address_hack (u)));
1890
1891 printf_unfiltered ("\tregion_start = ");
1892 print_address (u->region_start, gdb_stdout);
1893
1894 printf_unfiltered ("\n\tregion_end = ");
1895 print_address (u->region_end, gdb_stdout);
1896
1897 #define pif(FLD) if (u->FLD) printf_unfiltered (" "#FLD);
1898
1899 printf_unfiltered ("\n\tflags =");
1900 pif (Cannot_unwind);
1901 pif (Millicode);
1902 pif (Millicode_save_sr0);
1903 pif (Entry_SR);
1904 pif (Args_stored);
1905 pif (Variable_Frame);
1906 pif (Separate_Package_Body);
1907 pif (Frame_Extension_Millicode);
1908 pif (Stack_Overflow_Check);
1909 pif (Two_Instruction_SP_Increment);
1910 pif (Ada_Region);
1911 pif (Save_SP);
1912 pif (Save_RP);
1913 pif (Save_MRP_in_frame);
1914 pif (extn_ptr_defined);
1915 pif (Cleanup_defined);
1916 pif (MPE_XL_interrupt_marker);
1917 pif (HP_UX_interrupt_marker);
1918 pif (Large_frame);
1919
1920 putchar_unfiltered ('\n');
1921
1922 #define pin(FLD) printf_unfiltered ("\t"#FLD" = 0x%x\n", u->FLD);
1923
1924 pin (Region_description);
1925 pin (Entry_FR);
1926 pin (Entry_GR);
1927 pin (Total_frame_size);
1928 }
1929
1930 void
1931 hppa_skip_permanent_breakpoint (void)
1932 {
1933 /* To step over a breakpoint instruction on the PA takes some
1934 fiddling with the instruction address queue.
1935
1936 When we stop at a breakpoint, the IA queue front (the instruction
1937 we're executing now) points at the breakpoint instruction, and
1938 the IA queue back (the next instruction to execute) points to
1939 whatever instruction we would execute after the breakpoint, if it
1940 were an ordinary instruction. This is the case even if the
1941 breakpoint is in the delay slot of a branch instruction.
1942
1943 Clearly, to step past the breakpoint, we need to set the queue
1944 front to the back. But what do we put in the back? What
1945 instruction comes after that one? Because of the branch delay
1946 slot, the next insn is always at the back + 4. */
1947 write_register (PCOQ_HEAD_REGNUM, read_register (PCOQ_TAIL_REGNUM));
1948 write_register (PCSQ_HEAD_REGNUM, read_register (PCSQ_TAIL_REGNUM));
1949
1950 write_register (PCOQ_TAIL_REGNUM, read_register (PCOQ_TAIL_REGNUM) + 4);
1951 /* We can leave the tail's space the same, since there's no jump. */
1952 }
1953
1954 int
1955 hppa_pc_requires_run_before_use (CORE_ADDR pc)
1956 {
1957 /* Sometimes we may pluck out a minimal symbol that has a negative address.
1958
1959 An example of this occurs when an a.out is linked against a foo.sl.
1960 The foo.sl defines a global bar(), and the a.out declares a signature
1961 for bar(). However, the a.out doesn't directly call bar(), but passes
1962 its address in another call.
1963
1964 If you have this scenario and attempt to "break bar" before running,
1965 gdb will find a minimal symbol for bar() in the a.out. But that
1966 symbol's address will be negative. What this appears to denote is
1967 an index backwards from the base of the procedure linkage table (PLT)
1968 into the data linkage table (DLT), the end of which is contiguous
1969 with the start of the PLT. This is clearly not a valid address for
1970 us to set a breakpoint on.
1971
1972 Note that one must be careful in how one checks for a negative address.
1973 0xc0000000 is a legitimate address of something in a shared text
1974 segment, for example. Since I don't know what the possible range
1975 is of these "really, truly negative" addresses that come from the
1976 minimal symbols, I'm resorting to the gross hack of checking the
1977 top byte of the address for all 1's. Sigh. */
1978
1979 return (!target_has_stack && (pc & 0xFF000000));
1980 }
1981
1982 int
1983 hppa_instruction_nullified (void)
1984 {
1985 /* brobecker 2002/11/07: Couldn't we use a ULONGEST here? It would
1986 avoid the type cast. I'm leaving it as is for now as I'm doing
1987 semi-mechanical multiarching-related changes. */
1988 const int ipsw = (int) read_register (IPSW_REGNUM);
1989 const int flags = (int) read_register (FLAGS_REGNUM);
1990
1991 return ((ipsw & 0x00200000) && !(flags & 0x2));
1992 }
1993
1994 /* Return the GDB type object for the "standard" data type of data
1995 in register N. */
1996
1997 static struct type *
1998 hppa32_register_type (struct gdbarch *gdbarch, int reg_nr)
1999 {
2000 if (reg_nr < FP4_REGNUM)
2001 return builtin_type_uint32;
2002 else
2003 return builtin_type_ieee_single_big;
2004 }
2005
2006 /* Return the GDB type object for the "standard" data type of data
2007 in register N. hppa64 version. */
2008
2009 static struct type *
2010 hppa64_register_type (struct gdbarch *gdbarch, int reg_nr)
2011 {
2012 if (reg_nr < FP4_REGNUM)
2013 return builtin_type_uint64;
2014 else
2015 return builtin_type_ieee_double_big;
2016 }
2017
2018 /* Return True if REGNUM is not a register available to the user
2019 through ptrace(). */
2020
2021 static int
2022 hppa_cannot_store_register (int regnum)
2023 {
2024 return (regnum == 0
2025 || regnum == PCSQ_HEAD_REGNUM
2026 || (regnum >= PCSQ_TAIL_REGNUM && regnum < IPSW_REGNUM)
2027 || (regnum > IPSW_REGNUM && regnum < FP4_REGNUM));
2028
2029 }
2030
2031 static CORE_ADDR
2032 hppa_smash_text_address (CORE_ADDR addr)
2033 {
2034 /* The low two bits of the PC on the PA contain the privilege level.
2035 Some genius implementing a (non-GCC) compiler apparently decided
2036 this means that "addresses" in a text section therefore include a
2037 privilege level, and thus symbol tables should contain these bits.
2038 This seems like a bonehead thing to do--anyway, it seems to work
2039 for our purposes to just ignore those bits. */
2040
2041 return (addr &= ~0x3);
2042 }
2043
2044 /* Get the ith function argument for the current function. */
2045 CORE_ADDR
2046 hppa_fetch_pointer_argument (struct frame_info *frame, int argi,
2047 struct type *type)
2048 {
2049 CORE_ADDR addr;
2050 get_frame_register (frame, R0_REGNUM + 26 - argi, &addr);
2051 return addr;
2052 }
2053
2054 static void
2055 hppa_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
2056 int regnum, void *buf)
2057 {
2058 ULONGEST tmp;
2059
2060 regcache_raw_read_unsigned (regcache, regnum, &tmp);
2061 if (regnum == PCOQ_HEAD_REGNUM || regnum == PCOQ_TAIL_REGNUM)
2062 tmp &= ~0x3;
2063 store_unsigned_integer (buf, sizeof(tmp), tmp);
2064 }
2065
2066 /* Here is a table of C type sizes on hppa with various compiles
2067 and options. I measured this on PA 9000/800 with HP-UX 11.11
2068 and these compilers:
2069
2070 /usr/ccs/bin/cc HP92453-01 A.11.01.21
2071 /opt/ansic/bin/cc HP92453-01 B.11.11.28706.GP
2072 /opt/aCC/bin/aCC B3910B A.03.45
2073 gcc gcc 3.3.2 native hppa2.0w-hp-hpux11.11
2074
2075 cc : 1 2 4 4 8 : 4 8 -- : 4 4
2076 ansic +DA1.1 : 1 2 4 4 8 : 4 8 16 : 4 4
2077 ansic +DA2.0 : 1 2 4 4 8 : 4 8 16 : 4 4
2078 ansic +DA2.0W : 1 2 4 8 8 : 4 8 16 : 8 8
2079 acc +DA1.1 : 1 2 4 4 8 : 4 8 16 : 4 4
2080 acc +DA2.0 : 1 2 4 4 8 : 4 8 16 : 4 4
2081 acc +DA2.0W : 1 2 4 8 8 : 4 8 16 : 8 8
2082 gcc : 1 2 4 4 8 : 4 8 16 : 4 4
2083
2084 Each line is:
2085
2086 compiler and options
2087 char, short, int, long, long long
2088 float, double, long double
2089 char *, void (*)()
2090
2091 So all these compilers use either ILP32 or LP64 model.
2092 TODO: gcc has more options so it needs more investigation.
2093
2094 For floating point types, see:
2095
2096 http://docs.hp.com/hpux/pdf/B3906-90006.pdf
2097 HP-UX floating-point guide, hpux 11.00
2098
2099 -- chastain 2003-12-18 */
2100
2101 static struct gdbarch *
2102 hppa_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
2103 {
2104 struct gdbarch_tdep *tdep;
2105 struct gdbarch *gdbarch;
2106
2107 /* Try to determine the ABI of the object we are loading. */
2108 if (info.abfd != NULL && info.osabi == GDB_OSABI_UNKNOWN)
2109 {
2110 /* If it's a SOM file, assume it's HP/UX SOM. */
2111 if (bfd_get_flavour (info.abfd) == bfd_target_som_flavour)
2112 info.osabi = GDB_OSABI_HPUX_SOM;
2113 }
2114
2115 /* find a candidate among the list of pre-declared architectures. */
2116 arches = gdbarch_list_lookup_by_info (arches, &info);
2117 if (arches != NULL)
2118 return (arches->gdbarch);
2119
2120 /* If none found, then allocate and initialize one. */
2121 tdep = XZALLOC (struct gdbarch_tdep);
2122 gdbarch = gdbarch_alloc (&info, tdep);
2123
2124 /* Determine from the bfd_arch_info structure if we are dealing with
2125 a 32 or 64 bits architecture. If the bfd_arch_info is not available,
2126 then default to a 32bit machine. */
2127 if (info.bfd_arch_info != NULL)
2128 tdep->bytes_per_address =
2129 info.bfd_arch_info->bits_per_address / info.bfd_arch_info->bits_per_byte;
2130 else
2131 tdep->bytes_per_address = 4;
2132
2133 /* Some parts of the gdbarch vector depend on whether we are running
2134 on a 32 bits or 64 bits target. */
2135 switch (tdep->bytes_per_address)
2136 {
2137 case 4:
2138 set_gdbarch_num_regs (gdbarch, hppa32_num_regs);
2139 set_gdbarch_register_name (gdbarch, hppa32_register_name);
2140 set_gdbarch_register_type (gdbarch, hppa32_register_type);
2141 break;
2142 case 8:
2143 set_gdbarch_num_regs (gdbarch, hppa64_num_regs);
2144 set_gdbarch_register_name (gdbarch, hppa64_register_name);
2145 set_gdbarch_register_type (gdbarch, hppa64_register_type);
2146 break;
2147 default:
2148 internal_error (__FILE__, __LINE__, "Unsupported address size: %d",
2149 tdep->bytes_per_address);
2150 }
2151
2152 set_gdbarch_long_bit (gdbarch, tdep->bytes_per_address * TARGET_CHAR_BIT);
2153 set_gdbarch_ptr_bit (gdbarch, tdep->bytes_per_address * TARGET_CHAR_BIT);
2154
2155 /* The following gdbarch vector elements are the same in both ILP32
2156 and LP64, but might show differences some day. */
2157 set_gdbarch_long_long_bit (gdbarch, 64);
2158 set_gdbarch_long_double_bit (gdbarch, 128);
2159 set_gdbarch_long_double_format (gdbarch, &floatformat_ia64_quad_big);
2160
2161 /* The following gdbarch vector elements do not depend on the address
2162 size, or in any other gdbarch element previously set. */
2163 set_gdbarch_skip_prologue (gdbarch, hppa_skip_prologue);
2164 set_gdbarch_inner_than (gdbarch, core_addr_greaterthan);
2165 set_gdbarch_sp_regnum (gdbarch, HPPA_SP_REGNUM);
2166 set_gdbarch_fp0_regnum (gdbarch, HPPA_FP0_REGNUM);
2167 set_gdbarch_cannot_store_register (gdbarch, hppa_cannot_store_register);
2168 set_gdbarch_addr_bits_remove (gdbarch, hppa_smash_text_address);
2169 set_gdbarch_smash_text_address (gdbarch, hppa_smash_text_address);
2170 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
2171 set_gdbarch_read_pc (gdbarch, hppa_target_read_pc);
2172 set_gdbarch_write_pc (gdbarch, hppa_target_write_pc);
2173
2174 /* Helper for function argument information. */
2175 set_gdbarch_fetch_pointer_argument (gdbarch, hppa_fetch_pointer_argument);
2176
2177 set_gdbarch_print_insn (gdbarch, print_insn_hppa);
2178
2179 /* When a hardware watchpoint triggers, we'll move the inferior past
2180 it by removing all eventpoints; stepping past the instruction
2181 that caused the trigger; reinserting eventpoints; and checking
2182 whether any watched location changed. */
2183 set_gdbarch_have_nonsteppable_watchpoint (gdbarch, 1);
2184
2185 /* Inferior function call methods. */
2186 switch (tdep->bytes_per_address)
2187 {
2188 case 4:
2189 set_gdbarch_push_dummy_call (gdbarch, hppa32_push_dummy_call);
2190 set_gdbarch_frame_align (gdbarch, hppa32_frame_align);
2191 break;
2192 case 8:
2193 set_gdbarch_push_dummy_call (gdbarch, hppa64_push_dummy_call);
2194 set_gdbarch_frame_align (gdbarch, hppa64_frame_align);
2195 break;
2196 default:
2197 internal_error (__FILE__, __LINE__, "bad switch");
2198 }
2199
2200 /* Struct return methods. */
2201 switch (tdep->bytes_per_address)
2202 {
2203 case 4:
2204 set_gdbarch_return_value (gdbarch, hppa32_return_value);
2205 break;
2206 case 8:
2207 set_gdbarch_return_value (gdbarch, hppa64_return_value);
2208 break;
2209 default:
2210 internal_error (__FILE__, __LINE__, "bad switch");
2211 }
2212
2213 set_gdbarch_breakpoint_from_pc (gdbarch, hppa_breakpoint_from_pc);
2214
2215 /* Frame unwind methods. */
2216 set_gdbarch_unwind_dummy_id (gdbarch, hppa_unwind_dummy_id);
2217 set_gdbarch_unwind_pc (gdbarch, hppa_unwind_pc);
2218 frame_unwind_append_sniffer (gdbarch, hppa_frame_unwind_sniffer);
2219 frame_base_append_sniffer (gdbarch, hppa_frame_base_sniffer);
2220
2221 set_gdbarch_pseudo_register_read (gdbarch, hppa_pseudo_register_read);
2222
2223 /* Hook in ABI-specific overrides, if they have been registered. */
2224 gdbarch_init_osabi (info, gdbarch);
2225
2226 return gdbarch;
2227 }
2228
2229 static void
2230 hppa_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
2231 {
2232 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
2233
2234 fprintf_unfiltered (file, "bytes_per_address = %d\n",
2235 tdep->bytes_per_address);
2236 fprintf_unfiltered (file, "elf = %s\n", tdep->is_elf ? "yes" : "no");
2237 }
2238
2239 void
2240 _initialize_hppa_tdep (void)
2241 {
2242 struct cmd_list_element *c;
2243 void break_at_finish_command (char *arg, int from_tty);
2244 void tbreak_at_finish_command (char *arg, int from_tty);
2245 void break_at_finish_at_depth_command (char *arg, int from_tty);
2246
2247 gdbarch_register (bfd_arch_hppa, hppa_gdbarch_init, hppa_dump_tdep);
2248
2249 hppa_objfile_priv_data = register_objfile_data ();
2250
2251 add_cmd ("unwind", class_maintenance, unwind_command,
2252 "Print unwind table entry at given address.",
2253 &maintenanceprintlist);
2254
2255 deprecate_cmd (add_com ("xbreak", class_breakpoint,
2256 break_at_finish_command,
2257 concat ("Set breakpoint at procedure exit. \n\
2258 Argument may be function name, or \"*\" and an address.\n\
2259 If function is specified, break at end of code for that function.\n\
2260 If an address is specified, break at the end of the function that contains \n\
2261 that exact address.\n",
2262 "With no arg, uses current execution address of selected stack frame.\n\
2263 This is useful for breaking on return to a stack frame.\n\
2264 \n\
2265 Multiple breakpoints at one place are permitted, and useful if conditional.\n\
2266 \n\
2267 Do \"help breakpoints\" for info on other commands dealing with breakpoints.", NULL)), NULL);
2268 deprecate_cmd (add_com_alias ("xb", "xbreak", class_breakpoint, 1), NULL);
2269 deprecate_cmd (add_com_alias ("xbr", "xbreak", class_breakpoint, 1), NULL);
2270 deprecate_cmd (add_com_alias ("xbre", "xbreak", class_breakpoint, 1), NULL);
2271 deprecate_cmd (add_com_alias ("xbrea", "xbreak", class_breakpoint, 1), NULL);
2272
2273 deprecate_cmd (c = add_com ("txbreak", class_breakpoint,
2274 tbreak_at_finish_command,
2275 "Set temporary breakpoint at procedure exit. Either there should\n\
2276 be no argument or the argument must be a depth.\n"), NULL);
2277 set_cmd_completer (c, location_completer);
2278
2279 if (xdb_commands)
2280 deprecate_cmd (add_com ("bx", class_breakpoint,
2281 break_at_finish_at_depth_command,
2282 "Set breakpoint at procedure exit. Either there should\n\
2283 be no argument or the argument must be a depth.\n"), NULL);
2284
2285 /* Debug this files internals. */
2286 add_show_from_set (add_set_cmd ("hppa", class_maintenance, var_zinteger,
2287 &hppa_debug, "Set hppa debugging.\n\
2288 When non-zero, hppa specific debugging is enabled.", &setdebuglist), &showdebuglist);
2289 }
2290
This page took 0.076096 seconds and 4 git commands to generate.