gem5  v22.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
isa.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2009 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __ARCH_X86_ISA_HH__
30 #define __ARCH_X86_ISA_HH__
31 
32 #include <iostream>
33 #include <string>
34 
35 #include "arch/generic/isa.hh"
36 #include "arch/x86/pcstate.hh"
37 #include "arch/x86/regs/float.hh"
38 #include "arch/x86/regs/int.hh"
39 #include "arch/x86/regs/misc.hh"
40 #include "base/types.hh"
41 #include "cpu/reg_class.hh"
42 
43 namespace gem5
44 {
45 
46 class ThreadContext;
47 struct X86ISAParams;
48 
49 namespace X86ISA
50 {
51 
52 class ISA : public BaseISA
53 {
54  private:
56  void updateHandyM5Reg(Efer efer, CR0 cr0,
57  SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags);
58 
59  std::string vendorString;
60 
61  public:
62  void clear();
63 
64  PCStateBase *
65  newPCState(Addr new_inst_addr=0) const override
66  {
67  return new PCState(new_inst_addr);
68  }
69 
70  using Params = X86ISAParams;
71 
72  ISA(const Params &p);
73 
74  RegVal readMiscRegNoEffect(int miscReg) const;
75  RegVal readMiscReg(int miscReg);
76 
77  void setMiscRegNoEffect(int miscReg, RegVal val);
78  void setMiscReg(int miscReg, RegVal val);
79 
80  RegId
81  flattenRegId(const RegId& regId) const
82  {
83  switch (regId.classValue()) {
84  case IntRegClass:
85  return RegId(IntRegClass, flattenIntIndex(regId.index()));
86  case FloatRegClass:
87  return RegId(FloatRegClass, flattenFloatIndex(regId.index()));
88  case CCRegClass:
89  return RegId(CCRegClass, flattenCCIndex(regId.index()));
90  case MiscRegClass:
91  return RegId(MiscRegClass, flattenMiscIndex(regId.index()));
92  default:
93  break;
94  }
95  return regId;
96  }
97 
98  int flattenIntIndex(int reg) const { return reg & ~IntFoldBit; }
99 
100  int
102  {
103  if (reg >= float_reg::NumRegs) {
106  }
107  return reg;
108  }
109 
110  int flattenVecIndex(int reg) const { return reg; }
111  int flattenVecElemIndex(int reg) const { return reg; }
112  int flattenVecPredIndex(int reg) const { return reg; }
113  int flattenCCIndex(int reg) const { return reg; }
114  int flattenMiscIndex(int reg) const { return reg; }
115 
116  bool
117  inUserMode() const override
118  {
119  HandyM5Reg m5reg = readMiscRegNoEffect(misc_reg::M5Reg);
120  return m5reg.cpl == 3;
121  }
122 
123  void copyRegsFrom(ThreadContext *src) override;
124 
125  void serialize(CheckpointOut &cp) const override;
126  void unserialize(CheckpointIn &cp) override;
127 
128  void setThreadContext(ThreadContext *_tc) override;
129 
130  std::string getVendorString() const;
131 };
132 
133 } // namespace X86ISA
134 } // namespace gem5
135 
136 #endif
pcstate.hh
gem5::X86ISA::ISA::copyRegsFrom
void copyRegsFrom(ThreadContext *src) override
Definition: isa.cc:181
gem5::RegVal
uint64_t RegVal
Definition: types.hh:173
gem5::X86ISA::ISA
Definition: isa.hh:52
gem5::X86ISA::misc_reg::M5Reg
@ M5Reg
Definition: misc.hh:146
gem5::X86ISA::ISA::vendorString
std::string vendorString
Definition: isa.hh:59
gem5::CCRegClass
@ CCRegClass
Condition-code register.
Definition: reg_class.hh:65
gem5::CheckpointIn
Definition: serialize.hh:68
gem5::X86ISA::ISA::ISA
ISA(const Params &p)
Definition: isa.cc:144
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:769
gem5::X86ISA::ISA::flattenMiscIndex
int flattenMiscIndex(int reg) const
Definition: isa.hh:114
gem5::X86ISA::ISA::setMiscReg
void setMiscReg(int miscReg, RegVal val)
Definition: isa.cc:278
gem5::X86ISA::ISA::flattenVecElemIndex
int flattenVecElemIndex(int reg) const
Definition: isa.hh:111
gem5::X86ISA::float_reg::NumRegs
@ NumRegs
Definition: float.hh:117
gem5::X86ISA::ISA::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: isa.cc:478
gem5::X86ISA::ISA::flattenFloatIndex
int flattenFloatIndex(int reg) const
Definition: isa.hh:101
gem5::FloatRegClass
@ FloatRegClass
Floating-point register.
Definition: reg_class.hh:59
gem5::X86ISA::ISA::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: isa.cc:484
gem5::X86ISA::ISA::Params
X86ISAParams Params
Definition: isa.hh:70
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::X86ISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int miscReg) const
Definition: isa.cc:203
gem5::X86ISA::ISA::newPCState
PCStateBase * newPCState(Addr new_inst_addr=0) const override
Definition: isa.hh:65
gem5::X86ISA::ISA::setThreadContext
void setThreadContext(ThreadContext *_tc) override
Definition: isa.cc:495
int.hh
gem5::X86ISA::misc_reg::NumRegs
@ NumRegs
Definition: misc.hh:406
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition: pcstate.hh:40
gem5::X86ISA::ISA::clear
void clear()
Definition: isa.cc:114
gem5::X86ISA::float_reg::stack
static RegId stack(int index, int top)
Definition: float.hh:157
gem5::X86ISA::ISA::readMiscReg
RegVal readMiscReg(int miscReg)
Definition: isa.cc:214
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::X86ISA::ISA::flattenCCIndex
int flattenCCIndex(int reg) const
Definition: isa.hh:113
gem5::X86ISA::ISA::getVendorString
std::string getVendorString() const
Definition: isa.cc:502
gem5::X86ISA::ISA::flattenVecIndex
int flattenVecIndex(int reg) const
Definition: isa.hh:110
gem5::X86ISA::ISA::regVal
RegVal regVal[misc_reg::NumRegs]
Definition: isa.hh:55
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
gem5::IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:58
isa.hh
gem5::X86ISA::ISA::flattenRegId
RegId flattenRegId(const RegId &regId) const
Definition: isa.hh:81
gem5::MiscRegClass
@ MiscRegClass
Control (misc) register.
Definition: reg_class.hh:66
types.hh
gem5::X86ISA::misc_reg::X87Top
@ X87Top
Definition: misc.hh:386
gem5::X86ISA::ISA::updateHandyM5Reg
void updateHandyM5Reg(Efer efer, CR0 cr0, SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags)
Definition: isa.cc:53
reg_class.hh
gem5::X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:151
gem5::CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:66
gem5::X86ISA::IntFoldBit
constexpr RegIndex IntFoldBit
Definition: int.hh:149
gem5::X86ISA::ISA::flattenVecPredIndex
int flattenVecPredIndex(int reg) const
Definition: isa.hh:112
gem5::PCStateBase
Definition: pcstate.hh:57
gem5::RegId::index
constexpr RegIndex index() const
Index accessors.
Definition: reg_class.hh:188
gem5::BaseISA
Definition: isa.hh:57
gem5::X86ISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int miscReg, RegVal val)
Definition: isa.cc:236
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::X86ISA::misc_reg::Efer
@ Efer
Definition: misc.hh:254
gem5::RegId::classValue
constexpr RegClassType classValue() const
Class accessor.
Definition: reg_class.hh:191
gem5::X86ISA::ISA::flattenIntIndex
int flattenIntIndex(int reg) const
Definition: isa.hh:98
misc.hh
float.hh
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:126
gem5::X86ISA::ISA::inUserMode
bool inUserMode() const override
Definition: isa.hh:117

Generated on Wed Jul 13 2022 10:39:09 for gem5 by doxygen 1.8.17