gem5 v23.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 * 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 <unordered_map>
38#include <vector>
39
40#include "arch/generic/isa.hh"
41#include "arch/riscv/pcstate.hh"
43#include "arch/riscv/types.hh"
44#include "base/types.hh"
45
46namespace gem5
47{
48
49struct RiscvISAParams;
50class Checkpoint;
51
52namespace RiscvISA
53{
54
56{
57 PRV_U = 0,
58 PRV_S = 1,
59 PRV_M = 3
60};
61
63{
64 OFF = 0,
66 CLEAN = 2,
67 DIRTY = 3,
68};
69
70class ISA : public BaseISA
71{
72 protected:
76
77 bool hpmCounterEnabled(int counter) const;
78
79 // Load reserve - store conditional monitor
80 const int WARN_FAILURE = 10000;
82 std::unordered_map<int, Addr> load_reservation_addrs;
83
84 public:
85 using Params = RiscvISAParams;
86
87 void clear() override;
88
90 newPCState(Addr new_inst_addr=0) const override
91 {
92 return new PCState(new_inst_addr, rv_type);
93 }
94
95 void
97 {
98 Addr& load_reservation_addr = load_reservation_addrs[cid];
99 load_reservation_addr = INVALID_RESERVATION_ADDR;
100 }
101
102 public:
103 RegVal readMiscRegNoEffect(RegIndex idx) const override;
104 RegVal readMiscReg(RegIndex idx) override;
105 void setMiscRegNoEffect(RegIndex idx, RegVal val) override;
106 void setMiscReg(RegIndex idx, RegVal val) override;
107
108 // Derived class could provide knowledge of non-standard CSRs to other
109 // components by overriding the two getCSRxxxMap here and properly
110 // implementing the corresponding read/set function. However, customized
111 // maps should always be compatible with the standard maps.
112 virtual const std::unordered_map<int, CSRMetadata>&
114 {
115 return CSRData;
116 }
117 virtual const std::unordered_map<int, RegVal>&
119 {
120 return CSRMasks[rv_type];
121 }
122
123 bool alignmentCheckEnabled() const { return checkAlignment; }
124
125 bool inUserMode() const override;
126 void copyRegsFrom(ThreadContext *src) override;
127
128 void serialize(CheckpointOut &cp) const override;
129 void unserialize(CheckpointIn &cp) override;
130
131 ISA(const Params &p);
132
133 void handleLockedRead(const RequestPtr &req) override;
134
135 bool handleLockedWrite(const RequestPtr &req,
136 Addr cacheBlockMask) override;
137
138 void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override;
139
140 void globalClearExclusive() override;
141
142 void resetThread() override;
143
144 RiscvType rvType() const { return rv_type; }
145};
146
147} // namespace RiscvISA
148} // namespace gem5
149
150std::ostream &operator<<(std::ostream &os, gem5::RiscvISA::PrivilegeMode pm);
151
152#endif // __ARCH_RISCV_ISA_HH__
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,...
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition packet.hh:295
virtual const std::unordered_map< int, CSRMetadata > & getCSRDataMap() const
Definition isa.hh:113
void setMiscReg(RegIndex idx, RegVal val) override
Definition isa.cc:521
void handleLockedSnoop(PacketPtr pkt, Addr cacheBlockMask) override
Definition isa.cc:676
RiscvType rv_type
Definition isa.hh:73
virtual const std::unordered_map< int, RegVal > & getCSRMaskMap() const
Definition isa.hh:118
RegVal readMiscReg(RegIndex idx) override
Definition isa.cc:366
void globalClearExclusive() override
Definition isa.cc:748
const int WARN_FAILURE
Definition isa.hh:80
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition isa.cc:662
void resetThread() override
Definition isa.cc:756
bool alignmentCheckEnabled() const
Definition isa.hh:123
void setMiscRegNoEffect(RegIndex idx, RegVal val) override
Definition isa.cc:511
PCStateBase * newPCState(Addr new_inst_addr=0) const override
Definition isa.hh:90
RegVal readMiscRegNoEffect(RegIndex idx) const override
Definition isa.cc:356
bool hpmCounterEnabled(int counter) const
Definition isa.cc:327
void copyRegsFrom(ThreadContext *src) override
Definition isa.cc:268
RiscvType rvType() const
Definition isa.hh:144
bool handleLockedWrite(const RequestPtr &req, Addr cacheBlockMask) override
Definition isa.cc:700
void clearLoadReservation(ContextID cid) override
Definition isa.hh:96
void clear() override
Definition isa.cc:282
std::vector< RegVal > miscRegFile
Definition isa.hh:74
bool inUserMode() const override
Definition isa.cc:262
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition isa.cc:669
const Addr INVALID_RESERVATION_ADDR
Definition isa.hh:81
std::unordered_map< int, Addr > load_reservation_addrs
Definition isa.hh:82
bool checkAlignment
Definition isa.hh:75
RiscvISAParams Params
Definition isa.hh:85
void handleLockedRead(const RequestPtr &req) override
Definition isa.cc:690
ThreadContext is the external interface to all thread state for anything outside of the CPU.
STL vector class.
Definition stl.hh:37
Bitfield< 0 > p
enums::RiscvType RiscvType
Definition pcstate.hh:53
const std::unordered_map< int, CSRMetadata > CSRData
Definition misc.hh:494
const std::unordered_map< int, RegVal > CSRMasks[enums::Num_RiscvType]
Definition misc.hh:925
Bitfield< 63 > val
Definition misc.hh:776
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< Request > RequestPtr
Definition request.hh:94
uint16_t RegIndex
Definition types.hh:176
std::ostream CheckpointOut
Definition serialize.hh:66
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
std::ostream & operator<<(std::ostream &os, const ArmSemihosting::InPlaceArg &ipa)
int ContextID
Globally unique thread context ID.
Definition types.hh:239
uint64_t RegVal
Definition types.hh:173

Generated on Mon Jul 10 2023 15:31:58 for gem5 by doxygen 1.9.7