1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
// SPDX-FileCopyrightText: Copyright The arm-sysregs Contributors.
// SPDX-License-Identifier: MIT OR Apache-2.0
use crate::{
Amcfgr, Amcgcr, Amcntenclr0, Amcntenclr1, Amcntenset0, Amcntenset1, Amcr, Amuserenr, Ccsidr,
Ccsidr2, Clidr, Cntfrq, CntfrqEl0, Cnthctl, CnthpCtl, CnthpCval, CnthpTval, CnthpsCtl,
CnthpsCval, CnthpsTval, CnthvCtl, CnthvCval, CnthvTval, CnthvsCtl, CnthvsCval, CnthvsTval,
Cntkctl, CntpCtl, CntpCtlEl0, CntpCval, CntpCvalEl0, CntpTval, CntpTvalEl0, Cntpct, CntpctEl0,
Cntpctss, CntpctssEl0, CntvCtl, CntvCtlEl0, CntvCval, CntvCvalEl0, CntvTval, CntvTvalEl0,
Cntvct, CntvctEl0, Cntvctss, CntvctssEl0, Cntvoff, Contextidr, Cpacr, Csselr, Ctr, CtrEl0,
Currentel, Dacr, Dbgauthstatus, Dbgclaimclr, Dbgclaimset, Dbgdccint, Dbgdevid, Dbgdevid1,
Dbgdidr, Dbgdrar, Dbgdscrext, Dbgdscrint, Dbgdtrrxext, Dbgdtrrxint, Dbgdtrtxext, Dbgdtrtxint,
Dbgosdlr, Dbgoseccr, Dbgoslar, Dbgoslsr, Dbgprcr, Dbgvcr, Dfar, Dfsr, Disr, Dit, Dlr, Dspsr,
Dspsr2, Erridr, Errselr, Erxaddr, Erxaddr2, Erxctlr, Erxctlr2, Erxfr, Erxfr2, Erxmisc0,
Erxmisc1, Erxmisc2, Erxmisc3, Erxmisc4, Erxmisc5, Erxmisc6, Erxmisc7, Erxstatus, Hcptr, Hcr,
Hcr2, Hdcr, Hdfar, Hifar, Hmair0, Hmair1, Hpfar, Hrmr, Hsctlr, Hsr, Htcr, Htpidr, Htrfcr,
Httbr, Hvbar, IccAsgi1r, IccBpr0, IccBpr1, IccCtlr, IccDir, IccEoir0, IccEoir1, IccHppir0,
IccHppir1, IccIar0, IccIar1, IccIgrpen0, IccIgrpen1, IccPmr, IccRpr, IccSgi0r, IccSgi1r,
IdDfr0, IdDfr1, IdIsar0, IdIsar1, IdIsar2, IdIsar3, IdIsar4, IdIsar5, IdIsar6, IdMmfr0,
IdMmfr1, IdMmfr2, IdMmfr3, IdMmfr4, IdMmfr5, IdPfr0, IdPfr1, IdPfr2, Ifar, Ifsr, Isr, Mair0,
Mair1, Midr, Mpidr, Mvbar, Nmrr, Nsacr, Par, Pmccfiltr, Pmccntr, Pmceid0, Pmceid1, Pmceid2,
Pmceid3, Pmcntenclr, Pmcntenset, Pmcr, PmcrEl0, Pmintenclr, Pmintenset, Pmmir, Pmovsr,
Pmovsset, Pmselr, Pmswinc, Pmuserenr, Pmxevtyper, Prrr, Rmr, Rvbar, Scr, Sctlr, Sdcr, Sder,
Svcr, Tlbtr, TpidrEl0, Tpidrprw, TpidrroEl0, Tpidruro, Tpidrurw, Trfcr, Ttbcr, Ttbcr2, Ttbr0,
Ttbr1, Vbar, Vdfsr, Vdisr, Vmpidr, Vpidr, Vtcr, Vttbr,
};
#[cfg(feature = "el1")]
use crate::{
ApiakeyhiEl1, ApiakeyloEl1, CcsidrEl1, ClidrEl1, CntkctlEl1, CntpsCtlEl1, CntpsCvalEl1,
CntpsTvalEl1, ContextidrEl1, CpacrEl1, CsselrEl1, DisrEl1, ElrEl1, EsrEl1, FarEl1, GcrEl1,
GcscrEl1, IccAp1r0El1, IccAsgi1rEl1, IccBpr0El1, IccBpr1El1, IccCtlrEl1, IccDirEl1,
IccEoir0El1, IccEoir1El1, IccHppir0El1, IccHppir1El1, IccIar0El1, IccIar1El1, IccIgrpen0El1,
IccIgrpen1El1, IccNmiar1El1, IccPmrEl1, IccRprEl1, IccSgi0rEl1, IccSgi1rEl1, IccSreEl1,
IdAa64dfr0El1, IdAa64dfr1El1, IdAa64isar1El1, IdAa64isar2El1, IdAa64mmfr0El1, IdAa64mmfr1El1,
IdAa64mmfr2El1, IdAa64mmfr3El1, IdAa64pfr0El1, IdAa64pfr1El1, IdAa64smfr0El1, IsrEl1, MairEl1,
MdccintEl1, MdscrEl1, MidrEl1, MpamidrEl1, MpidrEl1, ParEl1, RgsrEl1, SctlrEl1, SpEl1, SpsrEl1,
Tcr2El1, TcrEl1, TfsrEl1, Tfsre0El1, TpidrEl1, Ttbr0El1, Ttbr1El1, VbarEl1,
};
#[cfg(feature = "el2")]
use crate::{
CnthctlEl2, CnthpCtlEl2, CnthpCvalEl2, CnthpTvalEl2, CnthpsCtlEl2, CnthpsCvalEl2,
CnthpsTvalEl2, CnthvCtlEl2, CnthvCvalEl2, CnthvTvalEl2, CnthvsCtlEl2, CnthvsCvalEl2,
CnthvsTvalEl2, CntpoffEl2, CntvoffEl2, ContextidrEl2, CptrEl2, ElrEl2, ElrHyp, EsrEl2, FarEl2,
GcscrEl2, HafgrtrEl2, HcrEl2, HcrxEl2, Hdfgrtr2El2, HdfgrtrEl2, Hdfgwtr2El2, HdfgwtrEl2,
Hfgitr2El2, HfgitrEl2, Hfgrtr2El2, HfgrtrEl2, Hfgwtr2El2, HfgwtrEl2, HpfarEl2, IccSreEl2,
IchHcrEl2, IchVmcrEl2, MairEl2, MdcrEl2, Mpam2El2, MpamhcrEl2, Mpamvpm0El2, Mpamvpm1El2,
Mpamvpm2El2, Mpamvpm3El2, Mpamvpm4El2, Mpamvpm5El2, Mpamvpm6El2, Mpamvpm7El2, MpamvpmvEl2,
SctlrEl2, SpEl2, SpsrEl2, Tcr2El2, TcrEl2, TfsrEl2, TpidrEl2, Ttbr0El2, Ttbr1El2, VbarEl2,
VdisrEl2, VmpidrEl2, VpidrEl2, VsesrEl2, VtcrEl2, VttbrEl2,
};
#[cfg(feature = "el3")]
use crate::{
CptrEl3, EsrEl3, GpccrEl3, GptbrEl3, IccCtlrEl3, IccIgrpen1El3, IccSreEl3, MairEl3, MdcrEl3,
Mpam3El3, ScrEl3, Sctlr2El3, SctlrEl3, SmcrEl3, SpsrEl3, TcrEl3, TpidrEl3, Ttbr0El3, ZcrEl3,
};
/// A set of fake system registers.
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub struct SystemRegisters {
/// Fake value for the `ACTLR` system register.
pub actlr: u32,
/// Fake value for the `ACTLR2` system register.
pub actlr2: u32,
#[cfg(feature = "el1")]
/// Fake value for the `ACTLR_EL1` system register.
pub actlr_el1: u64,
#[cfg(feature = "el2")]
/// Fake value for the `ACTLR_EL2` system register.
pub actlr_el2: u64,
/// Fake value for the `ADFSR` system register.
pub adfsr: u32,
#[cfg(feature = "el1")]
/// Fake value for the `AFSR0_EL1` system register.
pub afsr0_el1: u64,
#[cfg(feature = "el2")]
/// Fake value for the `AFSR0_EL2` system register.
pub afsr0_el2: u64,
#[cfg(feature = "el1")]
/// Fake value for the `AFSR1_EL1` system register.
pub afsr1_el1: u64,
#[cfg(feature = "el2")]
/// Fake value for the `AFSR1_EL2` system register.
pub afsr1_el2: u64,
/// Fake value for the `AIDR` system register.
pub aidr: u32,
/// Fake value for the `AIFSR` system register.
pub aifsr: u32,
/// Fake value for the `AMAIR0` system register.
pub amair0: u32,
/// Fake value for the `AMAIR1` system register.
pub amair1: u32,
#[cfg(feature = "el1")]
/// Fake value for the `AMAIR_EL1` system register.
pub amair_el1: u64,
#[cfg(feature = "el2")]
/// Fake value for the `AMAIR_EL2` system register.
pub amair_el2: u64,
/// Fake value for the `AMCFGR` system register.
pub amcfgr: Amcfgr,
/// Fake value for the `AMCGCR` system register.
pub amcgcr: Amcgcr,
/// Fake value for the `AMCNTENCLR0` system register.
pub amcntenclr0: Amcntenclr0,
/// Fake value for the `AMCNTENCLR1` system register.
pub amcntenclr1: Amcntenclr1,
/// Fake value for the `AMCNTENSET0` system register.
pub amcntenset0: Amcntenset0,
/// Fake value for the `AMCNTENSET1` system register.
pub amcntenset1: Amcntenset1,
/// Fake value for the `AMCR` system register.
pub amcr: Amcr,
/// Fake value for the `AMUSERENR` system register.
pub amuserenr: Amuserenr,
#[cfg(feature = "el1")]
/// Fake value for the `APIAKeyHi_EL1` system register.
pub apiakeyhi_el1: ApiakeyhiEl1,
#[cfg(feature = "el1")]
/// Fake value for the `APIAKeyLo_EL1` system register.
pub apiakeylo_el1: ApiakeyloEl1,
/// Fake value for the `CCSIDR` system register.
pub ccsidr: Ccsidr,
/// Fake value for the `CCSIDR2` system register.
pub ccsidr2: Ccsidr2,
#[cfg(feature = "el1")]
/// Fake value for the `CCSIDR_EL1` system register.
pub ccsidr_el1: CcsidrEl1,
/// Fake value for the `CLIDR` system register.
pub clidr: Clidr,
#[cfg(feature = "el1")]
/// Fake value for the `CLIDR_EL1` system register.
pub clidr_el1: ClidrEl1,
/// Fake value for the `CNTFRQ` system register.
pub cntfrq: Cntfrq,
/// Fake value for the `CNTFRQ_EL0` system register.
pub cntfrq_el0: CntfrqEl0,
/// Fake value for the `CNTHCTL` system register.
pub cnthctl: Cnthctl,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHCTL_EL2` system register.
pub cnthctl_el2: CnthctlEl2,
/// Fake value for the `CNTHPS_CTL` system register.
pub cnthps_ctl: CnthpsCtl,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHPS_CTL_EL2` system register.
pub cnthps_ctl_el2: CnthpsCtlEl2,
/// Fake value for the `CNTHPS_CVAL` system register.
pub cnthps_cval: CnthpsCval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHPS_CVAL_EL2` system register.
pub cnthps_cval_el2: CnthpsCvalEl2,
/// Fake value for the `CNTHPS_TVAL` system register.
pub cnthps_tval: CnthpsTval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHPS_TVAL_EL2` system register.
pub cnthps_tval_el2: CnthpsTvalEl2,
/// Fake value for the `CNTHP_CTL` system register.
pub cnthp_ctl: CnthpCtl,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHP_CTL_EL2` system register.
pub cnthp_ctl_el2: CnthpCtlEl2,
/// Fake value for the `CNTHP_CVAL` system register.
pub cnthp_cval: CnthpCval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHP_CVAL_EL2` system register.
pub cnthp_cval_el2: CnthpCvalEl2,
/// Fake value for the `CNTHP_TVAL` system register.
pub cnthp_tval: CnthpTval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHP_TVAL_EL2` system register.
pub cnthp_tval_el2: CnthpTvalEl2,
/// Fake value for the `CNTHVS_CTL` system register.
pub cnthvs_ctl: CnthvsCtl,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHVS_CTL_EL2` system register.
pub cnthvs_ctl_el2: CnthvsCtlEl2,
/// Fake value for the `CNTHVS_CVAL` system register.
pub cnthvs_cval: CnthvsCval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHVS_CVAL_EL2` system register.
pub cnthvs_cval_el2: CnthvsCvalEl2,
/// Fake value for the `CNTHVS_TVAL` system register.
pub cnthvs_tval: CnthvsTval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHVS_TVAL_EL2` system register.
pub cnthvs_tval_el2: CnthvsTvalEl2,
/// Fake value for the `CNTHV_CTL` system register.
pub cnthv_ctl: CnthvCtl,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHV_CTL_EL2` system register.
pub cnthv_ctl_el2: CnthvCtlEl2,
/// Fake value for the `CNTHV_CVAL` system register.
pub cnthv_cval: CnthvCval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHV_CVAL_EL2` system register.
pub cnthv_cval_el2: CnthvCvalEl2,
/// Fake value for the `CNTHV_TVAL` system register.
pub cnthv_tval: CnthvTval,
#[cfg(feature = "el2")]
/// Fake value for the `CNTHV_TVAL_EL2` system register.
pub cnthv_tval_el2: CnthvTvalEl2,
/// Fake value for the `CNTKCTL` system register.
pub cntkctl: Cntkctl,
#[cfg(feature = "el1")]
/// Fake value for the `CNTKCTL_EL1` system register.
pub cntkctl_el1: CntkctlEl1,
/// Fake value for the `CNTPCT` system register.
pub cntpct: Cntpct,
/// Fake value for the `CNTPCTSS` system register.
pub cntpctss: Cntpctss,
/// Fake value for the `CNTPCTSS_EL0` system register.
pub cntpctss_el0: CntpctssEl0,
/// Fake value for the `CNTPCT_EL0` system register.
pub cntpct_el0: CntpctEl0,
#[cfg(feature = "el2")]
/// Fake value for the `CNTPOFF_EL2` system register.
pub cntpoff_el2: CntpoffEl2,
#[cfg(feature = "el1")]
/// Fake value for the `CNTPS_CTL_EL1` system register.
pub cntps_ctl_el1: CntpsCtlEl1,
#[cfg(feature = "el1")]
/// Fake value for the `CNTPS_CVAL_EL1` system register.
pub cntps_cval_el1: CntpsCvalEl1,
#[cfg(feature = "el1")]
/// Fake value for the `CNTPS_TVAL_EL1` system register.
pub cntps_tval_el1: CntpsTvalEl1,
/// Fake value for the `CNTP_CTL` system register.
pub cntp_ctl: CntpCtl,
/// Fake value for the `CNTP_CTL_EL0` system register.
pub cntp_ctl_el0: CntpCtlEl0,
/// Fake value for the `CNTP_CVAL` system register.
pub cntp_cval: CntpCval,
/// Fake value for the `CNTP_CVAL_EL0` system register.
pub cntp_cval_el0: CntpCvalEl0,
/// Fake value for the `CNTP_TVAL` system register.
pub cntp_tval: CntpTval,
/// Fake value for the `CNTP_TVAL_EL0` system register.
pub cntp_tval_el0: CntpTvalEl0,
/// Fake value for the `CNTVCT` system register.
pub cntvct: Cntvct,
/// Fake value for the `CNTVCTSS` system register.
pub cntvctss: Cntvctss,
/// Fake value for the `CNTVCTSS_EL0` system register.
pub cntvctss_el0: CntvctssEl0,
/// Fake value for the `CNTVCT_EL0` system register.
pub cntvct_el0: CntvctEl0,
/// Fake value for the `CNTVOFF` system register.
pub cntvoff: Cntvoff,
#[cfg(feature = "el2")]
/// Fake value for the `CNTVOFF_EL2` system register.
pub cntvoff_el2: CntvoffEl2,
/// Fake value for the `CNTV_CTL` system register.
pub cntv_ctl: CntvCtl,
/// Fake value for the `CNTV_CTL_EL0` system register.
pub cntv_ctl_el0: CntvCtlEl0,
/// Fake value for the `CNTV_CVAL` system register.
pub cntv_cval: CntvCval,
/// Fake value for the `CNTV_CVAL_EL0` system register.
pub cntv_cval_el0: CntvCvalEl0,
/// Fake value for the `CNTV_TVAL` system register.
pub cntv_tval: CntvTval,
/// Fake value for the `CNTV_TVAL_EL0` system register.
pub cntv_tval_el0: CntvTvalEl0,
/// Fake value for the `CONTEXTIDR` system register.
pub contextidr: Contextidr,
#[cfg(feature = "el1")]
/// Fake value for the `CONTEXTIDR_EL1` system register.
pub contextidr_el1: ContextidrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `CONTEXTIDR_EL2` system register.
pub contextidr_el2: ContextidrEl2,
/// Fake value for the `CPACR` system register.
pub cpacr: Cpacr,
#[cfg(feature = "el1")]
/// Fake value for the `CPACR_EL1` system register.
pub cpacr_el1: CpacrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `CPTR_EL2` system register.
pub cptr_el2: CptrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `CPTR_EL3` system register.
pub cptr_el3: CptrEl3,
/// Fake value for the `CSSELR` system register.
pub csselr: Csselr,
#[cfg(feature = "el1")]
/// Fake value for the `CSSELR_EL1` system register.
pub csselr_el1: CsselrEl1,
/// Fake value for the `CTR` system register.
pub ctr: Ctr,
/// Fake value for the `CTR_EL0` system register.
pub ctr_el0: CtrEl0,
/// Fake value for the `CurrentEL` system register.
pub currentel: Currentel,
/// Fake value for the `DACR` system register.
pub dacr: Dacr,
/// Fake value for the `DBGAUTHSTATUS` system register.
pub dbgauthstatus: Dbgauthstatus,
/// Fake value for the `DBGCLAIMCLR` system register.
pub dbgclaimclr: Dbgclaimclr,
/// Fake value for the `DBGCLAIMSET` system register.
pub dbgclaimset: Dbgclaimset,
/// Fake value for the `DBGDCCINT` system register.
pub dbgdccint: Dbgdccint,
/// Fake value for the `DBGDEVID` system register.
pub dbgdevid: Dbgdevid,
/// Fake value for the `DBGDEVID1` system register.
pub dbgdevid1: Dbgdevid1,
/// Fake value for the `DBGDEVID2` system register.
pub dbgdevid2: u32,
/// Fake value for the `DBGDIDR` system register.
pub dbgdidr: Dbgdidr,
/// Fake value for the `DBGDRAR` system register.
pub dbgdrar: Dbgdrar,
/// Fake value for the `DBGDSAR` system register.
pub dbgdsar: u64,
/// Fake value for the `DBGDSCRext` system register.
pub dbgdscrext: Dbgdscrext,
/// Fake value for the `DBGDSCRint` system register.
pub dbgdscrint: Dbgdscrint,
/// Fake value for the `DBGDTRRXext` system register.
pub dbgdtrrxext: Dbgdtrrxext,
/// Fake value for the `DBGDTRRXint` system register.
pub dbgdtrrxint: Dbgdtrrxint,
/// Fake value for the `DBGDTRTXext` system register.
pub dbgdtrtxext: Dbgdtrtxext,
/// Fake value for the `DBGDTRTXint` system register.
pub dbgdtrtxint: Dbgdtrtxint,
/// Fake value for the `DBGOSDLR` system register.
pub dbgosdlr: Dbgosdlr,
/// Fake value for the `DBGOSECCR` system register.
pub dbgoseccr: Dbgoseccr,
/// Fake value for the `DBGOSLAR` system register.
pub dbgoslar: Dbgoslar,
/// Fake value for the `DBGOSLSR` system register.
pub dbgoslsr: Dbgoslsr,
/// Fake value for the `DBGPRCR` system register.
pub dbgprcr: Dbgprcr,
/// Fake value for the `DBGVCR` system register.
pub dbgvcr: Dbgvcr,
/// Fake value for the `DBGWFAR` system register.
pub dbgwfar: u32,
/// Fake value for the `DFAR` system register.
pub dfar: Dfar,
/// Fake value for the `DFSR` system register.
pub dfsr: Dfsr,
/// Fake value for the `DISR` system register.
pub disr: Disr,
#[cfg(feature = "el1")]
/// Fake value for the `DISR_EL1` system register.
pub disr_el1: DisrEl1,
/// Fake value for the `DIT` system register.
pub dit: Dit,
/// Fake value for the `DLR` system register.
pub dlr: Dlr,
/// Fake value for the `DSPSR` system register.
pub dspsr: Dspsr,
/// Fake value for the `DSPSR2` system register.
pub dspsr2: Dspsr2,
#[cfg(feature = "el1")]
/// Fake value for the `ELR_EL1` system register.
pub elr_el1: ElrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `ELR_EL2` system register.
pub elr_el2: ElrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `ELR_hyp` system register.
pub elr_hyp: ElrHyp,
/// Fake value for the `ERRIDR` system register.
pub erridr: Erridr,
/// Fake value for the `ERRSELR` system register.
pub errselr: Errselr,
/// Fake value for the `ERXADDR` system register.
pub erxaddr: Erxaddr,
/// Fake value for the `ERXADDR2` system register.
pub erxaddr2: Erxaddr2,
/// Fake value for the `ERXCTLR` system register.
pub erxctlr: Erxctlr,
/// Fake value for the `ERXCTLR2` system register.
pub erxctlr2: Erxctlr2,
/// Fake value for the `ERXFR` system register.
pub erxfr: Erxfr,
/// Fake value for the `ERXFR2` system register.
pub erxfr2: Erxfr2,
/// Fake value for the `ERXMISC0` system register.
pub erxmisc0: Erxmisc0,
/// Fake value for the `ERXMISC1` system register.
pub erxmisc1: Erxmisc1,
/// Fake value for the `ERXMISC2` system register.
pub erxmisc2: Erxmisc2,
/// Fake value for the `ERXMISC3` system register.
pub erxmisc3: Erxmisc3,
/// Fake value for the `ERXMISC4` system register.
pub erxmisc4: Erxmisc4,
/// Fake value for the `ERXMISC5` system register.
pub erxmisc5: Erxmisc5,
/// Fake value for the `ERXMISC6` system register.
pub erxmisc6: Erxmisc6,
/// Fake value for the `ERXMISC7` system register.
pub erxmisc7: Erxmisc7,
/// Fake value for the `ERXSTATUS` system register.
pub erxstatus: Erxstatus,
#[cfg(feature = "el1")]
/// Fake value for the `ESR_EL1` system register.
pub esr_el1: EsrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `ESR_EL2` system register.
pub esr_el2: EsrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `ESR_EL3` system register.
pub esr_el3: EsrEl3,
#[cfg(feature = "el1")]
/// Fake value for the `FAR_EL1` system register.
pub far_el1: FarEl1,
#[cfg(feature = "el2")]
/// Fake value for the `FAR_EL2` system register.
pub far_el2: FarEl2,
/// Fake value for the `FCSEIDR` system register.
pub fcseidr: u32,
#[cfg(feature = "el1")]
/// Fake value for the `GCR_EL1` system register.
pub gcr_el1: GcrEl1,
#[cfg(feature = "el1")]
/// Fake value for the `GCSCR_EL1` system register.
pub gcscr_el1: GcscrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `GCSCR_EL2` system register.
pub gcscr_el2: GcscrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `GPCCR_EL3` system register.
pub gpccr_el3: GpccrEl3,
#[cfg(feature = "el3")]
/// Fake value for the `GPTBR_EL3` system register.
pub gptbr_el3: GptbrEl3,
/// Fake value for the `HACR` system register.
pub hacr: u32,
#[cfg(feature = "el2")]
/// Fake value for the `HACR_EL2` system register.
pub hacr_el2: u64,
/// Fake value for the `HACTLR` system register.
pub hactlr: u32,
/// Fake value for the `HACTLR2` system register.
pub hactlr2: u32,
/// Fake value for the `HADFSR` system register.
pub hadfsr: u32,
#[cfg(feature = "el2")]
/// Fake value for the `HAFGRTR_EL2` system register.
pub hafgrtr_el2: HafgrtrEl2,
/// Fake value for the `HAIFSR` system register.
pub haifsr: u32,
/// Fake value for the `HAMAIR0` system register.
pub hamair0: u32,
/// Fake value for the `HAMAIR1` system register.
pub hamair1: u32,
/// Fake value for the `HCPTR` system register.
pub hcptr: Hcptr,
/// Fake value for the `HCR` system register.
pub hcr: Hcr,
/// Fake value for the `HCR2` system register.
pub hcr2: Hcr2,
#[cfg(feature = "el2")]
/// Fake value for the `HCRX_EL2` system register.
pub hcrx_el2: HcrxEl2,
#[cfg(feature = "el2")]
/// Fake value for the `HCR_EL2` system register.
pub hcr_el2: HcrEl2,
/// Fake value for the `HDCR` system register.
pub hdcr: Hdcr,
/// Fake value for the `HDFAR` system register.
pub hdfar: Hdfar,
#[cfg(feature = "el2")]
/// Fake value for the `HDFGRTR2_EL2` system register.
pub hdfgrtr2_el2: Hdfgrtr2El2,
#[cfg(feature = "el2")]
/// Fake value for the `HDFGRTR_EL2` system register.
pub hdfgrtr_el2: HdfgrtrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `HDFGWTR2_EL2` system register.
pub hdfgwtr2_el2: Hdfgwtr2El2,
#[cfg(feature = "el2")]
/// Fake value for the `HDFGWTR_EL2` system register.
pub hdfgwtr_el2: HdfgwtrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGITR2_EL2` system register.
pub hfgitr2_el2: Hfgitr2El2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGITR_EL2` system register.
pub hfgitr_el2: HfgitrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGRTR2_EL2` system register.
pub hfgrtr2_el2: Hfgrtr2El2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGRTR_EL2` system register.
pub hfgrtr_el2: HfgrtrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGWTR2_EL2` system register.
pub hfgwtr2_el2: Hfgwtr2El2,
#[cfg(feature = "el2")]
/// Fake value for the `HFGWTR_EL2` system register.
pub hfgwtr_el2: HfgwtrEl2,
/// Fake value for the `HIFAR` system register.
pub hifar: Hifar,
/// Fake value for the `HMAIR0` system register.
pub hmair0: Hmair0,
/// Fake value for the `HMAIR1` system register.
pub hmair1: Hmair1,
/// Fake value for the `HPFAR` system register.
pub hpfar: Hpfar,
#[cfg(feature = "el2")]
/// Fake value for the `HPFAR_EL2` system register.
pub hpfar_el2: HpfarEl2,
/// Fake value for the `HRMR` system register.
pub hrmr: Hrmr,
/// Fake value for the `HSCTLR` system register.
pub hsctlr: Hsctlr,
/// Fake value for the `HSR` system register.
pub hsr: Hsr,
/// Fake value for the `HSTR` system register.
pub hstr: u32,
#[cfg(feature = "el2")]
/// Fake value for the `HSTR_EL2` system register.
pub hstr_el2: u64,
/// Fake value for the `HTCR` system register.
pub htcr: Htcr,
/// Fake value for the `HTPIDR` system register.
pub htpidr: Htpidr,
/// Fake value for the `HTRFCR` system register.
pub htrfcr: Htrfcr,
/// Fake value for the `HTTBR` system register.
pub httbr: Httbr,
/// Fake value for the `HVBAR` system register.
pub hvbar: Hvbar,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP0R0_EL1` system register.
pub icc_ap0r0_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP0R1_EL1` system register.
pub icc_ap0r1_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP0R2_EL1` system register.
pub icc_ap0r2_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP0R3_EL1` system register.
pub icc_ap0r3_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP1R0_EL1` system register.
pub icc_ap1r0_el1: IccAp1r0El1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP1R1_EL1` system register.
pub icc_ap1r1_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP1R2_EL1` system register.
pub icc_ap1r2_el1: u64,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_AP1R3_EL1` system register.
pub icc_ap1r3_el1: u64,
/// Fake value for the `ICC_ASGI1R` system register.
pub icc_asgi1r: IccAsgi1r,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_ASGI1R_EL1` system register.
pub icc_asgi1r_el1: IccAsgi1rEl1,
/// Fake value for the `ICC_BPR0` system register.
pub icc_bpr0: IccBpr0,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_BPR0_EL1` system register.
pub icc_bpr0_el1: IccBpr0El1,
/// Fake value for the `ICC_BPR1` system register.
pub icc_bpr1: IccBpr1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_BPR1_EL1` system register.
pub icc_bpr1_el1: IccBpr1El1,
/// Fake value for the `ICC_CTLR` system register.
pub icc_ctlr: IccCtlr,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_CTLR_EL1` system register.
pub icc_ctlr_el1: IccCtlrEl1,
#[cfg(feature = "el3")]
/// Fake value for the `ICC_CTLR_EL3` system register.
pub icc_ctlr_el3: IccCtlrEl3,
/// Fake value for the `ICC_DIR` system register.
pub icc_dir: IccDir,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_DIR_EL1` system register.
pub icc_dir_el1: IccDirEl1,
/// Fake value for the `ICC_EOIR0` system register.
pub icc_eoir0: IccEoir0,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_EOIR0_EL1` system register.
pub icc_eoir0_el1: IccEoir0El1,
/// Fake value for the `ICC_EOIR1` system register.
pub icc_eoir1: IccEoir1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_EOIR1_EL1` system register.
pub icc_eoir1_el1: IccEoir1El1,
/// Fake value for the `ICC_HPPIR0` system register.
pub icc_hppir0: IccHppir0,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_HPPIR0_EL1` system register.
pub icc_hppir0_el1: IccHppir0El1,
/// Fake value for the `ICC_HPPIR1` system register.
pub icc_hppir1: IccHppir1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_HPPIR1_EL1` system register.
pub icc_hppir1_el1: IccHppir1El1,
/// Fake value for the `ICC_IAR0` system register.
pub icc_iar0: IccIar0,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_IAR0_EL1` system register.
pub icc_iar0_el1: IccIar0El1,
/// Fake value for the `ICC_IAR1` system register.
pub icc_iar1: IccIar1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_IAR1_EL1` system register.
pub icc_iar1_el1: IccIar1El1,
/// Fake value for the `ICC_IGRPEN0` system register.
pub icc_igrpen0: IccIgrpen0,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_IGRPEN0_EL1` system register.
pub icc_igrpen0_el1: IccIgrpen0El1,
/// Fake value for the `ICC_IGRPEN1` system register.
pub icc_igrpen1: IccIgrpen1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_IGRPEN1_EL1` system register.
pub icc_igrpen1_el1: IccIgrpen1El1,
#[cfg(feature = "el3")]
/// Fake value for the `ICC_IGRPEN1_EL3` system register.
pub icc_igrpen1_el3: IccIgrpen1El3,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_NMIAR1_EL1` system register.
pub icc_nmiar1_el1: IccNmiar1El1,
/// Fake value for the `ICC_PMR` system register.
pub icc_pmr: IccPmr,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_PMR_EL1` system register.
pub icc_pmr_el1: IccPmrEl1,
/// Fake value for the `ICC_RPR` system register.
pub icc_rpr: IccRpr,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_RPR_EL1` system register.
pub icc_rpr_el1: IccRprEl1,
/// Fake value for the `ICC_SGI0R` system register.
pub icc_sgi0r: IccSgi0r,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_SGI0R_EL1` system register.
pub icc_sgi0r_el1: IccSgi0rEl1,
/// Fake value for the `ICC_SGI1R` system register.
pub icc_sgi1r: IccSgi1r,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_SGI1R_EL1` system register.
pub icc_sgi1r_el1: IccSgi1rEl1,
#[cfg(feature = "el1")]
/// Fake value for the `ICC_SRE_EL1` system register.
pub icc_sre_el1: IccSreEl1,
#[cfg(feature = "el2")]
/// Fake value for the `ICC_SRE_EL2` system register.
pub icc_sre_el2: IccSreEl2,
#[cfg(feature = "el3")]
/// Fake value for the `ICC_SRE_EL3` system register.
pub icc_sre_el3: IccSreEl3,
#[cfg(feature = "el2")]
/// Fake value for the `ICH_HCR_EL2` system register.
pub ich_hcr_el2: IchHcrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `ICH_VMCR_EL2` system register.
pub ich_vmcr_el2: IchVmcrEl2,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64DFR0_EL1` system register.
pub id_aa64dfr0_el1: IdAa64dfr0El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64DFR1_EL1` system register.
pub id_aa64dfr1_el1: IdAa64dfr1El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64ISAR1_EL1` system register.
pub id_aa64isar1_el1: IdAa64isar1El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64ISAR2_EL1` system register.
pub id_aa64isar2_el1: IdAa64isar2El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64MMFR0_EL1` system register.
pub id_aa64mmfr0_el1: IdAa64mmfr0El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64MMFR1_EL1` system register.
pub id_aa64mmfr1_el1: IdAa64mmfr1El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64MMFR2_EL1` system register.
pub id_aa64mmfr2_el1: IdAa64mmfr2El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64MMFR3_EL1` system register.
pub id_aa64mmfr3_el1: IdAa64mmfr3El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64PFR0_EL1` system register.
pub id_aa64pfr0_el1: IdAa64pfr0El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64PFR1_EL1` system register.
pub id_aa64pfr1_el1: IdAa64pfr1El1,
#[cfg(feature = "el1")]
/// Fake value for the `ID_AA64SMFR0_EL1` system register.
pub id_aa64smfr0_el1: IdAa64smfr0El1,
/// Fake value for the `ID_AFR0` system register.
pub id_afr0: u32,
/// Fake value for the `ID_DFR0` system register.
pub id_dfr0: IdDfr0,
/// Fake value for the `ID_DFR1` system register.
pub id_dfr1: IdDfr1,
/// Fake value for the `ID_ISAR0` system register.
pub id_isar0: IdIsar0,
/// Fake value for the `ID_ISAR1` system register.
pub id_isar1: IdIsar1,
/// Fake value for the `ID_ISAR2` system register.
pub id_isar2: IdIsar2,
/// Fake value for the `ID_ISAR3` system register.
pub id_isar3: IdIsar3,
/// Fake value for the `ID_ISAR4` system register.
pub id_isar4: IdIsar4,
/// Fake value for the `ID_ISAR5` system register.
pub id_isar5: IdIsar5,
/// Fake value for the `ID_ISAR6` system register.
pub id_isar6: IdIsar6,
/// Fake value for the `ID_MMFR0` system register.
pub id_mmfr0: IdMmfr0,
/// Fake value for the `ID_MMFR1` system register.
pub id_mmfr1: IdMmfr1,
/// Fake value for the `ID_MMFR2` system register.
pub id_mmfr2: IdMmfr2,
/// Fake value for the `ID_MMFR3` system register.
pub id_mmfr3: IdMmfr3,
/// Fake value for the `ID_MMFR4` system register.
pub id_mmfr4: IdMmfr4,
/// Fake value for the `ID_MMFR5` system register.
pub id_mmfr5: IdMmfr5,
/// Fake value for the `ID_PFR0` system register.
pub id_pfr0: IdPfr0,
/// Fake value for the `ID_PFR1` system register.
pub id_pfr1: IdPfr1,
/// Fake value for the `ID_PFR2` system register.
pub id_pfr2: IdPfr2,
/// Fake value for the `IFAR` system register.
pub ifar: Ifar,
/// Fake value for the `IFSR` system register.
pub ifsr: Ifsr,
/// Fake value for the `ISR` system register.
pub isr: Isr,
#[cfg(feature = "el1")]
/// Fake value for the `ISR_EL1` system register.
pub isr_el1: IsrEl1,
/// Fake value for the `JIDR` system register.
pub jidr: u32,
/// Fake value for the `JMCR` system register.
pub jmcr: u32,
/// Fake value for the `JOSCR` system register.
pub joscr: u32,
/// Fake value for the `MAIR0` system register.
pub mair0: Mair0,
/// Fake value for the `MAIR1` system register.
pub mair1: Mair1,
#[cfg(feature = "el1")]
/// Fake value for the `MAIR_EL1` system register.
pub mair_el1: MairEl1,
#[cfg(feature = "el2")]
/// Fake value for the `MAIR_EL2` system register.
pub mair_el2: MairEl2,
#[cfg(feature = "el3")]
/// Fake value for the `MAIR_EL3` system register.
pub mair_el3: MairEl3,
#[cfg(feature = "el1")]
/// Fake value for the `MDCCINT_EL1` system register.
pub mdccint_el1: MdccintEl1,
#[cfg(feature = "el2")]
/// Fake value for the `MDCR_EL2` system register.
pub mdcr_el2: MdcrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `MDCR_EL3` system register.
pub mdcr_el3: MdcrEl3,
#[cfg(feature = "el1")]
/// Fake value for the `MDSCR_EL1` system register.
pub mdscr_el1: MdscrEl1,
/// Fake value for the `MIDR` system register.
pub midr: Midr,
#[cfg(feature = "el1")]
/// Fake value for the `MIDR_EL1` system register.
pub midr_el1: MidrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `MPAM2_EL2` system register.
pub mpam2_el2: Mpam2El2,
#[cfg(feature = "el3")]
/// Fake value for the `MPAM3_EL3` system register.
pub mpam3_el3: Mpam3El3,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMHCR_EL2` system register.
pub mpamhcr_el2: MpamhcrEl2,
#[cfg(feature = "el1")]
/// Fake value for the `MPAMIDR_EL1` system register.
pub mpamidr_el1: MpamidrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM0_EL2` system register.
pub mpamvpm0_el2: Mpamvpm0El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM1_EL2` system register.
pub mpamvpm1_el2: Mpamvpm1El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM2_EL2` system register.
pub mpamvpm2_el2: Mpamvpm2El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM3_EL2` system register.
pub mpamvpm3_el2: Mpamvpm3El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM4_EL2` system register.
pub mpamvpm4_el2: Mpamvpm4El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM5_EL2` system register.
pub mpamvpm5_el2: Mpamvpm5El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM6_EL2` system register.
pub mpamvpm6_el2: Mpamvpm6El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPM7_EL2` system register.
pub mpamvpm7_el2: Mpamvpm7El2,
#[cfg(feature = "el2")]
/// Fake value for the `MPAMVPMV_EL2` system register.
pub mpamvpmv_el2: MpamvpmvEl2,
/// Fake value for the `MPIDR` system register.
pub mpidr: Mpidr,
#[cfg(feature = "el1")]
/// Fake value for the `MPIDR_EL1` system register.
pub mpidr_el1: MpidrEl1,
/// Fake value for the `MVBAR` system register.
pub mvbar: Mvbar,
/// Fake value for the `NMRR` system register.
pub nmrr: Nmrr,
/// Fake value for the `NSACR` system register.
pub nsacr: Nsacr,
/// Fake value for the `PAR` system register.
pub par: Par,
#[cfg(feature = "el1")]
/// Fake value for the `PAR_EL1` system register.
pub par_el1: ParEl1,
/// Fake value for the `PMCCFILTR` system register.
pub pmccfiltr: Pmccfiltr,
/// Fake value for the `PMCCNTR` system register.
pub pmccntr: Pmccntr,
/// Fake value for the `PMCEID0` system register.
pub pmceid0: Pmceid0,
/// Fake value for the `PMCEID1` system register.
pub pmceid1: Pmceid1,
/// Fake value for the `PMCEID2` system register.
pub pmceid2: Pmceid2,
/// Fake value for the `PMCEID3` system register.
pub pmceid3: Pmceid3,
/// Fake value for the `PMCNTENCLR` system register.
pub pmcntenclr: Pmcntenclr,
/// Fake value for the `PMCNTENSET` system register.
pub pmcntenset: Pmcntenset,
/// Fake value for the `PMCR` system register.
pub pmcr: Pmcr,
/// Fake value for the `PMCR_EL0` system register.
pub pmcr_el0: PmcrEl0,
/// Fake value for the `PMINTENCLR` system register.
pub pmintenclr: Pmintenclr,
/// Fake value for the `PMINTENSET` system register.
pub pmintenset: Pmintenset,
/// Fake value for the `PMMIR` system register.
pub pmmir: Pmmir,
/// Fake value for the `PMOVSR` system register.
pub pmovsr: Pmovsr,
/// Fake value for the `PMOVSSET` system register.
pub pmovsset: Pmovsset,
/// Fake value for the `PMSELR` system register.
pub pmselr: Pmselr,
/// Fake value for the `PMSWINC` system register.
pub pmswinc: Pmswinc,
/// Fake value for the `PMUSERENR` system register.
pub pmuserenr: Pmuserenr,
/// Fake value for the `PMXEVTYPER` system register.
pub pmxevtyper: Pmxevtyper,
/// Fake value for the `PRRR` system register.
pub prrr: Prrr,
/// Fake value for the `REVIDR` system register.
pub revidr: u32,
#[cfg(feature = "el1")]
/// Fake value for the `RGSR_EL1` system register.
pub rgsr_el1: RgsrEl1,
/// Fake value for the `RMR` system register.
pub rmr: Rmr,
/// Fake value for the `RVBAR` system register.
pub rvbar: Rvbar,
/// Fake value for the `SCR` system register.
pub scr: Scr,
#[cfg(feature = "el3")]
/// Fake value for the `SCR_EL3` system register.
pub scr_el3: ScrEl3,
/// Fake value for the `SCTLR` system register.
pub sctlr: Sctlr,
#[cfg(feature = "el3")]
/// Fake value for the `SCTLR2_EL3` system register.
pub sctlr2_el3: Sctlr2El3,
#[cfg(feature = "el1")]
/// Fake value for the `SCTLR_EL1` system register.
pub sctlr_el1: SctlrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `SCTLR_EL2` system register.
pub sctlr_el2: SctlrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `SCTLR_EL3` system register.
pub sctlr_el3: SctlrEl3,
/// Fake value for the `SDCR` system register.
pub sdcr: Sdcr,
/// Fake value for the `SDER` system register.
pub sder: Sder,
#[cfg(feature = "el3")]
/// Fake value for the `SMCR_EL3` system register.
pub smcr_el3: SmcrEl3,
#[cfg(feature = "el1")]
/// Fake value for the `SPSR_EL1` system register.
pub spsr_el1: SpsrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `SPSR_EL2` system register.
pub spsr_el2: SpsrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `SPSR_EL3` system register.
pub spsr_el3: SpsrEl3,
#[cfg(feature = "el1")]
/// Fake value for the `SP_EL1` system register.
pub sp_el1: SpEl1,
#[cfg(feature = "el2")]
/// Fake value for the `SP_EL2` system register.
pub sp_el2: SpEl2,
/// Fake value for the `SVCR` system register.
pub svcr: Svcr,
/// Fake value for the `TCMTR` system register.
pub tcmtr: u32,
#[cfg(feature = "el1")]
/// Fake value for the `TCR2_EL1` system register.
pub tcr2_el1: Tcr2El1,
#[cfg(feature = "el2")]
/// Fake value for the `TCR2_EL2` system register.
pub tcr2_el2: Tcr2El2,
#[cfg(feature = "el1")]
/// Fake value for the `TCR_EL1` system register.
pub tcr_el1: TcrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `TCR_EL2` system register.
pub tcr_el2: TcrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `TCR_EL3` system register.
pub tcr_el3: TcrEl3,
#[cfg(feature = "el1")]
/// Fake value for the `TFSRE0_EL1` system register.
pub tfsre0_el1: Tfsre0El1,
#[cfg(feature = "el1")]
/// Fake value for the `TFSR_EL1` system register.
pub tfsr_el1: TfsrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `TFSR_EL2` system register.
pub tfsr_el2: TfsrEl2,
/// Fake value for the `TLBTR` system register.
pub tlbtr: Tlbtr,
/// Fake value for the `TPIDRPRW` system register.
pub tpidrprw: Tpidrprw,
/// Fake value for the `TPIDRRO_EL0` system register.
pub tpidrro_el0: TpidrroEl0,
/// Fake value for the `TPIDRURO` system register.
pub tpidruro: Tpidruro,
/// Fake value for the `TPIDRURW` system register.
pub tpidrurw: Tpidrurw,
/// Fake value for the `TPIDR_EL0` system register.
pub tpidr_el0: TpidrEl0,
#[cfg(feature = "el1")]
/// Fake value for the `TPIDR_EL1` system register.
pub tpidr_el1: TpidrEl1,
#[cfg(feature = "el2")]
/// Fake value for the `TPIDR_EL2` system register.
pub tpidr_el2: TpidrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `TPIDR_EL3` system register.
pub tpidr_el3: TpidrEl3,
/// Fake value for the `TRFCR` system register.
pub trfcr: Trfcr,
/// Fake value for the `TTBCR` system register.
pub ttbcr: Ttbcr,
/// Fake value for the `TTBCR2` system register.
pub ttbcr2: Ttbcr2,
/// Fake value for the `TTBR0` system register.
pub ttbr0: Ttbr0,
#[cfg(feature = "el1")]
/// Fake value for the `TTBR0_EL1` system register.
pub ttbr0_el1: Ttbr0El1,
#[cfg(feature = "el2")]
/// Fake value for the `TTBR0_EL2` system register.
pub ttbr0_el2: Ttbr0El2,
#[cfg(feature = "el3")]
/// Fake value for the `TTBR0_EL3` system register.
pub ttbr0_el3: Ttbr0El3,
/// Fake value for the `TTBR1` system register.
pub ttbr1: Ttbr1,
#[cfg(feature = "el1")]
/// Fake value for the `TTBR1_EL1` system register.
pub ttbr1_el1: Ttbr1El1,
#[cfg(feature = "el2")]
/// Fake value for the `TTBR1_EL2` system register.
pub ttbr1_el2: Ttbr1El2,
/// Fake value for the `VBAR` system register.
pub vbar: Vbar,
#[cfg(feature = "el1")]
/// Fake value for the `VBAR_EL1` system register.
pub vbar_el1: VbarEl1,
#[cfg(feature = "el2")]
/// Fake value for the `VBAR_EL2` system register.
pub vbar_el2: VbarEl2,
/// Fake value for the `VDFSR` system register.
pub vdfsr: Vdfsr,
/// Fake value for the `VDISR` system register.
pub vdisr: Vdisr,
#[cfg(feature = "el2")]
/// Fake value for the `VDISR_EL2` system register.
pub vdisr_el2: VdisrEl2,
/// Fake value for the `VMPIDR` system register.
pub vmpidr: Vmpidr,
#[cfg(feature = "el2")]
/// Fake value for the `VMPIDR_EL2` system register.
pub vmpidr_el2: VmpidrEl2,
/// Fake value for the `VPIDR` system register.
pub vpidr: Vpidr,
#[cfg(feature = "el2")]
/// Fake value for the `VPIDR_EL2` system register.
pub vpidr_el2: VpidrEl2,
#[cfg(feature = "el2")]
/// Fake value for the `VSESR_EL2` system register.
pub vsesr_el2: VsesrEl2,
/// Fake value for the `VTCR` system register.
pub vtcr: Vtcr,
#[cfg(feature = "el2")]
/// Fake value for the `VTCR_EL2` system register.
pub vtcr_el2: VtcrEl2,
/// Fake value for the `VTTBR` system register.
pub vttbr: Vttbr,
#[cfg(feature = "el2")]
/// Fake value for the `VTTBR_EL2` system register.
pub vttbr_el2: VttbrEl2,
#[cfg(feature = "el3")]
/// Fake value for the `ZCR_EL3` system register.
pub zcr_el3: ZcrEl3,
}
impl SystemRegisters {
pub(crate) const fn new() -> Self {
Self {
actlr: 0,
actlr2: 0,
#[cfg(feature = "el1")]
actlr_el1: 0,
#[cfg(feature = "el2")]
actlr_el2: 0,
adfsr: 0,
#[cfg(feature = "el1")]
afsr0_el1: 0,
#[cfg(feature = "el2")]
afsr0_el2: 0,
#[cfg(feature = "el1")]
afsr1_el1: 0,
#[cfg(feature = "el2")]
afsr1_el2: 0,
aidr: 0,
aifsr: 0,
amair0: 0,
amair1: 0,
#[cfg(feature = "el1")]
amair_el1: 0,
#[cfg(feature = "el2")]
amair_el2: 0,
amcfgr: Amcfgr::empty(),
amcgcr: Amcgcr::empty(),
amcntenclr0: Amcntenclr0::empty(),
amcntenclr1: Amcntenclr1::empty(),
amcntenset0: Amcntenset0::empty(),
amcntenset1: Amcntenset1::empty(),
amcr: Amcr::empty(),
amuserenr: Amuserenr::empty(),
#[cfg(feature = "el1")]
apiakeyhi_el1: ApiakeyhiEl1::empty(),
#[cfg(feature = "el1")]
apiakeylo_el1: ApiakeyloEl1::empty(),
ccsidr: Ccsidr::empty(),
ccsidr2: Ccsidr2::empty(),
#[cfg(feature = "el1")]
ccsidr_el1: CcsidrEl1::empty(),
clidr: Clidr::empty(),
#[cfg(feature = "el1")]
clidr_el1: ClidrEl1::empty(),
cntfrq: Cntfrq::empty(),
cntfrq_el0: CntfrqEl0::empty(),
cnthctl: Cnthctl::empty(),
#[cfg(feature = "el2")]
cnthctl_el2: CnthctlEl2::empty(),
cnthps_ctl: CnthpsCtl::empty(),
#[cfg(feature = "el2")]
cnthps_ctl_el2: CnthpsCtlEl2::empty(),
cnthps_cval: CnthpsCval::empty(),
#[cfg(feature = "el2")]
cnthps_cval_el2: CnthpsCvalEl2::empty(),
cnthps_tval: CnthpsTval::empty(),
#[cfg(feature = "el2")]
cnthps_tval_el2: CnthpsTvalEl2::empty(),
cnthp_ctl: CnthpCtl::empty(),
#[cfg(feature = "el2")]
cnthp_ctl_el2: CnthpCtlEl2::empty(),
cnthp_cval: CnthpCval::empty(),
#[cfg(feature = "el2")]
cnthp_cval_el2: CnthpCvalEl2::empty(),
cnthp_tval: CnthpTval::empty(),
#[cfg(feature = "el2")]
cnthp_tval_el2: CnthpTvalEl2::empty(),
cnthvs_ctl: CnthvsCtl::empty(),
#[cfg(feature = "el2")]
cnthvs_ctl_el2: CnthvsCtlEl2::empty(),
cnthvs_cval: CnthvsCval::empty(),
#[cfg(feature = "el2")]
cnthvs_cval_el2: CnthvsCvalEl2::empty(),
cnthvs_tval: CnthvsTval::empty(),
#[cfg(feature = "el2")]
cnthvs_tval_el2: CnthvsTvalEl2::empty(),
cnthv_ctl: CnthvCtl::empty(),
#[cfg(feature = "el2")]
cnthv_ctl_el2: CnthvCtlEl2::empty(),
cnthv_cval: CnthvCval::empty(),
#[cfg(feature = "el2")]
cnthv_cval_el2: CnthvCvalEl2::empty(),
cnthv_tval: CnthvTval::empty(),
#[cfg(feature = "el2")]
cnthv_tval_el2: CnthvTvalEl2::empty(),
cntkctl: Cntkctl::empty(),
#[cfg(feature = "el1")]
cntkctl_el1: CntkctlEl1::empty(),
cntpct: Cntpct::empty(),
cntpctss: Cntpctss::empty(),
cntpctss_el0: CntpctssEl0::empty(),
cntpct_el0: CntpctEl0::empty(),
#[cfg(feature = "el2")]
cntpoff_el2: CntpoffEl2::empty(),
#[cfg(feature = "el1")]
cntps_ctl_el1: CntpsCtlEl1::empty(),
#[cfg(feature = "el1")]
cntps_cval_el1: CntpsCvalEl1::empty(),
#[cfg(feature = "el1")]
cntps_tval_el1: CntpsTvalEl1::empty(),
cntp_ctl: CntpCtl::empty(),
cntp_ctl_el0: CntpCtlEl0::empty(),
cntp_cval: CntpCval::empty(),
cntp_cval_el0: CntpCvalEl0::empty(),
cntp_tval: CntpTval::empty(),
cntp_tval_el0: CntpTvalEl0::empty(),
cntvct: Cntvct::empty(),
cntvctss: Cntvctss::empty(),
cntvctss_el0: CntvctssEl0::empty(),
cntvct_el0: CntvctEl0::empty(),
cntvoff: Cntvoff::empty(),
#[cfg(feature = "el2")]
cntvoff_el2: CntvoffEl2::empty(),
cntv_ctl: CntvCtl::empty(),
cntv_ctl_el0: CntvCtlEl0::empty(),
cntv_cval: CntvCval::empty(),
cntv_cval_el0: CntvCvalEl0::empty(),
cntv_tval: CntvTval::empty(),
cntv_tval_el0: CntvTvalEl0::empty(),
contextidr: Contextidr::empty(),
#[cfg(feature = "el1")]
contextidr_el1: ContextidrEl1::empty(),
#[cfg(feature = "el2")]
contextidr_el2: ContextidrEl2::empty(),
cpacr: Cpacr::empty(),
#[cfg(feature = "el1")]
cpacr_el1: CpacrEl1::empty(),
#[cfg(feature = "el2")]
cptr_el2: CptrEl2::empty(),
#[cfg(feature = "el3")]
cptr_el3: CptrEl3::empty(),
csselr: Csselr::empty(),
#[cfg(feature = "el1")]
csselr_el1: CsselrEl1::empty(),
ctr: Ctr::empty(),
ctr_el0: CtrEl0::empty(),
currentel: Currentel::empty(),
dacr: Dacr::empty(),
dbgauthstatus: Dbgauthstatus::empty(),
dbgclaimclr: Dbgclaimclr::empty(),
dbgclaimset: Dbgclaimset::empty(),
dbgdccint: Dbgdccint::empty(),
dbgdevid: Dbgdevid::empty(),
dbgdevid1: Dbgdevid1::empty(),
dbgdevid2: 0,
dbgdidr: Dbgdidr::empty(),
dbgdrar: Dbgdrar::empty(),
dbgdsar: 0,
dbgdscrext: Dbgdscrext::empty(),
dbgdscrint: Dbgdscrint::empty(),
dbgdtrrxext: Dbgdtrrxext::empty(),
dbgdtrrxint: Dbgdtrrxint::empty(),
dbgdtrtxext: Dbgdtrtxext::empty(),
dbgdtrtxint: Dbgdtrtxint::empty(),
dbgosdlr: Dbgosdlr::empty(),
dbgoseccr: Dbgoseccr::empty(),
dbgoslar: Dbgoslar::empty(),
dbgoslsr: Dbgoslsr::empty(),
dbgprcr: Dbgprcr::empty(),
dbgvcr: Dbgvcr::empty(),
dbgwfar: 0,
dfar: Dfar::empty(),
dfsr: Dfsr::empty(),
disr: Disr::empty(),
#[cfg(feature = "el1")]
disr_el1: DisrEl1::empty(),
dit: Dit::empty(),
dlr: Dlr::empty(),
dspsr: Dspsr::empty(),
dspsr2: Dspsr2::empty(),
#[cfg(feature = "el1")]
elr_el1: ElrEl1::empty(),
#[cfg(feature = "el2")]
elr_el2: ElrEl2::empty(),
#[cfg(feature = "el2")]
elr_hyp: ElrHyp::empty(),
erridr: Erridr::empty(),
errselr: Errselr::empty(),
erxaddr: Erxaddr::empty(),
erxaddr2: Erxaddr2::empty(),
erxctlr: Erxctlr::empty(),
erxctlr2: Erxctlr2::empty(),
erxfr: Erxfr::empty(),
erxfr2: Erxfr2::empty(),
erxmisc0: Erxmisc0::empty(),
erxmisc1: Erxmisc1::empty(),
erxmisc2: Erxmisc2::empty(),
erxmisc3: Erxmisc3::empty(),
erxmisc4: Erxmisc4::empty(),
erxmisc5: Erxmisc5::empty(),
erxmisc6: Erxmisc6::empty(),
erxmisc7: Erxmisc7::empty(),
erxstatus: Erxstatus::empty(),
#[cfg(feature = "el1")]
esr_el1: EsrEl1::empty(),
#[cfg(feature = "el2")]
esr_el2: EsrEl2::empty(),
#[cfg(feature = "el3")]
esr_el3: EsrEl3::empty(),
#[cfg(feature = "el1")]
far_el1: FarEl1::empty(),
#[cfg(feature = "el2")]
far_el2: FarEl2::empty(),
fcseidr: 0,
#[cfg(feature = "el1")]
gcr_el1: GcrEl1::empty(),
#[cfg(feature = "el1")]
gcscr_el1: GcscrEl1::empty(),
#[cfg(feature = "el2")]
gcscr_el2: GcscrEl2::empty(),
#[cfg(feature = "el3")]
gpccr_el3: GpccrEl3::empty(),
#[cfg(feature = "el3")]
gptbr_el3: GptbrEl3::empty(),
hacr: 0,
#[cfg(feature = "el2")]
hacr_el2: 0,
hactlr: 0,
hactlr2: 0,
hadfsr: 0,
#[cfg(feature = "el2")]
hafgrtr_el2: HafgrtrEl2::empty(),
haifsr: 0,
hamair0: 0,
hamair1: 0,
hcptr: Hcptr::empty(),
hcr: Hcr::empty(),
hcr2: Hcr2::empty(),
#[cfg(feature = "el2")]
hcrx_el2: HcrxEl2::empty(),
#[cfg(feature = "el2")]
hcr_el2: HcrEl2::empty(),
hdcr: Hdcr::empty(),
hdfar: Hdfar::empty(),
#[cfg(feature = "el2")]
hdfgrtr2_el2: Hdfgrtr2El2::empty(),
#[cfg(feature = "el2")]
hdfgrtr_el2: HdfgrtrEl2::empty(),
#[cfg(feature = "el2")]
hdfgwtr2_el2: Hdfgwtr2El2::empty(),
#[cfg(feature = "el2")]
hdfgwtr_el2: HdfgwtrEl2::empty(),
#[cfg(feature = "el2")]
hfgitr2_el2: Hfgitr2El2::empty(),
#[cfg(feature = "el2")]
hfgitr_el2: HfgitrEl2::empty(),
#[cfg(feature = "el2")]
hfgrtr2_el2: Hfgrtr2El2::empty(),
#[cfg(feature = "el2")]
hfgrtr_el2: HfgrtrEl2::empty(),
#[cfg(feature = "el2")]
hfgwtr2_el2: Hfgwtr2El2::empty(),
#[cfg(feature = "el2")]
hfgwtr_el2: HfgwtrEl2::empty(),
hifar: Hifar::empty(),
hmair0: Hmair0::empty(),
hmair1: Hmair1::empty(),
hpfar: Hpfar::empty(),
#[cfg(feature = "el2")]
hpfar_el2: HpfarEl2::empty(),
hrmr: Hrmr::empty(),
hsctlr: Hsctlr::empty(),
hsr: Hsr::empty(),
hstr: 0,
#[cfg(feature = "el2")]
hstr_el2: 0,
htcr: Htcr::empty(),
htpidr: Htpidr::empty(),
htrfcr: Htrfcr::empty(),
httbr: Httbr::empty(),
hvbar: Hvbar::empty(),
#[cfg(feature = "el1")]
icc_ap0r0_el1: 0,
#[cfg(feature = "el1")]
icc_ap0r1_el1: 0,
#[cfg(feature = "el1")]
icc_ap0r2_el1: 0,
#[cfg(feature = "el1")]
icc_ap0r3_el1: 0,
#[cfg(feature = "el1")]
icc_ap1r0_el1: IccAp1r0El1::empty(),
#[cfg(feature = "el1")]
icc_ap1r1_el1: 0,
#[cfg(feature = "el1")]
icc_ap1r2_el1: 0,
#[cfg(feature = "el1")]
icc_ap1r3_el1: 0,
icc_asgi1r: IccAsgi1r::empty(),
#[cfg(feature = "el1")]
icc_asgi1r_el1: IccAsgi1rEl1::empty(),
icc_bpr0: IccBpr0::empty(),
#[cfg(feature = "el1")]
icc_bpr0_el1: IccBpr0El1::empty(),
icc_bpr1: IccBpr1::empty(),
#[cfg(feature = "el1")]
icc_bpr1_el1: IccBpr1El1::empty(),
icc_ctlr: IccCtlr::empty(),
#[cfg(feature = "el1")]
icc_ctlr_el1: IccCtlrEl1::empty(),
#[cfg(feature = "el3")]
icc_ctlr_el3: IccCtlrEl3::empty(),
icc_dir: IccDir::empty(),
#[cfg(feature = "el1")]
icc_dir_el1: IccDirEl1::empty(),
icc_eoir0: IccEoir0::empty(),
#[cfg(feature = "el1")]
icc_eoir0_el1: IccEoir0El1::empty(),
icc_eoir1: IccEoir1::empty(),
#[cfg(feature = "el1")]
icc_eoir1_el1: IccEoir1El1::empty(),
icc_hppir0: IccHppir0::empty(),
#[cfg(feature = "el1")]
icc_hppir0_el1: IccHppir0El1::empty(),
icc_hppir1: IccHppir1::empty(),
#[cfg(feature = "el1")]
icc_hppir1_el1: IccHppir1El1::empty(),
icc_iar0: IccIar0::empty(),
#[cfg(feature = "el1")]
icc_iar0_el1: IccIar0El1::empty(),
icc_iar1: IccIar1::empty(),
#[cfg(feature = "el1")]
icc_iar1_el1: IccIar1El1::empty(),
icc_igrpen0: IccIgrpen0::empty(),
#[cfg(feature = "el1")]
icc_igrpen0_el1: IccIgrpen0El1::empty(),
icc_igrpen1: IccIgrpen1::empty(),
#[cfg(feature = "el1")]
icc_igrpen1_el1: IccIgrpen1El1::empty(),
#[cfg(feature = "el3")]
icc_igrpen1_el3: IccIgrpen1El3::empty(),
#[cfg(feature = "el1")]
icc_nmiar1_el1: IccNmiar1El1::empty(),
icc_pmr: IccPmr::empty(),
#[cfg(feature = "el1")]
icc_pmr_el1: IccPmrEl1::empty(),
icc_rpr: IccRpr::empty(),
#[cfg(feature = "el1")]
icc_rpr_el1: IccRprEl1::empty(),
icc_sgi0r: IccSgi0r::empty(),
#[cfg(feature = "el1")]
icc_sgi0r_el1: IccSgi0rEl1::empty(),
icc_sgi1r: IccSgi1r::empty(),
#[cfg(feature = "el1")]
icc_sgi1r_el1: IccSgi1rEl1::empty(),
#[cfg(feature = "el1")]
icc_sre_el1: IccSreEl1::empty(),
#[cfg(feature = "el2")]
icc_sre_el2: IccSreEl2::empty(),
#[cfg(feature = "el3")]
icc_sre_el3: IccSreEl3::empty(),
#[cfg(feature = "el2")]
ich_hcr_el2: IchHcrEl2::empty(),
#[cfg(feature = "el2")]
ich_vmcr_el2: IchVmcrEl2::empty(),
#[cfg(feature = "el1")]
id_aa64dfr0_el1: IdAa64dfr0El1::empty(),
#[cfg(feature = "el1")]
id_aa64dfr1_el1: IdAa64dfr1El1::empty(),
#[cfg(feature = "el1")]
id_aa64isar1_el1: IdAa64isar1El1::empty(),
#[cfg(feature = "el1")]
id_aa64isar2_el1: IdAa64isar2El1::empty(),
#[cfg(feature = "el1")]
id_aa64mmfr0_el1: IdAa64mmfr0El1::empty(),
#[cfg(feature = "el1")]
id_aa64mmfr1_el1: IdAa64mmfr1El1::empty(),
#[cfg(feature = "el1")]
id_aa64mmfr2_el1: IdAa64mmfr2El1::empty(),
#[cfg(feature = "el1")]
id_aa64mmfr3_el1: IdAa64mmfr3El1::empty(),
#[cfg(feature = "el1")]
id_aa64pfr0_el1: IdAa64pfr0El1::empty(),
#[cfg(feature = "el1")]
id_aa64pfr1_el1: IdAa64pfr1El1::empty(),
#[cfg(feature = "el1")]
id_aa64smfr0_el1: IdAa64smfr0El1::empty(),
id_afr0: 0,
id_dfr0: IdDfr0::empty(),
id_dfr1: IdDfr1::empty(),
id_isar0: IdIsar0::empty(),
id_isar1: IdIsar1::empty(),
id_isar2: IdIsar2::empty(),
id_isar3: IdIsar3::empty(),
id_isar4: IdIsar4::empty(),
id_isar5: IdIsar5::empty(),
id_isar6: IdIsar6::empty(),
id_mmfr0: IdMmfr0::empty(),
id_mmfr1: IdMmfr1::empty(),
id_mmfr2: IdMmfr2::empty(),
id_mmfr3: IdMmfr3::empty(),
id_mmfr4: IdMmfr4::empty(),
id_mmfr5: IdMmfr5::empty(),
id_pfr0: IdPfr0::empty(),
id_pfr1: IdPfr1::empty(),
id_pfr2: IdPfr2::empty(),
ifar: Ifar::empty(),
ifsr: Ifsr::empty(),
isr: Isr::empty(),
#[cfg(feature = "el1")]
isr_el1: IsrEl1::empty(),
jidr: 0,
jmcr: 0,
joscr: 0,
mair0: Mair0::empty(),
mair1: Mair1::empty(),
#[cfg(feature = "el1")]
mair_el1: MairEl1::empty(),
#[cfg(feature = "el2")]
mair_el2: MairEl2::empty(),
#[cfg(feature = "el3")]
mair_el3: MairEl3::empty(),
#[cfg(feature = "el1")]
mdccint_el1: MdccintEl1::empty(),
#[cfg(feature = "el2")]
mdcr_el2: MdcrEl2::empty(),
#[cfg(feature = "el3")]
mdcr_el3: MdcrEl3::empty(),
#[cfg(feature = "el1")]
mdscr_el1: MdscrEl1::empty(),
midr: Midr::empty(),
#[cfg(feature = "el1")]
midr_el1: MidrEl1::empty(),
#[cfg(feature = "el2")]
mpam2_el2: Mpam2El2::empty(),
#[cfg(feature = "el3")]
mpam3_el3: Mpam3El3::empty(),
#[cfg(feature = "el2")]
mpamhcr_el2: MpamhcrEl2::empty(),
#[cfg(feature = "el1")]
mpamidr_el1: MpamidrEl1::empty(),
#[cfg(feature = "el2")]
mpamvpm0_el2: Mpamvpm0El2::empty(),
#[cfg(feature = "el2")]
mpamvpm1_el2: Mpamvpm1El2::empty(),
#[cfg(feature = "el2")]
mpamvpm2_el2: Mpamvpm2El2::empty(),
#[cfg(feature = "el2")]
mpamvpm3_el2: Mpamvpm3El2::empty(),
#[cfg(feature = "el2")]
mpamvpm4_el2: Mpamvpm4El2::empty(),
#[cfg(feature = "el2")]
mpamvpm5_el2: Mpamvpm5El2::empty(),
#[cfg(feature = "el2")]
mpamvpm6_el2: Mpamvpm6El2::empty(),
#[cfg(feature = "el2")]
mpamvpm7_el2: Mpamvpm7El2::empty(),
#[cfg(feature = "el2")]
mpamvpmv_el2: MpamvpmvEl2::empty(),
mpidr: Mpidr::empty(),
#[cfg(feature = "el1")]
mpidr_el1: MpidrEl1::empty(),
mvbar: Mvbar::empty(),
nmrr: Nmrr::empty(),
nsacr: Nsacr::empty(),
par: Par::empty(),
#[cfg(feature = "el1")]
par_el1: ParEl1::empty(),
pmccfiltr: Pmccfiltr::empty(),
pmccntr: Pmccntr::empty(),
pmceid0: Pmceid0::empty(),
pmceid1: Pmceid1::empty(),
pmceid2: Pmceid2::empty(),
pmceid3: Pmceid3::empty(),
pmcntenclr: Pmcntenclr::empty(),
pmcntenset: Pmcntenset::empty(),
pmcr: Pmcr::empty(),
pmcr_el0: PmcrEl0::empty(),
pmintenclr: Pmintenclr::empty(),
pmintenset: Pmintenset::empty(),
pmmir: Pmmir::empty(),
pmovsr: Pmovsr::empty(),
pmovsset: Pmovsset::empty(),
pmselr: Pmselr::empty(),
pmswinc: Pmswinc::empty(),
pmuserenr: Pmuserenr::empty(),
pmxevtyper: Pmxevtyper::empty(),
prrr: Prrr::empty(),
revidr: 0,
#[cfg(feature = "el1")]
rgsr_el1: RgsrEl1::empty(),
rmr: Rmr::empty(),
rvbar: Rvbar::empty(),
scr: Scr::empty(),
#[cfg(feature = "el3")]
scr_el3: ScrEl3::empty(),
sctlr: Sctlr::empty(),
#[cfg(feature = "el3")]
sctlr2_el3: Sctlr2El3::empty(),
#[cfg(feature = "el1")]
sctlr_el1: SctlrEl1::empty(),
#[cfg(feature = "el2")]
sctlr_el2: SctlrEl2::empty(),
#[cfg(feature = "el3")]
sctlr_el3: SctlrEl3::empty(),
sdcr: Sdcr::empty(),
sder: Sder::empty(),
#[cfg(feature = "el3")]
smcr_el3: SmcrEl3::empty(),
#[cfg(feature = "el1")]
spsr_el1: SpsrEl1::empty(),
#[cfg(feature = "el2")]
spsr_el2: SpsrEl2::empty(),
#[cfg(feature = "el3")]
spsr_el3: SpsrEl3::empty(),
#[cfg(feature = "el1")]
sp_el1: SpEl1::empty(),
#[cfg(feature = "el2")]
sp_el2: SpEl2::empty(),
svcr: Svcr::empty(),
tcmtr: 0,
#[cfg(feature = "el1")]
tcr2_el1: Tcr2El1::empty(),
#[cfg(feature = "el2")]
tcr2_el2: Tcr2El2::empty(),
#[cfg(feature = "el1")]
tcr_el1: TcrEl1::empty(),
#[cfg(feature = "el2")]
tcr_el2: TcrEl2::empty(),
#[cfg(feature = "el3")]
tcr_el3: TcrEl3::empty(),
#[cfg(feature = "el1")]
tfsre0_el1: Tfsre0El1::empty(),
#[cfg(feature = "el1")]
tfsr_el1: TfsrEl1::empty(),
#[cfg(feature = "el2")]
tfsr_el2: TfsrEl2::empty(),
tlbtr: Tlbtr::empty(),
tpidrprw: Tpidrprw::empty(),
tpidrro_el0: TpidrroEl0::empty(),
tpidruro: Tpidruro::empty(),
tpidrurw: Tpidrurw::empty(),
tpidr_el0: TpidrEl0::empty(),
#[cfg(feature = "el1")]
tpidr_el1: TpidrEl1::empty(),
#[cfg(feature = "el2")]
tpidr_el2: TpidrEl2::empty(),
#[cfg(feature = "el3")]
tpidr_el3: TpidrEl3::empty(),
trfcr: Trfcr::empty(),
ttbcr: Ttbcr::empty(),
ttbcr2: Ttbcr2::empty(),
ttbr0: Ttbr0::empty(),
#[cfg(feature = "el1")]
ttbr0_el1: Ttbr0El1::empty(),
#[cfg(feature = "el2")]
ttbr0_el2: Ttbr0El2::empty(),
#[cfg(feature = "el3")]
ttbr0_el3: Ttbr0El3::empty(),
ttbr1: Ttbr1::empty(),
#[cfg(feature = "el1")]
ttbr1_el1: Ttbr1El1::empty(),
#[cfg(feature = "el2")]
ttbr1_el2: Ttbr1El2::empty(),
vbar: Vbar::empty(),
#[cfg(feature = "el1")]
vbar_el1: VbarEl1::empty(),
#[cfg(feature = "el2")]
vbar_el2: VbarEl2::empty(),
vdfsr: Vdfsr::empty(),
vdisr: Vdisr::empty(),
#[cfg(feature = "el2")]
vdisr_el2: VdisrEl2::empty(),
vmpidr: Vmpidr::empty(),
#[cfg(feature = "el2")]
vmpidr_el2: VmpidrEl2::empty(),
vpidr: Vpidr::empty(),
#[cfg(feature = "el2")]
vpidr_el2: VpidrEl2::empty(),
#[cfg(feature = "el2")]
vsesr_el2: VsesrEl2::empty(),
vtcr: Vtcr::empty(),
#[cfg(feature = "el2")]
vtcr_el2: VtcrEl2::empty(),
vttbr: Vttbr::empty(),
#[cfg(feature = "el2")]
vttbr_el2: VttbrEl2::empty(),
#[cfg(feature = "el3")]
zcr_el3: ZcrEl3::empty(),
}
}
}