RISC-V: Add support for numbered ISA mapping strings
authorJoseph Faulls <Joseph.Faulls@imgtec.com>
Wed, 27 Sep 2023 12:42:55 +0000 (12:42 +0000)
committerNelson Chu <nelson@rivosinc.com>
Fri, 13 Oct 2023 01:00:52 +0000 (09:00 +0800)
The elf psabi allows for mapping symbols to be of the form $x<ISA>.<any>

opcodes/
* riscv-dis.c (riscv_get_map_state): allow mapping symbol to
be suffixed by a unique identifier .<any>

opcodes/riscv-dis.c

index c0fd0625a2ddde6a7ebf19f80ea208d70adfd3b9..216916e9426de42b297a298391e5732065cd22a4 100644 (file)
@@ -869,7 +869,21 @@ riscv_get_map_state (int n,
     {
       *state = MAP_INSN;
       riscv_release_subset_list (&riscv_subsets);
-      riscv_parse_subset (&riscv_rps_dis, name + 2);
+
+      /* ISA mapping string may be numbered, suffixed with '.n'. Do not
+        consider this as part of the ISA string.  */
+      char *suffix = strchr (name, '.');
+      if (suffix)
+       {
+         int suffix_index = (int)(suffix - name);
+         char *name_substr = xmalloc (suffix_index + 1);
+         strncpy (name_substr, name, suffix_index);
+         name_substr[suffix_index] = '\0';
+         riscv_parse_subset (&riscv_rps_dis, name_substr + 2);
+         free (name_substr);
+       }
+      else
+       riscv_parse_subset (&riscv_rps_dis, name + 2);
     }
   else
     return false;