public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Michael Eager <eager@eagercon.com>
To: Neal Frager <neal.frager@amd.com>, binutils@sourceware.org
Cc: ibai.erkiaga-elorza@amd.com, nagaraju.mekala@amd.com,
	mark.hatle@amd.com, sadanand.mutyala@amd.com,
	appa.rao.nali@amd.com, vidhumouli.hunsigida@amd.com,
	luca.ceresoli@bootlin.com
Subject: Re: [PATCH v1 1/1] ld: microblaze: Add error detail for mxl-gp-opt flag
Date: Thu, 28 Sep 2023 12:47:52 -0700	[thread overview]
Message-ID: <543a14cd-38c9-3f3a-5047-c7b78efecbc0@eagercon.com> (raw)
In-Reply-To: <20230927134821.1621734-1-neal.frager@amd.com>

On 9/27/23 06:48, Neal Frager via Binutils wrote:
> Compiler will give error messages in more detail
> for microblaze mxl-gp-opt flag.
> 
> This patch has been tested for years of AMD Xilinx Yocto
> releases as part of the following patch set:
> 
> https://github.com/Xilinx/meta-xilinx/tree/master/meta-microblaze/recipes-devtools/binutils/binutils
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>
> ---
>   ld/ldmain.c | 10 ++++++++++
>   1 file changed, 10 insertions(+)
> 
> diff --git a/ld/ldmain.c b/ld/ldmain.c
> index 06ac2c64fa8..aca3d84ccf1 100644
> --- a/ld/ldmain.c
> +++ b/ld/ldmain.c
> @@ -1575,6 +1575,16 @@ reloc_overflow (struct bfd_link_info *info,
>   	  break;
>   	case bfd_link_hash_defined:
>   	case bfd_link_hash_defweak:
> +	  if((strcmp(reloc_name,"R_MICROBLAZE_SRW32") == 0) &&  entry->type == bfd_link_hash_defined)
> +	  {
> +	  einfo (_(" relocation truncated to fit: don't enable small data pointer optimizations[mxl-gp-opt] if extern or multiple declarations used: "
> +		 "%s against symbol `%T' defined in %A section in %B"),
> +		 reloc_name, entry->root.string,
> +		 entry->u.def.section,
> +		 entry->u.def.section == bfd_abs_section_ptr
> +		 ? info->output_bfd : entry->u.def.section->owner);
> +	  break;
> +	  }	
>   	  einfo (_(" relocation truncated to fit: "
>   		   "%s against symbol `%pT' defined in %pA section in %pB"),
>   		 reloc_name, entry->root.string,

Hi Neal --

It would be better if the patch were moved after the 
bfd_link_hash_defined case and the (then redundant) test for 
entry->type removed.  Add a /* FALL THROUGH */ notation.

ldmain.c is generic code.  There are no tests for any other 
architecture.  I'm reluctant to add target-dependent tests in generic 
code.  Perhaps one of the linker maintainers can comment on this.

If this additional diagnostic information is useful for MicroBlaze, 
perhaps it would be useful for all other architectures (without the 
MB-specific option, of course).


-- 
Michael Eager


      reply	other threads:[~2023-09-28 19:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-27 13:48 Neal Frager
2023-09-28 19:47 ` Michael Eager [this message]

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=543a14cd-38c9-3f3a-5047-c7b78efecbc0@eagercon.com \
    --to=eager@eagercon.com \
    --cc=appa.rao.nali@amd.com \
    --cc=binutils@sourceware.org \
    --cc=ibai.erkiaga-elorza@amd.com \
    --cc=luca.ceresoli@bootlin.com \
    --cc=mark.hatle@amd.com \
    --cc=nagaraju.mekala@amd.com \
    --cc=neal.frager@amd.com \
    --cc=sadanand.mutyala@amd.com \
    --cc=vidhumouli.hunsigida@amd.com \
    /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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).