gem5  v20.0.0.3
misc64.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013,2017-2019 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_INSTS_MISC64_HH__
39 #define __ARCH_ARM_INSTS_MISC64_HH__
40 
42 
43 class ImmOp64 : public ArmStaticInst
44 {
45  protected:
46  uint64_t imm;
47 
48  ImmOp64(const char *mnem, ExtMachInst _machInst,
49  OpClass __opClass, uint64_t _imm) :
50  ArmStaticInst(mnem, _machInst, __opClass), imm(_imm)
51  {}
52 
53  std::string generateDisassembly(
54  Addr pc, const Loader::SymbolTable *symtab) const override;
55 };
56 
58 {
59  protected:
62  uint64_t imm1;
63  uint64_t imm2;
64 
65  RegRegImmImmOp64(const char *mnem, ExtMachInst _machInst,
66  OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1,
67  uint64_t _imm1, uint64_t _imm2) :
68  ArmStaticInst(mnem, _machInst, __opClass),
69  dest(_dest), op1(_op1), imm1(_imm1), imm2(_imm2)
70  {}
71 
72  std::string generateDisassembly(
73  Addr pc, const Loader::SymbolTable *symtab) const override;
74 };
75 
77 {
78  protected:
82  uint64_t imm;
83 
84  RegRegRegImmOp64(const char *mnem, ExtMachInst _machInst,
85  OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1,
86  IntRegIndex _op2, uint64_t _imm) :
87  ArmStaticInst(mnem, _machInst, __opClass),
88  dest(_dest), op1(_op1), op2(_op2), imm(_imm)
89  {}
90 
91  std::string generateDisassembly(
92  Addr pc, const Loader::SymbolTable *symtab) const override;
93 };
94 
95 class UnknownOp64 : public ArmStaticInst
96 {
97  protected:
98 
99  UnknownOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass) :
100  ArmStaticInst(mnem, _machInst, __opClass)
101  {}
102 
103  std::string generateDisassembly(
104  Addr pc, const Loader::SymbolTable *symtab) const override;
105 };
106 
119 {
120  protected:
121  bool miscRead;
122 
123  MiscRegOp64(const char *mnem, ExtMachInst _machInst,
124  OpClass __opClass, bool misc_read) :
125  ArmStaticInst(mnem, _machInst, __opClass),
126  miscRead(misc_read)
127  {}
128 
129  Fault trap(ThreadContext *tc, MiscRegIndex misc_reg,
130  ExceptionLevel el, uint32_t immediate) const;
131  private:
132  bool checkEL1Trap(ThreadContext *tc, const MiscRegIndex misc_reg,
134  uint32_t &immediate) const;
135 
136  bool checkEL2Trap(ThreadContext *tc, const MiscRegIndex misc_reg,
138  uint32_t &immediate) const;
139 
140  bool checkEL3Trap(ThreadContext *tc, const MiscRegIndex misc_reg,
142  uint32_t &immediate) const;
143 
144 };
145 
147 {
148  protected:
150  uint32_t imm;
151 
152  MiscRegImmOp64(const char *mnem, ExtMachInst _machInst,
153  OpClass __opClass, MiscRegIndex _dest,
154  uint32_t _imm) :
155  MiscRegOp64(mnem, _machInst, __opClass, false),
156  dest(_dest), imm(_imm)
157  {}
158 
164  RegVal miscRegImm() const;
165 
166  std::string generateDisassembly(
167  Addr pc, const Loader::SymbolTable *symtab) const override;
168 };
169 
171 {
172  protected:
175  uint32_t imm;
176 
177  MiscRegRegImmOp64(const char *mnem, ExtMachInst _machInst,
178  OpClass __opClass, MiscRegIndex _dest,
179  IntRegIndex _op1, uint32_t _imm) :
180  MiscRegOp64(mnem, _machInst, __opClass, false),
181  dest(_dest), op1(_op1), imm(_imm)
182  {}
183 
184  std::string generateDisassembly(
185  Addr pc, const Loader::SymbolTable *symtab) const override;
186 };
187 
189 {
190  protected:
193  uint32_t imm;
194 
195  RegMiscRegImmOp64(const char *mnem, ExtMachInst _machInst,
196  OpClass __opClass, IntRegIndex _dest,
197  MiscRegIndex _op1, uint32_t _imm) :
198  MiscRegOp64(mnem, _machInst, __opClass, true),
199  dest(_dest), op1(_op1), imm(_imm)
200  {}
201 
202  std::string generateDisassembly(
203  Addr pc, const Loader::SymbolTable *symtab) const override;
204 };
205 
207 {
208  protected:
209  const std::string fullMnemonic;
211  const uint32_t imm;
212  const bool warning;
213 
214  public:
215  MiscRegImplDefined64(const char *mnem, ExtMachInst _machInst,
216  MiscRegIndex misc_reg, bool misc_read,
217  uint32_t _imm, const std::string full_mnem,
218  bool _warning) :
219  MiscRegOp64(mnem, _machInst, No_OpClass, misc_read),
220  fullMnemonic(full_mnem), miscReg(misc_reg), imm(_imm),
221  warning(_warning)
222  {
223  assert(miscReg == MISCREG_IMPDEF_UNIMPL);
224  }
225 
226  protected:
228  Trace::InstRecord *traceData) const override;
229 
230  std::string generateDisassembly(
231  Addr pc, const Loader::SymbolTable *symtab) const override;
232 };
233 
234 #endif
MiscRegIndex
Definition: miscregs.hh:56
IntRegIndex op2
Definition: misc64.hh:81
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: misc64.cc:42
IntRegIndex
Definition: intregs.hh:51
uint32_t imm
Definition: misc64.hh:175
IntRegIndex dest
Definition: misc64.hh:191
ImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, uint64_t _imm)
Definition: misc64.hh:48
virtual Fault execute(ExecContext *xc, Trace::InstRecord *traceData) const =0
uint64_t RegVal
Definition: types.hh:166
MiscRegOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, bool misc_read)
Definition: misc64.hh:123
This class is implementing the Base class for a generic AArch64 instruction which is making use of sy...
Definition: misc64.hh:118
RegMiscRegImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, MiscRegIndex _op1, uint32_t _imm)
Definition: misc64.hh:195
MiscRegIndex dest
Definition: misc64.hh:149
ThreadContext is the external interface to all thread state for anything outside of the CPU...
ExceptionLevel
Definition: types.hh:583
IntRegIndex op1
Definition: misc64.hh:174
Bitfield< 3, 2 > el
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
Definition: exec_context.hh:70
Bitfield< 4 > pc
uint64_t imm
Definition: misc64.hh:82
MiscRegImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, MiscRegIndex _dest, uint32_t _imm)
Definition: misc64.hh:152
uint64_t imm2
Definition: misc64.hh:63
IntRegIndex op1
Definition: misc64.hh:80
const MiscRegIndex miscReg
Definition: misc64.hh:210
IntRegIndex dest
Definition: misc64.hh:60
RegRegRegImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, IntRegIndex _op2, uint64_t _imm)
Definition: misc64.hh:84
const bool warning
Definition: misc64.hh:212
MiscRegImplDefined64(const char *mnem, ExtMachInst _machInst, MiscRegIndex misc_reg, bool misc_read, uint32_t _imm, const std::string full_mnem, bool _warning)
Definition: misc64.hh:215
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
uint32_t imm
Definition: misc64.hh:150
uint32_t imm
Definition: misc64.hh:193
ExceptionClass
Definition: types.hh:610
MiscRegIndex op1
Definition: misc64.hh:192
RegRegImmImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _op1, uint64_t _imm1, uint64_t _imm2)
Definition: misc64.hh:65
uint64_t imm
Definition: misc64.hh:46
UnknownOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass)
Definition: misc64.hh:99
MiscRegRegImmOp64(const char *mnem, ExtMachInst _machInst, OpClass __opClass, MiscRegIndex _dest, IntRegIndex _op1, uint32_t _imm)
Definition: misc64.hh:177
uint64_t imm1
Definition: misc64.hh:62
IntRegIndex dest
Definition: misc64.hh:79
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:89
MiscRegIndex dest
Definition: misc64.hh:173
const uint32_t imm
Definition: misc64.hh:211
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
const std::string fullMnemonic
Definition: misc64.hh:209
IntRegIndex op1
Definition: misc64.hh:61
bool miscRead
Definition: misc64.hh:121

Generated on Fri Jul 3 2020 15:42:39 for gem5 by doxygen 1.8.13