This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
Re: Missing TO_ADDR
- From: Dan <dgisselq at verizon dot net>
- To: Alan Modra <amodra at gmail dot com>
- Cc: dgisselq at ieee dot org, binutils at sourceware dot org
- Date: Thu, 31 Mar 2016 12:03:17 -0400
- Subject: Re: Missing TO_ADDR
- Authentication-results: sourceware.org; auth=none
- References: <20160330073151 dot GK15812 at bubble dot grove dot modra dot org> <1459339484 dot 9097 dot 134 dot camel at jericho> <20160331073959 dot GT15812 at bubble dot grove dot modra dot org>
- Reply-to: dgisselq at ieee dot org
This would be my proposal for what to change:
--- a/ld/ldlang.c 2016-03-31 11:52:02.147253098 -0400
+++ b/ld/ldlang.c 2016-03-31 12:01:13.039773821 -0400
@@ -1886,7 +1886,7 @@
before sizing dynamic sections. */
dot = os->bfd_section->vma;
exp_fold_tree (start_assign->exp, os->bfd_section, &dot);
- dot += s->size;
+ dot += TO_ADDR(s->size);
exp_fold_tree (stop_assign->exp, os->bfd_section, &dot);
}
@@ -4002,7 +4002,7 @@
++len;
}
- minfo ("0x%V %W", section->vma, section->size);
+ minfo ("0x%V %W", section->vma, TO_ADDR(section->size));
if (section->vma != section->lma)
minfo (_(" load address 0x%V"), section->lma);
@@ -4312,7 +4312,9 @@
break;
}
- minfo ("0x%V %W %s 0x%v", addr, size, name, data->value);
+ if (size < TO_SIZE ((unsigned) 1))
+ size = TO_SIZE ((unsigned) 1);
+ minfo ("0x%V %W %s 0x%v", addr, TO_ADDR(size), name, data->value);
if (data->exp->type.node_class != etree_value)
{
@@ -4355,7 +4357,7 @@
size = bfd_get_reloc_size (reloc->howto);
- minfo ("0x%V %W RELOC %s ", addr, size, reloc->howto->name);
+ minfo ("0x%V %W RELOC %s ", addr, TO_ADDR(size), reloc->howto->name);
if (reloc->name != NULL)
minfo ("%s+", reloc->name);
@@ -4388,7 +4390,7 @@
addr = s->output_offset;
if (s->output_section != NULL)
addr += s->output_section->vma;
- minfo ("0x%V %W ", addr, (bfd_vma) s->size);
+ minfo ("0x%V %W ", addr, TO_ADDR((bfd_vma) s->size));
if (s->fill->size != 0)
{
@@ -5067,7 +5069,7 @@
create overlapping LMAs. */
if (dot < last->vma
&& os->bfd_section->size != 0
- && dot + os->bfd_section->size <= last->vma)
+ && dot + TO_ADDR(os->bfd_section->size) <= last->vma)
{
/* If dot moved backwards then leave lma equal to
vma. This is the old default lma, which might
@@ -5084,7 +5086,7 @@
/* If this is an overlay, set the current lma to that
at the end of the previous section. */
if (os->sectype == overlay_section)
- lma = last->lma + last->size;
+ lma = last->lma + TO_ADDR(last->size);
/* Otherwise, keep the same lma to vma relationship
as the previous section. */
As I mentioned, this keeps the units of addresses and sizes consistent
within the map file.
Dan
On Thu, 2016-03-31 at 18:09 +1030, Alan Modra wrote:
> On Wed, Mar 30, 2016 at 08:04:44AM -0400, Dan wrote:
> > Don't forget the "minfo ("0x%V %W", section->vma ..." line that needs
> > its "section->size" parameter changed to TO_ADDR(section->size), or the
> > "lma = last->lma+last->size" that needs to be changed to "lma =
> > last->lma + TO_ADDR(last->size);". At least according to my last git
> > pull, those changes still needed to be made as well.
>
> Yes, there are other places missing TO_ADDR, and one of the minfo
> lines wrongly invokes TO_ADDR. Thanks for the prod.
>
> * ldlang.c (TO_ADDR, TO_SIZE, opb_shift): Move earlier in file.
> (lang_insert_orphan): Use TO_ADDR in __stop sym calculation.
> (print_input_section): Don't use TO_ADDR when printing section
> size.
> (lang_size_sections_1): Use TO_ADDR in overlay lma calculation.
> (lang_size_sections): Use TO_ADDR in relro end calculation.
>
> diff --git a/ld/ldlang.c b/ld/ldlang.c
> index cb6aab6..9fca810 100644
> --- a/ld/ldlang.c
> +++ b/ld/ldlang.c
> @@ -49,7 +49,13 @@
> #define offsetof(TYPE, MEMBER) ((size_t) & (((TYPE*) 0)->MEMBER))
> #endif
>
> -/* Locals variables. */
> +/* Convert between addresses in bytes and sizes in octets.
> + For currently supported targets, octets_per_byte is always a power
> + of two, so we can use shifts. */
> +#define TO_ADDR(X) ((X) >> opb_shift)
> +#define TO_SIZE(X) ((X) << opb_shift)
> +
> +/* Local variables. */
> static struct obstack stat_obstack;
> static struct obstack map_obstack;
>
> @@ -68,6 +74,7 @@ static lang_statement_list_type *stat_save[10];
> static lang_statement_list_type **stat_save_ptr = &stat_save[0];
> static struct unique_sections *unique_section_list;
> static struct asneeded_minfo *asneeded_list_head;
> +static unsigned int opb_shift = 0;
> static bfd_boolean maybe_overlays = FALSE;
>
> /* Forward declarations. */
> @@ -1887,7 +1894,7 @@ lang_insert_orphan (asection *s,
> before sizing dynamic sections. */
> dot = os->bfd_section->vma;
> exp_fold_tree (start_assign->exp, os->bfd_section, &dot);
> - dot += s->size;
> + dot += TO_ADDR (s->size);
> exp_fold_tree (stop_assign->exp, os->bfd_section, &dot);
> }
>
> @@ -3209,15 +3216,6 @@ ldlang_open_output (lang_statement_union_type *statement)
> }
> }
>
> -/* Convert between addresses in bytes and sizes in octets.
> - For currently supported targets, octets_per_byte is always a power
> - of two, so we can use shifts. */
> -#define TO_ADDR(X) ((X) >> opb_shift)
> -#define TO_SIZE(X) ((X) << opb_shift)
> -
> -/* Support the above. */
> -static unsigned int opb_shift = 0;
> -
> static void
> init_opb (void)
> {
> @@ -4225,7 +4223,7 @@ print_input_section (asection *i, bfd_boolean is_discarded)
> size = 0;
> }
>
> - minfo ("0x%V %W %B\n", addr, TO_ADDR (size), i->owner);
> + minfo ("0x%V %W %B\n", addr, size, i->owner);
>
> if (size != i->rawsize && i->rawsize != 0)
> {
> @@ -5132,7 +5130,7 @@ lang_size_sections_1
> /* If this is an overlay, set the current lma to that
> at the end of the previous section. */
> if (os->sectype == overlay_section)
> - lma = last->lma + last->size;
> + lma = last->lma + TO_ADDR (last->size);
>
> /* Otherwise, keep the same lma to vma relationship
> as the previous section. */
> @@ -5524,7 +5522,7 @@ lang_size_sections (bfd_boolean *relax, bfd_boolean check_regions)
>
> end = start = sec->vma;
> if (!IS_TBSS (sec))
> - end += sec->size;
> + end += TO_ADDR (sec->size);
> bump = desired_end - end;
> /* We'd like to increase START by BUMP, but we must heed
> alignment so the increase might be less than optimum. */
>