gem5  v21.2.0.0
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  * Copyright (c) 2009 The University of Edinburgh
4  * Copyright (c) 2021 IBM Corporation
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #ifndef __ARCH_POWER_ISA_HH__
32 #define __ARCH_POWER_ISA_HH__
33 
34 #include "arch/generic/isa.hh"
35 #include "arch/power/pcstate.hh"
36 #include "arch/power/regs/misc.hh"
37 #include "arch/power/types.hh"
38 #include "base/logging.hh"
39 #include "cpu/reg_class.hh"
40 #include "sim/sim_object.hh"
41 
42 namespace gem5
43 {
44 
45 struct PowerISAParams;
46 class ThreadContext;
47 class Checkpoint;
48 class EventManager;
49 
50 namespace PowerISA
51 {
52 
53 class ISA : public BaseISA
54 {
55  protected:
58 
59  public:
60  void clear() {}
61 
62  PCStateBase *
63  newPCState(Addr new_inst_addr=0) const override
64  {
65  return new PCState(new_inst_addr);
66  }
67 
68  public:
69  RegVal
70  readMiscRegNoEffect(int misc_reg) const
71  {
72  fatal("Power does not currently have any misc regs defined\n");
73  return dummy;
74  }
75 
76  RegVal
77  readMiscReg(int misc_reg)
78  {
79  fatal("Power does not currently have any misc regs defined\n");
80  return dummy;
81  }
82 
83  void
84  setMiscRegNoEffect(int misc_reg, RegVal val)
85  {
86  fatal("Power does not currently have any misc regs defined\n");
87  }
88 
89  void
90  setMiscReg(int misc_reg, RegVal val)
91  {
92  fatal("Power does not currently have any misc regs defined\n");
93  }
94 
95  RegId flattenRegId(const RegId& regId) const { return regId; }
96 
97  int
98  flattenIntIndex(int reg) const
99  {
100  return reg;
101  }
102 
103  int
105  {
106  return reg;
107  }
108 
109  int
110  flattenVecIndex(int reg) const
111  {
112  return reg;
113  }
114 
115  int
117  {
118  return reg;
119  }
120 
121  int
123  {
124  return reg;
125  }
126 
127  // dummy
128  int
129  flattenCCIndex(int reg) const
130  {
131  return reg;
132  }
133 
134  int
136  {
137  return reg;
138  }
139 
140  bool
141  inUserMode() const override
142  {
143  return false;
144  }
145 
146  void copyRegsFrom(ThreadContext *src) override;
147 
148  using Params = PowerISAParams;
149 
150  ISA(const Params &p);
151 };
152 
153 } // namespace PowerISA
154 } // namespace gem5
155 
156 #endif // __ARCH_POWER_ISA_HH__
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:190
gem5::PowerISA::ISA::flattenVecIndex
int flattenVecIndex(int reg) const
Definition: isa.hh:110
gem5::RegVal
uint64_t RegVal
Definition: types.hh:173
gem5::PowerISA::ISA::newPCState
PCStateBase * newPCState(Addr new_inst_addr=0) const override
Definition: isa.hh:63
gem5::PowerISA::ISA::flattenVecElemIndex
int flattenVecElemIndex(int reg) const
Definition: isa.hh:116
gem5::PowerISA::ISA::flattenIntIndex
int flattenIntIndex(int reg) const
Definition: isa.hh:98
gem5::X86ISA::val
Bitfield< 63 > val
Definition: misc.hh:775
gem5::PowerISA::ISA::clear
void clear()
Definition: isa.hh:60
gem5::PowerISA::ISA::readMiscReg
RegVal readMiscReg(int misc_reg)
Definition: isa.hh:77
gem5::PowerISA::ISA::flattenVecPredIndex
int flattenVecPredIndex(int reg) const
Definition: isa.hh:122
gem5::PowerISA::ISA::readMiscRegNoEffect
RegVal readMiscRegNoEffect(int misc_reg) const
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::PowerISA::ISA::Params
PowerISAParams Params
Definition: isa.hh:148
pcstate.hh
sim_object.hh
gem5::PowerISA::ISA::miscRegs
RegVal miscRegs[NUM_MISCREGS]
Definition: isa.hh:57
gem5::MipsISA::PCState
GenericISA::DelaySlotPCState< 4 > PCState
Definition: pcstate.hh:40
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::PowerISA::ISA::flattenMiscIndex
int flattenMiscIndex(int reg) const
Definition: isa.hh:135
misc.hh
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::PowerISA::NUM_MISCREGS
@ NUM_MISCREGS
Definition: misc.hh:43
gem5::PowerISA::ISA::dummy
RegVal dummy
Definition: isa.hh:56
gem5::X86ISA::reg
Bitfield< 5, 3 > reg
Definition: types.hh:92
isa.hh
gem5::PowerISA::ISA::inUserMode
bool inUserMode() const override
Definition: isa.hh:141
gem5::PowerISA::ISA::flattenRegId
RegId flattenRegId(const RegId &regId) const
Definition: isa.hh:95
reg_class.hh
logging.hh
gem5::PowerISA::ISA::ISA
ISA(const Params &p)
Definition: isa.cc:52
gem5::PowerISA::ISA
Definition: isa.hh:53
gem5::PowerISA::ISA::copyRegsFrom
void copyRegsFrom(ThreadContext *src) override
Definition: isa.cc:65
gem5::PowerISA::ISA::flattenCCIndex
int flattenCCIndex(int reg) const
Definition: isa.hh:129
gem5::PCStateBase
Definition: pcstate.hh:57
gem5::BaseISA
Definition: isa.hh:57
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
gem5::PowerISA::ISA::flattenFloatIndex
int flattenFloatIndex(int reg) const
Definition: isa.hh:104
types.hh
gem5::PowerISA::ISA::setMiscReg
void setMiscReg(int misc_reg, RegVal val)
Definition: isa.hh:90
gem5::RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:113
gem5::PowerISA::ISA::setMiscRegNoEffect
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition: isa.hh:84

Generated on Tue Dec 21 2021 11:34:19 for gem5 by doxygen 1.8.17