]>
Commit | Line | Data |
---|---|---|
771b4502 | 1 | /* SPU target-dependent code for GDB, the GNU debugger. |
0b302171 | 2 | Copyright (C) 2006-2012 Free Software Foundation, Inc. |
771b4502 UW |
3 | |
4 | Contributed by Ulrich Weigand <[email protected]>. | |
5 | Based on a port by Sid Manning <[email protected]>. | |
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 | |
a9762ec7 | 11 | the Free Software Foundation; either version 3 of the License, or |
771b4502 UW |
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 | |
a9762ec7 | 20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
771b4502 UW |
21 | |
22 | #include "defs.h" | |
23 | #include "arch-utils.h" | |
24 | #include "gdbtypes.h" | |
25 | #include "gdbcmd.h" | |
26 | #include "gdbcore.h" | |
27 | #include "gdb_string.h" | |
28 | #include "gdb_assert.h" | |
29 | #include "frame.h" | |
30 | #include "frame-unwind.h" | |
31 | #include "frame-base.h" | |
32 | #include "trad-frame.h" | |
33 | #include "symtab.h" | |
34 | #include "symfile.h" | |
35 | #include "value.h" | |
36 | #include "inferior.h" | |
37 | #include "dis-asm.h" | |
38 | #include "objfiles.h" | |
39 | #include "language.h" | |
40 | #include "regcache.h" | |
41 | #include "reggroups.h" | |
42 | #include "floatformat.h" | |
3285f3fe | 43 | #include "block.h" |
dcf52cd8 | 44 | #include "observer.h" |
ff1a52c6 | 45 | #include "infcall.h" |
54fcddd0 | 46 | #include "dwarf2.h" |
8dccd430 | 47 | #include "exceptions.h" |
771b4502 UW |
48 | #include "spu-tdep.h" |
49 | ||
794ac428 | 50 | |
3285f3fe UW |
51 | /* The list of available "set spu " and "show spu " commands. */ |
52 | static struct cmd_list_element *setspucmdlist = NULL; | |
53 | static struct cmd_list_element *showspucmdlist = NULL; | |
54 | ||
55 | /* Whether to stop for new SPE contexts. */ | |
56 | static int spu_stop_on_load_p = 0; | |
ff1a52c6 UW |
57 | /* Whether to automatically flush the SW-managed cache. */ |
58 | static int spu_auto_flush_cache_p = 1; | |
3285f3fe UW |
59 | |
60 | ||
794ac428 UW |
61 | /* The tdep structure. */ |
62 | struct gdbarch_tdep | |
63 | { | |
85e747d2 UW |
64 | /* The spufs ID identifying our address space. */ |
65 | int id; | |
66 | ||
794ac428 UW |
67 | /* SPU-specific vector type. */ |
68 | struct type *spu_builtin_type_vec128; | |
69 | }; | |
70 | ||
71 | ||
f2d43c2c | 72 | /* SPU-specific vector type. */ |
794ac428 UW |
73 | static struct type * |
74 | spu_builtin_type_vec128 (struct gdbarch *gdbarch) | |
75 | { | |
76 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); | |
77 | ||
78 | if (!tdep->spu_builtin_type_vec128) | |
79 | { | |
df4df182 | 80 | const struct builtin_type *bt = builtin_type (gdbarch); |
794ac428 UW |
81 | struct type *t; |
82 | ||
e9bb382b UW |
83 | t = arch_composite_type (gdbarch, |
84 | "__spu_builtin_type_vec128", TYPE_CODE_UNION); | |
df4df182 | 85 | append_composite_type_field (t, "uint128", bt->builtin_int128); |
794ac428 | 86 | append_composite_type_field (t, "v2_int64", |
df4df182 | 87 | init_vector_type (bt->builtin_int64, 2)); |
794ac428 | 88 | append_composite_type_field (t, "v4_int32", |
df4df182 | 89 | init_vector_type (bt->builtin_int32, 4)); |
794ac428 | 90 | append_composite_type_field (t, "v8_int16", |
df4df182 | 91 | init_vector_type (bt->builtin_int16, 8)); |
794ac428 | 92 | append_composite_type_field (t, "v16_int8", |
df4df182 | 93 | init_vector_type (bt->builtin_int8, 16)); |
794ac428 | 94 | append_composite_type_field (t, "v2_double", |
df4df182 | 95 | init_vector_type (bt->builtin_double, 2)); |
794ac428 | 96 | append_composite_type_field (t, "v4_float", |
df4df182 | 97 | init_vector_type (bt->builtin_float, 4)); |
794ac428 | 98 | |
876cecd0 | 99 | TYPE_VECTOR (t) = 1; |
794ac428 UW |
100 | TYPE_NAME (t) = "spu_builtin_type_vec128"; |
101 | ||
102 | tdep->spu_builtin_type_vec128 = t; | |
103 | } | |
104 | ||
105 | return tdep->spu_builtin_type_vec128; | |
106 | } | |
107 | ||
771b4502 | 108 | |
23d964e7 UW |
109 | /* The list of available "info spu " commands. */ |
110 | static struct cmd_list_element *infospucmdlist = NULL; | |
111 | ||
771b4502 UW |
112 | /* Registers. */ |
113 | ||
114 | static const char * | |
d93859e2 | 115 | spu_register_name (struct gdbarch *gdbarch, int reg_nr) |
771b4502 UW |
116 | { |
117 | static char *register_names[] = | |
118 | { | |
119 | "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", | |
120 | "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", | |
121 | "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23", | |
122 | "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31", | |
123 | "r32", "r33", "r34", "r35", "r36", "r37", "r38", "r39", | |
124 | "r40", "r41", "r42", "r43", "r44", "r45", "r46", "r47", | |
125 | "r48", "r49", "r50", "r51", "r52", "r53", "r54", "r55", | |
126 | "r56", "r57", "r58", "r59", "r60", "r61", "r62", "r63", | |
127 | "r64", "r65", "r66", "r67", "r68", "r69", "r70", "r71", | |
128 | "r72", "r73", "r74", "r75", "r76", "r77", "r78", "r79", | |
129 | "r80", "r81", "r82", "r83", "r84", "r85", "r86", "r87", | |
130 | "r88", "r89", "r90", "r91", "r92", "r93", "r94", "r95", | |
131 | "r96", "r97", "r98", "r99", "r100", "r101", "r102", "r103", | |
132 | "r104", "r105", "r106", "r107", "r108", "r109", "r110", "r111", | |
133 | "r112", "r113", "r114", "r115", "r116", "r117", "r118", "r119", | |
134 | "r120", "r121", "r122", "r123", "r124", "r125", "r126", "r127", | |
23d964e7 | 135 | "id", "pc", "sp", "fpscr", "srr0", "lslr", "decr", "decr_status" |
771b4502 UW |
136 | }; |
137 | ||
138 | if (reg_nr < 0) | |
139 | return NULL; | |
140 | if (reg_nr >= sizeof register_names / sizeof *register_names) | |
141 | return NULL; | |
142 | ||
143 | return register_names[reg_nr]; | |
144 | } | |
145 | ||
146 | static struct type * | |
147 | spu_register_type (struct gdbarch *gdbarch, int reg_nr) | |
148 | { | |
149 | if (reg_nr < SPU_NUM_GPRS) | |
794ac428 | 150 | return spu_builtin_type_vec128 (gdbarch); |
771b4502 UW |
151 | |
152 | switch (reg_nr) | |
153 | { | |
154 | case SPU_ID_REGNUM: | |
df4df182 | 155 | return builtin_type (gdbarch)->builtin_uint32; |
771b4502 UW |
156 | |
157 | case SPU_PC_REGNUM: | |
0dfff4cb | 158 | return builtin_type (gdbarch)->builtin_func_ptr; |
771b4502 UW |
159 | |
160 | case SPU_SP_REGNUM: | |
0dfff4cb | 161 | return builtin_type (gdbarch)->builtin_data_ptr; |
771b4502 | 162 | |
23d964e7 | 163 | case SPU_FPSCR_REGNUM: |
df4df182 | 164 | return builtin_type (gdbarch)->builtin_uint128; |
23d964e7 UW |
165 | |
166 | case SPU_SRR0_REGNUM: | |
df4df182 | 167 | return builtin_type (gdbarch)->builtin_uint32; |
23d964e7 UW |
168 | |
169 | case SPU_LSLR_REGNUM: | |
df4df182 | 170 | return builtin_type (gdbarch)->builtin_uint32; |
23d964e7 UW |
171 | |
172 | case SPU_DECR_REGNUM: | |
df4df182 | 173 | return builtin_type (gdbarch)->builtin_uint32; |
23d964e7 UW |
174 | |
175 | case SPU_DECR_STATUS_REGNUM: | |
df4df182 | 176 | return builtin_type (gdbarch)->builtin_uint32; |
23d964e7 | 177 | |
771b4502 | 178 | default: |
a73c6dcd | 179 | internal_error (__FILE__, __LINE__, _("invalid regnum")); |
771b4502 UW |
180 | } |
181 | } | |
182 | ||
183 | /* Pseudo registers for preferred slots - stack pointer. */ | |
184 | ||
05d1431c | 185 | static enum register_status |
23d964e7 UW |
186 | spu_pseudo_register_read_spu (struct regcache *regcache, const char *regname, |
187 | gdb_byte *buf) | |
188 | { | |
e17a4113 UW |
189 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
190 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
05d1431c | 191 | enum register_status status; |
23d964e7 UW |
192 | gdb_byte reg[32]; |
193 | char annex[32]; | |
194 | ULONGEST id; | |
195 | ||
05d1431c PA |
196 | status = regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id); |
197 | if (status != REG_VALID) | |
198 | return status; | |
23d964e7 UW |
199 | xsnprintf (annex, sizeof annex, "%d/%s", (int) id, regname); |
200 | memset (reg, 0, sizeof reg); | |
201 | target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
202 | reg, 0, sizeof reg); | |
203 | ||
e17a4113 | 204 | store_unsigned_integer (buf, 4, byte_order, strtoulst (reg, NULL, 16)); |
05d1431c | 205 | return REG_VALID; |
23d964e7 UW |
206 | } |
207 | ||
05d1431c | 208 | static enum register_status |
771b4502 UW |
209 | spu_pseudo_register_read (struct gdbarch *gdbarch, struct regcache *regcache, |
210 | int regnum, gdb_byte *buf) | |
211 | { | |
212 | gdb_byte reg[16]; | |
23d964e7 UW |
213 | char annex[32]; |
214 | ULONGEST id; | |
05d1431c | 215 | enum register_status status; |
771b4502 UW |
216 | |
217 | switch (regnum) | |
218 | { | |
219 | case SPU_SP_REGNUM: | |
05d1431c PA |
220 | status = regcache_raw_read (regcache, SPU_RAW_SP_REGNUM, reg); |
221 | if (status != REG_VALID) | |
222 | return status; | |
771b4502 | 223 | memcpy (buf, reg, 4); |
05d1431c | 224 | return status; |
771b4502 | 225 | |
23d964e7 | 226 | case SPU_FPSCR_REGNUM: |
05d1431c PA |
227 | status = regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id); |
228 | if (status != REG_VALID) | |
229 | return status; | |
23d964e7 UW |
230 | xsnprintf (annex, sizeof annex, "%d/fpcr", (int) id); |
231 | target_read (¤t_target, TARGET_OBJECT_SPU, annex, buf, 0, 16); | |
05d1431c | 232 | return status; |
23d964e7 UW |
233 | |
234 | case SPU_SRR0_REGNUM: | |
05d1431c | 235 | return spu_pseudo_register_read_spu (regcache, "srr0", buf); |
23d964e7 UW |
236 | |
237 | case SPU_LSLR_REGNUM: | |
05d1431c | 238 | return spu_pseudo_register_read_spu (regcache, "lslr", buf); |
23d964e7 UW |
239 | |
240 | case SPU_DECR_REGNUM: | |
05d1431c | 241 | return spu_pseudo_register_read_spu (regcache, "decr", buf); |
23d964e7 UW |
242 | |
243 | case SPU_DECR_STATUS_REGNUM: | |
05d1431c | 244 | return spu_pseudo_register_read_spu (regcache, "decr_status", buf); |
23d964e7 | 245 | |
771b4502 UW |
246 | default: |
247 | internal_error (__FILE__, __LINE__, _("invalid regnum")); | |
248 | } | |
249 | } | |
250 | ||
23d964e7 UW |
251 | static void |
252 | spu_pseudo_register_write_spu (struct regcache *regcache, const char *regname, | |
253 | const gdb_byte *buf) | |
254 | { | |
e17a4113 UW |
255 | struct gdbarch *gdbarch = get_regcache_arch (regcache); |
256 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
23d964e7 UW |
257 | gdb_byte reg[32]; |
258 | char annex[32]; | |
259 | ULONGEST id; | |
260 | ||
261 | regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id); | |
262 | xsnprintf (annex, sizeof annex, "%d/%s", (int) id, regname); | |
263 | xsnprintf (reg, sizeof reg, "0x%s", | |
e17a4113 | 264 | phex_nz (extract_unsigned_integer (buf, 4, byte_order), 4)); |
23d964e7 UW |
265 | target_write (¤t_target, TARGET_OBJECT_SPU, annex, |
266 | reg, 0, strlen (reg)); | |
267 | } | |
268 | ||
771b4502 UW |
269 | static void |
270 | spu_pseudo_register_write (struct gdbarch *gdbarch, struct regcache *regcache, | |
271 | int regnum, const gdb_byte *buf) | |
272 | { | |
273 | gdb_byte reg[16]; | |
23d964e7 UW |
274 | char annex[32]; |
275 | ULONGEST id; | |
771b4502 UW |
276 | |
277 | switch (regnum) | |
278 | { | |
279 | case SPU_SP_REGNUM: | |
280 | regcache_raw_read (regcache, SPU_RAW_SP_REGNUM, reg); | |
281 | memcpy (reg, buf, 4); | |
282 | regcache_raw_write (regcache, SPU_RAW_SP_REGNUM, reg); | |
283 | break; | |
284 | ||
23d964e7 UW |
285 | case SPU_FPSCR_REGNUM: |
286 | regcache_raw_read_unsigned (regcache, SPU_ID_REGNUM, &id); | |
287 | xsnprintf (annex, sizeof annex, "%d/fpcr", (int) id); | |
288 | target_write (¤t_target, TARGET_OBJECT_SPU, annex, buf, 0, 16); | |
289 | break; | |
290 | ||
291 | case SPU_SRR0_REGNUM: | |
292 | spu_pseudo_register_write_spu (regcache, "srr0", buf); | |
293 | break; | |
294 | ||
295 | case SPU_LSLR_REGNUM: | |
296 | spu_pseudo_register_write_spu (regcache, "lslr", buf); | |
297 | break; | |
298 | ||
299 | case SPU_DECR_REGNUM: | |
300 | spu_pseudo_register_write_spu (regcache, "decr", buf); | |
301 | break; | |
302 | ||
303 | case SPU_DECR_STATUS_REGNUM: | |
304 | spu_pseudo_register_write_spu (regcache, "decr_status", buf); | |
305 | break; | |
306 | ||
771b4502 UW |
307 | default: |
308 | internal_error (__FILE__, __LINE__, _("invalid regnum")); | |
309 | } | |
310 | } | |
311 | ||
312 | /* Value conversion -- access scalar values at the preferred slot. */ | |
313 | ||
9acbedc0 UW |
314 | static struct value * |
315 | spu_value_from_register (struct type *type, int regnum, | |
316 | struct frame_info *frame) | |
771b4502 | 317 | { |
9acbedc0 | 318 | struct value *value = default_value_from_register (type, regnum, frame); |
771b4502 | 319 | |
8f8a23a2 | 320 | if (regnum < SPU_NUM_GPRS && TYPE_LENGTH (type) < 16) |
9acbedc0 | 321 | { |
8f8a23a2 | 322 | int preferred_slot = TYPE_LENGTH (type) < 4 ? 4 - TYPE_LENGTH (type) : 0; |
9acbedc0 UW |
323 | set_value_offset (value, preferred_slot); |
324 | } | |
771b4502 | 325 | |
9acbedc0 | 326 | return value; |
771b4502 UW |
327 | } |
328 | ||
329 | /* Register groups. */ | |
330 | ||
331 | static int | |
332 | spu_register_reggroup_p (struct gdbarch *gdbarch, int regnum, | |
333 | struct reggroup *group) | |
334 | { | |
335 | /* Registers displayed via 'info regs'. */ | |
336 | if (group == general_reggroup) | |
337 | return 1; | |
338 | ||
339 | /* Registers displayed via 'info float'. */ | |
340 | if (group == float_reggroup) | |
341 | return 0; | |
342 | ||
343 | /* Registers that need to be saved/restored in order to | |
344 | push or pop frames. */ | |
345 | if (group == save_reggroup || group == restore_reggroup) | |
346 | return 1; | |
347 | ||
348 | return default_register_reggroup_p (gdbarch, regnum, group); | |
349 | } | |
350 | ||
ff1a52c6 UW |
351 | |
352 | /* Address handling. */ | |
36acd84e | 353 | |
85e747d2 UW |
354 | static int |
355 | spu_gdbarch_id (struct gdbarch *gdbarch) | |
356 | { | |
357 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); | |
358 | int id = tdep->id; | |
359 | ||
360 | /* The objfile architecture of a standalone SPU executable does not | |
b021a221 | 361 | provide an SPU ID. Retrieve it from the objfile's relocated |
85e747d2 UW |
362 | address range in this special case. */ |
363 | if (id == -1 | |
364 | && symfile_objfile && symfile_objfile->obfd | |
365 | && bfd_get_arch (symfile_objfile->obfd) == bfd_arch_spu | |
366 | && symfile_objfile->sections != symfile_objfile->sections_end) | |
367 | id = SPUADDR_SPU (obj_section_addr (symfile_objfile->sections)); | |
368 | ||
369 | return id; | |
370 | } | |
371 | ||
ff1a52c6 UW |
372 | static int |
373 | spu_address_class_type_flags (int byte_size, int dwarf2_addr_class) | |
374 | { | |
375 | if (dwarf2_addr_class == 1) | |
376 | return TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1; | |
377 | else | |
378 | return 0; | |
379 | } | |
380 | ||
381 | static const char * | |
382 | spu_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags) | |
383 | { | |
384 | if (type_flags & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1) | |
385 | return "__ea"; | |
386 | else | |
387 | return NULL; | |
388 | } | |
389 | ||
390 | static int | |
391 | spu_address_class_name_to_type_flags (struct gdbarch *gdbarch, | |
392 | const char *name, int *type_flags_ptr) | |
393 | { | |
394 | if (strcmp (name, "__ea") == 0) | |
395 | { | |
396 | *type_flags_ptr = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1; | |
397 | return 1; | |
398 | } | |
399 | else | |
400 | return 0; | |
401 | } | |
402 | ||
85e747d2 UW |
403 | static void |
404 | spu_address_to_pointer (struct gdbarch *gdbarch, | |
405 | struct type *type, gdb_byte *buf, CORE_ADDR addr) | |
406 | { | |
407 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
408 | store_unsigned_integer (buf, TYPE_LENGTH (type), byte_order, | |
409 | SPUADDR_ADDR (addr)); | |
410 | } | |
411 | ||
36acd84e | 412 | static CORE_ADDR |
9898f801 UW |
413 | spu_pointer_to_address (struct gdbarch *gdbarch, |
414 | struct type *type, const gdb_byte *buf) | |
36acd84e | 415 | { |
85e747d2 | 416 | int id = spu_gdbarch_id (gdbarch); |
e17a4113 UW |
417 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
418 | ULONGEST addr | |
419 | = extract_unsigned_integer (buf, TYPE_LENGTH (type), byte_order); | |
36acd84e | 420 | |
ff1a52c6 UW |
421 | /* Do not convert __ea pointers. */ |
422 | if (TYPE_ADDRESS_CLASS_1 (type)) | |
423 | return addr; | |
424 | ||
d2ed6730 | 425 | return addr? SPUADDR (id, addr) : 0; |
36acd84e UW |
426 | } |
427 | ||
428 | static CORE_ADDR | |
429 | spu_integer_to_address (struct gdbarch *gdbarch, | |
430 | struct type *type, const gdb_byte *buf) | |
431 | { | |
85e747d2 | 432 | int id = spu_gdbarch_id (gdbarch); |
36acd84e | 433 | ULONGEST addr = unpack_long (type, buf); |
36acd84e | 434 | |
d2ed6730 | 435 | return SPUADDR (id, addr); |
36acd84e UW |
436 | } |
437 | ||
771b4502 UW |
438 | |
439 | /* Decoding SPU instructions. */ | |
440 | ||
441 | enum | |
442 | { | |
443 | op_lqd = 0x34, | |
444 | op_lqx = 0x3c4, | |
445 | op_lqa = 0x61, | |
446 | op_lqr = 0x67, | |
447 | op_stqd = 0x24, | |
448 | op_stqx = 0x144, | |
449 | op_stqa = 0x41, | |
450 | op_stqr = 0x47, | |
451 | ||
452 | op_il = 0x081, | |
453 | op_ila = 0x21, | |
454 | op_a = 0x0c0, | |
455 | op_ai = 0x1c, | |
456 | ||
a536c6d7 | 457 | op_selb = 0x8, |
771b4502 UW |
458 | |
459 | op_br = 0x64, | |
460 | op_bra = 0x60, | |
461 | op_brsl = 0x66, | |
462 | op_brasl = 0x62, | |
463 | op_brnz = 0x42, | |
464 | op_brz = 0x40, | |
465 | op_brhnz = 0x46, | |
466 | op_brhz = 0x44, | |
467 | op_bi = 0x1a8, | |
468 | op_bisl = 0x1a9, | |
469 | op_biz = 0x128, | |
470 | op_binz = 0x129, | |
471 | op_bihz = 0x12a, | |
472 | op_bihnz = 0x12b, | |
473 | }; | |
474 | ||
475 | static int | |
476 | is_rr (unsigned int insn, int op, int *rt, int *ra, int *rb) | |
477 | { | |
478 | if ((insn >> 21) == op) | |
479 | { | |
480 | *rt = insn & 127; | |
481 | *ra = (insn >> 7) & 127; | |
482 | *rb = (insn >> 14) & 127; | |
483 | return 1; | |
484 | } | |
485 | ||
486 | return 0; | |
487 | } | |
488 | ||
489 | static int | |
490 | is_rrr (unsigned int insn, int op, int *rt, int *ra, int *rb, int *rc) | |
491 | { | |
492 | if ((insn >> 28) == op) | |
493 | { | |
494 | *rt = (insn >> 21) & 127; | |
495 | *ra = (insn >> 7) & 127; | |
496 | *rb = (insn >> 14) & 127; | |
497 | *rc = insn & 127; | |
498 | return 1; | |
499 | } | |
500 | ||
501 | return 0; | |
502 | } | |
503 | ||
504 | static int | |
505 | is_ri7 (unsigned int insn, int op, int *rt, int *ra, int *i7) | |
506 | { | |
507 | if ((insn >> 21) == op) | |
508 | { | |
509 | *rt = insn & 127; | |
510 | *ra = (insn >> 7) & 127; | |
511 | *i7 = (((insn >> 14) & 127) ^ 0x40) - 0x40; | |
512 | return 1; | |
513 | } | |
514 | ||
515 | return 0; | |
516 | } | |
517 | ||
518 | static int | |
519 | is_ri10 (unsigned int insn, int op, int *rt, int *ra, int *i10) | |
520 | { | |
521 | if ((insn >> 24) == op) | |
522 | { | |
523 | *rt = insn & 127; | |
524 | *ra = (insn >> 7) & 127; | |
525 | *i10 = (((insn >> 14) & 0x3ff) ^ 0x200) - 0x200; | |
526 | return 1; | |
527 | } | |
528 | ||
529 | return 0; | |
530 | } | |
531 | ||
532 | static int | |
533 | is_ri16 (unsigned int insn, int op, int *rt, int *i16) | |
534 | { | |
535 | if ((insn >> 23) == op) | |
536 | { | |
537 | *rt = insn & 127; | |
538 | *i16 = (((insn >> 7) & 0xffff) ^ 0x8000) - 0x8000; | |
539 | return 1; | |
540 | } | |
541 | ||
542 | return 0; | |
543 | } | |
544 | ||
545 | static int | |
546 | is_ri18 (unsigned int insn, int op, int *rt, int *i18) | |
547 | { | |
548 | if ((insn >> 25) == op) | |
549 | { | |
550 | *rt = insn & 127; | |
551 | *i18 = (((insn >> 7) & 0x3ffff) ^ 0x20000) - 0x20000; | |
552 | return 1; | |
553 | } | |
554 | ||
555 | return 0; | |
556 | } | |
557 | ||
558 | static int | |
559 | is_branch (unsigned int insn, int *offset, int *reg) | |
560 | { | |
561 | int rt, i7, i16; | |
562 | ||
563 | if (is_ri16 (insn, op_br, &rt, &i16) | |
564 | || is_ri16 (insn, op_brsl, &rt, &i16) | |
565 | || is_ri16 (insn, op_brnz, &rt, &i16) | |
566 | || is_ri16 (insn, op_brz, &rt, &i16) | |
567 | || is_ri16 (insn, op_brhnz, &rt, &i16) | |
568 | || is_ri16 (insn, op_brhz, &rt, &i16)) | |
569 | { | |
570 | *reg = SPU_PC_REGNUM; | |
571 | *offset = i16 << 2; | |
572 | return 1; | |
573 | } | |
574 | ||
575 | if (is_ri16 (insn, op_bra, &rt, &i16) | |
576 | || is_ri16 (insn, op_brasl, &rt, &i16)) | |
577 | { | |
578 | *reg = -1; | |
579 | *offset = i16 << 2; | |
580 | return 1; | |
581 | } | |
582 | ||
583 | if (is_ri7 (insn, op_bi, &rt, reg, &i7) | |
584 | || is_ri7 (insn, op_bisl, &rt, reg, &i7) | |
585 | || is_ri7 (insn, op_biz, &rt, reg, &i7) | |
586 | || is_ri7 (insn, op_binz, &rt, reg, &i7) | |
587 | || is_ri7 (insn, op_bihz, &rt, reg, &i7) | |
588 | || is_ri7 (insn, op_bihnz, &rt, reg, &i7)) | |
589 | { | |
590 | *offset = 0; | |
591 | return 1; | |
592 | } | |
593 | ||
594 | return 0; | |
595 | } | |
596 | ||
597 | ||
598 | /* Prolog parsing. */ | |
599 | ||
600 | struct spu_prologue_data | |
601 | { | |
602 | /* Stack frame size. -1 if analysis was unsuccessful. */ | |
603 | int size; | |
604 | ||
605 | /* How to find the CFA. The CFA is equal to SP at function entry. */ | |
606 | int cfa_reg; | |
607 | int cfa_offset; | |
608 | ||
609 | /* Offset relative to CFA where a register is saved. -1 if invalid. */ | |
610 | int reg_offset[SPU_NUM_GPRS]; | |
611 | }; | |
612 | ||
613 | static CORE_ADDR | |
e17a4113 UW |
614 | spu_analyze_prologue (struct gdbarch *gdbarch, |
615 | CORE_ADDR start_pc, CORE_ADDR end_pc, | |
771b4502 UW |
616 | struct spu_prologue_data *data) |
617 | { | |
e17a4113 | 618 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
771b4502 UW |
619 | int found_sp = 0; |
620 | int found_fp = 0; | |
621 | int found_lr = 0; | |
ce50d78b | 622 | int found_bc = 0; |
771b4502 UW |
623 | int reg_immed[SPU_NUM_GPRS]; |
624 | gdb_byte buf[16]; | |
625 | CORE_ADDR prolog_pc = start_pc; | |
626 | CORE_ADDR pc; | |
627 | int i; | |
628 | ||
629 | ||
630 | /* Initialize DATA to default values. */ | |
631 | data->size = -1; | |
632 | ||
633 | data->cfa_reg = SPU_RAW_SP_REGNUM; | |
634 | data->cfa_offset = 0; | |
635 | ||
636 | for (i = 0; i < SPU_NUM_GPRS; i++) | |
637 | data->reg_offset[i] = -1; | |
638 | ||
639 | /* Set up REG_IMMED array. This is non-zero for a register if we know its | |
640 | preferred slot currently holds this immediate value. */ | |
641 | for (i = 0; i < SPU_NUM_GPRS; i++) | |
642 | reg_immed[i] = 0; | |
643 | ||
644 | /* Scan instructions until the first branch. | |
645 | ||
646 | The following instructions are important prolog components: | |
647 | ||
648 | - The first instruction to set up the stack pointer. | |
649 | - The first instruction to set up the frame pointer. | |
650 | - The first instruction to save the link register. | |
ce50d78b | 651 | - The first instruction to save the backchain. |
771b4502 | 652 | |
ce50d78b | 653 | We return the instruction after the latest of these four, |
771b4502 UW |
654 | or the incoming PC if none is found. The first instruction |
655 | to set up the stack pointer also defines the frame size. | |
656 | ||
657 | Note that instructions saving incoming arguments to their stack | |
658 | slots are not counted as important, because they are hard to | |
659 | identify with certainty. This should not matter much, because | |
660 | arguments are relevant only in code compiled with debug data, | |
661 | and in such code the GDB core will advance until the first source | |
662 | line anyway, using SAL data. | |
663 | ||
664 | For purposes of stack unwinding, we analyze the following types | |
665 | of instructions in addition: | |
666 | ||
667 | - Any instruction adding to the current frame pointer. | |
668 | - Any instruction loading an immediate constant into a register. | |
669 | - Any instruction storing a register onto the stack. | |
670 | ||
671 | These are used to compute the CFA and REG_OFFSET output. */ | |
672 | ||
673 | for (pc = start_pc; pc < end_pc; pc += 4) | |
674 | { | |
675 | unsigned int insn; | |
676 | int rt, ra, rb, rc, immed; | |
677 | ||
678 | if (target_read_memory (pc, buf, 4)) | |
679 | break; | |
e17a4113 | 680 | insn = extract_unsigned_integer (buf, 4, byte_order); |
771b4502 UW |
681 | |
682 | /* AI is the typical instruction to set up a stack frame. | |
683 | It is also used to initialize the frame pointer. */ | |
684 | if (is_ri10 (insn, op_ai, &rt, &ra, &immed)) | |
685 | { | |
686 | if (rt == data->cfa_reg && ra == data->cfa_reg) | |
687 | data->cfa_offset -= immed; | |
688 | ||
689 | if (rt == SPU_RAW_SP_REGNUM && ra == SPU_RAW_SP_REGNUM | |
690 | && !found_sp) | |
691 | { | |
692 | found_sp = 1; | |
693 | prolog_pc = pc + 4; | |
694 | ||
695 | data->size = -immed; | |
696 | } | |
697 | else if (rt == SPU_FP_REGNUM && ra == SPU_RAW_SP_REGNUM | |
698 | && !found_fp) | |
699 | { | |
700 | found_fp = 1; | |
701 | prolog_pc = pc + 4; | |
702 | ||
703 | data->cfa_reg = SPU_FP_REGNUM; | |
704 | data->cfa_offset -= immed; | |
705 | } | |
706 | } | |
707 | ||
708 | /* A is used to set up stack frames of size >= 512 bytes. | |
709 | If we have tracked the contents of the addend register, | |
710 | we can handle this as well. */ | |
711 | else if (is_rr (insn, op_a, &rt, &ra, &rb)) | |
712 | { | |
713 | if (rt == data->cfa_reg && ra == data->cfa_reg) | |
714 | { | |
715 | if (reg_immed[rb] != 0) | |
716 | data->cfa_offset -= reg_immed[rb]; | |
717 | else | |
718 | data->cfa_reg = -1; /* We don't know the CFA any more. */ | |
719 | } | |
720 | ||
721 | if (rt == SPU_RAW_SP_REGNUM && ra == SPU_RAW_SP_REGNUM | |
722 | && !found_sp) | |
723 | { | |
724 | found_sp = 1; | |
725 | prolog_pc = pc + 4; | |
726 | ||
727 | if (reg_immed[rb] != 0) | |
728 | data->size = -reg_immed[rb]; | |
729 | } | |
730 | } | |
731 | ||
732 | /* We need to track IL and ILA used to load immediate constants | |
733 | in case they are later used as input to an A instruction. */ | |
734 | else if (is_ri16 (insn, op_il, &rt, &immed)) | |
735 | { | |
736 | reg_immed[rt] = immed; | |
12102450 UW |
737 | |
738 | if (rt == SPU_RAW_SP_REGNUM && !found_sp) | |
739 | found_sp = 1; | |
771b4502 UW |
740 | } |
741 | ||
742 | else if (is_ri18 (insn, op_ila, &rt, &immed)) | |
743 | { | |
744 | reg_immed[rt] = immed & 0x3ffff; | |
12102450 UW |
745 | |
746 | if (rt == SPU_RAW_SP_REGNUM && !found_sp) | |
747 | found_sp = 1; | |
771b4502 UW |
748 | } |
749 | ||
750 | /* STQD is used to save registers to the stack. */ | |
751 | else if (is_ri10 (insn, op_stqd, &rt, &ra, &immed)) | |
752 | { | |
753 | if (ra == data->cfa_reg) | |
754 | data->reg_offset[rt] = data->cfa_offset - (immed << 4); | |
755 | ||
756 | if (ra == data->cfa_reg && rt == SPU_LR_REGNUM | |
757 | && !found_lr) | |
758 | { | |
759 | found_lr = 1; | |
760 | prolog_pc = pc + 4; | |
761 | } | |
ce50d78b UW |
762 | |
763 | if (ra == SPU_RAW_SP_REGNUM | |
764 | && (found_sp? immed == 0 : rt == SPU_RAW_SP_REGNUM) | |
765 | && !found_bc) | |
766 | { | |
767 | found_bc = 1; | |
768 | prolog_pc = pc + 4; | |
769 | } | |
771b4502 UW |
770 | } |
771 | ||
772 | /* _start uses SELB to set up the stack pointer. */ | |
773 | else if (is_rrr (insn, op_selb, &rt, &ra, &rb, &rc)) | |
774 | { | |
775 | if (rt == SPU_RAW_SP_REGNUM && !found_sp) | |
776 | found_sp = 1; | |
777 | } | |
778 | ||
779 | /* We terminate if we find a branch. */ | |
780 | else if (is_branch (insn, &immed, &ra)) | |
781 | break; | |
782 | } | |
783 | ||
784 | ||
785 | /* If we successfully parsed until here, and didn't find any instruction | |
786 | modifying SP, we assume we have a frameless function. */ | |
787 | if (!found_sp) | |
788 | data->size = 0; | |
789 | ||
790 | /* Return cooked instead of raw SP. */ | |
791 | if (data->cfa_reg == SPU_RAW_SP_REGNUM) | |
792 | data->cfa_reg = SPU_SP_REGNUM; | |
793 | ||
794 | return prolog_pc; | |
795 | } | |
796 | ||
797 | /* Return the first instruction after the prologue starting at PC. */ | |
798 | static CORE_ADDR | |
6093d2eb | 799 | spu_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc) |
771b4502 UW |
800 | { |
801 | struct spu_prologue_data data; | |
e17a4113 | 802 | return spu_analyze_prologue (gdbarch, pc, (CORE_ADDR)-1, &data); |
771b4502 UW |
803 | } |
804 | ||
805 | /* Return the frame pointer in use at address PC. */ | |
806 | static void | |
a54fba4c MD |
807 | spu_virtual_frame_pointer (struct gdbarch *gdbarch, CORE_ADDR pc, |
808 | int *reg, LONGEST *offset) | |
771b4502 UW |
809 | { |
810 | struct spu_prologue_data data; | |
e17a4113 | 811 | spu_analyze_prologue (gdbarch, pc, (CORE_ADDR)-1, &data); |
771b4502 UW |
812 | |
813 | if (data.size != -1 && data.cfa_reg != -1) | |
814 | { | |
815 | /* The 'frame pointer' address is CFA minus frame size. */ | |
816 | *reg = data.cfa_reg; | |
817 | *offset = data.cfa_offset - data.size; | |
818 | } | |
819 | else | |
820 | { | |
c378eb4e | 821 | /* ??? We don't really know ... */ |
771b4502 UW |
822 | *reg = SPU_SP_REGNUM; |
823 | *offset = 0; | |
824 | } | |
825 | } | |
826 | ||
fe5febed UW |
827 | /* Return true if we are in the function's epilogue, i.e. after the |
828 | instruction that destroyed the function's stack frame. | |
829 | ||
830 | 1) scan forward from the point of execution: | |
831 | a) If you find an instruction that modifies the stack pointer | |
832 | or transfers control (except a return), execution is not in | |
833 | an epilogue, return. | |
834 | b) Stop scanning if you find a return instruction or reach the | |
835 | end of the function or reach the hard limit for the size of | |
836 | an epilogue. | |
837 | 2) scan backward from the point of execution: | |
838 | a) If you find an instruction that modifies the stack pointer, | |
839 | execution *is* in an epilogue, return. | |
840 | b) Stop scanning if you reach an instruction that transfers | |
841 | control or the beginning of the function or reach the hard | |
842 | limit for the size of an epilogue. */ | |
843 | ||
844 | static int | |
845 | spu_in_function_epilogue_p (struct gdbarch *gdbarch, CORE_ADDR pc) | |
846 | { | |
e17a4113 | 847 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
fe5febed UW |
848 | CORE_ADDR scan_pc, func_start, func_end, epilogue_start, epilogue_end; |
849 | bfd_byte buf[4]; | |
850 | unsigned int insn; | |
22e048c9 | 851 | int rt, ra, rb, immed; |
fe5febed UW |
852 | |
853 | /* Find the search limits based on function boundaries and hard limit. | |
854 | We assume the epilogue can be up to 64 instructions long. */ | |
855 | ||
856 | const int spu_max_epilogue_size = 64 * 4; | |
857 | ||
858 | if (!find_pc_partial_function (pc, NULL, &func_start, &func_end)) | |
859 | return 0; | |
860 | ||
861 | if (pc - func_start < spu_max_epilogue_size) | |
862 | epilogue_start = func_start; | |
863 | else | |
864 | epilogue_start = pc - spu_max_epilogue_size; | |
865 | ||
866 | if (func_end - pc < spu_max_epilogue_size) | |
867 | epilogue_end = func_end; | |
868 | else | |
869 | epilogue_end = pc + spu_max_epilogue_size; | |
870 | ||
871 | /* Scan forward until next 'bi $0'. */ | |
872 | ||
873 | for (scan_pc = pc; scan_pc < epilogue_end; scan_pc += 4) | |
874 | { | |
875 | if (target_read_memory (scan_pc, buf, 4)) | |
876 | return 0; | |
e17a4113 | 877 | insn = extract_unsigned_integer (buf, 4, byte_order); |
fe5febed UW |
878 | |
879 | if (is_branch (insn, &immed, &ra)) | |
880 | { | |
881 | if (immed == 0 && ra == SPU_LR_REGNUM) | |
882 | break; | |
883 | ||
884 | return 0; | |
885 | } | |
886 | ||
887 | if (is_ri10 (insn, op_ai, &rt, &ra, &immed) | |
888 | || is_rr (insn, op_a, &rt, &ra, &rb) | |
889 | || is_ri10 (insn, op_lqd, &rt, &ra, &immed)) | |
890 | { | |
891 | if (rt == SPU_RAW_SP_REGNUM) | |
892 | return 0; | |
893 | } | |
894 | } | |
895 | ||
896 | if (scan_pc >= epilogue_end) | |
897 | return 0; | |
898 | ||
899 | /* Scan backward until adjustment to stack pointer (R1). */ | |
900 | ||
901 | for (scan_pc = pc - 4; scan_pc >= epilogue_start; scan_pc -= 4) | |
902 | { | |
903 | if (target_read_memory (scan_pc, buf, 4)) | |
904 | return 0; | |
e17a4113 | 905 | insn = extract_unsigned_integer (buf, 4, byte_order); |
fe5febed UW |
906 | |
907 | if (is_branch (insn, &immed, &ra)) | |
908 | return 0; | |
909 | ||
910 | if (is_ri10 (insn, op_ai, &rt, &ra, &immed) | |
911 | || is_rr (insn, op_a, &rt, &ra, &rb) | |
912 | || is_ri10 (insn, op_lqd, &rt, &ra, &immed)) | |
913 | { | |
914 | if (rt == SPU_RAW_SP_REGNUM) | |
915 | return 1; | |
916 | } | |
917 | } | |
918 | ||
919 | return 0; | |
920 | } | |
921 | ||
922 | ||
771b4502 UW |
923 | /* Normal stack frames. */ |
924 | ||
925 | struct spu_unwind_cache | |
926 | { | |
927 | CORE_ADDR func; | |
928 | CORE_ADDR frame_base; | |
929 | CORE_ADDR local_base; | |
930 | ||
931 | struct trad_frame_saved_reg *saved_regs; | |
932 | }; | |
933 | ||
934 | static struct spu_unwind_cache * | |
8d998b8f | 935 | spu_frame_unwind_cache (struct frame_info *this_frame, |
771b4502 UW |
936 | void **this_prologue_cache) |
937 | { | |
e17a4113 | 938 | struct gdbarch *gdbarch = get_frame_arch (this_frame); |
85e747d2 | 939 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
e17a4113 | 940 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
771b4502 UW |
941 | struct spu_unwind_cache *info; |
942 | struct spu_prologue_data data; | |
85e747d2 | 943 | CORE_ADDR id = tdep->id; |
dcf52cd8 | 944 | gdb_byte buf[16]; |
771b4502 UW |
945 | |
946 | if (*this_prologue_cache) | |
947 | return *this_prologue_cache; | |
948 | ||
949 | info = FRAME_OBSTACK_ZALLOC (struct spu_unwind_cache); | |
950 | *this_prologue_cache = info; | |
8d998b8f | 951 | info->saved_regs = trad_frame_alloc_saved_regs (this_frame); |
771b4502 UW |
952 | info->frame_base = 0; |
953 | info->local_base = 0; | |
954 | ||
955 | /* Find the start of the current function, and analyze its prologue. */ | |
8d998b8f | 956 | info->func = get_frame_func (this_frame); |
771b4502 UW |
957 | if (info->func == 0) |
958 | { | |
959 | /* Fall back to using the current PC as frame ID. */ | |
8d998b8f | 960 | info->func = get_frame_pc (this_frame); |
771b4502 UW |
961 | data.size = -1; |
962 | } | |
963 | else | |
e17a4113 UW |
964 | spu_analyze_prologue (gdbarch, info->func, get_frame_pc (this_frame), |
965 | &data); | |
771b4502 UW |
966 | |
967 | /* If successful, use prologue analysis data. */ | |
968 | if (data.size != -1 && data.cfa_reg != -1) | |
969 | { | |
970 | CORE_ADDR cfa; | |
971 | int i; | |
771b4502 UW |
972 | |
973 | /* Determine CFA via unwound CFA_REG plus CFA_OFFSET. */ | |
8d998b8f | 974 | get_frame_register (this_frame, data.cfa_reg, buf); |
e17a4113 | 975 | cfa = extract_unsigned_integer (buf, 4, byte_order) + data.cfa_offset; |
85e747d2 | 976 | cfa = SPUADDR (id, cfa); |
771b4502 UW |
977 | |
978 | /* Call-saved register slots. */ | |
979 | for (i = 0; i < SPU_NUM_GPRS; i++) | |
980 | if (i == SPU_LR_REGNUM | |
981 | || (i >= SPU_SAVED1_REGNUM && i <= SPU_SAVEDN_REGNUM)) | |
982 | if (data.reg_offset[i] != -1) | |
983 | info->saved_regs[i].addr = cfa - data.reg_offset[i]; | |
984 | ||
771b4502 UW |
985 | /* Frame bases. */ |
986 | info->frame_base = cfa; | |
987 | info->local_base = cfa - data.size; | |
988 | } | |
989 | ||
990 | /* Otherwise, fall back to reading the backchain link. */ | |
991 | else | |
992 | { | |
cdc9523a UW |
993 | CORE_ADDR reg; |
994 | LONGEST backchain; | |
13def385 | 995 | ULONGEST lslr; |
cdc9523a | 996 | int status; |
771b4502 | 997 | |
13def385 UW |
998 | /* Get local store limit. */ |
999 | lslr = get_frame_register_unsigned (this_frame, SPU_LSLR_REGNUM); | |
1000 | if (!lslr) | |
1001 | lslr = (ULONGEST) -1; | |
1002 | ||
771b4502 | 1003 | /* Get the backchain. */ |
8d998b8f | 1004 | reg = get_frame_register_unsigned (this_frame, SPU_SP_REGNUM); |
85e747d2 UW |
1005 | status = safe_read_memory_integer (SPUADDR (id, reg), 4, byte_order, |
1006 | &backchain); | |
771b4502 UW |
1007 | |
1008 | /* A zero backchain terminates the frame chain. Also, sanity | |
1009 | check against the local store size limit. */ | |
13def385 | 1010 | if (status && backchain > 0 && backchain <= lslr) |
771b4502 UW |
1011 | { |
1012 | /* Assume the link register is saved into its slot. */ | |
13def385 | 1013 | if (backchain + 16 <= lslr) |
c378eb4e MS |
1014 | info->saved_regs[SPU_LR_REGNUM].addr = SPUADDR (id, |
1015 | backchain + 16); | |
771b4502 | 1016 | |
771b4502 | 1017 | /* Frame bases. */ |
85e747d2 UW |
1018 | info->frame_base = SPUADDR (id, backchain); |
1019 | info->local_base = SPUADDR (id, reg); | |
771b4502 UW |
1020 | } |
1021 | } | |
dcf52cd8 | 1022 | |
c4891da7 UW |
1023 | /* If we didn't find a frame, we cannot determine SP / return address. */ |
1024 | if (info->frame_base == 0) | |
1025 | return info; | |
1026 | ||
dcf52cd8 | 1027 | /* The previous SP is equal to the CFA. */ |
85e747d2 UW |
1028 | trad_frame_set_value (info->saved_regs, SPU_SP_REGNUM, |
1029 | SPUADDR_ADDR (info->frame_base)); | |
dcf52cd8 | 1030 | |
0a44cb36 UW |
1031 | /* Read full contents of the unwound link register in order to |
1032 | be able to determine the return address. */ | |
dcf52cd8 UW |
1033 | if (trad_frame_addr_p (info->saved_regs, SPU_LR_REGNUM)) |
1034 | target_read_memory (info->saved_regs[SPU_LR_REGNUM].addr, buf, 16); | |
1035 | else | |
8d998b8f | 1036 | get_frame_register (this_frame, SPU_LR_REGNUM, buf); |
dcf52cd8 | 1037 | |
0a44cb36 UW |
1038 | /* Normally, the return address is contained in the slot 0 of the |
1039 | link register, and slots 1-3 are zero. For an overlay return, | |
1040 | slot 0 contains the address of the overlay manager return stub, | |
1041 | slot 1 contains the partition number of the overlay section to | |
1042 | be returned to, and slot 2 contains the return address within | |
1043 | that section. Return the latter address in that case. */ | |
e17a4113 | 1044 | if (extract_unsigned_integer (buf + 8, 4, byte_order) != 0) |
dcf52cd8 | 1045 | trad_frame_set_value (info->saved_regs, SPU_PC_REGNUM, |
e17a4113 | 1046 | extract_unsigned_integer (buf + 8, 4, byte_order)); |
dcf52cd8 UW |
1047 | else |
1048 | trad_frame_set_value (info->saved_regs, SPU_PC_REGNUM, | |
e17a4113 | 1049 | extract_unsigned_integer (buf, 4, byte_order)); |
771b4502 UW |
1050 | |
1051 | return info; | |
1052 | } | |
1053 | ||
1054 | static void | |
8d998b8f | 1055 | spu_frame_this_id (struct frame_info *this_frame, |
771b4502 UW |
1056 | void **this_prologue_cache, struct frame_id *this_id) |
1057 | { | |
1058 | struct spu_unwind_cache *info = | |
8d998b8f | 1059 | spu_frame_unwind_cache (this_frame, this_prologue_cache); |
771b4502 UW |
1060 | |
1061 | if (info->frame_base == 0) | |
1062 | return; | |
1063 | ||
1064 | *this_id = frame_id_build (info->frame_base, info->func); | |
1065 | } | |
1066 | ||
8d998b8f UW |
1067 | static struct value * |
1068 | spu_frame_prev_register (struct frame_info *this_frame, | |
1069 | void **this_prologue_cache, int regnum) | |
771b4502 UW |
1070 | { |
1071 | struct spu_unwind_cache *info | |
8d998b8f | 1072 | = spu_frame_unwind_cache (this_frame, this_prologue_cache); |
771b4502 UW |
1073 | |
1074 | /* Special-case the stack pointer. */ | |
1075 | if (regnum == SPU_RAW_SP_REGNUM) | |
1076 | regnum = SPU_SP_REGNUM; | |
1077 | ||
8d998b8f | 1078 | return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum); |
771b4502 UW |
1079 | } |
1080 | ||
1081 | static const struct frame_unwind spu_frame_unwind = { | |
1082 | NORMAL_FRAME, | |
8fbca658 | 1083 | default_frame_unwind_stop_reason, |
771b4502 | 1084 | spu_frame_this_id, |
8d998b8f UW |
1085 | spu_frame_prev_register, |
1086 | NULL, | |
1087 | default_frame_sniffer | |
771b4502 UW |
1088 | }; |
1089 | ||
771b4502 | 1090 | static CORE_ADDR |
8d998b8f | 1091 | spu_frame_base_address (struct frame_info *this_frame, void **this_cache) |
771b4502 UW |
1092 | { |
1093 | struct spu_unwind_cache *info | |
8d998b8f | 1094 | = spu_frame_unwind_cache (this_frame, this_cache); |
771b4502 UW |
1095 | return info->local_base; |
1096 | } | |
1097 | ||
1098 | static const struct frame_base spu_frame_base = { | |
1099 | &spu_frame_unwind, | |
1100 | spu_frame_base_address, | |
1101 | spu_frame_base_address, | |
1102 | spu_frame_base_address | |
1103 | }; | |
1104 | ||
1105 | static CORE_ADDR | |
1106 | spu_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame) | |
1107 | { | |
85e747d2 | 1108 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
118dfbaf UW |
1109 | CORE_ADDR pc = frame_unwind_register_unsigned (next_frame, SPU_PC_REGNUM); |
1110 | /* Mask off interrupt enable bit. */ | |
85e747d2 | 1111 | return SPUADDR (tdep->id, pc & -4); |
771b4502 UW |
1112 | } |
1113 | ||
1114 | static CORE_ADDR | |
1115 | spu_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame) | |
1116 | { | |
85e747d2 UW |
1117 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
1118 | CORE_ADDR sp = frame_unwind_register_unsigned (next_frame, SPU_SP_REGNUM); | |
1119 | return SPUADDR (tdep->id, sp); | |
771b4502 UW |
1120 | } |
1121 | ||
118dfbaf | 1122 | static CORE_ADDR |
61a1198a | 1123 | spu_read_pc (struct regcache *regcache) |
118dfbaf | 1124 | { |
85e747d2 | 1125 | struct gdbarch_tdep *tdep = gdbarch_tdep (get_regcache_arch (regcache)); |
61a1198a UW |
1126 | ULONGEST pc; |
1127 | regcache_cooked_read_unsigned (regcache, SPU_PC_REGNUM, &pc); | |
118dfbaf | 1128 | /* Mask off interrupt enable bit. */ |
85e747d2 | 1129 | return SPUADDR (tdep->id, pc & -4); |
118dfbaf UW |
1130 | } |
1131 | ||
1132 | static void | |
61a1198a | 1133 | spu_write_pc (struct regcache *regcache, CORE_ADDR pc) |
118dfbaf UW |
1134 | { |
1135 | /* Keep interrupt enabled state unchanged. */ | |
61a1198a UW |
1136 | ULONGEST old_pc; |
1137 | regcache_cooked_read_unsigned (regcache, SPU_PC_REGNUM, &old_pc); | |
1138 | regcache_cooked_write_unsigned (regcache, SPU_PC_REGNUM, | |
85e747d2 | 1139 | (SPUADDR_ADDR (pc) & -4) | (old_pc & 3)); |
118dfbaf UW |
1140 | } |
1141 | ||
771b4502 | 1142 | |
cc5f0d61 UW |
1143 | /* Cell/B.E. cross-architecture unwinder support. */ |
1144 | ||
1145 | struct spu2ppu_cache | |
1146 | { | |
1147 | struct frame_id frame_id; | |
1148 | struct regcache *regcache; | |
1149 | }; | |
1150 | ||
1151 | static struct gdbarch * | |
1152 | spu2ppu_prev_arch (struct frame_info *this_frame, void **this_cache) | |
1153 | { | |
1154 | struct spu2ppu_cache *cache = *this_cache; | |
1155 | return get_regcache_arch (cache->regcache); | |
1156 | } | |
1157 | ||
1158 | static void | |
1159 | spu2ppu_this_id (struct frame_info *this_frame, | |
1160 | void **this_cache, struct frame_id *this_id) | |
1161 | { | |
1162 | struct spu2ppu_cache *cache = *this_cache; | |
1163 | *this_id = cache->frame_id; | |
1164 | } | |
1165 | ||
1166 | static struct value * | |
1167 | spu2ppu_prev_register (struct frame_info *this_frame, | |
1168 | void **this_cache, int regnum) | |
1169 | { | |
1170 | struct spu2ppu_cache *cache = *this_cache; | |
1171 | struct gdbarch *gdbarch = get_regcache_arch (cache->regcache); | |
1172 | gdb_byte *buf; | |
1173 | ||
1174 | buf = alloca (register_size (gdbarch, regnum)); | |
1175 | regcache_cooked_read (cache->regcache, regnum, buf); | |
1176 | return frame_unwind_got_bytes (this_frame, regnum, buf); | |
1177 | } | |
1178 | ||
1179 | static int | |
1180 | spu2ppu_sniffer (const struct frame_unwind *self, | |
1181 | struct frame_info *this_frame, void **this_prologue_cache) | |
1182 | { | |
1183 | struct gdbarch *gdbarch = get_frame_arch (this_frame); | |
1184 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
1185 | CORE_ADDR base, func, backchain; | |
1186 | gdb_byte buf[4]; | |
1187 | ||
1188 | if (gdbarch_bfd_arch_info (target_gdbarch)->arch == bfd_arch_spu) | |
1189 | return 0; | |
1190 | ||
1191 | base = get_frame_sp (this_frame); | |
1192 | func = get_frame_pc (this_frame); | |
1193 | if (target_read_memory (base, buf, 4)) | |
1194 | return 0; | |
1195 | backchain = extract_unsigned_integer (buf, 4, byte_order); | |
1196 | ||
1197 | if (!backchain) | |
1198 | { | |
1199 | struct frame_info *fi; | |
1200 | ||
1201 | struct spu2ppu_cache *cache | |
1202 | = FRAME_OBSTACK_CALLOC (1, struct spu2ppu_cache); | |
1203 | ||
1204 | cache->frame_id = frame_id_build (base + 16, func); | |
1205 | ||
1206 | for (fi = get_next_frame (this_frame); fi; fi = get_next_frame (fi)) | |
1207 | if (gdbarch_bfd_arch_info (get_frame_arch (fi))->arch != bfd_arch_spu) | |
1208 | break; | |
1209 | ||
1210 | if (fi) | |
1211 | { | |
1212 | cache->regcache = frame_save_as_regcache (fi); | |
1213 | *this_prologue_cache = cache; | |
1214 | return 1; | |
1215 | } | |
1216 | else | |
1217 | { | |
1218 | struct regcache *regcache; | |
1219 | regcache = get_thread_arch_regcache (inferior_ptid, target_gdbarch); | |
1220 | cache->regcache = regcache_dup (regcache); | |
1221 | *this_prologue_cache = cache; | |
1222 | return 1; | |
1223 | } | |
1224 | } | |
1225 | ||
1226 | return 0; | |
1227 | } | |
1228 | ||
1229 | static void | |
1230 | spu2ppu_dealloc_cache (struct frame_info *self, void *this_cache) | |
1231 | { | |
1232 | struct spu2ppu_cache *cache = this_cache; | |
1233 | regcache_xfree (cache->regcache); | |
1234 | } | |
1235 | ||
1236 | static const struct frame_unwind spu2ppu_unwind = { | |
1237 | ARCH_FRAME, | |
8fbca658 | 1238 | default_frame_unwind_stop_reason, |
cc5f0d61 UW |
1239 | spu2ppu_this_id, |
1240 | spu2ppu_prev_register, | |
1241 | NULL, | |
1242 | spu2ppu_sniffer, | |
1243 | spu2ppu_dealloc_cache, | |
1244 | spu2ppu_prev_arch, | |
1245 | }; | |
1246 | ||
1247 | ||
771b4502 UW |
1248 | /* Function calling convention. */ |
1249 | ||
7b3dc0b7 UW |
1250 | static CORE_ADDR |
1251 | spu_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp) | |
1252 | { | |
1253 | return sp & ~15; | |
1254 | } | |
1255 | ||
87805e63 UW |
1256 | static CORE_ADDR |
1257 | spu_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp, CORE_ADDR funaddr, | |
1258 | struct value **args, int nargs, struct type *value_type, | |
1259 | CORE_ADDR *real_pc, CORE_ADDR *bp_addr, | |
1260 | struct regcache *regcache) | |
1261 | { | |
1262 | /* Allocate space sufficient for a breakpoint, keeping the stack aligned. */ | |
1263 | sp = (sp - 4) & ~15; | |
1264 | /* Store the address of that breakpoint */ | |
1265 | *bp_addr = sp; | |
1266 | /* The call starts at the callee's entry point. */ | |
1267 | *real_pc = funaddr; | |
1268 | ||
1269 | return sp; | |
1270 | } | |
1271 | ||
771b4502 UW |
1272 | static int |
1273 | spu_scalar_value_p (struct type *type) | |
1274 | { | |
1275 | switch (TYPE_CODE (type)) | |
1276 | { | |
1277 | case TYPE_CODE_INT: | |
1278 | case TYPE_CODE_ENUM: | |
1279 | case TYPE_CODE_RANGE: | |
1280 | case TYPE_CODE_CHAR: | |
1281 | case TYPE_CODE_BOOL: | |
1282 | case TYPE_CODE_PTR: | |
1283 | case TYPE_CODE_REF: | |
1284 | return TYPE_LENGTH (type) <= 16; | |
1285 | ||
1286 | default: | |
1287 | return 0; | |
1288 | } | |
1289 | } | |
1290 | ||
1291 | static void | |
1292 | spu_value_to_regcache (struct regcache *regcache, int regnum, | |
1293 | struct type *type, const gdb_byte *in) | |
1294 | { | |
1295 | int len = TYPE_LENGTH (type); | |
1296 | ||
1297 | if (spu_scalar_value_p (type)) | |
1298 | { | |
1299 | int preferred_slot = len < 4 ? 4 - len : 0; | |
1300 | regcache_cooked_write_part (regcache, regnum, preferred_slot, len, in); | |
1301 | } | |
1302 | else | |
1303 | { | |
1304 | while (len >= 16) | |
1305 | { | |
1306 | regcache_cooked_write (regcache, regnum++, in); | |
1307 | in += 16; | |
1308 | len -= 16; | |
1309 | } | |
1310 | ||
1311 | if (len > 0) | |
1312 | regcache_cooked_write_part (regcache, regnum, 0, len, in); | |
1313 | } | |
1314 | } | |
1315 | ||
1316 | static void | |
1317 | spu_regcache_to_value (struct regcache *regcache, int regnum, | |
1318 | struct type *type, gdb_byte *out) | |
1319 | { | |
1320 | int len = TYPE_LENGTH (type); | |
1321 | ||
1322 | if (spu_scalar_value_p (type)) | |
1323 | { | |
1324 | int preferred_slot = len < 4 ? 4 - len : 0; | |
1325 | regcache_cooked_read_part (regcache, regnum, preferred_slot, len, out); | |
1326 | } | |
1327 | else | |
1328 | { | |
1329 | while (len >= 16) | |
1330 | { | |
1331 | regcache_cooked_read (regcache, regnum++, out); | |
1332 | out += 16; | |
1333 | len -= 16; | |
1334 | } | |
1335 | ||
1336 | if (len > 0) | |
1337 | regcache_cooked_read_part (regcache, regnum, 0, len, out); | |
1338 | } | |
1339 | } | |
1340 | ||
1341 | static CORE_ADDR | |
1342 | spu_push_dummy_call (struct gdbarch *gdbarch, struct value *function, | |
1343 | struct regcache *regcache, CORE_ADDR bp_addr, | |
1344 | int nargs, struct value **args, CORE_ADDR sp, | |
1345 | int struct_return, CORE_ADDR struct_addr) | |
1346 | { | |
e17a4113 | 1347 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
9ff3afda | 1348 | CORE_ADDR sp_delta; |
771b4502 UW |
1349 | int i; |
1350 | int regnum = SPU_ARG1_REGNUM; | |
1351 | int stack_arg = -1; | |
1352 | gdb_byte buf[16]; | |
1353 | ||
1354 | /* Set the return address. */ | |
1355 | memset (buf, 0, sizeof buf); | |
85e747d2 | 1356 | store_unsigned_integer (buf, 4, byte_order, SPUADDR_ADDR (bp_addr)); |
771b4502 UW |
1357 | regcache_cooked_write (regcache, SPU_LR_REGNUM, buf); |
1358 | ||
1359 | /* If STRUCT_RETURN is true, then the struct return address (in | |
1360 | STRUCT_ADDR) will consume the first argument-passing register. | |
1361 | Both adjust the register count and store that value. */ | |
1362 | if (struct_return) | |
1363 | { | |
1364 | memset (buf, 0, sizeof buf); | |
85e747d2 | 1365 | store_unsigned_integer (buf, 4, byte_order, SPUADDR_ADDR (struct_addr)); |
771b4502 UW |
1366 | regcache_cooked_write (regcache, regnum++, buf); |
1367 | } | |
1368 | ||
1369 | /* Fill in argument registers. */ | |
1370 | for (i = 0; i < nargs; i++) | |
1371 | { | |
1372 | struct value *arg = args[i]; | |
1373 | struct type *type = check_typedef (value_type (arg)); | |
1374 | const gdb_byte *contents = value_contents (arg); | |
354ecfd5 | 1375 | int n_regs = align_up (TYPE_LENGTH (type), 16) / 16; |
771b4502 UW |
1376 | |
1377 | /* If the argument doesn't wholly fit into registers, it and | |
1378 | all subsequent arguments go to the stack. */ | |
1379 | if (regnum + n_regs - 1 > SPU_ARGN_REGNUM) | |
1380 | { | |
1381 | stack_arg = i; | |
1382 | break; | |
1383 | } | |
1384 | ||
1385 | spu_value_to_regcache (regcache, regnum, type, contents); | |
1386 | regnum += n_regs; | |
1387 | } | |
1388 | ||
1389 | /* Overflow arguments go to the stack. */ | |
1390 | if (stack_arg != -1) | |
1391 | { | |
1392 | CORE_ADDR ap; | |
1393 | ||
1394 | /* Allocate all required stack size. */ | |
1395 | for (i = stack_arg; i < nargs; i++) | |
1396 | { | |
1397 | struct type *type = check_typedef (value_type (args[i])); | |
1398 | sp -= align_up (TYPE_LENGTH (type), 16); | |
1399 | } | |
1400 | ||
1401 | /* Fill in stack arguments. */ | |
1402 | ap = sp; | |
1403 | for (i = stack_arg; i < nargs; i++) | |
1404 | { | |
1405 | struct value *arg = args[i]; | |
1406 | struct type *type = check_typedef (value_type (arg)); | |
1407 | int len = TYPE_LENGTH (type); | |
1408 | int preferred_slot; | |
1409 | ||
1410 | if (spu_scalar_value_p (type)) | |
1411 | preferred_slot = len < 4 ? 4 - len : 0; | |
1412 | else | |
1413 | preferred_slot = 0; | |
1414 | ||
1415 | target_write_memory (ap + preferred_slot, value_contents (arg), len); | |
1416 | ap += align_up (TYPE_LENGTH (type), 16); | |
1417 | } | |
1418 | } | |
1419 | ||
1420 | /* Allocate stack frame header. */ | |
1421 | sp -= 32; | |
1422 | ||
ee82e879 UW |
1423 | /* Store stack back chain. */ |
1424 | regcache_cooked_read (regcache, SPU_RAW_SP_REGNUM, buf); | |
1425 | target_write_memory (sp, buf, 16); | |
1426 | ||
9ff3afda | 1427 | /* Finally, update all slots of the SP register. */ |
e17a4113 | 1428 | sp_delta = sp - extract_unsigned_integer (buf, 4, byte_order); |
9ff3afda UW |
1429 | for (i = 0; i < 4; i++) |
1430 | { | |
e17a4113 UW |
1431 | CORE_ADDR sp_slot = extract_unsigned_integer (buf + 4*i, 4, byte_order); |
1432 | store_unsigned_integer (buf + 4*i, 4, byte_order, sp_slot + sp_delta); | |
9ff3afda UW |
1433 | } |
1434 | regcache_cooked_write (regcache, SPU_RAW_SP_REGNUM, buf); | |
771b4502 UW |
1435 | |
1436 | return sp; | |
1437 | } | |
1438 | ||
1439 | static struct frame_id | |
8d998b8f | 1440 | spu_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame) |
771b4502 | 1441 | { |
85e747d2 | 1442 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
8d998b8f UW |
1443 | CORE_ADDR pc = get_frame_register_unsigned (this_frame, SPU_PC_REGNUM); |
1444 | CORE_ADDR sp = get_frame_register_unsigned (this_frame, SPU_SP_REGNUM); | |
85e747d2 | 1445 | return frame_id_build (SPUADDR (tdep->id, sp), SPUADDR (tdep->id, pc & -4)); |
771b4502 UW |
1446 | } |
1447 | ||
1448 | /* Function return value access. */ | |
1449 | ||
1450 | static enum return_value_convention | |
6a3a010b | 1451 | spu_return_value (struct gdbarch *gdbarch, struct value *function, |
c055b101 CV |
1452 | struct type *type, struct regcache *regcache, |
1453 | gdb_byte *out, const gdb_byte *in) | |
771b4502 | 1454 | { |
6a3a010b | 1455 | struct type *func_type = function ? value_type (function) : NULL; |
771b4502 | 1456 | enum return_value_convention rvc; |
54fcddd0 UW |
1457 | int opencl_vector = 0; |
1458 | ||
598cfb71 UW |
1459 | if (func_type) |
1460 | { | |
1461 | func_type = check_typedef (func_type); | |
1462 | ||
1463 | if (TYPE_CODE (func_type) == TYPE_CODE_PTR) | |
1464 | func_type = check_typedef (TYPE_TARGET_TYPE (func_type)); | |
1465 | ||
1466 | if (TYPE_CODE (func_type) == TYPE_CODE_FUNC | |
1467 | && TYPE_CALLING_CONVENTION (func_type) == DW_CC_GDB_IBM_OpenCL | |
1468 | && TYPE_CODE (type) == TYPE_CODE_ARRAY | |
1469 | && TYPE_VECTOR (type)) | |
1470 | opencl_vector = 1; | |
1471 | } | |
771b4502 UW |
1472 | |
1473 | if (TYPE_LENGTH (type) <= (SPU_ARGN_REGNUM - SPU_ARG1_REGNUM + 1) * 16) | |
1474 | rvc = RETURN_VALUE_REGISTER_CONVENTION; | |
1475 | else | |
1476 | rvc = RETURN_VALUE_STRUCT_CONVENTION; | |
1477 | ||
1478 | if (in) | |
1479 | { | |
1480 | switch (rvc) | |
1481 | { | |
1482 | case RETURN_VALUE_REGISTER_CONVENTION: | |
54fcddd0 UW |
1483 | if (opencl_vector && TYPE_LENGTH (type) == 2) |
1484 | regcache_cooked_write_part (regcache, SPU_ARG1_REGNUM, 2, 2, in); | |
1485 | else | |
1486 | spu_value_to_regcache (regcache, SPU_ARG1_REGNUM, type, in); | |
771b4502 UW |
1487 | break; |
1488 | ||
1489 | case RETURN_VALUE_STRUCT_CONVENTION: | |
a73c6dcd | 1490 | error (_("Cannot set function return value.")); |
771b4502 UW |
1491 | break; |
1492 | } | |
1493 | } | |
1494 | else if (out) | |
1495 | { | |
1496 | switch (rvc) | |
1497 | { | |
1498 | case RETURN_VALUE_REGISTER_CONVENTION: | |
54fcddd0 UW |
1499 | if (opencl_vector && TYPE_LENGTH (type) == 2) |
1500 | regcache_cooked_read_part (regcache, SPU_ARG1_REGNUM, 2, 2, out); | |
1501 | else | |
1502 | spu_regcache_to_value (regcache, SPU_ARG1_REGNUM, type, out); | |
771b4502 UW |
1503 | break; |
1504 | ||
1505 | case RETURN_VALUE_STRUCT_CONVENTION: | |
a73c6dcd | 1506 | error (_("Function return value unknown.")); |
771b4502 UW |
1507 | break; |
1508 | } | |
1509 | } | |
1510 | ||
1511 | return rvc; | |
1512 | } | |
1513 | ||
1514 | ||
1515 | /* Breakpoints. */ | |
1516 | ||
1517 | static const gdb_byte * | |
c378eb4e MS |
1518 | spu_breakpoint_from_pc (struct gdbarch *gdbarch, |
1519 | CORE_ADDR * pcptr, int *lenptr) | |
771b4502 UW |
1520 | { |
1521 | static const gdb_byte breakpoint[] = { 0x00, 0x00, 0x3f, 0xff }; | |
1522 | ||
1523 | *lenptr = sizeof breakpoint; | |
1524 | return breakpoint; | |
1525 | } | |
1526 | ||
d03285ec UW |
1527 | static int |
1528 | spu_memory_remove_breakpoint (struct gdbarch *gdbarch, | |
1529 | struct bp_target_info *bp_tgt) | |
1530 | { | |
1531 | /* We work around a problem in combined Cell/B.E. debugging here. Consider | |
1532 | that in a combined application, we have some breakpoints inserted in SPU | |
1533 | code, and now the application forks (on the PPU side). GDB common code | |
1534 | will assume that the fork system call copied all breakpoints into the new | |
1535 | process' address space, and that all those copies now need to be removed | |
1536 | (see breakpoint.c:detach_breakpoints). | |
1537 | ||
1538 | While this is certainly true for PPU side breakpoints, it is not true | |
1539 | for SPU side breakpoints. fork will clone the SPU context file | |
1540 | descriptors, so that all the existing SPU contexts are in accessible | |
1541 | in the new process. However, the contents of the SPU contexts themselves | |
1542 | are *not* cloned. Therefore the effect of detach_breakpoints is to | |
1543 | remove SPU breakpoints from the *original* SPU context's local store | |
1544 | -- this is not the correct behaviour. | |
1545 | ||
1546 | The workaround is to check whether the PID we are asked to remove this | |
1547 | breakpoint from (i.e. ptid_get_pid (inferior_ptid)) is different from the | |
1548 | PID of the current inferior (i.e. current_inferior ()->pid). This is only | |
1549 | true in the context of detach_breakpoints. If so, we simply do nothing. | |
1550 | [ Note that for the fork child process, it does not matter if breakpoints | |
1551 | remain inserted, because those SPU contexts are not runnable anyway -- | |
1552 | the Linux kernel allows only the original process to invoke spu_run. */ | |
1553 | ||
1554 | if (ptid_get_pid (inferior_ptid) != current_inferior ()->pid) | |
1555 | return 0; | |
1556 | ||
1557 | return default_memory_remove_breakpoint (gdbarch, bp_tgt); | |
1558 | } | |
1559 | ||
771b4502 UW |
1560 | |
1561 | /* Software single-stepping support. */ | |
1562 | ||
63807e1d | 1563 | static int |
0b1b3e42 | 1564 | spu_software_single_step (struct frame_info *frame) |
771b4502 | 1565 | { |
a6d9a66e | 1566 | struct gdbarch *gdbarch = get_frame_arch (frame); |
6c95b8df | 1567 | struct address_space *aspace = get_frame_address_space (frame); |
e17a4113 | 1568 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
e0cd558a UW |
1569 | CORE_ADDR pc, next_pc; |
1570 | unsigned int insn; | |
1571 | int offset, reg; | |
1572 | gdb_byte buf[4]; | |
13def385 | 1573 | ULONGEST lslr; |
771b4502 | 1574 | |
0b1b3e42 | 1575 | pc = get_frame_pc (frame); |
771b4502 | 1576 | |
e0cd558a UW |
1577 | if (target_read_memory (pc, buf, 4)) |
1578 | return 1; | |
e17a4113 | 1579 | insn = extract_unsigned_integer (buf, 4, byte_order); |
771b4502 | 1580 | |
13def385 UW |
1581 | /* Get local store limit. */ |
1582 | lslr = get_frame_register_unsigned (frame, SPU_LSLR_REGNUM); | |
1583 | if (!lslr) | |
1584 | lslr = (ULONGEST) -1; | |
1585 | ||
e0cd558a UW |
1586 | /* Next sequential instruction is at PC + 4, except if the current |
1587 | instruction is a PPE-assisted call, in which case it is at PC + 8. | |
1588 | Wrap around LS limit to be on the safe side. */ | |
1589 | if ((insn & 0xffffff00) == 0x00002100) | |
13def385 | 1590 | next_pc = (SPUADDR_ADDR (pc) + 8) & lslr; |
e0cd558a | 1591 | else |
13def385 | 1592 | next_pc = (SPUADDR_ADDR (pc) + 4) & lslr; |
771b4502 | 1593 | |
6c95b8df PA |
1594 | insert_single_step_breakpoint (gdbarch, |
1595 | aspace, SPUADDR (SPUADDR_SPU (pc), next_pc)); | |
771b4502 | 1596 | |
e0cd558a UW |
1597 | if (is_branch (insn, &offset, ®)) |
1598 | { | |
1599 | CORE_ADDR target = offset; | |
771b4502 | 1600 | |
e0cd558a | 1601 | if (reg == SPU_PC_REGNUM) |
85e747d2 | 1602 | target += SPUADDR_ADDR (pc); |
e0cd558a UW |
1603 | else if (reg != -1) |
1604 | { | |
8dccd430 PA |
1605 | int optim, unavail; |
1606 | ||
1607 | if (get_frame_register_bytes (frame, reg, 0, 4, buf, | |
1608 | &optim, &unavail)) | |
1609 | target += extract_unsigned_integer (buf, 4, byte_order) & -4; | |
1610 | else | |
1611 | { | |
1612 | if (optim) | |
1613 | error (_("Could not determine address of " | |
1614 | "single-step breakpoint.")); | |
1615 | if (unavail) | |
1616 | throw_error (NOT_AVAILABLE_ERROR, | |
1617 | _("Could not determine address of " | |
1618 | "single-step breakpoint.")); | |
1619 | } | |
771b4502 | 1620 | } |
e0cd558a | 1621 | |
13def385 | 1622 | target = target & lslr; |
e0cd558a | 1623 | if (target != next_pc) |
6c95b8df | 1624 | insert_single_step_breakpoint (gdbarch, aspace, |
85e747d2 | 1625 | SPUADDR (SPUADDR_SPU (pc), target)); |
771b4502 | 1626 | } |
e6590a1b UW |
1627 | |
1628 | return 1; | |
771b4502 UW |
1629 | } |
1630 | ||
6e3f70d7 UW |
1631 | |
1632 | /* Longjmp support. */ | |
1633 | ||
1634 | static int | |
1635 | spu_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc) | |
1636 | { | |
e17a4113 | 1637 | struct gdbarch *gdbarch = get_frame_arch (frame); |
85e747d2 | 1638 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); |
e17a4113 | 1639 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); |
6e3f70d7 UW |
1640 | gdb_byte buf[4]; |
1641 | CORE_ADDR jb_addr; | |
8dccd430 | 1642 | int optim, unavail; |
6e3f70d7 UW |
1643 | |
1644 | /* Jump buffer is pointed to by the argument register $r3. */ | |
8dccd430 PA |
1645 | if (!get_frame_register_bytes (frame, SPU_ARG1_REGNUM, 0, 4, buf, |
1646 | &optim, &unavail)) | |
1647 | return 0; | |
1648 | ||
e17a4113 | 1649 | jb_addr = extract_unsigned_integer (buf, 4, byte_order); |
85e747d2 | 1650 | if (target_read_memory (SPUADDR (tdep->id, jb_addr), buf, 4)) |
6e3f70d7 UW |
1651 | return 0; |
1652 | ||
e17a4113 | 1653 | *pc = extract_unsigned_integer (buf, 4, byte_order); |
85e747d2 | 1654 | *pc = SPUADDR (tdep->id, *pc); |
6e3f70d7 UW |
1655 | return 1; |
1656 | } | |
1657 | ||
1658 | ||
85e747d2 UW |
1659 | /* Disassembler. */ |
1660 | ||
1661 | struct spu_dis_asm_data | |
1662 | { | |
1663 | struct gdbarch *gdbarch; | |
1664 | int id; | |
1665 | }; | |
1666 | ||
1667 | static void | |
1668 | spu_dis_asm_print_address (bfd_vma addr, struct disassemble_info *info) | |
1669 | { | |
1670 | struct spu_dis_asm_data *data = info->application_data; | |
1671 | print_address (data->gdbarch, SPUADDR (data->id, addr), info->stream); | |
1672 | } | |
1673 | ||
1674 | static int | |
1675 | gdb_print_insn_spu (bfd_vma memaddr, struct disassemble_info *info) | |
1676 | { | |
c378eb4e MS |
1677 | /* The opcodes disassembler does 18-bit address arithmetic. Make |
1678 | sure the SPU ID encoded in the high bits is added back when we | |
1679 | call print_address. */ | |
85e747d2 UW |
1680 | struct disassemble_info spu_info = *info; |
1681 | struct spu_dis_asm_data data; | |
1682 | data.gdbarch = info->application_data; | |
1683 | data.id = SPUADDR_SPU (memaddr); | |
1684 | ||
1685 | spu_info.application_data = &data; | |
1686 | spu_info.print_address_func = spu_dis_asm_print_address; | |
1687 | return print_insn_spu (memaddr, &spu_info); | |
1688 | } | |
1689 | ||
1690 | ||
dcf52cd8 UW |
1691 | /* Target overlays for the SPU overlay manager. |
1692 | ||
1693 | See the documentation of simple_overlay_update for how the | |
1694 | interface is supposed to work. | |
1695 | ||
1696 | Data structures used by the overlay manager: | |
1697 | ||
1698 | struct ovly_table | |
1699 | { | |
1700 | u32 vma; | |
1701 | u32 size; | |
1702 | u32 pos; | |
1703 | u32 buf; | |
1704 | } _ovly_table[]; -- one entry per overlay section | |
1705 | ||
1706 | struct ovly_buf_table | |
1707 | { | |
1708 | u32 mapped; | |
1709 | } _ovly_buf_table[]; -- one entry per overlay buffer | |
1710 | ||
1711 | _ovly_table should never change. | |
1712 | ||
c378eb4e MS |
1713 | Both tables are aligned to a 16-byte boundary, the symbols |
1714 | _ovly_table and _ovly_buf_table are of type STT_OBJECT and their | |
1715 | size set to the size of the respective array. buf in _ovly_table is | |
1716 | an index into _ovly_buf_table. | |
dcf52cd8 | 1717 | |
c378eb4e | 1718 | mapped is an index into _ovly_table. Both the mapped and buf indices start |
dcf52cd8 UW |
1719 | from one to reference the first entry in their respective tables. */ |
1720 | ||
1721 | /* Using the per-objfile private data mechanism, we store for each | |
1722 | objfile an array of "struct spu_overlay_table" structures, one | |
1723 | for each obj_section of the objfile. This structure holds two | |
1724 | fields, MAPPED_PTR and MAPPED_VAL. If MAPPED_PTR is zero, this | |
1725 | is *not* an overlay section. If it is non-zero, it represents | |
1726 | a target address. The overlay section is mapped iff the target | |
1727 | integer at this location equals MAPPED_VAL. */ | |
1728 | ||
1729 | static const struct objfile_data *spu_overlay_data; | |
1730 | ||
1731 | struct spu_overlay_table | |
1732 | { | |
1733 | CORE_ADDR mapped_ptr; | |
1734 | CORE_ADDR mapped_val; | |
1735 | }; | |
1736 | ||
1737 | /* Retrieve the overlay table for OBJFILE. If not already cached, read | |
1738 | the _ovly_table data structure from the target and initialize the | |
1739 | spu_overlay_table data structure from it. */ | |
1740 | static struct spu_overlay_table * | |
1741 | spu_get_overlay_table (struct objfile *objfile) | |
1742 | { | |
e17a4113 UW |
1743 | enum bfd_endian byte_order = bfd_big_endian (objfile->obfd)? |
1744 | BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE; | |
dcf52cd8 UW |
1745 | struct minimal_symbol *ovly_table_msym, *ovly_buf_table_msym; |
1746 | CORE_ADDR ovly_table_base, ovly_buf_table_base; | |
1747 | unsigned ovly_table_size, ovly_buf_table_size; | |
1748 | struct spu_overlay_table *tbl; | |
1749 | struct obj_section *osect; | |
1750 | char *ovly_table; | |
1751 | int i; | |
1752 | ||
1753 | tbl = objfile_data (objfile, spu_overlay_data); | |
1754 | if (tbl) | |
1755 | return tbl; | |
1756 | ||
1757 | ovly_table_msym = lookup_minimal_symbol ("_ovly_table", NULL, objfile); | |
1758 | if (!ovly_table_msym) | |
1759 | return NULL; | |
1760 | ||
c378eb4e MS |
1761 | ovly_buf_table_msym = lookup_minimal_symbol ("_ovly_buf_table", |
1762 | NULL, objfile); | |
dcf52cd8 UW |
1763 | if (!ovly_buf_table_msym) |
1764 | return NULL; | |
1765 | ||
1766 | ovly_table_base = SYMBOL_VALUE_ADDRESS (ovly_table_msym); | |
1767 | ovly_table_size = MSYMBOL_SIZE (ovly_table_msym); | |
1768 | ||
1769 | ovly_buf_table_base = SYMBOL_VALUE_ADDRESS (ovly_buf_table_msym); | |
1770 | ovly_buf_table_size = MSYMBOL_SIZE (ovly_buf_table_msym); | |
1771 | ||
1772 | ovly_table = xmalloc (ovly_table_size); | |
1773 | read_memory (ovly_table_base, ovly_table, ovly_table_size); | |
1774 | ||
1775 | tbl = OBSTACK_CALLOC (&objfile->objfile_obstack, | |
1776 | objfile->sections_end - objfile->sections, | |
1777 | struct spu_overlay_table); | |
1778 | ||
1779 | for (i = 0; i < ovly_table_size / 16; i++) | |
1780 | { | |
e17a4113 UW |
1781 | CORE_ADDR vma = extract_unsigned_integer (ovly_table + 16*i + 0, |
1782 | 4, byte_order); | |
1783 | CORE_ADDR size = extract_unsigned_integer (ovly_table + 16*i + 4, | |
1784 | 4, byte_order); | |
1785 | CORE_ADDR pos = extract_unsigned_integer (ovly_table + 16*i + 8, | |
1786 | 4, byte_order); | |
1787 | CORE_ADDR buf = extract_unsigned_integer (ovly_table + 16*i + 12, | |
1788 | 4, byte_order); | |
dcf52cd8 UW |
1789 | |
1790 | if (buf == 0 || (buf - 1) * 4 >= ovly_buf_table_size) | |
1791 | continue; | |
1792 | ||
1793 | ALL_OBJFILE_OSECTIONS (objfile, osect) | |
1794 | if (vma == bfd_section_vma (objfile->obfd, osect->the_bfd_section) | |
1795 | && pos == osect->the_bfd_section->filepos) | |
1796 | { | |
1797 | int ndx = osect - objfile->sections; | |
1798 | tbl[ndx].mapped_ptr = ovly_buf_table_base + (buf - 1) * 4; | |
1799 | tbl[ndx].mapped_val = i + 1; | |
1800 | break; | |
1801 | } | |
1802 | } | |
1803 | ||
1804 | xfree (ovly_table); | |
1805 | set_objfile_data (objfile, spu_overlay_data, tbl); | |
1806 | return tbl; | |
1807 | } | |
1808 | ||
1809 | /* Read _ovly_buf_table entry from the target to dermine whether | |
1810 | OSECT is currently mapped, and update the mapped state. */ | |
1811 | static void | |
1812 | spu_overlay_update_osect (struct obj_section *osect) | |
1813 | { | |
e17a4113 UW |
1814 | enum bfd_endian byte_order = bfd_big_endian (osect->objfile->obfd)? |
1815 | BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE; | |
dcf52cd8 | 1816 | struct spu_overlay_table *ovly_table; |
85e747d2 | 1817 | CORE_ADDR id, val; |
dcf52cd8 UW |
1818 | |
1819 | ovly_table = spu_get_overlay_table (osect->objfile); | |
1820 | if (!ovly_table) | |
1821 | return; | |
1822 | ||
1823 | ovly_table += osect - osect->objfile->sections; | |
1824 | if (ovly_table->mapped_ptr == 0) | |
1825 | return; | |
1826 | ||
85e747d2 UW |
1827 | id = SPUADDR_SPU (obj_section_addr (osect)); |
1828 | val = read_memory_unsigned_integer (SPUADDR (id, ovly_table->mapped_ptr), | |
1829 | 4, byte_order); | |
dcf52cd8 UW |
1830 | osect->ovly_mapped = (val == ovly_table->mapped_val); |
1831 | } | |
1832 | ||
1833 | /* If OSECT is NULL, then update all sections' mapped state. | |
1834 | If OSECT is non-NULL, then update only OSECT's mapped state. */ | |
1835 | static void | |
1836 | spu_overlay_update (struct obj_section *osect) | |
1837 | { | |
1838 | /* Just one section. */ | |
1839 | if (osect) | |
1840 | spu_overlay_update_osect (osect); | |
1841 | ||
1842 | /* All sections. */ | |
1843 | else | |
1844 | { | |
1845 | struct objfile *objfile; | |
1846 | ||
1847 | ALL_OBJSECTIONS (objfile, osect) | |
714835d5 | 1848 | if (section_is_overlay (osect)) |
dcf52cd8 UW |
1849 | spu_overlay_update_osect (osect); |
1850 | } | |
1851 | } | |
1852 | ||
1853 | /* Whenever a new objfile is loaded, read the target's _ovly_table. | |
1854 | If there is one, go through all sections and make sure for non- | |
1855 | overlay sections LMA equals VMA, while for overlay sections LMA | |
d2ed6730 | 1856 | is larger than SPU_OVERLAY_LMA. */ |
dcf52cd8 UW |
1857 | static void |
1858 | spu_overlay_new_objfile (struct objfile *objfile) | |
1859 | { | |
1860 | struct spu_overlay_table *ovly_table; | |
1861 | struct obj_section *osect; | |
1862 | ||
1863 | /* If we've already touched this file, do nothing. */ | |
1864 | if (!objfile || objfile_data (objfile, spu_overlay_data) != NULL) | |
1865 | return; | |
1866 | ||
0391f248 UW |
1867 | /* Consider only SPU objfiles. */ |
1868 | if (bfd_get_arch (objfile->obfd) != bfd_arch_spu) | |
1869 | return; | |
1870 | ||
dcf52cd8 UW |
1871 | /* Check if this objfile has overlays. */ |
1872 | ovly_table = spu_get_overlay_table (objfile); | |
1873 | if (!ovly_table) | |
1874 | return; | |
1875 | ||
1876 | /* Now go and fiddle with all the LMAs. */ | |
1877 | ALL_OBJFILE_OSECTIONS (objfile, osect) | |
1878 | { | |
1879 | bfd *obfd = objfile->obfd; | |
1880 | asection *bsect = osect->the_bfd_section; | |
1881 | int ndx = osect - objfile->sections; | |
1882 | ||
1883 | if (ovly_table[ndx].mapped_ptr == 0) | |
1884 | bfd_section_lma (obfd, bsect) = bfd_section_vma (obfd, bsect); | |
1885 | else | |
d2ed6730 | 1886 | bfd_section_lma (obfd, bsect) = SPU_OVERLAY_LMA + bsect->filepos; |
dcf52cd8 UW |
1887 | } |
1888 | } | |
1889 | ||
771b4502 | 1890 | |
3285f3fe UW |
1891 | /* Insert temporary breakpoint on "main" function of newly loaded |
1892 | SPE context OBJFILE. */ | |
1893 | static void | |
1894 | spu_catch_start (struct objfile *objfile) | |
1895 | { | |
1896 | struct minimal_symbol *minsym; | |
1897 | struct symtab *symtab; | |
1898 | CORE_ADDR pc; | |
1899 | char buf[32]; | |
1900 | ||
1901 | /* Do this only if requested by "set spu stop-on-load on". */ | |
1902 | if (!spu_stop_on_load_p) | |
1903 | return; | |
1904 | ||
1905 | /* Consider only SPU objfiles. */ | |
1906 | if (!objfile || bfd_get_arch (objfile->obfd) != bfd_arch_spu) | |
1907 | return; | |
1908 | ||
1909 | /* The main objfile is handled differently. */ | |
1910 | if (objfile == symfile_objfile) | |
1911 | return; | |
1912 | ||
1913 | /* There can be multiple symbols named "main". Search for the | |
1914 | "main" in *this* objfile. */ | |
1915 | minsym = lookup_minimal_symbol ("main", NULL, objfile); | |
1916 | if (!minsym) | |
1917 | return; | |
1918 | ||
1919 | /* If we have debugging information, try to use it -- this | |
1920 | will allow us to properly skip the prologue. */ | |
1921 | pc = SYMBOL_VALUE_ADDRESS (minsym); | |
1922 | symtab = find_pc_sect_symtab (pc, SYMBOL_OBJ_SECTION (minsym)); | |
1923 | if (symtab != NULL) | |
1924 | { | |
1925 | struct blockvector *bv = BLOCKVECTOR (symtab); | |
1926 | struct block *block = BLOCKVECTOR_BLOCK (bv, GLOBAL_BLOCK); | |
1927 | struct symbol *sym; | |
1928 | struct symtab_and_line sal; | |
1929 | ||
94af9270 | 1930 | sym = lookup_block_symbol (block, "main", VAR_DOMAIN); |
3285f3fe UW |
1931 | if (sym) |
1932 | { | |
1933 | fixup_symbol_section (sym, objfile); | |
1934 | sal = find_function_start_sal (sym, 1); | |
1935 | pc = sal.pc; | |
1936 | } | |
1937 | } | |
1938 | ||
1939 | /* Use a numerical address for the set_breakpoint command to avoid having | |
1940 | the breakpoint re-set incorrectly. */ | |
1941 | xsnprintf (buf, sizeof buf, "*%s", core_addr_to_string (pc)); | |
d8c09fb5 JK |
1942 | create_breakpoint (get_objfile_arch (objfile), buf /* arg */, |
1943 | NULL /* cond_string */, -1 /* thread */, | |
6a609e58 | 1944 | NULL /* extra_string */, |
d8c09fb5 | 1945 | 0 /* parse_condition_and_thread */, 1 /* tempflag */, |
bddaafad | 1946 | bp_breakpoint /* type_wanted */, |
d8c09fb5 JK |
1947 | 0 /* ignore_count */, |
1948 | AUTO_BOOLEAN_FALSE /* pending_break_support */, | |
931bb47f | 1949 | &bkpt_breakpoint_ops /* ops */, 0 /* from_tty */, |
44f238bb | 1950 | 1 /* enabled */, 0 /* internal */, 0); |
3285f3fe UW |
1951 | } |
1952 | ||
1953 | ||
ff1a52c6 UW |
1954 | /* Look up OBJFILE loaded into FRAME's SPU context. */ |
1955 | static struct objfile * | |
1956 | spu_objfile_from_frame (struct frame_info *frame) | |
1957 | { | |
1958 | struct gdbarch *gdbarch = get_frame_arch (frame); | |
1959 | struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); | |
1960 | struct objfile *obj; | |
1961 | ||
1962 | if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu) | |
1963 | return NULL; | |
1964 | ||
1965 | ALL_OBJFILES (obj) | |
1966 | { | |
1967 | if (obj->sections != obj->sections_end | |
1968 | && SPUADDR_SPU (obj_section_addr (obj->sections)) == tdep->id) | |
1969 | return obj; | |
1970 | } | |
1971 | ||
1972 | return NULL; | |
1973 | } | |
1974 | ||
1975 | /* Flush cache for ea pointer access if available. */ | |
1976 | static void | |
1977 | flush_ea_cache (void) | |
1978 | { | |
1979 | struct minimal_symbol *msymbol; | |
1980 | struct objfile *obj; | |
1981 | ||
1982 | if (!has_stack_frames ()) | |
1983 | return; | |
1984 | ||
1985 | obj = spu_objfile_from_frame (get_current_frame ()); | |
1986 | if (obj == NULL) | |
1987 | return; | |
1988 | ||
1989 | /* Lookup inferior function __cache_flush. */ | |
1990 | msymbol = lookup_minimal_symbol ("__cache_flush", NULL, obj); | |
1991 | if (msymbol != NULL) | |
1992 | { | |
1993 | struct type *type; | |
1994 | CORE_ADDR addr; | |
1995 | ||
1996 | type = objfile_type (obj)->builtin_void; | |
1997 | type = lookup_function_type (type); | |
1998 | type = lookup_pointer_type (type); | |
1999 | addr = SYMBOL_VALUE_ADDRESS (msymbol); | |
2000 | ||
2001 | call_function_by_hand (value_from_pointer (type, addr), 0, NULL); | |
2002 | } | |
2003 | } | |
2004 | ||
2005 | /* This handler is called when the inferior has stopped. If it is stopped in | |
2006 | SPU architecture then flush the ea cache if used. */ | |
2007 | static void | |
2008 | spu_attach_normal_stop (struct bpstats *bs, int print_frame) | |
2009 | { | |
2010 | if (!spu_auto_flush_cache_p) | |
2011 | return; | |
2012 | ||
2013 | /* Temporarily reset spu_auto_flush_cache_p to avoid recursively | |
2014 | re-entering this function when __cache_flush stops. */ | |
2015 | spu_auto_flush_cache_p = 0; | |
2016 | flush_ea_cache (); | |
2017 | spu_auto_flush_cache_p = 1; | |
2018 | } | |
2019 | ||
2020 | ||
23d964e7 UW |
2021 | /* "info spu" commands. */ |
2022 | ||
2023 | static void | |
2024 | info_spu_event_command (char *args, int from_tty) | |
2025 | { | |
2026 | struct frame_info *frame = get_selected_frame (NULL); | |
2027 | ULONGEST event_status = 0; | |
2028 | ULONGEST event_mask = 0; | |
2029 | struct cleanup *chain; | |
2030 | gdb_byte buf[100]; | |
2031 | char annex[32]; | |
2032 | LONGEST len; | |
22e048c9 | 2033 | int id; |
23d964e7 | 2034 | |
0391f248 UW |
2035 | if (gdbarch_bfd_arch_info (get_frame_arch (frame))->arch != bfd_arch_spu) |
2036 | error (_("\"info spu\" is only supported on the SPU architecture.")); | |
2037 | ||
23d964e7 UW |
2038 | id = get_frame_register_unsigned (frame, SPU_ID_REGNUM); |
2039 | ||
2040 | xsnprintf (annex, sizeof annex, "%d/event_status", id); | |
2041 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
9971ac47 | 2042 | buf, 0, (sizeof (buf) - 1)); |
23d964e7 UW |
2043 | if (len <= 0) |
2044 | error (_("Could not read event_status.")); | |
9971ac47 | 2045 | buf[len] = '\0'; |
23d964e7 UW |
2046 | event_status = strtoulst (buf, NULL, 16); |
2047 | ||
2048 | xsnprintf (annex, sizeof annex, "%d/event_mask", id); | |
2049 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
9971ac47 | 2050 | buf, 0, (sizeof (buf) - 1)); |
23d964e7 UW |
2051 | if (len <= 0) |
2052 | error (_("Could not read event_mask.")); | |
9971ac47 | 2053 | buf[len] = '\0'; |
23d964e7 UW |
2054 | event_mask = strtoulst (buf, NULL, 16); |
2055 | ||
31a0ae49 | 2056 | chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "SPUInfoEvent"); |
23d964e7 | 2057 | |
31a0ae49 | 2058 | if (ui_out_is_mi_like_p (current_uiout)) |
23d964e7 | 2059 | { |
31a0ae49 | 2060 | ui_out_field_fmt (current_uiout, "event_status", |
23d964e7 | 2061 | "0x%s", phex_nz (event_status, 4)); |
31a0ae49 | 2062 | ui_out_field_fmt (current_uiout, "event_mask", |
23d964e7 UW |
2063 | "0x%s", phex_nz (event_mask, 4)); |
2064 | } | |
2065 | else | |
2066 | { | |
2067 | printf_filtered (_("Event Status 0x%s\n"), phex (event_status, 4)); | |
2068 | printf_filtered (_("Event Mask 0x%s\n"), phex (event_mask, 4)); | |
2069 | } | |
2070 | ||
2071 | do_cleanups (chain); | |
2072 | } | |
2073 | ||
2074 | static void | |
2075 | info_spu_signal_command (char *args, int from_tty) | |
2076 | { | |
2077 | struct frame_info *frame = get_selected_frame (NULL); | |
e17a4113 UW |
2078 | struct gdbarch *gdbarch = get_frame_arch (frame); |
2079 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
23d964e7 UW |
2080 | ULONGEST signal1 = 0; |
2081 | ULONGEST signal1_type = 0; | |
2082 | int signal1_pending = 0; | |
2083 | ULONGEST signal2 = 0; | |
2084 | ULONGEST signal2_type = 0; | |
2085 | int signal2_pending = 0; | |
2086 | struct cleanup *chain; | |
2087 | char annex[32]; | |
2088 | gdb_byte buf[100]; | |
2089 | LONGEST len; | |
22e048c9 | 2090 | int id; |
23d964e7 | 2091 | |
e17a4113 | 2092 | if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu) |
0391f248 UW |
2093 | error (_("\"info spu\" is only supported on the SPU architecture.")); |
2094 | ||
23d964e7 UW |
2095 | id = get_frame_register_unsigned (frame, SPU_ID_REGNUM); |
2096 | ||
2097 | xsnprintf (annex, sizeof annex, "%d/signal1", id); | |
2098 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, buf, 0, 4); | |
2099 | if (len < 0) | |
2100 | error (_("Could not read signal1.")); | |
2101 | else if (len == 4) | |
2102 | { | |
e17a4113 | 2103 | signal1 = extract_unsigned_integer (buf, 4, byte_order); |
23d964e7 UW |
2104 | signal1_pending = 1; |
2105 | } | |
2106 | ||
2107 | xsnprintf (annex, sizeof annex, "%d/signal1_type", id); | |
2108 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
9971ac47 | 2109 | buf, 0, (sizeof (buf) - 1)); |
23d964e7 UW |
2110 | if (len <= 0) |
2111 | error (_("Could not read signal1_type.")); | |
9971ac47 | 2112 | buf[len] = '\0'; |
23d964e7 UW |
2113 | signal1_type = strtoulst (buf, NULL, 16); |
2114 | ||
2115 | xsnprintf (annex, sizeof annex, "%d/signal2", id); | |
2116 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, buf, 0, 4); | |
2117 | if (len < 0) | |
2118 | error (_("Could not read signal2.")); | |
2119 | else if (len == 4) | |
2120 | { | |
e17a4113 | 2121 | signal2 = extract_unsigned_integer (buf, 4, byte_order); |
23d964e7 UW |
2122 | signal2_pending = 1; |
2123 | } | |
2124 | ||
2125 | xsnprintf (annex, sizeof annex, "%d/signal2_type", id); | |
2126 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
9971ac47 | 2127 | buf, 0, (sizeof (buf) - 1)); |
23d964e7 UW |
2128 | if (len <= 0) |
2129 | error (_("Could not read signal2_type.")); | |
9971ac47 | 2130 | buf[len] = '\0'; |
23d964e7 UW |
2131 | signal2_type = strtoulst (buf, NULL, 16); |
2132 | ||
31a0ae49 | 2133 | chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "SPUInfoSignal"); |
23d964e7 | 2134 | |
31a0ae49 | 2135 | if (ui_out_is_mi_like_p (current_uiout)) |
23d964e7 | 2136 | { |
31a0ae49 JK |
2137 | ui_out_field_int (current_uiout, "signal1_pending", signal1_pending); |
2138 | ui_out_field_fmt (current_uiout, "signal1", "0x%s", phex_nz (signal1, 4)); | |
2139 | ui_out_field_int (current_uiout, "signal1_type", signal1_type); | |
2140 | ui_out_field_int (current_uiout, "signal2_pending", signal2_pending); | |
2141 | ui_out_field_fmt (current_uiout, "signal2", "0x%s", phex_nz (signal2, 4)); | |
2142 | ui_out_field_int (current_uiout, "signal2_type", signal2_type); | |
23d964e7 UW |
2143 | } |
2144 | else | |
2145 | { | |
2146 | if (signal1_pending) | |
2147 | printf_filtered (_("Signal 1 control word 0x%s "), phex (signal1, 4)); | |
2148 | else | |
2149 | printf_filtered (_("Signal 1 not pending ")); | |
2150 | ||
2151 | if (signal1_type) | |
23d964e7 | 2152 | printf_filtered (_("(Type Or)\n")); |
b94c4f7d UW |
2153 | else |
2154 | printf_filtered (_("(Type Overwrite)\n")); | |
23d964e7 UW |
2155 | |
2156 | if (signal2_pending) | |
2157 | printf_filtered (_("Signal 2 control word 0x%s "), phex (signal2, 4)); | |
2158 | else | |
2159 | printf_filtered (_("Signal 2 not pending ")); | |
2160 | ||
2161 | if (signal2_type) | |
23d964e7 | 2162 | printf_filtered (_("(Type Or)\n")); |
b94c4f7d UW |
2163 | else |
2164 | printf_filtered (_("(Type Overwrite)\n")); | |
23d964e7 UW |
2165 | } |
2166 | ||
2167 | do_cleanups (chain); | |
2168 | } | |
2169 | ||
2170 | static void | |
e17a4113 | 2171 | info_spu_mailbox_list (gdb_byte *buf, int nr, enum bfd_endian byte_order, |
23d964e7 UW |
2172 | const char *field, const char *msg) |
2173 | { | |
2174 | struct cleanup *chain; | |
2175 | int i; | |
2176 | ||
2177 | if (nr <= 0) | |
2178 | return; | |
2179 | ||
31a0ae49 | 2180 | chain = make_cleanup_ui_out_table_begin_end (current_uiout, 1, nr, "mbox"); |
23d964e7 | 2181 | |
31a0ae49 JK |
2182 | ui_out_table_header (current_uiout, 32, ui_left, field, msg); |
2183 | ui_out_table_body (current_uiout); | |
23d964e7 UW |
2184 | |
2185 | for (i = 0; i < nr; i++) | |
2186 | { | |
2187 | struct cleanup *val_chain; | |
2188 | ULONGEST val; | |
31a0ae49 | 2189 | val_chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "mbox"); |
e17a4113 | 2190 | val = extract_unsigned_integer (buf + 4*i, 4, byte_order); |
31a0ae49 | 2191 | ui_out_field_fmt (current_uiout, field, "0x%s", phex (val, 4)); |
23d964e7 UW |
2192 | do_cleanups (val_chain); |
2193 | ||
31a0ae49 | 2194 | if (!ui_out_is_mi_like_p (current_uiout)) |
23d964e7 UW |
2195 | printf_filtered ("\n"); |
2196 | } | |
2197 | ||
2198 | do_cleanups (chain); | |
2199 | } | |
2200 | ||
2201 | static void | |
2202 | info_spu_mailbox_command (char *args, int from_tty) | |
2203 | { | |
2204 | struct frame_info *frame = get_selected_frame (NULL); | |
e17a4113 UW |
2205 | struct gdbarch *gdbarch = get_frame_arch (frame); |
2206 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
23d964e7 UW |
2207 | struct cleanup *chain; |
2208 | char annex[32]; | |
2209 | gdb_byte buf[1024]; | |
2210 | LONGEST len; | |
22e048c9 | 2211 | int id; |
23d964e7 | 2212 | |
e17a4113 | 2213 | if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu) |
0391f248 UW |
2214 | error (_("\"info spu\" is only supported on the SPU architecture.")); |
2215 | ||
23d964e7 UW |
2216 | id = get_frame_register_unsigned (frame, SPU_ID_REGNUM); |
2217 | ||
31a0ae49 | 2218 | chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "SPUInfoMailbox"); |
23d964e7 UW |
2219 | |
2220 | xsnprintf (annex, sizeof annex, "%d/mbox_info", id); | |
2221 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
2222 | buf, 0, sizeof buf); | |
2223 | if (len < 0) | |
2224 | error (_("Could not read mbox_info.")); | |
2225 | ||
e17a4113 UW |
2226 | info_spu_mailbox_list (buf, len / 4, byte_order, |
2227 | "mbox", "SPU Outbound Mailbox"); | |
23d964e7 UW |
2228 | |
2229 | xsnprintf (annex, sizeof annex, "%d/ibox_info", id); | |
2230 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
2231 | buf, 0, sizeof buf); | |
2232 | if (len < 0) | |
2233 | error (_("Could not read ibox_info.")); | |
2234 | ||
e17a4113 UW |
2235 | info_spu_mailbox_list (buf, len / 4, byte_order, |
2236 | "ibox", "SPU Outbound Interrupt Mailbox"); | |
23d964e7 UW |
2237 | |
2238 | xsnprintf (annex, sizeof annex, "%d/wbox_info", id); | |
2239 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
2240 | buf, 0, sizeof buf); | |
2241 | if (len < 0) | |
2242 | error (_("Could not read wbox_info.")); | |
2243 | ||
e17a4113 UW |
2244 | info_spu_mailbox_list (buf, len / 4, byte_order, |
2245 | "wbox", "SPU Inbound Mailbox"); | |
23d964e7 UW |
2246 | |
2247 | do_cleanups (chain); | |
2248 | } | |
2249 | ||
2250 | static ULONGEST | |
2251 | spu_mfc_get_bitfield (ULONGEST word, int first, int last) | |
2252 | { | |
2253 | ULONGEST mask = ~(~(ULONGEST)0 << (last - first + 1)); | |
2254 | return (word >> (63 - last)) & mask; | |
2255 | } | |
2256 | ||
2257 | static void | |
e17a4113 | 2258 | info_spu_dma_cmdlist (gdb_byte *buf, int nr, enum bfd_endian byte_order) |
23d964e7 UW |
2259 | { |
2260 | static char *spu_mfc_opcode[256] = | |
2261 | { | |
2262 | /* 00 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2263 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2264 | /* 10 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2265 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2266 | /* 20 */ "put", "putb", "putf", NULL, "putl", "putlb", "putlf", NULL, | |
2267 | "puts", "putbs", "putfs", NULL, NULL, NULL, NULL, NULL, | |
2268 | /* 30 */ "putr", "putrb", "putrf", NULL, "putrl", "putrlb", "putrlf", NULL, | |
2269 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2270 | /* 40 */ "get", "getb", "getf", NULL, "getl", "getlb", "getlf", NULL, | |
2271 | "gets", "getbs", "getfs", NULL, NULL, NULL, NULL, NULL, | |
2272 | /* 50 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2273 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2274 | /* 60 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2275 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2276 | /* 70 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2277 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2278 | /* 80 */ "sdcrt", "sdcrtst", NULL, NULL, NULL, NULL, NULL, NULL, | |
2279 | NULL, "sdcrz", NULL, NULL, NULL, "sdcrst", NULL, "sdcrf", | |
2280 | /* 90 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2281 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2282 | /* a0 */ "sndsig", "sndsigb", "sndsigf", NULL, NULL, NULL, NULL, NULL, | |
2283 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2284 | /* b0 */ "putlluc", NULL, NULL, NULL, "putllc", NULL, NULL, NULL, | |
2285 | "putqlluc", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2286 | /* c0 */ "barrier", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2287 | "mfceieio", NULL, NULL, NULL, "mfcsync", NULL, NULL, NULL, | |
2288 | /* d0 */ "getllar", NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2289 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2290 | /* e0 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2291 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2292 | /* f0 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2293 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, | |
2294 | }; | |
2295 | ||
12ab8a60 UW |
2296 | int *seq = alloca (nr * sizeof (int)); |
2297 | int done = 0; | |
23d964e7 | 2298 | struct cleanup *chain; |
12ab8a60 UW |
2299 | int i, j; |
2300 | ||
2301 | ||
2302 | /* Determine sequence in which to display (valid) entries. */ | |
2303 | for (i = 0; i < nr; i++) | |
2304 | { | |
2305 | /* Search for the first valid entry all of whose | |
2306 | dependencies are met. */ | |
2307 | for (j = 0; j < nr; j++) | |
2308 | { | |
2309 | ULONGEST mfc_cq_dw3; | |
2310 | ULONGEST dependencies; | |
2311 | ||
2312 | if (done & (1 << (nr - 1 - j))) | |
2313 | continue; | |
2314 | ||
e17a4113 UW |
2315 | mfc_cq_dw3 |
2316 | = extract_unsigned_integer (buf + 32*j + 24,8, byte_order); | |
12ab8a60 UW |
2317 | if (!spu_mfc_get_bitfield (mfc_cq_dw3, 16, 16)) |
2318 | continue; | |
2319 | ||
2320 | dependencies = spu_mfc_get_bitfield (mfc_cq_dw3, 0, nr - 1); | |
2321 | if ((dependencies & done) != dependencies) | |
2322 | continue; | |
2323 | ||
2324 | seq[i] = j; | |
2325 | done |= 1 << (nr - 1 - j); | |
2326 | break; | |
2327 | } | |
2328 | ||
2329 | if (j == nr) | |
2330 | break; | |
2331 | } | |
2332 | ||
2333 | nr = i; | |
2334 | ||
23d964e7 | 2335 | |
31a0ae49 JK |
2336 | chain = make_cleanup_ui_out_table_begin_end (current_uiout, 10, nr, |
2337 | "dma_cmd"); | |
23d964e7 | 2338 | |
31a0ae49 JK |
2339 | ui_out_table_header (current_uiout, 7, ui_left, "opcode", "Opcode"); |
2340 | ui_out_table_header (current_uiout, 3, ui_left, "tag", "Tag"); | |
2341 | ui_out_table_header (current_uiout, 3, ui_left, "tid", "TId"); | |
2342 | ui_out_table_header (current_uiout, 3, ui_left, "rid", "RId"); | |
2343 | ui_out_table_header (current_uiout, 18, ui_left, "ea", "EA"); | |
2344 | ui_out_table_header (current_uiout, 7, ui_left, "lsa", "LSA"); | |
2345 | ui_out_table_header (current_uiout, 7, ui_left, "size", "Size"); | |
2346 | ui_out_table_header (current_uiout, 7, ui_left, "lstaddr", "LstAddr"); | |
2347 | ui_out_table_header (current_uiout, 7, ui_left, "lstsize", "LstSize"); | |
2348 | ui_out_table_header (current_uiout, 1, ui_left, "error_p", "E"); | |
23d964e7 | 2349 | |
31a0ae49 | 2350 | ui_out_table_body (current_uiout); |
23d964e7 UW |
2351 | |
2352 | for (i = 0; i < nr; i++) | |
2353 | { | |
2354 | struct cleanup *cmd_chain; | |
2355 | ULONGEST mfc_cq_dw0; | |
2356 | ULONGEST mfc_cq_dw1; | |
2357 | ULONGEST mfc_cq_dw2; | |
23d964e7 | 2358 | int mfc_cmd_opcode, mfc_cmd_tag, rclass_id, tclass_id; |
22e048c9 | 2359 | int list_lsa, list_size, mfc_lsa, mfc_size; |
23d964e7 UW |
2360 | ULONGEST mfc_ea; |
2361 | int list_valid_p, noop_valid_p, qw_valid_p, ea_valid_p, cmd_error_p; | |
2362 | ||
2363 | /* Decode contents of MFC Command Queue Context Save/Restore Registers. | |
2364 | See "Cell Broadband Engine Registers V1.3", section 3.3.2.1. */ | |
2365 | ||
e17a4113 UW |
2366 | mfc_cq_dw0 |
2367 | = extract_unsigned_integer (buf + 32*seq[i], 8, byte_order); | |
2368 | mfc_cq_dw1 | |
2369 | = extract_unsigned_integer (buf + 32*seq[i] + 8, 8, byte_order); | |
2370 | mfc_cq_dw2 | |
2371 | = extract_unsigned_integer (buf + 32*seq[i] + 16, 8, byte_order); | |
23d964e7 UW |
2372 | |
2373 | list_lsa = spu_mfc_get_bitfield (mfc_cq_dw0, 0, 14); | |
2374 | list_size = spu_mfc_get_bitfield (mfc_cq_dw0, 15, 26); | |
2375 | mfc_cmd_opcode = spu_mfc_get_bitfield (mfc_cq_dw0, 27, 34); | |
2376 | mfc_cmd_tag = spu_mfc_get_bitfield (mfc_cq_dw0, 35, 39); | |
2377 | list_valid_p = spu_mfc_get_bitfield (mfc_cq_dw0, 40, 40); | |
2378 | rclass_id = spu_mfc_get_bitfield (mfc_cq_dw0, 41, 43); | |
2379 | tclass_id = spu_mfc_get_bitfield (mfc_cq_dw0, 44, 46); | |
2380 | ||
2381 | mfc_ea = spu_mfc_get_bitfield (mfc_cq_dw1, 0, 51) << 12 | |
2382 | | spu_mfc_get_bitfield (mfc_cq_dw2, 25, 36); | |
2383 | ||
2384 | mfc_lsa = spu_mfc_get_bitfield (mfc_cq_dw2, 0, 13); | |
2385 | mfc_size = spu_mfc_get_bitfield (mfc_cq_dw2, 14, 24); | |
2386 | noop_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 37, 37); | |
2387 | qw_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 38, 38); | |
2388 | ea_valid_p = spu_mfc_get_bitfield (mfc_cq_dw2, 39, 39); | |
2389 | cmd_error_p = spu_mfc_get_bitfield (mfc_cq_dw2, 40, 40); | |
2390 | ||
31a0ae49 | 2391 | cmd_chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "cmd"); |
23d964e7 UW |
2392 | |
2393 | if (spu_mfc_opcode[mfc_cmd_opcode]) | |
31a0ae49 | 2394 | ui_out_field_string (current_uiout, "opcode", spu_mfc_opcode[mfc_cmd_opcode]); |
23d964e7 | 2395 | else |
31a0ae49 | 2396 | ui_out_field_int (current_uiout, "opcode", mfc_cmd_opcode); |
23d964e7 | 2397 | |
31a0ae49 JK |
2398 | ui_out_field_int (current_uiout, "tag", mfc_cmd_tag); |
2399 | ui_out_field_int (current_uiout, "tid", tclass_id); | |
2400 | ui_out_field_int (current_uiout, "rid", rclass_id); | |
23d964e7 UW |
2401 | |
2402 | if (ea_valid_p) | |
31a0ae49 | 2403 | ui_out_field_fmt (current_uiout, "ea", "0x%s", phex (mfc_ea, 8)); |
23d964e7 | 2404 | else |
31a0ae49 | 2405 | ui_out_field_skip (current_uiout, "ea"); |
23d964e7 | 2406 | |
31a0ae49 | 2407 | ui_out_field_fmt (current_uiout, "lsa", "0x%05x", mfc_lsa << 4); |
23d964e7 | 2408 | if (qw_valid_p) |
31a0ae49 | 2409 | ui_out_field_fmt (current_uiout, "size", "0x%05x", mfc_size << 4); |
23d964e7 | 2410 | else |
31a0ae49 | 2411 | ui_out_field_fmt (current_uiout, "size", "0x%05x", mfc_size); |
23d964e7 UW |
2412 | |
2413 | if (list_valid_p) | |
2414 | { | |
31a0ae49 JK |
2415 | ui_out_field_fmt (current_uiout, "lstaddr", "0x%05x", list_lsa << 3); |
2416 | ui_out_field_fmt (current_uiout, "lstsize", "0x%05x", list_size << 3); | |
23d964e7 UW |
2417 | } |
2418 | else | |
2419 | { | |
31a0ae49 JK |
2420 | ui_out_field_skip (current_uiout, "lstaddr"); |
2421 | ui_out_field_skip (current_uiout, "lstsize"); | |
23d964e7 UW |
2422 | } |
2423 | ||
2424 | if (cmd_error_p) | |
31a0ae49 | 2425 | ui_out_field_string (current_uiout, "error_p", "*"); |
23d964e7 | 2426 | else |
31a0ae49 | 2427 | ui_out_field_skip (current_uiout, "error_p"); |
23d964e7 UW |
2428 | |
2429 | do_cleanups (cmd_chain); | |
2430 | ||
31a0ae49 | 2431 | if (!ui_out_is_mi_like_p (current_uiout)) |
23d964e7 UW |
2432 | printf_filtered ("\n"); |
2433 | } | |
2434 | ||
2435 | do_cleanups (chain); | |
2436 | } | |
2437 | ||
2438 | static void | |
2439 | info_spu_dma_command (char *args, int from_tty) | |
2440 | { | |
2441 | struct frame_info *frame = get_selected_frame (NULL); | |
e17a4113 UW |
2442 | struct gdbarch *gdbarch = get_frame_arch (frame); |
2443 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
23d964e7 UW |
2444 | ULONGEST dma_info_type; |
2445 | ULONGEST dma_info_mask; | |
2446 | ULONGEST dma_info_status; | |
2447 | ULONGEST dma_info_stall_and_notify; | |
2448 | ULONGEST dma_info_atomic_command_status; | |
2449 | struct cleanup *chain; | |
2450 | char annex[32]; | |
2451 | gdb_byte buf[1024]; | |
2452 | LONGEST len; | |
22e048c9 | 2453 | int id; |
23d964e7 | 2454 | |
0391f248 UW |
2455 | if (gdbarch_bfd_arch_info (get_frame_arch (frame))->arch != bfd_arch_spu) |
2456 | error (_("\"info spu\" is only supported on the SPU architecture.")); | |
2457 | ||
23d964e7 UW |
2458 | id = get_frame_register_unsigned (frame, SPU_ID_REGNUM); |
2459 | ||
2460 | xsnprintf (annex, sizeof annex, "%d/dma_info", id); | |
2461 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
2462 | buf, 0, 40 + 16 * 32); | |
2463 | if (len <= 0) | |
2464 | error (_("Could not read dma_info.")); | |
2465 | ||
e17a4113 UW |
2466 | dma_info_type |
2467 | = extract_unsigned_integer (buf, 8, byte_order); | |
2468 | dma_info_mask | |
2469 | = extract_unsigned_integer (buf + 8, 8, byte_order); | |
2470 | dma_info_status | |
2471 | = extract_unsigned_integer (buf + 16, 8, byte_order); | |
2472 | dma_info_stall_and_notify | |
2473 | = extract_unsigned_integer (buf + 24, 8, byte_order); | |
2474 | dma_info_atomic_command_status | |
2475 | = extract_unsigned_integer (buf + 32, 8, byte_order); | |
23d964e7 | 2476 | |
31a0ae49 | 2477 | chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, "SPUInfoDMA"); |
23d964e7 | 2478 | |
31a0ae49 | 2479 | if (ui_out_is_mi_like_p (current_uiout)) |
23d964e7 | 2480 | { |
31a0ae49 | 2481 | ui_out_field_fmt (current_uiout, "dma_info_type", "0x%s", |
23d964e7 | 2482 | phex_nz (dma_info_type, 4)); |
31a0ae49 | 2483 | ui_out_field_fmt (current_uiout, "dma_info_mask", "0x%s", |
23d964e7 | 2484 | phex_nz (dma_info_mask, 4)); |
31a0ae49 | 2485 | ui_out_field_fmt (current_uiout, "dma_info_status", "0x%s", |
23d964e7 | 2486 | phex_nz (dma_info_status, 4)); |
31a0ae49 | 2487 | ui_out_field_fmt (current_uiout, "dma_info_stall_and_notify", "0x%s", |
23d964e7 | 2488 | phex_nz (dma_info_stall_and_notify, 4)); |
31a0ae49 | 2489 | ui_out_field_fmt (current_uiout, "dma_info_atomic_command_status", "0x%s", |
23d964e7 UW |
2490 | phex_nz (dma_info_atomic_command_status, 4)); |
2491 | } | |
2492 | else | |
2493 | { | |
8fbde58b | 2494 | const char *query_msg = _("no query pending"); |
23d964e7 | 2495 | |
8fbde58b UW |
2496 | if (dma_info_type & 4) |
2497 | switch (dma_info_type & 3) | |
2498 | { | |
2499 | case 1: query_msg = _("'any' query pending"); break; | |
2500 | case 2: query_msg = _("'all' query pending"); break; | |
2501 | default: query_msg = _("undefined query type"); break; | |
2502 | } | |
23d964e7 UW |
2503 | |
2504 | printf_filtered (_("Tag-Group Status 0x%s\n"), | |
2505 | phex (dma_info_status, 4)); | |
2506 | printf_filtered (_("Tag-Group Mask 0x%s (%s)\n"), | |
2507 | phex (dma_info_mask, 4), query_msg); | |
2508 | printf_filtered (_("Stall-and-Notify 0x%s\n"), | |
2509 | phex (dma_info_stall_and_notify, 4)); | |
2510 | printf_filtered (_("Atomic Cmd Status 0x%s\n"), | |
2511 | phex (dma_info_atomic_command_status, 4)); | |
2512 | printf_filtered ("\n"); | |
2513 | } | |
2514 | ||
e17a4113 | 2515 | info_spu_dma_cmdlist (buf + 40, 16, byte_order); |
23d964e7 UW |
2516 | do_cleanups (chain); |
2517 | } | |
2518 | ||
2519 | static void | |
2520 | info_spu_proxydma_command (char *args, int from_tty) | |
2521 | { | |
2522 | struct frame_info *frame = get_selected_frame (NULL); | |
e17a4113 UW |
2523 | struct gdbarch *gdbarch = get_frame_arch (frame); |
2524 | enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); | |
23d964e7 UW |
2525 | ULONGEST dma_info_type; |
2526 | ULONGEST dma_info_mask; | |
2527 | ULONGEST dma_info_status; | |
2528 | struct cleanup *chain; | |
2529 | char annex[32]; | |
2530 | gdb_byte buf[1024]; | |
2531 | LONGEST len; | |
22e048c9 | 2532 | int id; |
23d964e7 | 2533 | |
e17a4113 | 2534 | if (gdbarch_bfd_arch_info (gdbarch)->arch != bfd_arch_spu) |
0391f248 UW |
2535 | error (_("\"info spu\" is only supported on the SPU architecture.")); |
2536 | ||
23d964e7 UW |
2537 | id = get_frame_register_unsigned (frame, SPU_ID_REGNUM); |
2538 | ||
2539 | xsnprintf (annex, sizeof annex, "%d/proxydma_info", id); | |
2540 | len = target_read (¤t_target, TARGET_OBJECT_SPU, annex, | |
2541 | buf, 0, 24 + 8 * 32); | |
2542 | if (len <= 0) | |
2543 | error (_("Could not read proxydma_info.")); | |
2544 | ||
e17a4113 UW |
2545 | dma_info_type = extract_unsigned_integer (buf, 8, byte_order); |
2546 | dma_info_mask = extract_unsigned_integer (buf + 8, 8, byte_order); | |
2547 | dma_info_status = extract_unsigned_integer (buf + 16, 8, byte_order); | |
23d964e7 | 2548 | |
31a0ae49 JK |
2549 | chain = make_cleanup_ui_out_tuple_begin_end (current_uiout, |
2550 | "SPUInfoProxyDMA"); | |
23d964e7 | 2551 | |
31a0ae49 | 2552 | if (ui_out_is_mi_like_p (current_uiout)) |
23d964e7 | 2553 | { |
31a0ae49 | 2554 | ui_out_field_fmt (current_uiout, "proxydma_info_type", "0x%s", |
23d964e7 | 2555 | phex_nz (dma_info_type, 4)); |
31a0ae49 | 2556 | ui_out_field_fmt (current_uiout, "proxydma_info_mask", "0x%s", |
23d964e7 | 2557 | phex_nz (dma_info_mask, 4)); |
31a0ae49 | 2558 | ui_out_field_fmt (current_uiout, "proxydma_info_status", "0x%s", |
23d964e7 UW |
2559 | phex_nz (dma_info_status, 4)); |
2560 | } | |
2561 | else | |
2562 | { | |
2563 | const char *query_msg; | |
2564 | ||
8fbde58b | 2565 | switch (dma_info_type & 3) |
23d964e7 UW |
2566 | { |
2567 | case 0: query_msg = _("no query pending"); break; | |
2568 | case 1: query_msg = _("'any' query pending"); break; | |
2569 | case 2: query_msg = _("'all' query pending"); break; | |
2570 | default: query_msg = _("undefined query type"); break; | |
2571 | } | |
2572 | ||
2573 | printf_filtered (_("Tag-Group Status 0x%s\n"), | |
2574 | phex (dma_info_status, 4)); | |
2575 | printf_filtered (_("Tag-Group Mask 0x%s (%s)\n"), | |
2576 | phex (dma_info_mask, 4), query_msg); | |
2577 | printf_filtered ("\n"); | |
2578 | } | |
2579 | ||
e17a4113 | 2580 | info_spu_dma_cmdlist (buf + 24, 8, byte_order); |
23d964e7 UW |
2581 | do_cleanups (chain); |
2582 | } | |
2583 | ||
2584 | static void | |
2585 | info_spu_command (char *args, int from_tty) | |
2586 | { | |
c378eb4e MS |
2587 | printf_unfiltered (_("\"info spu\" must be followed by " |
2588 | "the name of an SPU facility.\n")); | |
23d964e7 UW |
2589 | help_list (infospucmdlist, "info spu ", -1, gdb_stdout); |
2590 | } | |
2591 | ||
2592 | ||
3285f3fe UW |
2593 | /* Root of all "set spu "/"show spu " commands. */ |
2594 | ||
2595 | static void | |
2596 | show_spu_command (char *args, int from_tty) | |
2597 | { | |
2598 | help_list (showspucmdlist, "show spu ", all_commands, gdb_stdout); | |
2599 | } | |
2600 | ||
2601 | static void | |
2602 | set_spu_command (char *args, int from_tty) | |
2603 | { | |
2604 | help_list (setspucmdlist, "set spu ", all_commands, gdb_stdout); | |
2605 | } | |
2606 | ||
2607 | static void | |
2608 | show_spu_stop_on_load (struct ui_file *file, int from_tty, | |
2609 | struct cmd_list_element *c, const char *value) | |
2610 | { | |
2611 | fprintf_filtered (file, _("Stopping for new SPE threads is %s.\n"), | |
2612 | value); | |
2613 | } | |
2614 | ||
ff1a52c6 UW |
2615 | static void |
2616 | show_spu_auto_flush_cache (struct ui_file *file, int from_tty, | |
2617 | struct cmd_list_element *c, const char *value) | |
2618 | { | |
2619 | fprintf_filtered (file, _("Automatic software-cache flush is %s.\n"), | |
2620 | value); | |
2621 | } | |
2622 | ||
3285f3fe | 2623 | |
771b4502 UW |
2624 | /* Set up gdbarch struct. */ |
2625 | ||
2626 | static struct gdbarch * | |
2627 | spu_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) | |
2628 | { | |
2629 | struct gdbarch *gdbarch; | |
794ac428 | 2630 | struct gdbarch_tdep *tdep; |
85e747d2 UW |
2631 | int id = -1; |
2632 | ||
2633 | /* Which spufs ID was requested as address space? */ | |
2634 | if (info.tdep_info) | |
2635 | id = *(int *)info.tdep_info; | |
2636 | /* For objfile architectures of SPU solibs, decode the ID from the name. | |
2637 | This assumes the filename convention employed by solib-spu.c. */ | |
2638 | else if (info.abfd) | |
2639 | { | |
2640 | char *name = strrchr (info.abfd->filename, '@'); | |
2641 | if (name) | |
2642 | sscanf (name, "@0x%*x <%d>", &id); | |
2643 | } | |
771b4502 | 2644 | |
85e747d2 UW |
2645 | /* Find a candidate among extant architectures. */ |
2646 | for (arches = gdbarch_list_lookup_by_info (arches, &info); | |
2647 | arches != NULL; | |
2648 | arches = gdbarch_list_lookup_by_info (arches->next, &info)) | |
2649 | { | |
2650 | tdep = gdbarch_tdep (arches->gdbarch); | |
2651 | if (tdep && tdep->id == id) | |
2652 | return arches->gdbarch; | |
2653 | } | |
771b4502 | 2654 | |
85e747d2 | 2655 | /* None found, so create a new architecture. */ |
794ac428 | 2656 | tdep = XCALLOC (1, struct gdbarch_tdep); |
85e747d2 | 2657 | tdep->id = id; |
794ac428 | 2658 | gdbarch = gdbarch_alloc (&info, tdep); |
771b4502 UW |
2659 | |
2660 | /* Disassembler. */ | |
85e747d2 | 2661 | set_gdbarch_print_insn (gdbarch, gdb_print_insn_spu); |
771b4502 UW |
2662 | |
2663 | /* Registers. */ | |
2664 | set_gdbarch_num_regs (gdbarch, SPU_NUM_REGS); | |
2665 | set_gdbarch_num_pseudo_regs (gdbarch, SPU_NUM_PSEUDO_REGS); | |
2666 | set_gdbarch_sp_regnum (gdbarch, SPU_SP_REGNUM); | |
2667 | set_gdbarch_pc_regnum (gdbarch, SPU_PC_REGNUM); | |
118dfbaf UW |
2668 | set_gdbarch_read_pc (gdbarch, spu_read_pc); |
2669 | set_gdbarch_write_pc (gdbarch, spu_write_pc); | |
771b4502 UW |
2670 | set_gdbarch_register_name (gdbarch, spu_register_name); |
2671 | set_gdbarch_register_type (gdbarch, spu_register_type); | |
2672 | set_gdbarch_pseudo_register_read (gdbarch, spu_pseudo_register_read); | |
2673 | set_gdbarch_pseudo_register_write (gdbarch, spu_pseudo_register_write); | |
9acbedc0 | 2674 | set_gdbarch_value_from_register (gdbarch, spu_value_from_register); |
771b4502 UW |
2675 | set_gdbarch_register_reggroup_p (gdbarch, spu_register_reggroup_p); |
2676 | ||
2677 | /* Data types. */ | |
2678 | set_gdbarch_char_signed (gdbarch, 0); | |
2679 | set_gdbarch_ptr_bit (gdbarch, 32); | |
2680 | set_gdbarch_addr_bit (gdbarch, 32); | |
2681 | set_gdbarch_short_bit (gdbarch, 16); | |
2682 | set_gdbarch_int_bit (gdbarch, 32); | |
2683 | set_gdbarch_long_bit (gdbarch, 32); | |
2684 | set_gdbarch_long_long_bit (gdbarch, 64); | |
2685 | set_gdbarch_float_bit (gdbarch, 32); | |
2686 | set_gdbarch_double_bit (gdbarch, 64); | |
2687 | set_gdbarch_long_double_bit (gdbarch, 64); | |
8da61cc4 DJ |
2688 | set_gdbarch_float_format (gdbarch, floatformats_ieee_single); |
2689 | set_gdbarch_double_format (gdbarch, floatformats_ieee_double); | |
2690 | set_gdbarch_long_double_format (gdbarch, floatformats_ieee_double); | |
771b4502 | 2691 | |
ff1a52c6 | 2692 | /* Address handling. */ |
85e747d2 | 2693 | set_gdbarch_address_to_pointer (gdbarch, spu_address_to_pointer); |
36acd84e UW |
2694 | set_gdbarch_pointer_to_address (gdbarch, spu_pointer_to_address); |
2695 | set_gdbarch_integer_to_address (gdbarch, spu_integer_to_address); | |
ff1a52c6 UW |
2696 | set_gdbarch_address_class_type_flags (gdbarch, spu_address_class_type_flags); |
2697 | set_gdbarch_address_class_type_flags_to_name | |
2698 | (gdbarch, spu_address_class_type_flags_to_name); | |
2699 | set_gdbarch_address_class_name_to_type_flags | |
2700 | (gdbarch, spu_address_class_name_to_type_flags); | |
2701 | ||
36acd84e | 2702 | |
771b4502 | 2703 | /* Inferior function calls. */ |
7b3dc0b7 UW |
2704 | set_gdbarch_call_dummy_location (gdbarch, ON_STACK); |
2705 | set_gdbarch_frame_align (gdbarch, spu_frame_align); | |
5141027d | 2706 | set_gdbarch_frame_red_zone_size (gdbarch, 2000); |
87805e63 | 2707 | set_gdbarch_push_dummy_code (gdbarch, spu_push_dummy_code); |
771b4502 | 2708 | set_gdbarch_push_dummy_call (gdbarch, spu_push_dummy_call); |
8d998b8f | 2709 | set_gdbarch_dummy_id (gdbarch, spu_dummy_id); |
771b4502 UW |
2710 | set_gdbarch_return_value (gdbarch, spu_return_value); |
2711 | ||
2712 | /* Frame handling. */ | |
2713 | set_gdbarch_inner_than (gdbarch, core_addr_lessthan); | |
8d998b8f | 2714 | frame_unwind_append_unwinder (gdbarch, &spu_frame_unwind); |
771b4502 UW |
2715 | frame_base_set_default (gdbarch, &spu_frame_base); |
2716 | set_gdbarch_unwind_pc (gdbarch, spu_unwind_pc); | |
2717 | set_gdbarch_unwind_sp (gdbarch, spu_unwind_sp); | |
2718 | set_gdbarch_virtual_frame_pointer (gdbarch, spu_virtual_frame_pointer); | |
2719 | set_gdbarch_frame_args_skip (gdbarch, 0); | |
2720 | set_gdbarch_skip_prologue (gdbarch, spu_skip_prologue); | |
fe5febed | 2721 | set_gdbarch_in_function_epilogue_p (gdbarch, spu_in_function_epilogue_p); |
771b4502 | 2722 | |
cc5f0d61 UW |
2723 | /* Cell/B.E. cross-architecture unwinder support. */ |
2724 | frame_unwind_prepend_unwinder (gdbarch, &spu2ppu_unwind); | |
2725 | ||
771b4502 UW |
2726 | /* Breakpoints. */ |
2727 | set_gdbarch_decr_pc_after_break (gdbarch, 4); | |
2728 | set_gdbarch_breakpoint_from_pc (gdbarch, spu_breakpoint_from_pc); | |
d03285ec | 2729 | set_gdbarch_memory_remove_breakpoint (gdbarch, spu_memory_remove_breakpoint); |
771b4502 UW |
2730 | set_gdbarch_cannot_step_breakpoint (gdbarch, 1); |
2731 | set_gdbarch_software_single_step (gdbarch, spu_software_single_step); | |
6e3f70d7 | 2732 | set_gdbarch_get_longjmp_target (gdbarch, spu_get_longjmp_target); |
771b4502 | 2733 | |
dcf52cd8 UW |
2734 | /* Overlays. */ |
2735 | set_gdbarch_overlay_update (gdbarch, spu_overlay_update); | |
2736 | ||
771b4502 UW |
2737 | return gdbarch; |
2738 | } | |
2739 | ||
63807e1d PA |
2740 | /* Provide a prototype to silence -Wmissing-prototypes. */ |
2741 | extern initialize_file_ftype _initialize_spu_tdep; | |
2742 | ||
771b4502 UW |
2743 | void |
2744 | _initialize_spu_tdep (void) | |
2745 | { | |
2746 | register_gdbarch_init (bfd_arch_spu, spu_gdbarch_init); | |
f2d43c2c | 2747 | |
dcf52cd8 UW |
2748 | /* Add ourselves to objfile event chain. */ |
2749 | observer_attach_new_objfile (spu_overlay_new_objfile); | |
2750 | spu_overlay_data = register_objfile_data (); | |
23d964e7 | 2751 | |
3285f3fe UW |
2752 | /* Install spu stop-on-load handler. */ |
2753 | observer_attach_new_objfile (spu_catch_start); | |
2754 | ||
ff1a52c6 UW |
2755 | /* Add ourselves to normal_stop event chain. */ |
2756 | observer_attach_normal_stop (spu_attach_normal_stop); | |
2757 | ||
3285f3fe UW |
2758 | /* Add root prefix command for all "set spu"/"show spu" commands. */ |
2759 | add_prefix_cmd ("spu", no_class, set_spu_command, | |
2760 | _("Various SPU specific commands."), | |
2761 | &setspucmdlist, "set spu ", 0, &setlist); | |
2762 | add_prefix_cmd ("spu", no_class, show_spu_command, | |
2763 | _("Various SPU specific commands."), | |
2764 | &showspucmdlist, "show spu ", 0, &showlist); | |
2765 | ||
2766 | /* Toggle whether or not to add a temporary breakpoint at the "main" | |
2767 | function of new SPE contexts. */ | |
2768 | add_setshow_boolean_cmd ("stop-on-load", class_support, | |
2769 | &spu_stop_on_load_p, _("\ | |
2770 | Set whether to stop for new SPE threads."), | |
2771 | _("\ | |
2772 | Show whether to stop for new SPE threads."), | |
2773 | _("\ | |
2774 | Use \"on\" to give control to the user when a new SPE thread\n\ | |
2775 | enters its \"main\" function.\n\ | |
2776 | Use \"off\" to disable stopping for new SPE threads."), | |
2777 | NULL, | |
2778 | show_spu_stop_on_load, | |
2779 | &setspucmdlist, &showspucmdlist); | |
2780 | ||
ff1a52c6 UW |
2781 | /* Toggle whether or not to automatically flush the software-managed |
2782 | cache whenever SPE execution stops. */ | |
2783 | add_setshow_boolean_cmd ("auto-flush-cache", class_support, | |
2784 | &spu_auto_flush_cache_p, _("\ | |
2785 | Set whether to automatically flush the software-managed cache."), | |
2786 | _("\ | |
2787 | Show whether to automatically flush the software-managed cache."), | |
2788 | _("\ | |
2789 | Use \"on\" to automatically flush the software-managed cache\n\ | |
2790 | whenever SPE execution stops.\n\ | |
2791 | Use \"off\" to never automatically flush the software-managed cache."), | |
2792 | NULL, | |
2793 | show_spu_auto_flush_cache, | |
2794 | &setspucmdlist, &showspucmdlist); | |
2795 | ||
23d964e7 UW |
2796 | /* Add root prefix command for all "info spu" commands. */ |
2797 | add_prefix_cmd ("spu", class_info, info_spu_command, | |
2798 | _("Various SPU specific commands."), | |
2799 | &infospucmdlist, "info spu ", 0, &infolist); | |
2800 | ||
2801 | /* Add various "info spu" commands. */ | |
2802 | add_cmd ("event", class_info, info_spu_event_command, | |
2803 | _("Display SPU event facility status.\n"), | |
2804 | &infospucmdlist); | |
2805 | add_cmd ("signal", class_info, info_spu_signal_command, | |
2806 | _("Display SPU signal notification facility status.\n"), | |
2807 | &infospucmdlist); | |
2808 | add_cmd ("mailbox", class_info, info_spu_mailbox_command, | |
2809 | _("Display SPU mailbox facility status.\n"), | |
2810 | &infospucmdlist); | |
2811 | add_cmd ("dma", class_info, info_spu_dma_command, | |
2812 | _("Display MFC DMA status.\n"), | |
2813 | &infospucmdlist); | |
2814 | add_cmd ("proxydma", class_info, info_spu_proxydma_command, | |
2815 | _("Display MFC Proxy-DMA status.\n"), | |
2816 | &infospucmdlist); | |
771b4502 | 2817 | } |