gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
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  * Authors: Giacomo Gabrielli
38  */
39 
40 #ifndef __ARCH_ARM_SVE_MEM_HH__
41 #define __ARCH_ARM_SVE_MEM_HH__
42 
44 #include "arch/arm/tlb.hh"
45 
46 namespace ArmISA
47 {
48 
50 {
51  protected:
54  uint64_t imm;
55 
57  bool baseIsSP;
58 
59  unsigned memAccessFlags;
60 
61  SveMemVecFillSpill(const char *mnem, ExtMachInst _machInst,
62  OpClass __opClass, IntRegIndex _dest,
63  IntRegIndex _base, uint64_t _imm)
64  : ArmStaticInst(mnem, _machInst, __opClass),
65  dest(_dest), base(_base), imm(_imm),
66  memAccessFlags(ArmISA::TLB::AllowUnaligned | ArmISA::TLB::MustBeOne)
67  {
68  baseIsSP = isSP(_base);
69  }
70 
71  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
72 };
73 
75 {
76  protected:
79  uint64_t imm;
80 
82  bool baseIsSP;
83 
84  unsigned memAccessFlags;
85 
86  SveMemPredFillSpill(const char *mnem, ExtMachInst _machInst,
87  OpClass __opClass, IntRegIndex _dest,
88  IntRegIndex _base, uint64_t _imm)
89  : ArmStaticInst(mnem, _machInst, __opClass),
90  dest(_dest), base(_base), imm(_imm),
91  memAccessFlags(ArmISA::TLB::AllowUnaligned | ArmISA::TLB::MustBeOne)
92  {
93  baseIsSP = isSP(_base);
94  }
95 
96  std::string generateDisassembly(Addr pc, const 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 | ArmISA::TLB::MustBeOne)
118  {
119  baseIsSP = isSP(_base);
120  }
121 
122  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
123 };
124 
126 {
127  protected:
131  uint64_t imm;
132 
134  bool baseIsSP;
135 
136  unsigned memAccessFlags;
137 
138  SveContigMemSI(const char *mnem, ExtMachInst _machInst, OpClass __opClass,
139  IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base,
140  uint64_t _imm)
141  : ArmStaticInst(mnem, _machInst, __opClass),
142  dest(_dest), gp(_gp), base(_base), imm(_imm),
143  memAccessFlags(ArmISA::TLB::AllowUnaligned | ArmISA::TLB::MustBeOne)
144  {
145  baseIsSP = isSP(_base);
146  }
147 
148  std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const;
149 };
150 
151 } // namespace ArmISA
152 
153 #endif // __ARCH_ARM_SVE_MEM_HH__
IntRegIndex
Definition: intregs.hh:53
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:57
IntRegIndex base
Definition: sve_mem.hh:104
Definition: ccregs.hh:42
SveContigMemSI(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _gp, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:138
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:134
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:82
IntRegIndex offset
Definition: sve_mem.hh:105
IntRegIndex base
Definition: sve_mem.hh:130
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
SveMemVecFillSpill(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:61
IntRegIndex dest
Definition: sve_mem.hh:128
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:136
SveMemPredFillSpill(const char *mnem, ExtMachInst _machInst, OpClass __opClass, IntRegIndex _dest, IntRegIndex _base, uint64_t _imm)
Definition: sve_mem.hh:86
TheISA::ExtMachInst ExtMachInst
Binary extended machine instruction type.
Definition: static_inst.hh:87
bool baseIsSP
True if the base register is SP (used for SP alignment checking).
Definition: sve_mem.hh:108
std::string generateDisassembly(Addr pc, const SymbolTable *symtab) const
Internal function to generate disassembly string.
Definition: sve_mem.cc:46
static bool isSP(IntRegIndex reg)
Definition: intregs.hh:517
unsigned memAccessFlags
Definition: sve_mem.hh:110

Generated on Fri Feb 28 2020 16:26:57 for gem5 by doxygen 1.8.13