Merge
[gem5.git] / src / arch / x86 / miscregs.hh
1 /*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *
9 * The software must be used only for Non-Commercial Use which means any
10 * use which is NOT directed to receiving any direct monetary
11 * compensation for, or commercial advantage from such use. Illustrative
12 * examples of non-commercial use are academic research, personal study,
13 * teaching, education and corporate research & development.
14 * Illustrative examples of commercial use are distributing products for
15 * commercial advantage and providing services using the software for
16 * commercial advantage.
17 *
18 * If you wish to use this software or functionality therein that may be
19 * covered by patents for commercial use, please contact:
20 * Director of Intellectual Property Licensing
21 * Office of Strategy and Technology
22 * Hewlett-Packard Company
23 * 1501 Page Mill Road
24 * Palo Alto, California 94304
25 *
26 * Redistributions of source code must retain the above copyright notice,
27 * this list of conditions and the following disclaimer. Redistributions
28 * in binary form must reproduce the above copyright notice, this list of
29 * conditions and the following disclaimer in the documentation and/or
30 * other materials provided with the distribution. Neither the name of
31 * the COPYRIGHT HOLDER(s), HEWLETT-PACKARD COMPANY, nor the names of its
32 * contributors may be used to endorse or promote products derived from
33 * this software without specific prior written permission. No right of
34 * sublicense is granted herewith. Derivatives of the software and
35 * output created using the software may be prepared, but only for
36 * Non-Commercial Uses. Derivatives of the software may be shared with
37 * others provided: (i) the others agree to abide by the list of
38 * conditions herein which includes the Non-Commercial Use restrictions;
39 * and (ii) such Derivatives of the software include the above copyright
40 * notice to acknowledge the contribution from this software where
41 * applicable, this list of conditions and the disclaimer below.
42 *
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58 #ifndef __ARCH_X86_MISCREGS_HH__
59 #define __ARCH_X86_MISCREGS_HH__
60
61 #include "arch/x86/segmentregs.hh"
62 #include "arch/x86/x86_traits.hh"
63 #include "base/bitunion.hh"
64
65 //These get defined in some system headers (at least termbits.h). That confuses
66 //things here significantly.
67 #undef CR0
68 #undef CR2
69 #undef CR3
70
71 namespace X86ISA
72 {
73 enum CondFlagBit {
74 CFBit = 1 << 0,
75 PFBit = 1 << 2,
76 ECFBit = 1 << 3,
77 AFBit = 1 << 4,
78 EZFBit = 1 << 5,
79 ZFBit = 1 << 6,
80 SFBit = 1 << 7,
81 DFBit = 1 << 10,
82 OFBit = 1 << 11
83 };
84
85 enum MiscRegIndex
86 {
87 // Control registers
88 // Most of these are invalid.
89 MISCREG_CR_BASE,
90 MISCREG_CR0 = MISCREG_CR_BASE,
91 MISCREG_CR1,
92 MISCREG_CR2,
93 MISCREG_CR3,
94 MISCREG_CR4,
95 MISCREG_CR5,
96 MISCREG_CR6,
97 MISCREG_CR7,
98 MISCREG_CR8,
99 MISCREG_CR9,
100 MISCREG_CR10,
101 MISCREG_CR11,
102 MISCREG_CR12,
103 MISCREG_CR13,
104 MISCREG_CR14,
105 MISCREG_CR15,
106
107 // Debug registers
108 MISCREG_DR_BASE = MISCREG_CR_BASE + NumCRegs,
109 MISCREG_DR0 = MISCREG_DR_BASE,
110 MISCREG_DR1,
111 MISCREG_DR2,
112 MISCREG_DR3,
113 MISCREG_DR4,
114 MISCREG_DR5,
115 MISCREG_DR6,
116 MISCREG_DR7,
117
118 // Flags register
119 MISCREG_RFLAGS = MISCREG_DR_BASE + NumDRegs,
120
121 /*
122 * Model Specific Registers
123 */
124 // Time stamp counter
125 MISCREG_TSC,
126
127 MISCREG_MTRRCAP,
128
129 MISCREG_SYSENTER_CS,
130 MISCREG_SYSENTER_ESP,
131 MISCREG_SYSENTER_EIP,
132
133 MISCREG_MCG_CAP,
134 MISCREG_MCG_STATUS,
135 MISCREG_MCG_CTL,
136
137 MISCREG_DEBUG_CTL_MSR,
138
139 MISCREG_LAST_BRANCH_FROM_IP,
140 MISCREG_LAST_BRANCH_TO_IP,
141 MISCREG_LAST_EXCEPTION_FROM_IP,
142 MISCREG_LAST_EXCEPTION_TO_IP,
143
144 MISCREG_MTRR_PHYS_BASE_BASE,
145 MISCREG_MTRR_PHYS_BASE_0 = MISCREG_MTRR_PHYS_BASE_BASE,
146 MISCREG_MTRR_PHYS_BASE_1,
147 MISCREG_MTRR_PHYS_BASE_2,
148 MISCREG_MTRR_PHYS_BASE_3,
149 MISCREG_MTRR_PHYS_BASE_4,
150 MISCREG_MTRR_PHYS_BASE_5,
151 MISCREG_MTRR_PHYS_BASE_6,
152 MISCREG_MTRR_PHYS_BASE_7,
153
154 MISCREG_MTRR_PHYS_MASK_BASE,
155 MISCREG_MTRR_PHYS_MASK_0 = MISCREG_MTRR_PHYS_MASK_BASE,
156 MISCREG_MTRR_PHYS_MASK_1,
157 MISCREG_MTRR_PHYS_MASK_2,
158 MISCREG_MTRR_PHYS_MASK_3,
159 MISCREG_MTRR_PHYS_MASK_4,
160 MISCREG_MTRR_PHYS_MASK_5,
161 MISCREG_MTRR_PHYS_MASK_6,
162 MISCREG_MTRR_PHYS_MASK_7,
163
164 MISCREG_MTRR_FIX_64K_00000,
165 MISCREG_MTRR_FIX_16K_80000,
166 MISCREG_MTRR_FIX_16K_A0000,
167 MISCREG_MTRR_FIX_4K_C0000,
168 MISCREG_MTRR_FIX_4K_C8000,
169 MISCREG_MTRR_FIX_4K_D0000,
170 MISCREG_MTRR_FIX_4K_D8000,
171 MISCREG_MTRR_FIX_4K_E0000,
172 MISCREG_MTRR_FIX_4K_E8000,
173 MISCREG_MTRR_FIX_4K_F0000,
174 MISCREG_MTRR_FIX_4K_F8000,
175
176 MISCREG_PAT,
177
178 MISCREG_DEF_TYPE,
179
180 MISCREG_MC_CTL_BASE,
181 MISCREG_MC0_CTL = MISCREG_MC_CTL_BASE,
182 MISCREG_MC1_CTL,
183 MISCREG_MC2_CTL,
184 MISCREG_MC3_CTL,
185 MISCREG_MC4_CTL,
186
187 MISCREG_MC_STATUS_BASE,
188 MISCREG_MC0_STATUS = MISCREG_MC_STATUS_BASE,
189 MISCREG_MC1_STATUS,
190 MISCREG_MC2_STATUS,
191 MISCREG_MC3_STATUS,
192 MISCREG_MC4_STATUS,
193
194 MISCREG_MC_ADDR_BASE,
195 MISCREG_MC0_ADDR = MISCREG_MC_ADDR_BASE,
196 MISCREG_MC1_ADDR,
197 MISCREG_MC2_ADDR,
198 MISCREG_MC3_ADDR,
199 MISCREG_MC4_ADDR,
200
201 MISCREG_MC_MISC_BASE,
202 MISCREG_MC0_MISC = MISCREG_MC_MISC_BASE,
203 MISCREG_MC1_MISC,
204 MISCREG_MC2_MISC,
205 MISCREG_MC3_MISC,
206 MISCREG_MC4_MISC,
207
208 // Extended feature enable register
209 MISCREG_EFER,
210
211 MISCREG_STAR,
212 MISCREG_LSTAR,
213 MISCREG_CSTAR,
214
215 MISCREG_SF_MASK,
216
217 MISCREG_KERNEL_GS_BASE,
218
219 MISCREG_TSC_AUX,
220
221 MISCREG_PERF_EVT_SEL_BASE,
222 MISCREG_PERF_EVT_SEL0 = MISCREG_PERF_EVT_SEL_BASE,
223 MISCREG_PERF_EVT_SEL1,
224 MISCREG_PERF_EVT_SEL2,
225 MISCREG_PERF_EVT_SEL3,
226
227 MISCREG_PERF_EVT_CTR_BASE,
228 MISCREG_PERF_EVT_CTR0 = MISCREG_PERF_EVT_CTR_BASE,
229 MISCREG_PERF_EVT_CTR1,
230 MISCREG_PERF_EVT_CTR2,
231 MISCREG_PERF_EVT_CTR3,
232
233 MISCREG_SYSCFG,
234
235 MISCREG_IORR_BASE_BASE,
236 MISCREG_IORR_BASE0 = MISCREG_IORR_BASE_BASE,
237 MISCREG_IORR_BASE1,
238
239 MISCREG_IORR_MASK_BASE,
240 MISCREG_IORR_MASK0 = MISCREG_IORR_MASK_BASE,
241 MISCREG_IORR_MASK1,
242
243 MISCREG_TOP_MEM,
244 MISCREG_TOP_MEM2,
245
246 MISCREG_VM_CR,
247 MISCREG_IGNNE,
248 MISCREG_SMM_CTL,
249 MISCREG_VM_HSAVE_PA,
250
251 /*
252 * Segment registers
253 */
254 // Segment selectors
255 MISCREG_SEG_SEL_BASE,
256 MISCREG_ES = MISCREG_SEG_SEL_BASE,
257 MISCREG_CS,
258 MISCREG_SS,
259 MISCREG_DS,
260 MISCREG_FS,
261 MISCREG_GS,
262 MISCREG_HS,
263 MISCREG_TSL,
264 MISCREG_TSG,
265 MISCREG_LS,
266 MISCREG_MS,
267 MISCREG_TR,
268 MISCREG_IDTR,
269
270 // Hidden segment base field
271 MISCREG_SEG_BASE_BASE = MISCREG_SEG_SEL_BASE + NUM_SEGMENTREGS,
272 MISCREG_ES_BASE = MISCREG_SEG_BASE_BASE,
273 MISCREG_CS_BASE,
274 MISCREG_SS_BASE,
275 MISCREG_DS_BASE,
276 MISCREG_FS_BASE,
277 MISCREG_GS_BASE,
278 MISCREG_HS_BASE,
279 MISCREG_TSL_BASE,
280 MISCREG_TSG_BASE,
281 MISCREG_LS_BASE,
282 MISCREG_MS_BASE,
283 MISCREG_TR_BASE,
284 MISCREG_IDTR_BASE,
285
286 // The effective segment base, ie what is actually added to an
287 // address. In 64 bit mode this can be different from the above,
288 // namely 0.
289 MISCREG_SEG_EFF_BASE_BASE = MISCREG_SEG_BASE_BASE + NUM_SEGMENTREGS,
290 MISCREG_ES_EFF_BASE = MISCREG_SEG_EFF_BASE_BASE,
291 MISCREG_CS_EFF_BASE,
292 MISCREG_SS_EFF_BASE,
293 MISCREG_DS_EFF_BASE,
294 MISCREG_FS_EFF_BASE,
295 MISCREG_GS_EFF_BASE,
296 MISCREG_HS_EFF_BASE,
297 MISCREG_TSL_EFF_BASE,
298 MISCREG_TSG_EFF_BASE,
299 MISCREG_LS_EFF_BASE,
300 MISCREG_MS_EFF_BASE,
301 MISCREG_TR_EFF_BASE,
302 MISCREG_IDTR_EFF_BASE,
303
304 // Hidden segment limit field
305 MISCREG_SEG_LIMIT_BASE = MISCREG_SEG_EFF_BASE_BASE + NUM_SEGMENTREGS,
306 MISCREG_ES_LIMIT = MISCREG_SEG_LIMIT_BASE,
307 MISCREG_CS_LIMIT,
308 MISCREG_SS_LIMIT,
309 MISCREG_DS_LIMIT,
310 MISCREG_FS_LIMIT,
311 MISCREG_GS_LIMIT,
312 MISCREG_HS_LIMIT,
313 MISCREG_TSL_LIMIT,
314 MISCREG_TSG_LIMIT,
315 MISCREG_LS_LIMIT,
316 MISCREG_MS_LIMIT,
317 MISCREG_TR_LIMIT,
318 MISCREG_IDTR_LIMIT,
319
320 // Hidden segment limit attributes
321 MISCREG_SEG_ATTR_BASE = MISCREG_SEG_LIMIT_BASE + NUM_SEGMENTREGS,
322 MISCREG_ES_ATTR = MISCREG_SEG_ATTR_BASE,
323 MISCREG_CS_ATTR,
324 MISCREG_SS_ATTR,
325 MISCREG_DS_ATTR,
326 MISCREG_FS_ATTR,
327 MISCREG_GS_ATTR,
328 MISCREG_HS_ATTR,
329 MISCREG_TSL_ATTR,
330 MISCREG_TSG_ATTR,
331 MISCREG_LS_ATTR,
332 MISCREG_MS_ATTR,
333 MISCREG_TR_ATTR,
334 MISCREG_IDTR_ATTR,
335
336 // Floating point control registers
337 MISCREG_X87_TOP =
338 MISCREG_SEG_ATTR_BASE + NUM_SEGMENTREGS,
339
340 //XXX Add "Model-Specific Registers"
341
342 MISCREG_APIC_BASE,
343
344 MISCREG_APIC_START,
345 MISCREG_APIC_ID = MISCREG_APIC_START,
346 MISCREG_APIC_VERSION,
347 MISCREG_APIC_TASK_PRIORITY,
348 MISCREG_APIC_ARBITRATION_PRIORITY,
349 MISCREG_APIC_PROCESSOR_PRIORITY,
350 MISCREG_APIC_EOI,
351 MISCREG_APIC_LOGICAL_DESTINATION,
352 MISCREG_APIC_DESTINATION_FORMAT,
353 MISCREG_APIC_SPURIOUS_INTERRUPT_VECTOR,
354
355 MISCREG_APIC_IN_SERVICE_BASE,
356
357 MISCREG_APIC_TRIGGER_MODE_BASE = MISCREG_APIC_IN_SERVICE_BASE + 16,
358
359 MISCREG_APIC_INTERRUPT_REQUEST_BASE =
360 MISCREG_APIC_TRIGGER_MODE_BASE + 16,
361
362 MISCREG_APIC_ERROR_STATUS = MISCREG_APIC_INTERRUPT_REQUEST_BASE + 16,
363 MISCREG_APIC_INTERRUPT_COMMAND_LOW,
364 MISCREG_APIC_INTERRUPT_COMMAND_HIGH,
365 MISCREG_APIC_LVT_TIMER,
366 MISCREG_APIC_LVT_THERMAL_SENSOR,
367 MISCREG_APIC_LVT_PERFORMANCE_MONITORING_COUNTERS,
368 MISCREG_APIC_LVT_LINT0,
369 MISCREG_APIC_LVT_LINT1,
370 MISCREG_APIC_LVT_ERROR,
371 MISCREG_APIC_INITIAL_COUNT,
372 MISCREG_APIC_CURRENT_COUNT,
373 MISCREG_APIC_DIVIDE_COUNT,
374 MISCREG_APIC_END = MISCREG_APIC_DIVIDE_COUNT,
375
376 MISCREG_APIC_INTERNAL_STATE,
377
378 // "Fake" MSRs for internally implemented devices
379 MISCREG_PCI_CONFIG_ADDRESS,
380
381 NUM_MISCREGS
382 };
383
384 static inline MiscRegIndex
385 MISCREG_CR(int index)
386 {
387 return (MiscRegIndex)(MISCREG_CR_BASE + index);
388 }
389
390 static inline MiscRegIndex
391 MISCREG_DR(int index)
392 {
393 return (MiscRegIndex)(MISCREG_DR_BASE + index);
394 }
395
396 static inline MiscRegIndex
397 MISCREG_MTRR_PHYS_BASE(int index)
398 {
399 return (MiscRegIndex)(MISCREG_MTRR_PHYS_BASE_BASE + index);
400 }
401
402 static inline MiscRegIndex
403 MISCREG_MTRR_PHYS_MASK(int index)
404 {
405 return (MiscRegIndex)(MISCREG_MTRR_PHYS_MASK_BASE + index);
406 }
407
408 static inline MiscRegIndex
409 MISCREG_MC_CTL(int index)
410 {
411 return (MiscRegIndex)(MISCREG_MC_CTL_BASE + index);
412 }
413
414 static inline MiscRegIndex
415 MISCREG_MC_STATUS(int index)
416 {
417 return (MiscRegIndex)(MISCREG_MC_STATUS_BASE + index);
418 }
419
420 static inline MiscRegIndex
421 MISCREG_MC_ADDR(int index)
422 {
423 return (MiscRegIndex)(MISCREG_MC_ADDR_BASE + index);
424 }
425
426 static inline MiscRegIndex
427 MISCREG_MC_MISC(int index)
428 {
429 return (MiscRegIndex)(MISCREG_MC_MISC_BASE + index);
430 }
431
432 static inline MiscRegIndex
433 MISCREG_PERF_EVT_SEL(int index)
434 {
435 return (MiscRegIndex)(MISCREG_PERF_EVT_SEL_BASE + index);
436 }
437
438 static inline MiscRegIndex
439 MISCREG_PERF_EVT_CTR(int index)
440 {
441 return (MiscRegIndex)(MISCREG_PERF_EVT_CTR_BASE + index);
442 }
443
444 static inline MiscRegIndex
445 MISCREG_IORR_BASE(int index)
446 {
447 return (MiscRegIndex)(MISCREG_IORR_BASE_BASE + index);
448 }
449
450 static inline MiscRegIndex
451 MISCREG_IORR_MASK(int index)
452 {
453 return (MiscRegIndex)(MISCREG_IORR_MASK_BASE + index);
454 }
455
456 static inline MiscRegIndex
457 MISCREG_SEG_SEL(int index)
458 {
459 return (MiscRegIndex)(MISCREG_SEG_SEL_BASE + index);
460 }
461
462 static inline MiscRegIndex
463 MISCREG_SEG_BASE(int index)
464 {
465 return (MiscRegIndex)(MISCREG_SEG_BASE_BASE + index);
466 }
467
468 static inline MiscRegIndex
469 MISCREG_SEG_EFF_BASE(int index)
470 {
471 return (MiscRegIndex)(MISCREG_SEG_EFF_BASE_BASE + index);
472 }
473
474 static inline MiscRegIndex
475 MISCREG_SEG_LIMIT(int index)
476 {
477 return (MiscRegIndex)(MISCREG_SEG_LIMIT_BASE + index);
478 }
479
480 static inline MiscRegIndex
481 MISCREG_SEG_ATTR(int index)
482 {
483 return (MiscRegIndex)(MISCREG_SEG_ATTR_BASE + index);
484 }
485
486 static inline MiscRegIndex
487 MISCREG_APIC_IN_SERVICE(int index)
488 {
489 return (MiscRegIndex)(MISCREG_APIC_IN_SERVICE_BASE + index);
490 }
491
492 static inline MiscRegIndex
493 MISCREG_APIC_TRIGGER_MODE(int index)
494 {
495 return (MiscRegIndex)(MISCREG_APIC_TRIGGER_MODE_BASE + index);
496 }
497
498 static inline MiscRegIndex
499 MISCREG_APIC_INTERRUPT_REQUEST(int index)
500 {
501 return (MiscRegIndex)(MISCREG_APIC_INTERRUPT_REQUEST_BASE + index);
502 }
503
504 /**
505 * A type to describe the condition code bits of the RFLAGS register,
506 * plus two flags, EZF and ECF, which are only visible to microcode.
507 */
508 BitUnion64(CCFlagBits)
509 Bitfield<11> of;
510 Bitfield<7> sf;
511 Bitfield<6> zf;
512 Bitfield<5> ezf;
513 Bitfield<4> af;
514 Bitfield<3> ecf;
515 Bitfield<2> pf;
516 Bitfield<0> cf;
517 EndBitUnion(CCFlagBits)
518
519 /**
520 * RFLAGS
521 */
522 BitUnion64(RFLAGS)
523 Bitfield<21> id; // ID Flag
524 Bitfield<20> vip; // Virtual Interrupt Pending
525 Bitfield<19> vif; // Virtual Interrupt Flag
526 Bitfield<18> ac; // Alignment Check
527 Bitfield<17> vm; // Virtual-8086 Mode
528 Bitfield<16> rf; // Resume Flag
529 Bitfield<14> nt; // Nested Task
530 Bitfield<13, 12> iopl; // I/O Privilege Level
531 Bitfield<11> of; // Overflow Flag
532 Bitfield<10> df; // Direction Flag
533 Bitfield<9> intf; // Interrupt Flag
534 Bitfield<8> tf; // Trap Flag
535 Bitfield<7> sf; // Sign Flag
536 Bitfield<6> zf; // Zero Flag
537 Bitfield<4> af; // Auxiliary Flag
538 Bitfield<2> pf; // Parity Flag
539 Bitfield<0> cf; // Carry Flag
540 EndBitUnion(RFLAGS)
541
542 /**
543 * Control registers
544 */
545 BitUnion64(CR0)
546 Bitfield<31> pg; // Paging
547 Bitfield<30> cd; // Cache Disable
548 Bitfield<29> nw; // Not Writethrough
549 Bitfield<18> am; // Alignment Mask
550 Bitfield<16> wp; // Write Protect
551 Bitfield<5> ne; // Numeric Error
552 Bitfield<4> et; // Extension Type
553 Bitfield<3> ts; // Task Switched
554 Bitfield<2> em; // Emulation
555 Bitfield<1> mp; // Monitor Coprocessor
556 Bitfield<0> pe; // Protection Enabled
557 EndBitUnion(CR0)
558
559 // Page Fault Virtual Address
560 BitUnion64(CR2)
561 Bitfield<31, 0> legacy;
562 EndBitUnion(CR2)
563
564 BitUnion64(CR3)
565 Bitfield<51, 12> longPdtb; // Long Mode Page-Directory-Table
566 // Base Address
567 Bitfield<31, 12> pdtb; // Non-PAE Addressing Page-Directory-Table
568 // Base Address
569 Bitfield<31, 5> paePdtb; // PAE Addressing Page-Directory-Table
570 // Base Address
571 Bitfield<4> pcd; // Page-Level Cache Disable
572 Bitfield<3> pwt; // Page-Level Writethrough
573 EndBitUnion(CR3)
574
575 BitUnion64(CR4)
576 Bitfield<10> osxmmexcpt; // Operating System Unmasked
577 // Exception Support
578 Bitfield<9> osfxsr; // Operating System FXSave/FSRSTOR Support
579 Bitfield<8> pce; // Performance-Monitoring Counter Enable
580 Bitfield<7> pge; // Page-Global Enable
581 Bitfield<6> mce; // Machine Check Enable
582 Bitfield<5> pae; // Physical-Address Extension
583 Bitfield<4> pse; // Page Size Extensions
584 Bitfield<3> de; // Debugging Extensions
585 Bitfield<2> tsd; // Time Stamp Disable
586 Bitfield<1> pvi; // Protected-Mode Virtual Interrupts
587 Bitfield<0> vme; // Virtual-8086 Mode Extensions
588 EndBitUnion(CR4)
589
590 BitUnion64(CR8)
591 Bitfield<3, 0> tpr; // Task Priority Register
592 EndBitUnion(CR8)
593
594 // MTRR capabilities
595 BitUnion64(MTRRcap)
596 Bitfield<7, 0> vcnt; // Variable-Range Register Count
597 Bitfield<8> fix; // Fixed-Range Registers
598 Bitfield<10> wc; // Write-Combining
599 EndBitUnion(MTRRcap)
600
601 /**
602 * SYSENTER configuration registers
603 */
604 BitUnion64(SysenterCS)
605 Bitfield<15, 0> targetCS;
606 EndBitUnion(SysenterCS)
607
608 BitUnion64(SysenterESP)
609 Bitfield<31, 0> targetESP;
610 EndBitUnion(SysenterESP)
611
612 BitUnion64(SysenterEIP)
613 Bitfield<31, 0> targetEIP;
614 EndBitUnion(SysenterEIP)
615
616 /**
617 * Global machine check registers
618 */
619 BitUnion64(McgCap)
620 Bitfield<7, 0> count; // Number of error reporting register banks
621 Bitfield<8> MCGCP; // MCG_CTL register present.
622 EndBitUnion(McgCap)
623
624 BitUnion64(McgStatus)
625 Bitfield<0> ripv; // Restart-IP valid
626 Bitfield<1> eipv; // Error-IP valid
627 Bitfield<2> mcip; // Machine check in-progress
628 EndBitUnion(McgStatus)
629
630 BitUnion64(DebugCtlMsr)
631 Bitfield<0> lbr; // Last-branch record
632 Bitfield<1> btf; // Branch single step
633 Bitfield<2> pb0; // Performance monitoring pin control 0
634 Bitfield<3> pb1; // Performance monitoring pin control 1
635 Bitfield<4> pb2; // Performance monitoring pin control 2
636 Bitfield<5> pb3; // Performance monitoring pin control 3
637 /*uint64_t pb(int index)
638 {
639 return bits(__data, index + 2);
640 }*/
641 EndBitUnion(DebugCtlMsr)
642
643 BitUnion64(MtrrPhysBase)
644 Bitfield<7, 0> type; // Default memory type
645 Bitfield<51, 12> physbase; // Range physical base address
646 EndBitUnion(MtrrPhysBase)
647
648 BitUnion64(MtrrPhysMask)
649 Bitfield<11> valid; // MTRR pair enable
650 Bitfield<51, 12> physmask; // Range physical mask
651 EndBitUnion(MtrrPhysMask)
652
653 BitUnion64(MtrrFixed)
654 /*uint64_t type(int index)
655 {
656 return bits(__data, index * 8 + 7, index * 8);
657 }*/
658 EndBitUnion(MtrrFixed)
659
660 BitUnion64(Pat)
661 /*uint64_t pa(int index)
662 {
663 return bits(__data, index * 8 + 2, index * 8);
664 }*/
665 EndBitUnion(Pat)
666
667 BitUnion64(MtrrDefType)
668 Bitfield<7, 0> type; // Default type
669 Bitfield<10> fe; // Fixed range enable
670 Bitfield<11> e; // MTRR enable
671 EndBitUnion(MtrrDefType)
672
673 /**
674 * Machine check
675 */
676 BitUnion64(McStatus)
677 Bitfield<15,0> mcaErrorCode;
678 Bitfield<31,16> modelSpecificCode;
679 Bitfield<56,32> otherInfo;
680 Bitfield<57> pcc; // Processor-context corrupt
681 Bitfield<58> addrv; // Error-address register valid
682 Bitfield<59> miscv; // Miscellaneous-error register valid
683 Bitfield<60> en; // Error condition enabled
684 Bitfield<61> uc; // Uncorrected error
685 Bitfield<62> over; // Status register overflow
686 Bitfield<63> val; // Valid
687 EndBitUnion(McStatus)
688
689 BitUnion64(McCtl)
690 /*uint64_t en(int index)
691 {
692 return bits(__data, index);
693 }*/
694 EndBitUnion(McCtl)
695
696 // Extended feature enable register
697 BitUnion64(Efer)
698 Bitfield<0> sce; // System call extensions
699 Bitfield<8> lme; // Long mode enable
700 Bitfield<10> lma; // Long mode active
701 Bitfield<11> nxe; // No-execute enable
702 Bitfield<12> svme; // Secure virtual machine enable
703 Bitfield<14> ffxsr; // Fast fxsave/fxrstor
704 EndBitUnion(Efer)
705
706 BitUnion64(Star)
707 Bitfield<31,0> targetEip;
708 Bitfield<47,32> syscallCsAndSs;
709 Bitfield<63,48> sysretCsAndSs;
710 EndBitUnion(Star)
711
712 BitUnion64(SfMask)
713 Bitfield<31,0> mask;
714 EndBitUnion(SfMask)
715
716 BitUnion64(PerfEvtSel)
717 Bitfield<7,0> eventMask;
718 Bitfield<15,8> unitMask;
719 Bitfield<16> usr; // User mode
720 Bitfield<17> os; // Operating-system mode
721 Bitfield<18> e; // Edge detect
722 Bitfield<19> pc; // Pin control
723 Bitfield<20> intEn; // Interrupt enable
724 Bitfield<22> en; // Counter enable
725 Bitfield<23> inv; // Invert mask
726 Bitfield<31,24> counterMask;
727 EndBitUnion(PerfEvtSel)
728
729 BitUnion32(Syscfg)
730 Bitfield<18> mfde; // MtrrFixDramEn
731 Bitfield<19> mfdm; // MtrrFixDramModEn
732 Bitfield<20> mvdm; // MtrrVarDramEn
733 Bitfield<21> tom2; // MtrrTom2En
734 EndBitUnion(Syscfg)
735
736 BitUnion64(IorrBase)
737 Bitfield<3> wr; // WrMem Enable
738 Bitfield<4> rd; // RdMem Enable
739 Bitfield<51,12> physbase; // Range physical base address
740 EndBitUnion(IorrBase)
741
742 BitUnion64(IorrMask)
743 Bitfield<11> v; // I/O register pair enable (valid)
744 Bitfield<51,12> physmask; // Range physical mask
745 EndBitUnion(IorrMask)
746
747 BitUnion64(Tom)
748 Bitfield<51,23> physAddr; // Top of memory physical address
749 EndBitUnion(Tom)
750
751 BitUnion64(VmCrMsr)
752 Bitfield<0> dpd;
753 Bitfield<1> rInit;
754 Bitfield<2> disA20M;
755 EndBitUnion(VmCrMsr)
756
757 BitUnion64(IgnneMsr)
758 Bitfield<0> ignne;
759 EndBitUnion(IgnneMsr)
760
761 BitUnion64(SmmCtlMsr)
762 Bitfield<0> dismiss;
763 Bitfield<1> enter;
764 Bitfield<2> smiCycle;
765 Bitfield<3> exit;
766 Bitfield<4> rsmCycle;
767 EndBitUnion(SmmCtlMsr)
768
769 /**
770 * Segment Selector
771 */
772 BitUnion64(SegSelector)
773 // The following bitfield is not defined in the ISA, but it's useful
774 // when checking selectors in larger data types to make sure they
775 // aren't too large.
776 Bitfield<63, 3> esi; // Extended selector
777 Bitfield<15, 3> si; // Selector Index
778 Bitfield<2> ti; // Table Indicator
779 Bitfield<1, 0> rpl; // Requestor Privilege Level
780 EndBitUnion(SegSelector)
781
782 /**
783 * Segment Descriptors
784 */
785
786 BitUnion64(SegDescriptor)
787 Bitfield<63, 56> baseHigh;
788 Bitfield<39, 16> baseLow;
789 Bitfield<55> g; // Granularity
790 Bitfield<54> d; // Default Operand Size
791 Bitfield<54> b; // Default Operand Size
792 Bitfield<53> l; // Long Attribute Bit
793 Bitfield<52> avl; // Available To Software
794 Bitfield<51, 48> limitHigh;
795 Bitfield<15, 0> limitLow;
796 Bitfield<47> p; // Present
797 Bitfield<46, 45> dpl; // Descriptor Privilege-Level
798 Bitfield<44> s; // System
799 SubBitUnion(type, 43, 40)
800 // Specifies whether this descriptor is for code or data.
801 Bitfield<43> codeOrData;
802
803 // These bit fields are for code segments
804 Bitfield<42> c; // Conforming
805 Bitfield<41> r; // Readable
806
807 // These bit fields are for data segments
808 Bitfield<42> e; // Expand-Down
809 Bitfield<41> w; // Writable
810
811 // This is used for both code and data segments.
812 Bitfield<40> a; // Accessed
813 EndSubBitUnion(type)
814 EndBitUnion(SegDescriptor)
815
816 BitUnion64(SegAttr)
817 Bitfield<0> writable;
818 Bitfield<1> readable;
819 Bitfield<2> expandDown;
820 Bitfield<4, 3> dpl;
821 Bitfield<5> defaultSize;
822 Bitfield<6> longMode;
823 EndBitUnion(SegAttr)
824
825 BitUnion64(GateDescriptor)
826 Bitfield<63, 48> offsetHigh; // Target Code-Segment Offset
827 Bitfield<15, 0> offsetLow; // Target Code-Segment Offset
828 Bitfield<31, 16> selector; // Target Code-Segment Selector
829 Bitfield<47> p; // Present
830 Bitfield<46, 45> dpl; // Descriptor Privilege-Level
831 Bitfield<43, 40> type;
832 Bitfield<36, 32> count; // Parameter Count
833 EndBitUnion(GateDescriptor)
834
835 /**
836 * Descriptor-Table Registers
837 */
838 BitUnion64(GDTR)
839 EndBitUnion(GDTR)
840
841 BitUnion64(IDTR)
842 EndBitUnion(IDTR)
843
844 BitUnion64(LDTR)
845 EndBitUnion(LDTR)
846
847 /**
848 * Task Register
849 */
850 BitUnion64(TR)
851 EndBitUnion(TR)
852
853
854 /**
855 * Local APIC Base Register
856 */
857 BitUnion64(LocalApicBase)
858 Bitfield<51, 12> base;
859 Bitfield<11> enable;
860 Bitfield<8> bsp;
861 EndBitUnion(LocalApicBase)
862 };
863
864 #endif // __ARCH_X86_INTREGS_HH__