📄 hppa.c
字号:
return &new->symbol;}void DEFUN(hppa_print_symbol,(ignore_abfd, afile, symbol, how), bfd *ignore_abfd AND PTR afile AND asymbol *symbol AND bfd_print_symbol_type how){ fprintf (stderr, "hppa_print_symbol unimplemented\n"); fflush (stderr); abort ();}booleanDEFUN(hppa_new_section_hook,(abfd, newsect), bfd *abfd AND asection *newsect){ /* align to double at least */ newsect->alignment_power = 3; if (bfd_get_format (abfd) == bfd_object) { if (obj_textsec(abfd) == NULL && !strcmp(newsect->name, ".text")) { obj_textsec(abfd)= newsect; return true; } if (obj_datasec(abfd) == NULL && !strcmp(newsect->name, ".data")) { obj_datasec(abfd) = newsect; return true; } if (obj_bsssec(abfd) == NULL && !strcmp(newsect->name, ".bss")) { obj_bsssec(abfd) = newsect; return true; } } /* We allow more than three sections internally */ return true;}booleanDEFUN(hppa_set_section_contents,(abfd, section, location, offset, count), bfd *abfd AND sec_ptr section AND PTR location AND file_ptr offset AND bfd_size_type count){ fprintf (stderr, "hppa_set_section_contents unimplimented\n"); fflush (stderr); abort(); return false;}booleanDEFUN(hppa_set_arch_mach,(abfd, arch, machine), bfd *abfd AND enum bfd_architecture arch AND unsigned long machine){ fprintf (stderr, "hppa_set_arch_mach unimplemented\n"); fflush (stderr); /* Allow any architecture to be supported by the hppa backend */ return bfd_default_set_arch_mach(abfd, arch, machine);}static booleanDEFUN (hppa_find_nearest_line,(abfd, section, symbols, offset, filename_ptr, functionname_ptr, line_ptr), bfd *abfd AND asection *section AND asymbol **symbols AND bfd_vma offset AND CONST char **filename_ptr AND CONST char **functionname_ptr AND unsigned int *line_ptr){ fprintf (stderr, "hppa_find_nearest_line unimplemented\n"); fflush (stderr); abort (); return (false);}static intDEFUN (hppa_sizeof_headers, (abfd, reloc), bfd *abfd AND boolean reloc){ fprintf (stderr, "hppa_sizeof_headers unimplemented\n"); fflush (stderr); abort (); return (0);}#ifdef hpux#define hppa_core_file_p _bfd_dummy_target#elsebfd_target *hppa_core_file_p (abfd) bfd *abfd;{ int val; struct hpuxuser u; unsigned int reg_offset, fp_reg_offset; /* This struct is just for allocating two things with one zalloc, so they will be freed together, without violating alignment constraints. */ struct core_user { struct hppa_core_struct coredata; struct hpuxuser u; } *rawptr; val = bfd_read ((void *)&u, 1, sizeof u, abfd); if (val != sizeof u) return 0; /* Too small to be a core file */ /* Sanity check perhaps??? */ if (u.u_dsize > 0x1000000) /* Remember, it's in pages... */ return 0; if (u.u_ssize > 0x1000000) return 0; /* Check that the size claimed is no greater than the file size. FIXME. */ /* OK, we believe you. You're a core file (sure, sure). */ /* Allocate both the upage and the struct core_data at once, so a single free() will free them both. */ rawptr = (struct core_user *)bfd_zalloc (abfd, sizeof (struct core_user)); if (rawptr == NULL) { bfd_error = no_memory; return 0; } abfd->tdata.hppa_core_data = &rawptr->coredata; core_upage (abfd) = &rawptr->u; *core_upage (abfd) = u; /* Save that upage! */ /* Create the sections. This is raunchy, but bfd_close wants to free them separately. */ core_stacksec (abfd) = (asection *) zalloc (sizeof (asection)); if (core_stacksec (abfd) == NULL) {loser: bfd_error = no_memory; free ((void *)rawptr); return 0; } core_datasec (abfd) = (asection *) zalloc (sizeof (asection)); if (core_datasec (abfd) == NULL) {loser1: free ((void *)core_stacksec (abfd)); goto loser; } core_regsec (abfd) = (asection *) zalloc (sizeof (asection)); if (core_regsec (abfd) == NULL) {loser2: free ((void *)core_datasec (abfd)); goto loser1; } core_stacksec (abfd)->name = ".stack"; core_datasec (abfd)->name = ".data"; core_regsec (abfd)->name = ".reg"; core_stacksec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS; core_datasec (abfd)->flags = SEC_ALLOC + SEC_LOAD + SEC_HAS_CONTENTS; core_regsec (abfd)->flags = SEC_ALLOC + SEC_HAS_CONTENTS; core_datasec (abfd)->_raw_size = NBPG * u.u_dsize; core_stacksec (abfd)->_raw_size = NBPG * u.u_ssize; core_regsec (abfd)->_raw_size = NBPG * UPAGES; /* Larger than sizeof struct u */ core_datasec (abfd)->vma = u.hpuxu_exdata.somexec.a_Dmem; core_stacksec (abfd)->vma = USRSTACK; /* from sys/param */ /* This is tricky. As the "register section", we give them the entire upage and stack. u.u_ar0 points to where "register 0" is stored. There are two tricks with this, though. One is that the rest of the registers might be at positive or negative (or both) displacements from *u_ar0. The other is that u_ar0 is sometimes an absolute address in kernel memory, and on other systems it is an offset from the beginning of the `struct user'. As a practical matter, we don't know where the registers actually are, so we have to pass the whole area to GDB. We encode the value of u_ar0 by setting the .regs section up so that its virtual memory address 0 is at the place pointed to by u_ar0 (by setting the vma of the start of the section to -u_ar0). GDB uses this info to locate the regs, using minor trickery to get around the offset-or-absolute-addr problem. */ core_regsec (abfd)->vma = 0 - NBPG * USIZE; /* -u_ar0 */ core_datasec (abfd)->filepos = NBPG * UPAGES; core_stacksec (abfd)->filepos = (NBPG * UPAGES) + NBPG * u.u_dsize; core_regsec (abfd)->filepos = 0; /* Register segment is the upage */ /* Align to word at least */ core_stacksec (abfd)->alignment_power = 2; core_datasec (abfd)->alignment_power = 2; core_regsec (abfd)->alignment_power = 2; abfd->sections = core_stacksec (abfd); core_stacksec (abfd)->next = core_datasec (abfd); core_datasec (abfd)->next = core_regsec (abfd); abfd->section_count = 3; return abfd->xvec;}#endif#ifdef hpux#define hppa_core_file_failing_command (char *(*)())(bfd_nullvoidptr)#elsechar *hppa_core_file_failing_command (abfd) bfd *abfd;{#ifndef NO_CORE_COMMAND if (*core_upage (abfd)->u_comm) return core_upage (abfd)->u_comm; else#endif return 0;}#endif/* ARGSUSED */inthppa_core_file_failing_signal (ignore_abfd) bfd *ignore_abfd;{ return -1; /* FIXME, where is it? */}/* ARGSUSED */booleanhppa_core_file_matches_executable_p (core_bfd, exec_bfd) bfd *core_bfd, *exec_bfd;{ return true; /* FIXME, We have no way of telling at this point */}#define hppa_bfd_debug_info_start bfd_void#define hppa_bfd_debug_info_end bfd_void#define hppa_bfd_debug_info_accumulate (PROTO(void,(*),(bfd*, struct sec *))) bfd_void#define hppa_openr_next_archived_file bfd_generic_openr_next_archived_file#define hppa_generic_stat_arch_elt bfd_generic_stat_arch_elt#define hppa_slurp_armap bfd_false#define hppa_slurp_extended_name_table _bfd_slurp_extended_name_table#define hppa_truncate_arname (void (*)())bfd_nullvoidptr#define hppa_write_armap 0#define hppa_get_lineno (struct lineno_cache_entry *(*)())bfd_nullvoidptr#define hppa_close_and_cleanup bfd_generic_close_and_cleanup#define hppa_get_section_contents bfd_generic_get_section_contents#define hppa_bfd_get_relocated_section_contents \ bfd_generic_get_relocated_section_contents#define hppa_bfd_relax_section bfd_generic_relax_section/*SUPPRESS 460 */bfd_target hppa_vec ={ "hppa", /* name */ bfd_target_hppa_flavour, true, /* target byte order */ true, /* target headers byte order */ (HAS_RELOC | EXEC_P | /* object flags */ HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED), (SEC_CODE|SEC_DATA|SEC_ROM|SEC_HAS_CONTENTS |SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */ ' ', /* ar_pad_char */ 16, /* ar_max_namelen */ 3, /* minimum alignment */_do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* data */_do_getb64, _do_putb64, _do_getb32, _do_putb32, _do_getb16, _do_putb16, /* hdrs */ { _bfd_dummy_target, hppa_object_p, /* bfd_check_format */ bfd_generic_archive_p, hppa_core_file_p, }, { bfd_false, hppa_mkobject, _bfd_generic_mkarchive, bfd_false }, { bfd_false, hppa_write_object_contents, _bfd_write_archive_contents, bfd_false, },#undef hppa JUMP_TABLE(hppa)};#else /* notdef hp9000s800 *//* Prevent "empty translation unit" warnings from the idiots at X3J11. */static char ansi_c_idiots = 69;#endif /* hp9000s800 */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -