gem5  v22.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem64.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013,2017-2019, 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  * 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_MEM64_HH__
39 #define __ARCH_ARM_MEM64_HH__
40 
41 #include "arch/arm/insts/misc64.hh"
43 #include "arch/arm/pcstate.hh"
44 #include "cpu/thread_context.hh"
45 
46 namespace gem5
47 {
48 
49 namespace ArmISA
50 {
51 
52 class SysDC64 : public MiscRegOp64
53 {
54  protected:
57  uint64_t imm;
58 
59  // This is used for fault handling only
60  mutable Addr faultAddr;
61 
62  SysDC64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
63  RegIndex _base, MiscRegIndex _dest, uint64_t _imm)
64  : MiscRegOp64(mnem, _machInst, __opClass, false),
65  base(_base), dest(_dest), imm(_imm), faultAddr(0)
66  {}
67 
68  std::string generateDisassembly(
69  Addr pc, const loader::SymbolTable *symtab) const override;
70 };
71 
73 {
74  protected:
75  MightBeMicro64(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
76  : ArmStaticInst(mnem, _machInst, __opClass)
77  {}
78 
79  void
80  advancePC(PCStateBase &pcState) const override
81  {
82  auto &apc = pcState.as<PCState>();
83  if (flags[IsLastMicroop]) {
84  apc.uEnd();
85  } else if (flags[IsMicroop]) {
86  apc.uAdvance();
87  } else {
88  apc.advance();
89  }
90  }
91 
92  void
93  advancePC(ThreadContext *tc) const override
94  {
95  PCState pc = tc->pcState().as<PCState>();
96  if (flags[IsLastMicroop]) {
97  pc.uEnd();
98  } else if (flags[IsMicroop]) {
99  pc.uAdvance();
100  } else {
101  pc.advance();
102  }
103  tc->pcState(pc);
104  }
105 };
106 
107 class Memory64 : public MightBeMicro64
108 {
109  public:
110  enum AddrMode
111  {
115  };
116 
117  protected:
118 
122  bool baseIsSP;
123  static const unsigned numMicroops = 3;
124 
126 
127  Memory64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
128  RegIndex _dest, RegIndex _base)
129  : MightBeMicro64(mnem, _machInst, __opClass),
130  dest(_dest), base(_base), uops(NULL), memAccessFlags(0)
131  {
132  baseIsSP = isSP(_base);
133  }
134 
135  virtual
137  {
138  delete [] uops;
139  }
140 
142  fetchMicroop(MicroPC microPC) const override
143  {
144  assert(uops != NULL && microPC < numMicroops);
145  return uops[microPC];
146  }
147 
148  void startDisassembly(std::ostream &os) const;
149 
150  unsigned memAccessFlags;
151 
152  void setExcAcRel(bool exclusive, bool acrel);
153 };
154 
155 class MemoryImm64 : public Memory64
156 {
157  protected:
158  int64_t imm;
159 
160  MemoryImm64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
161  RegIndex _dest, RegIndex _base, int64_t _imm)
162  : Memory64(mnem, _machInst, __opClass, _dest, _base), imm(_imm)
163  {}
164 
165  std::string generateDisassembly(
166  Addr pc, const loader::SymbolTable *symtab) const override;
167 };
168 
169 class MemoryDImm64 : public MemoryImm64
170 {
171  protected:
173 
174  MemoryDImm64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
175  RegIndex _dest, RegIndex _dest2, RegIndex _base,
176  int64_t _imm)
177  : MemoryImm64(mnem, _machInst, __opClass, _dest, _base, _imm),
178  dest2(_dest2)
179  {}
180 
181  std::string generateDisassembly(
182  Addr pc, const loader::SymbolTable *symtab) const override;
183 };
184 
186 {
187  protected:
189 
190  MemoryDImmEx64(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
191  RegIndex _result, RegIndex _dest, RegIndex _dest2,
192  RegIndex _base, int32_t _imm)
193  : MemoryDImm64(mnem, _machInst, __opClass, _dest, _dest2,
194  _base, _imm), result(_result)
195  {}
196 
197  std::string generateDisassembly(
198  Addr pc, const loader::SymbolTable *symtab) const override;
199 };
200 
202 {
203  protected:
204  MemoryPreIndex64(const char *mnem, ExtMachInst _machInst,
205  OpClass __opClass, RegIndex _dest, RegIndex _base,
206  int64_t _imm)
207  : MemoryImm64(mnem, _machInst, __opClass, _dest, _base, _imm)
208  {}
209 
210  std::string generateDisassembly(
211  Addr pc, const loader::SymbolTable *symtab) const override;
212 };
213 
215 {
216  protected:
217  MemoryPostIndex64(const char *mnem, ExtMachInst _machInst,
218  OpClass __opClass, RegIndex _dest, RegIndex _base,
219  int64_t _imm)
220  : MemoryImm64(mnem, _machInst, __opClass, _dest, _base, _imm)
221  {}
222 
223  std::string generateDisassembly(
224  Addr pc, const loader::SymbolTable *symtab) const override;
225 };
226 
227 class MemoryReg64 : public Memory64
228 {
229  protected:
232  uint64_t shiftAmt;
233 
234  MemoryReg64(const char *mnem, ExtMachInst _machInst,
235  OpClass __opClass, RegIndex _dest, RegIndex _base,
236  RegIndex _offset, ArmExtendType _type,
237  uint64_t _shiftAmt)
238  : Memory64(mnem, _machInst, __opClass, _dest, _base),
239  offset(_offset), type(_type), shiftAmt(_shiftAmt)
240  {}
241 
242  std::string generateDisassembly(
243  Addr pc, const loader::SymbolTable *symtab) const override;
244 };
245 
246 class MemoryRaw64 : public Memory64
247 {
248  protected:
249  MemoryRaw64(const char *mnem, ExtMachInst _machInst,
250  OpClass __opClass, RegIndex _dest, RegIndex _base)
251  : Memory64(mnem, _machInst, __opClass, _dest, _base)
252  {}
253 
254  std::string generateDisassembly(
255  Addr pc, const loader::SymbolTable *symtab) const override;
256 };
257 
258 class MemoryEx64 : public Memory64
259 {
260  protected:
262 
263  MemoryEx64(const char *mnem, ExtMachInst _machInst,
264  OpClass __opClass, RegIndex _dest, RegIndex _base,
265  RegIndex _result)
266  : Memory64(mnem, _machInst, __opClass, _dest, _base), result(_result)
267  {}
268 
269  std::string generateDisassembly(
270  Addr pc, const loader::SymbolTable *symtab) const override;
271 };
272 
273 class MemoryLiteral64 : public Memory64
274 {
275  protected:
276  int64_t imm;
277 
278  MemoryLiteral64(const char *mnem, ExtMachInst _machInst,
279  OpClass __opClass, RegIndex _dest, int64_t _imm)
280  : Memory64(mnem, _machInst, __opClass, _dest, int_reg::Zero), imm(_imm)
281  {}
282 
283  std::string generateDisassembly(
284  Addr pc, const loader::SymbolTable *symtab) const override;
285 };
286 
288 {
289  protected:
293 
294  MemoryAtomicPair64(const char *mnem, ExtMachInst _machInst,
295  OpClass __opClass, RegIndex _dest, RegIndex _base,
296  RegIndex _result)
297  : Memory64(mnem, _machInst, __opClass, _dest, _base),
298  dest2((RegIndex)(_dest + (RegIndex)(1))),
299  result(_result),
300  result2((RegIndex)(_result + (RegIndex)(1)))
301  {}
302 
303  std::string generateDisassembly(
304  Addr pc, const loader::SymbolTable *symtab) const override;
305 };
306 
307 } // namespace ArmISA
308 } // namespace gem5
309 
310 #endif //__ARCH_ARM_INSTS_MEM_HH__
gem5::ArmISA::MemoryDImmEx64
Definition: mem64.hh:185
gem5::ArmISA::Memory64::dest
RegIndex dest
Definition: mem64.hh:119
gem5::ArmISA::SysDC64::dest
MiscRegIndex dest
Definition: mem64.hh:56
gem5::ArmISA::MemoryPostIndex64
Definition: mem64.hh:214
gem5::ArmISA::MemoryDImmEx64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:118
gem5::ArmISA::MemoryAtomicPair64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:206
gem5::ArmISA::Memory64::setExcAcRel
void setExcAcRel(bool exclusive, bool acrel)
Definition: mem64.cc:76
gem5::ArmISA::MemoryReg64::offset
RegIndex offset
Definition: mem64.hh:230
gem5::ArmISA::MemoryPreIndex64::MemoryPreIndex64
MemoryPreIndex64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, int64_t _imm)
Definition: mem64.hh:204
gem5::ArmISA::MightBeMicro64::MightBeMicro64
MightBeMicro64(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition: mem64.hh:75
gem5::ArmISA::ArmStaticInst
Definition: static_inst.hh:65
gem5::ArmISA::MemoryLiteral64::imm
int64_t imm
Definition: mem64.hh:276
gem5::ArmISA::MemoryAtomicPair64
Definition: mem64.hh:287
gem5::ArmISA::MemoryDImm64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:101
gem5::PCStateBase::as
Target & as()
Definition: pcstate.hh:72
gem5::ArmISA::Memory64::AddrMd_Offset
@ AddrMd_Offset
Definition: mem64.hh:112
gem5::ThreadContext::pcState
virtual const PCStateBase & pcState() const =0
gem5::ArmISA::SysDC64::faultAddr
Addr faultAddr
Definition: mem64.hh:60
gem5::ArmISA::Memory64::base
RegIndex base
Definition: mem64.hh:120
gem5::ArmISA::ArmExtendType
ArmExtendType
Definition: types.hh:222
gem5::ArmISA::SysDC64::SysDC64
SysDC64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _base, MiscRegIndex _dest, uint64_t _imm)
Definition: mem64.hh:62
gem5::loader::SymbolTable
Definition: symtab.hh:65
gem5::ArmISA::MemoryAtomicPair64::result
RegIndex result
Definition: mem64.hh:291
gem5::ArmISA::Memory64::fetchMicroop
StaticInstPtr fetchMicroop(MicroPC microPC) const override
Return the microop that goes with a particular micropc.
Definition: mem64.hh:142
gem5::ArmISA::MemoryRaw64
Definition: mem64.hh:246
gem5::ArmISA::MemoryRaw64::MemoryRaw64
MemoryRaw64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base)
Definition: mem64.hh:249
gem5::ArmISA::MemoryPostIndex64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:147
gem5::ArmISA::MemoryPostIndex64::MemoryPostIndex64
MemoryPostIndex64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, int64_t _imm)
Definition: mem64.hh:217
gem5::ArmISA::isSP
static bool isSP(RegIndex reg)
Definition: int.hh:598
gem5::ArmISA::MightBeMicro64::advancePC
void advancePC(PCStateBase &pcState) const override
Definition: mem64.hh:80
gem5::PowerISA::PCState
Definition: pcstate.hh:42
gem5::ArmISA::Memory64::AddrMd_PostIndex
@ AddrMd_PostIndex
Definition: mem64.hh:114
gem5::ArmISA::MightBeMicro64::advancePC
void advancePC(ThreadContext *tc) const override
Definition: mem64.hh:93
gem5::ArmISA::SysDC64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:51
gem5::ArmISA::MightBeMicro64
Definition: mem64.hh:72
gem5::RefCountingPtr< StaticInst >
gem5::ArmISA::MemoryImm64::imm
int64_t imm
Definition: mem64.hh:158
gem5::ArmISA::MemoryReg64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:159
gem5::ArmISA::MemoryReg64
Definition: mem64.hh:227
gem5::ArmISA::MemoryRaw64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:170
gem5::MicroPC
uint16_t MicroPC
Definition: types.hh:149
gem5::ArmISA::MemoryLiteral64
Definition: mem64.hh:273
gem5::ArmISA::MemoryDImmEx64::result
RegIndex result
Definition: mem64.hh:188
gem5::ArmISA::MemoryAtomicPair64::dest2
RegIndex dest2
Definition: mem64.hh:290
misc64.hh
gem5::ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:94
gem5::ArmISA::MemoryLiteral64::MemoryLiteral64
MemoryLiteral64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, int64_t _imm)
Definition: mem64.hh:278
gem5::ArmISA::MemoryAtomicPair64::result2
RegIndex result2
Definition: mem64.hh:292
gem5::ArmISA::MemoryReg64::MemoryReg64
MemoryReg64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, RegIndex _offset, ArmExtendType _type, uint64_t _shiftAmt)
Definition: mem64.hh:234
gem5::ArmISA::Memory64::~Memory64
virtual ~Memory64()
Definition: mem64.hh:136
gem5::StaticInst::flags
std::bitset< Num_Flags > flags
Flag values for this instruction.
Definition: static_inst.hh:103
gem5::ArmISA::MemoryDImm64::MemoryDImm64
MemoryDImm64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _dest2, RegIndex _base, int64_t _imm)
Definition: mem64.hh:174
gem5::ArmISA::MemoryEx64::MemoryEx64
MemoryEx64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, RegIndex _result)
Definition: mem64.hh:263
gem5::ArmISA::Memory64::AddrMode
AddrMode
Definition: mem64.hh:110
gem5::ArmISA::Memory64::startDisassembly
void startDisassembly(std::ostream &os) const
Definition: mem64.cc:63
gem5::ArmISA::MemoryReg64::type
ArmExtendType type
Definition: mem64.hh:231
gem5::ArmISA::MemoryDImmEx64::MemoryDImmEx64
MemoryDImmEx64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _result, RegIndex _dest, RegIndex _dest2, RegIndex _base, int32_t _imm)
Definition: mem64.hh:190
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::MiscRegOp64
This class is implementing the Base class for a generic AArch64 instruction which is making use of sy...
Definition: misc64.hh:124
gem5::ArmISA::MiscRegIndex
MiscRegIndex
Definition: misc.hh:59
pcstate.hh
gem5::ArmISA::MemoryDImm64
Definition: mem64.hh:169
gem5::ArmISA::MemoryImm64
Definition: mem64.hh:155
gem5::ArmISA::MemoryPreIndex64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:137
gem5::X86ISA::ExtMachInst
Definition: types.hh:212
gem5::ArmISA::SysDC64
Definition: mem64.hh:52
gem5::ArmISA::MemoryEx64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:180
gem5::ArmISA::MemoryEx64::result
RegIndex result
Definition: mem64.hh:261
gem5::X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
static_inst.hh
gem5::ArmISA::MemoryEx64
Definition: mem64.hh:258
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::ArmISA::Memory64::numMicroops
static const unsigned numMicroops
Definition: mem64.hh:123
gem5::ArmISA::Memory64::AddrMd_PreIndex
@ AddrMd_PreIndex
Definition: mem64.hh:113
gem5::ArmISA::MemoryAtomicPair64::MemoryAtomicPair64
MemoryAtomicPair64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, RegIndex _result)
Definition: mem64.hh:294
gem5::ArmISA::MemoryImm64::MemoryImm64
MemoryImm64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base, int64_t _imm)
Definition: mem64.hh:160
gem5::ArmISA::SysDC64::base
RegIndex base
Definition: mem64.hh:55
gem5::ArmISA::MemoryDImm64::dest2
RegIndex dest2
Definition: mem64.hh:172
gem5::ArmISA::MemoryReg64::shiftAmt
uint64_t shiftAmt
Definition: mem64.hh:232
gem5::PCStateBase
Definition: pcstate.hh:57
gem5::ArmISA::Memory64::baseIsSP
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: mem64.hh:122
gem5::RegIndex
uint16_t RegIndex
Definition: types.hh:176
gem5::ArmISA::Memory64
Definition: mem64.hh:107
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: gpu_translation_state.hh:37
gem5::ArmISA::cc_reg::Zero
constexpr RegId Zero(CCRegClass, _ZeroIdx)
gem5::ArmISA::MemoryPreIndex64
Definition: mem64.hh:201
gem5::ArmISA::MemoryLiteral64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:195
gem5::ArmISA::SysDC64::imm
uint64_t imm
Definition: mem64.hh:57
gem5::ArmISA::Memory64::Memory64
Memory64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, RegIndex _dest, RegIndex _base)
Definition: mem64.hh:127
thread_context.hh
gem5::GenericISA::SimplePCState::advance
void advance() override
Definition: pcstate.hh:376
gem5::ArmISA::MemoryImm64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:89
gem5::ArmISA::Memory64::memAccessFlags
unsigned memAccessFlags
Definition: mem64.hh:150
gem5::ArmISA::Memory64::uops
StaticInstPtr * uops
Definition: mem64.hh:125

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