]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/llvm/lib/Target/AArch64/AArch64SchedA57.td
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm-project / llvm / lib / Target / AArch64 / AArch64SchedA57.td
1 //=- AArch64SchedA57.td - ARM Cortex-A57 Scheduling Defs -----*- tablegen -*-=//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines the machine model for ARM Cortex-A57 to support
10 // instruction scheduling and other instruction cost heuristics.
11 //
12 //===----------------------------------------------------------------------===//
13
14 //===----------------------------------------------------------------------===//
15 // The Cortex-A57 is a traditional superscalar microprocessor with a
16 // conservative 3-wide in-order stage for decode and dispatch. Combined with the
17 // much wider out-of-order issue stage, this produced a need to carefully
18 // schedule micro-ops so that all three decoded each cycle are successfully
19 // issued as the reservation station(s) simply don't stay occupied for long.
20 // Therefore, IssueWidth is set to the narrower of the two at three, while still
21 // modeling the machine as out-of-order.
22
23 def CortexA57Model : SchedMachineModel {
24   let IssueWidth        =   3; // 3-way decode and dispatch
25   let MicroOpBufferSize = 128; // 128 micro-op re-order buffer
26   let LoadLatency       =   4; // Optimistic load latency
27   let MispredictPenalty =  14; // Fetch + Decode/Rename/Dispatch + Branch
28
29   // Enable partial & runtime unrolling. The magic number is chosen based on
30   // experiments and benchmarking data.
31   let LoopMicroOpBufferSize = 16;
32   let CompleteModel = 1;
33
34   list<Predicate> UnsupportedFeatures = !listconcat(SVEUnsupported.F,
35                                                     PAUnsupported.F);
36 }
37
38 //===----------------------------------------------------------------------===//
39 // Define each kind of processor resource and number available on Cortex-A57.
40 // Cortex A-57 has 8 pipelines that each has its own 8-entry queue where
41 // micro-ops wait for their operands and then issue out-of-order.
42
43 def A57UnitB : ProcResource<1>;  // Type B micro-ops
44 def A57UnitI : ProcResource<2>;  // Type I micro-ops
45 def A57UnitM : ProcResource<1>;  // Type M micro-ops
46 def A57UnitL : ProcResource<1>;  // Type L micro-ops
47 def A57UnitS : ProcResource<1>;  // Type S micro-ops
48 def A57UnitX : ProcResource<1>;  // Type X micro-ops
49 def A57UnitW : ProcResource<1>;  // Type W micro-ops
50 let SchedModel = CortexA57Model in {
51   def A57UnitV : ProcResGroup<[A57UnitX, A57UnitW]>;    // Type V micro-ops
52 }
53
54 let SchedModel = CortexA57Model in {
55
56 //===----------------------------------------------------------------------===//
57 // Define customized scheduler read/write types specific to the Cortex-A57.
58
59 include "AArch64SchedA57WriteRes.td"
60
61 //===----------------------------------------------------------------------===//
62 // Map the target-defined scheduler read/write resources and latency for
63 // Cortex-A57. The Cortex-A57 types are directly associated with resources, so
64 // defining the aliases precludes the need for mapping them using WriteRes. The
65 // aliases are sufficient for creating a coarse, working model. As the model
66 // evolves, InstRWs will be used to override some of these SchedAliases.
67 //
68 // WARNING: Using SchedAliases is convenient and works well for latency and
69 //          resource lookup for instructions. However, this creates an entry in
70 //          AArch64WriteLatencyTable with a WriteResourceID of 0, breaking
71 //          any SchedReadAdvance since the lookup will fail.
72
73 def : SchedAlias<WriteImm,   A57Write_1cyc_1I>;
74 def : SchedAlias<WriteI,     A57Write_1cyc_1I>;
75 def : SchedAlias<WriteISReg, A57Write_2cyc_1M>;
76 def : SchedAlias<WriteIEReg, A57Write_2cyc_1M>;
77 def : SchedAlias<WriteExtr,  A57Write_1cyc_1I>;
78 def : SchedAlias<WriteIS,    A57Write_1cyc_1I>;
79 def : SchedAlias<WriteID32,  A57Write_19cyc_1M>;
80 def : SchedAlias<WriteID64,  A57Write_35cyc_1M>;
81 def : WriteRes<WriteIM32, [A57UnitM]> { let Latency = 3; }
82 def : WriteRes<WriteIM64, [A57UnitM]> { let Latency = 5; }
83 def : SchedAlias<WriteBr,    A57Write_1cyc_1B>;
84 def : SchedAlias<WriteBrReg, A57Write_1cyc_1B>;
85 def : SchedAlias<WriteLD,    A57Write_4cyc_1L>;
86 def : SchedAlias<WriteST,    A57Write_1cyc_1S>;
87 def : SchedAlias<WriteSTP,   A57Write_1cyc_1S>;
88 def : SchedAlias<WriteAdr,   A57Write_1cyc_1I>;
89 def : SchedAlias<WriteLDIdx, A57Write_4cyc_1I_1L>;
90 def : SchedAlias<WriteSTIdx, A57Write_1cyc_1I_1S>;
91 def : SchedAlias<WriteF,     A57Write_3cyc_1V>;
92 def : SchedAlias<WriteFCmp,  A57Write_3cyc_1V>;
93 def : SchedAlias<WriteFCvt,  A57Write_5cyc_1V>;
94 def : SchedAlias<WriteFCopy, A57Write_5cyc_1L>;
95 def : SchedAlias<WriteFImm,  A57Write_3cyc_1V>;
96 def : SchedAlias<WriteFMul,  A57Write_5cyc_1V>;
97 def : SchedAlias<WriteFDiv,  A57Write_17cyc_1W>;
98 def : SchedAlias<WriteV,     A57Write_3cyc_1V>;
99 def : SchedAlias<WriteVLD,   A57Write_5cyc_1L>;
100 def : SchedAlias<WriteVST,   A57Write_1cyc_1S>;
101
102 def : WriteRes<WriteAtomic,  []> { let Unsupported = 1; }
103
104 def : WriteRes<WriteSys,     []> { let Latency = 1; }
105 def : WriteRes<WriteBarrier, []> { let Latency = 1; }
106 def : WriteRes<WriteHint,    []> { let Latency = 1; }
107
108 def : WriteRes<WriteLDHi,    []> { let Latency = 4; }
109
110 // Forwarding logic is only modeled for multiply and accumulate
111 def : ReadAdvance<ReadI,       0>;
112 def : ReadAdvance<ReadISReg,   0>;
113 def : ReadAdvance<ReadIEReg,   0>;
114 def : ReadAdvance<ReadIM,      0>;
115 def : ReadAdvance<ReadIMA,     2, [WriteIM32, WriteIM64]>;
116 def : ReadAdvance<ReadID,      0>;
117 def : ReadAdvance<ReadExtrHi,  0>;
118 def : ReadAdvance<ReadAdrBase, 0>;
119 def : ReadAdvance<ReadVLD,     0>;
120
121
122 //===----------------------------------------------------------------------===//
123 // Specialize the coarse model by associating instruction groups with the
124 // subtarget-defined types. As the modeled is refined, this will override most
125 // of the above ShchedAlias mappings.
126
127 // Miscellaneous
128 // -----------------------------------------------------------------------------
129
130 def : InstRW<[WriteI], (instrs COPY)>;
131
132
133 // Branch Instructions
134 // -----------------------------------------------------------------------------
135
136 def : InstRW<[A57Write_1cyc_1B_1I], (instrs BL)>;
137 def : InstRW<[A57Write_2cyc_1B_1I], (instrs BLR)>;
138
139
140 // Shifted Register with Shift == 0
141 // ----------------------------------------------------------------------------
142
143 def A57WriteISReg : SchedWriteVariant<[
144        SchedVar<RegShiftedPred, [WriteISReg]>,
145        SchedVar<NoSchedPred, [WriteI]>]>;
146 def : InstRW<[A57WriteISReg], (instregex ".*rs$")>;
147
148
149 // Divide and Multiply Instructions
150 // -----------------------------------------------------------------------------
151
152 // Multiply high
153 def : InstRW<[A57Write_6cyc_1M], (instrs SMULHrr, UMULHrr)>;
154
155
156 // Miscellaneous Data-Processing Instructions
157 // -----------------------------------------------------------------------------
158
159 def : InstRW<[A57Write_1cyc_1I],    (instrs EXTRWrri)>;
160 def : InstRW<[A57Write_3cyc_1I_1M], (instrs EXTRXrri)>;
161 def : InstRW<[A57Write_2cyc_1M],    (instregex "BFM")>;
162
163
164 // Cryptography Extensions
165 // -----------------------------------------------------------------------------
166
167 def A57ReadAES  : SchedReadAdvance<3, [A57Write_3cyc_1W]>;
168 def : InstRW<[A57Write_3cyc_1W], (instregex "^AES[DE]")>;
169 def : InstRW<[A57Write_3cyc_1W, A57ReadAES], (instregex "^AESI?MC")>;
170 def : InstRW<[A57Write_6cyc_2V], (instregex "^SHA1SU0")>;
171 def : InstRW<[A57Write_3cyc_1W], (instregex "^SHA1(H|SU1)")>;
172 def : InstRW<[A57Write_6cyc_2W], (instregex "^SHA1[CMP]")>;
173 def : InstRW<[A57Write_3cyc_1W], (instregex "^SHA256SU0")>;
174 def : InstRW<[A57Write_6cyc_2W], (instregex "^SHA256(H|H2|SU1)")>;
175 def : InstRW<[A57Write_3cyc_1W], (instregex "^CRC32")>;
176
177
178 // Vector Load
179 // -----------------------------------------------------------------------------
180
181 def : InstRW<[A57Write_8cyc_1L_1V],           (instregex "LD1i(8|16|32)$")>;
182 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr], (instregex "LD1i(8|16|32)_POST$")>;
183 def : InstRW<[A57Write_5cyc_1L],            (instregex "LD1i(64)$")>;
184 def : InstRW<[A57Write_5cyc_1L, WriteAdr],  (instregex "LD1i(64)_POST$")>;
185
186 def : InstRW<[A57Write_8cyc_1L_1V],           (instregex "LD1Rv(8b|4h|2s)$")>;
187 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr], (instregex "LD1Rv(8b|4h|2s)_POST$")>;
188 def : InstRW<[A57Write_5cyc_1L],            (instregex "LD1Rv(1d)$")>;
189 def : InstRW<[A57Write_5cyc_1L, WriteAdr],  (instregex "LD1Rv(1d)_POST$")>;
190 def : InstRW<[A57Write_8cyc_1L_1V],           (instregex "LD1Rv(16b|8h|4s|2d)$")>;
191 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr], (instregex "LD1Rv(16b|8h|4s|2d)_POST$")>;
192
193 def : InstRW<[A57Write_5cyc_1L],              (instregex "LD1Onev(8b|4h|2s|1d)$")>;
194 def : InstRW<[A57Write_5cyc_1L, WriteAdr],    (instregex "LD1Onev(8b|4h|2s|1d)_POST$")>;
195 def : InstRW<[A57Write_5cyc_1L],              (instregex "LD1Onev(16b|8h|4s|2d)$")>;
196 def : InstRW<[A57Write_5cyc_1L, WriteAdr],    (instregex "LD1Onev(16b|8h|4s|2d)_POST$")>;
197 def : InstRW<[A57Write_5cyc_1L],              (instregex "LD1Twov(8b|4h|2s|1d)$")>;
198 def : InstRW<[A57Write_5cyc_1L, WriteAdr],    (instregex "LD1Twov(8b|4h|2s|1d)_POST$")>;
199 def : InstRW<[A57Write_6cyc_2L],             (instregex "LD1Twov(16b|8h|4s|2d)$")>;
200 def : InstRW<[A57Write_6cyc_2L, WriteAdr],   (instregex "LD1Twov(16b|8h|4s|2d)_POST$")>;
201 def : InstRW<[A57Write_6cyc_2L],             (instregex "LD1Threev(8b|4h|2s|1d)$")>;
202 def : InstRW<[A57Write_6cyc_2L, WriteAdr],   (instregex "LD1Threev(8b|4h|2s|1d)_POST$")>;
203 def : InstRW<[A57Write_7cyc_3L],            (instregex "LD1Threev(16b|8h|4s|2d)$")>;
204 def : InstRW<[A57Write_7cyc_3L, WriteAdr],  (instregex "LD1Threev(16b|8h|4s|2d)_POST$")>;
205 def : InstRW<[A57Write_6cyc_2L],             (instregex "LD1Fourv(8b|4h|2s|1d)$")>;
206 def : InstRW<[A57Write_6cyc_2L, WriteAdr],   (instregex "LD1Fourv(8b|4h|2s|1d)_POST$")>;
207 def : InstRW<[A57Write_8cyc_4L],           (instregex "LD1Fourv(16b|8h|4s|2d)$")>;
208 def : InstRW<[A57Write_8cyc_4L, WriteAdr], (instregex "LD1Fourv(16b|8h|4s|2d)_POST$")>;
209
210 def : InstRW<[A57Write_8cyc_1L_2V],           (instregex "LD2i(8|16)$")>;
211 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr], (instregex "LD2i(8|16)_POST$")>;
212 def : InstRW<[A57Write_6cyc_2L],            (instregex "LD2i(32)$")>;
213 def : InstRW<[A57Write_6cyc_2L, WriteAdr],  (instregex "LD2i(32)_POST$")>;
214 def : InstRW<[A57Write_8cyc_1L_1V],            (instregex "LD2i(64)$")>;
215 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr],  (instregex "LD2i(64)_POST$")>;
216
217 def : InstRW<[A57Write_8cyc_1L_1V],            (instregex "LD2Rv(8b|4h|2s)$")>;
218 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr],  (instregex "LD2Rv(8b|4h|2s)_POST$")>;
219 def : InstRW<[A57Write_5cyc_1L],             (instregex "LD2Rv(1d)$")>;
220 def : InstRW<[A57Write_5cyc_1L, WriteAdr],   (instregex "LD2Rv(1d)_POST$")>;
221 def : InstRW<[A57Write_8cyc_1L_2V],           (instregex "LD2Rv(16b|8h|4s|2d)$")>;
222 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr], (instregex "LD2Rv(16b|8h|4s|2d)_POST$")>;
223
224 def : InstRW<[A57Write_8cyc_1L_1V],             (instregex "LD2Twov(8b|4h|2s)$")>;
225 def : InstRW<[A57Write_8cyc_1L_1V, WriteAdr],   (instregex "LD2Twov(8b|4h|2s)_POST$")>;
226 def : InstRW<[A57Write_9cyc_2L_2V],           (instregex "LD2Twov(16b|8h|4s)$")>;
227 def : InstRW<[A57Write_9cyc_2L_2V, WriteAdr], (instregex "LD2Twov(16b|8h|4s)_POST$")>;
228 def : InstRW<[A57Write_6cyc_2L],             (instregex "LD2Twov(2d)$")>;
229 def : InstRW<[A57Write_6cyc_2L, WriteAdr],   (instregex "LD2Twov(2d)_POST$")>;
230
231 def : InstRW<[A57Write_9cyc_1L_3V],           (instregex "LD3i(8|16)$")>;
232 def : InstRW<[A57Write_9cyc_1L_3V, WriteAdr], (instregex "LD3i(8|16)_POST$")>;
233 def : InstRW<[A57Write_8cyc_1L_2V],            (instregex "LD3i(32)$")>;
234 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr],  (instregex "LD3i(32)_POST$")>;
235 def : InstRW<[A57Write_6cyc_2L],             (instregex "LD3i(64)$")>;
236 def : InstRW<[A57Write_6cyc_2L, WriteAdr],   (instregex "LD3i(64)_POST$")>;
237
238 def : InstRW<[A57Write_8cyc_1L_2V],             (instregex "LD3Rv(8b|4h|2s)$")>;
239 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr],   (instregex "LD3Rv(8b|4h|2s)_POST$")>;
240 def : InstRW<[A57Write_6cyc_2L],              (instregex "LD3Rv(1d)$")>;
241 def : InstRW<[A57Write_6cyc_2L, WriteAdr],    (instregex "LD3Rv(1d)_POST$")>;
242 def : InstRW<[A57Write_9cyc_1L_3V],            (instregex "LD3Rv(16b|8h|4s)$")>;
243 def : InstRW<[A57Write_9cyc_1L_3V, WriteAdr],  (instregex "LD3Rv(16b|8h|4s)_POST$")>;
244 def : InstRW<[A57Write_9cyc_2L_3V],           (instregex "LD3Rv(2d)$")>;
245 def : InstRW<[A57Write_9cyc_2L_3V, WriteAdr], (instregex "LD3Rv(2d)_POST$")>;
246
247 def : InstRW<[A57Write_9cyc_2L_2V],               (instregex "LD3Threev(8b|4h|2s)$")>;
248 def : InstRW<[A57Write_9cyc_2L_2V, WriteAdr],     (instregex "LD3Threev(8b|4h|2s)_POST$")>;
249 def : InstRW<[A57Write_10cyc_3L_4V],           (instregex "LD3Threev(16b|8h|4s)$")>;
250 def : InstRW<[A57Write_10cyc_3L_4V, WriteAdr], (instregex "LD3Threev(16b|8h|4s)_POST$")>;
251 def : InstRW<[A57Write_8cyc_4L],               (instregex "LD3Threev(2d)$")>;
252 def : InstRW<[A57Write_8cyc_4L, WriteAdr],     (instregex "LD3Threev(2d)_POST$")>;
253
254 def : InstRW<[A57Write_9cyc_2L_3V],           (instregex "LD4i(8|16)$")>;
255 def : InstRW<[A57Write_9cyc_2L_3V, WriteAdr], (instregex "LD4i(8|16)_POST$")>;
256 def : InstRW<[A57Write_8cyc_1L_2V],             (instregex "LD4i(32)$")>;
257 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr],   (instregex "LD4i(32)_POST$")>;
258 def : InstRW<[A57Write_9cyc_2L_3V],           (instregex "LD4i(64)$")>;
259 def : InstRW<[A57Write_9cyc_2L_3V, WriteAdr], (instregex "LD4i(64)_POST$")>;
260
261 def : InstRW<[A57Write_8cyc_1L_2V],              (instregex "LD4Rv(8b|4h|2s)$")>;
262 def : InstRW<[A57Write_8cyc_1L_2V, WriteAdr],    (instregex "LD4Rv(8b|4h|2s)_POST$")>;
263 def : InstRW<[A57Write_6cyc_2L],               (instregex "LD4Rv(1d)$")>;
264 def : InstRW<[A57Write_6cyc_2L, WriteAdr],     (instregex "LD4Rv(1d)_POST$")>;
265 def : InstRW<[A57Write_9cyc_2L_3V],            (instregex "LD4Rv(16b|8h|4s)$")>;
266 def : InstRW<[A57Write_9cyc_2L_3V, WriteAdr],  (instregex "LD4Rv(16b|8h|4s)_POST$")>;
267 def : InstRW<[A57Write_9cyc_2L_4V],           (instregex "LD4Rv(2d)$")>;
268 def : InstRW<[A57Write_9cyc_2L_4V, WriteAdr], (instregex "LD4Rv(2d)_POST$")>;
269
270 def : InstRW<[A57Write_9cyc_2L_2V],                (instregex "LD4Fourv(8b|4h|2s)$")>;
271 def : InstRW<[A57Write_9cyc_2L_2V, WriteAdr],      (instregex "LD4Fourv(8b|4h|2s)_POST$")>;
272 def : InstRW<[A57Write_11cyc_4L_4V],           (instregex "LD4Fourv(16b|8h|4s)$")>;
273 def : InstRW<[A57Write_11cyc_4L_4V, WriteAdr], (instregex "LD4Fourv(16b|8h|4s)_POST$")>;
274 def : InstRW<[A57Write_8cyc_4L],                (instregex "LD4Fourv(2d)$")>;
275 def : InstRW<[A57Write_8cyc_4L, WriteAdr],      (instregex "LD4Fourv(2d)_POST$")>;
276
277 // Vector Store
278 // -----------------------------------------------------------------------------
279
280 def : InstRW<[A57Write_1cyc_1S],            (instregex "ST1i(8|16|32)$")>;
281 def : InstRW<[A57Write_1cyc_1S, WriteAdr],  (instregex "ST1i(8|16|32)_POST$")>;
282 def : InstRW<[A57Write_3cyc_1S_1V],           (instregex "ST1i(64)$")>;
283 def : InstRW<[A57Write_3cyc_1S_1V, WriteAdr], (instregex "ST1i(64)_POST$")>;
284
285 def : InstRW<[A57Write_1cyc_1S],                  (instregex "ST1Onev(8b|4h|2s|1d)$")>;
286 def : InstRW<[A57Write_1cyc_1S, WriteAdr],        (instregex "ST1Onev(8b|4h|2s|1d)_POST$")>;
287 def : InstRW<[A57Write_2cyc_2S],                 (instregex "ST1Onev(16b|8h|4s|2d)$")>;
288 def : InstRW<[A57Write_2cyc_2S, WriteAdr],       (instregex "ST1Onev(16b|8h|4s|2d)_POST$")>;
289 def : InstRW<[A57Write_2cyc_2S],                 (instregex "ST1Twov(8b|4h|2s|1d)$")>;
290 def : InstRW<[A57Write_2cyc_2S, WriteAdr],       (instregex "ST1Twov(8b|4h|2s|1d)_POST$")>;
291 def : InstRW<[A57Write_4cyc_4S],               (instregex "ST1Twov(16b|8h|4s|2d)$")>;
292 def : InstRW<[A57Write_4cyc_4S, WriteAdr],     (instregex "ST1Twov(16b|8h|4s|2d)_POST$")>;
293 def : InstRW<[A57Write_3cyc_3S],                (instregex "ST1Threev(8b|4h|2s|1d)$")>;
294 def : InstRW<[A57Write_3cyc_3S, WriteAdr],      (instregex "ST1Threev(8b|4h|2s|1d)_POST$")>;
295 def : InstRW<[A57Write_6cyc_6S],             (instregex "ST1Threev(16b|8h|4s|2d)$")>;
296 def : InstRW<[A57Write_6cyc_6S, WriteAdr],   (instregex "ST1Threev(16b|8h|4s|2d)_POST$")>;
297 def : InstRW<[A57Write_4cyc_4S],               (instregex "ST1Fourv(8b|4h|2s|1d)$")>;
298 def : InstRW<[A57Write_4cyc_4S, WriteAdr],     (instregex "ST1Fourv(8b|4h|2s|1d)_POST$")>;
299 def : InstRW<[A57Write_8cyc_8S],           (instregex "ST1Fourv(16b|8h|4s|2d)$")>;
300 def : InstRW<[A57Write_8cyc_8S, WriteAdr], (instregex "ST1Fourv(16b|8h|4s|2d)_POST$")>;
301
302 def : InstRW<[A57Write_3cyc_1S_1V],           (instregex "ST2i(8|16|32)$")>;
303 def : InstRW<[A57Write_3cyc_1S_1V, WriteAdr], (instregex "ST2i(8|16|32)_POST$")>;
304 def : InstRW<[A57Write_2cyc_2S],           (instregex "ST2i(64)$")>;
305 def : InstRW<[A57Write_2cyc_2S, WriteAdr], (instregex "ST2i(64)_POST$")>;
306
307 def : InstRW<[A57Write_3cyc_2S_1V],              (instregex "ST2Twov(8b|4h|2s)$")>;
308 def : InstRW<[A57Write_3cyc_2S_1V, WriteAdr],    (instregex "ST2Twov(8b|4h|2s)_POST$")>;
309 def : InstRW<[A57Write_4cyc_4S_2V],           (instregex "ST2Twov(16b|8h|4s)$")>;
310 def : InstRW<[A57Write_4cyc_4S_2V, WriteAdr], (instregex "ST2Twov(16b|8h|4s)_POST$")>;
311 def : InstRW<[A57Write_4cyc_4S],             (instregex "ST2Twov(2d)$")>;
312 def : InstRW<[A57Write_4cyc_4S, WriteAdr],   (instregex "ST2Twov(2d)_POST$")>;
313
314 def : InstRW<[A57Write_3cyc_1S_1V],            (instregex "ST3i(8|16)$")>;
315 def : InstRW<[A57Write_3cyc_1S_1V, WriteAdr],  (instregex "ST3i(8|16)_POST$")>;
316 def : InstRW<[A57Write_3cyc_3S],           (instregex "ST3i(32)$")>;
317 def : InstRW<[A57Write_3cyc_3S, WriteAdr], (instregex "ST3i(32)_POST$")>;
318 def : InstRW<[A57Write_3cyc_2S_1V],           (instregex "ST3i(64)$")>;
319 def : InstRW<[A57Write_3cyc_2S_1V, WriteAdr], (instregex "ST3i(64)_POST$")>;
320
321 def : InstRW<[A57Write_3cyc_3S_2V],                 (instregex "ST3Threev(8b|4h|2s)$")>;
322 def : InstRW<[A57Write_3cyc_3S_2V, WriteAdr],       (instregex "ST3Threev(8b|4h|2s)_POST$")>;
323 def : InstRW<[A57Write_6cyc_6S_4V],           (instregex "ST3Threev(16b|8h|4s)$")>;
324 def : InstRW<[A57Write_6cyc_6S_4V, WriteAdr], (instregex "ST3Threev(16b|8h|4s)_POST$")>;
325 def : InstRW<[A57Write_6cyc_6S],                (instregex "ST3Threev(2d)$")>;
326 def : InstRW<[A57Write_6cyc_6S, WriteAdr],      (instregex "ST3Threev(2d)_POST$")>;
327
328 def : InstRW<[A57Write_3cyc_1S_1V],             (instregex "ST4i(8|16)$")>;
329 def : InstRW<[A57Write_3cyc_1S_1V, WriteAdr],   (instregex "ST4i(8|16)_POST$")>;
330 def : InstRW<[A57Write_4cyc_4S],           (instregex "ST4i(32)$")>;
331 def : InstRW<[A57Write_4cyc_4S, WriteAdr], (instregex "ST4i(32)_POST$")>;
332 def : InstRW<[A57Write_3cyc_2S_1V],            (instregex "ST4i(64)$")>;
333 def : InstRW<[A57Write_3cyc_2S_1V, WriteAdr],  (instregex "ST4i(64)_POST$")>;
334
335 def : InstRW<[A57Write_4cyc_4S_2V],                  (instregex "ST4Fourv(8b|4h|2s)$")>;
336 def : InstRW<[A57Write_4cyc_4S_2V, WriteAdr],        (instregex "ST4Fourv(8b|4h|2s)_POST$")>;
337 def : InstRW<[A57Write_8cyc_8S_4V],           (instregex "ST4Fourv(16b|8h|4s)$")>;
338 def : InstRW<[A57Write_8cyc_8S_4V, WriteAdr], (instregex "ST4Fourv(16b|8h|4s)_POST$")>;
339 def : InstRW<[A57Write_8cyc_8S],                (instregex "ST4Fourv(2d)$")>;
340 def : InstRW<[A57Write_8cyc_8S, WriteAdr],      (instregex "ST4Fourv(2d)_POST$")>;
341
342 // Vector - Integer
343 // -----------------------------------------------------------------------------
344
345 // Reference for forms in this group
346 //   D form - v8i8, v4i16, v2i32
347 //   Q form - v16i8, v8i16, v4i32
348 //   D form - v1i8, v1i16, v1i32, v1i64
349 //   Q form - v16i8, v8i16, v4i32, v2i64
350 //   D form - v8i8_v8i16, v4i16_v4i32, v2i32_v2i64
351 //   Q form - v16i8_v8i16, v8i16_v4i32, v4i32_v2i64
352
353 // ASIMD absolute diff accum, D-form
354 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU]ABA(v8i8|v4i16|v2i32)$")>;
355 // ASIMD absolute diff accum, Q-form
356 def : InstRW<[A57Write_5cyc_2X], (instregex "^[SU]ABA(v16i8|v8i16|v4i32)$")>;
357 // ASIMD absolute diff accum long
358 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU]ABAL")>;
359
360 // ASIMD arith, reduce, 4H/4S
361 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU]?ADDL?V(v8i8|v4i16|v2i32)v$")>;
362 // ASIMD arith, reduce, 8B/8H
363 def : InstRW<[A57Write_7cyc_1V_1X], (instregex "^[SU]?ADDL?V(v8i16|v4i32)v$")>;
364 // ASIMD arith, reduce, 16B
365 def : InstRW<[A57Write_8cyc_2X], (instregex "^[SU]?ADDL?Vv16i8v$")>;
366
367 // ASIMD max/min, reduce, 4H/4S
368 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU](MIN|MAX)V(v4i16|v4i32)v$")>;
369 // ASIMD max/min, reduce, 8B/8H
370 def : InstRW<[A57Write_7cyc_1V_1X], (instregex "^[SU](MIN|MAX)V(v8i8|v8i16)v$")>;
371 // ASIMD max/min, reduce, 16B
372 def : InstRW<[A57Write_8cyc_2X], (instregex "^[SU](MIN|MAX)Vv16i8v$")>;
373
374 // ASIMD multiply, D-form
375 def : InstRW<[A57Write_5cyc_1W], (instregex "^(P?MUL|SQR?DMULH)(v8i8|v4i16|v2i32|v1i8|v1i16|v1i32|v1i64)(_indexed)?$")>;
376 // ASIMD multiply, Q-form
377 def : InstRW<[A57Write_6cyc_2W], (instregex "^(P?MUL|SQR?DMULH)(v16i8|v8i16|v4i32)(_indexed)?$")>;
378
379 // ASIMD multiply accumulate, D-form
380 def : InstRW<[A57Write_5cyc_1W], (instregex "^ML[AS](v8i8|v4i16|v2i32)(_indexed)?$")>;
381 // ASIMD multiply accumulate, Q-form
382 def : InstRW<[A57Write_6cyc_2W], (instregex "^ML[AS](v16i8|v8i16|v4i32)(_indexed)?$")>;
383
384 // ASIMD multiply accumulate long
385 // ASIMD multiply accumulate saturating long
386 def A57WriteIVMA   : SchedWriteRes<[A57UnitW]> { let Latency = 5;  }
387 def A57ReadIVMA4   : SchedReadAdvance<4, [A57WriteIVMA]>;
388 def : InstRW<[A57WriteIVMA, A57ReadIVMA4], (instregex "^(S|U|SQD)ML[AS]L")>;
389
390 // ASIMD multiply long
391 def : InstRW<[A57Write_5cyc_1W], (instregex "^(S|U|SQD)MULL")>;
392 def : InstRW<[A57Write_5cyc_1W], (instregex "^PMULL(v8i8|v16i8)")>;
393 def : InstRW<[A57Write_3cyc_1W], (instregex "^PMULL(v1i64|v2i64)")>;
394
395 // ASIMD pairwise add and accumulate
396 // ASIMD shift accumulate
397 def A57WriteIVA    : SchedWriteRes<[A57UnitX]> { let Latency = 4;  }
398 def A57ReadIVA3    : SchedReadAdvance<3, [A57WriteIVA]>;
399 def : InstRW<[A57WriteIVA, A57ReadIVA3], (instregex "^[SU]ADALP")>;
400 def : InstRW<[A57WriteIVA, A57ReadIVA3], (instregex "^(S|SR|U|UR)SRA")>;
401
402 // ASIMD shift by immed, complex
403 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU]?(Q|R){1,2}SHR")>;
404 def : InstRW<[A57Write_4cyc_1X], (instregex "^SQSHLU")>;
405
406
407 // ASIMD shift by register, basic, Q-form
408 def : InstRW<[A57Write_4cyc_2X], (instregex "^[SU]SHL(v16i8|v8i16|v4i32|v2i64)")>;
409
410 // ASIMD shift by register, complex, D-form
411 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU][QR]{1,2}SHL(v1i8|v1i16|v1i32|v1i64|v8i8|v4i16|v2i32|b|d|h|s)")>;
412
413 // ASIMD shift by register, complex, Q-form
414 def : InstRW<[A57Write_5cyc_2X], (instregex "^[SU][QR]{1,2}SHL(v16i8|v8i16|v4i32|v2i64)")>;
415
416
417 // Vector - Floating Point
418 // -----------------------------------------------------------------------------
419
420 // Reference for forms in this group
421 //   D form - v2f32
422 //   Q form - v4f32, v2f64
423 //   D form - 32, 64
424 //   D form - v1i32, v1i64
425 //   D form - v2i32
426 //   Q form - v4i32, v2i64
427
428 // ASIMD FP arith, normal, D-form
429 def : InstRW<[A57Write_5cyc_1V], (instregex "^(FABD|FADD|FSUB)(v2f32|32|64|v2i32p)")>;
430 // ASIMD FP arith, normal, Q-form
431 def : InstRW<[A57Write_5cyc_2V], (instregex "^(FABD|FADD|FSUB)(v4f32|v2f64|v2i64p)")>;
432
433 // ASIMD FP arith, pairwise, D-form
434 def : InstRW<[A57Write_5cyc_1V], (instregex "^FADDP(v2f32|32|64|v2i32)")>;
435 // ASIMD FP arith, pairwise, Q-form
436 def : InstRW<[A57Write_9cyc_3V], (instregex "^FADDP(v4f32|v2f64|v2i64)")>;
437
438 // ASIMD FP compare, D-form
439 def : InstRW<[A57Write_5cyc_1V], (instregex "^(FACGE|FACGT|FCMEQ|FCMGE|FCMGT|FCMLE|FCMLT)(v2f32|32|64|v1i32|v2i32|v1i64)")>;
440 // ASIMD FP compare, Q-form
441 def : InstRW<[A57Write_5cyc_2V], (instregex "^(FACGE|FACGT|FCMEQ|FCMGE|FCMGT|FCMLE|FCMLT)(v4f32|v2f64|v4i32|v2i64)")>;
442
443 // ASIMD FP convert, long and narrow
444 def : InstRW<[A57Write_8cyc_3V], (instregex "^FCVT(L|N|XN)v")>;
445 // ASIMD FP convert, other, D-form
446 def : InstRW<[A57Write_5cyc_1V], (instregex "^[FVSU]CVT([AMNPZ][SU])?(_Int)?(v2f32|v1i32|v2i32|v1i64)")>;
447 // ASIMD FP convert, other, Q-form
448 def : InstRW<[A57Write_5cyc_2V], (instregex "^[FVSU]CVT([AMNPZ][SU])?(_Int)?(v4f32|v2f64|v4i32|v2i64)")>;
449
450 // ASIMD FP divide, D-form, F32
451 def : InstRW<[A57Write_17cyc_1W], (instregex "FDIVv2f32")>;
452 // ASIMD FP divide, Q-form, F32
453 def : InstRW<[A57Write_34cyc_2W], (instregex "FDIVv4f32")>;
454 // ASIMD FP divide, Q-form, F64
455 def : InstRW<[A57Write_64cyc_2W], (instregex "FDIVv2f64")>;
456
457 // Note: These were simply duplicated from ASIMD FDIV because of missing documentation
458 // ASIMD FP square root, D-form, F32
459 def : InstRW<[A57Write_17cyc_1W], (instregex "FSQRTv2f32")>;
460 // ASIMD FP square root, Q-form, F32
461 def : InstRW<[A57Write_34cyc_2W], (instregex "FSQRTv4f32")>;
462 // ASIMD FP square root, Q-form, F64
463 def : InstRW<[A57Write_64cyc_2W], (instregex "FSQRTv2f64")>;
464
465 // ASIMD FP max/min, normal, D-form
466 def : InstRW<[A57Write_5cyc_1V], (instregex "^(FMAX|FMIN)(NM)?(v2f32)")>;
467 // ASIMD FP max/min, normal, Q-form
468 def : InstRW<[A57Write_5cyc_2V], (instregex "^(FMAX|FMIN)(NM)?(v4f32|v2f64)")>;
469 // ASIMD FP max/min, pairwise, D-form
470 def : InstRW<[A57Write_5cyc_1V], (instregex "^(FMAX|FMIN)(NM)?P(v2f32|v2i32)")>;
471 // ASIMD FP max/min, pairwise, Q-form
472 def : InstRW<[A57Write_9cyc_3V], (instregex "^(FMAX|FMIN)(NM)?P(v4f32|v2f64|v2i64)")>;
473 // ASIMD FP max/min, reduce
474 def : InstRW<[A57Write_10cyc_3V], (instregex "^(FMAX|FMIN)(NM)?Vv")>;
475
476 // ASIMD FP multiply, D-form, FZ
477 def : InstRW<[A57Write_5cyc_1V], (instregex "^FMULX?(v2f32|v1i32|v2i32|v1i64|32|64)")>;
478 // ASIMD FP multiply, Q-form, FZ
479 def : InstRW<[A57Write_5cyc_2V], (instregex "^FMULX?(v4f32|v2f64|v4i32|v2i64)")>;
480
481 // ASIMD FP multiply accumulate, D-form, FZ
482 // ASIMD FP multiply accumulate, Q-form, FZ
483 def A57WriteFPVMAD : SchedWriteRes<[A57UnitV]> { let Latency = 9;  }
484 def A57WriteFPVMAQ : SchedWriteRes<[A57UnitV, A57UnitV]> { let Latency = 10;  }
485 def A57ReadFPVMA5  : SchedReadAdvance<5, [A57WriteFPVMAD, A57WriteFPVMAQ]>;
486 def : InstRW<[A57WriteFPVMAD, A57ReadFPVMA5], (instregex "^FML[AS](v2f32|v1i32|v2i32|v1i64)")>;
487 def : InstRW<[A57WriteFPVMAQ, A57ReadFPVMA5], (instregex "^FML[AS](v4f32|v2f64|v4i32|v2i64)")>;
488
489 // ASIMD FP round, D-form
490 def : InstRW<[A57Write_5cyc_1V], (instregex "^FRINT[AIMNPXZ](v2f32)")>;
491 // ASIMD FP round, Q-form
492 def : InstRW<[A57Write_5cyc_2V], (instregex "^FRINT[AIMNPXZ](v4f32|v2f64)")>;
493
494
495 // Vector - Miscellaneous
496 // -----------------------------------------------------------------------------
497
498 // Reference for forms in this group
499 //   D form - v8i8, v4i16, v2i32
500 //   Q form - v16i8, v8i16, v4i32
501 //   D form - v1i8, v1i16, v1i32, v1i64
502 //   Q form - v16i8, v8i16, v4i32, v2i64
503
504 // ASIMD bitwise insert, Q-form
505 def : InstRW<[A57Write_3cyc_2V], (instregex "^(BIF|BIT|BSL)v16i8")>;
506
507 // ASIMD duplicate, gen reg, D-form and Q-form
508 def : InstRW<[A57Write_8cyc_1L_1V], (instregex "^CPY")>;
509 def : InstRW<[A57Write_8cyc_1L_1V], (instregex "^DUPv.+gpr")>;
510
511 // ASIMD move, saturating
512 def : InstRW<[A57Write_4cyc_1X], (instregex "^[SU]QXTU?N")>;
513
514 // ASIMD reciprocal estimate, D-form
515 def : InstRW<[A57Write_5cyc_1V], (instregex "^[FU](RECP|RSQRT)(E|X)(v2f32|v1i32|v2i32|v1i64)")>;
516 // ASIMD reciprocal estimate, Q-form
517 def : InstRW<[A57Write_5cyc_2V], (instregex "^[FU](RECP|RSQRT)(E|X)(v2f64|v4f32|v4i32)")>;
518
519 // ASIMD reciprocal step, D-form, FZ
520 def : InstRW<[A57Write_9cyc_1V], (instregex "^F(RECP|RSQRT)S(v2f32|v1i32|v2i32|v1i64|32|64)")>;
521 // ASIMD reciprocal step, Q-form, FZ
522 def : InstRW<[A57Write_9cyc_2V], (instregex "^F(RECP|RSQRT)S(v2f64|v4f32|v4i32)")>;
523
524 // ASIMD table lookup, D-form
525 def : InstRW<[A57Write_3cyc_1V], (instregex "^TB[LX]v8i8One")>;
526 def : InstRW<[A57Write_6cyc_2V], (instregex "^TB[LX]v8i8Two")>;
527 def : InstRW<[A57Write_9cyc_3V], (instregex "^TB[LX]v8i8Three")>;
528 def : InstRW<[A57Write_12cyc_4V], (instregex "^TB[LX]v8i8Four")>;
529 // ASIMD table lookup, Q-form
530 def : InstRW<[A57Write_6cyc_3V], (instregex "^TB[LX]v16i8One")>;
531 def : InstRW<[A57Write_9cyc_5V], (instregex "^TB[LX]v16i8Two")>;
532 def : InstRW<[A57Write_12cyc_7V], (instregex "^TB[LX]v16i8Three")>;
533 def : InstRW<[A57Write_15cyc_9V], (instregex "^TB[LX]v16i8Four")>;
534
535 // ASIMD transfer, element to gen reg
536 def : InstRW<[A57Write_6cyc_1I_1L], (instregex "^[SU]MOVv")>;
537
538 // ASIMD transfer, gen reg to element
539 def : InstRW<[A57Write_8cyc_1L_1V], (instregex "^INSv")>;
540
541 // ASIMD unzip/zip, Q-form
542 def : InstRW<[A57Write_6cyc_3V], (instregex "^(UZP|ZIP)(1|2)(v16i8|v8i16|v4i32|v2i64)")>;
543
544
545 // Remainder
546 // -----------------------------------------------------------------------------
547
548 def : InstRW<[A57Write_5cyc_1V], (instregex "^F(ADD|SUB)[DS]rr")>;
549
550 def A57WriteFPMA  : SchedWriteRes<[A57UnitV]> { let Latency = 9;  }
551 def A57ReadFPMA5  : SchedReadAdvance<5, [A57WriteFPMA]>;
552 def A57ReadFPM    : SchedReadAdvance<0>;
553 def : InstRW<[A57WriteFPMA, A57ReadFPM, A57ReadFPM, A57ReadFPMA5], (instregex "^FN?M(ADD|SUB)[DS]rrr")>;
554
555 def : InstRW<[A57Write_10cyc_1L_1V], (instregex "^[FSU]CVT[AMNPZ][SU](_Int)?[SU]?[XW]?[DS]?[rds]i?")>;
556 def : InstRW<[A57Write_10cyc_1L_1V], (instregex "^[SU]CVTF")>;
557
558 def : InstRW<[A57Write_32cyc_1W], (instrs FDIVDrr)>;
559 def : InstRW<[A57Write_17cyc_1W], (instrs FDIVSrr)>;
560
561 def : InstRW<[A57Write_5cyc_1V], (instregex "^F(MAX|MIN).+rr")>;
562
563 def : InstRW<[A57Write_5cyc_1V], (instregex "^FRINT.+r")>;
564
565 def : InstRW<[A57Write_32cyc_1W], (instrs FSQRTDr)>;
566 def : InstRW<[A57Write_17cyc_1W], (instrs FSQRTSr)>;
567
568 def : InstRW<[A57Write_5cyc_1L, WriteLDHi], (instrs LDNPDi)>;
569 def : InstRW<[A57Write_6cyc_2L, WriteLDHi], (instrs LDNPQi)>;
570 def : InstRW<[A57Write_5cyc_1L, WriteLDHi], (instrs LDNPSi)>;
571 def : InstRW<[A57Write_5cyc_1L, WriteLDHi], (instrs LDPDi)>;
572 def : InstRW<[A57Write_5cyc_1L, WriteLDHi, WriteAdr], (instrs LDPDpost)>;
573 def : InstRW<[A57Write_5cyc_1L, WriteLDHi, WriteAdr], (instrs LDPDpre)>;
574 def : InstRW<[A57Write_6cyc_2L, WriteLDHi], (instrs LDPQi)>;
575 def : InstRW<[A57Write_6cyc_2L, WriteLDHi, WriteAdr], (instrs LDPQpost)>;
576 def : InstRW<[A57Write_6cyc_2L, WriteLDHi, WriteAdr], (instrs LDPQpre)>;
577 def : InstRW<[A57Write_5cyc_1I_2L, WriteLDHi], (instrs LDPSWi)>;
578 def : InstRW<[A57Write_5cyc_1I_2L, WriteLDHi, WriteAdr], (instrs LDPSWpost)>;
579 def : InstRW<[A57Write_5cyc_1I_2L, WriteLDHi, WriteAdr], (instrs LDPSWpre)>;
580 def : InstRW<[A57Write_5cyc_1L, WriteLDHi], (instrs LDPSi)>;
581 def : InstRW<[A57Write_5cyc_1L, WriteLDHi, WriteAdr], (instrs LDPSpost)>;
582 def : InstRW<[A57Write_5cyc_1L, WriteLDHi, WriteAdr], (instrs LDPSpre)>;
583 def : InstRW<[A57Write_5cyc_1L, WriteI], (instrs LDRBpost)>;
584 def : InstRW<[A57Write_5cyc_1L, WriteAdr], (instrs LDRBpre)>;
585 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRBroW)>;
586 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRBroX)>;
587 def : InstRW<[A57Write_5cyc_1L], (instrs LDRBui)>;
588 def : InstRW<[A57Write_5cyc_1L], (instrs LDRDl)>;
589 def : InstRW<[A57Write_5cyc_1L, WriteI], (instrs LDRDpost)>;
590 def : InstRW<[A57Write_5cyc_1L, WriteAdr], (instrs LDRDpre)>;
591 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRDroW)>;
592 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRDroX)>;
593 def : InstRW<[A57Write_5cyc_1L], (instrs LDRDui)>;
594 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRHHroW)>;
595 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRHHroX)>;
596 def : InstRW<[A57Write_5cyc_1L, WriteI], (instrs LDRHpost)>;
597 def : InstRW<[A57Write_5cyc_1L, WriteAdr], (instrs LDRHpre)>;
598 def : InstRW<[A57Write_6cyc_1I_1L, ReadAdrBase], (instrs LDRHroW)>;
599 def : InstRW<[A57Write_6cyc_1I_1L, ReadAdrBase], (instrs LDRHroX)>;
600 def : InstRW<[A57Write_5cyc_1L], (instrs LDRHui)>;
601 def : InstRW<[A57Write_5cyc_1L], (instrs LDRQl)>;
602 def : InstRW<[A57Write_5cyc_1L, WriteI], (instrs LDRQpost)>;
603 def : InstRW<[A57Write_5cyc_1L, WriteAdr], (instrs LDRQpre)>;
604 def : InstRW<[A57Write_6cyc_1I_1L, ReadAdrBase], (instrs LDRQroW)>;
605 def : InstRW<[A57Write_6cyc_1I_1L, ReadAdrBase], (instrs LDRQroX)>;
606 def : InstRW<[A57Write_5cyc_1L], (instrs LDRQui)>;
607 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRSHWroW)>;
608 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRSHWroX)>;
609 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRSHXroW)>;
610 def : InstRW<[A57Write_5cyc_1I_1L, ReadAdrBase], (instrs LDRSHXroX)>;
611 def : InstRW<[A57Write_5cyc_1L], (instrs LDRSl)>;
612 def : InstRW<[A57Write_5cyc_1L, WriteI], (instrs LDRSpost)>;
613 def : InstRW<[A57Write_5cyc_1L, WriteAdr], (instrs LDRSpre)>;
614 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRSroW)>;
615 def : InstRW<[A57Write_5cyc_1L, ReadAdrBase], (instrs LDRSroX)>;
616 def : InstRW<[A57Write_5cyc_1L], (instrs LDRSui)>;
617 def : InstRW<[A57Write_5cyc_1L], (instrs LDURBi)>;
618 def : InstRW<[A57Write_5cyc_1L], (instrs LDURDi)>;
619 def : InstRW<[A57Write_5cyc_1L], (instrs LDURHi)>;
620 def : InstRW<[A57Write_5cyc_1L], (instrs LDURQi)>;
621 def : InstRW<[A57Write_5cyc_1L], (instrs LDURSi)>;
622
623 def : InstRW<[A57Write_2cyc_2S], (instrs STNPDi)>;
624 def : InstRW<[A57Write_4cyc_1I_4S], (instrs STNPQi)>;
625 def : InstRW<[A57Write_2cyc_2S], (instrs STNPXi)>;
626 def : InstRW<[A57Write_2cyc_2S], (instrs STPDi)>;
627 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S], (instrs STPDpost)>;
628 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S], (instrs STPDpre)>;
629 def : InstRW<[A57Write_4cyc_1I_4S], (instrs STPQi)>;
630 def : InstRW<[WriteAdr, A57Write_4cyc_1I_4S], (instrs STPQpost)>;
631 def : InstRW<[WriteAdr, A57Write_4cyc_2I_4S], (instrs STPQpre)>;
632 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STPSpost)>;
633 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STPSpre)>;
634 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STPWpost)>;
635 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STPWpre)>;
636 def : InstRW<[A57Write_2cyc_2S], (instrs STPXi)>;
637 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S], (instrs STPXpost)>;
638 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S], (instrs STPXpre)>;
639 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRBBpost)>;
640 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRBBpre)>;
641 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRBpost)>;
642 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STRBpre)>;
643 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRBroW)>;
644 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRBroX)>;
645 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRDpost)>;
646 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STRDpre)>;
647 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRHHpost)>;
648 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRHHpre)>;
649 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRHHroW)>;
650 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRHHroX)>;
651 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRHpost)>;
652 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STRHpre)>;
653 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRHroW)>;
654 def : InstRW<[A57Write_3cyc_1I_1S, ReadAdrBase], (instrs STRHroX)>;
655 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S, ReadAdrBase], (instrs STRQpost)>;
656 def : InstRW<[WriteAdr, A57Write_2cyc_1I_2S], (instrs STRQpre)>;
657 def : InstRW<[A57Write_2cyc_1I_2S, ReadAdrBase], (instrs STRQroW)>;
658 def : InstRW<[A57Write_2cyc_1I_2S, ReadAdrBase], (instrs STRQroX)>;
659 def : InstRW<[A57Write_2cyc_1I_2S], (instrs STRQui)>;
660 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRSpost)>;
661 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S], (instrs STRSpre)>;
662 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRWpost)>;
663 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRWpre)>;
664 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRXpost)>;
665 def : InstRW<[WriteAdr, A57Write_1cyc_1I_1S, ReadAdrBase], (instrs STRXpre)>;
666 def : InstRW<[A57Write_2cyc_2S], (instrs STURQi)>;
667
668 } // SchedModel = CortexA57Model