gem5 v24.0.0.0
Loading...
Searching...
No Matches
sme.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 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#include "arch/arm/insts/sme.hh"
39
40namespace gem5
41{
42
43namespace ArmISA
44{
45
46std::string
48 const loader::SymbolTable *symtab) const
49{
50 std::stringstream ss;
51 printMnemonic(ss, "", false);
52 ccprintf(ss, "#%d", imm);
53 ss << ", ";
54 printVecReg(ss, op1, true);
55 ss << ", ";
57 ss << ", ";
59 return ss.str();
60}
61
62std::string
64 const loader::SymbolTable *symtab) const
65{
66 std::stringstream ss;
67 printMnemonic(ss, "", false);
68 ss << ", ";
70 ss << ", ";
72 ss << ", ";
73 ccprintf(ss, "#%d", imm);
74 return ss.str();
75}
76
77std::string
79 const loader::SymbolTable *symtab) const
80{
81 std::stringstream ss;
82 printMnemonic(ss, "", false);
83 ccprintf(ss, "#%d", imm);
84 ss << ", ";
86 ss << ", ";
88 ss << ", ";
90 ss << ", ";
92 return ss.str();
93}
94
95std::string
97 const loader::SymbolTable *symtab) const
98{
99 std::stringstream ss;
100 printMnemonic(ss, "", false);
101 ccprintf(ss, "#%d", imm);
102 ss << ", ";
103 printIntReg(ss, op1, true);
104 ss << ", ";
105 printIntReg(ss, op2, true);
106 return ss.str();
107}
108
109std::string
111 const loader::SymbolTable *symtab) const
112{
113 std::stringstream ss;
114 printMnemonic(ss, "", false);
115 printVecReg(ss, op1, true);
116 ss << ", ";
117 ccprintf(ss, "#%d", imm);
118 ss << ", ";
120 ss << ", ";
122 return ss.str();
123}
124
125std::string
127 const loader::SymbolTable *symtab) const
128{
129 std::stringstream ss;
130 printMnemonic(ss, "", false);
131 ccprintf(ss, "#%d", imm);
132 ss << ", ";
133 printVecReg(ss, op1, true);
134 ss << ", ";
136 ss << ", ";
138 return ss.str();
139}
140
141std::string
143 const loader::SymbolTable *symtab) const
144{
145 std::stringstream ss;
146 printMnemonic(ss, "", false);
147 ccprintf(ss, "#%d", imm);
148 ss << ", ";
150 ss << ", ";
152 ss << ", ";
153 printVecReg(ss, op1, true);
154 ss << ", ";
155 printVecReg(ss, op2, true);
156 return ss.str();
157}
158
159std::string
161 const loader::SymbolTable *symtab) const
162{
163 std::stringstream ss;
164 printMnemonic(ss, "", false);
165 ss << ", ";
167 ss << ", ";
168 ccprintf(ss, "#%d", imm);
169 return ss.str();
170}
171
172std::string
174 const loader::SymbolTable *symtab) const
175{
176 std::stringstream ss;
178 ccprintf(ss, "#%d", imm);
179 return ss.str();
180}
181
182} // namespace ArmISA
183} // namespace gem5
void printMnemonic(std::ostream &os, const std::string &suffix="", bool withPred=true, bool withCond64=false, ConditionCode cond64=COND_UC) const
void printVecReg(std::ostream &os, RegIndex reg_idx, bool isSveVecReg=false) const
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).
void printVecPredReg(std::ostream &os, RegIndex reg_idx) const
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:47
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:63
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:78
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:96
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:110
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:126
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:142
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:160
std::string generateDisassembly(Addr pc, const loader::SymbolTable *symtab) const override
Internal function to generate disassembly string.
Definition sme.cc:173
Bitfield< 21 > ss
Definition misc_types.hh:60
Bitfield< 4 > pc
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
void ccprintf(cp::Print &print)
Definition cprintf.hh:130

Generated on Tue Jun 18 2024 16:23:56 for gem5 by doxygen 1.11.0