gem5  v22.1.0.0
atomic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013, 2015, 2018, 2020-2021 ARM Limited
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2002-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __CPU_SIMPLE_ATOMIC_HH__
42 #define __CPU_SIMPLE_ATOMIC_HH__
43 
44 #include "cpu/simple/base.hh"
46 #include "mem/request.hh"
47 #include "params/BaseAtomicSimpleCPU.hh"
48 #include "sim/probe/probe.hh"
49 
50 namespace gem5
51 {
52 
54 {
55  public:
56 
57  AtomicSimpleCPU(const BaseAtomicSimpleCPUParams &params);
58  virtual ~AtomicSimpleCPU();
59 
60  void init() override;
61 
62  protected:
64 
65  const int width;
66  bool locked;
69 
70  // main simulation loop (one cycle)
71  void tick();
72 
91  bool
92  isCpuDrained() const
93  {
95  return t_info.thread->pcState().microPC() == 0 &&
96  !locked && !t_info.stayAtPC;
97  }
98 
104  bool tryCompleteDrain();
105 
106  virtual Tick sendPacket(RequestPort &port, const PacketPtr &pkt);
107  virtual Tick fetchInstMem();
108 
115  class AtomicCPUPort : public RequestPort
116  {
117 
118  public:
119 
120  AtomicCPUPort(const std::string &_name, BaseSimpleCPU* _cpu)
121  : RequestPort(_name, _cpu)
122  { }
123 
124  protected:
125 
126  bool
128  {
129  panic("Atomic CPU doesn't expect recvTimingResp!\n");
130  }
131 
132  void
134  {
135  panic("Atomic CPU doesn't expect recvRetry!\n");
136  }
137 
138  };
139 
141  {
142 
143  public:
144  AtomicCPUDPort(const std::string &_name, BaseSimpleCPU *_cpu)
145  : AtomicCPUPort(_name, _cpu), cpu(_cpu)
146  {
147  cacheBlockMask = ~(cpu->cacheLineSize() - 1);
148  }
149 
150  bool isSnooping() const { return true; }
151 
153  protected:
155 
156  virtual Tick recvAtomicSnoop(PacketPtr pkt);
157  virtual void recvFunctionalSnoop(PacketPtr pkt);
158  };
159 
160 
163 
164 
169 
172 
175 
176  protected:
177 
179  Port &getDataPort() override { return dcachePort; }
180 
182  Port &getInstPort() override { return icachePort; }
183 
185  void threadSnoop(PacketPtr pkt, ThreadID sender);
186 
187  public:
188 
189  DrainState drain() override;
190  void drainResume() override;
191 
192  void switchOut() override;
193  void takeOverFrom(BaseCPU *old_cpu) override;
194 
195  void verifyMemoryMode() const override;
196 
197  void activateContext(ThreadID thread_num) override;
198  void suspendContext(ThreadID thread_num) override;
199 
216  bool genMemFragmentRequest(const RequestPtr &req, Addr frag_addr,
217  int size, Request::Flags flags,
218  const std::vector<bool> &byte_enable,
219  int &frag_size, int &size_left) const;
220 
221  Fault readMem(Addr addr, uint8_t *data, unsigned size,
223  const std::vector<bool> &byte_enable=std::vector<bool>())
224  override;
225 
226  Fault
228  {
229  panic("initiateMemMgmtCmd() is for timing accesses, and "
230  "should never be called on AtomicSimpleCPU.\n");
231  }
232 
233  void
234  htmSendAbortSignal(ThreadID tid, uint64_t htm_uid,
235  HtmFailureFaultCause cause) override
236  {
237  panic("htmSendAbortSignal() is for timing accesses, and should "
238  "never be called on AtomicSimpleCPU.");
239  }
240 
241  Fault writeMem(uint8_t *data, unsigned size,
242  Addr addr, Request::Flags flags, uint64_t *res,
243  const std::vector<bool> &byte_enable=std::vector<bool>())
244  override;
245 
246  Fault amoMem(Addr addr, uint8_t *data, unsigned size,
247  Request::Flags flags, AtomicOpFunctorPtr amo_op) override;
248 
249  void regProbePoints() override;
250 
255  void printAddr(Addr a);
256 };
257 
258 } // namespace gem5
259 
260 #endif // __CPU_SIMPLE_ATOMIC_HH__
const char data[]
bool isSnooping() const
Determine if this request port is snooping or not.
Definition: atomic.hh:150
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the peer.
Definition: atomic.cc:309
virtual Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from our peer.
Definition: atomic.cc:278
AtomicCPUDPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:144
An AtomicCPUPort overrides the default behaviour of the recvAtomicSnoop and ignores the packet instea...
Definition: atomic.hh:116
AtomicCPUPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:120
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: atomic.hh:127
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: atomic.hh:133
void suspendContext(ThreadID thread_num) override
Notify the CPU that the indicated context is now suspended.
Definition: atomic.cc:246
void takeOverFrom(BaseCPU *old_cpu) override
Load the state of a CPU from the previous CPU object, invoked on all new CPUs that are about to be sw...
Definition: atomic.cc:203
const bool simulate_data_stalls
Definition: atomic.hh:67
void drainResume() override
Resume execution after a successful drain.
Definition: atomic.cc:142
void switchOut() override
Prepare for another CPU to take over execution.
Definition: atomic.cc:192
Port & getInstPort() override
Return a reference to the instruction port.
Definition: atomic.hh:182
bool genMemFragmentRequest(const RequestPtr &req, Addr frag_addr, int size, Request::Flags flags, const std::vector< bool > &byte_enable, int &frag_size, int &size_left) const
Helper function used to set up the request for a single fragment of a memory access.
Definition: atomic.cc:334
bool isCpuDrained() const
Check if a system is in a drained state.
Definition: atomic.hh:92
void regProbePoints() override
Register probe points for this object.
Definition: atomic.cc:763
void printAddr(Addr a)
Print state of address in memory system via PrintReq (for debugging).
Definition: atomic.cc:772
virtual Tick fetchInstMem()
Definition: atomic.cc:745
void verifyMemoryMode() const override
Verify that the system is in a memory mode supported by the CPU.
Definition: atomic.cc:212
AtomicCPUDPort dcachePort
Definition: atomic.hh:162
Fault writeMem(uint8_t *data, unsigned size, Addr addr, Request::Flags flags, uint64_t *res, const std::vector< bool > &byte_enable=std::vector< bool >()) override
Definition: atomic.cc:440
ProbePointArg< std::pair< SimpleThread *, const StaticInstPtr > > * ppCommit
Probe Points.
Definition: atomic.hh:174
AtomicSimpleCPU(const BaseAtomicSimpleCPUParams &params)
Definition: atomic.cc:74
RequestPtr data_read_req
Definition: atomic.hh:166
Fault readMem(Addr addr, uint8_t *data, unsigned size, Request::Flags flags, const std::vector< bool > &byte_enable=std::vector< bool >()) override
Definition: atomic.cc:362
Fault amoMem(Addr addr, uint8_t *data, unsigned size, Request::Flags flags, AtomicOpFunctorPtr amo_op) override
Definition: atomic.cc:549
RequestPtr ifetch_req
Definition: atomic.hh:165
Fault initiateMemMgmtCmd(Request::Flags flags) override
Memory management commands such as hardware transactional memory commands or TLB invalidation command...
Definition: atomic.hh:227
const int width
Definition: atomic.hh:65
const bool simulate_inst_stalls
Definition: atomic.hh:68
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition: atomic.cc:102
void threadSnoop(PacketPtr pkt, ThreadID sender)
Perform snoop for other cpu-local thread contexts.
Definition: atomic.cc:124
Port & getDataPort() override
Return a reference to the data port.
Definition: atomic.hh:179
RequestPtr data_amo_req
Definition: atomic.hh:168
bool tryCompleteDrain()
Try to complete a drain request.
Definition: atomic.cc:175
AtomicCPUPort icachePort
Definition: atomic.hh:161
virtual Tick sendPacket(RequestPort &port, const PacketPtr &pkt)
Definition: atomic.cc:272
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: atomic.cc:63
RequestPtr data_write_req
Definition: atomic.hh:167
void activateContext(ThreadID thread_num) override
Notify the CPU that the indicated context is now active.
Definition: atomic.cc:220
void htmSendAbortSignal(ThreadID tid, uint64_t htm_uid, HtmFailureFaultCause cause) override
This function is used to instruct the memory subsystem that a transaction should be aborted and the s...
Definition: atomic.hh:234
virtual ~AtomicSimpleCPU()
Definition: atomic.cc:94
EventFunctionWrapper tickEvent
Definition: atomic.hh:63
unsigned int cacheLineSize() const
Get the cache line size of the system.
Definition: base.hh:380
ThreadID curThread
Definition: base.hh:86
std::vector< SimpleExecContext * > threadInfo
Definition: base.hh:100
const std::string _name
Definition: named.hh:41
MicroPC microPC() const
Returns the current micropc.
Definition: pcstate.hh:118
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:294
Ports are used to interface objects to each other.
Definition: port.hh:62
ProbePointArg generates a point for the class of Arg.
Definition: probe.hh:264
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:79
SimpleThread * thread
Definition: exec_context.hh:62
const PCStateBase & pcState() const override
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:242
DrainState
Object drain/handover states.
Definition: drain.hh:75
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:178
const Params & params() const
Definition: sim_object.hh:176
uint8_t flags
Definition: helpers.cc:66
Bitfield< 8 > a
Definition: misc_types.hh:66
Bitfield< 3 > addr
Definition: types.hh:84
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
std::shared_ptr< FaultBase > Fault
Definition: types.hh:248
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:235
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
uint64_t Tick
Tick count type.
Definition: types.hh:58
HtmFailureFaultCause
Definition: htm.hh:48
Declaration of a request, the overall memory request consisting of the parts of the request that are ...

Generated on Wed Dec 21 2022 10:22:31 for gem5 by doxygen 1.9.1