public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
* [Patch mach-o/bfd] Order relocs after the section data.
@ 2012-01-12 21:01 Iain Sandoe
  2012-01-13  8:18 ` Tristan Gingold
  0 siblings, 1 reply; 3+ messages in thread
From: Iain Sandoe @ 2012-01-12 21:01 UTC (permalink / raw)
  To: binutils Development; +Cc: Tristan Gingold

this is an almost cosmetic patch that causes us to order relocs after  
the section data - rather than after the indirect symbols.

The main purpose is that it makes it easier to compare the output of  
the native 'as' with GAS.

I suppose there's a minor 'do what ld expects' content, but one would  
hope that is largely unimportant...

OK?
Iain

bfd:

	* mach-o.c (bfd_mach_o_write_relocs): Move the computation of relocs  
file
	position from here ...
	(bfd_mach_o_build_seg_command) ... to here.


  bfd/mach-o.c |   27 +++++++++++++++++++--------
  1 files changed, 19 insertions(+), 8 deletions(-)

diff --git a/bfd/mach-o.c b/bfd/mach-o.c
index c519663..2625319 100644
--- a/bfd/mach-o.c
+++ b/bfd/mach-o.c
@@ -1185,7 +1185,6 @@ bfd_mach_o_canonicalize_dynamic_reloc (bfd  
*abfd, arelent **rels,
  static bfd_boolean
  bfd_mach_o_write_relocs (bfd *abfd, bfd_mach_o_section *section)
  {
-  bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
    unsigned int i;
    arelent **entries;
    asection *sec;
@@ -1198,13 +1197,6 @@ bfd_mach_o_write_relocs (bfd *abfd,  
bfd_mach_o_section *section)
    if (bed->_bfd_mach_o_swap_reloc_out == NULL)
      return TRUE;

-  /* Allocate relocation room.  */
-  mdata->filelen = FILE_ALIGN(mdata->filelen, 2);
-  section->nreloc = sec->reloc_count;
-  sec->rel_filepos = mdata->filelen;
-  section->reloff = sec->rel_filepos;
-  mdata->filelen += sec->reloc_count * BFD_MACH_O_RELENT_SIZE;
-
    if (bfd_seek (abfd, section->reloff, SEEK_SET) != 0)
      return FALSE;

@@ -2075,6 +2067,25 @@ bfd_mach_o_build_seg_command (const char  
*segment,
      }

    seg->filesize = mdata->filelen - seg->fileoff;
+  seg->filesize = FILE_ALIGN(seg->filesize, 2);
+
+  /* Allocate relocation room.  */
+  mdata->filelen = FILE_ALIGN(mdata->filelen, 2);
+
+  for (i = 0; i < mdata->nsects; ++i)
+    {
+      bfd_mach_o_section *ms = mdata->sections[i];
+      asection *sec = ms->bfdsection;
+
+      if ((ms->nreloc = sec->reloc_count) == 0)
+        {
+	  ms->reloff = 0;
+	  continue;
+        }
+      sec->rel_filepos = mdata->filelen;
+      ms->reloff = sec->rel_filepos;
+      mdata->filelen += sec->reloc_count * BFD_MACH_O_RELENT_SIZE;
+    }

    return TRUE;
  }

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Patch mach-o/bfd] Order relocs after the section data.
  2012-01-12 21:01 [Patch mach-o/bfd] Order relocs after the section data Iain Sandoe
@ 2012-01-13  8:18 ` Tristan Gingold
  2012-01-13 12:25   ` Iain Sandoe
  0 siblings, 1 reply; 3+ messages in thread
From: Tristan Gingold @ 2012-01-13  8:18 UTC (permalink / raw)
  To: Iain Sandoe; +Cc: binutils Development


On Jan 12, 2012, at 10:01 PM, Iain Sandoe wrote:

> this is an almost cosmetic patch that causes us to order relocs after the section data - rather than after the indirect symbols.
> 
> The main purpose is that it makes it easier to compare the output of the native 'as' with GAS.
> 
> I suppose there's a minor 'do what ld expects' content, but one would hope that is largely unimportant...
> 
> OK?

Ok.

Thanks,
Tristan.

> Iain
> 
> bfd:
> 
> 	* mach-o.c (bfd_mach_o_write_relocs): Move the computation of relocs file
> 	position from here ...
> 	(bfd_mach_o_build_seg_command) ... to here.
> 
> 
> bfd/mach-o.c |   27 +++++++++++++++++++--------
> 1 files changed, 19 insertions(+), 8 deletions(-)
> 
> diff --git a/bfd/mach-o.c b/bfd/mach-o.c
> index c519663..2625319 100644
> --- a/bfd/mach-o.c
> +++ b/bfd/mach-o.c
> @@ -1185,7 +1185,6 @@ bfd_mach_o_canonicalize_dynamic_reloc (bfd *abfd, arelent **rels,
> static bfd_boolean
> bfd_mach_o_write_relocs (bfd *abfd, bfd_mach_o_section *section)
> {
> -  bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
>   unsigned int i;
>   arelent **entries;
>   asection *sec;
> @@ -1198,13 +1197,6 @@ bfd_mach_o_write_relocs (bfd *abfd, bfd_mach_o_section *section)
>   if (bed->_bfd_mach_o_swap_reloc_out == NULL)
>     return TRUE;
> 
> -  /* Allocate relocation room.  */
> -  mdata->filelen = FILE_ALIGN(mdata->filelen, 2);
> -  section->nreloc = sec->reloc_count;
> -  sec->rel_filepos = mdata->filelen;
> -  section->reloff = sec->rel_filepos;
> -  mdata->filelen += sec->reloc_count * BFD_MACH_O_RELENT_SIZE;
> -
>   if (bfd_seek (abfd, section->reloff, SEEK_SET) != 0)
>     return FALSE;
> 
> @@ -2075,6 +2067,25 @@ bfd_mach_o_build_seg_command (const char *segment,
>     }
> 
>   seg->filesize = mdata->filelen - seg->fileoff;
> +  seg->filesize = FILE_ALIGN(seg->filesize, 2);
> +
> +  /* Allocate relocation room.  */
> +  mdata->filelen = FILE_ALIGN(mdata->filelen, 2);
> +
> +  for (i = 0; i < mdata->nsects; ++i)
> +    {
> +      bfd_mach_o_section *ms = mdata->sections[i];
> +      asection *sec = ms->bfdsection;
> +
> +      if ((ms->nreloc = sec->reloc_count) == 0)
> +        {
> +	  ms->reloff = 0;
> +	  continue;
> +        }
> +      sec->rel_filepos = mdata->filelen;
> +      ms->reloff = sec->rel_filepos;
> +      mdata->filelen += sec->reloc_count * BFD_MACH_O_RELENT_SIZE;
> +    }
> 
>   return TRUE;
> }
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Patch mach-o/bfd] Order relocs after the section data.
  2012-01-13  8:18 ` Tristan Gingold
@ 2012-01-13 12:25   ` Iain Sandoe
  0 siblings, 0 replies; 3+ messages in thread
From: Iain Sandoe @ 2012-01-13 12:25 UTC (permalink / raw)
  To: Tristan Gingold; +Cc: binutils Development


On 13 Jan 2012, at 08:18, Tristan Gingold wrote:

>
> On Jan 12, 2012, at 10:01 PM, Iain Sandoe wrote:
>
>> this is an almost cosmetic patch that causes us to order relocs  
>> after the section data - rather than after the indirect symbols.

>> OK?
>
> Ok.

thanks, committed.
Iain


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-13 12:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-12 21:01 [Patch mach-o/bfd] Order relocs after the section data Iain Sandoe
2012-01-13  8:18 ` Tristan Gingold
2012-01-13 12:25   ` Iain Sandoe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).