*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / ia64-tdep.c
CommitLineData
16461d7d 1/* Target-dependent code for the IA-64 for GDB, the GNU debugger.
ca557f44 2
6aba47ca 3 Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
13547ab6 4 Free Software Foundation, Inc.
16461d7d
KB
5
6 This file is part of GDB.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
16461d7d
KB
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16461d7d
KB
20
21#include "defs.h"
22#include "inferior.h"
16461d7d 23#include "gdbcore.h"
8064c6ae 24#include "arch-utils.h"
16461d7d 25#include "floatformat.h"
e6bb342a 26#include "gdbtypes.h"
4e052eda 27#include "regcache.h"
004d836a
JJ
28#include "reggroups.h"
29#include "frame.h"
30#include "frame-base.h"
31#include "frame-unwind.h"
d16aafd8 32#include "doublest.h"
fd0407d6 33#include "value.h"
bd1ce8ba 34#include "gdb_assert.h"
16461d7d
KB
35#include "objfiles.h"
36#include "elf/common.h" /* for DT_PLTGOT value */
244bc108 37#include "elf-bfd.h"
a89aa300 38#include "dis-asm.h"
7d9b040b 39#include "infcall.h"
b33e8514 40#include "osabi.h"
9fc9f5e2 41#include "ia64-tdep.h"
0d5de010 42#include "cp-abi.h"
16461d7d 43
968d1cb4 44#ifdef HAVE_LIBUNWIND_IA64_H
8973ff21 45#include "elf/ia64.h" /* for PT_IA_64_UNWIND value */
968d1cb4
JJ
46#include "libunwind-frame.h"
47#include "libunwind-ia64.h"
c5a27d9c
JJ
48
49/* Note: KERNEL_START is supposed to be an address which is not going
50 to ever contain any valid unwind info. For ia64 linux, the choice
51 of 0xc000000000000000 is fairly safe since that's uncached space.
52
53 We use KERNEL_START as follows: after obtaining the kernel's
54 unwind table via getunwind(), we project its unwind data into
55 address-range KERNEL_START-(KERNEL_START+ktab_size) and then
56 when ia64_access_mem() sees a memory access to this
57 address-range, we redirect it to ktab instead.
58
59 None of this hackery is needed with a modern kernel/libcs
60 which uses the kernel virtual DSO to provide access to the
61 kernel's unwind info. In that case, ktab_size remains 0 and
62 hence the value of KERNEL_START doesn't matter. */
63
64#define KERNEL_START 0xc000000000000000ULL
65
66static size_t ktab_size = 0;
67struct ia64_table_entry
68 {
69 uint64_t start_offset;
70 uint64_t end_offset;
71 uint64_t info_offset;
72 };
73
74static struct ia64_table_entry *ktab = NULL;
75
968d1cb4
JJ
76#endif
77
698cb3f0
KB
78/* An enumeration of the different IA-64 instruction types. */
79
16461d7d
KB
80typedef enum instruction_type
81{
82 A, /* Integer ALU ; I-unit or M-unit */
83 I, /* Non-ALU integer; I-unit */
84 M, /* Memory ; M-unit */
85 F, /* Floating-point ; F-unit */
86 B, /* Branch ; B-unit */
87 L, /* Extended (L+X) ; I-unit */
88 X, /* Extended (L+X) ; I-unit */
89 undefined /* undefined or reserved */
90} instruction_type;
91
92/* We represent IA-64 PC addresses as the value of the instruction
93 pointer or'd with some bit combination in the low nibble which
94 represents the slot number in the bundle addressed by the
95 instruction pointer. The problem is that the Linux kernel
96 multiplies its slot numbers (for exceptions) by one while the
97 disassembler multiplies its slot numbers by 6. In addition, I've
98 heard it said that the simulator uses 1 as the multiplier.
99
100 I've fixed the disassembler so that the bytes_per_line field will
101 be the slot multiplier. If bytes_per_line comes in as zero, it
102 is set to six (which is how it was set up initially). -- objdump
103 displays pretty disassembly dumps with this value. For our purposes,
104 we'll set bytes_per_line to SLOT_MULTIPLIER. This is okay since we
105 never want to also display the raw bytes the way objdump does. */
106
107#define SLOT_MULTIPLIER 1
108
109/* Length in bytes of an instruction bundle */
110
111#define BUNDLE_LEN 16
112
16461d7d
KB
113static gdbarch_init_ftype ia64_gdbarch_init;
114
115static gdbarch_register_name_ftype ia64_register_name;
004d836a 116static gdbarch_register_type_ftype ia64_register_type;
16461d7d 117static gdbarch_breakpoint_from_pc_ftype ia64_breakpoint_from_pc;
16461d7d 118static gdbarch_skip_prologue_ftype ia64_skip_prologue;
64a5b29c 119static struct type *is_float_or_hfa_type (struct type *t);
b33e8514 120static CORE_ADDR ia64_find_global_pointer (CORE_ADDR faddr);
16461d7d 121
004d836a
JJ
122static struct type *builtin_type_ia64_ext;
123
124#define NUM_IA64_RAW_REGS 462
16461d7d 125
16461d7d
KB
126static int sp_regnum = IA64_GR12_REGNUM;
127static int fp_regnum = IA64_VFP_REGNUM;
128static int lr_regnum = IA64_VRAP_REGNUM;
129
004d836a 130/* NOTE: we treat the register stack registers r32-r127 as pseudo-registers because
4afcc598 131 they may not be accessible via the ptrace register get/set interfaces. */
004d836a
JJ
132enum pseudo_regs { FIRST_PSEUDO_REGNUM = NUM_IA64_RAW_REGS, VBOF_REGNUM = IA64_NAT127_REGNUM + 1, V32_REGNUM,
133 V127_REGNUM = V32_REGNUM + 95,
134 VP0_REGNUM, VP16_REGNUM = VP0_REGNUM + 16, VP63_REGNUM = VP0_REGNUM + 63, LAST_PSEUDO_REGNUM };
16461d7d
KB
135
136/* Array of register names; There should be ia64_num_regs strings in
137 the initializer. */
138
139static char *ia64_register_names[] =
140{ "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
141 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
142 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
143 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
004d836a
JJ
144 "", "", "", "", "", "", "", "",
145 "", "", "", "", "", "", "", "",
146 "", "", "", "", "", "", "", "",
147 "", "", "", "", "", "", "", "",
148 "", "", "", "", "", "", "", "",
149 "", "", "", "", "", "", "", "",
150 "", "", "", "", "", "", "", "",
151 "", "", "", "", "", "", "", "",
152 "", "", "", "", "", "", "", "",
153 "", "", "", "", "", "", "", "",
154 "", "", "", "", "", "", "", "",
155 "", "", "", "", "", "", "", "",
16461d7d
KB
156
157 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
158 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
159 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
160 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
161 "f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39",
162 "f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47",
163 "f48", "f49", "f50", "f51", "f52", "f53", "f54", "f55",
164 "f56", "f57", "f58", "f59", "f60", "f61", "f62", "f63",
165 "f64", "f65", "f66", "f67", "f68", "f69", "f70", "f71",
166 "f72", "f73", "f74", "f75", "f76", "f77", "f78", "f79",
167 "f80", "f81", "f82", "f83", "f84", "f85", "f86", "f87",
168 "f88", "f89", "f90", "f91", "f92", "f93", "f94", "f95",
169 "f96", "f97", "f98", "f99", "f100", "f101", "f102", "f103",
170 "f104", "f105", "f106", "f107", "f108", "f109", "f110", "f111",
171 "f112", "f113", "f114", "f115", "f116", "f117", "f118", "f119",
172 "f120", "f121", "f122", "f123", "f124", "f125", "f126", "f127",
173
004d836a
JJ
174 "", "", "", "", "", "", "", "",
175 "", "", "", "", "", "", "", "",
176 "", "", "", "", "", "", "", "",
177 "", "", "", "", "", "", "", "",
178 "", "", "", "", "", "", "", "",
179 "", "", "", "", "", "", "", "",
180 "", "", "", "", "", "", "", "",
181 "", "", "", "", "", "", "", "",
16461d7d
KB
182
183 "b0", "b1", "b2", "b3", "b4", "b5", "b6", "b7",
184
185 "vfp", "vrap",
186
187 "pr", "ip", "psr", "cfm",
188
189 "kr0", "kr1", "kr2", "kr3", "kr4", "kr5", "kr6", "kr7",
190 "", "", "", "", "", "", "", "",
191 "rsc", "bsp", "bspstore", "rnat",
192 "", "fcr", "", "",
193 "eflag", "csd", "ssd", "cflg", "fsr", "fir", "fdr", "",
194 "ccv", "", "", "", "unat", "", "", "",
195 "fpsr", "", "", "", "itc",
196 "", "", "", "", "", "", "", "", "", "",
197 "", "", "", "", "", "", "", "", "",
198 "pfs", "lc", "ec",
199 "", "", "", "", "", "", "", "", "", "",
200 "", "", "", "", "", "", "", "", "", "",
201 "", "", "", "", "", "", "", "", "", "",
202 "", "", "", "", "", "", "", "", "", "",
203 "", "", "", "", "", "", "", "", "", "",
204 "", "", "", "", "", "", "", "", "", "",
205 "",
206 "nat0", "nat1", "nat2", "nat3", "nat4", "nat5", "nat6", "nat7",
207 "nat8", "nat9", "nat10", "nat11", "nat12", "nat13", "nat14", "nat15",
208 "nat16", "nat17", "nat18", "nat19", "nat20", "nat21", "nat22", "nat23",
209 "nat24", "nat25", "nat26", "nat27", "nat28", "nat29", "nat30", "nat31",
210 "nat32", "nat33", "nat34", "nat35", "nat36", "nat37", "nat38", "nat39",
211 "nat40", "nat41", "nat42", "nat43", "nat44", "nat45", "nat46", "nat47",
212 "nat48", "nat49", "nat50", "nat51", "nat52", "nat53", "nat54", "nat55",
213 "nat56", "nat57", "nat58", "nat59", "nat60", "nat61", "nat62", "nat63",
214 "nat64", "nat65", "nat66", "nat67", "nat68", "nat69", "nat70", "nat71",
215 "nat72", "nat73", "nat74", "nat75", "nat76", "nat77", "nat78", "nat79",
216 "nat80", "nat81", "nat82", "nat83", "nat84", "nat85", "nat86", "nat87",
217 "nat88", "nat89", "nat90", "nat91", "nat92", "nat93", "nat94", "nat95",
218 "nat96", "nat97", "nat98", "nat99", "nat100","nat101","nat102","nat103",
219 "nat104","nat105","nat106","nat107","nat108","nat109","nat110","nat111",
220 "nat112","nat113","nat114","nat115","nat116","nat117","nat118","nat119",
221 "nat120","nat121","nat122","nat123","nat124","nat125","nat126","nat127",
004d836a
JJ
222
223 "bof",
224
225 "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
226 "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
227 "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55",
228 "r56", "r57", "r58", "r59", "r60", "r61", "r62", "r63",
229 "r64", "r65", "r66", "r67", "r68", "r69", "r70", "r71",
230 "r72", "r73", "r74", "r75", "r76", "r77", "r78", "r79",
231 "r80", "r81", "r82", "r83", "r84", "r85", "r86", "r87",
232 "r88", "r89", "r90", "r91", "r92", "r93", "r94", "r95",
233 "r96", "r97", "r98", "r99", "r100", "r101", "r102", "r103",
234 "r104", "r105", "r106", "r107", "r108", "r109", "r110", "r111",
235 "r112", "r113", "r114", "r115", "r116", "r117", "r118", "r119",
236 "r120", "r121", "r122", "r123", "r124", "r125", "r126", "r127",
237
238 "p0", "p1", "p2", "p3", "p4", "p5", "p6", "p7",
239 "p8", "p9", "p10", "p11", "p12", "p13", "p14", "p15",
240 "p16", "p17", "p18", "p19", "p20", "p21", "p22", "p23",
241 "p24", "p25", "p26", "p27", "p28", "p29", "p30", "p31",
242 "p32", "p33", "p34", "p35", "p36", "p37", "p38", "p39",
243 "p40", "p41", "p42", "p43", "p44", "p45", "p46", "p47",
244 "p48", "p49", "p50", "p51", "p52", "p53", "p54", "p55",
245 "p56", "p57", "p58", "p59", "p60", "p61", "p62", "p63",
16461d7d
KB
246};
247
004d836a
JJ
248struct ia64_frame_cache
249{
250 CORE_ADDR base; /* frame pointer base for frame */
251 CORE_ADDR pc; /* function start pc for frame */
252 CORE_ADDR saved_sp; /* stack pointer for frame */
253 CORE_ADDR bsp; /* points at r32 for the current frame */
254 CORE_ADDR cfm; /* cfm value for current frame */
4afcc598 255 CORE_ADDR prev_cfm; /* cfm value for previous frame */
004d836a
JJ
256 int frameless;
257 int sof; /* Size of frame (decoded from cfm value) */
258 int sol; /* Size of locals (decoded from cfm value) */
259 int sor; /* Number of rotating registers. (decoded from cfm value) */
260 CORE_ADDR after_prologue;
261 /* Address of first instruction after the last
262 prologue instruction; Note that there may
263 be instructions from the function's body
264 intermingled with the prologue. */
265 int mem_stack_frame_size;
266 /* Size of the memory stack frame (may be zero),
267 or -1 if it has not been determined yet. */
268 int fp_reg; /* Register number (if any) used a frame pointer
244bc108 269 for this frame. 0 if no register is being used
16461d7d 270 as the frame pointer. */
004d836a
JJ
271
272 /* Saved registers. */
273 CORE_ADDR saved_regs[NUM_IA64_RAW_REGS];
274
275};
244bc108 276
698cb3f0
KB
277#define SIGCONTEXT_REGISTER_ADDRESS \
278 (gdbarch_tdep (current_gdbarch)->sigcontext_register_address)
16461d7d 279
004d836a
JJ
280int
281ia64_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
282 struct reggroup *group)
16461d7d 283{
004d836a
JJ
284 int vector_p;
285 int float_p;
286 int raw_p;
287 if (group == all_reggroup)
288 return 1;
289 vector_p = TYPE_VECTOR (register_type (gdbarch, regnum));
290 float_p = TYPE_CODE (register_type (gdbarch, regnum)) == TYPE_CODE_FLT;
291 raw_p = regnum < NUM_IA64_RAW_REGS;
292 if (group == float_reggroup)
293 return float_p;
294 if (group == vector_reggroup)
295 return vector_p;
296 if (group == general_reggroup)
297 return (!vector_p && !float_p);
298 if (group == save_reggroup || group == restore_reggroup)
299 return raw_p;
300 return 0;
16461d7d
KB
301}
302
004d836a
JJ
303static const char *
304ia64_register_name (int reg)
16461d7d 305{
004d836a 306 return ia64_register_names[reg];
16461d7d
KB
307}
308
004d836a
JJ
309struct type *
310ia64_register_type (struct gdbarch *arch, int reg)
16461d7d 311{
004d836a
JJ
312 if (reg >= IA64_FR0_REGNUM && reg <= IA64_FR127_REGNUM)
313 return builtin_type_ia64_ext;
314 else
315 return builtin_type_long;
16461d7d
KB
316}
317
a78f21af 318static int
004d836a 319ia64_dwarf_reg_to_regnum (int reg)
16461d7d 320{
004d836a
JJ
321 if (reg >= IA64_GR32_REGNUM && reg <= IA64_GR127_REGNUM)
322 return V32_REGNUM + (reg - IA64_GR32_REGNUM);
323 return reg;
16461d7d
KB
324}
325
4afcc598 326static int
2fda21a6 327floatformat_valid (const struct floatformat *fmt, const void *from)
4afcc598
JJ
328{
329 return 1;
330}
331
16461d7d
KB
332const struct floatformat floatformat_ia64_ext =
333{
334 floatformat_little, 82, 0, 1, 17, 65535, 0x1ffff, 18, 64,
4afcc598 335 floatformat_intbit_yes, "floatformat_ia64_ext", floatformat_valid
16461d7d
KB
336};
337
8da61cc4
DJ
338const struct floatformat *floatformats_ia64_ext[2] =
339{
340 &floatformat_ia64_ext,
341 &floatformat_ia64_ext
342};
343
16461d7d
KB
344
345/* Extract ``len'' bits from an instruction bundle starting at
346 bit ``from''. */
347
244bc108 348static long long
16461d7d
KB
349extract_bit_field (char *bundle, int from, int len)
350{
351 long long result = 0LL;
352 int to = from + len;
353 int from_byte = from / 8;
354 int to_byte = to / 8;
355 unsigned char *b = (unsigned char *) bundle;
356 unsigned char c;
357 int lshift;
358 int i;
359
360 c = b[from_byte];
361 if (from_byte == to_byte)
362 c = ((unsigned char) (c << (8 - to % 8))) >> (8 - to % 8);
363 result = c >> (from % 8);
364 lshift = 8 - (from % 8);
365
366 for (i = from_byte+1; i < to_byte; i++)
367 {
368 result |= ((long long) b[i]) << lshift;
369 lshift += 8;
370 }
371
372 if (from_byte < to_byte && (to % 8 != 0))
373 {
374 c = b[to_byte];
375 c = ((unsigned char) (c << (8 - to % 8))) >> (8 - to % 8);
376 result |= ((long long) c) << lshift;
377 }
378
379 return result;
380}
381
382/* Replace the specified bits in an instruction bundle */
383
244bc108 384static void
16461d7d
KB
385replace_bit_field (char *bundle, long long val, int from, int len)
386{
387 int to = from + len;
388 int from_byte = from / 8;
389 int to_byte = to / 8;
390 unsigned char *b = (unsigned char *) bundle;
391 unsigned char c;
392
393 if (from_byte == to_byte)
394 {
395 unsigned char left, right;
396 c = b[from_byte];
397 left = (c >> (to % 8)) << (to % 8);
398 right = ((unsigned char) (c << (8 - from % 8))) >> (8 - from % 8);
399 c = (unsigned char) (val & 0xff);
400 c = (unsigned char) (c << (from % 8 + 8 - to % 8)) >> (8 - to % 8);
401 c |= right | left;
402 b[from_byte] = c;
403 }
404 else
405 {
406 int i;
407 c = b[from_byte];
408 c = ((unsigned char) (c << (8 - from % 8))) >> (8 - from % 8);
409 c = c | (val << (from % 8));
410 b[from_byte] = c;
411 val >>= 8 - from % 8;
412
413 for (i = from_byte+1; i < to_byte; i++)
414 {
415 c = val & 0xff;
416 val >>= 8;
417 b[i] = c;
418 }
419
420 if (to % 8 != 0)
421 {
422 unsigned char cv = (unsigned char) val;
423 c = b[to_byte];
424 c = c >> (to % 8) << (to % 8);
425 c |= ((unsigned char) (cv << (8 - to % 8))) >> (8 - to % 8);
426 b[to_byte] = c;
427 }
428 }
429}
430
431/* Return the contents of slot N (for N = 0, 1, or 2) in
432 and instruction bundle */
433
244bc108 434static long long
2fc3ac7e 435slotN_contents (char *bundle, int slotnum)
16461d7d
KB
436{
437 return extract_bit_field (bundle, 5+41*slotnum, 41);
438}
439
440/* Store an instruction in an instruction bundle */
441
244bc108 442static void
2fc3ac7e 443replace_slotN_contents (char *bundle, long long instr, int slotnum)
16461d7d
KB
444{
445 replace_bit_field (bundle, instr, 5+41*slotnum, 41);
446}
447
64a5b29c 448static enum instruction_type template_encoding_table[32][3] =
16461d7d
KB
449{
450 { M, I, I }, /* 00 */
451 { M, I, I }, /* 01 */
452 { M, I, I }, /* 02 */
453 { M, I, I }, /* 03 */
454 { M, L, X }, /* 04 */
455 { M, L, X }, /* 05 */
456 { undefined, undefined, undefined }, /* 06 */
457 { undefined, undefined, undefined }, /* 07 */
458 { M, M, I }, /* 08 */
459 { M, M, I }, /* 09 */
460 { M, M, I }, /* 0A */
461 { M, M, I }, /* 0B */
462 { M, F, I }, /* 0C */
463 { M, F, I }, /* 0D */
464 { M, M, F }, /* 0E */
465 { M, M, F }, /* 0F */
466 { M, I, B }, /* 10 */
467 { M, I, B }, /* 11 */
468 { M, B, B }, /* 12 */
469 { M, B, B }, /* 13 */
470 { undefined, undefined, undefined }, /* 14 */
471 { undefined, undefined, undefined }, /* 15 */
472 { B, B, B }, /* 16 */
473 { B, B, B }, /* 17 */
474 { M, M, B }, /* 18 */
475 { M, M, B }, /* 19 */
476 { undefined, undefined, undefined }, /* 1A */
477 { undefined, undefined, undefined }, /* 1B */
478 { M, F, B }, /* 1C */
479 { M, F, B }, /* 1D */
480 { undefined, undefined, undefined }, /* 1E */
481 { undefined, undefined, undefined }, /* 1F */
482};
483
484/* Fetch and (partially) decode an instruction at ADDR and return the
485 address of the next instruction to fetch. */
486
487static CORE_ADDR
488fetch_instruction (CORE_ADDR addr, instruction_type *it, long long *instr)
489{
490 char bundle[BUNDLE_LEN];
491 int slotnum = (int) (addr & 0x0f) / SLOT_MULTIPLIER;
492 long long template;
493 int val;
494
c26e1c2b
KB
495 /* Warn about slot numbers greater than 2. We used to generate
496 an error here on the assumption that the user entered an invalid
497 address. But, sometimes GDB itself requests an invalid address.
498 This can (easily) happen when execution stops in a function for
499 which there are no symbols. The prologue scanner will attempt to
500 find the beginning of the function - if the nearest symbol
501 happens to not be aligned on a bundle boundary (16 bytes), the
502 resulting starting address will cause GDB to think that the slot
503 number is too large.
504
505 So we warn about it and set the slot number to zero. It is
506 not necessarily a fatal condition, particularly if debugging
507 at the assembly language level. */
16461d7d 508 if (slotnum > 2)
c26e1c2b 509 {
8a3fe4f8
AC
510 warning (_("Can't fetch instructions for slot numbers greater than 2.\n"
511 "Using slot 0 instead"));
c26e1c2b
KB
512 slotnum = 0;
513 }
16461d7d
KB
514
515 addr &= ~0x0f;
516
517 val = target_read_memory (addr, bundle, BUNDLE_LEN);
518
519 if (val != 0)
520 return 0;
521
522 *instr = slotN_contents (bundle, slotnum);
523 template = extract_bit_field (bundle, 0, 5);
524 *it = template_encoding_table[(int)template][slotnum];
525
64a5b29c 526 if (slotnum == 2 || (slotnum == 1 && *it == L))
16461d7d
KB
527 addr += 16;
528 else
529 addr += (slotnum + 1) * SLOT_MULTIPLIER;
530
531 return addr;
532}
533
534/* There are 5 different break instructions (break.i, break.b,
535 break.m, break.f, and break.x), but they all have the same
536 encoding. (The five bit template in the low five bits of the
537 instruction bundle distinguishes one from another.)
538
539 The runtime architecture manual specifies that break instructions
540 used for debugging purposes must have the upper two bits of the 21
541 bit immediate set to a 0 and a 1 respectively. A breakpoint
542 instruction encodes the most significant bit of its 21 bit
543 immediate at bit 36 of the 41 bit instruction. The penultimate msb
544 is at bit 25 which leads to the pattern below.
545
546 Originally, I had this set up to do, e.g, a "break.i 0x80000" But
547 it turns out that 0x80000 was used as the syscall break in the early
548 simulators. So I changed the pattern slightly to do "break.i 0x080001"
549 instead. But that didn't work either (I later found out that this
550 pattern was used by the simulator that I was using.) So I ended up
551 using the pattern seen below. */
552
553#if 0
aaab4dba 554#define IA64_BREAKPOINT 0x00002000040LL
16461d7d 555#endif
aaab4dba 556#define IA64_BREAKPOINT 0x00003333300LL
16461d7d
KB
557
558static int
8181d85f 559ia64_memory_insert_breakpoint (struct bp_target_info *bp_tgt)
16461d7d 560{
8181d85f 561 CORE_ADDR addr = bp_tgt->placed_address;
16461d7d
KB
562 char bundle[BUNDLE_LEN];
563 int slotnum = (int) (addr & 0x0f) / SLOT_MULTIPLIER;
564 long long instr;
565 int val;
126fa72d 566 int template;
16461d7d
KB
567
568 if (slotnum > 2)
8a3fe4f8 569 error (_("Can't insert breakpoint for slot numbers greater than 2."));
16461d7d
KB
570
571 addr &= ~0x0f;
572
573 val = target_read_memory (addr, bundle, BUNDLE_LEN);
126fa72d
PS
574
575 /* Check for L type instruction in 2nd slot, if present then
576 bump up the slot number to the 3rd slot */
577 template = extract_bit_field (bundle, 0, 5);
578 if (slotnum == 1 && template_encoding_table[template][1] == L)
579 {
580 slotnum = 2;
581 }
582
16461d7d 583 instr = slotN_contents (bundle, slotnum);
8181d85f
DJ
584 memcpy (bp_tgt->shadow_contents, &instr, sizeof (instr));
585 bp_tgt->placed_size = bp_tgt->shadow_len = sizeof (instr);
aaab4dba 586 replace_slotN_contents (bundle, IA64_BREAKPOINT, slotnum);
16461d7d
KB
587 if (val == 0)
588 target_write_memory (addr, bundle, BUNDLE_LEN);
589
590 return val;
591}
592
593static int
8181d85f 594ia64_memory_remove_breakpoint (struct bp_target_info *bp_tgt)
16461d7d 595{
8181d85f 596 CORE_ADDR addr = bp_tgt->placed_address;
16461d7d
KB
597 char bundle[BUNDLE_LEN];
598 int slotnum = (addr & 0x0f) / SLOT_MULTIPLIER;
599 long long instr;
600 int val;
126fa72d 601 int template;
16461d7d
KB
602
603 addr &= ~0x0f;
604
605 val = target_read_memory (addr, bundle, BUNDLE_LEN);
126fa72d
PS
606
607 /* Check for L type instruction in 2nd slot, if present then
608 bump up the slot number to the 3rd slot */
609 template = extract_bit_field (bundle, 0, 5);
610 if (slotnum == 1 && template_encoding_table[template][1] == L)
611 {
612 slotnum = 2;
613 }
614
8181d85f 615 memcpy (&instr, bp_tgt->shadow_contents, sizeof instr);
16461d7d
KB
616 replace_slotN_contents (bundle, instr, slotnum);
617 if (val == 0)
618 target_write_memory (addr, bundle, BUNDLE_LEN);
619
620 return val;
621}
622
623/* We don't really want to use this, but remote.c needs to call it in order
624 to figure out if Z-packets are supported or not. Oh, well. */
f4f9705a 625const unsigned char *
fba45db2 626ia64_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
16461d7d
KB
627{
628 static unsigned char breakpoint[] =
629 { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
630 *lenptr = sizeof (breakpoint);
631#if 0
632 *pcptr &= ~0x0f;
633#endif
634 return breakpoint;
635}
636
a78f21af 637static CORE_ADDR
61a1198a 638ia64_read_pc (struct regcache *regcache)
16461d7d 639{
61a1198a
UW
640 ULONGEST psr_value, pc_value;
641 int slot_num;
642
643 regcache_cooked_read_unsigned (regcache, IA64_PSR_REGNUM, &psr_value);
644 regcache_cooked_read_unsigned (regcache, IA64_IP_REGNUM, &pc_value);
645 slot_num = (psr_value >> 41) & 3;
16461d7d
KB
646
647 return pc_value | (slot_num * SLOT_MULTIPLIER);
648}
649
54a5c8d8 650void
61a1198a 651ia64_write_pc (struct regcache *regcache, CORE_ADDR new_pc)
16461d7d
KB
652{
653 int slot_num = (int) (new_pc & 0xf) / SLOT_MULTIPLIER;
61a1198a
UW
654 ULONGEST psr_value;
655
656 regcache_cooked_read_unsigned (regcache, IA64_PSR_REGNUM, &psr_value);
16461d7d 657 psr_value &= ~(3LL << 41);
61a1198a 658 psr_value |= (ULONGEST)(slot_num & 0x3) << 41;
16461d7d
KB
659
660 new_pc &= ~0xfLL;
661
61a1198a
UW
662 regcache_cooked_write_unsigned (regcache, IA64_PSR_REGNUM, psr_value);
663 regcache_cooked_write_unsigned (regcache, IA64_IP_REGNUM, new_pc);
16461d7d
KB
664}
665
666#define IS_NaT_COLLECTION_ADDR(addr) ((((addr) >> 3) & 0x3f) == 0x3f)
667
668/* Returns the address of the slot that's NSLOTS slots away from
669 the address ADDR. NSLOTS may be positive or negative. */
670static CORE_ADDR
671rse_address_add(CORE_ADDR addr, int nslots)
672{
673 CORE_ADDR new_addr;
674 int mandatory_nat_slots = nslots / 63;
675 int direction = nslots < 0 ? -1 : 1;
676
677 new_addr = addr + 8 * (nslots + mandatory_nat_slots);
678
679 if ((new_addr >> 9) != ((addr + 8 * 64 * mandatory_nat_slots) >> 9))
680 new_addr += 8 * direction;
681
682 if (IS_NaT_COLLECTION_ADDR(new_addr))
683 new_addr += 8 * direction;
684
685 return new_addr;
686}
687
004d836a
JJ
688static void
689ia64_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
88d82102 690 int regnum, gdb_byte *buf)
16461d7d 691{
004d836a 692 if (regnum >= V32_REGNUM && regnum <= V127_REGNUM)
244bc108 693 {
88d82102 694#ifdef HAVE_LIBUNWIND_IA64_H
c5a27d9c
JJ
695 /* First try and use the libunwind special reg accessor, otherwise fallback to
696 standard logic. */
697 if (!libunwind_is_initialized ()
45ecac4b 698 || libunwind_get_reg_special (gdbarch, regcache, regnum, buf) != 0)
88d82102 699#endif
004d836a 700 {
c5a27d9c
JJ
701 /* The fallback position is to assume that r32-r127 are found sequentially
702 in memory starting at $bof. This isn't always true, but without libunwind,
703 this is the best we can do. */
704 ULONGEST cfm;
705 ULONGEST bsp;
706 CORE_ADDR reg;
707 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
708 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
709
710 /* The bsp points at the end of the register frame so we
711 subtract the size of frame from it to get start of register frame. */
712 bsp = rse_address_add (bsp, -(cfm & 0x7f));
713
714 if ((cfm & 0x7f) > regnum - V32_REGNUM)
715 {
716 ULONGEST reg_addr = rse_address_add (bsp, (regnum - V32_REGNUM));
717 reg = read_memory_integer ((CORE_ADDR)reg_addr, 8);
718 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), reg);
719 }
720 else
721 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), 0);
004d836a 722 }
004d836a
JJ
723 }
724 else if (IA64_NAT0_REGNUM <= regnum && regnum <= IA64_NAT31_REGNUM)
725 {
726 ULONGEST unatN_val;
727 ULONGEST unat;
728 regcache_cooked_read_unsigned (regcache, IA64_UNAT_REGNUM, &unat);
729 unatN_val = (unat & (1LL << (regnum - IA64_NAT0_REGNUM))) != 0;
aa2a9a3c 730 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), unatN_val);
004d836a
JJ
731 }
732 else if (IA64_NAT32_REGNUM <= regnum && regnum <= IA64_NAT127_REGNUM)
733 {
734 ULONGEST natN_val = 0;
735 ULONGEST bsp;
736 ULONGEST cfm;
737 CORE_ADDR gr_addr = 0;
738 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
739 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
740
741 /* The bsp points at the end of the register frame so we
742 subtract the size of frame from it to get start of register frame. */
743 bsp = rse_address_add (bsp, -(cfm & 0x7f));
744
745 if ((cfm & 0x7f) > regnum - V32_REGNUM)
746 gr_addr = rse_address_add (bsp, (regnum - V32_REGNUM));
747
748 if (gr_addr != 0)
749 {
750 /* Compute address of nat collection bits. */
751 CORE_ADDR nat_addr = gr_addr | 0x1f8;
752 CORE_ADDR nat_collection;
753 int nat_bit;
754 /* If our nat collection address is bigger than bsp, we have to get
755 the nat collection from rnat. Otherwise, we fetch the nat
756 collection from the computed address. */
757 if (nat_addr >= bsp)
758 regcache_cooked_read_unsigned (regcache, IA64_RNAT_REGNUM, &nat_collection);
759 else
760 nat_collection = read_memory_integer (nat_addr, 8);
761 nat_bit = (gr_addr >> 3) & 0x3f;
762 natN_val = (nat_collection >> nat_bit) & 1;
763 }
764
aa2a9a3c 765 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), natN_val);
244bc108 766 }
004d836a
JJ
767 else if (regnum == VBOF_REGNUM)
768 {
769 /* A virtual register frame start is provided for user convenience.
770 It can be calculated as the bsp - sof (sizeof frame). */
771 ULONGEST bsp, vbsp;
772 ULONGEST cfm;
773 CORE_ADDR reg;
774 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
775 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
776
777 /* The bsp points at the end of the register frame so we
778 subtract the size of frame from it to get beginning of frame. */
779 vbsp = rse_address_add (bsp, -(cfm & 0x7f));
aa2a9a3c 780 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), vbsp);
004d836a
JJ
781 }
782 else if (VP0_REGNUM <= regnum && regnum <= VP63_REGNUM)
783 {
784 ULONGEST pr;
785 ULONGEST cfm;
786 ULONGEST prN_val;
787 CORE_ADDR reg;
788 regcache_cooked_read_unsigned (regcache, IA64_PR_REGNUM, &pr);
789 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
790
791 if (VP16_REGNUM <= regnum && regnum <= VP63_REGNUM)
792 {
793 /* Fetch predicate register rename base from current frame
794 marker for this frame. */
795 int rrb_pr = (cfm >> 32) & 0x3f;
796
797 /* Adjust the register number to account for register rotation. */
798 regnum = VP16_REGNUM
799 + ((regnum - VP16_REGNUM) + rrb_pr) % 48;
800 }
801 prN_val = (pr & (1LL << (regnum - VP0_REGNUM))) != 0;
aa2a9a3c 802 store_unsigned_integer (buf, register_size (current_gdbarch, regnum), prN_val);
004d836a
JJ
803 }
804 else
aa2a9a3c 805 memset (buf, 0, register_size (current_gdbarch, regnum));
16461d7d
KB
806}
807
004d836a
JJ
808static void
809ia64_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
88d82102 810 int regnum, const gdb_byte *buf)
16461d7d 811{
004d836a 812 if (regnum >= V32_REGNUM && regnum <= V127_REGNUM)
244bc108 813 {
004d836a
JJ
814 ULONGEST bsp;
815 ULONGEST cfm;
816 CORE_ADDR reg;
817 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
818 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
819
820 bsp = rse_address_add (bsp, -(cfm & 0x7f));
821
822 if ((cfm & 0x7f) > regnum - V32_REGNUM)
823 {
824 ULONGEST reg_addr = rse_address_add (bsp, (regnum - V32_REGNUM));
825 write_memory (reg_addr, (void *)buf, 8);
826 }
827 }
828 else if (IA64_NAT0_REGNUM <= regnum && regnum <= IA64_NAT31_REGNUM)
829 {
830 ULONGEST unatN_val, unat, unatN_mask;
831 regcache_cooked_read_unsigned (regcache, IA64_UNAT_REGNUM, &unat);
aa2a9a3c 832 unatN_val = extract_unsigned_integer (buf, register_size (current_gdbarch, regnum));
004d836a
JJ
833 unatN_mask = (1LL << (regnum - IA64_NAT0_REGNUM));
834 if (unatN_val == 0)
835 unat &= ~unatN_mask;
836 else if (unatN_val == 1)
837 unat |= unatN_mask;
838 regcache_cooked_write_unsigned (regcache, IA64_UNAT_REGNUM, unat);
839 }
840 else if (IA64_NAT32_REGNUM <= regnum && regnum <= IA64_NAT127_REGNUM)
841 {
842 ULONGEST natN_val;
843 ULONGEST bsp;
844 ULONGEST cfm;
845 CORE_ADDR gr_addr = 0;
846 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
847 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
848
849 /* The bsp points at the end of the register frame so we
850 subtract the size of frame from it to get start of register frame. */
851 bsp = rse_address_add (bsp, -(cfm & 0x7f));
852
853 if ((cfm & 0x7f) > regnum - V32_REGNUM)
854 gr_addr = rse_address_add (bsp, (regnum - V32_REGNUM));
855
aa2a9a3c 856 natN_val = extract_unsigned_integer (buf, register_size (current_gdbarch, regnum));
004d836a
JJ
857
858 if (gr_addr != 0 && (natN_val == 0 || natN_val == 1))
859 {
860 /* Compute address of nat collection bits. */
861 CORE_ADDR nat_addr = gr_addr | 0x1f8;
862 CORE_ADDR nat_collection;
863 int natN_bit = (gr_addr >> 3) & 0x3f;
864 ULONGEST natN_mask = (1LL << natN_bit);
865 /* If our nat collection address is bigger than bsp, we have to get
866 the nat collection from rnat. Otherwise, we fetch the nat
867 collection from the computed address. */
868 if (nat_addr >= bsp)
869 {
870 regcache_cooked_read_unsigned (regcache, IA64_RNAT_REGNUM, &nat_collection);
871 if (natN_val)
872 nat_collection |= natN_mask;
873 else
874 nat_collection &= ~natN_mask;
875 regcache_cooked_write_unsigned (regcache, IA64_RNAT_REGNUM, nat_collection);
876 }
877 else
878 {
879 char nat_buf[8];
880 nat_collection = read_memory_integer (nat_addr, 8);
881 if (natN_val)
882 nat_collection |= natN_mask;
883 else
884 nat_collection &= ~natN_mask;
aa2a9a3c 885 store_unsigned_integer (nat_buf, register_size (current_gdbarch, regnum), nat_collection);
004d836a
JJ
886 write_memory (nat_addr, nat_buf, 8);
887 }
888 }
889 }
890 else if (VP0_REGNUM <= regnum && regnum <= VP63_REGNUM)
891 {
892 ULONGEST pr;
893 ULONGEST cfm;
894 ULONGEST prN_val;
895 ULONGEST prN_mask;
896
897 regcache_cooked_read_unsigned (regcache, IA64_PR_REGNUM, &pr);
898 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
899
900 if (VP16_REGNUM <= regnum && regnum <= VP63_REGNUM)
901 {
902 /* Fetch predicate register rename base from current frame
903 marker for this frame. */
904 int rrb_pr = (cfm >> 32) & 0x3f;
905
906 /* Adjust the register number to account for register rotation. */
907 regnum = VP16_REGNUM
908 + ((regnum - VP16_REGNUM) + rrb_pr) % 48;
909 }
aa2a9a3c 910 prN_val = extract_unsigned_integer (buf, register_size (current_gdbarch, regnum));
004d836a
JJ
911 prN_mask = (1LL << (regnum - VP0_REGNUM));
912 if (prN_val == 0)
913 pr &= ~prN_mask;
914 else if (prN_val == 1)
915 pr |= prN_mask;
916 regcache_cooked_write_unsigned (regcache, IA64_PR_REGNUM, pr);
244bc108 917 }
16461d7d
KB
918}
919
004d836a
JJ
920/* The ia64 needs to convert between various ieee floating-point formats
921 and the special ia64 floating point register format. */
922
923static int
924ia64_convert_register_p (int regno, struct type *type)
925{
926 return (regno >= IA64_FR0_REGNUM && regno <= IA64_FR127_REGNUM);
927}
928
929static void
930ia64_register_to_value (struct frame_info *frame, int regnum,
88d82102 931 struct type *valtype, gdb_byte *out)
004d836a
JJ
932{
933 char in[MAX_REGISTER_SIZE];
934 frame_register_read (frame, regnum, in);
935 convert_typed_floating (in, builtin_type_ia64_ext, out, valtype);
936}
937
938static void
939ia64_value_to_register (struct frame_info *frame, int regnum,
88d82102 940 struct type *valtype, const gdb_byte *in)
004d836a
JJ
941{
942 char out[MAX_REGISTER_SIZE];
943 convert_typed_floating (in, valtype, out, builtin_type_ia64_ext);
944 put_frame_register (frame, regnum, out);
945}
946
947
58ab00f9
KB
948/* Limit the number of skipped non-prologue instructions since examining
949 of the prologue is expensive. */
5ea2bd7f 950static int max_skip_non_prologue_insns = 40;
58ab00f9
KB
951
952/* Given PC representing the starting address of a function, and
953 LIM_PC which is the (sloppy) limit to which to scan when looking
954 for a prologue, attempt to further refine this limit by using
955 the line data in the symbol table. If successful, a better guess
956 on where the prologue ends is returned, otherwise the previous
957 value of lim_pc is returned. TRUST_LIMIT is a pointer to a flag
958 which will be set to indicate whether the returned limit may be
959 used with no further scanning in the event that the function is
960 frameless. */
961
634aa483
AC
962/* FIXME: cagney/2004-02-14: This function and logic have largely been
963 superseded by skip_prologue_using_sal. */
964
58ab00f9
KB
965static CORE_ADDR
966refine_prologue_limit (CORE_ADDR pc, CORE_ADDR lim_pc, int *trust_limit)
967{
968 struct symtab_and_line prologue_sal;
969 CORE_ADDR start_pc = pc;
39312971
JB
970 CORE_ADDR end_pc;
971
972 /* The prologue can not possibly go past the function end itself,
973 so we can already adjust LIM_PC accordingly. */
974 if (find_pc_partial_function (pc, NULL, NULL, &end_pc) && end_pc < lim_pc)
975 lim_pc = end_pc;
58ab00f9
KB
976
977 /* Start off not trusting the limit. */
978 *trust_limit = 0;
979
980 prologue_sal = find_pc_line (pc, 0);
981 if (prologue_sal.line != 0)
982 {
983 int i;
984 CORE_ADDR addr = prologue_sal.end;
985
986 /* Handle the case in which compiler's optimizer/scheduler
987 has moved instructions into the prologue. We scan ahead
988 in the function looking for address ranges whose corresponding
989 line number is less than or equal to the first one that we
990 found for the function. (It can be less than when the
991 scheduler puts a body instruction before the first prologue
992 instruction.) */
993 for (i = 2 * max_skip_non_prologue_insns;
994 i > 0 && (lim_pc == 0 || addr < lim_pc);
995 i--)
996 {
997 struct symtab_and_line sal;
998
999 sal = find_pc_line (addr, 0);
1000 if (sal.line == 0)
1001 break;
1002 if (sal.line <= prologue_sal.line
1003 && sal.symtab == prologue_sal.symtab)
1004 {
1005 prologue_sal = sal;
1006 }
1007 addr = sal.end;
1008 }
1009
1010 if (lim_pc == 0 || prologue_sal.end < lim_pc)
1011 {
1012 lim_pc = prologue_sal.end;
1013 if (start_pc == get_pc_function_start (lim_pc))
1014 *trust_limit = 1;
1015 }
1016 }
1017 return lim_pc;
1018}
1019
16461d7d
KB
1020#define isScratch(_regnum_) ((_regnum_) == 2 || (_regnum_) == 3 \
1021 || (8 <= (_regnum_) && (_regnum_) <= 11) \
1022 || (14 <= (_regnum_) && (_regnum_) <= 31))
1023#define imm9(_instr_) \
1024 ( ((((_instr_) & 0x01000000000LL) ? -1 : 0) << 8) \
1025 | (((_instr_) & 0x00008000000LL) >> 20) \
1026 | (((_instr_) & 0x00000001fc0LL) >> 6))
1027
004d836a
JJ
1028/* Allocate and initialize a frame cache. */
1029
1030static struct ia64_frame_cache *
1031ia64_alloc_frame_cache (void)
1032{
1033 struct ia64_frame_cache *cache;
1034 int i;
1035
1036 cache = FRAME_OBSTACK_ZALLOC (struct ia64_frame_cache);
1037
1038 /* Base address. */
1039 cache->base = 0;
1040 cache->pc = 0;
1041 cache->cfm = 0;
4afcc598 1042 cache->prev_cfm = 0;
004d836a
JJ
1043 cache->sof = 0;
1044 cache->sol = 0;
1045 cache->sor = 0;
1046 cache->bsp = 0;
1047 cache->fp_reg = 0;
1048 cache->frameless = 1;
1049
1050 for (i = 0; i < NUM_IA64_RAW_REGS; i++)
1051 cache->saved_regs[i] = 0;
1052
1053 return cache;
1054}
1055
16461d7d 1056static CORE_ADDR
004d836a 1057examine_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct frame_info *next_frame, struct ia64_frame_cache *cache)
16461d7d
KB
1058{
1059 CORE_ADDR next_pc;
1060 CORE_ADDR last_prologue_pc = pc;
16461d7d
KB
1061 instruction_type it;
1062 long long instr;
16461d7d
KB
1063 int cfm_reg = 0;
1064 int ret_reg = 0;
1065 int fp_reg = 0;
1066 int unat_save_reg = 0;
1067 int pr_save_reg = 0;
1068 int mem_stack_frame_size = 0;
1069 int spill_reg = 0;
1070 CORE_ADDR spill_addr = 0;
0927a22b
KB
1071 char instores[8];
1072 char infpstores[8];
5ea2bd7f 1073 char reg_contents[256];
58ab00f9 1074 int trust_limit;
004d836a
JJ
1075 int frameless = 1;
1076 int i;
1077 CORE_ADDR addr;
1078 char buf[8];
1079 CORE_ADDR bof, sor, sol, sof, cfm, rrb_gr;
0927a22b
KB
1080
1081 memset (instores, 0, sizeof instores);
1082 memset (infpstores, 0, sizeof infpstores);
5ea2bd7f 1083 memset (reg_contents, 0, sizeof reg_contents);
16461d7d 1084
004d836a
JJ
1085 if (cache->after_prologue != 0
1086 && cache->after_prologue <= lim_pc)
1087 return cache->after_prologue;
16461d7d 1088
58ab00f9 1089 lim_pc = refine_prologue_limit (pc, lim_pc, &trust_limit);
16461d7d 1090 next_pc = fetch_instruction (pc, &it, &instr);
5ea2bd7f
JJ
1091
1092 /* We want to check if we have a recognizable function start before we
1093 look ahead for a prologue. */
16461d7d
KB
1094 if (pc < lim_pc && next_pc
1095 && it == M && ((instr & 0x1ee0000003fLL) == 0x02c00000000LL))
1096 {
5ea2bd7f 1097 /* alloc - start of a regular function. */
16461d7d
KB
1098 int sor = (int) ((instr & 0x00078000000LL) >> 27);
1099 int sol = (int) ((instr & 0x00007f00000LL) >> 20);
1100 int sof = (int) ((instr & 0x000000fe000LL) >> 13);
16461d7d 1101 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
004d836a
JJ
1102
1103 /* Verify that the current cfm matches what we think is the
1104 function start. If we have somehow jumped within a function,
1105 we do not want to interpret the prologue and calculate the
1106 addresses of various registers such as the return address.
1107 We will instead treat the frame as frameless. */
1108 if (!next_frame ||
1109 (sof == (cache->cfm & 0x7f) &&
1110 sol == ((cache->cfm >> 7) & 0x7f)))
1111 frameless = 0;
1112
16461d7d
KB
1113 cfm_reg = rN;
1114 last_prologue_pc = next_pc;
1115 pc = next_pc;
1116 }
1117 else
58ab00f9 1118 {
5ea2bd7f
JJ
1119 /* Look for a leaf routine. */
1120 if (pc < lim_pc && next_pc
1121 && (it == I || it == M)
1122 && ((instr & 0x1ee00000000LL) == 0x10800000000LL))
1123 {
1124 /* adds rN = imm14, rM (or mov rN, rM when imm14 is 0) */
1125 int imm = (int) ((((instr & 0x01000000000LL) ? -1 : 0) << 13)
1126 | ((instr & 0x001f8000000LL) >> 20)
1127 | ((instr & 0x000000fe000LL) >> 13));
1128 int rM = (int) ((instr & 0x00007f00000LL) >> 20);
1129 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
1130 int qp = (int) (instr & 0x0000000003fLL);
1131 if (qp == 0 && rN == 2 && imm == 0 && rM == 12 && fp_reg == 0)
1132 {
1133 /* mov r2, r12 - beginning of leaf routine */
1134 fp_reg = rN;
5ea2bd7f
JJ
1135 last_prologue_pc = next_pc;
1136 }
1137 }
1138
1139 /* If we don't recognize a regular function or leaf routine, we are
1140 done. */
1141 if (!fp_reg)
1142 {
1143 pc = lim_pc;
1144 if (trust_limit)
1145 last_prologue_pc = lim_pc;
1146 }
58ab00f9 1147 }
16461d7d
KB
1148
1149 /* Loop, looking for prologue instructions, keeping track of
1150 where preserved registers were spilled. */
1151 while (pc < lim_pc)
1152 {
1153 next_pc = fetch_instruction (pc, &it, &instr);
1154 if (next_pc == 0)
1155 break;
1156
594706e6 1157 if (it == B && ((instr & 0x1e1f800003fLL) != 0x04000000000LL))
0927a22b 1158 {
102d615a
JJ
1159 /* Exit loop upon hitting a non-nop branch instruction. */
1160 if (trust_limit)
1161 lim_pc = pc;
1162 break;
1163 }
1164 else if (((instr & 0x3fLL) != 0LL) &&
1165 (frameless || ret_reg != 0))
1166 {
1167 /* Exit loop upon hitting a predicated instruction if
1168 we already have the return register or if we are frameless. */
5ea2bd7f
JJ
1169 if (trust_limit)
1170 lim_pc = pc;
0927a22b
KB
1171 break;
1172 }
1173 else if (it == I && ((instr & 0x1eff8000000LL) == 0x00188000000LL))
16461d7d
KB
1174 {
1175 /* Move from BR */
1176 int b2 = (int) ((instr & 0x0000000e000LL) >> 13);
1177 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
1178 int qp = (int) (instr & 0x0000000003f);
1179
1180 if (qp == 0 && b2 == 0 && rN >= 32 && ret_reg == 0)
1181 {
1182 ret_reg = rN;
1183 last_prologue_pc = next_pc;
1184 }
1185 }
1186 else if ((it == I || it == M)
1187 && ((instr & 0x1ee00000000LL) == 0x10800000000LL))
1188 {
1189 /* adds rN = imm14, rM (or mov rN, rM when imm14 is 0) */
1190 int imm = (int) ((((instr & 0x01000000000LL) ? -1 : 0) << 13)
1191 | ((instr & 0x001f8000000LL) >> 20)
1192 | ((instr & 0x000000fe000LL) >> 13));
1193 int rM = (int) ((instr & 0x00007f00000LL) >> 20);
1194 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
1195 int qp = (int) (instr & 0x0000000003fLL);
1196
1197 if (qp == 0 && rN >= 32 && imm == 0 && rM == 12 && fp_reg == 0)
1198 {
1199 /* mov rN, r12 */
1200 fp_reg = rN;
1201 last_prologue_pc = next_pc;
1202 }
1203 else if (qp == 0 && rN == 12 && rM == 12)
1204 {
1205 /* adds r12, -mem_stack_frame_size, r12 */
1206 mem_stack_frame_size -= imm;
1207 last_prologue_pc = next_pc;
1208 }
1209 else if (qp == 0 && rN == 2
1210 && ((rM == fp_reg && fp_reg != 0) || rM == 12))
1211 {
004d836a
JJ
1212 char buf[MAX_REGISTER_SIZE];
1213 CORE_ADDR saved_sp = 0;
16461d7d
KB
1214 /* adds r2, spilloffset, rFramePointer
1215 or
1216 adds r2, spilloffset, r12
1217
1218 Get ready for stf.spill or st8.spill instructions.
1219 The address to start spilling at is loaded into r2.
1220 FIXME: Why r2? That's what gcc currently uses; it
1221 could well be different for other compilers. */
1222
1223 /* Hmm... whether or not this will work will depend on
1224 where the pc is. If it's still early in the prologue
1225 this'll be wrong. FIXME */
004d836a
JJ
1226 if (next_frame)
1227 {
1228 frame_unwind_register (next_frame, sp_regnum, buf);
1229 saved_sp = extract_unsigned_integer (buf, 8);
1230 }
1231 spill_addr = saved_sp
16461d7d
KB
1232 + (rM == 12 ? 0 : mem_stack_frame_size)
1233 + imm;
1234 spill_reg = rN;
1235 last_prologue_pc = next_pc;
1236 }
5ea2bd7f
JJ
1237 else if (qp == 0 && rM >= 32 && rM < 40 && !instores[rM] &&
1238 rN < 256 && imm == 0)
1239 {
1240 /* mov rN, rM where rM is an input register */
1241 reg_contents[rN] = rM;
1242 last_prologue_pc = next_pc;
1243 }
1244 else if (frameless && qp == 0 && rN == fp_reg && imm == 0 &&
1245 rM == 2)
1246 {
1247 /* mov r12, r2 */
1248 last_prologue_pc = next_pc;
1249 break;
1250 }
16461d7d
KB
1251 }
1252 else if (it == M
1253 && ( ((instr & 0x1efc0000000LL) == 0x0eec0000000LL)
1254 || ((instr & 0x1ffc8000000LL) == 0x0cec0000000LL) ))
1255 {
1256 /* stf.spill [rN] = fM, imm9
1257 or
1258 stf.spill [rN] = fM */
1259
1260 int imm = imm9(instr);
1261 int rN = (int) ((instr & 0x00007f00000LL) >> 20);
1262 int fM = (int) ((instr & 0x000000fe000LL) >> 13);
1263 int qp = (int) (instr & 0x0000000003fLL);
1264 if (qp == 0 && rN == spill_reg && spill_addr != 0
1265 && ((2 <= fM && fM <= 5) || (16 <= fM && fM <= 31)))
1266 {
004d836a 1267 cache->saved_regs[IA64_FR0_REGNUM + fM] = spill_addr;
16461d7d 1268
594706e6 1269 if ((instr & 0x1efc0000000LL) == 0x0eec0000000LL)
16461d7d
KB
1270 spill_addr += imm;
1271 else
1272 spill_addr = 0; /* last one; must be done */
1273 last_prologue_pc = next_pc;
1274 }
1275 }
1276 else if ((it == M && ((instr & 0x1eff8000000LL) == 0x02110000000LL))
1277 || (it == I && ((instr & 0x1eff8000000LL) == 0x00050000000LL)) )
1278 {
1279 /* mov.m rN = arM
1280 or
1281 mov.i rN = arM */
1282
1283 int arM = (int) ((instr & 0x00007f00000LL) >> 20);
1284 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
1285 int qp = (int) (instr & 0x0000000003fLL);
1286 if (qp == 0 && isScratch (rN) && arM == 36 /* ar.unat */)
1287 {
1288 /* We have something like "mov.m r3 = ar.unat". Remember the
1289 r3 (or whatever) and watch for a store of this register... */
1290 unat_save_reg = rN;
1291 last_prologue_pc = next_pc;
1292 }
1293 }
1294 else if (it == I && ((instr & 0x1eff8000000LL) == 0x00198000000LL))
1295 {
1296 /* mov rN = pr */
1297 int rN = (int) ((instr & 0x00000001fc0LL) >> 6);
1298 int qp = (int) (instr & 0x0000000003fLL);
1299 if (qp == 0 && isScratch (rN))
1300 {
1301 pr_save_reg = rN;
1302 last_prologue_pc = next_pc;
1303 }
1304 }
1305 else if (it == M
1306 && ( ((instr & 0x1ffc8000000LL) == 0x08cc0000000LL)
1307 || ((instr & 0x1efc0000000LL) == 0x0acc0000000LL)))
1308 {
1309 /* st8 [rN] = rM
1310 or
1311 st8 [rN] = rM, imm9 */
1312 int rN = (int) ((instr & 0x00007f00000LL) >> 20);
1313 int rM = (int) ((instr & 0x000000fe000LL) >> 13);
1314 int qp = (int) (instr & 0x0000000003fLL);
5ea2bd7f 1315 int indirect = rM < 256 ? reg_contents[rM] : 0;
16461d7d
KB
1316 if (qp == 0 && rN == spill_reg && spill_addr != 0
1317 && (rM == unat_save_reg || rM == pr_save_reg))
1318 {
1319 /* We've found a spill of either the UNAT register or the PR
1320 register. (Well, not exactly; what we've actually found is
1321 a spill of the register that UNAT or PR was moved to).
1322 Record that fact and move on... */
1323 if (rM == unat_save_reg)
1324 {
1325 /* Track UNAT register */
004d836a 1326 cache->saved_regs[IA64_UNAT_REGNUM] = spill_addr;
16461d7d
KB
1327 unat_save_reg = 0;
1328 }
1329 else
1330 {
1331 /* Track PR register */
004d836a 1332 cache->saved_regs[IA64_PR_REGNUM] = spill_addr;
16461d7d
KB
1333 pr_save_reg = 0;
1334 }
1335 if ((instr & 0x1efc0000000LL) == 0x0acc0000000LL)
1336 /* st8 [rN] = rM, imm9 */
1337 spill_addr += imm9(instr);
1338 else
1339 spill_addr = 0; /* must be done spilling */
1340 last_prologue_pc = next_pc;
1341 }
0927a22b
KB
1342 else if (qp == 0 && 32 <= rM && rM < 40 && !instores[rM-32])
1343 {
1344 /* Allow up to one store of each input register. */
1345 instores[rM-32] = 1;
1346 last_prologue_pc = next_pc;
1347 }
5ea2bd7f
JJ
1348 else if (qp == 0 && 32 <= indirect && indirect < 40 &&
1349 !instores[indirect-32])
1350 {
1351 /* Allow an indirect store of an input register. */
1352 instores[indirect-32] = 1;
1353 last_prologue_pc = next_pc;
1354 }
0927a22b
KB
1355 }
1356 else if (it == M && ((instr & 0x1ff08000000LL) == 0x08c00000000LL))
1357 {
1358 /* One of
1359 st1 [rN] = rM
1360 st2 [rN] = rM
1361 st4 [rN] = rM
1362 st8 [rN] = rM
1363 Note that the st8 case is handled in the clause above.
1364
1365 Advance over stores of input registers. One store per input
1366 register is permitted. */
1367 int rM = (int) ((instr & 0x000000fe000LL) >> 13);
1368 int qp = (int) (instr & 0x0000000003fLL);
5ea2bd7f 1369 int indirect = rM < 256 ? reg_contents[rM] : 0;
0927a22b
KB
1370 if (qp == 0 && 32 <= rM && rM < 40 && !instores[rM-32])
1371 {
1372 instores[rM-32] = 1;
1373 last_prologue_pc = next_pc;
1374 }
5ea2bd7f
JJ
1375 else if (qp == 0 && 32 <= indirect && indirect < 40 &&
1376 !instores[indirect-32])
1377 {
1378 /* Allow an indirect store of an input register. */
1379 instores[indirect-32] = 1;
1380 last_prologue_pc = next_pc;
1381 }
0927a22b
KB
1382 }
1383 else if (it == M && ((instr & 0x1ff88000000LL) == 0x0cc80000000LL))
1384 {
1385 /* Either
1386 stfs [rN] = fM
1387 or
1388 stfd [rN] = fM
1389
1390 Advance over stores of floating point input registers. Again
1391 one store per register is permitted */
1392 int fM = (int) ((instr & 0x000000fe000LL) >> 13);
1393 int qp = (int) (instr & 0x0000000003fLL);
1394 if (qp == 0 && 8 <= fM && fM < 16 && !infpstores[fM - 8])
1395 {
1396 infpstores[fM-8] = 1;
1397 last_prologue_pc = next_pc;
1398 }
16461d7d
KB
1399 }
1400 else if (it == M
1401 && ( ((instr & 0x1ffc8000000LL) == 0x08ec0000000LL)
1402 || ((instr & 0x1efc0000000LL) == 0x0aec0000000LL)))
1403 {
1404 /* st8.spill [rN] = rM
1405 or
1406 st8.spill [rN] = rM, imm9 */
1407 int rN = (int) ((instr & 0x00007f00000LL) >> 20);
1408 int rM = (int) ((instr & 0x000000fe000LL) >> 13);
1409 int qp = (int) (instr & 0x0000000003fLL);
1410 if (qp == 0 && rN == spill_reg && 4 <= rM && rM <= 7)
1411 {
1412 /* We've found a spill of one of the preserved general purpose
1413 regs. Record the spill address and advance the spill
1414 register if appropriate. */
004d836a 1415 cache->saved_regs[IA64_GR0_REGNUM + rM] = spill_addr;
16461d7d
KB
1416 if ((instr & 0x1efc0000000LL) == 0x0aec0000000LL)
1417 /* st8.spill [rN] = rM, imm9 */
1418 spill_addr += imm9(instr);
1419 else
1420 spill_addr = 0; /* Done spilling */
1421 last_prologue_pc = next_pc;
1422 }
1423 }
16461d7d
KB
1424
1425 pc = next_pc;
1426 }
1427
004d836a
JJ
1428 /* If not frameless and we aren't called by skip_prologue, then we need to calculate
1429 registers for the previous frame which will be needed later. */
16461d7d 1430
004d836a 1431 if (!frameless && next_frame)
da50a4b7 1432 {
004d836a
JJ
1433 /* Extract the size of the rotating portion of the stack
1434 frame and the register rename base from the current
1435 frame marker. */
1436 cfm = cache->cfm;
1437 sor = cache->sor;
1438 sof = cache->sof;
1439 sol = cache->sol;
1440 rrb_gr = (cfm >> 18) & 0x7f;
1441
1442 /* Find the bof (beginning of frame). */
1443 bof = rse_address_add (cache->bsp, -sof);
1444
1445 for (i = 0, addr = bof;
1446 i < sof;
1447 i++, addr += 8)
1448 {
1449 if (IS_NaT_COLLECTION_ADDR (addr))
1450 {
1451 addr += 8;
1452 }
1453 if (i+32 == cfm_reg)
1454 cache->saved_regs[IA64_CFM_REGNUM] = addr;
1455 if (i+32 == ret_reg)
1456 cache->saved_regs[IA64_VRAP_REGNUM] = addr;
1457 if (i+32 == fp_reg)
1458 cache->saved_regs[IA64_VFP_REGNUM] = addr;
1459 }
16461d7d 1460
004d836a
JJ
1461 /* For the previous argument registers we require the previous bof.
1462 If we can't find the previous cfm, then we can do nothing. */
4afcc598 1463 cfm = 0;
004d836a
JJ
1464 if (cache->saved_regs[IA64_CFM_REGNUM] != 0)
1465 {
1466 cfm = read_memory_integer (cache->saved_regs[IA64_CFM_REGNUM], 8);
4afcc598
JJ
1467 }
1468 else if (cfm_reg != 0)
1469 {
1470 frame_unwind_register (next_frame, cfm_reg, buf);
1471 cfm = extract_unsigned_integer (buf, 8);
1472 }
1473 cache->prev_cfm = cfm;
1474
1475 if (cfm != 0)
1476 {
004d836a
JJ
1477 sor = ((cfm >> 14) & 0xf) * 8;
1478 sof = (cfm & 0x7f);
1479 sol = (cfm >> 7) & 0x7f;
1480 rrb_gr = (cfm >> 18) & 0x7f;
1481
1482 /* The previous bof only requires subtraction of the sol (size of locals)
1483 due to the overlap between output and input of subsequent frames. */
1484 bof = rse_address_add (bof, -sol);
1485
1486 for (i = 0, addr = bof;
1487 i < sof;
1488 i++, addr += 8)
1489 {
1490 if (IS_NaT_COLLECTION_ADDR (addr))
1491 {
1492 addr += 8;
1493 }
1494 if (i < sor)
1495 cache->saved_regs[IA64_GR32_REGNUM + ((i + (sor - rrb_gr)) % sor)]
1496 = addr;
1497 else
1498 cache->saved_regs[IA64_GR32_REGNUM + i] = addr;
1499 }
1500
1501 }
1502 }
1503
5ea2bd7f
JJ
1504 /* Try and trust the lim_pc value whenever possible. */
1505 if (trust_limit && lim_pc >= last_prologue_pc)
004d836a
JJ
1506 last_prologue_pc = lim_pc;
1507
1508 cache->frameless = frameless;
1509 cache->after_prologue = last_prologue_pc;
1510 cache->mem_stack_frame_size = mem_stack_frame_size;
1511 cache->fp_reg = fp_reg;
5ea2bd7f 1512
16461d7d
KB
1513 return last_prologue_pc;
1514}
1515
1516CORE_ADDR
1517ia64_skip_prologue (CORE_ADDR pc)
1518{
004d836a
JJ
1519 struct ia64_frame_cache cache;
1520 cache.base = 0;
1521 cache.after_prologue = 0;
1522 cache.cfm = 0;
1523 cache.bsp = 0;
1524
1525 /* Call examine_prologue with - as third argument since we don't have a next frame pointer to send. */
1526 return examine_prologue (pc, pc+1024, 0, &cache);
16461d7d
KB
1527}
1528
004d836a
JJ
1529
1530/* Normal frames. */
1531
1532static struct ia64_frame_cache *
1533ia64_frame_cache (struct frame_info *next_frame, void **this_cache)
16461d7d 1534{
004d836a
JJ
1535 struct ia64_frame_cache *cache;
1536 char buf[8];
1537 CORE_ADDR cfm, sof, sol, bsp, psr;
1538 int i;
16461d7d 1539
004d836a
JJ
1540 if (*this_cache)
1541 return *this_cache;
16461d7d 1542
004d836a
JJ
1543 cache = ia64_alloc_frame_cache ();
1544 *this_cache = cache;
16461d7d 1545
004d836a
JJ
1546 frame_unwind_register (next_frame, sp_regnum, buf);
1547 cache->saved_sp = extract_unsigned_integer (buf, 8);
16461d7d 1548
004d836a
JJ
1549 /* We always want the bsp to point to the end of frame.
1550 This way, we can always get the beginning of frame (bof)
1551 by subtracting frame size. */
1552 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
1553 cache->bsp = extract_unsigned_integer (buf, 8);
1554
1555 frame_unwind_register (next_frame, IA64_PSR_REGNUM, buf);
1556 psr = extract_unsigned_integer (buf, 8);
1557
1558 frame_unwind_register (next_frame, IA64_CFM_REGNUM, buf);
1559 cfm = extract_unsigned_integer (buf, 8);
1560
1561 cache->sof = (cfm & 0x7f);
1562 cache->sol = (cfm >> 7) & 0x7f;
1563 cache->sor = ((cfm >> 14) & 0xf) * 8;
1564
1565 cache->cfm = cfm;
1566
93d42b30 1567 cache->pc = frame_func_unwind (next_frame, NORMAL_FRAME);
004d836a
JJ
1568
1569 if (cache->pc != 0)
1570 examine_prologue (cache->pc, frame_pc_unwind (next_frame), next_frame, cache);
1571
1572 cache->base = cache->saved_sp + cache->mem_stack_frame_size;
1573
1574 return cache;
16461d7d
KB
1575}
1576
a78f21af 1577static void
004d836a
JJ
1578ia64_frame_this_id (struct frame_info *next_frame, void **this_cache,
1579 struct frame_id *this_id)
16461d7d 1580{
004d836a
JJ
1581 struct ia64_frame_cache *cache =
1582 ia64_frame_cache (next_frame, this_cache);
16461d7d 1583
c5a27d9c 1584 /* If outermost frame, mark with null frame id. */
004d836a 1585 if (cache->base == 0)
c5a27d9c
JJ
1586 (*this_id) = null_frame_id;
1587 else
1588 (*this_id) = frame_id_build_special (cache->base, cache->pc, cache->bsp);
4afcc598
JJ
1589 if (gdbarch_debug >= 1)
1590 fprintf_unfiltered (gdb_stdlog,
78ced177
JJ
1591 "regular frame id: code 0x%s, stack 0x%s, special 0x%s, next_frame %p\n",
1592 paddr_nz (this_id->code_addr),
1593 paddr_nz (this_id->stack_addr),
1594 paddr_nz (cache->bsp), next_frame);
004d836a 1595}
244bc108 1596
004d836a
JJ
1597static void
1598ia64_frame_prev_register (struct frame_info *next_frame, void **this_cache,
1599 int regnum, int *optimizedp,
1600 enum lval_type *lvalp, CORE_ADDR *addrp,
88d82102 1601 int *realnump, gdb_byte *valuep)
004d836a
JJ
1602{
1603 struct ia64_frame_cache *cache =
1604 ia64_frame_cache (next_frame, this_cache);
1605 char dummy_valp[MAX_REGISTER_SIZE];
1606 char buf[8];
1607
1608 gdb_assert (regnum >= 0);
244bc108 1609
004d836a 1610 if (!target_has_registers)
8a3fe4f8 1611 error (_("No registers."));
244bc108 1612
004d836a
JJ
1613 *optimizedp = 0;
1614 *addrp = 0;
1615 *lvalp = not_lval;
1616 *realnump = -1;
244bc108 1617
004d836a
JJ
1618 /* Rather than check each time if valuep is non-null, supply a dummy buffer
1619 when valuep is not supplied. */
1620 if (!valuep)
1621 valuep = dummy_valp;
1622
aa2a9a3c 1623 memset (valuep, 0, register_size (current_gdbarch, regnum));
004d836a 1624
3e8c568d 1625 if (regnum == gdbarch_sp_regnum (current_gdbarch))
16461d7d
KB
1626 {
1627 /* Handle SP values for all frames but the topmost. */
aa2a9a3c 1628 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum),
004d836a 1629 cache->base);
16461d7d
KB
1630 }
1631 else if (regnum == IA64_BSP_REGNUM)
1632 {
004d836a
JJ
1633 char cfm_valuep[MAX_REGISTER_SIZE];
1634 int cfm_optim;
1635 int cfm_realnum;
1636 enum lval_type cfm_lval;
1637 CORE_ADDR cfm_addr;
1638 CORE_ADDR bsp, prev_cfm, prev_bsp;
1639
1640 /* We want to calculate the previous bsp as the end of the previous register stack frame.
1641 This corresponds to what the hardware bsp register will be if we pop the frame
1642 back which is why we might have been called. We know the beginning of the current
aa2a9a3c 1643 frame is cache->bsp - cache->sof. This value in the previous frame points to
004d836a
JJ
1644 the start of the output registers. We can calculate the end of that frame by adding
1645 the size of output (sof (size of frame) - sol (size of locals)). */
1646 ia64_frame_prev_register (next_frame, this_cache, IA64_CFM_REGNUM,
1647 &cfm_optim, &cfm_lval, &cfm_addr, &cfm_realnum, cfm_valuep);
1648 prev_cfm = extract_unsigned_integer (cfm_valuep, 8);
1649
1650 bsp = rse_address_add (cache->bsp, -(cache->sof));
1651 prev_bsp = rse_address_add (bsp, (prev_cfm & 0x7f) - ((prev_cfm >> 7) & 0x7f));
1652
aa2a9a3c 1653 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum),
004d836a
JJ
1654 prev_bsp);
1655 }
1656 else if (regnum == IA64_CFM_REGNUM)
1657 {
4afcc598
JJ
1658 CORE_ADDR addr = cache->saved_regs[IA64_CFM_REGNUM];
1659
1660 if (addr != 0)
004d836a 1661 {
4afcc598
JJ
1662 *lvalp = lval_memory;
1663 *addrp = addr;
1664 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
004d836a 1665 }
4afcc598
JJ
1666 else if (cache->prev_cfm)
1667 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum), cache->prev_cfm);
1668 else if (cache->frameless)
004d836a 1669 {
4afcc598
JJ
1670 CORE_ADDR cfm = 0;
1671 frame_unwind_register (next_frame, IA64_PFS_REGNUM, valuep);
004d836a 1672 }
16461d7d
KB
1673 }
1674 else if (regnum == IA64_VFP_REGNUM)
1675 {
1676 /* If the function in question uses an automatic register (r32-r127)
1677 for the frame pointer, it'll be found by ia64_find_saved_register()
1678 above. If the function lacks one of these frame pointers, we can
004d836a
JJ
1679 still provide a value since we know the size of the frame. */
1680 CORE_ADDR vfp = cache->base;
aa2a9a3c 1681 store_unsigned_integer (valuep, register_size (current_gdbarch, IA64_VFP_REGNUM), vfp);
16461d7d 1682 }
004d836a 1683 else if (VP0_REGNUM <= regnum && regnum <= VP63_REGNUM)
16461d7d 1684 {
004d836a 1685 char pr_valuep[MAX_REGISTER_SIZE];
16461d7d 1686 int pr_optim;
004d836a 1687 int pr_realnum;
16461d7d
KB
1688 enum lval_type pr_lval;
1689 CORE_ADDR pr_addr;
004d836a
JJ
1690 ULONGEST prN_val;
1691 ia64_frame_prev_register (next_frame, this_cache, IA64_PR_REGNUM,
1692 &pr_optim, &pr_lval, &pr_addr, &pr_realnum, pr_valuep);
1693 if (VP16_REGNUM <= regnum && regnum <= VP63_REGNUM)
3a854e23
KB
1694 {
1695 /* Fetch predicate register rename base from current frame
004d836a
JJ
1696 marker for this frame. */
1697 int rrb_pr = (cache->cfm >> 32) & 0x3f;
3a854e23 1698
004d836a
JJ
1699 /* Adjust the register number to account for register rotation. */
1700 regnum = VP16_REGNUM
1701 + ((regnum - VP16_REGNUM) + rrb_pr) % 48;
3a854e23 1702 }
004d836a
JJ
1703 prN_val = extract_bit_field ((unsigned char *) pr_valuep,
1704 regnum - VP0_REGNUM, 1);
aa2a9a3c 1705 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum), prN_val);
16461d7d
KB
1706 }
1707 else if (IA64_NAT0_REGNUM <= regnum && regnum <= IA64_NAT31_REGNUM)
1708 {
004d836a 1709 char unat_valuep[MAX_REGISTER_SIZE];
16461d7d 1710 int unat_optim;
004d836a 1711 int unat_realnum;
16461d7d
KB
1712 enum lval_type unat_lval;
1713 CORE_ADDR unat_addr;
004d836a
JJ
1714 ULONGEST unatN_val;
1715 ia64_frame_prev_register (next_frame, this_cache, IA64_UNAT_REGNUM,
1716 &unat_optim, &unat_lval, &unat_addr, &unat_realnum, unat_valuep);
1717 unatN_val = extract_bit_field ((unsigned char *) unat_valuep,
16461d7d 1718 regnum - IA64_NAT0_REGNUM, 1);
aa2a9a3c 1719 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum),
16461d7d 1720 unatN_val);
16461d7d
KB
1721 }
1722 else if (IA64_NAT32_REGNUM <= regnum && regnum <= IA64_NAT127_REGNUM)
1723 {
1724 int natval = 0;
1725 /* Find address of general register corresponding to nat bit we're
004d836a
JJ
1726 interested in. */
1727 CORE_ADDR gr_addr;
244bc108 1728
004d836a
JJ
1729 gr_addr = cache->saved_regs[regnum - IA64_NAT0_REGNUM
1730 + IA64_GR0_REGNUM];
1731 if (gr_addr != 0)
244bc108 1732 {
004d836a 1733 /* Compute address of nat collection bits. */
16461d7d 1734 CORE_ADDR nat_addr = gr_addr | 0x1f8;
004d836a 1735 CORE_ADDR bsp;
16461d7d
KB
1736 CORE_ADDR nat_collection;
1737 int nat_bit;
1738 /* If our nat collection address is bigger than bsp, we have to get
1739 the nat collection from rnat. Otherwise, we fetch the nat
004d836a
JJ
1740 collection from the computed address. */
1741 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
1742 bsp = extract_unsigned_integer (buf, 8);
16461d7d 1743 if (nat_addr >= bsp)
004d836a
JJ
1744 {
1745 frame_unwind_register (next_frame, IA64_RNAT_REGNUM, buf);
1746 nat_collection = extract_unsigned_integer (buf, 8);
1747 }
16461d7d
KB
1748 else
1749 nat_collection = read_memory_integer (nat_addr, 8);
1750 nat_bit = (gr_addr >> 3) & 0x3f;
1751 natval = (nat_collection >> nat_bit) & 1;
1752 }
004d836a 1753
aa2a9a3c 1754 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum), natval);
244bc108
KB
1755 }
1756 else if (regnum == IA64_IP_REGNUM)
1757 {
004d836a 1758 CORE_ADDR pc = 0;
4afcc598 1759 CORE_ADDR addr = cache->saved_regs[IA64_VRAP_REGNUM];
004d836a 1760
4afcc598 1761 if (addr != 0)
004d836a 1762 {
4afcc598
JJ
1763 *lvalp = lval_memory;
1764 *addrp = addr;
1765 read_memory (addr, buf, register_size (current_gdbarch, IA64_IP_REGNUM));
004d836a
JJ
1766 pc = extract_unsigned_integer (buf, 8);
1767 }
4afcc598 1768 else if (cache->frameless)
004d836a 1769 {
4afcc598
JJ
1770 frame_unwind_register (next_frame, IA64_BR0_REGNUM, buf);
1771 pc = extract_unsigned_integer (buf, 8);
244bc108 1772 }
004d836a
JJ
1773 pc &= ~0xf;
1774 store_unsigned_integer (valuep, 8, pc);
244bc108 1775 }
004d836a 1776 else if (regnum == IA64_PSR_REGNUM)
244bc108 1777 {
4afcc598
JJ
1778 /* We don't know how to get the complete previous PSR, but we need it for
1779 the slot information when we unwind the pc (pc is formed of IP register
1780 plus slot information from PSR). To get the previous slot information,
1781 we mask it off the return address. */
004d836a
JJ
1782 ULONGEST slot_num = 0;
1783 CORE_ADDR pc= 0;
1784 CORE_ADDR psr = 0;
4afcc598 1785 CORE_ADDR addr = cache->saved_regs[IA64_VRAP_REGNUM];
004d836a
JJ
1786
1787 frame_unwind_register (next_frame, IA64_PSR_REGNUM, buf);
1788 psr = extract_unsigned_integer (buf, 8);
1789
4afcc598 1790 if (addr != 0)
244bc108 1791 {
4afcc598
JJ
1792 *lvalp = lval_memory;
1793 *addrp = addr;
1794 read_memory (addr, buf, register_size (current_gdbarch, IA64_IP_REGNUM));
004d836a 1795 pc = extract_unsigned_integer (buf, 8);
244bc108 1796 }
4afcc598 1797 else if (cache->frameless)
004d836a 1798 {
4afcc598
JJ
1799 CORE_ADDR pc;
1800 frame_unwind_register (next_frame, IA64_BR0_REGNUM, buf);
1801 pc = extract_unsigned_integer (buf, 8);
004d836a
JJ
1802 }
1803 psr &= ~(3LL << 41);
1804 slot_num = pc & 0x3LL;
1805 psr |= (CORE_ADDR)slot_num << 41;
1806 store_unsigned_integer (valuep, 8, psr);
1807 }
4afcc598
JJ
1808 else if (regnum == IA64_BR0_REGNUM)
1809 {
1810 CORE_ADDR br0 = 0;
1811 CORE_ADDR addr = cache->saved_regs[IA64_BR0_REGNUM];
1812 if (addr != 0)
1813 {
1814 *lvalp = lval_memory;
1815 *addrp = addr;
1816 read_memory (addr, buf, register_size (current_gdbarch, IA64_BR0_REGNUM));
1817 br0 = extract_unsigned_integer (buf, 8);
1818 }
1819 store_unsigned_integer (valuep, 8, br0);
1820 }
004d836a
JJ
1821 else if ((regnum >= IA64_GR32_REGNUM && regnum <= IA64_GR127_REGNUM) ||
1822 (regnum >= V32_REGNUM && regnum <= V127_REGNUM))
1823 {
1824 CORE_ADDR addr = 0;
1825 if (regnum >= V32_REGNUM)
1826 regnum = IA64_GR32_REGNUM + (regnum - V32_REGNUM);
1827 addr = cache->saved_regs[regnum];
244bc108
KB
1828 if (addr != 0)
1829 {
004d836a
JJ
1830 *lvalp = lval_memory;
1831 *addrp = addr;
aa2a9a3c 1832 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
244bc108 1833 }
004d836a 1834 else if (cache->frameless)
244bc108 1835 {
004d836a
JJ
1836 char r_valuep[MAX_REGISTER_SIZE];
1837 int r_optim;
1838 int r_realnum;
1839 enum lval_type r_lval;
1840 CORE_ADDR r_addr;
1841 CORE_ADDR prev_cfm, prev_bsp, prev_bof;
1842 CORE_ADDR addr = 0;
1843 if (regnum >= V32_REGNUM)
1844 regnum = IA64_GR32_REGNUM + (regnum - V32_REGNUM);
1845 ia64_frame_prev_register (next_frame, this_cache, IA64_CFM_REGNUM,
1846 &r_optim, &r_lval, &r_addr, &r_realnum, r_valuep);
1847 prev_cfm = extract_unsigned_integer (r_valuep, 8);
1848 ia64_frame_prev_register (next_frame, this_cache, IA64_BSP_REGNUM,
1849 &r_optim, &r_lval, &r_addr, &r_realnum, r_valuep);
1850 prev_bsp = extract_unsigned_integer (r_valuep, 8);
1851 prev_bof = rse_address_add (prev_bsp, -(prev_cfm & 0x7f));
1852
1853 addr = rse_address_add (prev_bof, (regnum - IA64_GR32_REGNUM));
1854 *lvalp = lval_memory;
1855 *addrp = addr;
aa2a9a3c 1856 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
244bc108 1857 }
16461d7d
KB
1858 }
1859 else
1860 {
004d836a 1861 CORE_ADDR addr = 0;
3a854e23
KB
1862 if (IA64_FR32_REGNUM <= regnum && regnum <= IA64_FR127_REGNUM)
1863 {
1864 /* Fetch floating point register rename base from current
004d836a
JJ
1865 frame marker for this frame. */
1866 int rrb_fr = (cache->cfm >> 25) & 0x7f;
3a854e23
KB
1867
1868 /* Adjust the floating point register number to account for
004d836a 1869 register rotation. */
3a854e23
KB
1870 regnum = IA64_FR32_REGNUM
1871 + ((regnum - IA64_FR32_REGNUM) + rrb_fr) % 96;
1872 }
1873
004d836a
JJ
1874 /* If we have stored a memory address, access the register. */
1875 addr = cache->saved_regs[regnum];
1876 if (addr != 0)
1877 {
1878 *lvalp = lval_memory;
1879 *addrp = addr;
aa2a9a3c 1880 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
004d836a
JJ
1881 }
1882 /* Otherwise, punt and get the current value of the register. */
1883 else
1884 frame_unwind_register (next_frame, regnum, valuep);
16461d7d 1885 }
4afcc598
JJ
1886
1887 if (gdbarch_debug >= 1)
1888 fprintf_unfiltered (gdb_stdlog,
78ced177 1889 "regular prev register <%d> <%s> is 0x%s\n", regnum,
4afcc598 1890 (((unsigned) regnum <= IA64_NAT127_REGNUM)
78ced177
JJ
1891 ? ia64_register_names[regnum] : "r??"),
1892 paddr_nz (extract_unsigned_integer (valuep, 8)));
16461d7d 1893}
004d836a
JJ
1894
1895static const struct frame_unwind ia64_frame_unwind =
1896{
1897 NORMAL_FRAME,
1898 &ia64_frame_this_id,
1899 &ia64_frame_prev_register
1900};
1901
1902static const struct frame_unwind *
1903ia64_frame_sniffer (struct frame_info *next_frame)
1904{
1905 return &ia64_frame_unwind;
1906}
1907
1908/* Signal trampolines. */
1909
1910static void
1911ia64_sigtramp_frame_init_saved_regs (struct ia64_frame_cache *cache)
1912{
1913 if (SIGCONTEXT_REGISTER_ADDRESS)
1914 {
1915 int regno;
1916
1917 cache->saved_regs[IA64_VRAP_REGNUM] =
1918 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_IP_REGNUM);
1919 cache->saved_regs[IA64_CFM_REGNUM] =
1920 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_CFM_REGNUM);
1921 cache->saved_regs[IA64_PSR_REGNUM] =
1922 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_PSR_REGNUM);
004d836a 1923 cache->saved_regs[IA64_BSP_REGNUM] =
4afcc598 1924 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_BSP_REGNUM);
004d836a
JJ
1925 cache->saved_regs[IA64_RNAT_REGNUM] =
1926 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_RNAT_REGNUM);
1927 cache->saved_regs[IA64_CCV_REGNUM] =
1928 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_CCV_REGNUM);
1929 cache->saved_regs[IA64_UNAT_REGNUM] =
1930 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_UNAT_REGNUM);
1931 cache->saved_regs[IA64_FPSR_REGNUM] =
1932 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_FPSR_REGNUM);
1933 cache->saved_regs[IA64_PFS_REGNUM] =
1934 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_PFS_REGNUM);
1935 cache->saved_regs[IA64_LC_REGNUM] =
1936 SIGCONTEXT_REGISTER_ADDRESS (cache->base, IA64_LC_REGNUM);
1937 for (regno = IA64_GR1_REGNUM; regno <= IA64_GR31_REGNUM; regno++)
4afcc598
JJ
1938 cache->saved_regs[regno] =
1939 SIGCONTEXT_REGISTER_ADDRESS (cache->base, regno);
004d836a
JJ
1940 for (regno = IA64_BR0_REGNUM; regno <= IA64_BR7_REGNUM; regno++)
1941 cache->saved_regs[regno] =
1942 SIGCONTEXT_REGISTER_ADDRESS (cache->base, regno);
932644f0 1943 for (regno = IA64_FR2_REGNUM; regno <= IA64_FR31_REGNUM; regno++)
004d836a
JJ
1944 cache->saved_regs[regno] =
1945 SIGCONTEXT_REGISTER_ADDRESS (cache->base, regno);
1946 }
1947}
1948
1949static struct ia64_frame_cache *
1950ia64_sigtramp_frame_cache (struct frame_info *next_frame, void **this_cache)
1951{
1952 struct ia64_frame_cache *cache;
1953 CORE_ADDR addr;
1954 char buf[8];
1955 int i;
1956
1957 if (*this_cache)
1958 return *this_cache;
1959
1960 cache = ia64_alloc_frame_cache ();
1961
1962 frame_unwind_register (next_frame, sp_regnum, buf);
4afcc598
JJ
1963 /* Note that frame size is hard-coded below. We cannot calculate it
1964 via prologue examination. */
1965 cache->base = extract_unsigned_integer (buf, 8) + 16;
1966
1967 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
1968 cache->bsp = extract_unsigned_integer (buf, 8);
1969
1970 frame_unwind_register (next_frame, IA64_CFM_REGNUM, buf);
1971 cache->cfm = extract_unsigned_integer (buf, 8);
1972 cache->sof = cache->cfm & 0x7f;
004d836a
JJ
1973
1974 ia64_sigtramp_frame_init_saved_regs (cache);
1975
1976 *this_cache = cache;
1977 return cache;
1978}
1979
1980static void
1981ia64_sigtramp_frame_this_id (struct frame_info *next_frame,
1982 void **this_cache, struct frame_id *this_id)
1983{
1984 struct ia64_frame_cache *cache =
1985 ia64_sigtramp_frame_cache (next_frame, this_cache);
1986
4afcc598
JJ
1987 (*this_id) = frame_id_build_special (cache->base, frame_pc_unwind (next_frame), cache->bsp);
1988 if (gdbarch_debug >= 1)
1989 fprintf_unfiltered (gdb_stdlog,
78ced177
JJ
1990 "sigtramp frame id: code 0x%s, stack 0x%s, special 0x%s, next_frame %p\n",
1991 paddr_nz (this_id->code_addr),
1992 paddr_nz (this_id->stack_addr),
1993 paddr_nz (cache->bsp), next_frame);
004d836a
JJ
1994}
1995
1996static void
1997ia64_sigtramp_frame_prev_register (struct frame_info *next_frame,
1998 void **this_cache,
1999 int regnum, int *optimizedp,
2000 enum lval_type *lvalp, CORE_ADDR *addrp,
88d82102 2001 int *realnump, gdb_byte *valuep)
004d836a 2002{
4afcc598
JJ
2003 char dummy_valp[MAX_REGISTER_SIZE];
2004 char buf[MAX_REGISTER_SIZE];
2005
2006 struct ia64_frame_cache *cache =
2007 ia64_sigtramp_frame_cache (next_frame, this_cache);
2008
2009 gdb_assert (regnum >= 0);
2010
2011 if (!target_has_registers)
8a3fe4f8 2012 error (_("No registers."));
4afcc598
JJ
2013
2014 *optimizedp = 0;
2015 *addrp = 0;
2016 *lvalp = not_lval;
2017 *realnump = -1;
2018
2019 /* Rather than check each time if valuep is non-null, supply a dummy buffer
2020 when valuep is not supplied. */
2021 if (!valuep)
2022 valuep = dummy_valp;
2023
2024 memset (valuep, 0, register_size (current_gdbarch, regnum));
2025
2026 if (regnum == IA64_IP_REGNUM)
2027 {
2028 CORE_ADDR pc = 0;
2029 CORE_ADDR addr = cache->saved_regs[IA64_VRAP_REGNUM];
2030
2031 if (addr != 0)
2032 {
2033 *lvalp = lval_memory;
2034 *addrp = addr;
2035 read_memory (addr, buf, register_size (current_gdbarch, IA64_IP_REGNUM));
2036 pc = extract_unsigned_integer (buf, 8);
2037 }
2038 pc &= ~0xf;
2039 store_unsigned_integer (valuep, 8, pc);
2040 }
2041 else if ((regnum >= IA64_GR32_REGNUM && regnum <= IA64_GR127_REGNUM) ||
2042 (regnum >= V32_REGNUM && regnum <= V127_REGNUM))
2043 {
2044 CORE_ADDR addr = 0;
2045 if (regnum >= V32_REGNUM)
2046 regnum = IA64_GR32_REGNUM + (regnum - V32_REGNUM);
2047 addr = cache->saved_regs[regnum];
2048 if (addr != 0)
2049 {
2050 *lvalp = lval_memory;
2051 *addrp = addr;
2052 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
2053 }
2054 }
2055 else
2056 {
2057 /* All other registers not listed above. */
2058 CORE_ADDR addr = cache->saved_regs[regnum];
2059 if (addr != 0)
2060 {
2061 *lvalp = lval_memory;
2062 *addrp = addr;
2063 read_memory (addr, valuep, register_size (current_gdbarch, regnum));
2064 }
2065 }
004d836a 2066
4afcc598
JJ
2067 if (gdbarch_debug >= 1)
2068 fprintf_unfiltered (gdb_stdlog,
78ced177 2069 "sigtramp prev register <%s> is 0x%s\n",
c5a27d9c
JJ
2070 (regnum < IA64_GR32_REGNUM
2071 || (regnum > IA64_GR127_REGNUM
2072 && regnum < LAST_PSEUDO_REGNUM))
2073 ? ia64_register_names[regnum]
2074 : (regnum < LAST_PSEUDO_REGNUM
2075 ? ia64_register_names[regnum-IA64_GR32_REGNUM+V32_REGNUM]
2076 : "OUT_OF_RANGE"),
78ced177 2077 paddr_nz (extract_unsigned_integer (valuep, 8)));
004d836a
JJ
2078}
2079
2080static const struct frame_unwind ia64_sigtramp_frame_unwind =
2081{
2082 SIGTRAMP_FRAME,
2083 ia64_sigtramp_frame_this_id,
2084 ia64_sigtramp_frame_prev_register
2085};
2086
2087static const struct frame_unwind *
2088ia64_sigtramp_frame_sniffer (struct frame_info *next_frame)
2089{
74174d2e
UW
2090 struct gdbarch_tdep *tdep = gdbarch_tdep (get_frame_arch (next_frame));
2091 if (tdep->pc_in_sigtramp)
2092 {
2093 CORE_ADDR pc = frame_pc_unwind (next_frame);
004d836a 2094
74174d2e
UW
2095 if (tdep->pc_in_sigtramp (pc))
2096 return &ia64_sigtramp_frame_unwind;
2097 }
004d836a
JJ
2098
2099 return NULL;
2100}
2101\f
2102
2103static CORE_ADDR
2104ia64_frame_base_address (struct frame_info *next_frame, void **this_cache)
2105{
2106 struct ia64_frame_cache *cache =
2107 ia64_frame_cache (next_frame, this_cache);
2108
2109 return cache->base;
2110}
2111
2112static const struct frame_base ia64_frame_base =
2113{
2114 &ia64_frame_unwind,
2115 ia64_frame_base_address,
2116 ia64_frame_base_address,
2117 ia64_frame_base_address
2118};
16461d7d 2119
968d1cb4
JJ
2120#ifdef HAVE_LIBUNWIND_IA64_H
2121
2122struct ia64_unwind_table_entry
2123 {
2124 unw_word_t start_offset;
2125 unw_word_t end_offset;
2126 unw_word_t info_offset;
2127 };
2128
2129static __inline__ uint64_t
2130ia64_rse_slot_num (uint64_t addr)
2131{
2132 return (addr >> 3) & 0x3f;
2133}
2134
2135/* Skip over a designated number of registers in the backing
2136 store, remembering every 64th position is for NAT. */
2137static __inline__ uint64_t
2138ia64_rse_skip_regs (uint64_t addr, long num_regs)
2139{
2140 long delta = ia64_rse_slot_num(addr) + num_regs;
2141
2142 if (num_regs < 0)
2143 delta -= 0x3e;
2144 return addr + ((num_regs + delta/0x3f) << 3);
2145}
2146
2147/* Gdb libunwind-frame callback function to convert from an ia64 gdb register
2148 number to a libunwind register number. */
2149static int
2150ia64_gdb2uw_regnum (int regnum)
2151{
2152 if (regnum == sp_regnum)
2153 return UNW_IA64_SP;
2154 else if (regnum == IA64_BSP_REGNUM)
2155 return UNW_IA64_BSP;
2156 else if ((unsigned) (regnum - IA64_GR0_REGNUM) < 128)
2157 return UNW_IA64_GR + (regnum - IA64_GR0_REGNUM);
2158 else if ((unsigned) (regnum - V32_REGNUM) < 95)
2159 return UNW_IA64_GR + 32 + (regnum - V32_REGNUM);
2160 else if ((unsigned) (regnum - IA64_FR0_REGNUM) < 128)
2161 return UNW_IA64_FR + (regnum - IA64_FR0_REGNUM);
2162 else if ((unsigned) (regnum - IA64_PR0_REGNUM) < 64)
2163 return -1;
2164 else if ((unsigned) (regnum - IA64_BR0_REGNUM) < 8)
2165 return UNW_IA64_BR + (regnum - IA64_BR0_REGNUM);
2166 else if (regnum == IA64_PR_REGNUM)
2167 return UNW_IA64_PR;
2168 else if (regnum == IA64_IP_REGNUM)
2169 return UNW_REG_IP;
2170 else if (regnum == IA64_CFM_REGNUM)
2171 return UNW_IA64_CFM;
2172 else if ((unsigned) (regnum - IA64_AR0_REGNUM) < 128)
2173 return UNW_IA64_AR + (regnum - IA64_AR0_REGNUM);
2174 else if ((unsigned) (regnum - IA64_NAT0_REGNUM) < 128)
2175 return UNW_IA64_NAT + (regnum - IA64_NAT0_REGNUM);
2176 else
2177 return -1;
2178}
2179
2180/* Gdb libunwind-frame callback function to convert from a libunwind register
2181 number to a ia64 gdb register number. */
2182static int
2183ia64_uw2gdb_regnum (int uw_regnum)
2184{
2185 if (uw_regnum == UNW_IA64_SP)
2186 return sp_regnum;
2187 else if (uw_regnum == UNW_IA64_BSP)
2188 return IA64_BSP_REGNUM;
2189 else if ((unsigned) (uw_regnum - UNW_IA64_GR) < 32)
2190 return IA64_GR0_REGNUM + (uw_regnum - UNW_IA64_GR);
2191 else if ((unsigned) (uw_regnum - UNW_IA64_GR) < 128)
2192 return V32_REGNUM + (uw_regnum - (IA64_GR0_REGNUM + 32));
2193 else if ((unsigned) (uw_regnum - UNW_IA64_FR) < 128)
2194 return IA64_FR0_REGNUM + (uw_regnum - UNW_IA64_FR);
2195 else if ((unsigned) (uw_regnum - UNW_IA64_BR) < 8)
2196 return IA64_BR0_REGNUM + (uw_regnum - UNW_IA64_BR);
2197 else if (uw_regnum == UNW_IA64_PR)
2198 return IA64_PR_REGNUM;
2199 else if (uw_regnum == UNW_REG_IP)
2200 return IA64_IP_REGNUM;
2201 else if (uw_regnum == UNW_IA64_CFM)
2202 return IA64_CFM_REGNUM;
2203 else if ((unsigned) (uw_regnum - UNW_IA64_AR) < 128)
2204 return IA64_AR0_REGNUM + (uw_regnum - UNW_IA64_AR);
2205 else if ((unsigned) (uw_regnum - UNW_IA64_NAT) < 128)
2206 return IA64_NAT0_REGNUM + (uw_regnum - UNW_IA64_NAT);
2207 else
2208 return -1;
2209}
2210
2211/* Gdb libunwind-frame callback function to reveal if register is a float
2212 register or not. */
2213static int
2214ia64_is_fpreg (int uw_regnum)
2215{
2216 return unw_is_fpreg (uw_regnum);
2217}
2218
2219/* Libunwind callback accessor function for general registers. */
2220static int
2221ia64_access_reg (unw_addr_space_t as, unw_regnum_t uw_regnum, unw_word_t *val,
2222 int write, void *arg)
2223{
2224 int regnum = ia64_uw2gdb_regnum (uw_regnum);
2225 unw_word_t bsp, sof, sol, cfm, psr, ip;
2226 struct frame_info *next_frame = arg;
2227 long new_sof, old_sof;
2228 char buf[MAX_REGISTER_SIZE];
2229
45ecac4b
UW
2230 /* We never call any libunwind routines that need to write registers. */
2231 gdb_assert (!write);
968d1cb4 2232
45ecac4b 2233 switch (uw_regnum)
968d1cb4 2234 {
45ecac4b
UW
2235 case UNW_REG_IP:
2236 /* Libunwind expects to see the pc value which means the slot number
2237 from the psr must be merged with the ip word address. */
2238 frame_unwind_register (next_frame, IA64_IP_REGNUM, buf);
2239 ip = extract_unsigned_integer (buf, 8);
2240 frame_unwind_register (next_frame, IA64_PSR_REGNUM, buf);
2241 psr = extract_unsigned_integer (buf, 8);
2242 *val = ip | ((psr >> 41) & 0x3);
2243 break;
2244
2245 case UNW_IA64_AR_BSP:
2246 /* Libunwind expects to see the beginning of the current register
2247 frame so we must account for the fact that ptrace() will return a value
2248 for bsp that points *after* the current register frame. */
2249 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
2250 bsp = extract_unsigned_integer (buf, 8);
2251 frame_unwind_register (next_frame, IA64_CFM_REGNUM, buf);
2252 cfm = extract_unsigned_integer (buf, 8);
2253 sof = (cfm & 0x7f);
2254 *val = ia64_rse_skip_regs (bsp, -sof);
2255 break;
968d1cb4 2256
45ecac4b
UW
2257 case UNW_IA64_AR_BSPSTORE:
2258 /* Libunwind wants bspstore to be after the current register frame.
2259 This is what ptrace() and gdb treats as the regular bsp value. */
2260 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
2261 *val = extract_unsigned_integer (buf, 8);
2262 break;
2263
2264 default:
2265 /* For all other registers, just unwind the value directly. */
2266 frame_unwind_register (next_frame, regnum, buf);
2267 *val = extract_unsigned_integer (buf, 8);
2268 break;
968d1cb4 2269 }
45ecac4b
UW
2270
2271 if (gdbarch_debug >= 1)
2272 fprintf_unfiltered (gdb_stdlog,
2273 " access_reg: from cache: %4s=0x%s\n",
2274 (((unsigned) regnum <= IA64_NAT127_REGNUM)
2275 ? ia64_register_names[regnum] : "r??"),
2276 paddr_nz (*val));
968d1cb4
JJ
2277 return 0;
2278}
2279
2280/* Libunwind callback accessor function for floating-point registers. */
2281static int
2282ia64_access_fpreg (unw_addr_space_t as, unw_regnum_t uw_regnum, unw_fpreg_t *val,
2283 int write, void *arg)
2284{
2285 int regnum = ia64_uw2gdb_regnum (uw_regnum);
45ecac4b 2286 struct frame_info *next_frame = arg;
968d1cb4 2287
45ecac4b
UW
2288 /* We never call any libunwind routines that need to write registers. */
2289 gdb_assert (!write);
2290
2291 frame_unwind_register (next_frame, regnum, (char *) val);
2292
968d1cb4
JJ
2293 return 0;
2294}
2295
c5a27d9c
JJ
2296/* Libunwind callback accessor function for top-level rse registers. */
2297static int
2298ia64_access_rse_reg (unw_addr_space_t as, unw_regnum_t uw_regnum, unw_word_t *val,
2299 int write, void *arg)
2300{
2301 int regnum = ia64_uw2gdb_regnum (uw_regnum);
2302 unw_word_t bsp, sof, sol, cfm, psr, ip;
45ecac4b 2303 struct regcache *regcache = arg;
c5a27d9c 2304 long new_sof, old_sof;
45ecac4b 2305 char buf[MAX_REGISTER_SIZE];
c5a27d9c 2306
45ecac4b
UW
2307 /* We never call any libunwind routines that need to write registers. */
2308 gdb_assert (!write);
c5a27d9c 2309
45ecac4b 2310 switch (uw_regnum)
c5a27d9c 2311 {
45ecac4b
UW
2312 case UNW_REG_IP:
2313 /* Libunwind expects to see the pc value which means the slot number
2314 from the psr must be merged with the ip word address. */
2315 regcache_cooked_read (regcache, IA64_IP_REGNUM, buf);
2316 ip = extract_unsigned_integer (buf, 8);
2317 regcache_cooked_read (regcache, IA64_PSR_REGNUM, buf);
2318 psr = extract_unsigned_integer (buf, 8);
2319 *val = ip | ((psr >> 41) & 0x3);
2320 break;
c5a27d9c 2321
45ecac4b
UW
2322 case UNW_IA64_AR_BSP:
2323 /* Libunwind expects to see the beginning of the current register
2324 frame so we must account for the fact that ptrace() will return a value
2325 for bsp that points *after* the current register frame. */
2326 regcache_cooked_read (regcache, IA64_BSP_REGNUM, buf);
2327 bsp = extract_unsigned_integer (buf, 8);
2328 regcache_cooked_read (regcache, IA64_CFM_REGNUM, buf);
2329 cfm = extract_unsigned_integer (buf, 8);
2330 sof = (cfm & 0x7f);
2331 *val = ia64_rse_skip_regs (bsp, -sof);
2332 break;
c5a27d9c 2333
45ecac4b
UW
2334 case UNW_IA64_AR_BSPSTORE:
2335 /* Libunwind wants bspstore to be after the current register frame.
2336 This is what ptrace() and gdb treats as the regular bsp value. */
2337 regcache_cooked_read (regcache, IA64_BSP_REGNUM, buf);
2338 *val = extract_unsigned_integer (buf, 8);
2339 break;
c5a27d9c 2340
45ecac4b
UW
2341 default:
2342 /* For all other registers, just unwind the value directly. */
2343 regcache_cooked_read (regcache, regnum, buf);
2344 *val = extract_unsigned_integer (buf, 8);
2345 break;
c5a27d9c
JJ
2346 }
2347
2348 if (gdbarch_debug >= 1)
2349 fprintf_unfiltered (gdb_stdlog,
2350 " access_rse_reg: from cache: %4s=0x%s\n",
2351 (((unsigned) regnum <= IA64_NAT127_REGNUM)
2352 ? ia64_register_names[regnum] : "r??"),
2353 paddr_nz (*val));
2354
2355 return 0;
2356}
2357
45ecac4b
UW
2358/* Libunwind callback accessor function for top-level fp registers. */
2359static int
2360ia64_access_rse_fpreg (unw_addr_space_t as, unw_regnum_t uw_regnum,
2361 unw_fpreg_t *val, int write, void *arg)
2362{
2363 int regnum = ia64_uw2gdb_regnum (uw_regnum);
2364 struct regcache *regcache = arg;
2365
2366 /* We never call any libunwind routines that need to write registers. */
2367 gdb_assert (!write);
2368
2369 regcache_cooked_read (regcache, regnum, (char *) val);
2370
2371 return 0;
2372}
2373
968d1cb4
JJ
2374/* Libunwind callback accessor function for accessing memory. */
2375static int
2376ia64_access_mem (unw_addr_space_t as,
2377 unw_word_t addr, unw_word_t *val,
2378 int write, void *arg)
2379{
c5a27d9c
JJ
2380 if (addr - KERNEL_START < ktab_size)
2381 {
2382 unw_word_t *laddr = (unw_word_t*) ((char *) ktab
2383 + (addr - KERNEL_START));
2384
2385 if (write)
2386 *laddr = *val;
2387 else
2388 *val = *laddr;
2389 return 0;
2390 }
2391
968d1cb4
JJ
2392 /* XXX do we need to normalize byte-order here? */
2393 if (write)
2394 return target_write_memory (addr, (char *) val, sizeof (unw_word_t));
2395 else
2396 return target_read_memory (addr, (char *) val, sizeof (unw_word_t));
2397}
2398
2399/* Call low-level function to access the kernel unwind table. */
13547ab6
DJ
2400static LONGEST
2401getunwind_table (gdb_byte **buf_p)
968d1cb4
JJ
2402{
2403 LONGEST x;
c5a27d9c 2404
10d6c8cd
DJ
2405 /* FIXME drow/2005-09-10: This code used to call
2406 ia64_linux_xfer_unwind_table directly to fetch the unwind table
2407 for the currently running ia64-linux kernel. That data should
2408 come from the core file and be accessed via the auxv vector; if
2409 we want to preserve fall back to the running kernel's table, then
2410 we should find a way to override the corefile layer's
2411 xfer_partial method. */
968d1cb4 2412
13547ab6
DJ
2413 x = target_read_alloc (&current_target, TARGET_OBJECT_UNWIND_TABLE,
2414 NULL, buf_p);
2415
2416 return x;
968d1cb4 2417}
10d6c8cd 2418
968d1cb4
JJ
2419/* Get the kernel unwind table. */
2420static int
2421get_kernel_table (unw_word_t ip, unw_dyn_info_t *di)
2422{
c5a27d9c 2423 static struct ia64_table_entry *etab;
968d1cb4 2424
c5a27d9c 2425 if (!ktab)
968d1cb4 2426 {
13547ab6 2427 gdb_byte *ktab_buf;
eeec829c 2428 LONGEST size;
13547ab6 2429
eeec829c
DJ
2430 size = getunwind_table (&ktab_buf);
2431 if (size <= 0)
13547ab6 2432 return -UNW_ENOINFO;
eeec829c
DJ
2433
2434 ktab = (struct ia64_table_entry *) ktab_buf;
2435 ktab_size = size;
13547ab6 2436
968d1cb4 2437 for (etab = ktab; etab->start_offset; ++etab)
c5a27d9c 2438 etab->info_offset += KERNEL_START;
968d1cb4
JJ
2439 }
2440
2441 if (ip < ktab[0].start_offset || ip >= etab[-1].end_offset)
2442 return -UNW_ENOINFO;
2443
2444 di->format = UNW_INFO_FORMAT_TABLE;
2445 di->gp = 0;
2446 di->start_ip = ktab[0].start_offset;
2447 di->end_ip = etab[-1].end_offset;
2448 di->u.ti.name_ptr = (unw_word_t) "<kernel>";
2449 di->u.ti.segbase = 0;
2450 di->u.ti.table_len = ((char *) etab - (char *) ktab) / sizeof (unw_word_t);
2451 di->u.ti.table_data = (unw_word_t *) ktab;
2452
2453 if (gdbarch_debug >= 1)
2454 fprintf_unfiltered (gdb_stdlog, "get_kernel_table: found table `%s': "
78ced177
JJ
2455 "segbase=0x%s, length=%s, gp=0x%s\n",
2456 (char *) di->u.ti.name_ptr,
2457 paddr_nz (di->u.ti.segbase),
2458 paddr_u (di->u.ti.table_len),
2459 paddr_nz (di->gp));
968d1cb4
JJ
2460 return 0;
2461}
2462
2463/* Find the unwind table entry for a specified address. */
2464static int
2465ia64_find_unwind_table (struct objfile *objfile, unw_word_t ip,
2466 unw_dyn_info_t *dip, void **buf)
2467{
2468 Elf_Internal_Phdr *phdr, *p_text = NULL, *p_unwind = NULL;
2469 Elf_Internal_Ehdr *ehdr;
2470 unw_word_t segbase = 0;
2471 CORE_ADDR load_base;
2472 bfd *bfd;
2473 int i;
2474
2475 bfd = objfile->obfd;
2476
2477 ehdr = elf_tdata (bfd)->elf_header;
2478 phdr = elf_tdata (bfd)->phdr;
2479
2480 load_base = ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile));
2481
2482 for (i = 0; i < ehdr->e_phnum; ++i)
2483 {
2484 switch (phdr[i].p_type)
2485 {
2486 case PT_LOAD:
2487 if ((unw_word_t) (ip - load_base - phdr[i].p_vaddr)
2488 < phdr[i].p_memsz)
2489 p_text = phdr + i;
2490 break;
2491
2492 case PT_IA_64_UNWIND:
2493 p_unwind = phdr + i;
2494 break;
2495
2496 default:
2497 break;
2498 }
2499 }
2500
c5a27d9c 2501 if (!p_text || !p_unwind)
968d1cb4
JJ
2502 return -UNW_ENOINFO;
2503
c5a27d9c
JJ
2504 /* Verify that the segment that contains the IP also contains
2505 the static unwind table. If not, we may be in the Linux kernel's
2506 DSO gate page in which case the unwind table is another segment.
2507 Otherwise, we are dealing with runtime-generated code, for which we
2508 have no info here. */
968d1cb4
JJ
2509 segbase = p_text->p_vaddr + load_base;
2510
c5a27d9c
JJ
2511 if ((p_unwind->p_vaddr - p_text->p_vaddr) >= p_text->p_memsz)
2512 {
2513 int ok = 0;
2514 for (i = 0; i < ehdr->e_phnum; ++i)
2515 {
2516 if (phdr[i].p_type == PT_LOAD
2517 && (p_unwind->p_vaddr - phdr[i].p_vaddr) < phdr[i].p_memsz)
2518 {
2519 ok = 1;
2520 /* Get the segbase from the section containing the
2521 libunwind table. */
2522 segbase = phdr[i].p_vaddr + load_base;
2523 }
2524 }
2525 if (!ok)
2526 return -UNW_ENOINFO;
2527 }
2528
2529 dip->start_ip = p_text->p_vaddr + load_base;
968d1cb4 2530 dip->end_ip = dip->start_ip + p_text->p_memsz;
b33e8514 2531 dip->gp = ia64_find_global_pointer (ip);
503ff15d
KB
2532 dip->format = UNW_INFO_FORMAT_REMOTE_TABLE;
2533 dip->u.rti.name_ptr = (unw_word_t) bfd_get_filename (bfd);
2534 dip->u.rti.segbase = segbase;
2535 dip->u.rti.table_len = p_unwind->p_memsz / sizeof (unw_word_t);
2536 dip->u.rti.table_data = p_unwind->p_vaddr + load_base;
968d1cb4
JJ
2537
2538 return 0;
2539}
2540
2541/* Libunwind callback accessor function to acquire procedure unwind-info. */
2542static int
2543ia64_find_proc_info_x (unw_addr_space_t as, unw_word_t ip, unw_proc_info_t *pi,
2544 int need_unwind_info, void *arg)
2545{
2546 struct obj_section *sec = find_pc_section (ip);
2547 unw_dyn_info_t di;
2548 int ret;
2549 void *buf = NULL;
2550
2551 if (!sec)
2552 {
2553 /* XXX This only works if the host and the target architecture are
2554 both ia64 and if the have (more or less) the same kernel
2555 version. */
2556 if (get_kernel_table (ip, &di) < 0)
2557 return -UNW_ENOINFO;
503ff15d
KB
2558
2559 if (gdbarch_debug >= 1)
78ced177
JJ
2560 fprintf_unfiltered (gdb_stdlog, "ia64_find_proc_info_x: 0x%s -> "
2561 "(name=`%s',segbase=0x%s,start=0x%s,end=0x%s,gp=0x%s,"
2562 "length=%s,data=0x%s)\n",
2563 paddr_nz (ip), (char *)di.u.ti.name_ptr,
2564 paddr_nz (di.u.ti.segbase),
2565 paddr_nz (di.start_ip), paddr_nz (di.end_ip),
2566 paddr_nz (di.gp),
2567 paddr_u (di.u.ti.table_len),
2568 paddr_nz ((CORE_ADDR)di.u.ti.table_data));
968d1cb4
JJ
2569 }
2570 else
2571 {
2572 ret = ia64_find_unwind_table (sec->objfile, ip, &di, &buf);
2573 if (ret < 0)
2574 return ret;
968d1cb4 2575
503ff15d 2576 if (gdbarch_debug >= 1)
78ced177
JJ
2577 fprintf_unfiltered (gdb_stdlog, "ia64_find_proc_info_x: 0x%s -> "
2578 "(name=`%s',segbase=0x%s,start=0x%s,end=0x%s,gp=0x%s,"
2579 "length=%s,data=0x%s)\n",
2580 paddr_nz (ip), (char *)di.u.rti.name_ptr,
2581 paddr_nz (di.u.rti.segbase),
2582 paddr_nz (di.start_ip), paddr_nz (di.end_ip),
2583 paddr_nz (di.gp),
2584 paddr_u (di.u.rti.table_len),
2585 paddr_nz (di.u.rti.table_data));
503ff15d 2586 }
968d1cb4 2587
503ff15d
KB
2588 ret = libunwind_search_unwind_table (&as, ip, &di, pi, need_unwind_info,
2589 arg);
968d1cb4
JJ
2590
2591 /* We no longer need the dyn info storage so free it. */
2592 xfree (buf);
2593
2594 return ret;
2595}
2596
2597/* Libunwind callback accessor function for cleanup. */
2598static void
2599ia64_put_unwind_info (unw_addr_space_t as,
2600 unw_proc_info_t *pip, void *arg)
2601{
2602 /* Nothing required for now. */
2603}
2604
2605/* Libunwind callback accessor function to get head of the dynamic
2606 unwind-info registration list. */
2607static int
2608ia64_get_dyn_info_list (unw_addr_space_t as,
2609 unw_word_t *dilap, void *arg)
2610{
2611 struct obj_section *text_sec;
2612 struct objfile *objfile;
2613 unw_word_t ip, addr;
2614 unw_dyn_info_t di;
2615 int ret;
2616
2617 if (!libunwind_is_initialized ())
2618 return -UNW_ENOINFO;
2619
2620 for (objfile = object_files; objfile; objfile = objfile->next)
2621 {
2622 void *buf = NULL;
2623
2624 text_sec = objfile->sections + SECT_OFF_TEXT (objfile);
2625 ip = text_sec->addr;
2626 ret = ia64_find_unwind_table (objfile, ip, &di, &buf);
2627 if (ret >= 0)
2628 {
503ff15d 2629 addr = libunwind_find_dyn_list (as, &di, arg);
968d1cb4
JJ
2630 /* We no longer need the dyn info storage so free it. */
2631 xfree (buf);
2632
2633 if (addr)
2634 {
2635 if (gdbarch_debug >= 1)
2636 fprintf_unfiltered (gdb_stdlog,
2637 "dynamic unwind table in objfile %s "
78ced177 2638 "at 0x%s (gp=0x%s)\n",
968d1cb4 2639 bfd_get_filename (objfile->obfd),
78ced177 2640 paddr_nz (addr), paddr_nz (di.gp));
968d1cb4
JJ
2641 *dilap = addr;
2642 return 0;
2643 }
2644 }
2645 }
2646 return -UNW_ENOINFO;
2647}
2648
2649
2650/* Frame interface functions for libunwind. */
2651
2652static void
2653ia64_libunwind_frame_this_id (struct frame_info *next_frame, void **this_cache,
7166c4a9 2654 struct frame_id *this_id)
968d1cb4
JJ
2655{
2656 char buf[8];
2657 CORE_ADDR bsp;
2658 struct frame_id id;
c5a27d9c
JJ
2659 CORE_ADDR prev_ip, addr;
2660 int realnum, optimized;
2661 enum lval_type lval;
2662
968d1cb4
JJ
2663
2664 libunwind_frame_this_id (next_frame, this_cache, &id);
c5a27d9c
JJ
2665 if (frame_id_eq (id, null_frame_id))
2666 {
2667 (*this_id) = null_frame_id;
2668 return;
2669 }
968d1cb4 2670
c5a27d9c
JJ
2671 /* We must add the bsp as the special address for frame comparison
2672 purposes. */
968d1cb4
JJ
2673 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
2674 bsp = extract_unsigned_integer (buf, 8);
2675
c5a27d9c
JJ
2676 /* If the previous frame pc value is 0, then we are at the end of the stack
2677 and don't want to unwind past this frame. We return a null frame_id to
2678 indicate this. */
2679 libunwind_frame_prev_register (next_frame, this_cache, IA64_IP_REGNUM,
f1b4b38e
AS
2680 &optimized, &lval, &addr, &realnum, buf);
2681 prev_ip = extract_unsigned_integer (buf, 8);
c5a27d9c
JJ
2682
2683 if (prev_ip != 0)
2684 (*this_id) = frame_id_build_special (id.stack_addr, id.code_addr, bsp);
2685 else
2686 (*this_id) = null_frame_id;
968d1cb4
JJ
2687
2688 if (gdbarch_debug >= 1)
2689 fprintf_unfiltered (gdb_stdlog,
78ced177
JJ
2690 "libunwind frame id: code 0x%s, stack 0x%s, special 0x%s, next_frame %p\n",
2691 paddr_nz (id.code_addr), paddr_nz (id.stack_addr),
2692 paddr_nz (bsp), next_frame);
968d1cb4
JJ
2693}
2694
2695static void
2696ia64_libunwind_frame_prev_register (struct frame_info *next_frame,
2697 void **this_cache,
2698 int regnum, int *optimizedp,
2699 enum lval_type *lvalp, CORE_ADDR *addrp,
88d82102 2700 int *realnump, gdb_byte *valuep)
968d1cb4
JJ
2701{
2702 int reg = regnum;
2703
2704 if (VP0_REGNUM <= regnum && regnum <= VP63_REGNUM)
2705 reg = IA64_PR_REGNUM;
2706 else if (IA64_NAT0_REGNUM <= regnum && regnum <= IA64_NAT127_REGNUM)
2707 reg = IA64_UNAT_REGNUM;
2708
2709 /* Let libunwind do most of the work. */
2710 libunwind_frame_prev_register (next_frame, this_cache, reg,
2711 optimizedp, lvalp, addrp, realnump, valuep);
2712
6672f2ae
AS
2713 /* No more to do if the value is not supposed to be supplied. */
2714 if (!valuep)
2715 return;
2716
968d1cb4
JJ
2717 if (VP0_REGNUM <= regnum && regnum <= VP63_REGNUM)
2718 {
2719 ULONGEST prN_val;
2720
2721 if (VP16_REGNUM <= regnum && regnum <= VP63_REGNUM)
2722 {
2723 int rrb_pr = 0;
2724 ULONGEST cfm;
2725 unsigned char buf[MAX_REGISTER_SIZE];
2726
2727 /* Fetch predicate register rename base from current frame
2728 marker for this frame. */
2729 frame_unwind_register (next_frame, IA64_CFM_REGNUM, buf);
2730 cfm = extract_unsigned_integer (buf, 8);
2731 rrb_pr = (cfm >> 32) & 0x3f;
2732
2733 /* Adjust the register number to account for register rotation. */
2734 regnum = VP16_REGNUM
2735 + ((regnum - VP16_REGNUM) + rrb_pr) % 48;
2736 }
2737 prN_val = extract_bit_field ((unsigned char *) valuep,
2738 regnum - VP0_REGNUM, 1);
2739 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum), prN_val);
2740 }
2741 else if (IA64_NAT0_REGNUM <= regnum && regnum <= IA64_NAT127_REGNUM)
2742 {
2743 ULONGEST unatN_val;
2744
2745 unatN_val = extract_bit_field ((unsigned char *) valuep,
2746 regnum - IA64_NAT0_REGNUM, 1);
2747 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum),
2748 unatN_val);
2749 }
2750 else if (regnum == IA64_BSP_REGNUM)
2751 {
2752 char cfm_valuep[MAX_REGISTER_SIZE];
2753 int cfm_optim;
2754 int cfm_realnum;
2755 enum lval_type cfm_lval;
2756 CORE_ADDR cfm_addr;
2757 CORE_ADDR bsp, prev_cfm, prev_bsp;
2758
2759 /* We want to calculate the previous bsp as the end of the previous register stack frame.
2760 This corresponds to what the hardware bsp register will be if we pop the frame
2761 back which is why we might have been called. We know that libunwind will pass us back
2762 the beginning of the current frame so we should just add sof to it. */
2763 prev_bsp = extract_unsigned_integer (valuep, 8);
2764 libunwind_frame_prev_register (next_frame, this_cache, IA64_CFM_REGNUM,
2765 &cfm_optim, &cfm_lval, &cfm_addr, &cfm_realnum, cfm_valuep);
2766 prev_cfm = extract_unsigned_integer (cfm_valuep, 8);
2767 prev_bsp = rse_address_add (prev_bsp, (prev_cfm & 0x7f));
2768
2769 store_unsigned_integer (valuep, register_size (current_gdbarch, regnum),
2770 prev_bsp);
2771 }
2772
2773 if (gdbarch_debug >= 1)
2774 fprintf_unfiltered (gdb_stdlog,
78ced177 2775 "libunwind prev register <%s> is 0x%s\n",
c5a27d9c
JJ
2776 (regnum < IA64_GR32_REGNUM
2777 || (regnum > IA64_GR127_REGNUM
2778 && regnum < LAST_PSEUDO_REGNUM))
2779 ? ia64_register_names[regnum]
2780 : (regnum < LAST_PSEUDO_REGNUM
2781 ? ia64_register_names[regnum-IA64_GR32_REGNUM+V32_REGNUM]
2782 : "OUT_OF_RANGE"),
78ced177 2783 paddr_nz (extract_unsigned_integer (valuep, 8)));
968d1cb4
JJ
2784}
2785
2786static const struct frame_unwind ia64_libunwind_frame_unwind =
2787{
2788 NORMAL_FRAME,
2789 ia64_libunwind_frame_this_id,
272dfcfd
AS
2790 ia64_libunwind_frame_prev_register,
2791 NULL,
2792 NULL,
2793 NULL,
2794 libunwind_frame_dealloc_cache
968d1cb4
JJ
2795};
2796
2797static const struct frame_unwind *
2798ia64_libunwind_frame_sniffer (struct frame_info *next_frame)
2799{
2800 if (libunwind_is_initialized () && libunwind_frame_sniffer (next_frame))
2801 return &ia64_libunwind_frame_unwind;
2802
2803 return NULL;
2804}
2805
c5a27d9c
JJ
2806static void
2807ia64_libunwind_sigtramp_frame_this_id (struct frame_info *next_frame, void **this_cache,
2808 struct frame_id *this_id)
2809{
2810 char buf[8];
2811 CORE_ADDR bsp;
2812 struct frame_id id;
2813 CORE_ADDR prev_ip;
2814
2815 libunwind_frame_this_id (next_frame, this_cache, &id);
2816 if (frame_id_eq (id, null_frame_id))
2817 {
2818 (*this_id) = null_frame_id;
2819 return;
2820 }
2821
2822 /* We must add the bsp as the special address for frame comparison
2823 purposes. */
2824 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
2825 bsp = extract_unsigned_integer (buf, 8);
2826
2827 /* For a sigtramp frame, we don't make the check for previous ip being 0. */
2828 (*this_id) = frame_id_build_special (id.stack_addr, id.code_addr, bsp);
2829
2830 if (gdbarch_debug >= 1)
2831 fprintf_unfiltered (gdb_stdlog,
2832 "libunwind sigtramp frame id: code 0x%s, stack 0x%s, special 0x%s, next_frame %p\n",
2833 paddr_nz (id.code_addr), paddr_nz (id.stack_addr),
2834 paddr_nz (bsp), next_frame);
2835}
2836
2837static void
2838ia64_libunwind_sigtramp_frame_prev_register (struct frame_info *next_frame,
2839 void **this_cache,
2840 int regnum, int *optimizedp,
2841 enum lval_type *lvalp, CORE_ADDR *addrp,
88d82102 2842 int *realnump, gdb_byte *valuep)
c5a27d9c
JJ
2843
2844{
f1b4b38e 2845 gdb_byte buf[8];
c5a27d9c
JJ
2846 CORE_ADDR prev_ip, addr;
2847 int realnum, optimized;
2848 enum lval_type lval;
2849
2850
2851 /* If the previous frame pc value is 0, then we want to use the SIGCONTEXT
2852 method of getting previous registers. */
2853 libunwind_frame_prev_register (next_frame, this_cache, IA64_IP_REGNUM,
f1b4b38e
AS
2854 &optimized, &lval, &addr, &realnum, buf);
2855 prev_ip = extract_unsigned_integer (buf, 8);
c5a27d9c
JJ
2856
2857 if (prev_ip == 0)
2858 {
2859 void *tmp_cache = NULL;
2860 ia64_sigtramp_frame_prev_register (next_frame, &tmp_cache, regnum, optimizedp, lvalp,
2861 addrp, realnump, valuep);
2862 }
2863 else
2864 ia64_libunwind_frame_prev_register (next_frame, this_cache, regnum, optimizedp, lvalp,
2865 addrp, realnump, valuep);
2866}
2867
2868static const struct frame_unwind ia64_libunwind_sigtramp_frame_unwind =
2869{
2870 SIGTRAMP_FRAME,
2871 ia64_libunwind_sigtramp_frame_this_id,
2872 ia64_libunwind_sigtramp_frame_prev_register
2873};
2874
2875static const struct frame_unwind *
2876ia64_libunwind_sigtramp_frame_sniffer (struct frame_info *next_frame)
2877{
2878 if (libunwind_is_initialized ())
2879 {
2880 if (libunwind_sigtramp_frame_sniffer (next_frame))
2881 return &ia64_libunwind_sigtramp_frame_unwind;
2882 return NULL;
2883 }
2884 else
2885 return ia64_sigtramp_frame_sniffer (next_frame);
2886}
2887
968d1cb4
JJ
2888/* Set of libunwind callback acccessor functions. */
2889static unw_accessors_t ia64_unw_accessors =
2890{
2891 ia64_find_proc_info_x,
2892 ia64_put_unwind_info,
2893 ia64_get_dyn_info_list,
2894 ia64_access_mem,
2895 ia64_access_reg,
2896 ia64_access_fpreg,
2897 /* resume */
2898 /* get_proc_name */
2899};
2900
c5a27d9c
JJ
2901/* Set of special libunwind callback acccessor functions specific for accessing
2902 the rse registers. At the top of the stack, we want libunwind to figure out
2903 how to read r32 - r127. Though usually they are found sequentially in memory
2904 starting from $bof, this is not always true. */
2905static unw_accessors_t ia64_unw_rse_accessors =
2906{
2907 ia64_find_proc_info_x,
2908 ia64_put_unwind_info,
2909 ia64_get_dyn_info_list,
2910 ia64_access_mem,
2911 ia64_access_rse_reg,
45ecac4b 2912 ia64_access_rse_fpreg,
c5a27d9c
JJ
2913 /* resume */
2914 /* get_proc_name */
2915};
2916
968d1cb4
JJ
2917/* Set of ia64 gdb libunwind-frame callbacks and data for generic libunwind-frame code to use. */
2918static struct libunwind_descr ia64_libunwind_descr =
2919{
2920 ia64_gdb2uw_regnum,
2921 ia64_uw2gdb_regnum,
2922 ia64_is_fpreg,
2923 &ia64_unw_accessors,
c5a27d9c 2924 &ia64_unw_rse_accessors,
968d1cb4
JJ
2925};
2926
2927#endif /* HAVE_LIBUNWIND_IA64_H */
2928
74055713 2929/* Should we use DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS instead of
82d1552e 2930 gdbarch_extract_return_value? GCC_P is true if compiled with gcc and TYPE
74055713 2931 is the type (which is known to be struct, union or array). */
16461d7d
KB
2932int
2933ia64_use_struct_convention (int gcc_p, struct type *type)
2934{
64a5b29c
KB
2935 struct type *float_elt_type;
2936
2937 /* HFAs are structures (or arrays) consisting entirely of floating
2938 point values of the same length. Up to 8 of these are returned
2939 in registers. Don't use the struct convention when this is the
004d836a 2940 case. */
64a5b29c
KB
2941 float_elt_type = is_float_or_hfa_type (type);
2942 if (float_elt_type != NULL
2943 && TYPE_LENGTH (type) / TYPE_LENGTH (float_elt_type) <= 8)
2944 return 0;
2945
2946 /* Other structs of length 32 or less are returned in r8-r11.
004d836a 2947 Don't use the struct convention for those either. */
16461d7d
KB
2948 return TYPE_LENGTH (type) > 32;
2949}
2950
2951void
2d522557
AC
2952ia64_extract_return_value (struct type *type, struct regcache *regcache,
2953 gdb_byte *valbuf)
16461d7d 2954{
64a5b29c
KB
2955 struct type *float_elt_type;
2956
2957 float_elt_type = is_float_or_hfa_type (type);
2958 if (float_elt_type != NULL)
2959 {
004d836a 2960 char from[MAX_REGISTER_SIZE];
64a5b29c
KB
2961 int offset = 0;
2962 int regnum = IA64_FR8_REGNUM;
2963 int n = TYPE_LENGTH (type) / TYPE_LENGTH (float_elt_type);
2964
2965 while (n-- > 0)
2966 {
004d836a
JJ
2967 regcache_cooked_read (regcache, regnum, from);
2968 convert_typed_floating (from, builtin_type_ia64_ext,
2969 (char *)valbuf + offset, float_elt_type);
64a5b29c
KB
2970 offset += TYPE_LENGTH (float_elt_type);
2971 regnum++;
2972 }
2973 }
16461d7d 2974 else
004d836a
JJ
2975 {
2976 ULONGEST val;
2977 int offset = 0;
2978 int regnum = IA64_GR8_REGNUM;
7b9ee6a8
DJ
2979 int reglen = TYPE_LENGTH (register_type (get_regcache_arch (regcache),
2980 IA64_GR8_REGNUM));
004d836a
JJ
2981 int n = TYPE_LENGTH (type) / reglen;
2982 int m = TYPE_LENGTH (type) % reglen;
16461d7d 2983
004d836a
JJ
2984 while (n-- > 0)
2985 {
2986 ULONGEST val;
2987 regcache_cooked_read_unsigned (regcache, regnum, &val);
2988 memcpy ((char *)valbuf + offset, &val, reglen);
2989 offset += reglen;
2990 regnum++;
2991 }
16461d7d 2992
004d836a
JJ
2993 if (m)
2994 {
2995 regcache_cooked_read_unsigned (regcache, regnum, &val);
2996 memcpy ((char *)valbuf + offset, &val, m);
2997 }
2998 }
16461d7d
KB
2999}
3000
16461d7d 3001
64a5b29c
KB
3002static int
3003is_float_or_hfa_type_recurse (struct type *t, struct type **etp)
3004{
3005 switch (TYPE_CODE (t))
3006 {
3007 case TYPE_CODE_FLT:
3008 if (*etp)
3009 return TYPE_LENGTH (*etp) == TYPE_LENGTH (t);
3010 else
3011 {
3012 *etp = t;
3013 return 1;
3014 }
3015 break;
3016 case TYPE_CODE_ARRAY:
98f96ba1
KB
3017 return
3018 is_float_or_hfa_type_recurse (check_typedef (TYPE_TARGET_TYPE (t)),
3019 etp);
64a5b29c
KB
3020 break;
3021 case TYPE_CODE_STRUCT:
3022 {
3023 int i;
3024
3025 for (i = 0; i < TYPE_NFIELDS (t); i++)
98f96ba1
KB
3026 if (!is_float_or_hfa_type_recurse
3027 (check_typedef (TYPE_FIELD_TYPE (t, i)), etp))
64a5b29c
KB
3028 return 0;
3029 return 1;
3030 }
3031 break;
3032 default:
3033 return 0;
3034 break;
3035 }
3036}
3037
3038/* Determine if the given type is one of the floating point types or
3039 and HFA (which is a struct, array, or combination thereof whose
004d836a 3040 bottom-most elements are all of the same floating point type). */
64a5b29c
KB
3041
3042static struct type *
3043is_float_or_hfa_type (struct type *t)
3044{
3045 struct type *et = 0;
3046
3047 return is_float_or_hfa_type_recurse (t, &et) ? et : 0;
3048}
3049
3050
98f96ba1
KB
3051/* Return 1 if the alignment of T is such that the next even slot
3052 should be used. Return 0, if the next available slot should
3053 be used. (See section 8.5.1 of the IA-64 Software Conventions
004d836a 3054 and Runtime manual). */
98f96ba1
KB
3055
3056static int
3057slot_alignment_is_next_even (struct type *t)
3058{
3059 switch (TYPE_CODE (t))
3060 {
3061 case TYPE_CODE_INT:
3062 case TYPE_CODE_FLT:
3063 if (TYPE_LENGTH (t) > 8)
3064 return 1;
3065 else
3066 return 0;
3067 case TYPE_CODE_ARRAY:
3068 return
3069 slot_alignment_is_next_even (check_typedef (TYPE_TARGET_TYPE (t)));
3070 case TYPE_CODE_STRUCT:
3071 {
3072 int i;
3073
3074 for (i = 0; i < TYPE_NFIELDS (t); i++)
3075 if (slot_alignment_is_next_even
3076 (check_typedef (TYPE_FIELD_TYPE (t, i))))
3077 return 1;
3078 return 0;
3079 }
3080 default:
3081 return 0;
3082 }
3083}
3084
64a5b29c
KB
3085/* Attempt to find (and return) the global pointer for the given
3086 function.
3087
3088 This is a rather nasty bit of code searchs for the .dynamic section
3089 in the objfile corresponding to the pc of the function we're trying
3090 to call. Once it finds the addresses at which the .dynamic section
3091 lives in the child process, it scans the Elf64_Dyn entries for a
3092 DT_PLTGOT tag. If it finds one of these, the corresponding
3093 d_un.d_ptr value is the global pointer. */
3094
3095static CORE_ADDR
b33e8514 3096ia64_find_global_pointer (CORE_ADDR faddr)
64a5b29c 3097{
76d689a6 3098 struct obj_section *faddr_sect;
64a5b29c 3099
76d689a6
KB
3100 faddr_sect = find_pc_section (faddr);
3101 if (faddr_sect != NULL)
64a5b29c
KB
3102 {
3103 struct obj_section *osect;
3104
76d689a6 3105 ALL_OBJFILE_OSECTIONS (faddr_sect->objfile, osect)
64a5b29c
KB
3106 {
3107 if (strcmp (osect->the_bfd_section->name, ".dynamic") == 0)
3108 break;
3109 }
3110
76d689a6 3111 if (osect < faddr_sect->objfile->sections_end)
64a5b29c
KB
3112 {
3113 CORE_ADDR addr;
3114
3115 addr = osect->addr;
3116 while (addr < osect->endaddr)
3117 {
3118 int status;
3119 LONGEST tag;
3120 char buf[8];
3121
3122 status = target_read_memory (addr, buf, sizeof (buf));
3123 if (status != 0)
3124 break;
3125 tag = extract_signed_integer (buf, sizeof (buf));
3126
3127 if (tag == DT_PLTGOT)
3128 {
3129 CORE_ADDR global_pointer;
3130
3131 status = target_read_memory (addr + 8, buf, sizeof (buf));
3132 if (status != 0)
3133 break;
7c0b4a20 3134 global_pointer = extract_unsigned_integer (buf, sizeof (buf));
64a5b29c
KB
3135
3136 /* The payoff... */
3137 return global_pointer;
3138 }
3139
3140 if (tag == DT_NULL)
3141 break;
3142
3143 addr += 16;
3144 }
3145 }
3146 }
3147 return 0;
3148}
3149
3150/* Given a function's address, attempt to find (and return) the
3151 corresponding (canonical) function descriptor. Return 0 if
004d836a 3152 not found. */
64a5b29c
KB
3153static CORE_ADDR
3154find_extant_func_descr (CORE_ADDR faddr)
3155{
76d689a6 3156 struct obj_section *faddr_sect;
64a5b29c 3157
004d836a 3158 /* Return early if faddr is already a function descriptor. */
76d689a6
KB
3159 faddr_sect = find_pc_section (faddr);
3160 if (faddr_sect && strcmp (faddr_sect->the_bfd_section->name, ".opd") == 0)
64a5b29c
KB
3161 return faddr;
3162
76d689a6 3163 if (faddr_sect != NULL)
64a5b29c 3164 {
76d689a6
KB
3165 struct obj_section *osect;
3166 ALL_OBJFILE_OSECTIONS (faddr_sect->objfile, osect)
64a5b29c
KB
3167 {
3168 if (strcmp (osect->the_bfd_section->name, ".opd") == 0)
3169 break;
3170 }
3171
76d689a6 3172 if (osect < faddr_sect->objfile->sections_end)
64a5b29c
KB
3173 {
3174 CORE_ADDR addr;
3175
3176 addr = osect->addr;
3177 while (addr < osect->endaddr)
3178 {
3179 int status;
3180 LONGEST faddr2;
3181 char buf[8];
3182
3183 status = target_read_memory (addr, buf, sizeof (buf));
3184 if (status != 0)
3185 break;
3186 faddr2 = extract_signed_integer (buf, sizeof (buf));
3187
3188 if (faddr == faddr2)
3189 return addr;
3190
3191 addr += 16;
3192 }
3193 }
3194 }
3195 return 0;
3196}
3197
3198/* Attempt to find a function descriptor corresponding to the
3199 given address. If none is found, construct one on the
004d836a 3200 stack using the address at fdaptr. */
64a5b29c
KB
3201
3202static CORE_ADDR
9c9acae0 3203find_func_descr (struct regcache *regcache, CORE_ADDR faddr, CORE_ADDR *fdaptr)
64a5b29c
KB
3204{
3205 CORE_ADDR fdesc;
3206
3207 fdesc = find_extant_func_descr (faddr);
3208
3209 if (fdesc == 0)
3210 {
9c9acae0 3211 ULONGEST global_pointer;
64a5b29c
KB
3212 char buf[16];
3213
3214 fdesc = *fdaptr;
3215 *fdaptr += 16;
3216
b33e8514 3217 global_pointer = ia64_find_global_pointer (faddr);
64a5b29c
KB
3218
3219 if (global_pointer == 0)
9c9acae0
UW
3220 regcache_cooked_read_unsigned (regcache,
3221 IA64_GR1_REGNUM, &global_pointer);
64a5b29c 3222
fbd9dcd3
AC
3223 store_unsigned_integer (buf, 8, faddr);
3224 store_unsigned_integer (buf + 8, 8, global_pointer);
64a5b29c
KB
3225
3226 write_memory (fdesc, buf, 16);
3227 }
3228
3229 return fdesc;
3230}
16461d7d 3231
af8b88dd
JJ
3232/* Use the following routine when printing out function pointers
3233 so the user can see the function address rather than just the
3234 function descriptor. */
3235static CORE_ADDR
e2d0e7eb
AC
3236ia64_convert_from_func_ptr_addr (struct gdbarch *gdbarch, CORE_ADDR addr,
3237 struct target_ops *targ)
af8b88dd
JJ
3238{
3239 struct obj_section *s;
3240
3241 s = find_pc_section (addr);
3242
3243 /* check if ADDR points to a function descriptor. */
3244 if (s && strcmp (s->the_bfd_section->name, ".opd") == 0)
3245 return read_memory_unsigned_integer (addr, 8);
3246
0d5de010
DJ
3247 /* There are also descriptors embedded in vtables. */
3248 if (s)
3249 {
3250 struct minimal_symbol *minsym;
3251
3252 minsym = lookup_minimal_symbol_by_pc (addr);
3253
3254 if (minsym && is_vtable_name (SYMBOL_LINKAGE_NAME (minsym)))
3255 return read_memory_unsigned_integer (addr, 8);
3256 }
3257
af8b88dd
JJ
3258 return addr;
3259}
3260
a78f21af 3261static CORE_ADDR
004d836a
JJ
3262ia64_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
3263{
3264 return sp & ~0xfLL;
3265}
3266
3267static CORE_ADDR
7d9b040b 3268ia64_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
8dd5115e
AS
3269 struct regcache *regcache, CORE_ADDR bp_addr,
3270 int nargs, struct value **args, CORE_ADDR sp,
3271 int struct_return, CORE_ADDR struct_addr)
16461d7d
KB
3272{
3273 int argno;
ea7c478f 3274 struct value *arg;
16461d7d
KB
3275 struct type *type;
3276 int len, argoffset;
64a5b29c 3277 int nslots, rseslots, memslots, slotnum, nfuncargs;
16461d7d 3278 int floatreg;
9c9acae0
UW
3279 ULONGEST bsp, cfm, pfs, new_bsp;
3280 CORE_ADDR funcdescaddr, pc, global_pointer;
7d9b040b 3281 CORE_ADDR func_addr = find_function_addr (function, NULL);
16461d7d
KB
3282
3283 nslots = 0;
64a5b29c 3284 nfuncargs = 0;
004d836a 3285 /* Count the number of slots needed for the arguments. */
16461d7d
KB
3286 for (argno = 0; argno < nargs; argno++)
3287 {
3288 arg = args[argno];
4991999e 3289 type = check_typedef (value_type (arg));
16461d7d
KB
3290 len = TYPE_LENGTH (type);
3291
98f96ba1 3292 if ((nslots & 1) && slot_alignment_is_next_even (type))
16461d7d
KB
3293 nslots++;
3294
64a5b29c
KB
3295 if (TYPE_CODE (type) == TYPE_CODE_FUNC)
3296 nfuncargs++;
3297
16461d7d
KB
3298 nslots += (len + 7) / 8;
3299 }
3300
004d836a 3301 /* Divvy up the slots between the RSE and the memory stack. */
16461d7d
KB
3302 rseslots = (nslots > 8) ? 8 : nslots;
3303 memslots = nslots - rseslots;
3304
004d836a 3305 /* Allocate a new RSE frame. */
9c9acae0 3306 regcache_cooked_read_unsigned (regcache, IA64_CFM_REGNUM, &cfm);
16461d7d 3307
9c9acae0 3308 regcache_cooked_read_unsigned (regcache, IA64_BSP_REGNUM, &bsp);
16461d7d 3309 new_bsp = rse_address_add (bsp, rseslots);
9c9acae0 3310 regcache_cooked_write_unsigned (regcache, IA64_BSP_REGNUM, new_bsp);
16461d7d 3311
9c9acae0 3312 regcache_cooked_read_unsigned (regcache, IA64_PFS_REGNUM, &pfs);
16461d7d
KB
3313 pfs &= 0xc000000000000000LL;
3314 pfs |= (cfm & 0xffffffffffffLL);
9c9acae0 3315 regcache_cooked_write_unsigned (regcache, IA64_PFS_REGNUM, pfs);
16461d7d
KB
3316
3317 cfm &= 0xc000000000000000LL;
3318 cfm |= rseslots;
9c9acae0 3319 regcache_cooked_write_unsigned (regcache, IA64_CFM_REGNUM, cfm);
16461d7d 3320
64a5b29c
KB
3321 /* We will attempt to find function descriptors in the .opd segment,
3322 but if we can't we'll construct them ourselves. That being the
004d836a 3323 case, we'll need to reserve space on the stack for them. */
64a5b29c
KB
3324 funcdescaddr = sp - nfuncargs * 16;
3325 funcdescaddr &= ~0xfLL;
3326
3327 /* Adjust the stack pointer to it's new value. The calling conventions
3328 require us to have 16 bytes of scratch, plus whatever space is
004d836a 3329 necessary for the memory slots and our function descriptors. */
64a5b29c 3330 sp = sp - 16 - (memslots + nfuncargs) * 8;
004d836a 3331 sp &= ~0xfLL; /* Maintain 16 byte alignment. */
16461d7d 3332
64a5b29c
KB
3333 /* Place the arguments where they belong. The arguments will be
3334 either placed in the RSE backing store or on the memory stack.
3335 In addition, floating point arguments or HFAs are placed in
004d836a 3336 floating point registers. */
16461d7d
KB
3337 slotnum = 0;
3338 floatreg = IA64_FR8_REGNUM;
3339 for (argno = 0; argno < nargs; argno++)
3340 {
64a5b29c
KB
3341 struct type *float_elt_type;
3342
16461d7d 3343 arg = args[argno];
4991999e 3344 type = check_typedef (value_type (arg));
16461d7d 3345 len = TYPE_LENGTH (type);
64a5b29c 3346
004d836a 3347 /* Special handling for function parameters. */
64a5b29c
KB
3348 if (len == 8
3349 && TYPE_CODE (type) == TYPE_CODE_PTR
3350 && TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_FUNC)
3351 {
3352 char val_buf[8];
9c9acae0 3353 ULONGEST faddr = extract_unsigned_integer (value_contents (arg), 8);
fbd9dcd3 3354 store_unsigned_integer (val_buf, 8,
9c9acae0 3355 find_func_descr (regcache, faddr,
fbd9dcd3 3356 &funcdescaddr));
64a5b29c
KB
3357 if (slotnum < rseslots)
3358 write_memory (rse_address_add (bsp, slotnum), val_buf, 8);
3359 else
3360 write_memory (sp + 16 + 8 * (slotnum - rseslots), val_buf, 8);
3361 slotnum++;
3362 continue;
3363 }
3364
004d836a 3365 /* Normal slots. */
98f96ba1
KB
3366
3367 /* Skip odd slot if necessary... */
3368 if ((slotnum & 1) && slot_alignment_is_next_even (type))
16461d7d 3369 slotnum++;
98f96ba1 3370
16461d7d
KB
3371 argoffset = 0;
3372 while (len > 0)
3373 {
3374 char val_buf[8];
3375
3376 memset (val_buf, 0, 8);
0fd88904 3377 memcpy (val_buf, value_contents (arg) + argoffset, (len > 8) ? 8 : len);
16461d7d
KB
3378
3379 if (slotnum < rseslots)
3380 write_memory (rse_address_add (bsp, slotnum), val_buf, 8);
3381 else
3382 write_memory (sp + 16 + 8 * (slotnum - rseslots), val_buf, 8);
3383
3384 argoffset += 8;
3385 len -= 8;
3386 slotnum++;
3387 }
64a5b29c 3388
004d836a 3389 /* Handle floating point types (including HFAs). */
64a5b29c
KB
3390 float_elt_type = is_float_or_hfa_type (type);
3391 if (float_elt_type != NULL)
3392 {
3393 argoffset = 0;
3394 len = TYPE_LENGTH (type);
3395 while (len > 0 && floatreg < IA64_FR16_REGNUM)
3396 {
004d836a 3397 char to[MAX_REGISTER_SIZE];
0fd88904 3398 convert_typed_floating (value_contents (arg) + argoffset, float_elt_type,
004d836a
JJ
3399 to, builtin_type_ia64_ext);
3400 regcache_cooked_write (regcache, floatreg, (void *)to);
64a5b29c
KB
3401 floatreg++;
3402 argoffset += TYPE_LENGTH (float_elt_type);
3403 len -= TYPE_LENGTH (float_elt_type);
3404 }
16461d7d
KB
3405 }
3406 }
3407
004d836a 3408 /* Store the struct return value in r8 if necessary. */
16461d7d
KB
3409 if (struct_return)
3410 {
004d836a 3411 regcache_cooked_write_unsigned (regcache, IA64_GR8_REGNUM, (ULONGEST)struct_addr);
16461d7d
KB
3412 }
3413
b33e8514 3414 global_pointer = ia64_find_global_pointer (func_addr);
8dd5115e 3415
004d836a 3416 if (global_pointer != 0)
9c9acae0 3417 regcache_cooked_write_unsigned (regcache, IA64_GR1_REGNUM, global_pointer);
a59fe496 3418
9c9acae0 3419 regcache_cooked_write_unsigned (regcache, IA64_BR0_REGNUM, bp_addr);
16461d7d 3420
9c9acae0 3421 regcache_cooked_write_unsigned (regcache, sp_regnum, sp);
16461d7d
KB
3422
3423 return sp;
3424}
3425
004d836a
JJ
3426static struct frame_id
3427ia64_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
16461d7d 3428{
004d836a 3429 char buf[8];
4afcc598 3430 CORE_ADDR sp, bsp;
004d836a
JJ
3431
3432 frame_unwind_register (next_frame, sp_regnum, buf);
3433 sp = extract_unsigned_integer (buf, 8);
3434
4afcc598
JJ
3435 frame_unwind_register (next_frame, IA64_BSP_REGNUM, buf);
3436 bsp = extract_unsigned_integer (buf, 8);
3437
3438 if (gdbarch_debug >= 1)
3439 fprintf_unfiltered (gdb_stdlog,
78ced177
JJ
3440 "dummy frame id: code 0x%s, stack 0x%s, special 0x%s\n",
3441 paddr_nz (frame_pc_unwind (next_frame)),
3442 paddr_nz (sp), paddr_nz (bsp));
4afcc598
JJ
3443
3444 return frame_id_build_special (sp, frame_pc_unwind (next_frame), bsp);
16461d7d
KB
3445}
3446
004d836a
JJ
3447static CORE_ADDR
3448ia64_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
16461d7d 3449{
004d836a
JJ
3450 char buf[8];
3451 CORE_ADDR ip, psr, pc;
3452
3453 frame_unwind_register (next_frame, IA64_IP_REGNUM, buf);
3454 ip = extract_unsigned_integer (buf, 8);
3455 frame_unwind_register (next_frame, IA64_PSR_REGNUM, buf);
3456 psr = extract_unsigned_integer (buf, 8);
3457
3458 pc = (ip & ~0xf) | ((psr >> 41) & 3);
3459 return pc;
16461d7d
KB
3460}
3461
3462static void
88d82102
JJ
3463ia64_store_return_value (struct type *type, struct regcache *regcache,
3464 const gdb_byte *valbuf)
16461d7d 3465{
004d836a 3466 if (TYPE_CODE (type) == TYPE_CODE_FLT)
16461d7d 3467 {
004d836a
JJ
3468 char to[MAX_REGISTER_SIZE];
3469 convert_typed_floating (valbuf, type, to, builtin_type_ia64_ext);
3470 regcache_cooked_write (regcache, IA64_FR8_REGNUM, (void *)to);
56be3814 3471 target_store_registers (regcache, IA64_FR8_REGNUM);
16461d7d
KB
3472 }
3473 else
004d836a 3474 regcache_cooked_write (regcache, IA64_GR8_REGNUM, valbuf);
16461d7d
KB
3475}
3476
6926787d
AS
3477static int
3478ia64_print_insn (bfd_vma memaddr, struct disassemble_info *info)
3479{
3480 info->bytes_per_line = SLOT_MULTIPLIER;
3481 return print_insn_ia64 (memaddr, info);
3482}
3483
16461d7d
KB
3484static struct gdbarch *
3485ia64_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
3486{
3487 struct gdbarch *gdbarch;
244bc108 3488 struct gdbarch_tdep *tdep;
244bc108 3489
85bf2b91
JJ
3490 /* If there is already a candidate, use it. */
3491 arches = gdbarch_list_lookup_by_info (arches, &info);
3492 if (arches != NULL)
3493 return arches->gdbarch;
16461d7d 3494
244bc108
KB
3495 tdep = xmalloc (sizeof (struct gdbarch_tdep));
3496 gdbarch = gdbarch_alloc (&info, tdep);
244bc108 3497
b33e8514 3498 tdep->sigcontext_register_address = 0;
74174d2e 3499 tdep->pc_in_sigtramp = 0;
698cb3f0 3500
004d836a
JJ
3501 /* Define the ia64 floating-point format to gdb. */
3502 builtin_type_ia64_ext =
3503 init_type (TYPE_CODE_FLT, 128 / 8,
3504 0, "builtin_type_ia64_ext", NULL);
8da61cc4 3505 TYPE_FLOATFORMAT (builtin_type_ia64_ext) = floatformats_ia64_ext;
004d836a 3506
5439edaa
AC
3507 /* According to the ia64 specs, instructions that store long double
3508 floats in memory use a long-double format different than that
3509 used in the floating registers. The memory format matches the
3510 x86 extended float format which is 80 bits. An OS may choose to
3511 use this format (e.g. GNU/Linux) or choose to use a different
3512 format for storing long doubles (e.g. HPUX). In the latter case,
3513 the setting of the format may be moved/overridden in an
3514 OS-specific tdep file. */
8da61cc4 3515 set_gdbarch_long_double_format (gdbarch, floatformats_i387_ext);
32edc941 3516
16461d7d
KB
3517 set_gdbarch_short_bit (gdbarch, 16);
3518 set_gdbarch_int_bit (gdbarch, 32);
3519 set_gdbarch_long_bit (gdbarch, 64);
3520 set_gdbarch_long_long_bit (gdbarch, 64);
3521 set_gdbarch_float_bit (gdbarch, 32);
3522 set_gdbarch_double_bit (gdbarch, 64);
33c08150 3523 set_gdbarch_long_double_bit (gdbarch, 128);
16461d7d
KB
3524 set_gdbarch_ptr_bit (gdbarch, 64);
3525
004d836a
JJ
3526 set_gdbarch_num_regs (gdbarch, NUM_IA64_RAW_REGS);
3527 set_gdbarch_num_pseudo_regs (gdbarch, LAST_PSEUDO_REGNUM - FIRST_PSEUDO_REGNUM);
16461d7d 3528 set_gdbarch_sp_regnum (gdbarch, sp_regnum);
698cb3f0 3529 set_gdbarch_fp0_regnum (gdbarch, IA64_FR0_REGNUM);
16461d7d
KB
3530
3531 set_gdbarch_register_name (gdbarch, ia64_register_name);
004d836a 3532 set_gdbarch_register_type (gdbarch, ia64_register_type);
16461d7d 3533
004d836a
JJ
3534 set_gdbarch_pseudo_register_read (gdbarch, ia64_pseudo_register_read);
3535 set_gdbarch_pseudo_register_write (gdbarch, ia64_pseudo_register_write);
3536 set_gdbarch_dwarf2_reg_to_regnum (gdbarch, ia64_dwarf_reg_to_regnum);
3537 set_gdbarch_register_reggroup_p (gdbarch, ia64_register_reggroup_p);
3538 set_gdbarch_convert_register_p (gdbarch, ia64_convert_register_p);
3539 set_gdbarch_register_to_value (gdbarch, ia64_register_to_value);
3540 set_gdbarch_value_to_register (gdbarch, ia64_value_to_register);
16461d7d 3541
004d836a 3542 set_gdbarch_skip_prologue (gdbarch, ia64_skip_prologue);
16461d7d 3543
b5622e8d 3544 set_gdbarch_deprecated_use_struct_convention (gdbarch, ia64_use_struct_convention);
004d836a 3545 set_gdbarch_extract_return_value (gdbarch, ia64_extract_return_value);
16461d7d 3546
004d836a 3547 set_gdbarch_store_return_value (gdbarch, ia64_store_return_value);
16461d7d
KB
3548
3549 set_gdbarch_memory_insert_breakpoint (gdbarch, ia64_memory_insert_breakpoint);
3550 set_gdbarch_memory_remove_breakpoint (gdbarch, ia64_memory_remove_breakpoint);
3551 set_gdbarch_breakpoint_from_pc (gdbarch, ia64_breakpoint_from_pc);
3552 set_gdbarch_read_pc (gdbarch, ia64_read_pc);
b33e8514 3553 set_gdbarch_write_pc (gdbarch, ia64_write_pc);
16461d7d
KB
3554
3555 /* Settings for calling functions in the inferior. */
8dd5115e 3556 set_gdbarch_push_dummy_call (gdbarch, ia64_push_dummy_call);
004d836a
JJ
3557 set_gdbarch_frame_align (gdbarch, ia64_frame_align);
3558 set_gdbarch_unwind_dummy_id (gdbarch, ia64_unwind_dummy_id);
16461d7d 3559
004d836a 3560 set_gdbarch_unwind_pc (gdbarch, ia64_unwind_pc);
968d1cb4 3561#ifdef HAVE_LIBUNWIND_IA64_H
c5a27d9c 3562 frame_unwind_append_sniffer (gdbarch, ia64_libunwind_sigtramp_frame_sniffer);
968d1cb4
JJ
3563 frame_unwind_append_sniffer (gdbarch, ia64_libunwind_frame_sniffer);
3564 libunwind_frame_set_descr (gdbarch, &ia64_libunwind_descr);
c5a27d9c
JJ
3565#else
3566 frame_unwind_append_sniffer (gdbarch, ia64_sigtramp_frame_sniffer);
968d1cb4 3567#endif
004d836a
JJ
3568 frame_unwind_append_sniffer (gdbarch, ia64_frame_sniffer);
3569 frame_base_set_default (gdbarch, &ia64_frame_base);
16461d7d
KB
3570
3571 /* Settings that should be unnecessary. */
3572 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
3573
6926787d 3574 set_gdbarch_print_insn (gdbarch, ia64_print_insn);
af8b88dd 3575 set_gdbarch_convert_from_func_ptr_addr (gdbarch, ia64_convert_from_func_ptr_addr);
6926787d 3576
0d5de010
DJ
3577 /* The virtual table contains 16-byte descriptors, not pointers to
3578 descriptors. */
3579 set_gdbarch_vtable_function_descriptors (gdbarch, 1);
3580
b33e8514
AS
3581 /* Hook in ABI-specific overrides, if they have been registered. */
3582 gdbarch_init_osabi (info, gdbarch);
3583
16461d7d
KB
3584 return gdbarch;
3585}
3586
a78f21af
AC
3587extern initialize_file_ftype _initialize_ia64_tdep; /* -Wmissing-prototypes */
3588
16461d7d
KB
3589void
3590_initialize_ia64_tdep (void)
3591{
b33e8514 3592 gdbarch_register (bfd_arch_ia64, ia64_gdbarch_init, NULL);
16461d7d 3593}
This page took 0.735696 seconds and 4 git commands to generate.