public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: "Xiao Zeng" <zengxiao@eswincomputing.com>
To: "Nelson Chu" <nelson@rivosinc.com>
Cc: binutils <binutils@sourceware.org>,  shihua <shihua@iscas.ac.cn>,
	 palmer <palmer@dabbelt.com>,  kito.cheng <kito.cheng@gmail.com>
Subject: Re: [PATCH v2] RISC-V: Make R_RISCV_SUB6 conforms to riscv ABI standard
Date: Wed, 23 Nov 2022 17:05:35 +0800	[thread overview]
Message-ID: <202211231705354850352@eswincomputing.com> (raw)
In-Reply-To: <CAPpQWtA68kPewTzFsyfzK+=DTjuOwww5h6dWZcKFSADgO0q6ow@mail.gmail.com>

On Wed, Nov 23, 2022 at 12:00:00 AM  Nelson Chu <nelson@rivosinc.com> wrote:
>
>Thanks for fixing this.  We also need to add the out-of-range check
>for R_RISCV_SUB6 in the riscv_elf_add_sub_reloc, and the overflow
>checks for all ADD/SUB/SET relocations, but since they can be added in
>the later patches, so I committed this one after passing the
>riscv-gnu-toolchain regressions. 

OK. In the next patch, I will solve this problem.

>
>Thanks
>Nelson
>
>On Mon, Nov 21, 2022 at 8:02 PM <zengxiao@eswincomputing.com> wrote:
>>
>> From: Xiao Zeng <zengxiao@eswincomputing.com>
>>
>> The R_RISCV_SUB6 only the lower 6 bits of the code are valid, which
>> can be found in 8.5. Relocations of:
>> https://github.com/riscv-non-isa/riscv-elf-psabi-doc/releases/download/v1.0-rc4/riscv-abi.pdf
>>
>> bfd/ChangeLog:
>>
>>         * elfnn-riscv.c (riscv_elf_relocate_section): Take the R_RISCV_SUB6
>>         lower 6 bits as the significant bit.
>>         * elfxx-riscv.c (riscv_elf_add_sub_reloc): Likewise.
>> ---
>>  bfd/elfnn-riscv.c | 4 ++++
>>  bfd/elfxx-riscv.c | 4 ++++
>>  2 files changed, 8 insertions(+)
>>
>> diff --git a/bfd/elfnn-riscv.c b/bfd/elfnn-riscv.c
>> index 0570a971b5a..a02aa64786e 100644
>> --- a/bfd/elfnn-riscv.c
>> +++ b/bfd/elfnn-riscv.c
>> @@ -2427,6 +2427,10 @@ riscv_elf_relocate_section (bfd *output_bfd,
>>           break;
>>
>>         case R_RISCV_SUB6:
>> +         relocation = (old_value & ~howto->dst_mask)
>> +                      | (((old_value & howto->dst_mask) - relocation)
>> +                         & howto->dst_mask);
>> +         break;
>
>The old_value needs to be defined, but it's easy enough to add, so I fixed it. 

Thanks Nelson

>
>>         case R_RISCV_SUB8:
>>         case R_RISCV_SUB16:
>>         case R_RISCV_SUB32:
>> diff --git a/bfd/elfxx-riscv.c b/bfd/elfxx-riscv.c
>> index afbde56b9e5..2db24acf7a5 100644
>> --- a/bfd/elfxx-riscv.c
>> +++ b/bfd/elfxx-riscv.c
>> @@ -994,6 +994,10 @@ riscv_elf_add_sub_reloc (bfd *abfd,
>>        relocation = old_value + relocation;
>>        break;
>>      case R_RISCV_SUB6:
>> +      relocation = (old_value & ~howto->dst_mask)
>> +                   | (((old_value & howto->dst_mask) - relocation)
>> +                     & howto->dst_mask);
>> +      break;
>>      case R_RISCV_SUB8:
>>      case R_RISCV_SUB16:
>>      case R_RISCV_SUB32:
>> --
>> 2.34.1
>> 

Thanks
Xiao

      reply	other threads:[~2022-11-23  9:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-21 12:00 zengxiao
2022-11-23  2:52 ` Nelson Chu
2022-11-23  9:05   ` Xiao Zeng [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=202211231705354850352@eswincomputing.com \
    --to=zengxiao@eswincomputing.com \
    --cc=binutils@sourceware.org \
    --cc=kito.cheng@gmail.com \
    --cc=nelson@rivosinc.com \
    --cc=palmer@dabbelt.com \
    --cc=shihua@iscas.ac.cn \
    /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).