From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7867) id DF9B8385842A; Mon, 25 Dec 2023 03:46:57 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DF9B8385842A Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: liu & zhensong To: bfd-cvs@sourceware.org Subject: [binutils-gdb] LoongArch: Add support for TLSDESC in ld. X-Act-Checkin: binutils-gdb X-Git-Author: Lulu Cai X-Git-Refname: refs/heads/master X-Git-Oldrev: 26265e7fdf19d461563388495b6799eb3719f80a X-Git-Newrev: 4f248d61eb9d319b552e3e0b2db862928c2c1971 Message-Id: <20231225034657.DF9B8385842A@sourceware.org> Date: Mon, 25 Dec 2023 03:46:57 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Dec 2023 03:46:58 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D4f248d61eb9d= 319b552e3e0b2db862928c2c1971 commit 4f248d61eb9d319b552e3e0b2db862928c2c1971 Author: Lulu Cai Date: Tue Oct 31 16:11:56 2023 +0800 LoongArch: Add support for TLSDESC in ld. =20 1.The linker for each DESC generates a R_LARCH_TLS_DESC64 dynamic relocation, which relocation is placed at .rela.dyn. TLSDESC always allocates two GOT slots and one dynamic relocation space to TLSDESC. 2. When using multiple ways to access the same TLS variable, a maximum of 5 GOT slots are used. For example, using GD, TLSDESC, and IE to access the same TLS variable, GD always uses the first two of the five GOT, TLSDESC uses the third and fourth, and IE uses the last. Diff: --- bfd/elfnn-loongarch.c | 168 +++++++++++++++++++++++++++++++++++++++++++---= ---- 1 file changed, 146 insertions(+), 22 deletions(-) diff --git a/bfd/elfnn-loongarch.c b/bfd/elfnn-loongarch.c index faffe27294a..95a39148f73 100644 --- a/bfd/elfnn-loongarch.c +++ b/bfd/elfnn-loongarch.c @@ -48,6 +48,12 @@ struct loongarch_elf_link_hash_entry #define GOT_TLS_GD 2 #define GOT_TLS_IE 4 #define GOT_TLS_LE 8 +#define GOT_TLS_GDESC 16 + +#define GOT_TLS_GD_BOTH_P(tls_type) \ + ((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_GDESC)) +#define GOT_TLS_GD_ANY_P(tls_type) \ + ((tls_type & GOT_TLS_GD) || (tls_type & GOT_TLS_GDESC)) char tls_type; }; =20 @@ -563,6 +569,7 @@ loongarch_elf_record_tls_and_got_reference (bfd *abfd, case GOT_NORMAL: case GOT_TLS_GD: case GOT_TLS_IE: + case GOT_TLS_GDESC: /* Need GOT. */ if (htab->elf.sgot =3D=3D NULL && !loongarch_elf_create_got_section (htab->elf.dynobj, info)) @@ -750,6 +757,14 @@ loongarch_elf_check_relocs (bfd *abfd, struct bfd_link= _info *info, return false; break; =20 + case R_LARCH_TLS_DESC_PC_HI20: + case R_LARCH_TLS_DESC_HI20: + if (!loongarch_elf_record_tls_and_got_reference (abfd, info, h, + r_symndx, + GOT_TLS_GDESC)) + return false; + break; + case R_LARCH_ABS_HI20: case R_LARCH_SOP_PUSH_ABSOLUTE: if (h !=3D NULL) @@ -1130,7 +1145,7 @@ allocate_dynrelocs (struct elf_link_hash_entry *h, vo= id *inf) =20 s =3D htab->elf.sgot; h->got.offset =3D s->size; - if (tls_type & (GOT_TLS_GD | GOT_TLS_IE)) + if (tls_type & (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC)) { /* TLS_GD needs two dynamic relocs and two GOT slots. */ if (tls_type & GOT_TLS_GD) @@ -1167,7 +1182,15 @@ allocate_dynrelocs (struct elf_link_hash_entry *h, v= oid *inf) htab->elf.srelgot->size +=3D sizeof (ElfNN_External_Rela); } } + + /* TLS_DESC needs one dynamic reloc and two GOT slot. */ + if (tls_type & GOT_TLS_GDESC) + { + s->size +=3D GOT_ENTRY_SIZE * 2; + htab->elf.srelgot->size +=3D sizeof (ElfNN_External_Rela); + } } + else { s->size +=3D GOT_ENTRY_SIZE; @@ -1670,19 +1693,34 @@ loongarch_elf_size_dynamic_sections (bfd *output_bf= d, if (0 < *local_got) { *local_got =3D s->size; + if (*local_tls_type & (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC)) + { + /* TLS gd use two got. */ + if (*local_tls_type & GOT_TLS_GD) + { + s->size +=3D 2 * GOT_ENTRY_SIZE; + if (!bfd_link_executable (info)) + srel->size +=3D sizeof (ElfNN_External_Rela); + } =20 - /* TLS gd use two got. */ - if (*local_tls_type & GOT_TLS_GD) - s->size +=3D GOT_ENTRY_SIZE * 2; - else - /* Normal got, tls ie/ld use one got. */ - s->size +=3D GOT_ENTRY_SIZE; + /* TLS_DESC use two got. */ + if (*local_tls_type & GOT_TLS_GDESC) + { + s->size +=3D 2 * GOT_ENTRY_SIZE; + srel->size +=3D sizeof (ElfNN_External_Rela); + } =20 - if (bfd_link_executable (info) - && (*local_tls_type & (GOT_TLS_GD| GOT_TLS_IE))) - ;/* Do nothing. */ + /* TLS ie and use one got. */ + if (*local_tls_type & GOT_TLS_IE) + { + s->size +=3D GOT_ENTRY_SIZE; + if (!bfd_link_executable (info)) + srel->size +=3D sizeof (ElfNN_External_Rela); + } + } else { + s->size +=3D GOT_ENTRY_SIZE; srel->size +=3D sizeof (ElfNN_External_Rela); } } @@ -2126,6 +2164,15 @@ perform_relocation (const Elf_Internal_Rela *rel, as= ection *input_section, case R_LARCH_TLS_GD_HI20: case R_LARCH_PCREL20_S2: case R_LARCH_CALL36: + case R_LARCH_TLS_DESC_PC_HI20: + case R_LARCH_TLS_DESC_PC_LO12: + case R_LARCH_TLS_DESC64_PC_LO20: + case R_LARCH_TLS_DESC64_PC_HI12: + case R_LARCH_TLS_DESC_HI20: + case R_LARCH_TLS_DESC_LO12: + case R_LARCH_TLS_DESC64_LO20: + case R_LARCH_TLS_DESC64_HI12: + r =3D loongarch_check_offset (rel, input_section); if (r !=3D bfd_reloc_ok) break; @@ -2135,6 +2182,11 @@ perform_relocation (const Elf_Internal_Rela *rel, as= ection *input_section, contents, value); break; =20 + case R_LARCH_TLS_DESC_LD: + case R_LARCH_TLS_DESC_CALL: + r =3D bfd_reloc_ok; + break; + case R_LARCH_RELAX: break; =20 @@ -2383,10 +2435,10 @@ loongarch_elf_relocate_section (bfd *output_bfd, st= ruct bfd_link_info *info, struct elf_link_hash_entry *h =3D NULL; const char *name; bfd_reloc_status_type r =3D bfd_reloc_ok; - bool is_ie, is_undefweak, unresolved_reloc, defined_local; + bool is_ie, is_desc, is_undefweak, unresolved_reloc, defined_local; bool resolved_local, resolved_dynly, resolved_to_const; char tls_type; - bfd_vma relocation, off, ie_off; + bfd_vma relocation, off, ie_off, desc_off; int i, j; =20 howto =3D loongarch_elf_rtype_to_howto (input_bfd, r_type); @@ -2515,6 +2567,7 @@ loongarch_elf_relocate_section (bfd *output_bfd, stru= ct bfd_link_info *info, =20 BFD_ASSERT (!resolved_local || defined_local); =20 + is_desc =3D false; is_ie =3D false; switch (r_type) { @@ -3405,6 +3458,8 @@ loongarch_elf_relocate_section (bfd *output_bfd, stru= ct bfd_link_info *info, case R_LARCH_TLS_LD_HI20: case R_LARCH_TLS_GD_PC_HI20: case R_LARCH_TLS_GD_HI20: + case R_LARCH_TLS_DESC_PC_HI20: + case R_LARCH_TLS_DESC_HI20: BFD_ASSERT (rel->r_addend =3D=3D 0); unresolved_reloc =3D false; =20 @@ -3412,6 +3467,10 @@ loongarch_elf_relocate_section (bfd *output_bfd, str= uct bfd_link_info *info, || r_type =3D=3D R_LARCH_TLS_IE_HI20) is_ie =3D true; =20 + if (r_type =3D=3D R_LARCH_TLS_DESC_PC_HI20 + || r_type =3D=3D R_LARCH_TLS_DESC_HI20) + is_desc =3D true; + bfd_vma got_off =3D 0; if (h !=3D NULL) { @@ -3426,9 +3485,19 @@ loongarch_elf_relocate_section (bfd *output_bfd, str= uct bfd_link_info *info, =20 BFD_ASSERT (got_off !=3D MINUS_ONE); =20 - ie_off =3D 0; tls_type =3D _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx); - if ((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_IE)) + + /* If a tls variable is accessed in multiple ways, GD uses + the first two slots of GOT, desc follows with two slots, + and IE uses one slot at the end. */ + desc_off =3D 0; + if (GOT_TLS_GD_BOTH_P (tls_type)) + desc_off =3D 2 * GOT_ENTRY_SIZE; + + ie_off =3D 0; + if (GOT_TLS_GD_BOTH_P (tls_type) && (tls_type & GOT_TLS_IE)) + ie_off =3D 4 * GOT_ENTRY_SIZE; + else if (GOT_TLS_GD_ANY_P (tls_type) && (tls_type & GOT_TLS_IE)) ie_off =3D 2 * GOT_ENTRY_SIZE; =20 if ((got_off & 1) =3D=3D 0) @@ -3477,6 +3546,21 @@ loongarch_elf_relocate_section (bfd *output_bfd, str= uct bfd_link_info *info, loongarch_elf_append_rela (output_bfd, relgot, &rela); } } + if (tls_type & GOT_TLS_GDESC) + { + /* Unless it is a static link, DESC always emits a + dynamic relocation. */ + int indx =3D h && h->dynindx !=3D -1 ? h->dynindx : 0; + rela.r_offset =3D sec_addr (got) + got_off + desc_off; + rela.r_addend =3D 0; + if (indx =3D=3D 0) + rela.r_addend =3D relocation - elf_hash_table (info)->tls_sec->vma; + + rela.r_info =3D ELFNN_R_INFO (indx, R_LARCH_TLS_DESCNN); + loongarch_elf_append_rela (output_bfd, relgot, &rela); + bfd_put_NN (output_bfd, 0, + got->contents + got_off + desc_off); + } if (tls_type & GOT_TLS_IE) { rela.r_offset =3D sec_addr (got) + got_off + ie_off; @@ -3504,16 +3588,52 @@ loongarch_elf_relocate_section (bfd *output_bfd, st= ruct bfd_link_info *info, } } } - relocation =3D (got_off & (~(bfd_vma)1)) + sec_addr (got) - + (is_ie ? ie_off : 0); + relocation =3D (got_off & (~(bfd_vma)1)) + sec_addr (got); + if (is_desc) + relocation +=3D desc_off; + else if (is_ie) + relocation +=3D ie_off; =20 if (r_type =3D=3D R_LARCH_TLS_LD_PC_HI20 || r_type =3D=3D R_LARCH_TLS_GD_PC_HI20 - || r_type =3D=3D R_LARCH_TLS_IE_PC_HI20) + || r_type =3D=3D R_LARCH_TLS_IE_PC_HI20 + || r_type =3D=3D R_LARCH_TLS_DESC_PC_HI20) RELOCATE_CALC_PC32_HI20 (relocation, pc); =20 break; =20 + case R_LARCH_TLS_DESC_PC_LO12: + case R_LARCH_TLS_DESC64_PC_LO20: + case R_LARCH_TLS_DESC64_PC_HI12: + case R_LARCH_TLS_DESC_LO12: + case R_LARCH_TLS_DESC64_LO20: + case R_LARCH_TLS_DESC64_HI12: + { + unresolved_reloc =3D false; + + if (h) + relocation =3D sec_addr (got) + (h->got.offset & (~(bfd_vma)1)); + else + relocation =3D sec_addr (got) + + (local_got_offsets[r_symndx] & (~(bfd_vma)1)); + + tls_type =3D _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx); + /* Use both TLS_GD and TLS_DESC. */ + if ((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_GDESC)) + relocation +=3D 2 * GOT_ENTRY_SIZE; + } + + if (r_type =3D=3D R_LARCH_TLS_DESC64_PC_LO20 + || r_type =3D=3D R_LARCH_TLS_DESC64_PC_HI12) + RELOCATE_CALC_PC64_HI32 (relocation, pc); + + break; + + case R_LARCH_TLS_DESC_LD: + case R_LARCH_TLS_DESC_CALL: + unresolved_reloc =3D false; + break; + case R_LARCH_TLS_IE_PC_LO12: case R_LARCH_TLS_IE64_PC_LO20: case R_LARCH_TLS_IE64_PC_HI12: @@ -3523,14 +3643,17 @@ loongarch_elf_relocate_section (bfd *output_bfd, st= ruct bfd_link_info *info, unresolved_reloc =3D false; =20 if (h) - relocation =3D sec_addr (got) + (h->got.offset & (~(bfd_vma)3)); + relocation =3D sec_addr (got) + (h->got.offset & (~(bfd_vma)1)); else relocation =3D sec_addr (got) - + (local_got_offsets[r_symndx] & (~(bfd_vma)3)); + + (local_got_offsets[r_symndx] & (~(bfd_vma)1)); =20 tls_type =3D _bfd_loongarch_elf_tls_type (input_bfd, h, r_symndx); - /* Use both TLS_GD and TLS_IE. */ - if ((tls_type & GOT_TLS_GD) && (tls_type & GOT_TLS_IE)) + /* Use TLS_GD TLS_DESC and TLS_IE. */ + if (GOT_TLS_GD_BOTH_P (tls_type) && (tls_type & GOT_TLS_IE)) + relocation +=3D 4 * GOT_ENTRY_SIZE; + /* Use GOT_TLS_GD_ANY_P (tls_type) and TLS_IE. */ + else if (GOT_TLS_GD_ANY_P (tls_type) && (tls_type & GOT_TLS_IE)) relocation +=3D 2 * GOT_ENTRY_SIZE; =20 if (r_type =3D=3D R_LARCH_TLS_IE64_PC_LO20 @@ -4174,7 +4297,8 @@ loongarch_elf_finish_dynamic_symbol (bfd *output_bfd, =20 if (h->got.offset !=3D MINUS_ONE /* TLS got entry have been handled in elf_relocate_section. */ - && !(loongarch_elf_hash_entry (h)->tls_type & (GOT_TLS_GD | GOT_TLS_= IE)) + && !(loongarch_elf_hash_entry (h)->tls_type + & (GOT_TLS_GD | GOT_TLS_IE | GOT_TLS_GDESC)) /* Have allocated got entry but not allocated rela before. */ && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)) {