authorgravatar for carl@astholm.seCarl Åstholm <carl@astholm.se> 2024-01-09 17:49:01+01:00
committergravatar for carl@astholm.seCarl Åstholm <carl@astholm.se> 2024-01-09 17:53:43+01:00
log0cd508b09ffe194dbe6b08ea9f17cfa58f8d9e8b
tree916d4299df42b8c89ce9c891283e9603a5c135d4
parentf2dfd7d212f8ec01c8bc6a98e0f7a139c4be5b14

Re-run update_cpu_features (LLVM 17)

release/17.x branch, commit 8f4dd44097c9ae25dd203d5ac87f3b48f854bba8 (same as the previous run)

1 files changed, 3 insertions(+), 11 deletions(-)

lib/std/Target/arm.zig+3-11
......@@ -2204,9 +2204,7 @@ pub const cpu = struct {
22042204 .name = "cortex_m33",
22052205 .llvm_name = "cortex-m33",
22062206 .features = featureSet(&[_]Feature{
2207 .dsp,
22082207 .fix_cmse_cve_2021_35465,
2209 .fp_armv8d16sp,
22102208 .loop_align,
22112209 .no_branch_predictor,
22122210 .slowfpvfmx,
......@@ -2219,9 +2217,7 @@ pub const cpu = struct {
22192217 .name = "cortex_m35p",
22202218 .llvm_name = "cortex-m35p",
22212219 .features = featureSet(&[_]Feature{
2222 .dsp,
22232220 .fix_cmse_cve_2021_35465,
2224 .fp_armv8d16sp,
22252221 .loop_align,
22262222 .no_branch_predictor,
22272223 .slowfpvfmx,
......@@ -2240,17 +2236,15 @@ pub const cpu = struct {
22402236 .slowfpvmlx,
22412237 .use_misched,
22422238 .v7em,
2243 .vfp4d16sp,
22442239 }),
22452240 };
22462241 pub const cortex_m55 = CpuModel{
22472242 .name = "cortex_m55",
22482243 .llvm_name = "cortex-m55",
22492244 .features = featureSet(&[_]Feature{
2245 .dsp,
22502246 .fix_cmse_cve_2021_35465,
2251 .fp_armv8d16,
22522247 .loop_align,
2253 .mve_fp,
22542248 .no_branch_predictor,
22552249 .slowfpvmlx,
22562250 .use_misched,
......@@ -2261,7 +2255,6 @@ pub const cpu = struct {
22612255 .name = "cortex_m7",
22622256 .llvm_name = "cortex-m7",
22632257 .features = featureSet(&[_]Feature{
2264 .fp_armv8d16,
22652258 .use_mipipeliner,
22662259 .use_misched,
22672260 .v7em,
......@@ -2271,9 +2264,8 @@ pub const cpu = struct {
22712264 .name = "cortex_m85",
22722265 .llvm_name = "cortex-m85",
22732266 .features = featureSet(&[_]Feature{
2274 .fp_armv8d16,
2275 .mve_fp,
2276 .pacbti,
2267 .dsp,
2268 .trustzone,
22772269 .use_misched,
22782270 .v8_1m_main,
22792271 }),