gem5  [DEVELOP-FOR-23.0]
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlbi_op.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2020, 2022 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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __ARCH_ARM_TLBI_HH__
39 #define __ARCH_ARM_TLBI_HH__
40 
41 #include "arch/arm/system.hh"
42 #include "arch/arm/tlb.hh"
43 #include "cpu/thread_context.hh"
44 
52 namespace gem5
53 {
54 
55 namespace ArmISA {
56 
57 class TLBIOp
58 {
59  public:
60  TLBIOp(ExceptionLevel _targetEL, bool _secure)
61  : secureLookup(_secure), targetEL(_targetEL)
62  {}
63 
64  virtual ~TLBIOp() {}
65  virtual void operator()(ThreadContext* tc) {}
66 
72  void
74  {
75  for (auto *oc: tc->getSystemPtr()->threads)
76  (*this)(oc);
77  }
78 
79  virtual bool match(TlbEntry *entry, vmid_t curr_vmid) const = 0;
80 
86  virtual bool
87  stage1Flush() const
88  {
89  return true;
90  }
91 
97  virtual bool
98  stage2Flush() const
99  {
100  return false;
101  }
102 
105 };
106 
108 class TLBIALL : public TLBIOp
109 {
110  public:
111  TLBIALL(ExceptionLevel _targetEL, bool _secure)
112  : TLBIOp(_targetEL, _secure), inHost(false), el2Enabled(false),
113  currentEL(EL0)
114  {}
115 
116  void operator()(ThreadContext* tc) override;
117 
118  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
119 
120  bool
121  stage2Flush() const override
122  {
123  // TLBIALL (AArch32) flushing stage2 entries if we're currently
124  // in hyp mode
125  return currentEL == EL2;
126  }
127 
128  TLBIALL
129  makeStage2() const
130  {
131  return TLBIALL(EL1, secureLookup);
132  }
133 
134  bool inHost;
137 };
138 
140 class ITLBIALL : public TLBIALL
141 {
142  public:
143  ITLBIALL(ExceptionLevel _targetEL, bool _secure)
144  : TLBIALL(_targetEL, _secure)
145  {}
146 
147  void broadcast(ThreadContext *tc) = delete;
148 
149  void operator()(ThreadContext* tc) override;
150 
151  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
152 };
153 
155 class DTLBIALL : public TLBIALL
156 {
157  public:
158  DTLBIALL(ExceptionLevel _targetEL, bool _secure)
159  : TLBIALL(_targetEL, _secure)
160  {}
161 
162  void broadcast(ThreadContext *tc) = delete;
163 
164  void operator()(ThreadContext* tc) override;
165 
166  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
167 };
168 
170 class TLBIALLEL : public TLBIOp
171 {
172  public:
173  TLBIALLEL(ExceptionLevel _targetEL, bool _secure)
174  : TLBIOp(_targetEL, _secure), inHost(false)
175  {}
176 
177  void operator()(ThreadContext* tc) override;
178 
179  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
180 
181  bool
182  stage2Flush() const override
183  {
184  // If we're targeting EL1 then flush stage2 as well
185  return targetEL == EL1;
186  }
187 
188  TLBIALLEL
189  makeStage2() const
190  {
191  return TLBIALLEL(EL1, secureLookup);
192  }
193 
194  bool inHost;
195 };
196 
198 class TLBIVMALL : public TLBIOp
199 {
200  public:
201  TLBIVMALL(ExceptionLevel _targetEL, bool _secure, bool _stage2)
202  : TLBIOp(_targetEL, _secure), inHost(false), el2Enabled(false),
203  stage2(_stage2)
204  {}
205 
206  void operator()(ThreadContext* tc) override;
207 
208  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
209 
210  bool
211  stage2Flush() const override
212  {
213  return stage2;
214  }
215 
216  TLBIVMALL
217  makeStage2() const
218  {
219  return TLBIVMALL(EL1, secureLookup, false);
220  }
221 
222  bool inHost;
224  bool stage2;
225 };
226 
228 class TLBIASID : public TLBIOp
229 {
230  public:
231  TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
232  : TLBIOp(_targetEL, _secure), asid(_asid), inHost(false),
233  el2Enabled(false)
234  {}
235 
236  void operator()(ThreadContext* tc) override;
237 
238  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
239 
240  uint16_t asid;
241  bool inHost;
243 };
244 
246 class ITLBIASID : public TLBIASID
247 {
248  public:
249  ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
250  : TLBIASID(_targetEL, _secure, _asid)
251  {}
252 
253  void broadcast(ThreadContext *tc) = delete;
254 
255  void operator()(ThreadContext* tc) override;
256 
257  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
258 };
259 
261 class DTLBIASID : public TLBIASID
262 {
263  public:
264  DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
265  : TLBIASID(_targetEL, _secure, _asid)
266  {}
267 
268  void broadcast(ThreadContext *tc) = delete;
269 
270  void operator()(ThreadContext* tc) override;
271 
272  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
273 };
274 
276 class TLBIALLN : public TLBIOp
277 {
278  public:
280  : TLBIOp(_targetEL, false)
281  {}
282 
283  void operator()(ThreadContext* tc) override;
284 
285  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
286 
287  bool
288  stage2Flush() const override
289  {
290  return targetEL != EL2;
291  }
292 
293  TLBIALLN
294  makeStage2() const
295  {
296  return TLBIALLN(EL1);
297  }
298 };
299 
301 class TLBIMVAA : public TLBIOp
302 {
303  public:
304  TLBIMVAA(ExceptionLevel _targetEL, bool _secure,
305  Addr _addr, bool last_level)
306  : TLBIOp(_targetEL, _secure), addr(_addr), inHost(false),
307  lastLevel(last_level)
308  {}
309 
310  void operator()(ThreadContext* tc) override;
311 
312  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
313 
315  bool inHost;
316  bool lastLevel;
317 };
318 
320 class TLBIMVA : public TLBIOp
321 {
322  public:
323  TLBIMVA(ExceptionLevel _targetEL, bool _secure,
324  Addr _addr, uint16_t _asid, bool last_level)
325  : TLBIOp(_targetEL, _secure), addr(_addr), asid(_asid),
326  inHost(false), lastLevel(last_level)
327  {}
328 
329  void operator()(ThreadContext* tc) override;
330 
331  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
332 
334  uint16_t asid;
335  bool inHost;
336  bool lastLevel;
337 };
338 
340 class ITLBIMVA : public TLBIMVA
341 {
342  public:
343  ITLBIMVA(ExceptionLevel _targetEL, bool _secure,
344  Addr _addr, uint16_t _asid)
345  : TLBIMVA(_targetEL, _secure, _addr, _asid, false)
346  {}
347 
348  void broadcast(ThreadContext *tc) = delete;
349 
350  void operator()(ThreadContext* tc) override;
351 
352  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
353 };
354 
356 class DTLBIMVA : public TLBIMVA
357 {
358  public:
359  DTLBIMVA(ExceptionLevel _targetEL, bool _secure,
360  Addr _addr, uint16_t _asid)
361  : TLBIMVA(_targetEL, _secure, _addr, _asid, false)
362  {}
363 
364  void broadcast(ThreadContext *tc) = delete;
365 
366  void operator()(ThreadContext* tc) override;
367 
368  bool match(TlbEntry *entry, vmid_t curr_vmid) const override;
369 };
370 
372 class TLBIIPA : public TLBIOp
373 {
374  public:
375  TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr,
376  bool last_level)
377  : TLBIOp(_targetEL, _secure), addr(_addr), lastLevel(last_level)
378  {}
379 
380  void operator()(ThreadContext* tc) override;
381 
382  bool
383  match(TlbEntry *entry, vmid_t curr_vmid) const override
384  {
385  panic("This shouldn't be called\n");
386  }
387 
388  bool
389  stage1Flush() const override
390  {
391  return false;
392  }
393 
395  TLBIMVAA
396  makeStage2() const
397  {
399  }
400 
402  bool lastLevel;
403 };
404 
405 } // namespace ArmISA
406 } // namespace gem5
407 
408 #endif //__ARCH_ARM_TLBI_HH__
gem5::ArmISA::DTLBIASID::DTLBIASID
DTLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:264
gem5::ArmISA::TLBIIPA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:298
gem5::ArmISA::ITLBIALL
Instruction TLB Invalidate All.
Definition: tlbi_op.hh:140
gem5::ArmISA::TLBIASID::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:159
gem5::ArmISA::TLBIOp::~TLBIOp
virtual ~TLBIOp()
Definition: tlbi_op.hh:64
gem5::ArmISA::ITLBIMVA::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:280
gem5::ArmISA::TLBIVMALL::TLBIVMALL
TLBIVMALL(ExceptionLevel _targetEL, bool _secure, bool _stage2)
Definition: tlbi_op.hh:201
gem5::ThreadContext::getSystemPtr
virtual System * getSystemPtr()=0
gem5::ArmISA::TLBIALLEL
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
Definition: tlbi_op.hh:170
gem5::ArmISA::DTLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:87
gem5::ArmISA::TLBIASID
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:228
gem5::ArmISA::TLBIALL
TLB Invalidate All.
Definition: tlbi_op.hh:108
gem5::ArmISA::TLBIMVA::asid
uint16_t asid
Definition: tlbi_op.hh:334
gem5::ArmISA::ITLBIASID::ITLBIASID
ITLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:249
gem5::ArmISA::vmid_t
uint16_t vmid_t
Definition: types.hh:57
gem5::ArmISA::TLBIMVAA::lastLevel
bool lastLevel
Definition: tlbi_op.hh:316
gem5::ArmISA::DTLBIALL::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::DTLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:181
gem5::ArmISA::EL1
@ EL1
Definition: types.hh:274
gem5::ArmISA::ITLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:168
tlb.hh
gem5::ArmISA::DTLBIMVA::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:292
gem5::ArmISA::ITLBIALL::ITLBIALL
ITLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:143
gem5::ArmISA::TLBIOp::match
virtual bool match(TlbEntry *entry, vmid_t curr_vmid) const =0
system.hh
gem5::ArmISA::TLBIOp::stage1Flush
virtual bool stage1Flush() const
Return true if the TLBI op needs to flush stage1 entries, Defaulting to true in the TLBIOp abstract c...
Definition: tlbi_op.hh:87
gem5::ArmISA::DTLBIMVA::DTLBIMVA
DTLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:359
gem5::ArmISA::TLBIIPA::addr
Addr addr
Definition: tlbi_op.hh:401
gem5::ArmISA::DTLBIASID
Data TLB Invalidate by ASID match.
Definition: tlbi_op.hh:261
gem5::ArmISA::TLBIALL::inHost
bool inHost
Definition: tlbi_op.hh:134
gem5::ArmISA::ITLBIASID
Instruction TLB Invalidate by ASID match.
Definition: tlbi_op.hh:246
gem5::ArmISA::TLBIIPA::lastLevel
bool lastLevel
Definition: tlbi_op.hh:402
gem5::ArmISA::TLBIIPA::makeStage2
TLBIMVAA makeStage2() const
TLBIIPA is basically a TLBIMVAA for stage2 TLBs.
Definition: tlbi_op.hh:396
gem5::ArmISA::TlbEntry
Definition: pagetable.hh:165
gem5::ArmISA::TLBIOp::secureLookup
bool secureLookup
Definition: tlbi_op.hh:103
gem5::ArmISA::TLBIMVAA::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:226
gem5::ArmISA::ITLBIMVA
Instruction TLB Invalidate by VA.
Definition: tlbi_op.hh:340
gem5::ArmISA::TLBIVMALL::stage2Flush
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition: tlbi_op.hh:211
gem5::ArmISA::TLBIASID::asid
uint16_t asid
Definition: tlbi_op.hh:240
gem5::ArmISA::ITLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:74
gem5::ArmISA::TLBIALLN::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:194
gem5::ArmISA::TLBIALLN
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:276
gem5::ArmISA::TLBIASID::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:242
gem5::ArmISA::TLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:243
gem5::ArmISA::DTLBIASID::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::TLBIALL::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:66
gem5::ArmISA::TLBIALL::currentEL
ExceptionLevel currentEL
Definition: tlbi_op.hh:136
gem5::ArmISA::TLBIALLN::stage2Flush
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition: tlbi_op.hh:288
gem5::ArmISA::TLBIOp::operator()
virtual void operator()(ThreadContext *tc)
Definition: tlbi_op.hh:65
gem5::ArmISA::TLBIALLEL::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:114
gem5::ArmISA::TLBIALL::stage2Flush
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition: tlbi_op.hh:121
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
gem5::ArmISA::TLBIOp::stage2Flush
virtual bool stage2Flush() const
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition: tlbi_op.hh:98
gem5::ArmISA::TLBIALLEL::stage2Flush
bool stage2Flush() const override
Return true if the TLBI op needs to flush stage2 entries, Defaulting to false in the TLBIOp abstract ...
Definition: tlbi_op.hh:182
gem5::ArmISA::EL2
@ EL2
Definition: types.hh:275
gem5::ArmISA::TLBIALLEL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:100
gem5::ArmISA::TLBIMVAA
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:301
gem5::ArmISA::DTLBIMVA::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::TLBIALLN::makeStage2
TLBIALLN makeStage2() const
Definition: tlbi_op.hh:294
gem5::ArmISA::ITLBIASID::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:175
gem5::ArmISA::TLBIALL::TLBIALL
TLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:111
gem5::ArmISA::ITLBIALL::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:81
gem5::ArmISA::TLBIASID::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:145
gem5::ArmISA::DTLBIALL::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:94
gem5::ArmISA::TLBIMVA::lastLevel
bool lastLevel
Definition: tlbi_op.hh:336
gem5::ArmISA::TLBIALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:135
gem5::ArmISA::TLBIASID::inHost
bool inHost
Definition: tlbi_op.hh:241
gem5::ArmISA::ITLBIASID::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::TLBIMVAA::TLBIMVAA
TLBIMVAA(ExceptionLevel _targetEL, bool _secure, Addr _addr, bool last_level)
Definition: tlbi_op.hh:304
gem5::ArmISA::TLBIALLN::TLBIALLN
TLBIALLN(ExceptionLevel _targetEL)
Definition: tlbi_op.hh:279
gem5::ArmISA::TLBIIPA::TLBIIPA
TLBIIPA(ExceptionLevel _targetEL, bool _secure, Addr _addr, bool last_level)
Definition: tlbi_op.hh:375
gem5::ArmISA::TLBIVMALL::el2Enabled
bool el2Enabled
Definition: tlbi_op.hh:223
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::ArmISA::TLBIVMALL::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:137
gem5::ArmISA::DTLBIALL::DTLBIALL
DTLBIALL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:158
gem5::ArmISA::TLBIMVA::TLBIMVA
TLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid, bool last_level)
Definition: tlbi_op.hh:323
gem5::ArmISA::TLBIVMALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:121
gem5::ArmISA::TLBIMVAA::inHost
bool inHost
Definition: tlbi_op.hh:315
gem5::ArmISA::TLBIIPA
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:372
gem5::ArmISA::ITLBIALL::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::TLBIMVA::inHost
bool inHost
Definition: tlbi_op.hh:335
gem5::ArmISA::TLBIALLEL::inHost
bool inHost
Definition: tlbi_op.hh:194
gem5::ArmISA::TLBIMVA::addr
Addr addr
Definition: tlbi_op.hh:333
gem5::ArmISA::TLBIALLEL::TLBIALLEL
TLBIALLEL(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:173
gem5::ArmISA::EL0
@ EL0
Definition: types.hh:273
gem5::ArmISA::TLBIMVAA::addr
Addr addr
Definition: tlbi_op.hh:314
gem5::ArmISA::DTLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:286
gem5::ArmISA::ITLBIMVA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:274
gem5::ArmISA::TLBIASID::TLBIASID
TLBIASID(ExceptionLevel _targetEL, bool _secure, uint16_t _asid)
Definition: tlbi_op.hh:231
gem5::System::threads
Threads threads
Definition: system.hh:310
gem5::ArmISA::DTLBIALL
Data TLB Invalidate All.
Definition: tlbi_op.hh:155
gem5::ArmISA::TLBIOp::broadcast
void broadcast(ThreadContext *tc)
Broadcast the TLB Invalidate operation to all TLBs in the Arm system.
Definition: tlbi_op.hh:73
gem5::ArmISA::ITLBIMVA::broadcast
void broadcast(ThreadContext *tc)=delete
gem5::ArmISA::TLBIMVA
TLB Invalidate by VA.
Definition: tlbi_op.hh:320
gem5::ArmISA::TLBIOp::targetEL
ExceptionLevel targetEL
Definition: tlbi_op.hh:104
gem5::ArmISA::TLBIIPA::stage1Flush
bool stage1Flush() const override
Return true if the TLBI op needs to flush stage1 entries, Defaulting to true in the TLBIOp abstract c...
Definition: tlbi_op.hh:389
gem5::ArmISA::TLBIVMALL
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Definition: tlbi_op.hh:198
gem5::ArmISA::TLBIALLEL::makeStage2
TLBIALLEL makeStage2() const
Definition: tlbi_op.hh:189
gem5::ArmISA::TLBIVMALL::inHost
bool inHost
Definition: tlbi_op.hh:222
gem5::ArmISA::DTLBIASID::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:188
gem5::ArmISA::ITLBIMVA::ITLBIMVA
ITLBIMVA(ExceptionLevel _targetEL, bool _secure, Addr _addr, uint16_t _asid)
Definition: tlbi_op.hh:343
gem5::ArmISA::TLBIMVA::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:256
gem5::ArmISA::TLBIALL::makeStage2
TLBIALL makeStage2() const
Definition: tlbi_op.hh:129
gem5::ArmISA::DTLBIMVA
Data TLB Invalidate by VA.
Definition: tlbi_op.hh:356
gem5::ArmISA::TLBIVMALL::makeStage2
TLBIVMALL makeStage2() const
Definition: tlbi_op.hh:217
gem5::ArmISA::TLBIALLN::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.cc:205
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::ArmISA::TLBIIPA::match
bool match(TlbEntry *entry, vmid_t curr_vmid) const override
Definition: tlbi_op.hh:383
thread_context.hh
gem5::ArmISA::TLBIMVAA::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:213
gem5::ArmISA::TLBIVMALL::stage2
bool stage2
Definition: tlbi_op.hh:224
gem5::ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:271
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:188
gem5::ArmISA::TLBIOp::TLBIOp
TLBIOp(ExceptionLevel _targetEL, bool _secure)
Definition: tlbi_op.hh:60
gem5::ArmISA::TLBIOp
Definition: tlbi_op.hh:57
gem5::ArmISA::TLBIALL::operator()
void operator()(ThreadContext *tc) override
Definition: tlbi_op.cc:49

Generated on Sun Jul 30 2023 01:56:50 for gem5 by doxygen 1.8.17