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