RISC-V: Implement Ztso extension
authorShihua <shihua@iscas.ac.cn>
Tue, 20 Sep 2022 09:45:04 +0000 (17:45 +0800)
committerNelson Chu <nelson@rivosinc.com>
Wed, 21 Sep 2022 03:43:35 +0000 (11:43 +0800)
This patch support ZTSO extension. It will turn on the tso flag for elf_flags
once we have enabled Ztso extension.  This is intended to implement v0.1 of
the proposed specification which can be found in Chapter 25 of,
https://github.com/riscv/riscv-isa-manual/releases/download/draft-20220723-10eea63/riscv-spec.pdf.

bfd\ChangeLog:

        * elfnn-riscv.c (_bfd_riscv_elf_merge_private_bfd_data): Set TSO flag.
        * elfxx-riscv.c: Add Ztso's arch.

binutils\ChangeLog:

        * readelf.c (get_machine_flags): Set TSO flag.

gas\ChangeLog:

        * config/tc-riscv.c (riscv_set_tso): Ditto.
        (riscv_set_arch): Ditto.
        * testsuite/gas/riscv/ztso.d: New test.

include\ChangeLog:

        * elf/riscv.h (EF_RISCV_TSO): Ditto.

bfd/elfnn-riscv.c
bfd/elfxx-riscv.c
binutils/readelf.c
gas/config/tc-riscv.c
gas/testsuite/gas/riscv/ztso.d [new file with mode: 0644]
include/elf/riscv.h

index 0e0a0b09e24d36b2498eaca97a47836eae5871d7..3d2ddf4e6513879f501564be78ad9133fe601a3d 100644 (file)
@@ -3872,6 +3872,9 @@ _bfd_riscv_elf_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
   /* Allow linking RVC and non-RVC, and keep the RVC flag.  */
   elf_elfheader (obfd)->e_flags |= new_flags & EF_RISCV_RVC;
 
+  /* Allow linking TSO and non-TSO, and keep the TSO flag.  */
+  elf_elfheader (obfd)->e_flags |= new_flags & EF_RISCV_TSO;
+
   return true;
 
  fail:
index e03b312a381ba533ec880ad030267155a392c414..7eda177bd6e83f9f7071d6988da7af1e3cada4be 100644 (file)
@@ -1204,6 +1204,7 @@ static struct riscv_supported_ext riscv_supported_std_z_ext[] =
   {"zvl16384b",                ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
   {"zvl32768b",                ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
   {"zvl65536b",                ISA_SPEC_CLASS_DRAFT,           1, 0,  0 },
+  {"ztso",             ISA_SPEC_CLASS_DRAFT,           0, 1,  0 },
   {NULL, 0, 0, 0, 0}
 };
 
index cafba9a4f565b65b481e1e6cd7466b20783f39c2..b1dbcad06f5306bf84e25d7e122d4cbe3aff2949 100644 (file)
@@ -4079,6 +4079,9 @@ get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine)
          if (e_flags & EF_RISCV_RVE)
            strcat (buf, ", RVE");
 
+         if (e_flags & EF_RISCV_TSO)
+           strcat (buf, ", TSO");
+
          switch (e_flags & EF_RISCV_FLOAT_ABI)
            {
            case EF_RISCV_FLOAT_ABI_SOFT:
index 629d4be0624f3e6ea135d9ebde3c9fdf71e17fd5..b1abc8553b027531215b161db5ff8ff0e5c534bc 100644 (file)
@@ -257,6 +257,14 @@ riscv_set_rvc (bool rvc_value)
   riscv_opts.rvc = rvc_value;
 }
 
+/* Turn on the tso flag for elf_flags once we have enabled ztso extension.  */
+
+static void
+riscv_set_tso ()
+{
+  elf_flags |= EF_RISCV_TSO;
+}
+
 /* This linked list records all enabled extensions, which are parsed from
    the architecture string.  The architecture string can be set by the
    -march option, the elf architecture attributes, and the --with-arch
@@ -307,6 +315,9 @@ riscv_set_arch (const char *s)
   riscv_set_rvc (false);
   if (riscv_subset_supports (&riscv_rps_as, "c"))
     riscv_set_rvc (true);
+
+  if (riscv_subset_supports (&riscv_rps_as, "ztso"))
+    riscv_set_tso ();
 }
 
 /* Indicate -mabi option is explictly set.  */
diff --git a/gas/testsuite/gas/riscv/ztso.d b/gas/testsuite/gas/riscv/ztso.d
new file mode 100644 (file)
index 0000000..cb038db
--- /dev/null
@@ -0,0 +1,8 @@
+#as: -march=rv64i_ztso
+#readelf: -h
+#source: empty.s
+
+ELF Header:
+#...
+[      ]+Flags:[       ]+0x10, TSO.*
+#...
\ No newline at end of file
index 9b3ea376ff3cfc7ee542464fb30d95e367f5a61f..d7b5c09d5c36cb8c5bc4c6c60e646c67581225f4 100644 (file)
@@ -121,6 +121,9 @@ END_RELOC_NUMBERS (R_RISCV_max)
 /* RISC-V specific values for st_other.  */
 #define STO_RISCV_VARIANT_CC 0x80
 
+/* File uses the TSO model. */
+#define EF_RISCV_TSO 0x0010
+
 /* Additional section types.  */
 #define SHT_RISCV_ATTRIBUTES 0x70000003 /* Section holds attributes.  */