Commit 250e088b by Richard Earnshaw Committed by Richard Earnshaw

[arm] Allow +opt on arbitrary cpu and architecture


This is the main patch to provide the infrastructure for adding
feature extensions to CPU and architecture specifications.  It does not,
however, add all the extensions that we intend to support (just a small
number to permit some basic testing).  Now, instead of having specific
entries in the architecture table for variants such as armv8-a+crc, the
crc extension is specified as an optional component of the armv8-a
architecture entry.  Similar control can be added to CPU option names.
In both cases the list of permitted options is controlled by the main
architecture or CPU name to prevent arbitrary cross-products of options.

	* config/arm/arm-cpus.in (armv8-a): Add options crc, simd crypto and
	nofp.
	(armv8-a+crc): Delete.
	(armv8.1-a): Add options simd, crypto and nofp.
	(armv8.2-a): Add options fp16, simd, crypto and nofp.
	(armv8.2-a+fp16): Delete.
	(armv8-m.main): Add option dsp.
	(armv8-m.main+dsp): Delete.
	(cortex-a8): Add fpu.  Add nofp option.
	(cortex-a9): Add fpu.  Add nofp and nosimd options.
	* config/arm/parsecpu.awk (gen_data): Generate option tables and
	link to main cpu and architecture data structures.
	(gen_comm_data): Only put isa attributes from the main architecture
	in common tables.
	(option): New statement for architecture and CPU entries.
	* arm.c (struct cpu_option): New structure.
	(struct processors): Add entry for options.
	(arm_unrecognized_feature): New function.
	(arm_parse_arch_cpu_name): Ignore any characters after the first
	'+' character.
	(arm_parse_arch_cpu_feature): New function.
	(arm_configure_build_target): Separate out any CPU and architecture
	features and parse separately.  Don't error out if -mfpu=auto is
	used with only an architecture string.
	(arm_print_asm_arch_directives): New function.
	(arm_file_start): Call it.
	* config/arm/arm-cpu-cdata.h: Regenerated.
	* config/arm/arm-cpu-data.h: Likewise.
	* config/arm/arm-tables.opt: Likewise.

From-SVN: r249282
parent 53c5aa99
2017-06-16 Richard Earnshaw <rearnsha@arm.com>
* config/arm/arm-cpus.in (armv8-a): Add options crc, simd crypto and
nofp.
(armv8-a+crc): Delete.
(armv8.1-a): Add options simd, crypto and nofp.
(armv8.2-a): Add options fp16, simd, crypto and nofp.
(armv8.2-a+fp16): Delete.
(armv8-m.main): Add option dsp.
(armv8-m.main+dsp): Delete.
(cortex-a8): Add fpu. Add nofp option.
(cortex-a9): Add fpu. Add nofp and nosimd options.
* config/arm/parsecpu.awk (gen_data): Generate option tables and
link to main cpu and architecture data structures.
(gen_comm_data): Only put isa attributes from the main architecture
in common tables.
(option): New statement for architecture and CPU entries.
* arm.c (struct cpu_option): New structure.
(struct processors): Add entry for options.
(arm_unrecognized_feature): New function.
(arm_parse_arch_cpu_name): Ignore any characters after the first
'+' character.
(arm_parse_arch_cpu_feature): New function.
(arm_configure_build_target): Separate out any CPU and architecture
features and parse separately. Don't error out if -mfpu=auto is
used with only an architecture string.
(arm_print_asm_arch_directives): New function.
(arm_file_start): Call it.
* config/arm/arm-cpu-cdata.h: Regenerated.
* config/arm/arm-cpu-data.h: Likewise.
* config/arm/arm-tables.opt: Likewise.
2017-06-16 Richard Earnshaw <rearnsha@arm.com>
* config/arm/elf.h (ASM_SPEC): Only pass -mfpu through to the
assembler when it is not -mfpu=auto.
......
......@@ -577,6 +577,7 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
"cortex-a8",
{
ISA_ARMv7a,
ISA_VFPv3,ISA_NEON,
isa_nobit
},
},
......@@ -584,6 +585,7 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
"cortex-a9",
{
ISA_ARMv7a,
ISA_VFPv3,ISA_NEON,
isa_nobit
},
},
......@@ -693,49 +695,49 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
{
"cortex-a32",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a35",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a53",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a57",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a72",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a73",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"exynos-m1",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
......@@ -749,28 +751,28 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
{
"cortex-a57.cortex-a53",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a72.cortex-a53",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a73.cortex-a35",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
{
"cortex-a73.cortex-a53",
{
ISA_ARMv8a,isa_bit_crc32,
ISA_ARMv8a,
isa_nobit
},
},
......@@ -784,7 +786,7 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
{
"cortex-m33",
{
ISA_ARMv8m_main,isa_bit_ARMv7em,
ISA_ARMv8m_main,
isa_nobit
},
},
......@@ -978,13 +980,6 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
},
},
{
"armv8-a+crc",
{
ISA_ARMv8a,isa_bit_crc32,
isa_nobit
},
},
{
"armv8.1-a",
{
ISA_ARMv8_1a,
......@@ -999,13 +994,6 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
},
},
{
"armv8.2-a+fp16",
{
ISA_ARMv8_2a,isa_bit_fp16,
isa_nobit
},
},
{
"armv8-m.base",
{
ISA_ARMv8m_base,
......@@ -1020,13 +1008,6 @@ static const struct arm_arch_core_flag arm_arch_core_flags[] =
},
},
{
"armv8-m.main+dsp",
{
ISA_ARMv8m_main,isa_bit_ARMv7em,
isa_nobit
},
},
{
"iwmmxt",
{
ISA_ARMv5te,isa_bit_xscale,isa_bit_iwmmxt,
......
......@@ -237,20 +237,20 @@ begin arch armv8-a
tune flags CO_PROC
base 8A
isa ARMv8a
option crc add bit_crc32
option simd add FP_ARMv8 NEON
option crypto add FP_ARMv8 NEON CRYPTO
option nofp remove FP_ARMv8 NEON CRYPTO
end arch armv8-a
begin arch armv8-a+crc
tune for cortex-a53
tune flags CO_PROC
base 8A
isa ARMv8a bit_crc32
end arch armv8-a+crc
begin arch armv8.1-a
tune for cortex-a53
tune flags CO_PROC
base 8A
isa ARMv8_1a
option simd add FP_ARMv8 NEON
option crypto add FP_ARMv8 NEON CRYPTO
option nofp remove FP_ARMv8 NEON CRYPTO
end arch armv8.1-a
begin arch armv8.2-a
......@@ -258,15 +258,12 @@ begin arch armv8.2-a
tune flags CO_PROC
base 8A
isa ARMv8_2a
option fp16 add bit_fp16 FP_ARMv8 NEON
option simd add FP_ARMv8 NEON
option crypto add FP_ARMv8 NEON CRYPTO
option nofp remove bit_fp16 FP_ARMv8 NEON CRYPTO
end arch armv8.2-a
begin arch armv8.2-a+fp16
tune for cortex-a53
tune flags CO_PROC
base 8A
isa ARMv8_2a bit_fp16
end arch armv8.2-a+fp16
begin arch armv8-m.base
tune for cortex-m23
base 8M_BASE
......@@ -278,15 +275,9 @@ begin arch armv8-m.main
tune flags CO_PROC
base 8M_MAIN
isa ARMv8m_main
option dsp add bit_ARMv7em
end arch armv8-m.main
begin arch armv8-m.main+dsp
tune for cortex-m33
tune flags CO_PROC
base 8M_MAIN
isa ARMv8m_main bit_ARMv7em
end arch armv8-m.main+dsp
begin arch iwmmxt
tune for iwmmxt
tune flags LDSCHED STRONG XSCALE
......@@ -310,6 +301,7 @@ end arch iwmmxt2
# architecture <name>
# [fpu <name>]
# [isa <additional-isa-flags-list>]
# [option <name> add|remove <isa-list>]*
# [costs <name>]
# end cpu <name>
#
......@@ -847,6 +839,8 @@ begin cpu cortex-a8
cname cortexa8
tune flags LDSCHED
architecture armv7-a
fpu neon-vfpv3
option nofp remove NEON VFPv3
costs cortex_a8
end cpu cortex-a8
......@@ -854,6 +848,9 @@ begin cpu cortex-a9
cname cortexa9
tune flags LDSCHED
architecture armv7-a
fpu neon-vfpv3
option nofp remove NEON VFPv3
option nosimd remove NEON
costs cortex_a9
end cpu cortex-a9
......
......@@ -434,31 +434,22 @@ EnumValue
Enum(arm_arch) String(armv8-a) Value(26)
EnumValue
Enum(arm_arch) String(armv8-a+crc) Value(27)
Enum(arm_arch) String(armv8.1-a) Value(27)
EnumValue
Enum(arm_arch) String(armv8.1-a) Value(28)
Enum(arm_arch) String(armv8.2-a) Value(28)
EnumValue
Enum(arm_arch) String(armv8.2-a) Value(29)
Enum(arm_arch) String(armv8-m.base) Value(29)
EnumValue
Enum(arm_arch) String(armv8.2-a+fp16) Value(30)
Enum(arm_arch) String(armv8-m.main) Value(30)
EnumValue
Enum(arm_arch) String(armv8-m.base) Value(31)
Enum(arm_arch) String(iwmmxt) Value(31)
EnumValue
Enum(arm_arch) String(armv8-m.main) Value(32)
EnumValue
Enum(arm_arch) String(armv8-m.main+dsp) Value(33)
EnumValue
Enum(arm_arch) String(iwmmxt) Value(34)
EnumValue
Enum(arm_arch) String(iwmmxt2) Value(35)
Enum(arm_arch) String(iwmmxt2) Value(32)
Enum
Name(arm_fpu) Type(enum fpu_type)
......
......@@ -975,6 +975,13 @@ int arm_regs_in_sequence[] =
/* Initialization code. */
struct cpu_option
{
const char *const name;
bool remove;
const enum isa_feature isa_bits[isa_num_bits];
};
struct processors
{
const char *const name;
......@@ -982,7 +989,8 @@ struct processors
unsigned int tune_flags;
const char *arch;
enum base_architecture base_arch;
enum isa_feature isa_bits[isa_num_bits];
const enum isa_feature isa_bits[isa_num_bits];
const struct cpu_option* const opttab;
const struct tune_params *const tune;
};
......@@ -3068,9 +3076,13 @@ arm_parse_arch_cpu_name (const struct processors *list, const char *optname,
const char *target)
{
const struct processors *entry;
const char *end = strchr (target, '+');
size_t len = end ? end - target : strlen (target);
for (entry = list; entry->name != NULL; entry++)
{
if (streq (entry->name, target))
if (strncmp (entry->name, target, len) == 0
&& entry->name[len] == '\0')
return entry;
}
......@@ -3079,6 +3091,92 @@ arm_parse_arch_cpu_name (const struct processors *list, const char *optname,
return NULL;
}
/* OPT isn't a recognized feature. Print a suitable error message and
suggest a possible value. Always print the list of permitted
values. */
static void
arm_unrecognized_feature (const char *opt, size_t len,
const struct processors *target)
{
char *this_opt = XALLOCAVEC (char, len+1);
auto_vec<const char*> candidates;
strncpy (this_opt, opt, len);
this_opt[len] = 0;
error_at (input_location, "%qs does not support feature %qs", target->name,
this_opt);
for (const cpu_option *list = target->opttab; list->name != NULL; list++)
candidates.safe_push (list->name);
char *s;
const char *hint = candidates_list_and_hint (this_opt, s, candidates);
if (hint)
inform (input_location, "valid feature names are: %s; did you mean %qs?",
s, hint);
else
inform (input_location, "valid feature names are: %s", s);
XDELETEVEC (s);
}
/* Parse any feature extensions to add to (or remove from) the
permitted ISA selection. */
static void
arm_parse_arch_cpu_features (sbitmap isa, const struct processors *target,
const char *opts_in)
{
const char *opts = opts_in;
if (!opts)
return;
if (!target->opttab)
{
error_at (input_location, "%s does not take any feature options",
target->name);
return;
}
while (opts)
{
gcc_assert (*opts == '+');
const struct cpu_option *entry;
const char *end = strchr (++opts, '+');
size_t len = end ? end - opts : strlen (opts);
bool matched = false;
for (entry = target->opttab; !matched && entry->name != NULL; entry++)
{
if (strncmp (entry->name, opts, len) == 0
&& entry->name[len] == '\0')
{
if (isa)
{
const enum isa_feature *f = entry->isa_bits;
if (entry->remove)
{
while (*f != isa_nobit)
bitmap_clear_bit (isa, *(f++));
}
else
{
while (*f != isa_nobit)
bitmap_set_bit (isa, *(f++));
}
}
matched = true;
}
}
if (!matched)
arm_unrecognized_feature (opts, len, target);
opts = end;
}
}
static sbitmap isa_all_fpubits;
static sbitmap isa_quirkbits;
......@@ -3095,35 +3193,50 @@ arm_configure_build_target (struct arm_build_target *target,
const struct processors *arm_selected_arch = NULL;
const struct processors *arm_selected_cpu = NULL;
const struct arm_fpu_desc *arm_selected_fpu = NULL;
const char *tune_opts = NULL;
const char *arch_opts = NULL;
const char *cpu_opts = NULL;
bitmap_clear (target->isa);
target->core_name = NULL;
target->arch_name = NULL;
if (opts_set->x_arm_arch_string)
arm_selected_arch = arm_parse_arch_cpu_name (all_architectures,
"-march",
opts->x_arm_arch_string);
{
arm_selected_arch = arm_parse_arch_cpu_name (all_architectures,
"-march",
opts->x_arm_arch_string);
arch_opts = strchr (opts->x_arm_arch_string, '+');
}
if (opts_set->x_arm_cpu_string)
{
arm_selected_cpu = arm_parse_arch_cpu_name (all_cores, "-mcpu",
opts->x_arm_cpu_string);
cpu_opts = strchr (opts->x_arm_cpu_string, '+');
arm_selected_tune = arm_selected_cpu;
/* If taking the tuning from -mcpu, we don't need to rescan the
options for tuning. */
}
if (opts_set->x_arm_tune_string)
arm_selected_tune = arm_parse_arch_cpu_name (all_cores, "-mtune",
opts->x_arm_tune_string);
{
arm_selected_tune = arm_parse_arch_cpu_name (all_cores, "-mtune",
opts->x_arm_tune_string);
tune_opts = strchr (opts->x_arm_tune_string, '+');
}
if (arm_selected_arch)
{
arm_initialize_isa (target->isa, arm_selected_arch->isa_bits);
arm_parse_arch_cpu_features (target->isa, arm_selected_arch, arch_opts);
if (arm_selected_cpu)
{
auto_sbitmap cpu_isa (isa_num_bits);
arm_initialize_isa (cpu_isa, arm_selected_cpu->isa_bits);
arm_parse_arch_cpu_features (cpu_isa, arm_selected_cpu, cpu_opts);
bitmap_xor (cpu_isa, cpu_isa, target->isa);
/* Ignore any bits that are quirk bits. */
bitmap_and_compl (cpu_isa, cpu_isa, isa_quirkbits);
......@@ -3163,6 +3276,7 @@ arm_configure_build_target (struct arm_build_target *target,
{
target->core_name = arm_selected_cpu->name;
arm_initialize_isa (target->isa, arm_selected_cpu->isa_bits);
arm_parse_arch_cpu_features (target->isa, arm_selected_cpu, cpu_opts);
}
/* If the user did not specify a processor, choose one for them. */
else
......@@ -3283,14 +3397,12 @@ arm_configure_build_target (struct arm_build_target *target,
bitmap_and_compl (target->isa, target->isa, isa_all_fpubits);
bitmap_ior (target->isa, target->isa, fpu_bits);
}
else if (target->core_name == NULL)
/* To support this we need to be able to parse FPU feature options
from the architecture string. */
sorry ("-mfpu=auto not currently supported without an explicit CPU.");
/* The selected cpu may be an architecture, so lookup tuning by core ID. */
if (!arm_selected_tune)
arm_selected_tune = &all_cores[arm_selected_cpu->core];
else /* Validate the features passed to -mtune. */
arm_parse_arch_cpu_features (NULL, arm_selected_tune, tune_opts);
/* Finish initializing the target structure. */
target->arch_pp_name = arm_selected_cpu->arch;
......@@ -26165,6 +26277,39 @@ arm_print_tune_info (void)
(int) current_tune->sched_autopref);
}
/* Print .arch and .arch_extension directives corresponding to the
current architecture configuration. */
static void
arm_print_asm_arch_directives ()
{
const struct processors *arch
= arm_parse_arch_cpu_name (all_architectures, "-march",
arm_active_target.arch_name);
auto_sbitmap opt_bits (isa_num_bits);
gcc_assert (arch);
asm_fprintf (asm_out_file, "\t.arch %s\n", arm_active_target.arch_name);
if (!arch->opttab)
return;
for (const struct cpu_option *opt = arch->opttab; opt->name != NULL; opt++)
{
if (!opt->remove)
{
arm_initialize_isa (opt_bits, opt->isa_bits);
/* If every feature bit of this option is set in the target
ISA specification, print out the option name. However,
don't print anything if all the bits are part of the
FPU specification. */
if (bitmap_subset_p (opt_bits, arm_active_target.isa)
&& !bitmap_subset_p (opt_bits, isa_all_fpubits))
asm_fprintf (asm_out_file, "\t.arch_extension %s\n", opt->name);
}
}
}
static void
arm_file_start (void)
{
......@@ -26179,7 +26324,7 @@ arm_file_start (void)
assembler would not need to know about all new CPU names as
they are added. */
if (!arm_active_target.core_name)
{
{
/* armv7ve doesn't support any extensions. */
if (strcmp (arm_active_target.arch_name, "armv7ve") == 0)
{
......@@ -26192,24 +26337,8 @@ arm_file_start (void)
asm_fprintf (asm_out_file, "\t.arch_extension mp\n");
}
else
{
const char* pos = strchr (arm_active_target.arch_name, '+');
if (pos)
{
char buf[32];
gcc_assert (strlen (arm_active_target.arch_name)
<= sizeof (buf) / sizeof (*pos));
strncpy (buf, arm_active_target.arch_name,
(pos - arm_active_target.arch_name) * sizeof (*pos));
buf[pos - arm_active_target.arch_name] = '\0';
asm_fprintf (asm_out_file, "\t.arch %s\n", buf);
asm_fprintf (asm_out_file, "\t.arch_extension %s\n", pos + 1);
}
else
asm_fprintf (asm_out_file, "\t.arch %s\n",
arm_active_target.arch_name);
}
}
arm_print_asm_arch_directives ();
}
else if (strncmp (arm_active_target.core_name, "generic", 7) == 0)
asm_fprintf (asm_out_file, "\t.arch %s\n",
arm_active_target.core_name + 8);
......@@ -26233,7 +26362,7 @@ arm_file_start (void)
}
/* Some of these attributes only apply when the corresponding features
are used. However we don't have any easy way of figuring this out.
are used. However we don't have any easy way of figuring this out.
Conservatively record the setting that would have been used. */
if (flag_rounding_math)
......
......@@ -117,11 +117,28 @@ function gen_headers () {
function gen_data () {
boilerplate("C")
ncpus = split (cpu_list, cpus)
for (n = 1; n <= ncpus; n++) {
if (cpus[n] in cpu_opts) {
print "static const struct cpu_option cpu_opttab_" \
cpu_cnames[cpus[n]] "[] = {"
nopts = split (cpu_opts[cpus[n]], opts)
for (opt = 1; opt <= nopts; opt++) {
print " {"
print " \"" opts[opt] "\", " \
cpu_opt_remove[cpus[n],opts[opt]] ","
print " { " cpu_opt_isa[cpus[n],opts[opt]] ", isa_nobit }"
print " },"
}
print " { NULL, false, {isa_nobit}}"
print "};\n"
}
}
print "static const struct processors all_cores[] ="
print "{"
ncpus = split (cpu_list, cpus)
for (n = 1; n <= ncpus; n++) {
print " {"
print " \"" cpus[n] "\","
......@@ -137,30 +154,60 @@ function gen_data () {
if (cpus[n] in cpu_tune_flags) {
print " (" cpu_tune_flags[cpus[n]] "),"
} else print " 0,"
if (! (cpu_arch[cpus[n]] in arch_isa)) {
fatal("unknown arch " cpu_arch[cpus[n]] " for cpu " cpus[n])
nfeats = split (cpu_arch[cpus[n]], feats, "+")
if (! (feats[1] in arch_isa)) {
fatal("unknown arch " feats[1] " for cpu " cpus[n])
}
print " \"" arch_base[cpu_arch[cpus[n]]] "\", BASE_ARCH_" \
arch_base[cpu_arch[cpus[n]]] ","
print " \"" arch_base[feats[1]] "\", BASE_ARCH_" \
arch_base[feats[1]] ","
print " {"
print " " arch_isa[cpu_arch[cpus[n]]] ","
print " " arch_isa[feats[1]] ","
for (m = 2; m <= nfeats; m++) {
if (! ((feats[1], feats[m]) in arch_opt_isa)) {
fatal("unknown feature " feats[m] " for architecture " feats[1])
}
if (arch_opt_remove[feats[1],feats[m]] == "true") {
fatal("cannot remove features from architecture specs")
}
print " " arch_opt_isa[feats[1],feats[m]] ","
}
if (cpus[n] in cpu_fpu) print " " fpu_isa[cpu_fpu[cpus[n]]] ","
if (cpus[n] in cpu_isa) print " " cpu_isa[cpus[n]] ","
print " isa_nobit"
print " },"
if (cpus[n] in cpu_opts) {
print " cpu_opttab_" cpu_cnames[cpus[n]] ","
} else print " NULL,"
print " &arm_" cpu_cost[cpus[n]] "_tune"
print " },"
}
print " {NULL, TARGET_CPU_arm_none, 0, NULL, BASE_ARCH_0," \
" {isa_nobit}, NULL}"
" {isa_nobit}, NULL, NULL}"
print "};\n"
narchs = split (arch_list, archs)
for (n = 1; n <= narchs; n++) {
if (archs[n] in arch_opts) {
print "static const struct cpu_option arch_opttab_" \
arch_cnames[archs[n]] "[] = {"
nopts = split (arch_opts[archs[n]], opts)
for (opt = 1; opt <= nopts; opt++) {
print " {"
print " \"" opts[opt] "\", " \
arch_opt_remove[archs[n],opts[opt]] ","
print " { " arch_opt_isa[archs[n],opts[opt]] ", isa_nobit }"
print " },"
}
print " { NULL, false, {isa_nobit}}"
print "};\n"
}
}
print "static const struct processors all_architectures[] ="
print "{"
narchs = split (arch_list, archs)
for (n = 1; n <= narchs; n++) {
print " {"
if (! (arch_tune_for[archs[n]] in cpu_cnames)) {
......@@ -178,12 +225,15 @@ function gen_data () {
print " " arch_isa[archs[n]] ","
print " isa_nobit"
print " },"
if (archs[n] in arch_opts) {
print " arch_opttab_" arch_cnames[archs[n]] ","
} else print " NULL,"
print " NULL"
print " },"
}
print " {NULL, TARGET_CPU_arm_none, 0, NULL, BASE_ARCH_0," \
" {isa_nobit}, NULL}"
" {isa_nobit}, NULL, NULL}"
print "};\n"
print "const struct arm_fpu_desc all_fpus[] ="
......@@ -215,11 +265,15 @@ function gen_comm_data () {
for (n = 1; n <= ncpus; n++) {
print " {"
print " \"" cpus[n] "\","
if (! (cpu_arch[cpus[n]] in arch_isa)) {
fatal("unknown arch " cpu_arch[cpus[n]] " for cpu " cpus[n])
# Just truncate the architecture name at the beginning of the
# extensions. We don't need any of those here (at present).
arch_name = cpu_arch[cpus[n]];
sub("+.*", "", arch_name)
if (! (arch_name in arch_isa)) {
fatal("unknown arch " arch_name " for cpu " cpus[n])
}
print " {"
print " " arch_isa[cpu_arch[cpus[n]]] ","
print " " arch_isa[arch_name] ","
if (cpus[n] in cpu_fpu) print " " fpu_isa[cpu_fpu[cpus[n]]] ","
if (cpus[n] in cpu_isa) print " " cpu_isa[cpus[n]] ","
print " isa_nobit"
......@@ -382,6 +436,8 @@ BEGIN {
fatal("arch definition lacks an \"isa\" statement")
}
arch_list = arch_list " " arch_name
arch_cnames[arch_name] = arch_name
gsub(/[-+.]/, "_", arch_cnames[arch_name])
arch_name = ""
parse_ok = 1
}
......@@ -453,6 +509,32 @@ BEGIN {
parse_ok = 1
}
/^[ ]*option / {
name=$2
if ($3 == "add") {
remove = "false"
} else if ($3 == "remove") {
remove = "true"
} else fatal("syntax: option <name> add|remove isa-list")
flags=""
flag_count = NF
for (n = 4; n <= flag_count; n++) {
if (n == 4) {
flags = isa_pfx($n)
} else flags = flags "," isa_pfx($n)
}
if (cpu_name != "") {
cpu_opts[cpu_name] = cpu_opts[cpu_name] " " name
cpu_opt_remove[cpu_name,name] = remove
cpu_opt_isa[cpu_name,name] = flags
} else if (arch_name != "") {
arch_opts[arch_name] = arch_opts[arch_name] " " name
arch_opt_remove[arch_name,name] = remove
arch_opt_isa[arch_name,name] = flags
} else fatal("\"option\" outside of cpu or arch block")
parse_ok = 1
}
/^[ ]*costs / {
if (cpu_name == "") fatal("\"costs\" outside of cpu block")
cpu_cost[cpu_name] = $2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment