Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: John Baldwin <jhb@FreeBSD.org>
To: gdb-patches@sourceware.org,	binutils@sourceware.org
Subject: [PATCH v3 1/3] Use bfd_mach_mips4000 as the default machine type for 64-bit MIPS ABIs.
Date: Tue, 03 Jan 2017 18:45:00 -0000	[thread overview]
Message-ID: <20170103184341.58346-2-jhb@FreeBSD.org> (raw)
In-Reply-To: <20170103184341.58346-1-jhb@FreeBSD.org>

If the flags word of an ELF header is empty, _bfd_elf_mips_mach always
returned bfd_mach_mips3000 which is a 32-bit MIPS ABI.  This change
uses bfd_mach_mips4000 if the ELF class identifies a 64-bit binary.

bfd/ChangeLog:

	* elf32-mips.c: Pass "abfd" to "_bfd_elf_mips_mach".
	* elf64-mips.c: Likewise.
	* elfn32-mips.c: Likewise.
	* elfxx-mips.c (_bfd_elf_mips_mach): Read "flags" from ELF header
	in "abfd".  Use "bfd_mach_mips4000" as default machine for 64-bit
	ABIs.
	* elfxx-mips.h (_bfd_elf_mips_mach): Change argument from "flags"
	to "abfd".
---
 bfd/ChangeLog     | 11 +++++++++++
 bfd/elf32-mips.c  |  2 +-
 bfd/elf64-mips.c  |  2 +-
 bfd/elfn32-mips.c |  2 +-
 bfd/elfxx-mips.c  | 11 +++++++----
 bfd/elfxx-mips.h  |  2 +-
 6 files changed, 22 insertions(+), 8 deletions(-)

diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 41d511948a..b3ce1e5321 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,14 @@
+2017-01-03  John Baldwin  <jhb@FreeBSD.org>
+
+	* elf32-mips.c: Pass "abfd" to "_bfd_elf_mips_mach".
+	* elf64-mips.c: Likewise.
+	* elfn32-mips.c: Likewise.
+	* elfxx-mips.c (_bfd_elf_mips_mach): Read "flags" from ELF header
+	in "abfd".  Use "bfd_mach_mips4000" as default machine for 64-bit
+	ABIs.
+	* elfxx-mips.h (_bfd_elf_mips_mach): Change argument from "flags"
+	to "abfd".
+
 2017-01-03  Rich Felker  <bugdal@aerifal.cx>
 
 	PR ld/21017
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index 8c1a68eba0..6586272dab 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -2295,7 +2295,7 @@ mips_elf32_object_p (bfd *abfd)
   if (SGI_COMPAT (abfd))
     elf_bad_symtab (abfd) = TRUE;
 
-  mach = _bfd_elf_mips_mach (elf_elfheader (abfd)->e_flags);
+  mach = _bfd_elf_mips_mach (abfd);
   bfd_default_set_arch_mach (abfd, bfd_arch_mips, mach);
   return TRUE;
 }
diff --git a/bfd/elf64-mips.c b/bfd/elf64-mips.c
index 5edbd4a5d3..613d782534 100644
--- a/bfd/elf64-mips.c
+++ b/bfd/elf64-mips.c
@@ -4251,7 +4251,7 @@ mips_elf64_object_p (bfd *abfd)
   if (elf64_mips_irix_compat (abfd) != ict_none)
     elf_bad_symtab (abfd) = TRUE;
 
-  mach = _bfd_elf_mips_mach (elf_elfheader (abfd)->e_flags);
+  mach = _bfd_elf_mips_mach (abfd);
   bfd_default_set_arch_mach (abfd, bfd_arch_mips, mach);
   return TRUE;
 }
diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c
index c09713ad53..d35af3ac54 100644
--- a/bfd/elfn32-mips.c
+++ b/bfd/elfn32-mips.c
@@ -3513,7 +3513,7 @@ mips_elf_n32_object_p (bfd *abfd)
   if (SGI_COMPAT (abfd))
     elf_bad_symtab (abfd) = TRUE;
 
-  mach = _bfd_elf_mips_mach (elf_elfheader (abfd)->e_flags);
+  mach = _bfd_elf_mips_mach (abfd);
   bfd_default_set_arch_mach (abfd, bfd_arch_mips, mach);
   return TRUE;
 }
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c
index ce58c436e9..17f5f99ec3 100644
--- a/bfd/elfxx-mips.c
+++ b/bfd/elfxx-mips.c
@@ -6719,8 +6719,10 @@ mips_elf_create_dynamic_relocation (bfd *output_bfd,
 /* Return the MACH for a MIPS e_flags value.  */
 
 unsigned long
-_bfd_elf_mips_mach (flagword flags)
+_bfd_elf_mips_mach (bfd *abfd)
 {
+  flagword flags = elf_elfheader (abfd)->e_flags;
+
   switch (flags & EF_MIPS_MACH)
     {
     case E_MIPS_MACH_3900:
@@ -6782,7 +6784,10 @@ _bfd_elf_mips_mach (flagword flags)
 	{
 	default:
 	case E_MIPS_ARCH_1:
-	  return bfd_mach_mips3000;
+	  if (ABI_64_P (abfd))
+	    return bfd_mach_mips4000;
+	  else
+	    return bfd_mach_mips3000;
 
 	case E_MIPS_ARCH_2:
 	  return bfd_mach_mips6000;
@@ -6815,8 +6820,6 @@ _bfd_elf_mips_mach (flagword flags)
 	  return bfd_mach_mipsisa64r6;
 	}
     }
-
-  return 0;
 }
 
 /* Return printable name for ABI.  */
diff --git a/bfd/elfxx-mips.h b/bfd/elfxx-mips.h
index 8f16cc9c53..c64f788f8b 100644
--- a/bfd/elfxx-mips.h
+++ b/bfd/elfxx-mips.h
@@ -138,7 +138,7 @@ extern bfd_reloc_status_type _bfd_mips_elf_lo16_reloc
 extern bfd_reloc_status_type _bfd_mips_elf_generic_reloc
   (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
 extern unsigned long _bfd_elf_mips_mach
-  (flagword);
+  (bfd *);
 extern bfd_boolean _bfd_mips_relax_section
   (bfd *, asection *, struct bfd_link_info *, bfd_boolean *);
 extern bfd_vma _bfd_mips_elf_sign_extend
-- 
2.11.0


  parent reply	other threads:[~2017-01-03 18:45 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-03 18:45 [PATCH v3 0/3] Add FreeBSD/mips targets to GDB John Baldwin
2017-01-03 18:45 ` [PATCH v3 2/3] Add FreeBSD/mips architecture John Baldwin
2017-01-03 19:05   ` Luis Machado
2017-01-03 20:12     ` John Baldwin
2017-01-03 19:16   ` Eli Zaretskii
2017-01-04 21:23   ` Luis Machado
2017-01-04 22:10     ` John Baldwin
2017-01-05  0:52       ` Luis Machado
2017-01-03 18:45 ` [PATCH v3 3/3] Add native target for FreeBSD/mips John Baldwin
2017-01-03 19:15   ` Eli Zaretskii
2017-01-03 18:45 ` John Baldwin [this message]
2017-01-04  2:09   ` [PATCH v3 1/3] Use bfd_mach_mips4000 as the default machine type for 64-bit MIPS ABIs Maciej W. Rozycki
2017-01-04  3:09     ` John Baldwin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170103184341.58346-2-jhb@FreeBSD.org \
    --to=jhb@freebsd.org \
    --cc=binutils@sourceware.org \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox