gem5  v20.0.0.3
sve_mem.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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_SVE_MEM_HH__
39 #define __ARCH_ARM_SVE_MEM_HH__
40 
42 #include "arch/arm/tlb.hh"
43 
44 namespace ArmISA
45 {
46 
48 {
49  protected:
52  uint64_t imm;
53 
55  bool baseIsSP;
56 
57  unsigned memAccessFlags;
58 
59  SveMemVecFillSpill(const char *mnem, ExtMachInst _machInst,
60  OpClass __opClass, IntRegIndex _dest,
61  IntRegIndex _base, uint64_t _imm)
62  : ArmStaticInst(mnem, _machInst, __opClass),
63  dest(_dest), base(_base), imm(_imm),
64  memAccessFlags(ArmISA::TLB::AllowUnaligned)
65  {
66  baseIsSP = isSP(_base);
67  }
68 
69  std::string generateDisassembly(
70  Addr pc, const Loader::SymbolTable *symtab) const;
71 };
72 
74 {
75  protected:
78  uint64_t imm;
79 
81  bool baseIsSP;
82 
83  unsigned memAccessFlags;
84 
85  SveMemPredFillSpill(const char *mnem, ExtMachInst _machInst,
86  OpClass __opClass, IntRegIndex _dest,
87  IntRegIndex _base, uint64_t _imm)
88  : ArmStaticInst(mnem, _machInst, __opClass),
89  dest(_dest), base(_base), imm(_imm),
90  memAccessFlags(ArmISA::TLB::AllowUnaligned)
91  {
92  baseIsSP = isSP(_base);
93  }
94 
95  std::string generateDisassembly(
96  Addr pc, const Loader::SymbolTable *symtab) const;
97 };
98 
100 {
101  protected:
106 
108  bool baseIsSP;
109 
110  unsigned memAccessFlags;
111 
112  SveContigMemSS(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
113  IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base,
114  IntRegIndex _offset)
115  : ArmStaticInst(mnem, _machInst, __opClass),
116  dest(_dest), gp(_gp), base(_base), offset(_offset),
117  memAccessFlags(ArmISA::TLB::AllowUnaligned)
118  {
119  baseIsSP = isSP(_base);
120  }
121 
122  std::string generateDisassembly(
123  Addr pc, const Loader::SymbolTable *symtab) const;
124 };
125 
127 {
128  protected:
132  uint64_t imm;
133 
135  bool baseIsSP;
136 
137  unsigned memAccessFlags;
138 
139  SveContigMemSI(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
140  IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base,
141  uint64_t _imm)
142  : ArmStaticInst(mnem, _machInst, __opClass),
143  dest(_dest), gp(_gp), base(_base), imm(_imm),
144  memAccessFlags(ArmISA::TLB::AllowUnaligned)
145  {
146  baseIsSP = isSP(_base);
147  }
148 
149  std::string generateDisassembly(
150  Addr pc, const Loader::SymbolTable *symtab) const;
151 };
152 
153 } // namespace ArmISA
154 
155 #endif // __ARCH_ARM_SVE_MEM_HH__
IntRegIndex
Definition: intregs.hh:51
std::string generateDisassembly(Addr pc, const Loader::SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: sve_mem.cc:44
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:55
IntRegIndex base
Definition: sve_mem.hh:104
Definition: ccregs.hh:41
SveContigMemSI(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:139
IntRegIndex dest
Definition: sve_mem.hh:102
Bitfield< 4 > pc
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:135
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:81
IntRegIndex offset
Definition: sve_mem.hh:105
IntRegIndex base
Definition: sve_mem.hh:131
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
SveMemVecFillSpill(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:59
IntRegIndex dest
Definition: sve_mem.hh:129
SveContigMemSS(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base, IntRegIndex _offset)
Definition: sve_mem.hh:112
unsigned memAccessFlags
Definition: sve_mem.hh:137
SveMemPredFillSpill(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:85
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:89
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:108
static bool isSP(IntRegIndex reg)
Definition: intregs.hh:515
unsigned memAccessFlags
Definition: sve_mem.hh:110

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