X86: Create a directory for files that define register indexes.
authorGabe Black <gblack@eecs.umich.edu>
Mon, 23 Aug 2010 23:14:24 +0000 (16:14 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 23 Aug 2010 23:14:24 +0000 (16:14 -0700)
This is to help tidy up arch/x86. These files should not be used external to
the ISA.

--HG--
rename : src/arch/x86/apicregs.hh => src/arch/x86/regs/apic.hh
rename : src/arch/x86/floatregs.hh => src/arch/x86/regs/float.hh
rename : src/arch/x86/intregs.hh => src/arch/x86/regs/int.hh
rename : src/arch/x86/miscregs.hh => src/arch/x86/regs/misc.hh
rename : src/arch/x86/segmentregs.hh => src/arch/x86/regs/segment.hh

33 files changed:
src/arch/x86/apicregs.hh [deleted file]
src/arch/x86/emulenv.hh
src/arch/x86/floatregs.hh [deleted file]
src/arch/x86/insts/microfpop.cc
src/arch/x86/insts/micromediaop.cc
src/arch/x86/insts/microop.cc
src/arch/x86/insts/microregop.cc
src/arch/x86/insts/static_inst.cc
src/arch/x86/interrupts.cc
src/arch/x86/interrupts.hh
src/arch/x86/intregs.hh [deleted file]
src/arch/x86/isa.hh
src/arch/x86/isa/includes.isa
src/arch/x86/linux/syscalls.cc
src/arch/x86/linux/system.cc
src/arch/x86/miscregs.hh [deleted file]
src/arch/x86/mmaped_ipr.hh
src/arch/x86/nativetrace.cc
src/arch/x86/predecoder.cc
src/arch/x86/predecoder.hh
src/arch/x86/process.cc
src/arch/x86/registers.hh
src/arch/x86/regs/apic.hh [new file with mode: 0644]
src/arch/x86/regs/float.hh [new file with mode: 0644]
src/arch/x86/regs/int.hh [new file with mode: 0644]
src/arch/x86/regs/misc.hh [new file with mode: 0644]
src/arch/x86/regs/segment.hh [new file with mode: 0644]
src/arch/x86/segmentregs.hh [deleted file]
src/arch/x86/system.cc
src/arch/x86/tlb.cc
src/arch/x86/tlb.hh
src/arch/x86/utility.cc
src/arch/x86/utility.hh

diff --git a/src/arch/x86/apicregs.hh b/src/arch/x86/apicregs.hh
deleted file mode 100644 (file)
index dfea265..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-/*
- * Copyright (c) 2008 The Regents of The University of Michigan
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Gabe Black
- */
-
-#ifndef __ARCH_X86_APICREGS_HH__
-#define __ARCH_X86_APICREGS_HH__
-
-#include "base/bitunion.hh"
-
-namespace X86ISA
-{
-    enum ApicRegIndex
-    {
-        APIC_ID,
-        APIC_VERSION,
-        APIC_TASK_PRIORITY,
-        APIC_ARBITRATION_PRIORITY,
-        APIC_PROCESSOR_PRIORITY,
-        APIC_EOI,
-        APIC_LOGICAL_DESTINATION,
-        APIC_DESTINATION_FORMAT,
-        APIC_SPURIOUS_INTERRUPT_VECTOR,
-
-        APIC_IN_SERVICE_BASE,
-
-        APIC_TRIGGER_MODE_BASE = APIC_IN_SERVICE_BASE + 16,
-
-        APIC_INTERRUPT_REQUEST_BASE = APIC_TRIGGER_MODE_BASE + 16,
-
-        APIC_ERROR_STATUS = APIC_INTERRUPT_REQUEST_BASE + 16,
-        APIC_INTERRUPT_COMMAND_LOW,
-        APIC_INTERRUPT_COMMAND_HIGH,
-        APIC_LVT_TIMER,
-        APIC_LVT_THERMAL_SENSOR,
-        APIC_LVT_PERFORMANCE_MONITORING_COUNTERS,
-        APIC_LVT_LINT0,
-        APIC_LVT_LINT1,
-        APIC_LVT_ERROR,
-        APIC_INITIAL_COUNT,
-        APIC_CURRENT_COUNT,
-        APIC_DIVIDE_CONFIGURATION,
-
-        APIC_INTERNAL_STATE,
-
-        NUM_APIC_REGS
-    };
-
-    static inline ApicRegIndex
-    APIC_IN_SERVICE(int index)
-    {
-        return (ApicRegIndex)(APIC_IN_SERVICE_BASE + index);
-    }
-
-    static inline ApicRegIndex
-    APIC_TRIGGER_MODE(int index)
-    {
-        return (ApicRegIndex)(APIC_TRIGGER_MODE_BASE + index);
-    }
-
-    static inline ApicRegIndex
-    APIC_INTERRUPT_REQUEST(int index)
-    {
-        return (ApicRegIndex)(APIC_INTERRUPT_REQUEST_BASE + index);
-    }
-
-    BitUnion32(InterruptCommandRegLow)
-        Bitfield<7, 0> vector;
-        Bitfield<10, 8> deliveryMode;
-        Bitfield<11> destMode;
-        Bitfield<12> deliveryStatus;
-        Bitfield<14> level;
-        Bitfield<15> trigger;
-        Bitfield<19, 18> destShorthand;
-    EndBitUnion(InterruptCommandRegLow)
-
-    BitUnion32(InterruptCommandRegHigh)
-        Bitfield<31, 24> destination;
-    EndBitUnion(InterruptCommandRegHigh)
-}
-
-#endif
index b8b6cd6b6cb91357e25b1673a1d21f0235fd7e2d..a745fb53917fa09e64ad73df37bfec099ee0a7a4 100644 (file)
@@ -40,9 +40,9 @@
 #ifndef __ARCH_X86_EMULENV_HH__
 #define __ARCH_X86_EMULENV_HH__
 
-#include "arch/x86/intregs.hh"
-#include "arch/x86/segmentregs.hh"
 #include "arch/x86/registers.hh"
+#include "arch/x86/regs/int.hh"
+#include "arch/x86/regs/segment.hh"
 #include "arch/x86/types.hh"
 
 namespace X86ISA
diff --git a/src/arch/x86/floatregs.hh b/src/arch/x86/floatregs.hh
deleted file mode 100644 (file)
index 5ac33c4..0000000
+++ /dev/null
@@ -1,155 +0,0 @@
-/*
- * Copyright (c) 2007 The Hewlett-Packard Development Company
- * All rights reserved.
- *
- * The license below extends only to copyright in the software and shall
- * not be construed as granting a license to any other intellectual
- * property including but not limited to intellectual property relating
- * to a hardware implementation of the functionality of the software
- * licensed hereunder.  You may use the software subject to the license
- * terms below provided that you ensure that this notice is replicated
- * unmodified and in its entirety in all distributions of the software,
- * modified or unmodified, in source code or in binary form.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Gabe Black
- */
-
-#ifndef __ARCH_X86_FLOATREGS_HH__
-#define __ARCH_X86_FLOATREGS_HH__
-
-#include "arch/x86/x86_traits.hh"
-#include "base/bitunion.hh"
-
-namespace X86ISA
-{
-    enum FloatRegIndex
-    {
-        // MMX/X87 registers
-        FLOATREG_MMX_BASE,
-        FLOATREG_FPR_BASE = FLOATREG_MMX_BASE,
-        FLOATREG_MMX0 = FLOATREG_MMX_BASE,
-        FLOATREG_MMX1,
-        FLOATREG_MMX2,
-        FLOATREG_MMX3,
-        FLOATREG_MMX4,
-        FLOATREG_MMX5,
-        FLOATREG_MMX6,
-        FLOATREG_MMX7,
-
-        FLOATREG_FPR0 = FLOATREG_FPR_BASE,
-        FLOATREG_FPR1,
-        FLOATREG_FPR2,
-        FLOATREG_FPR3,
-        FLOATREG_FPR4,
-        FLOATREG_FPR5,
-        FLOATREG_FPR6,
-        FLOATREG_FPR7,
-
-        FLOATREG_XMM_BASE = FLOATREG_MMX_BASE + NumMMXRegs,
-        FLOATREG_XMM0_LOW = FLOATREG_XMM_BASE,
-        FLOATREG_XMM0_HIGH,
-        FLOATREG_XMM1_LOW,
-        FLOATREG_XMM1_HIGH,
-        FLOATREG_XMM2_LOW,
-        FLOATREG_XMM2_HIGH,
-        FLOATREG_XMM3_LOW,
-        FLOATREG_XMM3_HIGH,
-        FLOATREG_XMM4_LOW,
-        FLOATREG_XMM4_HIGH,
-        FLOATREG_XMM5_LOW,
-        FLOATREG_XMM5_HIGH,
-        FLOATREG_XMM6_LOW,
-        FLOATREG_XMM6_HIGH,
-        FLOATREG_XMM7_LOW,
-        FLOATREG_XMM7_HIGH,
-        FLOATREG_XMM8_LOW,
-        FLOATREG_XMM8_HIGH,
-        FLOATREG_XMM9_LOW,
-        FLOATREG_XMM9_HIGH,
-        FLOATREG_XMM10_LOW,
-        FLOATREG_XMM10_HIGH,
-        FLOATREG_XMM11_LOW,
-        FLOATREG_XMM11_HIGH,
-        FLOATREG_XMM12_LOW,
-        FLOATREG_XMM12_HIGH,
-        FLOATREG_XMM13_LOW,
-        FLOATREG_XMM13_HIGH,
-        FLOATREG_XMM14_LOW,
-        FLOATREG_XMM14_HIGH,
-        FLOATREG_XMM15_LOW,
-        FLOATREG_XMM15_HIGH,
-
-        FLOATREG_MICROFP_BASE = FLOATREG_XMM_BASE + 2 * NumXMMRegs,
-        FLOATREG_MICROFP0 = FLOATREG_MICROFP_BASE,
-        FLOATREG_MICROFP1,
-        FLOATREG_MICROFP2,
-        FLOATREG_MICROFP3,
-        FLOATREG_MICROFP4,
-        FLOATREG_MICROFP5,
-        FLOATREG_MICROFP6,
-        FLOATREG_MICROFP7,
-
-        NUM_FLOATREGS = FLOATREG_MICROFP_BASE + NumMicroFpRegs
-    };
-
-    static inline FloatRegIndex
-    FLOATREG_MMX(int index)
-    {
-        return (FloatRegIndex)(FLOATREG_MMX_BASE + index);
-    }
-
-    static inline FloatRegIndex
-    FLOATREG_FPR(int index)
-    {
-        return (FloatRegIndex)(FLOATREG_FPR_BASE + index);
-    }
-
-    static inline FloatRegIndex
-    FLOATREG_XMM_LOW(int index)
-    {
-        return (FloatRegIndex)(FLOATREG_XMM_BASE + 2 * index);
-    }
-
-    static inline FloatRegIndex
-    FLOATREG_XMM_HIGH(int index)
-    {
-        return (FloatRegIndex)(FLOATREG_XMM_BASE + 2 * index + 1);
-    }
-
-    static inline FloatRegIndex
-    FLOATREG_MICROFP(int index)
-    {
-        return (FloatRegIndex)(FLOATREG_MICROFP_BASE + index);
-    }
-
-    static inline FloatRegIndex
-    FLOATREG_STACK(int index, int top)
-    {
-        return FLOATREG_FPR((top + index + 8) % 8);
-    }
-};
-
-#endif // __ARCH_X86_FLOATREGS_HH__
index 281637db569b017bb397555b3494e97e9fc54d2a..94194974a8d2d6be9cb08fd8a441a09c085cf3f9 100644 (file)
@@ -38,7 +38,7 @@
  */
 
 #include "arch/x86/insts/microfpop.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include <string>
 
 namespace X86ISA
index 07ae360ee10755eb68263def113903ac76904106..2ed5df184593ba51ed1621a0c227b4f4b2a838e0 100644 (file)
@@ -29,7 +29,7 @@
  */
 
 #include "arch/x86/insts/micromediaop.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include <string>
 
 namespace X86ISA
index 22b069c2a63c0e4b3dfe10e09850660fdb9d1b11..4f464927a684d71ac7a9f71a438bd3dd4afbf69b 100644 (file)
@@ -38,7 +38,7 @@
  */
 
 #include "arch/x86/insts/microop.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 
 namespace X86ISA
 {
index 65ba019f0e0d523098edf4c4176ad36a762a59e3..56ac4e94646b2cf868147f1e738537e4fab62364 100644 (file)
@@ -38,7 +38,7 @@
  */
 
 #include "arch/x86/insts/microregop.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "base/condcodes.hh"
 #include <string>
 
index 621cf859d2215d0d9476f92da1e06bcc7fb86408..29957e121ee18a832315f97324d1c6b06f069139 100644 (file)
@@ -38,7 +38,7 @@
  */
 
 #include "arch/x86/insts/static_inst.hh"
-#include "arch/x86/segmentregs.hh"
+#include "arch/x86/regs/segment.hh"
 
 namespace X86ISA
 {
index 714a4a6262ea805f6d8b9f277a4542770da1de40..cc1d442feabb435a5f734087511dd09ed0ff0272 100644 (file)
@@ -37,9 +37,9 @@
  * Authors: Gabe Black
  */
 
-#include "arch/x86/apicregs.hh"
 #include "arch/x86/interrupts.hh"
 #include "arch/x86/intmessage.hh"
+#include "arch/x86/regs/apic.hh"
 #include "cpu/base.hh"
 #include "dev/x86/i82094aa.hh"
 #include "dev/x86/pc.hh"
index 6b5215135698063e3c040f92046a1daaf015a30d..55651bf3b9c1809b80be292f0d5fba9fd661d69e 100644 (file)
@@ -40,9 +40,9 @@
 #ifndef __ARCH_X86_INTERRUPTS_HH__
 #define __ARCH_X86_INTERRUPTS_HH__
 
-#include "arch/x86/apicregs.hh"
 #include "arch/x86/faults.hh"
 #include "arch/x86/intmessage.hh"
+#include "arch/x86/regs/apic.hh"
 #include "base/bitfield.hh"
 #include "cpu/thread_context.hh"
 #include "dev/io_device.hh"
diff --git a/src/arch/x86/intregs.hh b/src/arch/x86/intregs.hh
deleted file mode 100644 (file)
index 2a13710..0000000
+++ /dev/null
@@ -1,183 +0,0 @@
-/*
- * Copyright (c) 2007 The Hewlett-Packard Development Company
- * All rights reserved.
- *
- * The license below extends only to copyright in the software and shall
- * not be construed as granting a license to any other intellectual
- * property including but not limited to intellectual property relating
- * to a hardware implementation of the functionality of the software
- * licensed hereunder.  You may use the software subject to the license
- * terms below provided that you ensure that this notice is replicated
- * unmodified and in its entirety in all distributions of the software,
- * modified or unmodified, in source code or in binary form.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Gabe Black
- */
-
-#ifndef __ARCH_X86_INTREGS_HH__
-#define __ARCH_X86_INTREGS_HH__
-
-#include "arch/x86/x86_traits.hh"
-#include "base/bitunion.hh"
-#include "base/misc.hh"
-#include "sim/core.hh"
-
-namespace X86ISA
-{
-    BitUnion64(X86IntReg)
-        Bitfield<63,0> R;
-        SignedBitfield<63,0> SR;
-        Bitfield<31,0> E;
-        SignedBitfield<31,0> SE;
-        Bitfield<15,0> X;
-        SignedBitfield<15,0> SX;
-        Bitfield<15,8> H;
-        SignedBitfield<15,8> SH;
-        Bitfield<7, 0> L;
-        SignedBitfield<7, 0> SL;
-    EndBitUnion(X86IntReg)
-
-    enum IntRegIndex
-    {
-        INTREG_RAX,
-        INTREG_EAX = INTREG_RAX,
-        INTREG_AX = INTREG_RAX,
-        INTREG_AL = INTREG_RAX,
-
-        INTREG_RCX,
-        INTREG_ECX = INTREG_RCX,
-        INTREG_CX = INTREG_RCX,
-        INTREG_CL = INTREG_RCX,
-
-        INTREG_RDX,
-        INTREG_EDX = INTREG_RDX,
-        INTREG_DX = INTREG_RDX,
-        INTREG_DL = INTREG_RDX,
-
-        INTREG_RBX,
-        INTREG_EBX = INTREG_RBX,
-        INTREG_BX = INTREG_RBX,
-        INTREG_BL = INTREG_RBX,
-
-        INTREG_RSP,
-        INTREG_ESP = INTREG_RSP,
-        INTREG_SP = INTREG_RSP,
-        INTREG_SPL = INTREG_RSP,
-        INTREG_AH = INTREG_RSP,
-
-        INTREG_RBP,
-        INTREG_EBP = INTREG_RBP,
-        INTREG_BP = INTREG_RBP,
-        INTREG_BPL = INTREG_RBP,
-        INTREG_CH = INTREG_RBP,
-
-        INTREG_RSI,
-        INTREG_ESI = INTREG_RSI,
-        INTREG_SI = INTREG_RSI,
-        INTREG_SIL = INTREG_RSI,
-        INTREG_DH = INTREG_RSI,
-
-        INTREG_RDI,
-        INTREG_EDI = INTREG_RDI,
-        INTREG_DI = INTREG_RDI,
-        INTREG_DIL = INTREG_RDI,
-        INTREG_BH = INTREG_RDI,
-
-        INTREG_R8,
-        INTREG_R8D = INTREG_R8,
-        INTREG_R8W = INTREG_R8,
-        INTREG_R8B = INTREG_R8,
-
-        INTREG_R9,
-        INTREG_R9D = INTREG_R9,
-        INTREG_R9W = INTREG_R9,
-        INTREG_R9B = INTREG_R9,
-
-        INTREG_R10,
-        INTREG_R10D = INTREG_R10,
-        INTREG_R10W = INTREG_R10,
-        INTREG_R10B = INTREG_R10,
-
-        INTREG_R11,
-        INTREG_R11D = INTREG_R11,
-        INTREG_R11W = INTREG_R11,
-        INTREG_R11B = INTREG_R11,
-
-        INTREG_R12,
-        INTREG_R12D = INTREG_R12,
-        INTREG_R12W = INTREG_R12,
-        INTREG_R12B = INTREG_R12,
-
-        INTREG_R13,
-        INTREG_R13D = INTREG_R13,
-        INTREG_R13W = INTREG_R13,
-        INTREG_R13B = INTREG_R13,
-
-        INTREG_R14,
-        INTREG_R14D = INTREG_R14,
-        INTREG_R14W = INTREG_R14,
-        INTREG_R14B = INTREG_R14,
-
-        INTREG_R15,
-        INTREG_R15D = INTREG_R15,
-        INTREG_R15W = INTREG_R15,
-        INTREG_R15B = INTREG_R15,
-
-        NUM_INTREGS
-    };
-
-    // This needs to be large enough to miss all the other bits of an index.
-    static const IntRegIndex IntFoldBit = (IntRegIndex)(1 << 6);
-
-    inline static IntRegIndex
-    INTREG_MICRO(int index)
-    {
-        return (IntRegIndex)(NUM_INTREGS + index);
-    }
-
-    inline static IntRegIndex
-    INTREG_PSEUDO(int index)
-    {
-        return (IntRegIndex)(NUM_INTREGS + NumMicroIntRegs + index);
-    }
-
-    inline static IntRegIndex
-    INTREG_IMPLICIT(int index)
-    {
-        return (IntRegIndex)(NUM_INTREGS + NumMicroIntRegs +
-                             NumPseudoIntRegs + index);
-    }
-
-    inline static IntRegIndex
-    INTREG_FOLDED(int index, int foldBit)
-    {
-        if ((index & 0x1C) == 4 && foldBit)
-            index = (index - 4) | foldBit;
-        return (IntRegIndex)index;
-    }
-};
-
-#endif // __ARCH_X86_INTREGS_HH__
index 9a1880062d4b77a83cdbe0aecefcc4d8eee73c83..c6dea887691d0fd3c739a8f6009a29cacb038f58 100644 (file)
@@ -31,9 +31,9 @@
 #ifndef __ARCH_X86_ISA_HH__
 #define __ARCH_X86_ISA_HH__
 
-#include "arch/x86/floatregs.hh"
-#include "arch/x86/miscregs.hh"
 #include "arch/x86/registers.hh"
+#include "arch/x86/regs/float.hh"
+#include "arch/x86/regs/misc.hh"
 #include "base/types.hh"
 
 #include <string>
index 8c9e2997346942658f9f6d9850ee345cbee7afd2..58b1fbc6264aeea9db3628bd6801025dd7002369 100644 (file)
@@ -73,10 +73,10 @@ using X86ISA::InstRegIndex;
 
 output decoder {{
 #include "arch/x86/faults.hh"
-#include "arch/x86/floatregs.hh"
 #include "arch/x86/microcode_rom.hh"
-#include "arch/x86/miscregs.hh"
-#include "arch/x86/segmentregs.hh"
+#include "arch/x86/regs/float.hh"
+#include "arch/x86/regs/misc.hh"
+#include "arch/x86/regs/segment.hh"
 #include "arch/x86/tlb.hh"
 #include "base/cprintf.hh"
 #include "base/loader/symtab.hh"
@@ -110,7 +110,7 @@ output exec {{
 #include <cmath>
 #include "arch/x86/cpuid.hh"
 #include "arch/x86/faults.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/tlb.hh"
 #include "base/bigint.hh"
 #include "base/condcodes.hh"
index e223d962f92067e822683323865a3b7e07d978ec..87cddba4d4a531809246d7867cd25396c6d6f613 100644 (file)
@@ -39,7 +39,7 @@
 
 #include "arch/x86/linux/process.hh"
 #include "arch/x86/linux/linux.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "kern/linux/linux.hh"
 #include "sim/syscall_emul.hh"
 
index 1a113d3658ce5b3840b052c8edc8949a70895f20..9827638e721255b6373d4df632b956fdbccdd323 100644 (file)
@@ -37,8 +37,8 @@
  * Authors: Gabe Black
  */
 
-#include "arch/x86/intregs.hh"
 #include "arch/x86/linux/system.hh"
+#include "arch/x86/regs/int.hh"
 #include "arch/vtophys.hh"
 #include "base/trace.hh"
 #include "cpu/thread_context.hh"
diff --git a/src/arch/x86/miscregs.hh b/src/arch/x86/miscregs.hh
deleted file mode 100644 (file)
index 6a71424..0000000
+++ /dev/null
@@ -1,920 +0,0 @@
-/*
- * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
- * All rights reserved.
- *
- * The license below extends only to copyright in the software and shall
- * not be construed as granting a license to any other intellectual
- * property including but not limited to intellectual property relating
- * to a hardware implementation of the functionality of the software
- * licensed hereunder.  You may use the software subject to the license
- * terms below provided that you ensure that this notice is replicated
- * unmodified and in its entirety in all distributions of the software,
- * modified or unmodified, in source code or in binary form.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Gabe Black
- */
-
-#ifndef __ARCH_X86_MISCREGS_HH__
-#define __ARCH_X86_MISCREGS_HH__
-
-#include "arch/x86/segmentregs.hh"
-#include "arch/x86/x86_traits.hh"
-#include "base/bitunion.hh"
-
-//These get defined in some system headers (at least termbits.h). That confuses
-//things here significantly.
-#undef CR0
-#undef CR2
-#undef CR3
-
-namespace X86ISA
-{
-    enum CondFlagBit {
-        CFBit = 1 << 0,
-        PFBit = 1 << 2,
-        ECFBit = 1 << 3,
-        AFBit = 1 << 4,
-        EZFBit = 1 << 5,
-        ZFBit = 1 << 6,
-        SFBit = 1 << 7,
-        DFBit = 1 << 10,
-        OFBit = 1 << 11
-    };
-
-    enum RFLAGBit {
-        TFBit = 1 << 8,
-        IFBit = 1 << 9,
-        NTBit = 1 << 14,
-        RFBit = 1 << 16,
-        VMBit = 1 << 17,
-        ACBit = 1 << 18,
-        VIFBit = 1 << 19,
-        VIPBit = 1 << 20,
-        IDBit = 1 << 21
-    };
-
-    enum MiscRegIndex
-    {
-        // Control registers
-        // Most of these are invalid.
-        MISCREG_CR_BASE,
-        MISCREG_CR0 = MISCREG_CR_BASE,
-        MISCREG_CR1,
-        MISCREG_CR2,
-        MISCREG_CR3,
-        MISCREG_CR4,
-        MISCREG_CR5,
-        MISCREG_CR6,
-        MISCREG_CR7,
-        MISCREG_CR8,
-        MISCREG_CR9,
-        MISCREG_CR10,
-        MISCREG_CR11,
-        MISCREG_CR12,
-        MISCREG_CR13,
-        MISCREG_CR14,
-        MISCREG_CR15,
-
-        // Debug registers
-        MISCREG_DR_BASE = MISCREG_CR_BASE + NumCRegs,
-        MISCREG_DR0 = MISCREG_DR_BASE,
-        MISCREG_DR1,
-        MISCREG_DR2,
-        MISCREG_DR3,
-        MISCREG_DR4,
-        MISCREG_DR5,
-        MISCREG_DR6,
-        MISCREG_DR7,
-
-        // Flags register
-        MISCREG_RFLAGS = MISCREG_DR_BASE + NumDRegs,
-
-        //Register to keep handy values like the CPU mode in.
-        MISCREG_M5_REG,
-
-        /*
-         * Model Specific Registers
-         */
-        // Time stamp counter
-        MISCREG_TSC,
-
-        MISCREG_MTRRCAP,
-
-        MISCREG_SYSENTER_CS,
-        MISCREG_SYSENTER_ESP,
-        MISCREG_SYSENTER_EIP,
-
-        MISCREG_MCG_CAP,
-        MISCREG_MCG_STATUS,
-        MISCREG_MCG_CTL,
-
-        MISCREG_DEBUG_CTL_MSR,
-
-        MISCREG_LAST_BRANCH_FROM_IP,
-        MISCREG_LAST_BRANCH_TO_IP,
-        MISCREG_LAST_EXCEPTION_FROM_IP,
-        MISCREG_LAST_EXCEPTION_TO_IP,
-
-        MISCREG_MTRR_PHYS_BASE_BASE,
-        MISCREG_MTRR_PHYS_BASE_0 = MISCREG_MTRR_PHYS_BASE_BASE,
-        MISCREG_MTRR_PHYS_BASE_1,
-        MISCREG_MTRR_PHYS_BASE_2,
-        MISCREG_MTRR_PHYS_BASE_3,
-        MISCREG_MTRR_PHYS_BASE_4,
-        MISCREG_MTRR_PHYS_BASE_5,
-        MISCREG_MTRR_PHYS_BASE_6,
-        MISCREG_MTRR_PHYS_BASE_7,
-        MISCREG_MTRR_PHYS_BASE_END,
-
-        MISCREG_MTRR_PHYS_MASK_BASE = MISCREG_MTRR_PHYS_BASE_END,
-        MISCREG_MTRR_PHYS_MASK_0 = MISCREG_MTRR_PHYS_MASK_BASE,
-        MISCREG_MTRR_PHYS_MASK_1,
-        MISCREG_MTRR_PHYS_MASK_2,
-        MISCREG_MTRR_PHYS_MASK_3,
-        MISCREG_MTRR_PHYS_MASK_4,
-        MISCREG_MTRR_PHYS_MASK_5,
-        MISCREG_MTRR_PHYS_MASK_6,
-        MISCREG_MTRR_PHYS_MASK_7,
-        MISCREG_MTRR_PHYS_MASK_END,
-
-        MISCREG_MTRR_FIX_64K_00000 = MISCREG_MTRR_PHYS_MASK_END,
-        MISCREG_MTRR_FIX_16K_80000,
-        MISCREG_MTRR_FIX_16K_A0000,
-        MISCREG_MTRR_FIX_4K_C0000,
-        MISCREG_MTRR_FIX_4K_C8000,
-        MISCREG_MTRR_FIX_4K_D0000,
-        MISCREG_MTRR_FIX_4K_D8000,
-        MISCREG_MTRR_FIX_4K_E0000,
-        MISCREG_MTRR_FIX_4K_E8000,
-        MISCREG_MTRR_FIX_4K_F0000,
-        MISCREG_MTRR_FIX_4K_F8000,
-
-        MISCREG_PAT,
-
-        MISCREG_DEF_TYPE,
-
-        MISCREG_MC_CTL_BASE,
-        MISCREG_MC0_CTL = MISCREG_MC_CTL_BASE,
-        MISCREG_MC1_CTL,
-        MISCREG_MC2_CTL,
-        MISCREG_MC3_CTL,
-        MISCREG_MC4_CTL,
-        MISCREG_MC5_CTL,
-        MISCREG_MC6_CTL,
-        MISCREG_MC7_CTL,
-        MISCREG_MC_CTL_END,
-
-        MISCREG_MC_STATUS_BASE = MISCREG_MC_CTL_END,
-        MISCREG_MC0_STATUS = MISCREG_MC_STATUS_BASE,
-        MISCREG_MC1_STATUS,
-        MISCREG_MC2_STATUS,
-        MISCREG_MC3_STATUS,
-        MISCREG_MC4_STATUS,
-        MISCREG_MC5_STATUS,
-        MISCREG_MC6_STATUS,
-        MISCREG_MC7_STATUS,
-        MISCREG_MC_STATUS_END,
-
-        MISCREG_MC_ADDR_BASE = MISCREG_MC_STATUS_END,
-        MISCREG_MC0_ADDR = MISCREG_MC_ADDR_BASE,
-        MISCREG_MC1_ADDR,
-        MISCREG_MC2_ADDR,
-        MISCREG_MC3_ADDR,
-        MISCREG_MC4_ADDR,
-        MISCREG_MC5_ADDR,
-        MISCREG_MC6_ADDR,
-        MISCREG_MC7_ADDR,
-        MISCREG_MC_ADDR_END,
-
-        MISCREG_MC_MISC_BASE = MISCREG_MC_ADDR_END,
-        MISCREG_MC0_MISC = MISCREG_MC_MISC_BASE,
-        MISCREG_MC1_MISC,
-        MISCREG_MC2_MISC,
-        MISCREG_MC3_MISC,
-        MISCREG_MC4_MISC,
-        MISCREG_MC5_MISC,
-        MISCREG_MC6_MISC,
-        MISCREG_MC7_MISC,
-        MISCREG_MC_MISC_END,
-
-        // Extended feature enable register
-        MISCREG_EFER = MISCREG_MC_MISC_END,
-
-        MISCREG_STAR,
-        MISCREG_LSTAR,
-        MISCREG_CSTAR,
-
-        MISCREG_SF_MASK,
-
-        MISCREG_KERNEL_GS_BASE,
-
-        MISCREG_TSC_AUX,
-
-        MISCREG_PERF_EVT_SEL_BASE,
-        MISCREG_PERF_EVT_SEL0 = MISCREG_PERF_EVT_SEL_BASE,
-        MISCREG_PERF_EVT_SEL1,
-        MISCREG_PERF_EVT_SEL2,
-        MISCREG_PERF_EVT_SEL3,
-        MISCREG_PERF_EVT_SEL_END,
-
-        MISCREG_PERF_EVT_CTR_BASE = MISCREG_PERF_EVT_SEL_END,
-        MISCREG_PERF_EVT_CTR0 = MISCREG_PERF_EVT_CTR_BASE,
-        MISCREG_PERF_EVT_CTR1,
-        MISCREG_PERF_EVT_CTR2,
-        MISCREG_PERF_EVT_CTR3,
-        MISCREG_PERF_EVT_CTR_END,
-
-        MISCREG_SYSCFG = MISCREG_PERF_EVT_CTR_END,
-
-        MISCREG_IORR_BASE_BASE,
-        MISCREG_IORR_BASE0 = MISCREG_IORR_BASE_BASE,
-        MISCREG_IORR_BASE1,
-        MISCREG_IORR_BASE_END,
-
-        MISCREG_IORR_MASK_BASE = MISCREG_IORR_BASE_END,
-        MISCREG_IORR_MASK0 = MISCREG_IORR_MASK_BASE,
-        MISCREG_IORR_MASK1,
-        MISCREG_IORR_MASK_END,
-
-        MISCREG_TOP_MEM = MISCREG_IORR_MASK_END,
-        MISCREG_TOP_MEM2,
-
-        MISCREG_VM_CR,
-        MISCREG_IGNNE,
-        MISCREG_SMM_CTL,
-        MISCREG_VM_HSAVE_PA,
-
-        /*
-         * Segment registers
-         */
-        // Segment selectors
-        MISCREG_SEG_SEL_BASE,
-        MISCREG_ES = MISCREG_SEG_SEL_BASE,
-        MISCREG_CS,
-        MISCREG_SS,
-        MISCREG_DS,
-        MISCREG_FS,
-        MISCREG_GS,
-        MISCREG_HS,
-        MISCREG_TSL,
-        MISCREG_TSG,
-        MISCREG_LS,
-        MISCREG_MS,
-        MISCREG_TR,
-        MISCREG_IDTR,
-
-        // Hidden segment base field
-        MISCREG_SEG_BASE_BASE = MISCREG_SEG_SEL_BASE + NUM_SEGMENTREGS,
-        MISCREG_ES_BASE = MISCREG_SEG_BASE_BASE,
-        MISCREG_CS_BASE,
-        MISCREG_SS_BASE,
-        MISCREG_DS_BASE,
-        MISCREG_FS_BASE,
-        MISCREG_GS_BASE,
-        MISCREG_HS_BASE,
-        MISCREG_TSL_BASE,
-        MISCREG_TSG_BASE,
-        MISCREG_LS_BASE,
-        MISCREG_MS_BASE,
-        MISCREG_TR_BASE,
-        MISCREG_IDTR_BASE,
-
-        // The effective segment base, ie what is actually added to an
-        // address. In 64 bit mode this can be different from the above,
-        // namely 0.
-        MISCREG_SEG_EFF_BASE_BASE = MISCREG_SEG_BASE_BASE + NUM_SEGMENTREGS,
-        MISCREG_ES_EFF_BASE = MISCREG_SEG_EFF_BASE_BASE,
-        MISCREG_CS_EFF_BASE,
-        MISCREG_SS_EFF_BASE,
-        MISCREG_DS_EFF_BASE,
-        MISCREG_FS_EFF_BASE,
-        MISCREG_GS_EFF_BASE,
-        MISCREG_HS_EFF_BASE,
-        MISCREG_TSL_EFF_BASE,
-        MISCREG_TSG_EFF_BASE,
-        MISCREG_LS_EFF_BASE,
-        MISCREG_MS_EFF_BASE,
-        MISCREG_TR_EFF_BASE,
-        MISCREG_IDTR_EFF_BASE,
-
-        // Hidden segment limit field
-        MISCREG_SEG_LIMIT_BASE = MISCREG_SEG_EFF_BASE_BASE + NUM_SEGMENTREGS,
-        MISCREG_ES_LIMIT = MISCREG_SEG_LIMIT_BASE,
-        MISCREG_CS_LIMIT,
-        MISCREG_SS_LIMIT,
-        MISCREG_DS_LIMIT,
-        MISCREG_FS_LIMIT,
-        MISCREG_GS_LIMIT,
-        MISCREG_HS_LIMIT,
-        MISCREG_TSL_LIMIT,
-        MISCREG_TSG_LIMIT,
-        MISCREG_LS_LIMIT,
-        MISCREG_MS_LIMIT,
-        MISCREG_TR_LIMIT,
-        MISCREG_IDTR_LIMIT,
-
-        // Hidden segment limit attributes
-        MISCREG_SEG_ATTR_BASE = MISCREG_SEG_LIMIT_BASE + NUM_SEGMENTREGS,
-        MISCREG_ES_ATTR = MISCREG_SEG_ATTR_BASE,
-        MISCREG_CS_ATTR,
-        MISCREG_SS_ATTR,
-        MISCREG_DS_ATTR,
-        MISCREG_FS_ATTR,
-        MISCREG_GS_ATTR,
-        MISCREG_HS_ATTR,
-        MISCREG_TSL_ATTR,
-        MISCREG_TSG_ATTR,
-        MISCREG_LS_ATTR,
-        MISCREG_MS_ATTR,
-        MISCREG_TR_ATTR,
-        MISCREG_IDTR_ATTR,
-
-        // Floating point control registers
-        MISCREG_X87_TOP =
-            MISCREG_SEG_ATTR_BASE + NUM_SEGMENTREGS,
-
-        MISCREG_MXCSR,
-        MISCREG_FCW,
-        MISCREG_FSW,
-        MISCREG_FTW,
-        MISCREG_FTAG,
-        MISCREG_FISEG,
-        MISCREG_FIOFF,
-        MISCREG_FOSEG,
-        MISCREG_FOOFF,
-        MISCREG_FOP,
-
-        //XXX Add "Model-Specific Registers"
-
-        MISCREG_APIC_BASE,
-
-        // "Fake" MSRs for internally implemented devices
-        MISCREG_PCI_CONFIG_ADDRESS,
-
-        NUM_MISCREGS
-    };
-
-    static inline MiscRegIndex
-    MISCREG_CR(int index)
-    {
-        assert(index >= 0 && index < NumCRegs);
-        return (MiscRegIndex)(MISCREG_CR_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_DR(int index)
-    {
-        assert(index >= 0 && index < NumDRegs);
-        return (MiscRegIndex)(MISCREG_DR_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MTRR_PHYS_BASE(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MTRR_PHYS_BASE_END -
-                                      MISCREG_MTRR_PHYS_BASE_BASE));
-        return (MiscRegIndex)(MISCREG_MTRR_PHYS_BASE_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MTRR_PHYS_MASK(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MTRR_PHYS_MASK_END -
-                                      MISCREG_MTRR_PHYS_MASK_BASE));
-        return (MiscRegIndex)(MISCREG_MTRR_PHYS_MASK_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MC_CTL(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MC_CTL_END -
-                                      MISCREG_MC_CTL_BASE));
-        return (MiscRegIndex)(MISCREG_MC_CTL_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MC_STATUS(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MC_STATUS_END -
-                                      MISCREG_MC_STATUS_BASE));
-        return (MiscRegIndex)(MISCREG_MC_STATUS_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MC_ADDR(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MC_ADDR_END -
-                                      MISCREG_MC_ADDR_BASE));
-        return (MiscRegIndex)(MISCREG_MC_ADDR_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_MC_MISC(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_MC_MISC_END -
-                                      MISCREG_MC_MISC_BASE));
-        return (MiscRegIndex)(MISCREG_MC_MISC_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_PERF_EVT_SEL(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_PERF_EVT_SEL_END -
-                                      MISCREG_PERF_EVT_SEL_BASE));
-        return (MiscRegIndex)(MISCREG_PERF_EVT_SEL_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_PERF_EVT_CTR(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_PERF_EVT_CTR_END -
-                                      MISCREG_PERF_EVT_CTR_BASE));
-        return (MiscRegIndex)(MISCREG_PERF_EVT_CTR_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_IORR_BASE(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_IORR_BASE_END -
-                                      MISCREG_IORR_BASE_BASE));
-        return (MiscRegIndex)(MISCREG_IORR_BASE_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_IORR_MASK(int index)
-    {
-        assert(index >= 0 && index < (MISCREG_IORR_MASK_END -
-                                      MISCREG_IORR_MASK_BASE));
-        return (MiscRegIndex)(MISCREG_IORR_MASK_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_SEG_SEL(int index)
-    {
-        assert(index >= 0 && index < NUM_SEGMENTREGS);
-        return (MiscRegIndex)(MISCREG_SEG_SEL_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_SEG_BASE(int index)
-    {
-        assert(index >= 0 && index < NUM_SEGMENTREGS);
-        return (MiscRegIndex)(MISCREG_SEG_BASE_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_SEG_EFF_BASE(int index)
-    {
-        assert(index >= 0 && index < NUM_SEGMENTREGS);
-        return (MiscRegIndex)(MISCREG_SEG_EFF_BASE_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_SEG_LIMIT(int index)
-    {
-        assert(index >= 0 && index < NUM_SEGMENTREGS);
-        return (MiscRegIndex)(MISCREG_SEG_LIMIT_BASE + index);
-    }
-
-    static inline MiscRegIndex
-    MISCREG_SEG_ATTR(int index)
-    {
-        assert(index >= 0 && index < NUM_SEGMENTREGS);
-        return (MiscRegIndex)(MISCREG_SEG_ATTR_BASE + index);
-    }
-
-    /**
-     * A type to describe the condition code bits of the RFLAGS register,
-     * plus two flags, EZF and ECF, which are only visible to microcode.
-     */
-    BitUnion64(CCFlagBits)
-        Bitfield<11> of;
-        Bitfield<7> sf;
-        Bitfield<6> zf;
-        Bitfield<5> ezf;
-        Bitfield<4> af;
-        Bitfield<3> ecf;
-        Bitfield<2> pf;
-        Bitfield<0> cf;
-    EndBitUnion(CCFlagBits)
-
-    /**
-     * RFLAGS
-     */
-    BitUnion64(RFLAGS)
-        Bitfield<21> id; // ID Flag
-        Bitfield<20> vip; // Virtual Interrupt Pending
-        Bitfield<19> vif; // Virtual Interrupt Flag
-        Bitfield<18> ac; // Alignment Check
-        Bitfield<17> vm; // Virtual-8086 Mode
-        Bitfield<16> rf; // Resume Flag
-        Bitfield<14> nt; // Nested Task
-        Bitfield<13, 12> iopl; // I/O Privilege Level
-        Bitfield<11> of; // Overflow Flag
-        Bitfield<10> df; // Direction Flag
-        Bitfield<9> intf; // Interrupt Flag
-        Bitfield<8> tf; // Trap Flag
-        Bitfield<7> sf; // Sign Flag
-        Bitfield<6> zf; // Zero Flag
-        Bitfield<4> af; // Auxiliary Flag
-        Bitfield<2> pf; // Parity Flag
-        Bitfield<0> cf; // Carry Flag
-    EndBitUnion(RFLAGS)
-
-    BitUnion64(HandyM5Reg)
-        Bitfield<0> mode;
-        Bitfield<3, 1> submode;
-        Bitfield<5, 4> cpl;
-        Bitfield<6> paging;
-        Bitfield<7> prot;
-        Bitfield<9, 8> defOp;
-        Bitfield<11, 10> altOp;
-        Bitfield<13, 12> defAddr;
-        Bitfield<15, 14> altAddr;
-        Bitfield<17, 16> stack;
-    EndBitUnion(HandyM5Reg)
-
-    /**
-     * Control registers
-     */
-    BitUnion64(CR0)
-        Bitfield<31> pg; // Paging
-        Bitfield<30> cd; // Cache Disable
-        Bitfield<29> nw; // Not Writethrough
-        Bitfield<18> am; // Alignment Mask
-        Bitfield<16> wp; // Write Protect
-        Bitfield<5> ne; // Numeric Error
-        Bitfield<4> et; // Extension Type
-        Bitfield<3> ts; // Task Switched
-        Bitfield<2> em; // Emulation
-        Bitfield<1> mp; // Monitor Coprocessor
-        Bitfield<0> pe; // Protection Enabled
-    EndBitUnion(CR0)
-
-    // Page Fault Virtual Address
-    BitUnion64(CR2)
-        Bitfield<31, 0> legacy;
-    EndBitUnion(CR2)
-
-    BitUnion64(CR3)
-        Bitfield<51, 12> longPdtb; // Long Mode Page-Directory-Table
-                                   // Base Address
-        Bitfield<31, 12> pdtb; // Non-PAE Addressing Page-Directory-Table
-                               // Base Address
-        Bitfield<31, 5> paePdtb; // PAE Addressing Page-Directory-Table
-                                 // Base Address
-        Bitfield<4> pcd; // Page-Level Cache Disable
-        Bitfield<3> pwt; // Page-Level Writethrough
-    EndBitUnion(CR3)
-
-    BitUnion64(CR4)
-        Bitfield<10> osxmmexcpt; // Operating System Unmasked
-                                 // Exception Support
-        Bitfield<9> osfxsr; // Operating System FXSave/FSRSTOR Support
-        Bitfield<8> pce; // Performance-Monitoring Counter Enable
-        Bitfield<7> pge; // Page-Global Enable
-        Bitfield<6> mce; // Machine Check Enable
-        Bitfield<5> pae; // Physical-Address Extension
-        Bitfield<4> pse; // Page Size Extensions
-        Bitfield<3> de; // Debugging Extensions
-        Bitfield<2> tsd; // Time Stamp Disable
-        Bitfield<1> pvi; // Protected-Mode Virtual Interrupts
-        Bitfield<0> vme; // Virtual-8086 Mode Extensions
-    EndBitUnion(CR4)
-
-    BitUnion64(CR8)
-        Bitfield<3, 0> tpr; // Task Priority Register
-    EndBitUnion(CR8)
-
-    BitUnion64(DR6)
-        Bitfield<0> b0;
-        Bitfield<1> b1;
-        Bitfield<2> b2;
-        Bitfield<3> b3;
-        Bitfield<13> bd;
-        Bitfield<14> bs;
-        Bitfield<15> bt;
-    EndBitUnion(DR6)
-
-    BitUnion64(DR7)
-        Bitfield<0> l0;
-        Bitfield<1> g0;
-        Bitfield<2> l1;
-        Bitfield<3> g1;
-        Bitfield<4> l2;
-        Bitfield<5> g2;
-        Bitfield<6> l3;
-        Bitfield<7> g3;
-        Bitfield<8> le;
-        Bitfield<9> ge;
-        Bitfield<13> gd;
-        Bitfield<17, 16> rw0;
-        Bitfield<19, 18> len0;
-        Bitfield<21, 20> rw1;
-        Bitfield<23, 22> len1;
-        Bitfield<25, 24> rw2;
-        Bitfield<27, 26> len2;
-        Bitfield<29, 28> rw3;
-        Bitfield<31, 30> len3;
-    EndBitUnion(DR7)
-
-    // MTRR capabilities
-    BitUnion64(MTRRcap)
-        Bitfield<7, 0> vcnt; // Variable-Range Register Count
-        Bitfield<8> fix; // Fixed-Range Registers
-        Bitfield<10> wc; // Write-Combining
-    EndBitUnion(MTRRcap)
-
-    /**
-     * SYSENTER configuration registers
-     */
-    BitUnion64(SysenterCS)
-        Bitfield<15, 0> targetCS;
-    EndBitUnion(SysenterCS)
-
-    BitUnion64(SysenterESP)
-        Bitfield<31, 0> targetESP;
-    EndBitUnion(SysenterESP)
-
-    BitUnion64(SysenterEIP)
-        Bitfield<31, 0> targetEIP;
-    EndBitUnion(SysenterEIP)
-
-    /**
-     * Global machine check registers
-     */
-    BitUnion64(McgCap)
-        Bitfield<7, 0> count; // Number of error reporting register banks
-        Bitfield<8> MCGCP; // MCG_CTL register present.
-    EndBitUnion(McgCap)
-
-    BitUnion64(McgStatus)
-        Bitfield<0> ripv; // Restart-IP valid
-        Bitfield<1> eipv; // Error-IP valid
-        Bitfield<2> mcip; // Machine check in-progress
-    EndBitUnion(McgStatus)
-
-    BitUnion64(DebugCtlMsr)
-        Bitfield<0> lbr; // Last-branch record
-        Bitfield<1> btf; // Branch single step
-        Bitfield<2> pb0; // Performance monitoring pin control 0
-        Bitfield<3> pb1; // Performance monitoring pin control 1
-        Bitfield<4> pb2; // Performance monitoring pin control 2
-        Bitfield<5> pb3; // Performance monitoring pin control 3
-        /*uint64_t pb(int index)
-        {
-            return bits(__data, index + 2);
-        }*/
-    EndBitUnion(DebugCtlMsr)
-
-    BitUnion64(MtrrPhysBase)
-        Bitfield<7, 0> type; // Default memory type
-        Bitfield<51, 12> physbase; // Range physical base address
-    EndBitUnion(MtrrPhysBase)
-
-    BitUnion64(MtrrPhysMask)
-        Bitfield<11> valid; // MTRR pair enable
-        Bitfield<51, 12> physmask; // Range physical mask
-    EndBitUnion(MtrrPhysMask)
-
-    BitUnion64(MtrrFixed)
-        /*uint64_t type(int index)
-        {
-            return bits(__data, index * 8 + 7, index * 8);
-        }*/
-    EndBitUnion(MtrrFixed)
-
-    BitUnion64(Pat)
-        /*uint64_t pa(int index)
-        {
-            return bits(__data, index * 8 + 2, index * 8);
-        }*/
-    EndBitUnion(Pat)
-
-    BitUnion64(MtrrDefType)
-        Bitfield<7, 0> type; // Default type
-        Bitfield<10> fe; // Fixed range enable
-        Bitfield<11> e; // MTRR enable
-    EndBitUnion(MtrrDefType)
-
-    /**
-     * Machine check
-     */
-    BitUnion64(McStatus)
-        Bitfield<15,0> mcaErrorCode;
-        Bitfield<31,16> modelSpecificCode;
-        Bitfield<56,32> otherInfo;
-        Bitfield<57> pcc; // Processor-context corrupt
-        Bitfield<58> addrv; // Error-address register valid
-        Bitfield<59> miscv; // Miscellaneous-error register valid
-        Bitfield<60> en; // Error condition enabled
-        Bitfield<61> uc; // Uncorrected error
-        Bitfield<62> over; // Status register overflow
-        Bitfield<63> val; // Valid
-    EndBitUnion(McStatus)
-
-    BitUnion64(McCtl)
-        /*uint64_t en(int index)
-        {
-            return bits(__data, index);
-        }*/
-    EndBitUnion(McCtl)
-
-    // Extended feature enable register
-    BitUnion64(Efer)
-        Bitfield<0> sce; // System call extensions
-        Bitfield<8> lme; // Long mode enable
-        Bitfield<10> lma; // Long mode active
-        Bitfield<11> nxe; // No-execute enable
-        Bitfield<12> svme; // Secure virtual machine enable
-        Bitfield<14> ffxsr; // Fast fxsave/fxrstor
-    EndBitUnion(Efer)
-
-    BitUnion64(Star)
-        Bitfield<31,0> targetEip;
-        Bitfield<47,32> syscallCsAndSs;
-        Bitfield<63,48> sysretCsAndSs;
-    EndBitUnion(Star)
-
-    BitUnion64(SfMask)
-        Bitfield<31,0> mask;
-    EndBitUnion(SfMask)
-
-    BitUnion64(PerfEvtSel)
-        Bitfield<7,0> eventMask;
-        Bitfield<15,8> unitMask;
-        Bitfield<16> usr; // User mode
-        Bitfield<17> os; // Operating-system mode
-        Bitfield<18> e; // Edge detect
-        Bitfield<19> pc; // Pin control
-        Bitfield<20> intEn; // Interrupt enable
-        Bitfield<22> en; // Counter enable
-        Bitfield<23> inv; // Invert mask
-        Bitfield<31,24> counterMask;
-    EndBitUnion(PerfEvtSel)
-
-    BitUnion32(Syscfg)
-        Bitfield<18> mfde; // MtrrFixDramEn
-        Bitfield<19> mfdm; // MtrrFixDramModEn
-        Bitfield<20> mvdm; // MtrrVarDramEn
-        Bitfield<21> tom2; // MtrrTom2En
-    EndBitUnion(Syscfg)
-
-    BitUnion64(IorrBase)
-        Bitfield<3> wr; // WrMem Enable
-        Bitfield<4> rd; // RdMem Enable
-        Bitfield<51,12> physbase; // Range physical base address
-    EndBitUnion(IorrBase)
-
-    BitUnion64(IorrMask)
-        Bitfield<11> v; // I/O register pair enable (valid)
-        Bitfield<51,12> physmask; // Range physical mask
-    EndBitUnion(IorrMask)
-
-    BitUnion64(Tom)
-        Bitfield<51,23> physAddr; // Top of memory physical address
-    EndBitUnion(Tom)
-
-    BitUnion64(VmCrMsr)
-        Bitfield<0> dpd;
-        Bitfield<1> rInit;
-        Bitfield<2> disA20M;
-    EndBitUnion(VmCrMsr)
-
-    BitUnion64(IgnneMsr)
-        Bitfield<0> ignne;
-    EndBitUnion(IgnneMsr)
-
-    BitUnion64(SmmCtlMsr)
-        Bitfield<0> dismiss;
-        Bitfield<1> enter;
-        Bitfield<2> smiCycle;
-        Bitfield<3> exit;
-        Bitfield<4> rsmCycle;
-    EndBitUnion(SmmCtlMsr)
-
-    /**
-     * Segment Selector
-     */
-    BitUnion64(SegSelector)
-        // The following bitfield is not defined in the ISA, but it's useful
-        // when checking selectors in larger data types to make sure they
-        // aren't too large.
-        Bitfield<63, 3> esi; // Extended selector
-        Bitfield<15, 3> si; // Selector Index
-        Bitfield<2> ti; // Table Indicator
-        Bitfield<1, 0> rpl; // Requestor Privilege Level
-    EndBitUnion(SegSelector)
-
-    /**
-     * Segment Descriptors
-     */
-
-    BitUnion64(SegDescriptor)
-        Bitfield<63, 56> baseHigh;
-        Bitfield<39, 16> baseLow;
-        Bitfield<55> g; // Granularity
-        Bitfield<54> d; // Default Operand Size
-        Bitfield<54> b; // Default Operand Size
-        Bitfield<53> l; // Long Attribute Bit
-        Bitfield<52> avl; // Available To Software
-        Bitfield<51, 48> limitHigh;
-        Bitfield<15, 0> limitLow;
-        Bitfield<47> p; // Present
-        Bitfield<46, 45> dpl; // Descriptor Privilege-Level
-        Bitfield<44> s; // System
-        SubBitUnion(type, 43, 40)
-            // Specifies whether this descriptor is for code or data.
-            Bitfield<43> codeOrData;
-
-            // These bit fields are for code segments
-            Bitfield<42> c; // Conforming
-            Bitfield<41> r; // Readable
-
-            // These bit fields are for data segments
-            Bitfield<42> e; // Expand-Down
-            Bitfield<41> w; // Writable
-
-            // This is used for both code and data segments.
-            Bitfield<40> a; // Accessed
-        EndSubBitUnion(type)
-    EndBitUnion(SegDescriptor)
-
-    BitUnion64(SegAttr)
-        Bitfield<1, 0> dpl;
-        Bitfield<2> unusable;
-        Bitfield<3> defaultSize;
-        Bitfield<4> longMode;
-        Bitfield<5> avl;
-        Bitfield<6> granularity;
-        Bitfield<7> present;
-        Bitfield<11, 8> type;
-        Bitfield<12> writable;
-        Bitfield<13> readable;
-        Bitfield<14> expandDown;
-        Bitfield<15> system;
-    EndBitUnion(SegAttr)
-
-    BitUnion64(GateDescriptor)
-        Bitfield<63, 48> offsetHigh; // Target Code-Segment Offset
-        Bitfield<15, 0> offsetLow; // Target Code-Segment Offset
-        Bitfield<31, 16> selector; // Target Code-Segment Selector
-        Bitfield<47> p; // Present
-        Bitfield<46, 45> dpl; // Descriptor Privilege-Level
-        Bitfield<43, 40> type;
-        Bitfield<36, 32> count; // Parameter Count
-    EndBitUnion(GateDescriptor)
-
-    /**
-     * Descriptor-Table Registers
-     */
-    BitUnion64(GDTR)
-    EndBitUnion(GDTR)
-
-    BitUnion64(IDTR)
-    EndBitUnion(IDTR)
-
-    BitUnion64(LDTR)
-    EndBitUnion(LDTR)
-
-    /**
-     * Task Register
-     */
-    BitUnion64(TR)
-    EndBitUnion(TR)
-
-
-    /**
-     * Local APIC Base Register
-     */
-    BitUnion64(LocalApicBase)
-        Bitfield<51, 12> base;
-        Bitfield<11> enable;
-        Bitfield<8> bsp;
-    EndBitUnion(LocalApicBase)
-};
-
-#endif // __ARCH_X86_INTREGS_HH__
index 36a61f1bce33f12dec2bf46b7f898485e6584778..82fe95cef3902c5cacabe4210fe296553bd48cb8 100644 (file)
@@ -46,7 +46,7 @@
  * ISA-specific helper functions for memory mapped IPR accesses.
  */
 
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "config/full_system.hh"
 #include "cpu/base.hh"
 #include "cpu/thread_context.hh"
index 1ce7505adc1aeb5a069638e4fa0aae8b32d7945a..3da2ecb1334a949cecf5ffd6b9603102318e38e6 100644 (file)
@@ -29,9 +29,9 @@
  */
 
 #include "arch/x86/isa_traits.hh"
-#include "arch/x86/floatregs.hh"
-#include "arch/x86/intregs.hh"
 #include "arch/x86/nativetrace.hh"
+#include "arch/x86/regs/float.hh"
+#include "arch/x86/regs/int.hh"
 #include "cpu/thread_context.hh"
 #include "params/X86NativeTrace.hh"
 
index 817544d5db5ca2562b12bb8f40b159aa9ce7b13f..0318230e5659051d2dcb8037ab048cb6ec00869c 100644 (file)
@@ -37,7 +37,7 @@
  * Authors: Gabe Black
  */
 
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/predecoder.hh"
 #include "base/misc.hh"
 #include "base/trace.hh"
index fe55f79f30608ac03308ca42c27b4038c49a14c2..5b38402e0518901f2c4607fbc4482921255220e3 100644 (file)
@@ -43,7 +43,7 @@
 #include <cassert>
 
 #include "arch/x86/types.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "base/bitfield.hh"
 #include "base/misc.hh"
 #include "base/trace.hh"
index 02cd454785e21ace7c0dc16aad71e734d52abe58..946a7cbe10128b13135587edc39590a926538e51 100644 (file)
@@ -42,9 +42,9 @@
  */
 
 #include "arch/x86/isa_traits.hh"
-#include "arch/x86/miscregs.hh"
 #include "arch/x86/process.hh"
-#include "arch/x86/segmentregs.hh"
+#include "arch/x86/regs/misc.hh"
+#include "arch/x86/regs/segment.hh"
 #include "arch/x86/types.hh"
 #include "base/loader/object_file.hh"
 #include "base/loader/elf_object.hh"
index de3186b27e9a232d411126559d9aee422a0dbf50..e14b9a1ba3efe00be6e13bae3cb11c7efdbf58f8 100644 (file)
@@ -40,9 +40,9 @@
 #ifndef __ARCH_X86_REGISTERS_HH__
 #define __ARCH_X86_REGISTERS_HH__
 
-#include "arch/x86/intregs.hh"
 #include "arch/x86/max_inst_regs.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/int.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/x86_traits.hh"
 
 namespace X86ISA
diff --git a/src/arch/x86/regs/apic.hh b/src/arch/x86/regs/apic.hh
new file mode 100644 (file)
index 0000000..dfea265
--- /dev/null
@@ -0,0 +1,107 @@
+/*
+ * Copyright (c) 2008 The Regents of The University of Michigan
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Gabe Black
+ */
+
+#ifndef __ARCH_X86_APICREGS_HH__
+#define __ARCH_X86_APICREGS_HH__
+
+#include "base/bitunion.hh"
+
+namespace X86ISA
+{
+    enum ApicRegIndex
+    {
+        APIC_ID,
+        APIC_VERSION,
+        APIC_TASK_PRIORITY,
+        APIC_ARBITRATION_PRIORITY,
+        APIC_PROCESSOR_PRIORITY,
+        APIC_EOI,
+        APIC_LOGICAL_DESTINATION,
+        APIC_DESTINATION_FORMAT,
+        APIC_SPURIOUS_INTERRUPT_VECTOR,
+
+        APIC_IN_SERVICE_BASE,
+
+        APIC_TRIGGER_MODE_BASE = APIC_IN_SERVICE_BASE + 16,
+
+        APIC_INTERRUPT_REQUEST_BASE = APIC_TRIGGER_MODE_BASE + 16,
+
+        APIC_ERROR_STATUS = APIC_INTERRUPT_REQUEST_BASE + 16,
+        APIC_INTERRUPT_COMMAND_LOW,
+        APIC_INTERRUPT_COMMAND_HIGH,
+        APIC_LVT_TIMER,
+        APIC_LVT_THERMAL_SENSOR,
+        APIC_LVT_PERFORMANCE_MONITORING_COUNTERS,
+        APIC_LVT_LINT0,
+        APIC_LVT_LINT1,
+        APIC_LVT_ERROR,
+        APIC_INITIAL_COUNT,
+        APIC_CURRENT_COUNT,
+        APIC_DIVIDE_CONFIGURATION,
+
+        APIC_INTERNAL_STATE,
+
+        NUM_APIC_REGS
+    };
+
+    static inline ApicRegIndex
+    APIC_IN_SERVICE(int index)
+    {
+        return (ApicRegIndex)(APIC_IN_SERVICE_BASE + index);
+    }
+
+    static inline ApicRegIndex
+    APIC_TRIGGER_MODE(int index)
+    {
+        return (ApicRegIndex)(APIC_TRIGGER_MODE_BASE + index);
+    }
+
+    static inline ApicRegIndex
+    APIC_INTERRUPT_REQUEST(int index)
+    {
+        return (ApicRegIndex)(APIC_INTERRUPT_REQUEST_BASE + index);
+    }
+
+    BitUnion32(InterruptCommandRegLow)
+        Bitfield<7, 0> vector;
+        Bitfield<10, 8> deliveryMode;
+        Bitfield<11> destMode;
+        Bitfield<12> deliveryStatus;
+        Bitfield<14> level;
+        Bitfield<15> trigger;
+        Bitfield<19, 18> destShorthand;
+    EndBitUnion(InterruptCommandRegLow)
+
+    BitUnion32(InterruptCommandRegHigh)
+        Bitfield<31, 24> destination;
+    EndBitUnion(InterruptCommandRegHigh)
+}
+
+#endif
diff --git a/src/arch/x86/regs/float.hh b/src/arch/x86/regs/float.hh
new file mode 100644 (file)
index 0000000..5ac33c4
--- /dev/null
@@ -0,0 +1,155 @@
+/*
+ * Copyright (c) 2007 The Hewlett-Packard Development Company
+ * All rights reserved.
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Gabe Black
+ */
+
+#ifndef __ARCH_X86_FLOATREGS_HH__
+#define __ARCH_X86_FLOATREGS_HH__
+
+#include "arch/x86/x86_traits.hh"
+#include "base/bitunion.hh"
+
+namespace X86ISA
+{
+    enum FloatRegIndex
+    {
+        // MMX/X87 registers
+        FLOATREG_MMX_BASE,
+        FLOATREG_FPR_BASE = FLOATREG_MMX_BASE,
+        FLOATREG_MMX0 = FLOATREG_MMX_BASE,
+        FLOATREG_MMX1,
+        FLOATREG_MMX2,
+        FLOATREG_MMX3,
+        FLOATREG_MMX4,
+        FLOATREG_MMX5,
+        FLOATREG_MMX6,
+        FLOATREG_MMX7,
+
+        FLOATREG_FPR0 = FLOATREG_FPR_BASE,
+        FLOATREG_FPR1,
+        FLOATREG_FPR2,
+        FLOATREG_FPR3,
+        FLOATREG_FPR4,
+        FLOATREG_FPR5,
+        FLOATREG_FPR6,
+        FLOATREG_FPR7,
+
+        FLOATREG_XMM_BASE = FLOATREG_MMX_BASE + NumMMXRegs,
+        FLOATREG_XMM0_LOW = FLOATREG_XMM_BASE,
+        FLOATREG_XMM0_HIGH,
+        FLOATREG_XMM1_LOW,
+        FLOATREG_XMM1_HIGH,
+        FLOATREG_XMM2_LOW,
+        FLOATREG_XMM2_HIGH,
+        FLOATREG_XMM3_LOW,
+        FLOATREG_XMM3_HIGH,
+        FLOATREG_XMM4_LOW,
+        FLOATREG_XMM4_HIGH,
+        FLOATREG_XMM5_LOW,
+        FLOATREG_XMM5_HIGH,
+        FLOATREG_XMM6_LOW,
+        FLOATREG_XMM6_HIGH,
+        FLOATREG_XMM7_LOW,
+        FLOATREG_XMM7_HIGH,
+        FLOATREG_XMM8_LOW,
+        FLOATREG_XMM8_HIGH,
+        FLOATREG_XMM9_LOW,
+        FLOATREG_XMM9_HIGH,
+        FLOATREG_XMM10_LOW,
+        FLOATREG_XMM10_HIGH,
+        FLOATREG_XMM11_LOW,
+        FLOATREG_XMM11_HIGH,
+        FLOATREG_XMM12_LOW,
+        FLOATREG_XMM12_HIGH,
+        FLOATREG_XMM13_LOW,
+        FLOATREG_XMM13_HIGH,
+        FLOATREG_XMM14_LOW,
+        FLOATREG_XMM14_HIGH,
+        FLOATREG_XMM15_LOW,
+        FLOATREG_XMM15_HIGH,
+
+        FLOATREG_MICROFP_BASE = FLOATREG_XMM_BASE + 2 * NumXMMRegs,
+        FLOATREG_MICROFP0 = FLOATREG_MICROFP_BASE,
+        FLOATREG_MICROFP1,
+        FLOATREG_MICROFP2,
+        FLOATREG_MICROFP3,
+        FLOATREG_MICROFP4,
+        FLOATREG_MICROFP5,
+        FLOATREG_MICROFP6,
+        FLOATREG_MICROFP7,
+
+        NUM_FLOATREGS = FLOATREG_MICROFP_BASE + NumMicroFpRegs
+    };
+
+    static inline FloatRegIndex
+    FLOATREG_MMX(int index)
+    {
+        return (FloatRegIndex)(FLOATREG_MMX_BASE + index);
+    }
+
+    static inline FloatRegIndex
+    FLOATREG_FPR(int index)
+    {
+        return (FloatRegIndex)(FLOATREG_FPR_BASE + index);
+    }
+
+    static inline FloatRegIndex
+    FLOATREG_XMM_LOW(int index)
+    {
+        return (FloatRegIndex)(FLOATREG_XMM_BASE + 2 * index);
+    }
+
+    static inline FloatRegIndex
+    FLOATREG_XMM_HIGH(int index)
+    {
+        return (FloatRegIndex)(FLOATREG_XMM_BASE + 2 * index + 1);
+    }
+
+    static inline FloatRegIndex
+    FLOATREG_MICROFP(int index)
+    {
+        return (FloatRegIndex)(FLOATREG_MICROFP_BASE + index);
+    }
+
+    static inline FloatRegIndex
+    FLOATREG_STACK(int index, int top)
+    {
+        return FLOATREG_FPR((top + index + 8) % 8);
+    }
+};
+
+#endif // __ARCH_X86_FLOATREGS_HH__
diff --git a/src/arch/x86/regs/int.hh b/src/arch/x86/regs/int.hh
new file mode 100644 (file)
index 0000000..2a13710
--- /dev/null
@@ -0,0 +1,183 @@
+/*
+ * Copyright (c) 2007 The Hewlett-Packard Development Company
+ * All rights reserved.
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Gabe Black
+ */
+
+#ifndef __ARCH_X86_INTREGS_HH__
+#define __ARCH_X86_INTREGS_HH__
+
+#include "arch/x86/x86_traits.hh"
+#include "base/bitunion.hh"
+#include "base/misc.hh"
+#include "sim/core.hh"
+
+namespace X86ISA
+{
+    BitUnion64(X86IntReg)
+        Bitfield<63,0> R;
+        SignedBitfield<63,0> SR;
+        Bitfield<31,0> E;
+        SignedBitfield<31,0> SE;
+        Bitfield<15,0> X;
+        SignedBitfield<15,0> SX;
+        Bitfield<15,8> H;
+        SignedBitfield<15,8> SH;
+        Bitfield<7, 0> L;
+        SignedBitfield<7, 0> SL;
+    EndBitUnion(X86IntReg)
+
+    enum IntRegIndex
+    {
+        INTREG_RAX,
+        INTREG_EAX = INTREG_RAX,
+        INTREG_AX = INTREG_RAX,
+        INTREG_AL = INTREG_RAX,
+
+        INTREG_RCX,
+        INTREG_ECX = INTREG_RCX,
+        INTREG_CX = INTREG_RCX,
+        INTREG_CL = INTREG_RCX,
+
+        INTREG_RDX,
+        INTREG_EDX = INTREG_RDX,
+        INTREG_DX = INTREG_RDX,
+        INTREG_DL = INTREG_RDX,
+
+        INTREG_RBX,
+        INTREG_EBX = INTREG_RBX,
+        INTREG_BX = INTREG_RBX,
+        INTREG_BL = INTREG_RBX,
+
+        INTREG_RSP,
+        INTREG_ESP = INTREG_RSP,
+        INTREG_SP = INTREG_RSP,
+        INTREG_SPL = INTREG_RSP,
+        INTREG_AH = INTREG_RSP,
+
+        INTREG_RBP,
+        INTREG_EBP = INTREG_RBP,
+        INTREG_BP = INTREG_RBP,
+        INTREG_BPL = INTREG_RBP,
+        INTREG_CH = INTREG_RBP,
+
+        INTREG_RSI,
+        INTREG_ESI = INTREG_RSI,
+        INTREG_SI = INTREG_RSI,
+        INTREG_SIL = INTREG_RSI,
+        INTREG_DH = INTREG_RSI,
+
+        INTREG_RDI,
+        INTREG_EDI = INTREG_RDI,
+        INTREG_DI = INTREG_RDI,
+        INTREG_DIL = INTREG_RDI,
+        INTREG_BH = INTREG_RDI,
+
+        INTREG_R8,
+        INTREG_R8D = INTREG_R8,
+        INTREG_R8W = INTREG_R8,
+        INTREG_R8B = INTREG_R8,
+
+        INTREG_R9,
+        INTREG_R9D = INTREG_R9,
+        INTREG_R9W = INTREG_R9,
+        INTREG_R9B = INTREG_R9,
+
+        INTREG_R10,
+        INTREG_R10D = INTREG_R10,
+        INTREG_R10W = INTREG_R10,
+        INTREG_R10B = INTREG_R10,
+
+        INTREG_R11,
+        INTREG_R11D = INTREG_R11,
+        INTREG_R11W = INTREG_R11,
+        INTREG_R11B = INTREG_R11,
+
+        INTREG_R12,
+        INTREG_R12D = INTREG_R12,
+        INTREG_R12W = INTREG_R12,
+        INTREG_R12B = INTREG_R12,
+
+        INTREG_R13,
+        INTREG_R13D = INTREG_R13,
+        INTREG_R13W = INTREG_R13,
+        INTREG_R13B = INTREG_R13,
+
+        INTREG_R14,
+        INTREG_R14D = INTREG_R14,
+        INTREG_R14W = INTREG_R14,
+        INTREG_R14B = INTREG_R14,
+
+        INTREG_R15,
+        INTREG_R15D = INTREG_R15,
+        INTREG_R15W = INTREG_R15,
+        INTREG_R15B = INTREG_R15,
+
+        NUM_INTREGS
+    };
+
+    // This needs to be large enough to miss all the other bits of an index.
+    static const IntRegIndex IntFoldBit = (IntRegIndex)(1 << 6);
+
+    inline static IntRegIndex
+    INTREG_MICRO(int index)
+    {
+        return (IntRegIndex)(NUM_INTREGS + index);
+    }
+
+    inline static IntRegIndex
+    INTREG_PSEUDO(int index)
+    {
+        return (IntRegIndex)(NUM_INTREGS + NumMicroIntRegs + index);
+    }
+
+    inline static IntRegIndex
+    INTREG_IMPLICIT(int index)
+    {
+        return (IntRegIndex)(NUM_INTREGS + NumMicroIntRegs +
+                             NumPseudoIntRegs + index);
+    }
+
+    inline static IntRegIndex
+    INTREG_FOLDED(int index, int foldBit)
+    {
+        if ((index & 0x1C) == 4 && foldBit)
+            index = (index - 4) | foldBit;
+        return (IntRegIndex)index;
+    }
+};
+
+#endif // __ARCH_X86_INTREGS_HH__
diff --git a/src/arch/x86/regs/misc.hh b/src/arch/x86/regs/misc.hh
new file mode 100644 (file)
index 0000000..74c6bd1
--- /dev/null
@@ -0,0 +1,920 @@
+/*
+ * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
+ * All rights reserved.
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Gabe Black
+ */
+
+#ifndef __ARCH_X86_MISCREGS_HH__
+#define __ARCH_X86_MISCREGS_HH__
+
+#include "arch/x86/regs/segment.hh"
+#include "arch/x86/x86_traits.hh"
+#include "base/bitunion.hh"
+
+//These get defined in some system headers (at least termbits.h). That confuses
+//things here significantly.
+#undef CR0
+#undef CR2
+#undef CR3
+
+namespace X86ISA
+{
+    enum CondFlagBit {
+        CFBit = 1 << 0,
+        PFBit = 1 << 2,
+        ECFBit = 1 << 3,
+        AFBit = 1 << 4,
+        EZFBit = 1 << 5,
+        ZFBit = 1 << 6,
+        SFBit = 1 << 7,
+        DFBit = 1 << 10,
+        OFBit = 1 << 11
+    };
+
+    enum RFLAGBit {
+        TFBit = 1 << 8,
+        IFBit = 1 << 9,
+        NTBit = 1 << 14,
+        RFBit = 1 << 16,
+        VMBit = 1 << 17,
+        ACBit = 1 << 18,
+        VIFBit = 1 << 19,
+        VIPBit = 1 << 20,
+        IDBit = 1 << 21
+    };
+
+    enum MiscRegIndex
+    {
+        // Control registers
+        // Most of these are invalid.
+        MISCREG_CR_BASE,
+        MISCREG_CR0 = MISCREG_CR_BASE,
+        MISCREG_CR1,
+        MISCREG_CR2,
+        MISCREG_CR3,
+        MISCREG_CR4,
+        MISCREG_CR5,
+        MISCREG_CR6,
+        MISCREG_CR7,
+        MISCREG_CR8,
+        MISCREG_CR9,
+        MISCREG_CR10,
+        MISCREG_CR11,
+        MISCREG_CR12,
+        MISCREG_CR13,
+        MISCREG_CR14,
+        MISCREG_CR15,
+
+        // Debug registers
+        MISCREG_DR_BASE = MISCREG_CR_BASE + NumCRegs,
+        MISCREG_DR0 = MISCREG_DR_BASE,
+        MISCREG_DR1,
+        MISCREG_DR2,
+        MISCREG_DR3,
+        MISCREG_DR4,
+        MISCREG_DR5,
+        MISCREG_DR6,
+        MISCREG_DR7,
+
+        // Flags register
+        MISCREG_RFLAGS = MISCREG_DR_BASE + NumDRegs,
+
+        //Register to keep handy values like the CPU mode in.
+        MISCREG_M5_REG,
+
+        /*
+         * Model Specific Registers
+         */
+        // Time stamp counter
+        MISCREG_TSC,
+
+        MISCREG_MTRRCAP,
+
+        MISCREG_SYSENTER_CS,
+        MISCREG_SYSENTER_ESP,
+        MISCREG_SYSENTER_EIP,
+
+        MISCREG_MCG_CAP,
+        MISCREG_MCG_STATUS,
+        MISCREG_MCG_CTL,
+
+        MISCREG_DEBUG_CTL_MSR,
+
+        MISCREG_LAST_BRANCH_FROM_IP,
+        MISCREG_LAST_BRANCH_TO_IP,
+        MISCREG_LAST_EXCEPTION_FROM_IP,
+        MISCREG_LAST_EXCEPTION_TO_IP,
+
+        MISCREG_MTRR_PHYS_BASE_BASE,
+        MISCREG_MTRR_PHYS_BASE_0 = MISCREG_MTRR_PHYS_BASE_BASE,
+        MISCREG_MTRR_PHYS_BASE_1,
+        MISCREG_MTRR_PHYS_BASE_2,
+        MISCREG_MTRR_PHYS_BASE_3,
+        MISCREG_MTRR_PHYS_BASE_4,
+        MISCREG_MTRR_PHYS_BASE_5,
+        MISCREG_MTRR_PHYS_BASE_6,
+        MISCREG_MTRR_PHYS_BASE_7,
+        MISCREG_MTRR_PHYS_BASE_END,
+
+        MISCREG_MTRR_PHYS_MASK_BASE = MISCREG_MTRR_PHYS_BASE_END,
+        MISCREG_MTRR_PHYS_MASK_0 = MISCREG_MTRR_PHYS_MASK_BASE,
+        MISCREG_MTRR_PHYS_MASK_1,
+        MISCREG_MTRR_PHYS_MASK_2,
+        MISCREG_MTRR_PHYS_MASK_3,
+        MISCREG_MTRR_PHYS_MASK_4,
+        MISCREG_MTRR_PHYS_MASK_5,
+        MISCREG_MTRR_PHYS_MASK_6,
+        MISCREG_MTRR_PHYS_MASK_7,
+        MISCREG_MTRR_PHYS_MASK_END,
+
+        MISCREG_MTRR_FIX_64K_00000 = MISCREG_MTRR_PHYS_MASK_END,
+        MISCREG_MTRR_FIX_16K_80000,
+        MISCREG_MTRR_FIX_16K_A0000,
+        MISCREG_MTRR_FIX_4K_C0000,
+        MISCREG_MTRR_FIX_4K_C8000,
+        MISCREG_MTRR_FIX_4K_D0000,
+        MISCREG_MTRR_FIX_4K_D8000,
+        MISCREG_MTRR_FIX_4K_E0000,
+        MISCREG_MTRR_FIX_4K_E8000,
+        MISCREG_MTRR_FIX_4K_F0000,
+        MISCREG_MTRR_FIX_4K_F8000,
+
+        MISCREG_PAT,
+
+        MISCREG_DEF_TYPE,
+
+        MISCREG_MC_CTL_BASE,
+        MISCREG_MC0_CTL = MISCREG_MC_CTL_BASE,
+        MISCREG_MC1_CTL,
+        MISCREG_MC2_CTL,
+        MISCREG_MC3_CTL,
+        MISCREG_MC4_CTL,
+        MISCREG_MC5_CTL,
+        MISCREG_MC6_CTL,
+        MISCREG_MC7_CTL,
+        MISCREG_MC_CTL_END,
+
+        MISCREG_MC_STATUS_BASE = MISCREG_MC_CTL_END,
+        MISCREG_MC0_STATUS = MISCREG_MC_STATUS_BASE,
+        MISCREG_MC1_STATUS,
+        MISCREG_MC2_STATUS,
+        MISCREG_MC3_STATUS,
+        MISCREG_MC4_STATUS,
+        MISCREG_MC5_STATUS,
+        MISCREG_MC6_STATUS,
+        MISCREG_MC7_STATUS,
+        MISCREG_MC_STATUS_END,
+
+        MISCREG_MC_ADDR_BASE = MISCREG_MC_STATUS_END,
+        MISCREG_MC0_ADDR = MISCREG_MC_ADDR_BASE,
+        MISCREG_MC1_ADDR,
+        MISCREG_MC2_ADDR,
+        MISCREG_MC3_ADDR,
+        MISCREG_MC4_ADDR,
+        MISCREG_MC5_ADDR,
+        MISCREG_MC6_ADDR,
+        MISCREG_MC7_ADDR,
+        MISCREG_MC_ADDR_END,
+
+        MISCREG_MC_MISC_BASE = MISCREG_MC_ADDR_END,
+        MISCREG_MC0_MISC = MISCREG_MC_MISC_BASE,
+        MISCREG_MC1_MISC,
+        MISCREG_MC2_MISC,
+        MISCREG_MC3_MISC,
+        MISCREG_MC4_MISC,
+        MISCREG_MC5_MISC,
+        MISCREG_MC6_MISC,
+        MISCREG_MC7_MISC,
+        MISCREG_MC_MISC_END,
+
+        // Extended feature enable register
+        MISCREG_EFER = MISCREG_MC_MISC_END,
+
+        MISCREG_STAR,
+        MISCREG_LSTAR,
+        MISCREG_CSTAR,
+
+        MISCREG_SF_MASK,
+
+        MISCREG_KERNEL_GS_BASE,
+
+        MISCREG_TSC_AUX,
+
+        MISCREG_PERF_EVT_SEL_BASE,
+        MISCREG_PERF_EVT_SEL0 = MISCREG_PERF_EVT_SEL_BASE,
+        MISCREG_PERF_EVT_SEL1,
+        MISCREG_PERF_EVT_SEL2,
+        MISCREG_PERF_EVT_SEL3,
+        MISCREG_PERF_EVT_SEL_END,
+
+        MISCREG_PERF_EVT_CTR_BASE = MISCREG_PERF_EVT_SEL_END,
+        MISCREG_PERF_EVT_CTR0 = MISCREG_PERF_EVT_CTR_BASE,
+        MISCREG_PERF_EVT_CTR1,
+        MISCREG_PERF_EVT_CTR2,
+        MISCREG_PERF_EVT_CTR3,
+        MISCREG_PERF_EVT_CTR_END,
+
+        MISCREG_SYSCFG = MISCREG_PERF_EVT_CTR_END,
+
+        MISCREG_IORR_BASE_BASE,
+        MISCREG_IORR_BASE0 = MISCREG_IORR_BASE_BASE,
+        MISCREG_IORR_BASE1,
+        MISCREG_IORR_BASE_END,
+
+        MISCREG_IORR_MASK_BASE = MISCREG_IORR_BASE_END,
+        MISCREG_IORR_MASK0 = MISCREG_IORR_MASK_BASE,
+        MISCREG_IORR_MASK1,
+        MISCREG_IORR_MASK_END,
+
+        MISCREG_TOP_MEM = MISCREG_IORR_MASK_END,
+        MISCREG_TOP_MEM2,
+
+        MISCREG_VM_CR,
+        MISCREG_IGNNE,
+        MISCREG_SMM_CTL,
+        MISCREG_VM_HSAVE_PA,
+
+        /*
+         * Segment registers
+         */
+        // Segment selectors
+        MISCREG_SEG_SEL_BASE,
+        MISCREG_ES = MISCREG_SEG_SEL_BASE,
+        MISCREG_CS,
+        MISCREG_SS,
+        MISCREG_DS,
+        MISCREG_FS,
+        MISCREG_GS,
+        MISCREG_HS,
+        MISCREG_TSL,
+        MISCREG_TSG,
+        MISCREG_LS,
+        MISCREG_MS,
+        MISCREG_TR,
+        MISCREG_IDTR,
+
+        // Hidden segment base field
+        MISCREG_SEG_BASE_BASE = MISCREG_SEG_SEL_BASE + NUM_SEGMENTREGS,
+        MISCREG_ES_BASE = MISCREG_SEG_BASE_BASE,
+        MISCREG_CS_BASE,
+        MISCREG_SS_BASE,
+        MISCREG_DS_BASE,
+        MISCREG_FS_BASE,
+        MISCREG_GS_BASE,
+        MISCREG_HS_BASE,
+        MISCREG_TSL_BASE,
+        MISCREG_TSG_BASE,
+        MISCREG_LS_BASE,
+        MISCREG_MS_BASE,
+        MISCREG_TR_BASE,
+        MISCREG_IDTR_BASE,
+
+        // The effective segment base, ie what is actually added to an
+        // address. In 64 bit mode this can be different from the above,
+        // namely 0.
+        MISCREG_SEG_EFF_BASE_BASE = MISCREG_SEG_BASE_BASE + NUM_SEGMENTREGS,
+        MISCREG_ES_EFF_BASE = MISCREG_SEG_EFF_BASE_BASE,
+        MISCREG_CS_EFF_BASE,
+        MISCREG_SS_EFF_BASE,
+        MISCREG_DS_EFF_BASE,
+        MISCREG_FS_EFF_BASE,
+        MISCREG_GS_EFF_BASE,
+        MISCREG_HS_EFF_BASE,
+        MISCREG_TSL_EFF_BASE,
+        MISCREG_TSG_EFF_BASE,
+        MISCREG_LS_EFF_BASE,
+        MISCREG_MS_EFF_BASE,
+        MISCREG_TR_EFF_BASE,
+        MISCREG_IDTR_EFF_BASE,
+
+        // Hidden segment limit field
+        MISCREG_SEG_LIMIT_BASE = MISCREG_SEG_EFF_BASE_BASE + NUM_SEGMENTREGS,
+        MISCREG_ES_LIMIT = MISCREG_SEG_LIMIT_BASE,
+        MISCREG_CS_LIMIT,
+        MISCREG_SS_LIMIT,
+        MISCREG_DS_LIMIT,
+        MISCREG_FS_LIMIT,
+        MISCREG_GS_LIMIT,
+        MISCREG_HS_LIMIT,
+        MISCREG_TSL_LIMIT,
+        MISCREG_TSG_LIMIT,
+        MISCREG_LS_LIMIT,
+        MISCREG_MS_LIMIT,
+        MISCREG_TR_LIMIT,
+        MISCREG_IDTR_LIMIT,
+
+        // Hidden segment limit attributes
+        MISCREG_SEG_ATTR_BASE = MISCREG_SEG_LIMIT_BASE + NUM_SEGMENTREGS,
+        MISCREG_ES_ATTR = MISCREG_SEG_ATTR_BASE,
+        MISCREG_CS_ATTR,
+        MISCREG_SS_ATTR,
+        MISCREG_DS_ATTR,
+        MISCREG_FS_ATTR,
+        MISCREG_GS_ATTR,
+        MISCREG_HS_ATTR,
+        MISCREG_TSL_ATTR,
+        MISCREG_TSG_ATTR,
+        MISCREG_LS_ATTR,
+        MISCREG_MS_ATTR,
+        MISCREG_TR_ATTR,
+        MISCREG_IDTR_ATTR,
+
+        // Floating point control registers
+        MISCREG_X87_TOP =
+            MISCREG_SEG_ATTR_BASE + NUM_SEGMENTREGS,
+
+        MISCREG_MXCSR,
+        MISCREG_FCW,
+        MISCREG_FSW,
+        MISCREG_FTW,
+        MISCREG_FTAG,
+        MISCREG_FISEG,
+        MISCREG_FIOFF,
+        MISCREG_FOSEG,
+        MISCREG_FOOFF,
+        MISCREG_FOP,
+
+        //XXX Add "Model-Specific Registers"
+
+        MISCREG_APIC_BASE,
+
+        // "Fake" MSRs for internally implemented devices
+        MISCREG_PCI_CONFIG_ADDRESS,
+
+        NUM_MISCREGS
+    };
+
+    static inline MiscRegIndex
+    MISCREG_CR(int index)
+    {
+        assert(index >= 0 && index < NumCRegs);
+        return (MiscRegIndex)(MISCREG_CR_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_DR(int index)
+    {
+        assert(index >= 0 && index < NumDRegs);
+        return (MiscRegIndex)(MISCREG_DR_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MTRR_PHYS_BASE(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MTRR_PHYS_BASE_END -
+                                      MISCREG_MTRR_PHYS_BASE_BASE));
+        return (MiscRegIndex)(MISCREG_MTRR_PHYS_BASE_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MTRR_PHYS_MASK(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MTRR_PHYS_MASK_END -
+                                      MISCREG_MTRR_PHYS_MASK_BASE));
+        return (MiscRegIndex)(MISCREG_MTRR_PHYS_MASK_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MC_CTL(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MC_CTL_END -
+                                      MISCREG_MC_CTL_BASE));
+        return (MiscRegIndex)(MISCREG_MC_CTL_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MC_STATUS(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MC_STATUS_END -
+                                      MISCREG_MC_STATUS_BASE));
+        return (MiscRegIndex)(MISCREG_MC_STATUS_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MC_ADDR(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MC_ADDR_END -
+                                      MISCREG_MC_ADDR_BASE));
+        return (MiscRegIndex)(MISCREG_MC_ADDR_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_MC_MISC(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_MC_MISC_END -
+                                      MISCREG_MC_MISC_BASE));
+        return (MiscRegIndex)(MISCREG_MC_MISC_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_PERF_EVT_SEL(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_PERF_EVT_SEL_END -
+                                      MISCREG_PERF_EVT_SEL_BASE));
+        return (MiscRegIndex)(MISCREG_PERF_EVT_SEL_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_PERF_EVT_CTR(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_PERF_EVT_CTR_END -
+                                      MISCREG_PERF_EVT_CTR_BASE));
+        return (MiscRegIndex)(MISCREG_PERF_EVT_CTR_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_IORR_BASE(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_IORR_BASE_END -
+                                      MISCREG_IORR_BASE_BASE));
+        return (MiscRegIndex)(MISCREG_IORR_BASE_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_IORR_MASK(int index)
+    {
+        assert(index >= 0 && index < (MISCREG_IORR_MASK_END -
+                                      MISCREG_IORR_MASK_BASE));
+        return (MiscRegIndex)(MISCREG_IORR_MASK_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_SEG_SEL(int index)
+    {
+        assert(index >= 0 && index < NUM_SEGMENTREGS);
+        return (MiscRegIndex)(MISCREG_SEG_SEL_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_SEG_BASE(int index)
+    {
+        assert(index >= 0 && index < NUM_SEGMENTREGS);
+        return (MiscRegIndex)(MISCREG_SEG_BASE_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_SEG_EFF_BASE(int index)
+    {
+        assert(index >= 0 && index < NUM_SEGMENTREGS);
+        return (MiscRegIndex)(MISCREG_SEG_EFF_BASE_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_SEG_LIMIT(int index)
+    {
+        assert(index >= 0 && index < NUM_SEGMENTREGS);
+        return (MiscRegIndex)(MISCREG_SEG_LIMIT_BASE + index);
+    }
+
+    static inline MiscRegIndex
+    MISCREG_SEG_ATTR(int index)
+    {
+        assert(index >= 0 && index < NUM_SEGMENTREGS);
+        return (MiscRegIndex)(MISCREG_SEG_ATTR_BASE + index);
+    }
+
+    /**
+     * A type to describe the condition code bits of the RFLAGS register,
+     * plus two flags, EZF and ECF, which are only visible to microcode.
+     */
+    BitUnion64(CCFlagBits)
+        Bitfield<11> of;
+        Bitfield<7> sf;
+        Bitfield<6> zf;
+        Bitfield<5> ezf;
+        Bitfield<4> af;
+        Bitfield<3> ecf;
+        Bitfield<2> pf;
+        Bitfield<0> cf;
+    EndBitUnion(CCFlagBits)
+
+    /**
+     * RFLAGS
+     */
+    BitUnion64(RFLAGS)
+        Bitfield<21> id; // ID Flag
+        Bitfield<20> vip; // Virtual Interrupt Pending
+        Bitfield<19> vif; // Virtual Interrupt Flag
+        Bitfield<18> ac; // Alignment Check
+        Bitfield<17> vm; // Virtual-8086 Mode
+        Bitfield<16> rf; // Resume Flag
+        Bitfield<14> nt; // Nested Task
+        Bitfield<13, 12> iopl; // I/O Privilege Level
+        Bitfield<11> of; // Overflow Flag
+        Bitfield<10> df; // Direction Flag
+        Bitfield<9> intf; // Interrupt Flag
+        Bitfield<8> tf; // Trap Flag
+        Bitfield<7> sf; // Sign Flag
+        Bitfield<6> zf; // Zero Flag
+        Bitfield<4> af; // Auxiliary Flag
+        Bitfield<2> pf; // Parity Flag
+        Bitfield<0> cf; // Carry Flag
+    EndBitUnion(RFLAGS)
+
+    BitUnion64(HandyM5Reg)
+        Bitfield<0> mode;
+        Bitfield<3, 1> submode;
+        Bitfield<5, 4> cpl;
+        Bitfield<6> paging;
+        Bitfield<7> prot;
+        Bitfield<9, 8> defOp;
+        Bitfield<11, 10> altOp;
+        Bitfield<13, 12> defAddr;
+        Bitfield<15, 14> altAddr;
+        Bitfield<17, 16> stack;
+    EndBitUnion(HandyM5Reg)
+
+    /**
+     * Control registers
+     */
+    BitUnion64(CR0)
+        Bitfield<31> pg; // Paging
+        Bitfield<30> cd; // Cache Disable
+        Bitfield<29> nw; // Not Writethrough
+        Bitfield<18> am; // Alignment Mask
+        Bitfield<16> wp; // Write Protect
+        Bitfield<5> ne; // Numeric Error
+        Bitfield<4> et; // Extension Type
+        Bitfield<3> ts; // Task Switched
+        Bitfield<2> em; // Emulation
+        Bitfield<1> mp; // Monitor Coprocessor
+        Bitfield<0> pe; // Protection Enabled
+    EndBitUnion(CR0)
+
+    // Page Fault Virtual Address
+    BitUnion64(CR2)
+        Bitfield<31, 0> legacy;
+    EndBitUnion(CR2)
+
+    BitUnion64(CR3)
+        Bitfield<51, 12> longPdtb; // Long Mode Page-Directory-Table
+                                   // Base Address
+        Bitfield<31, 12> pdtb; // Non-PAE Addressing Page-Directory-Table
+                               // Base Address
+        Bitfield<31, 5> paePdtb; // PAE Addressing Page-Directory-Table
+                                 // Base Address
+        Bitfield<4> pcd; // Page-Level Cache Disable
+        Bitfield<3> pwt; // Page-Level Writethrough
+    EndBitUnion(CR3)
+
+    BitUnion64(CR4)
+        Bitfield<10> osxmmexcpt; // Operating System Unmasked
+                                 // Exception Support
+        Bitfield<9> osfxsr; // Operating System FXSave/FSRSTOR Support
+        Bitfield<8> pce; // Performance-Monitoring Counter Enable
+        Bitfield<7> pge; // Page-Global Enable
+        Bitfield<6> mce; // Machine Check Enable
+        Bitfield<5> pae; // Physical-Address Extension
+        Bitfield<4> pse; // Page Size Extensions
+        Bitfield<3> de; // Debugging Extensions
+        Bitfield<2> tsd; // Time Stamp Disable
+        Bitfield<1> pvi; // Protected-Mode Virtual Interrupts
+        Bitfield<0> vme; // Virtual-8086 Mode Extensions
+    EndBitUnion(CR4)
+
+    BitUnion64(CR8)
+        Bitfield<3, 0> tpr; // Task Priority Register
+    EndBitUnion(CR8)
+
+    BitUnion64(DR6)
+        Bitfield<0> b0;
+        Bitfield<1> b1;
+        Bitfield<2> b2;
+        Bitfield<3> b3;
+        Bitfield<13> bd;
+        Bitfield<14> bs;
+        Bitfield<15> bt;
+    EndBitUnion(DR6)
+
+    BitUnion64(DR7)
+        Bitfield<0> l0;
+        Bitfield<1> g0;
+        Bitfield<2> l1;
+        Bitfield<3> g1;
+        Bitfield<4> l2;
+        Bitfield<5> g2;
+        Bitfield<6> l3;
+        Bitfield<7> g3;
+        Bitfield<8> le;
+        Bitfield<9> ge;
+        Bitfield<13> gd;
+        Bitfield<17, 16> rw0;
+        Bitfield<19, 18> len0;
+        Bitfield<21, 20> rw1;
+        Bitfield<23, 22> len1;
+        Bitfield<25, 24> rw2;
+        Bitfield<27, 26> len2;
+        Bitfield<29, 28> rw3;
+        Bitfield<31, 30> len3;
+    EndBitUnion(DR7)
+
+    // MTRR capabilities
+    BitUnion64(MTRRcap)
+        Bitfield<7, 0> vcnt; // Variable-Range Register Count
+        Bitfield<8> fix; // Fixed-Range Registers
+        Bitfield<10> wc; // Write-Combining
+    EndBitUnion(MTRRcap)
+
+    /**
+     * SYSENTER configuration registers
+     */
+    BitUnion64(SysenterCS)
+        Bitfield<15, 0> targetCS;
+    EndBitUnion(SysenterCS)
+
+    BitUnion64(SysenterESP)
+        Bitfield<31, 0> targetESP;
+    EndBitUnion(SysenterESP)
+
+    BitUnion64(SysenterEIP)
+        Bitfield<31, 0> targetEIP;
+    EndBitUnion(SysenterEIP)
+
+    /**
+     * Global machine check registers
+     */
+    BitUnion64(McgCap)
+        Bitfield<7, 0> count; // Number of error reporting register banks
+        Bitfield<8> MCGCP; // MCG_CTL register present.
+    EndBitUnion(McgCap)
+
+    BitUnion64(McgStatus)
+        Bitfield<0> ripv; // Restart-IP valid
+        Bitfield<1> eipv; // Error-IP valid
+        Bitfield<2> mcip; // Machine check in-progress
+    EndBitUnion(McgStatus)
+
+    BitUnion64(DebugCtlMsr)
+        Bitfield<0> lbr; // Last-branch record
+        Bitfield<1> btf; // Branch single step
+        Bitfield<2> pb0; // Performance monitoring pin control 0
+        Bitfield<3> pb1; // Performance monitoring pin control 1
+        Bitfield<4> pb2; // Performance monitoring pin control 2
+        Bitfield<5> pb3; // Performance monitoring pin control 3
+        /*uint64_t pb(int index)
+        {
+            return bits(__data, index + 2);
+        }*/
+    EndBitUnion(DebugCtlMsr)
+
+    BitUnion64(MtrrPhysBase)
+        Bitfield<7, 0> type; // Default memory type
+        Bitfield<51, 12> physbase; // Range physical base address
+    EndBitUnion(MtrrPhysBase)
+
+    BitUnion64(MtrrPhysMask)
+        Bitfield<11> valid; // MTRR pair enable
+        Bitfield<51, 12> physmask; // Range physical mask
+    EndBitUnion(MtrrPhysMask)
+
+    BitUnion64(MtrrFixed)
+        /*uint64_t type(int index)
+        {
+            return bits(__data, index * 8 + 7, index * 8);
+        }*/
+    EndBitUnion(MtrrFixed)
+
+    BitUnion64(Pat)
+        /*uint64_t pa(int index)
+        {
+            return bits(__data, index * 8 + 2, index * 8);
+        }*/
+    EndBitUnion(Pat)
+
+    BitUnion64(MtrrDefType)
+        Bitfield<7, 0> type; // Default type
+        Bitfield<10> fe; // Fixed range enable
+        Bitfield<11> e; // MTRR enable
+    EndBitUnion(MtrrDefType)
+
+    /**
+     * Machine check
+     */
+    BitUnion64(McStatus)
+        Bitfield<15,0> mcaErrorCode;
+        Bitfield<31,16> modelSpecificCode;
+        Bitfield<56,32> otherInfo;
+        Bitfield<57> pcc; // Processor-context corrupt
+        Bitfield<58> addrv; // Error-address register valid
+        Bitfield<59> miscv; // Miscellaneous-error register valid
+        Bitfield<60> en; // Error condition enabled
+        Bitfield<61> uc; // Uncorrected error
+        Bitfield<62> over; // Status register overflow
+        Bitfield<63> val; // Valid
+    EndBitUnion(McStatus)
+
+    BitUnion64(McCtl)
+        /*uint64_t en(int index)
+        {
+            return bits(__data, index);
+        }*/
+    EndBitUnion(McCtl)
+
+    // Extended feature enable register
+    BitUnion64(Efer)
+        Bitfield<0> sce; // System call extensions
+        Bitfield<8> lme; // Long mode enable
+        Bitfield<10> lma; // Long mode active
+        Bitfield<11> nxe; // No-execute enable
+        Bitfield<12> svme; // Secure virtual machine enable
+        Bitfield<14> ffxsr; // Fast fxsave/fxrstor
+    EndBitUnion(Efer)
+
+    BitUnion64(Star)
+        Bitfield<31,0> targetEip;
+        Bitfield<47,32> syscallCsAndSs;
+        Bitfield<63,48> sysretCsAndSs;
+    EndBitUnion(Star)
+
+    BitUnion64(SfMask)
+        Bitfield<31,0> mask;
+    EndBitUnion(SfMask)
+
+    BitUnion64(PerfEvtSel)
+        Bitfield<7,0> eventMask;
+        Bitfield<15,8> unitMask;
+        Bitfield<16> usr; // User mode
+        Bitfield<17> os; // Operating-system mode
+        Bitfield<18> e; // Edge detect
+        Bitfield<19> pc; // Pin control
+        Bitfield<20> intEn; // Interrupt enable
+        Bitfield<22> en; // Counter enable
+        Bitfield<23> inv; // Invert mask
+        Bitfield<31,24> counterMask;
+    EndBitUnion(PerfEvtSel)
+
+    BitUnion32(Syscfg)
+        Bitfield<18> mfde; // MtrrFixDramEn
+        Bitfield<19> mfdm; // MtrrFixDramModEn
+        Bitfield<20> mvdm; // MtrrVarDramEn
+        Bitfield<21> tom2; // MtrrTom2En
+    EndBitUnion(Syscfg)
+
+    BitUnion64(IorrBase)
+        Bitfield<3> wr; // WrMem Enable
+        Bitfield<4> rd; // RdMem Enable
+        Bitfield<51,12> physbase; // Range physical base address
+    EndBitUnion(IorrBase)
+
+    BitUnion64(IorrMask)
+        Bitfield<11> v; // I/O register pair enable (valid)
+        Bitfield<51,12> physmask; // Range physical mask
+    EndBitUnion(IorrMask)
+
+    BitUnion64(Tom)
+        Bitfield<51,23> physAddr; // Top of memory physical address
+    EndBitUnion(Tom)
+
+    BitUnion64(VmCrMsr)
+        Bitfield<0> dpd;
+        Bitfield<1> rInit;
+        Bitfield<2> disA20M;
+    EndBitUnion(VmCrMsr)
+
+    BitUnion64(IgnneMsr)
+        Bitfield<0> ignne;
+    EndBitUnion(IgnneMsr)
+
+    BitUnion64(SmmCtlMsr)
+        Bitfield<0> dismiss;
+        Bitfield<1> enter;
+        Bitfield<2> smiCycle;
+        Bitfield<3> exit;
+        Bitfield<4> rsmCycle;
+    EndBitUnion(SmmCtlMsr)
+
+    /**
+     * Segment Selector
+     */
+    BitUnion64(SegSelector)
+        // The following bitfield is not defined in the ISA, but it's useful
+        // when checking selectors in larger data types to make sure they
+        // aren't too large.
+        Bitfield<63, 3> esi; // Extended selector
+        Bitfield<15, 3> si; // Selector Index
+        Bitfield<2> ti; // Table Indicator
+        Bitfield<1, 0> rpl; // Requestor Privilege Level
+    EndBitUnion(SegSelector)
+
+    /**
+     * Segment Descriptors
+     */
+
+    BitUnion64(SegDescriptor)
+        Bitfield<63, 56> baseHigh;
+        Bitfield<39, 16> baseLow;
+        Bitfield<55> g; // Granularity
+        Bitfield<54> d; // Default Operand Size
+        Bitfield<54> b; // Default Operand Size
+        Bitfield<53> l; // Long Attribute Bit
+        Bitfield<52> avl; // Available To Software
+        Bitfield<51, 48> limitHigh;
+        Bitfield<15, 0> limitLow;
+        Bitfield<47> p; // Present
+        Bitfield<46, 45> dpl; // Descriptor Privilege-Level
+        Bitfield<44> s; // System
+        SubBitUnion(type, 43, 40)
+            // Specifies whether this descriptor is for code or data.
+            Bitfield<43> codeOrData;
+
+            // These bit fields are for code segments
+            Bitfield<42> c; // Conforming
+            Bitfield<41> r; // Readable
+
+            // These bit fields are for data segments
+            Bitfield<42> e; // Expand-Down
+            Bitfield<41> w; // Writable
+
+            // This is used for both code and data segments.
+            Bitfield<40> a; // Accessed
+        EndSubBitUnion(type)
+    EndBitUnion(SegDescriptor)
+
+    BitUnion64(SegAttr)
+        Bitfield<1, 0> dpl;
+        Bitfield<2> unusable;
+        Bitfield<3> defaultSize;
+        Bitfield<4> longMode;
+        Bitfield<5> avl;
+        Bitfield<6> granularity;
+        Bitfield<7> present;
+        Bitfield<11, 8> type;
+        Bitfield<12> writable;
+        Bitfield<13> readable;
+        Bitfield<14> expandDown;
+        Bitfield<15> system;
+    EndBitUnion(SegAttr)
+
+    BitUnion64(GateDescriptor)
+        Bitfield<63, 48> offsetHigh; // Target Code-Segment Offset
+        Bitfield<15, 0> offsetLow; // Target Code-Segment Offset
+        Bitfield<31, 16> selector; // Target Code-Segment Selector
+        Bitfield<47> p; // Present
+        Bitfield<46, 45> dpl; // Descriptor Privilege-Level
+        Bitfield<43, 40> type;
+        Bitfield<36, 32> count; // Parameter Count
+    EndBitUnion(GateDescriptor)
+
+    /**
+     * Descriptor-Table Registers
+     */
+    BitUnion64(GDTR)
+    EndBitUnion(GDTR)
+
+    BitUnion64(IDTR)
+    EndBitUnion(IDTR)
+
+    BitUnion64(LDTR)
+    EndBitUnion(LDTR)
+
+    /**
+     * Task Register
+     */
+    BitUnion64(TR)
+    EndBitUnion(TR)
+
+
+    /**
+     * Local APIC Base Register
+     */
+    BitUnion64(LocalApicBase)
+        Bitfield<51, 12> base;
+        Bitfield<11> enable;
+        Bitfield<8> bsp;
+    EndBitUnion(LocalApicBase)
+};
+
+#endif // __ARCH_X86_INTREGS_HH__
diff --git a/src/arch/x86/regs/segment.hh b/src/arch/x86/regs/segment.hh
new file mode 100644 (file)
index 0000000..7379341
--- /dev/null
@@ -0,0 +1,68 @@
+/*
+ * Copyright (c) 2007 The Hewlett-Packard Development Company
+ * All rights reserved.
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are
+ * met: redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer;
+ * redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution;
+ * neither the name of the copyright holders nor the names of its
+ * contributors may be used to endorse or promote products derived from
+ * this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * Authors: Gabe Black
+ */
+
+#ifndef __ARCH_X86_SEGMENTREGS_HH__
+#define __ARCH_X86_SEGMENTREGS_HH__
+
+namespace X86ISA
+{
+    enum SegmentRegIndex
+    {
+        SEGMENT_REG_ES,
+        SEGMENT_REG_CS,
+        SEGMENT_REG_SS,
+        SEGMENT_REG_DS,
+        SEGMENT_REG_FS,
+        SEGMENT_REG_GS,
+        SEGMENT_REG_HS, // Temporary descriptor
+        SEGMENT_REG_TSL, // Local descriptor table
+        SEGMENT_REG_TSG, // Global descriptor table
+        SEGMENT_REG_LS, // Flat segment
+        SEGMENT_REG_MS, // Emulation memory
+        // These shouldn't be used directly in a load or store since they
+        // are likely accessed in other ways in a real machine. For instance,
+        // they may be loaded into the temporary segment register on demand.
+        SYS_SEGMENT_REG_TR,
+        SYS_SEGMENT_REG_IDTR,
+
+        NUM_SEGMENTREGS
+    };
+};
+
+#endif // __ARCH_X86_SEGMENTREGS_HH__
diff --git a/src/arch/x86/segmentregs.hh b/src/arch/x86/segmentregs.hh
deleted file mode 100644 (file)
index 7379341..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*
- * Copyright (c) 2007 The Hewlett-Packard Development Company
- * All rights reserved.
- *
- * The license below extends only to copyright in the software and shall
- * not be construed as granting a license to any other intellectual
- * property including but not limited to intellectual property relating
- * to a hardware implementation of the functionality of the software
- * licensed hereunder.  You may use the software subject to the license
- * terms below provided that you ensure that this notice is replicated
- * unmodified and in its entirety in all distributions of the software,
- * modified or unmodified, in source code or in binary form.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are
- * met: redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer;
- * redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution;
- * neither the name of the copyright holders nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * Authors: Gabe Black
- */
-
-#ifndef __ARCH_X86_SEGMENTREGS_HH__
-#define __ARCH_X86_SEGMENTREGS_HH__
-
-namespace X86ISA
-{
-    enum SegmentRegIndex
-    {
-        SEGMENT_REG_ES,
-        SEGMENT_REG_CS,
-        SEGMENT_REG_SS,
-        SEGMENT_REG_DS,
-        SEGMENT_REG_FS,
-        SEGMENT_REG_GS,
-        SEGMENT_REG_HS, // Temporary descriptor
-        SEGMENT_REG_TSL, // Local descriptor table
-        SEGMENT_REG_TSG, // Global descriptor table
-        SEGMENT_REG_LS, // Flat segment
-        SEGMENT_REG_MS, // Emulation memory
-        // These shouldn't be used directly in a load or store since they
-        // are likely accessed in other ways in a real machine. For instance,
-        // they may be loaded into the temporary segment register on demand.
-        SYS_SEGMENT_REG_TR,
-        SYS_SEGMENT_REG_IDTR,
-
-        NUM_SEGMENTREGS
-    };
-};
-
-#endif // __ARCH_X86_SEGMENTREGS_HH__
index 46d17cdb3dcedfd9a762a2ea654d54261aa1abde..f12d6e424f1c079564e5ebf2f1cbf89bd2139ea5 100644 (file)
@@ -39,7 +39,7 @@
 
 #include "arch/x86/bios/smbios.hh"
 #include "arch/x86/bios/intelmp.hh"
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/system.hh"
 #include "arch/vtophys.hh"
 #include "base/intmath.hh"
index 78efd5b693455a20e962de62daada39d5591d271..71e0b3adb7a2efc1e93e8bc92e42fc8f54670c9b 100644 (file)
@@ -43,8 +43,8 @@
 
 #include "arch/x86/faults.hh"
 #include "arch/x86/insts/microldstop.hh"
-#include "arch/x86/miscregs.hh"
 #include "arch/x86/pagetable.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/tlb.hh"
 #include "arch/x86/x86_traits.hh"
 #include "base/bitfield.hh"
index 8a6b7a00a0c8ffcb50d5d170f64e7f2f601e64c9..09a26f3e74572149a9e759a179749a51fecd2bc6 100644 (file)
@@ -45,7 +45,7 @@
 #include <string>
 
 #include "arch/x86/pagetable.hh"
-#include "arch/x86/segmentregs.hh"
+#include "arch/x86/regs/segment.hh"
 #include "config/full_system.hh"
 #include "mem/mem_object.hh"
 #include "mem/request.hh"
index 4a3263f4c75d5980077bd94cd564de3be32230bb..50574bcde487916c6d93dd7041467ff5cbe7f7e6 100644 (file)
@@ -42,9 +42,9 @@
 #if FULL_SYSTEM
 #include "arch/x86/interrupts.hh"
 #endif
-#include "arch/x86/intregs.hh"
-#include "arch/x86/miscregs.hh"
-#include "arch/x86/segmentregs.hh"
+#include "arch/x86/regs/int.hh"
+#include "arch/x86/regs/misc.hh"
+#include "arch/x86/regs/segment.hh"
 #include "arch/x86/utility.hh"
 #include "arch/x86/x86_traits.hh"
 #include "cpu/base.hh"
index 4c987faee5f5de3a01c41c98416304bf3ad63666..db03da7a031c7a3c6a3f91e583f19c8532c52f02 100644 (file)
@@ -40,7 +40,7 @@
 #ifndef __ARCH_X86_UTILITY_HH__
 #define __ARCH_X86_UTILITY_HH__
 
-#include "arch/x86/miscregs.hh"
+#include "arch/x86/regs/misc.hh"
 #include "arch/x86/types.hh"
 #include "base/hashmap.hh"
 #include "base/misc.hh"