mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
c2f09c751b
* mach-o.h (bfd_mach_o_symtab_command): Remove stabs_segment and stabstr_segment fields. (mach_o_be_vec, mach_o_le_vec): Removed (bfd_mach_o_version): New prototype. * mach-o.c (bfd_mach_o_version): Make this function public. (mach_o_wide_p): New function. (bfd_mach_o_wide_p): Ditto. (bfd_mach_o_convert_section_name_to_bfd): Add prefix only for weird names. (bfd_mach_o_convert_section_name_to_mach_o): Fix typo in comment. Search in the list only if the name starts with a dot. (bfd_mach_o_write_header): Use mach_o_wide_p instead of hard-coded test. Check bfd_seek status. (bfd_mach_o_scan_write_thread): Check bfd_seek status. (bfd_mach_o_scan_write_section_32): Ditto. (bfd_mach_o_scan_write_section_64): Ditto. (bfd_mach_o_scan_write_section): Removed. (bfd_mach_o_scan_write_segment): Split into ... (bfd_mach_o_scan_write_segment_32): ... this and ... (bfd_mach_o_scan_write_segment_64): ... this. Check bfd_seek status. (bfd_mach_o_scan_write_symtab_symbols): Moved into ... (bfd_mach_o_scan_write_symtab): ... this. Write symtab from BFD symbol table. Now returns a boolean. (bfd_mach_o_write_contents): Set filetype. Check bfd_seek status. Adjust for status type. (bfd_mach_o_build_commands): Use mach_o_wide_p instead of hard-coded test. Write symbol table. Numbers the sections. (bfd_mach_o_read_header): Check bfd_seek status. Use mach_o_wide_p instead of hard-coded test. (bfd_mach_o_scan_read_section_32): Check bfd_seek status. (bfd_mach_o_scan_read_section_64): Ditto. (bfd_mach_o_scan_read_symtab_symbol): Ditto. Check bfd_seek status. Use BFD_MACH_O_N_TYPE instead of hard-coded value. Correctly handled common symbols. (bfd_mach_o_scan_read_symtab_strtab): Check bfd_seek status. (bfd_mach_o_scan_read_dysymtab_symbol): Ditto. (bfd_mach_o_scan_read_dylinker): Ditto. (bfd_mach_o_scan_read_dylib): Ditto. (bfd_mach_o_scan_read_thread): Ditto. (bfd_mach_o_scan_read_symtab): Ditto. Do not create a section for the stabs. (bfd_mach_o_scan_read_uuid): Check bfd_seek status. (bfd_mach_o_scan_read_segment): Ditto. (bfd_mach_o_scan_read_command): Ditto. (bfd_mach_o_scan_start_address): Ditto. (bfd_mach_o_scan): Use mach_o_wide_p instead of hard-coded test. (bfd_mach_o_archive_p): Check bfd_seek status. (bfd_mach_o_core_fetch_environment): Ditto. * mach-o-i386.c (bfd_mach_o_i386_mkobject): Don't set filetype.
69 lines
2.0 KiB
C
69 lines
2.0 KiB
C
/* Intel i386 Mach-O support for BFD.
|
|
Copyright 2009
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
#include "sysdep.h"
|
|
#include "mach-o.h"
|
|
#include "bfd.h"
|
|
#include "libbfd.h"
|
|
#include "libiberty.h"
|
|
|
|
#define bfd_mach_o_object_p bfd_mach_o_i386_object_p
|
|
#define bfd_mach_o_core_p bfd_mach_o_i386_core_p
|
|
#define bfd_mach_o_mkobject bfd_mach_o_i386_mkobject
|
|
|
|
static const bfd_target *
|
|
bfd_mach_o_i386_object_p (bfd *abfd)
|
|
{
|
|
return bfd_mach_o_header_p (abfd, 0, BFD_MACH_O_CPU_TYPE_I386);
|
|
}
|
|
|
|
static const bfd_target *
|
|
bfd_mach_o_i386_core_p (bfd *abfd)
|
|
{
|
|
return bfd_mach_o_header_p (abfd,
|
|
BFD_MACH_O_MH_CORE, BFD_MACH_O_CPU_TYPE_I386);
|
|
}
|
|
|
|
static bfd_boolean
|
|
bfd_mach_o_i386_mkobject (bfd *abfd)
|
|
{
|
|
bfd_mach_o_data_struct *mdata;
|
|
|
|
if (!bfd_mach_o_mkobject_init (abfd))
|
|
return FALSE;
|
|
|
|
mdata = abfd->tdata.mach_o_data;
|
|
mdata->header.magic = BFD_MACH_O_MH_MAGIC;
|
|
mdata->header.cputype = BFD_MACH_O_CPU_TYPE_I386;
|
|
mdata->header.cpusubtype = BFD_MACH_O_CPU_SUBTYPE_X86_ALL;
|
|
mdata->header.byteorder = BFD_ENDIAN_LITTLE;
|
|
mdata->header.version = 1;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
#define TARGET_NAME mach_o_i386_vec
|
|
#define TARGET_STRING "mach-o-i386"
|
|
#define TARGET_BIG_ENDIAN 0
|
|
#define TARGET_ARCHIVE 0
|
|
|
|
#include "mach-o-target.c"
|