gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tme64.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020-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  #include "arch/arm/insts/tme64.hh"
39  #include "debug/ArmTme.hh"
40 
41  #include <sstream>
42 
43 using namespace ArmISA;
44 
45 namespace ArmISAInst {
46 
47 std::string
48 TmeImmOp64::generateDisassembly(
49  Addr pc, const Loader::SymbolTable *symtab) const
50 {
51  std::stringstream ss;
52  printMnemonic(ss, "", false);
53  ccprintf(ss, "#0x%x", imm);
54  return ss.str();
55 }
56 
57 std::string
58 TmeRegNone64::generateDisassembly(
59  Addr pc, const Loader::SymbolTable *symtab) const
60 {
61  std::stringstream ss;
62  printMnemonic(ss);
63  printIntReg(ss, dest);
64  return ss.str();
65 }
66 
67 std::string
68 MicroTmeBasic64::generateDisassembly(
69  Addr pc, const Loader::SymbolTable *symtab) const
70 {
71  std::stringstream ss;
72  printMnemonic(ss);
73  return ss.str();
74 }
75 
76 MicroTfence64::MicroTfence64(ExtMachInst machInst)
77  : MicroTmeBasic64("utfence", machInst, MemReadOp)
78 {
79  _numSrcRegs = 0;
80  _numDestRegs = 0;
81  _numFPDestRegs = 0;
82  _numVecDestRegs = 0;
84  _numIntDestRegs = 0;
85  _numCCDestRegs = 0;
86  flags[IsMicroop] = true;
87  flags[IsReadBarrier] = true;
88  flags[IsWriteBarrier] = true;
89 }
90 
91 Fault
93  ExecContext *xc, Trace::InstRecord *traceData) const
94 {
95  return NoFault;
96 }
97 
98 Fault
100  Trace::InstRecord *traceData) const
101 {
102  panic("tfence should not have memory semantics");
103 
104  return NoFault;
105 }
106 
107 Fault
109  Trace::InstRecord *traceData) const
110 {
111  panic("tfence should not have memory semantics");
112 
113  return NoFault;
114 }
115 
117  : TmeRegNone64("tstart", machInst, MemReadOp, _dest)
118 {
120  nullptr,
121  reinterpret_cast<RegIdArrayPtr>(
122  &std::remove_pointer_t<decltype(this)>::destRegIdxArr));
123  ;
124 
125  _numSrcRegs = 0;
126  _numDestRegs = 0;
127  _numFPDestRegs = 0;
128  _numVecDestRegs = 0;
130  _numIntDestRegs = 0;
131  _numCCDestRegs = 0;
133  _numIntDestRegs++;
134  flags[IsHtmStart] = true;
135  flags[IsInteger] = true;
136  flags[IsLoad] = true;
137  flags[IsMicroop] = true;
138  flags[IsNonSpeculative] = true;
139 }
140 
141 Fault
143  ExecContext *xc, Trace::InstRecord *traceData) const
144 {
145  panic("TME is not supported with atomic memory");
146 
147  return NoFault;
148 }
149 
151  : TmeRegNone64("ttest", machInst, MemReadOp, _dest)
152 {
154  nullptr,
155  reinterpret_cast<RegIdArrayPtr>(
156  &std::remove_pointer_t<decltype(this)>::destRegIdxArr));
157  ;
158 
159  _numSrcRegs = 0;
160  _numDestRegs = 0;
161  _numFPDestRegs = 0;
162  _numVecDestRegs = 0;
164  _numIntDestRegs = 0;
165  _numCCDestRegs = 0;
167  _numIntDestRegs++;
168  flags[IsInteger] = true;
169  flags[IsMicroop] = true;
170 }
171 
172 Tcancel64::Tcancel64(ExtMachInst machInst, uint64_t _imm)
173  : TmeImmOp64("tcancel", machInst, MemReadOp, _imm)
174 {
175  _numSrcRegs = 0;
176  _numDestRegs = 0;
177  _numFPDestRegs = 0;
178  _numVecDestRegs = 0;
180  _numIntDestRegs = 0;
181  _numCCDestRegs = 0;
182  flags[IsLoad] = true;
183  flags[IsMicroop] = true;
184  flags[IsNonSpeculative] = true;
185  flags[IsHtmCancel] = true;
186 }
187 
188 Fault
190  ExecContext *xc, Trace::InstRecord *traceData) const
191 {
192  panic("TME is not supported with atomic memory");
193 
194  return NoFault;
195 }
196 
197 MacroTmeOp::MacroTmeOp(const char *mnem,
198  ExtMachInst _machInst,
199  OpClass __opClass) :
200  PredMacroOp(mnem, machInst, __opClass) {
201  _numSrcRegs = 0;
202  _numDestRegs = 0;
203  _numFPDestRegs = 0;
204  _numVecDestRegs = 0;
206  _numIntDestRegs = 0;
207  _numCCDestRegs = 0;
208 
209  numMicroops = 0;
210  microOps = nullptr;
211 }
212 
214  : MicroTmeBasic64("utcommit", machInst, MemReadOp)
215 {
216  _numSrcRegs = 0;
217  _numDestRegs = 0;
218  _numFPDestRegs = 0;
219  _numVecDestRegs = 0;
221  _numIntDestRegs = 0;
222  _numCCDestRegs = 0;
223  flags[IsHtmStop] = true;
224  flags[IsLoad] = true;
225  flags[IsMicroop] = true;
226  flags[IsNonSpeculative] = true;
227 }
228 
229 Fault
231 {
232  panic("TME is not supported with atomic memory");
233 
234  return NoFault;
235 }
236 
238  MacroTmeOp("tcommit", machInst, MemReadOp)
239 {
240  numMicroops = 2;
242 
243  microOps[0] = new ArmISAInst::MicroTfence64(_machInst);
246 
247  microOps[1] = new ArmISAInst::MicroTcommit64(_machInst);
249  microOps[1]->setLastMicroop();
250 }
251 
252 } // namespace
ArmISAInst::TmeImmOp64
Definition: tme64.hh:68
StaticInst::_numIntDestRegs
int8_t _numIntDestRegs
Definition: static_inst.hh:115
StaticInst::_numVecDestRegs
int8_t _numVecDestRegs
To use in architectures with vector register file.
Definition: static_inst.hh:121
StaticInst::flags
std::bitset< Num_Flags > flags
Flag values for this instruction.
Definition: static_inst.hh:100
MemReadOp
static const OpClass MemReadOp
Definition: op_class.hh:99
ArmISAInst::Tcancel64::Tcancel64
Tcancel64(ArmISA::ExtMachInst, uint64_t)
Definition: tme64.cc:172
ArmISAInst::MicroTcommit64::MicroTcommit64
MicroTcommit64(ArmISA::ExtMachInst)
Definition: tme64.cc:213
ArmISAInst::MicroTfence64
Definition: tme64.hh:132
Loader::SymbolTable
Definition: symtab.hh:58
ArmISA::IntRegIndex
IntRegIndex
Definition: intregs.hh:51
Trace::InstRecord
Definition: insttracer.hh:55
ArmISAInst::MicroTfence64::completeAcc
Fault completeAcc(PacketPtr, ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:108
ArmISAInst::Tcommit64::Tcommit64
Tcommit64(ArmISA::ExtMachInst _machInst)
Definition: tme64.cc:237
tme64.hh
ArmISA
Definition: ccregs.hh:41
RegId
Register ID: describe an architectural register with its class and index.
Definition: reg_class.hh:75
ArmISAInst::MicroTfence64::initiateAcc
Fault initiateAcc(ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:99
StaticInst::_numVecElemDestRegs
int8_t _numVecElemDestRegs
Definition: static_inst.hh:122
ArmISAInst::Tstart64::destRegIdxArr
RegId destRegIdxArr[1]
Definition: tme64.hh:101
StaticInst::setDelayedCommit
void setDelayedCommit()
Definition: static_inst.hh:225
ArmISAInst::MicroTcommit64
Definition: tme64.hh:142
ArmISAInst::MicroTmeBasic64
Definition: tme64.hh:56
ArmISA::ss
Bitfield< 21 > ss
Definition: miscregs_types.hh:56
ArmISAInst::Tstart64::Tstart64
Tstart64(ArmISA::ExtMachInst, ArmISA::IntRegIndex)
Definition: tme64.cc:116
StaticInst::setRegIdxArrays
void setRegIdxArrays(RegIdArrayPtr src, RegIdArrayPtr dest)
Set the pointers which point to the arrays of source and destination register indices.
Definition: static_inst.hh:272
ArmISA::imm
Bitfield< 7, 0 > imm
Definition: types.hh:141
ArmISAInst::TmeRegNone64::dest
ArmISA::IntRegIndex dest
Definition: tme64.hh:86
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:240
ArmISAInst::TmeRegNone64
Definition: tme64.hh:83
StaticInst::_numCCDestRegs
int8_t _numCCDestRegs
Definition: static_inst.hh:116
ArmISAInst
Definition: tme64.cc:45
StaticInst::setDestRegIdx
void setDestRegIdx(int i, const RegId &val)
Definition: static_inst.hh:237
ArmISAInst::MicroTfence64::execute
Fault execute(ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:92
ExecContext
The ExecContext is an abstract base class the provides the interface used by the ISA to manipulate th...
Definition: exec_context.hh:70
StaticInst::RegIdArrayPtr
RegId(StaticInst::*)[] RegIdArrayPtr
Definition: static_inst.hh:88
ArmISA::PredMacroOp
Base class for predicated macro-operations.
Definition: pred_inst.hh:336
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISAInst::MacroTmeOp
Definition: tme64.hh:153
ArmISAInst::Ttest64::destRegIdxArr
RegId destRegIdxArr[1]
Definition: tme64.hh:114
ArmISAInst::MacroTmeOp::MacroTmeOp
MacroTmeOp(const char *mnem, ArmISA::ExtMachInst _machInst, OpClass __opClass)
Definition: tme64.cc:197
IntRegClass
@ IntRegClass
Integer register.
Definition: reg_class.hh:53
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:127
ArmISAInst::Tstart64::execute
Fault execute(ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:142
ArmISAInst::MicroTcommit64::execute
Fault execute(ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:230
StaticInst::_numSrcRegs
int8_t _numSrcRegs
See numSrcRegs().
Definition: static_inst.hh:106
StaticInst::setFirstMicroop
void setFirstMicroop()
Definition: static_inst.hh:223
ArmISA::PredMacroOp::numMicroops
uint32_t numMicroops
Definition: pred_inst.hh:340
RefCountingPtr< StaticInst >
StaticInst::_numFPDestRegs
int8_t _numFPDestRegs
The following are used to track physical register usage for machines with separate int & FP reg files...
Definition: static_inst.hh:114
ArmISAInst::Tcancel64::execute
Fault execute(ExecContext *, Trace::InstRecord *) const
Definition: tme64.cc:189
StaticInst::setLastMicroop
void setLastMicroop()
Definition: static_inst.hh:224
StaticInst::_numDestRegs
int8_t _numDestRegs
See numDestRegs().
Definition: static_inst.hh:109
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
ArmISAInst::Ttest64::Ttest64
Ttest64(ArmISA::ExtMachInst, ArmISA::IntRegIndex)
Definition: tme64.cc:150
ArmISA::PredMacroOp::microOps
StaticInstPtr * microOps
Definition: pred_inst.hh:341
MipsISA::ExtMachInst
uint64_t ExtMachInst
Definition: types.hh:39

Generated on Tue Mar 23 2021 19:41:19 for gem5 by doxygen 1.8.17