return attr_str;
}
+
+/* Remove the SUBSET from the subset list. */
+
+static void
+riscv_remove_subset (riscv_subset_list_t *subset_list,
+ const char *subset)
+{
+ riscv_subset_t *current = subset_list->head;
+ riscv_subset_t *pre = NULL;
+ for (; current != NULL; pre = current, current = current->next)
+ {
+ if (strcmp (current->name, subset) == 0)
+ {
+ if (pre == NULL)
+ subset_list->head = current->next;
+ else
+ pre->next = current->next;
+ if (current->next == NULL)
+ subset_list->tail = pre;
+ free ((void *) current->name);
+ free (current);
+ break;
+ }
+ }
+}
+
+/* Add/Remove an extension to/from the subset list. This is used for
+ the .option rvc or norvc. */
+
+bool
+riscv_update_subset (riscv_parse_subset_t *rps,
+ const char *subset,
+ bool removed)
+{
+ if (strlen (subset) == 0
+ || (strlen (subset) == 1
+ && riscv_ext_order[(*subset - 'a')] == 0)
+ || (strlen (subset) > 1
+ && rps->check_unknown_prefixed_ext
+ && !riscv_recognized_prefixed_ext (subset)))
+ {
+ rps->error_handler
+ (_("riscv_update_subset: unknown ISA extension `%s'"), subset);
+ return false;
+ }
+
+ if (removed)
+ {
+ if (strcmp (subset, "i") == 0)
+ {
+ rps->error_handler
+ (_("riscv_update_subset: cannot remove extension i from "
+ "the subset list"));
+ return false;
+ }
+ riscv_remove_subset (rps->subset_list, subset);
+ }
+ else
+ riscv_parse_add_subset (rps, subset,
+ RISCV_UNKNOWN_VERSION,
+ RISCV_UNKNOWN_VERSION, true);
+
+ riscv_parse_add_implicit_subsets (rps);
+ return riscv_parse_check_conflicts (rps);
+}
{
int pic; /* Generate position-independent code. */
int rvc; /* Generate RVC code. */
- int rve; /* Generate RVE code. */
int relax; /* Emit relocs the linker is allowed to relax. */
int arch_attr; /* Emit architecture and privileged elf attributes. */
int csr_check; /* Enable the CSR checking. */
{
0, /* pic */
0, /* rvc */
- 0, /* rve */
1, /* relax */
DEFAULT_RISCV_ATTR, /* arch_attr */
0, /* csr_check */
riscv_opts.rvc = rvc_value;
}
-/* Enable or disable the rve flags for riscv_opts. */
-
-static void
-riscv_set_rve (bool rve_value)
-{
- riscv_opts.rve = rve_value;
-}
-
/* 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
riscv_subset_supports (const char *feature)
{
struct riscv_subset_t *subset;
-
- if (riscv_opts.rvc && (strcasecmp (feature, "c") == 0))
- return true;
-
return riscv_lookup_subset (&riscv_subsets, feature, &subset);
}
riscv_release_subset_list (&riscv_subsets);
riscv_parse_subset (&rps, s);
- /* To support .option rvc and rve. */
riscv_set_rvc (false);
if (riscv_subset_supports ("c"))
riscv_set_rvc (true);
- riscv_set_rve (false);
- if (riscv_subset_supports ("e"))
- riscv_set_rve (true);
}
/* Indicate -mabi option is explictly set. */
if (r == NULL || DECODE_REG_CLASS (r) != class)
return -1;
- if (riscv_opts.rve && class == RCLASS_GPR && DECODE_REG_NUM (r) > 15)
+ if (riscv_subset_supports ("e")
+ && class == RCLASS_GPR
+ && DECODE_REG_NUM (r) > 15)
return -1;
return DECODE_REG_NUM (r);
ch = *input_line_pointer;
*input_line_pointer = '\0';
+ riscv_parse_subset_t rps;
+ rps.subset_list = &riscv_subsets;
+ rps.error_handler = as_bad;
+ rps.xlen = &xlen;
+ rps.isa_spec = default_isa_spec;
+ rps.check_unknown_prefixed_ext = true;
+
if (strcmp (name, "rvc") == 0)
- riscv_set_rvc (true);
+ {
+ riscv_update_subset (&rps, "c", false);
+ riscv_set_rvc (true);
+ }
else if (strcmp (name, "norvc") == 0)
- riscv_set_rvc (false);
+ {
+ riscv_update_subset (&rps, "c", true);
+ riscv_set_rvc (false);
+ }
else if (strcmp (name, "pic") == 0)
riscv_opts.pic = true;
else if (strcmp (name, "nopic") == 0)