gem5  v20.0.0.3
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_MIPS_ISA_HH__
30 #define __ARCH_MIPS_ISA_HH__
31 
32 #include <queue>
33 #include <string>
34 #include <vector>
35 
36 #include "arch/generic/isa.hh"
37 #include "arch/mips/registers.hh"
38 #include "arch/mips/types.hh"
39 #include "cpu/reg_class.hh"
40 #include "sim/eventq.hh"
41 #include "sim/sim_object.hh"
42 
43 class BaseCPU;
44 class Checkpoint;
45 class EventManager;
46 struct MipsISAParams;
47 class ThreadContext;
48 
49 namespace MipsISA
50 {
51  class ISA : public BaseISA
52  {
53  public:
54  // The MIPS name for this file is CP0 or Coprocessor 0
55  typedef ISA CP0;
56 
57  typedef MipsISAParams Params;
58 
59  protected:
60  // Number of threads and vpes an individual ISA state can handle
61  uint8_t numThreads;
62  uint8_t numVpes;
63 
64  enum BankType {
68  };
69 
73 
74  public:
75  void clear(ThreadContext *tc) { clear(); }
76 
77  protected:
78  void clear();
79 
80  public:
81  void configCP();
82 
83  unsigned getVPENum(ThreadID tid) const;
84 
86  //
87  // READ/WRITE CP0 STATE
88  //
89  //
91  //@TODO: MIPS MT's register view automatically connects
92  // Status to TCStatus depending on current thread
93  void updateCP0ReadView(int misc_reg, ThreadID tid) { }
94  RegVal readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) const;
95 
96  //template <class TC>
97  RegVal readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid = 0);
98 
99  RegVal filterCP0Write(int misc_reg, int reg_sel, RegVal val);
100  void setRegMask(int misc_reg, RegVal val, ThreadID tid = 0);
101  void setMiscRegNoEffect(int misc_reg, RegVal val, ThreadID tid=0);
102 
103  //template <class TC>
104  void setMiscReg(int misc_reg, RegVal val,
105  ThreadContext *tc, ThreadID tid=0);
106 
108  //
109  // DECLARE INTERFACE THAT WILL ALLOW A MiscRegFile (Cop0)
110  // TO SCHEDULE EVENTS
111  //
113 
114  // Flag that is set when CP0 state has been written to.
116 
117  // Enumerated List of CP0 Event Types
120  };
121 
124 
125  // Schedule a CP0 Update Event
126  void scheduleCP0Update(BaseCPU *cpu, Cycles delay = Cycles(0));
127 
128  // If any changes have been made, then check the state for changes
129  // and if necessary alert the CPU
130  void updateCPU(BaseCPU *cpu);
131 
132  static std::string miscRegNames[NumMiscRegs];
133 
134  public:
135  void startup(ThreadContext *tc) {}
136 
138  using BaseISA::startup;
139 
140  const Params *params() const;
141 
142  ISA(Params *p);
143 
144  RegId flattenRegId(const RegId& regId) const { return regId; }
145 
146  int
147  flattenIntIndex(int reg) const
148  {
149  return reg;
150  }
151 
152  int
154  {
155  return reg;
156  }
157 
158  int
159  flattenVecIndex(int reg) const
160  {
161  return reg;
162  }
163 
164  int
166  {
167  return reg;
168  }
169 
170  int
172  {
173  return reg;
174  }
175 
176  // dummy
177  int
178  flattenCCIndex(int reg) const
179  {
180  return reg;
181  }
182 
183  int
185  {
186  return reg;
187  }
188 
189  };
190 }
191 
192 #endif
Bitfield< 5, 3 > reg
Definition: types.hh:87
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:81
const Params * params() const
Definition: isa.cc:144
void clear()
Definition: isa.cc:150
RegVal readMiscRegNoEffect(int misc_reg, ThreadID tid=0) const
Definition: isa.cc:419
uint64_t RegVal
Definition: types.hh:166
int flattenMiscIndex(int reg) const
Definition: isa.hh:184
void updateCPU(BaseCPU *cpu)
Definition: isa.cc:531
int flattenVecElemIndex(int reg) const
Definition: isa.hh:165
unsigned getVPENum(ThreadID tid) const
Definition: isa.cc:412
ThreadContext is the external interface to all thread state for anything outside of the CPU...
STL vector class.
Definition: stl.hh:37
Bitfield< 63 > val
Definition: misc.hh:769
std::vector< std::vector< RegVal > > miscRegFile_WriteMask
Definition: isa.hh:71
void setMiscRegNoEffect(int misc_reg, RegVal val, ThreadID tid=0)
Definition: isa.cc:446
void processCP0Event(BaseCPU *cpu, CP0EventType)
Process a CP0 event.
Definition: isa.cc:560
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:96
void startup(ThreadContext *tc)
Definition: isa.hh:135
int flattenFloatIndex(int reg) const
Definition: isa.hh:153
int flattenVecIndex(int reg) const
Definition: isa.hh:159
CP0EventType
Definition: isa.hh:118
RegVal filterCP0Write(int misc_reg, int reg_sel, RegVal val)
This method doesn&#39;t need to adjust the Control Register Offset since it has already been done in the ...
Definition: isa.cc:497
RegVal readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid=0)
Definition: isa.cc:433
static std::string miscRegNames[NumMiscRegs]
Definition: isa.hh:132
void clear(ThreadContext *tc)
Definition: isa.hh:75
void updateCP0ReadView(int misc_reg, ThreadID tid)
Definition: isa.hh:93
int flattenVecPredIndex(int reg) const
Definition: isa.hh:171
void scheduleCP0Update(BaseCPU *cpu, Cycles delay=Cycles(0))
Definition: isa.cc:517
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:225
ISA(Params *p)
Definition: isa.cc:90
bool cp0Updated
Definition: isa.hh:115
MipsISAParams Params
Definition: isa.hh:57
int flattenIntIndex(int reg) const
Definition: isa.hh:147
std::vector< std::vector< RegVal > > miscRegFile
Definition: isa.hh:70
uint8_t numThreads
Definition: isa.hh:61
RegId flattenRegId(const RegId &regId) const
Definition: isa.hh:144
uint8_t numVpes
Definition: isa.hh:62
std::vector< BankType > bankType
Definition: isa.hh:72
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
Definition: isa.hh:47
const int NumMiscRegs
Definition: registers.hh:280
void setRegMask(int misc_reg, RegVal val, ThreadID tid=0)
Definition: isa.cc:459
void configCP()
Definition: isa.cc:163
Bitfield< 0 > p
void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc, ThreadID tid=0)
Definition: isa.cc:474
ISA CP0
Definition: isa.hh:55
int flattenCCIndex(int reg) const
Definition: isa.hh:178

Generated on Fri Jul 3 2020 15:42:39 for gem5 by doxygen 1.8.13