gem5  v22.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
translation.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011 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  * Copyright (c) 2009 The University of Edinburgh
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
42 #ifndef __CPU_TRANSLATION_HH__
43 #define __CPU_TRANSLATION_HH__
44 
45 #include "arch/generic/mmu.hh"
46 #include "arch/generic/tlb.hh"
47 #include "sim/faults.hh"
48 
49 namespace gem5
50 {
51 
63 {
64  protected:
67 
68  public:
69  bool delay;
70  bool isSplit;
74  uint8_t *data;
75  uint64_t *res;
77 
82  WholeTranslationState(const RequestPtr &_req, uint8_t *_data,
83  uint64_t *_res, BaseMMU::Mode _mode)
84  : outstanding(1), delay(false), isSplit(false), mainReq(_req),
85  sreqLow(NULL), sreqHigh(NULL), data(_data), res(_res), mode(_mode)
86  {
87  faults[0] = faults[1] = NoFault;
88  assert(mode == BaseMMU::Read || mode == BaseMMU::Write);
89  }
90 
96  WholeTranslationState(const RequestPtr &_req, const RequestPtr &_sreqLow,
97  const RequestPtr &_sreqHigh, uint8_t *_data,
98  uint64_t *_res, BaseMMU::Mode _mode)
99  : outstanding(2), delay(false), isSplit(true), mainReq(_req),
100  sreqLow(_sreqLow), sreqHigh(_sreqHigh), data(_data), res(_res),
101  mode(_mode)
102  {
103  faults[0] = faults[1] = NoFault;
104  assert(mode == BaseMMU::Read || mode == BaseMMU::Write);
105  }
106 
114  bool
115  finish(const Fault &fault, int index)
116  {
117  assert(outstanding);
118  faults[index] = fault;
119  outstanding--;
120  if (isSplit && outstanding == 0) {
121 
122  // For ease later, we copy some state to the main request.
123  if (faults[0] == NoFault) {
124  mainReq->setPaddr(sreqLow->getPaddr());
125  }
126  mainReq->setFlags(sreqLow->getFlags());
127  mainReq->setFlags(sreqHigh->getFlags());
128  }
129  return outstanding == 0;
130  }
131 
136  Fault
137  getFault() const
138  {
139  if (!isSplit)
140  return faults[0];
141  else if (faults[0] != NoFault)
142  return faults[0];
143  else if (faults[1] != NoFault)
144  return faults[1];
145  else
146  return NoFault;
147  }
148 
150  void
152  {
153  faults[0] = faults[1] = NoFault;
154  }
155 
161  bool
163  {
164  return mainReq->isStrictlyOrdered();
165  }
166 
172  bool
173  isPrefetch() const
174  {
175  return mainReq->isPrefetch();
176  }
177 
179  Addr
180  getPaddr() const
181  {
182  return mainReq->getPaddr();
183  }
184 
190  unsigned
192  {
193  return mainReq->getFlags();
194  }
195 
197  void
199  {
200  mainReq.reset();
201  if (isSplit) {
202  sreqLow.reset();
203  sreqHigh.reset();
204  }
205  }
206 };
207 
208 
218 template <class ExecContextPtr>
220 {
221  protected:
222  ExecContextPtr xc;
224  int index;
225 
226  public:
227  DataTranslation(ExecContextPtr _xc, WholeTranslationState* _state)
228  : xc(_xc), state(_state), index(0)
229  {
230  }
231 
232  DataTranslation(ExecContextPtr _xc, WholeTranslationState* _state,
233  int _index)
234  : xc(_xc), state(_state), index(_index)
235  {
236  }
237 
242  void
244  {
245  state->delay = true;
246  }
247 
252  void
253  finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc,
255  {
256  assert(state);
257  assert(mode == state->mode);
258  if (state->finish(fault, index)) {
259  if (state->getFault() == NoFault) {
260  // Don't access the request if faulted (due to squash)
261  req->setTranslateLatency();
262  }
263  xc->finishTranslation(state);
264  }
265  delete this;
266  }
267 
268  bool
269  squashed() const
270  {
271  return xc->isSquashed();
272  }
273 };
274 
275 } // namespace gem5
276 
277 #endif // __CPU_TRANSLATION_HH__
gem5::BaseMMU::Read
@ Read
Definition: mmu.hh:56
gem5::NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:253
gem5::WholeTranslationState::isPrefetch
bool isPrefetch() const
Check if this request is a prefetch.
Definition: translation.hh:173
gem5::WholeTranslationState::faults
Fault faults[2]
Definition: translation.hh:66
gem5::WholeTranslationState::setNoFault
void setNoFault()
Remove all faults from the translation.
Definition: translation.hh:151
gem5::WholeTranslationState::WholeTranslationState
WholeTranslationState(const RequestPtr &_req, uint8_t *_data, uint64_t *_res, BaseMMU::Mode _mode)
Single translation state.
Definition: translation.hh:82
gem5::MipsISA::index
Bitfield< 30, 0 > index
Definition: pra_constants.hh:47
gem5::BaseMMU::Mode
Mode
Definition: mmu.hh:56
gem5::WholeTranslationState::data
uint8_t * data
Definition: translation.hh:74
gem5::BaseMMU::Write
@ Write
Definition: mmu.hh:56
tlb.hh
gem5::DataTranslation::state
WholeTranslationState * state
Definition: translation.hh:223
gem5::WholeTranslationState::WholeTranslationState
WholeTranslationState(const RequestPtr &_req, const RequestPtr &_sreqLow, const RequestPtr &_sreqHigh, uint8_t *_data, uint64_t *_res, BaseMMU::Mode _mode)
Split translation state.
Definition: translation.hh:96
gem5::DataTranslation::squashed
bool squashed() const
This function is used by the page table walker to determine if it should translate the a pending requ...
Definition: translation.hh:269
gem5::DataTranslation::markDelayed
void markDelayed()
Signal the translation state that the translation has been delayed due to a hw page table walk.
Definition: translation.hh:243
gem5::WholeTranslationState::finish
bool finish(const Fault &fault, int index)
Finish part of a translation.
Definition: translation.hh:115
faults.hh
gem5::WholeTranslationState::deleteReqs
void deleteReqs()
Delete all requests that make up this translation.
Definition: translation.hh:198
gem5::WholeTranslationState::delay
bool delay
Definition: translation.hh:69
gem5::DataTranslation::finish
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode)
Finish this part of the translation and indicate that the whole translation is complete if the state ...
Definition: translation.hh:253
gem5::WholeTranslationState::res
uint64_t * res
Definition: translation.hh:75
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:248
gem5::DataTranslation
This class represents part of a data address translation.
Definition: translation.hh:219
gem5::WholeTranslationState::outstanding
int outstanding
Definition: translation.hh:65
gem5::RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:92
mmu.hh
gem5::DataTranslation::xc
ExecContextPtr xc
Definition: translation.hh:222
gem5::WholeTranslationState::getPaddr
Addr getPaddr() const
Get the physical address of this request.
Definition: translation.hh:180
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::WholeTranslationState::sreqHigh
RequestPtr sreqHigh
Definition: translation.hh:73
gem5::WholeTranslationState::mainReq
RequestPtr mainReq
Definition: translation.hh:71
gem5::BaseMMU::Translation
Definition: mmu.hh:58
gem5::WholeTranslationState::getFlags
unsigned getFlags()
Get the flags associated with this request.
Definition: translation.hh:191
gem5::WholeTranslationState
This class captures the state of an address translation.
Definition: translation.hh:62
gem5::DataTranslation::index
int index
Definition: translation.hh:224
gem5::WholeTranslationState::isStrictlyOrdered
bool isStrictlyOrdered() const
Check if this request is strictly ordered device access.
Definition: translation.hh:162
gem5::WholeTranslationState::mode
BaseMMU::Mode mode
Definition: translation.hh:76
gem5::DataTranslation::DataTranslation
DataTranslation(ExecContextPtr _xc, WholeTranslationState *_state)
Definition: translation.hh:227
gem5::WholeTranslationState::getFault
Fault getFault() const
Determine whether this translation produced a fault.
Definition: translation.hh:137
gem5::WholeTranslationState::isSplit
bool isSplit
Definition: translation.hh:70
gem5::DataTranslation::DataTranslation
DataTranslation(ExecContextPtr _xc, WholeTranslationState *_state, int _index)
Definition: translation.hh:232
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::WholeTranslationState::sreqLow
RequestPtr sreqLow
Definition: translation.hh:72
gem5::ArmISA::mode
Bitfield< 4, 0 > mode
Definition: misc_types.hh:74

Generated on Wed Jul 13 2022 10:39:18 for gem5 by doxygen 1.8.17