RISC-V: Make R_RISCV_SUB6 conforms to riscv ABI standard
authorXiao Zeng <zengxiao@eswincomputing.com>
Mon, 21 Nov 2022 12:00:37 +0000 (20:00 +0800)
committerNelson Chu <nelson@rivosinc.com>
Wed, 23 Nov 2022 02:46:16 +0000 (10:46 +0800)
According to the riscv psabi, R_RISCV_SUB6 only allows 6 least significant
bits are valid, but since binutils implementation, we usually get 8 bits
field for it.  That means, the high 2 bits could be other field and have
different purpose.  Therefore, we should filter the 8 bits to 6 bits before
calculate, and then only encode the valid 6 bits back.  By the way, we also
need the out-of-range check for R_RISCV_SUB6, and the overflow checks for
all R_RISCV_ADD/SUB/SET relocations, but we can add them in the future patches.

Passing riscv-gnu-toolchain regressions.

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
bfd/elfxx-riscv.c

index 0570a971b5aa086e7c57f328ec0f0fb149d25b77..a2d85dbe9396e9be33862a4f57c7d4de36a10a74 100644 (file)
@@ -2427,6 +2427,15 @@ riscv_elf_relocate_section (bfd *output_bfd,
          break;
 
        case R_RISCV_SUB6:
+         {
+           bfd_vma old_value = bfd_get (howto->bitsize, input_bfd,
+                                        contents + rel->r_offset);
+           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:
index afbde56b9e549f4bfc6cf834016e22bc2398239d..ff9607e7966e932d73d106393e0761bcafaef885 100644 (file)
@@ -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: