authorgravatar for lgustaf1@binghamton.eduLayne Gustafson <lgustaf1@binghamton.edu> 2020-01-08 21:35:26-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-01-19 20:53:19-05:00
log03dd376b55a57cbc10269f771f72ced1eaa7aabb
tree658d37e3db712e3b35d47fbb7b3514c7b741677c
parentc61856ebcf54a55f1c17a5fd6a3b3300115b2c65
signature Commit is signed but in an unrecognized format.

Add builtin.zig support


18 files changed, 3209 insertions(+), 3152 deletions(-)

lib/std/build.zig+8-2
......@@ -1988,10 +1988,16 @@ pub const LibExeObjStep = struct {
19881988 },
19891989 .features => |features| {
19901990 try zig_args.append("--features");
1991
1992 var feature_str_buffer = try std.Buffer.initSize(builder.allocator, 0);
1993 defer feature_str_buffer.deinit();
1994
19911995 for (features) |feature| {
1992 try zig_args.append(feature.name);
1993 try zig_args.append(",");
1996 try feature_str_buffer.append(feature.name);
1997 try feature_str_buffer.append(",");
19941998 }
1999
2000 try zig_args.append(feature_str_buffer.toOwnedSlice());
19952001 },
19962002 }
19972003 }
lib/std/target/aarch64.zig+324-324
......@@ -19,7 +19,7 @@ pub const feature_am = Feature{
1919};
2020
2121pub const feature_aggressiveFma = Feature{
22 .name = "aggressive-fma",
22 .name = "aggressiveFma",
2323 .llvm_name = "aggressive-fma",
2424 .description = "Enable Aggressive FMA for floating-point.",
2525 .dependencies = &[_]*const Feature {
......@@ -35,7 +35,7 @@ pub const feature_altnzcv = Feature{
3535};
3636
3737pub const feature_alternateSextloadCvtF32Pattern = Feature{
38 .name = "alternate-sextload-cvt-f32-pattern",
38 .name = "alternateSextloadCvtF32Pattern",
3939 .llvm_name = "alternate-sextload-cvt-f32-pattern",
4040 .description = "Use alternative pattern for sextload convert to f32",
4141 .dependencies = &[_]*const Feature {
......@@ -43,7 +43,7 @@ pub const feature_alternateSextloadCvtF32Pattern = Feature{
4343};
4444
4545pub const feature_arithBccFusion = Feature{
46 .name = "arith-bcc-fusion",
46 .name = "arithBccFusion",
4747 .llvm_name = "arith-bcc-fusion",
4848 .description = "CPU fuses arithmetic+bcc operations",
4949 .dependencies = &[_]*const Feature {
......@@ -51,7 +51,7 @@ pub const feature_arithBccFusion = Feature{
5151};
5252
5353pub const feature_arithCbzFusion = Feature{
54 .name = "arith-cbz-fusion",
54 .name = "arithCbzFusion",
5555 .llvm_name = "arith-cbz-fusion",
5656 .description = "CPU fuses arithmetic + cbz/cbnz operations",
5757 .dependencies = &[_]*const Feature {
......@@ -59,7 +59,7 @@ pub const feature_arithCbzFusion = Feature{
5959};
6060
6161pub const feature_balanceFpOps = Feature{
62 .name = "balance-fp-ops",
62 .name = "balanceFpOps",
6363 .llvm_name = "balance-fp-ops",
6464 .description = "balance mix of odd and even D-registers for fp multiply(-accumulate) ops",
6565 .dependencies = &[_]*const Feature {
......@@ -107,7 +107,7 @@ pub const feature_ccdp = Feature{
107107};
108108
109109pub const feature_callSavedX8 = Feature{
110 .name = "call-saved-x8",
110 .name = "callSavedX8",
111111 .llvm_name = "call-saved-x8",
112112 .description = "Make X8 callee saved.",
113113 .dependencies = &[_]*const Feature {
......@@ -115,7 +115,7 @@ pub const feature_callSavedX8 = Feature{
115115};
116116
117117pub const feature_callSavedX9 = Feature{
118 .name = "call-saved-x9",
118 .name = "callSavedX9",
119119 .llvm_name = "call-saved-x9",
120120 .description = "Make X9 callee saved.",
121121 .dependencies = &[_]*const Feature {
......@@ -123,7 +123,7 @@ pub const feature_callSavedX9 = Feature{
123123};
124124
125125pub const feature_callSavedX10 = Feature{
126 .name = "call-saved-x10",
126 .name = "callSavedX10",
127127 .llvm_name = "call-saved-x10",
128128 .description = "Make X10 callee saved.",
129129 .dependencies = &[_]*const Feature {
......@@ -131,7 +131,7 @@ pub const feature_callSavedX10 = Feature{
131131};
132132
133133pub const feature_callSavedX11 = Feature{
134 .name = "call-saved-x11",
134 .name = "callSavedX11",
135135 .llvm_name = "call-saved-x11",
136136 .description = "Make X11 callee saved.",
137137 .dependencies = &[_]*const Feature {
......@@ -139,7 +139,7 @@ pub const feature_callSavedX11 = Feature{
139139};
140140
141141pub const feature_callSavedX12 = Feature{
142 .name = "call-saved-x12",
142 .name = "callSavedX12",
143143 .llvm_name = "call-saved-x12",
144144 .description = "Make X12 callee saved.",
145145 .dependencies = &[_]*const Feature {
......@@ -147,7 +147,7 @@ pub const feature_callSavedX12 = Feature{
147147};
148148
149149pub const feature_callSavedX13 = Feature{
150 .name = "call-saved-x13",
150 .name = "callSavedX13",
151151 .llvm_name = "call-saved-x13",
152152 .description = "Make X13 callee saved.",
153153 .dependencies = &[_]*const Feature {
......@@ -155,7 +155,7 @@ pub const feature_callSavedX13 = Feature{
155155};
156156
157157pub const feature_callSavedX14 = Feature{
158 .name = "call-saved-x14",
158 .name = "callSavedX14",
159159 .llvm_name = "call-saved-x14",
160160 .description = "Make X14 callee saved.",
161161 .dependencies = &[_]*const Feature {
......@@ -163,7 +163,7 @@ pub const feature_callSavedX14 = Feature{
163163};
164164
165165pub const feature_callSavedX15 = Feature{
166 .name = "call-saved-x15",
166 .name = "callSavedX15",
167167 .llvm_name = "call-saved-x15",
168168 .description = "Make X15 callee saved.",
169169 .dependencies = &[_]*const Feature {
......@@ -171,7 +171,7 @@ pub const feature_callSavedX15 = Feature{
171171};
172172
173173pub const feature_callSavedX18 = Feature{
174 .name = "call-saved-x18",
174 .name = "callSavedX18",
175175 .llvm_name = "call-saved-x18",
176176 .description = "Make X18 callee saved.",
177177 .dependencies = &[_]*const Feature {
......@@ -197,7 +197,7 @@ pub const feature_crypto = Feature{
197197};
198198
199199pub const feature_customCheapAsMove = Feature{
200 .name = "custom-cheap-as-move",
200 .name = "customCheapAsMove",
201201 .llvm_name = "custom-cheap-as-move",
202202 .description = "Use custom handling of cheap instructions",
203203 .dependencies = &[_]*const Feature {
......@@ -213,7 +213,7 @@ pub const feature_dit = Feature{
213213};
214214
215215pub const feature_disableLatencySchedHeuristic = Feature{
216 .name = "disable-latency-sched-heuristic",
216 .name = "disableLatencySchedHeuristic",
217217 .llvm_name = "disable-latency-sched-heuristic",
218218 .description = "Disable latency scheduling heuristic",
219219 .dependencies = &[_]*const Feature {
......@@ -238,7 +238,7 @@ pub const feature_ete = Feature{
238238};
239239
240240pub const feature_exynosCheapAsMove = Feature{
241 .name = "exynos-cheap-as-move",
241 .name = "exynosCheapAsMove",
242242 .llvm_name = "exynos-cheap-as-move",
243243 .description = "Use Exynos specific handling of cheap instructions",
244244 .dependencies = &[_]*const Feature {
......@@ -264,7 +264,7 @@ pub const feature_fp16fml = Feature{
264264};
265265
266266pub const feature_fpArmv8 = Feature{
267 .name = "fp-armv8",
267 .name = "fpArmv8",
268268 .llvm_name = "fp-armv8",
269269 .description = "Enable ARMv8 FP",
270270 .dependencies = &[_]*const Feature {
......@@ -280,7 +280,7 @@ pub const feature_fptoint = Feature{
280280};
281281
282282pub const feature_force32bitJumpTables = Feature{
283 .name = "force-32bit-jump-tables",
283 .name = "force32bitJumpTables",
284284 .llvm_name = "force-32bit-jump-tables",
285285 .description = "Force jump table entries to be 32-bits wide except at MinSize",
286286 .dependencies = &[_]*const Feature {
......@@ -297,7 +297,7 @@ pub const feature_fullfp16 = Feature{
297297};
298298
299299pub const feature_fuseAes = Feature{
300 .name = "fuse-aes",
300 .name = "fuseAes",
301301 .llvm_name = "fuse-aes",
302302 .description = "CPU fuses AES crypto operations",
303303 .dependencies = &[_]*const Feature {
......@@ -305,7 +305,7 @@ pub const feature_fuseAes = Feature{
305305};
306306
307307pub const feature_fuseAddress = Feature{
308 .name = "fuse-address",
308 .name = "fuseAddress",
309309 .llvm_name = "fuse-address",
310310 .description = "CPU fuses address generation and memory operations",
311311 .dependencies = &[_]*const Feature {
......@@ -313,7 +313,7 @@ pub const feature_fuseAddress = Feature{
313313};
314314
315315pub const feature_fuseArithLogic = Feature{
316 .name = "fuse-arith-logic",
316 .name = "fuseArithLogic",
317317 .llvm_name = "fuse-arith-logic",
318318 .description = "CPU fuses arithmetic and logic operations",
319319 .dependencies = &[_]*const Feature {
......@@ -321,7 +321,7 @@ pub const feature_fuseArithLogic = Feature{
321321};
322322
323323pub const feature_fuseCsel = Feature{
324 .name = "fuse-csel",
324 .name = "fuseCsel",
325325 .llvm_name = "fuse-csel",
326326 .description = "CPU fuses conditional select operations",
327327 .dependencies = &[_]*const Feature {
......@@ -329,7 +329,7 @@ pub const feature_fuseCsel = Feature{
329329};
330330
331331pub const feature_fuseCryptoEor = Feature{
332 .name = "fuse-crypto-eor",
332 .name = "fuseCryptoEor",
333333 .llvm_name = "fuse-crypto-eor",
334334 .description = "CPU fuses AES/PMULL and EOR operations",
335335 .dependencies = &[_]*const Feature {
......@@ -337,7 +337,7 @@ pub const feature_fuseCryptoEor = Feature{
337337};
338338
339339pub const feature_fuseLiterals = Feature{
340 .name = "fuse-literals",
340 .name = "fuseLiterals",
341341 .llvm_name = "fuse-literals",
342342 .description = "CPU fuses literal generation operations",
343343 .dependencies = &[_]*const Feature {
......@@ -370,7 +370,7 @@ pub const feature_lse = Feature{
370370};
371371
372372pub const feature_lslFast = Feature{
373 .name = "lsl-fast",
373 .name = "lslFast",
374374 .llvm_name = "lsl-fast",
375375 .description = "CPU has a fastpath logical shift of up to 3 places",
376376 .dependencies = &[_]*const Feature {
......@@ -411,7 +411,7 @@ pub const feature_nv = Feature{
411411};
412412
413413pub const feature_noNegImmediates = Feature{
414 .name = "no-neg-immediates",
414 .name = "noNegImmediates",
415415 .llvm_name = "no-neg-immediates",
416416 .description = "Convert immediates and instructions to their negated or complemented equivalent when the immediate does not fit in the encoding.",
417417 .dependencies = &[_]*const Feature {
......@@ -435,7 +435,7 @@ pub const feature_pan = Feature{
435435};
436436
437437pub const feature_panRwv = Feature{
438 .name = "pan-rwv",
438 .name = "panRwv",
439439 .llvm_name = "pan-rwv",
440440 .description = "Enable v8.2 PAN s1e1R and s1e1W Variants",
441441 .dependencies = &[_]*const Feature {
......@@ -452,7 +452,7 @@ pub const feature_perfmon = Feature{
452452};
453453
454454pub const feature_usePostraScheduler = Feature{
455 .name = "use-postra-scheduler",
455 .name = "usePostraScheduler",
456456 .llvm_name = "use-postra-scheduler",
457457 .description = "Schedule again after register allocation",
458458 .dependencies = &[_]*const Feature {
......@@ -468,7 +468,7 @@ pub const feature_predres = Feature{
468468};
469469
470470pub const feature_predictableSelectExpensive = Feature{
471 .name = "predictable-select-expensive",
471 .name = "predictableSelectExpensive",
472472 .llvm_name = "predictable-select-expensive",
473473 .description = "Prefer likely predicted branches over selects",
474474 .dependencies = &[_]*const Feature {
......@@ -509,7 +509,7 @@ pub const feature_rcpc = Feature{
509509};
510510
511511pub const feature_rcpcImmo = Feature{
512 .name = "rcpc-immo",
512 .name = "rcpcImmo",
513513 .llvm_name = "rcpc-immo",
514514 .description = "Enable v8.4-A RCPC instructions with Immediate Offsets",
515515 .dependencies = &[_]*const Feature {
......@@ -534,7 +534,7 @@ pub const feature_rand = Feature{
534534};
535535
536536pub const feature_reserveX1 = Feature{
537 .name = "reserve-x1",
537 .name = "reserveX1",
538538 .llvm_name = "reserve-x1",
539539 .description = "Reserve X1, making it unavailable as a GPR",
540540 .dependencies = &[_]*const Feature {
......@@ -542,7 +542,7 @@ pub const feature_reserveX1 = Feature{
542542};
543543
544544pub const feature_reserveX2 = Feature{
545 .name = "reserve-x2",
545 .name = "reserveX2",
546546 .llvm_name = "reserve-x2",
547547 .description = "Reserve X2, making it unavailable as a GPR",
548548 .dependencies = &[_]*const Feature {
......@@ -550,7 +550,7 @@ pub const feature_reserveX2 = Feature{
550550};
551551
552552pub const feature_reserveX3 = Feature{
553 .name = "reserve-x3",
553 .name = "reserveX3",
554554 .llvm_name = "reserve-x3",
555555 .description = "Reserve X3, making it unavailable as a GPR",
556556 .dependencies = &[_]*const Feature {
......@@ -558,7 +558,7 @@ pub const feature_reserveX3 = Feature{
558558};
559559
560560pub const feature_reserveX4 = Feature{
561 .name = "reserve-x4",
561 .name = "reserveX4",
562562 .llvm_name = "reserve-x4",
563563 .description = "Reserve X4, making it unavailable as a GPR",
564564 .dependencies = &[_]*const Feature {
......@@ -566,7 +566,7 @@ pub const feature_reserveX4 = Feature{
566566};
567567
568568pub const feature_reserveX5 = Feature{
569 .name = "reserve-x5",
569 .name = "reserveX5",
570570 .llvm_name = "reserve-x5",
571571 .description = "Reserve X5, making it unavailable as a GPR",
572572 .dependencies = &[_]*const Feature {
......@@ -574,7 +574,7 @@ pub const feature_reserveX5 = Feature{
574574};
575575
576576pub const feature_reserveX6 = Feature{
577 .name = "reserve-x6",
577 .name = "reserveX6",
578578 .llvm_name = "reserve-x6",
579579 .description = "Reserve X6, making it unavailable as a GPR",
580580 .dependencies = &[_]*const Feature {
......@@ -582,7 +582,7 @@ pub const feature_reserveX6 = Feature{
582582};
583583
584584pub const feature_reserveX7 = Feature{
585 .name = "reserve-x7",
585 .name = "reserveX7",
586586 .llvm_name = "reserve-x7",
587587 .description = "Reserve X7, making it unavailable as a GPR",
588588 .dependencies = &[_]*const Feature {
......@@ -590,7 +590,7 @@ pub const feature_reserveX7 = Feature{
590590};
591591
592592pub const feature_reserveX9 = Feature{
593 .name = "reserve-x9",
593 .name = "reserveX9",
594594 .llvm_name = "reserve-x9",
595595 .description = "Reserve X9, making it unavailable as a GPR",
596596 .dependencies = &[_]*const Feature {
......@@ -598,7 +598,7 @@ pub const feature_reserveX9 = Feature{
598598};
599599
600600pub const feature_reserveX10 = Feature{
601 .name = "reserve-x10",
601 .name = "reserveX10",
602602 .llvm_name = "reserve-x10",
603603 .description = "Reserve X10, making it unavailable as a GPR",
604604 .dependencies = &[_]*const Feature {
......@@ -606,7 +606,7 @@ pub const feature_reserveX10 = Feature{
606606};
607607
608608pub const feature_reserveX11 = Feature{
609 .name = "reserve-x11",
609 .name = "reserveX11",
610610 .llvm_name = "reserve-x11",
611611 .description = "Reserve X11, making it unavailable as a GPR",
612612 .dependencies = &[_]*const Feature {
......@@ -614,7 +614,7 @@ pub const feature_reserveX11 = Feature{
614614};
615615
616616pub const feature_reserveX12 = Feature{
617 .name = "reserve-x12",
617 .name = "reserveX12",
618618 .llvm_name = "reserve-x12",
619619 .description = "Reserve X12, making it unavailable as a GPR",
620620 .dependencies = &[_]*const Feature {
......@@ -622,7 +622,7 @@ pub const feature_reserveX12 = Feature{
622622};
623623
624624pub const feature_reserveX13 = Feature{
625 .name = "reserve-x13",
625 .name = "reserveX13",
626626 .llvm_name = "reserve-x13",
627627 .description = "Reserve X13, making it unavailable as a GPR",
628628 .dependencies = &[_]*const Feature {
......@@ -630,7 +630,7 @@ pub const feature_reserveX13 = Feature{
630630};
631631
632632pub const feature_reserveX14 = Feature{
633 .name = "reserve-x14",
633 .name = "reserveX14",
634634 .llvm_name = "reserve-x14",
635635 .description = "Reserve X14, making it unavailable as a GPR",
636636 .dependencies = &[_]*const Feature {
......@@ -638,7 +638,7 @@ pub const feature_reserveX14 = Feature{
638638};
639639
640640pub const feature_reserveX15 = Feature{
641 .name = "reserve-x15",
641 .name = "reserveX15",
642642 .llvm_name = "reserve-x15",
643643 .description = "Reserve X15, making it unavailable as a GPR",
644644 .dependencies = &[_]*const Feature {
......@@ -646,7 +646,7 @@ pub const feature_reserveX15 = Feature{
646646};
647647
648648pub const feature_reserveX18 = Feature{
649 .name = "reserve-x18",
649 .name = "reserveX18",
650650 .llvm_name = "reserve-x18",
651651 .description = "Reserve X18, making it unavailable as a GPR",
652652 .dependencies = &[_]*const Feature {
......@@ -654,7 +654,7 @@ pub const feature_reserveX18 = Feature{
654654};
655655
656656pub const feature_reserveX20 = Feature{
657 .name = "reserve-x20",
657 .name = "reserveX20",
658658 .llvm_name = "reserve-x20",
659659 .description = "Reserve X20, making it unavailable as a GPR",
660660 .dependencies = &[_]*const Feature {
......@@ -662,7 +662,7 @@ pub const feature_reserveX20 = Feature{
662662};
663663
664664pub const feature_reserveX21 = Feature{
665 .name = "reserve-x21",
665 .name = "reserveX21",
666666 .llvm_name = "reserve-x21",
667667 .description = "Reserve X21, making it unavailable as a GPR",
668668 .dependencies = &[_]*const Feature {
......@@ -670,7 +670,7 @@ pub const feature_reserveX21 = Feature{
670670};
671671
672672pub const feature_reserveX22 = Feature{
673 .name = "reserve-x22",
673 .name = "reserveX22",
674674 .llvm_name = "reserve-x22",
675675 .description = "Reserve X22, making it unavailable as a GPR",
676676 .dependencies = &[_]*const Feature {
......@@ -678,7 +678,7 @@ pub const feature_reserveX22 = Feature{
678678};
679679
680680pub const feature_reserveX23 = Feature{
681 .name = "reserve-x23",
681 .name = "reserveX23",
682682 .llvm_name = "reserve-x23",
683683 .description = "Reserve X23, making it unavailable as a GPR",
684684 .dependencies = &[_]*const Feature {
......@@ -686,7 +686,7 @@ pub const feature_reserveX23 = Feature{
686686};
687687
688688pub const feature_reserveX24 = Feature{
689 .name = "reserve-x24",
689 .name = "reserveX24",
690690 .llvm_name = "reserve-x24",
691691 .description = "Reserve X24, making it unavailable as a GPR",
692692 .dependencies = &[_]*const Feature {
......@@ -694,7 +694,7 @@ pub const feature_reserveX24 = Feature{
694694};
695695
696696pub const feature_reserveX25 = Feature{
697 .name = "reserve-x25",
697 .name = "reserveX25",
698698 .llvm_name = "reserve-x25",
699699 .description = "Reserve X25, making it unavailable as a GPR",
700700 .dependencies = &[_]*const Feature {
......@@ -702,7 +702,7 @@ pub const feature_reserveX25 = Feature{
702702};
703703
704704pub const feature_reserveX26 = Feature{
705 .name = "reserve-x26",
705 .name = "reserveX26",
706706 .llvm_name = "reserve-x26",
707707 .description = "Reserve X26, making it unavailable as a GPR",
708708 .dependencies = &[_]*const Feature {
......@@ -710,7 +710,7 @@ pub const feature_reserveX26 = Feature{
710710};
711711
712712pub const feature_reserveX27 = Feature{
713 .name = "reserve-x27",
713 .name = "reserveX27",
714714 .llvm_name = "reserve-x27",
715715 .description = "Reserve X27, making it unavailable as a GPR",
716716 .dependencies = &[_]*const Feature {
......@@ -718,7 +718,7 @@ pub const feature_reserveX27 = Feature{
718718};
719719
720720pub const feature_reserveX28 = Feature{
721 .name = "reserve-x28",
721 .name = "reserveX28",
722722 .llvm_name = "reserve-x28",
723723 .description = "Reserve X28, making it unavailable as a GPR",
724724 .dependencies = &[_]*const Feature {
......@@ -802,7 +802,7 @@ pub const feature_sve2 = Feature{
802802};
803803
804804pub const feature_sve2Aes = Feature{
805 .name = "sve2-aes",
805 .name = "sve2Aes",
806806 .llvm_name = "sve2-aes",
807807 .description = "Enable AES SVE2 instructions",
808808 .dependencies = &[_]*const Feature {
......@@ -812,7 +812,7 @@ pub const feature_sve2Aes = Feature{
812812};
813813
814814pub const feature_sve2Bitperm = Feature{
815 .name = "sve2-bitperm",
815 .name = "sve2Bitperm",
816816 .llvm_name = "sve2-bitperm",
817817 .description = "Enable bit permutation SVE2 instructions",
818818 .dependencies = &[_]*const Feature {
......@@ -821,7 +821,7 @@ pub const feature_sve2Bitperm = Feature{
821821};
822822
823823pub const feature_sve2Sha3 = Feature{
824 .name = "sve2-sha3",
824 .name = "sve2Sha3",
825825 .llvm_name = "sve2-sha3",
826826 .description = "Enable SHA3 SVE2 instructions",
827827 .dependencies = &[_]*const Feature {
......@@ -831,7 +831,7 @@ pub const feature_sve2Sha3 = Feature{
831831};
832832
833833pub const feature_sve2Sm4 = Feature{
834 .name = "sve2-sm4",
834 .name = "sve2Sm4",
835835 .llvm_name = "sve2-sm4",
836836 .description = "Enable SM4 SVE2 instructions",
837837 .dependencies = &[_]*const Feature {
......@@ -841,7 +841,7 @@ pub const feature_sve2Sm4 = Feature{
841841};
842842
843843pub const feature_slowMisaligned128store = Feature{
844 .name = "slow-misaligned-128store",
844 .name = "slowMisaligned128store",
845845 .llvm_name = "slow-misaligned-128store",
846846 .description = "Misaligned 128 bit stores are slow",
847847 .dependencies = &[_]*const Feature {
......@@ -849,7 +849,7 @@ pub const feature_slowMisaligned128store = Feature{
849849};
850850
851851pub const feature_slowPaired128 = Feature{
852 .name = "slow-paired-128",
852 .name = "slowPaired128",
853853 .llvm_name = "slow-paired-128",
854854 .description = "Paired 128 bit loads and stores are slow",
855855 .dependencies = &[_]*const Feature {
......@@ -857,7 +857,7 @@ pub const feature_slowPaired128 = Feature{
857857};
858858
859859pub const feature_slowStrqroStore = Feature{
860 .name = "slow-strqro-store",
860 .name = "slowStrqroStore",
861861 .llvm_name = "slow-strqro-store",
862862 .description = "STR of Q register with register offset is slow",
863863 .dependencies = &[_]*const Feature {
......@@ -873,7 +873,7 @@ pub const feature_specrestrict = Feature{
873873};
874874
875875pub const feature_strictAlign = Feature{
876 .name = "strict-align",
876 .name = "strictAlign",
877877 .llvm_name = "strict-align",
878878 .description = "Disallow all unaligned memory access",
879879 .dependencies = &[_]*const Feature {
......@@ -881,7 +881,7 @@ pub const feature_strictAlign = Feature{
881881};
882882
883883pub const feature_tlbRmi = Feature{
884 .name = "tlb-rmi",
884 .name = "tlbRmi",
885885 .llvm_name = "tlb-rmi",
886886 .description = "Enable v8.4-A TLB Range and Maintenance Instructions",
887887 .dependencies = &[_]*const Feature {
......@@ -897,7 +897,7 @@ pub const feature_tme = Feature{
897897};
898898
899899pub const feature_tracev84 = Feature{
900 .name = "tracev8.4",
900 .name = "tracev84",
901901 .llvm_name = "tracev8.4",
902902 .description = "Enable v8.4-A Trace extension",
903903 .dependencies = &[_]*const Feature {
......@@ -913,7 +913,7 @@ pub const feature_trbe = Feature{
913913};
914914
915915pub const feature_taggedGlobals = Feature{
916 .name = "tagged-globals",
916 .name = "taggedGlobals",
917917 .llvm_name = "tagged-globals",
918918 .description = "Use an instruction sequence for taking the address of a global that allows a memory tag in the upper address bits",
919919 .dependencies = &[_]*const Feature {
......@@ -921,7 +921,7 @@ pub const feature_taggedGlobals = Feature{
921921};
922922
923923pub const feature_useAa = Feature{
924 .name = "use-aa",
924 .name = "useAa",
925925 .llvm_name = "use-aa",
926926 .description = "Use alias analysis during codegen",
927927 .dependencies = &[_]*const Feature {
......@@ -929,7 +929,7 @@ pub const feature_useAa = Feature{
929929};
930930
931931pub const feature_tpidrEl1 = Feature{
932 .name = "tpidr-el1",
932 .name = "tpidrEl1",
933933 .llvm_name = "tpidr-el1",
934934 .description = "Permit use of TPIDR_EL1 for the TLS base",
935935 .dependencies = &[_]*const Feature {
......@@ -937,7 +937,7 @@ pub const feature_tpidrEl1 = Feature{
937937};
938938
939939pub const feature_tpidrEl2 = Feature{
940 .name = "tpidr-el2",
940 .name = "tpidrEl2",
941941 .llvm_name = "tpidr-el2",
942942 .description = "Permit use of TPIDR_EL2 for the TLS base",
943943 .dependencies = &[_]*const Feature {
......@@ -945,7 +945,7 @@ pub const feature_tpidrEl2 = Feature{
945945};
946946
947947pub const feature_tpidrEl3 = Feature{
948 .name = "tpidr-el3",
948 .name = "tpidrEl3",
949949 .llvm_name = "tpidr-el3",
950950 .description = "Permit use of TPIDR_EL3 for the TLS base",
951951 .dependencies = &[_]*const Feature {
......@@ -953,7 +953,7 @@ pub const feature_tpidrEl3 = Feature{
953953};
954954
955955pub const feature_useReciprocalSquareRoot = Feature{
956 .name = "use-reciprocal-square-root",
956 .name = "useReciprocalSquareRoot",
957957 .llvm_name = "use-reciprocal-square-root",
958958 .description = "Use the reciprocal square root approximation",
959959 .dependencies = &[_]*const Feature {
......@@ -981,13 +981,13 @@ pub const feature_zcz = Feature{
981981 .llvm_name = "zcz",
982982 .description = "Has zero-cycle zeroing instructions",
983983 .dependencies = &[_]*const Feature {
984 &feature_zczGp,
985984 &feature_zczFp,
985 &feature_zczGp,
986986 },
987987};
988988
989989pub const feature_zczFp = Feature{
990 .name = "zcz-fp",
990 .name = "zczFp",
991991 .llvm_name = "zcz-fp",
992992 .description = "Has zero-cycle zeroing instructions for FP registers",
993993 .dependencies = &[_]*const Feature {
......@@ -995,7 +995,7 @@ pub const feature_zczFp = Feature{
995995};
996996
997997pub const feature_zczFpWorkaround = Feature{
998 .name = "zcz-fp-workaround",
998 .name = "zczFpWorkaround",
999999 .llvm_name = "zcz-fp-workaround",
10001000 .description = "The zero-cycle floating-point zeroing instruction has a bug",
10011001 .dependencies = &[_]*const Feature {
......@@ -1003,7 +1003,7 @@ pub const feature_zczFpWorkaround = Feature{
10031003};
10041004
10051005pub const feature_zczGp = Feature{
1006 .name = "zcz-gp",
1006 .name = "zczGp",
10071007 .llvm_name = "zcz-gp",
10081008 .description = "Has zero-cycle zeroing instructions for generic registers",
10091009 .dependencies = &[_]*const Feature {
......@@ -1137,206 +1137,206 @@ pub const features = &[_]*const Feature {
11371137};
11381138
11391139pub const cpu_appleLatest = Cpu{
1140 .name = "apple-latest",
1140 .name = "appleLatest",
11411141 .llvm_name = "apple-latest",
11421142 .dependencies = &[_]*const Feature {
1143 &feature_fuseAes,
1144 &feature_zczFpWorkaround,
1145 &feature_perfmon,
1146 &feature_arithCbzFusion,
1143 &feature_fpArmv8,
11471144 &feature_alternateSextloadCvtF32Pattern,
1148 &feature_fuseCryptoEor,
1149 &feature_disableLatencySchedHeuristic,
1150 &feature_zcm,
1145 &feature_arithBccFusion,
11511146 &feature_zczFp,
11521147 &feature_zczGp,
1153 &feature_fpArmv8,
1154 &feature_arithBccFusion,
1148 &feature_zcm,
1149 &feature_fuseAes,
1150 &feature_disableLatencySchedHeuristic,
1151 &feature_fuseCryptoEor,
1152 &feature_perfmon,
1153 &feature_zczFpWorkaround,
1154 &feature_arithCbzFusion,
11551155 },
11561156};
11571157
11581158pub const cpu_cortexA35 = Cpu{
1159 .name = "cortex-a35",
1159 .name = "cortexA35",
11601160 .llvm_name = "cortex-a35",
11611161 .dependencies = &[_]*const Feature {
11621162 &feature_fpArmv8,
1163 &feature_perfmon,
11641163 &feature_crc,
1164 &feature_perfmon,
11651165 },
11661166};
11671167
11681168pub const cpu_cortexA53 = Cpu{
1169 .name = "cortex-a53",
1169 .name = "cortexA53",
11701170 .llvm_name = "cortex-a53",
11711171 .dependencies = &[_]*const Feature {
1172 &feature_fuseAes,
1172 &feature_fpArmv8,
11731173 &feature_balanceFpOps,
1174 &feature_perfmon,
1174 &feature_usePostraScheduler,
11751175 &feature_crc,
11761176 &feature_customCheapAsMove,
1177 &feature_fpArmv8,
1178 &feature_usePostraScheduler,
11791177 &feature_useAa,
1178 &feature_fuseAes,
1179 &feature_perfmon,
11801180 },
11811181};
11821182
11831183pub const cpu_cortexA55 = Cpu{
1184 .name = "cortex-a55",
1184 .name = "cortexA55",
11851185 .llvm_name = "cortex-a55",
11861186 .dependencies = &[_]*const Feature {
1187 &feature_fuseAes,
11881187 &feature_fpArmv8,
1189 &feature_ras,
1190 &feature_dotprod,
1191 &feature_vh,
1192 &feature_crc,
11931188 &feature_pan,
1194 &feature_ccpp,
1195 &feature_rdm,
1189 &feature_vh,
1190 &feature_dotprod,
11961191 &feature_rcpc,
1197 &feature_uaops,
1198 &feature_perfmon,
11991192 &feature_lse,
1193 &feature_crc,
1194 &feature_uaops,
1195 &feature_rdm,
12001196 &feature_lor,
1197 &feature_fuseAes,
1198 &feature_ras,
1199 &feature_perfmon,
1200 &feature_ccpp,
12011201 },
12021202};
12031203
12041204pub const cpu_cortexA57 = Cpu{
1205 .name = "cortex-a57",
1205 .name = "cortexA57",
12061206 .llvm_name = "cortex-a57",
12071207 .dependencies = &[_]*const Feature {
1208 &feature_fuseAes,
1208 &feature_fpArmv8,
12091209 &feature_balanceFpOps,
1210 &feature_perfmon,
1211 &feature_crc,
12121210 &feature_fuseLiterals,
1213 &feature_predictableSelectExpensive,
1214 &feature_customCheapAsMove,
1215 &feature_fpArmv8,
12161211 &feature_usePostraScheduler,
1212 &feature_crc,
1213 &feature_customCheapAsMove,
1214 &feature_fuseAes,
1215 &feature_perfmon,
1216 &feature_predictableSelectExpensive,
12171217 },
12181218};
12191219
12201220pub const cpu_cortexA65 = Cpu{
1221 .name = "cortex-a65",
1221 .name = "cortexA65",
12221222 .llvm_name = "cortex-a65",
12231223 .dependencies = &[_]*const Feature {
1224 &feature_ras,
1225 &feature_dotprod,
1226 &feature_vh,
1227 &feature_crc,
1224 &feature_fpArmv8,
12281225 &feature_pan,
1229 &feature_ccpp,
1230 &feature_rdm,
1226 &feature_vh,
1227 &feature_dotprod,
12311228 &feature_rcpc,
1232 &feature_uaops,
1233 &feature_ssbs,
1234 &feature_fpArmv8,
12351229 &feature_lse,
1230 &feature_crc,
1231 &feature_uaops,
1232 &feature_rdm,
12361233 &feature_lor,
1234 &feature_ras,
1235 &feature_ssbs,
1236 &feature_ccpp,
12371237 },
12381238};
12391239
12401240pub const cpu_cortexA65ae = Cpu{
1241 .name = "cortex-a65ae",
1241 .name = "cortexA65ae",
12421242 .llvm_name = "cortex-a65ae",
12431243 .dependencies = &[_]*const Feature {
1244 &feature_ras,
1245 &feature_dotprod,
1246 &feature_vh,
1247 &feature_crc,
1244 &feature_fpArmv8,
12481245 &feature_pan,
1249 &feature_ccpp,
1250 &feature_rdm,
1246 &feature_vh,
1247 &feature_dotprod,
12511248 &feature_rcpc,
1252 &feature_uaops,
1253 &feature_ssbs,
1254 &feature_fpArmv8,
12551249 &feature_lse,
1250 &feature_crc,
1251 &feature_uaops,
1252 &feature_rdm,
12561253 &feature_lor,
1254 &feature_ras,
1255 &feature_ssbs,
1256 &feature_ccpp,
12571257 },
12581258};
12591259
12601260pub const cpu_cortexA72 = Cpu{
1261 .name = "cortex-a72",
1261 .name = "cortexA72",
12621262 .llvm_name = "cortex-a72",
12631263 .dependencies = &[_]*const Feature {
12641264 &feature_fpArmv8,
1265 &feature_fuseAes,
1266 &feature_perfmon,
12671265 &feature_crc,
1266 &feature_perfmon,
1267 &feature_fuseAes,
12681268 },
12691269};
12701270
12711271pub const cpu_cortexA73 = Cpu{
1272 .name = "cortex-a73",
1272 .name = "cortexA73",
12731273 .llvm_name = "cortex-a73",
12741274 .dependencies = &[_]*const Feature {
12751275 &feature_fpArmv8,
1276 &feature_fuseAes,
1277 &feature_perfmon,
12781276 &feature_crc,
1277 &feature_perfmon,
1278 &feature_fuseAes,
12791279 },
12801280};
12811281
12821282pub const cpu_cortexA75 = Cpu{
1283 .name = "cortex-a75",
1283 .name = "cortexA75",
12841284 .llvm_name = "cortex-a75",
12851285 .dependencies = &[_]*const Feature {
1286 &feature_fuseAes,
12871286 &feature_fpArmv8,
1288 &feature_ras,
1289 &feature_dotprod,
1290 &feature_vh,
1291 &feature_crc,
12921287 &feature_pan,
1293 &feature_ccpp,
1294 &feature_rdm,
1288 &feature_vh,
1289 &feature_dotprod,
12951290 &feature_rcpc,
1296 &feature_uaops,
1297 &feature_perfmon,
12981291 &feature_lse,
1292 &feature_crc,
1293 &feature_uaops,
1294 &feature_rdm,
12991295 &feature_lor,
1296 &feature_fuseAes,
1297 &feature_ras,
1298 &feature_perfmon,
1299 &feature_ccpp,
13001300 },
13011301};
13021302
13031303pub const cpu_cortexA76 = Cpu{
1304 .name = "cortex-a76",
1304 .name = "cortexA76",
13051305 .llvm_name = "cortex-a76",
13061306 .dependencies = &[_]*const Feature {
1307 &feature_ras,
1308 &feature_dotprod,
1309 &feature_vh,
1310 &feature_crc,
1307 &feature_fpArmv8,
13111308 &feature_pan,
1312 &feature_ccpp,
1313 &feature_rdm,
1309 &feature_vh,
1310 &feature_dotprod,
13141311 &feature_rcpc,
1315 &feature_uaops,
1316 &feature_ssbs,
1317 &feature_fpArmv8,
13181312 &feature_lse,
1313 &feature_crc,
1314 &feature_uaops,
1315 &feature_rdm,
13191316 &feature_lor,
1317 &feature_ras,
1318 &feature_ssbs,
1319 &feature_ccpp,
13201320 },
13211321};
13221322
13231323pub const cpu_cortexA76ae = Cpu{
1324 .name = "cortex-a76ae",
1324 .name = "cortexA76ae",
13251325 .llvm_name = "cortex-a76ae",
13261326 .dependencies = &[_]*const Feature {
1327 &feature_ras,
1328 &feature_dotprod,
1329 &feature_vh,
1330 &feature_crc,
1327 &feature_fpArmv8,
13311328 &feature_pan,
1332 &feature_ccpp,
1333 &feature_rdm,
1329 &feature_vh,
1330 &feature_dotprod,
13341331 &feature_rcpc,
1335 &feature_uaops,
1336 &feature_ssbs,
1337 &feature_fpArmv8,
13381332 &feature_lse,
1333 &feature_crc,
1334 &feature_uaops,
1335 &feature_rdm,
13391336 &feature_lor,
1337 &feature_ras,
1338 &feature_ssbs,
1339 &feature_ccpp,
13401340 },
13411341};
13421342
......@@ -1344,137 +1344,137 @@ pub const cpu_cyclone = Cpu{
13441344 .name = "cyclone",
13451345 .llvm_name = "cyclone",
13461346 .dependencies = &[_]*const Feature {
1347 &feature_fuseAes,
1348 &feature_zczFpWorkaround,
1349 &feature_perfmon,
1350 &feature_arithCbzFusion,
1347 &feature_fpArmv8,
13511348 &feature_alternateSextloadCvtF32Pattern,
1352 &feature_fuseCryptoEor,
1353 &feature_disableLatencySchedHeuristic,
1354 &feature_zcm,
1349 &feature_arithBccFusion,
13551350 &feature_zczFp,
13561351 &feature_zczGp,
1357 &feature_fpArmv8,
1358 &feature_arithBccFusion,
1352 &feature_zcm,
1353 &feature_fuseAes,
1354 &feature_disableLatencySchedHeuristic,
1355 &feature_fuseCryptoEor,
1356 &feature_perfmon,
1357 &feature_zczFpWorkaround,
1358 &feature_arithCbzFusion,
13591359 },
13601360};
13611361
13621362pub const cpu_exynosM1 = Cpu{
1363 .name = "exynos-m1",
1363 .name = "exynosM1",
13641364 .llvm_name = "exynos-m1",
13651365 .dependencies = &[_]*const Feature {
1366 &feature_fuseAes,
1367 &feature_force32bitJumpTables,
1368 &feature_perfmon,
1369 &feature_crc,
1366 &feature_fpArmv8,
1367 &feature_slowMisaligned128store,
1368 &feature_usePostraScheduler,
13701369 &feature_useReciprocalSquareRoot,
1371 &feature_slowPaired128,
1370 &feature_crc,
13721371 &feature_zczFp,
1373 &feature_slowMisaligned128store,
13741372 &feature_customCheapAsMove,
1375 &feature_fpArmv8,
1376 &feature_usePostraScheduler,
1373 &feature_force32bitJumpTables,
1374 &feature_fuseAes,
1375 &feature_slowPaired128,
1376 &feature_perfmon,
13771377 },
13781378};
13791379
13801380pub const cpu_exynosM2 = Cpu{
1381 .name = "exynos-m2",
1381 .name = "exynosM2",
13821382 .llvm_name = "exynos-m2",
13831383 .dependencies = &[_]*const Feature {
1384 &feature_fuseAes,
1385 &feature_force32bitJumpTables,
1386 &feature_perfmon,
1384 &feature_fpArmv8,
1385 &feature_slowMisaligned128store,
1386 &feature_usePostraScheduler,
13871387 &feature_crc,
1388 &feature_slowPaired128,
13891388 &feature_zczFp,
1390 &feature_slowMisaligned128store,
13911389 &feature_customCheapAsMove,
1392 &feature_fpArmv8,
1393 &feature_usePostraScheduler,
1390 &feature_force32bitJumpTables,
1391 &feature_fuseAes,
1392 &feature_slowPaired128,
1393 &feature_perfmon,
13941394 },
13951395};
13961396
13971397pub const cpu_exynosM3 = Cpu{
1398 .name = "exynos-m3",
1398 .name = "exynosM3",
13991399 .llvm_name = "exynos-m3",
14001400 .dependencies = &[_]*const Feature {
1401 &feature_fuseAes,
1401 &feature_fpArmv8,
1402 &feature_fuseAddress,
1403 &feature_fuseLiterals,
1404 &feature_usePostraScheduler,
1405 &feature_crc,
14021406 &feature_lslFast,
1407 &feature_customCheapAsMove,
1408 &feature_zczFp,
14031409 &feature_force32bitJumpTables,
1404 &feature_perfmon,
1405 &feature_crc,
1406 &feature_fuseLiterals,
14071410 &feature_fuseCsel,
1408 &feature_zczFp,
1411 &feature_fuseAes,
1412 &feature_perfmon,
14091413 &feature_predictableSelectExpensive,
1410 &feature_customCheapAsMove,
1411 &feature_fpArmv8,
1412 &feature_usePostraScheduler,
1413 &feature_fuseAddress,
14141414 },
14151415};
14161416
14171417pub const cpu_exynosM4 = Cpu{
1418 .name = "exynos-m4",
1418 .name = "exynosM4",
14191419 .llvm_name = "exynos-m4",
14201420 .dependencies = &[_]*const Feature {
1421 &feature_fuseAes,
1422 &feature_lslFast,
1423 &feature_force32bitJumpTables,
1421 &feature_pan,
1422 &feature_fuseAddress,
1423 &feature_usePostraScheduler,
14241424 &feature_crc,
1425 &feature_rdm,
1426 &feature_fpArmv8,
1427 &feature_lse,
1428 &feature_vh,
1429 &feature_arithCbzFusion,
1430 &feature_fuseLiterals,
1431 &feature_ccpp,
1425 &feature_customCheapAsMove,
1426 &feature_force32bitJumpTables,
1427 &feature_uaops,
14321428 &feature_lor,
14331429 &feature_arithBccFusion,
1434 &feature_ras,
1430 &feature_arithCbzFusion,
14351431 &feature_dotprod,
1436 &feature_fuseCsel,
1437 &feature_zczFp,
1438 &feature_uaops,
1432 &feature_fuseArithLogic,
14391433 &feature_zczGp,
1434 &feature_rdm,
1435 &feature_fuseCsel,
14401436 &feature_perfmon,
1441 &feature_usePostraScheduler,
1442 &feature_fuseAddress,
1443 &feature_fuseArithLogic,
1444 &feature_customCheapAsMove,
1445 &feature_pan,
1437 &feature_fpArmv8,
1438 &feature_vh,
1439 &feature_fuseLiterals,
1440 &feature_lse,
1441 &feature_zczFp,
1442 &feature_lslFast,
1443 &feature_fuseAes,
1444 &feature_ras,
1445 &feature_ccpp,
14461446 },
14471447};
14481448
14491449pub const cpu_exynosM5 = Cpu{
1450 .name = "exynos-m5",
1450 .name = "exynosM5",
14511451 .llvm_name = "exynos-m5",
14521452 .dependencies = &[_]*const Feature {
1453 &feature_fuseAes,
1454 &feature_lslFast,
1455 &feature_force32bitJumpTables,
1453 &feature_pan,
1454 &feature_fuseAddress,
1455 &feature_usePostraScheduler,
14561456 &feature_crc,
1457 &feature_rdm,
1458 &feature_fpArmv8,
1459 &feature_lse,
1460 &feature_vh,
1461 &feature_arithCbzFusion,
1462 &feature_fuseLiterals,
1463 &feature_ccpp,
1457 &feature_customCheapAsMove,
1458 &feature_force32bitJumpTables,
1459 &feature_uaops,
14641460 &feature_lor,
14651461 &feature_arithBccFusion,
1466 &feature_ras,
1462 &feature_arithCbzFusion,
14671463 &feature_dotprod,
1468 &feature_fuseCsel,
1469 &feature_zczFp,
1470 &feature_uaops,
1464 &feature_fuseArithLogic,
14711465 &feature_zczGp,
1466 &feature_rdm,
1467 &feature_fuseCsel,
14721468 &feature_perfmon,
1473 &feature_usePostraScheduler,
1474 &feature_fuseAddress,
1475 &feature_fuseArithLogic,
1476 &feature_customCheapAsMove,
1477 &feature_pan,
1469 &feature_fpArmv8,
1470 &feature_vh,
1471 &feature_fuseLiterals,
1472 &feature_lse,
1473 &feature_zczFp,
1474 &feature_lslFast,
1475 &feature_fuseAes,
1476 &feature_ras,
1477 &feature_ccpp,
14781478 },
14791479};
14801480
......@@ -1482,17 +1482,17 @@ pub const cpu_falkor = Cpu{
14821482 .name = "falkor",
14831483 .llvm_name = "falkor",
14841484 .dependencies = &[_]*const Feature {
1485 &feature_lslFast,
1486 &feature_perfmon,
1485 &feature_fpArmv8,
1486 &feature_usePostraScheduler,
14871487 &feature_crc,
1488 &feature_lslFast,
1489 &feature_customCheapAsMove,
14881490 &feature_slowStrqroStore,
1489 &feature_rdm,
14901491 &feature_zczFp,
1491 &feature_predictableSelectExpensive,
1492 &feature_customCheapAsMove,
1492 &feature_rdm,
14931493 &feature_zczGp,
1494 &feature_fpArmv8,
1495 &feature_usePostraScheduler,
1494 &feature_perfmon,
1495 &feature_predictableSelectExpensive,
14961496 },
14971497};
14981498
......@@ -1514,56 +1514,56 @@ pub const cpu_kryo = Cpu{
15141514 .name = "kryo",
15151515 .llvm_name = "kryo",
15161516 .dependencies = &[_]*const Feature {
1517 &feature_lslFast,
1518 &feature_perfmon,
1517 &feature_fpArmv8,
1518 &feature_usePostraScheduler,
15191519 &feature_crc,
1520 &feature_zczFp,
1521 &feature_predictableSelectExpensive,
1520 &feature_lslFast,
15221521 &feature_customCheapAsMove,
1522 &feature_zczFp,
15231523 &feature_zczGp,
1524 &feature_fpArmv8,
1525 &feature_usePostraScheduler,
1524 &feature_perfmon,
1525 &feature_predictableSelectExpensive,
15261526 },
15271527};
15281528
15291529pub const cpu_neoverseE1 = Cpu{
1530 .name = "neoverse-e1",
1530 .name = "neoverseE1",
15311531 .llvm_name = "neoverse-e1",
15321532 .dependencies = &[_]*const Feature {
1533 &feature_ras,
1534 &feature_dotprod,
1535 &feature_vh,
1536 &feature_crc,
1533 &feature_fpArmv8,
15371534 &feature_pan,
1538 &feature_ccpp,
1539 &feature_rdm,
1535 &feature_vh,
1536 &feature_dotprod,
15401537 &feature_rcpc,
1541 &feature_uaops,
1542 &feature_ssbs,
1543 &feature_fpArmv8,
15441538 &feature_lse,
1539 &feature_crc,
1540 &feature_uaops,
1541 &feature_rdm,
15451542 &feature_lor,
1543 &feature_ras,
1544 &feature_ssbs,
1545 &feature_ccpp,
15461546 },
15471547};
15481548
15491549pub const cpu_neoverseN1 = Cpu{
1550 .name = "neoverse-n1",
1550 .name = "neoverseN1",
15511551 .llvm_name = "neoverse-n1",
15521552 .dependencies = &[_]*const Feature {
1553 &feature_ras,
1554 &feature_dotprod,
1553 &feature_fpArmv8,
1554 &feature_pan,
15551555 &feature_vh,
1556 &feature_dotprod,
1557 &feature_rcpc,
1558 &feature_lse,
15561559 &feature_crc,
1557 &feature_pan,
1558 &feature_ccpp,
1560 &feature_uaops,
15591561 &feature_rdm,
15601562 &feature_spe,
1561 &feature_rcpc,
1562 &feature_uaops,
1563 &feature_ssbs,
1564 &feature_fpArmv8,
1565 &feature_lse,
15661563 &feature_lor,
1564 &feature_ras,
1565 &feature_ssbs,
1566 &feature_ccpp,
15671567 },
15681568};
15691569
......@@ -1571,36 +1571,36 @@ pub const cpu_saphira = Cpu{
15711571 .name = "saphira",
15721572 .llvm_name = "saphira",
15731573 .dependencies = &[_]*const Feature {
1574 &feature_lslFast,
1575 &feature_crc,
1576 &feature_rdm,
15771574 &feature_am,
1578 &feature_mpam,
1579 &feature_fmi,
1580 &feature_fpArmv8,
1581 &feature_lse,
1582 &feature_dit,
1583 &feature_vh,
1584 &feature_ccpp,
1575 &feature_pan,
1576 &feature_usePostraScheduler,
1577 &feature_tracev84,
1578 &feature_rcpc,
15851579 &feature_sel2,
1586 &feature_lor,
1587 &feature_nv,
1588 &feature_ras,
1580 &feature_crc,
1581 &feature_customCheapAsMove,
15891582 &feature_tlbRmi,
1583 &feature_uaops,
1584 &feature_lor,
15901585 &feature_dotprod,
1586 &feature_zczGp,
1587 &feature_rdm,
1588 &feature_pa,
1589 &feature_perfmon,
1590 &feature_fpArmv8,
1591 &feature_vh,
1592 &feature_lse,
15911593 &feature_zczFp,
15921594 &feature_spe,
1593 &feature_rcpc,
15941595 &feature_predictableSelectExpensive,
1595 &feature_uaops,
1596 &feature_zczGp,
1597 &feature_perfmon,
1598 &feature_usePostraScheduler,
1599 &feature_pa,
1596 &feature_fmi,
1597 &feature_lslFast,
1598 &feature_mpam,
1599 &feature_dit,
1600 &feature_nv,
16001601 &feature_ccidx,
1601 &feature_customCheapAsMove,
1602 &feature_pan,
1603 &feature_tracev84,
1602 &feature_ras,
1603 &feature_ccpp,
16041604 },
16051605};
16061606
......@@ -1608,11 +1608,11 @@ pub const cpu_thunderx = Cpu{
16081608 .name = "thunderx",
16091609 .llvm_name = "thunderx",
16101610 .dependencies = &[_]*const Feature {
1611 &feature_perfmon,
1612 &feature_crc,
1613 &feature_predictableSelectExpensive,
16141611 &feature_fpArmv8,
16151612 &feature_usePostraScheduler,
1613 &feature_crc,
1614 &feature_perfmon,
1615 &feature_predictableSelectExpensive,
16161616 },
16171617};
16181618
......@@ -1620,17 +1620,17 @@ pub const cpu_thunderx2t99 = Cpu{
16201620 .name = "thunderx2t99",
16211621 .llvm_name = "thunderx2t99",
16221622 .dependencies = &[_]*const Feature {
1623 &feature_aggressiveFma,
1623 &feature_fpArmv8,
1624 &feature_pan,
16241625 &feature_vh,
1626 &feature_usePostraScheduler,
16251627 &feature_crc,
1626 &feature_pan,
1627 &feature_rdm,
1628 &feature_predictableSelectExpensive,
1629 &feature_fpArmv8,
16301628 &feature_lse,
1629 &feature_rdm,
16311630 &feature_lor,
1632 &feature_usePostraScheduler,
16331631 &feature_arithBccFusion,
1632 &feature_predictableSelectExpensive,
1633 &feature_aggressiveFma,
16341634 },
16351635};
16361636
......@@ -1638,11 +1638,11 @@ pub const cpu_thunderxt81 = Cpu{
16381638 .name = "thunderxt81",
16391639 .llvm_name = "thunderxt81",
16401640 .dependencies = &[_]*const Feature {
1641 &feature_perfmon,
1642 &feature_crc,
1643 &feature_predictableSelectExpensive,
16441641 &feature_fpArmv8,
16451642 &feature_usePostraScheduler,
1643 &feature_crc,
1644 &feature_perfmon,
1645 &feature_predictableSelectExpensive,
16461646 },
16471647};
16481648
......@@ -1650,11 +1650,11 @@ pub const cpu_thunderxt83 = Cpu{
16501650 .name = "thunderxt83",
16511651 .llvm_name = "thunderxt83",
16521652 .dependencies = &[_]*const Feature {
1653 &feature_perfmon,
1654 &feature_crc,
1655 &feature_predictableSelectExpensive,
16561653 &feature_fpArmv8,
16571654 &feature_usePostraScheduler,
1655 &feature_crc,
1656 &feature_perfmon,
1657 &feature_predictableSelectExpensive,
16581658 },
16591659};
16601660
......@@ -1662,11 +1662,11 @@ pub const cpu_thunderxt88 = Cpu{
16621662 .name = "thunderxt88",
16631663 .llvm_name = "thunderxt88",
16641664 .dependencies = &[_]*const Feature {
1665 &feature_perfmon,
1666 &feature_crc,
1667 &feature_predictableSelectExpensive,
16681665 &feature_fpArmv8,
16691666 &feature_usePostraScheduler,
1667 &feature_crc,
1668 &feature_perfmon,
1669 &feature_predictableSelectExpensive,
16701670 },
16711671};
16721672
......@@ -1674,22 +1674,22 @@ pub const cpu_tsv110 = Cpu{
16741674 .name = "tsv110",
16751675 .llvm_name = "tsv110",
16761676 .dependencies = &[_]*const Feature {
1677 &feature_fuseAes,
16781677 &feature_fpArmv8,
1679 &feature_ras,
1680 &feature_dotprod,
1678 &feature_pan,
16811679 &feature_vh,
1680 &feature_usePostraScheduler,
1681 &feature_dotprod,
1682 &feature_lse,
16821683 &feature_crc,
1683 &feature_pan,
1684 &feature_ccpp,
1684 &feature_customCheapAsMove,
1685 &feature_uaops,
16851686 &feature_rdm,
16861687 &feature_spe,
1687 &feature_uaops,
1688 &feature_customCheapAsMove,
1689 &feature_perfmon,
1690 &feature_lse,
16911688 &feature_lor,
1692 &feature_usePostraScheduler,
1689 &feature_fuseAes,
1690 &feature_ras,
1691 &feature_perfmon,
1692 &feature_ccpp,
16931693 },
16941694};
16951695
lib/std/target/amdgpu.zig+534-534
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_BitInsts16 = Feature{
5 .name = "16-bit-insts",
5 .name = "BitInsts16",
66 .llvm_name = "16-bit-insts",
77 .description = "Has i16/f16 instructions",
88 .dependencies = &[_]*const Feature {
......@@ -10,7 +10,7 @@ pub const feature_BitInsts16 = Feature{
1010};
1111
1212pub const feature_addNoCarryInsts = Feature{
13 .name = "add-no-carry-insts",
13 .name = "addNoCarryInsts",
1414 .llvm_name = "add-no-carry-insts",
1515 .description = "Have VALU add/sub instructions without carry out",
1616 .dependencies = &[_]*const Feature {
......@@ -18,7 +18,7 @@ pub const feature_addNoCarryInsts = Feature{
1818};
1919
2020pub const feature_apertureRegs = Feature{
21 .name = "aperture-regs",
21 .name = "apertureRegs",
2222 .llvm_name = "aperture-regs",
2323 .description = "Has Memory Aperture Base and Size Registers",
2424 .dependencies = &[_]*const Feature {
......@@ -26,7 +26,7 @@ pub const feature_apertureRegs = Feature{
2626};
2727
2828pub const feature_atomicFaddInsts = Feature{
29 .name = "atomic-fadd-insts",
29 .name = "atomicFaddInsts",
3030 .llvm_name = "atomic-fadd-insts",
3131 .description = "Has buffer_atomic_add_f32, buffer_atomic_pk_add_f16, global_atomic_add_f32, global_atomic_pk_add_f16 instructions",
3232 .dependencies = &[_]*const Feature {
......@@ -34,7 +34,7 @@ pub const feature_atomicFaddInsts = Feature{
3434};
3535
3636pub const feature_autoWaitcntBeforeBarrier = Feature{
37 .name = "auto-waitcnt-before-barrier",
37 .name = "autoWaitcntBeforeBarrier",
3838 .llvm_name = "auto-waitcnt-before-barrier",
3939 .description = "Hardware automatically inserts waitcnt before barrier",
4040 .dependencies = &[_]*const Feature {
......@@ -42,7 +42,7 @@ pub const feature_autoWaitcntBeforeBarrier = Feature{
4242};
4343
4444pub const feature_ciInsts = Feature{
45 .name = "ci-insts",
45 .name = "ciInsts",
4646 .llvm_name = "ci-insts",
4747 .description = "Additional instructions for CI+",
4848 .dependencies = &[_]*const Feature {
......@@ -50,7 +50,7 @@ pub const feature_ciInsts = Feature{
5050};
5151
5252pub const feature_codeObjectV3 = Feature{
53 .name = "code-object-v3",
53 .name = "codeObjectV3",
5454 .llvm_name = "code-object-v3",
5555 .description = "Generate code object version 3",
5656 .dependencies = &[_]*const Feature {
......@@ -66,7 +66,7 @@ pub const feature_cumode = Feature{
6666};
6767
6868pub const feature_dlInsts = Feature{
69 .name = "dl-insts",
69 .name = "dlInsts",
7070 .llvm_name = "dl-insts",
7171 .description = "Has v_fmac_f32 and v_xnor_b32 instructions",
7272 .dependencies = &[_]*const Feature {
......@@ -90,7 +90,7 @@ pub const feature_dpp8 = Feature{
9090};
9191
9292pub const feature_noSramEccSupport = Feature{
93 .name = "no-sram-ecc-support",
93 .name = "noSramEccSupport",
9494 .llvm_name = "no-sram-ecc-support",
9595 .description = "Hardware does not support SRAM ECC",
9696 .dependencies = &[_]*const Feature {
......@@ -98,7 +98,7 @@ pub const feature_noSramEccSupport = Feature{
9898};
9999
100100pub const feature_noXnackSupport = Feature{
101 .name = "no-xnack-support",
101 .name = "noXnackSupport",
102102 .llvm_name = "no-xnack-support",
103103 .description = "Hardware does not support XNACK",
104104 .dependencies = &[_]*const Feature {
......@@ -106,7 +106,7 @@ pub const feature_noXnackSupport = Feature{
106106};
107107
108108pub const feature_dot1Insts = Feature{
109 .name = "dot1-insts",
109 .name = "dot1Insts",
110110 .llvm_name = "dot1-insts",
111111 .description = "Has v_dot4_i32_i8 and v_dot8_i32_i4 instructions",
112112 .dependencies = &[_]*const Feature {
......@@ -114,7 +114,7 @@ pub const feature_dot1Insts = Feature{
114114};
115115
116116pub const feature_dot2Insts = Feature{
117 .name = "dot2-insts",
117 .name = "dot2Insts",
118118 .llvm_name = "dot2-insts",
119119 .description = "Has v_dot2_f32_f16, v_dot2_i32_i16, v_dot2_u32_u16, v_dot4_u32_u8, v_dot8_u32_u4 instructions",
120120 .dependencies = &[_]*const Feature {
......@@ -122,7 +122,7 @@ pub const feature_dot2Insts = Feature{
122122};
123123
124124pub const feature_dot3Insts = Feature{
125 .name = "dot3-insts",
125 .name = "dot3Insts",
126126 .llvm_name = "dot3-insts",
127127 .description = "Has v_dot8c_i32_i4 instruction",
128128 .dependencies = &[_]*const Feature {
......@@ -130,7 +130,7 @@ pub const feature_dot3Insts = Feature{
130130};
131131
132132pub const feature_dot4Insts = Feature{
133 .name = "dot4-insts",
133 .name = "dot4Insts",
134134 .llvm_name = "dot4-insts",
135135 .description = "Has v_dot2c_i32_i16 instruction",
136136 .dependencies = &[_]*const Feature {
......@@ -138,7 +138,7 @@ pub const feature_dot4Insts = Feature{
138138};
139139
140140pub const feature_dot5Insts = Feature{
141 .name = "dot5-insts",
141 .name = "dot5Insts",
142142 .llvm_name = "dot5-insts",
143143 .description = "Has v_dot2c_f32_f16 instruction",
144144 .dependencies = &[_]*const Feature {
......@@ -146,7 +146,7 @@ pub const feature_dot5Insts = Feature{
146146};
147147
148148pub const feature_dot6Insts = Feature{
149 .name = "dot6-insts",
149 .name = "dot6Insts",
150150 .llvm_name = "dot6-insts",
151151 .description = "Has v_dot4c_i32_i8 instruction",
152152 .dependencies = &[_]*const Feature {
......@@ -170,7 +170,7 @@ pub const feature_dumpcode = Feature{
170170};
171171
172172pub const feature_enableDs128 = Feature{
173 .name = "enable-ds128",
173 .name = "enableDs128",
174174 .llvm_name = "enable-ds128",
175175 .description = "Use ds_{read|write}_b128",
176176 .dependencies = &[_]*const Feature {
......@@ -178,7 +178,7 @@ pub const feature_enableDs128 = Feature{
178178};
179179
180180pub const feature_loadStoreOpt = Feature{
181 .name = "load-store-opt",
181 .name = "loadStoreOpt",
182182 .llvm_name = "load-store-opt",
183183 .description = "Enable SI load/store optimizer pass",
184184 .dependencies = &[_]*const Feature {
......@@ -186,7 +186,7 @@ pub const feature_loadStoreOpt = Feature{
186186};
187187
188188pub const feature_enablePrtStrictNull = Feature{
189 .name = "enable-prt-strict-null",
189 .name = "enablePrtStrictNull",
190190 .llvm_name = "enable-prt-strict-null",
191191 .description = "Enable zeroing of result registers for sparse texture fetches",
192192 .dependencies = &[_]*const Feature {
......@@ -194,7 +194,7 @@ pub const feature_enablePrtStrictNull = Feature{
194194};
195195
196196pub const feature_siScheduler = Feature{
197 .name = "si-scheduler",
197 .name = "siScheduler",
198198 .llvm_name = "si-scheduler",
199199 .description = "Enable SI Machine Scheduler",
200200 .dependencies = &[_]*const Feature {
......@@ -202,7 +202,7 @@ pub const feature_siScheduler = Feature{
202202};
203203
204204pub const feature_unsafeDsOffsetFolding = Feature{
205 .name = "unsafe-ds-offset-folding",
205 .name = "unsafeDsOffsetFolding",
206206 .llvm_name = "unsafe-ds-offset-folding",
207207 .description = "Force using DS instruction immediate offsets on SI",
208208 .dependencies = &[_]*const Feature {
......@@ -218,7 +218,7 @@ pub const feature_fmaf = Feature{
218218};
219219
220220pub const feature_fp16Denormals = Feature{
221 .name = "fp16-denormals",
221 .name = "fp16Denormals",
222222 .llvm_name = "fp16-denormals",
223223 .description = "Enable half precision denormal handling",
224224 .dependencies = &[_]*const Feature {
......@@ -227,7 +227,7 @@ pub const feature_fp16Denormals = Feature{
227227};
228228
229229pub const feature_fp32Denormals = Feature{
230 .name = "fp32-denormals",
230 .name = "fp32Denormals",
231231 .llvm_name = "fp32-denormals",
232232 .description = "Enable single precision denormal handling",
233233 .dependencies = &[_]*const Feature {
......@@ -243,7 +243,7 @@ pub const feature_fp64 = Feature{
243243};
244244
245245pub const feature_fp64Denormals = Feature{
246 .name = "fp64-denormals",
246 .name = "fp64Denormals",
247247 .llvm_name = "fp64-denormals",
248248 .description = "Enable double and half precision denormal handling",
249249 .dependencies = &[_]*const Feature {
......@@ -252,7 +252,7 @@ pub const feature_fp64Denormals = Feature{
252252};
253253
254254pub const feature_fp64Fp16Denormals = Feature{
255 .name = "fp64-fp16-denormals",
255 .name = "fp64Fp16Denormals",
256256 .llvm_name = "fp64-fp16-denormals",
257257 .description = "Enable double and half precision denormal handling",
258258 .dependencies = &[_]*const Feature {
......@@ -261,7 +261,7 @@ pub const feature_fp64Fp16Denormals = Feature{
261261};
262262
263263pub const feature_fpExceptions = Feature{
264 .name = "fp-exceptions",
264 .name = "fpExceptions",
265265 .llvm_name = "fp-exceptions",
266266 .description = "Enable floating point exceptions",
267267 .dependencies = &[_]*const Feature {
......@@ -269,7 +269,7 @@ pub const feature_fpExceptions = Feature{
269269};
270270
271271pub const feature_fastFmaf = Feature{
272 .name = "fast-fmaf",
272 .name = "fastFmaf",
273273 .llvm_name = "fast-fmaf",
274274 .description = "Assuming f32 fma is at least as fast as mul + add",
275275 .dependencies = &[_]*const Feature {
......@@ -277,7 +277,7 @@ pub const feature_fastFmaf = Feature{
277277};
278278
279279pub const feature_flatAddressSpace = Feature{
280 .name = "flat-address-space",
280 .name = "flatAddressSpace",
281281 .llvm_name = "flat-address-space",
282282 .description = "Support flat address space",
283283 .dependencies = &[_]*const Feature {
......@@ -285,7 +285,7 @@ pub const feature_flatAddressSpace = Feature{
285285};
286286
287287pub const feature_flatForGlobal = Feature{
288 .name = "flat-for-global",
288 .name = "flatForGlobal",
289289 .llvm_name = "flat-for-global",
290290 .description = "Force to generate flat instruction for global",
291291 .dependencies = &[_]*const Feature {
......@@ -293,7 +293,7 @@ pub const feature_flatForGlobal = Feature{
293293};
294294
295295pub const feature_flatGlobalInsts = Feature{
296 .name = "flat-global-insts",
296 .name = "flatGlobalInsts",
297297 .llvm_name = "flat-global-insts",
298298 .description = "Have global_* flat memory instructions",
299299 .dependencies = &[_]*const Feature {
......@@ -301,7 +301,7 @@ pub const feature_flatGlobalInsts = Feature{
301301};
302302
303303pub const feature_flatInstOffsets = Feature{
304 .name = "flat-inst-offsets",
304 .name = "flatInstOffsets",
305305 .llvm_name = "flat-inst-offsets",
306306 .description = "Flat instructions have immediate offset addressing mode",
307307 .dependencies = &[_]*const Feature {
......@@ -309,7 +309,7 @@ pub const feature_flatInstOffsets = Feature{
309309};
310310
311311pub const feature_flatScratchInsts = Feature{
312 .name = "flat-scratch-insts",
312 .name = "flatScratchInsts",
313313 .llvm_name = "flat-scratch-insts",
314314 .description = "Have scratch_* flat memory instructions",
315315 .dependencies = &[_]*const Feature {
......@@ -317,7 +317,7 @@ pub const feature_flatScratchInsts = Feature{
317317};
318318
319319pub const feature_flatSegmentOffsetBug = Feature{
320 .name = "flat-segment-offset-bug",
320 .name = "flatSegmentOffsetBug",
321321 .llvm_name = "flat-segment-offset-bug",
322322 .description = "GFX10 bug, inst_offset ignored in flat segment",
323323 .dependencies = &[_]*const Feature {
......@@ -325,7 +325,7 @@ pub const feature_flatSegmentOffsetBug = Feature{
325325};
326326
327327pub const feature_fmaMixInsts = Feature{
328 .name = "fma-mix-insts",
328 .name = "fmaMixInsts",
329329 .llvm_name = "fma-mix-insts",
330330 .description = "Has v_fma_mix_f32, v_fma_mixlo_f16, v_fma_mixhi_f16 instructions",
331331 .dependencies = &[_]*const Feature {
......@@ -333,7 +333,7 @@ pub const feature_fmaMixInsts = Feature{
333333};
334334
335335pub const feature_gcn3Encoding = Feature{
336 .name = "gcn3-encoding",
336 .name = "gcn3Encoding",
337337 .llvm_name = "gcn3-encoding",
338338 .description = "Encoding format for VI",
339339 .dependencies = &[_]*const Feature {
......@@ -341,7 +341,7 @@ pub const feature_gcn3Encoding = Feature{
341341};
342342
343343pub const feature_gfx7Gfx8Gfx9Insts = Feature{
344 .name = "gfx7-gfx8-gfx9-insts",
344 .name = "gfx7Gfx8Gfx9Insts",
345345 .llvm_name = "gfx7-gfx8-gfx9-insts",
346346 .description = "Instructions shared in GFX7, GFX8, GFX9",
347347 .dependencies = &[_]*const Feature {
......@@ -349,7 +349,7 @@ pub const feature_gfx7Gfx8Gfx9Insts = Feature{
349349};
350350
351351pub const feature_gfx8Insts = Feature{
352 .name = "gfx8-insts",
352 .name = "gfx8Insts",
353353 .llvm_name = "gfx8-insts",
354354 .description = "Additional instructions for GFX8+",
355355 .dependencies = &[_]*const Feature {
......@@ -357,7 +357,7 @@ pub const feature_gfx8Insts = Feature{
357357};
358358
359359pub const feature_gfx9Insts = Feature{
360 .name = "gfx9-insts",
360 .name = "gfx9Insts",
361361 .llvm_name = "gfx9-insts",
362362 .description = "Additional instructions for GFX9+",
363363 .dependencies = &[_]*const Feature {
......@@ -365,7 +365,7 @@ pub const feature_gfx9Insts = Feature{
365365};
366366
367367pub const feature_gfx10Insts = Feature{
368 .name = "gfx10-insts",
368 .name = "gfx10Insts",
369369 .llvm_name = "gfx10-insts",
370370 .description = "Additional instructions for GFX10+",
371371 .dependencies = &[_]*const Feature {
......@@ -373,7 +373,7 @@ pub const feature_gfx10Insts = Feature{
373373};
374374
375375pub const feature_instFwdPrefetchBug = Feature{
376 .name = "inst-fwd-prefetch-bug",
376 .name = "instFwdPrefetchBug",
377377 .llvm_name = "inst-fwd-prefetch-bug",
378378 .description = "S_INST_PREFETCH instruction causes shader to hang",
379379 .dependencies = &[_]*const Feature {
......@@ -381,7 +381,7 @@ pub const feature_instFwdPrefetchBug = Feature{
381381};
382382
383383pub const feature_intClampInsts = Feature{
384 .name = "int-clamp-insts",
384 .name = "intClampInsts",
385385 .llvm_name = "int-clamp-insts",
386386 .description = "Support clamp for integer destination",
387387 .dependencies = &[_]*const Feature {
......@@ -389,7 +389,7 @@ pub const feature_intClampInsts = Feature{
389389};
390390
391391pub const feature_inv2piInlineImm = Feature{
392 .name = "inv-2pi-inline-imm",
392 .name = "inv2piInlineImm",
393393 .llvm_name = "inv-2pi-inline-imm",
394394 .description = "Has 1 / (2 * pi) as inline immediate",
395395 .dependencies = &[_]*const Feature {
......@@ -413,7 +413,7 @@ pub const feature_ldsbankcount32 = Feature{
413413};
414414
415415pub const feature_ldsBranchVmemWarHazard = Feature{
416 .name = "lds-branch-vmem-war-hazard",
416 .name = "ldsBranchVmemWarHazard",
417417 .llvm_name = "lds-branch-vmem-war-hazard",
418418 .description = "Switching between LDS and VMEM-tex not waiting VM_VSRC=0",
419419 .dependencies = &[_]*const Feature {
......@@ -421,7 +421,7 @@ pub const feature_ldsBranchVmemWarHazard = Feature{
421421};
422422
423423pub const feature_ldsMisalignedBug = Feature{
424 .name = "lds-misaligned-bug",
424 .name = "ldsMisalignedBug",
425425 .llvm_name = "lds-misaligned-bug",
426426 .description = "Some GFX10 bug with misaligned multi-dword LDS access in WGP mode",
427427 .dependencies = &[_]*const Feature {
......@@ -453,7 +453,7 @@ pub const feature_localmemorysize65536 = Feature{
453453};
454454
455455pub const feature_maiInsts = Feature{
456 .name = "mai-insts",
456 .name = "maiInsts",
457457 .llvm_name = "mai-insts",
458458 .description = "Has mAI instructions",
459459 .dependencies = &[_]*const Feature {
......@@ -461,7 +461,7 @@ pub const feature_maiInsts = Feature{
461461};
462462
463463pub const feature_mfmaInlineLiteralBug = Feature{
464 .name = "mfma-inline-literal-bug",
464 .name = "mfmaInlineLiteralBug",
465465 .llvm_name = "mfma-inline-literal-bug",
466466 .description = "MFMA cannot use inline literal as SrcC",
467467 .dependencies = &[_]*const Feature {
......@@ -469,7 +469,7 @@ pub const feature_mfmaInlineLiteralBug = Feature{
469469};
470470
471471pub const feature_mimgR128 = Feature{
472 .name = "mimg-r128",
472 .name = "mimgR128",
473473 .llvm_name = "mimg-r128",
474474 .description = "Support 128-bit texture resources",
475475 .dependencies = &[_]*const Feature {
......@@ -477,7 +477,7 @@ pub const feature_mimgR128 = Feature{
477477};
478478
479479pub const feature_madMixInsts = Feature{
480 .name = "mad-mix-insts",
480 .name = "madMixInsts",
481481 .llvm_name = "mad-mix-insts",
482482 .description = "Has v_mad_mix_f32, v_mad_mixlo_f16, v_mad_mixhi_f16 instructions",
483483 .dependencies = &[_]*const Feature {
......@@ -485,7 +485,7 @@ pub const feature_madMixInsts = Feature{
485485};
486486
487487pub const feature_maxPrivateElementSize4 = Feature{
488 .name = "max-private-element-size-4",
488 .name = "maxPrivateElementSize4",
489489 .llvm_name = "max-private-element-size-4",
490490 .description = "Maximum private access size may be 4",
491491 .dependencies = &[_]*const Feature {
......@@ -493,7 +493,7 @@ pub const feature_maxPrivateElementSize4 = Feature{
493493};
494494
495495pub const feature_maxPrivateElementSize8 = Feature{
496 .name = "max-private-element-size-8",
496 .name = "maxPrivateElementSize8",
497497 .llvm_name = "max-private-element-size-8",
498498 .description = "Maximum private access size may be 8",
499499 .dependencies = &[_]*const Feature {
......@@ -501,7 +501,7 @@ pub const feature_maxPrivateElementSize8 = Feature{
501501};
502502
503503pub const feature_maxPrivateElementSize16 = Feature{
504 .name = "max-private-element-size-16",
504 .name = "maxPrivateElementSize16",
505505 .llvm_name = "max-private-element-size-16",
506506 .description = "Maximum private access size may be 16",
507507 .dependencies = &[_]*const Feature {
......@@ -517,7 +517,7 @@ pub const feature_movrel = Feature{
517517};
518518
519519pub const feature_nsaEncoding = Feature{
520 .name = "nsa-encoding",
520 .name = "nsaEncoding",
521521 .llvm_name = "nsa-encoding",
522522 .description = "Support NSA encoding for image instructions",
523523 .dependencies = &[_]*const Feature {
......@@ -525,7 +525,7 @@ pub const feature_nsaEncoding = Feature{
525525};
526526
527527pub const feature_nsaToVmemBug = Feature{
528 .name = "nsa-to-vmem-bug",
528 .name = "nsaToVmemBug",
529529 .llvm_name = "nsa-to-vmem-bug",
530530 .description = "MIMG-NSA followed by VMEM fail if EXEC_LO or EXEC_HI equals zero",
531531 .dependencies = &[_]*const Feature {
......@@ -533,7 +533,7 @@ pub const feature_nsaToVmemBug = Feature{
533533};
534534
535535pub const feature_noDataDepHazard = Feature{
536 .name = "no-data-dep-hazard",
536 .name = "noDataDepHazard",
537537 .llvm_name = "no-data-dep-hazard",
538538 .description = "Does not need SW waitstates",
539539 .dependencies = &[_]*const Feature {
......@@ -541,7 +541,7 @@ pub const feature_noDataDepHazard = Feature{
541541};
542542
543543pub const feature_noSdstCmpx = Feature{
544 .name = "no-sdst-cmpx",
544 .name = "noSdstCmpx",
545545 .llvm_name = "no-sdst-cmpx",
546546 .description = "V_CMPX does not write VCC/SGPR in addition to EXEC",
547547 .dependencies = &[_]*const Feature {
......@@ -549,7 +549,7 @@ pub const feature_noSdstCmpx = Feature{
549549};
550550
551551pub const feature_offset3fBug = Feature{
552 .name = "offset-3f-bug",
552 .name = "offset3fBug",
553553 .llvm_name = "offset-3f-bug",
554554 .description = "Branch offset of 3f hardware bug",
555555 .dependencies = &[_]*const Feature {
......@@ -557,7 +557,7 @@ pub const feature_offset3fBug = Feature{
557557};
558558
559559pub const feature_pkFmacF16Inst = Feature{
560 .name = "pk-fmac-f16-inst",
560 .name = "pkFmacF16Inst",
561561 .llvm_name = "pk-fmac-f16-inst",
562562 .description = "Has v_pk_fmac_f16 instruction",
563563 .dependencies = &[_]*const Feature {
......@@ -565,7 +565,7 @@ pub const feature_pkFmacF16Inst = Feature{
565565};
566566
567567pub const feature_promoteAlloca = Feature{
568 .name = "promote-alloca",
568 .name = "promoteAlloca",
569569 .llvm_name = "promote-alloca",
570570 .description = "Enable promote alloca pass",
571571 .dependencies = &[_]*const Feature {
......@@ -573,7 +573,7 @@ pub const feature_promoteAlloca = Feature{
573573};
574574
575575pub const feature_r128A16 = Feature{
576 .name = "r128-a16",
576 .name = "r128A16",
577577 .llvm_name = "r128-a16",
578578 .description = "Support 16 bit coordindates/gradients/lod/clamp/mip types on gfx9",
579579 .dependencies = &[_]*const Feature {
......@@ -581,7 +581,7 @@ pub const feature_r128A16 = Feature{
581581};
582582
583583pub const feature_registerBanking = Feature{
584 .name = "register-banking",
584 .name = "registerBanking",
585585 .llvm_name = "register-banking",
586586 .description = "Has register banking",
587587 .dependencies = &[_]*const Feature {
......@@ -597,7 +597,7 @@ pub const feature_sdwa = Feature{
597597};
598598
599599pub const feature_sdwaMav = Feature{
600 .name = "sdwa-mav",
600 .name = "sdwaMav",
601601 .llvm_name = "sdwa-mav",
602602 .description = "Support v_mac_f32/f16 with SDWA (Sub-DWORD Addressing) extension",
603603 .dependencies = &[_]*const Feature {
......@@ -605,7 +605,7 @@ pub const feature_sdwaMav = Feature{
605605};
606606
607607pub const feature_sdwaOmod = Feature{
608 .name = "sdwa-omod",
608 .name = "sdwaOmod",
609609 .llvm_name = "sdwa-omod",
610610 .description = "Support OMod with SDWA (Sub-DWORD Addressing) extension",
611611 .dependencies = &[_]*const Feature {
......@@ -613,7 +613,7 @@ pub const feature_sdwaOmod = Feature{
613613};
614614
615615pub const feature_sdwaOutModsVopc = Feature{
616 .name = "sdwa-out-mods-vopc",
616 .name = "sdwaOutModsVopc",
617617 .llvm_name = "sdwa-out-mods-vopc",
618618 .description = "Support clamp for VOPC with SDWA (Sub-DWORD Addressing) extension",
619619 .dependencies = &[_]*const Feature {
......@@ -621,7 +621,7 @@ pub const feature_sdwaOutModsVopc = Feature{
621621};
622622
623623pub const feature_sdwaScalar = Feature{
624 .name = "sdwa-scalar",
624 .name = "sdwaScalar",
625625 .llvm_name = "sdwa-scalar",
626626 .description = "Support scalar register with SDWA (Sub-DWORD Addressing) extension",
627627 .dependencies = &[_]*const Feature {
......@@ -629,7 +629,7 @@ pub const feature_sdwaScalar = Feature{
629629};
630630
631631pub const feature_sdwaSdst = Feature{
632 .name = "sdwa-sdst",
632 .name = "sdwaSdst",
633633 .llvm_name = "sdwa-sdst",
634634 .description = "Support scalar dst for VOPC with SDWA (Sub-DWORD Addressing) extension",
635635 .dependencies = &[_]*const Feature {
......@@ -637,7 +637,7 @@ pub const feature_sdwaSdst = Feature{
637637};
638638
639639pub const feature_sgprInitBug = Feature{
640 .name = "sgpr-init-bug",
640 .name = "sgprInitBug",
641641 .llvm_name = "sgpr-init-bug",
642642 .description = "VI SGPR initialization bug requiring a fixed SGPR allocation size",
643643 .dependencies = &[_]*const Feature {
......@@ -645,7 +645,7 @@ pub const feature_sgprInitBug = Feature{
645645};
646646
647647pub const feature_smemToVectorWriteHazard = Feature{
648 .name = "smem-to-vector-write-hazard",
648 .name = "smemToVectorWriteHazard",
649649 .llvm_name = "smem-to-vector-write-hazard",
650650 .description = "s_load_dword followed by v_cmp page faults",
651651 .dependencies = &[_]*const Feature {
......@@ -653,7 +653,7 @@ pub const feature_smemToVectorWriteHazard = Feature{
653653};
654654
655655pub const feature_sMemrealtime = Feature{
656 .name = "s-memrealtime",
656 .name = "sMemrealtime",
657657 .llvm_name = "s-memrealtime",
658658 .description = "Has s_memrealtime instruction",
659659 .dependencies = &[_]*const Feature {
......@@ -661,7 +661,7 @@ pub const feature_sMemrealtime = Feature{
661661};
662662
663663pub const feature_sramEcc = Feature{
664 .name = "sram-ecc",
664 .name = "sramEcc",
665665 .llvm_name = "sram-ecc",
666666 .description = "Enable SRAM ECC",
667667 .dependencies = &[_]*const Feature {
......@@ -669,7 +669,7 @@ pub const feature_sramEcc = Feature{
669669};
670670
671671pub const feature_scalarAtomics = Feature{
672 .name = "scalar-atomics",
672 .name = "scalarAtomics",
673673 .llvm_name = "scalar-atomics",
674674 .description = "Has atomic scalar memory instructions",
675675 .dependencies = &[_]*const Feature {
......@@ -677,7 +677,7 @@ pub const feature_scalarAtomics = Feature{
677677};
678678
679679pub const feature_scalarFlatScratchInsts = Feature{
680 .name = "scalar-flat-scratch-insts",
680 .name = "scalarFlatScratchInsts",
681681 .llvm_name = "scalar-flat-scratch-insts",
682682 .description = "Have s_scratch_* flat memory instructions",
683683 .dependencies = &[_]*const Feature {
......@@ -685,7 +685,7 @@ pub const feature_scalarFlatScratchInsts = Feature{
685685};
686686
687687pub const feature_scalarStores = Feature{
688 .name = "scalar-stores",
688 .name = "scalarStores",
689689 .llvm_name = "scalar-stores",
690690 .description = "Has store scalar memory instructions",
691691 .dependencies = &[_]*const Feature {
......@@ -693,7 +693,7 @@ pub const feature_scalarStores = Feature{
693693};
694694
695695pub const feature_trapHandler = Feature{
696 .name = "trap-handler",
696 .name = "trapHandler",
697697 .llvm_name = "trap-handler",
698698 .description = "Trap handler support",
699699 .dependencies = &[_]*const Feature {
......@@ -701,7 +701,7 @@ pub const feature_trapHandler = Feature{
701701};
702702
703703pub const feature_trigReducedRange = Feature{
704 .name = "trig-reduced-range",
704 .name = "trigReducedRange",
705705 .llvm_name = "trig-reduced-range",
706706 .description = "Requires use of fract on arguments to trig instructions",
707707 .dependencies = &[_]*const Feature {
......@@ -709,7 +709,7 @@ pub const feature_trigReducedRange = Feature{
709709};
710710
711711pub const feature_unalignedBufferAccess = Feature{
712 .name = "unaligned-buffer-access",
712 .name = "unalignedBufferAccess",
713713 .llvm_name = "unaligned-buffer-access",
714714 .description = "Support unaligned global loads and stores",
715715 .dependencies = &[_]*const Feature {
......@@ -717,7 +717,7 @@ pub const feature_unalignedBufferAccess = Feature{
717717};
718718
719719pub const feature_unalignedScratchAccess = Feature{
720 .name = "unaligned-scratch-access",
720 .name = "unalignedScratchAccess",
721721 .llvm_name = "unaligned-scratch-access",
722722 .description = "Support unaligned scratch loads and stores",
723723 .dependencies = &[_]*const Feature {
......@@ -725,7 +725,7 @@ pub const feature_unalignedScratchAccess = Feature{
725725};
726726
727727pub const feature_unpackedD16Vmem = Feature{
728 .name = "unpacked-d16-vmem",
728 .name = "unpackedD16Vmem",
729729 .llvm_name = "unpacked-d16-vmem",
730730 .description = "Has unpacked d16 vmem instructions",
731731 .dependencies = &[_]*const Feature {
......@@ -733,7 +733,7 @@ pub const feature_unpackedD16Vmem = Feature{
733733};
734734
735735pub const feature_vgprIndexMode = Feature{
736 .name = "vgpr-index-mode",
736 .name = "vgprIndexMode",
737737 .llvm_name = "vgpr-index-mode",
738738 .description = "Has VGPR mode register indexing",
739739 .dependencies = &[_]*const Feature {
......@@ -741,7 +741,7 @@ pub const feature_vgprIndexMode = Feature{
741741};
742742
743743pub const feature_vmemToScalarWriteHazard = Feature{
744 .name = "vmem-to-scalar-write-hazard",
744 .name = "vmemToScalarWriteHazard",
745745 .llvm_name = "vmem-to-scalar-write-hazard",
746746 .description = "VMEM instruction followed by scalar writing to EXEC mask, M0 or SGPR leads to incorrect execution.",
747747 .dependencies = &[_]*const Feature {
......@@ -749,7 +749,7 @@ pub const feature_vmemToScalarWriteHazard = Feature{
749749};
750750
751751pub const feature_vop3Literal = Feature{
752 .name = "vop3-literal",
752 .name = "vop3Literal",
753753 .llvm_name = "vop3-literal",
754754 .description = "Can use one literal in VOP3",
755755 .dependencies = &[_]*const Feature {
......@@ -765,7 +765,7 @@ pub const feature_vop3p = Feature{
765765};
766766
767767pub const feature_vcmpxExecWarHazard = Feature{
768 .name = "vcmpx-exec-war-hazard",
768 .name = "vcmpxExecWarHazard",
769769 .llvm_name = "vcmpx-exec-war-hazard",
770770 .description = "V_CMPX WAR hazard on EXEC (V_CMPX issue ONLY)",
771771 .dependencies = &[_]*const Feature {
......@@ -773,7 +773,7 @@ pub const feature_vcmpxExecWarHazard = Feature{
773773};
774774
775775pub const feature_vcmpxPermlaneHazard = Feature{
776 .name = "vcmpx-permlane-hazard",
776 .name = "vcmpxPermlaneHazard",
777777 .llvm_name = "vcmpx-permlane-hazard",
778778 .description = "TODO: describe me",
779779 .dependencies = &[_]*const Feature {
......@@ -821,7 +821,7 @@ pub const feature_xnack = Feature{
821821};
822822
823823pub const feature_halfRate64Ops = Feature{
824 .name = "half-rate-64-ops",
824 .name = "halfRate64Ops",
825825 .llvm_name = "half-rate-64-ops",
826826 .description = "Most fp64 instructions are half rate instead of quarter",
827827 .dependencies = &[_]*const Feature {
......@@ -942,15 +942,15 @@ pub const cpu_bonaire = Cpu{
942942 &feature_noXnackSupport,
943943 &feature_ldsbankcount32,
944944 &feature_movrel,
945 &feature_flatAddressSpace,
946945 &feature_trigReducedRange,
947 &feature_gfx7Gfx8Gfx9Insts,
948946 &feature_wavefrontsize64,
947 &feature_ciInsts,
948 &feature_fp64,
949 &feature_gfx7Gfx8Gfx9Insts,
949950 &feature_mimgR128,
950951 &feature_noSramEccSupport,
952 &feature_flatAddressSpace,
951953 &feature_localmemorysize65536,
952 &feature_fp64,
953 &feature_ciInsts,
954954 },
955955};
956956
......@@ -962,28 +962,28 @@ pub const cpu_carrizo = Cpu{
962962 &feature_fastFmaf,
963963 &feature_ldsbankcount32,
964964 &feature_unpackedD16Vmem,
965 &feature_sMemrealtime,
966 &feature_scalarStores,
965 &feature_BitInsts16,
967966 &feature_flatAddressSpace,
968 &feature_vgprIndexMode,
969 &feature_wavefrontsize64,
970 &feature_mimgR128,
971 &feature_intClampInsts,
972967 &feature_dpp,
973 &feature_movrel,
974 &feature_gcn3Encoding,
975 &feature_gfx8Insts,
976 &feature_trigReducedRange,
977 &feature_gfx7Gfx8Gfx9Insts,
978 &feature_sdwaMav,
979968 &feature_sdwa,
980 &feature_localmemorysize65536,
981 &feature_BitInsts16,
982 &feature_sdwaOutModsVopc,
969 &feature_mimgR128,
983970 &feature_inv2piInlineImm,
984 &feature_noSramEccSupport,
971 &feature_sdwaOutModsVopc,
972 &feature_sMemrealtime,
973 &feature_trigReducedRange,
974 &feature_vgprIndexMode,
985975 &feature_fp64,
976 &feature_gfx7Gfx8Gfx9Insts,
977 &feature_noSramEccSupport,
978 &feature_gfx8Insts,
979 &feature_localmemorysize65536,
980 &feature_movrel,
981 &feature_intClampInsts,
982 &feature_sdwaMav,
983 &feature_wavefrontsize64,
986984 &feature_ciInsts,
985 &feature_scalarStores,
986 &feature_gcn3Encoding,
987987 &feature_xnack,
988988 &feature_halfRate64Ops,
989989 },
......@@ -997,28 +997,28 @@ pub const cpu_fiji = Cpu{
997997 &feature_noXnackSupport,
998998 &feature_ldsbankcount32,
999999 &feature_unpackedD16Vmem,
1000 &feature_sMemrealtime,
1001 &feature_scalarStores,
1000 &feature_BitInsts16,
10021001 &feature_flatAddressSpace,
1003 &feature_vgprIndexMode,
1004 &feature_wavefrontsize64,
1005 &feature_mimgR128,
1006 &feature_intClampInsts,
10071002 &feature_dpp,
1008 &feature_movrel,
1009 &feature_gcn3Encoding,
1010 &feature_gfx8Insts,
1011 &feature_trigReducedRange,
1012 &feature_gfx7Gfx8Gfx9Insts,
1013 &feature_sdwaMav,
10141003 &feature_sdwa,
1015 &feature_localmemorysize65536,
1016 &feature_BitInsts16,
1017 &feature_sdwaOutModsVopc,
1004 &feature_mimgR128,
10181005 &feature_inv2piInlineImm,
1019 &feature_noSramEccSupport,
1006 &feature_sdwaOutModsVopc,
1007 &feature_sMemrealtime,
1008 &feature_trigReducedRange,
1009 &feature_vgprIndexMode,
10201010 &feature_fp64,
1011 &feature_gfx7Gfx8Gfx9Insts,
1012 &feature_noSramEccSupport,
1013 &feature_gfx8Insts,
1014 &feature_localmemorysize65536,
1015 &feature_movrel,
1016 &feature_intClampInsts,
1017 &feature_sdwaMav,
1018 &feature_wavefrontsize64,
10211019 &feature_ciInsts,
1020 &feature_scalarStores,
1021 &feature_gcn3Encoding,
10221022 },
10231023};
10241024
......@@ -1031,7 +1031,7 @@ pub const cpu_generic = Cpu{
10311031};
10321032
10331033pub const cpu_genericHsa = Cpu{
1034 .name = "generic-hsa",
1034 .name = "genericHsa",
10351035 .llvm_name = "generic-hsa",
10361036 .dependencies = &[_]*const Feature {
10371037 &feature_flatAddressSpace,
......@@ -1047,40 +1047,40 @@ pub const cpu_gfx1010 = Cpu{
10471047 &feature_dlInsts,
10481048 &feature_noXnackSupport,
10491049 &feature_flatSegmentOffsetBug,
1050 &feature_sdwaOmod,
1051 &feature_sMemrealtime,
1052 &feature_flatAddressSpace,
1053 &feature_gfx9Insts,
1054 &feature_fastFmaf,
1055 &feature_flatScratchInsts,
1056 &feature_mimgR128,
1057 &feature_noSdstCmpx,
1058 &feature_sdwaSdst,
1059 &feature_vop3p,
1060 &feature_intClampInsts,
1061 &feature_dpp,
1062 &feature_registerBanking,
1063 &feature_movrel,
1064 &feature_gfx8Insts,
1065 &feature_sdwa,
1066 &feature_noDataDepHazard,
1050 &feature_vop3Literal,
1051 &feature_apertureRegs,
10671052 &feature_flatGlobalInsts,
10681053 &feature_gfx10Insts,
1069 &feature_localmemorysize65536,
10701054 &feature_BitInsts16,
1071 &feature_addNoCarryInsts,
10721055 &feature_pkFmacF16Inst,
1056 &feature_vop3p,
1057 &feature_flatAddressSpace,
1058 &feature_dpp,
1059 &feature_inv2piInlineImm,
1060 &feature_dpp8,
1061 &feature_flatScratchInsts,
10731062 &feature_flatInstOffsets,
1063 &feature_mimgR128,
1064 &feature_sdwa,
10741065 &feature_fmaMixInsts,
1075 &feature_sdwaScalar,
1076 &feature_inv2piInlineImm,
1066 &feature_sMemrealtime,
10771067 &feature_vscnt,
1078 &feature_apertureRegs,
1079 &feature_dpp8,
1080 &feature_noSramEccSupport,
1068 &feature_fastFmaf,
1069 &feature_registerBanking,
1070 &feature_gfx9Insts,
1071 &feature_sdwaSdst,
1072 &feature_noSdstCmpx,
10811073 &feature_fp64,
1074 &feature_noSramEccSupport,
1075 &feature_gfx8Insts,
1076 &feature_localmemorysize65536,
1077 &feature_movrel,
1078 &feature_intClampInsts,
1079 &feature_sdwaScalar,
1080 &feature_sdwaOmod,
1081 &feature_noDataDepHazard,
10821082 &feature_ciInsts,
1083 &feature_vop3Literal,
1083 &feature_addNoCarryInsts,
10841084 &feature_instFwdPrefetchBug,
10851085 &feature_ldsbankcount32,
10861086 &feature_ldsBranchVmemWarHazard,
......@@ -1111,40 +1111,40 @@ pub const cpu_gfx1011 = Cpu{
11111111 &feature_dot5Insts,
11121112 &feature_dot6Insts,
11131113 &feature_flatSegmentOffsetBug,
1114 &feature_sdwaOmod,
1115 &feature_sMemrealtime,
1116 &feature_flatAddressSpace,
1117 &feature_gfx9Insts,
1118 &feature_fastFmaf,
1119 &feature_flatScratchInsts,
1120 &feature_mimgR128,
1121 &feature_noSdstCmpx,
1122 &feature_sdwaSdst,
1123 &feature_vop3p,
1124 &feature_intClampInsts,
1125 &feature_dpp,
1126 &feature_registerBanking,
1127 &feature_movrel,
1128 &feature_gfx8Insts,
1129 &feature_sdwa,
1130 &feature_noDataDepHazard,
1114 &feature_vop3Literal,
1115 &feature_apertureRegs,
11311116 &feature_flatGlobalInsts,
11321117 &feature_gfx10Insts,
1133 &feature_localmemorysize65536,
11341118 &feature_BitInsts16,
1135 &feature_addNoCarryInsts,
11361119 &feature_pkFmacF16Inst,
1120 &feature_vop3p,
1121 &feature_flatAddressSpace,
1122 &feature_dpp,
1123 &feature_inv2piInlineImm,
1124 &feature_dpp8,
1125 &feature_flatScratchInsts,
11371126 &feature_flatInstOffsets,
1127 &feature_mimgR128,
1128 &feature_sdwa,
11381129 &feature_fmaMixInsts,
1139 &feature_sdwaScalar,
1140 &feature_inv2piInlineImm,
1130 &feature_sMemrealtime,
11411131 &feature_vscnt,
1142 &feature_apertureRegs,
1143 &feature_dpp8,
1144 &feature_noSramEccSupport,
1132 &feature_fastFmaf,
1133 &feature_registerBanking,
1134 &feature_gfx9Insts,
1135 &feature_sdwaSdst,
1136 &feature_noSdstCmpx,
11451137 &feature_fp64,
1138 &feature_noSramEccSupport,
1139 &feature_gfx8Insts,
1140 &feature_localmemorysize65536,
1141 &feature_movrel,
1142 &feature_intClampInsts,
1143 &feature_sdwaScalar,
1144 &feature_sdwaOmod,
1145 &feature_noDataDepHazard,
11461146 &feature_ciInsts,
1147 &feature_vop3Literal,
1147 &feature_addNoCarryInsts,
11481148 &feature_instFwdPrefetchBug,
11491149 &feature_ldsbankcount32,
11501150 &feature_ldsBranchVmemWarHazard,
......@@ -1174,40 +1174,40 @@ pub const cpu_gfx1012 = Cpu{
11741174 &feature_dot5Insts,
11751175 &feature_dot6Insts,
11761176 &feature_flatSegmentOffsetBug,
1177 &feature_sdwaOmod,
1178 &feature_sMemrealtime,
1179 &feature_flatAddressSpace,
1180 &feature_gfx9Insts,
1181 &feature_fastFmaf,
1182 &feature_flatScratchInsts,
1183 &feature_mimgR128,
1184 &feature_noSdstCmpx,
1185 &feature_sdwaSdst,
1186 &feature_vop3p,
1187 &feature_intClampInsts,
1188 &feature_dpp,
1189 &feature_registerBanking,
1190 &feature_movrel,
1191 &feature_gfx8Insts,
1192 &feature_sdwa,
1193 &feature_noDataDepHazard,
1177 &feature_vop3Literal,
1178 &feature_apertureRegs,
11941179 &feature_flatGlobalInsts,
11951180 &feature_gfx10Insts,
1196 &feature_localmemorysize65536,
11971181 &feature_BitInsts16,
1198 &feature_addNoCarryInsts,
11991182 &feature_pkFmacF16Inst,
1183 &feature_vop3p,
1184 &feature_flatAddressSpace,
1185 &feature_dpp,
1186 &feature_inv2piInlineImm,
1187 &feature_dpp8,
1188 &feature_flatScratchInsts,
12001189 &feature_flatInstOffsets,
1190 &feature_mimgR128,
1191 &feature_sdwa,
12011192 &feature_fmaMixInsts,
1202 &feature_sdwaScalar,
1203 &feature_inv2piInlineImm,
1193 &feature_sMemrealtime,
12041194 &feature_vscnt,
1205 &feature_apertureRegs,
1206 &feature_dpp8,
1207 &feature_noSramEccSupport,
1195 &feature_fastFmaf,
1196 &feature_registerBanking,
1197 &feature_gfx9Insts,
1198 &feature_sdwaSdst,
1199 &feature_noSdstCmpx,
12081200 &feature_fp64,
1201 &feature_noSramEccSupport,
1202 &feature_gfx8Insts,
1203 &feature_localmemorysize65536,
1204 &feature_movrel,
1205 &feature_intClampInsts,
1206 &feature_sdwaScalar,
1207 &feature_sdwaOmod,
1208 &feature_noDataDepHazard,
12091209 &feature_ciInsts,
1210 &feature_vop3Literal,
1210 &feature_addNoCarryInsts,
12111211 &feature_instFwdPrefetchBug,
12121212 &feature_ldsbankcount32,
12131213 &feature_ldsBranchVmemWarHazard,
......@@ -1236,11 +1236,11 @@ pub const cpu_gfx600 = Cpu{
12361236 &feature_ldsbankcount32,
12371237 &feature_movrel,
12381238 &feature_trigReducedRange,
1239 &feature_mimgR128,
1240 &feature_localmemorysize32768,
12411239 &feature_wavefrontsize64,
1242 &feature_noSramEccSupport,
1240 &feature_localmemorysize32768,
12431241 &feature_fp64,
1242 &feature_noSramEccSupport,
1243 &feature_mimgR128,
12441244 &feature_halfRate64Ops,
12451245 },
12461246};
......@@ -1254,11 +1254,11 @@ pub const cpu_gfx601 = Cpu{
12541254 &feature_ldsbankcount32,
12551255 &feature_movrel,
12561256 &feature_trigReducedRange,
1257 &feature_mimgR128,
1258 &feature_localmemorysize32768,
12591257 &feature_wavefrontsize64,
1260 &feature_noSramEccSupport,
1258 &feature_localmemorysize32768,
12611259 &feature_fp64,
1260 &feature_noSramEccSupport,
1261 &feature_mimgR128,
12621262 },
12631263};
12641264
......@@ -1270,15 +1270,15 @@ pub const cpu_gfx700 = Cpu{
12701270 &feature_noXnackSupport,
12711271 &feature_ldsbankcount32,
12721272 &feature_movrel,
1273 &feature_flatAddressSpace,
12741273 &feature_trigReducedRange,
1275 &feature_gfx7Gfx8Gfx9Insts,
12761274 &feature_wavefrontsize64,
1275 &feature_ciInsts,
1276 &feature_fp64,
1277 &feature_gfx7Gfx8Gfx9Insts,
12771278 &feature_mimgR128,
12781279 &feature_noSramEccSupport,
1280 &feature_flatAddressSpace,
12791281 &feature_localmemorysize65536,
1280 &feature_fp64,
1281 &feature_ciInsts,
12821282 },
12831283};
12841284
......@@ -1291,15 +1291,15 @@ pub const cpu_gfx701 = Cpu{
12911291 &feature_fastFmaf,
12921292 &feature_ldsbankcount32,
12931293 &feature_movrel,
1294 &feature_flatAddressSpace,
12951294 &feature_trigReducedRange,
1296 &feature_gfx7Gfx8Gfx9Insts,
12971295 &feature_wavefrontsize64,
1296 &feature_ciInsts,
1297 &feature_fp64,
1298 &feature_gfx7Gfx8Gfx9Insts,
12981299 &feature_mimgR128,
12991300 &feature_noSramEccSupport,
1301 &feature_flatAddressSpace,
13001302 &feature_localmemorysize65536,
1301 &feature_fp64,
1302 &feature_ciInsts,
13031303 &feature_halfRate64Ops,
13041304 },
13051305};
......@@ -1313,15 +1313,15 @@ pub const cpu_gfx702 = Cpu{
13131313 &feature_fastFmaf,
13141314 &feature_ldsbankcount16,
13151315 &feature_movrel,
1316 &feature_flatAddressSpace,
13171316 &feature_trigReducedRange,
1318 &feature_gfx7Gfx8Gfx9Insts,
13191317 &feature_wavefrontsize64,
1318 &feature_ciInsts,
1319 &feature_fp64,
1320 &feature_gfx7Gfx8Gfx9Insts,
13201321 &feature_mimgR128,
13211322 &feature_noSramEccSupport,
1323 &feature_flatAddressSpace,
13221324 &feature_localmemorysize65536,
1323 &feature_fp64,
1324 &feature_ciInsts,
13251325 },
13261326};
13271327
......@@ -1333,15 +1333,15 @@ pub const cpu_gfx703 = Cpu{
13331333 &feature_noXnackSupport,
13341334 &feature_ldsbankcount16,
13351335 &feature_movrel,
1336 &feature_flatAddressSpace,
13371336 &feature_trigReducedRange,
1338 &feature_gfx7Gfx8Gfx9Insts,
13391337 &feature_wavefrontsize64,
1338 &feature_ciInsts,
1339 &feature_fp64,
1340 &feature_gfx7Gfx8Gfx9Insts,
13401341 &feature_mimgR128,
13411342 &feature_noSramEccSupport,
1343 &feature_flatAddressSpace,
13421344 &feature_localmemorysize65536,
1343 &feature_fp64,
1344 &feature_ciInsts,
13451345 },
13461346};
13471347
......@@ -1353,15 +1353,15 @@ pub const cpu_gfx704 = Cpu{
13531353 &feature_noXnackSupport,
13541354 &feature_ldsbankcount32,
13551355 &feature_movrel,
1356 &feature_flatAddressSpace,
13571356 &feature_trigReducedRange,
1358 &feature_gfx7Gfx8Gfx9Insts,
13591357 &feature_wavefrontsize64,
1358 &feature_ciInsts,
1359 &feature_fp64,
1360 &feature_gfx7Gfx8Gfx9Insts,
13601361 &feature_mimgR128,
13611362 &feature_noSramEccSupport,
1363 &feature_flatAddressSpace,
13621364 &feature_localmemorysize65536,
1363 &feature_fp64,
1364 &feature_ciInsts,
13651365 },
13661366};
13671367
......@@ -1373,28 +1373,28 @@ pub const cpu_gfx801 = Cpu{
13731373 &feature_fastFmaf,
13741374 &feature_ldsbankcount32,
13751375 &feature_unpackedD16Vmem,
1376 &feature_sMemrealtime,
1377 &feature_scalarStores,
1376 &feature_BitInsts16,
13781377 &feature_flatAddressSpace,
1379 &feature_vgprIndexMode,
1380 &feature_wavefrontsize64,
1381 &feature_mimgR128,
1382 &feature_intClampInsts,
13831378 &feature_dpp,
1384 &feature_movrel,
1385 &feature_gcn3Encoding,
1386 &feature_gfx8Insts,
1387 &feature_trigReducedRange,
1388 &feature_gfx7Gfx8Gfx9Insts,
1389 &feature_sdwaMav,
13901379 &feature_sdwa,
1391 &feature_localmemorysize65536,
1392 &feature_BitInsts16,
1393 &feature_sdwaOutModsVopc,
1380 &feature_mimgR128,
13941381 &feature_inv2piInlineImm,
1395 &feature_noSramEccSupport,
1382 &feature_sdwaOutModsVopc,
1383 &feature_sMemrealtime,
1384 &feature_trigReducedRange,
1385 &feature_vgprIndexMode,
13961386 &feature_fp64,
1387 &feature_gfx7Gfx8Gfx9Insts,
1388 &feature_noSramEccSupport,
1389 &feature_gfx8Insts,
1390 &feature_localmemorysize65536,
1391 &feature_movrel,
1392 &feature_intClampInsts,
1393 &feature_sdwaMav,
1394 &feature_wavefrontsize64,
13971395 &feature_ciInsts,
1396 &feature_scalarStores,
1397 &feature_gcn3Encoding,
13981398 &feature_xnack,
13991399 &feature_halfRate64Ops,
14001400 },
......@@ -1409,28 +1409,28 @@ pub const cpu_gfx802 = Cpu{
14091409 &feature_ldsbankcount32,
14101410 &feature_sgprInitBug,
14111411 &feature_unpackedD16Vmem,
1412 &feature_sMemrealtime,
1413 &feature_scalarStores,
1412 &feature_BitInsts16,
14141413 &feature_flatAddressSpace,
1415 &feature_vgprIndexMode,
1416 &feature_wavefrontsize64,
1417 &feature_mimgR128,
1418 &feature_intClampInsts,
14191414 &feature_dpp,
1420 &feature_movrel,
1421 &feature_gcn3Encoding,
1422 &feature_gfx8Insts,
1423 &feature_trigReducedRange,
1424 &feature_gfx7Gfx8Gfx9Insts,
1425 &feature_sdwaMav,
14261415 &feature_sdwa,
1427 &feature_localmemorysize65536,
1428 &feature_BitInsts16,
1429 &feature_sdwaOutModsVopc,
1416 &feature_mimgR128,
14301417 &feature_inv2piInlineImm,
1431 &feature_noSramEccSupport,
1418 &feature_sdwaOutModsVopc,
1419 &feature_sMemrealtime,
1420 &feature_trigReducedRange,
1421 &feature_vgprIndexMode,
14321422 &feature_fp64,
1423 &feature_gfx7Gfx8Gfx9Insts,
1424 &feature_noSramEccSupport,
1425 &feature_gfx8Insts,
1426 &feature_localmemorysize65536,
1427 &feature_movrel,
1428 &feature_intClampInsts,
1429 &feature_sdwaMav,
1430 &feature_wavefrontsize64,
14331431 &feature_ciInsts,
1432 &feature_scalarStores,
1433 &feature_gcn3Encoding,
14341434 },
14351435};
14361436
......@@ -1442,28 +1442,28 @@ pub const cpu_gfx803 = Cpu{
14421442 &feature_noXnackSupport,
14431443 &feature_ldsbankcount32,
14441444 &feature_unpackedD16Vmem,
1445 &feature_sMemrealtime,
1446 &feature_scalarStores,
1445 &feature_BitInsts16,
14471446 &feature_flatAddressSpace,
1448 &feature_vgprIndexMode,
1449 &feature_wavefrontsize64,
1450 &feature_mimgR128,
1451 &feature_intClampInsts,
14521447 &feature_dpp,
1453 &feature_movrel,
1454 &feature_gcn3Encoding,
1455 &feature_gfx8Insts,
1456 &feature_trigReducedRange,
1457 &feature_gfx7Gfx8Gfx9Insts,
1458 &feature_sdwaMav,
14591448 &feature_sdwa,
1460 &feature_localmemorysize65536,
1461 &feature_BitInsts16,
1462 &feature_sdwaOutModsVopc,
1449 &feature_mimgR128,
14631450 &feature_inv2piInlineImm,
1464 &feature_noSramEccSupport,
1451 &feature_sdwaOutModsVopc,
1452 &feature_sMemrealtime,
1453 &feature_trigReducedRange,
1454 &feature_vgprIndexMode,
14651455 &feature_fp64,
1456 &feature_gfx7Gfx8Gfx9Insts,
1457 &feature_noSramEccSupport,
1458 &feature_gfx8Insts,
1459 &feature_localmemorysize65536,
1460 &feature_movrel,
1461 &feature_intClampInsts,
1462 &feature_sdwaMav,
1463 &feature_wavefrontsize64,
14661464 &feature_ciInsts,
1465 &feature_scalarStores,
1466 &feature_gcn3Encoding,
14671467 },
14681468};
14691469
......@@ -1473,28 +1473,28 @@ pub const cpu_gfx810 = Cpu{
14731473 .dependencies = &[_]*const Feature {
14741474 &feature_codeObjectV3,
14751475 &feature_ldsbankcount16,
1476 &feature_sMemrealtime,
1477 &feature_scalarStores,
1476 &feature_BitInsts16,
14781477 &feature_flatAddressSpace,
1479 &feature_vgprIndexMode,
1480 &feature_wavefrontsize64,
1481 &feature_mimgR128,
1482 &feature_intClampInsts,
14831478 &feature_dpp,
1484 &feature_movrel,
1485 &feature_gcn3Encoding,
1486 &feature_gfx8Insts,
1487 &feature_trigReducedRange,
1488 &feature_gfx7Gfx8Gfx9Insts,
1489 &feature_sdwaMav,
14901479 &feature_sdwa,
1491 &feature_localmemorysize65536,
1492 &feature_BitInsts16,
1493 &feature_sdwaOutModsVopc,
1480 &feature_mimgR128,
14941481 &feature_inv2piInlineImm,
1495 &feature_noSramEccSupport,
1482 &feature_sdwaOutModsVopc,
1483 &feature_sMemrealtime,
1484 &feature_trigReducedRange,
1485 &feature_vgprIndexMode,
14961486 &feature_fp64,
1487 &feature_gfx7Gfx8Gfx9Insts,
1488 &feature_noSramEccSupport,
1489 &feature_gfx8Insts,
1490 &feature_localmemorysize65536,
1491 &feature_movrel,
1492 &feature_intClampInsts,
1493 &feature_sdwaMav,
1494 &feature_wavefrontsize64,
14971495 &feature_ciInsts,
1496 &feature_scalarStores,
1497 &feature_gcn3Encoding,
14981498 &feature_xnack,
14991499 },
15001500};
......@@ -1506,36 +1506,36 @@ pub const cpu_gfx900 = Cpu{
15061506 &feature_codeObjectV3,
15071507 &feature_noSramEccSupport,
15081508 &feature_noXnackSupport,
1509 &feature_sdwaOmod,
1510 &feature_sMemrealtime,
1511 &feature_scalarStores,
1509 &feature_apertureRegs,
1510 &feature_flatGlobalInsts,
1511 &feature_BitInsts16,
1512 &feature_vop3p,
15121513 &feature_flatAddressSpace,
1513 &feature_vgprIndexMode,
1514 &feature_gfx9Insts,
1515 &feature_r128A16,
1516 &feature_fastFmaf,
1517 &feature_wavefrontsize64,
1514 &feature_dpp,
1515 &feature_inv2piInlineImm,
1516 &feature_sdwa,
15181517 &feature_flatScratchInsts,
1518 &feature_flatInstOffsets,
1519 &feature_scalarFlatScratchInsts,
1520 &feature_sMemrealtime,
1521 &feature_fastFmaf,
1522 &feature_gfx9Insts,
15191523 &feature_sdwaSdst,
1520 &feature_vop3p,
1521 &feature_intClampInsts,
1522 &feature_dpp,
1523 &feature_scalarAtomics,
1524 &feature_gcn3Encoding,
1525 &feature_gfx8Insts,
1524 &feature_vgprIndexMode,
1525 &feature_fp64,
15261526 &feature_gfx7Gfx8Gfx9Insts,
1527 &feature_sdwa,
1528 &feature_flatGlobalInsts,
1527 &feature_gfx8Insts,
15291528 &feature_localmemorysize65536,
1530 &feature_BitInsts16,
1531 &feature_addNoCarryInsts,
1532 &feature_flatInstOffsets,
1529 &feature_intClampInsts,
15331530 &feature_sdwaScalar,
1534 &feature_inv2piInlineImm,
1535 &feature_apertureRegs,
1536 &feature_fp64,
1531 &feature_sdwaOmod,
1532 &feature_scalarAtomics,
1533 &feature_r128A16,
1534 &feature_wavefrontsize64,
15371535 &feature_ciInsts,
1538 &feature_scalarFlatScratchInsts,
1536 &feature_scalarStores,
1537 &feature_gcn3Encoding,
1538 &feature_addNoCarryInsts,
15391539 &feature_ldsbankcount32,
15401540 &feature_madMixInsts,
15411541 },
......@@ -1547,36 +1547,36 @@ pub const cpu_gfx902 = Cpu{
15471547 .dependencies = &[_]*const Feature {
15481548 &feature_codeObjectV3,
15491549 &feature_noSramEccSupport,
1550 &feature_sdwaOmod,
1551 &feature_sMemrealtime,
1552 &feature_scalarStores,
1550 &feature_apertureRegs,
1551 &feature_flatGlobalInsts,
1552 &feature_BitInsts16,
1553 &feature_vop3p,
15531554 &feature_flatAddressSpace,
1554 &feature_vgprIndexMode,
1555 &feature_gfx9Insts,
1556 &feature_r128A16,
1557 &feature_fastFmaf,
1558 &feature_wavefrontsize64,
1555 &feature_dpp,
1556 &feature_inv2piInlineImm,
1557 &feature_sdwa,
15591558 &feature_flatScratchInsts,
1559 &feature_flatInstOffsets,
1560 &feature_scalarFlatScratchInsts,
1561 &feature_sMemrealtime,
1562 &feature_fastFmaf,
1563 &feature_gfx9Insts,
15601564 &feature_sdwaSdst,
1561 &feature_vop3p,
1562 &feature_intClampInsts,
1563 &feature_dpp,
1564 &feature_scalarAtomics,
1565 &feature_gcn3Encoding,
1566 &feature_gfx8Insts,
1565 &feature_vgprIndexMode,
1566 &feature_fp64,
15671567 &feature_gfx7Gfx8Gfx9Insts,
1568 &feature_sdwa,
1569 &feature_flatGlobalInsts,
1568 &feature_gfx8Insts,
15701569 &feature_localmemorysize65536,
1571 &feature_BitInsts16,
1572 &feature_addNoCarryInsts,
1573 &feature_flatInstOffsets,
1570 &feature_intClampInsts,
15741571 &feature_sdwaScalar,
1575 &feature_inv2piInlineImm,
1576 &feature_apertureRegs,
1577 &feature_fp64,
1572 &feature_sdwaOmod,
1573 &feature_scalarAtomics,
1574 &feature_r128A16,
1575 &feature_wavefrontsize64,
15781576 &feature_ciInsts,
1579 &feature_scalarFlatScratchInsts,
1577 &feature_scalarStores,
1578 &feature_gcn3Encoding,
1579 &feature_addNoCarryInsts,
15801580 &feature_ldsbankcount32,
15811581 &feature_madMixInsts,
15821582 &feature_xnack,
......@@ -1591,36 +1591,36 @@ pub const cpu_gfx904 = Cpu{
15911591 &feature_noSramEccSupport,
15921592 &feature_noXnackSupport,
15931593 &feature_fmaMixInsts,
1594 &feature_sdwaOmod,
1595 &feature_sMemrealtime,
1596 &feature_scalarStores,
1594 &feature_apertureRegs,
1595 &feature_flatGlobalInsts,
1596 &feature_BitInsts16,
1597 &feature_vop3p,
15971598 &feature_flatAddressSpace,
1598 &feature_vgprIndexMode,
1599 &feature_gfx9Insts,
1600 &feature_r128A16,
1601 &feature_fastFmaf,
1602 &feature_wavefrontsize64,
1599 &feature_dpp,
1600 &feature_inv2piInlineImm,
1601 &feature_sdwa,
16031602 &feature_flatScratchInsts,
1603 &feature_flatInstOffsets,
1604 &feature_scalarFlatScratchInsts,
1605 &feature_sMemrealtime,
1606 &feature_fastFmaf,
1607 &feature_gfx9Insts,
16041608 &feature_sdwaSdst,
1605 &feature_vop3p,
1606 &feature_intClampInsts,
1607 &feature_dpp,
1608 &feature_scalarAtomics,
1609 &feature_gcn3Encoding,
1610 &feature_gfx8Insts,
1609 &feature_vgprIndexMode,
1610 &feature_fp64,
16111611 &feature_gfx7Gfx8Gfx9Insts,
1612 &feature_sdwa,
1613 &feature_flatGlobalInsts,
1612 &feature_gfx8Insts,
16141613 &feature_localmemorysize65536,
1615 &feature_BitInsts16,
1616 &feature_addNoCarryInsts,
1617 &feature_flatInstOffsets,
1614 &feature_intClampInsts,
16181615 &feature_sdwaScalar,
1619 &feature_inv2piInlineImm,
1620 &feature_apertureRegs,
1621 &feature_fp64,
1616 &feature_sdwaOmod,
1617 &feature_scalarAtomics,
1618 &feature_r128A16,
1619 &feature_wavefrontsize64,
16221620 &feature_ciInsts,
1623 &feature_scalarFlatScratchInsts,
1621 &feature_scalarStores,
1622 &feature_gcn3Encoding,
1623 &feature_addNoCarryInsts,
16241624 &feature_ldsbankcount32,
16251625 },
16261626};
......@@ -1635,36 +1635,36 @@ pub const cpu_gfx906 = Cpu{
16351635 &feature_dot1Insts,
16361636 &feature_dot2Insts,
16371637 &feature_fmaMixInsts,
1638 &feature_sdwaOmod,
1639 &feature_sMemrealtime,
1640 &feature_scalarStores,
1638 &feature_apertureRegs,
1639 &feature_flatGlobalInsts,
1640 &feature_BitInsts16,
1641 &feature_vop3p,
16411642 &feature_flatAddressSpace,
1642 &feature_vgprIndexMode,
1643 &feature_gfx9Insts,
1644 &feature_r128A16,
1645 &feature_fastFmaf,
1646 &feature_wavefrontsize64,
1643 &feature_dpp,
1644 &feature_inv2piInlineImm,
1645 &feature_sdwa,
16471646 &feature_flatScratchInsts,
1647 &feature_flatInstOffsets,
1648 &feature_scalarFlatScratchInsts,
1649 &feature_sMemrealtime,
1650 &feature_fastFmaf,
1651 &feature_gfx9Insts,
16481652 &feature_sdwaSdst,
1649 &feature_vop3p,
1650 &feature_intClampInsts,
1651 &feature_dpp,
1652 &feature_scalarAtomics,
1653 &feature_gcn3Encoding,
1654 &feature_gfx8Insts,
1653 &feature_vgprIndexMode,
1654 &feature_fp64,
16551655 &feature_gfx7Gfx8Gfx9Insts,
1656 &feature_sdwa,
1657 &feature_flatGlobalInsts,
1656 &feature_gfx8Insts,
16581657 &feature_localmemorysize65536,
1659 &feature_BitInsts16,
1660 &feature_addNoCarryInsts,
1661 &feature_flatInstOffsets,
1658 &feature_intClampInsts,
16621659 &feature_sdwaScalar,
1663 &feature_inv2piInlineImm,
1664 &feature_apertureRegs,
1665 &feature_fp64,
1660 &feature_sdwaOmod,
1661 &feature_scalarAtomics,
1662 &feature_r128A16,
1663 &feature_wavefrontsize64,
16661664 &feature_ciInsts,
1667 &feature_scalarFlatScratchInsts,
1665 &feature_scalarStores,
1666 &feature_gcn3Encoding,
1667 &feature_addNoCarryInsts,
16681668 &feature_ldsbankcount32,
16691669 &feature_halfRate64Ops,
16701670 },
......@@ -1684,36 +1684,36 @@ pub const cpu_gfx908 = Cpu{
16841684 &feature_dot5Insts,
16851685 &feature_dot6Insts,
16861686 &feature_fmaMixInsts,
1687 &feature_sdwaOmod,
1688 &feature_sMemrealtime,
1689 &feature_scalarStores,
1687 &feature_apertureRegs,
1688 &feature_flatGlobalInsts,
1689 &feature_BitInsts16,
1690 &feature_vop3p,
16901691 &feature_flatAddressSpace,
1691 &feature_vgprIndexMode,
1692 &feature_gfx9Insts,
1693 &feature_r128A16,
1694 &feature_fastFmaf,
1695 &feature_wavefrontsize64,
1692 &feature_dpp,
1693 &feature_inv2piInlineImm,
1694 &feature_sdwa,
16961695 &feature_flatScratchInsts,
1696 &feature_flatInstOffsets,
1697 &feature_scalarFlatScratchInsts,
1698 &feature_sMemrealtime,
1699 &feature_fastFmaf,
1700 &feature_gfx9Insts,
16971701 &feature_sdwaSdst,
1698 &feature_vop3p,
1699 &feature_intClampInsts,
1700 &feature_dpp,
1701 &feature_scalarAtomics,
1702 &feature_gcn3Encoding,
1703 &feature_gfx8Insts,
1702 &feature_vgprIndexMode,
1703 &feature_fp64,
17041704 &feature_gfx7Gfx8Gfx9Insts,
1705 &feature_sdwa,
1706 &feature_flatGlobalInsts,
1705 &feature_gfx8Insts,
17071706 &feature_localmemorysize65536,
1708 &feature_BitInsts16,
1709 &feature_addNoCarryInsts,
1710 &feature_flatInstOffsets,
1707 &feature_intClampInsts,
17111708 &feature_sdwaScalar,
1712 &feature_inv2piInlineImm,
1713 &feature_apertureRegs,
1714 &feature_fp64,
1709 &feature_sdwaOmod,
1710 &feature_scalarAtomics,
1711 &feature_r128A16,
1712 &feature_wavefrontsize64,
17151713 &feature_ciInsts,
1716 &feature_scalarFlatScratchInsts,
1714 &feature_scalarStores,
1715 &feature_gcn3Encoding,
1716 &feature_addNoCarryInsts,
17171717 &feature_ldsbankcount32,
17181718 &feature_maiInsts,
17191719 &feature_mfmaInlineLiteralBug,
......@@ -1728,36 +1728,36 @@ pub const cpu_gfx909 = Cpu{
17281728 .llvm_name = "gfx909",
17291729 .dependencies = &[_]*const Feature {
17301730 &feature_codeObjectV3,
1731 &feature_sdwaOmod,
1731 &feature_apertureRegs,
1732 &feature_flatGlobalInsts,
1733 &feature_BitInsts16,
1734 &feature_vop3p,
1735 &feature_flatAddressSpace,
1736 &feature_dpp,
1737 &feature_inv2piInlineImm,
1738 &feature_sdwa,
1739 &feature_flatScratchInsts,
1740 &feature_flatInstOffsets,
1741 &feature_scalarFlatScratchInsts,
17321742 &feature_sMemrealtime,
1733 &feature_scalarStores,
1734 &feature_flatAddressSpace,
1735 &feature_vgprIndexMode,
1736 &feature_gfx9Insts,
1737 &feature_r128A16,
17381743 &feature_fastFmaf,
1739 &feature_wavefrontsize64,
1740 &feature_flatScratchInsts,
1744 &feature_gfx9Insts,
17411745 &feature_sdwaSdst,
1742 &feature_vop3p,
1743 &feature_intClampInsts,
1744 &feature_dpp,
1745 &feature_scalarAtomics,
1746 &feature_gcn3Encoding,
1747 &feature_gfx8Insts,
1746 &feature_vgprIndexMode,
1747 &feature_fp64,
17481748 &feature_gfx7Gfx8Gfx9Insts,
1749 &feature_sdwa,
1750 &feature_flatGlobalInsts,
1749 &feature_gfx8Insts,
17511750 &feature_localmemorysize65536,
1752 &feature_BitInsts16,
1753 &feature_addNoCarryInsts,
1754 &feature_flatInstOffsets,
1751 &feature_intClampInsts,
17551752 &feature_sdwaScalar,
1756 &feature_inv2piInlineImm,
1757 &feature_apertureRegs,
1758 &feature_fp64,
1753 &feature_sdwaOmod,
1754 &feature_scalarAtomics,
1755 &feature_r128A16,
1756 &feature_wavefrontsize64,
17591757 &feature_ciInsts,
1760 &feature_scalarFlatScratchInsts,
1758 &feature_scalarStores,
1759 &feature_gcn3Encoding,
1760 &feature_addNoCarryInsts,
17611761 &feature_ldsbankcount32,
17621762 &feature_madMixInsts,
17631763 &feature_xnack,
......@@ -1773,11 +1773,11 @@ pub const cpu_hainan = Cpu{
17731773 &feature_ldsbankcount32,
17741774 &feature_movrel,
17751775 &feature_trigReducedRange,
1776 &feature_mimgR128,
1777 &feature_localmemorysize32768,
17781776 &feature_wavefrontsize64,
1779 &feature_noSramEccSupport,
1777 &feature_localmemorysize32768,
17801778 &feature_fp64,
1779 &feature_noSramEccSupport,
1780 &feature_mimgR128,
17811781 },
17821782};
17831783
......@@ -1790,15 +1790,15 @@ pub const cpu_hawaii = Cpu{
17901790 &feature_fastFmaf,
17911791 &feature_ldsbankcount32,
17921792 &feature_movrel,
1793 &feature_flatAddressSpace,
17941793 &feature_trigReducedRange,
1795 &feature_gfx7Gfx8Gfx9Insts,
17961794 &feature_wavefrontsize64,
1795 &feature_ciInsts,
1796 &feature_fp64,
1797 &feature_gfx7Gfx8Gfx9Insts,
17971798 &feature_mimgR128,
17981799 &feature_noSramEccSupport,
1800 &feature_flatAddressSpace,
17991801 &feature_localmemorysize65536,
1800 &feature_fp64,
1801 &feature_ciInsts,
18021802 &feature_halfRate64Ops,
18031803 },
18041804};
......@@ -1812,28 +1812,28 @@ pub const cpu_iceland = Cpu{
18121812 &feature_ldsbankcount32,
18131813 &feature_sgprInitBug,
18141814 &feature_unpackedD16Vmem,
1815 &feature_sMemrealtime,
1816 &feature_scalarStores,
1815 &feature_BitInsts16,
18171816 &feature_flatAddressSpace,
1818 &feature_vgprIndexMode,
1819 &feature_wavefrontsize64,
1820 &feature_mimgR128,
1821 &feature_intClampInsts,
18221817 &feature_dpp,
1823 &feature_movrel,
1824 &feature_gcn3Encoding,
1825 &feature_gfx8Insts,
1826 &feature_trigReducedRange,
1827 &feature_gfx7Gfx8Gfx9Insts,
1828 &feature_sdwaMav,
18291818 &feature_sdwa,
1830 &feature_localmemorysize65536,
1831 &feature_BitInsts16,
1832 &feature_sdwaOutModsVopc,
1819 &feature_mimgR128,
18331820 &feature_inv2piInlineImm,
1834 &feature_noSramEccSupport,
1821 &feature_sdwaOutModsVopc,
1822 &feature_sMemrealtime,
1823 &feature_trigReducedRange,
1824 &feature_vgprIndexMode,
18351825 &feature_fp64,
1826 &feature_gfx7Gfx8Gfx9Insts,
1827 &feature_noSramEccSupport,
1828 &feature_gfx8Insts,
1829 &feature_localmemorysize65536,
1830 &feature_movrel,
1831 &feature_intClampInsts,
1832 &feature_sdwaMav,
1833 &feature_wavefrontsize64,
18361834 &feature_ciInsts,
1835 &feature_scalarStores,
1836 &feature_gcn3Encoding,
18371837 },
18381838};
18391839
......@@ -1845,15 +1845,15 @@ pub const cpu_kabini = Cpu{
18451845 &feature_noXnackSupport,
18461846 &feature_ldsbankcount16,
18471847 &feature_movrel,
1848 &feature_flatAddressSpace,
18491848 &feature_trigReducedRange,
1850 &feature_gfx7Gfx8Gfx9Insts,
18511849 &feature_wavefrontsize64,
1850 &feature_ciInsts,
1851 &feature_fp64,
1852 &feature_gfx7Gfx8Gfx9Insts,
18521853 &feature_mimgR128,
18531854 &feature_noSramEccSupport,
1855 &feature_flatAddressSpace,
18541856 &feature_localmemorysize65536,
1855 &feature_fp64,
1856 &feature_ciInsts,
18571857 },
18581858};
18591859
......@@ -1865,15 +1865,15 @@ pub const cpu_kaveri = Cpu{
18651865 &feature_noXnackSupport,
18661866 &feature_ldsbankcount32,
18671867 &feature_movrel,
1868 &feature_flatAddressSpace,
18691868 &feature_trigReducedRange,
1870 &feature_gfx7Gfx8Gfx9Insts,
18711869 &feature_wavefrontsize64,
1870 &feature_ciInsts,
1871 &feature_fp64,
1872 &feature_gfx7Gfx8Gfx9Insts,
18721873 &feature_mimgR128,
18731874 &feature_noSramEccSupport,
1875 &feature_flatAddressSpace,
18741876 &feature_localmemorysize65536,
1875 &feature_fp64,
1876 &feature_ciInsts,
18771877 },
18781878};
18791879
......@@ -1885,15 +1885,15 @@ pub const cpu_mullins = Cpu{
18851885 &feature_noXnackSupport,
18861886 &feature_ldsbankcount16,
18871887 &feature_movrel,
1888 &feature_flatAddressSpace,
18891888 &feature_trigReducedRange,
1890 &feature_gfx7Gfx8Gfx9Insts,
18911889 &feature_wavefrontsize64,
1890 &feature_ciInsts,
1891 &feature_fp64,
1892 &feature_gfx7Gfx8Gfx9Insts,
18921893 &feature_mimgR128,
18931894 &feature_noSramEccSupport,
1895 &feature_flatAddressSpace,
18941896 &feature_localmemorysize65536,
1895 &feature_fp64,
1896 &feature_ciInsts,
18971897 },
18981898};
18991899
......@@ -1906,11 +1906,11 @@ pub const cpu_oland = Cpu{
19061906 &feature_ldsbankcount32,
19071907 &feature_movrel,
19081908 &feature_trigReducedRange,
1909 &feature_mimgR128,
1910 &feature_localmemorysize32768,
19111909 &feature_wavefrontsize64,
1912 &feature_noSramEccSupport,
1910 &feature_localmemorysize32768,
19131911 &feature_fp64,
1912 &feature_noSramEccSupport,
1913 &feature_mimgR128,
19141914 },
19151915};
19161916
......@@ -1923,11 +1923,11 @@ pub const cpu_pitcairn = Cpu{
19231923 &feature_ldsbankcount32,
19241924 &feature_movrel,
19251925 &feature_trigReducedRange,
1926 &feature_mimgR128,
1927 &feature_localmemorysize32768,
19281926 &feature_wavefrontsize64,
1929 &feature_noSramEccSupport,
1927 &feature_localmemorysize32768,
19301928 &feature_fp64,
1929 &feature_noSramEccSupport,
1930 &feature_mimgR128,
19311931 },
19321932};
19331933
......@@ -1939,28 +1939,28 @@ pub const cpu_polaris10 = Cpu{
19391939 &feature_noXnackSupport,
19401940 &feature_ldsbankcount32,
19411941 &feature_unpackedD16Vmem,
1942 &feature_sMemrealtime,
1943 &feature_scalarStores,
1942 &feature_BitInsts16,
19441943 &feature_flatAddressSpace,
1945 &feature_vgprIndexMode,
1946 &feature_wavefrontsize64,
1947 &feature_mimgR128,
1948 &feature_intClampInsts,
19491944 &feature_dpp,
1950 &feature_movrel,
1951 &feature_gcn3Encoding,
1952 &feature_gfx8Insts,
1953 &feature_trigReducedRange,
1954 &feature_gfx7Gfx8Gfx9Insts,
1955 &feature_sdwaMav,
19561945 &feature_sdwa,
1957 &feature_localmemorysize65536,
1958 &feature_BitInsts16,
1959 &feature_sdwaOutModsVopc,
1946 &feature_mimgR128,
19601947 &feature_inv2piInlineImm,
1961 &feature_noSramEccSupport,
1948 &feature_sdwaOutModsVopc,
1949 &feature_sMemrealtime,
1950 &feature_trigReducedRange,
1951 &feature_vgprIndexMode,
19621952 &feature_fp64,
1953 &feature_gfx7Gfx8Gfx9Insts,
1954 &feature_noSramEccSupport,
1955 &feature_gfx8Insts,
1956 &feature_localmemorysize65536,
1957 &feature_movrel,
1958 &feature_intClampInsts,
1959 &feature_sdwaMav,
1960 &feature_wavefrontsize64,
19631961 &feature_ciInsts,
1962 &feature_scalarStores,
1963 &feature_gcn3Encoding,
19641964 },
19651965};
19661966
......@@ -1972,28 +1972,28 @@ pub const cpu_polaris11 = Cpu{
19721972 &feature_noXnackSupport,
19731973 &feature_ldsbankcount32,
19741974 &feature_unpackedD16Vmem,
1975 &feature_sMemrealtime,
1976 &feature_scalarStores,
1975 &feature_BitInsts16,
19771976 &feature_flatAddressSpace,
1978 &feature_vgprIndexMode,
1979 &feature_wavefrontsize64,
1980 &feature_mimgR128,
1981 &feature_intClampInsts,
19821977 &feature_dpp,
1983 &feature_movrel,
1984 &feature_gcn3Encoding,
1985 &feature_gfx8Insts,
1986 &feature_trigReducedRange,
1987 &feature_gfx7Gfx8Gfx9Insts,
1988 &feature_sdwaMav,
19891978 &feature_sdwa,
1990 &feature_localmemorysize65536,
1991 &feature_BitInsts16,
1992 &feature_sdwaOutModsVopc,
1979 &feature_mimgR128,
19931980 &feature_inv2piInlineImm,
1994 &feature_noSramEccSupport,
1981 &feature_sdwaOutModsVopc,
1982 &feature_sMemrealtime,
1983 &feature_trigReducedRange,
1984 &feature_vgprIndexMode,
19951985 &feature_fp64,
1986 &feature_gfx7Gfx8Gfx9Insts,
1987 &feature_noSramEccSupport,
1988 &feature_gfx8Insts,
1989 &feature_localmemorysize65536,
1990 &feature_movrel,
1991 &feature_intClampInsts,
1992 &feature_sdwaMav,
1993 &feature_wavefrontsize64,
19961994 &feature_ciInsts,
1995 &feature_scalarStores,
1996 &feature_gcn3Encoding,
19971997 },
19981998};
19991999
......@@ -2003,28 +2003,28 @@ pub const cpu_stoney = Cpu{
20032003 .dependencies = &[_]*const Feature {
20042004 &feature_codeObjectV3,
20052005 &feature_ldsbankcount16,
2006 &feature_sMemrealtime,
2007 &feature_scalarStores,
2006 &feature_BitInsts16,
20082007 &feature_flatAddressSpace,
2009 &feature_vgprIndexMode,
2010 &feature_wavefrontsize64,
2011 &feature_mimgR128,
2012 &feature_intClampInsts,
20132008 &feature_dpp,
2014 &feature_movrel,
2015 &feature_gcn3Encoding,
2016 &feature_gfx8Insts,
2017 &feature_trigReducedRange,
2018 &feature_gfx7Gfx8Gfx9Insts,
2019 &feature_sdwaMav,
20202009 &feature_sdwa,
2021 &feature_localmemorysize65536,
2022 &feature_BitInsts16,
2023 &feature_sdwaOutModsVopc,
2010 &feature_mimgR128,
20242011 &feature_inv2piInlineImm,
2025 &feature_noSramEccSupport,
2012 &feature_sdwaOutModsVopc,
2013 &feature_sMemrealtime,
2014 &feature_trigReducedRange,
2015 &feature_vgprIndexMode,
20262016 &feature_fp64,
2017 &feature_gfx7Gfx8Gfx9Insts,
2018 &feature_noSramEccSupport,
2019 &feature_gfx8Insts,
2020 &feature_localmemorysize65536,
2021 &feature_movrel,
2022 &feature_intClampInsts,
2023 &feature_sdwaMav,
2024 &feature_wavefrontsize64,
20272025 &feature_ciInsts,
2026 &feature_scalarStores,
2027 &feature_gcn3Encoding,
20282028 &feature_xnack,
20292029 },
20302030};
......@@ -2039,11 +2039,11 @@ pub const cpu_tahiti = Cpu{
20392039 &feature_ldsbankcount32,
20402040 &feature_movrel,
20412041 &feature_trigReducedRange,
2042 &feature_mimgR128,
2043 &feature_localmemorysize32768,
20442042 &feature_wavefrontsize64,
2045 &feature_noSramEccSupport,
2043 &feature_localmemorysize32768,
20462044 &feature_fp64,
2045 &feature_noSramEccSupport,
2046 &feature_mimgR128,
20472047 &feature_halfRate64Ops,
20482048 },
20492049};
......@@ -2057,28 +2057,28 @@ pub const cpu_tonga = Cpu{
20572057 &feature_ldsbankcount32,
20582058 &feature_sgprInitBug,
20592059 &feature_unpackedD16Vmem,
2060 &feature_sMemrealtime,
2061 &feature_scalarStores,
2060 &feature_BitInsts16,
20622061 &feature_flatAddressSpace,
2063 &feature_vgprIndexMode,
2064 &feature_wavefrontsize64,
2065 &feature_mimgR128,
2066 &feature_intClampInsts,
20672062 &feature_dpp,
2068 &feature_movrel,
2069 &feature_gcn3Encoding,
2070 &feature_gfx8Insts,
2071 &feature_trigReducedRange,
2072 &feature_gfx7Gfx8Gfx9Insts,
2073 &feature_sdwaMav,
20742063 &feature_sdwa,
2075 &feature_localmemorysize65536,
2076 &feature_BitInsts16,
2077 &feature_sdwaOutModsVopc,
2064 &feature_mimgR128,
20782065 &feature_inv2piInlineImm,
2079 &feature_noSramEccSupport,
2066 &feature_sdwaOutModsVopc,
2067 &feature_sMemrealtime,
2068 &feature_trigReducedRange,
2069 &feature_vgprIndexMode,
20802070 &feature_fp64,
2071 &feature_gfx7Gfx8Gfx9Insts,
2072 &feature_noSramEccSupport,
2073 &feature_gfx8Insts,
2074 &feature_localmemorysize65536,
2075 &feature_movrel,
2076 &feature_intClampInsts,
2077 &feature_sdwaMav,
2078 &feature_wavefrontsize64,
20812079 &feature_ciInsts,
2080 &feature_scalarStores,
2081 &feature_gcn3Encoding,
20822082 },
20832083};
20842084
......@@ -2091,11 +2091,11 @@ pub const cpu_verde = Cpu{
20912091 &feature_ldsbankcount32,
20922092 &feature_movrel,
20932093 &feature_trigReducedRange,
2094 &feature_mimgR128,
2095 &feature_localmemorysize32768,
20962094 &feature_wavefrontsize64,
2097 &feature_noSramEccSupport,
2095 &feature_localmemorysize32768,
20982096 &feature_fp64,
2097 &feature_noSramEccSupport,
2098 &feature_mimgR128,
20992099 },
21002100};
21012101
lib/std/target/arm.zig+422-422
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_msecext8 = Feature{
5 .name = "8msecext",
5 .name = "msecext8",
66 .llvm_name = "8msecext",
77 .description = "Enable support for ARMv8-M Security Extensions",
88 .dependencies = &[_]*const Feature {
......@@ -28,7 +28,7 @@ pub const feature_aes = Feature{
2828};
2929
3030pub const feature_acquireRelease = Feature{
31 .name = "acquire-release",
31 .name = "acquireRelease",
3232 .llvm_name = "acquire-release",
3333 .description = "Has v8 acquire/release (lda/ldaex etc) instructions",
3434 .dependencies = &[_]*const Feature {
......@@ -36,7 +36,7 @@ pub const feature_acquireRelease = Feature{
3636};
3737
3838pub const feature_avoidMovsShop = Feature{
39 .name = "avoid-movs-shop",
39 .name = "avoidMovsShop",
4040 .llvm_name = "avoid-movs-shop",
4141 .description = "Avoid movs instructions with shifter operand",
4242 .dependencies = &[_]*const Feature {
......@@ -44,7 +44,7 @@ pub const feature_avoidMovsShop = Feature{
4444};
4545
4646pub const feature_avoidPartialCpsr = Feature{
47 .name = "avoid-partial-cpsr",
47 .name = "avoidPartialCpsr",
4848 .llvm_name = "avoid-partial-cpsr",
4949 .description = "Avoid CPSR partial update for OOO execution",
5050 .dependencies = &[_]*const Feature {
......@@ -60,7 +60,7 @@ pub const feature_crc = Feature{
6060};
6161
6262pub const feature_cheapPredicableCpsr = Feature{
63 .name = "cheap-predicable-cpsr",
63 .name = "cheapPredicableCpsr",
6464 .llvm_name = "cheap-predicable-cpsr",
6565 .description = "Disable +1 predication cost for instructions updating CPSR",
6666 .dependencies = &[_]*const Feature {
......@@ -68,7 +68,7 @@ pub const feature_cheapPredicableCpsr = Feature{
6868};
6969
7070pub const feature_vldnAlign = Feature{
71 .name = "vldn-align",
71 .name = "vldnAlign",
7272 .llvm_name = "vldn-align",
7373 .description = "Check for VLDn unaligned access",
7474 .dependencies = &[_]*const Feature {
......@@ -118,7 +118,7 @@ pub const feature_dsp = Feature{
118118};
119119
120120pub const feature_dontWidenVmovs = Feature{
121 .name = "dont-widen-vmovs",
121 .name = "dontWidenVmovs",
122122 .llvm_name = "dont-widen-vmovs",
123123 .description = "Don't widen VMOVS to VMOVD",
124124 .dependencies = &[_]*const Feature {
......@@ -136,7 +136,7 @@ pub const feature_dotprod = Feature{
136136};
137137
138138pub const feature_executeOnly = Feature{
139 .name = "execute-only",
139 .name = "executeOnly",
140140 .llvm_name = "execute-only",
141141 .description = "Enable the generation of execute only code.",
142142 .dependencies = &[_]*const Feature {
......@@ -144,7 +144,7 @@ pub const feature_executeOnly = Feature{
144144};
145145
146146pub const feature_expandFpMlx = Feature{
147 .name = "expand-fp-mlx",
147 .name = "expandFpMlx",
148148 .llvm_name = "expand-fp-mlx",
149149 .description = "Expand VFP/NEON MLA/MLS instructions",
150150 .dependencies = &[_]*const Feature {
......@@ -164,8 +164,8 @@ pub const feature_fp16fml = Feature{
164164 .llvm_name = "fp16fml",
165165 .description = "Enable full half-precision floating point fml instructions",
166166 .dependencies = &[_]*const Feature {
167 &feature_fp16,
168167 &feature_fpregs,
168 &feature_fp16,
169169 },
170170};
171171
......@@ -187,44 +187,44 @@ pub const feature_fpao = Feature{
187187};
188188
189189pub const feature_fpArmv8 = Feature{
190 .name = "fp-armv8",
190 .name = "fpArmv8",
191191 .llvm_name = "fp-armv8",
192192 .description = "Enable ARMv8 FP",
193193 .dependencies = &[_]*const Feature {
194 &feature_fp16,
195194 &feature_d32,
196195 &feature_fpregs,
196 &feature_fp16,
197197 },
198198};
199199
200200pub const feature_fpArmv8d16 = Feature{
201 .name = "fp-armv8d16",
201 .name = "fpArmv8d16",
202202 .llvm_name = "fp-armv8d16",
203203 .description = "Enable ARMv8 FP with only 16 d-registers",
204204 .dependencies = &[_]*const Feature {
205 &feature_fp16,
206205 &feature_fpregs,
206 &feature_fp16,
207207 },
208208};
209209
210210pub const feature_fpArmv8d16sp = Feature{
211 .name = "fp-armv8d16sp",
211 .name = "fpArmv8d16sp",
212212 .llvm_name = "fp-armv8d16sp",
213213 .description = "Enable ARMv8 FP with only 16 d-registers and no double precision",
214214 .dependencies = &[_]*const Feature {
215 &feature_fp16,
216215 &feature_fpregs,
216 &feature_fp16,
217217 },
218218};
219219
220220pub const feature_fpArmv8sp = Feature{
221 .name = "fp-armv8sp",
221 .name = "fpArmv8sp",
222222 .llvm_name = "fp-armv8sp",
223223 .description = "Enable ARMv8 FP with no double precision",
224224 .dependencies = &[_]*const Feature {
225 &feature_fp16,
226225 &feature_d32,
227226 &feature_fpregs,
227 &feature_fp16,
228228 },
229229};
230230
......@@ -259,13 +259,13 @@ pub const feature_fullfp16 = Feature{
259259 .llvm_name = "fullfp16",
260260 .description = "Enable full half-precision floating point",
261261 .dependencies = &[_]*const Feature {
262 &feature_fp16,
263262 &feature_fpregs,
263 &feature_fp16,
264264 },
265265};
266266
267267pub const feature_fuseAes = Feature{
268 .name = "fuse-aes",
268 .name = "fuseAes",
269269 .llvm_name = "fuse-aes",
270270 .description = "CPU fuses AES crypto operations",
271271 .dependencies = &[_]*const Feature {
......@@ -273,7 +273,7 @@ pub const feature_fuseAes = Feature{
273273};
274274
275275pub const feature_fuseLiterals = Feature{
276 .name = "fuse-literals",
276 .name = "fuseLiterals",
277277 .llvm_name = "fuse-literals",
278278 .description = "CPU fuses literal generation operations",
279279 .dependencies = &[_]*const Feature {
......@@ -281,7 +281,7 @@ pub const feature_fuseLiterals = Feature{
281281};
282282
283283pub const feature_hwdivArm = Feature{
284 .name = "hwdiv-arm",
284 .name = "hwdivArm",
285285 .llvm_name = "hwdiv-arm",
286286 .description = "Enable divide instructions in ARM mode",
287287 .dependencies = &[_]*const Feature {
......@@ -297,7 +297,7 @@ pub const feature_hwdiv = Feature{
297297};
298298
299299pub const feature_noBranchPredictor = Feature{
300 .name = "no-branch-predictor",
300 .name = "noBranchPredictor",
301301 .llvm_name = "no-branch-predictor",
302302 .description = "Has no branch predictor",
303303 .dependencies = &[_]*const Feature {
......@@ -305,7 +305,7 @@ pub const feature_noBranchPredictor = Feature{
305305};
306306
307307pub const feature_retAddrStack = Feature{
308 .name = "ret-addr-stack",
308 .name = "retAddrStack",
309309 .llvm_name = "ret-addr-stack",
310310 .description = "Has return address stack",
311311 .dependencies = &[_]*const Feature {
......@@ -321,7 +321,7 @@ pub const feature_slowfpvmlx = Feature{
321321};
322322
323323pub const feature_vmlxHazards = Feature{
324 .name = "vmlx-hazards",
324 .name = "vmlxHazards",
325325 .llvm_name = "vmlx-hazards",
326326 .description = "Has VMLx hazards",
327327 .dependencies = &[_]*const Feature {
......@@ -337,7 +337,7 @@ pub const feature_lob = Feature{
337337};
338338
339339pub const feature_longCalls = Feature{
340 .name = "long-calls",
340 .name = "longCalls",
341341 .llvm_name = "long-calls",
342342 .description = "Generate calls via indirect call instructions",
343343 .dependencies = &[_]*const Feature {
......@@ -385,7 +385,7 @@ pub const feature_mve4beat = Feature{
385385};
386386
387387pub const feature_muxedUnits = Feature{
388 .name = "muxed-units",
388 .name = "muxedUnits",
389389 .llvm_name = "muxed-units",
390390 .description = "Has muxed AGU and NEON/FPU",
391391 .dependencies = &[_]*const Feature {
......@@ -411,7 +411,7 @@ pub const feature_neonfp = Feature{
411411};
412412
413413pub const feature_neonFpmovs = Feature{
414 .name = "neon-fpmovs",
414 .name = "neonFpmovs",
415415 .llvm_name = "neon-fpmovs",
416416 .description = "Convert VMOVSR, VMOVRS, VMOVS to NEON",
417417 .dependencies = &[_]*const Feature {
......@@ -419,7 +419,7 @@ pub const feature_neonFpmovs = Feature{
419419};
420420
421421pub const feature_naclTrap = Feature{
422 .name = "nacl-trap",
422 .name = "naclTrap",
423423 .llvm_name = "nacl-trap",
424424 .description = "NaCl trap",
425425 .dependencies = &[_]*const Feature {
......@@ -435,7 +435,7 @@ pub const feature_noarm = Feature{
435435};
436436
437437pub const feature_noMovt = Feature{
438 .name = "no-movt",
438 .name = "noMovt",
439439 .llvm_name = "no-movt",
440440 .description = "Don't use movt/movw pairs for 32-bit imms",
441441 .dependencies = &[_]*const Feature {
......@@ -443,7 +443,7 @@ pub const feature_noMovt = Feature{
443443};
444444
445445pub const feature_noNegImmediates = Feature{
446 .name = "no-neg-immediates",
446 .name = "noNegImmediates",
447447 .llvm_name = "no-neg-immediates",
448448 .description = "Convert immediates and instructions to their negated or complemented equivalent when the immediate does not fit in the encoding.",
449449 .dependencies = &[_]*const Feature {
......@@ -451,7 +451,7 @@ pub const feature_noNegImmediates = Feature{
451451};
452452
453453pub const feature_disablePostraScheduler = Feature{
454 .name = "disable-postra-scheduler",
454 .name = "disablePostraScheduler",
455455 .llvm_name = "disable-postra-scheduler",
456456 .description = "Don't schedule again after register allocation",
457457 .dependencies = &[_]*const Feature {
......@@ -459,7 +459,7 @@ pub const feature_disablePostraScheduler = Feature{
459459};
460460
461461pub const feature_nonpipelinedVfp = Feature{
462 .name = "nonpipelined-vfp",
462 .name = "nonpipelinedVfp",
463463 .llvm_name = "nonpipelined-vfp",
464464 .description = "VFP instructions are not pipelined",
465465 .dependencies = &[_]*const Feature {
......@@ -475,7 +475,7 @@ pub const feature_perfmon = Feature{
475475};
476476
477477pub const feature_bit32 = Feature{
478 .name = "32bit",
478 .name = "bit32",
479479 .llvm_name = "32bit",
480480 .description = "Prefer 32-bit Thumb instrs",
481481 .dependencies = &[_]*const Feature {
......@@ -483,7 +483,7 @@ pub const feature_bit32 = Feature{
483483};
484484
485485pub const feature_preferIshst = Feature{
486 .name = "prefer-ishst",
486 .name = "preferIshst",
487487 .llvm_name = "prefer-ishst",
488488 .description = "Prefer ISHST barriers",
489489 .dependencies = &[_]*const Feature {
......@@ -491,7 +491,7 @@ pub const feature_preferIshst = Feature{
491491};
492492
493493pub const feature_loopAlign = Feature{
494 .name = "loop-align",
494 .name = "loopAlign",
495495 .llvm_name = "loop-align",
496496 .description = "Prefer 32-bit alignment for loops",
497497 .dependencies = &[_]*const Feature {
......@@ -499,7 +499,7 @@ pub const feature_loopAlign = Feature{
499499};
500500
501501pub const feature_preferVmovsr = Feature{
502 .name = "prefer-vmovsr",
502 .name = "preferVmovsr",
503503 .llvm_name = "prefer-vmovsr",
504504 .description = "Prefer VMOVSR",
505505 .dependencies = &[_]*const Feature {
......@@ -507,7 +507,7 @@ pub const feature_preferVmovsr = Feature{
507507};
508508
509509pub const feature_profUnpr = Feature{
510 .name = "prof-unpr",
510 .name = "profUnpr",
511511 .llvm_name = "prof-unpr",
512512 .description = "Is profitable to unpredicate",
513513 .dependencies = &[_]*const Feature {
......@@ -531,7 +531,7 @@ pub const feature_rclass = Feature{
531531};
532532
533533pub const feature_readTpHard = Feature{
534 .name = "read-tp-hard",
534 .name = "readTpHard",
535535 .llvm_name = "read-tp-hard",
536536 .description = "Reading thread pointer from register",
537537 .dependencies = &[_]*const Feature {
......@@ -539,7 +539,7 @@ pub const feature_readTpHard = Feature{
539539};
540540
541541pub const feature_reserveR9 = Feature{
542 .name = "reserve-r9",
542 .name = "reserveR9",
543543 .llvm_name = "reserve-r9",
544544 .description = "Reserve R9, making it unavailable as GPR",
545545 .dependencies = &[_]*const Feature {
......@@ -565,7 +565,7 @@ pub const feature_sha2 = Feature{
565565};
566566
567567pub const feature_slowFpBrcc = Feature{
568 .name = "slow-fp-brcc",
568 .name = "slowFpBrcc",
569569 .llvm_name = "slow-fp-brcc",
570570 .description = "FP compare + branch is slow",
571571 .dependencies = &[_]*const Feature {
......@@ -573,7 +573,7 @@ pub const feature_slowFpBrcc = Feature{
573573};
574574
575575pub const feature_slowLoadDSubreg = Feature{
576 .name = "slow-load-D-subreg",
576 .name = "slowLoadDSubreg",
577577 .llvm_name = "slow-load-D-subreg",
578578 .description = "Loading into D subregs is slow",
579579 .dependencies = &[_]*const Feature {
......@@ -581,7 +581,7 @@ pub const feature_slowLoadDSubreg = Feature{
581581};
582582
583583pub const feature_slowOddReg = Feature{
584 .name = "slow-odd-reg",
584 .name = "slowOddReg",
585585 .llvm_name = "slow-odd-reg",
586586 .description = "VLDM/VSTM starting with an odd register is slow",
587587 .dependencies = &[_]*const Feature {
......@@ -589,7 +589,7 @@ pub const feature_slowOddReg = Feature{
589589};
590590
591591pub const feature_slowVdup32 = Feature{
592 .name = "slow-vdup32",
592 .name = "slowVdup32",
593593 .llvm_name = "slow-vdup32",
594594 .description = "Has slow VDUP32 - prefer VMOV",
595595 .dependencies = &[_]*const Feature {
......@@ -597,7 +597,7 @@ pub const feature_slowVdup32 = Feature{
597597};
598598
599599pub const feature_slowVgetlni32 = Feature{
600 .name = "slow-vgetlni32",
600 .name = "slowVgetlni32",
601601 .llvm_name = "slow-vgetlni32",
602602 .description = "Has slow VGETLNi32 - prefer VMOV",
603603 .dependencies = &[_]*const Feature {
......@@ -605,7 +605,7 @@ pub const feature_slowVgetlni32 = Feature{
605605};
606606
607607pub const feature_splatVfpNeon = Feature{
608 .name = "splat-vfp-neon",
608 .name = "splatVfpNeon",
609609 .llvm_name = "splat-vfp-neon",
610610 .description = "Splat register from VFP to NEON",
611611 .dependencies = &[_]*const Feature {
......@@ -614,7 +614,7 @@ pub const feature_splatVfpNeon = Feature{
614614};
615615
616616pub const feature_strictAlign = Feature{
617 .name = "strict-align",
617 .name = "strictAlign",
618618 .llvm_name = "strict-align",
619619 .description = "Disallow all unaligned memory access",
620620 .dependencies = &[_]*const Feature {
......@@ -638,7 +638,7 @@ pub const feature_trustzone = Feature{
638638};
639639
640640pub const feature_useAa = Feature{
641 .name = "use-aa",
641 .name = "useAa",
642642 .llvm_name = "use-aa",
643643 .description = "Use alias analysis during codegen",
644644 .dependencies = &[_]*const Feature {
......@@ -646,7 +646,7 @@ pub const feature_useAa = Feature{
646646};
647647
648648pub const feature_useMisched = Feature{
649 .name = "use-misched",
649 .name = "useMisched",
650650 .llvm_name = "use-misched",
651651 .description = "Use the MachineScheduler",
652652 .dependencies = &[_]*const Feature {
......@@ -654,7 +654,7 @@ pub const feature_useMisched = Feature{
654654};
655655
656656pub const feature_wideStrideVfp = Feature{
657 .name = "wide-stride-vfp",
657 .name = "wideStrideVfp",
658658 .llvm_name = "wide-stride-vfp",
659659 .description = "Use a wide stride when allocating VFP registers",
660660 .dependencies = &[_]*const Feature {
......@@ -730,9 +730,9 @@ pub const feature_vfp4 = Feature{
730730 .llvm_name = "vfp4",
731731 .description = "Enable VFP4 instructions",
732732 .dependencies = &[_]*const Feature {
733 &feature_fp16,
734 &feature_d32,
735733 &feature_fpregs,
734 &feature_d32,
735 &feature_fp16,
736736 },
737737};
738738
......@@ -741,8 +741,8 @@ pub const feature_vfp4d16 = Feature{
741741 .llvm_name = "vfp4d16",
742742 .description = "Enable VFP4 instructions with only 16 d-registers",
743743 .dependencies = &[_]*const Feature {
744 &feature_fp16,
745744 &feature_fpregs,
745 &feature_fp16,
746746 },
747747};
748748
......@@ -751,8 +751,8 @@ pub const feature_vfp4d16sp = Feature{
751751 .llvm_name = "vfp4d16sp",
752752 .description = "Enable VFP4 instructions with only 16 d-registers and no double precision",
753753 .dependencies = &[_]*const Feature {
754 &feature_fp16,
755754 &feature_fpregs,
755 &feature_fp16,
756756 },
757757};
758758
......@@ -761,14 +761,14 @@ pub const feature_vfp4sp = Feature{
761761 .llvm_name = "vfp4sp",
762762 .description = "Enable VFP4 instructions with no double precision",
763763 .dependencies = &[_]*const Feature {
764 &feature_fp16,
765 &feature_d32,
766764 &feature_fpregs,
765 &feature_d32,
766 &feature_fp16,
767767 },
768768};
769769
770770pub const feature_vmlxForwarding = Feature{
771 .name = "vmlx-forwarding",
771 .name = "vmlxForwarding",
772772 .llvm_name = "vmlx-forwarding",
773773 .description = "Has multiplier accumulator forwarding",
774774 .dependencies = &[_]*const Feature {
......@@ -925,7 +925,7 @@ pub const cpu_arm10tdmi = Cpu{
925925};
926926
927927pub const cpu_arm1136jS = Cpu{
928 .name = "arm1136j-s",
928 .name = "arm1136jS",
929929 .llvm_name = "arm1136j-s",
930930 .dependencies = &[_]*const Feature {
931931 &feature_dsp,
......@@ -933,7 +933,7 @@ pub const cpu_arm1136jS = Cpu{
933933};
934934
935935pub const cpu_arm1136jfS = Cpu{
936 .name = "arm1136jf-s",
936 .name = "arm1136jfS",
937937 .llvm_name = "arm1136jf-s",
938938 .dependencies = &[_]*const Feature {
939939 &feature_dsp,
......@@ -944,20 +944,20 @@ pub const cpu_arm1136jfS = Cpu{
944944};
945945
946946pub const cpu_arm1156t2S = Cpu{
947 .name = "arm1156t2-s",
947 .name = "arm1156t2S",
948948 .llvm_name = "arm1156t2-s",
949949 .dependencies = &[_]*const Feature {
950 &feature_dsp,
951950 &feature_thumb2,
951 &feature_dsp,
952952 },
953953};
954954
955955pub const cpu_arm1156t2fS = Cpu{
956 .name = "arm1156t2f-s",
956 .name = "arm1156t2fS",
957957 .llvm_name = "arm1156t2f-s",
958958 .dependencies = &[_]*const Feature {
959 &feature_dsp,
960959 &feature_thumb2,
960 &feature_dsp,
961961 &feature_slowfpvmlx,
962962 &feature_fpregs,
963963 &feature_vfp2,
......@@ -965,7 +965,7 @@ pub const cpu_arm1156t2fS = Cpu{
965965};
966966
967967pub const cpu_arm1176jS = Cpu{
968 .name = "arm1176j-s",
968 .name = "arm1176jS",
969969 .llvm_name = "arm1176j-s",
970970 .dependencies = &[_]*const Feature {
971971 &feature_trustzone,
......@@ -973,7 +973,7 @@ pub const cpu_arm1176jS = Cpu{
973973};
974974
975975pub const cpu_arm1176jzS = Cpu{
976 .name = "arm1176jz-s",
976 .name = "arm1176jzS",
977977 .llvm_name = "arm1176jz-s",
978978 .dependencies = &[_]*const Feature {
979979 &feature_trustzone,
......@@ -981,7 +981,7 @@ pub const cpu_arm1176jzS = Cpu{
981981};
982982
983983pub const cpu_arm1176jzfS = Cpu{
984 .name = "arm1176jzf-s",
984 .name = "arm1176jzfS",
985985 .llvm_name = "arm1176jzf-s",
986986 .dependencies = &[_]*const Feature {
987987 &feature_trustzone,
......@@ -1013,7 +1013,7 @@ pub const cpu_arm7tdmi = Cpu{
10131013};
10141014
10151015pub const cpu_arm7tdmiS = Cpu{
1016 .name = "arm7tdmi-s",
1016 .name = "arm7tdmiS",
10171017 .llvm_name = "arm7tdmi-s",
10181018 .dependencies = &[_]*const Feature {
10191019 },
......@@ -1062,7 +1062,7 @@ pub const cpu_arm922t = Cpu{
10621062};
10631063
10641064pub const cpu_arm926ejS = Cpu{
1065 .name = "arm926ej-s",
1065 .name = "arm926ejS",
10661066 .llvm_name = "arm926ej-s",
10671067 .dependencies = &[_]*const Feature {
10681068 },
......@@ -1076,21 +1076,21 @@ pub const cpu_arm940t = Cpu{
10761076};
10771077
10781078pub const cpu_arm946eS = Cpu{
1079 .name = "arm946e-s",
1079 .name = "arm946eS",
10801080 .llvm_name = "arm946e-s",
10811081 .dependencies = &[_]*const Feature {
10821082 },
10831083};
10841084
10851085pub const cpu_arm966eS = Cpu{
1086 .name = "arm966e-s",
1086 .name = "arm966eS",
10871087 .llvm_name = "arm966e-s",
10881088 .dependencies = &[_]*const Feature {
10891089 },
10901090};
10911091
10921092pub const cpu_arm968eS = Cpu{
1093 .name = "arm968e-s",
1093 .name = "arm968eS",
10941094 .llvm_name = "arm968e-s",
10951095 .dependencies = &[_]*const Feature {
10961096 },
......@@ -1111,17 +1111,17 @@ pub const cpu_arm9tdmi = Cpu{
11111111};
11121112
11131113pub const cpu_cortexA12 = Cpu{
1114 .name = "cortex-a12",
1114 .name = "cortexA12",
11151115 .llvm_name = "cortex-a12",
11161116 .dependencies = &[_]*const Feature {
1117 &feature_db,
1118 &feature_perfmon,
1117 &feature_thumb2,
11191118 &feature_fpregs,
1120 &feature_d32,
1121 &feature_v7clrex,
11221119 &feature_dsp,
1123 &feature_thumb2,
1120 &feature_v7clrex,
11241121 &feature_aclass,
1122 &feature_perfmon,
1123 &feature_d32,
1124 &feature_db,
11251125 &feature_avoidPartialCpsr,
11261126 &feature_retAddrStack,
11271127 &feature_mp,
......@@ -1136,17 +1136,17 @@ pub const cpu_cortexA12 = Cpu{
11361136};
11371137
11381138pub const cpu_cortexA15 = Cpu{
1139 .name = "cortex-a15",
1139 .name = "cortexA15",
11401140 .llvm_name = "cortex-a15",
11411141 .dependencies = &[_]*const Feature {
1142 &feature_db,
1143 &feature_perfmon,
1142 &feature_thumb2,
11441143 &feature_fpregs,
1145 &feature_d32,
1146 &feature_v7clrex,
11471144 &feature_dsp,
1148 &feature_thumb2,
1145 &feature_v7clrex,
11491146 &feature_aclass,
1147 &feature_perfmon,
1148 &feature_d32,
1149 &feature_db,
11501150 &feature_avoidPartialCpsr,
11511151 &feature_vldnAlign,
11521152 &feature_dontWidenVmovs,
......@@ -1164,17 +1164,17 @@ pub const cpu_cortexA15 = Cpu{
11641164};
11651165
11661166pub const cpu_cortexA17 = Cpu{
1167 .name = "cortex-a17",
1167 .name = "cortexA17",
11681168 .llvm_name = "cortex-a17",
11691169 .dependencies = &[_]*const Feature {
1170 &feature_db,
1171 &feature_perfmon,
1170 &feature_thumb2,
11721171 &feature_fpregs,
1173 &feature_d32,
1174 &feature_v7clrex,
11751172 &feature_dsp,
1176 &feature_thumb2,
1173 &feature_v7clrex,
11771174 &feature_aclass,
1175 &feature_perfmon,
1176 &feature_d32,
1177 &feature_db,
11781178 &feature_avoidPartialCpsr,
11791179 &feature_retAddrStack,
11801180 &feature_mp,
......@@ -1189,63 +1189,63 @@ pub const cpu_cortexA17 = Cpu{
11891189};
11901190
11911191pub const cpu_cortexA32 = Cpu{
1192 .name = "cortex-a32",
1192 .name = "cortexA32",
11931193 .llvm_name = "cortex-a32",
11941194 .dependencies = &[_]*const Feature {
1195 &feature_db,
11961195 &feature_trustzone,
1197 &feature_perfmon,
1196 &feature_thumb2,
11981197 &feature_fpregs,
1198 &feature_dsp,
1199 &feature_v7clrex,
1200 &feature_hwdivArm,
11991201 &feature_acquireRelease,
1202 &feature_aclass,
1203 &feature_perfmon,
1204 &feature_crc,
12001205 &feature_mp,
1206 &feature_hwdiv,
12011207 &feature_d32,
1202 &feature_v7clrex,
1203 &feature_dsp,
1204 &feature_crc,
12051208 &feature_fp16,
1206 &feature_hwdiv,
1207 &feature_hwdivArm,
1208 &feature_thumb2,
1209 &feature_aclass,
1209 &feature_db,
12101210 &feature_crypto,
12111211 },
12121212};
12131213
12141214pub const cpu_cortexA35 = Cpu{
1215 .name = "cortex-a35",
1215 .name = "cortexA35",
12161216 .llvm_name = "cortex-a35",
12171217 .dependencies = &[_]*const Feature {
1218 &feature_db,
12191218 &feature_trustzone,
1220 &feature_perfmon,
1219 &feature_thumb2,
12211220 &feature_fpregs,
1221 &feature_dsp,
1222 &feature_v7clrex,
1223 &feature_hwdivArm,
12221224 &feature_acquireRelease,
1225 &feature_aclass,
1226 &feature_perfmon,
1227 &feature_crc,
12231228 &feature_mp,
1229 &feature_hwdiv,
12241230 &feature_d32,
1225 &feature_v7clrex,
1226 &feature_dsp,
1227 &feature_crc,
12281231 &feature_fp16,
1229 &feature_hwdiv,
1230 &feature_hwdivArm,
1231 &feature_thumb2,
1232 &feature_aclass,
1232 &feature_db,
12331233 &feature_crypto,
12341234 },
12351235};
12361236
12371237pub const cpu_cortexA5 = Cpu{
1238 .name = "cortex-a5",
1238 .name = "cortexA5",
12391239 .llvm_name = "cortex-a5",
12401240 .dependencies = &[_]*const Feature {
1241 &feature_db,
1242 &feature_perfmon,
1241 &feature_thumb2,
12431242 &feature_fpregs,
1244 &feature_d32,
1245 &feature_v7clrex,
12461243 &feature_dsp,
1247 &feature_thumb2,
1244 &feature_v7clrex,
12481245 &feature_aclass,
1246 &feature_perfmon,
1247 &feature_d32,
1248 &feature_db,
12491249 &feature_retAddrStack,
12501250 &feature_slowfpvmlx,
12511251 &feature_mp,
......@@ -1258,72 +1258,72 @@ pub const cpu_cortexA5 = Cpu{
12581258};
12591259
12601260pub const cpu_cortexA53 = Cpu{
1261 .name = "cortex-a53",
1261 .name = "cortexA53",
12621262 .llvm_name = "cortex-a53",
12631263 .dependencies = &[_]*const Feature {
1264 &feature_db,
12651264 &feature_trustzone,
1266 &feature_perfmon,
1265 &feature_thumb2,
12671266 &feature_fpregs,
1267 &feature_dsp,
1268 &feature_v7clrex,
1269 &feature_hwdivArm,
12681270 &feature_acquireRelease,
1271 &feature_aclass,
1272 &feature_perfmon,
1273 &feature_crc,
12691274 &feature_mp,
1275 &feature_hwdiv,
12701276 &feature_d32,
1271 &feature_v7clrex,
1272 &feature_dsp,
1273 &feature_crc,
12741277 &feature_fp16,
1275 &feature_hwdiv,
1276 &feature_hwdivArm,
1277 &feature_thumb2,
1278 &feature_aclass,
1278 &feature_db,
12791279 &feature_crypto,
12801280 &feature_fpao,
12811281 },
12821282};
12831283
12841284pub const cpu_cortexA55 = Cpu{
1285 .name = "cortex-a55",
1285 .name = "cortexA55",
12861286 .llvm_name = "cortex-a55",
12871287 .dependencies = &[_]*const Feature {
1288 &feature_ras,
1289 &feature_db,
12901288 &feature_trustzone,
1291 &feature_perfmon,
1289 &feature_thumb2,
12921290 &feature_fpregs,
1291 &feature_dsp,
1292 &feature_ras,
1293 &feature_v7clrex,
1294 &feature_hwdivArm,
12931295 &feature_acquireRelease,
1296 &feature_aclass,
1297 &feature_perfmon,
1298 &feature_crc,
12941299 &feature_mp,
1300 &feature_hwdiv,
12951301 &feature_d32,
1296 &feature_v7clrex,
1297 &feature_dsp,
1298 &feature_crc,
12991302 &feature_fp16,
1300 &feature_hwdiv,
1301 &feature_hwdivArm,
1302 &feature_thumb2,
1303 &feature_aclass,
1303 &feature_db,
13041304 &feature_dotprod,
13051305 },
13061306};
13071307
13081308pub const cpu_cortexA57 = Cpu{
1309 .name = "cortex-a57",
1309 .name = "cortexA57",
13101310 .llvm_name = "cortex-a57",
13111311 .dependencies = &[_]*const Feature {
1312 &feature_db,
13131312 &feature_trustzone,
1314 &feature_perfmon,
1313 &feature_thumb2,
13151314 &feature_fpregs,
1315 &feature_dsp,
1316 &feature_v7clrex,
1317 &feature_hwdivArm,
13161318 &feature_acquireRelease,
1319 &feature_aclass,
1320 &feature_perfmon,
1321 &feature_crc,
13171322 &feature_mp,
1323 &feature_hwdiv,
13181324 &feature_d32,
1319 &feature_v7clrex,
1320 &feature_dsp,
1321 &feature_crc,
13221325 &feature_fp16,
1323 &feature_hwdiv,
1324 &feature_hwdivArm,
1325 &feature_thumb2,
1326 &feature_aclass,
1326 &feature_db,
13271327 &feature_avoidPartialCpsr,
13281328 &feature_cheapPredicableCpsr,
13291329 &feature_crypto,
......@@ -1332,17 +1332,17 @@ pub const cpu_cortexA57 = Cpu{
13321332};
13331333
13341334pub const cpu_cortexA7 = Cpu{
1335 .name = "cortex-a7",
1335 .name = "cortexA7",
13361336 .llvm_name = "cortex-a7",
13371337 .dependencies = &[_]*const Feature {
1338 &feature_db,
1339 &feature_perfmon,
1338 &feature_thumb2,
13401339 &feature_fpregs,
1341 &feature_d32,
1342 &feature_v7clrex,
13431340 &feature_dsp,
1344 &feature_thumb2,
1341 &feature_v7clrex,
13451342 &feature_aclass,
1343 &feature_perfmon,
1344 &feature_d32,
1345 &feature_db,
13461346 &feature_retAddrStack,
13471347 &feature_slowfpvmlx,
13481348 &feature_vmlxHazards,
......@@ -1359,95 +1359,95 @@ pub const cpu_cortexA7 = Cpu{
13591359};
13601360
13611361pub const cpu_cortexA72 = Cpu{
1362 .name = "cortex-a72",
1362 .name = "cortexA72",
13631363 .llvm_name = "cortex-a72",
13641364 .dependencies = &[_]*const Feature {
1365 &feature_db,
13661365 &feature_trustzone,
1367 &feature_perfmon,
1366 &feature_thumb2,
13681367 &feature_fpregs,
1368 &feature_dsp,
1369 &feature_v7clrex,
1370 &feature_hwdivArm,
13691371 &feature_acquireRelease,
1372 &feature_aclass,
1373 &feature_perfmon,
1374 &feature_crc,
13701375 &feature_mp,
1376 &feature_hwdiv,
13711377 &feature_d32,
1372 &feature_v7clrex,
1373 &feature_dsp,
1374 &feature_crc,
13751378 &feature_fp16,
1376 &feature_hwdiv,
1377 &feature_hwdivArm,
1378 &feature_thumb2,
1379 &feature_aclass,
1379 &feature_db,
13801380 &feature_crypto,
13811381 },
13821382};
13831383
13841384pub const cpu_cortexA73 = Cpu{
1385 .name = "cortex-a73",
1385 .name = "cortexA73",
13861386 .llvm_name = "cortex-a73",
13871387 .dependencies = &[_]*const Feature {
1388 &feature_db,
13891388 &feature_trustzone,
1390 &feature_perfmon,
1389 &feature_thumb2,
13911390 &feature_fpregs,
1391 &feature_dsp,
1392 &feature_v7clrex,
1393 &feature_hwdivArm,
13921394 &feature_acquireRelease,
1395 &feature_aclass,
1396 &feature_perfmon,
1397 &feature_crc,
13931398 &feature_mp,
1399 &feature_hwdiv,
13941400 &feature_d32,
1395 &feature_v7clrex,
1396 &feature_dsp,
1397 &feature_crc,
13981401 &feature_fp16,
1399 &feature_hwdiv,
1400 &feature_hwdivArm,
1401 &feature_thumb2,
1402 &feature_aclass,
1402 &feature_db,
14031403 &feature_crypto,
14041404 },
14051405};
14061406
14071407pub const cpu_cortexA75 = Cpu{
1408 .name = "cortex-a75",
1408 .name = "cortexA75",
14091409 .llvm_name = "cortex-a75",
14101410 .dependencies = &[_]*const Feature {
1411 &feature_ras,
1412 &feature_db,
14131411 &feature_trustzone,
1414 &feature_perfmon,
1412 &feature_thumb2,
14151413 &feature_fpregs,
1414 &feature_dsp,
1415 &feature_ras,
1416 &feature_v7clrex,
1417 &feature_hwdivArm,
14161418 &feature_acquireRelease,
1419 &feature_aclass,
1420 &feature_perfmon,
1421 &feature_crc,
14171422 &feature_mp,
1423 &feature_hwdiv,
14181424 &feature_d32,
1419 &feature_v7clrex,
1420 &feature_dsp,
1421 &feature_crc,
14221425 &feature_fp16,
1423 &feature_hwdiv,
1424 &feature_hwdivArm,
1425 &feature_thumb2,
1426 &feature_aclass,
1426 &feature_db,
14271427 &feature_dotprod,
14281428 },
14291429};
14301430
14311431pub const cpu_cortexA76 = Cpu{
1432 .name = "cortex-a76",
1432 .name = "cortexA76",
14331433 .llvm_name = "cortex-a76",
14341434 .dependencies = &[_]*const Feature {
1435 &feature_ras,
1436 &feature_db,
14371435 &feature_trustzone,
1438 &feature_perfmon,
1436 &feature_thumb2,
14391437 &feature_fpregs,
1438 &feature_dsp,
1439 &feature_ras,
1440 &feature_v7clrex,
1441 &feature_hwdivArm,
14401442 &feature_acquireRelease,
1443 &feature_aclass,
1444 &feature_perfmon,
1445 &feature_crc,
14411446 &feature_mp,
1447 &feature_hwdiv,
14421448 &feature_d32,
1443 &feature_v7clrex,
1444 &feature_dsp,
1445 &feature_crc,
14461449 &feature_fp16,
1447 &feature_hwdiv,
1448 &feature_hwdivArm,
1449 &feature_thumb2,
1450 &feature_aclass,
1450 &feature_db,
14511451 &feature_crypto,
14521452 &feature_dotprod,
14531453 &feature_fullfp16,
......@@ -1455,25 +1455,25 @@ pub const cpu_cortexA76 = Cpu{
14551455};
14561456
14571457pub const cpu_cortexA76ae = Cpu{
1458 .name = "cortex-a76ae",
1458 .name = "cortexA76ae",
14591459 .llvm_name = "cortex-a76ae",
14601460 .dependencies = &[_]*const Feature {
1461 &feature_ras,
1462 &feature_db,
14631461 &feature_trustzone,
1464 &feature_perfmon,
1462 &feature_thumb2,
14651463 &feature_fpregs,
1466 &feature_acquireRelease,
1467 &feature_mp,
1468 &feature_d32,
1469 &feature_v7clrex,
14701464 &feature_dsp,
1471 &feature_crc,
1472 &feature_fp16,
1473 &feature_hwdiv,
1465 &feature_ras,
1466 &feature_v7clrex,
14741467 &feature_hwdivArm,
1475 &feature_thumb2,
1468 &feature_acquireRelease,
14761469 &feature_aclass,
1470 &feature_perfmon,
1471 &feature_crc,
1472 &feature_mp,
1473 &feature_hwdiv,
1474 &feature_d32,
1475 &feature_fp16,
1476 &feature_db,
14771477 &feature_crypto,
14781478 &feature_dotprod,
14791479 &feature_fullfp16,
......@@ -1481,17 +1481,17 @@ pub const cpu_cortexA76ae = Cpu{
14811481};
14821482
14831483pub const cpu_cortexA8 = Cpu{
1484 .name = "cortex-a8",
1484 .name = "cortexA8",
14851485 .llvm_name = "cortex-a8",
14861486 .dependencies = &[_]*const Feature {
1487 &feature_db,
1488 &feature_perfmon,
1487 &feature_thumb2,
14891488 &feature_fpregs,
1490 &feature_d32,
1491 &feature_v7clrex,
14921489 &feature_dsp,
1493 &feature_thumb2,
1490 &feature_v7clrex,
14941491 &feature_aclass,
1492 &feature_perfmon,
1493 &feature_d32,
1494 &feature_db,
14951495 &feature_retAddrStack,
14961496 &feature_slowfpvmlx,
14971497 &feature_vmlxHazards,
......@@ -1503,17 +1503,17 @@ pub const cpu_cortexA8 = Cpu{
15031503};
15041504
15051505pub const cpu_cortexA9 = Cpu{
1506 .name = "cortex-a9",
1506 .name = "cortexA9",
15071507 .llvm_name = "cortex-a9",
15081508 .dependencies = &[_]*const Feature {
1509 &feature_db,
1510 &feature_perfmon,
1509 &feature_thumb2,
15111510 &feature_fpregs,
1512 &feature_d32,
1513 &feature_v7clrex,
15141511 &feature_dsp,
1515 &feature_thumb2,
1512 &feature_v7clrex,
15161513 &feature_aclass,
1514 &feature_perfmon,
1515 &feature_d32,
1516 &feature_db,
15171517 &feature_avoidPartialCpsr,
15181518 &feature_vldnAlign,
15191519 &feature_expandFpMlx,
......@@ -1530,65 +1530,65 @@ pub const cpu_cortexA9 = Cpu{
15301530};
15311531
15321532pub const cpu_cortexM0 = Cpu{
1533 .name = "cortex-m0",
1533 .name = "cortexM0",
15341534 .llvm_name = "cortex-m0",
15351535 .dependencies = &[_]*const Feature {
1536 &feature_db,
1537 &feature_strictAlign,
15381536 &feature_noarm,
1537 &feature_strictAlign,
15391538 &feature_mclass,
1539 &feature_db,
15401540 },
15411541};
15421542
15431543pub const cpu_cortexM0plus = Cpu{
1544 .name = "cortex-m0plus",
1544 .name = "cortexM0plus",
15451545 .llvm_name = "cortex-m0plus",
15461546 .dependencies = &[_]*const Feature {
1547 &feature_db,
1548 &feature_strictAlign,
15491547 &feature_noarm,
1548 &feature_strictAlign,
15501549 &feature_mclass,
1550 &feature_db,
15511551 },
15521552};
15531553
15541554pub const cpu_cortexM1 = Cpu{
1555 .name = "cortex-m1",
1555 .name = "cortexM1",
15561556 .llvm_name = "cortex-m1",
15571557 .dependencies = &[_]*const Feature {
1558 &feature_db,
1559 &feature_strictAlign,
15601558 &feature_noarm,
1559 &feature_strictAlign,
15611560 &feature_mclass,
1561 &feature_db,
15621562 },
15631563};
15641564
15651565pub const cpu_cortexM23 = Cpu{
1566 .name = "cortex-m23",
1566 .name = "cortexM23",
15671567 .llvm_name = "cortex-m23",
15681568 .dependencies = &[_]*const Feature {
1569 &feature_db,
1570 &feature_strictAlign,
1569 &feature_noarm,
15711570 &feature_acquireRelease,
15721571 &feature_v7clrex,
1573 &feature_noarm,
1572 &feature_strictAlign,
15741573 &feature_mclass,
15751574 &feature_hwdiv,
15761575 &feature_msecext8,
1576 &feature_db,
15771577 &feature_noMovt,
15781578 },
15791579};
15801580
15811581pub const cpu_cortexM3 = Cpu{
1582 .name = "cortex-m3",
1582 .name = "cortexM3",
15831583 .llvm_name = "cortex-m3",
15841584 .dependencies = &[_]*const Feature {
1585 &feature_db,
1586 &feature_perfmon,
1587 &feature_v7clrex,
1585 &feature_thumb2,
15881586 &feature_noarm,
1587 &feature_v7clrex,
1588 &feature_perfmon,
15891589 &feature_mclass,
15901590 &feature_hwdiv,
1591 &feature_thumb2,
1591 &feature_db,
15921592 &feature_noBranchPredictor,
15931593 &feature_loopAlign,
15941594 &feature_useAa,
......@@ -1597,21 +1597,21 @@ pub const cpu_cortexM3 = Cpu{
15971597};
15981598
15991599pub const cpu_cortexM33 = Cpu{
1600 .name = "cortex-m33",
1600 .name = "cortexM33",
16011601 .llvm_name = "cortex-m33",
16021602 .dependencies = &[_]*const Feature {
1603 &feature_db,
1604 &feature_perfmon,
1603 &feature_thumb2,
1604 &feature_noarm,
16051605 &feature_acquireRelease,
16061606 &feature_v7clrex,
1607 &feature_noarm,
1607 &feature_perfmon,
16081608 &feature_mclass,
16091609 &feature_hwdiv,
1610 &feature_thumb2,
16111610 &feature_msecext8,
1611 &feature_db,
16121612 &feature_dsp,
1613 &feature_fp16,
16141613 &feature_fpregs,
1614 &feature_fp16,
16151615 &feature_fpArmv8d16sp,
16161616 &feature_noBranchPredictor,
16171617 &feature_slowfpvmlx,
......@@ -1622,21 +1622,21 @@ pub const cpu_cortexM33 = Cpu{
16221622};
16231623
16241624pub const cpu_cortexM35p = Cpu{
1625 .name = "cortex-m35p",
1625 .name = "cortexM35p",
16261626 .llvm_name = "cortex-m35p",
16271627 .dependencies = &[_]*const Feature {
1628 &feature_db,
1629 &feature_perfmon,
1628 &feature_thumb2,
1629 &feature_noarm,
16301630 &feature_acquireRelease,
16311631 &feature_v7clrex,
1632 &feature_noarm,
1632 &feature_perfmon,
16331633 &feature_mclass,
16341634 &feature_hwdiv,
1635 &feature_thumb2,
16361635 &feature_msecext8,
1636 &feature_db,
16371637 &feature_dsp,
1638 &feature_fp16,
16391638 &feature_fpregs,
1639 &feature_fp16,
16401640 &feature_fpArmv8d16sp,
16411641 &feature_noBranchPredictor,
16421642 &feature_slowfpvmlx,
......@@ -1647,73 +1647,73 @@ pub const cpu_cortexM35p = Cpu{
16471647};
16481648
16491649pub const cpu_cortexM4 = Cpu{
1650 .name = "cortex-m4",
1650 .name = "cortexM4",
16511651 .llvm_name = "cortex-m4",
16521652 .dependencies = &[_]*const Feature {
1653 &feature_db,
1654 &feature_perfmon,
1655 &feature_v7clrex,
1653 &feature_thumb2,
16561654 &feature_dsp,
16571655 &feature_noarm,
1656 &feature_v7clrex,
1657 &feature_perfmon,
16581658 &feature_mclass,
16591659 &feature_hwdiv,
1660 &feature_thumb2,
1660 &feature_db,
16611661 &feature_noBranchPredictor,
16621662 &feature_slowfpvmlx,
16631663 &feature_loopAlign,
16641664 &feature_useAa,
16651665 &feature_useMisched,
1666 &feature_fp16,
16671666 &feature_fpregs,
1667 &feature_fp16,
16681668 &feature_vfp4d16sp,
16691669 },
16701670};
16711671
16721672pub const cpu_cortexM7 = Cpu{
1673 .name = "cortex-m7",
1673 .name = "cortexM7",
16741674 .llvm_name = "cortex-m7",
16751675 .dependencies = &[_]*const Feature {
1676 &feature_db,
1677 &feature_perfmon,
1678 &feature_v7clrex,
1676 &feature_thumb2,
16791677 &feature_dsp,
16801678 &feature_noarm,
1679 &feature_v7clrex,
1680 &feature_perfmon,
16811681 &feature_mclass,
16821682 &feature_hwdiv,
1683 &feature_thumb2,
1684 &feature_fp16,
1683 &feature_db,
16851684 &feature_fpregs,
1685 &feature_fp16,
16861686 &feature_fpArmv8d16,
16871687 },
16881688};
16891689
16901690pub const cpu_cortexR4 = Cpu{
1691 .name = "cortex-r4",
1691 .name = "cortexR4",
16921692 .llvm_name = "cortex-r4",
16931693 .dependencies = &[_]*const Feature {
1694 &feature_db,
1695 &feature_perfmon,
1694 &feature_thumb2,
1695 &feature_dsp,
16961696 &feature_rclass,
16971697 &feature_v7clrex,
1698 &feature_dsp,
1698 &feature_perfmon,
16991699 &feature_hwdiv,
1700 &feature_thumb2,
1700 &feature_db,
17011701 &feature_avoidPartialCpsr,
17021702 &feature_retAddrStack,
17031703 },
17041704};
17051705
17061706pub const cpu_cortexR4f = Cpu{
1707 .name = "cortex-r4f",
1707 .name = "cortexR4f",
17081708 .llvm_name = "cortex-r4f",
17091709 .dependencies = &[_]*const Feature {
1710 &feature_db,
1711 &feature_perfmon,
1710 &feature_thumb2,
1711 &feature_dsp,
17121712 &feature_rclass,
17131713 &feature_v7clrex,
1714 &feature_dsp,
1714 &feature_perfmon,
17151715 &feature_hwdiv,
1716 &feature_thumb2,
1716 &feature_db,
17171717 &feature_avoidPartialCpsr,
17181718 &feature_retAddrStack,
17191719 &feature_slowfpvmlx,
......@@ -1724,16 +1724,16 @@ pub const cpu_cortexR4f = Cpu{
17241724};
17251725
17261726pub const cpu_cortexR5 = Cpu{
1727 .name = "cortex-r5",
1727 .name = "cortexR5",
17281728 .llvm_name = "cortex-r5",
17291729 .dependencies = &[_]*const Feature {
1730 &feature_db,
1731 &feature_perfmon,
1730 &feature_thumb2,
1731 &feature_dsp,
17321732 &feature_rclass,
17331733 &feature_v7clrex,
1734 &feature_dsp,
1734 &feature_perfmon,
17351735 &feature_hwdiv,
1736 &feature_thumb2,
1736 &feature_db,
17371737 &feature_avoidPartialCpsr,
17381738 &feature_hwdivArm,
17391739 &feature_retAddrStack,
......@@ -1745,24 +1745,24 @@ pub const cpu_cortexR5 = Cpu{
17451745};
17461746
17471747pub const cpu_cortexR52 = Cpu{
1748 .name = "cortex-r52",
1748 .name = "cortexR52",
17491749 .llvm_name = "cortex-r52",
17501750 .dependencies = &[_]*const Feature {
1751 &feature_db,
1752 &feature_perfmon,
1751 &feature_thumb2,
17531752 &feature_fpregs,
1753 &feature_dsp,
1754 &feature_dfb,
17541755 &feature_rclass,
1756 &feature_v7clrex,
1757 &feature_hwdivArm,
17551758 &feature_acquireRelease,
1759 &feature_perfmon,
1760 &feature_crc,
17561761 &feature_mp,
1762 &feature_hwdiv,
17571763 &feature_d32,
1758 &feature_v7clrex,
1759 &feature_dsp,
1760 &feature_crc,
17611764 &feature_fp16,
1762 &feature_hwdiv,
1763 &feature_hwdivArm,
1764 &feature_thumb2,
1765 &feature_dfb,
1765 &feature_db,
17661766 &feature_fpao,
17671767 &feature_useAa,
17681768 &feature_useMisched,
......@@ -1770,16 +1770,16 @@ pub const cpu_cortexR52 = Cpu{
17701770};
17711771
17721772pub const cpu_cortexR7 = Cpu{
1773 .name = "cortex-r7",
1773 .name = "cortexR7",
17741774 .llvm_name = "cortex-r7",
17751775 .dependencies = &[_]*const Feature {
1776 &feature_db,
1777 &feature_perfmon,
1776 &feature_thumb2,
1777 &feature_dsp,
17781778 &feature_rclass,
17791779 &feature_v7clrex,
1780 &feature_dsp,
1780 &feature_perfmon,
17811781 &feature_hwdiv,
1782 &feature_thumb2,
1782 &feature_db,
17831783 &feature_avoidPartialCpsr,
17841784 &feature_fp16,
17851785 &feature_hwdivArm,
......@@ -1793,16 +1793,16 @@ pub const cpu_cortexR7 = Cpu{
17931793};
17941794
17951795pub const cpu_cortexR8 = Cpu{
1796 .name = "cortex-r8",
1796 .name = "cortexR8",
17971797 .llvm_name = "cortex-r8",
17981798 .dependencies = &[_]*const Feature {
1799 &feature_db,
1800 &feature_perfmon,
1799 &feature_thumb2,
1800 &feature_dsp,
18011801 &feature_rclass,
18021802 &feature_v7clrex,
1803 &feature_dsp,
1803 &feature_perfmon,
18041804 &feature_hwdiv,
1805 &feature_thumb2,
1805 &feature_db,
18061806 &feature_avoidPartialCpsr,
18071807 &feature_fp16,
18081808 &feature_hwdivArm,
......@@ -1819,21 +1819,21 @@ pub const cpu_cyclone = Cpu{
18191819 .name = "cyclone",
18201820 .llvm_name = "cyclone",
18211821 .dependencies = &[_]*const Feature {
1822 &feature_db,
18231822 &feature_trustzone,
1824 &feature_perfmon,
1823 &feature_thumb2,
18251824 &feature_fpregs,
1825 &feature_dsp,
1826 &feature_v7clrex,
1827 &feature_hwdivArm,
18261828 &feature_acquireRelease,
1829 &feature_aclass,
1830 &feature_perfmon,
1831 &feature_crc,
18271832 &feature_mp,
1833 &feature_hwdiv,
18281834 &feature_d32,
1829 &feature_v7clrex,
1830 &feature_dsp,
1831 &feature_crc,
18321835 &feature_fp16,
1833 &feature_hwdiv,
1834 &feature_hwdivArm,
1835 &feature_thumb2,
1836 &feature_aclass,
1836 &feature_db,
18371837 &feature_avoidMovsShop,
18381838 &feature_avoidPartialCpsr,
18391839 &feature_crypto,
......@@ -1855,183 +1855,183 @@ pub const cpu_ep9312 = Cpu{
18551855};
18561856
18571857pub const cpu_exynosM1 = Cpu{
1858 .name = "exynos-m1",
1858 .name = "exynosM1",
18591859 .llvm_name = "exynos-m1",
18601860 .dependencies = &[_]*const Feature {
1861 &feature_db,
18621861 &feature_trustzone,
1863 &feature_perfmon,
1862 &feature_thumb2,
18641863 &feature_fpregs,
1864 &feature_dsp,
1865 &feature_v7clrex,
1866 &feature_hwdivArm,
18651867 &feature_acquireRelease,
1868 &feature_aclass,
1869 &feature_perfmon,
1870 &feature_crc,
18661871 &feature_mp,
1872 &feature_hwdiv,
18671873 &feature_d32,
1868 &feature_v7clrex,
1869 &feature_dsp,
1870 &feature_crc,
18711874 &feature_fp16,
1872 &feature_hwdiv,
1873 &feature_hwdivArm,
1874 &feature_thumb2,
1875 &feature_aclass,
1875 &feature_db,
18761876 &feature_expandFpMlx,
1877 &feature_fuseLiterals,
1878 &feature_fuseAes,
18791877 &feature_slowVgetlni32,
1880 &feature_wideStrideVfp,
18811878 &feature_profUnpr,
1882 &feature_slowVdup32,
18831879 &feature_slowfpvmlx,
1884 &feature_dontWidenVmovs,
1880 &feature_slowFpBrcc,
18851881 &feature_useAa,
1882 &feature_dontWidenVmovs,
18861883 &feature_retAddrStack,
1884 &feature_fuseLiterals,
1885 &feature_wideStrideVfp,
18871886 &feature_zcz,
1888 &feature_slowFpBrcc,
1887 &feature_fuseAes,
1888 &feature_slowVdup32,
18891889 },
18901890};
18911891
18921892pub const cpu_exynosM2 = Cpu{
1893 .name = "exynos-m2",
1893 .name = "exynosM2",
18941894 .llvm_name = "exynos-m2",
18951895 .dependencies = &[_]*const Feature {
1896 &feature_db,
18971896 &feature_trustzone,
1898 &feature_perfmon,
1897 &feature_thumb2,
18991898 &feature_fpregs,
1899 &feature_dsp,
1900 &feature_v7clrex,
1901 &feature_hwdivArm,
19001902 &feature_acquireRelease,
1903 &feature_aclass,
1904 &feature_perfmon,
1905 &feature_crc,
19011906 &feature_mp,
1907 &feature_hwdiv,
19021908 &feature_d32,
1903 &feature_v7clrex,
1904 &feature_dsp,
1905 &feature_crc,
19061909 &feature_fp16,
1907 &feature_hwdiv,
1908 &feature_hwdivArm,
1909 &feature_thumb2,
1910 &feature_aclass,
1910 &feature_db,
19111911 &feature_expandFpMlx,
1912 &feature_fuseLiterals,
1913 &feature_fuseAes,
19141912 &feature_slowVgetlni32,
1915 &feature_wideStrideVfp,
19161913 &feature_profUnpr,
1917 &feature_slowVdup32,
19181914 &feature_slowfpvmlx,
1919 &feature_dontWidenVmovs,
1915 &feature_slowFpBrcc,
19201916 &feature_useAa,
1917 &feature_dontWidenVmovs,
19211918 &feature_retAddrStack,
1919 &feature_fuseLiterals,
1920 &feature_wideStrideVfp,
19221921 &feature_zcz,
1923 &feature_slowFpBrcc,
1922 &feature_fuseAes,
1923 &feature_slowVdup32,
19241924 },
19251925};
19261926
19271927pub const cpu_exynosM3 = Cpu{
1928 .name = "exynos-m3",
1928 .name = "exynosM3",
19291929 .llvm_name = "exynos-m3",
19301930 .dependencies = &[_]*const Feature {
1931 &feature_db,
19321931 &feature_trustzone,
1933 &feature_perfmon,
1932 &feature_thumb2,
19341933 &feature_fpregs,
1934 &feature_dsp,
1935 &feature_v7clrex,
1936 &feature_hwdivArm,
19351937 &feature_acquireRelease,
1938 &feature_aclass,
1939 &feature_perfmon,
1940 &feature_crc,
19361941 &feature_mp,
1942 &feature_hwdiv,
19371943 &feature_d32,
1938 &feature_v7clrex,
1939 &feature_dsp,
1940 &feature_crc,
19411944 &feature_fp16,
1942 &feature_hwdiv,
1943 &feature_hwdivArm,
1944 &feature_thumb2,
1945 &feature_aclass,
1945 &feature_db,
19461946 &feature_expandFpMlx,
1947 &feature_fuseLiterals,
1948 &feature_fuseAes,
19491947 &feature_slowVgetlni32,
1950 &feature_wideStrideVfp,
19511948 &feature_profUnpr,
1952 &feature_slowVdup32,
19531949 &feature_slowfpvmlx,
1954 &feature_dontWidenVmovs,
1950 &feature_slowFpBrcc,
19551951 &feature_useAa,
1952 &feature_dontWidenVmovs,
19561953 &feature_retAddrStack,
1954 &feature_fuseLiterals,
1955 &feature_wideStrideVfp,
19571956 &feature_zcz,
1958 &feature_slowFpBrcc,
1957 &feature_fuseAes,
1958 &feature_slowVdup32,
19591959 },
19601960};
19611961
19621962pub const cpu_exynosM4 = Cpu{
1963 .name = "exynos-m4",
1963 .name = "exynosM4",
19641964 .llvm_name = "exynos-m4",
19651965 .dependencies = &[_]*const Feature {
1966 &feature_ras,
1967 &feature_db,
19681966 &feature_trustzone,
1969 &feature_perfmon,
1967 &feature_thumb2,
19701968 &feature_fpregs,
1969 &feature_dsp,
1970 &feature_ras,
1971 &feature_v7clrex,
1972 &feature_hwdivArm,
19711973 &feature_acquireRelease,
1974 &feature_aclass,
1975 &feature_perfmon,
1976 &feature_crc,
19721977 &feature_mp,
1978 &feature_hwdiv,
19731979 &feature_d32,
1974 &feature_v7clrex,
1975 &feature_dsp,
1976 &feature_crc,
19771980 &feature_fp16,
1978 &feature_hwdiv,
1979 &feature_hwdivArm,
1980 &feature_thumb2,
1981 &feature_aclass,
1981 &feature_db,
19821982 &feature_dotprod,
19831983 &feature_fullfp16,
19841984 &feature_expandFpMlx,
1985 &feature_fuseLiterals,
1986 &feature_fuseAes,
19871985 &feature_slowVgetlni32,
1988 &feature_wideStrideVfp,
19891986 &feature_profUnpr,
1990 &feature_slowVdup32,
19911987 &feature_slowfpvmlx,
1992 &feature_dontWidenVmovs,
1988 &feature_slowFpBrcc,
19931989 &feature_useAa,
1990 &feature_dontWidenVmovs,
19941991 &feature_retAddrStack,
1992 &feature_fuseLiterals,
1993 &feature_wideStrideVfp,
19951994 &feature_zcz,
1996 &feature_slowFpBrcc,
1995 &feature_fuseAes,
1996 &feature_slowVdup32,
19971997 },
19981998};
19991999
20002000pub const cpu_exynosM5 = Cpu{
2001 .name = "exynos-m5",
2001 .name = "exynosM5",
20022002 .llvm_name = "exynos-m5",
20032003 .dependencies = &[_]*const Feature {
2004 &feature_ras,
2005 &feature_db,
20062004 &feature_trustzone,
2007 &feature_perfmon,
2005 &feature_thumb2,
20082006 &feature_fpregs,
2007 &feature_dsp,
2008 &feature_ras,
2009 &feature_v7clrex,
2010 &feature_hwdivArm,
20092011 &feature_acquireRelease,
2012 &feature_aclass,
2013 &feature_perfmon,
2014 &feature_crc,
20102015 &feature_mp,
2016 &feature_hwdiv,
20112017 &feature_d32,
2012 &feature_v7clrex,
2013 &feature_dsp,
2014 &feature_crc,
20152018 &feature_fp16,
2016 &feature_hwdiv,
2017 &feature_hwdivArm,
2018 &feature_thumb2,
2019 &feature_aclass,
2019 &feature_db,
20202020 &feature_dotprod,
20212021 &feature_fullfp16,
20222022 &feature_expandFpMlx,
2023 &feature_fuseLiterals,
2024 &feature_fuseAes,
20252023 &feature_slowVgetlni32,
2026 &feature_wideStrideVfp,
20272024 &feature_profUnpr,
2028 &feature_slowVdup32,
20292025 &feature_slowfpvmlx,
2030 &feature_dontWidenVmovs,
2026 &feature_slowFpBrcc,
20312027 &feature_useAa,
2028 &feature_dontWidenVmovs,
20322029 &feature_retAddrStack,
2030 &feature_fuseLiterals,
2031 &feature_wideStrideVfp,
20332032 &feature_zcz,
2034 &feature_slowFpBrcc,
2033 &feature_fuseAes,
2034 &feature_slowVdup32,
20352035 },
20362036};
20372037
......@@ -2053,14 +2053,14 @@ pub const cpu_krait = Cpu{
20532053 .name = "krait",
20542054 .llvm_name = "krait",
20552055 .dependencies = &[_]*const Feature {
2056 &feature_db,
2057 &feature_perfmon,
2056 &feature_thumb2,
20582057 &feature_fpregs,
2059 &feature_d32,
2060 &feature_v7clrex,
20612058 &feature_dsp,
2062 &feature_thumb2,
2059 &feature_v7clrex,
20632060 &feature_aclass,
2061 &feature_perfmon,
2062 &feature_d32,
2063 &feature_db,
20642064 &feature_avoidPartialCpsr,
20652065 &feature_vldnAlign,
20662066 &feature_fp16,
......@@ -2077,21 +2077,21 @@ pub const cpu_kryo = Cpu{
20772077 .name = "kryo",
20782078 .llvm_name = "kryo",
20792079 .dependencies = &[_]*const Feature {
2080 &feature_db,
20812080 &feature_trustzone,
2082 &feature_perfmon,
2081 &feature_thumb2,
20832082 &feature_fpregs,
2083 &feature_dsp,
2084 &feature_v7clrex,
2085 &feature_hwdivArm,
20842086 &feature_acquireRelease,
2087 &feature_aclass,
2088 &feature_perfmon,
2089 &feature_crc,
20852090 &feature_mp,
2091 &feature_hwdiv,
20862092 &feature_d32,
2087 &feature_v7clrex,
2088 &feature_dsp,
2089 &feature_crc,
20902093 &feature_fp16,
2091 &feature_hwdiv,
2092 &feature_hwdivArm,
2093 &feature_thumb2,
2094 &feature_aclass,
2094 &feature_db,
20952095 &feature_crypto,
20962096 },
20972097};
......@@ -2114,25 +2114,25 @@ pub const cpu_mpcorenovfp = Cpu{
21142114};
21152115
21162116pub const cpu_neoverseN1 = Cpu{
2117 .name = "neoverse-n1",
2117 .name = "neoverseN1",
21182118 .llvm_name = "neoverse-n1",
21192119 .dependencies = &[_]*const Feature {
2120 &feature_ras,
2121 &feature_db,
21222120 &feature_trustzone,
2123 &feature_perfmon,
2121 &feature_thumb2,
21242122 &feature_fpregs,
2123 &feature_dsp,
2124 &feature_ras,
2125 &feature_v7clrex,
2126 &feature_hwdivArm,
21252127 &feature_acquireRelease,
2128 &feature_aclass,
2129 &feature_perfmon,
2130 &feature_crc,
21262131 &feature_mp,
2132 &feature_hwdiv,
21272133 &feature_d32,
2128 &feature_v7clrex,
2129 &feature_dsp,
2130 &feature_crc,
21312134 &feature_fp16,
2132 &feature_hwdiv,
2133 &feature_hwdivArm,
2134 &feature_thumb2,
2135 &feature_aclass,
2135 &feature_db,
21362136 &feature_crypto,
21372137 &feature_dotprod,
21382138 },
......@@ -2142,10 +2142,10 @@ pub const cpu_sc000 = Cpu{
21422142 .name = "sc000",
21432143 .llvm_name = "sc000",
21442144 .dependencies = &[_]*const Feature {
2145 &feature_db,
2146 &feature_strictAlign,
21472145 &feature_noarm,
2146 &feature_strictAlign,
21482147 &feature_mclass,
2148 &feature_db,
21492149 },
21502150};
21512151
......@@ -2153,13 +2153,13 @@ pub const cpu_sc300 = Cpu{
21532153 .name = "sc300",
21542154 .llvm_name = "sc300",
21552155 .dependencies = &[_]*const Feature {
2156 &feature_db,
2157 &feature_perfmon,
2158 &feature_v7clrex,
2156 &feature_thumb2,
21592157 &feature_noarm,
2158 &feature_v7clrex,
2159 &feature_perfmon,
21602160 &feature_mclass,
21612161 &feature_hwdiv,
2162 &feature_thumb2,
2162 &feature_db,
21632163 &feature_noBranchPredictor,
21642164 &feature_useAa,
21652165 &feature_useMisched,
......@@ -2198,14 +2198,14 @@ pub const cpu_swift = Cpu{
21982198 .name = "swift",
21992199 .llvm_name = "swift",
22002200 .dependencies = &[_]*const Feature {
2201 &feature_db,
2202 &feature_perfmon,
2201 &feature_thumb2,
22032202 &feature_fpregs,
2204 &feature_d32,
2205 &feature_v7clrex,
22062203 &feature_dsp,
2207 &feature_thumb2,
2204 &feature_v7clrex,
22082205 &feature_aclass,
2206 &feature_perfmon,
2207 &feature_d32,
2208 &feature_db,
22092209 &feature_avoidMovsShop,
22102210 &feature_avoidPartialCpsr,
22112211 &feature_hwdivArm,
lib/std/target/avr.zig+1591-1591
......@@ -170,12 +170,12 @@ pub const cpu_at43usb320 = Cpu{
170170 .name = "at43usb320",
171171 .llvm_name = "at43usb320",
172172 .dependencies = &[_]*const Feature {
173 &feature_sram,
174 &feature_jmpcall,
175 &feature_elpm,
176173 &feature_lpm,
174 &feature_sram,
177175 &feature_addsubiw,
176 &feature_elpm,
178177 &feature_ijmpcall,
178 &feature_jmpcall,
179179 },
180180};
181181
......@@ -183,11 +183,11 @@ pub const cpu_at43usb355 = Cpu{
183183 .name = "at43usb355",
184184 .llvm_name = "at43usb355",
185185 .dependencies = &[_]*const Feature {
186 &feature_sram,
187 &feature_jmpcall,
188186 &feature_lpm,
187 &feature_sram,
189188 &feature_addsubiw,
190189 &feature_ijmpcall,
190 &feature_jmpcall,
191191 },
192192};
193193
......@@ -195,11 +195,11 @@ pub const cpu_at76c711 = Cpu{
195195 .name = "at76c711",
196196 .llvm_name = "at76c711",
197197 .dependencies = &[_]*const Feature {
198 &feature_sram,
199 &feature_jmpcall,
200198 &feature_lpm,
199 &feature_sram,
201200 &feature_addsubiw,
202201 &feature_ijmpcall,
202 &feature_jmpcall,
203203 },
204204};
205205
......@@ -207,8 +207,8 @@ pub const cpu_at86rf401 = Cpu{
207207 .name = "at86rf401",
208208 .llvm_name = "at86rf401",
209209 .dependencies = &[_]*const Feature {
210 &feature_sram,
211210 &feature_lpm,
211 &feature_sram,
212212 &feature_addsubiw,
213213 &feature_ijmpcall,
214214 &feature_lpmx,
......@@ -220,8 +220,8 @@ pub const cpu_at90c8534 = Cpu{
220220 .name = "at90c8534",
221221 .llvm_name = "at90c8534",
222222 .dependencies = &[_]*const Feature {
223 &feature_sram,
224223 &feature_lpm,
224 &feature_sram,
225225 &feature_addsubiw,
226226 &feature_ijmpcall,
227227 },
......@@ -231,18 +231,18 @@ pub const cpu_at90can128 = Cpu{
231231 .name = "at90can128",
232232 .llvm_name = "at90can128",
233233 .dependencies = &[_]*const Feature {
234 &feature_lpm,
234235 &feature_sram,
235 &feature_jmpcall,
236 &feature_mul,
236 &feature_addsubiw,
237 &feature_movw,
237238 &feature_elpm,
238 &feature_lpm,
239 &feature_break,
240 &feature_ijmpcall,
239241 &feature_lpmx,
242 &feature_jmpcall,
240243 &feature_spm,
241 &feature_addsubiw,
242 &feature_ijmpcall,
243244 &feature_elpmx,
244 &feature_break,
245 &feature_movw,
245 &feature_mul,
246246 },
247247};
248248
......@@ -250,16 +250,16 @@ pub const cpu_at90can32 = Cpu{
250250 .name = "at90can32",
251251 .llvm_name = "at90can32",
252252 .dependencies = &[_]*const Feature {
253 &feature_sram,
254 &feature_jmpcall,
255 &feature_mul,
256253 &feature_lpm,
257 &feature_lpmx,
258 &feature_spm,
254 &feature_sram,
259255 &feature_addsubiw,
260 &feature_ijmpcall,
261 &feature_break,
262256 &feature_movw,
257 &feature_break,
258 &feature_ijmpcall,
259 &feature_lpmx,
260 &feature_jmpcall,
261 &feature_spm,
262 &feature_mul,
263263 },
264264};
265265
......@@ -267,16 +267,16 @@ pub const cpu_at90can64 = Cpu{
267267 .name = "at90can64",
268268 .llvm_name = "at90can64",
269269 .dependencies = &[_]*const Feature {
270 &feature_sram,
271 &feature_jmpcall,
272 &feature_mul,
273270 &feature_lpm,
274 &feature_lpmx,
275 &feature_spm,
271 &feature_sram,
276272 &feature_addsubiw,
277 &feature_ijmpcall,
278 &feature_break,
279273 &feature_movw,
274 &feature_break,
275 &feature_ijmpcall,
276 &feature_lpmx,
277 &feature_jmpcall,
278 &feature_spm,
279 &feature_mul,
280280 },
281281};
282282
......@@ -284,15 +284,15 @@ pub const cpu_at90pwm1 = Cpu{
284284 .name = "at90pwm1",
285285 .llvm_name = "at90pwm1",
286286 .dependencies = &[_]*const Feature {
287 &feature_sram,
288 &feature_mul,
289287 &feature_lpm,
290 &feature_lpmx,
291 &feature_spm,
288 &feature_sram,
292289 &feature_addsubiw,
293 &feature_ijmpcall,
294 &feature_break,
295290 &feature_movw,
291 &feature_break,
292 &feature_ijmpcall,
293 &feature_lpmx,
294 &feature_spm,
295 &feature_mul,
296296 },
297297};
298298
......@@ -300,16 +300,16 @@ pub const cpu_at90pwm161 = Cpu{
300300 .name = "at90pwm161",
301301 .llvm_name = "at90pwm161",
302302 .dependencies = &[_]*const Feature {
303 &feature_sram,
304 &feature_jmpcall,
305 &feature_mul,
306303 &feature_lpm,
307 &feature_lpmx,
308 &feature_spm,
304 &feature_sram,
309305 &feature_addsubiw,
310 &feature_ijmpcall,
311 &feature_break,
312306 &feature_movw,
307 &feature_break,
308 &feature_ijmpcall,
309 &feature_lpmx,
310 &feature_jmpcall,
311 &feature_spm,
312 &feature_mul,
313313 },
314314};
315315
......@@ -317,15 +317,15 @@ pub const cpu_at90pwm2 = Cpu{
317317 .name = "at90pwm2",
318318 .llvm_name = "at90pwm2",
319319 .dependencies = &[_]*const Feature {
320 &feature_sram,
321 &feature_mul,
322320 &feature_lpm,
323 &feature_lpmx,
324 &feature_spm,
321 &feature_sram,
325322 &feature_addsubiw,
326 &feature_ijmpcall,
327 &feature_break,
328323 &feature_movw,
324 &feature_break,
325 &feature_ijmpcall,
326 &feature_lpmx,
327 &feature_spm,
328 &feature_mul,
329329 },
330330};
331331
......@@ -333,16 +333,16 @@ pub const cpu_at90pwm216 = Cpu{
333333 .name = "at90pwm216",
334334 .llvm_name = "at90pwm216",
335335 .dependencies = &[_]*const Feature {
336 &feature_sram,
337 &feature_jmpcall,
338 &feature_mul,
339336 &feature_lpm,
340 &feature_lpmx,
341 &feature_spm,
337 &feature_sram,
342338 &feature_addsubiw,
343 &feature_ijmpcall,
344 &feature_break,
345339 &feature_movw,
340 &feature_break,
341 &feature_ijmpcall,
342 &feature_lpmx,
343 &feature_jmpcall,
344 &feature_spm,
345 &feature_mul,
346346 },
347347};
348348
......@@ -350,15 +350,15 @@ pub const cpu_at90pwm2b = Cpu{
350350 .name = "at90pwm2b",
351351 .llvm_name = "at90pwm2b",
352352 .dependencies = &[_]*const Feature {
353 &feature_sram,
354 &feature_mul,
355353 &feature_lpm,
356 &feature_lpmx,
357 &feature_spm,
354 &feature_sram,
358355 &feature_addsubiw,
359 &feature_ijmpcall,
360 &feature_break,
361356 &feature_movw,
357 &feature_break,
358 &feature_ijmpcall,
359 &feature_lpmx,
360 &feature_spm,
361 &feature_mul,
362362 },
363363};
364364
......@@ -366,15 +366,15 @@ pub const cpu_at90pwm3 = Cpu{
366366 .name = "at90pwm3",
367367 .llvm_name = "at90pwm3",
368368 .dependencies = &[_]*const Feature {
369 &feature_sram,
370 &feature_mul,
371369 &feature_lpm,
372 &feature_lpmx,
373 &feature_spm,
370 &feature_sram,
374371 &feature_addsubiw,
375 &feature_ijmpcall,
376 &feature_break,
377372 &feature_movw,
373 &feature_break,
374 &feature_ijmpcall,
375 &feature_lpmx,
376 &feature_spm,
377 &feature_mul,
378378 },
379379};
380380
......@@ -382,16 +382,16 @@ pub const cpu_at90pwm316 = Cpu{
382382 .name = "at90pwm316",
383383 .llvm_name = "at90pwm316",
384384 .dependencies = &[_]*const Feature {
385 &feature_sram,
386 &feature_jmpcall,
387 &feature_mul,
388385 &feature_lpm,
389 &feature_lpmx,
390 &feature_spm,
386 &feature_sram,
391387 &feature_addsubiw,
392 &feature_ijmpcall,
393 &feature_break,
394388 &feature_movw,
389 &feature_break,
390 &feature_ijmpcall,
391 &feature_lpmx,
392 &feature_jmpcall,
393 &feature_spm,
394 &feature_mul,
395395 },
396396};
397397
......@@ -399,15 +399,15 @@ pub const cpu_at90pwm3b = Cpu{
399399 .name = "at90pwm3b",
400400 .llvm_name = "at90pwm3b",
401401 .dependencies = &[_]*const Feature {
402 &feature_sram,
403 &feature_mul,
404402 &feature_lpm,
405 &feature_lpmx,
406 &feature_spm,
403 &feature_sram,
407404 &feature_addsubiw,
408 &feature_ijmpcall,
409 &feature_break,
410405 &feature_movw,
406 &feature_break,
407 &feature_ijmpcall,
408 &feature_lpmx,
409 &feature_spm,
410 &feature_mul,
411411 },
412412};
413413
......@@ -415,15 +415,15 @@ pub const cpu_at90pwm81 = Cpu{
415415 .name = "at90pwm81",
416416 .llvm_name = "at90pwm81",
417417 .dependencies = &[_]*const Feature {
418 &feature_sram,
419 &feature_mul,
420418 &feature_lpm,
421 &feature_lpmx,
422 &feature_spm,
419 &feature_sram,
423420 &feature_addsubiw,
424 &feature_ijmpcall,
425 &feature_break,
426421 &feature_movw,
422 &feature_break,
423 &feature_ijmpcall,
424 &feature_lpmx,
425 &feature_spm,
426 &feature_mul,
427427 },
428428};
429429
......@@ -438,8 +438,8 @@ pub const cpu_at90s2313 = Cpu{
438438 .name = "at90s2313",
439439 .llvm_name = "at90s2313",
440440 .dependencies = &[_]*const Feature {
441 &feature_sram,
442441 &feature_lpm,
442 &feature_sram,
443443 &feature_addsubiw,
444444 &feature_ijmpcall,
445445 },
......@@ -449,8 +449,8 @@ pub const cpu_at90s2323 = Cpu{
449449 .name = "at90s2323",
450450 .llvm_name = "at90s2323",
451451 .dependencies = &[_]*const Feature {
452 &feature_sram,
453452 &feature_lpm,
453 &feature_sram,
454454 &feature_addsubiw,
455455 &feature_ijmpcall,
456456 },
......@@ -460,8 +460,8 @@ pub const cpu_at90s2333 = Cpu{
460460 .name = "at90s2333",
461461 .llvm_name = "at90s2333",
462462 .dependencies = &[_]*const Feature {
463 &feature_sram,
464463 &feature_lpm,
464 &feature_sram,
465465 &feature_addsubiw,
466466 &feature_ijmpcall,
467467 },
......@@ -471,8 +471,8 @@ pub const cpu_at90s2343 = Cpu{
471471 .name = "at90s2343",
472472 .llvm_name = "at90s2343",
473473 .dependencies = &[_]*const Feature {
474 &feature_sram,
475474 &feature_lpm,
475 &feature_sram,
476476 &feature_addsubiw,
477477 &feature_ijmpcall,
478478 },
......@@ -482,8 +482,8 @@ pub const cpu_at90s4414 = Cpu{
482482 .name = "at90s4414",
483483 .llvm_name = "at90s4414",
484484 .dependencies = &[_]*const Feature {
485 &feature_sram,
486485 &feature_lpm,
486 &feature_sram,
487487 &feature_addsubiw,
488488 &feature_ijmpcall,
489489 },
......@@ -493,8 +493,8 @@ pub const cpu_at90s4433 = Cpu{
493493 .name = "at90s4433",
494494 .llvm_name = "at90s4433",
495495 .dependencies = &[_]*const Feature {
496 &feature_sram,
497496 &feature_lpm,
497 &feature_sram,
498498 &feature_addsubiw,
499499 &feature_ijmpcall,
500500 },
......@@ -504,8 +504,8 @@ pub const cpu_at90s4434 = Cpu{
504504 .name = "at90s4434",
505505 .llvm_name = "at90s4434",
506506 .dependencies = &[_]*const Feature {
507 &feature_sram,
508507 &feature_lpm,
508 &feature_sram,
509509 &feature_addsubiw,
510510 &feature_ijmpcall,
511511 },
......@@ -515,8 +515,8 @@ pub const cpu_at90s8515 = Cpu{
515515 .name = "at90s8515",
516516 .llvm_name = "at90s8515",
517517 .dependencies = &[_]*const Feature {
518 &feature_sram,
519518 &feature_lpm,
519 &feature_sram,
520520 &feature_addsubiw,
521521 &feature_ijmpcall,
522522 },
......@@ -526,8 +526,8 @@ pub const cpu_at90s8535 = Cpu{
526526 .name = "at90s8535",
527527 .llvm_name = "at90s8535",
528528 .dependencies = &[_]*const Feature {
529 &feature_sram,
530529 &feature_lpm,
530 &feature_sram,
531531 &feature_addsubiw,
532532 &feature_ijmpcall,
533533 },
......@@ -537,16 +537,16 @@ pub const cpu_at90scr100 = Cpu{
537537 .name = "at90scr100",
538538 .llvm_name = "at90scr100",
539539 .dependencies = &[_]*const Feature {
540 &feature_sram,
541 &feature_jmpcall,
542 &feature_mul,
543540 &feature_lpm,
544 &feature_lpmx,
545 &feature_spm,
541 &feature_sram,
546542 &feature_addsubiw,
547 &feature_ijmpcall,
548 &feature_break,
549543 &feature_movw,
544 &feature_break,
545 &feature_ijmpcall,
546 &feature_lpmx,
547 &feature_jmpcall,
548 &feature_spm,
549 &feature_mul,
550550 },
551551};
552552
......@@ -554,18 +554,18 @@ pub const cpu_at90usb1286 = Cpu{
554554 .name = "at90usb1286",
555555 .llvm_name = "at90usb1286",
556556 .dependencies = &[_]*const Feature {
557 &feature_lpm,
557558 &feature_sram,
558 &feature_jmpcall,
559 &feature_mul,
559 &feature_addsubiw,
560 &feature_movw,
560561 &feature_elpm,
561 &feature_lpm,
562 &feature_break,
563 &feature_ijmpcall,
562564 &feature_lpmx,
565 &feature_jmpcall,
563566 &feature_spm,
564 &feature_addsubiw,
565 &feature_ijmpcall,
566567 &feature_elpmx,
567 &feature_break,
568 &feature_movw,
568 &feature_mul,
569569 },
570570};
571571
......@@ -573,18 +573,18 @@ pub const cpu_at90usb1287 = Cpu{
573573 .name = "at90usb1287",
574574 .llvm_name = "at90usb1287",
575575 .dependencies = &[_]*const Feature {
576 &feature_lpm,
576577 &feature_sram,
577 &feature_jmpcall,
578 &feature_mul,
578 &feature_addsubiw,
579 &feature_movw,
579580 &feature_elpm,
580 &feature_lpm,
581 &feature_break,
582 &feature_ijmpcall,
581583 &feature_lpmx,
584 &feature_jmpcall,
582585 &feature_spm,
583 &feature_addsubiw,
584 &feature_ijmpcall,
585586 &feature_elpmx,
586 &feature_break,
587 &feature_movw,
587 &feature_mul,
588588 },
589589};
590590
......@@ -592,15 +592,15 @@ pub const cpu_at90usb162 = Cpu{
592592 .name = "at90usb162",
593593 .llvm_name = "at90usb162",
594594 .dependencies = &[_]*const Feature {
595 &feature_sram,
596 &feature_jmpcall,
597595 &feature_lpm,
598 &feature_lpmx,
599 &feature_spm,
596 &feature_sram,
600597 &feature_addsubiw,
601 &feature_ijmpcall,
602 &feature_break,
603598 &feature_movw,
599 &feature_break,
600 &feature_ijmpcall,
601 &feature_lpmx,
602 &feature_jmpcall,
603 &feature_spm,
604604 },
605605};
606606
......@@ -608,33 +608,33 @@ pub const cpu_at90usb646 = Cpu{
608608 .name = "at90usb646",
609609 .llvm_name = "at90usb646",
610610 .dependencies = &[_]*const Feature {
611 &feature_sram,
612 &feature_jmpcall,
613 &feature_mul,
614611 &feature_lpm,
615 &feature_lpmx,
616 &feature_spm,
612 &feature_sram,
617613 &feature_addsubiw,
618 &feature_ijmpcall,
619 &feature_break,
620614 &feature_movw,
621 },
622};
615 &feature_break,
616 &feature_ijmpcall,
617 &feature_lpmx,
618 &feature_jmpcall,
619 &feature_spm,
620 &feature_mul,
621 },
622};
623623
624624pub const cpu_at90usb647 = Cpu{
625625 .name = "at90usb647",
626626 .llvm_name = "at90usb647",
627627 .dependencies = &[_]*const Feature {
628 &feature_sram,
629 &feature_jmpcall,
630 &feature_mul,
631628 &feature_lpm,
632 &feature_lpmx,
633 &feature_spm,
629 &feature_sram,
634630 &feature_addsubiw,
635 &feature_ijmpcall,
636 &feature_break,
637631 &feature_movw,
632 &feature_break,
633 &feature_ijmpcall,
634 &feature_lpmx,
635 &feature_jmpcall,
636 &feature_spm,
637 &feature_mul,
638638 },
639639};
640640
......@@ -642,15 +642,15 @@ pub const cpu_at90usb82 = Cpu{
642642 .name = "at90usb82",
643643 .llvm_name = "at90usb82",
644644 .dependencies = &[_]*const Feature {
645 &feature_sram,
646 &feature_jmpcall,
647645 &feature_lpm,
648 &feature_lpmx,
649 &feature_spm,
646 &feature_sram,
650647 &feature_addsubiw,
651 &feature_ijmpcall,
652 &feature_break,
653648 &feature_movw,
649 &feature_break,
650 &feature_ijmpcall,
651 &feature_lpmx,
652 &feature_jmpcall,
653 &feature_spm,
654654 },
655655};
656656
......@@ -658,11 +658,11 @@ pub const cpu_at94k = Cpu{
658658 .name = "at94k",
659659 .llvm_name = "at94k",
660660 .dependencies = &[_]*const Feature {
661 &feature_sram,
662 &feature_jmpcall,
663661 &feature_lpm,
662 &feature_sram,
664663 &feature_addsubiw,
665664 &feature_ijmpcall,
665 &feature_jmpcall,
666666 &feature_lpmx,
667667 &feature_movw,
668668 &feature_mul,
......@@ -673,14 +673,14 @@ pub const cpu_ata5272 = Cpu{
673673 .name = "ata5272",
674674 .llvm_name = "ata5272",
675675 .dependencies = &[_]*const Feature {
676 &feature_sram,
677676 &feature_lpm,
678 &feature_lpmx,
679 &feature_spm,
677 &feature_sram,
680678 &feature_addsubiw,
681 &feature_ijmpcall,
682 &feature_break,
683679 &feature_movw,
680 &feature_break,
681 &feature_ijmpcall,
682 &feature_lpmx,
683 &feature_spm,
684684 },
685685};
686686
......@@ -688,15 +688,15 @@ pub const cpu_ata5505 = Cpu{
688688 .name = "ata5505",
689689 .llvm_name = "ata5505",
690690 .dependencies = &[_]*const Feature {
691 &feature_sram,
692 &feature_jmpcall,
693691 &feature_lpm,
694 &feature_lpmx,
695 &feature_spm,
692 &feature_sram,
696693 &feature_addsubiw,
697 &feature_ijmpcall,
698 &feature_break,
699694 &feature_movw,
695 &feature_break,
696 &feature_ijmpcall,
697 &feature_lpmx,
698 &feature_jmpcall,
699 &feature_spm,
700700 },
701701};
702702
......@@ -704,16 +704,16 @@ pub const cpu_ata5790 = Cpu{
704704 .name = "ata5790",
705705 .llvm_name = "ata5790",
706706 .dependencies = &[_]*const Feature {
707 &feature_sram,
708 &feature_jmpcall,
709 &feature_mul,
710707 &feature_lpm,
711 &feature_lpmx,
712 &feature_spm,
708 &feature_sram,
713709 &feature_addsubiw,
714 &feature_ijmpcall,
715 &feature_break,
716710 &feature_movw,
711 &feature_break,
712 &feature_ijmpcall,
713 &feature_lpmx,
714 &feature_jmpcall,
715 &feature_spm,
716 &feature_mul,
717717 },
718718};
719719
......@@ -721,16 +721,16 @@ pub const cpu_ata5795 = Cpu{
721721 .name = "ata5795",
722722 .llvm_name = "ata5795",
723723 .dependencies = &[_]*const Feature {
724 &feature_sram,
725 &feature_jmpcall,
726 &feature_mul,
727724 &feature_lpm,
728 &feature_lpmx,
729 &feature_spm,
725 &feature_sram,
730726 &feature_addsubiw,
731 &feature_ijmpcall,
732 &feature_break,
733727 &feature_movw,
728 &feature_break,
729 &feature_ijmpcall,
730 &feature_lpmx,
731 &feature_jmpcall,
732 &feature_spm,
733 &feature_mul,
734734 },
735735};
736736
......@@ -738,15 +738,15 @@ pub const cpu_ata6285 = Cpu{
738738 .name = "ata6285",
739739 .llvm_name = "ata6285",
740740 .dependencies = &[_]*const Feature {
741 &feature_sram,
742 &feature_mul,
743741 &feature_lpm,
744 &feature_lpmx,
745 &feature_spm,
742 &feature_sram,
746743 &feature_addsubiw,
747 &feature_ijmpcall,
748 &feature_break,
749744 &feature_movw,
745 &feature_break,
746 &feature_ijmpcall,
747 &feature_lpmx,
748 &feature_spm,
749 &feature_mul,
750750 },
751751};
752752
......@@ -754,15 +754,15 @@ pub const cpu_ata6286 = Cpu{
754754 .name = "ata6286",
755755 .llvm_name = "ata6286",
756756 .dependencies = &[_]*const Feature {
757 &feature_sram,
758 &feature_mul,
759757 &feature_lpm,
760 &feature_lpmx,
761 &feature_spm,
758 &feature_sram,
762759 &feature_addsubiw,
763 &feature_ijmpcall,
764 &feature_break,
765760 &feature_movw,
761 &feature_break,
762 &feature_ijmpcall,
763 &feature_lpmx,
764 &feature_spm,
765 &feature_mul,
766766 },
767767};
768768
......@@ -770,15 +770,15 @@ pub const cpu_ata6289 = Cpu{
770770 .name = "ata6289",
771771 .llvm_name = "ata6289",
772772 .dependencies = &[_]*const Feature {
773 &feature_sram,
774 &feature_mul,
775773 &feature_lpm,
776 &feature_lpmx,
777 &feature_spm,
774 &feature_sram,
778775 &feature_addsubiw,
779 &feature_ijmpcall,
780 &feature_break,
781776 &feature_movw,
777 &feature_break,
778 &feature_ijmpcall,
779 &feature_lpmx,
780 &feature_spm,
781 &feature_mul,
782782 },
783783};
784784
......@@ -786,12 +786,12 @@ pub const cpu_atmega103 = Cpu{
786786 .name = "atmega103",
787787 .llvm_name = "atmega103",
788788 .dependencies = &[_]*const Feature {
789 &feature_sram,
790 &feature_jmpcall,
791 &feature_elpm,
792789 &feature_lpm,
790 &feature_sram,
793791 &feature_addsubiw,
792 &feature_elpm,
794793 &feature_ijmpcall,
794 &feature_jmpcall,
795795 },
796796};
797797
......@@ -799,18 +799,18 @@ pub const cpu_atmega128 = Cpu{
799799 .name = "atmega128",
800800 .llvm_name = "atmega128",
801801 .dependencies = &[_]*const Feature {
802 &feature_lpm,
802803 &feature_sram,
803 &feature_jmpcall,
804 &feature_mul,
804 &feature_addsubiw,
805 &feature_movw,
805806 &feature_elpm,
806 &feature_lpm,
807 &feature_break,
808 &feature_ijmpcall,
807809 &feature_lpmx,
810 &feature_jmpcall,
808811 &feature_spm,
809 &feature_addsubiw,
810 &feature_ijmpcall,
811812 &feature_elpmx,
812 &feature_break,
813 &feature_movw,
813 &feature_mul,
814814 },
815815};
816816
......@@ -818,18 +818,18 @@ pub const cpu_atmega1280 = Cpu{
818818 .name = "atmega1280",
819819 .llvm_name = "atmega1280",
820820 .dependencies = &[_]*const Feature {
821 &feature_lpm,
821822 &feature_sram,
822 &feature_jmpcall,
823 &feature_mul,
823 &feature_addsubiw,
824 &feature_movw,
824825 &feature_elpm,
825 &feature_lpm,
826 &feature_break,
827 &feature_ijmpcall,
826828 &feature_lpmx,
829 &feature_jmpcall,
827830 &feature_spm,
828 &feature_addsubiw,
829 &feature_ijmpcall,
830831 &feature_elpmx,
831 &feature_break,
832 &feature_movw,
832 &feature_mul,
833833 },
834834};
835835
......@@ -837,18 +837,18 @@ pub const cpu_atmega1281 = Cpu{
837837 .name = "atmega1281",
838838 .llvm_name = "atmega1281",
839839 .dependencies = &[_]*const Feature {
840 &feature_lpm,
840841 &feature_sram,
841 &feature_jmpcall,
842 &feature_mul,
842 &feature_addsubiw,
843 &feature_movw,
843844 &feature_elpm,
844 &feature_lpm,
845 &feature_break,
846 &feature_ijmpcall,
845847 &feature_lpmx,
848 &feature_jmpcall,
846849 &feature_spm,
847 &feature_addsubiw,
848 &feature_ijmpcall,
849850 &feature_elpmx,
850 &feature_break,
851 &feature_movw,
851 &feature_mul,
852852 },
853853};
854854
......@@ -856,18 +856,18 @@ pub const cpu_atmega1284 = Cpu{
856856 .name = "atmega1284",
857857 .llvm_name = "atmega1284",
858858 .dependencies = &[_]*const Feature {
859 &feature_lpm,
859860 &feature_sram,
860 &feature_jmpcall,
861 &feature_mul,
861 &feature_addsubiw,
862 &feature_movw,
862863 &feature_elpm,
863 &feature_lpm,
864 &feature_break,
865 &feature_ijmpcall,
864866 &feature_lpmx,
867 &feature_jmpcall,
865868 &feature_spm,
866 &feature_addsubiw,
867 &feature_ijmpcall,
868869 &feature_elpmx,
869 &feature_break,
870 &feature_movw,
870 &feature_mul,
871871 },
872872};
873873
......@@ -875,18 +875,18 @@ pub const cpu_atmega1284p = Cpu{
875875 .name = "atmega1284p",
876876 .llvm_name = "atmega1284p",
877877 .dependencies = &[_]*const Feature {
878 &feature_lpm,
878879 &feature_sram,
879 &feature_jmpcall,
880 &feature_mul,
880 &feature_addsubiw,
881 &feature_movw,
881882 &feature_elpm,
882 &feature_lpm,
883 &feature_break,
884 &feature_ijmpcall,
883885 &feature_lpmx,
886 &feature_jmpcall,
884887 &feature_spm,
885 &feature_addsubiw,
886 &feature_ijmpcall,
887888 &feature_elpmx,
888 &feature_break,
889 &feature_movw,
889 &feature_mul,
890890 },
891891};
892892
......@@ -894,18 +894,18 @@ pub const cpu_atmega1284rfr2 = Cpu{
894894 .name = "atmega1284rfr2",
895895 .llvm_name = "atmega1284rfr2",
896896 .dependencies = &[_]*const Feature {
897 &feature_lpm,
897898 &feature_sram,
898 &feature_jmpcall,
899 &feature_mul,
899 &feature_addsubiw,
900 &feature_movw,
900901 &feature_elpm,
901 &feature_lpm,
902 &feature_break,
903 &feature_ijmpcall,
902904 &feature_lpmx,
905 &feature_jmpcall,
903906 &feature_spm,
904 &feature_addsubiw,
905 &feature_ijmpcall,
906907 &feature_elpmx,
907 &feature_break,
908 &feature_movw,
908 &feature_mul,
909909 },
910910};
911911
......@@ -913,18 +913,18 @@ pub const cpu_atmega128a = Cpu{
913913 .name = "atmega128a",
914914 .llvm_name = "atmega128a",
915915 .dependencies = &[_]*const Feature {
916 &feature_lpm,
916917 &feature_sram,
917 &feature_jmpcall,
918 &feature_mul,
918 &feature_addsubiw,
919 &feature_movw,
919920 &feature_elpm,
920 &feature_lpm,
921 &feature_break,
922 &feature_ijmpcall,
921923 &feature_lpmx,
924 &feature_jmpcall,
922925 &feature_spm,
923 &feature_addsubiw,
924 &feature_ijmpcall,
925926 &feature_elpmx,
926 &feature_break,
927 &feature_movw,
927 &feature_mul,
928928 },
929929};
930930
......@@ -932,18 +932,18 @@ pub const cpu_atmega128rfa1 = Cpu{
932932 .name = "atmega128rfa1",
933933 .llvm_name = "atmega128rfa1",
934934 .dependencies = &[_]*const Feature {
935 &feature_lpm,
935936 &feature_sram,
936 &feature_jmpcall,
937 &feature_mul,
937 &feature_addsubiw,
938 &feature_movw,
938939 &feature_elpm,
939 &feature_lpm,
940 &feature_break,
941 &feature_ijmpcall,
940942 &feature_lpmx,
943 &feature_jmpcall,
941944 &feature_spm,
942 &feature_addsubiw,
943 &feature_ijmpcall,
944945 &feature_elpmx,
945 &feature_break,
946 &feature_movw,
946 &feature_mul,
947947 },
948948};
949949
......@@ -951,18 +951,18 @@ pub const cpu_atmega128rfr2 = Cpu{
951951 .name = "atmega128rfr2",
952952 .llvm_name = "atmega128rfr2",
953953 .dependencies = &[_]*const Feature {
954 &feature_lpm,
954955 &feature_sram,
955 &feature_jmpcall,
956 &feature_mul,
956 &feature_addsubiw,
957 &feature_movw,
957958 &feature_elpm,
958 &feature_lpm,
959 &feature_break,
960 &feature_ijmpcall,
959961 &feature_lpmx,
962 &feature_jmpcall,
960963 &feature_spm,
961 &feature_addsubiw,
962 &feature_ijmpcall,
963964 &feature_elpmx,
964 &feature_break,
965 &feature_movw,
965 &feature_mul,
966966 },
967967};
968968
......@@ -970,16 +970,16 @@ pub const cpu_atmega16 = Cpu{
970970 .name = "atmega16",
971971 .llvm_name = "atmega16",
972972 .dependencies = &[_]*const Feature {
973 &feature_sram,
974 &feature_jmpcall,
975 &feature_mul,
976973 &feature_lpm,
977 &feature_lpmx,
978 &feature_spm,
974 &feature_sram,
979975 &feature_addsubiw,
980 &feature_ijmpcall,
981 &feature_break,
982976 &feature_movw,
977 &feature_break,
978 &feature_ijmpcall,
979 &feature_lpmx,
980 &feature_jmpcall,
981 &feature_spm,
982 &feature_mul,
983983 },
984984};
985985
......@@ -987,11 +987,11 @@ pub const cpu_atmega161 = Cpu{
987987 .name = "atmega161",
988988 .llvm_name = "atmega161",
989989 .dependencies = &[_]*const Feature {
990 &feature_sram,
991 &feature_jmpcall,
992990 &feature_lpm,
991 &feature_sram,
993992 &feature_addsubiw,
994993 &feature_ijmpcall,
994 &feature_jmpcall,
995995 &feature_lpmx,
996996 &feature_movw,
997997 &feature_mul,
......@@ -1003,16 +1003,16 @@ pub const cpu_atmega162 = Cpu{
10031003 .name = "atmega162",
10041004 .llvm_name = "atmega162",
10051005 .dependencies = &[_]*const Feature {
1006 &feature_sram,
1007 &feature_jmpcall,
1008 &feature_mul,
10091006 &feature_lpm,
1010 &feature_lpmx,
1011 &feature_spm,
1007 &feature_sram,
10121008 &feature_addsubiw,
1013 &feature_ijmpcall,
1014 &feature_break,
10151009 &feature_movw,
1010 &feature_break,
1011 &feature_ijmpcall,
1012 &feature_lpmx,
1013 &feature_jmpcall,
1014 &feature_spm,
1015 &feature_mul,
10161016 },
10171017};
10181018
......@@ -1020,11 +1020,11 @@ pub const cpu_atmega163 = Cpu{
10201020 .name = "atmega163",
10211021 .llvm_name = "atmega163",
10221022 .dependencies = &[_]*const Feature {
1023 &feature_sram,
1024 &feature_jmpcall,
10251023 &feature_lpm,
1024 &feature_sram,
10261025 &feature_addsubiw,
10271026 &feature_ijmpcall,
1027 &feature_jmpcall,
10281028 &feature_lpmx,
10291029 &feature_movw,
10301030 &feature_mul,
......@@ -1036,16 +1036,16 @@ pub const cpu_atmega164a = Cpu{
10361036 .name = "atmega164a",
10371037 .llvm_name = "atmega164a",
10381038 .dependencies = &[_]*const Feature {
1039 &feature_sram,
1040 &feature_jmpcall,
1041 &feature_mul,
10421039 &feature_lpm,
1043 &feature_lpmx,
1044 &feature_spm,
1040 &feature_sram,
10451041 &feature_addsubiw,
1046 &feature_ijmpcall,
1047 &feature_break,
10481042 &feature_movw,
1043 &feature_break,
1044 &feature_ijmpcall,
1045 &feature_lpmx,
1046 &feature_jmpcall,
1047 &feature_spm,
1048 &feature_mul,
10491049 },
10501050};
10511051
......@@ -1053,16 +1053,16 @@ pub const cpu_atmega164p = Cpu{
10531053 .name = "atmega164p",
10541054 .llvm_name = "atmega164p",
10551055 .dependencies = &[_]*const Feature {
1056 &feature_sram,
1057 &feature_jmpcall,
1058 &feature_mul,
10591056 &feature_lpm,
1060 &feature_lpmx,
1061 &feature_spm,
1057 &feature_sram,
10621058 &feature_addsubiw,
1063 &feature_ijmpcall,
1064 &feature_break,
10651059 &feature_movw,
1060 &feature_break,
1061 &feature_ijmpcall,
1062 &feature_lpmx,
1063 &feature_jmpcall,
1064 &feature_spm,
1065 &feature_mul,
10661066 },
10671067};
10681068
......@@ -1070,16 +1070,16 @@ pub const cpu_atmega164pa = Cpu{
10701070 .name = "atmega164pa",
10711071 .llvm_name = "atmega164pa",
10721072 .dependencies = &[_]*const Feature {
1073 &feature_sram,
1074 &feature_jmpcall,
1075 &feature_mul,
10761073 &feature_lpm,
1077 &feature_lpmx,
1078 &feature_spm,
1074 &feature_sram,
10791075 &feature_addsubiw,
1080 &feature_ijmpcall,
1081 &feature_break,
10821076 &feature_movw,
1077 &feature_break,
1078 &feature_ijmpcall,
1079 &feature_lpmx,
1080 &feature_jmpcall,
1081 &feature_spm,
1082 &feature_mul,
10831083 },
10841084};
10851085
......@@ -1087,16 +1087,16 @@ pub const cpu_atmega165 = Cpu{
10871087 .name = "atmega165",
10881088 .llvm_name = "atmega165",
10891089 .dependencies = &[_]*const Feature {
1090 &feature_sram,
1091 &feature_jmpcall,
1092 &feature_mul,
10931090 &feature_lpm,
1094 &feature_lpmx,
1095 &feature_spm,
1091 &feature_sram,
10961092 &feature_addsubiw,
1097 &feature_ijmpcall,
1098 &feature_break,
10991093 &feature_movw,
1094 &feature_break,
1095 &feature_ijmpcall,
1096 &feature_lpmx,
1097 &feature_jmpcall,
1098 &feature_spm,
1099 &feature_mul,
11001100 },
11011101};
11021102
......@@ -1104,16 +1104,16 @@ pub const cpu_atmega165a = Cpu{
11041104 .name = "atmega165a",
11051105 .llvm_name = "atmega165a",
11061106 .dependencies = &[_]*const Feature {
1107 &feature_sram,
1108 &feature_jmpcall,
1109 &feature_mul,
11101107 &feature_lpm,
1111 &feature_lpmx,
1112 &feature_spm,
1108 &feature_sram,
11131109 &feature_addsubiw,
1114 &feature_ijmpcall,
1115 &feature_break,
11161110 &feature_movw,
1111 &feature_break,
1112 &feature_ijmpcall,
1113 &feature_lpmx,
1114 &feature_jmpcall,
1115 &feature_spm,
1116 &feature_mul,
11171117 },
11181118};
11191119
......@@ -1121,16 +1121,16 @@ pub const cpu_atmega165p = Cpu{
11211121 .name = "atmega165p",
11221122 .llvm_name = "atmega165p",
11231123 .dependencies = &[_]*const Feature {
1124 &feature_sram,
1125 &feature_jmpcall,
1126 &feature_mul,
11271124 &feature_lpm,
1128 &feature_lpmx,
1129 &feature_spm,
1125 &feature_sram,
11301126 &feature_addsubiw,
1131 &feature_ijmpcall,
1132 &feature_break,
11331127 &feature_movw,
1128 &feature_break,
1129 &feature_ijmpcall,
1130 &feature_lpmx,
1131 &feature_jmpcall,
1132 &feature_spm,
1133 &feature_mul,
11341134 },
11351135};
11361136
......@@ -1138,16 +1138,16 @@ pub const cpu_atmega165pa = Cpu{
11381138 .name = "atmega165pa",
11391139 .llvm_name = "atmega165pa",
11401140 .dependencies = &[_]*const Feature {
1141 &feature_sram,
1142 &feature_jmpcall,
1143 &feature_mul,
11441141 &feature_lpm,
1145 &feature_lpmx,
1146 &feature_spm,
1142 &feature_sram,
11471143 &feature_addsubiw,
1148 &feature_ijmpcall,
1149 &feature_break,
11501144 &feature_movw,
1145 &feature_break,
1146 &feature_ijmpcall,
1147 &feature_lpmx,
1148 &feature_jmpcall,
1149 &feature_spm,
1150 &feature_mul,
11511151 },
11521152};
11531153
......@@ -1155,16 +1155,16 @@ pub const cpu_atmega168 = Cpu{
11551155 .name = "atmega168",
11561156 .llvm_name = "atmega168",
11571157 .dependencies = &[_]*const Feature {
1158 &feature_sram,
1159 &feature_jmpcall,
1160 &feature_mul,
11611158 &feature_lpm,
1162 &feature_lpmx,
1163 &feature_spm,
1159 &feature_sram,
11641160 &feature_addsubiw,
1165 &feature_ijmpcall,
1166 &feature_break,
11671161 &feature_movw,
1162 &feature_break,
1163 &feature_ijmpcall,
1164 &feature_lpmx,
1165 &feature_jmpcall,
1166 &feature_spm,
1167 &feature_mul,
11681168 },
11691169};
11701170
......@@ -1172,16 +1172,16 @@ pub const cpu_atmega168a = Cpu{
11721172 .name = "atmega168a",
11731173 .llvm_name = "atmega168a",
11741174 .dependencies = &[_]*const Feature {
1175 &feature_sram,
1176 &feature_jmpcall,
1177 &feature_mul,
11781175 &feature_lpm,
1179 &feature_lpmx,
1180 &feature_spm,
1176 &feature_sram,
11811177 &feature_addsubiw,
1182 &feature_ijmpcall,
1183 &feature_break,
11841178 &feature_movw,
1179 &feature_break,
1180 &feature_ijmpcall,
1181 &feature_lpmx,
1182 &feature_jmpcall,
1183 &feature_spm,
1184 &feature_mul,
11851185 },
11861186};
11871187
......@@ -1189,16 +1189,16 @@ pub const cpu_atmega168p = Cpu{
11891189 .name = "atmega168p",
11901190 .llvm_name = "atmega168p",
11911191 .dependencies = &[_]*const Feature {
1192 &feature_sram,
1193 &feature_jmpcall,
1194 &feature_mul,
11951192 &feature_lpm,
1196 &feature_lpmx,
1197 &feature_spm,
1193 &feature_sram,
11981194 &feature_addsubiw,
1199 &feature_ijmpcall,
1200 &feature_break,
12011195 &feature_movw,
1196 &feature_break,
1197 &feature_ijmpcall,
1198 &feature_lpmx,
1199 &feature_jmpcall,
1200 &feature_spm,
1201 &feature_mul,
12021202 },
12031203};
12041204
......@@ -1206,16 +1206,16 @@ pub const cpu_atmega168pa = Cpu{
12061206 .name = "atmega168pa",
12071207 .llvm_name = "atmega168pa",
12081208 .dependencies = &[_]*const Feature {
1209 &feature_sram,
1210 &feature_jmpcall,
1211 &feature_mul,
12121209 &feature_lpm,
1213 &feature_lpmx,
1214 &feature_spm,
1210 &feature_sram,
12151211 &feature_addsubiw,
1216 &feature_ijmpcall,
1217 &feature_break,
12181212 &feature_movw,
1213 &feature_break,
1214 &feature_ijmpcall,
1215 &feature_lpmx,
1216 &feature_jmpcall,
1217 &feature_spm,
1218 &feature_mul,
12191219 },
12201220};
12211221
......@@ -1223,16 +1223,16 @@ pub const cpu_atmega169 = Cpu{
12231223 .name = "atmega169",
12241224 .llvm_name = "atmega169",
12251225 .dependencies = &[_]*const Feature {
1226 &feature_sram,
1227 &feature_jmpcall,
1228 &feature_mul,
12291226 &feature_lpm,
1230 &feature_lpmx,
1231 &feature_spm,
1227 &feature_sram,
12321228 &feature_addsubiw,
1233 &feature_ijmpcall,
1234 &feature_break,
12351229 &feature_movw,
1230 &feature_break,
1231 &feature_ijmpcall,
1232 &feature_lpmx,
1233 &feature_jmpcall,
1234 &feature_spm,
1235 &feature_mul,
12361236 },
12371237};
12381238
......@@ -1240,16 +1240,16 @@ pub const cpu_atmega169a = Cpu{
12401240 .name = "atmega169a",
12411241 .llvm_name = "atmega169a",
12421242 .dependencies = &[_]*const Feature {
1243 &feature_sram,
1244 &feature_jmpcall,
1245 &feature_mul,
12461243 &feature_lpm,
1247 &feature_lpmx,
1248 &feature_spm,
1244 &feature_sram,
12491245 &feature_addsubiw,
1250 &feature_ijmpcall,
1251 &feature_break,
12521246 &feature_movw,
1247 &feature_break,
1248 &feature_ijmpcall,
1249 &feature_lpmx,
1250 &feature_jmpcall,
1251 &feature_spm,
1252 &feature_mul,
12531253 },
12541254};
12551255
......@@ -1257,16 +1257,16 @@ pub const cpu_atmega169p = Cpu{
12571257 .name = "atmega169p",
12581258 .llvm_name = "atmega169p",
12591259 .dependencies = &[_]*const Feature {
1260 &feature_sram,
1261 &feature_jmpcall,
1262 &feature_mul,
12631260 &feature_lpm,
1264 &feature_lpmx,
1265 &feature_spm,
1261 &feature_sram,
12661262 &feature_addsubiw,
1267 &feature_ijmpcall,
1268 &feature_break,
12691263 &feature_movw,
1264 &feature_break,
1265 &feature_ijmpcall,
1266 &feature_lpmx,
1267 &feature_jmpcall,
1268 &feature_spm,
1269 &feature_mul,
12701270 },
12711271};
12721272
......@@ -1274,16 +1274,16 @@ pub const cpu_atmega169pa = Cpu{
12741274 .name = "atmega169pa",
12751275 .llvm_name = "atmega169pa",
12761276 .dependencies = &[_]*const Feature {
1277 &feature_sram,
1278 &feature_jmpcall,
1279 &feature_mul,
12801277 &feature_lpm,
1281 &feature_lpmx,
1282 &feature_spm,
1278 &feature_sram,
12831279 &feature_addsubiw,
1284 &feature_ijmpcall,
1285 &feature_break,
12861280 &feature_movw,
1281 &feature_break,
1282 &feature_ijmpcall,
1283 &feature_lpmx,
1284 &feature_jmpcall,
1285 &feature_spm,
1286 &feature_mul,
12871287 },
12881288};
12891289
......@@ -1291,33 +1291,33 @@ pub const cpu_atmega16a = Cpu{
12911291 .name = "atmega16a",
12921292 .llvm_name = "atmega16a",
12931293 .dependencies = &[_]*const Feature {
1294 &feature_sram,
1295 &feature_jmpcall,
1296 &feature_mul,
12971294 &feature_lpm,
1298 &feature_lpmx,
1299 &feature_spm,
1295 &feature_sram,
13001296 &feature_addsubiw,
1301 &feature_ijmpcall,
1302 &feature_break,
13031297 &feature_movw,
1304 },
1305};
1298 &feature_break,
1299 &feature_ijmpcall,
1300 &feature_lpmx,
1301 &feature_jmpcall,
1302 &feature_spm,
1303 &feature_mul,
1304 },
1305};
13061306
13071307pub const cpu_atmega16hva = Cpu{
13081308 .name = "atmega16hva",
13091309 .llvm_name = "atmega16hva",
13101310 .dependencies = &[_]*const Feature {
1311 &feature_sram,
1312 &feature_jmpcall,
1313 &feature_mul,
13141311 &feature_lpm,
1315 &feature_lpmx,
1316 &feature_spm,
1312 &feature_sram,
13171313 &feature_addsubiw,
1318 &feature_ijmpcall,
1319 &feature_break,
13201314 &feature_movw,
1315 &feature_break,
1316 &feature_ijmpcall,
1317 &feature_lpmx,
1318 &feature_jmpcall,
1319 &feature_spm,
1320 &feature_mul,
13211321 },
13221322};
13231323
......@@ -1325,16 +1325,16 @@ pub const cpu_atmega16hva2 = Cpu{
13251325 .name = "atmega16hva2",
13261326 .llvm_name = "atmega16hva2",
13271327 .dependencies = &[_]*const Feature {
1328 &feature_sram,
1329 &feature_jmpcall,
1330 &feature_mul,
13311328 &feature_lpm,
1332 &feature_lpmx,
1333 &feature_spm,
1329 &feature_sram,
13341330 &feature_addsubiw,
1335 &feature_ijmpcall,
1336 &feature_break,
13371331 &feature_movw,
1332 &feature_break,
1333 &feature_ijmpcall,
1334 &feature_lpmx,
1335 &feature_jmpcall,
1336 &feature_spm,
1337 &feature_mul,
13381338 },
13391339};
13401340
......@@ -1342,16 +1342,16 @@ pub const cpu_atmega16hvb = Cpu{
13421342 .name = "atmega16hvb",
13431343 .llvm_name = "atmega16hvb",
13441344 .dependencies = &[_]*const Feature {
1345 &feature_sram,
1346 &feature_jmpcall,
1347 &feature_mul,
13481345 &feature_lpm,
1349 &feature_lpmx,
1350 &feature_spm,
1346 &feature_sram,
13511347 &feature_addsubiw,
1352 &feature_ijmpcall,
1353 &feature_break,
13541348 &feature_movw,
1349 &feature_break,
1350 &feature_ijmpcall,
1351 &feature_lpmx,
1352 &feature_jmpcall,
1353 &feature_spm,
1354 &feature_mul,
13551355 },
13561356};
13571357
......@@ -1359,16 +1359,16 @@ pub const cpu_atmega16hvbrevb = Cpu{
13591359 .name = "atmega16hvbrevb",
13601360 .llvm_name = "atmega16hvbrevb",
13611361 .dependencies = &[_]*const Feature {
1362 &feature_sram,
1363 &feature_jmpcall,
1364 &feature_mul,
13651362 &feature_lpm,
1366 &feature_lpmx,
1367 &feature_spm,
1363 &feature_sram,
13681364 &feature_addsubiw,
1369 &feature_ijmpcall,
1370 &feature_break,
13711365 &feature_movw,
1366 &feature_break,
1367 &feature_ijmpcall,
1368 &feature_lpmx,
1369 &feature_jmpcall,
1370 &feature_spm,
1371 &feature_mul,
13721372 },
13731373};
13741374
......@@ -1376,16 +1376,16 @@ pub const cpu_atmega16m1 = Cpu{
13761376 .name = "atmega16m1",
13771377 .llvm_name = "atmega16m1",
13781378 .dependencies = &[_]*const Feature {
1379 &feature_sram,
1380 &feature_jmpcall,
1381 &feature_mul,
13821379 &feature_lpm,
1383 &feature_lpmx,
1384 &feature_spm,
1380 &feature_sram,
13851381 &feature_addsubiw,
1386 &feature_ijmpcall,
1387 &feature_break,
13881382 &feature_movw,
1383 &feature_break,
1384 &feature_ijmpcall,
1385 &feature_lpmx,
1386 &feature_jmpcall,
1387 &feature_spm,
1388 &feature_mul,
13891389 },
13901390};
13911391
......@@ -1393,15 +1393,15 @@ pub const cpu_atmega16u2 = Cpu{
13931393 .name = "atmega16u2",
13941394 .llvm_name = "atmega16u2",
13951395 .dependencies = &[_]*const Feature {
1396 &feature_sram,
1397 &feature_jmpcall,
13981396 &feature_lpm,
1399 &feature_lpmx,
1400 &feature_spm,
1397 &feature_sram,
14011398 &feature_addsubiw,
1402 &feature_ijmpcall,
1403 &feature_break,
14041399 &feature_movw,
1400 &feature_break,
1401 &feature_ijmpcall,
1402 &feature_lpmx,
1403 &feature_jmpcall,
1404 &feature_spm,
14051405 },
14061406};
14071407
......@@ -1409,16 +1409,16 @@ pub const cpu_atmega16u4 = Cpu{
14091409 .name = "atmega16u4",
14101410 .llvm_name = "atmega16u4",
14111411 .dependencies = &[_]*const Feature {
1412 &feature_sram,
1413 &feature_jmpcall,
1414 &feature_mul,
14151412 &feature_lpm,
1416 &feature_lpmx,
1417 &feature_spm,
1413 &feature_sram,
14181414 &feature_addsubiw,
1419 &feature_ijmpcall,
1420 &feature_break,
14211415 &feature_movw,
1416 &feature_break,
1417 &feature_ijmpcall,
1418 &feature_lpmx,
1419 &feature_jmpcall,
1420 &feature_spm,
1421 &feature_mul,
14221422 },
14231423};
14241424
......@@ -1426,18 +1426,18 @@ pub const cpu_atmega2560 = Cpu{
14261426 .name = "atmega2560",
14271427 .llvm_name = "atmega2560",
14281428 .dependencies = &[_]*const Feature {
1429 &feature_lpm,
14291430 &feature_sram,
1430 &feature_jmpcall,
1431 &feature_mul,
1431 &feature_addsubiw,
1432 &feature_movw,
14321433 &feature_elpm,
1433 &feature_lpm,
1434 &feature_break,
1435 &feature_ijmpcall,
14341436 &feature_lpmx,
1437 &feature_jmpcall,
14351438 &feature_spm,
1436 &feature_addsubiw,
1437 &feature_ijmpcall,
14381439 &feature_elpmx,
1439 &feature_break,
1440 &feature_movw,
1440 &feature_mul,
14411441 },
14421442};
14431443
......@@ -1445,18 +1445,18 @@ pub const cpu_atmega2561 = Cpu{
14451445 .name = "atmega2561",
14461446 .llvm_name = "atmega2561",
14471447 .dependencies = &[_]*const Feature {
1448 &feature_lpm,
14481449 &feature_sram,
1449 &feature_jmpcall,
1450 &feature_mul,
1450 &feature_addsubiw,
1451 &feature_movw,
14511452 &feature_elpm,
1452 &feature_lpm,
1453 &feature_break,
1454 &feature_ijmpcall,
14531455 &feature_lpmx,
1456 &feature_jmpcall,
14541457 &feature_spm,
1455 &feature_addsubiw,
1456 &feature_ijmpcall,
14571458 &feature_elpmx,
1458 &feature_break,
1459 &feature_movw,
1459 &feature_mul,
14601460 },
14611461};
14621462
......@@ -1464,18 +1464,18 @@ pub const cpu_atmega2564rfr2 = Cpu{
14641464 .name = "atmega2564rfr2",
14651465 .llvm_name = "atmega2564rfr2",
14661466 .dependencies = &[_]*const Feature {
1467 &feature_lpm,
14671468 &feature_sram,
1468 &feature_jmpcall,
1469 &feature_mul,
1469 &feature_addsubiw,
1470 &feature_movw,
14701471 &feature_elpm,
1471 &feature_lpm,
1472 &feature_break,
1473 &feature_ijmpcall,
14721474 &feature_lpmx,
1475 &feature_jmpcall,
14731476 &feature_spm,
1474 &feature_addsubiw,
1475 &feature_ijmpcall,
14761477 &feature_elpmx,
1477 &feature_break,
1478 &feature_movw,
1478 &feature_mul,
14791479 },
14801480};
14811481
......@@ -1483,18 +1483,18 @@ pub const cpu_atmega256rfr2 = Cpu{
14831483 .name = "atmega256rfr2",
14841484 .llvm_name = "atmega256rfr2",
14851485 .dependencies = &[_]*const Feature {
1486 &feature_lpm,
14861487 &feature_sram,
1487 &feature_jmpcall,
1488 &feature_mul,
1488 &feature_addsubiw,
1489 &feature_movw,
14891490 &feature_elpm,
1490 &feature_lpm,
1491 &feature_break,
1492 &feature_ijmpcall,
14911493 &feature_lpmx,
1494 &feature_jmpcall,
14921495 &feature_spm,
1493 &feature_addsubiw,
1494 &feature_ijmpcall,
14951496 &feature_elpmx,
1496 &feature_break,
1497 &feature_movw,
1497 &feature_mul,
14981498 },
14991499};
15001500
......@@ -1502,16 +1502,16 @@ pub const cpu_atmega32 = Cpu{
15021502 .name = "atmega32",
15031503 .llvm_name = "atmega32",
15041504 .dependencies = &[_]*const Feature {
1505 &feature_sram,
1506 &feature_jmpcall,
1507 &feature_mul,
15081505 &feature_lpm,
1509 &feature_lpmx,
1510 &feature_spm,
1506 &feature_sram,
15111507 &feature_addsubiw,
1512 &feature_ijmpcall,
1513 &feature_break,
15141508 &feature_movw,
1509 &feature_break,
1510 &feature_ijmpcall,
1511 &feature_lpmx,
1512 &feature_jmpcall,
1513 &feature_spm,
1514 &feature_mul,
15151515 },
15161516};
15171517
......@@ -1519,16 +1519,16 @@ pub const cpu_atmega323 = Cpu{
15191519 .name = "atmega323",
15201520 .llvm_name = "atmega323",
15211521 .dependencies = &[_]*const Feature {
1522 &feature_sram,
1523 &feature_jmpcall,
1524 &feature_mul,
15251522 &feature_lpm,
1526 &feature_lpmx,
1527 &feature_spm,
1523 &feature_sram,
15281524 &feature_addsubiw,
1529 &feature_ijmpcall,
1530 &feature_break,
15311525 &feature_movw,
1526 &feature_break,
1527 &feature_ijmpcall,
1528 &feature_lpmx,
1529 &feature_jmpcall,
1530 &feature_spm,
1531 &feature_mul,
15321532 },
15331533};
15341534
......@@ -1536,16 +1536,16 @@ pub const cpu_atmega324a = Cpu{
15361536 .name = "atmega324a",
15371537 .llvm_name = "atmega324a",
15381538 .dependencies = &[_]*const Feature {
1539 &feature_sram,
1540 &feature_jmpcall,
1541 &feature_mul,
15421539 &feature_lpm,
1543 &feature_lpmx,
1544 &feature_spm,
1540 &feature_sram,
15451541 &feature_addsubiw,
1546 &feature_ijmpcall,
1547 &feature_break,
15481542 &feature_movw,
1543 &feature_break,
1544 &feature_ijmpcall,
1545 &feature_lpmx,
1546 &feature_jmpcall,
1547 &feature_spm,
1548 &feature_mul,
15491549 },
15501550};
15511551
......@@ -1553,16 +1553,16 @@ pub const cpu_atmega324p = Cpu{
15531553 .name = "atmega324p",
15541554 .llvm_name = "atmega324p",
15551555 .dependencies = &[_]*const Feature {
1556 &feature_sram,
1557 &feature_jmpcall,
1558 &feature_mul,
15591556 &feature_lpm,
1560 &feature_lpmx,
1561 &feature_spm,
1557 &feature_sram,
15621558 &feature_addsubiw,
1563 &feature_ijmpcall,
1564 &feature_break,
15651559 &feature_movw,
1560 &feature_break,
1561 &feature_ijmpcall,
1562 &feature_lpmx,
1563 &feature_jmpcall,
1564 &feature_spm,
1565 &feature_mul,
15661566 },
15671567};
15681568
......@@ -1570,16 +1570,16 @@ pub const cpu_atmega324pa = Cpu{
15701570 .name = "atmega324pa",
15711571 .llvm_name = "atmega324pa",
15721572 .dependencies = &[_]*const Feature {
1573 &feature_sram,
1574 &feature_jmpcall,
1575 &feature_mul,
15761573 &feature_lpm,
1577 &feature_lpmx,
1578 &feature_spm,
1574 &feature_sram,
15791575 &feature_addsubiw,
1580 &feature_ijmpcall,
1581 &feature_break,
15821576 &feature_movw,
1577 &feature_break,
1578 &feature_ijmpcall,
1579 &feature_lpmx,
1580 &feature_jmpcall,
1581 &feature_spm,
1582 &feature_mul,
15831583 },
15841584};
15851585
......@@ -1587,16 +1587,16 @@ pub const cpu_atmega325 = Cpu{
15871587 .name = "atmega325",
15881588 .llvm_name = "atmega325",
15891589 .dependencies = &[_]*const Feature {
1590 &feature_sram,
1591 &feature_jmpcall,
1592 &feature_mul,
15931590 &feature_lpm,
1594 &feature_lpmx,
1595 &feature_spm,
1591 &feature_sram,
15961592 &feature_addsubiw,
1597 &feature_ijmpcall,
1598 &feature_break,
15991593 &feature_movw,
1594 &feature_break,
1595 &feature_ijmpcall,
1596 &feature_lpmx,
1597 &feature_jmpcall,
1598 &feature_spm,
1599 &feature_mul,
16001600 },
16011601};
16021602
......@@ -1604,33 +1604,33 @@ pub const cpu_atmega3250 = Cpu{
16041604 .name = "atmega3250",
16051605 .llvm_name = "atmega3250",
16061606 .dependencies = &[_]*const Feature {
1607 &feature_sram,
1608 &feature_jmpcall,
1609 &feature_mul,
16101607 &feature_lpm,
1611 &feature_lpmx,
1612 &feature_spm,
1608 &feature_sram,
16131609 &feature_addsubiw,
1614 &feature_ijmpcall,
1615 &feature_break,
16161610 &feature_movw,
1617 },
1618};
1619
1620pub const cpu_atmega3250a = Cpu{
1611 &feature_break,
1612 &feature_ijmpcall,
1613 &feature_lpmx,
1614 &feature_jmpcall,
1615 &feature_spm,
1616 &feature_mul,
1617 },
1618};
1619
1620pub const cpu_atmega3250a = Cpu{
16211621 .name = "atmega3250a",
16221622 .llvm_name = "atmega3250a",
16231623 .dependencies = &[_]*const Feature {
1624 &feature_sram,
1625 &feature_jmpcall,
1626 &feature_mul,
16271624 &feature_lpm,
1628 &feature_lpmx,
1629 &feature_spm,
1625 &feature_sram,
16301626 &feature_addsubiw,
1631 &feature_ijmpcall,
1632 &feature_break,
16331627 &feature_movw,
1628 &feature_break,
1629 &feature_ijmpcall,
1630 &feature_lpmx,
1631 &feature_jmpcall,
1632 &feature_spm,
1633 &feature_mul,
16341634 },
16351635};
16361636
......@@ -1638,16 +1638,16 @@ pub const cpu_atmega3250p = Cpu{
16381638 .name = "atmega3250p",
16391639 .llvm_name = "atmega3250p",
16401640 .dependencies = &[_]*const Feature {
1641 &feature_sram,
1642 &feature_jmpcall,
1643 &feature_mul,
16441641 &feature_lpm,
1645 &feature_lpmx,
1646 &feature_spm,
1642 &feature_sram,
16471643 &feature_addsubiw,
1648 &feature_ijmpcall,
1649 &feature_break,
16501644 &feature_movw,
1645 &feature_break,
1646 &feature_ijmpcall,
1647 &feature_lpmx,
1648 &feature_jmpcall,
1649 &feature_spm,
1650 &feature_mul,
16511651 },
16521652};
16531653
......@@ -1655,16 +1655,16 @@ pub const cpu_atmega3250pa = Cpu{
16551655 .name = "atmega3250pa",
16561656 .llvm_name = "atmega3250pa",
16571657 .dependencies = &[_]*const Feature {
1658 &feature_sram,
1659 &feature_jmpcall,
1660 &feature_mul,
16611658 &feature_lpm,
1662 &feature_lpmx,
1663 &feature_spm,
1659 &feature_sram,
16641660 &feature_addsubiw,
1665 &feature_ijmpcall,
1666 &feature_break,
16671661 &feature_movw,
1662 &feature_break,
1663 &feature_ijmpcall,
1664 &feature_lpmx,
1665 &feature_jmpcall,
1666 &feature_spm,
1667 &feature_mul,
16681668 },
16691669};
16701670
......@@ -1672,16 +1672,16 @@ pub const cpu_atmega325a = Cpu{
16721672 .name = "atmega325a",
16731673 .llvm_name = "atmega325a",
16741674 .dependencies = &[_]*const Feature {
1675 &feature_sram,
1676 &feature_jmpcall,
1677 &feature_mul,
16781675 &feature_lpm,
1679 &feature_lpmx,
1680 &feature_spm,
1676 &feature_sram,
16811677 &feature_addsubiw,
1682 &feature_ijmpcall,
1683 &feature_break,
16841678 &feature_movw,
1679 &feature_break,
1680 &feature_ijmpcall,
1681 &feature_lpmx,
1682 &feature_jmpcall,
1683 &feature_spm,
1684 &feature_mul,
16851685 },
16861686};
16871687
......@@ -1689,16 +1689,16 @@ pub const cpu_atmega325p = Cpu{
16891689 .name = "atmega325p",
16901690 .llvm_name = "atmega325p",
16911691 .dependencies = &[_]*const Feature {
1692 &feature_sram,
1693 &feature_jmpcall,
1694 &feature_mul,
16951692 &feature_lpm,
1696 &feature_lpmx,
1697 &feature_spm,
1693 &feature_sram,
16981694 &feature_addsubiw,
1699 &feature_ijmpcall,
1700 &feature_break,
17011695 &feature_movw,
1696 &feature_break,
1697 &feature_ijmpcall,
1698 &feature_lpmx,
1699 &feature_jmpcall,
1700 &feature_spm,
1701 &feature_mul,
17021702 },
17031703};
17041704
......@@ -1706,16 +1706,16 @@ pub const cpu_atmega325pa = Cpu{
17061706 .name = "atmega325pa",
17071707 .llvm_name = "atmega325pa",
17081708 .dependencies = &[_]*const Feature {
1709 &feature_sram,
1710 &feature_jmpcall,
1711 &feature_mul,
17121709 &feature_lpm,
1713 &feature_lpmx,
1714 &feature_spm,
1710 &feature_sram,
17151711 &feature_addsubiw,
1716 &feature_ijmpcall,
1717 &feature_break,
17181712 &feature_movw,
1713 &feature_break,
1714 &feature_ijmpcall,
1715 &feature_lpmx,
1716 &feature_jmpcall,
1717 &feature_spm,
1718 &feature_mul,
17191719 },
17201720};
17211721
......@@ -1723,16 +1723,16 @@ pub const cpu_atmega328 = Cpu{
17231723 .name = "atmega328",
17241724 .llvm_name = "atmega328",
17251725 .dependencies = &[_]*const Feature {
1726 &feature_sram,
1727 &feature_jmpcall,
1728 &feature_mul,
17291726 &feature_lpm,
1730 &feature_lpmx,
1731 &feature_spm,
1727 &feature_sram,
17321728 &feature_addsubiw,
1733 &feature_ijmpcall,
1734 &feature_break,
17351729 &feature_movw,
1730 &feature_break,
1731 &feature_ijmpcall,
1732 &feature_lpmx,
1733 &feature_jmpcall,
1734 &feature_spm,
1735 &feature_mul,
17361736 },
17371737};
17381738
......@@ -1740,16 +1740,16 @@ pub const cpu_atmega328p = Cpu{
17401740 .name = "atmega328p",
17411741 .llvm_name = "atmega328p",
17421742 .dependencies = &[_]*const Feature {
1743 &feature_sram,
1744 &feature_jmpcall,
1745 &feature_mul,
17461743 &feature_lpm,
1747 &feature_lpmx,
1748 &feature_spm,
1744 &feature_sram,
17491745 &feature_addsubiw,
1750 &feature_ijmpcall,
1751 &feature_break,
17521746 &feature_movw,
1747 &feature_break,
1748 &feature_ijmpcall,
1749 &feature_lpmx,
1750 &feature_jmpcall,
1751 &feature_spm,
1752 &feature_mul,
17531753 },
17541754};
17551755
......@@ -1757,16 +1757,16 @@ pub const cpu_atmega329 = Cpu{
17571757 .name = "atmega329",
17581758 .llvm_name = "atmega329",
17591759 .dependencies = &[_]*const Feature {
1760 &feature_sram,
1761 &feature_jmpcall,
1762 &feature_mul,
17631760 &feature_lpm,
1764 &feature_lpmx,
1765 &feature_spm,
1761 &feature_sram,
17661762 &feature_addsubiw,
1767 &feature_ijmpcall,
1768 &feature_break,
17691763 &feature_movw,
1764 &feature_break,
1765 &feature_ijmpcall,
1766 &feature_lpmx,
1767 &feature_jmpcall,
1768 &feature_spm,
1769 &feature_mul,
17701770 },
17711771};
17721772
......@@ -1774,16 +1774,16 @@ pub const cpu_atmega3290 = Cpu{
17741774 .name = "atmega3290",
17751775 .llvm_name = "atmega3290",
17761776 .dependencies = &[_]*const Feature {
1777 &feature_sram,
1778 &feature_jmpcall,
1779 &feature_mul,
17801777 &feature_lpm,
1781 &feature_lpmx,
1782 &feature_spm,
1778 &feature_sram,
17831779 &feature_addsubiw,
1784 &feature_ijmpcall,
1785 &feature_break,
17861780 &feature_movw,
1781 &feature_break,
1782 &feature_ijmpcall,
1783 &feature_lpmx,
1784 &feature_jmpcall,
1785 &feature_spm,
1786 &feature_mul,
17871787 },
17881788};
17891789
......@@ -1791,16 +1791,16 @@ pub const cpu_atmega3290a = Cpu{
17911791 .name = "atmega3290a",
17921792 .llvm_name = "atmega3290a",
17931793 .dependencies = &[_]*const Feature {
1794 &feature_sram,
1795 &feature_jmpcall,
1796 &feature_mul,
17971794 &feature_lpm,
1798 &feature_lpmx,
1799 &feature_spm,
1795 &feature_sram,
18001796 &feature_addsubiw,
1801 &feature_ijmpcall,
1802 &feature_break,
18031797 &feature_movw,
1798 &feature_break,
1799 &feature_ijmpcall,
1800 &feature_lpmx,
1801 &feature_jmpcall,
1802 &feature_spm,
1803 &feature_mul,
18041804 },
18051805};
18061806
......@@ -1808,16 +1808,16 @@ pub const cpu_atmega3290p = Cpu{
18081808 .name = "atmega3290p",
18091809 .llvm_name = "atmega3290p",
18101810 .dependencies = &[_]*const Feature {
1811 &feature_sram,
1812 &feature_jmpcall,
1813 &feature_mul,
18141811 &feature_lpm,
1815 &feature_lpmx,
1816 &feature_spm,
1812 &feature_sram,
18171813 &feature_addsubiw,
1818 &feature_ijmpcall,
1819 &feature_break,
18201814 &feature_movw,
1815 &feature_break,
1816 &feature_ijmpcall,
1817 &feature_lpmx,
1818 &feature_jmpcall,
1819 &feature_spm,
1820 &feature_mul,
18211821 },
18221822};
18231823
......@@ -1825,16 +1825,16 @@ pub const cpu_atmega3290pa = Cpu{
18251825 .name = "atmega3290pa",
18261826 .llvm_name = "atmega3290pa",
18271827 .dependencies = &[_]*const Feature {
1828 &feature_sram,
1829 &feature_jmpcall,
1830 &feature_mul,
18311828 &feature_lpm,
1832 &feature_lpmx,
1833 &feature_spm,
1829 &feature_sram,
18341830 &feature_addsubiw,
1835 &feature_ijmpcall,
1836 &feature_break,
18371831 &feature_movw,
1832 &feature_break,
1833 &feature_ijmpcall,
1834 &feature_lpmx,
1835 &feature_jmpcall,
1836 &feature_spm,
1837 &feature_mul,
18381838 },
18391839};
18401840
......@@ -1842,16 +1842,16 @@ pub const cpu_atmega329a = Cpu{
18421842 .name = "atmega329a",
18431843 .llvm_name = "atmega329a",
18441844 .dependencies = &[_]*const Feature {
1845 &feature_sram,
1846 &feature_jmpcall,
1847 &feature_mul,
18481845 &feature_lpm,
1849 &feature_lpmx,
1850 &feature_spm,
1846 &feature_sram,
18511847 &feature_addsubiw,
1852 &feature_ijmpcall,
1853 &feature_break,
18541848 &feature_movw,
1849 &feature_break,
1850 &feature_ijmpcall,
1851 &feature_lpmx,
1852 &feature_jmpcall,
1853 &feature_spm,
1854 &feature_mul,
18551855 },
18561856};
18571857
......@@ -1859,16 +1859,16 @@ pub const cpu_atmega329p = Cpu{
18591859 .name = "atmega329p",
18601860 .llvm_name = "atmega329p",
18611861 .dependencies = &[_]*const Feature {
1862 &feature_sram,
1863 &feature_jmpcall,
1864 &feature_mul,
18651862 &feature_lpm,
1866 &feature_lpmx,
1867 &feature_spm,
1863 &feature_sram,
18681864 &feature_addsubiw,
1869 &feature_ijmpcall,
1870 &feature_break,
18711865 &feature_movw,
1866 &feature_break,
1867 &feature_ijmpcall,
1868 &feature_lpmx,
1869 &feature_jmpcall,
1870 &feature_spm,
1871 &feature_mul,
18721872 },
18731873};
18741874
......@@ -1876,16 +1876,16 @@ pub const cpu_atmega329pa = Cpu{
18761876 .name = "atmega329pa",
18771877 .llvm_name = "atmega329pa",
18781878 .dependencies = &[_]*const Feature {
1879 &feature_sram,
1880 &feature_jmpcall,
1881 &feature_mul,
18821879 &feature_lpm,
1883 &feature_lpmx,
1884 &feature_spm,
1880 &feature_sram,
18851881 &feature_addsubiw,
1886 &feature_ijmpcall,
1887 &feature_break,
18881882 &feature_movw,
1883 &feature_break,
1884 &feature_ijmpcall,
1885 &feature_lpmx,
1886 &feature_jmpcall,
1887 &feature_spm,
1888 &feature_mul,
18891889 },
18901890};
18911891
......@@ -1893,16 +1893,16 @@ pub const cpu_atmega32a = Cpu{
18931893 .name = "atmega32a",
18941894 .llvm_name = "atmega32a",
18951895 .dependencies = &[_]*const Feature {
1896 &feature_sram,
1897 &feature_jmpcall,
1898 &feature_mul,
18991896 &feature_lpm,
1900 &feature_lpmx,
1901 &feature_spm,
1897 &feature_sram,
19021898 &feature_addsubiw,
1903 &feature_ijmpcall,
1904 &feature_break,
19051899 &feature_movw,
1900 &feature_break,
1901 &feature_ijmpcall,
1902 &feature_lpmx,
1903 &feature_jmpcall,
1904 &feature_spm,
1905 &feature_mul,
19061906 },
19071907};
19081908
......@@ -1910,16 +1910,16 @@ pub const cpu_atmega32c1 = Cpu{
19101910 .name = "atmega32c1",
19111911 .llvm_name = "atmega32c1",
19121912 .dependencies = &[_]*const Feature {
1913 &feature_sram,
1914 &feature_jmpcall,
1915 &feature_mul,
19161913 &feature_lpm,
1917 &feature_lpmx,
1918 &feature_spm,
1914 &feature_sram,
19191915 &feature_addsubiw,
1920 &feature_ijmpcall,
1921 &feature_break,
19221916 &feature_movw,
1917 &feature_break,
1918 &feature_ijmpcall,
1919 &feature_lpmx,
1920 &feature_jmpcall,
1921 &feature_spm,
1922 &feature_mul,
19231923 },
19241924};
19251925
......@@ -1927,16 +1927,16 @@ pub const cpu_atmega32hvb = Cpu{
19271927 .name = "atmega32hvb",
19281928 .llvm_name = "atmega32hvb",
19291929 .dependencies = &[_]*const Feature {
1930 &feature_sram,
1931 &feature_jmpcall,
1932 &feature_mul,
19331930 &feature_lpm,
1934 &feature_lpmx,
1935 &feature_spm,
1931 &feature_sram,
19361932 &feature_addsubiw,
1937 &feature_ijmpcall,
1938 &feature_break,
19391933 &feature_movw,
1934 &feature_break,
1935 &feature_ijmpcall,
1936 &feature_lpmx,
1937 &feature_jmpcall,
1938 &feature_spm,
1939 &feature_mul,
19401940 },
19411941};
19421942
......@@ -1944,16 +1944,16 @@ pub const cpu_atmega32hvbrevb = Cpu{
19441944 .name = "atmega32hvbrevb",
19451945 .llvm_name = "atmega32hvbrevb",
19461946 .dependencies = &[_]*const Feature {
1947 &feature_sram,
1948 &feature_jmpcall,
1949 &feature_mul,
19501947 &feature_lpm,
1951 &feature_lpmx,
1952 &feature_spm,
1948 &feature_sram,
19531949 &feature_addsubiw,
1954 &feature_ijmpcall,
1955 &feature_break,
19561950 &feature_movw,
1951 &feature_break,
1952 &feature_ijmpcall,
1953 &feature_lpmx,
1954 &feature_jmpcall,
1955 &feature_spm,
1956 &feature_mul,
19571957 },
19581958};
19591959
......@@ -1961,16 +1961,16 @@ pub const cpu_atmega32m1 = Cpu{
19611961 .name = "atmega32m1",
19621962 .llvm_name = "atmega32m1",
19631963 .dependencies = &[_]*const Feature {
1964 &feature_sram,
1965 &feature_jmpcall,
1966 &feature_mul,
19671964 &feature_lpm,
1968 &feature_lpmx,
1969 &feature_spm,
1965 &feature_sram,
19701966 &feature_addsubiw,
1971 &feature_ijmpcall,
1972 &feature_break,
19731967 &feature_movw,
1968 &feature_break,
1969 &feature_ijmpcall,
1970 &feature_lpmx,
1971 &feature_jmpcall,
1972 &feature_spm,
1973 &feature_mul,
19741974 },
19751975};
19761976
......@@ -1978,15 +1978,15 @@ pub const cpu_atmega32u2 = Cpu{
19781978 .name = "atmega32u2",
19791979 .llvm_name = "atmega32u2",
19801980 .dependencies = &[_]*const Feature {
1981 &feature_sram,
1982 &feature_jmpcall,
19831981 &feature_lpm,
1984 &feature_lpmx,
1985 &feature_spm,
1982 &feature_sram,
19861983 &feature_addsubiw,
1987 &feature_ijmpcall,
1988 &feature_break,
19891984 &feature_movw,
1985 &feature_break,
1986 &feature_ijmpcall,
1987 &feature_lpmx,
1988 &feature_jmpcall,
1989 &feature_spm,
19901990 },
19911991};
19921992
......@@ -1994,16 +1994,16 @@ pub const cpu_atmega32u4 = Cpu{
19941994 .name = "atmega32u4",
19951995 .llvm_name = "atmega32u4",
19961996 .dependencies = &[_]*const Feature {
1997 &feature_sram,
1998 &feature_jmpcall,
1999 &feature_mul,
20001997 &feature_lpm,
2001 &feature_lpmx,
2002 &feature_spm,
1998 &feature_sram,
20031999 &feature_addsubiw,
2004 &feature_ijmpcall,
2005 &feature_break,
20062000 &feature_movw,
2001 &feature_break,
2002 &feature_ijmpcall,
2003 &feature_lpmx,
2004 &feature_jmpcall,
2005 &feature_spm,
2006 &feature_mul,
20072007 },
20082008};
20092009
......@@ -2011,16 +2011,16 @@ pub const cpu_atmega32u6 = Cpu{
20112011 .name = "atmega32u6",
20122012 .llvm_name = "atmega32u6",
20132013 .dependencies = &[_]*const Feature {
2014 &feature_sram,
2015 &feature_jmpcall,
2016 &feature_mul,
20172014 &feature_lpm,
2018 &feature_lpmx,
2019 &feature_spm,
2015 &feature_sram,
20202016 &feature_addsubiw,
2021 &feature_ijmpcall,
2022 &feature_break,
20232017 &feature_movw,
2018 &feature_break,
2019 &feature_ijmpcall,
2020 &feature_lpmx,
2021 &feature_jmpcall,
2022 &feature_spm,
2023 &feature_mul,
20242024 },
20252025};
20262026
......@@ -2028,16 +2028,16 @@ pub const cpu_atmega406 = Cpu{
20282028 .name = "atmega406",
20292029 .llvm_name = "atmega406",
20302030 .dependencies = &[_]*const Feature {
2031 &feature_sram,
2032 &feature_jmpcall,
2033 &feature_mul,
20342031 &feature_lpm,
2035 &feature_lpmx,
2036 &feature_spm,
2032 &feature_sram,
20372033 &feature_addsubiw,
2038 &feature_ijmpcall,
2039 &feature_break,
20402034 &feature_movw,
2035 &feature_break,
2036 &feature_ijmpcall,
2037 &feature_lpmx,
2038 &feature_jmpcall,
2039 &feature_spm,
2040 &feature_mul,
20412041 },
20422042};
20432043
......@@ -2045,15 +2045,15 @@ pub const cpu_atmega48 = Cpu{
20452045 .name = "atmega48",
20462046 .llvm_name = "atmega48",
20472047 .dependencies = &[_]*const Feature {
2048 &feature_sram,
2049 &feature_mul,
20502048 &feature_lpm,
2051 &feature_lpmx,
2052 &feature_spm,
2049 &feature_sram,
20532050 &feature_addsubiw,
2054 &feature_ijmpcall,
2055 &feature_break,
20562051 &feature_movw,
2052 &feature_break,
2053 &feature_ijmpcall,
2054 &feature_lpmx,
2055 &feature_spm,
2056 &feature_mul,
20572057 },
20582058};
20592059
......@@ -2061,15 +2061,15 @@ pub const cpu_atmega48a = Cpu{
20612061 .name = "atmega48a",
20622062 .llvm_name = "atmega48a",
20632063 .dependencies = &[_]*const Feature {
2064 &feature_sram,
2065 &feature_mul,
20662064 &feature_lpm,
2067 &feature_lpmx,
2068 &feature_spm,
2065 &feature_sram,
20692066 &feature_addsubiw,
2070 &feature_ijmpcall,
2071 &feature_break,
20722067 &feature_movw,
2068 &feature_break,
2069 &feature_ijmpcall,
2070 &feature_lpmx,
2071 &feature_spm,
2072 &feature_mul,
20732073 },
20742074};
20752075
......@@ -2077,15 +2077,15 @@ pub const cpu_atmega48p = Cpu{
20772077 .name = "atmega48p",
20782078 .llvm_name = "atmega48p",
20792079 .dependencies = &[_]*const Feature {
2080 &feature_sram,
2081 &feature_mul,
20822080 &feature_lpm,
2083 &feature_lpmx,
2084 &feature_spm,
2081 &feature_sram,
20852082 &feature_addsubiw,
2086 &feature_ijmpcall,
2087 &feature_break,
20882083 &feature_movw,
2084 &feature_break,
2085 &feature_ijmpcall,
2086 &feature_lpmx,
2087 &feature_spm,
2088 &feature_mul,
20892089 },
20902090};
20912091
......@@ -2093,15 +2093,15 @@ pub const cpu_atmega48pa = Cpu{
20932093 .name = "atmega48pa",
20942094 .llvm_name = "atmega48pa",
20952095 .dependencies = &[_]*const Feature {
2096 &feature_sram,
2097 &feature_mul,
20982096 &feature_lpm,
2099 &feature_lpmx,
2100 &feature_spm,
2097 &feature_sram,
21012098 &feature_addsubiw,
2102 &feature_ijmpcall,
2103 &feature_break,
21042099 &feature_movw,
2100 &feature_break,
2101 &feature_ijmpcall,
2102 &feature_lpmx,
2103 &feature_spm,
2104 &feature_mul,
21052105 },
21062106};
21072107
......@@ -2109,16 +2109,16 @@ pub const cpu_atmega64 = Cpu{
21092109 .name = "atmega64",
21102110 .llvm_name = "atmega64",
21112111 .dependencies = &[_]*const Feature {
2112 &feature_sram,
2113 &feature_jmpcall,
2114 &feature_mul,
21152112 &feature_lpm,
2116 &feature_lpmx,
2117 &feature_spm,
2113 &feature_sram,
21182114 &feature_addsubiw,
2119 &feature_ijmpcall,
2120 &feature_break,
21212115 &feature_movw,
2116 &feature_break,
2117 &feature_ijmpcall,
2118 &feature_lpmx,
2119 &feature_jmpcall,
2120 &feature_spm,
2121 &feature_mul,
21222122 },
21232123};
21242124
......@@ -2126,16 +2126,16 @@ pub const cpu_atmega640 = Cpu{
21262126 .name = "atmega640",
21272127 .llvm_name = "atmega640",
21282128 .dependencies = &[_]*const Feature {
2129 &feature_sram,
2130 &feature_jmpcall,
2131 &feature_mul,
21322129 &feature_lpm,
2133 &feature_lpmx,
2134 &feature_spm,
2130 &feature_sram,
21352131 &feature_addsubiw,
2136 &feature_ijmpcall,
2137 &feature_break,
21382132 &feature_movw,
2133 &feature_break,
2134 &feature_ijmpcall,
2135 &feature_lpmx,
2136 &feature_jmpcall,
2137 &feature_spm,
2138 &feature_mul,
21392139 },
21402140};
21412141
......@@ -2143,16 +2143,16 @@ pub const cpu_atmega644 = Cpu{
21432143 .name = "atmega644",
21442144 .llvm_name = "atmega644",
21452145 .dependencies = &[_]*const Feature {
2146 &feature_sram,
2147 &feature_jmpcall,
2148 &feature_mul,
21492146 &feature_lpm,
2150 &feature_lpmx,
2151 &feature_spm,
2147 &feature_sram,
21522148 &feature_addsubiw,
2153 &feature_ijmpcall,
2154 &feature_break,
21552149 &feature_movw,
2150 &feature_break,
2151 &feature_ijmpcall,
2152 &feature_lpmx,
2153 &feature_jmpcall,
2154 &feature_spm,
2155 &feature_mul,
21562156 },
21572157};
21582158
......@@ -2160,16 +2160,16 @@ pub const cpu_atmega644a = Cpu{
21602160 .name = "atmega644a",
21612161 .llvm_name = "atmega644a",
21622162 .dependencies = &[_]*const Feature {
2163 &feature_sram,
2164 &feature_jmpcall,
2165 &feature_mul,
21662163 &feature_lpm,
2167 &feature_lpmx,
2168 &feature_spm,
2164 &feature_sram,
21692165 &feature_addsubiw,
2170 &feature_ijmpcall,
2171 &feature_break,
21722166 &feature_movw,
2167 &feature_break,
2168 &feature_ijmpcall,
2169 &feature_lpmx,
2170 &feature_jmpcall,
2171 &feature_spm,
2172 &feature_mul,
21732173 },
21742174};
21752175
......@@ -2177,16 +2177,16 @@ pub const cpu_atmega644p = Cpu{
21772177 .name = "atmega644p",
21782178 .llvm_name = "atmega644p",
21792179 .dependencies = &[_]*const Feature {
2180 &feature_sram,
2181 &feature_jmpcall,
2182 &feature_mul,
21832180 &feature_lpm,
2184 &feature_lpmx,
2185 &feature_spm,
2181 &feature_sram,
21862182 &feature_addsubiw,
2187 &feature_ijmpcall,
2188 &feature_break,
21892183 &feature_movw,
2184 &feature_break,
2185 &feature_ijmpcall,
2186 &feature_lpmx,
2187 &feature_jmpcall,
2188 &feature_spm,
2189 &feature_mul,
21902190 },
21912191};
21922192
......@@ -2194,16 +2194,16 @@ pub const cpu_atmega644pa = Cpu{
21942194 .name = "atmega644pa",
21952195 .llvm_name = "atmega644pa",
21962196 .dependencies = &[_]*const Feature {
2197 &feature_sram,
2198 &feature_jmpcall,
2199 &feature_mul,
22002197 &feature_lpm,
2201 &feature_lpmx,
2202 &feature_spm,
2198 &feature_sram,
22032199 &feature_addsubiw,
2204 &feature_ijmpcall,
2205 &feature_break,
22062200 &feature_movw,
2201 &feature_break,
2202 &feature_ijmpcall,
2203 &feature_lpmx,
2204 &feature_jmpcall,
2205 &feature_spm,
2206 &feature_mul,
22072207 },
22082208};
22092209
......@@ -2211,16 +2211,16 @@ pub const cpu_atmega644rfr2 = Cpu{
22112211 .name = "atmega644rfr2",
22122212 .llvm_name = "atmega644rfr2",
22132213 .dependencies = &[_]*const Feature {
2214 &feature_sram,
2215 &feature_jmpcall,
2216 &feature_mul,
22172214 &feature_lpm,
2218 &feature_lpmx,
2219 &feature_spm,
2215 &feature_sram,
22202216 &feature_addsubiw,
2221 &feature_ijmpcall,
2222 &feature_break,
22232217 &feature_movw,
2218 &feature_break,
2219 &feature_ijmpcall,
2220 &feature_lpmx,
2221 &feature_jmpcall,
2222 &feature_spm,
2223 &feature_mul,
22242224 },
22252225};
22262226
......@@ -2228,16 +2228,16 @@ pub const cpu_atmega645 = Cpu{
22282228 .name = "atmega645",
22292229 .llvm_name = "atmega645",
22302230 .dependencies = &[_]*const Feature {
2231 &feature_sram,
2232 &feature_jmpcall,
2233 &feature_mul,
22342231 &feature_lpm,
2235 &feature_lpmx,
2236 &feature_spm,
2232 &feature_sram,
22372233 &feature_addsubiw,
2238 &feature_ijmpcall,
2239 &feature_break,
22402234 &feature_movw,
2235 &feature_break,
2236 &feature_ijmpcall,
2237 &feature_lpmx,
2238 &feature_jmpcall,
2239 &feature_spm,
2240 &feature_mul,
22412241 },
22422242};
22432243
......@@ -2245,16 +2245,16 @@ pub const cpu_atmega6450 = Cpu{
22452245 .name = "atmega6450",
22462246 .llvm_name = "atmega6450",
22472247 .dependencies = &[_]*const Feature {
2248 &feature_sram,
2249 &feature_jmpcall,
2250 &feature_mul,
22512248 &feature_lpm,
2252 &feature_lpmx,
2253 &feature_spm,
2249 &feature_sram,
22542250 &feature_addsubiw,
2255 &feature_ijmpcall,
2256 &feature_break,
22572251 &feature_movw,
2252 &feature_break,
2253 &feature_ijmpcall,
2254 &feature_lpmx,
2255 &feature_jmpcall,
2256 &feature_spm,
2257 &feature_mul,
22582258 },
22592259};
22602260
......@@ -2262,16 +2262,16 @@ pub const cpu_atmega6450a = Cpu{
22622262 .name = "atmega6450a",
22632263 .llvm_name = "atmega6450a",
22642264 .dependencies = &[_]*const Feature {
2265 &feature_sram,
2266 &feature_jmpcall,
2267 &feature_mul,
22682265 &feature_lpm,
2269 &feature_lpmx,
2270 &feature_spm,
2266 &feature_sram,
22712267 &feature_addsubiw,
2272 &feature_ijmpcall,
2273 &feature_break,
22742268 &feature_movw,
2269 &feature_break,
2270 &feature_ijmpcall,
2271 &feature_lpmx,
2272 &feature_jmpcall,
2273 &feature_spm,
2274 &feature_mul,
22752275 },
22762276};
22772277
......@@ -2279,16 +2279,16 @@ pub const cpu_atmega6450p = Cpu{
22792279 .name = "atmega6450p",
22802280 .llvm_name = "atmega6450p",
22812281 .dependencies = &[_]*const Feature {
2282 &feature_sram,
2283 &feature_jmpcall,
2284 &feature_mul,
22852282 &feature_lpm,
2286 &feature_lpmx,
2287 &feature_spm,
2283 &feature_sram,
22882284 &feature_addsubiw,
2289 &feature_ijmpcall,
2290 &feature_break,
22912285 &feature_movw,
2286 &feature_break,
2287 &feature_ijmpcall,
2288 &feature_lpmx,
2289 &feature_jmpcall,
2290 &feature_spm,
2291 &feature_mul,
22922292 },
22932293};
22942294
......@@ -2296,16 +2296,16 @@ pub const cpu_atmega645a = Cpu{
22962296 .name = "atmega645a",
22972297 .llvm_name = "atmega645a",
22982298 .dependencies = &[_]*const Feature {
2299 &feature_sram,
2300 &feature_jmpcall,
2301 &feature_mul,
23022299 &feature_lpm,
2303 &feature_lpmx,
2304 &feature_spm,
2300 &feature_sram,
23052301 &feature_addsubiw,
2306 &feature_ijmpcall,
2307 &feature_break,
23082302 &feature_movw,
2303 &feature_break,
2304 &feature_ijmpcall,
2305 &feature_lpmx,
2306 &feature_jmpcall,
2307 &feature_spm,
2308 &feature_mul,
23092309 },
23102310};
23112311
......@@ -2313,16 +2313,16 @@ pub const cpu_atmega645p = Cpu{
23132313 .name = "atmega645p",
23142314 .llvm_name = "atmega645p",
23152315 .dependencies = &[_]*const Feature {
2316 &feature_sram,
2317 &feature_jmpcall,
2318 &feature_mul,
23192316 &feature_lpm,
2320 &feature_lpmx,
2321 &feature_spm,
2317 &feature_sram,
23222318 &feature_addsubiw,
2323 &feature_ijmpcall,
2324 &feature_break,
23252319 &feature_movw,
2320 &feature_break,
2321 &feature_ijmpcall,
2322 &feature_lpmx,
2323 &feature_jmpcall,
2324 &feature_spm,
2325 &feature_mul,
23262326 },
23272327};
23282328
......@@ -2330,16 +2330,16 @@ pub const cpu_atmega649 = Cpu{
23302330 .name = "atmega649",
23312331 .llvm_name = "atmega649",
23322332 .dependencies = &[_]*const Feature {
2333 &feature_sram,
2334 &feature_jmpcall,
2335 &feature_mul,
23362333 &feature_lpm,
2337 &feature_lpmx,
2338 &feature_spm,
2334 &feature_sram,
23392335 &feature_addsubiw,
2340 &feature_ijmpcall,
2341 &feature_break,
23422336 &feature_movw,
2337 &feature_break,
2338 &feature_ijmpcall,
2339 &feature_lpmx,
2340 &feature_jmpcall,
2341 &feature_spm,
2342 &feature_mul,
23432343 },
23442344};
23452345
......@@ -2347,16 +2347,16 @@ pub const cpu_atmega6490 = Cpu{
23472347 .name = "atmega6490",
23482348 .llvm_name = "atmega6490",
23492349 .dependencies = &[_]*const Feature {
2350 &feature_sram,
2351 &feature_jmpcall,
2352 &feature_mul,
23532350 &feature_lpm,
2354 &feature_lpmx,
2355 &feature_spm,
2351 &feature_sram,
23562352 &feature_addsubiw,
2357 &feature_ijmpcall,
2358 &feature_break,
23592353 &feature_movw,
2354 &feature_break,
2355 &feature_ijmpcall,
2356 &feature_lpmx,
2357 &feature_jmpcall,
2358 &feature_spm,
2359 &feature_mul,
23602360 },
23612361};
23622362
......@@ -2364,16 +2364,16 @@ pub const cpu_atmega6490a = Cpu{
23642364 .name = "atmega6490a",
23652365 .llvm_name = "atmega6490a",
23662366 .dependencies = &[_]*const Feature {
2367 &feature_sram,
2368 &feature_jmpcall,
2369 &feature_mul,
23702367 &feature_lpm,
2371 &feature_lpmx,
2372 &feature_spm,
2368 &feature_sram,
23732369 &feature_addsubiw,
2374 &feature_ijmpcall,
2375 &feature_break,
23762370 &feature_movw,
2371 &feature_break,
2372 &feature_ijmpcall,
2373 &feature_lpmx,
2374 &feature_jmpcall,
2375 &feature_spm,
2376 &feature_mul,
23772377 },
23782378};
23792379
......@@ -2381,16 +2381,16 @@ pub const cpu_atmega6490p = Cpu{
23812381 .name = "atmega6490p",
23822382 .llvm_name = "atmega6490p",
23832383 .dependencies = &[_]*const Feature {
2384 &feature_sram,
2385 &feature_jmpcall,
2386 &feature_mul,
23872384 &feature_lpm,
2388 &feature_lpmx,
2389 &feature_spm,
2385 &feature_sram,
23902386 &feature_addsubiw,
2391 &feature_ijmpcall,
2392 &feature_break,
23932387 &feature_movw,
2388 &feature_break,
2389 &feature_ijmpcall,
2390 &feature_lpmx,
2391 &feature_jmpcall,
2392 &feature_spm,
2393 &feature_mul,
23942394 },
23952395};
23962396
......@@ -2398,16 +2398,16 @@ pub const cpu_atmega649a = Cpu{
23982398 .name = "atmega649a",
23992399 .llvm_name = "atmega649a",
24002400 .dependencies = &[_]*const Feature {
2401 &feature_sram,
2402 &feature_jmpcall,
2403 &feature_mul,
24042401 &feature_lpm,
2405 &feature_lpmx,
2406 &feature_spm,
2402 &feature_sram,
24072403 &feature_addsubiw,
2408 &feature_ijmpcall,
2409 &feature_break,
24102404 &feature_movw,
2405 &feature_break,
2406 &feature_ijmpcall,
2407 &feature_lpmx,
2408 &feature_jmpcall,
2409 &feature_spm,
2410 &feature_mul,
24112411 },
24122412};
24132413
......@@ -2415,16 +2415,16 @@ pub const cpu_atmega649p = Cpu{
24152415 .name = "atmega649p",
24162416 .llvm_name = "atmega649p",
24172417 .dependencies = &[_]*const Feature {
2418 &feature_sram,
2419 &feature_jmpcall,
2420 &feature_mul,
24212418 &feature_lpm,
2422 &feature_lpmx,
2423 &feature_spm,
2419 &feature_sram,
24242420 &feature_addsubiw,
2425 &feature_ijmpcall,
2426 &feature_break,
24272421 &feature_movw,
2422 &feature_break,
2423 &feature_ijmpcall,
2424 &feature_lpmx,
2425 &feature_jmpcall,
2426 &feature_spm,
2427 &feature_mul,
24282428 },
24292429};
24302430
......@@ -2432,16 +2432,16 @@ pub const cpu_atmega64a = Cpu{
24322432 .name = "atmega64a",
24332433 .llvm_name = "atmega64a",
24342434 .dependencies = &[_]*const Feature {
2435 &feature_sram,
2436 &feature_jmpcall,
2437 &feature_mul,
24382435 &feature_lpm,
2439 &feature_lpmx,
2440 &feature_spm,
2436 &feature_sram,
24412437 &feature_addsubiw,
2442 &feature_ijmpcall,
2443 &feature_break,
24442438 &feature_movw,
2439 &feature_break,
2440 &feature_ijmpcall,
2441 &feature_lpmx,
2442 &feature_jmpcall,
2443 &feature_spm,
2444 &feature_mul,
24452445 },
24462446};
24472447
......@@ -2449,16 +2449,16 @@ pub const cpu_atmega64c1 = Cpu{
24492449 .name = "atmega64c1",
24502450 .llvm_name = "atmega64c1",
24512451 .dependencies = &[_]*const Feature {
2452 &feature_sram,
2453 &feature_jmpcall,
2454 &feature_mul,
24552452 &feature_lpm,
2456 &feature_lpmx,
2457 &feature_spm,
2453 &feature_sram,
24582454 &feature_addsubiw,
2459 &feature_ijmpcall,
2460 &feature_break,
24612455 &feature_movw,
2456 &feature_break,
2457 &feature_ijmpcall,
2458 &feature_lpmx,
2459 &feature_jmpcall,
2460 &feature_spm,
2461 &feature_mul,
24622462 },
24632463};
24642464
......@@ -2466,16 +2466,16 @@ pub const cpu_atmega64hve = Cpu{
24662466 .name = "atmega64hve",
24672467 .llvm_name = "atmega64hve",
24682468 .dependencies = &[_]*const Feature {
2469 &feature_sram,
2470 &feature_jmpcall,
2471 &feature_mul,
24722469 &feature_lpm,
2473 &feature_lpmx,
2474 &feature_spm,
2470 &feature_sram,
24752471 &feature_addsubiw,
2476 &feature_ijmpcall,
2477 &feature_break,
24782472 &feature_movw,
2473 &feature_break,
2474 &feature_ijmpcall,
2475 &feature_lpmx,
2476 &feature_jmpcall,
2477 &feature_spm,
2478 &feature_mul,
24792479 },
24802480};
24812481
......@@ -2483,16 +2483,16 @@ pub const cpu_atmega64m1 = Cpu{
24832483 .name = "atmega64m1",
24842484 .llvm_name = "atmega64m1",
24852485 .dependencies = &[_]*const Feature {
2486 &feature_sram,
2487 &feature_jmpcall,
2488 &feature_mul,
24892486 &feature_lpm,
2490 &feature_lpmx,
2491 &feature_spm,
2487 &feature_sram,
24922488 &feature_addsubiw,
2493 &feature_ijmpcall,
2494 &feature_break,
24952489 &feature_movw,
2490 &feature_break,
2491 &feature_ijmpcall,
2492 &feature_lpmx,
2493 &feature_jmpcall,
2494 &feature_spm,
2495 &feature_mul,
24962496 },
24972497};
24982498
......@@ -2500,16 +2500,16 @@ pub const cpu_atmega64rfr2 = Cpu{
25002500 .name = "atmega64rfr2",
25012501 .llvm_name = "atmega64rfr2",
25022502 .dependencies = &[_]*const Feature {
2503 &feature_sram,
2504 &feature_jmpcall,
2505 &feature_mul,
25062503 &feature_lpm,
2507 &feature_lpmx,
2508 &feature_spm,
2504 &feature_sram,
25092505 &feature_addsubiw,
2510 &feature_ijmpcall,
2511 &feature_break,
25122506 &feature_movw,
2507 &feature_break,
2508 &feature_ijmpcall,
2509 &feature_lpmx,
2510 &feature_jmpcall,
2511 &feature_spm,
2512 &feature_mul,
25132513 },
25142514};
25152515
......@@ -2517,15 +2517,15 @@ pub const cpu_atmega8 = Cpu{
25172517 .name = "atmega8",
25182518 .llvm_name = "atmega8",
25192519 .dependencies = &[_]*const Feature {
2520 &feature_sram,
2521 &feature_mul,
25222520 &feature_lpm,
2523 &feature_lpmx,
2524 &feature_spm,
2521 &feature_sram,
25252522 &feature_addsubiw,
2526 &feature_ijmpcall,
2527 &feature_break,
25282523 &feature_movw,
2524 &feature_break,
2525 &feature_ijmpcall,
2526 &feature_lpmx,
2527 &feature_spm,
2528 &feature_mul,
25292529 },
25302530};
25312531
......@@ -2533,8 +2533,8 @@ pub const cpu_atmega8515 = Cpu{
25332533 .name = "atmega8515",
25342534 .llvm_name = "atmega8515",
25352535 .dependencies = &[_]*const Feature {
2536 &feature_sram,
25372536 &feature_lpm,
2537 &feature_sram,
25382538 &feature_addsubiw,
25392539 &feature_ijmpcall,
25402540 &feature_lpmx,
......@@ -2548,8 +2548,8 @@ pub const cpu_atmega8535 = Cpu{
25482548 .name = "atmega8535",
25492549 .llvm_name = "atmega8535",
25502550 .dependencies = &[_]*const Feature {
2551 &feature_sram,
25522551 &feature_lpm,
2552 &feature_sram,
25532553 &feature_addsubiw,
25542554 &feature_ijmpcall,
25552555 &feature_lpmx,
......@@ -2563,15 +2563,15 @@ pub const cpu_atmega88 = Cpu{
25632563 .name = "atmega88",
25642564 .llvm_name = "atmega88",
25652565 .dependencies = &[_]*const Feature {
2566 &feature_sram,
2567 &feature_mul,
25682566 &feature_lpm,
2569 &feature_lpmx,
2570 &feature_spm,
2567 &feature_sram,
25712568 &feature_addsubiw,
2572 &feature_ijmpcall,
2573 &feature_break,
25742569 &feature_movw,
2570 &feature_break,
2571 &feature_ijmpcall,
2572 &feature_lpmx,
2573 &feature_spm,
2574 &feature_mul,
25752575 },
25762576};
25772577
......@@ -2579,15 +2579,15 @@ pub const cpu_atmega88a = Cpu{
25792579 .name = "atmega88a",
25802580 .llvm_name = "atmega88a",
25812581 .dependencies = &[_]*const Feature {
2582 &feature_sram,
2583 &feature_mul,
25842582 &feature_lpm,
2585 &feature_lpmx,
2586 &feature_spm,
2583 &feature_sram,
25872584 &feature_addsubiw,
2588 &feature_ijmpcall,
2589 &feature_break,
25902585 &feature_movw,
2586 &feature_break,
2587 &feature_ijmpcall,
2588 &feature_lpmx,
2589 &feature_spm,
2590 &feature_mul,
25912591 },
25922592};
25932593
......@@ -2595,15 +2595,15 @@ pub const cpu_atmega88p = Cpu{
25952595 .name = "atmega88p",
25962596 .llvm_name = "atmega88p",
25972597 .dependencies = &[_]*const Feature {
2598 &feature_sram,
2599 &feature_mul,
26002598 &feature_lpm,
2601 &feature_lpmx,
2602 &feature_spm,
2599 &feature_sram,
26032600 &feature_addsubiw,
2604 &feature_ijmpcall,
2605 &feature_break,
26062601 &feature_movw,
2602 &feature_break,
2603 &feature_ijmpcall,
2604 &feature_lpmx,
2605 &feature_spm,
2606 &feature_mul,
26072607 },
26082608};
26092609
......@@ -2611,15 +2611,15 @@ pub const cpu_atmega88pa = Cpu{
26112611 .name = "atmega88pa",
26122612 .llvm_name = "atmega88pa",
26132613 .dependencies = &[_]*const Feature {
2614 &feature_sram,
2615 &feature_mul,
26162614 &feature_lpm,
2617 &feature_lpmx,
2618 &feature_spm,
2615 &feature_sram,
26192616 &feature_addsubiw,
2620 &feature_ijmpcall,
2621 &feature_break,
26222617 &feature_movw,
2618 &feature_break,
2619 &feature_ijmpcall,
2620 &feature_lpmx,
2621 &feature_spm,
2622 &feature_mul,
26232623 },
26242624};
26252625
......@@ -2627,15 +2627,15 @@ pub const cpu_atmega8a = Cpu{
26272627 .name = "atmega8a",
26282628 .llvm_name = "atmega8a",
26292629 .dependencies = &[_]*const Feature {
2630 &feature_sram,
2631 &feature_mul,
26322630 &feature_lpm,
2633 &feature_lpmx,
2634 &feature_spm,
2631 &feature_sram,
26352632 &feature_addsubiw,
2636 &feature_ijmpcall,
2637 &feature_break,
26382633 &feature_movw,
2634 &feature_break,
2635 &feature_ijmpcall,
2636 &feature_lpmx,
2637 &feature_spm,
2638 &feature_mul,
26392639 },
26402640};
26412641
......@@ -2643,15 +2643,15 @@ pub const cpu_atmega8hva = Cpu{
26432643 .name = "atmega8hva",
26442644 .llvm_name = "atmega8hva",
26452645 .dependencies = &[_]*const Feature {
2646 &feature_sram,
2647 &feature_mul,
26482646 &feature_lpm,
2649 &feature_lpmx,
2650 &feature_spm,
2647 &feature_sram,
26512648 &feature_addsubiw,
2652 &feature_ijmpcall,
2653 &feature_break,
26542649 &feature_movw,
2650 &feature_break,
2651 &feature_ijmpcall,
2652 &feature_lpmx,
2653 &feature_spm,
2654 &feature_mul,
26552655 },
26562656};
26572657
......@@ -2659,15 +2659,15 @@ pub const cpu_atmega8u2 = Cpu{
26592659 .name = "atmega8u2",
26602660 .llvm_name = "atmega8u2",
26612661 .dependencies = &[_]*const Feature {
2662 &feature_sram,
2663 &feature_jmpcall,
26642662 &feature_lpm,
2665 &feature_lpmx,
2666 &feature_spm,
2663 &feature_sram,
26672664 &feature_addsubiw,
2668 &feature_ijmpcall,
2669 &feature_break,
26702665 &feature_movw,
2666 &feature_break,
2667 &feature_ijmpcall,
2668 &feature_lpmx,
2669 &feature_jmpcall,
2670 &feature_spm,
26712671 },
26722672};
26732673
......@@ -2676,8 +2676,8 @@ pub const cpu_attiny10 = Cpu{
26762676 .llvm_name = "attiny10",
26772677 .dependencies = &[_]*const Feature {
26782678 &feature_sram,
2679 &feature_tinyencoding,
26802679 &feature_break,
2680 &feature_tinyencoding,
26812681 },
26822682};
26832683
......@@ -2686,8 +2686,8 @@ pub const cpu_attiny102 = Cpu{
26862686 .llvm_name = "attiny102",
26872687 .dependencies = &[_]*const Feature {
26882688 &feature_sram,
2689 &feature_tinyencoding,
26902689 &feature_break,
2690 &feature_tinyencoding,
26912691 },
26922692};
26932693
......@@ -2696,8 +2696,8 @@ pub const cpu_attiny104 = Cpu{
26962696 .llvm_name = "attiny104",
26972697 .dependencies = &[_]*const Feature {
26982698 &feature_sram,
2699 &feature_tinyencoding,
27002699 &feature_break,
2700 &feature_tinyencoding,
27012701 },
27022702};
27032703
......@@ -2721,14 +2721,14 @@ pub const cpu_attiny13 = Cpu{
27212721 .name = "attiny13",
27222722 .llvm_name = "attiny13",
27232723 .dependencies = &[_]*const Feature {
2724 &feature_sram,
27252724 &feature_lpm,
2726 &feature_lpmx,
2727 &feature_spm,
2725 &feature_sram,
27282726 &feature_addsubiw,
2729 &feature_ijmpcall,
2730 &feature_break,
27312727 &feature_movw,
2728 &feature_break,
2729 &feature_ijmpcall,
2730 &feature_lpmx,
2731 &feature_spm,
27322732 },
27332733};
27342734
......@@ -2736,14 +2736,14 @@ pub const cpu_attiny13a = Cpu{
27362736 .name = "attiny13a",
27372737 .llvm_name = "attiny13a",
27382738 .dependencies = &[_]*const Feature {
2739 &feature_sram,
27402739 &feature_lpm,
2741 &feature_lpmx,
2742 &feature_spm,
2740 &feature_sram,
27432741 &feature_addsubiw,
2744 &feature_ijmpcall,
2745 &feature_break,
27462742 &feature_movw,
2743 &feature_break,
2744 &feature_ijmpcall,
2745 &feature_lpmx,
2746 &feature_spm,
27472747 },
27482748};
27492749
......@@ -2759,15 +2759,15 @@ pub const cpu_attiny1634 = Cpu{
27592759 .name = "attiny1634",
27602760 .llvm_name = "attiny1634",
27612761 .dependencies = &[_]*const Feature {
2762 &feature_sram,
2763 &feature_jmpcall,
27642762 &feature_lpm,
2765 &feature_lpmx,
2766 &feature_spm,
2763 &feature_sram,
27672764 &feature_addsubiw,
2768 &feature_ijmpcall,
2769 &feature_break,
27702765 &feature_movw,
2766 &feature_break,
2767 &feature_ijmpcall,
2768 &feature_lpmx,
2769 &feature_jmpcall,
2770 &feature_spm,
27712771 },
27722772};
27732773
......@@ -2775,15 +2775,15 @@ pub const cpu_attiny167 = Cpu{
27752775 .name = "attiny167",
27762776 .llvm_name = "attiny167",
27772777 .dependencies = &[_]*const Feature {
2778 &feature_sram,
2779 &feature_jmpcall,
27802778 &feature_lpm,
2781 &feature_lpmx,
2782 &feature_spm,
2779 &feature_sram,
27832780 &feature_addsubiw,
2784 &feature_ijmpcall,
2785 &feature_break,
27862781 &feature_movw,
2782 &feature_break,
2783 &feature_ijmpcall,
2784 &feature_lpmx,
2785 &feature_jmpcall,
2786 &feature_spm,
27872787 },
27882788};
27892789
......@@ -2792,8 +2792,8 @@ pub const cpu_attiny20 = Cpu{
27922792 .llvm_name = "attiny20",
27932793 .dependencies = &[_]*const Feature {
27942794 &feature_sram,
2795 &feature_tinyencoding,
27962795 &feature_break,
2796 &feature_tinyencoding,
27972797 },
27982798};
27992799
......@@ -2801,8 +2801,8 @@ pub const cpu_attiny22 = Cpu{
28012801 .name = "attiny22",
28022802 .llvm_name = "attiny22",
28032803 .dependencies = &[_]*const Feature {
2804 &feature_sram,
28052804 &feature_lpm,
2805 &feature_sram,
28062806 &feature_addsubiw,
28072807 &feature_ijmpcall,
28082808 },
......@@ -2812,14 +2812,14 @@ pub const cpu_attiny2313 = Cpu{
28122812 .name = "attiny2313",
28132813 .llvm_name = "attiny2313",
28142814 .dependencies = &[_]*const Feature {
2815 &feature_sram,
28162815 &feature_lpm,
2817 &feature_lpmx,
2818 &feature_spm,
2816 &feature_sram,
28192817 &feature_addsubiw,
2820 &feature_ijmpcall,
2821 &feature_break,
28222818 &feature_movw,
2819 &feature_break,
2820 &feature_ijmpcall,
2821 &feature_lpmx,
2822 &feature_spm,
28232823 },
28242824};
28252825
......@@ -2827,14 +2827,14 @@ pub const cpu_attiny2313a = Cpu{
28272827 .name = "attiny2313a",
28282828 .llvm_name = "attiny2313a",
28292829 .dependencies = &[_]*const Feature {
2830 &feature_sram,
28312830 &feature_lpm,
2832 &feature_lpmx,
2833 &feature_spm,
2831 &feature_sram,
28342832 &feature_addsubiw,
2835 &feature_ijmpcall,
2836 &feature_break,
28372833 &feature_movw,
2834 &feature_break,
2835 &feature_ijmpcall,
2836 &feature_lpmx,
2837 &feature_spm,
28382838 },
28392839};
28402840
......@@ -2842,14 +2842,14 @@ pub const cpu_attiny24 = Cpu{
28422842 .name = "attiny24",
28432843 .llvm_name = "attiny24",
28442844 .dependencies = &[_]*const Feature {
2845 &feature_sram,
28462845 &feature_lpm,
2847 &feature_lpmx,
2848 &feature_spm,
2846 &feature_sram,
28492847 &feature_addsubiw,
2850 &feature_ijmpcall,
2851 &feature_break,
28522848 &feature_movw,
2849 &feature_break,
2850 &feature_ijmpcall,
2851 &feature_lpmx,
2852 &feature_spm,
28532853 },
28542854};
28552855
......@@ -2857,14 +2857,14 @@ pub const cpu_attiny24a = Cpu{
28572857 .name = "attiny24a",
28582858 .llvm_name = "attiny24a",
28592859 .dependencies = &[_]*const Feature {
2860 &feature_sram,
28612860 &feature_lpm,
2862 &feature_lpmx,
2863 &feature_spm,
2861 &feature_sram,
28642862 &feature_addsubiw,
2865 &feature_ijmpcall,
2866 &feature_break,
28672863 &feature_movw,
2864 &feature_break,
2865 &feature_ijmpcall,
2866 &feature_lpmx,
2867 &feature_spm,
28682868 },
28692869};
28702870
......@@ -2872,14 +2872,14 @@ pub const cpu_attiny25 = Cpu{
28722872 .name = "attiny25",
28732873 .llvm_name = "attiny25",
28742874 .dependencies = &[_]*const Feature {
2875 &feature_sram,
28762875 &feature_lpm,
2877 &feature_lpmx,
2878 &feature_spm,
2876 &feature_sram,
28792877 &feature_addsubiw,
2880 &feature_ijmpcall,
2881 &feature_break,
28822878 &feature_movw,
2879 &feature_break,
2880 &feature_ijmpcall,
2881 &feature_lpmx,
2882 &feature_spm,
28832883 },
28842884};
28852885
......@@ -2887,8 +2887,8 @@ pub const cpu_attiny26 = Cpu{
28872887 .name = "attiny26",
28882888 .llvm_name = "attiny26",
28892889 .dependencies = &[_]*const Feature {
2890 &feature_sram,
28912890 &feature_lpm,
2891 &feature_sram,
28922892 &feature_addsubiw,
28932893 &feature_ijmpcall,
28942894 &feature_lpmx,
......@@ -2899,14 +2899,14 @@ pub const cpu_attiny261 = Cpu{
28992899 .name = "attiny261",
29002900 .llvm_name = "attiny261",
29012901 .dependencies = &[_]*const Feature {
2902 &feature_sram,
29032902 &feature_lpm,
2904 &feature_lpmx,
2905 &feature_spm,
2903 &feature_sram,
29062904 &feature_addsubiw,
2907 &feature_ijmpcall,
2908 &feature_break,
29092905 &feature_movw,
2906 &feature_break,
2907 &feature_ijmpcall,
2908 &feature_lpmx,
2909 &feature_spm,
29102910 },
29112911};
29122912
......@@ -2914,14 +2914,14 @@ pub const cpu_attiny261a = Cpu{
29142914 .name = "attiny261a",
29152915 .llvm_name = "attiny261a",
29162916 .dependencies = &[_]*const Feature {
2917 &feature_sram,
29182917 &feature_lpm,
2919 &feature_lpmx,
2920 &feature_spm,
2918 &feature_sram,
29212919 &feature_addsubiw,
2922 &feature_ijmpcall,
2923 &feature_break,
29242920 &feature_movw,
2921 &feature_break,
2922 &feature_ijmpcall,
2923 &feature_lpmx,
2924 &feature_spm,
29252925 },
29262926};
29272927
......@@ -2938,8 +2938,8 @@ pub const cpu_attiny4 = Cpu{
29382938 .llvm_name = "attiny4",
29392939 .dependencies = &[_]*const Feature {
29402940 &feature_sram,
2941 &feature_tinyencoding,
29422941 &feature_break,
2942 &feature_tinyencoding,
29432943 },
29442944};
29452945
......@@ -2948,8 +2948,8 @@ pub const cpu_attiny40 = Cpu{
29482948 .llvm_name = "attiny40",
29492949 .dependencies = &[_]*const Feature {
29502950 &feature_sram,
2951 &feature_tinyencoding,
29522951 &feature_break,
2952 &feature_tinyencoding,
29532953 },
29542954};
29552955
......@@ -2957,14 +2957,14 @@ pub const cpu_attiny4313 = Cpu{
29572957 .name = "attiny4313",
29582958 .llvm_name = "attiny4313",
29592959 .dependencies = &[_]*const Feature {
2960 &feature_sram,
29612960 &feature_lpm,
2962 &feature_lpmx,
2963 &feature_spm,
2961 &feature_sram,
29642962 &feature_addsubiw,
2965 &feature_ijmpcall,
2966 &feature_break,
29672963 &feature_movw,
2964 &feature_break,
2965 &feature_ijmpcall,
2966 &feature_lpmx,
2967 &feature_spm,
29682968 },
29692969};
29702970
......@@ -2972,14 +2972,14 @@ pub const cpu_attiny43u = Cpu{
29722972 .name = "attiny43u",
29732973 .llvm_name = "attiny43u",
29742974 .dependencies = &[_]*const Feature {
2975 &feature_sram,
29762975 &feature_lpm,
2977 &feature_lpmx,
2978 &feature_spm,
2976 &feature_sram,
29792977 &feature_addsubiw,
2980 &feature_ijmpcall,
2981 &feature_break,
29822978 &feature_movw,
2979 &feature_break,
2980 &feature_ijmpcall,
2981 &feature_lpmx,
2982 &feature_spm,
29832983 },
29842984};
29852985
......@@ -2987,14 +2987,14 @@ pub const cpu_attiny44 = Cpu{
29872987 .name = "attiny44",
29882988 .llvm_name = "attiny44",
29892989 .dependencies = &[_]*const Feature {
2990 &feature_sram,
29912990 &feature_lpm,
2992 &feature_lpmx,
2993 &feature_spm,
2991 &feature_sram,
29942992 &feature_addsubiw,
2995 &feature_ijmpcall,
2996 &feature_break,
29972993 &feature_movw,
2994 &feature_break,
2995 &feature_ijmpcall,
2996 &feature_lpmx,
2997 &feature_spm,
29982998 },
29992999};
30003000
......@@ -3002,14 +3002,14 @@ pub const cpu_attiny44a = Cpu{
30023002 .name = "attiny44a",
30033003 .llvm_name = "attiny44a",
30043004 .dependencies = &[_]*const Feature {
3005 &feature_sram,
30063005 &feature_lpm,
3007 &feature_lpmx,
3008 &feature_spm,
3006 &feature_sram,
30093007 &feature_addsubiw,
3010 &feature_ijmpcall,
3011 &feature_break,
30123008 &feature_movw,
3009 &feature_break,
3010 &feature_ijmpcall,
3011 &feature_lpmx,
3012 &feature_spm,
30133013 },
30143014};
30153015
......@@ -3017,14 +3017,14 @@ pub const cpu_attiny45 = Cpu{
30173017 .name = "attiny45",
30183018 .llvm_name = "attiny45",
30193019 .dependencies = &[_]*const Feature {
3020 &feature_sram,
30213020 &feature_lpm,
3022 &feature_lpmx,
3023 &feature_spm,
3021 &feature_sram,
30243022 &feature_addsubiw,
3025 &feature_ijmpcall,
3026 &feature_break,
30273023 &feature_movw,
3024 &feature_break,
3025 &feature_ijmpcall,
3026 &feature_lpmx,
3027 &feature_spm,
30283028 },
30293029};
30303030
......@@ -3032,14 +3032,14 @@ pub const cpu_attiny461 = Cpu{
30323032 .name = "attiny461",
30333033 .llvm_name = "attiny461",
30343034 .dependencies = &[_]*const Feature {
3035 &feature_sram,
30363035 &feature_lpm,
3037 &feature_lpmx,
3038 &feature_spm,
3036 &feature_sram,
30393037 &feature_addsubiw,
3040 &feature_ijmpcall,
3041 &feature_break,
30423038 &feature_movw,
3039 &feature_break,
3040 &feature_ijmpcall,
3041 &feature_lpmx,
3042 &feature_spm,
30433043 },
30443044};
30453045
......@@ -3047,14 +3047,14 @@ pub const cpu_attiny461a = Cpu{
30473047 .name = "attiny461a",
30483048 .llvm_name = "attiny461a",
30493049 .dependencies = &[_]*const Feature {
3050 &feature_sram,
30513050 &feature_lpm,
3052 &feature_lpmx,
3053 &feature_spm,
3051 &feature_sram,
30543052 &feature_addsubiw,
3055 &feature_ijmpcall,
3056 &feature_break,
30573053 &feature_movw,
3054 &feature_break,
3055 &feature_ijmpcall,
3056 &feature_lpmx,
3057 &feature_spm,
30583058 },
30593059};
30603060
......@@ -3062,14 +3062,14 @@ pub const cpu_attiny48 = Cpu{
30623062 .name = "attiny48",
30633063 .llvm_name = "attiny48",
30643064 .dependencies = &[_]*const Feature {
3065 &feature_sram,
30663065 &feature_lpm,
3067 &feature_lpmx,
3068 &feature_spm,
3066 &feature_sram,
30693067 &feature_addsubiw,
3070 &feature_ijmpcall,
3071 &feature_break,
30723068 &feature_movw,
3069 &feature_break,
3070 &feature_ijmpcall,
3071 &feature_lpmx,
3072 &feature_spm,
30733073 },
30743074};
30753075
......@@ -3078,8 +3078,8 @@ pub const cpu_attiny5 = Cpu{
30783078 .llvm_name = "attiny5",
30793079 .dependencies = &[_]*const Feature {
30803080 &feature_sram,
3081 &feature_tinyencoding,
30823081 &feature_break,
3082 &feature_tinyencoding,
30833083 },
30843084};
30853085
......@@ -3087,14 +3087,14 @@ pub const cpu_attiny828 = Cpu{
30873087 .name = "attiny828",
30883088 .llvm_name = "attiny828",
30893089 .dependencies = &[_]*const Feature {
3090 &feature_sram,
30913090 &feature_lpm,
3092 &feature_lpmx,
3093 &feature_spm,
3091 &feature_sram,
30943092 &feature_addsubiw,
3095 &feature_ijmpcall,
3096 &feature_break,
30973093 &feature_movw,
3094 &feature_break,
3095 &feature_ijmpcall,
3096 &feature_lpmx,
3097 &feature_spm,
30983098 },
30993099};
31003100
......@@ -3102,14 +3102,14 @@ pub const cpu_attiny84 = Cpu{
31023102 .name = "attiny84",
31033103 .llvm_name = "attiny84",
31043104 .dependencies = &[_]*const Feature {
3105 &feature_sram,
31063105 &feature_lpm,
3107 &feature_lpmx,
3108 &feature_spm,
3106 &feature_sram,
31093107 &feature_addsubiw,
3110 &feature_ijmpcall,
3111 &feature_break,
31123108 &feature_movw,
3109 &feature_break,
3110 &feature_ijmpcall,
3111 &feature_lpmx,
3112 &feature_spm,
31133113 },
31143114};
31153115
......@@ -3117,14 +3117,14 @@ pub const cpu_attiny84a = Cpu{
31173117 .name = "attiny84a",
31183118 .llvm_name = "attiny84a",
31193119 .dependencies = &[_]*const Feature {
3120 &feature_sram,
31213120 &feature_lpm,
3122 &feature_lpmx,
3123 &feature_spm,
3121 &feature_sram,
31243122 &feature_addsubiw,
3125 &feature_ijmpcall,
3126 &feature_break,
31273123 &feature_movw,
3124 &feature_break,
3125 &feature_ijmpcall,
3126 &feature_lpmx,
3127 &feature_spm,
31283128 },
31293129};
31303130
......@@ -3132,14 +3132,14 @@ pub const cpu_attiny85 = Cpu{
31323132 .name = "attiny85",
31333133 .llvm_name = "attiny85",
31343134 .dependencies = &[_]*const Feature {
3135 &feature_sram,
31363135 &feature_lpm,
3137 &feature_lpmx,
3138 &feature_spm,
3136 &feature_sram,
31393137 &feature_addsubiw,
3140 &feature_ijmpcall,
3141 &feature_break,
31423138 &feature_movw,
3139 &feature_break,
3140 &feature_ijmpcall,
3141 &feature_lpmx,
3142 &feature_spm,
31433143 },
31443144};
31453145
......@@ -3147,14 +3147,14 @@ pub const cpu_attiny861 = Cpu{
31473147 .name = "attiny861",
31483148 .llvm_name = "attiny861",
31493149 .dependencies = &[_]*const Feature {
3150 &feature_sram,
31513150 &feature_lpm,
3152 &feature_lpmx,
3153 &feature_spm,
3151 &feature_sram,
31543152 &feature_addsubiw,
3155 &feature_ijmpcall,
3156 &feature_break,
31573153 &feature_movw,
3154 &feature_break,
3155 &feature_ijmpcall,
3156 &feature_lpmx,
3157 &feature_spm,
31583158 },
31593159};
31603160
......@@ -3162,14 +3162,14 @@ pub const cpu_attiny861a = Cpu{
31623162 .name = "attiny861a",
31633163 .llvm_name = "attiny861a",
31643164 .dependencies = &[_]*const Feature {
3165 &feature_sram,
31663165 &feature_lpm,
3167 &feature_lpmx,
3168 &feature_spm,
3166 &feature_sram,
31693167 &feature_addsubiw,
3170 &feature_ijmpcall,
3171 &feature_break,
31723168 &feature_movw,
3169 &feature_break,
3170 &feature_ijmpcall,
3171 &feature_lpmx,
3172 &feature_spm,
31733173 },
31743174};
31753175
......@@ -3177,14 +3177,14 @@ pub const cpu_attiny87 = Cpu{
31773177 .name = "attiny87",
31783178 .llvm_name = "attiny87",
31793179 .dependencies = &[_]*const Feature {
3180 &feature_sram,
31813180 &feature_lpm,
3182 &feature_lpmx,
3183 &feature_spm,
3181 &feature_sram,
31843182 &feature_addsubiw,
3185 &feature_ijmpcall,
3186 &feature_break,
31873183 &feature_movw,
3184 &feature_break,
3185 &feature_ijmpcall,
3186 &feature_lpmx,
3187 &feature_spm,
31883188 },
31893189};
31903190
......@@ -3192,14 +3192,14 @@ pub const cpu_attiny88 = Cpu{
31923192 .name = "attiny88",
31933193 .llvm_name = "attiny88",
31943194 .dependencies = &[_]*const Feature {
3195 &feature_sram,
31963195 &feature_lpm,
3197 &feature_lpmx,
3198 &feature_spm,
3196 &feature_sram,
31993197 &feature_addsubiw,
3200 &feature_ijmpcall,
3201 &feature_break,
32023198 &feature_movw,
3199 &feature_break,
3200 &feature_ijmpcall,
3201 &feature_lpmx,
3202 &feature_spm,
32033203 },
32043204};
32053205
......@@ -3208,8 +3208,8 @@ pub const cpu_attiny9 = Cpu{
32083208 .llvm_name = "attiny9",
32093209 .dependencies = &[_]*const Feature {
32103210 &feature_sram,
3211 &feature_tinyencoding,
32123211 &feature_break,
3212 &feature_tinyencoding,
32133213 },
32143214};
32153215
......@@ -3217,21 +3217,21 @@ pub const cpu_atxmega128a1 = Cpu{
32173217 .name = "atxmega128a1",
32183218 .llvm_name = "atxmega128a1",
32193219 .dependencies = &[_]*const Feature {
3220 &feature_des,
3221 &feature_sram,
32223220 &feature_eijmpcall,
3223 &feature_jmpcall,
3224 &feature_mul,
3221 &feature_lpm,
3222 &feature_sram,
3223 &feature_addsubiw,
3224 &feature_movw,
32253225 &feature_elpm,
3226 &feature_break,
3227 &feature_ijmpcall,
3228 &feature_des,
32263229 &feature_spmx,
3227 &feature_lpm,
32283230 &feature_lpmx,
3231 &feature_jmpcall,
32293232 &feature_spm,
3230 &feature_addsubiw,
3231 &feature_ijmpcall,
32323233 &feature_elpmx,
3233 &feature_break,
3234 &feature_movw,
3234 &feature_mul,
32353235 },
32363236};
32373237
......@@ -3239,22 +3239,22 @@ pub const cpu_atxmega128a1u = Cpu{
32393239 .name = "atxmega128a1u",
32403240 .llvm_name = "atxmega128a1u",
32413241 .dependencies = &[_]*const Feature {
3242 &feature_des,
3242 &feature_eijmpcall,
3243 &feature_lpm,
32433244 &feature_sram,
32443245 &feature_movw,
3245 &feature_jmpcall,
3246 &feature_mul,
3246 &feature_addsubiw,
3247 &feature_rmw,
32473248 &feature_elpm,
3249 &feature_break,
3250 &feature_ijmpcall,
3251 &feature_des,
32483252 &feature_spmx,
3249 &feature_lpm,
32503253 &feature_lpmx,
3254 &feature_jmpcall,
32513255 &feature_spm,
3252 &feature_addsubiw,
3253 &feature_rmw,
3254 &feature_ijmpcall,
3255 &feature_eijmpcall,
3256 &feature_break,
32573256 &feature_elpmx,
3257 &feature_mul,
32583258 },
32593259};
32603260
......@@ -3262,21 +3262,21 @@ pub const cpu_atxmega128a3 = Cpu{
32623262 .name = "atxmega128a3",
32633263 .llvm_name = "atxmega128a3",
32643264 .dependencies = &[_]*const Feature {
3265 &feature_des,
3266 &feature_sram,
32673265 &feature_eijmpcall,
3268 &feature_jmpcall,
3269 &feature_mul,
3266 &feature_lpm,
3267 &feature_sram,
3268 &feature_addsubiw,
3269 &feature_movw,
32703270 &feature_elpm,
3271 &feature_break,
3272 &feature_ijmpcall,
3273 &feature_des,
32713274 &feature_spmx,
3272 &feature_lpm,
32733275 &feature_lpmx,
3276 &feature_jmpcall,
32743277 &feature_spm,
3275 &feature_addsubiw,
3276 &feature_ijmpcall,
32773278 &feature_elpmx,
3278 &feature_break,
3279 &feature_movw,
3279 &feature_mul,
32803280 },
32813281};
32823282
......@@ -3284,22 +3284,22 @@ pub const cpu_atxmega128a3u = Cpu{
32843284 .name = "atxmega128a3u",
32853285 .llvm_name = "atxmega128a3u",
32863286 .dependencies = &[_]*const Feature {
3287 &feature_des,
3287 &feature_eijmpcall,
3288 &feature_lpm,
32883289 &feature_sram,
32893290 &feature_movw,
3290 &feature_jmpcall,
3291 &feature_mul,
3291 &feature_addsubiw,
3292 &feature_rmw,
32923293 &feature_elpm,
3294 &feature_break,
3295 &feature_ijmpcall,
3296 &feature_des,
32933297 &feature_spmx,
3294 &feature_lpm,
32953298 &feature_lpmx,
3299 &feature_jmpcall,
32963300 &feature_spm,
3297 &feature_addsubiw,
3298 &feature_rmw,
3299 &feature_ijmpcall,
3300 &feature_eijmpcall,
3301 &feature_break,
33023301 &feature_elpmx,
3302 &feature_mul,
33033303 },
33043304};
33053305
......@@ -3307,22 +3307,22 @@ pub const cpu_atxmega128a4u = Cpu{
33073307 .name = "atxmega128a4u",
33083308 .llvm_name = "atxmega128a4u",
33093309 .dependencies = &[_]*const Feature {
3310 &feature_des,
3310 &feature_eijmpcall,
3311 &feature_lpm,
33113312 &feature_sram,
33123313 &feature_movw,
3313 &feature_jmpcall,
3314 &feature_mul,
3314 &feature_addsubiw,
3315 &feature_rmw,
33153316 &feature_elpm,
3317 &feature_break,
3318 &feature_ijmpcall,
3319 &feature_des,
33163320 &feature_spmx,
3317 &feature_lpm,
33183321 &feature_lpmx,
3322 &feature_jmpcall,
33193323 &feature_spm,
3320 &feature_addsubiw,
3321 &feature_rmw,
3322 &feature_ijmpcall,
3323 &feature_eijmpcall,
3324 &feature_break,
33253324 &feature_elpmx,
3325 &feature_mul,
33263326 },
33273327};
33283328
......@@ -3330,22 +3330,22 @@ pub const cpu_atxmega128b1 = Cpu{
33303330 .name = "atxmega128b1",
33313331 .llvm_name = "atxmega128b1",
33323332 .dependencies = &[_]*const Feature {
3333 &feature_des,
3333 &feature_eijmpcall,
3334 &feature_lpm,
33343335 &feature_sram,
33353336 &feature_movw,
3336 &feature_jmpcall,
3337 &feature_mul,
3337 &feature_addsubiw,
3338 &feature_rmw,
33383339 &feature_elpm,
3340 &feature_break,
3341 &feature_ijmpcall,
3342 &feature_des,
33393343 &feature_spmx,
3340 &feature_lpm,
33413344 &feature_lpmx,
3345 &feature_jmpcall,
33423346 &feature_spm,
3343 &feature_addsubiw,
3344 &feature_rmw,
3345 &feature_ijmpcall,
3346 &feature_eijmpcall,
3347 &feature_break,
33483347 &feature_elpmx,
3348 &feature_mul,
33493349 },
33503350};
33513351
......@@ -3353,22 +3353,22 @@ pub const cpu_atxmega128b3 = Cpu{
33533353 .name = "atxmega128b3",
33543354 .llvm_name = "atxmega128b3",
33553355 .dependencies = &[_]*const Feature {
3356 &feature_des,
3356 &feature_eijmpcall,
3357 &feature_lpm,
33573358 &feature_sram,
33583359 &feature_movw,
3359 &feature_jmpcall,
3360 &feature_mul,
3360 &feature_addsubiw,
3361 &feature_rmw,
33613362 &feature_elpm,
3363 &feature_break,
3364 &feature_ijmpcall,
3365 &feature_des,
33623366 &feature_spmx,
3363 &feature_lpm,
33643367 &feature_lpmx,
3368 &feature_jmpcall,
33653369 &feature_spm,
3366 &feature_addsubiw,
3367 &feature_rmw,
3368 &feature_ijmpcall,
3369 &feature_eijmpcall,
3370 &feature_break,
33713370 &feature_elpmx,
3371 &feature_mul,
33723372 },
33733373};
33743374
......@@ -3376,22 +3376,22 @@ pub const cpu_atxmega128c3 = Cpu{
33763376 .name = "atxmega128c3",
33773377 .llvm_name = "atxmega128c3",
33783378 .dependencies = &[_]*const Feature {
3379 &feature_des,
3379 &feature_eijmpcall,
3380 &feature_lpm,
33803381 &feature_sram,
33813382 &feature_movw,
3382 &feature_jmpcall,
3383 &feature_mul,
3383 &feature_addsubiw,
3384 &feature_rmw,
33843385 &feature_elpm,
3386 &feature_break,
3387 &feature_ijmpcall,
3388 &feature_des,
33853389 &feature_spmx,
3386 &feature_lpm,
33873390 &feature_lpmx,
3391 &feature_jmpcall,
33883392 &feature_spm,
3389 &feature_addsubiw,
3390 &feature_rmw,
3391 &feature_ijmpcall,
3392 &feature_eijmpcall,
3393 &feature_break,
33943393 &feature_elpmx,
3394 &feature_mul,
33953395 },
33963396};
33973397
......@@ -3399,21 +3399,21 @@ pub const cpu_atxmega128d3 = Cpu{
33993399 .name = "atxmega128d3",
34003400 .llvm_name = "atxmega128d3",
34013401 .dependencies = &[_]*const Feature {
3402 &feature_des,
3403 &feature_sram,
34043402 &feature_eijmpcall,
3405 &feature_jmpcall,
3406 &feature_mul,
3403 &feature_lpm,
3404 &feature_sram,
3405 &feature_addsubiw,
3406 &feature_movw,
34073407 &feature_elpm,
3408 &feature_break,
3409 &feature_ijmpcall,
3410 &feature_des,
34083411 &feature_spmx,
3409 &feature_lpm,
34103412 &feature_lpmx,
3413 &feature_jmpcall,
34113414 &feature_spm,
3412 &feature_addsubiw,
3413 &feature_ijmpcall,
34143415 &feature_elpmx,
3415 &feature_break,
3416 &feature_movw,
3416 &feature_mul,
34173417 },
34183418};
34193419
......@@ -3421,21 +3421,21 @@ pub const cpu_atxmega128d4 = Cpu{
34213421 .name = "atxmega128d4",
34223422 .llvm_name = "atxmega128d4",
34233423 .dependencies = &[_]*const Feature {
3424 &feature_des,
3425 &feature_sram,
34263424 &feature_eijmpcall,
3427 &feature_jmpcall,
3428 &feature_mul,
3425 &feature_lpm,
3426 &feature_sram,
3427 &feature_addsubiw,
3428 &feature_movw,
34293429 &feature_elpm,
3430 &feature_break,
3431 &feature_ijmpcall,
3432 &feature_des,
34303433 &feature_spmx,
3431 &feature_lpm,
34323434 &feature_lpmx,
3435 &feature_jmpcall,
34333436 &feature_spm,
3434 &feature_addsubiw,
3435 &feature_ijmpcall,
34363437 &feature_elpmx,
3437 &feature_break,
3438 &feature_movw,
3438 &feature_mul,
34393439 },
34403440};
34413441
......@@ -3443,21 +3443,21 @@ pub const cpu_atxmega16a4 = Cpu{
34433443 .name = "atxmega16a4",
34443444 .llvm_name = "atxmega16a4",
34453445 .dependencies = &[_]*const Feature {
3446 &feature_des,
3447 &feature_sram,
34483446 &feature_eijmpcall,
3449 &feature_jmpcall,
3450 &feature_mul,
3447 &feature_lpm,
3448 &feature_sram,
3449 &feature_addsubiw,
3450 &feature_movw,
34513451 &feature_elpm,
3452 &feature_break,
3453 &feature_ijmpcall,
3454 &feature_des,
34523455 &feature_spmx,
3453 &feature_lpm,
34543456 &feature_lpmx,
3457 &feature_jmpcall,
34553458 &feature_spm,
3456 &feature_addsubiw,
3457 &feature_ijmpcall,
34583459 &feature_elpmx,
3459 &feature_break,
3460 &feature_movw,
3460 &feature_mul,
34613461 },
34623462};
34633463
......@@ -3465,22 +3465,22 @@ pub const cpu_atxmega16a4u = Cpu{
34653465 .name = "atxmega16a4u",
34663466 .llvm_name = "atxmega16a4u",
34673467 .dependencies = &[_]*const Feature {
3468 &feature_des,
3468 &feature_eijmpcall,
3469 &feature_lpm,
34693470 &feature_sram,
34703471 &feature_movw,
3471 &feature_jmpcall,
3472 &feature_mul,
3472 &feature_addsubiw,
3473 &feature_rmw,
34733474 &feature_elpm,
3475 &feature_break,
3476 &feature_ijmpcall,
3477 &feature_des,
34743478 &feature_spmx,
3475 &feature_lpm,
34763479 &feature_lpmx,
3480 &feature_jmpcall,
34773481 &feature_spm,
3478 &feature_addsubiw,
3479 &feature_rmw,
3480 &feature_ijmpcall,
3481 &feature_eijmpcall,
3482 &feature_break,
34833482 &feature_elpmx,
3483 &feature_mul,
34843484 },
34853485};
34863486
......@@ -3488,22 +3488,22 @@ pub const cpu_atxmega16c4 = Cpu{
34883488 .name = "atxmega16c4",
34893489 .llvm_name = "atxmega16c4",
34903490 .dependencies = &[_]*const Feature {
3491 &feature_des,
3491 &feature_eijmpcall,
3492 &feature_lpm,
34923493 &feature_sram,
34933494 &feature_movw,
3494 &feature_jmpcall,
3495 &feature_mul,
3495 &feature_addsubiw,
3496 &feature_rmw,
34963497 &feature_elpm,
3498 &feature_break,
3499 &feature_ijmpcall,
3500 &feature_des,
34973501 &feature_spmx,
3498 &feature_lpm,
34993502 &feature_lpmx,
3503 &feature_jmpcall,
35003504 &feature_spm,
3501 &feature_addsubiw,
3502 &feature_rmw,
3503 &feature_ijmpcall,
3504 &feature_eijmpcall,
3505 &feature_break,
35063505 &feature_elpmx,
3506 &feature_mul,
35073507 },
35083508};
35093509
......@@ -3511,21 +3511,21 @@ pub const cpu_atxmega16d4 = Cpu{
35113511 .name = "atxmega16d4",
35123512 .llvm_name = "atxmega16d4",
35133513 .dependencies = &[_]*const Feature {
3514 &feature_des,
3515 &feature_sram,
35163514 &feature_eijmpcall,
3517 &feature_jmpcall,
3518 &feature_mul,
3515 &feature_lpm,
3516 &feature_sram,
3517 &feature_addsubiw,
3518 &feature_movw,
35193519 &feature_elpm,
3520 &feature_break,
3521 &feature_ijmpcall,
3522 &feature_des,
35203523 &feature_spmx,
3521 &feature_lpm,
35223524 &feature_lpmx,
3525 &feature_jmpcall,
35233526 &feature_spm,
3524 &feature_addsubiw,
3525 &feature_ijmpcall,
35263527 &feature_elpmx,
3527 &feature_break,
3528 &feature_movw,
3528 &feature_mul,
35293529 },
35303530};
35313531
......@@ -3533,21 +3533,21 @@ pub const cpu_atxmega16e5 = Cpu{
35333533 .name = "atxmega16e5",
35343534 .llvm_name = "atxmega16e5",
35353535 .dependencies = &[_]*const Feature {
3536 &feature_des,
3537 &feature_sram,
35383536 &feature_eijmpcall,
3539 &feature_jmpcall,
3540 &feature_mul,
3537 &feature_lpm,
3538 &feature_sram,
3539 &feature_addsubiw,
3540 &feature_movw,
35413541 &feature_elpm,
3542 &feature_break,
3543 &feature_ijmpcall,
3544 &feature_des,
35423545 &feature_spmx,
3543 &feature_lpm,
35443546 &feature_lpmx,
3547 &feature_jmpcall,
35453548 &feature_spm,
3546 &feature_addsubiw,
3547 &feature_ijmpcall,
35483549 &feature_elpmx,
3549 &feature_break,
3550 &feature_movw,
3550 &feature_mul,
35513551 },
35523552};
35533553
......@@ -3555,21 +3555,21 @@ pub const cpu_atxmega192a3 = Cpu{
35553555 .name = "atxmega192a3",
35563556 .llvm_name = "atxmega192a3",
35573557 .dependencies = &[_]*const Feature {
3558 &feature_des,
3559 &feature_sram,
35603558 &feature_eijmpcall,
3561 &feature_jmpcall,
3562 &feature_mul,
3559 &feature_lpm,
3560 &feature_sram,
3561 &feature_addsubiw,
3562 &feature_movw,
35633563 &feature_elpm,
3564 &feature_break,
3565 &feature_ijmpcall,
3566 &feature_des,
35643567 &feature_spmx,
3565 &feature_lpm,
35663568 &feature_lpmx,
3569 &feature_jmpcall,
35673570 &feature_spm,
3568 &feature_addsubiw,
3569 &feature_ijmpcall,
35703571 &feature_elpmx,
3571 &feature_break,
3572 &feature_movw,
3572 &feature_mul,
35733573 },
35743574};
35753575
......@@ -3577,22 +3577,22 @@ pub const cpu_atxmega192a3u = Cpu{
35773577 .name = "atxmega192a3u",
35783578 .llvm_name = "atxmega192a3u",
35793579 .dependencies = &[_]*const Feature {
3580 &feature_des,
3580 &feature_eijmpcall,
3581 &feature_lpm,
35813582 &feature_sram,
35823583 &feature_movw,
3583 &feature_jmpcall,
3584 &feature_mul,
3584 &feature_addsubiw,
3585 &feature_rmw,
35853586 &feature_elpm,
3587 &feature_break,
3588 &feature_ijmpcall,
3589 &feature_des,
35863590 &feature_spmx,
3587 &feature_lpm,
35883591 &feature_lpmx,
3592 &feature_jmpcall,
35893593 &feature_spm,
3590 &feature_addsubiw,
3591 &feature_rmw,
3592 &feature_ijmpcall,
3593 &feature_eijmpcall,
3594 &feature_break,
35953594 &feature_elpmx,
3595 &feature_mul,
35963596 },
35973597};
35983598
......@@ -3600,22 +3600,22 @@ pub const cpu_atxmega192c3 = Cpu{
36003600 .name = "atxmega192c3",
36013601 .llvm_name = "atxmega192c3",
36023602 .dependencies = &[_]*const Feature {
3603 &feature_des,
3603 &feature_eijmpcall,
3604 &feature_lpm,
36043605 &feature_sram,
36053606 &feature_movw,
3606 &feature_jmpcall,
3607 &feature_mul,
3607 &feature_addsubiw,
3608 &feature_rmw,
36083609 &feature_elpm,
3610 &feature_break,
3611 &feature_ijmpcall,
3612 &feature_des,
36093613 &feature_spmx,
3610 &feature_lpm,
36113614 &feature_lpmx,
3615 &feature_jmpcall,
36123616 &feature_spm,
3613 &feature_addsubiw,
3614 &feature_rmw,
3615 &feature_ijmpcall,
3616 &feature_eijmpcall,
3617 &feature_break,
36183617 &feature_elpmx,
3618 &feature_mul,
36193619 },
36203620};
36213621
......@@ -3623,21 +3623,21 @@ pub const cpu_atxmega192d3 = Cpu{
36233623 .name = "atxmega192d3",
36243624 .llvm_name = "atxmega192d3",
36253625 .dependencies = &[_]*const Feature {
3626 &feature_des,
3627 &feature_sram,
36283626 &feature_eijmpcall,
3629 &feature_jmpcall,
3630 &feature_mul,
3627 &feature_lpm,
3628 &feature_sram,
3629 &feature_addsubiw,
3630 &feature_movw,
36313631 &feature_elpm,
3632 &feature_break,
3633 &feature_ijmpcall,
3634 &feature_des,
36323635 &feature_spmx,
3633 &feature_lpm,
36343636 &feature_lpmx,
3637 &feature_jmpcall,
36353638 &feature_spm,
3636 &feature_addsubiw,
3637 &feature_ijmpcall,
36383639 &feature_elpmx,
3639 &feature_break,
3640 &feature_movw,
3640 &feature_mul,
36413641 },
36423642};
36433643
......@@ -3645,21 +3645,21 @@ pub const cpu_atxmega256a3 = Cpu{
36453645 .name = "atxmega256a3",
36463646 .llvm_name = "atxmega256a3",
36473647 .dependencies = &[_]*const Feature {
3648 &feature_des,
3649 &feature_sram,
36503648 &feature_eijmpcall,
3651 &feature_jmpcall,
3652 &feature_mul,
3649 &feature_lpm,
3650 &feature_sram,
3651 &feature_addsubiw,
3652 &feature_movw,
36533653 &feature_elpm,
3654 &feature_break,
3655 &feature_ijmpcall,
3656 &feature_des,
36543657 &feature_spmx,
3655 &feature_lpm,
36563658 &feature_lpmx,
3659 &feature_jmpcall,
36573660 &feature_spm,
3658 &feature_addsubiw,
3659 &feature_ijmpcall,
36603661 &feature_elpmx,
3661 &feature_break,
3662 &feature_movw,
3662 &feature_mul,
36633663 },
36643664};
36653665
......@@ -3667,21 +3667,21 @@ pub const cpu_atxmega256a3b = Cpu{
36673667 .name = "atxmega256a3b",
36683668 .llvm_name = "atxmega256a3b",
36693669 .dependencies = &[_]*const Feature {
3670 &feature_des,
3671 &feature_sram,
36723670 &feature_eijmpcall,
3673 &feature_jmpcall,
3674 &feature_mul,
3671 &feature_lpm,
3672 &feature_sram,
3673 &feature_addsubiw,
3674 &feature_movw,
36753675 &feature_elpm,
3676 &feature_break,
3677 &feature_ijmpcall,
3678 &feature_des,
36763679 &feature_spmx,
3677 &feature_lpm,
36783680 &feature_lpmx,
3681 &feature_jmpcall,
36793682 &feature_spm,
3680 &feature_addsubiw,
3681 &feature_ijmpcall,
36823683 &feature_elpmx,
3683 &feature_break,
3684 &feature_movw,
3684 &feature_mul,
36853685 },
36863686};
36873687
......@@ -3689,22 +3689,22 @@ pub const cpu_atxmega256a3bu = Cpu{
36893689 .name = "atxmega256a3bu",
36903690 .llvm_name = "atxmega256a3bu",
36913691 .dependencies = &[_]*const Feature {
3692 &feature_des,
3692 &feature_eijmpcall,
3693 &feature_lpm,
36933694 &feature_sram,
36943695 &feature_movw,
3695 &feature_jmpcall,
3696 &feature_mul,
3696 &feature_addsubiw,
3697 &feature_rmw,
36973698 &feature_elpm,
3699 &feature_break,
3700 &feature_ijmpcall,
3701 &feature_des,
36983702 &feature_spmx,
3699 &feature_lpm,
37003703 &feature_lpmx,
3704 &feature_jmpcall,
37013705 &feature_spm,
3702 &feature_addsubiw,
3703 &feature_rmw,
3704 &feature_ijmpcall,
3705 &feature_eijmpcall,
3706 &feature_break,
37073706 &feature_elpmx,
3707 &feature_mul,
37083708 },
37093709};
37103710
......@@ -3712,22 +3712,22 @@ pub const cpu_atxmega256a3u = Cpu{
37123712 .name = "atxmega256a3u",
37133713 .llvm_name = "atxmega256a3u",
37143714 .dependencies = &[_]*const Feature {
3715 &feature_des,
3715 &feature_eijmpcall,
3716 &feature_lpm,
37163717 &feature_sram,
37173718 &feature_movw,
3718 &feature_jmpcall,
3719 &feature_mul,
3719 &feature_addsubiw,
3720 &feature_rmw,
37203721 &feature_elpm,
3722 &feature_break,
3723 &feature_ijmpcall,
3724 &feature_des,
37213725 &feature_spmx,
3722 &feature_lpm,
37233726 &feature_lpmx,
3727 &feature_jmpcall,
37243728 &feature_spm,
3725 &feature_addsubiw,
3726 &feature_rmw,
3727 &feature_ijmpcall,
3728 &feature_eijmpcall,
3729 &feature_break,
37303729 &feature_elpmx,
3730 &feature_mul,
37313731 },
37323732};
37333733
......@@ -3735,22 +3735,22 @@ pub const cpu_atxmega256c3 = Cpu{
37353735 .name = "atxmega256c3",
37363736 .llvm_name = "atxmega256c3",
37373737 .dependencies = &[_]*const Feature {
3738 &feature_des,
3738 &feature_eijmpcall,
3739 &feature_lpm,
37393740 &feature_sram,
37403741 &feature_movw,
3741 &feature_jmpcall,
3742 &feature_mul,
3742 &feature_addsubiw,
3743 &feature_rmw,
37433744 &feature_elpm,
3745 &feature_break,
3746 &feature_ijmpcall,
3747 &feature_des,
37443748 &feature_spmx,
3745 &feature_lpm,
37463749 &feature_lpmx,
3750 &feature_jmpcall,
37473751 &feature_spm,
3748 &feature_addsubiw,
3749 &feature_rmw,
3750 &feature_ijmpcall,
3751 &feature_eijmpcall,
3752 &feature_break,
37533752 &feature_elpmx,
3753 &feature_mul,
37543754 },
37553755};
37563756
......@@ -3758,21 +3758,21 @@ pub const cpu_atxmega256d3 = Cpu{
37583758 .name = "atxmega256d3",
37593759 .llvm_name = "atxmega256d3",
37603760 .dependencies = &[_]*const Feature {
3761 &feature_des,
3762 &feature_sram,
37633761 &feature_eijmpcall,
3764 &feature_jmpcall,
3765 &feature_mul,
3762 &feature_lpm,
3763 &feature_sram,
3764 &feature_addsubiw,
3765 &feature_movw,
37663766 &feature_elpm,
3767 &feature_break,
3768 &feature_ijmpcall,
3769 &feature_des,
37673770 &feature_spmx,
3768 &feature_lpm,
37693771 &feature_lpmx,
3772 &feature_jmpcall,
37703773 &feature_spm,
3771 &feature_addsubiw,
3772 &feature_ijmpcall,
37733774 &feature_elpmx,
3774 &feature_break,
3775 &feature_movw,
3775 &feature_mul,
37763776 },
37773777};
37783778
......@@ -3780,21 +3780,21 @@ pub const cpu_atxmega32a4 = Cpu{
37803780 .name = "atxmega32a4",
37813781 .llvm_name = "atxmega32a4",
37823782 .dependencies = &[_]*const Feature {
3783 &feature_des,
3784 &feature_sram,
37853783 &feature_eijmpcall,
3786 &feature_jmpcall,
3787 &feature_mul,
3784 &feature_lpm,
3785 &feature_sram,
3786 &feature_addsubiw,
3787 &feature_movw,
37883788 &feature_elpm,
3789 &feature_break,
3790 &feature_ijmpcall,
3791 &feature_des,
37893792 &feature_spmx,
3790 &feature_lpm,
37913793 &feature_lpmx,
3794 &feature_jmpcall,
37923795 &feature_spm,
3793 &feature_addsubiw,
3794 &feature_ijmpcall,
37953796 &feature_elpmx,
3796 &feature_break,
3797 &feature_movw,
3797 &feature_mul,
37983798 },
37993799};
38003800
......@@ -3802,22 +3802,22 @@ pub const cpu_atxmega32a4u = Cpu{
38023802 .name = "atxmega32a4u",
38033803 .llvm_name = "atxmega32a4u",
38043804 .dependencies = &[_]*const Feature {
3805 &feature_des,
3805 &feature_eijmpcall,
3806 &feature_lpm,
38063807 &feature_sram,
38073808 &feature_movw,
3808 &feature_jmpcall,
3809 &feature_mul,
3809 &feature_addsubiw,
3810 &feature_rmw,
38103811 &feature_elpm,
3812 &feature_break,
3813 &feature_ijmpcall,
3814 &feature_des,
38113815 &feature_spmx,
3812 &feature_lpm,
38133816 &feature_lpmx,
3817 &feature_jmpcall,
38143818 &feature_spm,
3815 &feature_addsubiw,
3816 &feature_rmw,
3817 &feature_ijmpcall,
3818 &feature_eijmpcall,
3819 &feature_break,
38203819 &feature_elpmx,
3820 &feature_mul,
38213821 },
38223822};
38233823
......@@ -3825,22 +3825,22 @@ pub const cpu_atxmega32c4 = Cpu{
38253825 .name = "atxmega32c4",
38263826 .llvm_name = "atxmega32c4",
38273827 .dependencies = &[_]*const Feature {
3828 &feature_des,
3828 &feature_eijmpcall,
3829 &feature_lpm,
38293830 &feature_sram,
38303831 &feature_movw,
3831 &feature_jmpcall,
3832 &feature_mul,
3832 &feature_addsubiw,
3833 &feature_rmw,
38333834 &feature_elpm,
3835 &feature_break,
3836 &feature_ijmpcall,
3837 &feature_des,
38343838 &feature_spmx,
3835 &feature_lpm,
38363839 &feature_lpmx,
3840 &feature_jmpcall,
38373841 &feature_spm,
3838 &feature_addsubiw,
3839 &feature_rmw,
3840 &feature_ijmpcall,
3841 &feature_eijmpcall,
3842 &feature_break,
38433842 &feature_elpmx,
3843 &feature_mul,
38443844 },
38453845};
38463846
......@@ -3848,21 +3848,21 @@ pub const cpu_atxmega32d4 = Cpu{
38483848 .name = "atxmega32d4",
38493849 .llvm_name = "atxmega32d4",
38503850 .dependencies = &[_]*const Feature {
3851 &feature_des,
3852 &feature_sram,
38533851 &feature_eijmpcall,
3854 &feature_jmpcall,
3855 &feature_mul,
3852 &feature_lpm,
3853 &feature_sram,
3854 &feature_addsubiw,
3855 &feature_movw,
38563856 &feature_elpm,
3857 &feature_break,
3858 &feature_ijmpcall,
3859 &feature_des,
38573860 &feature_spmx,
3858 &feature_lpm,
38593861 &feature_lpmx,
3862 &feature_jmpcall,
38603863 &feature_spm,
3861 &feature_addsubiw,
3862 &feature_ijmpcall,
38633864 &feature_elpmx,
3864 &feature_break,
3865 &feature_movw,
3865 &feature_mul,
38663866 },
38673867};
38683868
......@@ -3870,21 +3870,21 @@ pub const cpu_atxmega32e5 = Cpu{
38703870 .name = "atxmega32e5",
38713871 .llvm_name = "atxmega32e5",
38723872 .dependencies = &[_]*const Feature {
3873 &feature_des,
3874 &feature_sram,
38753873 &feature_eijmpcall,
3876 &feature_jmpcall,
3877 &feature_mul,
3874 &feature_lpm,
3875 &feature_sram,
3876 &feature_addsubiw,
3877 &feature_movw,
38783878 &feature_elpm,
3879 &feature_break,
3880 &feature_ijmpcall,
3881 &feature_des,
38793882 &feature_spmx,
3880 &feature_lpm,
38813883 &feature_lpmx,
3884 &feature_jmpcall,
38823885 &feature_spm,
3883 &feature_addsubiw,
3884 &feature_ijmpcall,
38853886 &feature_elpmx,
3886 &feature_break,
3887 &feature_movw,
3887 &feature_mul,
38883888 },
38893889};
38903890
......@@ -3892,21 +3892,21 @@ pub const cpu_atxmega32x1 = Cpu{
38923892 .name = "atxmega32x1",
38933893 .llvm_name = "atxmega32x1",
38943894 .dependencies = &[_]*const Feature {
3895 &feature_des,
3896 &feature_sram,
38973895 &feature_eijmpcall,
3898 &feature_jmpcall,
3899 &feature_mul,
3896 &feature_lpm,
3897 &feature_sram,
3898 &feature_addsubiw,
3899 &feature_movw,
39003900 &feature_elpm,
3901 &feature_break,
3902 &feature_ijmpcall,
3903 &feature_des,
39013904 &feature_spmx,
3902 &feature_lpm,
39033905 &feature_lpmx,
3906 &feature_jmpcall,
39043907 &feature_spm,
3905 &feature_addsubiw,
3906 &feature_ijmpcall,
39073908 &feature_elpmx,
3908 &feature_break,
3909 &feature_movw,
3909 &feature_mul,
39103910 },
39113911};
39123912
......@@ -3914,22 +3914,22 @@ pub const cpu_atxmega384c3 = Cpu{
39143914 .name = "atxmega384c3",
39153915 .llvm_name = "atxmega384c3",
39163916 .dependencies = &[_]*const Feature {
3917 &feature_des,
3917 &feature_eijmpcall,
3918 &feature_lpm,
39183919 &feature_sram,
39193920 &feature_movw,
3920 &feature_jmpcall,
3921 &feature_mul,
3921 &feature_addsubiw,
3922 &feature_rmw,
39223923 &feature_elpm,
3924 &feature_break,
3925 &feature_ijmpcall,
3926 &feature_des,
39233927 &feature_spmx,
3924 &feature_lpm,
39253928 &feature_lpmx,
3929 &feature_jmpcall,
39263930 &feature_spm,
3927 &feature_addsubiw,
3928 &feature_rmw,
3929 &feature_ijmpcall,
3930 &feature_eijmpcall,
3931 &feature_break,
39323931 &feature_elpmx,
3932 &feature_mul,
39333933 },
39343934};
39353935
......@@ -3937,21 +3937,21 @@ pub const cpu_atxmega384d3 = Cpu{
39373937 .name = "atxmega384d3",
39383938 .llvm_name = "atxmega384d3",
39393939 .dependencies = &[_]*const Feature {
3940 &feature_des,
3941 &feature_sram,
39423940 &feature_eijmpcall,
3943 &feature_jmpcall,
3944 &feature_mul,
3941 &feature_lpm,
3942 &feature_sram,
3943 &feature_addsubiw,
3944 &feature_movw,
39453945 &feature_elpm,
3946 &feature_break,
3947 &feature_ijmpcall,
3948 &feature_des,
39463949 &feature_spmx,
3947 &feature_lpm,
39483950 &feature_lpmx,
3951 &feature_jmpcall,
39493952 &feature_spm,
3950 &feature_addsubiw,
3951 &feature_ijmpcall,
39523953 &feature_elpmx,
3953 &feature_break,
3954 &feature_movw,
3954 &feature_mul,
39553955 },
39563956};
39573957
......@@ -3959,21 +3959,21 @@ pub const cpu_atxmega64a1 = Cpu{
39593959 .name = "atxmega64a1",
39603960 .llvm_name = "atxmega64a1",
39613961 .dependencies = &[_]*const Feature {
3962 &feature_des,
3963 &feature_sram,
39643962 &feature_eijmpcall,
3965 &feature_jmpcall,
3966 &feature_mul,
3963 &feature_lpm,
3964 &feature_sram,
3965 &feature_addsubiw,
3966 &feature_movw,
39673967 &feature_elpm,
3968 &feature_break,
3969 &feature_ijmpcall,
3970 &feature_des,
39683971 &feature_spmx,
3969 &feature_lpm,
39703972 &feature_lpmx,
3973 &feature_jmpcall,
39713974 &feature_spm,
3972 &feature_addsubiw,
3973 &feature_ijmpcall,
39743975 &feature_elpmx,
3975 &feature_break,
3976 &feature_movw,
3976 &feature_mul,
39773977 },
39783978};
39793979
......@@ -3981,22 +3981,22 @@ pub const cpu_atxmega64a1u = Cpu{
39813981 .name = "atxmega64a1u",
39823982 .llvm_name = "atxmega64a1u",
39833983 .dependencies = &[_]*const Feature {
3984 &feature_des,
3984 &feature_eijmpcall,
3985 &feature_lpm,
39853986 &feature_sram,
39863987 &feature_movw,
3987 &feature_jmpcall,
3988 &feature_mul,
3988 &feature_addsubiw,
3989 &feature_rmw,
39893990 &feature_elpm,
3991 &feature_break,
3992 &feature_ijmpcall,
3993 &feature_des,
39903994 &feature_spmx,
3991 &feature_lpm,
39923995 &feature_lpmx,
3996 &feature_jmpcall,
39933997 &feature_spm,
3994 &feature_addsubiw,
3995 &feature_rmw,
3996 &feature_ijmpcall,
3997 &feature_eijmpcall,
3998 &feature_break,
39993998 &feature_elpmx,
3999 &feature_mul,
40004000 },
40014001};
40024002
......@@ -4004,21 +4004,21 @@ pub const cpu_atxmega64a3 = Cpu{
40044004 .name = "atxmega64a3",
40054005 .llvm_name = "atxmega64a3",
40064006 .dependencies = &[_]*const Feature {
4007 &feature_des,
4008 &feature_sram,
40094007 &feature_eijmpcall,
4010 &feature_jmpcall,
4011 &feature_mul,
4008 &feature_lpm,
4009 &feature_sram,
4010 &feature_addsubiw,
4011 &feature_movw,
40124012 &feature_elpm,
4013 &feature_break,
4014 &feature_ijmpcall,
4015 &feature_des,
40134016 &feature_spmx,
4014 &feature_lpm,
40154017 &feature_lpmx,
4018 &feature_jmpcall,
40164019 &feature_spm,
4017 &feature_addsubiw,
4018 &feature_ijmpcall,
40194020 &feature_elpmx,
4020 &feature_break,
4021 &feature_movw,
4021 &feature_mul,
40224022 },
40234023};
40244024
......@@ -4026,22 +4026,22 @@ pub const cpu_atxmega64a3u = Cpu{
40264026 .name = "atxmega64a3u",
40274027 .llvm_name = "atxmega64a3u",
40284028 .dependencies = &[_]*const Feature {
4029 &feature_des,
4029 &feature_eijmpcall,
4030 &feature_lpm,
40304031 &feature_sram,
40314032 &feature_movw,
4032 &feature_jmpcall,
4033 &feature_mul,
4033 &feature_addsubiw,
4034 &feature_rmw,
40344035 &feature_elpm,
4036 &feature_break,
4037 &feature_ijmpcall,
4038 &feature_des,
40354039 &feature_spmx,
4036 &feature_lpm,
40374040 &feature_lpmx,
4041 &feature_jmpcall,
40384042 &feature_spm,
4039 &feature_addsubiw,
4040 &feature_rmw,
4041 &feature_ijmpcall,
4042 &feature_eijmpcall,
4043 &feature_break,
40444043 &feature_elpmx,
4044 &feature_mul,
40454045 },
40464046};
40474047
......@@ -4049,22 +4049,22 @@ pub const cpu_atxmega64a4u = Cpu{
40494049 .name = "atxmega64a4u",
40504050 .llvm_name = "atxmega64a4u",
40514051 .dependencies = &[_]*const Feature {
4052 &feature_des,
4052 &feature_eijmpcall,
4053 &feature_lpm,
40534054 &feature_sram,
40544055 &feature_movw,
4055 &feature_jmpcall,
4056 &feature_mul,
4056 &feature_addsubiw,
4057 &feature_rmw,
40574058 &feature_elpm,
4059 &feature_break,
4060 &feature_ijmpcall,
4061 &feature_des,
40584062 &feature_spmx,
4059 &feature_lpm,
40604063 &feature_lpmx,
4064 &feature_jmpcall,
40614065 &feature_spm,
4062 &feature_addsubiw,
4063 &feature_rmw,
4064 &feature_ijmpcall,
4065 &feature_eijmpcall,
4066 &feature_break,
40674066 &feature_elpmx,
4067 &feature_mul,
40684068 },
40694069};
40704070
......@@ -4072,22 +4072,22 @@ pub const cpu_atxmega64b1 = Cpu{
40724072 .name = "atxmega64b1",
40734073 .llvm_name = "atxmega64b1",
40744074 .dependencies = &[_]*const Feature {
4075 &feature_des,
4075 &feature_eijmpcall,
4076 &feature_lpm,
40764077 &feature_sram,
40774078 &feature_movw,
4078 &feature_jmpcall,
4079 &feature_mul,
4079 &feature_addsubiw,
4080 &feature_rmw,
40804081 &feature_elpm,
4082 &feature_break,
4083 &feature_ijmpcall,
4084 &feature_des,
40814085 &feature_spmx,
4082 &feature_lpm,
40834086 &feature_lpmx,
4087 &feature_jmpcall,
40844088 &feature_spm,
4085 &feature_addsubiw,
4086 &feature_rmw,
4087 &feature_ijmpcall,
4088 &feature_eijmpcall,
4089 &feature_break,
40904089 &feature_elpmx,
4090 &feature_mul,
40914091 },
40924092};
40934093
......@@ -4095,22 +4095,22 @@ pub const cpu_atxmega64b3 = Cpu{
40954095 .name = "atxmega64b3",
40964096 .llvm_name = "atxmega64b3",
40974097 .dependencies = &[_]*const Feature {
4098 &feature_des,
4098 &feature_eijmpcall,
4099 &feature_lpm,
40994100 &feature_sram,
41004101 &feature_movw,
4101 &feature_jmpcall,
4102 &feature_mul,
4102 &feature_addsubiw,
4103 &feature_rmw,
41034104 &feature_elpm,
4105 &feature_break,
4106 &feature_ijmpcall,
4107 &feature_des,
41044108 &feature_spmx,
4105 &feature_lpm,
41064109 &feature_lpmx,
4110 &feature_jmpcall,
41074111 &feature_spm,
4108 &feature_addsubiw,
4109 &feature_rmw,
4110 &feature_ijmpcall,
4111 &feature_eijmpcall,
4112 &feature_break,
41134112 &feature_elpmx,
4113 &feature_mul,
41144114 },
41154115};
41164116
......@@ -4118,22 +4118,22 @@ pub const cpu_atxmega64c3 = Cpu{
41184118 .name = "atxmega64c3",
41194119 .llvm_name = "atxmega64c3",
41204120 .dependencies = &[_]*const Feature {
4121 &feature_des,
4121 &feature_eijmpcall,
4122 &feature_lpm,
41224123 &feature_sram,
41234124 &feature_movw,
4124 &feature_jmpcall,
4125 &feature_mul,
4125 &feature_addsubiw,
4126 &feature_rmw,
41264127 &feature_elpm,
4128 &feature_break,
4129 &feature_ijmpcall,
4130 &feature_des,
41274131 &feature_spmx,
4128 &feature_lpm,
41294132 &feature_lpmx,
4133 &feature_jmpcall,
41304134 &feature_spm,
4131 &feature_addsubiw,
4132 &feature_rmw,
4133 &feature_ijmpcall,
4134 &feature_eijmpcall,
4135 &feature_break,
41364135 &feature_elpmx,
4136 &feature_mul,
41374137 },
41384138};
41394139
......@@ -4141,21 +4141,21 @@ pub const cpu_atxmega64d3 = Cpu{
41414141 .name = "atxmega64d3",
41424142 .llvm_name = "atxmega64d3",
41434143 .dependencies = &[_]*const Feature {
4144 &feature_des,
4145 &feature_sram,
41464144 &feature_eijmpcall,
4147 &feature_jmpcall,
4148 &feature_mul,
4145 &feature_lpm,
4146 &feature_sram,
4147 &feature_addsubiw,
4148 &feature_movw,
41494149 &feature_elpm,
4150 &feature_break,
4151 &feature_ijmpcall,
4152 &feature_des,
41504153 &feature_spmx,
4151 &feature_lpm,
41524154 &feature_lpmx,
4155 &feature_jmpcall,
41534156 &feature_spm,
4154 &feature_addsubiw,
4155 &feature_ijmpcall,
41564157 &feature_elpmx,
4157 &feature_break,
4158 &feature_movw,
4158 &feature_mul,
41594159 },
41604160};
41614161
......@@ -4163,21 +4163,21 @@ pub const cpu_atxmega64d4 = Cpu{
41634163 .name = "atxmega64d4",
41644164 .llvm_name = "atxmega64d4",
41654165 .dependencies = &[_]*const Feature {
4166 &feature_des,
4167 &feature_sram,
41684166 &feature_eijmpcall,
4169 &feature_jmpcall,
4170 &feature_mul,
4167 &feature_lpm,
4168 &feature_sram,
4169 &feature_addsubiw,
4170 &feature_movw,
41714171 &feature_elpm,
4172 &feature_break,
4173 &feature_ijmpcall,
4174 &feature_des,
41724175 &feature_spmx,
4173 &feature_lpm,
41744176 &feature_lpmx,
4177 &feature_jmpcall,
41754178 &feature_spm,
4176 &feature_addsubiw,
4177 &feature_ijmpcall,
41784179 &feature_elpmx,
4179 &feature_break,
4180 &feature_movw,
4180 &feature_mul,
41814181 },
41824182};
41834183
......@@ -4185,21 +4185,21 @@ pub const cpu_atxmega8e5 = Cpu{
41854185 .name = "atxmega8e5",
41864186 .llvm_name = "atxmega8e5",
41874187 .dependencies = &[_]*const Feature {
4188 &feature_des,
4189 &feature_sram,
41904188 &feature_eijmpcall,
4191 &feature_jmpcall,
4192 &feature_mul,
4189 &feature_lpm,
4190 &feature_sram,
4191 &feature_addsubiw,
4192 &feature_movw,
41934193 &feature_elpm,
4194 &feature_break,
4195 &feature_ijmpcall,
4196 &feature_des,
41944197 &feature_spmx,
4195 &feature_lpm,
41964198 &feature_lpmx,
4199 &feature_jmpcall,
41974200 &feature_spm,
4198 &feature_addsubiw,
4199 &feature_ijmpcall,
42004201 &feature_elpmx,
4201 &feature_break,
4202 &feature_movw,
4202 &feature_mul,
42034203 },
42044204};
42054205
......@@ -4215,8 +4215,8 @@ pub const cpu_avr2 = Cpu{
42154215 .name = "avr2",
42164216 .llvm_name = "avr2",
42174217 .dependencies = &[_]*const Feature {
4218 &feature_sram,
42194218 &feature_lpm,
4219 &feature_sram,
42204220 &feature_addsubiw,
42214221 &feature_ijmpcall,
42224222 },
......@@ -4226,14 +4226,14 @@ pub const cpu_avr25 = Cpu{
42264226 .name = "avr25",
42274227 .llvm_name = "avr25",
42284228 .dependencies = &[_]*const Feature {
4229 &feature_sram,
42304229 &feature_lpm,
4231 &feature_lpmx,
4232 &feature_spm,
4230 &feature_sram,
42334231 &feature_addsubiw,
4234 &feature_ijmpcall,
4235 &feature_break,
42364232 &feature_movw,
4233 &feature_break,
4234 &feature_ijmpcall,
4235 &feature_lpmx,
4236 &feature_spm,
42374237 },
42384238};
42394239
......@@ -4241,11 +4241,11 @@ pub const cpu_avr3 = Cpu{
42414241 .name = "avr3",
42424242 .llvm_name = "avr3",
42434243 .dependencies = &[_]*const Feature {
4244 &feature_sram,
4245 &feature_jmpcall,
42464244 &feature_lpm,
4245 &feature_sram,
42474246 &feature_addsubiw,
42484247 &feature_ijmpcall,
4248 &feature_jmpcall,
42494249 },
42504250};
42514251
......@@ -4253,12 +4253,12 @@ pub const cpu_avr31 = Cpu{
42534253 .name = "avr31",
42544254 .llvm_name = "avr31",
42554255 .dependencies = &[_]*const Feature {
4256 &feature_sram,
4257 &feature_jmpcall,
4258 &feature_elpm,
42594256 &feature_lpm,
4257 &feature_sram,
42604258 &feature_addsubiw,
4259 &feature_elpm,
42614260 &feature_ijmpcall,
4261 &feature_jmpcall,
42624262 },
42634263};
42644264
......@@ -4266,15 +4266,15 @@ pub const cpu_avr35 = Cpu{
42664266 .name = "avr35",
42674267 .llvm_name = "avr35",
42684268 .dependencies = &[_]*const Feature {
4269 &feature_sram,
4270 &feature_jmpcall,
42714269 &feature_lpm,
4272 &feature_lpmx,
4273 &feature_spm,
4270 &feature_sram,
42744271 &feature_addsubiw,
4275 &feature_ijmpcall,
4276 &feature_break,
42774272 &feature_movw,
4273 &feature_break,
4274 &feature_ijmpcall,
4275 &feature_lpmx,
4276 &feature_jmpcall,
4277 &feature_spm,
42784278 },
42794279};
42804280
......@@ -4282,15 +4282,15 @@ pub const cpu_avr4 = Cpu{
42824282 .name = "avr4",
42834283 .llvm_name = "avr4",
42844284 .dependencies = &[_]*const Feature {
4285 &feature_sram,
4286 &feature_mul,
42874285 &feature_lpm,
4288 &feature_lpmx,
4289 &feature_spm,
4286 &feature_sram,
42904287 &feature_addsubiw,
4291 &feature_ijmpcall,
4292 &feature_break,
42934288 &feature_movw,
4289 &feature_break,
4290 &feature_ijmpcall,
4291 &feature_lpmx,
4292 &feature_spm,
4293 &feature_mul,
42944294 },
42954295};
42964296
......@@ -4298,16 +4298,16 @@ pub const cpu_avr5 = Cpu{
42984298 .name = "avr5",
42994299 .llvm_name = "avr5",
43004300 .dependencies = &[_]*const Feature {
4301 &feature_sram,
4302 &feature_jmpcall,
4303 &feature_mul,
43044301 &feature_lpm,
4305 &feature_lpmx,
4306 &feature_spm,
4302 &feature_sram,
43074303 &feature_addsubiw,
4308 &feature_ijmpcall,
4309 &feature_break,
43104304 &feature_movw,
4305 &feature_break,
4306 &feature_ijmpcall,
4307 &feature_lpmx,
4308 &feature_jmpcall,
4309 &feature_spm,
4310 &feature_mul,
43114311 },
43124312};
43134313
......@@ -4315,18 +4315,18 @@ pub const cpu_avr51 = Cpu{
43154315 .name = "avr51",
43164316 .llvm_name = "avr51",
43174317 .dependencies = &[_]*const Feature {
4318 &feature_lpm,
43184319 &feature_sram,
4319 &feature_jmpcall,
4320 &feature_mul,
4320 &feature_addsubiw,
4321 &feature_movw,
43214322 &feature_elpm,
4322 &feature_lpm,
4323 &feature_break,
4324 &feature_ijmpcall,
43234325 &feature_lpmx,
4326 &feature_jmpcall,
43244327 &feature_spm,
4325 &feature_addsubiw,
4326 &feature_ijmpcall,
43274328 &feature_elpmx,
4328 &feature_break,
4329 &feature_movw,
4329 &feature_mul,
43304330 },
43314331};
43324332
......@@ -4334,18 +4334,18 @@ pub const cpu_avr6 = Cpu{
43344334 .name = "avr6",
43354335 .llvm_name = "avr6",
43364336 .dependencies = &[_]*const Feature {
4337 &feature_lpm,
43374338 &feature_sram,
4338 &feature_jmpcall,
4339 &feature_mul,
4339 &feature_addsubiw,
4340 &feature_movw,
43404341 &feature_elpm,
4341 &feature_lpm,
4342 &feature_break,
4343 &feature_ijmpcall,
43424344 &feature_lpmx,
4345 &feature_jmpcall,
43434346 &feature_spm,
4344 &feature_addsubiw,
4345 &feature_ijmpcall,
43464347 &feature_elpmx,
4347 &feature_break,
4348 &feature_movw,
4348 &feature_mul,
43494349 },
43504350};
43514351
......@@ -4354,8 +4354,8 @@ pub const cpu_avrtiny = Cpu{
43544354 .llvm_name = "avrtiny",
43554355 .dependencies = &[_]*const Feature {
43564356 &feature_sram,
4357 &feature_tinyencoding,
43584357 &feature_break,
4358 &feature_tinyencoding,
43594359 },
43604360};
43614361
......@@ -4363,21 +4363,21 @@ pub const cpu_avrxmega1 = Cpu{
43634363 .name = "avrxmega1",
43644364 .llvm_name = "avrxmega1",
43654365 .dependencies = &[_]*const Feature {
4366 &feature_des,
4367 &feature_sram,
43684366 &feature_eijmpcall,
4369 &feature_jmpcall,
4370 &feature_mul,
4367 &feature_lpm,
4368 &feature_sram,
4369 &feature_addsubiw,
4370 &feature_movw,
43714371 &feature_elpm,
4372 &feature_break,
4373 &feature_ijmpcall,
4374 &feature_des,
43724375 &feature_spmx,
4373 &feature_lpm,
43744376 &feature_lpmx,
4377 &feature_jmpcall,
43754378 &feature_spm,
4376 &feature_addsubiw,
4377 &feature_ijmpcall,
43784379 &feature_elpmx,
4379 &feature_break,
4380 &feature_movw,
4380 &feature_mul,
43814381 },
43824382};
43834383
......@@ -4385,21 +4385,21 @@ pub const cpu_avrxmega2 = Cpu{
43854385 .name = "avrxmega2",
43864386 .llvm_name = "avrxmega2",
43874387 .dependencies = &[_]*const Feature {
4388 &feature_des,
4389 &feature_sram,
43904388 &feature_eijmpcall,
4391 &feature_jmpcall,
4392 &feature_mul,
4389 &feature_lpm,
4390 &feature_sram,
4391 &feature_addsubiw,
4392 &feature_movw,
43934393 &feature_elpm,
4394 &feature_break,
4395 &feature_ijmpcall,
4396 &feature_des,
43944397 &feature_spmx,
4395 &feature_lpm,
43964398 &feature_lpmx,
4399 &feature_jmpcall,
43974400 &feature_spm,
4398 &feature_addsubiw,
4399 &feature_ijmpcall,
44004401 &feature_elpmx,
4401 &feature_break,
4402 &feature_movw,
4402 &feature_mul,
44034403 },
44044404};
44054405
......@@ -4407,21 +4407,21 @@ pub const cpu_avrxmega3 = Cpu{
44074407 .name = "avrxmega3",
44084408 .llvm_name = "avrxmega3",
44094409 .dependencies = &[_]*const Feature {
4410 &feature_des,
4411 &feature_sram,
44124410 &feature_eijmpcall,
4413 &feature_jmpcall,
4414 &feature_mul,
4411 &feature_lpm,
4412 &feature_sram,
4413 &feature_addsubiw,
4414 &feature_movw,
44154415 &feature_elpm,
4416 &feature_break,
4417 &feature_ijmpcall,
4418 &feature_des,
44164419 &feature_spmx,
4417 &feature_lpm,
44184420 &feature_lpmx,
4421 &feature_jmpcall,
44194422 &feature_spm,
4420 &feature_addsubiw,
4421 &feature_ijmpcall,
44224423 &feature_elpmx,
4423 &feature_break,
4424 &feature_movw,
4424 &feature_mul,
44254425 },
44264426};
44274427
......@@ -4429,21 +4429,21 @@ pub const cpu_avrxmega4 = Cpu{
44294429 .name = "avrxmega4",
44304430 .llvm_name = "avrxmega4",
44314431 .dependencies = &[_]*const Feature {
4432 &feature_des,
4433 &feature_sram,
44344432 &feature_eijmpcall,
4435 &feature_jmpcall,
4436 &feature_mul,
4433 &feature_lpm,
4434 &feature_sram,
4435 &feature_addsubiw,
4436 &feature_movw,
44374437 &feature_elpm,
4438 &feature_break,
4439 &feature_ijmpcall,
4440 &feature_des,
44384441 &feature_spmx,
4439 &feature_lpm,
44404442 &feature_lpmx,
4443 &feature_jmpcall,
44414444 &feature_spm,
4442 &feature_addsubiw,
4443 &feature_ijmpcall,
44444445 &feature_elpmx,
4445 &feature_break,
4446 &feature_movw,
4446 &feature_mul,
44474447 },
44484448};
44494449
......@@ -4451,21 +4451,21 @@ pub const cpu_avrxmega5 = Cpu{
44514451 .name = "avrxmega5",
44524452 .llvm_name = "avrxmega5",
44534453 .dependencies = &[_]*const Feature {
4454 &feature_des,
4455 &feature_sram,
44564454 &feature_eijmpcall,
4457 &feature_jmpcall,
4458 &feature_mul,
4455 &feature_lpm,
4456 &feature_sram,
4457 &feature_addsubiw,
4458 &feature_movw,
44594459 &feature_elpm,
4460 &feature_break,
4461 &feature_ijmpcall,
4462 &feature_des,
44604463 &feature_spmx,
4461 &feature_lpm,
44624464 &feature_lpmx,
4465 &feature_jmpcall,
44634466 &feature_spm,
4464 &feature_addsubiw,
4465 &feature_ijmpcall,
44664467 &feature_elpmx,
4467 &feature_break,
4468 &feature_movw,
4468 &feature_mul,
44694469 },
44704470};
44714471
......@@ -4473,21 +4473,21 @@ pub const cpu_avrxmega6 = Cpu{
44734473 .name = "avrxmega6",
44744474 .llvm_name = "avrxmega6",
44754475 .dependencies = &[_]*const Feature {
4476 &feature_des,
4477 &feature_sram,
44784476 &feature_eijmpcall,
4479 &feature_jmpcall,
4480 &feature_mul,
4477 &feature_lpm,
4478 &feature_sram,
4479 &feature_addsubiw,
4480 &feature_movw,
44814481 &feature_elpm,
4482 &feature_break,
4483 &feature_ijmpcall,
4484 &feature_des,
44824485 &feature_spmx,
4483 &feature_lpm,
44844486 &feature_lpmx,
4487 &feature_jmpcall,
44854488 &feature_spm,
4486 &feature_addsubiw,
4487 &feature_ijmpcall,
44884489 &feature_elpmx,
4489 &feature_break,
4490 &feature_movw,
4490 &feature_mul,
44914491 },
44924492};
44934493
......@@ -4495,21 +4495,21 @@ pub const cpu_avrxmega7 = Cpu{
44954495 .name = "avrxmega7",
44964496 .llvm_name = "avrxmega7",
44974497 .dependencies = &[_]*const Feature {
4498 &feature_des,
4499 &feature_sram,
45004498 &feature_eijmpcall,
4501 &feature_jmpcall,
4502 &feature_mul,
4499 &feature_lpm,
4500 &feature_sram,
4501 &feature_addsubiw,
4502 &feature_movw,
45034503 &feature_elpm,
4504 &feature_break,
4505 &feature_ijmpcall,
4506 &feature_des,
45044507 &feature_spmx,
4505 &feature_lpm,
45064508 &feature_lpmx,
4509 &feature_jmpcall,
45074510 &feature_spm,
4508 &feature_addsubiw,
4509 &feature_ijmpcall,
45104511 &feature_elpmx,
4511 &feature_break,
4512 &feature_movw,
4512 &feature_mul,
45134513 },
45144514};
45154515
......@@ -4517,16 +4517,16 @@ pub const cpu_m3000 = Cpu{
45174517 .name = "m3000",
45184518 .llvm_name = "m3000",
45194519 .dependencies = &[_]*const Feature {
4520 &feature_sram,
4521 &feature_jmpcall,
4522 &feature_mul,
45234520 &feature_lpm,
4524 &feature_lpmx,
4525 &feature_spm,
4521 &feature_sram,
45264522 &feature_addsubiw,
4527 &feature_ijmpcall,
4528 &feature_break,
45294523 &feature_movw,
4524 &feature_break,
4525 &feature_ijmpcall,
4526 &feature_lpmx,
4527 &feature_jmpcall,
4528 &feature_spm,
4529 &feature_mul,
45304530 },
45314531};
45324532
lib/std/target/hexagon.zig+4-4
......@@ -10,7 +10,7 @@ pub const feature_duplex = Feature{
1010};
1111
1212pub const feature_longCalls = Feature{
13 .name = "long-calls",
13 .name = "longCalls",
1414 .llvm_name = "long-calls",
1515 .description = "Use constant-extended calls",
1616 .dependencies = &[_]*const Feature {
......@@ -52,7 +52,7 @@ pub const feature_nvs = Feature{
5252};
5353
5454pub const feature_noreturnStackElim = Feature{
55 .name = "noreturn-stack-elim",
55 .name = "noreturnStackElim",
5656 .llvm_name = "noreturn-stack-elim",
5757 .description = "Eliminate stack allocation in a noreturn function when possible",
5858 .dependencies = &[_]*const Feature {
......@@ -68,7 +68,7 @@ pub const feature_packets = Feature{
6868};
6969
7070pub const feature_reservedR19 = Feature{
71 .name = "reserved-r19",
71 .name = "reservedR19",
7272 .llvm_name = "reserved-r19",
7373 .description = "Reserve register R19",
7474 .dependencies = &[_]*const Feature {
......@@ -76,7 +76,7 @@ pub const feature_reservedR19 = Feature{
7676};
7777
7878pub const feature_smallData = Feature{
79 .name = "small-data",
79 .name = "smallData",
8080 .llvm_name = "small-data",
8181 .description = "Allow GP-relative addressing of global variables",
8282 .dependencies = &[_]*const Feature {
lib/std/target/mips.zig+113-113
......@@ -22,14 +22,14 @@ pub const feature_cnmips = Feature{
2222 .llvm_name = "cnmips",
2323 .description = "Octeon cnMIPS Support",
2424 .dependencies = &[_]*const Feature {
25 &feature_mips5_32r2,
2526 &feature_mips1,
2627 &feature_mips3_32r2,
28 &feature_mips3_32,
29 &feature_mips4_32r2,
30 &feature_gp64,
2731 &feature_mips4_32,
28 &feature_mips5_32r2,
2932 &feature_fp64,
30 &feature_gp64,
31 &feature_mips4_32r2,
32 &feature_mips3_32,
3333 },
3434};
3535
......@@ -100,7 +100,7 @@ pub const feature_gp64 = Feature{
100100};
101101
102102pub const feature_longCalls = Feature{
103 .name = "long-calls",
103 .name = "longCalls",
104104 .llvm_name = "long-calls",
105105 .description = "Disable use of the jal instruction",
106106 .dependencies = &[_]*const Feature {
......@@ -163,9 +163,9 @@ pub const feature_mips3 = Feature{
163163 .dependencies = &[_]*const Feature {
164164 &feature_mips1,
165165 &feature_mips3_32r2,
166 &feature_fp64,
167 &feature_gp64,
168166 &feature_mips3_32,
167 &feature_gp64,
168 &feature_fp64,
169169 },
170170};
171171
......@@ -192,11 +192,11 @@ pub const feature_mips4 = Feature{
192192 .dependencies = &[_]*const Feature {
193193 &feature_mips1,
194194 &feature_mips3_32r2,
195 &feature_mips4_32,
196 &feature_fp64,
195 &feature_mips3_32,
197196 &feature_gp64,
198197 &feature_mips4_32r2,
199 &feature_mips3_32,
198 &feature_mips4_32,
199 &feature_fp64,
200200 },
201201};
202202
......@@ -221,14 +221,14 @@ pub const feature_mips5 = Feature{
221221 .llvm_name = "mips5",
222222 .description = "MIPS V ISA Support [highly experimental]",
223223 .dependencies = &[_]*const Feature {
224 &feature_mips5_32r2,
224225 &feature_mips1,
225226 &feature_mips3_32r2,
227 &feature_mips3_32,
228 &feature_mips4_32r2,
229 &feature_gp64,
226230 &feature_mips4_32,
227 &feature_mips5_32r2,
228231 &feature_fp64,
229 &feature_gp64,
230 &feature_mips4_32r2,
231 &feature_mips3_32,
232232 },
233233};
234234
......@@ -253,9 +253,9 @@ pub const feature_mips32 = Feature{
253253 .llvm_name = "mips32",
254254 .description = "Mips32 ISA Support",
255255 .dependencies = &[_]*const Feature {
256 &feature_mips1,
257 &feature_mips4_32,
258256 &feature_mips3_32,
257 &feature_mips4_32,
258 &feature_mips1,
259259 },
260260};
261261
......@@ -264,12 +264,12 @@ pub const feature_mips32r2 = Feature{
264264 .llvm_name = "mips32r2",
265265 .description = "Mips32r2 ISA Support",
266266 .dependencies = &[_]*const Feature {
267 &feature_mips5_32r2,
267268 &feature_mips1,
268269 &feature_mips3_32r2,
269 &feature_mips4_32,
270 &feature_mips5_32r2,
271 &feature_mips4_32r2,
272270 &feature_mips3_32,
271 &feature_mips4_32r2,
272 &feature_mips4_32,
273273 },
274274};
275275
......@@ -278,12 +278,12 @@ pub const feature_mips32r3 = Feature{
278278 .llvm_name = "mips32r3",
279279 .description = "Mips32r3 ISA Support",
280280 .dependencies = &[_]*const Feature {
281 &feature_mips5_32r2,
281282 &feature_mips1,
282283 &feature_mips3_32r2,
283 &feature_mips4_32,
284 &feature_mips5_32r2,
285 &feature_mips4_32r2,
286284 &feature_mips3_32,
285 &feature_mips4_32r2,
286 &feature_mips4_32,
287287 },
288288};
289289
......@@ -292,12 +292,12 @@ pub const feature_mips32r5 = Feature{
292292 .llvm_name = "mips32r5",
293293 .description = "Mips32r5 ISA Support",
294294 .dependencies = &[_]*const Feature {
295 &feature_mips5_32r2,
295296 &feature_mips1,
296297 &feature_mips3_32r2,
297 &feature_mips4_32,
298 &feature_mips5_32r2,
299 &feature_mips4_32r2,
300298 &feature_mips3_32,
299 &feature_mips4_32r2,
300 &feature_mips4_32,
301301 },
302302};
303303
......@@ -306,15 +306,15 @@ pub const feature_mips32r6 = Feature{
306306 .llvm_name = "mips32r6",
307307 .description = "Mips32r6 ISA Support [experimental]",
308308 .dependencies = &[_]*const Feature {
309 &feature_abs2008,
309 &feature_nan2008,
310 &feature_mips5_32r2,
310311 &feature_mips1,
311312 &feature_mips3_32r2,
313 &feature_mips3_32,
314 &feature_mips4_32r2,
312315 &feature_mips4_32,
313 &feature_nan2008,
314 &feature_mips5_32r2,
316 &feature_abs2008,
315317 &feature_fp64,
316 &feature_mips4_32r2,
317 &feature_mips3_32,
318318 },
319319};
320320
......@@ -323,14 +323,14 @@ pub const feature_mips64 = Feature{
323323 .llvm_name = "mips64",
324324 .description = "Mips64 ISA Support",
325325 .dependencies = &[_]*const Feature {
326 &feature_mips5_32r2,
326327 &feature_mips1,
327328 &feature_mips3_32r2,
329 &feature_mips3_32,
330 &feature_mips4_32r2,
331 &feature_gp64,
328332 &feature_mips4_32,
329 &feature_mips5_32r2,
330333 &feature_fp64,
331 &feature_gp64,
332 &feature_mips4_32r2,
333 &feature_mips3_32,
334334 },
335335};
336336
......@@ -339,14 +339,14 @@ pub const feature_mips64r2 = Feature{
339339 .llvm_name = "mips64r2",
340340 .description = "Mips64r2 ISA Support",
341341 .dependencies = &[_]*const Feature {
342 &feature_mips5_32r2,
342343 &feature_mips1,
343344 &feature_mips3_32r2,
345 &feature_mips3_32,
346 &feature_mips4_32r2,
347 &feature_gp64,
344348 &feature_mips4_32,
345 &feature_mips5_32r2,
346349 &feature_fp64,
347 &feature_gp64,
348 &feature_mips4_32r2,
349 &feature_mips3_32,
350350 },
351351};
352352
......@@ -355,14 +355,14 @@ pub const feature_mips64r3 = Feature{
355355 .llvm_name = "mips64r3",
356356 .description = "Mips64r3 ISA Support",
357357 .dependencies = &[_]*const Feature {
358 &feature_mips5_32r2,
358359 &feature_mips1,
359360 &feature_mips3_32r2,
361 &feature_mips3_32,
362 &feature_mips4_32r2,
363 &feature_gp64,
360364 &feature_mips4_32,
361 &feature_mips5_32r2,
362365 &feature_fp64,
363 &feature_gp64,
364 &feature_mips4_32r2,
365 &feature_mips3_32,
366366 },
367367};
368368
......@@ -371,14 +371,14 @@ pub const feature_mips64r5 = Feature{
371371 .llvm_name = "mips64r5",
372372 .description = "Mips64r5 ISA Support",
373373 .dependencies = &[_]*const Feature {
374 &feature_mips5_32r2,
374375 &feature_mips1,
375376 &feature_mips3_32r2,
377 &feature_mips3_32,
378 &feature_mips4_32r2,
379 &feature_gp64,
376380 &feature_mips4_32,
377 &feature_mips5_32r2,
378381 &feature_fp64,
379 &feature_gp64,
380 &feature_mips4_32r2,
381 &feature_mips3_32,
382382 },
383383};
384384
......@@ -387,16 +387,16 @@ pub const feature_mips64r6 = Feature{
387387 .llvm_name = "mips64r6",
388388 .description = "Mips64r6 ISA Support [experimental]",
389389 .dependencies = &[_]*const Feature {
390 &feature_abs2008,
390 &feature_nan2008,
391 &feature_mips5_32r2,
391392 &feature_mips1,
392393 &feature_mips3_32r2,
394 &feature_mips3_32,
395 &feature_mips4_32r2,
396 &feature_gp64,
393397 &feature_mips4_32,
394 &feature_nan2008,
395 &feature_mips5_32r2,
398 &feature_abs2008,
396399 &feature_fp64,
397 &feature_gp64,
398 &feature_mips4_32r2,
399 &feature_mips3_32,
400400 },
401401};
402402
......@@ -433,7 +433,7 @@ pub const feature_ptr64 = Feature{
433433};
434434
435435pub const feature_singleFloat = Feature{
436 .name = "single-float",
436 .name = "singleFloat",
437437 .llvm_name = "single-float",
438438 .description = "Only supports single precision float",
439439 .dependencies = &[_]*const Feature {
......@@ -441,7 +441,7 @@ pub const feature_singleFloat = Feature{
441441};
442442
443443pub const feature_softFloat = Feature{
444 .name = "soft-float",
444 .name = "softFloat",
445445 .llvm_name = "soft-float",
446446 .description = "Does not support floating point instructions",
447447 .dependencies = &[_]*const Feature {
......@@ -457,7 +457,7 @@ pub const feature_sym32 = Feature{
457457};
458458
459459pub const feature_useIndirectJumpHazard = Feature{
460 .name = "use-indirect-jump-hazard",
460 .name = "useIndirectJumpHazard",
461461 .llvm_name = "use-indirect-jump-hazard",
462462 .description = "Use indirect jump guards to prevent certain speculation based attacks",
463463 .dependencies = &[_]*const Feature {
......@@ -465,7 +465,7 @@ pub const feature_useIndirectJumpHazard = Feature{
465465};
466466
467467pub const feature_useTccInDiv = Feature{
468 .name = "use-tcc-in-div",
468 .name = "useTccInDiv",
469469 .llvm_name = "use-tcc-in-div",
470470 .description = "Force the assembler to use trapping",
471471 .dependencies = &[_]*const Feature {
......@@ -501,12 +501,12 @@ pub const feature_p5600 = Feature{
501501 .llvm_name = "p5600",
502502 .description = "The P5600 Processor",
503503 .dependencies = &[_]*const Feature {
504 &feature_mips5_32r2,
504505 &feature_mips1,
505506 &feature_mips3_32r2,
506 &feature_mips4_32,
507 &feature_mips5_32r2,
508 &feature_mips4_32r2,
509507 &feature_mips3_32,
508 &feature_mips4_32r2,
509 &feature_mips4_32,
510510 },
511511};
512512
......@@ -586,9 +586,9 @@ pub const cpu_mips3 = Cpu{
586586 .dependencies = &[_]*const Feature {
587587 &feature_mips1,
588588 &feature_mips3_32r2,
589 &feature_fp64,
590 &feature_gp64,
591589 &feature_mips3_32,
590 &feature_gp64,
591 &feature_fp64,
592592 &feature_mips3,
593593 },
594594};
......@@ -597,9 +597,9 @@ pub const cpu_mips32 = Cpu{
597597 .name = "mips32",
598598 .llvm_name = "mips32",
599599 .dependencies = &[_]*const Feature {
600 &feature_mips1,
601 &feature_mips4_32,
602600 &feature_mips3_32,
601 &feature_mips4_32,
602 &feature_mips1,
603603 &feature_mips32,
604604 },
605605};
......@@ -608,12 +608,12 @@ pub const cpu_mips32r2 = Cpu{
608608 .name = "mips32r2",
609609 .llvm_name = "mips32r2",
610610 .dependencies = &[_]*const Feature {
611 &feature_mips5_32r2,
611612 &feature_mips1,
612613 &feature_mips3_32r2,
613 &feature_mips4_32,
614 &feature_mips5_32r2,
615 &feature_mips4_32r2,
616614 &feature_mips3_32,
615 &feature_mips4_32r2,
616 &feature_mips4_32,
617617 &feature_mips32r2,
618618 },
619619};
......@@ -622,12 +622,12 @@ pub const cpu_mips32r3 = Cpu{
622622 .name = "mips32r3",
623623 .llvm_name = "mips32r3",
624624 .dependencies = &[_]*const Feature {
625 &feature_mips5_32r2,
625626 &feature_mips1,
626627 &feature_mips3_32r2,
627 &feature_mips4_32,
628 &feature_mips5_32r2,
629 &feature_mips4_32r2,
630628 &feature_mips3_32,
629 &feature_mips4_32r2,
630 &feature_mips4_32,
631631 &feature_mips32r3,
632632 },
633633};
......@@ -636,12 +636,12 @@ pub const cpu_mips32r5 = Cpu{
636636 .name = "mips32r5",
637637 .llvm_name = "mips32r5",
638638 .dependencies = &[_]*const Feature {
639 &feature_mips5_32r2,
639640 &feature_mips1,
640641 &feature_mips3_32r2,
641 &feature_mips4_32,
642 &feature_mips5_32r2,
643 &feature_mips4_32r2,
644642 &feature_mips3_32,
643 &feature_mips4_32r2,
644 &feature_mips4_32,
645645 &feature_mips32r5,
646646 },
647647};
......@@ -650,15 +650,15 @@ pub const cpu_mips32r6 = Cpu{
650650 .name = "mips32r6",
651651 .llvm_name = "mips32r6",
652652 .dependencies = &[_]*const Feature {
653 &feature_abs2008,
653 &feature_nan2008,
654 &feature_mips5_32r2,
654655 &feature_mips1,
655656 &feature_mips3_32r2,
657 &feature_mips3_32,
658 &feature_mips4_32r2,
656659 &feature_mips4_32,
657 &feature_nan2008,
658 &feature_mips5_32r2,
660 &feature_abs2008,
659661 &feature_fp64,
660 &feature_mips4_32r2,
661 &feature_mips3_32,
662662 &feature_mips32r6,
663663 },
664664};
......@@ -669,11 +669,11 @@ pub const cpu_mips4 = Cpu{
669669 .dependencies = &[_]*const Feature {
670670 &feature_mips1,
671671 &feature_mips3_32r2,
672 &feature_mips4_32,
673 &feature_fp64,
672 &feature_mips3_32,
674673 &feature_gp64,
675674 &feature_mips4_32r2,
676 &feature_mips3_32,
675 &feature_mips4_32,
676 &feature_fp64,
677677 &feature_mips4,
678678 },
679679};
......@@ -682,14 +682,14 @@ pub const cpu_mips5 = Cpu{
682682 .name = "mips5",
683683 .llvm_name = "mips5",
684684 .dependencies = &[_]*const Feature {
685 &feature_mips5_32r2,
685686 &feature_mips1,
686687 &feature_mips3_32r2,
688 &feature_mips3_32,
689 &feature_mips4_32r2,
690 &feature_gp64,
687691 &feature_mips4_32,
688 &feature_mips5_32r2,
689692 &feature_fp64,
690 &feature_gp64,
691 &feature_mips4_32r2,
692 &feature_mips3_32,
693693 &feature_mips5,
694694 },
695695};
......@@ -698,14 +698,14 @@ pub const cpu_mips64 = Cpu{
698698 .name = "mips64",
699699 .llvm_name = "mips64",
700700 .dependencies = &[_]*const Feature {
701 &feature_mips5_32r2,
701702 &feature_mips1,
702703 &feature_mips3_32r2,
704 &feature_mips3_32,
705 &feature_mips4_32r2,
706 &feature_gp64,
703707 &feature_mips4_32,
704 &feature_mips5_32r2,
705708 &feature_fp64,
706 &feature_gp64,
707 &feature_mips4_32r2,
708 &feature_mips3_32,
709709 &feature_mips64,
710710 },
711711};
......@@ -714,14 +714,14 @@ pub const cpu_mips64r2 = Cpu{
714714 .name = "mips64r2",
715715 .llvm_name = "mips64r2",
716716 .dependencies = &[_]*const Feature {
717 &feature_mips5_32r2,
717718 &feature_mips1,
718719 &feature_mips3_32r2,
720 &feature_mips3_32,
721 &feature_mips4_32r2,
722 &feature_gp64,
719723 &feature_mips4_32,
720 &feature_mips5_32r2,
721724 &feature_fp64,
722 &feature_gp64,
723 &feature_mips4_32r2,
724 &feature_mips3_32,
725725 &feature_mips64r2,
726726 },
727727};
......@@ -730,14 +730,14 @@ pub const cpu_mips64r3 = Cpu{
730730 .name = "mips64r3",
731731 .llvm_name = "mips64r3",
732732 .dependencies = &[_]*const Feature {
733 &feature_mips5_32r2,
733734 &feature_mips1,
734735 &feature_mips3_32r2,
736 &feature_mips3_32,
737 &feature_mips4_32r2,
738 &feature_gp64,
735739 &feature_mips4_32,
736 &feature_mips5_32r2,
737740 &feature_fp64,
738 &feature_gp64,
739 &feature_mips4_32r2,
740 &feature_mips3_32,
741741 &feature_mips64r3,
742742 },
743743};
......@@ -746,14 +746,14 @@ pub const cpu_mips64r5 = Cpu{
746746 .name = "mips64r5",
747747 .llvm_name = "mips64r5",
748748 .dependencies = &[_]*const Feature {
749 &feature_mips5_32r2,
749750 &feature_mips1,
750751 &feature_mips3_32r2,
752 &feature_mips3_32,
753 &feature_mips4_32r2,
754 &feature_gp64,
751755 &feature_mips4_32,
752 &feature_mips5_32r2,
753756 &feature_fp64,
754 &feature_gp64,
755 &feature_mips4_32r2,
756 &feature_mips3_32,
757757 &feature_mips64r5,
758758 },
759759};
......@@ -762,16 +762,16 @@ pub const cpu_mips64r6 = Cpu{
762762 .name = "mips64r6",
763763 .llvm_name = "mips64r6",
764764 .dependencies = &[_]*const Feature {
765 &feature_abs2008,
765 &feature_nan2008,
766 &feature_mips5_32r2,
766767 &feature_mips1,
767768 &feature_mips3_32r2,
769 &feature_mips3_32,
770 &feature_mips4_32r2,
771 &feature_gp64,
768772 &feature_mips4_32,
769 &feature_nan2008,
770 &feature_mips5_32r2,
773 &feature_abs2008,
771774 &feature_fp64,
772 &feature_gp64,
773 &feature_mips4_32r2,
774 &feature_mips3_32,
775775 &feature_mips64r6,
776776 },
777777};
......@@ -780,14 +780,14 @@ pub const cpu_octeon = Cpu{
780780 .name = "octeon",
781781 .llvm_name = "octeon",
782782 .dependencies = &[_]*const Feature {
783 &feature_mips5_32r2,
783784 &feature_mips1,
784785 &feature_mips3_32r2,
786 &feature_mips3_32,
787 &feature_mips4_32r2,
788 &feature_gp64,
785789 &feature_mips4_32,
786 &feature_mips5_32r2,
787790 &feature_fp64,
788 &feature_gp64,
789 &feature_mips4_32r2,
790 &feature_mips3_32,
791791 &feature_cnmips,
792792 &feature_mips64r2,
793793 },
......@@ -797,12 +797,12 @@ pub const cpu_p5600 = Cpu{
797797 .name = "p5600",
798798 .llvm_name = "p5600",
799799 .dependencies = &[_]*const Feature {
800 &feature_mips5_32r2,
800801 &feature_mips1,
801802 &feature_mips3_32r2,
802 &feature_mips4_32,
803 &feature_mips5_32r2,
804 &feature_mips4_32r2,
805803 &feature_mips3_32,
804 &feature_mips4_32r2,
805 &feature_mips4_32,
806806 &feature_p5600,
807807 },
808808};
lib/std/target/powerpc.zig+21-21
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_bit64 = Feature{
5 .name = "64bit",
5 .name = "bit64",
66 .llvm_name = "64bit",
77 .description = "Enable 64-bit instructions",
88 .dependencies = &[_]*const Feature {
......@@ -10,7 +10,7 @@ pub const feature_bit64 = Feature{
1010};
1111
1212pub const feature_bitregs64 = Feature{
13 .name = "64bitregs",
13 .name = "bitregs64",
1414 .llvm_name = "64bitregs",
1515 .description = "Enable 64-bit registers usage for ppc32 [beta]",
1616 .dependencies = &[_]*const Feature {
......@@ -60,7 +60,7 @@ pub const feature_crbits = Feature{
6060};
6161
6262pub const feature_directMove = Feature{
63 .name = "direct-move",
63 .name = "directMove",
6464 .llvm_name = "direct-move",
6565 .description = "Enable Power8 direct move instructions",
6666 .dependencies = &[_]*const Feature {
......@@ -183,7 +183,7 @@ pub const feature_htm = Feature{
183183};
184184
185185pub const feature_hardFloat = Feature{
186 .name = "hard-float",
186 .name = "hardFloat",
187187 .llvm_name = "hard-float",
188188 .description = "Enable floating-point instructions",
189189 .dependencies = &[_]*const Feature {
......@@ -199,7 +199,7 @@ pub const feature_icbt = Feature{
199199};
200200
201201pub const feature_isaV30Instructions = Feature{
202 .name = "isa-v30-instructions",
202 .name = "isaV30Instructions",
203203 .llvm_name = "isa-v30-instructions",
204204 .description = "Enable instructions added in ISA 3.0.",
205205 .dependencies = &[_]*const Feature {
......@@ -215,7 +215,7 @@ pub const feature_isel = Feature{
215215};
216216
217217pub const feature_invariantFunctionDescriptors = Feature{
218 .name = "invariant-function-descriptors",
218 .name = "invariantFunctionDescriptors",
219219 .llvm_name = "invariant-function-descriptors",
220220 .description = "Assume function descriptors are invariant",
221221 .dependencies = &[_]*const Feature {
......@@ -265,7 +265,7 @@ pub const feature_msync = Feature{
265265};
266266
267267pub const feature_power8Altivec = Feature{
268 .name = "power8-altivec",
268 .name = "power8Altivec",
269269 .llvm_name = "power8-altivec",
270270 .description = "Enable POWER8 Altivec instructions",
271271 .dependencies = &[_]*const Feature {
......@@ -283,7 +283,7 @@ pub const feature_crypto = Feature{
283283};
284284
285285pub const feature_power8Vector = Feature{
286 .name = "power8-vector",
286 .name = "power8Vector",
287287 .llvm_name = "power8-vector",
288288 .description = "Enable POWER8 vector instructions",
289289 .dependencies = &[_]*const Feature {
......@@ -292,7 +292,7 @@ pub const feature_power8Vector = Feature{
292292};
293293
294294pub const feature_power9Altivec = Feature{
295 .name = "power9-altivec",
295 .name = "power9Altivec",
296296 .llvm_name = "power9-altivec",
297297 .description = "Enable POWER9 Altivec instructions",
298298 .dependencies = &[_]*const Feature {
......@@ -302,7 +302,7 @@ pub const feature_power9Altivec = Feature{
302302};
303303
304304pub const feature_power9Vector = Feature{
305 .name = "power9-vector",
305 .name = "power9Vector",
306306 .llvm_name = "power9-vector",
307307 .description = "Enable POWER9 vector instructions",
308308 .dependencies = &[_]*const Feature {
......@@ -336,7 +336,7 @@ pub const feature_ppc6xx = Feature{
336336};
337337
338338pub const feature_ppcPostraSched = Feature{
339 .name = "ppc-postra-sched",
339 .name = "ppcPostraSched",
340340 .llvm_name = "ppc-postra-sched",
341341 .description = "Use PowerPC post-RA scheduling strategy",
342342 .dependencies = &[_]*const Feature {
......@@ -344,7 +344,7 @@ pub const feature_ppcPostraSched = Feature{
344344};
345345
346346pub const feature_ppcPreraSched = Feature{
347 .name = "ppc-prera-sched",
347 .name = "ppcPreraSched",
348348 .llvm_name = "ppc-prera-sched",
349349 .description = "Use PowerPC pre-RA scheduling strategy",
350350 .dependencies = &[_]*const Feature {
......@@ -352,7 +352,7 @@ pub const feature_ppcPreraSched = Feature{
352352};
353353
354354pub const feature_partwordAtomics = Feature{
355 .name = "partword-atomics",
355 .name = "partwordAtomics",
356356 .llvm_name = "partword-atomics",
357357 .description = "Enable l[bh]arx and st[bh]cx.",
358358 .dependencies = &[_]*const Feature {
......@@ -395,7 +395,7 @@ pub const feature_stfiwx = Feature{
395395};
396396
397397pub const feature_securePlt = Feature{
398 .name = "secure-plt",
398 .name = "securePlt",
399399 .llvm_name = "secure-plt",
400400 .description = "Enable secure plt mode",
401401 .dependencies = &[_]*const Feature {
......@@ -403,7 +403,7 @@ pub const feature_securePlt = Feature{
403403};
404404
405405pub const feature_slowPopcntd = Feature{
406 .name = "slow-popcntd",
406 .name = "slowPopcntd",
407407 .llvm_name = "slow-popcntd",
408408 .description = "Has slow popcnt[dw] instructions",
409409 .dependencies = &[_]*const Feature {
......@@ -411,7 +411,7 @@ pub const feature_slowPopcntd = Feature{
411411};
412412
413413pub const feature_twoConstNr = Feature{
414 .name = "two-const-nr",
414 .name = "twoConstNr",
415415 .llvm_name = "two-const-nr",
416416 .description = "Requires two constant Newton-Raphson computation",
417417 .dependencies = &[_]*const Feature {
......@@ -428,7 +428,7 @@ pub const feature_vsx = Feature{
428428};
429429
430430pub const feature_vectorsUseTwoUnits = Feature{
431 .name = "vectors-use-two-units",
431 .name = "vectorsUseTwoUnits",
432432 .llvm_name = "vectors-use-two-units",
433433 .description = "Vectors use two units",
434434 .dependencies = &[_]*const Feature {
......@@ -546,7 +546,7 @@ pub const cpu_603 = Cpu{
546546};
547547
548548pub const cpu_e603 = Cpu{
549 .name = "603e",
549 .name = "e603",
550550 .llvm_name = "603e",
551551 .dependencies = &[_]*const Feature {
552552 &feature_hardFloat,
......@@ -556,7 +556,7 @@ pub const cpu_e603 = Cpu{
556556};
557557
558558pub const cpu_ev603 = Cpu{
559 .name = "603ev",
559 .name = "ev603",
560560 .llvm_name = "603ev",
561561 .dependencies = &[_]*const Feature {
562562 &feature_hardFloat,
......@@ -576,7 +576,7 @@ pub const cpu_604 = Cpu{
576576};
577577
578578pub const cpu_e604 = Cpu{
579 .name = "604e",
579 .name = "e604",
580580 .llvm_name = "604e",
581581 .dependencies = &[_]*const Feature {
582582 &feature_hardFloat,
......@@ -755,7 +755,7 @@ pub const cpu_g4 = Cpu{
755755};
756756
757757pub const cpu_g4Plus = Cpu{
758 .name = "g4+",
758 .name = "g4Plus",
759759 .llvm_name = "g4+",
760760 .dependencies = &[_]*const Feature {
761761 &feature_hardFloat,
lib/std/target/riscv.zig+4-4
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_bit64 = Feature{
5 .name = "64bit",
5 .name = "bit64",
66 .llvm_name = "64bit",
77 .description = "Implements RV64",
88 .dependencies = &[_]*const Feature {
......@@ -18,7 +18,7 @@ pub const feature_e = Feature{
1818};
1919
2020pub const feature_rvcHints = Feature{
21 .name = "rvc-hints",
21 .name = "rvcHints",
2222 .llvm_name = "rvc-hints",
2323 .description = "Enable RVC Hint Instructions.",
2424 .dependencies = &[_]*const Feature {
......@@ -87,7 +87,7 @@ pub const features = &[_]*const Feature {
8787};
8888
8989pub const cpu_genericRv32 = Cpu{
90 .name = "generic-rv32",
90 .name = "genericRv32",
9191 .llvm_name = "generic-rv32",
9292 .dependencies = &[_]*const Feature {
9393 &feature_rvcHints,
......@@ -95,7 +95,7 @@ pub const cpu_genericRv32 = Cpu{
9595};
9696
9797pub const cpu_genericRv64 = Cpu{
98 .name = "generic-rv64",
98 .name = "genericRv64",
9999 .llvm_name = "generic-rv64",
100100 .dependencies = &[_]*const Feature {
101101 &feature_bit64,
lib/std/target/sparc.zig+9-9
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_hardQuadFloat = Feature{
5 .name = "hard-quad-float",
5 .name = "hardQuadFloat",
66 .llvm_name = "hard-quad-float",
77 .description = "Enable quad-word floating point instructions",
88 .dependencies = &[_]*const Feature {
......@@ -18,7 +18,7 @@ pub const feature_leon = Feature{
1818};
1919
2020pub const feature_noFmuls = Feature{
21 .name = "no-fmuls",
21 .name = "noFmuls",
2222 .llvm_name = "no-fmuls",
2323 .description = "Disable the fmuls instruction.",
2424 .dependencies = &[_]*const Feature {
......@@ -26,7 +26,7 @@ pub const feature_noFmuls = Feature{
2626};
2727
2828pub const feature_noFsmuld = Feature{
29 .name = "no-fsmuld",
29 .name = "noFsmuld",
3030 .llvm_name = "no-fsmuld",
3131 .description = "Disable the fsmuld instruction.",
3232 .dependencies = &[_]*const Feature {
......@@ -42,7 +42,7 @@ pub const feature_leonpwrpsr = Feature{
4242};
4343
4444pub const feature_softFloat = Feature{
45 .name = "soft-float",
45 .name = "softFloat",
4646 .llvm_name = "soft-float",
4747 .description = "Use software emulation for floating point",
4848 .dependencies = &[_]*const Feature {
......@@ -50,7 +50,7 @@ pub const feature_softFloat = Feature{
5050};
5151
5252pub const feature_softMulDiv = Feature{
53 .name = "soft-mul-div",
53 .name = "softMulDiv",
5454 .llvm_name = "soft-mul-div",
5555 .description = "Use software emulation for integer multiply and divide",
5656 .dependencies = &[_]*const Feature {
......@@ -58,7 +58,7 @@ pub const feature_softMulDiv = Feature{
5858};
5959
6060pub const feature_deprecatedV8 = Feature{
61 .name = "deprecated-v8",
61 .name = "deprecatedV8",
6262 .llvm_name = "deprecated-v8",
6363 .description = "Enable deprecated V8 instructions in V9 mode",
6464 .dependencies = &[_]*const Feature {
......@@ -287,7 +287,7 @@ pub const cpu_myriad2 = Cpu{
287287};
288288
289289pub const cpu_myriad21 = Cpu{
290 .name = "myriad2.1",
290 .name = "myriad21",
291291 .llvm_name = "myriad2.1",
292292 .dependencies = &[_]*const Feature {
293293 &feature_leon,
......@@ -295,7 +295,7 @@ pub const cpu_myriad21 = Cpu{
295295};
296296
297297pub const cpu_myriad22 = Cpu{
298 .name = "myriad2.2",
298 .name = "myriad22",
299299 .llvm_name = "myriad2.2",
300300 .dependencies = &[_]*const Feature {
301301 &feature_leon,
......@@ -303,7 +303,7 @@ pub const cpu_myriad22 = Cpu{
303303};
304304
305305pub const cpu_myriad23 = Cpu{
306 .name = "myriad2.3",
306 .name = "myriad23",
307307 .llvm_name = "myriad2.3",
308308 .dependencies = &[_]*const Feature {
309309 &feature_leon,
lib/std/target/systemz.zig+34-34
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_dfpPackedConversion = Feature{
5 .name = "dfp-packed-conversion",
5 .name = "dfpPackedConversion",
66 .llvm_name = "dfp-packed-conversion",
77 .description = "Assume that the DFP packed-conversion facility is installed",
88 .dependencies = &[_]*const Feature {
......@@ -10,7 +10,7 @@ pub const feature_dfpPackedConversion = Feature{
1010};
1111
1212pub const feature_dfpZonedConversion = Feature{
13 .name = "dfp-zoned-conversion",
13 .name = "dfpZonedConversion",
1414 .llvm_name = "dfp-zoned-conversion",
1515 .description = "Assume that the DFP zoned-conversion facility is installed",
1616 .dependencies = &[_]*const Feature {
......@@ -18,7 +18,7 @@ pub const feature_dfpZonedConversion = Feature{
1818};
1919
2020pub const feature_deflateConversion = Feature{
21 .name = "deflate-conversion",
21 .name = "deflateConversion",
2222 .llvm_name = "deflate-conversion",
2323 .description = "Assume that the deflate-conversion facility is installed",
2424 .dependencies = &[_]*const Feature {
......@@ -26,7 +26,7 @@ pub const feature_deflateConversion = Feature{
2626};
2727
2828pub const feature_distinctOps = Feature{
29 .name = "distinct-ops",
29 .name = "distinctOps",
3030 .llvm_name = "distinct-ops",
3131 .description = "Assume that the distinct-operands facility is installed",
3232 .dependencies = &[_]*const Feature {
......@@ -34,7 +34,7 @@ pub const feature_distinctOps = Feature{
3434};
3535
3636pub const feature_enhancedDat2 = Feature{
37 .name = "enhanced-dat-2",
37 .name = "enhancedDat2",
3838 .llvm_name = "enhanced-dat-2",
3939 .description = "Assume that the enhanced-DAT facility 2 is installed",
4040 .dependencies = &[_]*const Feature {
......@@ -42,7 +42,7 @@ pub const feature_enhancedDat2 = Feature{
4242};
4343
4444pub const feature_enhancedSort = Feature{
45 .name = "enhanced-sort",
45 .name = "enhancedSort",
4646 .llvm_name = "enhanced-sort",
4747 .description = "Assume that the enhanced-sort facility is installed",
4848 .dependencies = &[_]*const Feature {
......@@ -50,7 +50,7 @@ pub const feature_enhancedSort = Feature{
5050};
5151
5252pub const feature_executionHint = Feature{
53 .name = "execution-hint",
53 .name = "executionHint",
5454 .llvm_name = "execution-hint",
5555 .description = "Assume that the execution-hint facility is installed",
5656 .dependencies = &[_]*const Feature {
......@@ -58,7 +58,7 @@ pub const feature_executionHint = Feature{
5858};
5959
6060pub const feature_fpExtension = Feature{
61 .name = "fp-extension",
61 .name = "fpExtension",
6262 .llvm_name = "fp-extension",
6363 .description = "Assume that the floating-point extension facility is installed",
6464 .dependencies = &[_]*const Feature {
......@@ -66,7 +66,7 @@ pub const feature_fpExtension = Feature{
6666};
6767
6868pub const feature_fastSerialization = Feature{
69 .name = "fast-serialization",
69 .name = "fastSerialization",
7070 .llvm_name = "fast-serialization",
7171 .description = "Assume that the fast-serialization facility is installed",
7272 .dependencies = &[_]*const Feature {
......@@ -74,7 +74,7 @@ pub const feature_fastSerialization = Feature{
7474};
7575
7676pub const feature_guardedStorage = Feature{
77 .name = "guarded-storage",
77 .name = "guardedStorage",
7878 .llvm_name = "guarded-storage",
7979 .description = "Assume that the guarded-storage facility is installed",
8080 .dependencies = &[_]*const Feature {
......@@ -82,7 +82,7 @@ pub const feature_guardedStorage = Feature{
8282};
8383
8484pub const feature_highWord = Feature{
85 .name = "high-word",
85 .name = "highWord",
8686 .llvm_name = "high-word",
8787 .description = "Assume that the high-word facility is installed",
8888 .dependencies = &[_]*const Feature {
......@@ -90,7 +90,7 @@ pub const feature_highWord = Feature{
9090};
9191
9292pub const feature_insertReferenceBitsMultiple = Feature{
93 .name = "insert-reference-bits-multiple",
93 .name = "insertReferenceBitsMultiple",
9494 .llvm_name = "insert-reference-bits-multiple",
9595 .description = "Assume that the insert-reference-bits-multiple facility is installed",
9696 .dependencies = &[_]*const Feature {
......@@ -98,7 +98,7 @@ pub const feature_insertReferenceBitsMultiple = Feature{
9898};
9999
100100pub const feature_interlockedAccess1 = Feature{
101 .name = "interlocked-access1",
101 .name = "interlockedAccess1",
102102 .llvm_name = "interlocked-access1",
103103 .description = "Assume that interlocked-access facility 1 is installed",
104104 .dependencies = &[_]*const Feature {
......@@ -106,7 +106,7 @@ pub const feature_interlockedAccess1 = Feature{
106106};
107107
108108pub const feature_loadAndTrap = Feature{
109 .name = "load-and-trap",
109 .name = "loadAndTrap",
110110 .llvm_name = "load-and-trap",
111111 .description = "Assume that the load-and-trap facility is installed",
112112 .dependencies = &[_]*const Feature {
......@@ -114,7 +114,7 @@ pub const feature_loadAndTrap = Feature{
114114};
115115
116116pub const feature_loadAndZeroRightmostByte = Feature{
117 .name = "load-and-zero-rightmost-byte",
117 .name = "loadAndZeroRightmostByte",
118118 .llvm_name = "load-and-zero-rightmost-byte",
119119 .description = "Assume that the load-and-zero-rightmost-byte facility is installed",
120120 .dependencies = &[_]*const Feature {
......@@ -122,7 +122,7 @@ pub const feature_loadAndZeroRightmostByte = Feature{
122122};
123123
124124pub const feature_loadStoreOnCond = Feature{
125 .name = "load-store-on-cond",
125 .name = "loadStoreOnCond",
126126 .llvm_name = "load-store-on-cond",
127127 .description = "Assume that the load/store-on-condition facility is installed",
128128 .dependencies = &[_]*const Feature {
......@@ -130,7 +130,7 @@ pub const feature_loadStoreOnCond = Feature{
130130};
131131
132132pub const feature_loadStoreOnCond2 = Feature{
133 .name = "load-store-on-cond-2",
133 .name = "loadStoreOnCond2",
134134 .llvm_name = "load-store-on-cond-2",
135135 .description = "Assume that the load/store-on-condition facility 2 is installed",
136136 .dependencies = &[_]*const Feature {
......@@ -138,7 +138,7 @@ pub const feature_loadStoreOnCond2 = Feature{
138138};
139139
140140pub const feature_messageSecurityAssistExtension3 = Feature{
141 .name = "message-security-assist-extension3",
141 .name = "messageSecurityAssistExtension3",
142142 .llvm_name = "message-security-assist-extension3",
143143 .description = "Assume that the message-security-assist extension facility 3 is installed",
144144 .dependencies = &[_]*const Feature {
......@@ -146,7 +146,7 @@ pub const feature_messageSecurityAssistExtension3 = Feature{
146146};
147147
148148pub const feature_messageSecurityAssistExtension4 = Feature{
149 .name = "message-security-assist-extension4",
149 .name = "messageSecurityAssistExtension4",
150150 .llvm_name = "message-security-assist-extension4",
151151 .description = "Assume that the message-security-assist extension facility 4 is installed",
152152 .dependencies = &[_]*const Feature {
......@@ -154,7 +154,7 @@ pub const feature_messageSecurityAssistExtension4 = Feature{
154154};
155155
156156pub const feature_messageSecurityAssistExtension5 = Feature{
157 .name = "message-security-assist-extension5",
157 .name = "messageSecurityAssistExtension5",
158158 .llvm_name = "message-security-assist-extension5",
159159 .description = "Assume that the message-security-assist extension facility 5 is installed",
160160 .dependencies = &[_]*const Feature {
......@@ -162,7 +162,7 @@ pub const feature_messageSecurityAssistExtension5 = Feature{
162162};
163163
164164pub const feature_messageSecurityAssistExtension7 = Feature{
165 .name = "message-security-assist-extension7",
165 .name = "messageSecurityAssistExtension7",
166166 .llvm_name = "message-security-assist-extension7",
167167 .description = "Assume that the message-security-assist extension facility 7 is installed",
168168 .dependencies = &[_]*const Feature {
......@@ -170,7 +170,7 @@ pub const feature_messageSecurityAssistExtension7 = Feature{
170170};
171171
172172pub const feature_messageSecurityAssistExtension8 = Feature{
173 .name = "message-security-assist-extension8",
173 .name = "messageSecurityAssistExtension8",
174174 .llvm_name = "message-security-assist-extension8",
175175 .description = "Assume that the message-security-assist extension facility 8 is installed",
176176 .dependencies = &[_]*const Feature {
......@@ -178,7 +178,7 @@ pub const feature_messageSecurityAssistExtension8 = Feature{
178178};
179179
180180pub const feature_messageSecurityAssistExtension9 = Feature{
181 .name = "message-security-assist-extension9",
181 .name = "messageSecurityAssistExtension9",
182182 .llvm_name = "message-security-assist-extension9",
183183 .description = "Assume that the message-security-assist extension facility 9 is installed",
184184 .dependencies = &[_]*const Feature {
......@@ -186,7 +186,7 @@ pub const feature_messageSecurityAssistExtension9 = Feature{
186186};
187187
188188pub const feature_miscellaneousExtensions = Feature{
189 .name = "miscellaneous-extensions",
189 .name = "miscellaneousExtensions",
190190 .llvm_name = "miscellaneous-extensions",
191191 .description = "Assume that the miscellaneous-extensions facility is installed",
192192 .dependencies = &[_]*const Feature {
......@@ -194,7 +194,7 @@ pub const feature_miscellaneousExtensions = Feature{
194194};
195195
196196pub const feature_miscellaneousExtensions2 = Feature{
197 .name = "miscellaneous-extensions-2",
197 .name = "miscellaneousExtensions2",
198198 .llvm_name = "miscellaneous-extensions-2",
199199 .description = "Assume that the miscellaneous-extensions facility 2 is installed",
200200 .dependencies = &[_]*const Feature {
......@@ -202,7 +202,7 @@ pub const feature_miscellaneousExtensions2 = Feature{
202202};
203203
204204pub const feature_miscellaneousExtensions3 = Feature{
205 .name = "miscellaneous-extensions-3",
205 .name = "miscellaneousExtensions3",
206206 .llvm_name = "miscellaneous-extensions-3",
207207 .description = "Assume that the miscellaneous-extensions facility 3 is installed",
208208 .dependencies = &[_]*const Feature {
......@@ -210,7 +210,7 @@ pub const feature_miscellaneousExtensions3 = Feature{
210210};
211211
212212pub const feature_populationCount = Feature{
213 .name = "population-count",
213 .name = "populationCount",
214214 .llvm_name = "population-count",
215215 .description = "Assume that the population-count facility is installed",
216216 .dependencies = &[_]*const Feature {
......@@ -218,7 +218,7 @@ pub const feature_populationCount = Feature{
218218};
219219
220220pub const feature_processorAssist = Feature{
221 .name = "processor-assist",
221 .name = "processorAssist",
222222 .llvm_name = "processor-assist",
223223 .description = "Assume that the processor-assist facility is installed",
224224 .dependencies = &[_]*const Feature {
......@@ -226,7 +226,7 @@ pub const feature_processorAssist = Feature{
226226};
227227
228228pub const feature_resetReferenceBitsMultiple = Feature{
229 .name = "reset-reference-bits-multiple",
229 .name = "resetReferenceBitsMultiple",
230230 .llvm_name = "reset-reference-bits-multiple",
231231 .description = "Assume that the reset-reference-bits-multiple facility is installed",
232232 .dependencies = &[_]*const Feature {
......@@ -234,7 +234,7 @@ pub const feature_resetReferenceBitsMultiple = Feature{
234234};
235235
236236pub const feature_transactionalExecution = Feature{
237 .name = "transactional-execution",
237 .name = "transactionalExecution",
238238 .llvm_name = "transactional-execution",
239239 .description = "Assume that the transactional-execution facility is installed",
240240 .dependencies = &[_]*const Feature {
......@@ -250,7 +250,7 @@ pub const feature_vector = Feature{
250250};
251251
252252pub const feature_vectorEnhancements1 = Feature{
253 .name = "vector-enhancements-1",
253 .name = "vectorEnhancements1",
254254 .llvm_name = "vector-enhancements-1",
255255 .description = "Assume that the vector enhancements facility 1 is installed",
256256 .dependencies = &[_]*const Feature {
......@@ -258,7 +258,7 @@ pub const feature_vectorEnhancements1 = Feature{
258258};
259259
260260pub const feature_vectorEnhancements2 = Feature{
261 .name = "vector-enhancements-2",
261 .name = "vectorEnhancements2",
262262 .llvm_name = "vector-enhancements-2",
263263 .description = "Assume that the vector enhancements facility 2 is installed",
264264 .dependencies = &[_]*const Feature {
......@@ -266,7 +266,7 @@ pub const feature_vectorEnhancements2 = Feature{
266266};
267267
268268pub const feature_vectorPackedDecimal = Feature{
269 .name = "vector-packed-decimal",
269 .name = "vectorPackedDecimal",
270270 .llvm_name = "vector-packed-decimal",
271271 .description = "Assume that the vector packed decimal facility is installed",
272272 .dependencies = &[_]*const Feature {
......@@ -274,7 +274,7 @@ pub const feature_vectorPackedDecimal = Feature{
274274};
275275
276276pub const feature_vectorPackedDecimalEnhancement = Feature{
277 .name = "vector-packed-decimal-enhancement",
277 .name = "vectorPackedDecimalEnhancement",
278278 .llvm_name = "vector-packed-decimal-enhancement",
279279 .description = "Assume that the vector packed decimal enhancement facility is installed",
280280 .dependencies = &[_]*const Feature {
lib/std/target/wasm.zig+8-8
......@@ -10,7 +10,7 @@ pub const feature_atomics = Feature{
1010};
1111
1212pub const feature_bulkMemory = Feature{
13 .name = "bulk-memory",
13 .name = "bulkMemory",
1414 .llvm_name = "bulk-memory",
1515 .description = "Enable bulk memory operations",
1616 .dependencies = &[_]*const Feature {
......@@ -18,7 +18,7 @@ pub const feature_bulkMemory = Feature{
1818};
1919
2020pub const feature_exceptionHandling = Feature{
21 .name = "exception-handling",
21 .name = "exceptionHandling",
2222 .llvm_name = "exception-handling",
2323 .description = "Enable Wasm exception handling",
2424 .dependencies = &[_]*const Feature {
......@@ -34,7 +34,7 @@ pub const feature_multivalue = Feature{
3434};
3535
3636pub const feature_mutableGlobals = Feature{
37 .name = "mutable-globals",
37 .name = "mutableGlobals",
3838 .llvm_name = "mutable-globals",
3939 .description = "Enable mutable globals",
4040 .dependencies = &[_]*const Feature {
......@@ -42,7 +42,7 @@ pub const feature_mutableGlobals = Feature{
4242};
4343
4444pub const feature_nontrappingFptoint = Feature{
45 .name = "nontrapping-fptoint",
45 .name = "nontrappingFptoint",
4646 .llvm_name = "nontrapping-fptoint",
4747 .description = "Enable non-trapping float-to-int conversion operators",
4848 .dependencies = &[_]*const Feature {
......@@ -58,7 +58,7 @@ pub const feature_simd128 = Feature{
5858};
5959
6060pub const feature_signExt = Feature{
61 .name = "sign-ext",
61 .name = "signExt",
6262 .llvm_name = "sign-ext",
6363 .description = "Enable sign extension operators",
6464 .dependencies = &[_]*const Feature {
......@@ -66,7 +66,7 @@ pub const feature_signExt = Feature{
6666};
6767
6868pub const feature_tailCall = Feature{
69 .name = "tail-call",
69 .name = "tailCall",
7070 .llvm_name = "tail-call",
7171 .description = "Enable tail call instructions",
7272 .dependencies = &[_]*const Feature {
......@@ -74,7 +74,7 @@ pub const feature_tailCall = Feature{
7474};
7575
7676pub const feature_unimplementedSimd128 = Feature{
77 .name = "unimplemented-simd128",
77 .name = "unimplementedSimd128",
7878 .llvm_name = "unimplemented-simd128",
7979 .description = "Enable 128-bit SIMD not yet implemented in engines",
8080 .dependencies = &[_]*const Feature {
......@@ -96,7 +96,7 @@ pub const features = &[_]*const Feature {
9696};
9797
9898pub const cpu_bleedingEdge = Cpu{
99 .name = "bleeding-edge",
99 .name = "bleedingEdge",
100100 .llvm_name = "bleeding-edge",
101101 .dependencies = &[_]*const Feature {
102102 &feature_atomics,
lib/std/target/x86.zig+68-68
......@@ -2,7 +2,7 @@ const Feature = @import("std").target.Feature;
22const Cpu = @import("std").target.Cpu;
33
44pub const feature_dnow3 = Feature{
5 .name = "3dnow",
5 .name = "dnow3",
66 .llvm_name = "3dnow",
77 .description = "Enable 3DNow! instructions",
88 .dependencies = &[_]*const Feature {
......@@ -11,7 +11,7 @@ pub const feature_dnow3 = Feature{
1111};
1212
1313pub const feature_dnowa3 = Feature{
14 .name = "3dnowa",
14 .name = "dnowa3",
1515 .llvm_name = "3dnowa",
1616 .description = "Enable 3DNow! Athlon instructions",
1717 .dependencies = &[_]*const Feature {
......@@ -20,7 +20,7 @@ pub const feature_dnowa3 = Feature{
2020};
2121
2222pub const feature_bit64 = Feature{
23 .name = "64bit",
23 .name = "bit64",
2424 .llvm_name = "64bit",
2525 .description = "Support 64-bit instructions",
2626 .dependencies = &[_]*const Feature {
......@@ -274,7 +274,7 @@ pub const feature_fxsr = Feature{
274274};
275275
276276pub const feature_fast11bytenop = Feature{
277 .name = "fast-11bytenop",
277 .name = "fast11bytenop",
278278 .llvm_name = "fast-11bytenop",
279279 .description = "Target can quickly decode up to 11 byte NOPs",
280280 .dependencies = &[_]*const Feature {
......@@ -282,7 +282,7 @@ pub const feature_fast11bytenop = Feature{
282282};
283283
284284pub const feature_fast15bytenop = Feature{
285 .name = "fast-15bytenop",
285 .name = "fast15bytenop",
286286 .llvm_name = "fast-15bytenop",
287287 .description = "Target can quickly decode up to 15 byte NOPs",
288288 .dependencies = &[_]*const Feature {
......@@ -290,7 +290,7 @@ pub const feature_fast15bytenop = Feature{
290290};
291291
292292pub const feature_fastBextr = Feature{
293 .name = "fast-bextr",
293 .name = "fastBextr",
294294 .llvm_name = "fast-bextr",
295295 .description = "Indicates that the BEXTR instruction is implemented as a single uop with good throughput",
296296 .dependencies = &[_]*const Feature {
......@@ -298,7 +298,7 @@ pub const feature_fastBextr = Feature{
298298};
299299
300300pub const feature_fastHops = Feature{
301 .name = "fast-hops",
301 .name = "fastHops",
302302 .llvm_name = "fast-hops",
303303 .description = "Prefer horizontal vector math instructions (haddp, phsub, etc.) over normal vector instructions with shuffles",
304304 .dependencies = &[_]*const Feature {
......@@ -307,7 +307,7 @@ pub const feature_fastHops = Feature{
307307};
308308
309309pub const feature_fastLzcnt = Feature{
310 .name = "fast-lzcnt",
310 .name = "fastLzcnt",
311311 .llvm_name = "fast-lzcnt",
312312 .description = "LZCNT instructions are as fast as most simple integer ops",
313313 .dependencies = &[_]*const Feature {
......@@ -315,7 +315,7 @@ pub const feature_fastLzcnt = Feature{
315315};
316316
317317pub const feature_fastPartialYmmOrZmmWrite = Feature{
318 .name = "fast-partial-ymm-or-zmm-write",
318 .name = "fastPartialYmmOrZmmWrite",
319319 .llvm_name = "fast-partial-ymm-or-zmm-write",
320320 .description = "Partial writes to YMM/ZMM registers are fast",
321321 .dependencies = &[_]*const Feature {
......@@ -323,7 +323,7 @@ pub const feature_fastPartialYmmOrZmmWrite = Feature{
323323};
324324
325325pub const feature_fastShldRotate = Feature{
326 .name = "fast-shld-rotate",
326 .name = "fastShldRotate",
327327 .llvm_name = "fast-shld-rotate",
328328 .description = "SHLD can be used as a faster rotate",
329329 .dependencies = &[_]*const Feature {
......@@ -331,7 +331,7 @@ pub const feature_fastShldRotate = Feature{
331331};
332332
333333pub const feature_fastScalarFsqrt = Feature{
334 .name = "fast-scalar-fsqrt",
334 .name = "fastScalarFsqrt",
335335 .llvm_name = "fast-scalar-fsqrt",
336336 .description = "Scalar SQRT is fast (disable Newton-Raphson)",
337337 .dependencies = &[_]*const Feature {
......@@ -339,7 +339,7 @@ pub const feature_fastScalarFsqrt = Feature{
339339};
340340
341341pub const feature_fastScalarShiftMasks = Feature{
342 .name = "fast-scalar-shift-masks",
342 .name = "fastScalarShiftMasks",
343343 .llvm_name = "fast-scalar-shift-masks",
344344 .description = "Prefer a left/right scalar logical shift pair over a shift+and pair",
345345 .dependencies = &[_]*const Feature {
......@@ -347,7 +347,7 @@ pub const feature_fastScalarShiftMasks = Feature{
347347};
348348
349349pub const feature_fastVariableShuffle = Feature{
350 .name = "fast-variable-shuffle",
350 .name = "fastVariableShuffle",
351351 .llvm_name = "fast-variable-shuffle",
352352 .description = "Shuffles with variable masks are fast",
353353 .dependencies = &[_]*const Feature {
......@@ -355,7 +355,7 @@ pub const feature_fastVariableShuffle = Feature{
355355};
356356
357357pub const feature_fastVectorFsqrt = Feature{
358 .name = "fast-vector-fsqrt",
358 .name = "fastVectorFsqrt",
359359 .llvm_name = "fast-vector-fsqrt",
360360 .description = "Vector SQRT is fast (disable Newton-Raphson)",
361361 .dependencies = &[_]*const Feature {
......@@ -363,7 +363,7 @@ pub const feature_fastVectorFsqrt = Feature{
363363};
364364
365365pub const feature_fastVectorShiftMasks = Feature{
366 .name = "fast-vector-shift-masks",
366 .name = "fastVectorShiftMasks",
367367 .llvm_name = "fast-vector-shift-masks",
368368 .description = "Prefer a left/right vector logical shift pair over a shift+and pair",
369369 .dependencies = &[_]*const Feature {
......@@ -380,7 +380,7 @@ pub const feature_gfni = Feature{
380380};
381381
382382pub const feature_fastGather = Feature{
383 .name = "fast-gather",
383 .name = "fastGather",
384384 .llvm_name = "fast-gather",
385385 .description = "Indicates if gather is reasonably fast",
386386 .dependencies = &[_]*const Feature {
......@@ -413,7 +413,7 @@ pub const feature_sahf = Feature{
413413};
414414
415415pub const feature_leaSp = Feature{
416 .name = "lea-sp",
416 .name = "leaSp",
417417 .llvm_name = "lea-sp",
418418 .description = "Use LEA for adjusting the stack pointer",
419419 .dependencies = &[_]*const Feature {
......@@ -421,7 +421,7 @@ pub const feature_leaSp = Feature{
421421};
422422
423423pub const feature_leaUsesAg = Feature{
424 .name = "lea-uses-ag",
424 .name = "leaUsesAg",
425425 .llvm_name = "lea-uses-ag",
426426 .description = "LEA instruction needs inputs at AG stage",
427427 .dependencies = &[_]*const Feature {
......@@ -445,7 +445,7 @@ pub const feature_lzcnt = Feature{
445445};
446446
447447pub const feature_falseDepsLzcntTzcnt = Feature{
448 .name = "false-deps-lzcnt-tzcnt",
448 .name = "falseDepsLzcntTzcnt",
449449 .llvm_name = "false-deps-lzcnt-tzcnt",
450450 .description = "LZCNT/TZCNT have a false dependency on dest register",
451451 .dependencies = &[_]*const Feature {
......@@ -501,7 +501,7 @@ pub const feature_macrofusion = Feature{
501501};
502502
503503pub const feature_mergeToThreewayBranch = Feature{
504 .name = "merge-to-threeway-branch",
504 .name = "mergeToThreewayBranch",
505505 .llvm_name = "merge-to-threeway-branch",
506506 .description = "Merge branches to a three-way conditional branch",
507507 .dependencies = &[_]*const Feature {
......@@ -559,7 +559,7 @@ pub const feature_popcnt = Feature{
559559};
560560
561561pub const feature_falseDepsPopcnt = Feature{
562 .name = "false-deps-popcnt",
562 .name = "falseDepsPopcnt",
563563 .llvm_name = "false-deps-popcnt",
564564 .description = "POPCNT has a false dependency on dest register",
565565 .dependencies = &[_]*const Feature {
......@@ -591,7 +591,7 @@ pub const feature_ptwrite = Feature{
591591};
592592
593593pub const feature_padShortFunctions = Feature{
594 .name = "pad-short-functions",
594 .name = "padShortFunctions",
595595 .llvm_name = "pad-short-functions",
596596 .description = "Pad short functions",
597597 .dependencies = &[_]*const Feature {
......@@ -599,7 +599,7 @@ pub const feature_padShortFunctions = Feature{
599599};
600600
601601pub const feature_prefer128Bit = Feature{
602 .name = "prefer-128-bit",
602 .name = "prefer128Bit",
603603 .llvm_name = "prefer-128-bit",
604604 .description = "Prefer 128-bit AVX instructions",
605605 .dependencies = &[_]*const Feature {
......@@ -607,7 +607,7 @@ pub const feature_prefer128Bit = Feature{
607607};
608608
609609pub const feature_prefer256Bit = Feature{
610 .name = "prefer-256-bit",
610 .name = "prefer256Bit",
611611 .llvm_name = "prefer-256-bit",
612612 .description = "Prefer 256-bit AVX instructions",
613613 .dependencies = &[_]*const Feature {
......@@ -657,7 +657,7 @@ pub const feature_retpoline = Feature{
657657};
658658
659659pub const feature_retpolineExternalThunk = Feature{
660 .name = "retpoline-external-thunk",
660 .name = "retpolineExternalThunk",
661661 .llvm_name = "retpoline-external-thunk",
662662 .description = "When lowering an indirect call or branch using a `retpoline`, rely on the specified user provided thunk rather than emitting one ourselves. Only has effect when combined with some other retpoline feature",
663663 .dependencies = &[_]*const Feature {
......@@ -666,7 +666,7 @@ pub const feature_retpolineExternalThunk = Feature{
666666};
667667
668668pub const feature_retpolineIndirectBranches = Feature{
669 .name = "retpoline-indirect-branches",
669 .name = "retpolineIndirectBranches",
670670 .llvm_name = "retpoline-indirect-branches",
671671 .description = "Remove speculation of indirect branches from the generated code",
672672 .dependencies = &[_]*const Feature {
......@@ -674,7 +674,7 @@ pub const feature_retpolineIndirectBranches = Feature{
674674};
675675
676676pub const feature_retpolineIndirectCalls = Feature{
677 .name = "retpoline-indirect-calls",
677 .name = "retpolineIndirectCalls",
678678 .llvm_name = "retpoline-indirect-calls",
679679 .description = "Remove speculation of indirect calls from the generated code",
680680 .dependencies = &[_]*const Feature {
......@@ -742,7 +742,7 @@ pub const feature_sse4a = Feature{
742742};
743743
744744pub const feature_sse41 = Feature{
745 .name = "sse4.1",
745 .name = "sse41",
746746 .llvm_name = "sse4.1",
747747 .description = "Enable SSE 4.1 instructions",
748748 .dependencies = &[_]*const Feature {
......@@ -751,7 +751,7 @@ pub const feature_sse41 = Feature{
751751};
752752
753753pub const feature_sse42 = Feature{
754 .name = "sse4.2",
754 .name = "sse42",
755755 .llvm_name = "sse4.2",
756756 .description = "Enable SSE 4.2 instructions",
757757 .dependencies = &[_]*const Feature {
......@@ -760,7 +760,7 @@ pub const feature_sse42 = Feature{
760760};
761761
762762pub const feature_sseUnalignedMem = Feature{
763 .name = "sse-unaligned-mem",
763 .name = "sseUnalignedMem",
764764 .llvm_name = "sse-unaligned-mem",
765765 .description = "Allow unaligned memory operands with SSE instructions",
766766 .dependencies = &[_]*const Feature {
......@@ -777,7 +777,7 @@ pub const feature_ssse3 = Feature{
777777};
778778
779779pub const feature_slow3opsLea = Feature{
780 .name = "slow-3ops-lea",
780 .name = "slow3opsLea",
781781 .llvm_name = "slow-3ops-lea",
782782 .description = "LEA instruction with 3 ops or certain registers is slow",
783783 .dependencies = &[_]*const Feature {
......@@ -785,7 +785,7 @@ pub const feature_slow3opsLea = Feature{
785785};
786786
787787pub const feature_idivlToDivb = Feature{
788 .name = "idivl-to-divb",
788 .name = "idivlToDivb",
789789 .llvm_name = "idivl-to-divb",
790790 .description = "Use 8-bit divide for positive values less than 256",
791791 .dependencies = &[_]*const Feature {
......@@ -793,7 +793,7 @@ pub const feature_idivlToDivb = Feature{
793793};
794794
795795pub const feature_idivqToDivl = Feature{
796 .name = "idivq-to-divl",
796 .name = "idivqToDivl",
797797 .llvm_name = "idivq-to-divl",
798798 .description = "Use 32-bit divide for positive values less than 2^32",
799799 .dependencies = &[_]*const Feature {
......@@ -801,7 +801,7 @@ pub const feature_idivqToDivl = Feature{
801801};
802802
803803pub const feature_slowIncdec = Feature{
804 .name = "slow-incdec",
804 .name = "slowIncdec",
805805 .llvm_name = "slow-incdec",
806806 .description = "INC and DEC instructions are slower than ADD and SUB",
807807 .dependencies = &[_]*const Feature {
......@@ -809,7 +809,7 @@ pub const feature_slowIncdec = Feature{
809809};
810810
811811pub const feature_slowLea = Feature{
812 .name = "slow-lea",
812 .name = "slowLea",
813813 .llvm_name = "slow-lea",
814814 .description = "LEA instruction with certain arguments is slow",
815815 .dependencies = &[_]*const Feature {
......@@ -817,7 +817,7 @@ pub const feature_slowLea = Feature{
817817};
818818
819819pub const feature_slowPmaddwd = Feature{
820 .name = "slow-pmaddwd",
820 .name = "slowPmaddwd",
821821 .llvm_name = "slow-pmaddwd",
822822 .description = "PMADDWD is slower than PMULLD",
823823 .dependencies = &[_]*const Feature {
......@@ -825,7 +825,7 @@ pub const feature_slowPmaddwd = Feature{
825825};
826826
827827pub const feature_slowPmulld = Feature{
828 .name = "slow-pmulld",
828 .name = "slowPmulld",
829829 .llvm_name = "slow-pmulld",
830830 .description = "PMULLD instruction is slow",
831831 .dependencies = &[_]*const Feature {
......@@ -833,7 +833,7 @@ pub const feature_slowPmulld = Feature{
833833};
834834
835835pub const feature_slowShld = Feature{
836 .name = "slow-shld",
836 .name = "slowShld",
837837 .llvm_name = "slow-shld",
838838 .description = "SHLD instruction is slow",
839839 .dependencies = &[_]*const Feature {
......@@ -841,7 +841,7 @@ pub const feature_slowShld = Feature{
841841};
842842
843843pub const feature_slowTwoMemOps = Feature{
844 .name = "slow-two-mem-ops",
844 .name = "slowTwoMemOps",
845845 .llvm_name = "slow-two-mem-ops",
846846 .description = "Two memory operand instructions are slow",
847847 .dependencies = &[_]*const Feature {
......@@ -849,7 +849,7 @@ pub const feature_slowTwoMemOps = Feature{
849849};
850850
851851pub const feature_slowUnalignedMem16 = Feature{
852 .name = "slow-unaligned-mem-16",
852 .name = "slowUnalignedMem16",
853853 .llvm_name = "slow-unaligned-mem-16",
854854 .description = "Slow unaligned 16-byte memory access",
855855 .dependencies = &[_]*const Feature {
......@@ -857,7 +857,7 @@ pub const feature_slowUnalignedMem16 = Feature{
857857};
858858
859859pub const feature_slowUnalignedMem32 = Feature{
860 .name = "slow-unaligned-mem-32",
860 .name = "slowUnalignedMem32",
861861 .llvm_name = "slow-unaligned-mem-32",
862862 .description = "Slow unaligned 32-byte memory access",
863863 .dependencies = &[_]*const Feature {
......@@ -865,7 +865,7 @@ pub const feature_slowUnalignedMem32 = Feature{
865865};
866866
867867pub const feature_softFloat = Feature{
868 .name = "soft-float",
868 .name = "softFloat",
869869 .llvm_name = "soft-float",
870870 .description = "Use software floating point features",
871871 .dependencies = &[_]*const Feature {
......@@ -881,7 +881,7 @@ pub const feature_tbm = Feature{
881881};
882882
883883pub const feature_useAa = Feature{
884 .name = "use-aa",
884 .name = "useAa",
885885 .llvm_name = "use-aa",
886886 .description = "Use alias analysis during codegen",
887887 .dependencies = &[_]*const Feature {
......@@ -1026,7 +1026,7 @@ pub const feature_xsaves = Feature{
10261026};
10271027
10281028pub const feature_bitMode16 = Feature{
1029 .name = "16bit-mode",
1029 .name = "bitMode16",
10301030 .llvm_name = "16bit-mode",
10311031 .description = "16-bit mode (i8086)",
10321032 .dependencies = &[_]*const Feature {
......@@ -1034,7 +1034,7 @@ pub const feature_bitMode16 = Feature{
10341034};
10351035
10361036pub const feature_bitMode32 = Feature{
1037 .name = "32bit-mode",
1037 .name = "bitMode32",
10381038 .llvm_name = "32bit-mode",
10391039 .description = "32-bit mode (80386)",
10401040 .dependencies = &[_]*const Feature {
......@@ -1042,7 +1042,7 @@ pub const feature_bitMode32 = Feature{
10421042};
10431043
10441044pub const feature_bitMode64 = Feature{
1045 .name = "64bit-mode",
1045 .name = "bitMode64",
10461046 .llvm_name = "64bit-mode",
10471047 .description = "64-bit mode (x86_64)",
10481048 .dependencies = &[_]*const Feature {
......@@ -1217,7 +1217,7 @@ pub const cpu_athlon = Cpu{
12171217};
12181218
12191219pub const cpu_athlon4 = Cpu{
1220 .name = "athlon-4",
1220 .name = "athlon4",
12211221 .llvm_name = "athlon-4",
12221222 .dependencies = &[_]*const Feature {
12231223 &feature_mmx,
......@@ -1234,7 +1234,7 @@ pub const cpu_athlon4 = Cpu{
12341234};
12351235
12361236pub const cpu_athlonFx = Cpu{
1237 .name = "athlon-fx",
1237 .name = "athlonFx",
12381238 .llvm_name = "athlon-fx",
12391239 .dependencies = &[_]*const Feature {
12401240 &feature_mmx,
......@@ -1254,7 +1254,7 @@ pub const cpu_athlonFx = Cpu{
12541254};
12551255
12561256pub const cpu_athlonMp = Cpu{
1257 .name = "athlon-mp",
1257 .name = "athlonMp",
12581258 .llvm_name = "athlon-mp",
12591259 .dependencies = &[_]*const Feature {
12601260 &feature_mmx,
......@@ -1271,7 +1271,7 @@ pub const cpu_athlonMp = Cpu{
12711271};
12721272
12731273pub const cpu_athlonTbird = Cpu{
1274 .name = "athlon-tbird",
1274 .name = "athlonTbird",
12751275 .llvm_name = "athlon-tbird",
12761276 .dependencies = &[_]*const Feature {
12771277 &feature_mmx,
......@@ -1286,7 +1286,7 @@ pub const cpu_athlonTbird = Cpu{
12861286};
12871287
12881288pub const cpu_athlonXp = Cpu{
1289 .name = "athlon-xp",
1289 .name = "athlonXp",
12901290 .llvm_name = "athlon-xp",
12911291 .dependencies = &[_]*const Feature {
12921292 &feature_mmx,
......@@ -1323,7 +1323,7 @@ pub const cpu_athlon64 = Cpu{
13231323};
13241324
13251325pub const cpu_athlon64Sse3 = Cpu{
1326 .name = "athlon64-sse3",
1326 .name = "athlon64Sse3",
13271327 .llvm_name = "athlon64-sse3",
13281328 .dependencies = &[_]*const Feature {
13291329 &feature_mmx,
......@@ -1678,7 +1678,7 @@ pub const cpu_c3 = Cpu{
16781678};
16791679
16801680pub const cpu_c32 = Cpu{
1681 .name = "c3-2",
1681 .name = "c32",
16821682 .llvm_name = "c3-2",
16831683 .dependencies = &[_]*const Feature {
16841684 &feature_cmov,
......@@ -1874,7 +1874,7 @@ pub const cpu_cooperlake = Cpu{
18741874};
18751875
18761876pub const cpu_coreAvxI = Cpu{
1877 .name = "core-avx-i",
1877 .name = "coreAvxI",
18781878 .llvm_name = "core-avx-i",
18791879 .dependencies = &[_]*const Feature {
18801880 &feature_bit64,
......@@ -1908,7 +1908,7 @@ pub const cpu_coreAvxI = Cpu{
19081908};
19091909
19101910pub const cpu_coreAvx2 = Cpu{
1911 .name = "core-avx2",
1911 .name = "coreAvx2",
19121912 .llvm_name = "core-avx2",
19131913 .dependencies = &[_]*const Feature {
19141914 &feature_bit64,
......@@ -1991,7 +1991,7 @@ pub const cpu_corei7 = Cpu{
19911991};
19921992
19931993pub const cpu_corei7Avx = Cpu{
1994 .name = "corei7-avx",
1994 .name = "corei7Avx",
19951995 .llvm_name = "corei7-avx",
19961996 .dependencies = &[_]*const Feature {
19971997 &feature_bit64,
......@@ -2081,7 +2081,7 @@ pub const cpu_goldmont = Cpu{
20812081};
20822082
20832083pub const cpu_goldmontPlus = Cpu{
2084 .name = "goldmont-plus",
2084 .name = "goldmontPlus",
20852085 .llvm_name = "goldmont-plus",
20862086 .dependencies = &[_]*const Feature {
20872087 &feature_bit64,
......@@ -2202,7 +2202,7 @@ pub const cpu_i686 = Cpu{
22022202};
22032203
22042204pub const cpu_icelakeClient = Cpu{
2205 .name = "icelake-client",
2205 .name = "icelakeClient",
22062206 .llvm_name = "icelake-client",
22072207 .dependencies = &[_]*const Feature {
22082208 &feature_bit64,
......@@ -2272,7 +2272,7 @@ pub const cpu_icelakeClient = Cpu{
22722272};
22732273
22742274pub const cpu_icelakeServer = Cpu{
2275 .name = "icelake-server",
2275 .name = "icelakeServer",
22762276 .llvm_name = "icelake-server",
22772277 .dependencies = &[_]*const Feature {
22782278 &feature_bit64,
......@@ -2389,7 +2389,7 @@ pub const cpu_k6 = Cpu{
23892389};
23902390
23912391pub const cpu_k62 = Cpu{
2392 .name = "k6-2",
2392 .name = "k62",
23932393 .llvm_name = "k6-2",
23942394 .dependencies = &[_]*const Feature {
23952395 &feature_mmx,
......@@ -2401,7 +2401,7 @@ pub const cpu_k62 = Cpu{
24012401};
24022402
24032403pub const cpu_k63 = Cpu{
2404 .name = "k6-3",
2404 .name = "k63",
24052405 .llvm_name = "k6-3",
24062406 .dependencies = &[_]*const Feature {
24072407 &feature_mmx,
......@@ -2433,7 +2433,7 @@ pub const cpu_k8 = Cpu{
24332433};
24342434
24352435pub const cpu_k8Sse3 = Cpu{
2436 .name = "k8-sse3",
2436 .name = "k8Sse3",
24372437 .llvm_name = "k8-sse3",
24382438 .dependencies = &[_]*const Feature {
24392439 &feature_mmx,
......@@ -2610,7 +2610,7 @@ pub const cpu_opteron = Cpu{
26102610};
26112611
26122612pub const cpu_opteronSse3 = Cpu{
2613 .name = "opteron-sse3",
2613 .name = "opteronSse3",
26142614 .llvm_name = "opteron-sse3",
26152615 .dependencies = &[_]*const Feature {
26162616 &feature_mmx,
......@@ -2661,7 +2661,7 @@ pub const cpu_pentium = Cpu{
26612661};
26622662
26632663pub const cpu_pentiumM = Cpu{
2664 .name = "pentium-m",
2664 .name = "pentiumM",
26652665 .llvm_name = "pentium-m",
26662666 .dependencies = &[_]*const Feature {
26672667 &feature_cmov,
......@@ -2677,7 +2677,7 @@ pub const cpu_pentiumM = Cpu{
26772677};
26782678
26792679pub const cpu_pentiumMmx = Cpu{
2680 .name = "pentium-mmx",
2680 .name = "pentiumMmx",
26812681 .llvm_name = "pentium-mmx",
26822682 .dependencies = &[_]*const Feature {
26832683 &feature_cx8,
......@@ -2964,7 +2964,7 @@ pub const cpu_skylake = Cpu{
29642964};
29652965
29662966pub const cpu_skylakeAvx512 = Cpu{
2967 .name = "skylake-avx512",
2967 .name = "skylakeAvx512",
29682968 .llvm_name = "skylake-avx512",
29692969 .dependencies = &[_]*const Feature {
29702970 &feature_bit64,
......@@ -3192,7 +3192,7 @@ pub const cpu_westmere = Cpu{
31923192};
31933193
31943194pub const cpu_winchipC6 = Cpu{
3195 .name = "winchip-c6",
3195 .name = "winchipC6",
31963196 .llvm_name = "winchip-c6",
31973197 .dependencies = &[_]*const Feature {
31983198 &feature_mmx,
......@@ -3213,7 +3213,7 @@ pub const cpu_winchip2 = Cpu{
32133213};
32143214
32153215pub const cpu_x8664 = Cpu{
3216 .name = "x86-64",
3216 .name = "x8664",
32173217 .llvm_name = "x86-64",
32183218 .dependencies = &[_]*const Feature {
32193219 &feature_bit64,
src-self-hosted/stage1.zig+36
......@@ -623,6 +623,8 @@ const Stage2TargetDetails = struct {
623623
624624 llvm_cpu_str: [:0]const u8,
625625 llvm_features_str: [:0]const u8,
626
627 builtin_str: [:0]const u8,
626628};
627629
628630// ABI warning
......@@ -662,6 +664,16 @@ fn parseCpu(arch: @TagType(std.Target.Arch), str: []const u8) !*Stage2TargetDeta
662664 if (std.mem.eql(u8, str, cpu.name)) {
663665 const allocator = std.heap.c_allocator;
664666
667 var builtin_str_buffer = try std.Buffer.init(
668 allocator,
669 "@import(\"std\").target.TargetDetails{.cpu=&@import(\"std\").target.");
670 defer builtin_str_buffer.deinit();
671
672 try builtin_str_buffer.append(@tagName(arch));
673 try builtin_str_buffer.append(".cpu_");
674 try builtin_str_buffer.append(cpu.name);
675 try builtin_str_buffer.append("};");
676
665677 const ptr = try allocator.create(Stage2TargetDetails);
666678 ptr.* = .{
667679 .allocator = allocator,
......@@ -670,6 +682,7 @@ fn parseCpu(arch: @TagType(std.Target.Arch), str: []const u8) !*Stage2TargetDeta
670682 },
671683 .llvm_cpu_str = cpu.name,
672684 .llvm_features_str = "",
685 .builtin_str = builtin_str_buffer.toOwnedSlice(),
673686 };
674687
675688 return ptr;
......@@ -687,6 +700,11 @@ fn parseFeatures(arch: @TagType(std.Target.Arch), str: []const u8) !*Stage2Targe
687700 var features = std.ArrayList(*const std.target.Feature).init(allocator);
688701 defer features.deinit();
689702
703 var builtin_str_buffer = try std.Buffer.init(
704 allocator,
705 "@import(\"std\").target.TargetDetails{.features=&[_]*const @import(\"std\").target.Feature{\n");
706 defer builtin_str_buffer.deinit();
707
690708 var start: usize = 0;
691709 while (start < str.len) {
692710 const next_comma_pos = std.mem.indexOfScalar(u8, str[start..], ',') orelse str.len - start;
......@@ -706,10 +724,18 @@ fn parseFeatures(arch: @TagType(std.Target.Arch), str: []const u8) !*Stage2Targe
706724
707725 if (feature) |f| {
708726 features.append(f) catch @panic("out of memory");
727
728 try builtin_str_buffer.append("&@import(\"std\").target.");
729 try builtin_str_buffer.append(@tagName(arch));
730 try builtin_str_buffer.append(".feature_");
731 try builtin_str_buffer.append(f.name);
732 try builtin_str_buffer.append(",");
709733 } else {
710734 return error.InvalidFeature;
711735 }
712736 }
737
738 try builtin_str_buffer.append("}};");
713739
714740 const features_slice = features.toOwnedSlice();
715741
......@@ -730,6 +756,7 @@ fn parseFeatures(arch: @TagType(std.Target.Arch), str: []const u8) !*Stage2Targe
730756 },
731757 .llvm_cpu_str = "",
732758 .llvm_features_str = llvm_features_buffer.toOwnedSlice(),
759 .builtin_str = builtin_str_buffer.toOwnedSlice(),
733760 };
734761
735762 return ptr;
......@@ -764,3 +791,12 @@ export fn stage2_target_details_get_llvm_features(target_details: ?*const Stage2
764791
765792 return @as([*:0]const u8, "");
766793}
794
795// ABI warning
796export fn stage2_target_details_get_builtin_str(target_details: ?*const Stage2TargetDetails) [*:0]const u8 {
797 if (target_details) |td| {
798 return @as([*:0]const u8, td.builtin_str);
799 }
800
801 return @as([*:0]const u8, "");
802}
src/codegen.cpp+8
......@@ -8607,6 +8607,14 @@ Buf *codegen_generate_builtin_source(CodeGen *g) {
86078607 "pub var test_functions: []TestFn = undefined; // overwritten later\n"
86088608 );
86098609 }
8610
8611 buf_appendf(contents, "pub const target_details: ?@import(\"std\").target.TargetDetails = ");
8612 if (g->target_details) {
8613 buf_appendf(contents, "%s", stage2_target_details_get_builtin_str(g->target_details));
8614 } else {
8615 buf_appendf(contents, "null;");
8616 }
8617 buf_appendf(contents, "\n");
86108618
86118619 return contents;
86128620}
src/main.cpp+19-18
......@@ -1074,6 +1074,24 @@ int main(int argc, char **argv) {
10741074 }
10751075 }
10761076
1077 Stage2TargetDetails *target_details = nullptr;
1078 if (cpu && features) {
1079 fprintf(stderr, "--cpu and --features options not allowed together\n");
1080 return main_exit(root_progress_node, EXIT_FAILURE);
1081 } else if (cpu) {
1082 target_details = stage2_target_details_parse_cpu(target_arch_name(target.arch), cpu);
1083 if (!target_details) {
1084 fprintf(stderr, "invalid --cpu value\n");
1085 return main_exit(root_progress_node, EXIT_FAILURE);
1086 }
1087 } else if (features) {
1088 target_details = stage2_target_details_parse_features(target_arch_name(target.arch), features);
1089 if (!target_details) {
1090 fprintf(stderr, "invalid --features value\n");
1091 return main_exit(root_progress_node, EXIT_FAILURE);
1092 }
1093 }
1094
10771095 if (output_dir != nullptr && enable_cache == CacheOptOn) {
10781096 fprintf(stderr, "`--output-dir` is incompatible with --cache on.\n");
10791097 return print_error_usage(arg0);
......@@ -1124,6 +1142,7 @@ int main(int argc, char **argv) {
11241142 g->want_stack_check = want_stack_check;
11251143 g->want_sanitize_c = want_sanitize_c;
11261144 g->want_single_threaded = want_single_threaded;
1145 g->target_details = target_details;
11271146 Buf *builtin_source = codegen_generate_builtin_source(g);
11281147 if (fwrite(buf_ptr(builtin_source), 1, buf_len(builtin_source), stdout) != buf_len(builtin_source)) {
11291148 fprintf(stderr, "unable to write to stdout: %s\n", strerror(ferror(stdout)));
......@@ -1278,24 +1297,6 @@ int main(int argc, char **argv) {
12781297 codegen_add_rpath(g, rpath_list.at(i));
12791298 }
12801299
1281 Stage2TargetDetails *target_details = nullptr;
1282 if (cpu && features) {
1283 fprintf(stderr, "--cpu and --features options not allowed together\n");
1284 return main_exit(root_progress_node, EXIT_FAILURE);
1285 } else if (cpu) {
1286 target_details = stage2_target_details_parse_cpu(target_arch_name(target.arch), cpu);
1287 if (!target_details) {
1288 fprintf(stderr, "invalid --cpu value\n");
1289 return main_exit(root_progress_node, EXIT_FAILURE);
1290 }
1291 } else if (features) {
1292 target_details = stage2_target_details_parse_features(target_arch_name(target.arch), features);
1293 if (!target_details) {
1294 fprintf(stderr, "invalid --features value\n");
1295 return main_exit(root_progress_node, EXIT_FAILURE);
1296 }
1297 }
1298
12991300 g->target_details = target_details;
13001301
13011302 codegen_set_rdynamic(g, rdynamic);
src/userland.cpp+3
......@@ -106,3 +106,6 @@ const char *stage2_target_details_get_llvm_cpu(const Stage2TargetDetails *target
106106const char *stage2_target_details_get_llvm_features(const Stage2TargetDetails *target_details) {
107107 return "";
108108}
109const char *stage2_target_details_get_builtin_str(const Stage2TargetDetails *target_details) {
110 return "";
111}
src/userland.h+3
......@@ -198,4 +198,7 @@ ZIG_EXTERN_C const char *stage2_target_details_get_llvm_cpu(const Stage2TargetDe
198198// ABI warning
199199ZIG_EXTERN_C const char *stage2_target_details_get_llvm_features(const Stage2TargetDetails *target_details);
200200
201// ABI warning
202ZIG_EXTERN_C const char *stage2_target_details_get_builtin_str(const Stage2TargetDetails *target_details);
203
201204#endif