public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
To: ishitatsuyuki@gmail.com
Cc: libc-alpha@sourceware.org, rui314@gmail.com,
	ruiu@bluewhale.systems, schwab@linux-m68k.org,
	adhemerval.zanella@linaro.org, andrew@sifive.com
Subject: [PATCH v4 0/3] RISC-V: Implement TLS Descriptors.
Date: Thu, 14 Sep 2023 17:40:30 +0900	[thread overview]
Message-ID: <20230914084033.222120-1-ishitatsuyuki@gmail.com> (raw)
In-Reply-To: <20230817181228.122674-2-ishitatsuyuki@gmail.com>

This patchset implements TLS Descriptors (TLSDESC) for RISC-V targets, per
the ratified specification at [1].

The latest version of related binutils and gcc patches are at [2,3].

Passes binutils and gcc tests for rv64gc. For glibc I only tested elf/ as
other subsystems sometimes doesn't work well under qemu. These are the
regressions:

- elf/tst-tls1-static
- elf/tst-tls1-static-non-pie

The TLSDESC relocations always needs to be handled by the dynamic linker,
but the process is skipped for static executables. I will look into
changing binutils to always relax TLSDESC to LE such that we can avoid
this issue.

This contribution is made on behalf of Blue Whale Systems, which has
copyright assignment on file with the FSF.

v2: Fix end-of-file newlines.
v3: Fix segfaulting on the slow path of TLSDESC resolver.
    Fix handling of lazy relocations.
v4: Fix compiler warnings.
    Fix fast path stack alignment pointed out by Andrew.
    Fix style issues pointed out by Adhemerval.
    Include 2 missing prerequisite commits.
    Update localplt list.

[1]: https://github.com/riscv-non-isa/riscv-elf-psabi-doc/pull/373
[2]: https://inbox.sourceware.org/binutils/20230831171345.49052-1-ishitatsuyuki@gmail.com/
[3]: https://inbox.sourceware.org/gcc-patches/20230908104923.31154-1-ishitatsuyuki@gmail.com/

Tatsuyuki Ishi (3):
  RISC-V: Add include guard for dl-tls.h.
  RISC-V: Add TLSDESC reloc definitions.
  RISC-V: Implement TLS Descriptors.

 elf/elf.h                                   |   5 +
 sysdeps/riscv/Makefile                      |  13 ++
 sysdeps/riscv/dl-lookupcfg.h                |  27 +++
 sysdeps/riscv/dl-machine.h                  |  50 ++++-
 sysdeps/riscv/dl-tls.h                      |   4 +
 sysdeps/riscv/dl-tlsdesc.S                  | 205 ++++++++++++++++++++
 sysdeps/riscv/dl-tlsdesc.h                  |  48 +++++
 sysdeps/riscv/linkmap.h                     |   1 +
 sysdeps/riscv/tlsdesc.c                     |  38 ++++
 sysdeps/riscv/tlsdesc.sym                   |  19 ++
 sysdeps/unix/sysv/linux/riscv/localplt.data |   2 +
 11 files changed, 411 insertions(+), 1 deletion(-)
 create mode 100644 sysdeps/riscv/dl-lookupcfg.h
 create mode 100644 sysdeps/riscv/dl-tlsdesc.S
 create mode 100644 sysdeps/riscv/dl-tlsdesc.h
 create mode 100644 sysdeps/riscv/tlsdesc.c
 create mode 100644 sysdeps/riscv/tlsdesc.sym

-- 
2.42.0


  parent reply	other threads:[~2023-09-14  8:40 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-17 18:12 [PATCH] " Tatsuyuki Ishi
2023-08-17 18:35 ` Andreas Schwab
2023-09-08 10:55 ` [PATCH v2] " Tatsuyuki Ishi
2023-09-13 17:26 ` [PATCH v3] " Tatsuyuki Ishi
2023-09-13 19:14   ` Adhemerval Zanella Netto
2023-09-14  8:39     ` Tatsuyuki Ishi
2023-09-14 12:09       ` Adhemerval Zanella Netto
2024-01-27  2:22         ` Fangrui Song
2023-09-13 19:07 ` [PATCH] " Andrew Waterman
2023-09-14  8:40 ` Tatsuyuki Ishi [this message]
2023-09-14  8:40   ` [PATCH v4 1/3] RISC-V: Add include guard for dl-tls.h Tatsuyuki Ishi
2024-01-27  1:14     ` Fangrui Song
2023-09-14  8:40   ` [PATCH v4 2/3] RISC-V: Add TLSDESC reloc definitions Tatsuyuki Ishi
2024-01-27  1:12     ` Fangrui Song
2023-09-14  8:40   ` [PATCH v4 3/3] RISC-V: Implement TLS Descriptors Tatsuyuki Ishi
2023-11-23 11:39     ` Florian Weimer
2024-03-29  5:55 ` [PATCH v5 0/3] " Tatsuyuki Ishi
2024-03-29  5:55   ` [PATCH v5 1/3] RISC-V: Add include guard for dl-tls.h Tatsuyuki Ishi
2024-03-29  5:55   ` [PATCH v5 2/3] RISC-V: Add TLSDESC reloc definitions Tatsuyuki Ishi
2024-03-29  5:55   ` [PATCH v5 3/3] RISC-V: Implement TLS Descriptors Tatsuyuki Ishi
2024-03-29  6:18 ` [PATCH v6 0/3] " Tatsuyuki Ishi
2024-03-29  6:18   ` [PATCH v6 1/3] RISC-V: Add include guard for dl-tls.h Tatsuyuki Ishi
2024-04-03 11:48     ` Adhemerval Zanella Netto
2024-03-29  6:18   ` [PATCH v6 2/3] RISC-V: Add TLSDESC reloc definitions Tatsuyuki Ishi
2024-04-03  5:10     ` Fangrui Song
2024-04-03  8:03     ` Andreas Schwab
2024-03-29  6:18   ` [PATCH v6 3/3] RISC-V: Implement TLS Descriptors Tatsuyuki Ishi
2024-04-01 13:23     ` Florian Weimer
2024-04-01 19:29     ` Adhemerval Zanella Netto
2024-04-02  3:36       ` Tatsuyuki Ishi
2024-04-02 13:35         ` Adhemerval Zanella Netto
2024-04-02 15:25           ` Palmer Dabbelt
2024-04-02 15:32             ` Adhemerval Zanella Netto
2024-04-02 16:37               ` Palmer Dabbelt

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=20230914084033.222120-1-ishitatsuyuki@gmail.com \
    --to=ishitatsuyuki@gmail.com \
    --cc=adhemerval.zanella@linaro.org \
    --cc=andrew@sifive.com \
    --cc=libc-alpha@sourceware.org \
    --cc=rui314@gmail.com \
    --cc=ruiu@bluewhale.systems \
    --cc=schwab@linux-m68k.org \
    /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).