Rebase patch #7
[deliverable/binutils-gdb.git] / gdb / ft32-tdep.c
CommitLineData
49d45b20
JB
1/* Target-dependent code for FT32.
2
3 Copyright (C) 2009-2015 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#include "defs.h"
21#include "frame.h"
22#include "frame-unwind.h"
23#include "frame-base.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "gdbcmd.h"
27#include "gdbcore.h"
28#include "value.h"
29#include "inferior.h"
30#include "symfile.h"
31#include "objfiles.h"
32#include "osabi.h"
33#include "language.h"
34#include "arch-utils.h"
35#include "regcache.h"
36#include "trad-frame.h"
37#include "dis-asm.h"
38#include "record.h"
39
86feccb9 40#include "opcode/ft32.h"
41
49d45b20
JB
42#include "ft32-tdep.h"
43#include "gdb/sim-ft32.h"
44
45#define RAM_BIAS 0x800000 /* Bias added to RAM addresses. */
46
47/* Local functions. */
48
49extern void _initialize_ft32_tdep (void);
50
51/* Use an invalid address -1 as 'not available' marker. */
52enum { REG_UNAVAIL = (CORE_ADDR) (-1) };
53
54struct ft32_frame_cache
55{
56 /* Base address of the frame */
57 CORE_ADDR base;
58 /* Function this frame belongs to */
59 CORE_ADDR pc;
60 /* Total size of this frame */
61 LONGEST framesize;
62 /* Saved registers in this frame */
63 CORE_ADDR saved_regs[FT32_NUM_REGS];
64 /* Saved SP in this frame */
65 CORE_ADDR saved_sp;
66 /* Has the new frame been LINKed. */
67 bfd_boolean established;
68};
69
70/* Implement the "frame_align" gdbarch method. */
71
72static CORE_ADDR
73ft32_frame_align (struct gdbarch *gdbarch, CORE_ADDR sp)
74{
75 /* Align to the size of an instruction (so that they can safely be
76 pushed onto the stack. */
77 return sp & ~1;
78}
79
80/* Implement the "breakpoint_from_pc" gdbarch method. */
81
82static const unsigned char *
83ft32_breakpoint_from_pc (struct gdbarch *gdbarch,
84 CORE_ADDR *pcptr, int *lenptr)
85{
86 static const gdb_byte breakpoint[] = { 0x02, 0x00, 0x34, 0x00 };
87
88 *lenptr = sizeof (breakpoint);
89 return breakpoint;
90}
91
92/* FT32 register names. */
93
94static const char *const ft32_register_names[] =
95{
96 "fp", "sp",
97 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
98 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
99 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
100 "r24", "r25", "r26", "r27", "r28", "cc",
101 "pc"
102};
103
104/* Implement the "register_name" gdbarch method. */
105
106static const char *
107ft32_register_name (struct gdbarch *gdbarch, int reg_nr)
108{
109 if (reg_nr < 0)
110 return NULL;
111 if (reg_nr >= FT32_NUM_REGS)
112 return NULL;
113 return ft32_register_names[reg_nr];
114}
115
116/* Implement the "register_type" gdbarch method. */
117
118static struct type *
119ft32_register_type (struct gdbarch *gdbarch, int reg_nr)
120{
121 if (reg_nr == FT32_PC_REGNUM)
623fb775 122 return gdbarch_tdep (gdbarch)->pc_type;
49d45b20
JB
123 else if (reg_nr == FT32_SP_REGNUM || reg_nr == FT32_FP_REGNUM)
124 return builtin_type (gdbarch)->builtin_data_ptr;
125 else
126 return builtin_type (gdbarch)->builtin_int32;
127}
128
129/* Write into appropriate registers a function return value
130 of type TYPE, given in virtual format. */
131
132static void
133ft32_store_return_value (struct type *type, struct regcache *regcache,
134 const gdb_byte *valbuf)
135{
136 struct gdbarch *gdbarch = get_regcache_arch (regcache);
137 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
138 CORE_ADDR regval;
139 int len = TYPE_LENGTH (type);
140
141 /* Things always get returned in RET1_REGNUM, RET2_REGNUM. */
142 regval = extract_unsigned_integer (valbuf, len > 4 ? 4 : len, byte_order);
143 regcache_cooked_write_unsigned (regcache, FT32_R0_REGNUM, regval);
144 if (len > 4)
145 {
146 regval = extract_unsigned_integer (valbuf + 4,
147 len - 4, byte_order);
148 regcache_cooked_write_unsigned (regcache, FT32_R1_REGNUM, regval);
149 }
150}
151
152/* Decode the instructions within the given address range. Decide
153 when we must have reached the end of the function prologue. If a
154 frame_info pointer is provided, fill in its saved_regs etc.
155
156 Returns the address of the first instruction after the prologue. */
157
49d45b20
JB
158static CORE_ADDR
159ft32_analyze_prologue (CORE_ADDR start_addr, CORE_ADDR end_addr,
160 struct ft32_frame_cache *cache,
161 struct gdbarch *gdbarch)
162{
163 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
164 CORE_ADDR next_addr;
165 ULONGEST inst, inst2;
166 LONGEST offset;
4f714dd4 167 int regnum, pushreg;
168 struct bound_minimal_symbol msymbol;
169 unsigned prologs[32];
49d45b20
JB
170
171 cache->saved_regs[FT32_PC_REGNUM] = 0;
172 cache->framesize = 0;
173
4f714dd4 174 for (regnum = 0; regnum < 32; regnum++)
175 {
176 char prolog_symbol[32];
177
178 snprintf (prolog_symbol, sizeof (prolog_symbol), "__prolog_$r%02d",
179 regnum);
180 msymbol = lookup_minimal_symbol (prolog_symbol, NULL, NULL);
181 if (msymbol.minsym)
182 prologs[regnum] = BMSYMBOL_VALUE_ADDRESS (msymbol);
183 else
184 prologs[regnum] = 0;
185 }
186
49d45b20 187 if (start_addr >= end_addr)
4f714dd4 188 return end_addr;
49d45b20
JB
189
190 cache->established = 0;
4f714dd4 191 for (next_addr = start_addr; next_addr < end_addr;)
49d45b20
JB
192 {
193 inst = read_memory_unsigned_integer (next_addr, 4, byte_order);
194
86feccb9 195 if (FT32_IS_PUSH (inst))
49d45b20 196 {
4f714dd4 197 pushreg = FT32_PUSH_REG (inst);
49d45b20 198 cache->framesize += 4;
4f714dd4 199 cache->saved_regs[FT32_R0_REGNUM + pushreg] = cache->framesize;
49d45b20
JB
200 next_addr += 4;
201 }
4f714dd4 202 else if (FT32_IS_CALL (inst))
203 {
204 for (regnum = 0; regnum < 32; regnum++)
205 {
206 if ((4 * (inst & 0x3ffff)) == prologs[regnum])
207 {
208 for (pushreg = 13; pushreg <= regnum; pushreg++)
209 {
210 cache->framesize += 4;
211 cache->saved_regs[FT32_R0_REGNUM + pushreg] =
212 cache->framesize;
213 }
214 next_addr += 4;
215 }
216 }
217 break;
218 }
49d45b20
JB
219 else
220 break;
221 }
222 for (regnum = FT32_R0_REGNUM; regnum < FT32_PC_REGNUM; regnum++)
223 {
224 if (cache->saved_regs[regnum] != REG_UNAVAIL)
4f714dd4 225 cache->saved_regs[regnum] =
226 cache->framesize - cache->saved_regs[regnum];
49d45b20
JB
227 }
228 cache->saved_regs[FT32_PC_REGNUM] = cache->framesize;
229
230 /* It is a LINK? */
231 if (next_addr < end_addr)
232 {
233 inst = read_memory_unsigned_integer (next_addr, 4, byte_order);
86feccb9 234 if (FT32_IS_LINK (inst))
49d45b20
JB
235 {
236 cache->established = 1;
237 for (regnum = FT32_R0_REGNUM; regnum < FT32_PC_REGNUM; regnum++)
238 {
239 if (cache->saved_regs[regnum] != REG_UNAVAIL)
240 cache->saved_regs[regnum] += 4;
241 }
242 cache->saved_regs[FT32_PC_REGNUM] = cache->framesize + 4;
243 cache->saved_regs[FT32_FP_REGNUM] = 0;
86feccb9 244 cache->framesize += FT32_LINK_SIZE (inst);
49d45b20
JB
245 next_addr += 4;
246 }
247 }
248
249 return next_addr;
250}
251
252/* Find the end of function prologue. */
253
254static CORE_ADDR
255ft32_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
256{
257 CORE_ADDR func_addr = 0, func_end = 0;
258 const char *func_name;
259
260 /* See if we can determine the end of the prologue via the symbol table.
261 If so, then return either PC, or the PC after the prologue, whichever
262 is greater. */
263 if (find_pc_partial_function (pc, &func_name, &func_addr, &func_end))
264 {
265 CORE_ADDR post_prologue_pc
266 = skip_prologue_using_sal (gdbarch, func_addr);
267 if (post_prologue_pc != 0)
268 return max (pc, post_prologue_pc);
269 else
270 {
271 /* Can't determine prologue from the symbol table, need to examine
272 instructions. */
273 struct symtab_and_line sal;
274 struct symbol *sym;
275 struct ft32_frame_cache cache;
276 CORE_ADDR plg_end;
277
278 memset (&cache, 0, sizeof cache);
279
280 plg_end = ft32_analyze_prologue (func_addr,
281 func_end, &cache, gdbarch);
282 /* Found a function. */
835a09d9 283 sym = lookup_symbol (func_name, NULL, VAR_DOMAIN, NULL).symbol;
49d45b20
JB
284 /* Don't use line number debug info for assembly source files. */
285 if ((sym != NULL) && SYMBOL_LANGUAGE (sym) != language_asm)
286 {
287 sal = find_pc_line (func_addr, 0);
288 if (sal.end && sal.end < func_end)
289 {
290 /* Found a line number, use it as end of prologue. */
291 return sal.end;
292 }
293 }
294 /* No useable line symbol. Use result of prologue parsing method. */
295 return plg_end;
296 }
297 }
298
299 /* No function symbol -- just return the PC. */
300 return pc;
301}
302
623fb775 303/* Implementation of `pointer_to_address' gdbarch method.
304
305 On FT32 address space zero is RAM, address space 1 is flash.
306 RAM appears at address RAM_BIAS, flash at address 0. */
307
308static CORE_ADDR
309ft32_pointer_to_address (struct gdbarch *gdbarch,
310 struct type *type, const gdb_byte *buf)
311{
312 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
313 CORE_ADDR addr
314 = extract_unsigned_integer (buf, TYPE_LENGTH (type), byte_order);
315
316 if (TYPE_ADDRESS_CLASS_1 (type))
317 return addr;
318 else
319 return addr | RAM_BIAS;
320}
321
322/* Implementation of `address_class_type_flags' gdbarch method.
323
324 This method maps DW_AT_address_class attributes to a
325 type_instance_flag_value. */
326
327static int
328ft32_address_class_type_flags (int byte_size, int dwarf2_addr_class)
329{
330 /* The value 1 of the DW_AT_address_class attribute corresponds to the
331 __flash__ qualifier, meaning pointer to data in FT32 program memory.
332 */
333 if (dwarf2_addr_class == 1)
334 return TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
335 return 0;
336}
337
338/* Implementation of `address_class_type_flags_to_name' gdbarch method.
339
340 Convert a type_instance_flag_value to an address space qualifier. */
341
342static const char*
343ft32_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
344{
345 if (type_flags & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1)
346 return "flash";
347 else
348 return NULL;
349}
350
351/* Implementation of `address_class_name_to_type_flags' gdbarch method.
352
353 Convert an address space qualifier to a type_instance_flag_value. */
354
355static int
356ft32_address_class_name_to_type_flags (struct gdbarch *gdbarch,
357 const char* name,
358 int *type_flags_ptr)
359{
360 if (strcmp (name, "flash") == 0)
361 {
362 *type_flags_ptr = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
363 return 1;
364 }
365 else
366 return 0;
367}
368
369
49d45b20
JB
370/* Implement the "read_pc" gdbarch method. */
371
372static CORE_ADDR
373ft32_read_pc (struct regcache *regcache)
374{
375 ULONGEST pc;
376
377 regcache_cooked_read_unsigned (regcache, FT32_PC_REGNUM, &pc);
378 return pc;
379}
380
381/* Implement the "write_pc" gdbarch method. */
382
383static void
384ft32_write_pc (struct regcache *regcache, CORE_ADDR val)
385{
386 regcache_cooked_write_unsigned (regcache, FT32_PC_REGNUM, val);
387}
388
389/* Implement the "unwind_sp" gdbarch method. */
390
391static CORE_ADDR
392ft32_unwind_sp (struct gdbarch *gdbarch, struct frame_info *next_frame)
393{
394 return frame_unwind_register_unsigned (next_frame, FT32_SP_REGNUM);
395}
396
397/* Given a return value in `regbuf' with a type `valtype',
398 extract and copy its value into `valbuf'. */
399
400static void
401ft32_extract_return_value (struct type *type, struct regcache *regcache,
402 gdb_byte *dst)
403{
404 struct gdbarch *gdbarch = get_regcache_arch (regcache);
405 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
406 bfd_byte *valbuf = dst;
407 int len = TYPE_LENGTH (type);
408 ULONGEST tmp;
409
410 /* By using store_unsigned_integer we avoid having to do
411 anything special for small big-endian values. */
412 regcache_cooked_read_unsigned (regcache, FT32_R0_REGNUM, &tmp);
413 store_unsigned_integer (valbuf, (len > 4 ? len - 4 : len), byte_order, tmp);
414
415 /* Ignore return values more than 8 bytes in size because the ft32
416 returns anything more than 8 bytes in the stack. */
417 if (len > 4)
418 {
419 regcache_cooked_read_unsigned (regcache, FT32_R1_REGNUM, &tmp);
420 store_unsigned_integer (valbuf + len - 4, 4, byte_order, tmp);
421 }
422}
423
424/* Implement the "return_value" gdbarch method. */
425
426static enum return_value_convention
427ft32_return_value (struct gdbarch *gdbarch, struct value *function,
428 struct type *valtype, struct regcache *regcache,
429 gdb_byte *readbuf, const gdb_byte *writebuf)
430{
431 if (TYPE_LENGTH (valtype) > 8)
432 return RETURN_VALUE_STRUCT_CONVENTION;
433 else
434 {
435 if (readbuf != NULL)
436 ft32_extract_return_value (valtype, regcache, readbuf);
437 if (writebuf != NULL)
438 ft32_store_return_value (valtype, regcache, writebuf);
439 return RETURN_VALUE_REGISTER_CONVENTION;
440 }
441}
442
443/* Allocate and initialize a ft32_frame_cache object. */
444
445static struct ft32_frame_cache *
446ft32_alloc_frame_cache (void)
447{
448 struct ft32_frame_cache *cache;
449 int i;
450
451 cache = FRAME_OBSTACK_ZALLOC (struct ft32_frame_cache);
452
453 for (i = 0; i < FT32_NUM_REGS; ++i)
454 cache->saved_regs[i] = REG_UNAVAIL;
455
456 return cache;
457}
458
459/* Populate a ft32_frame_cache object for this_frame. */
460
461static struct ft32_frame_cache *
462ft32_frame_cache (struct frame_info *this_frame, void **this_cache)
463{
464 struct ft32_frame_cache *cache;
465 CORE_ADDR current_pc;
466 int i;
467
468 if (*this_cache)
9a3c8263 469 return (struct ft32_frame_cache *) *this_cache;
49d45b20
JB
470
471 cache = ft32_alloc_frame_cache ();
472 *this_cache = cache;
473
474 cache->base = get_frame_register_unsigned (this_frame, FT32_FP_REGNUM);
475 if (cache->base == 0)
476 return cache;
477
478 cache->pc = get_frame_func (this_frame);
479 current_pc = get_frame_pc (this_frame);
480 if (cache->pc)
481 {
482 struct gdbarch *gdbarch = get_frame_arch (this_frame);
483
484 ft32_analyze_prologue (cache->pc, current_pc, cache, gdbarch);
485 if (!cache->established)
486 cache->base = get_frame_register_unsigned (this_frame, FT32_SP_REGNUM);
487 }
488
489 cache->saved_sp = cache->base - 4;
490
491 for (i = 0; i < FT32_NUM_REGS; ++i)
492 if (cache->saved_regs[i] != REG_UNAVAIL)
493 cache->saved_regs[i] = cache->base + cache->saved_regs[i];
494
495 return cache;
496}
497
498/* Implement the "unwind_pc" gdbarch method. */
499
500static CORE_ADDR
501ft32_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
502{
503 return frame_unwind_register_unsigned (next_frame, FT32_PC_REGNUM);
504}
505
506/* Given a GDB frame, determine the address of the calling function's
507 frame. This will be used to create a new GDB frame struct. */
508
509static void
510ft32_frame_this_id (struct frame_info *this_frame,
511 void **this_prologue_cache, struct frame_id *this_id)
512{
513 struct ft32_frame_cache *cache = ft32_frame_cache (this_frame,
514 this_prologue_cache);
515
516 /* This marks the outermost frame. */
517 if (cache->base == 0)
518 return;
519
520 *this_id = frame_id_build (cache->saved_sp, cache->pc);
521}
522
523/* Get the value of register regnum in the previous stack frame. */
524
525static struct value *
526ft32_frame_prev_register (struct frame_info *this_frame,
527 void **this_prologue_cache, int regnum)
528{
529 struct ft32_frame_cache *cache = ft32_frame_cache (this_frame,
530 this_prologue_cache);
531
532 gdb_assert (regnum >= 0);
533
534 if (regnum == FT32_SP_REGNUM && cache->saved_sp)
535 return frame_unwind_got_constant (this_frame, regnum, cache->saved_sp);
536
537 if (regnum < FT32_NUM_REGS && cache->saved_regs[regnum] != REG_UNAVAIL)
538 return frame_unwind_got_memory (this_frame, regnum,
539 RAM_BIAS | cache->saved_regs[regnum]);
540
541 return frame_unwind_got_register (this_frame, regnum, regnum);
542}
543
544static const struct frame_unwind ft32_frame_unwind =
545{
546 NORMAL_FRAME,
547 default_frame_unwind_stop_reason,
548 ft32_frame_this_id,
549 ft32_frame_prev_register,
550 NULL,
551 default_frame_sniffer
552};
553
554/* Return the base address of this_frame. */
555
556static CORE_ADDR
557ft32_frame_base_address (struct frame_info *this_frame, void **this_cache)
558{
559 struct ft32_frame_cache *cache = ft32_frame_cache (this_frame,
560 this_cache);
561
562 return cache->base;
563}
564
565static const struct frame_base ft32_frame_base =
566{
567 &ft32_frame_unwind,
568 ft32_frame_base_address,
569 ft32_frame_base_address,
570 ft32_frame_base_address
571};
572
573static struct frame_id
574ft32_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
575{
576 CORE_ADDR sp = get_frame_register_unsigned (this_frame, FT32_SP_REGNUM);
577
578 return frame_id_build (sp, get_frame_pc (this_frame));
579}
580
581/* Allocate and initialize the ft32 gdbarch object. */
582
583static struct gdbarch *
584ft32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
585{
586 struct gdbarch *gdbarch;
587 struct gdbarch_tdep *tdep;
623fb775 588 struct type *void_type;
589 struct type *func_void_type;
49d45b20
JB
590
591 /* If there is already a candidate, use it. */
592 arches = gdbarch_list_lookup_by_info (arches, &info);
593 if (arches != NULL)
594 return arches->gdbarch;
595
596 /* Allocate space for the new architecture. */
597 tdep = XNEW (struct gdbarch_tdep);
598 gdbarch = gdbarch_alloc (&info, tdep);
599
623fb775 600 /* Create a type for PC. We can't use builtin types here, as they may not
601 be defined. */
602 void_type = arch_type (gdbarch, TYPE_CODE_VOID, 1, "void");
603 func_void_type = make_function_type (void_type, NULL);
604 tdep->pc_type = arch_type (gdbarch, TYPE_CODE_PTR, 4, NULL);
605 TYPE_TARGET_TYPE (tdep->pc_type) = func_void_type;
606 TYPE_UNSIGNED (tdep->pc_type) = 1;
607 TYPE_INSTANCE_FLAGS (tdep->pc_type) |= TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
608
49d45b20
JB
609 set_gdbarch_read_pc (gdbarch, ft32_read_pc);
610 set_gdbarch_write_pc (gdbarch, ft32_write_pc);
611 set_gdbarch_unwind_sp (gdbarch, ft32_unwind_sp);
612
613 set_gdbarch_num_regs (gdbarch, FT32_NUM_REGS);
614 set_gdbarch_sp_regnum (gdbarch, FT32_SP_REGNUM);
615 set_gdbarch_pc_regnum (gdbarch, FT32_PC_REGNUM);
616 set_gdbarch_register_name (gdbarch, ft32_register_name);
617 set_gdbarch_register_type (gdbarch, ft32_register_type);
618
619 set_gdbarch_return_value (gdbarch, ft32_return_value);
620
623fb775 621 set_gdbarch_pointer_to_address (gdbarch, ft32_pointer_to_address);
622
49d45b20
JB
623 set_gdbarch_skip_prologue (gdbarch, ft32_skip_prologue);
624 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
625 set_gdbarch_breakpoint_from_pc (gdbarch, ft32_breakpoint_from_pc);
626 set_gdbarch_frame_align (gdbarch, ft32_frame_align);
627
628 frame_base_set_default (gdbarch, &ft32_frame_base);
629
630 /* Methods for saving / extracting a dummy frame's ID. The ID's
631 stack address must match the SP value returned by
632 PUSH_DUMMY_CALL, and saved by generic_save_dummy_frame_tos. */
633 set_gdbarch_dummy_id (gdbarch, ft32_dummy_id);
634
635 set_gdbarch_unwind_pc (gdbarch, ft32_unwind_pc);
636
637 set_gdbarch_print_insn (gdbarch, print_insn_ft32);
638
639 /* Hook in ABI-specific overrides, if they have been registered. */
640 gdbarch_init_osabi (info, gdbarch);
641
642 /* Hook in the default unwinders. */
643 frame_unwind_append_unwinder (gdbarch, &ft32_frame_unwind);
644
645 /* Support simple overlay manager. */
646 set_gdbarch_overlay_update (gdbarch, simple_overlay_update);
647
623fb775 648 set_gdbarch_address_class_type_flags (gdbarch, ft32_address_class_type_flags);
649 set_gdbarch_address_class_name_to_type_flags
650 (gdbarch, ft32_address_class_name_to_type_flags);
651 set_gdbarch_address_class_type_flags_to_name
652 (gdbarch, ft32_address_class_type_flags_to_name);
653
49d45b20
JB
654 return gdbarch;
655}
656
657/* Register this machine's init routine. */
658
659void
660_initialize_ft32_tdep (void)
661{
662 register_gdbarch_init (bfd_arch_ft32, ft32_gdbarch_init);
663}
This page took 0.087316 seconds and 4 git commands to generate.