gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
atomic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013, 2015, 2018 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  * Authors: Steve Reinhardt
41  */
42 
43 #ifndef __CPU_SIMPLE_ATOMIC_HH__
44 #define __CPU_SIMPLE_ATOMIC_HH__
45 
46 #include "cpu/simple/base.hh"
48 #include "mem/request.hh"
49 #include "params/AtomicSimpleCPU.hh"
50 #include "sim/probe/probe.hh"
51 
53 {
54  public:
55 
56  AtomicSimpleCPU(AtomicSimpleCPUParams *params);
57  virtual ~AtomicSimpleCPU();
58 
59  void init() override;
60 
61  protected:
62 
64 
65  const int width;
66  bool locked;
69 
70  // main simulation loop (one cycle)
71  void tick();
72 
91  bool isCpuDrained() const {
93 
94  return t_info.thread->microPC() == 0 &&
95  !locked &&
96  !t_info.stayAtPC;
97  }
98 
104  bool tryCompleteDrain();
105 
106  virtual Tick sendPacket(MasterPort &port, const PacketPtr &pkt);
107 
114  class AtomicCPUPort : public MasterPort
115  {
116 
117  public:
118 
119  AtomicCPUPort(const std::string &_name, BaseSimpleCPU* _cpu)
120  : MasterPort(_name, _cpu)
121  { }
122 
123  protected:
124 
126  {
127  panic("Atomic CPU doesn't expect recvTimingResp!\n");
128  return true;
129  }
130 
132  {
133  panic("Atomic CPU doesn't expect recvRetry!\n");
134  }
135 
136  };
137 
139  {
140 
141  public:
142  AtomicCPUDPort(const std::string &_name, BaseSimpleCPU* _cpu)
143  : AtomicCPUPort(_name, _cpu), cpu(_cpu)
144  {
145  cacheBlockMask = ~(cpu->cacheLineSize() - 1);
146  }
147 
148  bool isSnooping() const { return true; }
149 
151  protected:
153 
154  virtual Tick recvAtomicSnoop(PacketPtr pkt);
155  virtual void recvFunctionalSnoop(PacketPtr pkt);
156  };
157 
158 
161 
162 
167 
170 
173 
174  protected:
175 
177  Port &getDataPort() override { return dcachePort; }
178 
180  Port &getInstPort() override { return icachePort; }
181 
183  void threadSnoop(PacketPtr pkt, ThreadID sender);
184 
185  public:
186 
187  DrainState drain() override;
188  void drainResume() override;
189 
190  void switchOut() override;
191  void takeOverFrom(BaseCPU *oldCPU) override;
192 
193  void verifyMemoryMode() const override;
194 
195  void activateContext(ThreadID thread_num) override;
196  void suspendContext(ThreadID thread_num) override;
197 
214  bool genMemFragmentRequest(const RequestPtr& req, Addr frag_addr,
215  int size, Request::Flags flags,
216  const std::vector<bool>& byte_enable,
217  int& frag_size, int& size_left) const;
218 
219  Fault readMem(Addr addr, uint8_t *data, unsigned size,
220  Request::Flags flags,
221  const std::vector<bool>& byte_enable = std::vector<bool>())
222  override;
223 
224  Fault writeMem(uint8_t *data, unsigned size,
225  Addr addr, Request::Flags flags, uint64_t *res,
226  const std::vector<bool>& byte_enable = std::vector<bool>())
227  override;
228 
229  Fault amoMem(Addr addr, uint8_t* data, unsigned size,
230  Request::Flags flags, AtomicOpFunctorPtr amo_op) override;
231 
232  void regProbePoints() override;
233 
238  void printAddr(Addr a);
239 };
240 
241 #endif // __CPU_SIMPLE_ATOMIC_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:75
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
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:454
AtomicCPUPort icachePort
Definition: atomic.hh:159
Ports are used to interface objects to each other.
Definition: port.hh:60
Tick recvAtomicSnoop(PacketPtr pkt) override
Default implementations.
Definition: port.hh:224
DrainState
Object drain/handover states.
Definition: drain.hh:71
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: port.hh:231
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
Definition: request.hh:83
Bitfield< 8 > a
EventFunctionWrapper tickEvent
Definition: atomic.hh:63
ip6_addr_t addr
Definition: inet.hh:335
std::unique_ptr< AtomicOpFunctor > AtomicOpFunctorPtr
Definition: amo.hh:230
Port & getInstPort() override
Return a reference to the instruction port.
Definition: atomic.hh:180
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: atomic.hh:131
RequestPtr data_write_req
Definition: atomic.hh:165
An AtomicCPUPort overrides the default behaviour of the recvAtomicSnoop and ignores the packet instea...
Definition: atomic.hh:114
ThreadID curThread
Definition: base.hh:87
Port & getDataPort() override
Return a reference to the data port.
Definition: atomic.hh:177
Tick dcache_latency
Definition: atomic.hh:169
void drainResume() override
Resume execution after a successful drain.
Definition: atomic.cc:147
bool dcache_access
Definition: atomic.hh:168
bool isSnooping() const
Determine if this master port is snooping or not.
Definition: atomic.hh:148
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:338
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: atomic.hh:125
AtomicCPUDPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:142
const bool simulate_inst_stalls
Definition: atomic.hh:68
uint64_t Tick
Tick count type.
Definition: types.hh:63
void tick()
Definition: atomic.cc:633
virtual Tick sendPacket(MasterPort &port, const PacketPtr &pkt)
Definition: atomic.cc:278
SimpleThread * thread
Definition: exec_context.hh:68
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: atomic.cc:68
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
Definition: port.cc:99
virtual ~AtomicSimpleCPU()
Definition: atomic.cc:99
ProbePointArg< std::pair< SimpleThread *, const StaticInstPtr > > * ppCommit
Probe Points.
Definition: atomic.hh:172
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
DrainState drain() override
Notify an object that it needs to drain its state.
Definition: atomic.cc:107
Fault amoMem(Addr addr, uint8_t *data, unsigned size, Request::Flags flags, AtomicOpFunctorPtr amo_op) override
Definition: atomic.cc:568
void activateContext(ThreadID thread_num) override
Notify the CPU that the indicated context is now active.
Definition: atomic.cc:226
void switchOut() override
Prepare for another CPU to take over execution.
Definition: atomic.cc:197
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:227
void threadSnoop(PacketPtr pkt, ThreadID sender)
Perform snoop for other cpu-local thread contexts.
Definition: atomic.cc:129
ProbePointArg generates a point for the class of Arg.
RequestPtr data_read_req
Definition: atomic.hh:164
bool isCpuDrained() const
Check if a system is in a drained state.
Definition: atomic.hh:91
void takeOverFrom(Port *old)
A utility function to make it easier to swap out ports.
Definition: port.hh:132
AtomicSimpleCPU(AtomicSimpleCPUParams *params)
Definition: atomic.cc:79
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:372
std::vector< SimpleExecContext * > threadInfo
Definition: base.hh:102
RequestPtr ifetch_req
Definition: atomic.hh:163
MicroPC microPC() const override
const bool simulate_data_stalls
Definition: atomic.hh:67
bool tryCompleteDrain()
Try to complete a drain request.
Definition: atomic.cc:180
AtomicCPUPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:119
void verifyMemoryMode() const override
Verify that the system is in a memory mode supported by the CPU.
Definition: atomic.cc:217
RequestPtr data_amo_req
Definition: atomic.hh:166
void regProbePoints() override
Register probe points for this object.
Definition: atomic.cc:772
AtomicCPUDPort dcachePort
Definition: atomic.hh:160
const char data[]
std::shared_ptr< FaultBase > Fault
Definition: types.hh:240
const Params * params() const
Definition: base.hh:311
void suspendContext(ThreadID thread_num) override
Notify the CPU that the indicated context is now suspended.
Definition: atomic.cc:252
const int width
Definition: atomic.hh:65

Generated on Fri Feb 28 2020 16:27:00 for gem5 by doxygen 1.8.13