* gdbarch.sh (software_single_step): Replace REGCACHE argument by
[deliverable/binutils-gdb.git] / gdb / spu-tdep.c
1 /* SPU target-dependent code for GDB, the GNU debugger.
2 Copyright (C) 2006, 2007 Free Software Foundation, Inc.
3
4 Contributed by Ulrich Weigand <uweigand@de.ibm.com>.
5 Based on a port by Sid Manning <sid@us.ibm.com>.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 Boston, MA 02110-1301, USA. */
23
24 #include "defs.h"
25 #include "arch-utils.h"
26 #include "gdbtypes.h"
27 #include "gdbcmd.h"
28 #include "gdbcore.h"
29 #include "gdb_string.h"
30 #include "gdb_assert.h"
31 #include "frame.h"
32 #include "frame-unwind.h"
33 #include "frame-base.h"
34 #include "trad-frame.h"
35 #include "symtab.h"
36 #include "symfile.h"
37 #include "value.h"
38 #include "inferior.h"
39 #include "dis-asm.h"
40 #include "objfiles.h"
41 #include "language.h"
42 #include "regcache.h"
43 #include "reggroups.h"
44 #include "floatformat.h"
45 #include "observer.h"
46
47 #include "spu-tdep.h"
48
49 /* SPU-specific vector type. */
50 struct type *spu_builtin_type_vec128;
51
52 /* The list of available "info spu " commands. */
53 static struct cmd_list_element *infospucmdlist = NULL;
54
55 /* Registers. */
56
57 static const char *
58 spu_register_name (int reg_nr)
59 {
60 static char *register_names[] =
61 {
62 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
63 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
64 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
65 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31",
66 "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39",
67 "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47",
68 "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55",
69 "r56", "r57", "r58", "r59", "r60", "r61", "r62", "r63",
70 "r64", "r65", "r66", "r67", "r68", "r69", "r70", "r71",
71 "r72", "r73", "r74", "r75", "r76", "r77", "r78", "r79",
72 "r80", "r81", "r82", "r83", "r84", "r85", "r86", "r87",
73 "r88", "r89", "r90", "r91", "r92", "r93", "r94", "r95",
74 "r96", "r97", "r98", "r99", "r100", "r101", "r102", "r103",
75 "r104", "r105", "r106", "r107", "r108", "r109", "r110", "r111",
76 "r112", "r113", "r114", "r115", "r116", "r117", "r118", "r119",
77 "r120", "r121", "r122", "r123", "r124", "r125", "r126", "r127",
78 "id", "pc", "sp", "fpscr", "srr0", "lslr", "decr", "decr_status"
79 };
80
81 if (reg_nr < 0)
82 return NULL;
83 if (reg_nr >= sizeof register_names / sizeof *register_names)
84 return NULL;
85
86 return register_names[reg_nr];
87 }
88
89 static struct type *
90 spu_register_type (struct gdbarch *gdbarch, int reg_nr)
91 {
92 if (reg_nr < SPU_NUM_GPRS)
93 return spu_builtin_type_vec128;
94
95 switch (reg_nr)
96 {
97 case SPU_ID_REGNUM:
98 return builtin_type_uint32;
99
100 case SPU_PC_REGNUM:
101 return builtin_type_void_func_ptr;
102
103 case SPU_SP_REGNUM:
104 return builtin_type_void_data_ptr;
105
106 case SPU_FPSCR_REGNUM:
107 return builtin_type_uint128;
108
109 case SPU_SRR0_REGNUM:
110 return builtin_type_uint32;
111
112 case SPU_LSLR_REGNUM:
113 return builtin_type_uint32;
114
115 case SPU_DECR_REGNUM:
116 return builtin_type_uint32;
117
118 case SPU_DECR_STATUS_REGNUM:
119 return builtin_type_uint32;
120
121 default:
122 internal_error (__FILE__, __LINE__, "invalid regnum");
123 }
124 }
125
126 /* Pseudo registers for preferred slots - stack pointer. */
127
128 static void
129 spu_pseudo_register_read_spu (struct regcache *regcache, const char *regname,
130 gdb_byte *buf)
131 {
132 gdb_byte reg[32];
133 char annex[32];
134 ULONGEST id;
135
136 regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id);
137 xsnprintf (annex, sizeof annex, "%d/%s", (int) id, regname);
138 memset (reg, 0, sizeof reg);
139 target_read (&current_target, TARGET_OBJECT_SPU, annex,
140 reg, 0, sizeof reg);
141
142 store_unsigned_integer (buf, 4, strtoulst (reg, NULL, 16));
143 }
144
145 static void
146 spu_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache,
147 int regnum, gdb_byte *buf)
148 {
149 gdb_byte reg[16];
150 char annex[32];
151 ULONGEST id;
152
153 switch (regnum)
154 {
155 case SPU_SP_REGNUM:
156 regcache_raw_read (regcache, SPU_RAW_SP_REGNUM, reg);
157 memcpy (buf, reg, 4);
158 break;
159
160 case SPU_FPSCR_REGNUM:
161 regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id);
162 xsnprintf (annex, sizeof annex, "%d/fpcr", (int) id);
163 target_read (&current_target, TARGET_OBJECT_SPU, annex, buf, 0, 16);
164 break;
165
166 case SPU_SRR0_REGNUM:
167 spu_pseudo_register_read_spu (regcache, "srr0", buf);
168 break;
169
170 case SPU_LSLR_REGNUM:
171 spu_pseudo_register_read_spu (regcache, "lslr", buf);
172 break;
173
174 case SPU_DECR_REGNUM:
175 spu_pseudo_register_read_spu (regcache, "decr", buf);
176 break;
177
178 case SPU_DECR_STATUS_REGNUM:
179 spu_pseudo_register_read_spu (regcache, "decr_status", buf);
180 break;
181
182 default:
183 internal_error (__FILE__, __LINE__, _("invalid regnum"));
184 }
185 }
186
187 static void
188 spu_pseudo_register_write_spu (struct regcache *regcache, const char *regname,
189 const gdb_byte *buf)
190 {
191 gdb_byte reg[32];
192 char annex[32];
193 ULONGEST id;
194
195 regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id);
196 xsnprintf (annex, sizeof annex, "%d/%s", (int) id, regname);
197 xsnprintf (reg, sizeof reg, "0x%s",
198 phex_nz (extract_unsigned_integer (buf, 4), 4));
199 target_write (&current_target, TARGET_OBJECT_SPU, annex,
200 reg, 0, strlen (reg));
201 }
202
203 static void
204 spu_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache,
205 int regnum, const gdb_byte *buf)
206 {
207 gdb_byte reg[16];
208 char annex[32];
209 ULONGEST id;
210
211 switch (regnum)
212 {
213 case SPU_SP_REGNUM:
214 regcache_raw_read (regcache, SPU_RAW_SP_REGNUM, reg);
215 memcpy (reg, buf, 4);
216 regcache_raw_write (regcache, SPU_RAW_SP_REGNUM, reg);
217 break;
218
219 case SPU_FPSCR_REGNUM:
220 regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id);
221 xsnprintf (annex, sizeof annex, "%d/fpcr", (int) id);
222 target_write (&current_target, TARGET_OBJECT_SPU, annex, buf, 0, 16);
223 break;
224
225 case SPU_SRR0_REGNUM:
226 spu_pseudo_register_write_spu (regcache, "srr0", buf);
227 break;
228
229 case SPU_LSLR_REGNUM:
230 spu_pseudo_register_write_spu (regcache, "lslr", buf);
231 break;
232
233 case SPU_DECR_REGNUM:
234 spu_pseudo_register_write_spu (regcache, "decr", buf);
235 break;
236
237 case SPU_DECR_STATUS_REGNUM:
238 spu_pseudo_register_write_spu (regcache, "decr_status", buf);
239 break;
240
241 default:
242 internal_error (__FILE__, __LINE__, _("invalid regnum"));
243 }
244 }
245
246 /* Value conversion -- access scalar values at the preferred slot. */
247
248 static struct value *
249 spu_value_from_register (struct type *type, int regnum,
250 struct frame_info *frame)
251 {
252 struct value *value = default_value_from_register (type, regnum, frame);
253 int len = TYPE_LENGTH (type);
254
255 if (regnum < SPU_NUM_GPRS && len < 16)
256 {
257 int preferred_slot = len < 4 ? 4 - len : 0;
258 set_value_offset (value, preferred_slot);
259 }
260
261 return value;
262 }
263
264 /* Register groups. */
265
266 static int
267 spu_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
268 struct reggroup *group)
269 {
270 /* Registers displayed via 'info regs'. */
271 if (group == general_reggroup)
272 return 1;
273
274 /* Registers displayed via 'info float'. */
275 if (group == float_reggroup)
276 return 0;
277
278 /* Registers that need to be saved/restored in order to
279 push or pop frames. */
280 if (group == save_reggroup || group == restore_reggroup)
281 return 1;
282
283 return default_register_reggroup_p (gdbarch, regnum, group);
284 }
285
286
287 /* Decoding SPU instructions. */
288
289 enum
290 {
291 op_lqd = 0x34,
292 op_lqx = 0x3c4,
293 op_lqa = 0x61,
294 op_lqr = 0x67,
295 op_stqd = 0x24,
296 op_stqx = 0x144,
297 op_stqa = 0x41,
298 op_stqr = 0x47,
299
300 op_il = 0x081,
301 op_ila = 0x21,
302 op_a = 0x0c0,
303 op_ai = 0x1c,
304
305 op_selb = 0x4,
306
307 op_br = 0x64,
308 op_bra = 0x60,
309 op_brsl = 0x66,
310 op_brasl = 0x62,
311 op_brnz = 0x42,
312 op_brz = 0x40,
313 op_brhnz = 0x46,
314 op_brhz = 0x44,
315 op_bi = 0x1a8,
316 op_bisl = 0x1a9,
317 op_biz = 0x128,
318 op_binz = 0x129,
319 op_bihz = 0x12a,
320 op_bihnz = 0x12b,
321 };
322
323 static int
324 is_rr (unsigned int insn, int op, int *rt, int *ra, int *rb)
325 {
326 if ((insn >> 21) == op)
327 {
328 *rt = insn & 127;
329 *ra = (insn >> 7) & 127;
330 *rb = (insn >> 14) & 127;
331 return 1;
332 }
333
334 return 0;
335 }
336
337 static int
338 is_rrr (unsigned int insn, int op, int *rt, int *ra, int *rb, int *rc)
339 {
340 if ((insn >> 28) == op)
341 {
342 *rt = (insn >> 21) & 127;
343 *ra = (insn >> 7) & 127;
344 *rb = (insn >> 14) & 127;
345 *rc = insn & 127;
346 return 1;
347 }
348
349 return 0;
350 }
351
352 static int
353 is_ri7 (unsigned int insn, int op, int *rt, int *ra, int *i7)
354 {
355 if ((insn >> 21) == op)
356 {
357 *rt = insn & 127;
358 *ra = (insn >> 7) & 127;
359 *i7 = (((insn >> 14) & 127) ^ 0x40) - 0x40;
360 return 1;
361 }
362
363 return 0;
364 }
365
366 static int
367 is_ri10 (unsigned int insn, int op, int *rt, int *ra, int *i10)
368 {
369 if ((insn >> 24) == op)
370 {
371 *rt = insn & 127;
372 *ra = (insn >> 7) & 127;
373 *i10 = (((insn >> 14) & 0x3ff) ^ 0x200) - 0x200;
374 return 1;
375 }
376
377 return 0;
378 }
379
380 static int
381 is_ri16 (unsigned int insn, int op, int *rt, int *i16)
382 {
383 if ((insn >> 23) == op)
384 {
385 *rt = insn & 127;
386 *i16 = (((insn >> 7) & 0xffff) ^ 0x8000) - 0x8000;
387 return 1;
388 }
389
390 return 0;
391 }
392
393 static int
394 is_ri18 (unsigned int insn, int op, int *rt, int *i18)
395 {
396 if ((insn >> 25) == op)
397 {
398 *rt = insn & 127;
399 *i18 = (((insn >> 7) & 0x3ffff) ^ 0x20000) - 0x20000;
400 return 1;
401 }
402
403 return 0;
404 }
405
406 static int
407 is_branch (unsigned int insn, int *offset, int *reg)
408 {
409 int rt, i7, i16;
410
411 if (is_ri16 (insn, op_br, &rt, &i16)
412 || is_ri16 (insn, op_brsl, &rt, &i16)
413 || is_ri16 (insn, op_brnz, &rt, &i16)
414 || is_ri16 (insn, op_brz, &rt, &i16)
415 || is_ri16 (insn, op_brhnz, &rt, &i16)
416 || is_ri16 (insn, op_brhz, &rt, &i16))
417 {
418 *reg = SPU_PC_REGNUM;
419 *offset = i16 << 2;
420 return 1;
421 }
422
423 if (is_ri16 (insn, op_bra, &rt, &i16)
424 || is_ri16 (insn, op_brasl, &rt, &i16))
425 {
426 *reg = -1;
427 *offset = i16 << 2;
428 return 1;
429 }
430
431 if (is_ri7 (insn, op_bi, &rt, reg, &i7)
432 || is_ri7 (insn, op_bisl, &rt, reg, &i7)
433 || is_ri7 (insn, op_biz, &rt, reg, &i7)
434 || is_ri7 (insn, op_binz, &rt, reg, &i7)
435 || is_ri7 (insn, op_bihz, &rt, reg, &i7)
436 || is_ri7 (insn, op_bihnz, &rt, reg, &i7))
437 {
438 *offset = 0;
439 return 1;
440 }
441
442 return 0;
443 }
444
445
446 /* Prolog parsing. */
447
448 struct spu_prologue_data
449 {
450 /* Stack frame size. -1 if analysis was unsuccessful. */
451 int size;
452
453 /* How to find the CFA. The CFA is equal to SP at function entry. */
454 int cfa_reg;
455 int cfa_offset;
456
457 /* Offset relative to CFA where a register is saved. -1 if invalid. */
458 int reg_offset[SPU_NUM_GPRS];
459 };
460
461 static CORE_ADDR
462 spu_analyze_prologue (CORE_ADDR start_pc, CORE_ADDR end_pc,
463 struct spu_prologue_data *data)
464 {
465 int found_sp = 0;
466 int found_fp = 0;
467 int found_lr = 0;
468 int reg_immed[SPU_NUM_GPRS];
469 gdb_byte buf[16];
470 CORE_ADDR prolog_pc = start_pc;
471 CORE_ADDR pc;
472 int i;
473
474
475 /* Initialize DATA to default values. */
476 data->size = -1;
477
478 data->cfa_reg = SPU_RAW_SP_REGNUM;
479 data->cfa_offset = 0;
480
481 for (i = 0; i < SPU_NUM_GPRS; i++)
482 data->reg_offset[i] = -1;
483
484 /* Set up REG_IMMED array. This is non-zero for a register if we know its
485 preferred slot currently holds this immediate value. */
486 for (i = 0; i < SPU_NUM_GPRS; i++)
487 reg_immed[i] = 0;
488
489 /* Scan instructions until the first branch.
490
491 The following instructions are important prolog components:
492
493 - The first instruction to set up the stack pointer.
494 - The first instruction to set up the frame pointer.
495 - The first instruction to save the link register.
496
497 We return the instruction after the latest of these three,
498 or the incoming PC if none is found. The first instruction
499 to set up the stack pointer also defines the frame size.
500
501 Note that instructions saving incoming arguments to their stack
502 slots are not counted as important, because they are hard to
503 identify with certainty. This should not matter much, because
504 arguments are relevant only in code compiled with debug data,
505 and in such code the GDB core will advance until the first source
506 line anyway, using SAL data.
507
508 For purposes of stack unwinding, we analyze the following types
509 of instructions in addition:
510
511 - Any instruction adding to the current frame pointer.
512 - Any instruction loading an immediate constant into a register.
513 - Any instruction storing a register onto the stack.
514
515 These are used to compute the CFA and REG_OFFSET output. */
516
517 for (pc = start_pc; pc < end_pc; pc += 4)
518 {
519 unsigned int insn;
520 int rt, ra, rb, rc, immed;
521
522 if (target_read_memory (pc, buf, 4))
523 break;
524 insn = extract_unsigned_integer (buf, 4);
525
526 /* AI is the typical instruction to set up a stack frame.
527 It is also used to initialize the frame pointer. */
528 if (is_ri10 (insn, op_ai, &rt, &ra, &immed))
529 {
530 if (rt == data->cfa_reg && ra == data->cfa_reg)
531 data->cfa_offset -= immed;
532
533 if (rt == SPU_RAW_SP_REGNUM && ra == SPU_RAW_SP_REGNUM
534 && !found_sp)
535 {
536 found_sp = 1;
537 prolog_pc = pc + 4;
538
539 data->size = -immed;
540 }
541 else if (rt == SPU_FP_REGNUM && ra == SPU_RAW_SP_REGNUM
542 && !found_fp)
543 {
544 found_fp = 1;
545 prolog_pc = pc + 4;
546
547 data->cfa_reg = SPU_FP_REGNUM;
548 data->cfa_offset -= immed;
549 }
550 }
551
552 /* A is used to set up stack frames of size >= 512 bytes.
553 If we have tracked the contents of the addend register,
554 we can handle this as well. */
555 else if (is_rr (insn, op_a, &rt, &ra, &rb))
556 {
557 if (rt == data->cfa_reg && ra == data->cfa_reg)
558 {
559 if (reg_immed[rb] != 0)
560 data->cfa_offset -= reg_immed[rb];
561 else
562 data->cfa_reg = -1; /* We don't know the CFA any more. */
563 }
564
565 if (rt == SPU_RAW_SP_REGNUM && ra == SPU_RAW_SP_REGNUM
566 && !found_sp)
567 {
568 found_sp = 1;
569 prolog_pc = pc + 4;
570
571 if (reg_immed[rb] != 0)
572 data->size = -reg_immed[rb];
573 }
574 }
575
576 /* We need to track IL and ILA used to load immediate constants
577 in case they are later used as input to an A instruction. */
578 else if (is_ri16 (insn, op_il, &rt, &immed))
579 {
580 reg_immed[rt] = immed;
581
582 if (rt == SPU_RAW_SP_REGNUM && !found_sp)
583 found_sp = 1;
584 }
585
586 else if (is_ri18 (insn, op_ila, &rt, &immed))
587 {
588 reg_immed[rt] = immed & 0x3ffff;
589
590 if (rt == SPU_RAW_SP_REGNUM && !found_sp)
591 found_sp = 1;
592 }
593
594 /* STQD is used to save registers to the stack. */
595 else if (is_ri10 (insn, op_stqd, &rt, &ra, &immed))
596 {
597 if (ra == data->cfa_reg)
598 data->reg_offset[rt] = data->cfa_offset - (immed << 4);
599
600 if (ra == data->cfa_reg && rt == SPU_LR_REGNUM
601 && !found_lr)
602 {
603 found_lr = 1;
604 prolog_pc = pc + 4;
605 }
606 }
607
608 /* _start uses SELB to set up the stack pointer. */
609 else if (is_rrr (insn, op_selb, &rt, &ra, &rb, &rc))
610 {
611 if (rt == SPU_RAW_SP_REGNUM && !found_sp)
612 found_sp = 1;
613 }
614
615 /* We terminate if we find a branch. */
616 else if (is_branch (insn, &immed, &ra))
617 break;
618 }
619
620
621 /* If we successfully parsed until here, and didn't find any instruction
622 modifying SP, we assume we have a frameless function. */
623 if (!found_sp)
624 data->size = 0;
625
626 /* Return cooked instead of raw SP. */
627 if (data->cfa_reg == SPU_RAW_SP_REGNUM)
628 data->cfa_reg = SPU_SP_REGNUM;
629
630 return prolog_pc;
631 }
632
633 /* Return the first instruction after the prologue starting at PC. */
634 static CORE_ADDR
635 spu_skip_prologue (CORE_ADDR pc)
636 {
637 struct spu_prologue_data data;
638 return spu_analyze_prologue (pc, (CORE_ADDR)-1, &data);
639 }
640
641 /* Return the frame pointer in use at address PC. */
642 static void
643 spu_virtual_frame_pointer (CORE_ADDR pc, int *reg, LONGEST *offset)
644 {
645 struct spu_prologue_data data;
646 spu_analyze_prologue (pc, (CORE_ADDR)-1, &data);
647
648 if (data.size != -1 && data.cfa_reg != -1)
649 {
650 /* The 'frame pointer' address is CFA minus frame size. */
651 *reg = data.cfa_reg;
652 *offset = data.cfa_offset - data.size;
653 }
654 else
655 {
656 /* ??? We don't really know ... */
657 *reg = SPU_SP_REGNUM;
658 *offset = 0;
659 }
660 }
661
662 /* Return true if we are in the function's epilogue, i.e. after the
663 instruction that destroyed the function's stack frame.
664
665 1) scan forward from the point of execution:
666 a) If you find an instruction that modifies the stack pointer
667 or transfers control (except a return), execution is not in
668 an epilogue, return.
669 b) Stop scanning if you find a return instruction or reach the
670 end of the function or reach the hard limit for the size of
671 an epilogue.
672 2) scan backward from the point of execution:
673 a) If you find an instruction that modifies the stack pointer,
674 execution *is* in an epilogue, return.
675 b) Stop scanning if you reach an instruction that transfers
676 control or the beginning of the function or reach the hard
677 limit for the size of an epilogue. */
678
679 static int
680 spu_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc)
681 {
682 CORE_ADDR scan_pc, func_start, func_end, epilogue_start, epilogue_end;
683 bfd_byte buf[4];
684 unsigned int insn;
685 int rt, ra, rb, rc, immed;
686
687 /* Find the search limits based on function boundaries and hard limit.
688 We assume the epilogue can be up to 64 instructions long. */
689
690 const int spu_max_epilogue_size = 64 * 4;
691
692 if (!find_pc_partial_function (pc, NULL, &func_start, &func_end))
693 return 0;
694
695 if (pc - func_start < spu_max_epilogue_size)
696 epilogue_start = func_start;
697 else
698 epilogue_start = pc - spu_max_epilogue_size;
699
700 if (func_end - pc < spu_max_epilogue_size)
701 epilogue_end = func_end;
702 else
703 epilogue_end = pc + spu_max_epilogue_size;
704
705 /* Scan forward until next 'bi $0'. */
706
707 for (scan_pc = pc; scan_pc < epilogue_end; scan_pc += 4)
708 {
709 if (target_read_memory (scan_pc, buf, 4))
710 return 0;
711 insn = extract_unsigned_integer (buf, 4);
712
713 if (is_branch (insn, &immed, &ra))
714 {
715 if (immed == 0 && ra == SPU_LR_REGNUM)
716 break;
717
718 return 0;
719 }
720
721 if (is_ri10 (insn, op_ai, &rt, &ra, &immed)
722 || is_rr (insn, op_a, &rt, &ra, &rb)
723 || is_ri10 (insn, op_lqd, &rt, &ra, &immed))
724 {
725 if (rt == SPU_RAW_SP_REGNUM)
726 return 0;
727 }
728 }
729
730 if (scan_pc >= epilogue_end)
731 return 0;
732
733 /* Scan backward until adjustment to stack pointer (R1). */
734
735 for (scan_pc = pc - 4; scan_pc >= epilogue_start; scan_pc -= 4)
736 {
737 if (target_read_memory (scan_pc, buf, 4))
738 return 0;
739 insn = extract_unsigned_integer (buf, 4);
740
741 if (is_branch (insn, &immed, &ra))
742 return 0;
743
744 if (is_ri10 (insn, op_ai, &rt, &ra, &immed)
745 || is_rr (insn, op_a, &rt, &ra, &rb)
746 || is_ri10 (insn, op_lqd, &rt, &ra, &immed))
747 {
748 if (rt == SPU_RAW_SP_REGNUM)
749 return 1;
750 }
751 }
752
753 return 0;
754 }
755
756
757 /* Normal stack frames. */
758
759 struct spu_unwind_cache
760 {
761 CORE_ADDR func;
762 CORE_ADDR frame_base;
763 CORE_ADDR local_base;
764
765 struct trad_frame_saved_reg *saved_regs;
766 };
767
768 static struct spu_unwind_cache *
769 spu_frame_unwind_cache (struct frame_info *next_frame,
770 void **this_prologue_cache)
771 {
772 struct spu_unwind_cache *info;
773 struct spu_prologue_data data;
774 gdb_byte buf[16];
775
776 if (*this_prologue_cache)
777 return *this_prologue_cache;
778
779 info = FRAME_OBSTACK_ZALLOC (struct spu_unwind_cache);
780 *this_prologue_cache = info;
781 info->saved_regs = trad_frame_alloc_saved_regs (next_frame);
782 info->frame_base = 0;
783 info->local_base = 0;
784
785 /* Find the start of the current function, and analyze its prologue. */
786 info->func = frame_func_unwind (next_frame, NORMAL_FRAME);
787 if (info->func == 0)
788 {
789 /* Fall back to using the current PC as frame ID. */
790 info->func = frame_pc_unwind (next_frame);
791 data.size = -1;
792 }
793 else
794 spu_analyze_prologue (info->func, frame_pc_unwind (next_frame), &data);
795
796
797 /* If successful, use prologue analysis data. */
798 if (data.size != -1 && data.cfa_reg != -1)
799 {
800 CORE_ADDR cfa;
801 int i;
802
803 /* Determine CFA via unwound CFA_REG plus CFA_OFFSET. */
804 frame_unwind_register (next_frame, data.cfa_reg, buf);
805 cfa = extract_unsigned_integer (buf, 4) + data.cfa_offset;
806
807 /* Call-saved register slots. */
808 for (i = 0; i < SPU_NUM_GPRS; i++)
809 if (i == SPU_LR_REGNUM
810 || (i >= SPU_SAVED1_REGNUM && i <= SPU_SAVEDN_REGNUM))
811 if (data.reg_offset[i] != -1)
812 info->saved_regs[i].addr = cfa - data.reg_offset[i];
813
814 /* Frame bases. */
815 info->frame_base = cfa;
816 info->local_base = cfa - data.size;
817 }
818
819 /* Otherwise, fall back to reading the backchain link. */
820 else
821 {
822 CORE_ADDR reg, backchain;
823
824 /* Get the backchain. */
825 reg = frame_unwind_register_unsigned (next_frame, SPU_SP_REGNUM);
826 backchain = read_memory_unsigned_integer (reg, 4);
827
828 /* A zero backchain terminates the frame chain. Also, sanity
829 check against the local store size limit. */
830 if (backchain != 0 && backchain < SPU_LS_SIZE)
831 {
832 /* Assume the link register is saved into its slot. */
833 if (backchain + 16 < SPU_LS_SIZE)
834 info->saved_regs[SPU_LR_REGNUM].addr = backchain + 16;
835
836 /* Frame bases. */
837 info->frame_base = backchain;
838 info->local_base = reg;
839 }
840 }
841
842 /* The previous SP is equal to the CFA. */
843 trad_frame_set_value (info->saved_regs, SPU_SP_REGNUM, info->frame_base);
844
845 /* Read full contents of the unwound link register in order to
846 be able to determine the return address. */
847 if (trad_frame_addr_p (info->saved_regs, SPU_LR_REGNUM))
848 target_read_memory (info->saved_regs[SPU_LR_REGNUM].addr, buf, 16);
849 else
850 frame_unwind_register (next_frame, SPU_LR_REGNUM, buf);
851
852 /* Normally, the return address is contained in the slot 0 of the
853 link register, and slots 1-3 are zero. For an overlay return,
854 slot 0 contains the address of the overlay manager return stub,
855 slot 1 contains the partition number of the overlay section to
856 be returned to, and slot 2 contains the return address within
857 that section. Return the latter address in that case. */
858 if (extract_unsigned_integer (buf + 8, 4) != 0)
859 trad_frame_set_value (info->saved_regs, SPU_PC_REGNUM,
860 extract_unsigned_integer (buf + 8, 4));
861 else
862 trad_frame_set_value (info->saved_regs, SPU_PC_REGNUM,
863 extract_unsigned_integer (buf, 4));
864
865 return info;
866 }
867
868 static void
869 spu_frame_this_id (struct frame_info *next_frame,
870 void **this_prologue_cache, struct frame_id *this_id)
871 {
872 struct spu_unwind_cache *info =
873 spu_frame_unwind_cache (next_frame, this_prologue_cache);
874
875 if (info->frame_base == 0)
876 return;
877
878 *this_id = frame_id_build (info->frame_base, info->func);
879 }
880
881 static void
882 spu_frame_prev_register (struct frame_info *next_frame,
883 void **this_prologue_cache,
884 int regnum, int *optimizedp,
885 enum lval_type *lvalp, CORE_ADDR * addrp,
886 int *realnump, gdb_byte *bufferp)
887 {
888 struct spu_unwind_cache *info
889 = spu_frame_unwind_cache (next_frame, this_prologue_cache);
890
891 /* Special-case the stack pointer. */
892 if (regnum == SPU_RAW_SP_REGNUM)
893 regnum = SPU_SP_REGNUM;
894
895 trad_frame_get_prev_register (next_frame, info->saved_regs, regnum,
896 optimizedp, lvalp, addrp, realnump, bufferp);
897 }
898
899 static const struct frame_unwind spu_frame_unwind = {
900 NORMAL_FRAME,
901 spu_frame_this_id,
902 spu_frame_prev_register
903 };
904
905 const struct frame_unwind *
906 spu_frame_sniffer (struct frame_info *next_frame)
907 {
908 return &spu_frame_unwind;
909 }
910
911 static CORE_ADDR
912 spu_frame_base_address (struct frame_info *next_frame, void **this_cache)
913 {
914 struct spu_unwind_cache *info
915 = spu_frame_unwind_cache (next_frame, this_cache);
916 return info->local_base;
917 }
918
919 static const struct frame_base spu_frame_base = {
920 &spu_frame_unwind,
921 spu_frame_base_address,
922 spu_frame_base_address,
923 spu_frame_base_address
924 };
925
926 static CORE_ADDR
927 spu_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
928 {
929 CORE_ADDR pc = frame_unwind_register_unsigned (next_frame, SPU_PC_REGNUM);
930 /* Mask off interrupt enable bit. */
931 return pc & -4;
932 }
933
934 static CORE_ADDR
935 spu_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
936 {
937 return frame_unwind_register_unsigned (next_frame, SPU_SP_REGNUM);
938 }
939
940 static CORE_ADDR
941 spu_read_pc (ptid_t ptid)
942 {
943 CORE_ADDR pc = read_register_pid (SPU_PC_REGNUM, ptid);
944 /* Mask off interrupt enable bit. */
945 return pc & -4;
946 }
947
948 static void
949 spu_write_pc (CORE_ADDR pc, ptid_t ptid)
950 {
951 /* Keep interrupt enabled state unchanged. */
952 CORE_ADDR old_pc = read_register_pid (SPU_PC_REGNUM, ptid);
953 write_register_pid (SPU_PC_REGNUM, (pc & -4) | (old_pc & 3), ptid);
954 }
955
956
957 /* Function calling convention. */
958
959 static CORE_ADDR
960 spu_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
961 {
962 return sp & ~15;
963 }
964
965 static int
966 spu_scalar_value_p (struct type *type)
967 {
968 switch (TYPE_CODE (type))
969 {
970 case TYPE_CODE_INT:
971 case TYPE_CODE_ENUM:
972 case TYPE_CODE_RANGE:
973 case TYPE_CODE_CHAR:
974 case TYPE_CODE_BOOL:
975 case TYPE_CODE_PTR:
976 case TYPE_CODE_REF:
977 return TYPE_LENGTH (type) <= 16;
978
979 default:
980 return 0;
981 }
982 }
983
984 static void
985 spu_value_to_regcache (struct regcache *regcache, int regnum,
986 struct type *type, const gdb_byte *in)
987 {
988 int len = TYPE_LENGTH (type);
989
990 if (spu_scalar_value_p (type))
991 {
992 int preferred_slot = len < 4 ? 4 - len : 0;
993 regcache_cooked_write_part (regcache, regnum, preferred_slot, len, in);
994 }
995 else
996 {
997 while (len >= 16)
998 {
999 regcache_cooked_write (regcache, regnum++, in);
1000 in += 16;
1001 len -= 16;
1002 }
1003
1004 if (len > 0)
1005 regcache_cooked_write_part (regcache, regnum, 0, len, in);
1006 }
1007 }
1008
1009 static void
1010 spu_regcache_to_value (struct regcache *regcache, int regnum,
1011 struct type *type, gdb_byte *out)
1012 {
1013 int len = TYPE_LENGTH (type);
1014
1015 if (spu_scalar_value_p (type))
1016 {
1017 int preferred_slot = len < 4 ? 4 - len : 0;
1018 regcache_cooked_read_part (regcache, regnum, preferred_slot, len, out);
1019 }
1020 else
1021 {
1022 while (len >= 16)
1023 {
1024 regcache_cooked_read (regcache, regnum++, out);
1025 out += 16;
1026 len -= 16;
1027 }
1028
1029 if (len > 0)
1030 regcache_cooked_read_part (regcache, regnum, 0, len, out);
1031 }
1032 }
1033
1034 static CORE_ADDR
1035 spu_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
1036 struct regcache *regcache, CORE_ADDR bp_addr,
1037 int nargs, struct value **args, CORE_ADDR sp,
1038 int struct_return, CORE_ADDR struct_addr)
1039 {
1040 int i;
1041 int regnum = SPU_ARG1_REGNUM;
1042 int stack_arg = -1;
1043 gdb_byte buf[16];
1044
1045 /* Set the return address. */
1046 memset (buf, 0, sizeof buf);
1047 store_unsigned_integer (buf, 4, bp_addr);
1048 regcache_cooked_write (regcache, SPU_LR_REGNUM, buf);
1049
1050 /* If STRUCT_RETURN is true, then the struct return address (in
1051 STRUCT_ADDR) will consume the first argument-passing register.
1052 Both adjust the register count and store that value. */
1053 if (struct_return)
1054 {
1055 memset (buf, 0, sizeof buf);
1056 store_unsigned_integer (buf, 4, struct_addr);
1057 regcache_cooked_write (regcache, regnum++, buf);
1058 }
1059
1060 /* Fill in argument registers. */
1061 for (i = 0; i < nargs; i++)
1062 {
1063 struct value *arg = args[i];
1064 struct type *type = check_typedef (value_type (arg));
1065 const gdb_byte *contents = value_contents (arg);
1066 int len = TYPE_LENGTH (type);
1067 int n_regs = align_up (len, 16) / 16;
1068
1069 /* If the argument doesn't wholly fit into registers, it and
1070 all subsequent arguments go to the stack. */
1071 if (regnum + n_regs - 1 > SPU_ARGN_REGNUM)
1072 {
1073 stack_arg = i;
1074 break;
1075 }
1076
1077 spu_value_to_regcache (regcache, regnum, type, contents);
1078 regnum += n_regs;
1079 }
1080
1081 /* Overflow arguments go to the stack. */
1082 if (stack_arg != -1)
1083 {
1084 CORE_ADDR ap;
1085
1086 /* Allocate all required stack size. */
1087 for (i = stack_arg; i < nargs; i++)
1088 {
1089 struct type *type = check_typedef (value_type (args[i]));
1090 sp -= align_up (TYPE_LENGTH (type), 16);
1091 }
1092
1093 /* Fill in stack arguments. */
1094 ap = sp;
1095 for (i = stack_arg; i < nargs; i++)
1096 {
1097 struct value *arg = args[i];
1098 struct type *type = check_typedef (value_type (arg));
1099 int len = TYPE_LENGTH (type);
1100 int preferred_slot;
1101
1102 if (spu_scalar_value_p (type))
1103 preferred_slot = len < 4 ? 4 - len : 0;
1104 else
1105 preferred_slot = 0;
1106
1107 target_write_memory (ap + preferred_slot, value_contents (arg), len);
1108 ap += align_up (TYPE_LENGTH (type), 16);
1109 }
1110 }
1111
1112 /* Allocate stack frame header. */
1113 sp -= 32;
1114
1115 /* Store stack back chain. */
1116 regcache_cooked_read (regcache, SPU_RAW_SP_REGNUM, buf);
1117 target_write_memory (sp, buf, 16);
1118
1119 /* Finally, update the SP register. */
1120 regcache_cooked_write_unsigned (regcache, SPU_SP_REGNUM, sp);
1121
1122 return sp;
1123 }
1124
1125 static struct frame_id
1126 spu_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
1127 {
1128 return frame_id_build (spu_unwind_sp (gdbarch, next_frame),
1129 spu_unwind_pc (gdbarch, next_frame));
1130 }
1131
1132 /* Function return value access. */
1133
1134 static enum return_value_convention
1135 spu_return_value (struct gdbarch *gdbarch, struct type *type,
1136 struct regcache *regcache, gdb_byte *out, const gdb_byte *in)
1137 {
1138 enum return_value_convention rvc;
1139
1140 if (TYPE_LENGTH (type) <= (SPU_ARGN_REGNUM - SPU_ARG1_REGNUM + 1) * 16)
1141 rvc = RETURN_VALUE_REGISTER_CONVENTION;
1142 else
1143 rvc = RETURN_VALUE_STRUCT_CONVENTION;
1144
1145 if (in)
1146 {
1147 switch (rvc)
1148 {
1149 case RETURN_VALUE_REGISTER_CONVENTION:
1150 spu_value_to_regcache (regcache, SPU_ARG1_REGNUM, type, in);
1151 break;
1152
1153 case RETURN_VALUE_STRUCT_CONVENTION:
1154 error ("Cannot set function return value.");
1155 break;
1156 }
1157 }
1158 else if (out)
1159 {
1160 switch (rvc)
1161 {
1162 case RETURN_VALUE_REGISTER_CONVENTION:
1163 spu_regcache_to_value (regcache, SPU_ARG1_REGNUM, type, out);
1164 break;
1165
1166 case RETURN_VALUE_STRUCT_CONVENTION:
1167 error ("Function return value unknown.");
1168 break;
1169 }
1170 }
1171
1172 return rvc;
1173 }
1174
1175
1176 /* Breakpoints. */
1177
1178 static const gdb_byte *
1179 spu_breakpoint_from_pc (CORE_ADDR * pcptr, int *lenptr)
1180 {
1181 static const gdb_byte breakpoint[] = { 0x00, 0x00, 0x3f, 0xff };
1182
1183 *lenptr = sizeof breakpoint;
1184 return breakpoint;
1185 }
1186
1187
1188 /* Software single-stepping support. */
1189
1190 int
1191 spu_software_single_step (struct frame_info *frame)
1192 {
1193 CORE_ADDR pc, next_pc;
1194 unsigned int insn;
1195 int offset, reg;
1196 gdb_byte buf[4];
1197
1198 pc = get_frame_pc (frame);
1199
1200 if (target_read_memory (pc, buf, 4))
1201 return 1;
1202 insn = extract_unsigned_integer (buf, 4);
1203
1204 /* Next sequential instruction is at PC + 4, except if the current
1205 instruction is a PPE-assisted call, in which case it is at PC + 8.
1206 Wrap around LS limit to be on the safe side. */
1207 if ((insn & 0xffffff00) == 0x00002100)
1208 next_pc = (pc + 8) & (SPU_LS_SIZE - 1);
1209 else
1210 next_pc = (pc + 4) & (SPU_LS_SIZE - 1);
1211
1212 insert_single_step_breakpoint (next_pc);
1213
1214 if (is_branch (insn, &offset, &reg))
1215 {
1216 CORE_ADDR target = offset;
1217
1218 if (reg == SPU_PC_REGNUM)
1219 target += pc;
1220 else if (reg != -1)
1221 {
1222 get_frame_register_bytes (frame, reg, 0, 4, buf);
1223 target += extract_unsigned_integer (buf, 4) & -4;
1224 }
1225
1226 target = target & (SPU_LS_SIZE - 1);
1227 if (target != next_pc)
1228 insert_single_step_breakpoint (target);
1229 }
1230
1231 return 1;
1232 }
1233
1234 /* Target overlays for the SPU overlay manager.
1235
1236 See the documentation of simple_overlay_update for how the
1237 interface is supposed to work.
1238
1239 Data structures used by the overlay manager:
1240
1241 struct ovly_table
1242 {
1243 u32 vma;
1244 u32 size;
1245 u32 pos;
1246 u32 buf;
1247 } _ovly_table[]; -- one entry per overlay section
1248
1249 struct ovly_buf_table
1250 {
1251 u32 mapped;
1252 } _ovly_buf_table[]; -- one entry per overlay buffer
1253
1254 _ovly_table should never change.
1255
1256 Both tables are aligned to a 16-byte boundary, the symbols _ovly_table
1257 and _ovly_buf_table are of type STT_OBJECT and their size set to the size
1258 of the respective array. buf in _ovly_table is an index into _ovly_buf_table.
1259
1260 mapped is an index into _ovly_table. Both the mapped and buf indices start
1261 from one to reference the first entry in their respective tables. */
1262
1263 /* Using the per-objfile private data mechanism, we store for each
1264 objfile an array of "struct spu_overlay_table" structures, one
1265 for each obj_section of the objfile. This structure holds two
1266 fields, MAPPED_PTR and MAPPED_VAL. If MAPPED_PTR is zero, this
1267 is *not* an overlay section. If it is non-zero, it represents
1268 a target address. The overlay section is mapped iff the target
1269 integer at this location equals MAPPED_VAL. */
1270
1271 static const struct objfile_data *spu_overlay_data;
1272
1273 struct spu_overlay_table
1274 {
1275 CORE_ADDR mapped_ptr;
1276 CORE_ADDR mapped_val;
1277 };
1278
1279 /* Retrieve the overlay table for OBJFILE. If not already cached, read
1280 the _ovly_table data structure from the target and initialize the
1281 spu_overlay_table data structure from it. */
1282 static struct spu_overlay_table *
1283 spu_get_overlay_table (struct objfile *objfile)
1284 {
1285 struct minimal_symbol *ovly_table_msym, *ovly_buf_table_msym;
1286 CORE_ADDR ovly_table_base, ovly_buf_table_base;
1287 unsigned ovly_table_size, ovly_buf_table_size;
1288 struct spu_overlay_table *tbl;
1289 struct obj_section *osect;
1290 char *ovly_table;
1291 int i;
1292
1293 tbl = objfile_data (objfile, spu_overlay_data);
1294 if (tbl)
1295 return tbl;
1296
1297 ovly_table_msym = lookup_minimal_symbol ("_ovly_table", NULL, objfile);
1298 if (!ovly_table_msym)
1299 return NULL;
1300
1301 ovly_buf_table_msym = lookup_minimal_symbol ("_ovly_buf_table", NULL, objfile);
1302 if (!ovly_buf_table_msym)
1303 return NULL;
1304
1305 ovly_table_base = SYMBOL_VALUE_ADDRESS (ovly_table_msym);
1306 ovly_table_size = MSYMBOL_SIZE (ovly_table_msym);
1307
1308 ovly_buf_table_base = SYMBOL_VALUE_ADDRESS (ovly_buf_table_msym);
1309 ovly_buf_table_size = MSYMBOL_SIZE (ovly_buf_table_msym);
1310
1311 ovly_table = xmalloc (ovly_table_size);
1312 read_memory (ovly_table_base, ovly_table, ovly_table_size);
1313
1314 tbl = OBSTACK_CALLOC (&objfile->objfile_obstack,
1315 objfile->sections_end - objfile->sections,
1316 struct spu_overlay_table);
1317
1318 for (i = 0; i < ovly_table_size / 16; i++)
1319 {
1320 CORE_ADDR vma = extract_unsigned_integer (ovly_table + 16*i + 0, 4);
1321 CORE_ADDR size = extract_unsigned_integer (ovly_table + 16*i + 4, 4);
1322 CORE_ADDR pos = extract_unsigned_integer (ovly_table + 16*i + 8, 4);
1323 CORE_ADDR buf = extract_unsigned_integer (ovly_table + 16*i + 12, 4);
1324
1325 if (buf == 0 || (buf - 1) * 4 >= ovly_buf_table_size)
1326 continue;
1327
1328 ALL_OBJFILE_OSECTIONS (objfile, osect)
1329 if (vma == bfd_section_vma (objfile->obfd, osect->the_bfd_section)
1330 && pos == osect->the_bfd_section->filepos)
1331 {
1332 int ndx = osect - objfile->sections;
1333 tbl[ndx].mapped_ptr = ovly_buf_table_base + (buf - 1) * 4;
1334 tbl[ndx].mapped_val = i + 1;
1335 break;
1336 }
1337 }
1338
1339 xfree (ovly_table);
1340 set_objfile_data (objfile, spu_overlay_data, tbl);
1341 return tbl;
1342 }
1343
1344 /* Read _ovly_buf_table entry from the target to dermine whether
1345 OSECT is currently mapped, and update the mapped state. */
1346 static void
1347 spu_overlay_update_osect (struct obj_section *osect)
1348 {
1349 struct spu_overlay_table *ovly_table;
1350 CORE_ADDR val;
1351
1352 ovly_table = spu_get_overlay_table (osect->objfile);
1353 if (!ovly_table)
1354 return;
1355
1356 ovly_table += osect - osect->objfile->sections;
1357 if (ovly_table->mapped_ptr == 0)
1358 return;
1359
1360 val = read_memory_unsigned_integer (ovly_table->mapped_ptr, 4);
1361 osect->ovly_mapped = (val == ovly_table->mapped_val);
1362 }
1363
1364 /* If OSECT is NULL, then update all sections' mapped state.
1365 If OSECT is non-NULL, then update only OSECT's mapped state. */
1366 static void
1367 spu_overlay_update (struct obj_section *osect)
1368 {
1369 /* Just one section. */
1370 if (osect)
1371 spu_overlay_update_osect (osect);
1372
1373 /* All sections. */
1374 else
1375 {
1376 struct objfile *objfile;
1377
1378 ALL_OBJSECTIONS (objfile, osect)
1379 if (section_is_overlay (osect->the_bfd_section))
1380 spu_overlay_update_osect (osect);
1381 }
1382 }
1383
1384 /* Whenever a new objfile is loaded, read the target's _ovly_table.
1385 If there is one, go through all sections and make sure for non-
1386 overlay sections LMA equals VMA, while for overlay sections LMA
1387 is larger than local store size. */
1388 static void
1389 spu_overlay_new_objfile (struct objfile *objfile)
1390 {
1391 struct spu_overlay_table *ovly_table;
1392 struct obj_section *osect;
1393
1394 /* If we've already touched this file, do nothing. */
1395 if (!objfile || objfile_data (objfile, spu_overlay_data) != NULL)
1396 return;
1397
1398 /* Check if this objfile has overlays. */
1399 ovly_table = spu_get_overlay_table (objfile);
1400 if (!ovly_table)
1401 return;
1402
1403 /* Now go and fiddle with all the LMAs. */
1404 ALL_OBJFILE_OSECTIONS (objfile, osect)
1405 {
1406 bfd *obfd = objfile->obfd;
1407 asection *bsect = osect->the_bfd_section;
1408 int ndx = osect - objfile->sections;
1409
1410 if (ovly_table[ndx].mapped_ptr == 0)
1411 bfd_section_lma (obfd, bsect) = bfd_section_vma (obfd, bsect);
1412 else
1413 bfd_section_lma (obfd, bsect) = bsect->filepos + SPU_LS_SIZE;
1414 }
1415 }
1416
1417
1418 /* "info spu" commands. */
1419
1420 static void
1421 info_spu_event_command (char *args, int from_tty)
1422 {
1423 struct frame_info *frame = get_selected_frame (NULL);
1424 ULONGEST event_status = 0;
1425 ULONGEST event_mask = 0;
1426 struct cleanup *chain;
1427 gdb_byte buf[100];
1428 char annex[32];
1429 LONGEST len;
1430 int rc, id;
1431
1432 id = get_frame_register_unsigned (frame, SPU_ID_REGNUM);
1433
1434 xsnprintf (annex, sizeof annex, "%d/event_status", id);
1435 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1436 buf, 0, sizeof buf);
1437 if (len <= 0)
1438 error (_("Could not read event_status."));
1439 event_status = strtoulst (buf, NULL, 16);
1440
1441 xsnprintf (annex, sizeof annex, "%d/event_mask", id);
1442 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1443 buf, 0, sizeof buf);
1444 if (len <= 0)
1445 error (_("Could not read event_mask."));
1446 event_mask = strtoulst (buf, NULL, 16);
1447
1448 chain = make_cleanup_ui_out_tuple_begin_end (uiout, "SPUInfoEvent");
1449
1450 if (ui_out_is_mi_like_p (uiout))
1451 {
1452 ui_out_field_fmt (uiout, "event_status",
1453 "0x%s", phex_nz (event_status, 4));
1454 ui_out_field_fmt (uiout, "event_mask",
1455 "0x%s", phex_nz (event_mask, 4));
1456 }
1457 else
1458 {
1459 printf_filtered (_("Event Status 0x%s\n"), phex (event_status, 4));
1460 printf_filtered (_("Event Mask 0x%s\n"), phex (event_mask, 4));
1461 }
1462
1463 do_cleanups (chain);
1464 }
1465
1466 static void
1467 info_spu_signal_command (char *args, int from_tty)
1468 {
1469 struct frame_info *frame = get_selected_frame (NULL);
1470 ULONGEST signal1 = 0;
1471 ULONGEST signal1_type = 0;
1472 int signal1_pending = 0;
1473 ULONGEST signal2 = 0;
1474 ULONGEST signal2_type = 0;
1475 int signal2_pending = 0;
1476 struct cleanup *chain;
1477 char annex[32];
1478 gdb_byte buf[100];
1479 LONGEST len;
1480 int rc, id;
1481
1482 id = get_frame_register_unsigned (frame, SPU_ID_REGNUM);
1483
1484 xsnprintf (annex, sizeof annex, "%d/signal1", id);
1485 len = target_read (&current_target, TARGET_OBJECT_SPU, annex, buf, 0, 4);
1486 if (len < 0)
1487 error (_("Could not read signal1."));
1488 else if (len == 4)
1489 {
1490 signal1 = extract_unsigned_integer (buf, 4);
1491 signal1_pending = 1;
1492 }
1493
1494 xsnprintf (annex, sizeof annex, "%d/signal1_type", id);
1495 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1496 buf, 0, sizeof buf);
1497 if (len <= 0)
1498 error (_("Could not read signal1_type."));
1499 signal1_type = strtoulst (buf, NULL, 16);
1500
1501 xsnprintf (annex, sizeof annex, "%d/signal2", id);
1502 len = target_read (&current_target, TARGET_OBJECT_SPU, annex, buf, 0, 4);
1503 if (len < 0)
1504 error (_("Could not read signal2."));
1505 else if (len == 4)
1506 {
1507 signal2 = extract_unsigned_integer (buf, 4);
1508 signal2_pending = 1;
1509 }
1510
1511 xsnprintf (annex, sizeof annex, "%d/signal2_type", id);
1512 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1513 buf, 0, sizeof buf);
1514 if (len <= 0)
1515 error (_("Could not read signal2_type."));
1516 signal2_type = strtoulst (buf, NULL, 16);
1517
1518 chain = make_cleanup_ui_out_tuple_begin_end (uiout, "SPUInfoSignal");
1519
1520 if (ui_out_is_mi_like_p (uiout))
1521 {
1522 ui_out_field_int (uiout, "signal1_pending", signal1_pending);
1523 ui_out_field_fmt (uiout, "signal1", "0x%s", phex_nz (signal1, 4));
1524 ui_out_field_int (uiout, "signal1_type", signal1_type);
1525 ui_out_field_int (uiout, "signal2_pending", signal2_pending);
1526 ui_out_field_fmt (uiout, "signal2", "0x%s", phex_nz (signal2, 4));
1527 ui_out_field_int (uiout, "signal2_type", signal2_type);
1528 }
1529 else
1530 {
1531 if (signal1_pending)
1532 printf_filtered (_("Signal 1 control word 0x%s "), phex (signal1, 4));
1533 else
1534 printf_filtered (_("Signal 1 not pending "));
1535
1536 if (signal1_type)
1537 printf_filtered (_("(Type Overwrite)\n"));
1538 else
1539 printf_filtered (_("(Type Or)\n"));
1540
1541 if (signal2_pending)
1542 printf_filtered (_("Signal 2 control word 0x%s "), phex (signal2, 4));
1543 else
1544 printf_filtered (_("Signal 2 not pending "));
1545
1546 if (signal2_type)
1547 printf_filtered (_("(Type Overwrite)\n"));
1548 else
1549 printf_filtered (_("(Type Or)\n"));
1550 }
1551
1552 do_cleanups (chain);
1553 }
1554
1555 static void
1556 info_spu_mailbox_list (gdb_byte *buf, int nr,
1557 const char *field, const char *msg)
1558 {
1559 struct cleanup *chain;
1560 int i;
1561
1562 if (nr <= 0)
1563 return;
1564
1565 chain = make_cleanup_ui_out_table_begin_end (uiout, 1, nr, "mbox");
1566
1567 ui_out_table_header (uiout, 32, ui_left, field, msg);
1568 ui_out_table_body (uiout);
1569
1570 for (i = 0; i < nr; i++)
1571 {
1572 struct cleanup *val_chain;
1573 ULONGEST val;
1574 val_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "mbox");
1575 val = extract_unsigned_integer (buf + 4*i, 4);
1576 ui_out_field_fmt (uiout, field, "0x%s", phex (val, 4));
1577 do_cleanups (val_chain);
1578
1579 if (!ui_out_is_mi_like_p (uiout))
1580 printf_filtered ("\n");
1581 }
1582
1583 do_cleanups (chain);
1584 }
1585
1586 static void
1587 info_spu_mailbox_command (char *args, int from_tty)
1588 {
1589 struct frame_info *frame = get_selected_frame (NULL);
1590 struct cleanup *chain;
1591 char annex[32];
1592 gdb_byte buf[1024];
1593 LONGEST len;
1594 int i, id;
1595
1596 id = get_frame_register_unsigned (frame, SPU_ID_REGNUM);
1597
1598 chain = make_cleanup_ui_out_tuple_begin_end (uiout, "SPUInfoMailbox");
1599
1600 xsnprintf (annex, sizeof annex, "%d/mbox_info", id);
1601 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1602 buf, 0, sizeof buf);
1603 if (len < 0)
1604 error (_("Could not read mbox_info."));
1605
1606 info_spu_mailbox_list (buf, len / 4, "mbox", "SPU Outbound Mailbox");
1607
1608 xsnprintf (annex, sizeof annex, "%d/ibox_info", id);
1609 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1610 buf, 0, sizeof buf);
1611 if (len < 0)
1612 error (_("Could not read ibox_info."));
1613
1614 info_spu_mailbox_list (buf, len / 4, "ibox", "SPU Outbound Interrupt Mailbox");
1615
1616 xsnprintf (annex, sizeof annex, "%d/wbox_info", id);
1617 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1618 buf, 0, sizeof buf);
1619 if (len < 0)
1620 error (_("Could not read wbox_info."));
1621
1622 info_spu_mailbox_list (buf, len / 4, "wbox", "SPU Inbound Mailbox");
1623
1624 do_cleanups (chain);
1625 }
1626
1627 static ULONGEST
1628 spu_mfc_get_bitfield (ULONGEST word, int first, int last)
1629 {
1630 ULONGEST mask = ~(~(ULONGEST)0 << (last - first + 1));
1631 return (word >> (63 - last)) & mask;
1632 }
1633
1634 static void
1635 info_spu_dma_cmdlist (gdb_byte *buf, int nr)
1636 {
1637 static char *spu_mfc_opcode[256] =
1638 {
1639 /* 00 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1640 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1641 /* 10 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1642 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1643 /* 20 */ "put", "putb", "putf", NULL, "putl", "putlb", "putlf", NULL,
1644 "puts", "putbs", "putfs", NULL, NULL, NULL, NULL, NULL,
1645 /* 30 */ "putr", "putrb", "putrf", NULL, "putrl", "putrlb", "putrlf", NULL,
1646 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1647 /* 40 */ "get", "getb", "getf", NULL, "getl", "getlb", "getlf", NULL,
1648 "gets", "getbs", "getfs", NULL, NULL, NULL, NULL, NULL,
1649 /* 50 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1650 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1651 /* 60 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1652 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1653 /* 70 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1654 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1655 /* 80 */ "sdcrt", "sdcrtst", NULL, NULL, NULL, NULL, NULL, NULL,
1656 NULL, "sdcrz", NULL, NULL, NULL, "sdcrst", NULL, "sdcrf",
1657 /* 90 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1658 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1659 /* a0 */ "sndsig", "sndsigb", "sndsigf", NULL, NULL, NULL, NULL, NULL,
1660 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1661 /* b0 */ "putlluc", NULL, NULL, NULL, "putllc", NULL, NULL, NULL,
1662 "putqlluc", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1663 /* c0 */ "barrier", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1664 "mfceieio", NULL, NULL, NULL, "mfcsync", NULL, NULL, NULL,
1665 /* d0 */ "getllar", NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1666 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1667 /* e0 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1668 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1669 /* f0 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1670 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
1671 };
1672
1673 struct cleanup *chain;
1674 int i;
1675
1676 chain = make_cleanup_ui_out_table_begin_end (uiout, 10, nr, "dma_cmd");
1677
1678 ui_out_table_header (uiout, 7, ui_left, "opcode", "Opcode");
1679 ui_out_table_header (uiout, 3, ui_left, "tag", "Tag");
1680 ui_out_table_header (uiout, 3, ui_left, "tid", "TId");
1681 ui_out_table_header (uiout, 3, ui_left, "rid", "RId");
1682 ui_out_table_header (uiout, 18, ui_left, "ea", "EA");
1683 ui_out_table_header (uiout, 7, ui_left, "lsa", "LSA");
1684 ui_out_table_header (uiout, 7, ui_left, "size", "Size");
1685 ui_out_table_header (uiout, 7, ui_left, "lstaddr", "LstAddr");
1686 ui_out_table_header (uiout, 7, ui_left, "lstsize", "LstSize");
1687 ui_out_table_header (uiout, 1, ui_left, "error_p", "E");
1688
1689 ui_out_table_body (uiout);
1690
1691 for (i = 0; i < nr; i++)
1692 {
1693 struct cleanup *cmd_chain;
1694 ULONGEST mfc_cq_dw0;
1695 ULONGEST mfc_cq_dw1;
1696 ULONGEST mfc_cq_dw2;
1697 ULONGEST mfc_cq_dw3;
1698 int mfc_cmd_opcode, mfc_cmd_tag, rclass_id, tclass_id;
1699 int lsa, size, list_lsa, list_size, mfc_lsa, mfc_size;
1700 ULONGEST mfc_ea;
1701 int list_valid_p, noop_valid_p, qw_valid_p, ea_valid_p, cmd_error_p;
1702
1703 /* Decode contents of MFC Command Queue Context Save/Restore Registers.
1704 See "Cell Broadband Engine Registers V1.3", section 3.3.2.1. */
1705
1706 mfc_cq_dw0 = extract_unsigned_integer (buf + 32*i, 8);
1707 mfc_cq_dw1 = extract_unsigned_integer (buf + 32*i + 8, 8);
1708 mfc_cq_dw2 = extract_unsigned_integer (buf + 32*i + 16, 8);
1709 mfc_cq_dw3 = extract_unsigned_integer (buf + 32*i + 24, 8);
1710
1711 list_lsa = spu_mfc_get_bitfield (mfc_cq_dw0, 0, 14);
1712 list_size = spu_mfc_get_bitfield (mfc_cq_dw0, 15, 26);
1713 mfc_cmd_opcode = spu_mfc_get_bitfield (mfc_cq_dw0, 27, 34);
1714 mfc_cmd_tag = spu_mfc_get_bitfield (mfc_cq_dw0, 35, 39);
1715 list_valid_p = spu_mfc_get_bitfield (mfc_cq_dw0, 40, 40);
1716 rclass_id = spu_mfc_get_bitfield (mfc_cq_dw0, 41, 43);
1717 tclass_id = spu_mfc_get_bitfield (mfc_cq_dw0, 44, 46);
1718
1719 mfc_ea = spu_mfc_get_bitfield (mfc_cq_dw1, 0, 51) << 12
1720 | spu_mfc_get_bitfield (mfc_cq_dw2, 25, 36);
1721
1722 mfc_lsa = spu_mfc_get_bitfield (mfc_cq_dw2, 0, 13);
1723 mfc_size = spu_mfc_get_bitfield (mfc_cq_dw2, 14, 24);
1724 noop_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 37, 37);
1725 qw_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 38, 38);
1726 ea_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 39, 39);
1727 cmd_error_p = spu_mfc_get_bitfield (mfc_cq_dw2, 40, 40);
1728
1729 cmd_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "cmd");
1730
1731 if (spu_mfc_opcode[mfc_cmd_opcode])
1732 ui_out_field_string (uiout, "opcode", spu_mfc_opcode[mfc_cmd_opcode]);
1733 else
1734 ui_out_field_int (uiout, "opcode", mfc_cmd_opcode);
1735
1736 ui_out_field_int (uiout, "tag", mfc_cmd_tag);
1737 ui_out_field_int (uiout, "tid", tclass_id);
1738 ui_out_field_int (uiout, "rid", rclass_id);
1739
1740 if (ea_valid_p)
1741 ui_out_field_fmt (uiout, "ea", "0x%s", phex (mfc_ea, 8));
1742 else
1743 ui_out_field_skip (uiout, "ea");
1744
1745 ui_out_field_fmt (uiout, "lsa", "0x%05x", mfc_lsa << 4);
1746 if (qw_valid_p)
1747 ui_out_field_fmt (uiout, "size", "0x%05x", mfc_size << 4);
1748 else
1749 ui_out_field_fmt (uiout, "size", "0x%05x", mfc_size);
1750
1751 if (list_valid_p)
1752 {
1753 ui_out_field_fmt (uiout, "lstaddr", "0x%05x", list_lsa << 3);
1754 ui_out_field_fmt (uiout, "lstsize", "0x%05x", list_size << 3);
1755 }
1756 else
1757 {
1758 ui_out_field_skip (uiout, "lstaddr");
1759 ui_out_field_skip (uiout, "lstsize");
1760 }
1761
1762 if (cmd_error_p)
1763 ui_out_field_string (uiout, "error_p", "*");
1764 else
1765 ui_out_field_skip (uiout, "error_p");
1766
1767 do_cleanups (cmd_chain);
1768
1769 if (!ui_out_is_mi_like_p (uiout))
1770 printf_filtered ("\n");
1771 }
1772
1773 do_cleanups (chain);
1774 }
1775
1776 static void
1777 info_spu_dma_command (char *args, int from_tty)
1778 {
1779 struct frame_info *frame = get_selected_frame (NULL);
1780 ULONGEST dma_info_type;
1781 ULONGEST dma_info_mask;
1782 ULONGEST dma_info_status;
1783 ULONGEST dma_info_stall_and_notify;
1784 ULONGEST dma_info_atomic_command_status;
1785 struct cleanup *chain;
1786 char annex[32];
1787 gdb_byte buf[1024];
1788 LONGEST len;
1789 int i, id;
1790
1791 id = get_frame_register_unsigned (frame, SPU_ID_REGNUM);
1792
1793 xsnprintf (annex, sizeof annex, "%d/dma_info", id);
1794 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1795 buf, 0, 40 + 16 * 32);
1796 if (len <= 0)
1797 error (_("Could not read dma_info."));
1798
1799 dma_info_type = extract_unsigned_integer (buf, 8);
1800 dma_info_mask = extract_unsigned_integer (buf + 8, 8);
1801 dma_info_status = extract_unsigned_integer (buf + 16, 8);
1802 dma_info_stall_and_notify = extract_unsigned_integer (buf + 24, 8);
1803 dma_info_atomic_command_status = extract_unsigned_integer (buf + 32, 8);
1804
1805 chain = make_cleanup_ui_out_tuple_begin_end (uiout, "SPUInfoDMA");
1806
1807 if (ui_out_is_mi_like_p (uiout))
1808 {
1809 ui_out_field_fmt (uiout, "dma_info_type", "0x%s",
1810 phex_nz (dma_info_type, 4));
1811 ui_out_field_fmt (uiout, "dma_info_mask", "0x%s",
1812 phex_nz (dma_info_mask, 4));
1813 ui_out_field_fmt (uiout, "dma_info_status", "0x%s",
1814 phex_nz (dma_info_status, 4));
1815 ui_out_field_fmt (uiout, "dma_info_stall_and_notify", "0x%s",
1816 phex_nz (dma_info_stall_and_notify, 4));
1817 ui_out_field_fmt (uiout, "dma_info_atomic_command_status", "0x%s",
1818 phex_nz (dma_info_atomic_command_status, 4));
1819 }
1820 else
1821 {
1822 const char *query_msg;
1823
1824 switch (dma_info_type)
1825 {
1826 case 0: query_msg = _("no query pending"); break;
1827 case 1: query_msg = _("'any' query pending"); break;
1828 case 2: query_msg = _("'all' query pending"); break;
1829 default: query_msg = _("undefined query type"); break;
1830 }
1831
1832 printf_filtered (_("Tag-Group Status 0x%s\n"),
1833 phex (dma_info_status, 4));
1834 printf_filtered (_("Tag-Group Mask 0x%s (%s)\n"),
1835 phex (dma_info_mask, 4), query_msg);
1836 printf_filtered (_("Stall-and-Notify 0x%s\n"),
1837 phex (dma_info_stall_and_notify, 4));
1838 printf_filtered (_("Atomic Cmd Status 0x%s\n"),
1839 phex (dma_info_atomic_command_status, 4));
1840 printf_filtered ("\n");
1841 }
1842
1843 info_spu_dma_cmdlist (buf + 40, 16);
1844 do_cleanups (chain);
1845 }
1846
1847 static void
1848 info_spu_proxydma_command (char *args, int from_tty)
1849 {
1850 struct frame_info *frame = get_selected_frame (NULL);
1851 ULONGEST dma_info_type;
1852 ULONGEST dma_info_mask;
1853 ULONGEST dma_info_status;
1854 struct cleanup *chain;
1855 char annex[32];
1856 gdb_byte buf[1024];
1857 LONGEST len;
1858 int i, id;
1859
1860 id = get_frame_register_unsigned (frame, SPU_ID_REGNUM);
1861
1862 xsnprintf (annex, sizeof annex, "%d/proxydma_info", id);
1863 len = target_read (&current_target, TARGET_OBJECT_SPU, annex,
1864 buf, 0, 24 + 8 * 32);
1865 if (len <= 0)
1866 error (_("Could not read proxydma_info."));
1867
1868 dma_info_type = extract_unsigned_integer (buf, 8);
1869 dma_info_mask = extract_unsigned_integer (buf + 8, 8);
1870 dma_info_status = extract_unsigned_integer (buf + 16, 8);
1871
1872 chain = make_cleanup_ui_out_tuple_begin_end (uiout, "SPUInfoProxyDMA");
1873
1874 if (ui_out_is_mi_like_p (uiout))
1875 {
1876 ui_out_field_fmt (uiout, "proxydma_info_type", "0x%s",
1877 phex_nz (dma_info_type, 4));
1878 ui_out_field_fmt (uiout, "proxydma_info_mask", "0x%s",
1879 phex_nz (dma_info_mask, 4));
1880 ui_out_field_fmt (uiout, "proxydma_info_status", "0x%s",
1881 phex_nz (dma_info_status, 4));
1882 }
1883 else
1884 {
1885 const char *query_msg;
1886
1887 switch (dma_info_type)
1888 {
1889 case 0: query_msg = _("no query pending"); break;
1890 case 1: query_msg = _("'any' query pending"); break;
1891 case 2: query_msg = _("'all' query pending"); break;
1892 default: query_msg = _("undefined query type"); break;
1893 }
1894
1895 printf_filtered (_("Tag-Group Status 0x%s\n"),
1896 phex (dma_info_status, 4));
1897 printf_filtered (_("Tag-Group Mask 0x%s (%s)\n"),
1898 phex (dma_info_mask, 4), query_msg);
1899 printf_filtered ("\n");
1900 }
1901
1902 info_spu_dma_cmdlist (buf + 24, 8);
1903 do_cleanups (chain);
1904 }
1905
1906 static void
1907 info_spu_command (char *args, int from_tty)
1908 {
1909 printf_unfiltered (_("\"info spu\" must be followed by the name of an SPU facility.\n"));
1910 help_list (infospucmdlist, "info spu ", -1, gdb_stdout);
1911 }
1912
1913
1914 /* Set up gdbarch struct. */
1915
1916 static struct gdbarch *
1917 spu_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1918 {
1919 struct gdbarch *gdbarch;
1920
1921 /* Find a candidate among the list of pre-declared architectures. */
1922 arches = gdbarch_list_lookup_by_info (arches, &info);
1923 if (arches != NULL)
1924 return arches->gdbarch;
1925
1926 /* Is is for us? */
1927 if (info.bfd_arch_info->mach != bfd_mach_spu)
1928 return NULL;
1929
1930 /* Yes, create a new architecture. */
1931 gdbarch = gdbarch_alloc (&info, NULL);
1932
1933 /* Disassembler. */
1934 set_gdbarch_print_insn (gdbarch, print_insn_spu);
1935
1936 /* Registers. */
1937 set_gdbarch_num_regs (gdbarch, SPU_NUM_REGS);
1938 set_gdbarch_num_pseudo_regs (gdbarch, SPU_NUM_PSEUDO_REGS);
1939 set_gdbarch_sp_regnum (gdbarch, SPU_SP_REGNUM);
1940 set_gdbarch_pc_regnum (gdbarch, SPU_PC_REGNUM);
1941 set_gdbarch_read_pc (gdbarch, spu_read_pc);
1942 set_gdbarch_write_pc (gdbarch, spu_write_pc);
1943 set_gdbarch_register_name (gdbarch, spu_register_name);
1944 set_gdbarch_register_type (gdbarch, spu_register_type);
1945 set_gdbarch_pseudo_register_read (gdbarch, spu_pseudo_register_read);
1946 set_gdbarch_pseudo_register_write (gdbarch, spu_pseudo_register_write);
1947 set_gdbarch_value_from_register (gdbarch, spu_value_from_register);
1948 set_gdbarch_register_reggroup_p (gdbarch, spu_register_reggroup_p);
1949
1950 /* Data types. */
1951 set_gdbarch_char_signed (gdbarch, 0);
1952 set_gdbarch_ptr_bit (gdbarch, 32);
1953 set_gdbarch_addr_bit (gdbarch, 32);
1954 set_gdbarch_short_bit (gdbarch, 16);
1955 set_gdbarch_int_bit (gdbarch, 32);
1956 set_gdbarch_long_bit (gdbarch, 32);
1957 set_gdbarch_long_long_bit (gdbarch, 64);
1958 set_gdbarch_float_bit (gdbarch, 32);
1959 set_gdbarch_double_bit (gdbarch, 64);
1960 set_gdbarch_long_double_bit (gdbarch, 64);
1961 set_gdbarch_float_format (gdbarch, floatformats_ieee_single);
1962 set_gdbarch_double_format (gdbarch, floatformats_ieee_double);
1963 set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double);
1964
1965 /* Inferior function calls. */
1966 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
1967 set_gdbarch_frame_align (gdbarch, spu_frame_align);
1968 set_gdbarch_push_dummy_call (gdbarch, spu_push_dummy_call);
1969 set_gdbarch_unwind_dummy_id (gdbarch, spu_unwind_dummy_id);
1970 set_gdbarch_return_value (gdbarch, spu_return_value);
1971
1972 /* Frame handling. */
1973 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
1974 frame_unwind_append_sniffer (gdbarch, spu_frame_sniffer);
1975 frame_base_set_default (gdbarch, &spu_frame_base);
1976 set_gdbarch_unwind_pc (gdbarch, spu_unwind_pc);
1977 set_gdbarch_unwind_sp (gdbarch, spu_unwind_sp);
1978 set_gdbarch_virtual_frame_pointer (gdbarch, spu_virtual_frame_pointer);
1979 set_gdbarch_frame_args_skip (gdbarch, 0);
1980 set_gdbarch_skip_prologue (gdbarch, spu_skip_prologue);
1981 set_gdbarch_in_function_epilogue_p (gdbarch, spu_in_function_epilogue_p);
1982
1983 /* Breakpoints. */
1984 set_gdbarch_decr_pc_after_break (gdbarch, 4);
1985 set_gdbarch_breakpoint_from_pc (gdbarch, spu_breakpoint_from_pc);
1986 set_gdbarch_cannot_step_breakpoint (gdbarch, 1);
1987 set_gdbarch_software_single_step (gdbarch, spu_software_single_step);
1988
1989 /* Overlays. */
1990 set_gdbarch_overlay_update (gdbarch, spu_overlay_update);
1991
1992 return gdbarch;
1993 }
1994
1995 /* Implement a SPU-specific vector type as replacement
1996 for __gdb_builtin_type_vec128. */
1997 static void
1998 spu_init_vector_type (void)
1999 {
2000 struct type *type;
2001
2002 type = init_composite_type ("__spu_builtin_type_vec128", TYPE_CODE_UNION);
2003 append_composite_type_field (type, "uint128", builtin_type_int128);
2004 append_composite_type_field (type, "v2_int64", builtin_type_v2_int64);
2005 append_composite_type_field (type, "v4_int32", builtin_type_v4_int32);
2006 append_composite_type_field (type, "v8_int16", builtin_type_v8_int16);
2007 append_composite_type_field (type, "v16_int8", builtin_type_v16_int8);
2008 append_composite_type_field (type, "v2_double", builtin_type_v2_double);
2009 append_composite_type_field (type, "v4_float", builtin_type_v4_float);
2010
2011 TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;
2012 TYPE_NAME (type) = "spu_builtin_type_vec128";
2013 spu_builtin_type_vec128 = type;
2014 }
2015
2016 void
2017 _initialize_spu_tdep (void)
2018 {
2019 register_gdbarch_init (bfd_arch_spu, spu_gdbarch_init);
2020
2021 spu_init_vector_type ();
2022
2023 /* Add ourselves to objfile event chain. */
2024 observer_attach_new_objfile (spu_overlay_new_objfile);
2025 spu_overlay_data = register_objfile_data ();
2026
2027 /* Add root prefix command for all "info spu" commands. */
2028 add_prefix_cmd ("spu", class_info, info_spu_command,
2029 _("Various SPU specific commands."),
2030 &infospucmdlist, "info spu ", 0, &infolist);
2031
2032 /* Add various "info spu" commands. */
2033 add_cmd ("event", class_info, info_spu_event_command,
2034 _("Display SPU event facility status.\n"),
2035 &infospucmdlist);
2036 add_cmd ("signal", class_info, info_spu_signal_command,
2037 _("Display SPU signal notification facility status.\n"),
2038 &infospucmdlist);
2039 add_cmd ("mailbox", class_info, info_spu_mailbox_command,
2040 _("Display SPU mailbox facility status.\n"),
2041 &infospucmdlist);
2042 add_cmd ("dma", class_info, info_spu_dma_command,
2043 _("Display MFC DMA status.\n"),
2044 &infospucmdlist);
2045 add_cmd ("proxydma", class_info, info_spu_proxydma_command,
2046 _("Display MFC Proxy-DMA status.\n"),
2047 &infospucmdlist);
2048 }
This page took 0.07207 seconds and 5 git commands to generate.