1/*
2 * Copyright (c) 2010-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2009 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Gabe Black
41 * Giacomo Gabrielli
42 */
43#ifndef __ARCH_ARM_MISCREGS_HH__
44#define __ARCH_ARM_MISCREGS_HH__
45
46#include <bitset>
47
48#include "base/bitunion.hh"
49#include "base/compiler.hh"
50
51class ThreadContext;
52
53
54namespace ArmISA
55{
56 enum ConditionCode {
57 COND_EQ = 0,
58 COND_NE, // 1
59 COND_CS, // 2
60 COND_CC, // 3
61 COND_MI, // 4
62 COND_PL, // 5
63 COND_VS, // 6
64 COND_VC, // 7
65 COND_HI, // 8
66 COND_LS, // 9
67 COND_GE, // 10
68 COND_LT, // 11
69 COND_GT, // 12
70 COND_LE, // 13
71 COND_AL, // 14
72 COND_UC // 15
73 };
74
56 enum MiscRegIndex {
57 MISCREG_CPSR = 0, // 0
58 MISCREG_SPSR, // 1
59 MISCREG_SPSR_FIQ, // 2
60 MISCREG_SPSR_IRQ, // 3
61 MISCREG_SPSR_SVC, // 4
62 MISCREG_SPSR_MON, // 5
63 MISCREG_SPSR_ABT, // 6
64 MISCREG_SPSR_HYP, // 7
65 MISCREG_SPSR_UND, // 8
66 MISCREG_ELR_HYP, // 9
67 MISCREG_FPSID, // 10
68 MISCREG_FPSCR, // 11
69 MISCREG_MVFR1, // 12
70 MISCREG_MVFR0, // 13
71 MISCREG_FPEXC, // 14
72
73 // Helper registers
74 MISCREG_CPSR_MODE, // 15
75 MISCREG_CPSR_Q, // 16
76 MISCREG_FPSCR_EXC, // 17
77 MISCREG_FPSCR_QC, // 18
78 MISCREG_LOCKADDR, // 19
79 MISCREG_LOCKFLAG, // 20
80 MISCREG_PRRR_MAIR0, // 21
81 MISCREG_PRRR_MAIR0_NS, // 22
82 MISCREG_PRRR_MAIR0_S, // 23
83 MISCREG_NMRR_MAIR1, // 24
84 MISCREG_NMRR_MAIR1_NS, // 25
85 MISCREG_NMRR_MAIR1_S, // 26
86 MISCREG_PMXEVTYPER_PMCCFILTR, // 27
87 MISCREG_SCTLR_RST, // 28
88 MISCREG_SEV_MAILBOX, // 29
89
90 // AArch32 CP14 registers (debug/trace/ThumbEE/Jazelle control)
91 MISCREG_DBGDIDR, // 30
92 MISCREG_DBGDSCRint, // 31
93 MISCREG_DBGDCCINT, // 32
94 MISCREG_DBGDTRTXint, // 33
95 MISCREG_DBGDTRRXint, // 34
96 MISCREG_DBGWFAR, // 35
97 MISCREG_DBGVCR, // 36
98 MISCREG_DBGDTRRXext, // 37
99 MISCREG_DBGDSCRext, // 38
100 MISCREG_DBGDTRTXext, // 39
101 MISCREG_DBGOSECCR, // 40
102 MISCREG_DBGBVR0, // 41
103 MISCREG_DBGBVR1, // 42
104 MISCREG_DBGBVR2, // 43
105 MISCREG_DBGBVR3, // 44
106 MISCREG_DBGBVR4, // 45
107 MISCREG_DBGBVR5, // 46
108 MISCREG_DBGBCR0, // 47
109 MISCREG_DBGBCR1, // 48
110 MISCREG_DBGBCR2, // 49
111 MISCREG_DBGBCR3, // 50
112 MISCREG_DBGBCR4, // 51
113 MISCREG_DBGBCR5, // 52
114 MISCREG_DBGWVR0, // 53
115 MISCREG_DBGWVR1, // 54
116 MISCREG_DBGWVR2, // 55
117 MISCREG_DBGWVR3, // 56
118 MISCREG_DBGWCR0, // 57
119 MISCREG_DBGWCR1, // 58
120 MISCREG_DBGWCR2, // 59
121 MISCREG_DBGWCR3, // 60
122 MISCREG_DBGDRAR, // 61
123 MISCREG_DBGBXVR4, // 62
124 MISCREG_DBGBXVR5, // 63
125 MISCREG_DBGOSLAR, // 64
126 MISCREG_DBGOSLSR, // 65
127 MISCREG_DBGOSDLR, // 66
128 MISCREG_DBGPRCR, // 67
129 MISCREG_DBGDSAR, // 68
130 MISCREG_DBGCLAIMSET, // 69
131 MISCREG_DBGCLAIMCLR, // 70
132 MISCREG_DBGAUTHSTATUS, // 71
133 MISCREG_DBGDEVID2, // 72
134 MISCREG_DBGDEVID1, // 73
135 MISCREG_DBGDEVID0, // 74
136 MISCREG_TEECR, // 75
137 MISCREG_JIDR, // 76
138 MISCREG_TEEHBR, // 77
139 MISCREG_JOSCR, // 78
140 MISCREG_JMCR, // 79
141
142 // AArch32 CP15 registers (system control)
143 MISCREG_MIDR, // 80
144 MISCREG_CTR, // 81
145 MISCREG_TCMTR, // 82
146 MISCREG_TLBTR, // 83
147 MISCREG_MPIDR, // 84
148 MISCREG_REVIDR, // 85
149 MISCREG_ID_PFR0, // 86
150 MISCREG_ID_PFR1, // 87
151 MISCREG_ID_DFR0, // 88
152 MISCREG_ID_AFR0, // 89
153 MISCREG_ID_MMFR0, // 90
154 MISCREG_ID_MMFR1, // 91
155 MISCREG_ID_MMFR2, // 92
156 MISCREG_ID_MMFR3, // 93
157 MISCREG_ID_ISAR0, // 94
158 MISCREG_ID_ISAR1, // 95
159 MISCREG_ID_ISAR2, // 96
160 MISCREG_ID_ISAR3, // 97
161 MISCREG_ID_ISAR4, // 98
162 MISCREG_ID_ISAR5, // 99
163 MISCREG_CCSIDR, // 100
164 MISCREG_CLIDR, // 101
165 MISCREG_AIDR, // 102
166 MISCREG_CSSELR, // 103
167 MISCREG_CSSELR_NS, // 104
168 MISCREG_CSSELR_S, // 105
169 MISCREG_VPIDR, // 106
170 MISCREG_VMPIDR, // 107
171 MISCREG_SCTLR, // 108
172 MISCREG_SCTLR_NS, // 109
173 MISCREG_SCTLR_S, // 110
174 MISCREG_ACTLR, // 111
175 MISCREG_ACTLR_NS, // 112
176 MISCREG_ACTLR_S, // 113
177 MISCREG_CPACR, // 114
178 MISCREG_SCR, // 115
179 MISCREG_SDER, // 116
180 MISCREG_NSACR, // 117
181 MISCREG_HSCTLR, // 118
182 MISCREG_HACTLR, // 119
183 MISCREG_HCR, // 120
184 MISCREG_HDCR, // 121
185 MISCREG_HCPTR, // 122
186 MISCREG_HSTR, // 123
187 MISCREG_HACR, // 124
188 MISCREG_TTBR0, // 125
189 MISCREG_TTBR0_NS, // 126
190 MISCREG_TTBR0_S, // 127
191 MISCREG_TTBR1, // 128
192 MISCREG_TTBR1_NS, // 129
193 MISCREG_TTBR1_S, // 130
194 MISCREG_TTBCR, // 131
195 MISCREG_TTBCR_NS, // 132
196 MISCREG_TTBCR_S, // 133
197 MISCREG_HTCR, // 134
198 MISCREG_VTCR, // 135
199 MISCREG_DACR, // 136
200 MISCREG_DACR_NS, // 137
201 MISCREG_DACR_S, // 138
202 MISCREG_DFSR, // 139
203 MISCREG_DFSR_NS, // 140
204 MISCREG_DFSR_S, // 141
205 MISCREG_IFSR, // 142
206 MISCREG_IFSR_NS, // 143
207 MISCREG_IFSR_S, // 144
208 MISCREG_ADFSR, // 145
209 MISCREG_ADFSR_NS, // 146
210 MISCREG_ADFSR_S, // 147
211 MISCREG_AIFSR, // 148
212 MISCREG_AIFSR_NS, // 149
213 MISCREG_AIFSR_S, // 150
214 MISCREG_HADFSR, // 151
215 MISCREG_HAIFSR, // 152
216 MISCREG_HSR, // 153
217 MISCREG_DFAR, // 154
218 MISCREG_DFAR_NS, // 155
219 MISCREG_DFAR_S, // 156
220 MISCREG_IFAR, // 157
221 MISCREG_IFAR_NS, // 158
222 MISCREG_IFAR_S, // 159
223 MISCREG_HDFAR, // 160
224 MISCREG_HIFAR, // 161
225 MISCREG_HPFAR, // 162
226 MISCREG_ICIALLUIS, // 163
227 MISCREG_BPIALLIS, // 164
228 MISCREG_PAR, // 165
229 MISCREG_PAR_NS, // 166
230 MISCREG_PAR_S, // 167
231 MISCREG_ICIALLU, // 168
232 MISCREG_ICIMVAU, // 169
233 MISCREG_CP15ISB, // 170
234 MISCREG_BPIALL, // 171
235 MISCREG_BPIMVA, // 172
236 MISCREG_DCIMVAC, // 173
237 MISCREG_DCISW, // 174
238 MISCREG_ATS1CPR, // 175
239 MISCREG_ATS1CPW, // 176
240 MISCREG_ATS1CUR, // 177
241 MISCREG_ATS1CUW, // 178
242 MISCREG_ATS12NSOPR, // 179
243 MISCREG_ATS12NSOPW, // 180
244 MISCREG_ATS12NSOUR, // 181
245 MISCREG_ATS12NSOUW, // 182
246 MISCREG_DCCMVAC, // 183
247 MISCREG_DCCSW, // 184
248 MISCREG_CP15DSB, // 185
249 MISCREG_CP15DMB, // 186
250 MISCREG_DCCMVAU, // 187
251 MISCREG_DCCIMVAC, // 188
252 MISCREG_DCCISW, // 189
253 MISCREG_ATS1HR, // 190
254 MISCREG_ATS1HW, // 191
255 MISCREG_TLBIALLIS, // 192
256 MISCREG_TLBIMVAIS, // 193
257 MISCREG_TLBIASIDIS, // 194
258 MISCREG_TLBIMVAAIS, // 195
259 MISCREG_TLBIMVALIS, // 196
260 MISCREG_TLBIMVAALIS, // 197
261 MISCREG_ITLBIALL, // 198
262 MISCREG_ITLBIMVA, // 199
263 MISCREG_ITLBIASID, // 200
264 MISCREG_DTLBIALL, // 201
265 MISCREG_DTLBIMVA, // 202
266 MISCREG_DTLBIASID, // 203
267 MISCREG_TLBIALL, // 204
268 MISCREG_TLBIMVA, // 205
269 MISCREG_TLBIASID, // 206
270 MISCREG_TLBIMVAA, // 207
271 MISCREG_TLBIMVAL, // 208
272 MISCREG_TLBIMVAAL, // 209
273 MISCREG_TLBIIPAS2IS, // 210
274 MISCREG_TLBIIPAS2LIS, // 211
275 MISCREG_TLBIALLHIS, // 212
276 MISCREG_TLBIMVAHIS, // 213
277 MISCREG_TLBIALLNSNHIS, // 214
278 MISCREG_TLBIMVALHIS, // 215
279 MISCREG_TLBIIPAS2, // 216
280 MISCREG_TLBIIPAS2L, // 217
281 MISCREG_TLBIALLH, // 218
282 MISCREG_TLBIMVAH, // 219
283 MISCREG_TLBIALLNSNH, // 220
284 MISCREG_TLBIMVALH, // 221
285 MISCREG_PMCR, // 222
286 MISCREG_PMCNTENSET, // 223
287 MISCREG_PMCNTENCLR, // 224
288 MISCREG_PMOVSR, // 225
289 MISCREG_PMSWINC, // 226
290 MISCREG_PMSELR, // 227
291 MISCREG_PMCEID0, // 228
292 MISCREG_PMCEID1, // 229
293 MISCREG_PMCCNTR, // 230
294 MISCREG_PMXEVTYPER, // 231
295 MISCREG_PMCCFILTR, // 232
296 MISCREG_PMXEVCNTR, // 233
297 MISCREG_PMUSERENR, // 234
298 MISCREG_PMINTENSET, // 235
299 MISCREG_PMINTENCLR, // 236
300 MISCREG_PMOVSSET, // 237
301 MISCREG_L2CTLR, // 238
302 MISCREG_L2ECTLR, // 239
303 MISCREG_PRRR, // 240
304 MISCREG_PRRR_NS, // 241
305 MISCREG_PRRR_S, // 242
306 MISCREG_MAIR0, // 243
307 MISCREG_MAIR0_NS, // 244
308 MISCREG_MAIR0_S, // 245
309 MISCREG_NMRR, // 246
310 MISCREG_NMRR_NS, // 247
311 MISCREG_NMRR_S, // 248
312 MISCREG_MAIR1, // 249
313 MISCREG_MAIR1_NS, // 250
314 MISCREG_MAIR1_S, // 251
315 MISCREG_AMAIR0, // 252
316 MISCREG_AMAIR0_NS, // 253
317 MISCREG_AMAIR0_S, // 254
318 MISCREG_AMAIR1, // 255
319 MISCREG_AMAIR1_NS, // 256
320 MISCREG_AMAIR1_S, // 257
321 MISCREG_HMAIR0, // 258
322 MISCREG_HMAIR1, // 259
323 MISCREG_HAMAIR0, // 260
324 MISCREG_HAMAIR1, // 261
325 MISCREG_VBAR, // 262
326 MISCREG_VBAR_NS, // 263
327 MISCREG_VBAR_S, // 264
328 MISCREG_MVBAR, // 265
329 MISCREG_RMR, // 266
330 MISCREG_ISR, // 267
331 MISCREG_HVBAR, // 268
332 MISCREG_FCSEIDR, // 269
333 MISCREG_CONTEXTIDR, // 270
334 MISCREG_CONTEXTIDR_NS, // 271
335 MISCREG_CONTEXTIDR_S, // 272
336 MISCREG_TPIDRURW, // 273
337 MISCREG_TPIDRURW_NS, // 274
338 MISCREG_TPIDRURW_S, // 275
339 MISCREG_TPIDRURO, // 276
340 MISCREG_TPIDRURO_NS, // 277
341 MISCREG_TPIDRURO_S, // 278
342 MISCREG_TPIDRPRW, // 279
343 MISCREG_TPIDRPRW_NS, // 280
344 MISCREG_TPIDRPRW_S, // 281
345 MISCREG_HTPIDR, // 282
346 MISCREG_CNTFRQ, // 283
347 MISCREG_CNTKCTL, // 284
348 MISCREG_CNTP_TVAL, // 285
349 MISCREG_CNTP_TVAL_NS, // 286
350 MISCREG_CNTP_TVAL_S, // 287
351 MISCREG_CNTP_CTL, // 288
352 MISCREG_CNTP_CTL_NS, // 289
353 MISCREG_CNTP_CTL_S, // 290
354 MISCREG_CNTV_TVAL, // 291
355 MISCREG_CNTV_CTL, // 292
356 MISCREG_CNTHCTL, // 293
357 MISCREG_CNTHP_TVAL, // 294
358 MISCREG_CNTHP_CTL, // 295
359 MISCREG_IL1DATA0, // 296
360 MISCREG_IL1DATA1, // 297
361 MISCREG_IL1DATA2, // 298
362 MISCREG_IL1DATA3, // 299
363 MISCREG_DL1DATA0, // 300
364 MISCREG_DL1DATA1, // 301
365 MISCREG_DL1DATA2, // 302
366 MISCREG_DL1DATA3, // 303
367 MISCREG_DL1DATA4, // 304
368 MISCREG_RAMINDEX, // 305
369 MISCREG_L2ACTLR, // 306
370 MISCREG_CBAR, // 307
371 MISCREG_HTTBR, // 308
372 MISCREG_VTTBR, // 309
373 MISCREG_CNTPCT, // 310
374 MISCREG_CNTVCT, // 311
375 MISCREG_CNTP_CVAL, // 312
376 MISCREG_CNTP_CVAL_NS, // 313
377 MISCREG_CNTP_CVAL_S, // 314
378 MISCREG_CNTV_CVAL, // 315
379 MISCREG_CNTVOFF, // 316
380 MISCREG_CNTHP_CVAL, // 317
381 MISCREG_CPUMERRSR, // 318
382 MISCREG_L2MERRSR, // 319
383
384 // AArch64 registers (Op0=2)
385 MISCREG_MDCCINT_EL1, // 320
386 MISCREG_OSDTRRX_EL1, // 321
387 MISCREG_MDSCR_EL1, // 322
388 MISCREG_OSDTRTX_EL1, // 323
389 MISCREG_OSECCR_EL1, // 324
390 MISCREG_DBGBVR0_EL1, // 325
391 MISCREG_DBGBVR1_EL1, // 326
392 MISCREG_DBGBVR2_EL1, // 327
393 MISCREG_DBGBVR3_EL1, // 328
394 MISCREG_DBGBVR4_EL1, // 329
395 MISCREG_DBGBVR5_EL1, // 330
396 MISCREG_DBGBCR0_EL1, // 331
397 MISCREG_DBGBCR1_EL1, // 332
398 MISCREG_DBGBCR2_EL1, // 333
399 MISCREG_DBGBCR3_EL1, // 334
400 MISCREG_DBGBCR4_EL1, // 335
401 MISCREG_DBGBCR5_EL1, // 336
402 MISCREG_DBGWVR0_EL1, // 337
403 MISCREG_DBGWVR1_EL1, // 338
404 MISCREG_DBGWVR2_EL1, // 339
405 MISCREG_DBGWVR3_EL1, // 340
406 MISCREG_DBGWCR0_EL1, // 341
407 MISCREG_DBGWCR1_EL1, // 342
408 MISCREG_DBGWCR2_EL1, // 343
409 MISCREG_DBGWCR3_EL1, // 344
410 MISCREG_MDCCSR_EL0, // 345
411 MISCREG_MDDTR_EL0, // 346
412 MISCREG_MDDTRTX_EL0, // 347
413 MISCREG_MDDTRRX_EL0, // 348
414 MISCREG_DBGVCR32_EL2, // 349
415 MISCREG_MDRAR_EL1, // 350
416 MISCREG_OSLAR_EL1, // 351
417 MISCREG_OSLSR_EL1, // 352
418 MISCREG_OSDLR_EL1, // 353
419 MISCREG_DBGPRCR_EL1, // 354
420 MISCREG_DBGCLAIMSET_EL1, // 355
421 MISCREG_DBGCLAIMCLR_EL1, // 356
422 MISCREG_DBGAUTHSTATUS_EL1, // 357
423 MISCREG_TEECR32_EL1, // 358
424 MISCREG_TEEHBR32_EL1, // 359
425
426 // AArch64 registers (Op0=1,3)
427 MISCREG_MIDR_EL1, // 360
428 MISCREG_MPIDR_EL1, // 361
429 MISCREG_REVIDR_EL1, // 362
430 MISCREG_ID_PFR0_EL1, // 363
431 MISCREG_ID_PFR1_EL1, // 364
432 MISCREG_ID_DFR0_EL1, // 365
433 MISCREG_ID_AFR0_EL1, // 366
434 MISCREG_ID_MMFR0_EL1, // 367
435 MISCREG_ID_MMFR1_EL1, // 368
436 MISCREG_ID_MMFR2_EL1, // 369
437 MISCREG_ID_MMFR3_EL1, // 370
438 MISCREG_ID_ISAR0_EL1, // 371
439 MISCREG_ID_ISAR1_EL1, // 372
440 MISCREG_ID_ISAR2_EL1, // 373
441 MISCREG_ID_ISAR3_EL1, // 374
442 MISCREG_ID_ISAR4_EL1, // 375
443 MISCREG_ID_ISAR5_EL1, // 376
444 MISCREG_MVFR0_EL1, // 377
445 MISCREG_MVFR1_EL1, // 378
446 MISCREG_MVFR2_EL1, // 379
447 MISCREG_ID_AA64PFR0_EL1, // 380
448 MISCREG_ID_AA64PFR1_EL1, // 381
449 MISCREG_ID_AA64DFR0_EL1, // 382
450 MISCREG_ID_AA64DFR1_EL1, // 383
451 MISCREG_ID_AA64AFR0_EL1, // 384
452 MISCREG_ID_AA64AFR1_EL1, // 385
453 MISCREG_ID_AA64ISAR0_EL1, // 386
454 MISCREG_ID_AA64ISAR1_EL1, // 387
455 MISCREG_ID_AA64MMFR0_EL1, // 388
456 MISCREG_ID_AA64MMFR1_EL1, // 389
457 MISCREG_CCSIDR_EL1, // 390
458 MISCREG_CLIDR_EL1, // 391
459 MISCREG_AIDR_EL1, // 392
460 MISCREG_CSSELR_EL1, // 393
461 MISCREG_CTR_EL0, // 394
462 MISCREG_DCZID_EL0, // 395
463 MISCREG_VPIDR_EL2, // 396
464 MISCREG_VMPIDR_EL2, // 397
465 MISCREG_SCTLR_EL1, // 398
466 MISCREG_ACTLR_EL1, // 399
467 MISCREG_CPACR_EL1, // 400
468 MISCREG_SCTLR_EL2, // 401
469 MISCREG_ACTLR_EL2, // 402
470 MISCREG_HCR_EL2, // 403
471 MISCREG_MDCR_EL2, // 404
472 MISCREG_CPTR_EL2, // 405
473 MISCREG_HSTR_EL2, // 406
474 MISCREG_HACR_EL2, // 407
475 MISCREG_SCTLR_EL3, // 408
476 MISCREG_ACTLR_EL3, // 409
477 MISCREG_SCR_EL3, // 410
478 MISCREG_SDER32_EL3, // 411
479 MISCREG_CPTR_EL3, // 412
480 MISCREG_MDCR_EL3, // 413
481 MISCREG_TTBR0_EL1, // 414
482 MISCREG_TTBR1_EL1, // 415
483 MISCREG_TCR_EL1, // 416
484 MISCREG_TTBR0_EL2, // 417
485 MISCREG_TCR_EL2, // 418
486 MISCREG_VTTBR_EL2, // 419
487 MISCREG_VTCR_EL2, // 420
488 MISCREG_TTBR0_EL3, // 421
489 MISCREG_TCR_EL3, // 422
490 MISCREG_DACR32_EL2, // 423
491 MISCREG_SPSR_EL1, // 424
492 MISCREG_ELR_EL1, // 425
493 MISCREG_SP_EL0, // 426
494 MISCREG_SPSEL, // 427
495 MISCREG_CURRENTEL, // 428
496 MISCREG_NZCV, // 429
497 MISCREG_DAIF, // 430
498 MISCREG_FPCR, // 431
499 MISCREG_FPSR, // 432
500 MISCREG_DSPSR_EL0, // 433
501 MISCREG_DLR_EL0, // 434
502 MISCREG_SPSR_EL2, // 435
503 MISCREG_ELR_EL2, // 436
504 MISCREG_SP_EL1, // 437
505 MISCREG_SPSR_IRQ_AA64, // 438
506 MISCREG_SPSR_ABT_AA64, // 439
507 MISCREG_SPSR_UND_AA64, // 440
508 MISCREG_SPSR_FIQ_AA64, // 441
509 MISCREG_SPSR_EL3, // 442
510 MISCREG_ELR_EL3, // 443
511 MISCREG_SP_EL2, // 444
512 MISCREG_AFSR0_EL1, // 445
513 MISCREG_AFSR1_EL1, // 446
514 MISCREG_ESR_EL1, // 447
515 MISCREG_IFSR32_EL2, // 448
516 MISCREG_AFSR0_EL2, // 449
517 MISCREG_AFSR1_EL2, // 450
518 MISCREG_ESR_EL2, // 451
519 MISCREG_FPEXC32_EL2, // 452
520 MISCREG_AFSR0_EL3, // 453
521 MISCREG_AFSR1_EL3, // 454
522 MISCREG_ESR_EL3, // 455
523 MISCREG_FAR_EL1, // 456
524 MISCREG_FAR_EL2, // 457
525 MISCREG_HPFAR_EL2, // 458
526 MISCREG_FAR_EL3, // 459
527 MISCREG_IC_IALLUIS, // 460
528 MISCREG_PAR_EL1, // 461
529 MISCREG_IC_IALLU, // 462
530 MISCREG_DC_IVAC_Xt, // 463
531 MISCREG_DC_ISW_Xt, // 464
532 MISCREG_AT_S1E1R_Xt, // 465
533 MISCREG_AT_S1E1W_Xt, // 466
534 MISCREG_AT_S1E0R_Xt, // 467
535 MISCREG_AT_S1E0W_Xt, // 468
536 MISCREG_DC_CSW_Xt, // 469
537 MISCREG_DC_CISW_Xt, // 470
538 MISCREG_DC_ZVA_Xt, // 471
539 MISCREG_IC_IVAU_Xt, // 472
540 MISCREG_DC_CVAC_Xt, // 473
541 MISCREG_DC_CVAU_Xt, // 474
542 MISCREG_DC_CIVAC_Xt, // 475
543 MISCREG_AT_S1E2R_Xt, // 476
544 MISCREG_AT_S1E2W_Xt, // 477
545 MISCREG_AT_S12E1R_Xt, // 478
546 MISCREG_AT_S12E1W_Xt, // 479
547 MISCREG_AT_S12E0R_Xt, // 480
548 MISCREG_AT_S12E0W_Xt, // 481
549 MISCREG_AT_S1E3R_Xt, // 482
550 MISCREG_AT_S1E3W_Xt, // 483
551 MISCREG_TLBI_VMALLE1IS, // 484
552 MISCREG_TLBI_VAE1IS_Xt, // 485
553 MISCREG_TLBI_ASIDE1IS_Xt, // 486
554 MISCREG_TLBI_VAAE1IS_Xt, // 487
555 MISCREG_TLBI_VALE1IS_Xt, // 488
556 MISCREG_TLBI_VAALE1IS_Xt, // 489
557 MISCREG_TLBI_VMALLE1, // 490
558 MISCREG_TLBI_VAE1_Xt, // 491
559 MISCREG_TLBI_ASIDE1_Xt, // 492
560 MISCREG_TLBI_VAAE1_Xt, // 493
561 MISCREG_TLBI_VALE1_Xt, // 494
562 MISCREG_TLBI_VAALE1_Xt, // 495
563 MISCREG_TLBI_IPAS2E1IS_Xt, // 496
564 MISCREG_TLBI_IPAS2LE1IS_Xt, // 497
565 MISCREG_TLBI_ALLE2IS, // 498
566 MISCREG_TLBI_VAE2IS_Xt, // 499
567 MISCREG_TLBI_ALLE1IS, // 500
568 MISCREG_TLBI_VALE2IS_Xt, // 501
569 MISCREG_TLBI_VMALLS12E1IS, // 502
570 MISCREG_TLBI_IPAS2E1_Xt, // 503
571 MISCREG_TLBI_IPAS2LE1_Xt, // 504
572 MISCREG_TLBI_ALLE2, // 505
573 MISCREG_TLBI_VAE2_Xt, // 506
574 MISCREG_TLBI_ALLE1, // 507
575 MISCREG_TLBI_VALE2_Xt, // 508
576 MISCREG_TLBI_VMALLS12E1, // 509
577 MISCREG_TLBI_ALLE3IS, // 510
578 MISCREG_TLBI_VAE3IS_Xt, // 511
579 MISCREG_TLBI_VALE3IS_Xt, // 512
580 MISCREG_TLBI_ALLE3, // 513
581 MISCREG_TLBI_VAE3_Xt, // 514
582 MISCREG_TLBI_VALE3_Xt, // 515
583 MISCREG_PMINTENSET_EL1, // 516
584 MISCREG_PMINTENCLR_EL1, // 517
585 MISCREG_PMCR_EL0, // 518
586 MISCREG_PMCNTENSET_EL0, // 519
587 MISCREG_PMCNTENCLR_EL0, // 520
588 MISCREG_PMOVSCLR_EL0, // 521
589 MISCREG_PMSWINC_EL0, // 522
590 MISCREG_PMSELR_EL0, // 523
591 MISCREG_PMCEID0_EL0, // 524
592 MISCREG_PMCEID1_EL0, // 525
593 MISCREG_PMCCNTR_EL0, // 526
594 MISCREG_PMXEVTYPER_EL0, // 527
595 MISCREG_PMCCFILTR_EL0, // 528
596 MISCREG_PMXEVCNTR_EL0, // 529
597 MISCREG_PMUSERENR_EL0, // 530
598 MISCREG_PMOVSSET_EL0, // 531
599 MISCREG_MAIR_EL1, // 532
600 MISCREG_AMAIR_EL1, // 533
601 MISCREG_MAIR_EL2, // 534
602 MISCREG_AMAIR_EL2, // 535
603 MISCREG_MAIR_EL3, // 536
604 MISCREG_AMAIR_EL3, // 537
605 MISCREG_L2CTLR_EL1, // 538
606 MISCREG_L2ECTLR_EL1, // 539
607 MISCREG_VBAR_EL1, // 540
608 MISCREG_RVBAR_EL1, // 541
609 MISCREG_ISR_EL1, // 542
610 MISCREG_VBAR_EL2, // 543
611 MISCREG_RVBAR_EL2, // 544
612 MISCREG_VBAR_EL3, // 545
613 MISCREG_RVBAR_EL3, // 546
614 MISCREG_RMR_EL3, // 547
615 MISCREG_CONTEXTIDR_EL1, // 548
616 MISCREG_TPIDR_EL1, // 549
617 MISCREG_TPIDR_EL0, // 550
618 MISCREG_TPIDRRO_EL0, // 551
619 MISCREG_TPIDR_EL2, // 552
620 MISCREG_TPIDR_EL3, // 553
621 MISCREG_CNTKCTL_EL1, // 554
622 MISCREG_CNTFRQ_EL0, // 555
623 MISCREG_CNTPCT_EL0, // 556
624 MISCREG_CNTVCT_EL0, // 557
625 MISCREG_CNTP_TVAL_EL0, // 558
626 MISCREG_CNTP_CTL_EL0, // 559
627 MISCREG_CNTP_CVAL_EL0, // 560
628 MISCREG_CNTV_TVAL_EL0, // 561
629 MISCREG_CNTV_CTL_EL0, // 562
630 MISCREG_CNTV_CVAL_EL0, // 563
631 MISCREG_PMEVCNTR0_EL0, // 564
632 MISCREG_PMEVCNTR1_EL0, // 565
633 MISCREG_PMEVCNTR2_EL0, // 566
634 MISCREG_PMEVCNTR3_EL0, // 567
635 MISCREG_PMEVCNTR4_EL0, // 568
636 MISCREG_PMEVCNTR5_EL0, // 569
637 MISCREG_PMEVTYPER0_EL0, // 570
638 MISCREG_PMEVTYPER1_EL0, // 571
639 MISCREG_PMEVTYPER2_EL0, // 572
640 MISCREG_PMEVTYPER3_EL0, // 573
641 MISCREG_PMEVTYPER4_EL0, // 574
642 MISCREG_PMEVTYPER5_EL0, // 575
643 MISCREG_CNTVOFF_EL2, // 576
644 MISCREG_CNTHCTL_EL2, // 577
645 MISCREG_CNTHP_TVAL_EL2, // 578
646 MISCREG_CNTHP_CTL_EL2, // 579
647 MISCREG_CNTHP_CVAL_EL2, // 580
648 MISCREG_CNTPS_TVAL_EL1, // 581
649 MISCREG_CNTPS_CTL_EL1, // 582
650 MISCREG_CNTPS_CVAL_EL1, // 583
651 MISCREG_IL1DATA0_EL1, // 584
652 MISCREG_IL1DATA1_EL1, // 585
653 MISCREG_IL1DATA2_EL1, // 586
654 MISCREG_IL1DATA3_EL1, // 587
655 MISCREG_DL1DATA0_EL1, // 588
656 MISCREG_DL1DATA1_EL1, // 589
657 MISCREG_DL1DATA2_EL1, // 590
658 MISCREG_DL1DATA3_EL1, // 591
659 MISCREG_DL1DATA4_EL1, // 592
660 MISCREG_L2ACTLR_EL1, // 593
661 MISCREG_CPUACTLR_EL1, // 594
662 MISCREG_CPUECTLR_EL1, // 595
663 MISCREG_CPUMERRSR_EL1, // 596
664 MISCREG_L2MERRSR_EL1, // 597
665 MISCREG_CBAR_EL1, // 598
666
667 // Dummy registers
668 MISCREG_NOP, // 599
669 MISCREG_RAZ, // 600
670 MISCREG_CP14_UNIMPL, // 601
671 MISCREG_CP15_UNIMPL, // 602
672 MISCREG_A64_UNIMPL, // 603
673 MISCREG_UNKNOWN, // 604
674
675 NUM_MISCREGS // 605
676 };
677
678 enum MiscRegInfo {
679 MISCREG_IMPLEMENTED,
680 MISCREG_WARN_NOT_FAIL, // If MISCREG_IMPLEMENTED is deasserted, it
681 // tells whether the instruction should raise a
682 // warning or fail
683 MISCREG_MUTEX, // True if the register corresponds to a pair of
684 // mutually exclusive registers
685 MISCREG_BANKED, // True if the register is banked between the two
686 // security states, and this is the parent node of the
687 // two banked registers
688 MISCREG_BANKED_CHILD, // The entry is one of the child registers that
689 // forms a banked set of regs (along with the
690 // other child regs)
691
692 // Access permissions
693 // User mode
694 MISCREG_USR_NS_RD,
695 MISCREG_USR_NS_WR,
696 MISCREG_USR_S_RD,
697 MISCREG_USR_S_WR,
698 // Privileged modes other than hypervisor or monitor
699 MISCREG_PRI_NS_RD,
700 MISCREG_PRI_NS_WR,
701 MISCREG_PRI_S_RD,
702 MISCREG_PRI_S_WR,
703 // Hypervisor mode
704 MISCREG_HYP_RD,
705 MISCREG_HYP_WR,
706 // Monitor mode, SCR.NS == 0
707 MISCREG_MON_NS0_RD,
708 MISCREG_MON_NS0_WR,
709 // Monitor mode, SCR.NS == 1
710 MISCREG_MON_NS1_RD,
711 MISCREG_MON_NS1_WR,
712
713 NUM_MISCREG_INFOS
714 };
715
716 extern std::bitset<NUM_MISCREG_INFOS> miscRegInfo[NUM_MISCREGS];
717
718 // Decodes 32-bit CP14 registers accessible through MCR/MRC instructions
719 MiscRegIndex decodeCP14Reg(unsigned crn, unsigned opc1,
720 unsigned crm, unsigned opc2);
721 MiscRegIndex decodeAArch64SysReg(unsigned op0, unsigned op1,
722 unsigned crn, unsigned crm,
723 unsigned op2);
724 // Whether a particular AArch64 system register is -always- read only.
725 bool aarch64SysRegReadOnly(MiscRegIndex miscReg);
726
727 // Decodes 32-bit CP15 registers accessible through MCR/MRC instructions
728 MiscRegIndex decodeCP15Reg(unsigned crn, unsigned opc1,
729 unsigned crm, unsigned opc2);
730
731 // Decodes 64-bit CP15 registers accessible through MCRR/MRRC instructions
732 MiscRegIndex decodeCP15Reg64(unsigned crm, unsigned opc1);
733
734
735 const char * const miscRegName[] = {
736 "cpsr",
737 "spsr",
738 "spsr_fiq",
739 "spsr_irq",
740 "spsr_svc",
741 "spsr_mon",
742 "spsr_abt",
743 "spsr_hyp",
744 "spsr_und",
745 "elr_hyp",
746 "fpsid",
747 "fpscr",
748 "mvfr1",
749 "mvfr0",
750 "fpexc",
751
752 // Helper registers
753 "cpsr_mode",
754 "cpsr_q",
755 "fpscr_exc",
756 "fpscr_qc",
757 "lockaddr",
758 "lockflag",
759 "prrr_mair0",
760 "prrr_mair0_ns",
761 "prrr_mair0_s",
762 "nmrr_mair1",
763 "nmrr_mair1_ns",
764 "nmrr_mair1_s",
765 "pmxevtyper_pmccfiltr",
766 "sctlr_rst",
767 "sev_mailbox",
768
769 // AArch32 CP14 registers
770 "dbgdidr",
771 "dbgdscrint",
772 "dbgdccint",
773 "dbgdtrtxint",
774 "dbgdtrrxint",
775 "dbgwfar",
776 "dbgvcr",
777 "dbgdtrrxext",
778 "dbgdscrext",
779 "dbgdtrtxext",
780 "dbgoseccr",
781 "dbgbvr0",
782 "dbgbvr1",
783 "dbgbvr2",
784 "dbgbvr3",
785 "dbgbvr4",
786 "dbgbvr5",
787 "dbgbcr0",
788 "dbgbcr1",
789 "dbgbcr2",
790 "dbgbcr3",
791 "dbgbcr4",
792 "dbgbcr5",
793 "dbgwvr0",
794 "dbgwvr1",
795 "dbgwvr2",
796 "dbgwvr3",
797 "dbgwcr0",
798 "dbgwcr1",
799 "dbgwcr2",
800 "dbgwcr3",
801 "dbgdrar",
802 "dbgbxvr4",
803 "dbgbxvr5",
804 "dbgoslar",
805 "dbgoslsr",
806 "dbgosdlr",
807 "dbgprcr",
808 "dbgdsar",
809 "dbgclaimset",
810 "dbgclaimclr",
811 "dbgauthstatus",
812 "dbgdevid2",
813 "dbgdevid1",
814 "dbgdevid0",
815 "teecr",
816 "jidr",
817 "teehbr",
818 "joscr",
819 "jmcr",
820
821 // AArch32 CP15 registers
822 "midr",
823 "ctr",
824 "tcmtr",
825 "tlbtr",
826 "mpidr",
827 "revidr",
828 "id_pfr0",
829 "id_pfr1",
830 "id_dfr0",
831 "id_afr0",
832 "id_mmfr0",
833 "id_mmfr1",
834 "id_mmfr2",
835 "id_mmfr3",
836 "id_isar0",
837 "id_isar1",
838 "id_isar2",
839 "id_isar3",
840 "id_isar4",
841 "id_isar5",
842 "ccsidr",
843 "clidr",
844 "aidr",
845 "csselr",
846 "csselr_ns",
847 "csselr_s",
848 "vpidr",
849 "vmpidr",
850 "sctlr",
851 "sctlr_ns",
852 "sctlr_s",
853 "actlr",
854 "actlr_ns",
855 "actlr_s",
856 "cpacr",
857 "scr",
858 "sder",
859 "nsacr",
860 "hsctlr",
861 "hactlr",
862 "hcr",
863 "hdcr",
864 "hcptr",
865 "hstr",
866 "hacr",
867 "ttbr0",
868 "ttbr0_ns",
869 "ttbr0_s",
870 "ttbr1",
871 "ttbr1_ns",
872 "ttbr1_s",
873 "ttbcr",
874 "ttbcr_ns",
875 "ttbcr_s",
876 "htcr",
877 "vtcr",
878 "dacr",
879 "dacr_ns",
880 "dacr_s",
881 "dfsr",
882 "dfsr_ns",
883 "dfsr_s",
884 "ifsr",
885 "ifsr_ns",
886 "ifsr_s",
887 "adfsr",
888 "adfsr_ns",
889 "adfsr_s",
890 "aifsr",
891 "aifsr_ns",
892 "aifsr_s",
893 "hadfsr",
894 "haifsr",
895 "hsr",
896 "dfar",
897 "dfar_ns",
898 "dfar_s",
899 "ifar",
900 "ifar_ns",
901 "ifar_s",
902 "hdfar",
903 "hifar",
904 "hpfar",
905 "icialluis",
906 "bpiallis",
907 "par",
908 "par_ns",
909 "par_s",
910 "iciallu",
911 "icimvau",
912 "cp15isb",
913 "bpiall",
914 "bpimva",
915 "dcimvac",
916 "dcisw",
917 "ats1cpr",
918 "ats1cpw",
919 "ats1cur",
920 "ats1cuw",
921 "ats12nsopr",
922 "ats12nsopw",
923 "ats12nsour",
924 "ats12nsouw",
925 "dccmvac",
926 "dccsw",
927 "cp15dsb",
928 "cp15dmb",
929 "dccmvau",
930 "dccimvac",
931 "dccisw",
932 "ats1hr",
933 "ats1hw",
934 "tlbiallis",
935 "tlbimvais",
936 "tlbiasidis",
937 "tlbimvaais",
938 "tlbimvalis",
939 "tlbimvaalis",
940 "itlbiall",
941 "itlbimva",
942 "itlbiasid",
943 "dtlbiall",
944 "dtlbimva",
945 "dtlbiasid",
946 "tlbiall",
947 "tlbimva",
948 "tlbiasid",
949 "tlbimvaa",
950 "tlbimval",
951 "tlbimvaal",
952 "tlbiipas2is",
953 "tlbiipas2lis",
954 "tlbiallhis",
955 "tlbimvahis",
956 "tlbiallnsnhis",
957 "tlbimvalhis",
958 "tlbiipas2",
959 "tlbiipas2l",
960 "tlbiallh",
961 "tlbimvah",
962 "tlbiallnsnh",
963 "tlbimvalh",
964 "pmcr",
965 "pmcntenset",
966 "pmcntenclr",
967 "pmovsr",
968 "pmswinc",
969 "pmselr",
970 "pmceid0",
971 "pmceid1",
972 "pmccntr",
973 "pmxevtyper",
974 "pmccfiltr",
975 "pmxevcntr",
976 "pmuserenr",
977 "pmintenset",
978 "pmintenclr",
979 "pmovsset",
980 "l2ctlr",
981 "l2ectlr",
982 "prrr",
983 "prrr_ns",
984 "prrr_s",
985 "mair0",
986 "mair0_ns",
987 "mair0_s",
988 "nmrr",
989 "nmrr_ns",
990 "nmrr_s",
991 "mair1",
992 "mair1_ns",
993 "mair1_s",
994 "amair0",
995 "amair0_ns",
996 "amair0_s",
997 "amair1",
998 "amair1_ns",
999 "amair1_s",
1000 "hmair0",
1001 "hmair1",
1002 "hamair0",
1003 "hamair1",
1004 "vbar",
1005 "vbar_ns",
1006 "vbar_s",
1007 "mvbar",
1008 "rmr",
1009 "isr",
1010 "hvbar",
1011 "fcseidr",
1012 "contextidr",
1013 "contextidr_ns",
1014 "contextidr_s",
1015 "tpidrurw",
1016 "tpidrurw_ns",
1017 "tpidrurw_s",
1018 "tpidruro",
1019 "tpidruro_ns",
1020 "tpidruro_s",
1021 "tpidrprw",
1022 "tpidrprw_ns",
1023 "tpidrprw_s",
1024 "htpidr",
1025 "cntfrq",
1026 "cntkctl",
1027 "cntp_tval",
1028 "cntp_tval_ns",
1029 "cntp_tval_s",
1030 "cntp_ctl",
1031 "cntp_ctl_ns",
1032 "cntp_ctl_s",
1033 "cntv_tval",
1034 "cntv_ctl",
1035 "cnthctl",
1036 "cnthp_tval",
1037 "cnthp_ctl",
1038 "il1data0",
1039 "il1data1",
1040 "il1data2",
1041 "il1data3",
1042 "dl1data0",
1043 "dl1data1",
1044 "dl1data2",
1045 "dl1data3",
1046 "dl1data4",
1047 "ramindex",
1048 "l2actlr",
1049 "cbar",
1050 "httbr",
1051 "vttbr",
1052 "cntpct",
1053 "cntvct",
1054 "cntp_cval",
1055 "cntp_cval_ns",
1056 "cntp_cval_s",
1057 "cntv_cval",
1058 "cntvoff",
1059 "cnthp_cval",
1060 "cpumerrsr",
1061 "l2merrsr",
1062
1063 // AArch64 registers (Op0=2)
1064 "mdccint_el1",
1065 "osdtrrx_el1",
1066 "mdscr_el1",
1067 "osdtrtx_el1",
1068 "oseccr_el1",
1069 "dbgbvr0_el1",
1070 "dbgbvr1_el1",
1071 "dbgbvr2_el1",
1072 "dbgbvr3_el1",
1073 "dbgbvr4_el1",
1074 "dbgbvr5_el1",
1075 "dbgbcr0_el1",
1076 "dbgbcr1_el1",
1077 "dbgbcr2_el1",
1078 "dbgbcr3_el1",
1079 "dbgbcr4_el1",
1080 "dbgbcr5_el1",
1081 "dbgwvr0_el1",
1082 "dbgwvr1_el1",
1083 "dbgwvr2_el1",
1084 "dbgwvr3_el1",
1085 "dbgwcr0_el1",
1086 "dbgwcr1_el1",
1087 "dbgwcr2_el1",
1088 "dbgwcr3_el1",
1089 "mdccsr_el0",
1090 "mddtr_el0",
1091 "mddtrtx_el0",
1092 "mddtrrx_el0",
1093 "dbgvcr32_el2",
1094 "mdrar_el1",
1095 "oslar_el1",
1096 "oslsr_el1",
1097 "osdlr_el1",
1098 "dbgprcr_el1",
1099 "dbgclaimset_el1",
1100 "dbgclaimclr_el1",
1101 "dbgauthstatus_el1",
1102 "teecr32_el1",
1103 "teehbr32_el1",
1104
1105 // AArch64 registers (Op0=1,3)
1106 "midr_el1",
1107 "mpidr_el1",
1108 "revidr_el1",
1109 "id_pfr0_el1",
1110 "id_pfr1_el1",
1111 "id_dfr0_el1",
1112 "id_afr0_el1",
1113 "id_mmfr0_el1",
1114 "id_mmfr1_el1",
1115 "id_mmfr2_el1",
1116 "id_mmfr3_el1",
1117 "id_isar0_el1",
1118 "id_isar1_el1",
1119 "id_isar2_el1",
1120 "id_isar3_el1",
1121 "id_isar4_el1",
1122 "id_isar5_el1",
1123 "mvfr0_el1",
1124 "mvfr1_el1",
1125 "mvfr2_el1",
1126 "id_aa64pfr0_el1",
1127 "id_aa64pfr1_el1",
1128 "id_aa64dfr0_el1",
1129 "id_aa64dfr1_el1",
1130 "id_aa64afr0_el1",
1131 "id_aa64afr1_el1",
1132 "id_aa64isar0_el1",
1133 "id_aa64isar1_el1",
1134 "id_aa64mmfr0_el1",
1135 "id_aa64mmfr1_el1",
1136 "ccsidr_el1",
1137 "clidr_el1",
1138 "aidr_el1",
1139 "csselr_el1",
1140 "ctr_el0",
1141 "dczid_el0",
1142 "vpidr_el2",
1143 "vmpidr_el2",
1144 "sctlr_el1",
1145 "actlr_el1",
1146 "cpacr_el1",
1147 "sctlr_el2",
1148 "actlr_el2",
1149 "hcr_el2",
1150 "mdcr_el2",
1151 "cptr_el2",
1152 "hstr_el2",
1153 "hacr_el2",
1154 "sctlr_el3",
1155 "actlr_el3",
1156 "scr_el3",
1157 "sder32_el3",
1158 "cptr_el3",
1159 "mdcr_el3",
1160 "ttbr0_el1",
1161 "ttbr1_el1",
1162 "tcr_el1",
1163 "ttbr0_el2",
1164 "tcr_el2",
1165 "vttbr_el2",
1166 "vtcr_el2",
1167 "ttbr0_el3",
1168 "tcr_el3",
1169 "dacr32_el2",
1170 "spsr_el1",
1171 "elr_el1",
1172 "sp_el0",
1173 "spsel",
1174 "currentel",
1175 "nzcv",
1176 "daif",
1177 "fpcr",
1178 "fpsr",
1179 "dspsr_el0",
1180 "dlr_el0",
1181 "spsr_el2",
1182 "elr_el2",
1183 "sp_el1",
1184 "spsr_irq_aa64",
1185 "spsr_abt_aa64",
1186 "spsr_und_aa64",
1187 "spsr_fiq_aa64",
1188 "spsr_el3",
1189 "elr_el3",
1190 "sp_el2",
1191 "afsr0_el1",
1192 "afsr1_el1",
1193 "esr_el1",
1194 "ifsr32_el2",
1195 "afsr0_el2",
1196 "afsr1_el2",
1197 "esr_el2",
1198 "fpexc32_el2",
1199 "afsr0_el3",
1200 "afsr1_el3",
1201 "esr_el3",
1202 "far_el1",
1203 "far_el2",
1204 "hpfar_el2",
1205 "far_el3",
1206 "ic_ialluis",
1207 "par_el1",
1208 "ic_iallu",
1209 "dc_ivac_xt",
1210 "dc_isw_xt",
1211 "at_s1e1r_xt",
1212 "at_s1e1w_xt",
1213 "at_s1e0r_xt",
1214 "at_s1e0w_xt",
1215 "dc_csw_xt",
1216 "dc_cisw_xt",
1217 "dc_zva_xt",
1218 "ic_ivau_xt",
1219 "dc_cvac_xt",
1220 "dc_cvau_xt",
1221 "dc_civac_xt",
1222 "at_s1e2r_xt",
1223 "at_s1e2w_xt",
1224 "at_s12e1r_xt",
1225 "at_s12e1w_xt",
1226 "at_s12e0r_xt",
1227 "at_s12e0w_xt",
1228 "at_s1e3r_xt",
1229 "at_s1e3w_xt",
1230 "tlbi_vmalle1is",
1231 "tlbi_vae1is_xt",
1232 "tlbi_aside1is_xt",
1233 "tlbi_vaae1is_xt",
1234 "tlbi_vale1is_xt",
1235 "tlbi_vaale1is_xt",
1236 "tlbi_vmalle1",
1237 "tlbi_vae1_xt",
1238 "tlbi_aside1_xt",
1239 "tlbi_vaae1_xt",
1240 "tlbi_vale1_xt",
1241 "tlbi_vaale1_xt",
1242 "tlbi_ipas2e1is_xt",
1243 "tlbi_ipas2le1is_xt",
1244 "tlbi_alle2is",
1245 "tlbi_vae2is_xt",
1246 "tlbi_alle1is",
1247 "tlbi_vale2is_xt",
1248 "tlbi_vmalls12e1is",
1249 "tlbi_ipas2e1_xt",
1250 "tlbi_ipas2le1_xt",
1251 "tlbi_alle2",
1252 "tlbi_vae2_xt",
1253 "tlbi_alle1",
1254 "tlbi_vale2_xt",
1255 "tlbi_vmalls12e1",
1256 "tlbi_alle3is",
1257 "tlbi_vae3is_xt",
1258 "tlbi_vale3is_xt",
1259 "tlbi_alle3",
1260 "tlbi_vae3_xt",
1261 "tlbi_vale3_xt",
1262 "pmintenset_el1",
1263 "pmintenclr_el1",
1264 "pmcr_el0",
1265 "pmcntenset_el0",
1266 "pmcntenclr_el0",
1267 "pmovsclr_el0",
1268 "pmswinc_el0",
1269 "pmselr_el0",
1270 "pmceid0_el0",
1271 "pmceid1_el0",
1272 "pmccntr_el0",
1273 "pmxevtyper_el0",
1274 "pmccfiltr_el0",
1275 "pmxevcntr_el0",
1276 "pmuserenr_el0",
1277 "pmovsset_el0",
1278 "mair_el1",
1279 "amair_el1",
1280 "mair_el2",
1281 "amair_el2",
1282 "mair_el3",
1283 "amair_el3",
1284 "l2ctlr_el1",
1285 "l2ectlr_el1",
1286 "vbar_el1",
1287 "rvbar_el1",
1288 "isr_el1",
1289 "vbar_el2",
1290 "rvbar_el2",
1291 "vbar_el3",
1292 "rvbar_el3",
1293 "rmr_el3",
1294 "contextidr_el1",
1295 "tpidr_el1",
1296 "tpidr_el0",
1297 "tpidrro_el0",
1298 "tpidr_el2",
1299 "tpidr_el3",
1300 "cntkctl_el1",
1301 "cntfrq_el0",
1302 "cntpct_el0",
1303 "cntvct_el0",
1304 "cntp_tval_el0",
1305 "cntp_ctl_el0",
1306 "cntp_cval_el0",
1307 "cntv_tval_el0",
1308 "cntv_ctl_el0",
1309 "cntv_cval_el0",
1310 "pmevcntr0_el0",
1311 "pmevcntr1_el0",
1312 "pmevcntr2_el0",
1313 "pmevcntr3_el0",
1314 "pmevcntr4_el0",
1315 "pmevcntr5_el0",
1316 "pmevtyper0_el0",
1317 "pmevtyper1_el0",
1318 "pmevtyper2_el0",
1319 "pmevtyper3_el0",
1320 "pmevtyper4_el0",
1321 "pmevtyper5_el0",
1322 "cntvoff_el2",
1323 "cnthctl_el2",
1324 "cnthp_tval_el2",
1325 "cnthp_ctl_el2",
1326 "cnthp_cval_el2",
1327 "cntps_tval_el1",
1328 "cntps_ctl_el1",
1329 "cntps_cval_el1",
1330 "il1data0_el1",
1331 "il1data1_el1",
1332 "il1data2_el1",
1333 "il1data3_el1",
1334 "dl1data0_el1",
1335 "dl1data1_el1",
1336 "dl1data2_el1",
1337 "dl1data3_el1",
1338 "dl1data4_el1",
1339 "l2actlr_el1",
1340 "cpuactlr_el1",
1341 "cpuectlr_el1",
1342 "cpumerrsr_el1",
1343 "l2merrsr_el1",
1344 "cbar_el1",
1345
1346 // Dummy registers
1347 "nop",
1348 "raz",
1349 "cp14_unimpl",
1350 "cp15_unimpl",
1351 "a64_unimpl",
1352 "unknown"
1353 };
1354
1355 static_assert(sizeof(miscRegName) / sizeof(*miscRegName) == NUM_MISCREGS,
1356 "The miscRegName array and NUM_MISCREGS are inconsistent.");
1357
1358 BitUnion32(CPSR)
1359 Bitfield<31, 30> nz;
1360 Bitfield<29> c;
1361 Bitfield<28> v;
1362 Bitfield<27> q;
1363 Bitfield<26, 25> it1;
1364 Bitfield<24> j;
1365 Bitfield<23, 22> res0_23_22;
1366 Bitfield<21> ss; // AArch64
1367 Bitfield<20> il; // AArch64
1368 Bitfield<19, 16> ge;
1369 Bitfield<15, 10> it2;
1370 Bitfield<9> d; // AArch64
1371 Bitfield<9> e;
1372 Bitfield<8> a;
1373 Bitfield<7> i;
1374 Bitfield<6> f;
1375 Bitfield<9, 6> daif; // AArch64
1376 Bitfield<5> t;
1377 Bitfield<4> width; // AArch64
1378 Bitfield<3, 2> el; // AArch64
1379 Bitfield<4, 0> mode;
1380 Bitfield<0> sp; // AArch64
1381 EndBitUnion(CPSR)
1382
1383 // This mask selects bits of the CPSR that actually go in the CondCodes
1384 // integer register to allow renaming.
1385 static const uint32_t CondCodesMask = 0xF00F0000;
1386 static const uint32_t CpsrMaskQ = 0x08000000;
1387
1388 BitUnion32(HDCR)
1389 Bitfield<11> tdra;
1390 Bitfield<10> tdosa;
1391 Bitfield<9> tda;
1392 Bitfield<8> tde;
1393 Bitfield<7> hpme;
1394 Bitfield<6> tpm;
1395 Bitfield<5> tpmcr;
1396 Bitfield<4, 0> hpmn;
1397 EndBitUnion(HDCR)
1398
1399 BitUnion32(HCPTR)
1400 Bitfield<31> tcpac;
1401 Bitfield<20> tta;
1402 Bitfield<15> tase;
1403 Bitfield<13> tcp13;
1404 Bitfield<12> tcp12;
1405 Bitfield<11> tcp11;
1406 Bitfield<10> tcp10;
1407 Bitfield<10> tfp; // AArch64
1408 Bitfield<9> tcp9;
1409 Bitfield<8> tcp8;
1410 Bitfield<7> tcp7;
1411 Bitfield<6> tcp6;
1412 Bitfield<5> tcp5;
1413 Bitfield<4> tcp4;
1414 Bitfield<3> tcp3;
1415 Bitfield<2> tcp2;
1416 Bitfield<1> tcp1;
1417 Bitfield<0> tcp0;
1418 EndBitUnion(HCPTR)
1419
1420 BitUnion32(HSTR)
1421 Bitfield<17> tjdbx;
1422 Bitfield<16> ttee;
1423 Bitfield<15> t15;
1424 Bitfield<13> t13;
1425 Bitfield<12> t12;
1426 Bitfield<11> t11;
1427 Bitfield<10> t10;
1428 Bitfield<9> t9;
1429 Bitfield<8> t8;
1430 Bitfield<7> t7;
1431 Bitfield<6> t6;
1432 Bitfield<5> t5;
1433 Bitfield<4> t4;
1434 Bitfield<3> t3;
1435 Bitfield<2> t2;
1436 Bitfield<1> t1;
1437 Bitfield<0> t0;
1438 EndBitUnion(HSTR)
1439
1440 BitUnion64(HCR)
1441 Bitfield<33> id; // AArch64
1442 Bitfield<32> cd; // AArch64
1443 Bitfield<31> rw; // AArch64
1444 Bitfield<30> trvm; // AArch64
1445 Bitfield<29> hcd; // AArch64
1446 Bitfield<28> tdz; // AArch64
1447
1448 Bitfield<27> tge;
1449 Bitfield<26> tvm;
1450 Bitfield<25> ttlb;
1451 Bitfield<24> tpu;
1452 Bitfield<23> tpc;
1453 Bitfield<22> tsw;
1454 Bitfield<21> tac;
1455 Bitfield<21> tacr; // AArch64
1456 Bitfield<20> tidcp;
1457 Bitfield<19> tsc;
1458 Bitfield<18> tid3;
1459 Bitfield<17> tid2;
1460 Bitfield<16> tid1;
1461 Bitfield<15> tid0;
1462 Bitfield<14> twe;
1463 Bitfield<13> twi;
1464 Bitfield<12> dc;
1465 Bitfield<11, 10> bsu;
1466 Bitfield<9> fb;
1467 Bitfield<8> va;
1468 Bitfield<8> vse; // AArch64
1469 Bitfield<7> vi;
1470 Bitfield<6> vf;
1471 Bitfield<5> amo;
1472 Bitfield<4> imo;
1473 Bitfield<3> fmo;
1474 Bitfield<2> ptw;
1475 Bitfield<1> swio;
1476 Bitfield<0> vm;
1477 EndBitUnion(HCR)
1478
1479 BitUnion32(NSACR)
1480 Bitfield<20> nstrcdis;
1481 Bitfield<19> rfr;
1482 Bitfield<15> nsasedis;
1483 Bitfield<14> nsd32dis;
1484 Bitfield<13> cp13;
1485 Bitfield<12> cp12;
1486 Bitfield<11> cp11;
1487 Bitfield<10> cp10;
1488 Bitfield<9> cp9;
1489 Bitfield<8> cp8;
1490 Bitfield<7> cp7;
1491 Bitfield<6> cp6;
1492 Bitfield<5> cp5;
1493 Bitfield<4> cp4;
1494 Bitfield<3> cp3;
1495 Bitfield<2> cp2;
1496 Bitfield<1> cp1;
1497 Bitfield<0> cp0;
1498 EndBitUnion(NSACR)
1499
1500 BitUnion32(SCR)
1501 Bitfield<13> twe;
1502 Bitfield<12> twi;
1503 Bitfield<11> st; // AArch64
1504 Bitfield<10> rw; // AArch64
1505 Bitfield<9> sif;
1506 Bitfield<8> hce;
1507 Bitfield<7> scd;
1508 Bitfield<7> smd; // AArch64
1509 Bitfield<6> nEt;
1510 Bitfield<5> aw;
1511 Bitfield<4> fw;
1512 Bitfield<3> ea;
1513 Bitfield<2> fiq;
1514 Bitfield<1> irq;
1515 Bitfield<0> ns;
1516 EndBitUnion(SCR)
1517
1518 BitUnion32(SCTLR)
1519 Bitfield<30> te; // Thumb Exception Enable (AArch32 only)
1520 Bitfield<29> afe; // Access flag enable (AArch32 only)
1521 Bitfield<28> tre; // TEX remap enable (AArch32 only)
1522 Bitfield<27> nmfi; // Non-maskable FIQ support (ARMv7 only)
1523 Bitfield<26> uci; // Enable EL0 access to DC CVAU, DC CIVAC,
1524 // DC CVAC and IC IVAU instructions
1525 // (AArch64 SCTLR_EL1 only)
1526 Bitfield<25> ee; // Exception Endianness
1527 Bitfield<24> ve; // Interrupt Vectors Enable (ARMv7 only)
1528 Bitfield<24> e0e; // Endianness of explicit data accesses at EL0
1529 // (AArch64 SCTLR_EL1 only)
1530 Bitfield<23> xp; // Extended page table enable (dropped in ARMv7)
1531 Bitfield<22> u; // Alignment (dropped in ARMv7)
1532 Bitfield<21> fi; // Fast interrupts configuration enable
1533 // (ARMv7 only)
1534 Bitfield<20> uwxn; // Unprivileged write permission implies EL1 XN
1535 // (AArch32 only)
1536 Bitfield<19> dz; // Divide by Zero fault enable
1537 // (dropped in ARMv7)
1538 Bitfield<19> wxn; // Write permission implies XN
1539 Bitfield<18> ntwe; // Not trap WFE
1540 // (ARMv8 AArch32 and AArch64 SCTLR_EL1 only)
1541 Bitfield<18> rao2; // Read as one
1542 Bitfield<16> ntwi; // Not trap WFI
1543 // (ARMv8 AArch32 and AArch64 SCTLR_EL1 only)
1544 Bitfield<16> rao3; // Read as one
1545 Bitfield<15> uct; // Enable EL0 access to CTR_EL0
1546 // (AArch64 SCTLR_EL1 only)
1547 Bitfield<14> rr; // Round Robin select (ARMv7 only)
1548 Bitfield<14> dze; // Enable EL0 access to DC ZVA
1549 // (AArch64 SCTLR_EL1 only)
1550 Bitfield<13> v; // Vectors bit (AArch32 only)
1551 Bitfield<12> i; // Instruction cache enable
1552 Bitfield<11> z; // Branch prediction enable (ARMv7 only)
1553 Bitfield<10> sw; // SWP/SWPB enable (ARMv7 only)
1554 Bitfield<9, 8> rs; // Deprecated protection bits (dropped in ARMv7)
1555 Bitfield<9> uma; // User mask access (AArch64 SCTLR_EL1 only)
1556 Bitfield<8> sed; // SETEND disable
1557 // (ARMv8 AArch32 and AArch64 SCTLR_EL1 only)
1558 Bitfield<7> b; // Endianness support (dropped in ARMv7)
1559 Bitfield<7> itd; // IT disable
1560 // (ARMv8 AArch32 and AArch64 SCTLR_EL1 only)
1561 Bitfield<6, 3> rao4; // Read as one
1562 Bitfield<6> thee; // ThumbEE enable
1563 // (ARMv8 AArch32 and AArch64 SCTLR_EL1 only)
1564 Bitfield<5> cp15ben; // CP15 barrier enable
1565 // (AArch32 and AArch64 SCTLR_EL1 only)
1566 Bitfield<4> sa0; // Stack Alignment Check Enable for EL0
1567 // (AArch64 SCTLR_EL1 only)
1568 Bitfield<3> sa; // Stack Alignment Check Enable (AArch64 only)
1569 Bitfield<2> c; // Cache enable
1570 Bitfield<1> a; // Alignment check enable
1571 Bitfield<0> m; // MMU enable
1572 EndBitUnion(SCTLR)
1573
1574 BitUnion32(CPACR)
1575 Bitfield<1, 0> cp0;
1576 Bitfield<3, 2> cp1;
1577 Bitfield<5, 4> cp2;
1578 Bitfield<7, 6> cp3;
1579 Bitfield<9, 8> cp4;
1580 Bitfield<11, 10> cp5;
1581 Bitfield<13, 12> cp6;
1582 Bitfield<15, 14> cp7;
1583 Bitfield<17, 16> cp8;
1584 Bitfield<19, 18> cp9;
1585 Bitfield<21, 20> cp10;
1586 Bitfield<21, 20> fpen; // AArch64
1587 Bitfield<23, 22> cp11;
1588 Bitfield<25, 24> cp12;
1589 Bitfield<27, 26> cp13;
1590 Bitfield<29, 28> rsvd;
1591 Bitfield<28> tta; // AArch64
1592 Bitfield<30> d32dis;
1593 Bitfield<31> asedis;
1594 EndBitUnion(CPACR)
1595
1596 BitUnion32(FSR)
1597 Bitfield<3, 0> fsLow;
1598 Bitfield<5, 0> status; // LPAE
1599 Bitfield<7, 4> domain;
1600 Bitfield<9> lpae;
1601 Bitfield<10> fsHigh;
1602 Bitfield<11> wnr;
1603 Bitfield<12> ext;
1604 Bitfield<13> cm; // LPAE
1605 EndBitUnion(FSR)
1606
1607 BitUnion32(FPSCR)
1608 Bitfield<0> ioc;
1609 Bitfield<1> dzc;
1610 Bitfield<2> ofc;
1611 Bitfield<3> ufc;
1612 Bitfield<4> ixc;
1613 Bitfield<7> idc;
1614 Bitfield<8> ioe;
1615 Bitfield<9> dze;
1616 Bitfield<10> ofe;
1617 Bitfield<11> ufe;
1618 Bitfield<12> ixe;
1619 Bitfield<15> ide;
1620 Bitfield<18, 16> len;
1621 Bitfield<21, 20> stride;
1622 Bitfield<23, 22> rMode;
1623 Bitfield<24> fz;
1624 Bitfield<25> dn;
1625 Bitfield<26> ahp;
1626 Bitfield<27> qc;
1627 Bitfield<28> v;
1628 Bitfield<29> c;
1629 Bitfield<30> z;
1630 Bitfield<31> n;
1631 EndBitUnion(FPSCR)
1632
1633 // This mask selects bits of the FPSCR that actually go in the FpCondCodes
1634 // integer register to allow renaming.
1635 static const uint32_t FpCondCodesMask = 0xF0000000;
1636 // This mask selects the cumulative FP exception flags of the FPSCR.
1637 static const uint32_t FpscrExcMask = 0x0000009F;
1638 // This mask selects the cumulative saturation flag of the FPSCR.
1639 static const uint32_t FpscrQcMask = 0x08000000;
1640
1641 BitUnion32(FPEXC)
1642 Bitfield<31> ex;
1643 Bitfield<30> en;
1644 Bitfield<29, 0> subArchDefined;
1645 EndBitUnion(FPEXC)
1646
1647 BitUnion32(MVFR0)
1648 Bitfield<3, 0> advSimdRegisters;
1649 Bitfield<7, 4> singlePrecision;
1650 Bitfield<11, 8> doublePrecision;
1651 Bitfield<15, 12> vfpExceptionTrapping;
1652 Bitfield<19, 16> divide;
1653 Bitfield<23, 20> squareRoot;
1654 Bitfield<27, 24> shortVectors;
1655 Bitfield<31, 28> roundingModes;
1656 EndBitUnion(MVFR0)
1657
1658 BitUnion32(MVFR1)
1659 Bitfield<3, 0> flushToZero;
1660 Bitfield<7, 4> defaultNaN;
1661 Bitfield<11, 8> advSimdLoadStore;
1662 Bitfield<15, 12> advSimdInteger;
1663 Bitfield<19, 16> advSimdSinglePrecision;
1664 Bitfield<23, 20> advSimdHalfPrecision;
1665 Bitfield<27, 24> vfpHalfPrecision;
1666 Bitfield<31, 28> raz;
1667 EndBitUnion(MVFR1)
1668
1669 BitUnion64(TTBCR)
1670 // Short-descriptor translation table format
1671 Bitfield<2, 0> n;
1672 Bitfield<4> pd0;
1673 Bitfield<5> pd1;
1674 // Long-descriptor translation table format
1675 Bitfield<5, 0> t0sz;
1676 Bitfield<7> epd0;
1677 Bitfield<9, 8> irgn0;
1678 Bitfield<11, 10> orgn0;
1679 Bitfield<13, 12> sh0;
1680 Bitfield<14> tg0;
1681 Bitfield<21, 16> t1sz;
1682 Bitfield<22> a1;
1683 Bitfield<23> epd1;
1684 Bitfield<25, 24> irgn1;
1685 Bitfield<27, 26> orgn1;
1686 Bitfield<29, 28> sh1;
1687 Bitfield<30> tg1;
1688 Bitfield<34, 32> ips;
1689 Bitfield<36> as;
1690 Bitfield<37> tbi0;
1691 Bitfield<38> tbi1;
1692 // Common
1693 Bitfield<31> eae;
1694 // TCR_EL2/3 (AArch64)
1695 Bitfield<18, 16> ps;
1696 Bitfield<20> tbi;
1697 EndBitUnion(TTBCR)
1698
1699 // Fields of TCR_EL{1,2,3} (mostly overlapping)
1700 // TCR_EL1 is natively 64 bits, the others are 32 bits
1701 BitUnion64(TCR)
1702 Bitfield<5, 0> t0sz;
1703 Bitfield<7> epd0; // EL1
1704 Bitfield<9, 8> irgn0;
1705 Bitfield<11, 10> orgn0;
1706 Bitfield<13, 12> sh0;
1707 Bitfield<15, 14> tg0;
1708 Bitfield<18, 16> ps;
1709 Bitfield<20> tbi; // EL2/EL3
1710 Bitfield<21, 16> t1sz; // EL1
1711 Bitfield<22> a1; // EL1
1712 Bitfield<23> epd1; // EL1
1713 Bitfield<25, 24> irgn1; // EL1
1714 Bitfield<27, 26> orgn1; // EL1
1715 Bitfield<29, 28> sh1; // EL1
1716 Bitfield<31, 30> tg1; // EL1
1717 Bitfield<34, 32> ips; // EL1
1718 Bitfield<36> as; // EL1
1719 Bitfield<37> tbi0; // EL1
1720 Bitfield<38> tbi1; // EL1
1721 EndBitUnion(TCR)
1722
1723 BitUnion32(HTCR)
1724 Bitfield<2, 0> t0sz;
1725 Bitfield<9, 8> irgn0;
1726 Bitfield<11, 10> orgn0;
1727 Bitfield<13, 12> sh0;
1728 EndBitUnion(HTCR)
1729
1730 BitUnion32(VTCR_t)
1731 Bitfield<3, 0> t0sz;
1732 Bitfield<4> s;
1733 Bitfield<7, 6> sl0;
1734 Bitfield<9, 8> irgn0;
1735 Bitfield<11, 10> orgn0;
1736 Bitfield<13, 12> sh0;
1737 EndBitUnion(VTCR_t)
1738
1739 BitUnion32(PRRR)
1740 Bitfield<1,0> tr0;
1741 Bitfield<3,2> tr1;
1742 Bitfield<5,4> tr2;
1743 Bitfield<7,6> tr3;
1744 Bitfield<9,8> tr4;
1745 Bitfield<11,10> tr5;
1746 Bitfield<13,12> tr6;
1747 Bitfield<15,14> tr7;
1748 Bitfield<16> ds0;
1749 Bitfield<17> ds1;
1750 Bitfield<18> ns0;
1751 Bitfield<19> ns1;
1752 Bitfield<24> nos0;
1753 Bitfield<25> nos1;
1754 Bitfield<26> nos2;
1755 Bitfield<27> nos3;
1756 Bitfield<28> nos4;
1757 Bitfield<29> nos5;
1758 Bitfield<30> nos6;
1759 Bitfield<31> nos7;
1760 EndBitUnion(PRRR)
1761
1762 BitUnion32(NMRR)
1763 Bitfield<1,0> ir0;
1764 Bitfield<3,2> ir1;
1765 Bitfield<5,4> ir2;
1766 Bitfield<7,6> ir3;
1767 Bitfield<9,8> ir4;
1768 Bitfield<11,10> ir5;
1769 Bitfield<13,12> ir6;
1770 Bitfield<15,14> ir7;
1771 Bitfield<17,16> or0;
1772 Bitfield<19,18> or1;
1773 Bitfield<21,20> or2;
1774 Bitfield<23,22> or3;
1775 Bitfield<25,24> or4;
1776 Bitfield<27,26> or5;
1777 Bitfield<29,28> or6;
1778 Bitfield<31,30> or7;
1779 EndBitUnion(NMRR)
1780
1781 BitUnion32(CONTEXTIDR)
1782 Bitfield<7,0> asid;
1783 Bitfield<31,8> procid;
1784 EndBitUnion(CONTEXTIDR)
1785
1786 BitUnion32(L2CTLR)
1787 Bitfield<2,0> sataRAMLatency;
1788 Bitfield<4,3> reserved_4_3;
1789 Bitfield<5> dataRAMSetup;
1790 Bitfield<8,6> tagRAMLatency;
1791 Bitfield<9> tagRAMSetup;
1792 Bitfield<11,10> dataRAMSlice;
1793 Bitfield<12> tagRAMSlice;
1794 Bitfield<20,13> reserved_20_13;
1795 Bitfield<21> eccandParityEnable;
1796 Bitfield<22> reserved_22;
1797 Bitfield<23> interptCtrlPresent;
1798 Bitfield<25,24> numCPUs;
1799 Bitfield<30,26> reserved_30_26;
1800 Bitfield<31> l2rstDISABLE_monitor;
1801 EndBitUnion(L2CTLR)
1802
1803 BitUnion32(CTR)
1804 Bitfield<3,0> iCacheLineSize;
1805 Bitfield<13,4> raz_13_4;
1806 Bitfield<15,14> l1IndexPolicy;
1807 Bitfield<19,16> dCacheLineSize;
1808 Bitfield<23,20> erg;
1809 Bitfield<27,24> cwg;
1810 Bitfield<28> raz_28;
1811 Bitfield<31,29> format;
1812 EndBitUnion(CTR)
1813
1814 BitUnion32(PMSELR)
1815 Bitfield<4, 0> sel;
1816 EndBitUnion(PMSELR)
1817
1818 BitUnion64(PAR)
1819 // 64-bit format
1820 Bitfield<63, 56> attr;
1821 Bitfield<39, 12> pa;
1822 Bitfield<11> lpae;
1823 Bitfield<9> ns;
1824 Bitfield<8, 7> sh;
1825 Bitfield<0> f;
1826 EndBitUnion(PAR)
1827
1828 BitUnion32(ESR)
1829 Bitfield<31, 26> ec;
1830 Bitfield<25> il;
1831 Bitfield<15, 0> imm16;
1832 EndBitUnion(ESR)
1833
1834 BitUnion32(CPTR)
1835 Bitfield<31> tcpac;
1836 Bitfield<20> tta;
1837 Bitfield<13, 12> res1_13_12_el2;
1838 Bitfield<10> tfp;
1839 Bitfield<9, 0> res1_9_0_el2;
1840 EndBitUnion(CPTR)
1841
1842
1843 // Checks read access permissions to coproc. registers
1844 bool canReadCoprocReg(MiscRegIndex reg, SCR scr, CPSR cpsr,
1845 ThreadContext *tc);
1846
1847 // Checks write access permissions to coproc. registers
1848 bool canWriteCoprocReg(MiscRegIndex reg, SCR scr, CPSR cpsr,
1849 ThreadContext *tc);
1850
1851 // Checks read access permissions to AArch64 system registers
1852 bool canReadAArch64SysReg(MiscRegIndex reg, SCR scr, CPSR cpsr,
1853 ThreadContext *tc);
1854
1855 // Checks write access permissions to AArch64 system registers
1856 bool canWriteAArch64SysReg(MiscRegIndex reg, SCR scr, CPSR cpsr,
1857 ThreadContext *tc);
1858
1859 // Uses just the scr.ns bit to pre flatten the misc regs. This is useful
1860 // for MCR/MRC instructions
1861 int
1862 flattenMiscRegNsBanked(int reg, ThreadContext *tc);
1863
1864 // Flattens a misc reg index using the specified security state. This is
1865 // used for opperations (eg address translations) where the security
1866 // state of the register access may differ from the current state of the
1867 // processor
1868 int
1869 flattenMiscRegNsBanked(int reg, ThreadContext *tc, bool ns);
1870
1871 // Takes a misc reg index and returns the root reg if its one of a set of
1872 // banked registers
1873 void
1874 preUnflattenMiscReg();
1875
1876 int
1877 unflattenMiscReg(int reg);
1878
1879}
1880
1881#endif // __ARCH_ARM_MISCREGS_HH__