gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
atomic.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013,2015 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  private:
62 
63  struct TickEvent : public Event
64  {
66 
68  void process();
69  const char *description() const;
70  };
71 
73 
74  const int width;
75  bool locked;
78 
79  // main simulation loop (one cycle)
80  void tick();
81 
100  bool isDrained() {
102 
103  return t_info.thread->microPC() == 0 &&
104  !locked &&
105  !t_info.stayAtPC;
106  }
107 
113  bool tryCompleteDrain();
114 
121  class AtomicCPUPort : public MasterPort
122  {
123 
124  public:
125 
126  AtomicCPUPort(const std::string &_name, BaseSimpleCPU* _cpu)
127  : MasterPort(_name, _cpu)
128  { }
129 
130  protected:
131 
133  {
134  panic("Atomic CPU doesn't expect recvTimingResp!\n");
135  return true;
136  }
137 
139  {
140  panic("Atomic CPU doesn't expect recvRetry!\n");
141  }
142 
143  };
144 
146  {
147 
148  public:
149 
150  AtomicCPUDPort(const std::string &_name, BaseSimpleCPU* _cpu)
151  : AtomicCPUPort(_name, _cpu), cpu(_cpu)
152  {
153  cacheBlockMask = ~(cpu->cacheLineSize() - 1);
154  }
155 
156  bool isSnooping() const { return true; }
157 
159  protected:
161 
162  virtual Tick recvAtomicSnoop(PacketPtr pkt);
163  virtual void recvFunctionalSnoop(PacketPtr pkt);
164  };
165 
166 
169 
170  bool fastmem;
174 
177 
180 
181  protected:
182 
184  MasterPort &getDataPort() override { return dcachePort; }
185 
187  MasterPort &getInstPort() override { return icachePort; }
188 
190  void threadSnoop(PacketPtr pkt, ThreadID sender);
191 
192  public:
193 
194  DrainState drain() override;
195  void drainResume() override;
196 
197  void switchOut() override;
198  void takeOverFrom(BaseCPU *oldCPU) override;
199 
200  void verifyMemoryMode() const override;
201 
202  void activateContext(ThreadID thread_num) override;
203  void suspendContext(ThreadID thread_num) override;
204 
205  Fault readMem(Addr addr, uint8_t *data, unsigned size,
206  Request::Flags flags) override;
207 
208  Fault initiateMemRead(Addr addr, unsigned size,
209  Request::Flags flags) override;
210 
211  Fault writeMem(uint8_t *data, unsigned size,
212  Addr addr, Request::Flags flags, uint64_t *res) override;
213 
214  void regProbePoints() override;
215 
220  void printAddr(Addr a);
221 };
222 
223 #endif // __CPU_SIMPLE_ATOMIC_HH__
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
Definition: port.hh:167
AtomicCPUPort icachePort
Definition: atomic.hh:167
virtual void recvFunctionalSnoop(PacketPtr pkt)
Receive a functional snoop request packet from the slave port.
Definition: atomic.cc:314
Fault readMem(Addr addr, uint8_t *data, unsigned size, Request::Flags flags) override
Definition: atomic.cc:338
Fault initiateMemRead(Addr addr, unsigned size, Request::Flags flags) override
Definition: atomic.cc:426
DrainState
Object drain/handover states.
Definition: drain.hh:71
#define panic(...)
Definition: misc.hh:153
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
Bitfield< 8 > a
Definition: miscregs.hh:1377
ip6_addr_t addr
Definition: inet.hh:335
void recvReqRetry()
Called by the slave port if sendTimingReq was called on this master port (causing recvTimingReq to be...
Definition: atomic.hh:138
Request data_read_req
Definition: atomic.hh:172
An AtomicCPUPort overrides the default behaviour of the recvAtomicSnoop and ignores the packet instea...
Definition: atomic.hh:121
ThreadID curThread
Definition: base.hh:87
Tick dcache_latency
Definition: atomic.hh:176
void drainResume() override
Definition: atomic.cc:154
const char data[]
Definition: circlebuf.cc:43
MicroPC microPC()
bool isDrained()
Check if a system is in a drained state.
Definition: atomic.hh:100
const char * description() const
Return a C string describing the event.
Definition: atomic.cc:80
bool dcache_access
Definition: atomic.hh:175
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the slave port.
Definition: atomic.hh:132
AtomicCPUDPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:150
const bool simulate_inst_stalls
Definition: atomic.hh:77
TickEvent(AtomicSimpleCPU *c)
Definition: atomic.cc:67
uint64_t Tick
Tick count type.
Definition: types.hh:63
void printAddr(Addr a)
Print state of address in memory system via PrintReq (for debugging).
Definition: atomic.cc:700
void takeOverFrom(BaseCPU *oldCPU) override
Definition: atomic.cc:212
void tick()
Definition: atomic.cc:551
SimpleThread * thread
Definition: exec_context.hh:69
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
void init() override
Definition: atomic.cc:86
virtual ~AtomicSimpleCPU()
Definition: atomic.cc:109
ProbePointArg< std::pair< SimpleThread *, const StaticInstPtr > > * ppCommit
Probe Points.
Definition: atomic.hh:179
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:245
DrainState drain() override
Definition: atomic.cc:117
Request ifetch_req
Definition: atomic.hh:171
void activateContext(ThreadID thread_num) override
Definition: atomic.cc:230
void switchOut() override
Definition: atomic.cc:201
bool isSnooping() const
Determine if this master port is snooping or not.
Definition: atomic.hh:156
int16_t ThreadID
Thread index/ID type.
Definition: types.hh:171
void threadSnoop(PacketPtr pkt, ThreadID sender)
Perform snoop for other cpu-local thread contexts.
Definition: atomic.cc:136
ProbePointArg generates a point for the class of Arg.
int size()
Definition: pagetable.hh:146
Bitfield< 29 > c
Definition: miscregs.hh:1365
Definition: eventq.hh:185
Fault writeMem(uint8_t *data, unsigned size, Addr addr, Request::Flags flags, uint64_t *res) override
Definition: atomic.cc:434
AtomicSimpleCPU(AtomicSimpleCPUParams *params)
Definition: atomic.cc:96
std::vector< SimpleExecContext * > threadInfo
Definition: base.hh:102
const bool simulate_data_stalls
Definition: atomic.hh:76
AtomicSimpleCPU * cpu
Definition: atomic.hh:65
bool tryCompleteDrain()
Try to complete a drain request.
Definition: atomic.cc:184
AtomicCPUPort(const std::string &_name, BaseSimpleCPU *_cpu)
Definition: atomic.hh:126
MasterPort & getInstPort() override
Return a reference to the instruction port.
Definition: atomic.hh:187
void verifyMemoryMode() const override
Definition: atomic.cc:221
void regProbePoints() override
Definition: atomic.cc:691
MasterPort & getDataPort() override
Return a reference to the data port.
Definition: atomic.hh:184
AtomicCPUDPort dcachePort
Definition: atomic.hh:168
Request data_write_req
Definition: atomic.hh:173
std::shared_ptr< FaultBase > Fault
Definition: types.hh:184
void suspendContext(ThreadID thread_num) override
Definition: atomic.cc:257
const int width
Definition: atomic.hh:74
virtual Tick recvAtomicSnoop(PacketPtr pkt)
Receive an atomic snoop request packet from the slave port.
Definition: atomic.cc:284
TickEvent tickEvent
Definition: atomic.hh:72

Generated on Fri Jun 9 2017 13:03:44 for gem5 by doxygen 1.8.6