gem5  v21.2.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem64.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2013,2018, 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/mem64.hh"
39 
40 #include "arch/arm/tlb.hh"
41 #include "base/loader/symtab.hh"
42 #include "mem/request.hh"
43 
44 namespace gem5
45 {
46 
47 namespace ArmISA
48 {
49 
50 std::string
52 {
53  std::stringstream ss;
54  printMnemonic(ss, "", false);
55  ccprintf(ss, ", ");
57  return ss.str();
58 }
59 
60 
61 
62 void
63 Memory64::startDisassembly(std::ostream &os) const
64 {
65  printMnemonic(os, "", false);
68  }else{
70  }
71  ccprintf(os, ", [");
73 }
74 
75 void
76 Memory64::setExcAcRel(bool exclusive, bool acrel)
77 {
78  if (exclusive)
80  else
82  if (acrel) {
83  flags[IsWriteBarrier] = true;
84  flags[IsReadBarrier] = true;
85  }
86 }
87 
88 std::string
90  Addr pc, const loader::SymbolTable *symtab) const
91 {
92  std::stringstream ss;
94  if (imm)
95  ccprintf(ss, ", #%d", imm);
96  ccprintf(ss, "]");
97  return ss.str();
98 }
99 
100 std::string
102  Addr pc, const loader::SymbolTable *symtab) const
103 {
104  std::stringstream ss;
105  printMnemonic(ss, "", false);
106  printIntReg(ss, dest);
107  ccprintf(ss, ", ");
108  printIntReg(ss, dest2);
109  ccprintf(ss, ", [");
110  printIntReg(ss, base);
111  if (imm)
112  ccprintf(ss, ", #%d", imm);
113  ccprintf(ss, "]");
114  return ss.str();
115 }
116 
117 std::string
119  Addr pc, const loader::SymbolTable *symtab) const
120 {
121  std::stringstream ss;
122  printMnemonic(ss, "", false);
124  ccprintf(ss, ", ");
125  printIntReg(ss, dest);
126  ccprintf(ss, ", ");
127  printIntReg(ss, dest2);
128  ccprintf(ss, ", [");
129  printIntReg(ss, base);
130  if (imm)
131  ccprintf(ss, ", #%d", imm);
132  ccprintf(ss, "]");
133  return ss.str();
134 }
135 
136 std::string
138  Addr pc, const loader::SymbolTable *symtab) const
139 {
140  std::stringstream ss;
142  ccprintf(ss, ", #%d]!", imm);
143  return ss.str();
144 }
145 
146 std::string
148  Addr pc, const loader::SymbolTable *symtab) const
149 {
150  std::stringstream ss;
152  if (imm)
153  ccprintf(ss, "], #%d", imm);
154  ccprintf(ss, "]");
155  return ss.str();
156 }
157 
158 std::string
160  Addr pc, const loader::SymbolTable *symtab) const
161 {
162  std::stringstream ss;
165  ccprintf(ss, "]");
166  return ss.str();
167 }
168 
169 std::string
171  Addr pc, const loader::SymbolTable *symtab) const
172 {
173  std::stringstream ss;
175  ccprintf(ss, "]");
176  return ss.str();
177 }
178 
179 std::string
181  Addr pc, const loader::SymbolTable *symtab) const
182 {
183  std::stringstream ss;
184  printMnemonic(ss, "", false);
185  printIntReg(ss, dest);
186  ccprintf(ss, ", ");
188  ccprintf(ss, ", [");
189  printIntReg(ss, base);
190  ccprintf(ss, "]");
191  return ss.str();
192 }
193 
194 std::string
196  Addr pc, const loader::SymbolTable *symtab) const
197 {
198  std::stringstream ss;
199  printMnemonic(ss, "", false);
200  printIntReg(ss, dest);
201  ccprintf(ss, ", #%d", pc + imm);
202  return ss.str();
203 }
204 
205 std::string
207  Addr pc, const loader::SymbolTable *symtab) const
208 {
209  std::stringstream ss;
210  printMnemonic(ss, "", false);
212  ccprintf(ss, ", ");
214  ccprintf(ss, ", ");
215  printIntReg(ss, dest);
216  ccprintf(ss, ", ");
217  printIntReg(ss, dest2);
218  ccprintf(ss, ", [");
219  printIntReg(ss, base);
220  ccprintf(ss, "]");
221  return ss.str();
222 }
223 
224 } // namespace ArmISA
225 } // namespace gem5
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::MemoryDImm64::dest2
IntRegIndex dest2
Definition: mem64.hh:172
gem5::ArmISA::Memory64::setExcAcRel
void setExcAcRel(bool exclusive, bool acrel)
Definition: mem64.cc:76
gem5::ArmISA::MemoryReg64::offset
IntRegIndex offset
Definition: mem64.hh:230
gem5::ArmISA::MemoryLiteral64::imm
int64_t imm
Definition: mem64.hh:276
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::ArmISA::MemoryAtomicPair64::dest2
IntRegIndex dest2
Definition: mem64.hh:290
gem5::ArmISA::ArmStaticInst::printMnemonic
void printMnemonic(std::ostream &os, const std::string &suffix="", bool withPred=true, bool withCond64=false, ConditionCode cond64=COND_UC) const
Definition: static_inst.cc:377
gem5::ArmISA::Memory64::dest
IntRegIndex dest
Definition: mem64.hh:119
gem5::loader::SymbolTable
Definition: symtab.hh:65
tlb.hh
gem5::ArmISA::MMU::AllowUnaligned
@ AllowUnaligned
Definition: mmu.hh:108
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
request.hh
gem5::ArmISA::SysDC64::base
IntRegIndex base
Definition: mem64.hh:55
gem5::ccprintf
void ccprintf(cp::Print &print)
Definition: cprintf.hh:130
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::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::MemoryRaw64::generateDisassembly
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition: mem64.cc:170
gem5::ArmISA::ArmStaticInst::printExtendOperand
void printExtendOperand(bool firstOperand, std::ostream &os, IntRegIndex rm, ArmExtendType type, int64_t shiftAmt) const
Definition: static_inst.cc:562
gem5::ArmISA::Memory64::base
IntRegIndex base
Definition: mem64.hh:120
gem5::StaticInst::isDataPrefetch
bool isDataPrefetch() const
Definition: static_inst.hh:173
mem64.hh
gem5::StaticInst::flags
std::bitset< Num_Flags > flags
Flag values for this instruction.
Definition: static_inst.hh:102
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::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
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::ArmISA::MemoryEx64::result
IntRegIndex result
Definition: mem64.hh:261
gem5::Request::LLSC
@ LLSC
The request is a Load locked/store conditional.
Definition: request.hh:156
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::StaticInst::isInstPrefetch
bool isInstPrefetch() const
Definition: static_inst.hh:172
gem5::ArmISA::MemoryAtomicPair64::result
IntRegIndex result
Definition: mem64.hh:291
gem5::X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:809
gem5::ArmISA::ss
Bitfield< 21 > ss
Definition: misc_types.hh:60
gem5::ArmISA::MemoryAtomicPair64::result2
IntRegIndex result2
Definition: mem64.hh:292
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::ArmISA::MemoryDImmEx64::result
IntRegIndex result
Definition: mem64.hh:188
gem5::ArmISA::MemoryReg64::shiftAmt
uint64_t shiftAmt
Definition: mem64.hh:232
symtab.hh
gem5::ArmISA::ArmStaticInst::printIntReg
void printIntReg(std::ostream &os, RegIndex reg_idx, uint8_t opWidth=0) const
Print a register name for disassembly given the unique dependence tag number (FP or int).
Definition: static_inst.cc:299
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: tlb.cc:60
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::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::ArmStaticInst::printPFflags
void printPFflags(std::ostream &os, int flag) const
Definition: static_inst.cc:334

Generated on Tue Dec 21 2021 11:34:20 for gem5 by doxygen 1.8.17