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  * Copyright (c) 2009 The University of Edinburgh
4  * Copyright (c) 2014 Sven Karlsson
5  * Copyright (c) 2016 RISC-V Foundation
6  * Copyright (c) 2016 The University of Virginia
7  * Copyright (c) 2020 Barkhausen Institut
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are
12  * met: redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer;
14  * redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in the
16  * documentation and/or other materials provided with the distribution;
17  * neither the name of the copyright holders nor the names of its
18  * contributors may be used to endorse or promote products derived from
19  * this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __ARCH_RISCV_ISA_HH__
35 #define __ARCH_RISCV_ISA_HH__
36 
37 #include <map>
38 #include <string>
39 
40 #include "arch/generic/isa.hh"
41 #include "arch/riscv/registers.hh"
42 #include "arch/riscv/types.hh"
43 #include "base/bitfield.hh"
44 #include "base/logging.hh"
45 #include "cpu/reg_class.hh"
46 #include "sim/sim_object.hh"
47 
48 struct RiscvISAParams;
49 class ThreadContext;
50 class Checkpoint;
51 class EventManager;
52 
53 namespace RiscvISA
54 {
55 
57 {
58  PRV_U = 0,
59  PRV_S = 1,
60  PRV_M = 3
61 };
62 
64 {
65  OFF = 0,
66  INITIAL = 1,
67  CLEAN = 2,
68  DIRTY = 3,
69 };
70 
71 class ISA : public BaseISA
72 {
73  protected:
75 
76  bool hpmCounterEnabled(int counter) const;
77 
78  public:
79  typedef RiscvISAParams Params;
80 
81  void clear(ThreadContext *tc) { clear(); }
82 
83  protected:
84  void clear();
85 
86  public:
87  RegVal readMiscRegNoEffect(int misc_reg) const;
88  RegVal readMiscReg(int misc_reg, ThreadContext *tc);
89  void setMiscRegNoEffect(int misc_reg, RegVal val);
90  void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc);
91 
92  RegId flattenRegId(const RegId &regId) const { return regId; }
93  int flattenIntIndex(int reg) const { return reg; }
94  int flattenFloatIndex(int reg) const { return reg; }
95  int flattenVecIndex(int reg) const { return reg; }
96  int flattenVecElemIndex(int reg) const { return reg; }
97  int flattenVecPredIndex(int reg) const { return reg; }
98  int flattenCCIndex(int reg) const { return reg; }
99  int flattenMiscIndex(int reg) const { return reg; }
100 
101  void startup(ThreadContext *tc) {}
102 
103  void serialize(CheckpointOut &cp) const;
104  void unserialize(CheckpointIn &cp);
105 
107  using BaseISA::startup;
108 
109  const Params *params() const;
110 
111  ISA(Params *p);
112 };
113 
114 } // namespace RiscvISA
115 
116 #endif // __ARCH_RISCV_ISA_HH__
int flattenFloatIndex(int reg) const
Definition: isa.hh:94
Bitfield< 5, 3 > reg
Definition: types.hh:87
bool hpmCounterEnabled(int counter) const
Definition: isa.cc:210
FPUStatus
Definition: isa.hh:63
int flattenCCIndex(int reg) const
Definition: isa.hh:98
RegVal readMiscReg(int misc_reg, ThreadContext *tc)
Definition: isa.cc:246
ISA(Params *p)
Definition: isa.cc:179
void setMiscReg(int misc_reg, RegVal val, ThreadContext *tc)
Definition: isa.cc:333
uint64_t RegVal
Definition: types.hh:166
Definition: cprintf.cc:40
ThreadContext is the external interface to all thread state for anything outside of the CPU...
const Params * params() const
Definition: isa.cc:186
Bitfield< 0 > p
int flattenMiscIndex(int reg) const
Definition: isa.hh:99
Bitfield< 63 > val
Definition: misc.hh:769
int flattenVecPredIndex(int reg) const
Definition: isa.hh:97
virtual void startup()
startup() is the final initialization call before simulation.
Definition: sim_object.cc:96
PrivilegeMode
Definition: isa.hh:56
int flattenIntIndex(int reg) const
Definition: isa.hh:93
RegVal readMiscRegNoEffect(int misc_reg) const
Definition: isa.cc:233
void clear(ThreadContext *tc)
Definition: isa.hh:81
void startup(ThreadContext *tc)
Definition: isa.hh:101
int flattenVecElemIndex(int reg) const
Definition: isa.hh:96
void unserialize(CheckpointIn &cp)
Unserialize an object.
Definition: isa.cc:407
std::ostream CheckpointOut
Definition: serialize.hh:63
int flattenVecIndex(int reg) const
Definition: isa.hh:95
void serialize(CheckpointOut &cp) const
Serialize an object.
Definition: isa.cc:400
RiscvISAParams Params
Definition: isa.hh:79
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
Definition: isa.hh:47
void clear()
Definition: isa.cc:191
std::vector< RegVal > miscRegFile
Definition: isa.hh:74
void setMiscRegNoEffect(int misc_reg, RegVal val)
Definition: isa.cc:321
RegId flattenRegId(const RegId &regId) const
Definition: isa.hh:92

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