authorgravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2024-08-07 09:03:05-07:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2024-08-07 09:03:05-07:00
loge912411fbedab06f4b7313404c9bb88f9e9e6c44
treee584ab086920167e67666eb8840972b1afd84b6d
parentcf2558e97103c0f8412cdf41c4120baa09775086

Run update_cpu_features against LLVM 18.1.8

- RISCV unaligned-scalar-mem was added in LLVM 18.1.6 - Fixes arm v9_5a confusion

2 files changed, 15 insertions(+), 8 deletions(-)

lib/std/Target/arm.zig+9-8
......@@ -86,6 +86,7 @@ pub const Feature = enum {
8686 has_v9_2a,
8787 has_v9_3a,
8888 has_v9_4a,
89 has_v9_5a,
8990 has_v9a,
9091 hwdiv,
9192 hwdiv_arm,
......@@ -754,6 +755,13 @@ pub const all_features = blk: {
754755 .has_v9_3a,
755756 }),
756757 };
758 result[@intFromEnum(Feature.has_v9_5a)] = .{
759 .llvm_name = "v9.5a",
760 .description = "Support ARM v9.5a instructions",
761 .dependencies = featureSet(&[_]Feature{
762 .has_v9_4a,
763 }),
764 };
757765 result[@intFromEnum(Feature.has_v9a)] = .{
758766 .llvm_name = "v9a",
759767 .description = "Support ARM v9a instructions",
......@@ -1582,20 +1590,13 @@ pub const all_features = blk: {
15821590 .db,
15831591 .dsp,
15841592 .fp_armv8,
1593 .has_v9_5a,
15851594 .mp,
15861595 .ras,
15871596 .trustzone,
1588 .v9_5a,
15891597 .virtualization,
15901598 }),
15911599 };
1592 result[@intFromEnum(Feature.v9_5a)] = .{
1593 .llvm_name = "v9.5a",
1594 .description = "Support ARM v9.5a instructions",
1595 .dependencies = featureSet(&[_]Feature{
1596 .has_v9_4a,
1597 }),
1598 };
15991600 result[@intFromEnum(Feature.v9a)] = .{
16001601 .llvm_name = "armv9-a",
16011602 .description = "ARMv9a architecture",
lib/std/Target/riscv.zig+6
......@@ -78,6 +78,7 @@ pub const Feature = enum {
7878 svnapot,
7979 svpbmt,
8080 tagged_globals,
81 unaligned_scalar_mem,
8182 use_postra_scheduler,
8283 v,
8384 ventana_veyron,
......@@ -584,6 +585,11 @@ pub const all_features = blk: {
584585 .description = "Use an instruction sequence for taking the address of a global that allows a memory tag in the upper address bits",
585586 .dependencies = featureSet(&[_]Feature{}),
586587 };
588 result[@intFromEnum(Feature.unaligned_scalar_mem)] = .{
589 .llvm_name = "unaligned-scalar-mem",
590 .description = "Has reasonably performant unaligned scalar loads and stores",
591 .dependencies = featureSet(&[_]Feature{}),
592 };
587593 result[@intFromEnum(Feature.use_postra_scheduler)] = .{
588594 .llvm_name = "use-postra-scheduler",
589595 .description = "Schedule again after register allocation",