1b8021494Sopenharmony_ci// Copyright 2016, VIXL authors
2b8021494Sopenharmony_ci// All rights reserved.
3b8021494Sopenharmony_ci//
4b8021494Sopenharmony_ci// Redistribution and use in source and binary forms, with or without
5b8021494Sopenharmony_ci// modification, are permitted provided that the following conditions are met:
6b8021494Sopenharmony_ci//
7b8021494Sopenharmony_ci//   * Redistributions of source code must retain the above copyright notice,
8b8021494Sopenharmony_ci//     this list of conditions and the following disclaimer.
9b8021494Sopenharmony_ci//   * Redistributions in binary form must reproduce the above copyright notice,
10b8021494Sopenharmony_ci//     this list of conditions and the following disclaimer in the documentation
11b8021494Sopenharmony_ci//     and/or other materials provided with the distribution.
12b8021494Sopenharmony_ci//   * Neither the name of ARM Limited nor the names of its contributors may be
13b8021494Sopenharmony_ci//     used to endorse or promote products derived from this software without
14b8021494Sopenharmony_ci//     specific prior written permission.
15b8021494Sopenharmony_ci//
16b8021494Sopenharmony_ci// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND
17b8021494Sopenharmony_ci// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18b8021494Sopenharmony_ci// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19b8021494Sopenharmony_ci// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
20b8021494Sopenharmony_ci// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21b8021494Sopenharmony_ci// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22b8021494Sopenharmony_ci// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23b8021494Sopenharmony_ci// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24b8021494Sopenharmony_ci// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25b8021494Sopenharmony_ci// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26b8021494Sopenharmony_ci
27b8021494Sopenharmony_ci
28b8021494Sopenharmony_ci// -----------------------------------------------------------------------------
29b8021494Sopenharmony_ci// This file is auto generated from the
30b8021494Sopenharmony_ci// test/aarch32/config/template-assembler-aarch32.cc.in template file using
31b8021494Sopenharmony_ci// tools/generate_tests.py.
32b8021494Sopenharmony_ci//
33b8021494Sopenharmony_ci// PLEASE DO NOT EDIT.
34b8021494Sopenharmony_ci// -----------------------------------------------------------------------------
35b8021494Sopenharmony_ci
36b8021494Sopenharmony_ci
37b8021494Sopenharmony_ci#include "test-runner.h"
38b8021494Sopenharmony_ci
39b8021494Sopenharmony_ci#include "test-utils.h"
40b8021494Sopenharmony_ci#include "test-utils-aarch32.h"
41b8021494Sopenharmony_ci
42b8021494Sopenharmony_ci#include "aarch32/assembler-aarch32.h"
43b8021494Sopenharmony_ci#include "aarch32/macro-assembler-aarch32.h"
44b8021494Sopenharmony_ci
45b8021494Sopenharmony_ci#define BUF_SIZE (4096)
46b8021494Sopenharmony_ci
47b8021494Sopenharmony_cinamespace vixl {
48b8021494Sopenharmony_cinamespace aarch32 {
49b8021494Sopenharmony_ci
50b8021494Sopenharmony_ci// List of instruction mnemonics.
51b8021494Sopenharmony_ci#define FOREACH_INSTRUCTION(M) \
52b8021494Sopenharmony_ci  M(adc)                       \
53b8021494Sopenharmony_ci  M(adcs)                      \
54b8021494Sopenharmony_ci  M(add)                       \
55b8021494Sopenharmony_ci  M(adds)                      \
56b8021494Sopenharmony_ci  M(and_)                      \
57b8021494Sopenharmony_ci  M(ands)                      \
58b8021494Sopenharmony_ci  M(bic)                       \
59b8021494Sopenharmony_ci  M(bics)                      \
60b8021494Sopenharmony_ci  M(eor)                       \
61b8021494Sopenharmony_ci  M(eors)                      \
62b8021494Sopenharmony_ci  M(orr)                       \
63b8021494Sopenharmony_ci  M(orrs)                      \
64b8021494Sopenharmony_ci  M(rsb)                       \
65b8021494Sopenharmony_ci  M(rsbs)                      \
66b8021494Sopenharmony_ci  M(rsc)                       \
67b8021494Sopenharmony_ci  M(rscs)                      \
68b8021494Sopenharmony_ci  M(sbc)                       \
69b8021494Sopenharmony_ci  M(sbcs)                      \
70b8021494Sopenharmony_ci  M(sub)                       \
71b8021494Sopenharmony_ci  M(subs)
72b8021494Sopenharmony_ci
73b8021494Sopenharmony_ci
74b8021494Sopenharmony_ci// The following definitions are defined again in each generated test, therefore
75b8021494Sopenharmony_ci// we need to place them in an anonymous namespace. It expresses that they are
76b8021494Sopenharmony_ci// local to this file only, and the compiler is not allowed to share these types
77b8021494Sopenharmony_ci// across test files during template instantiation. Specifically, `Operands` has
78b8021494Sopenharmony_ci// various layouts across generated tests so it absolutely cannot be shared.
79b8021494Sopenharmony_ci
80b8021494Sopenharmony_ci#ifdef VIXL_INCLUDE_TARGET_A32
81b8021494Sopenharmony_cinamespace {
82b8021494Sopenharmony_ci
83b8021494Sopenharmony_ci// Values to be passed to the assembler to produce the instruction under test.
84b8021494Sopenharmony_cistruct Operands {
85b8021494Sopenharmony_ci  Condition cond;
86b8021494Sopenharmony_ci  Register rd;
87b8021494Sopenharmony_ci  Register rn;
88b8021494Sopenharmony_ci  Register rm;
89b8021494Sopenharmony_ci  ShiftType shift;
90b8021494Sopenharmony_ci  Register rs;
91b8021494Sopenharmony_ci};
92b8021494Sopenharmony_ci
93b8021494Sopenharmony_ci// This structure contains all data needed to test one specific
94b8021494Sopenharmony_ci// instruction.
95b8021494Sopenharmony_cistruct TestData {
96b8021494Sopenharmony_ci  // The `operands` field represents what to pass to the assembler to
97b8021494Sopenharmony_ci  // produce the instruction.
98b8021494Sopenharmony_ci  Operands operands;
99b8021494Sopenharmony_ci  // True if we need to generate an IT instruction for this test to be valid.
100b8021494Sopenharmony_ci  bool in_it_block;
101b8021494Sopenharmony_ci  // The condition to give the IT instruction, this will be set to "al" by
102b8021494Sopenharmony_ci  // default.
103b8021494Sopenharmony_ci  Condition it_condition;
104b8021494Sopenharmony_ci  // Description of the operands, used for error reporting.
105b8021494Sopenharmony_ci  const char* operands_description;
106b8021494Sopenharmony_ci  // Unique identifier, used for generating traces.
107b8021494Sopenharmony_ci  const char* identifier;
108b8021494Sopenharmony_ci};
109b8021494Sopenharmony_ci
110b8021494Sopenharmony_cistruct TestResult {
111b8021494Sopenharmony_ci  size_t size;
112b8021494Sopenharmony_ci  const byte* encoding;
113b8021494Sopenharmony_ci};
114b8021494Sopenharmony_ci
115b8021494Sopenharmony_ci// Each element of this array produce one instruction encoding.
116b8021494Sopenharmony_ciconst TestData kTests[] = {{{mi, r8, r10, r8, LSL, r0},
117b8021494Sopenharmony_ci                            false,
118b8021494Sopenharmony_ci                            al,
119b8021494Sopenharmony_ci                            "mi r8 r10 r8 LSL r0",
120b8021494Sopenharmony_ci                            "mi_r8_r10_r8_LSL_r0"},
121b8021494Sopenharmony_ci                           {{cc, r11, r4, r13, ROR, r8},
122b8021494Sopenharmony_ci                            false,
123b8021494Sopenharmony_ci                            al,
124b8021494Sopenharmony_ci                            "cc r11 r4 r13 ROR r8",
125b8021494Sopenharmony_ci                            "cc_r11_r4_r13_ROR_r8"},
126b8021494Sopenharmony_ci                           {{al, r13, r11, r3, ROR, r4},
127b8021494Sopenharmony_ci                            false,
128b8021494Sopenharmony_ci                            al,
129b8021494Sopenharmony_ci                            "al r13 r11 r3 ROR r4",
130b8021494Sopenharmony_ci                            "al_r13_r11_r3_ROR_r4"},
131b8021494Sopenharmony_ci                           {{gt, r11, r5, r4, LSR, r11},
132b8021494Sopenharmony_ci                            false,
133b8021494Sopenharmony_ci                            al,
134b8021494Sopenharmony_ci                            "gt r11 r5 r4 LSR r11",
135b8021494Sopenharmony_ci                            "gt_r11_r5_r4_LSR_r11"},
136b8021494Sopenharmony_ci                           {{vs, r12, r0, r8, ROR, r13},
137b8021494Sopenharmony_ci                            false,
138b8021494Sopenharmony_ci                            al,
139b8021494Sopenharmony_ci                            "vs r12 r0 r8 ROR r13",
140b8021494Sopenharmony_ci                            "vs_r12_r0_r8_ROR_r13"},
141b8021494Sopenharmony_ci                           {{pl, r10, r12, r5, LSL, r5},
142b8021494Sopenharmony_ci                            false,
143b8021494Sopenharmony_ci                            al,
144b8021494Sopenharmony_ci                            "pl r10 r12 r5 LSL r5",
145b8021494Sopenharmony_ci                            "pl_r10_r12_r5_LSL_r5"},
146b8021494Sopenharmony_ci                           {{ls, r10, r2, r2, LSL, r9},
147b8021494Sopenharmony_ci                            false,
148b8021494Sopenharmony_ci                            al,
149b8021494Sopenharmony_ci                            "ls r10 r2 r2 LSL r9",
150b8021494Sopenharmony_ci                            "ls_r10_r2_r2_LSL_r9"},
151b8021494Sopenharmony_ci                           {{eq, r12, r7, r9, LSR, r7},
152b8021494Sopenharmony_ci                            false,
153b8021494Sopenharmony_ci                            al,
154b8021494Sopenharmony_ci                            "eq r12 r7 r9 LSR r7",
155b8021494Sopenharmony_ci                            "eq_r12_r7_r9_LSR_r7"},
156b8021494Sopenharmony_ci                           {{mi, r3, r13, r0, ROR, r11},
157b8021494Sopenharmony_ci                            false,
158b8021494Sopenharmony_ci                            al,
159b8021494Sopenharmony_ci                            "mi r3 r13 r0 ROR r11",
160b8021494Sopenharmony_ci                            "mi_r3_r13_r0_ROR_r11"},
161b8021494Sopenharmony_ci                           {{lt, r9, r0, r9, ASR, r12},
162b8021494Sopenharmony_ci                            false,
163b8021494Sopenharmony_ci                            al,
164b8021494Sopenharmony_ci                            "lt r9 r0 r9 ASR r12",
165b8021494Sopenharmony_ci                            "lt_r9_r0_r9_ASR_r12"},
166b8021494Sopenharmony_ci                           {{le, r12, r8, r14, ROR, r1},
167b8021494Sopenharmony_ci                            false,
168b8021494Sopenharmony_ci                            al,
169b8021494Sopenharmony_ci                            "le r12 r8 r14 ROR r1",
170b8021494Sopenharmony_ci                            "le_r12_r8_r14_ROR_r1"},
171b8021494Sopenharmony_ci                           {{cc, r7, r1, r14, LSL, r0},
172b8021494Sopenharmony_ci                            false,
173b8021494Sopenharmony_ci                            al,
174b8021494Sopenharmony_ci                            "cc r7 r1 r14 LSL r0",
175b8021494Sopenharmony_ci                            "cc_r7_r1_r14_LSL_r0"},
176b8021494Sopenharmony_ci                           {{le, r11, r13, r3, ROR, r6},
177b8021494Sopenharmony_ci                            false,
178b8021494Sopenharmony_ci                            al,
179b8021494Sopenharmony_ci                            "le r11 r13 r3 ROR r6",
180b8021494Sopenharmony_ci                            "le_r11_r13_r3_ROR_r6"},
181b8021494Sopenharmony_ci                           {{al, r5, r8, r9, ASR, r14},
182b8021494Sopenharmony_ci                            false,
183b8021494Sopenharmony_ci                            al,
184b8021494Sopenharmony_ci                            "al r5 r8 r9 ASR r14",
185b8021494Sopenharmony_ci                            "al_r5_r8_r9_ASR_r14"},
186b8021494Sopenharmony_ci                           {{hi, r1, r2, r7, ASR, r13},
187b8021494Sopenharmony_ci                            false,
188b8021494Sopenharmony_ci                            al,
189b8021494Sopenharmony_ci                            "hi r1 r2 r7 ASR r13",
190b8021494Sopenharmony_ci                            "hi_r1_r2_r7_ASR_r13"},
191b8021494Sopenharmony_ci                           {{al, r13, r8, r7, LSR, r12},
192b8021494Sopenharmony_ci                            false,
193b8021494Sopenharmony_ci                            al,
194b8021494Sopenharmony_ci                            "al r13 r8 r7 LSR r12",
195b8021494Sopenharmony_ci                            "al_r13_r8_r7_LSR_r12"},
196b8021494Sopenharmony_ci                           {{vc, r3, r6, r4, ASR, r4},
197b8021494Sopenharmony_ci                            false,
198b8021494Sopenharmony_ci                            al,
199b8021494Sopenharmony_ci                            "vc r3 r6 r4 ASR r4",
200b8021494Sopenharmony_ci                            "vc_r3_r6_r4_ASR_r4"},
201b8021494Sopenharmony_ci                           {{lt, r12, r4, r6, LSL, r5},
202b8021494Sopenharmony_ci                            false,
203b8021494Sopenharmony_ci                            al,
204b8021494Sopenharmony_ci                            "lt r12 r4 r6 LSL r5",
205b8021494Sopenharmony_ci                            "lt_r12_r4_r6_LSL_r5"},
206b8021494Sopenharmony_ci                           {{ls, r13, r5, r11, ROR, r8},
207b8021494Sopenharmony_ci                            false,
208b8021494Sopenharmony_ci                            al,
209b8021494Sopenharmony_ci                            "ls r13 r5 r11 ROR r8",
210b8021494Sopenharmony_ci                            "ls_r13_r5_r11_ROR_r8"},
211b8021494Sopenharmony_ci                           {{vc, r11, r10, r11, LSL, r9},
212b8021494Sopenharmony_ci                            false,
213b8021494Sopenharmony_ci                            al,
214b8021494Sopenharmony_ci                            "vc r11 r10 r11 LSL r9",
215b8021494Sopenharmony_ci                            "vc_r11_r10_r11_LSL_r9"},
216b8021494Sopenharmony_ci                           {{al, r13, r14, r10, LSR, r4},
217b8021494Sopenharmony_ci                            false,
218b8021494Sopenharmony_ci                            al,
219b8021494Sopenharmony_ci                            "al r13 r14 r10 LSR r4",
220b8021494Sopenharmony_ci                            "al_r13_r14_r10_LSR_r4"},
221b8021494Sopenharmony_ci                           {{ge, r12, r13, r6, ASR, r12},
222b8021494Sopenharmony_ci                            false,
223b8021494Sopenharmony_ci                            al,
224b8021494Sopenharmony_ci                            "ge r12 r13 r6 ASR r12",
225b8021494Sopenharmony_ci                            "ge_r12_r13_r6_ASR_r12"},
226b8021494Sopenharmony_ci                           {{ne, r14, r6, r12, ROR, r0},
227b8021494Sopenharmony_ci                            false,
228b8021494Sopenharmony_ci                            al,
229b8021494Sopenharmony_ci                            "ne r14 r6 r12 ROR r0",
230b8021494Sopenharmony_ci                            "ne_r14_r6_r12_ROR_r0"},
231b8021494Sopenharmony_ci                           {{ls, r13, r14, r14, ASR, r13},
232b8021494Sopenharmony_ci                            false,
233b8021494Sopenharmony_ci                            al,
234b8021494Sopenharmony_ci                            "ls r13 r14 r14 ASR r13",
235b8021494Sopenharmony_ci                            "ls_r13_r14_r14_ASR_r13"},
236b8021494Sopenharmony_ci                           {{lt, r10, r13, r7, ROR, r8},
237b8021494Sopenharmony_ci                            false,
238b8021494Sopenharmony_ci                            al,
239b8021494Sopenharmony_ci                            "lt r10 r13 r7 ROR r8",
240b8021494Sopenharmony_ci                            "lt_r10_r13_r7_ROR_r8"},
241b8021494Sopenharmony_ci                           {{lt, r8, r8, r9, ASR, r0},
242b8021494Sopenharmony_ci                            false,
243b8021494Sopenharmony_ci                            al,
244b8021494Sopenharmony_ci                            "lt r8 r8 r9 ASR r0",
245b8021494Sopenharmony_ci                            "lt_r8_r8_r9_ASR_r0"},
246b8021494Sopenharmony_ci                           {{ne, r7, r5, r4, LSR, r8},
247b8021494Sopenharmony_ci                            false,
248b8021494Sopenharmony_ci                            al,
249b8021494Sopenharmony_ci                            "ne r7 r5 r4 LSR r8",
250b8021494Sopenharmony_ci                            "ne_r7_r5_r4_LSR_r8"},
251b8021494Sopenharmony_ci                           {{mi, r11, r5, r1, LSL, r13},
252b8021494Sopenharmony_ci                            false,
253b8021494Sopenharmony_ci                            al,
254b8021494Sopenharmony_ci                            "mi r11 r5 r1 LSL r13",
255b8021494Sopenharmony_ci                            "mi_r11_r5_r1_LSL_r13"},
256b8021494Sopenharmony_ci                           {{ge, r14, r1, r2, LSL, r1},
257b8021494Sopenharmony_ci                            false,
258b8021494Sopenharmony_ci                            al,
259b8021494Sopenharmony_ci                            "ge r14 r1 r2 LSL r1",
260b8021494Sopenharmony_ci                            "ge_r14_r1_r2_LSL_r1"},
261b8021494Sopenharmony_ci                           {{ls, r6, r11, r4, ASR, r11},
262b8021494Sopenharmony_ci                            false,
263b8021494Sopenharmony_ci                            al,
264b8021494Sopenharmony_ci                            "ls r6 r11 r4 ASR r11",
265b8021494Sopenharmony_ci                            "ls_r6_r11_r4_ASR_r11"},
266b8021494Sopenharmony_ci                           {{hi, r11, r12, r4, LSR, r13},
267b8021494Sopenharmony_ci                            false,
268b8021494Sopenharmony_ci                            al,
269b8021494Sopenharmony_ci                            "hi r11 r12 r4 LSR r13",
270b8021494Sopenharmony_ci                            "hi_r11_r12_r4_LSR_r13"},
271b8021494Sopenharmony_ci                           {{le, r9, r3, r0, LSL, r7},
272b8021494Sopenharmony_ci                            false,
273b8021494Sopenharmony_ci                            al,
274b8021494Sopenharmony_ci                            "le r9 r3 r0 LSL r7",
275b8021494Sopenharmony_ci                            "le_r9_r3_r0_LSL_r7"},
276b8021494Sopenharmony_ci                           {{ls, r8, r7, r4, ASR, r3},
277b8021494Sopenharmony_ci                            false,
278b8021494Sopenharmony_ci                            al,
279b8021494Sopenharmony_ci                            "ls r8 r7 r4 ASR r3",
280b8021494Sopenharmony_ci                            "ls_r8_r7_r4_ASR_r3"},
281b8021494Sopenharmony_ci                           {{pl, r9, r13, r11, LSL, r7},
282b8021494Sopenharmony_ci                            false,
283b8021494Sopenharmony_ci                            al,
284b8021494Sopenharmony_ci                            "pl r9 r13 r11 LSL r7",
285b8021494Sopenharmony_ci                            "pl_r9_r13_r11_LSL_r7"},
286b8021494Sopenharmony_ci                           {{eq, r12, r7, r11, ASR, r3},
287b8021494Sopenharmony_ci                            false,
288b8021494Sopenharmony_ci                            al,
289b8021494Sopenharmony_ci                            "eq r12 r7 r11 ASR r3",
290b8021494Sopenharmony_ci                            "eq_r12_r7_r11_ASR_r3"},
291b8021494Sopenharmony_ci                           {{mi, r3, r9, r13, ROR, r10},
292b8021494Sopenharmony_ci                            false,
293b8021494Sopenharmony_ci                            al,
294b8021494Sopenharmony_ci                            "mi r3 r9 r13 ROR r10",
295b8021494Sopenharmony_ci                            "mi_r3_r9_r13_ROR_r10"},
296b8021494Sopenharmony_ci                           {{mi, r14, r8, r10, ROR, r10},
297b8021494Sopenharmony_ci                            false,
298b8021494Sopenharmony_ci                            al,
299b8021494Sopenharmony_ci                            "mi r14 r8 r10 ROR r10",
300b8021494Sopenharmony_ci                            "mi_r14_r8_r10_ROR_r10"},
301b8021494Sopenharmony_ci                           {{lt, r5, r3, r5, LSL, r1},
302b8021494Sopenharmony_ci                            false,
303b8021494Sopenharmony_ci                            al,
304b8021494Sopenharmony_ci                            "lt r5 r3 r5 LSL r1",
305b8021494Sopenharmony_ci                            "lt_r5_r3_r5_LSL_r1"},
306b8021494Sopenharmony_ci                           {{ne, r12, r6, r1, LSL, r7},
307b8021494Sopenharmony_ci                            false,
308b8021494Sopenharmony_ci                            al,
309b8021494Sopenharmony_ci                            "ne r12 r6 r1 LSL r7",
310b8021494Sopenharmony_ci                            "ne_r12_r6_r1_LSL_r7"},
311b8021494Sopenharmony_ci                           {{lt, r3, r6, r5, ASR, r1},
312b8021494Sopenharmony_ci                            false,
313b8021494Sopenharmony_ci                            al,
314b8021494Sopenharmony_ci                            "lt r3 r6 r5 ASR r1",
315b8021494Sopenharmony_ci                            "lt_r3_r6_r5_ASR_r1"},
316b8021494Sopenharmony_ci                           {{lt, r14, r0, r0, LSR, r11},
317b8021494Sopenharmony_ci                            false,
318b8021494Sopenharmony_ci                            al,
319b8021494Sopenharmony_ci                            "lt r14 r0 r0 LSR r11",
320b8021494Sopenharmony_ci                            "lt_r14_r0_r0_LSR_r11"},
321b8021494Sopenharmony_ci                           {{eq, r11, r10, r4, LSL, r14},
322b8021494Sopenharmony_ci                            false,
323b8021494Sopenharmony_ci                            al,
324b8021494Sopenharmony_ci                            "eq r11 r10 r4 LSL r14",
325b8021494Sopenharmony_ci                            "eq_r11_r10_r4_LSL_r14"},
326b8021494Sopenharmony_ci                           {{lt, r2, r14, r11, LSL, r9},
327b8021494Sopenharmony_ci                            false,
328b8021494Sopenharmony_ci                            al,
329b8021494Sopenharmony_ci                            "lt r2 r14 r11 LSL r9",
330b8021494Sopenharmony_ci                            "lt_r2_r14_r11_LSL_r9"},
331b8021494Sopenharmony_ci                           {{mi, r0, r6, r14, ASR, r11},
332b8021494Sopenharmony_ci                            false,
333b8021494Sopenharmony_ci                            al,
334b8021494Sopenharmony_ci                            "mi r0 r6 r14 ASR r11",
335b8021494Sopenharmony_ci                            "mi_r0_r6_r14_ASR_r11"},
336b8021494Sopenharmony_ci                           {{le, r4, r6, r3, LSR, r11},
337b8021494Sopenharmony_ci                            false,
338b8021494Sopenharmony_ci                            al,
339b8021494Sopenharmony_ci                            "le r4 r6 r3 LSR r11",
340b8021494Sopenharmony_ci                            "le_r4_r6_r3_LSR_r11"},
341b8021494Sopenharmony_ci                           {{cs, r2, r6, r1, ROR, r5},
342b8021494Sopenharmony_ci                            false,
343b8021494Sopenharmony_ci                            al,
344b8021494Sopenharmony_ci                            "cs r2 r6 r1 ROR r5",
345b8021494Sopenharmony_ci                            "cs_r2_r6_r1_ROR_r5"},
346b8021494Sopenharmony_ci                           {{ne, r10, r9, r10, ROR, r4},
347b8021494Sopenharmony_ci                            false,
348b8021494Sopenharmony_ci                            al,
349b8021494Sopenharmony_ci                            "ne r10 r9 r10 ROR r4",
350b8021494Sopenharmony_ci                            "ne_r10_r9_r10_ROR_r4"},
351b8021494Sopenharmony_ci                           {{pl, r7, r9, r11, LSR, r14},
352b8021494Sopenharmony_ci                            false,
353b8021494Sopenharmony_ci                            al,
354b8021494Sopenharmony_ci                            "pl r7 r9 r11 LSR r14",
355b8021494Sopenharmony_ci                            "pl_r7_r9_r11_LSR_r14"},
356b8021494Sopenharmony_ci                           {{pl, r11, r8, r3, ASR, r5},
357b8021494Sopenharmony_ci                            false,
358b8021494Sopenharmony_ci                            al,
359b8021494Sopenharmony_ci                            "pl r11 r8 r3 ASR r5",
360b8021494Sopenharmony_ci                            "pl_r11_r8_r3_ASR_r5"},
361b8021494Sopenharmony_ci                           {{le, r10, r4, r10, ROR, r8},
362b8021494Sopenharmony_ci                            false,
363b8021494Sopenharmony_ci                            al,
364b8021494Sopenharmony_ci                            "le r10 r4 r10 ROR r8",
365b8021494Sopenharmony_ci                            "le_r10_r4_r10_ROR_r8"},
366b8021494Sopenharmony_ci                           {{ne, r8, r14, r8, LSL, r5},
367b8021494Sopenharmony_ci                            false,
368b8021494Sopenharmony_ci                            al,
369b8021494Sopenharmony_ci                            "ne r8 r14 r8 LSL r5",
370b8021494Sopenharmony_ci                            "ne_r8_r14_r8_LSL_r5"},
371b8021494Sopenharmony_ci                           {{eq, r12, r5, r2, LSL, r11},
372b8021494Sopenharmony_ci                            false,
373b8021494Sopenharmony_ci                            al,
374b8021494Sopenharmony_ci                            "eq r12 r5 r2 LSL r11",
375b8021494Sopenharmony_ci                            "eq_r12_r5_r2_LSL_r11"},
376b8021494Sopenharmony_ci                           {{pl, r9, r9, r8, ASR, r2},
377b8021494Sopenharmony_ci                            false,
378b8021494Sopenharmony_ci                            al,
379b8021494Sopenharmony_ci                            "pl r9 r9 r8 ASR r2",
380b8021494Sopenharmony_ci                            "pl_r9_r9_r8_ASR_r2"},
381b8021494Sopenharmony_ci                           {{hi, r8, r12, r3, LSL, r5},
382b8021494Sopenharmony_ci                            false,
383b8021494Sopenharmony_ci                            al,
384b8021494Sopenharmony_ci                            "hi r8 r12 r3 LSL r5",
385b8021494Sopenharmony_ci                            "hi_r8_r12_r3_LSL_r5"},
386b8021494Sopenharmony_ci                           {{eq, r6, r5, r9, LSL, r3},
387b8021494Sopenharmony_ci                            false,
388b8021494Sopenharmony_ci                            al,
389b8021494Sopenharmony_ci                            "eq r6 r5 r9 LSL r3",
390b8021494Sopenharmony_ci                            "eq_r6_r5_r9_LSL_r3"},
391b8021494Sopenharmony_ci                           {{lt, r5, r1, r9, LSR, r6},
392b8021494Sopenharmony_ci                            false,
393b8021494Sopenharmony_ci                            al,
394b8021494Sopenharmony_ci                            "lt r5 r1 r9 LSR r6",
395b8021494Sopenharmony_ci                            "lt_r5_r1_r9_LSR_r6"},
396b8021494Sopenharmony_ci                           {{hi, r9, r9, r0, LSL, r5},
397b8021494Sopenharmony_ci                            false,
398b8021494Sopenharmony_ci                            al,
399b8021494Sopenharmony_ci                            "hi r9 r9 r0 LSL r5",
400b8021494Sopenharmony_ci                            "hi_r9_r9_r0_LSL_r5"},
401b8021494Sopenharmony_ci                           {{cs, r6, r6, r5, LSL, r8},
402b8021494Sopenharmony_ci                            false,
403b8021494Sopenharmony_ci                            al,
404b8021494Sopenharmony_ci                            "cs r6 r6 r5 LSL r8",
405b8021494Sopenharmony_ci                            "cs_r6_r6_r5_LSL_r8"},
406b8021494Sopenharmony_ci                           {{cs, r0, r1, r6, LSR, r12},
407b8021494Sopenharmony_ci                            false,
408b8021494Sopenharmony_ci                            al,
409b8021494Sopenharmony_ci                            "cs r0 r1 r6 LSR r12",
410b8021494Sopenharmony_ci                            "cs_r0_r1_r6_LSR_r12"},
411b8021494Sopenharmony_ci                           {{cc, r4, r6, r13, ASR, r6},
412b8021494Sopenharmony_ci                            false,
413b8021494Sopenharmony_ci                            al,
414b8021494Sopenharmony_ci                            "cc r4 r6 r13 ASR r6",
415b8021494Sopenharmony_ci                            "cc_r4_r6_r13_ASR_r6"},
416b8021494Sopenharmony_ci                           {{hi, r11, r8, r10, LSR, r5},
417b8021494Sopenharmony_ci                            false,
418b8021494Sopenharmony_ci                            al,
419b8021494Sopenharmony_ci                            "hi r11 r8 r10 LSR r5",
420b8021494Sopenharmony_ci                            "hi_r11_r8_r10_LSR_r5"},
421b8021494Sopenharmony_ci                           {{ls, r8, r1, r14, ROR, r14},
422b8021494Sopenharmony_ci                            false,
423b8021494Sopenharmony_ci                            al,
424b8021494Sopenharmony_ci                            "ls r8 r1 r14 ROR r14",
425b8021494Sopenharmony_ci                            "ls_r8_r1_r14_ROR_r14"},
426b8021494Sopenharmony_ci                           {{pl, r8, r2, r12, ASR, r7},
427b8021494Sopenharmony_ci                            false,
428b8021494Sopenharmony_ci                            al,
429b8021494Sopenharmony_ci                            "pl r8 r2 r12 ASR r7",
430b8021494Sopenharmony_ci                            "pl_r8_r2_r12_ASR_r7"},
431b8021494Sopenharmony_ci                           {{gt, r14, r7, r5, ROR, r11},
432b8021494Sopenharmony_ci                            false,
433b8021494Sopenharmony_ci                            al,
434b8021494Sopenharmony_ci                            "gt r14 r7 r5 ROR r11",
435b8021494Sopenharmony_ci                            "gt_r14_r7_r5_ROR_r11"},
436b8021494Sopenharmony_ci                           {{eq, r3, r6, r13, ROR, r0},
437b8021494Sopenharmony_ci                            false,
438b8021494Sopenharmony_ci                            al,
439b8021494Sopenharmony_ci                            "eq r3 r6 r13 ROR r0",
440b8021494Sopenharmony_ci                            "eq_r3_r6_r13_ROR_r0"},
441b8021494Sopenharmony_ci                           {{le, r4, r8, r8, ROR, r11},
442b8021494Sopenharmony_ci                            false,
443b8021494Sopenharmony_ci                            al,
444b8021494Sopenharmony_ci                            "le r4 r8 r8 ROR r11",
445b8021494Sopenharmony_ci                            "le_r4_r8_r8_ROR_r11"},
446b8021494Sopenharmony_ci                           {{ge, r2, r7, r5, ASR, r6},
447b8021494Sopenharmony_ci                            false,
448b8021494Sopenharmony_ci                            al,
449b8021494Sopenharmony_ci                            "ge r2 r7 r5 ASR r6",
450b8021494Sopenharmony_ci                            "ge_r2_r7_r5_ASR_r6"},
451b8021494Sopenharmony_ci                           {{cc, r8, r12, r5, LSL, r11},
452b8021494Sopenharmony_ci                            false,
453b8021494Sopenharmony_ci                            al,
454b8021494Sopenharmony_ci                            "cc r8 r12 r5 LSL r11",
455b8021494Sopenharmony_ci                            "cc_r8_r12_r5_LSL_r11"},
456b8021494Sopenharmony_ci                           {{vc, r11, r10, r3, ROR, r5},
457b8021494Sopenharmony_ci                            false,
458b8021494Sopenharmony_ci                            al,
459b8021494Sopenharmony_ci                            "vc r11 r10 r3 ROR r5",
460b8021494Sopenharmony_ci                            "vc_r11_r10_r3_ROR_r5"},
461b8021494Sopenharmony_ci                           {{vc, r11, r9, r11, LSL, r6},
462b8021494Sopenharmony_ci                            false,
463b8021494Sopenharmony_ci                            al,
464b8021494Sopenharmony_ci                            "vc r11 r9 r11 LSL r6",
465b8021494Sopenharmony_ci                            "vc_r11_r9_r11_LSL_r6"},
466b8021494Sopenharmony_ci                           {{lt, r6, r5, r0, ROR, r9},
467b8021494Sopenharmony_ci                            false,
468b8021494Sopenharmony_ci                            al,
469b8021494Sopenharmony_ci                            "lt r6 r5 r0 ROR r9",
470b8021494Sopenharmony_ci                            "lt_r6_r5_r0_ROR_r9"},
471b8021494Sopenharmony_ci                           {{cs, r13, r7, r11, ASR, r9},
472b8021494Sopenharmony_ci                            false,
473b8021494Sopenharmony_ci                            al,
474b8021494Sopenharmony_ci                            "cs r13 r7 r11 ASR r9",
475b8021494Sopenharmony_ci                            "cs_r13_r7_r11_ASR_r9"},
476b8021494Sopenharmony_ci                           {{cs, r9, r7, r9, ROR, r11},
477b8021494Sopenharmony_ci                            false,
478b8021494Sopenharmony_ci                            al,
479b8021494Sopenharmony_ci                            "cs r9 r7 r9 ROR r11",
480b8021494Sopenharmony_ci                            "cs_r9_r7_r9_ROR_r11"},
481b8021494Sopenharmony_ci                           {{ls, r14, r3, r2, ASR, r11},
482b8021494Sopenharmony_ci                            false,
483b8021494Sopenharmony_ci                            al,
484b8021494Sopenharmony_ci                            "ls r14 r3 r2 ASR r11",
485b8021494Sopenharmony_ci                            "ls_r14_r3_r2_ASR_r11"},
486b8021494Sopenharmony_ci                           {{vc, r0, r1, r1, LSR, r0},
487b8021494Sopenharmony_ci                            false,
488b8021494Sopenharmony_ci                            al,
489b8021494Sopenharmony_ci                            "vc r0 r1 r1 LSR r0",
490b8021494Sopenharmony_ci                            "vc_r0_r1_r1_LSR_r0"},
491b8021494Sopenharmony_ci                           {{mi, r10, r8, r8, LSR, r13},
492b8021494Sopenharmony_ci                            false,
493b8021494Sopenharmony_ci                            al,
494b8021494Sopenharmony_ci                            "mi r10 r8 r8 LSR r13",
495b8021494Sopenharmony_ci                            "mi_r10_r8_r8_LSR_r13"},
496b8021494Sopenharmony_ci                           {{pl, r8, r14, r3, LSL, r8},
497b8021494Sopenharmony_ci                            false,
498b8021494Sopenharmony_ci                            al,
499b8021494Sopenharmony_ci                            "pl r8 r14 r3 LSL r8",
500b8021494Sopenharmony_ci                            "pl_r8_r14_r3_LSL_r8"},
501b8021494Sopenharmony_ci                           {{ne, r6, r4, r1, LSL, r12},
502b8021494Sopenharmony_ci                            false,
503b8021494Sopenharmony_ci                            al,
504b8021494Sopenharmony_ci                            "ne r6 r4 r1 LSL r12",
505b8021494Sopenharmony_ci                            "ne_r6_r4_r1_LSL_r12"},
506b8021494Sopenharmony_ci                           {{lt, r2, r2, r7, ROR, r0},
507b8021494Sopenharmony_ci                            false,
508b8021494Sopenharmony_ci                            al,
509b8021494Sopenharmony_ci                            "lt r2 r2 r7 ROR r0",
510b8021494Sopenharmony_ci                            "lt_r2_r2_r7_ROR_r0"},
511b8021494Sopenharmony_ci                           {{lt, r2, r4, r13, ASR, r5},
512b8021494Sopenharmony_ci                            false,
513b8021494Sopenharmony_ci                            al,
514b8021494Sopenharmony_ci                            "lt r2 r4 r13 ASR r5",
515b8021494Sopenharmony_ci                            "lt_r2_r4_r13_ASR_r5"},
516b8021494Sopenharmony_ci                           {{eq, r8, r1, r2, ROR, r13},
517b8021494Sopenharmony_ci                            false,
518b8021494Sopenharmony_ci                            al,
519b8021494Sopenharmony_ci                            "eq r8 r1 r2 ROR r13",
520b8021494Sopenharmony_ci                            "eq_r8_r1_r2_ROR_r13"},
521b8021494Sopenharmony_ci                           {{lt, r1, r8, r10, LSR, r7},
522b8021494Sopenharmony_ci                            false,
523b8021494Sopenharmony_ci                            al,
524b8021494Sopenharmony_ci                            "lt r1 r8 r10 LSR r7",
525b8021494Sopenharmony_ci                            "lt_r1_r8_r10_LSR_r7"},
526b8021494Sopenharmony_ci                           {{cs, r7, r5, r9, LSL, r9},
527b8021494Sopenharmony_ci                            false,
528b8021494Sopenharmony_ci                            al,
529b8021494Sopenharmony_ci                            "cs r7 r5 r9 LSL r9",
530b8021494Sopenharmony_ci                            "cs_r7_r5_r9_LSL_r9"},
531b8021494Sopenharmony_ci                           {{mi, r8, r0, r6, LSL, r8},
532b8021494Sopenharmony_ci                            false,
533b8021494Sopenharmony_ci                            al,
534b8021494Sopenharmony_ci                            "mi r8 r0 r6 LSL r8",
535b8021494Sopenharmony_ci                            "mi_r8_r0_r6_LSL_r8"},
536b8021494Sopenharmony_ci                           {{cs, r7, r12, r3, ROR, r6},
537b8021494Sopenharmony_ci                            false,
538b8021494Sopenharmony_ci                            al,
539b8021494Sopenharmony_ci                            "cs r7 r12 r3 ROR r6",
540b8021494Sopenharmony_ci                            "cs_r7_r12_r3_ROR_r6"},
541b8021494Sopenharmony_ci                           {{vs, r13, r8, r13, LSR, r4},
542b8021494Sopenharmony_ci                            false,
543b8021494Sopenharmony_ci                            al,
544b8021494Sopenharmony_ci                            "vs r13 r8 r13 LSR r4",
545b8021494Sopenharmony_ci                            "vs_r13_r8_r13_LSR_r4"},
546b8021494Sopenharmony_ci                           {{cc, r4, r13, r7, ROR, r11},
547b8021494Sopenharmony_ci                            false,
548b8021494Sopenharmony_ci                            al,
549b8021494Sopenharmony_ci                            "cc r4 r13 r7 ROR r11",
550b8021494Sopenharmony_ci                            "cc_r4_r13_r7_ROR_r11"},
551b8021494Sopenharmony_ci                           {{ge, r10, r5, r9, LSR, r13},
552b8021494Sopenharmony_ci                            false,
553b8021494Sopenharmony_ci                            al,
554b8021494Sopenharmony_ci                            "ge r10 r5 r9 LSR r13",
555b8021494Sopenharmony_ci                            "ge_r10_r5_r9_LSR_r13"},
556b8021494Sopenharmony_ci                           {{cc, r0, r5, r9, ASR, r4},
557b8021494Sopenharmony_ci                            false,
558b8021494Sopenharmony_ci                            al,
559b8021494Sopenharmony_ci                            "cc r0 r5 r9 ASR r4",
560b8021494Sopenharmony_ci                            "cc_r0_r5_r9_ASR_r4"},
561b8021494Sopenharmony_ci                           {{cc, r1, r5, r8, LSR, r12},
562b8021494Sopenharmony_ci                            false,
563b8021494Sopenharmony_ci                            al,
564b8021494Sopenharmony_ci                            "cc r1 r5 r8 LSR r12",
565b8021494Sopenharmony_ci                            "cc_r1_r5_r8_LSR_r12"},
566b8021494Sopenharmony_ci                           {{ls, r12, r3, r5, LSL, r6},
567b8021494Sopenharmony_ci                            false,
568b8021494Sopenharmony_ci                            al,
569b8021494Sopenharmony_ci                            "ls r12 r3 r5 LSL r6",
570b8021494Sopenharmony_ci                            "ls_r12_r3_r5_LSL_r6"},
571b8021494Sopenharmony_ci                           {{cs, r10, r0, r4, ASR, r7},
572b8021494Sopenharmony_ci                            false,
573b8021494Sopenharmony_ci                            al,
574b8021494Sopenharmony_ci                            "cs r10 r0 r4 ASR r7",
575b8021494Sopenharmony_ci                            "cs_r10_r0_r4_ASR_r7"},
576b8021494Sopenharmony_ci                           {{ge, r10, r13, r14, ROR, r6},
577b8021494Sopenharmony_ci                            false,
578b8021494Sopenharmony_ci                            al,
579b8021494Sopenharmony_ci                            "ge r10 r13 r14 ROR r6",
580b8021494Sopenharmony_ci                            "ge_r10_r13_r14_ROR_r6"},
581b8021494Sopenharmony_ci                           {{al, r9, r0, r9, ROR, r3},
582b8021494Sopenharmony_ci                            false,
583b8021494Sopenharmony_ci                            al,
584b8021494Sopenharmony_ci                            "al r9 r0 r9 ROR r3",
585b8021494Sopenharmony_ci                            "al_r9_r0_r9_ROR_r3"},
586b8021494Sopenharmony_ci                           {{vs, r4, r5, r12, ASR, r6},
587b8021494Sopenharmony_ci                            false,
588b8021494Sopenharmony_ci                            al,
589b8021494Sopenharmony_ci                            "vs r4 r5 r12 ASR r6",
590b8021494Sopenharmony_ci                            "vs_r4_r5_r12_ASR_r6"},
591b8021494Sopenharmony_ci                           {{lt, r4, r1, r14, LSL, r12},
592b8021494Sopenharmony_ci                            false,
593b8021494Sopenharmony_ci                            al,
594b8021494Sopenharmony_ci                            "lt r4 r1 r14 LSL r12",
595b8021494Sopenharmony_ci                            "lt_r4_r1_r14_LSL_r12"},
596b8021494Sopenharmony_ci                           {{cs, r14, r11, r8, ROR, r4},
597b8021494Sopenharmony_ci                            false,
598b8021494Sopenharmony_ci                            al,
599b8021494Sopenharmony_ci                            "cs r14 r11 r8 ROR r4",
600b8021494Sopenharmony_ci                            "cs_r14_r11_r8_ROR_r4"},
601b8021494Sopenharmony_ci                           {{hi, r12, r0, r14, LSR, r11},
602b8021494Sopenharmony_ci                            false,
603b8021494Sopenharmony_ci                            al,
604b8021494Sopenharmony_ci                            "hi r12 r0 r14 LSR r11",
605b8021494Sopenharmony_ci                            "hi_r12_r0_r14_LSR_r11"},
606b8021494Sopenharmony_ci                           {{le, r8, r6, r4, ASR, r7},
607b8021494Sopenharmony_ci                            false,
608b8021494Sopenharmony_ci                            al,
609b8021494Sopenharmony_ci                            "le r8 r6 r4 ASR r7",
610b8021494Sopenharmony_ci                            "le_r8_r6_r4_ASR_r7"},
611b8021494Sopenharmony_ci                           {{mi, r13, r4, r14, LSR, r10},
612b8021494Sopenharmony_ci                            false,
613b8021494Sopenharmony_ci                            al,
614b8021494Sopenharmony_ci                            "mi r13 r4 r14 LSR r10",
615b8021494Sopenharmony_ci                            "mi_r13_r4_r14_LSR_r10"},
616b8021494Sopenharmony_ci                           {{vs, r11, r10, r5, LSL, r10},
617b8021494Sopenharmony_ci                            false,
618b8021494Sopenharmony_ci                            al,
619b8021494Sopenharmony_ci                            "vs r11 r10 r5 LSL r10",
620b8021494Sopenharmony_ci                            "vs_r11_r10_r5_LSL_r10"},
621b8021494Sopenharmony_ci                           {{cc, r4, r0, r5, LSR, r2},
622b8021494Sopenharmony_ci                            false,
623b8021494Sopenharmony_ci                            al,
624b8021494Sopenharmony_ci                            "cc r4 r0 r5 LSR r2",
625b8021494Sopenharmony_ci                            "cc_r4_r0_r5_LSR_r2"},
626b8021494Sopenharmony_ci                           {{pl, r9, r14, r0, LSL, r3},
627b8021494Sopenharmony_ci                            false,
628b8021494Sopenharmony_ci                            al,
629b8021494Sopenharmony_ci                            "pl r9 r14 r0 LSL r3",
630b8021494Sopenharmony_ci                            "pl_r9_r14_r0_LSL_r3"},
631b8021494Sopenharmony_ci                           {{vc, r7, r2, r14, ASR, r1},
632b8021494Sopenharmony_ci                            false,
633b8021494Sopenharmony_ci                            al,
634b8021494Sopenharmony_ci                            "vc r7 r2 r14 ASR r1",
635b8021494Sopenharmony_ci                            "vc_r7_r2_r14_ASR_r1"},
636b8021494Sopenharmony_ci                           {{gt, r4, r14, r1, ROR, r10},
637b8021494Sopenharmony_ci                            false,
638b8021494Sopenharmony_ci                            al,
639b8021494Sopenharmony_ci                            "gt r4 r14 r1 ROR r10",
640b8021494Sopenharmony_ci                            "gt_r4_r14_r1_ROR_r10"},
641b8021494Sopenharmony_ci                           {{lt, r6, r4, r10, LSL, r7},
642b8021494Sopenharmony_ci                            false,
643b8021494Sopenharmony_ci                            al,
644b8021494Sopenharmony_ci                            "lt r6 r4 r10 LSL r7",
645b8021494Sopenharmony_ci                            "lt_r6_r4_r10_LSL_r7"},
646b8021494Sopenharmony_ci                           {{hi, r1, r14, r5, LSL, r12},
647b8021494Sopenharmony_ci                            false,
648b8021494Sopenharmony_ci                            al,
649b8021494Sopenharmony_ci                            "hi r1 r14 r5 LSL r12",
650b8021494Sopenharmony_ci                            "hi_r1_r14_r5_LSL_r12"},
651b8021494Sopenharmony_ci                           {{cc, r14, r12, r4, ASR, r14},
652b8021494Sopenharmony_ci                            false,
653b8021494Sopenharmony_ci                            al,
654b8021494Sopenharmony_ci                            "cc r14 r12 r4 ASR r14",
655b8021494Sopenharmony_ci                            "cc_r14_r12_r4_ASR_r14"},
656b8021494Sopenharmony_ci                           {{cc, r0, r8, r5, ROR, r8},
657b8021494Sopenharmony_ci                            false,
658b8021494Sopenharmony_ci                            al,
659b8021494Sopenharmony_ci                            "cc r0 r8 r5 ROR r8",
660b8021494Sopenharmony_ci                            "cc_r0_r8_r5_ROR_r8"},
661b8021494Sopenharmony_ci                           {{gt, r9, r9, r0, ASR, r4},
662b8021494Sopenharmony_ci                            false,
663b8021494Sopenharmony_ci                            al,
664b8021494Sopenharmony_ci                            "gt r9 r9 r0 ASR r4",
665b8021494Sopenharmony_ci                            "gt_r9_r9_r0_ASR_r4"},
666b8021494Sopenharmony_ci                           {{mi, r8, r11, r12, ASR, r4},
667b8021494Sopenharmony_ci                            false,
668b8021494Sopenharmony_ci                            al,
669b8021494Sopenharmony_ci                            "mi r8 r11 r12 ASR r4",
670b8021494Sopenharmony_ci                            "mi_r8_r11_r12_ASR_r4"},
671b8021494Sopenharmony_ci                           {{vs, r0, r12, r0, LSR, r11},
672b8021494Sopenharmony_ci                            false,
673b8021494Sopenharmony_ci                            al,
674b8021494Sopenharmony_ci                            "vs r0 r12 r0 LSR r11",
675b8021494Sopenharmony_ci                            "vs_r0_r12_r0_LSR_r11"},
676b8021494Sopenharmony_ci                           {{ge, r0, r9, r1, ASR, r0},
677b8021494Sopenharmony_ci                            false,
678b8021494Sopenharmony_ci                            al,
679b8021494Sopenharmony_ci                            "ge r0 r9 r1 ASR r0",
680b8021494Sopenharmony_ci                            "ge_r0_r9_r1_ASR_r0"},
681b8021494Sopenharmony_ci                           {{al, r10, r11, r5, LSR, r4},
682b8021494Sopenharmony_ci                            false,
683b8021494Sopenharmony_ci                            al,
684b8021494Sopenharmony_ci                            "al r10 r11 r5 LSR r4",
685b8021494Sopenharmony_ci                            "al_r10_r11_r5_LSR_r4"},
686b8021494Sopenharmony_ci                           {{eq, r0, r6, r8, LSR, r10},
687b8021494Sopenharmony_ci                            false,
688b8021494Sopenharmony_ci                            al,
689b8021494Sopenharmony_ci                            "eq r0 r6 r8 LSR r10",
690b8021494Sopenharmony_ci                            "eq_r0_r6_r8_LSR_r10"},
691b8021494Sopenharmony_ci                           {{cc, r13, r12, r14, ROR, r9},
692b8021494Sopenharmony_ci                            false,
693b8021494Sopenharmony_ci                            al,
694b8021494Sopenharmony_ci                            "cc r13 r12 r14 ROR r9",
695b8021494Sopenharmony_ci                            "cc_r13_r12_r14_ROR_r9"},
696b8021494Sopenharmony_ci                           {{ls, r4, r11, r0, LSL, r14},
697b8021494Sopenharmony_ci                            false,
698b8021494Sopenharmony_ci                            al,
699b8021494Sopenharmony_ci                            "ls r4 r11 r0 LSL r14",
700b8021494Sopenharmony_ci                            "ls_r4_r11_r0_LSL_r14"},
701b8021494Sopenharmony_ci                           {{hi, r1, r6, r12, LSR, r13},
702b8021494Sopenharmony_ci                            false,
703b8021494Sopenharmony_ci                            al,
704b8021494Sopenharmony_ci                            "hi r1 r6 r12 LSR r13",
705b8021494Sopenharmony_ci                            "hi_r1_r6_r12_LSR_r13"},
706b8021494Sopenharmony_ci                           {{cs, r7, r11, r1, ASR, r5},
707b8021494Sopenharmony_ci                            false,
708b8021494Sopenharmony_ci                            al,
709b8021494Sopenharmony_ci                            "cs r7 r11 r1 ASR r5",
710b8021494Sopenharmony_ci                            "cs_r7_r11_r1_ASR_r5"},
711b8021494Sopenharmony_ci                           {{cc, r7, r5, r4, ASR, r11},
712b8021494Sopenharmony_ci                            false,
713b8021494Sopenharmony_ci                            al,
714b8021494Sopenharmony_ci                            "cc r7 r5 r4 ASR r11",
715b8021494Sopenharmony_ci                            "cc_r7_r5_r4_ASR_r11"},
716b8021494Sopenharmony_ci                           {{hi, r7, r2, r5, ROR, r5},
717b8021494Sopenharmony_ci                            false,
718b8021494Sopenharmony_ci                            al,
719b8021494Sopenharmony_ci                            "hi r7 r2 r5 ROR r5",
720b8021494Sopenharmony_ci                            "hi_r7_r2_r5_ROR_r5"},
721b8021494Sopenharmony_ci                           {{vc, r11, r9, r7, LSL, r14},
722b8021494Sopenharmony_ci                            false,
723b8021494Sopenharmony_ci                            al,
724b8021494Sopenharmony_ci                            "vc r11 r9 r7 LSL r14",
725b8021494Sopenharmony_ci                            "vc_r11_r9_r7_LSL_r14"},
726b8021494Sopenharmony_ci                           {{le, r12, r1, r3, ROR, r7},
727b8021494Sopenharmony_ci                            false,
728b8021494Sopenharmony_ci                            al,
729b8021494Sopenharmony_ci                            "le r12 r1 r3 ROR r7",
730b8021494Sopenharmony_ci                            "le_r12_r1_r3_ROR_r7"},
731b8021494Sopenharmony_ci                           {{al, r8, r14, r0, ASR, r12},
732b8021494Sopenharmony_ci                            false,
733b8021494Sopenharmony_ci                            al,
734b8021494Sopenharmony_ci                            "al r8 r14 r0 ASR r12",
735b8021494Sopenharmony_ci                            "al_r8_r14_r0_ASR_r12"},
736b8021494Sopenharmony_ci                           {{vc, r14, r3, r0, ROR, r1},
737b8021494Sopenharmony_ci                            false,
738b8021494Sopenharmony_ci                            al,
739b8021494Sopenharmony_ci                            "vc r14 r3 r0 ROR r1",
740b8021494Sopenharmony_ci                            "vc_r14_r3_r0_ROR_r1"},
741b8021494Sopenharmony_ci                           {{pl, r10, r8, r3, ROR, r4},
742b8021494Sopenharmony_ci                            false,
743b8021494Sopenharmony_ci                            al,
744b8021494Sopenharmony_ci                            "pl r10 r8 r3 ROR r4",
745b8021494Sopenharmony_ci                            "pl_r10_r8_r3_ROR_r4"},
746b8021494Sopenharmony_ci                           {{al, r9, r14, r12, LSL, r4},
747b8021494Sopenharmony_ci                            false,
748b8021494Sopenharmony_ci                            al,
749b8021494Sopenharmony_ci                            "al r9 r14 r12 LSL r4",
750b8021494Sopenharmony_ci                            "al_r9_r14_r12_LSL_r4"},
751b8021494Sopenharmony_ci                           {{vs, r8, r3, r14, ASR, r7},
752b8021494Sopenharmony_ci                            false,
753b8021494Sopenharmony_ci                            al,
754b8021494Sopenharmony_ci                            "vs r8 r3 r14 ASR r7",
755b8021494Sopenharmony_ci                            "vs_r8_r3_r14_ASR_r7"},
756b8021494Sopenharmony_ci                           {{hi, r4, r8, r13, LSL, r1},
757b8021494Sopenharmony_ci                            false,
758b8021494Sopenharmony_ci                            al,
759b8021494Sopenharmony_ci                            "hi r4 r8 r13 LSL r1",
760b8021494Sopenharmony_ci                            "hi_r4_r8_r13_LSL_r1"},
761b8021494Sopenharmony_ci                           {{al, r6, r11, r11, LSL, r14},
762b8021494Sopenharmony_ci                            false,
763b8021494Sopenharmony_ci                            al,
764b8021494Sopenharmony_ci                            "al r6 r11 r11 LSL r14",
765b8021494Sopenharmony_ci                            "al_r6_r11_r11_LSL_r14"},
766b8021494Sopenharmony_ci                           {{al, r7, r2, r4, LSR, r1},
767b8021494Sopenharmony_ci                            false,
768b8021494Sopenharmony_ci                            al,
769b8021494Sopenharmony_ci                            "al r7 r2 r4 LSR r1",
770b8021494Sopenharmony_ci                            "al_r7_r2_r4_LSR_r1"},
771b8021494Sopenharmony_ci                           {{vc, r5, r10, r3, ASR, r8},
772b8021494Sopenharmony_ci                            false,
773b8021494Sopenharmony_ci                            al,
774b8021494Sopenharmony_ci                            "vc r5 r10 r3 ASR r8",
775b8021494Sopenharmony_ci                            "vc_r5_r10_r3_ASR_r8"},
776b8021494Sopenharmony_ci                           {{cc, r3, r10, r9, ROR, r11},
777b8021494Sopenharmony_ci                            false,
778b8021494Sopenharmony_ci                            al,
779b8021494Sopenharmony_ci                            "cc r3 r10 r9 ROR r11",
780b8021494Sopenharmony_ci                            "cc_r3_r10_r9_ROR_r11"},
781b8021494Sopenharmony_ci                           {{eq, r11, r9, r8, LSL, r2},
782b8021494Sopenharmony_ci                            false,
783b8021494Sopenharmony_ci                            al,
784b8021494Sopenharmony_ci                            "eq r11 r9 r8 LSL r2",
785b8021494Sopenharmony_ci                            "eq_r11_r9_r8_LSL_r2"},
786b8021494Sopenharmony_ci                           {{mi, r6, r9, r5, ASR, r12},
787b8021494Sopenharmony_ci                            false,
788b8021494Sopenharmony_ci                            al,
789b8021494Sopenharmony_ci                            "mi r6 r9 r5 ASR r12",
790b8021494Sopenharmony_ci                            "mi_r6_r9_r5_ASR_r12"},
791b8021494Sopenharmony_ci                           {{hi, r6, r6, r0, ASR, r9},
792b8021494Sopenharmony_ci                            false,
793b8021494Sopenharmony_ci                            al,
794b8021494Sopenharmony_ci                            "hi r6 r6 r0 ASR r9",
795b8021494Sopenharmony_ci                            "hi_r6_r6_r0_ASR_r9"},
796b8021494Sopenharmony_ci                           {{ge, r12, r13, r1, LSL, r9},
797b8021494Sopenharmony_ci                            false,
798b8021494Sopenharmony_ci                            al,
799b8021494Sopenharmony_ci                            "ge r12 r13 r1 LSL r9",
800b8021494Sopenharmony_ci                            "ge_r12_r13_r1_LSL_r9"},
801b8021494Sopenharmony_ci                           {{le, r4, r9, r14, ASR, r2},
802b8021494Sopenharmony_ci                            false,
803b8021494Sopenharmony_ci                            al,
804b8021494Sopenharmony_ci                            "le r4 r9 r14 ASR r2",
805b8021494Sopenharmony_ci                            "le_r4_r9_r14_ASR_r2"},
806b8021494Sopenharmony_ci                           {{gt, r5, r3, r9, ROR, r5},
807b8021494Sopenharmony_ci                            false,
808b8021494Sopenharmony_ci                            al,
809b8021494Sopenharmony_ci                            "gt r5 r3 r9 ROR r5",
810b8021494Sopenharmony_ci                            "gt_r5_r3_r9_ROR_r5"},
811b8021494Sopenharmony_ci                           {{al, r14, r5, r13, ROR, r7},
812b8021494Sopenharmony_ci                            false,
813b8021494Sopenharmony_ci                            al,
814b8021494Sopenharmony_ci                            "al r14 r5 r13 ROR r7",
815b8021494Sopenharmony_ci                            "al_r14_r5_r13_ROR_r7"},
816b8021494Sopenharmony_ci                           {{lt, r2, r1, r14, ASR, r8},
817b8021494Sopenharmony_ci                            false,
818b8021494Sopenharmony_ci                            al,
819b8021494Sopenharmony_ci                            "lt r2 r1 r14 ASR r8",
820b8021494Sopenharmony_ci                            "lt_r2_r1_r14_ASR_r8"},
821b8021494Sopenharmony_ci                           {{al, r12, r7, r8, LSL, r11},
822b8021494Sopenharmony_ci                            false,
823b8021494Sopenharmony_ci                            al,
824b8021494Sopenharmony_ci                            "al r12 r7 r8 LSL r11",
825b8021494Sopenharmony_ci                            "al_r12_r7_r8_LSL_r11"},
826b8021494Sopenharmony_ci                           {{ne, r4, r12, r14, LSL, r1},
827b8021494Sopenharmony_ci                            false,
828b8021494Sopenharmony_ci                            al,
829b8021494Sopenharmony_ci                            "ne r4 r12 r14 LSL r1",
830b8021494Sopenharmony_ci                            "ne_r4_r12_r14_LSL_r1"},
831b8021494Sopenharmony_ci                           {{vs, r7, r14, r4, LSL, r6},
832b8021494Sopenharmony_ci                            false,
833b8021494Sopenharmony_ci                            al,
834b8021494Sopenharmony_ci                            "vs r7 r14 r4 LSL r6",
835b8021494Sopenharmony_ci                            "vs_r7_r14_r4_LSL_r6"},
836b8021494Sopenharmony_ci                           {{ge, r12, r5, r11, ASR, r4},
837b8021494Sopenharmony_ci                            false,
838b8021494Sopenharmony_ci                            al,
839b8021494Sopenharmony_ci                            "ge r12 r5 r11 ASR r4",
840b8021494Sopenharmony_ci                            "ge_r12_r5_r11_ASR_r4"},
841b8021494Sopenharmony_ci                           {{gt, r4, r10, r6, LSR, r6},
842b8021494Sopenharmony_ci                            false,
843b8021494Sopenharmony_ci                            al,
844b8021494Sopenharmony_ci                            "gt r4 r10 r6 LSR r6",
845b8021494Sopenharmony_ci                            "gt_r4_r10_r6_LSR_r6"},
846b8021494Sopenharmony_ci                           {{cc, r14, r8, r14, LSR, r8},
847b8021494Sopenharmony_ci                            false,
848b8021494Sopenharmony_ci                            al,
849b8021494Sopenharmony_ci                            "cc r14 r8 r14 LSR r8",
850b8021494Sopenharmony_ci                            "cc_r14_r8_r14_LSR_r8"},
851b8021494Sopenharmony_ci                           {{al, r1, r14, r11, LSR, r7},
852b8021494Sopenharmony_ci                            false,
853b8021494Sopenharmony_ci                            al,
854b8021494Sopenharmony_ci                            "al r1 r14 r11 LSR r7",
855b8021494Sopenharmony_ci                            "al_r1_r14_r11_LSR_r7"},
856b8021494Sopenharmony_ci                           {{pl, r13, r6, r5, ASR, r14},
857b8021494Sopenharmony_ci                            false,
858b8021494Sopenharmony_ci                            al,
859b8021494Sopenharmony_ci                            "pl r13 r6 r5 ASR r14",
860b8021494Sopenharmony_ci                            "pl_r13_r6_r5_ASR_r14"},
861b8021494Sopenharmony_ci                           {{cc, r10, r6, r9, ROR, r13},
862b8021494Sopenharmony_ci                            false,
863b8021494Sopenharmony_ci                            al,
864b8021494Sopenharmony_ci                            "cc r10 r6 r9 ROR r13",
865b8021494Sopenharmony_ci                            "cc_r10_r6_r9_ROR_r13"},
866b8021494Sopenharmony_ci                           {{ne, r0, r4, r7, ROR, r13},
867b8021494Sopenharmony_ci                            false,
868b8021494Sopenharmony_ci                            al,
869b8021494Sopenharmony_ci                            "ne r0 r4 r7 ROR r13",
870b8021494Sopenharmony_ci                            "ne_r0_r4_r7_ROR_r13"},
871b8021494Sopenharmony_ci                           {{vc, r12, r0, r14, LSL, r13},
872b8021494Sopenharmony_ci                            false,
873b8021494Sopenharmony_ci                            al,
874b8021494Sopenharmony_ci                            "vc r12 r0 r14 LSL r13",
875b8021494Sopenharmony_ci                            "vc_r12_r0_r14_LSL_r13"},
876b8021494Sopenharmony_ci                           {{al, r10, r13, r13, ROR, r5},
877b8021494Sopenharmony_ci                            false,
878b8021494Sopenharmony_ci                            al,
879b8021494Sopenharmony_ci                            "al r10 r13 r13 ROR r5",
880b8021494Sopenharmony_ci                            "al_r10_r13_r13_ROR_r5"},
881b8021494Sopenharmony_ci                           {{cs, r10, r3, r0, ROR, r7},
882b8021494Sopenharmony_ci                            false,
883b8021494Sopenharmony_ci                            al,
884b8021494Sopenharmony_ci                            "cs r10 r3 r0 ROR r7",
885b8021494Sopenharmony_ci                            "cs_r10_r3_r0_ROR_r7"},
886b8021494Sopenharmony_ci                           {{ge, r10, r14, r14, ROR, r6},
887b8021494Sopenharmony_ci                            false,
888b8021494Sopenharmony_ci                            al,
889b8021494Sopenharmony_ci                            "ge r10 r14 r14 ROR r6",
890b8021494Sopenharmony_ci                            "ge_r10_r14_r14_ROR_r6"},
891b8021494Sopenharmony_ci                           {{pl, r0, r10, r10, LSL, r4},
892b8021494Sopenharmony_ci                            false,
893b8021494Sopenharmony_ci                            al,
894b8021494Sopenharmony_ci                            "pl r0 r10 r10 LSL r4",
895b8021494Sopenharmony_ci                            "pl_r0_r10_r10_LSL_r4"},
896b8021494Sopenharmony_ci                           {{vs, r1, r2, r7, ASR, r6},
897b8021494Sopenharmony_ci                            false,
898b8021494Sopenharmony_ci                            al,
899b8021494Sopenharmony_ci                            "vs r1 r2 r7 ASR r6",
900b8021494Sopenharmony_ci                            "vs_r1_r2_r7_ASR_r6"},
901b8021494Sopenharmony_ci                           {{cs, r9, r11, r9, LSL, r9},
902b8021494Sopenharmony_ci                            false,
903b8021494Sopenharmony_ci                            al,
904b8021494Sopenharmony_ci                            "cs r9 r11 r9 LSL r9",
905b8021494Sopenharmony_ci                            "cs_r9_r11_r9_LSL_r9"},
906b8021494Sopenharmony_ci                           {{eq, r10, r8, r4, LSL, r6},
907b8021494Sopenharmony_ci                            false,
908b8021494Sopenharmony_ci                            al,
909b8021494Sopenharmony_ci                            "eq r10 r8 r4 LSL r6",
910b8021494Sopenharmony_ci                            "eq_r10_r8_r4_LSL_r6"},
911b8021494Sopenharmony_ci                           {{vc, r8, r5, r12, LSL, r8},
912b8021494Sopenharmony_ci                            false,
913b8021494Sopenharmony_ci                            al,
914b8021494Sopenharmony_ci                            "vc r8 r5 r12 LSL r8",
915b8021494Sopenharmony_ci                            "vc_r8_r5_r12_LSL_r8"},
916b8021494Sopenharmony_ci                           {{pl, r1, r13, r11, LSL, r8},
917b8021494Sopenharmony_ci                            false,
918b8021494Sopenharmony_ci                            al,
919b8021494Sopenharmony_ci                            "pl r1 r13 r11 LSL r8",
920b8021494Sopenharmony_ci                            "pl_r1_r13_r11_LSL_r8"},
921b8021494Sopenharmony_ci                           {{le, r9, r10, r5, ROR, r4},
922b8021494Sopenharmony_ci                            false,
923b8021494Sopenharmony_ci                            al,
924b8021494Sopenharmony_ci                            "le r9 r10 r5 ROR r4",
925b8021494Sopenharmony_ci                            "le_r9_r10_r5_ROR_r4"},
926b8021494Sopenharmony_ci                           {{vs, r8, r3, r0, ASR, r11},
927b8021494Sopenharmony_ci                            false,
928b8021494Sopenharmony_ci                            al,
929b8021494Sopenharmony_ci                            "vs r8 r3 r0 ASR r11",
930b8021494Sopenharmony_ci                            "vs_r8_r3_r0_ASR_r11"},
931b8021494Sopenharmony_ci                           {{hi, r12, r0, r13, LSL, r2},
932b8021494Sopenharmony_ci                            false,
933b8021494Sopenharmony_ci                            al,
934b8021494Sopenharmony_ci                            "hi r12 r0 r13 LSL r2",
935b8021494Sopenharmony_ci                            "hi_r12_r0_r13_LSL_r2"},
936b8021494Sopenharmony_ci                           {{lt, r4, r2, r8, LSL, r5},
937b8021494Sopenharmony_ci                            false,
938b8021494Sopenharmony_ci                            al,
939b8021494Sopenharmony_ci                            "lt r4 r2 r8 LSL r5",
940b8021494Sopenharmony_ci                            "lt_r4_r2_r8_LSL_r5"},
941b8021494Sopenharmony_ci                           {{ge, r9, r4, r13, LSL, r13},
942b8021494Sopenharmony_ci                            false,
943b8021494Sopenharmony_ci                            al,
944b8021494Sopenharmony_ci                            "ge r9 r4 r13 LSL r13",
945b8021494Sopenharmony_ci                            "ge_r9_r4_r13_LSL_r13"},
946b8021494Sopenharmony_ci                           {{ge, r0, r2, r1, ROR, r8},
947b8021494Sopenharmony_ci                            false,
948b8021494Sopenharmony_ci                            al,
949b8021494Sopenharmony_ci                            "ge r0 r2 r1 ROR r8",
950b8021494Sopenharmony_ci                            "ge_r0_r2_r1_ROR_r8"},
951b8021494Sopenharmony_ci                           {{le, r6, r13, r9, LSR, r0},
952b8021494Sopenharmony_ci                            false,
953b8021494Sopenharmony_ci                            al,
954b8021494Sopenharmony_ci                            "le r6 r13 r9 LSR r0",
955b8021494Sopenharmony_ci                            "le_r6_r13_r9_LSR_r0"},
956b8021494Sopenharmony_ci                           {{ls, r13, r7, r4, ASR, r3},
957b8021494Sopenharmony_ci                            false,
958b8021494Sopenharmony_ci                            al,
959b8021494Sopenharmony_ci                            "ls r13 r7 r4 ASR r3",
960b8021494Sopenharmony_ci                            "ls_r13_r7_r4_ASR_r3"},
961b8021494Sopenharmony_ci                           {{vc, r8, r13, r6, LSR, r14},
962b8021494Sopenharmony_ci                            false,
963b8021494Sopenharmony_ci                            al,
964b8021494Sopenharmony_ci                            "vc r8 r13 r6 LSR r14",
965b8021494Sopenharmony_ci                            "vc_r8_r13_r6_LSR_r14"},
966b8021494Sopenharmony_ci                           {{pl, r10, r5, r3, LSR, r9},
967b8021494Sopenharmony_ci                            false,
968b8021494Sopenharmony_ci                            al,
969b8021494Sopenharmony_ci                            "pl r10 r5 r3 LSR r9",
970b8021494Sopenharmony_ci                            "pl_r10_r5_r3_LSR_r9"},
971b8021494Sopenharmony_ci                           {{al, r6, r3, r14, LSR, r7},
972b8021494Sopenharmony_ci                            false,
973b8021494Sopenharmony_ci                            al,
974b8021494Sopenharmony_ci                            "al r6 r3 r14 LSR r7",
975b8021494Sopenharmony_ci                            "al_r6_r3_r14_LSR_r7"},
976b8021494Sopenharmony_ci                           {{cc, r3, r5, r3, ROR, r10},
977b8021494Sopenharmony_ci                            false,
978b8021494Sopenharmony_ci                            al,
979b8021494Sopenharmony_ci                            "cc r3 r5 r3 ROR r10",
980b8021494Sopenharmony_ci                            "cc_r3_r5_r3_ROR_r10"},
981b8021494Sopenharmony_ci                           {{cs, r4, r11, r2, LSR, r10},
982b8021494Sopenharmony_ci                            false,
983b8021494Sopenharmony_ci                            al,
984b8021494Sopenharmony_ci                            "cs r4 r11 r2 LSR r10",
985b8021494Sopenharmony_ci                            "cs_r4_r11_r2_LSR_r10"},
986b8021494Sopenharmony_ci                           {{lt, r6, r10, r5, ASR, r8},
987b8021494Sopenharmony_ci                            false,
988b8021494Sopenharmony_ci                            al,
989b8021494Sopenharmony_ci                            "lt r6 r10 r5 ASR r8",
990b8021494Sopenharmony_ci                            "lt_r6_r10_r5_ASR_r8"},
991b8021494Sopenharmony_ci                           {{ge, r0, r13, r10, ASR, r8},
992b8021494Sopenharmony_ci                            false,
993b8021494Sopenharmony_ci                            al,
994b8021494Sopenharmony_ci                            "ge r0 r13 r10 ASR r8",
995b8021494Sopenharmony_ci                            "ge_r0_r13_r10_ASR_r8"},
996b8021494Sopenharmony_ci                           {{cs, r8, r8, r0, LSL, r9},
997b8021494Sopenharmony_ci                            false,
998b8021494Sopenharmony_ci                            al,
999b8021494Sopenharmony_ci                            "cs r8 r8 r0 LSL r9",
1000b8021494Sopenharmony_ci                            "cs_r8_r8_r0_LSL_r9"},
1001b8021494Sopenharmony_ci                           {{gt, r1, r1, r1, ASR, r2},
1002b8021494Sopenharmony_ci                            false,
1003b8021494Sopenharmony_ci                            al,
1004b8021494Sopenharmony_ci                            "gt r1 r1 r1 ASR r2",
1005b8021494Sopenharmony_ci                            "gt_r1_r1_r1_ASR_r2"},
1006b8021494Sopenharmony_ci                           {{al, r5, r0, r14, ROR, r3},
1007b8021494Sopenharmony_ci                            false,
1008b8021494Sopenharmony_ci                            al,
1009b8021494Sopenharmony_ci                            "al r5 r0 r14 ROR r3",
1010b8021494Sopenharmony_ci                            "al_r5_r0_r14_ROR_r3"},
1011b8021494Sopenharmony_ci                           {{mi, r3, r9, r14, LSL, r9},
1012b8021494Sopenharmony_ci                            false,
1013b8021494Sopenharmony_ci                            al,
1014b8021494Sopenharmony_ci                            "mi r3 r9 r14 LSL r9",
1015b8021494Sopenharmony_ci                            "mi_r3_r9_r14_LSL_r9"},
1016b8021494Sopenharmony_ci                           {{ls, r9, r6, r5, LSL, r9},
1017b8021494Sopenharmony_ci                            false,
1018b8021494Sopenharmony_ci                            al,
1019b8021494Sopenharmony_ci                            "ls r9 r6 r5 LSL r9",
1020b8021494Sopenharmony_ci                            "ls_r9_r6_r5_LSL_r9"},
1021b8021494Sopenharmony_ci                           {{lt, r13, r3, r1, LSL, r13},
1022b8021494Sopenharmony_ci                            false,
1023b8021494Sopenharmony_ci                            al,
1024b8021494Sopenharmony_ci                            "lt r13 r3 r1 LSL r13",
1025b8021494Sopenharmony_ci                            "lt_r13_r3_r1_LSL_r13"},
1026b8021494Sopenharmony_ci                           {{lt, r9, r14, r3, ASR, r3},
1027b8021494Sopenharmony_ci                            false,
1028b8021494Sopenharmony_ci                            al,
1029b8021494Sopenharmony_ci                            "lt r9 r14 r3 ASR r3",
1030b8021494Sopenharmony_ci                            "lt_r9_r14_r3_ASR_r3"},
1031b8021494Sopenharmony_ci                           {{cc, r5, r4, r1, LSR, r0},
1032b8021494Sopenharmony_ci                            false,
1033b8021494Sopenharmony_ci                            al,
1034b8021494Sopenharmony_ci                            "cc r5 r4 r1 LSR r0",
1035b8021494Sopenharmony_ci                            "cc_r5_r4_r1_LSR_r0"},
1036b8021494Sopenharmony_ci                           {{cs, r9, r7, r8, ASR, r0},
1037b8021494Sopenharmony_ci                            false,
1038b8021494Sopenharmony_ci                            al,
1039b8021494Sopenharmony_ci                            "cs r9 r7 r8 ASR r0",
1040b8021494Sopenharmony_ci                            "cs_r9_r7_r8_ASR_r0"},
1041b8021494Sopenharmony_ci                           {{ge, r8, r6, r14, ROR, r7},
1042b8021494Sopenharmony_ci                            false,
1043b8021494Sopenharmony_ci                            al,
1044b8021494Sopenharmony_ci                            "ge r8 r6 r14 ROR r7",
1045b8021494Sopenharmony_ci                            "ge_r8_r6_r14_ROR_r7"},
1046b8021494Sopenharmony_ci                           {{le, r14, r8, r12, LSL, r0},
1047b8021494Sopenharmony_ci                            false,
1048b8021494Sopenharmony_ci                            al,
1049b8021494Sopenharmony_ci                            "le r14 r8 r12 LSL r0",
1050b8021494Sopenharmony_ci                            "le_r14_r8_r12_LSL_r0"},
1051b8021494Sopenharmony_ci                           {{mi, r0, r13, r14, ASR, r3},
1052b8021494Sopenharmony_ci                            false,
1053b8021494Sopenharmony_ci                            al,
1054b8021494Sopenharmony_ci                            "mi r0 r13 r14 ASR r3",
1055b8021494Sopenharmony_ci                            "mi_r0_r13_r14_ASR_r3"},
1056b8021494Sopenharmony_ci                           {{cs, r7, r4, r9, ROR, r8},
1057b8021494Sopenharmony_ci                            false,
1058b8021494Sopenharmony_ci                            al,
1059b8021494Sopenharmony_ci                            "cs r7 r4 r9 ROR r8",
1060b8021494Sopenharmony_ci                            "cs_r7_r4_r9_ROR_r8"},
1061b8021494Sopenharmony_ci                           {{ne, r4, r6, r11, ROR, r2},
1062b8021494Sopenharmony_ci                            false,
1063b8021494Sopenharmony_ci                            al,
1064b8021494Sopenharmony_ci                            "ne r4 r6 r11 ROR r2",
1065b8021494Sopenharmony_ci                            "ne_r4_r6_r11_ROR_r2"},
1066b8021494Sopenharmony_ci                           {{gt, r8, r8, r9, ROR, r12},
1067b8021494Sopenharmony_ci                            false,
1068b8021494Sopenharmony_ci                            al,
1069b8021494Sopenharmony_ci                            "gt r8 r8 r9 ROR r12",
1070b8021494Sopenharmony_ci                            "gt_r8_r8_r9_ROR_r12"},
1071b8021494Sopenharmony_ci                           {{hi, r1, r2, r0, LSR, r13},
1072b8021494Sopenharmony_ci                            false,
1073b8021494Sopenharmony_ci                            al,
1074b8021494Sopenharmony_ci                            "hi r1 r2 r0 LSR r13",
1075b8021494Sopenharmony_ci                            "hi_r1_r2_r0_LSR_r13"},
1076b8021494Sopenharmony_ci                           {{ge, r14, r12, r6, ASR, r5},
1077b8021494Sopenharmony_ci                            false,
1078b8021494Sopenharmony_ci                            al,
1079b8021494Sopenharmony_ci                            "ge r14 r12 r6 ASR r5",
1080b8021494Sopenharmony_ci                            "ge_r14_r12_r6_ASR_r5"},
1081b8021494Sopenharmony_ci                           {{ge, r5, r4, r7, LSR, r14},
1082b8021494Sopenharmony_ci                            false,
1083b8021494Sopenharmony_ci                            al,
1084b8021494Sopenharmony_ci                            "ge r5 r4 r7 LSR r14",
1085b8021494Sopenharmony_ci                            "ge_r5_r4_r7_LSR_r14"},
1086b8021494Sopenharmony_ci                           {{cc, r13, r11, r10, LSR, r2},
1087b8021494Sopenharmony_ci                            false,
1088b8021494Sopenharmony_ci                            al,
1089b8021494Sopenharmony_ci                            "cc r13 r11 r10 LSR r2",
1090b8021494Sopenharmony_ci                            "cc_r13_r11_r10_LSR_r2"},
1091b8021494Sopenharmony_ci                           {{mi, r3, r9, r14, LSR, r14},
1092b8021494Sopenharmony_ci                            false,
1093b8021494Sopenharmony_ci                            al,
1094b8021494Sopenharmony_ci                            "mi r3 r9 r14 LSR r14",
1095b8021494Sopenharmony_ci                            "mi_r3_r9_r14_LSR_r14"},
1096b8021494Sopenharmony_ci                           {{ne, r10, r3, r4, LSR, r3},
1097b8021494Sopenharmony_ci                            false,
1098b8021494Sopenharmony_ci                            al,
1099b8021494Sopenharmony_ci                            "ne r10 r3 r4 LSR r3",
1100b8021494Sopenharmony_ci                            "ne_r10_r3_r4_LSR_r3"},
1101b8021494Sopenharmony_ci                           {{ls, r14, r9, r6, LSL, r9},
1102b8021494Sopenharmony_ci                            false,
1103b8021494Sopenharmony_ci                            al,
1104b8021494Sopenharmony_ci                            "ls r14 r9 r6 LSL r9",
1105b8021494Sopenharmony_ci                            "ls_r14_r9_r6_LSL_r9"},
1106b8021494Sopenharmony_ci                           {{ls, r8, r2, r8, ROR, r7},
1107b8021494Sopenharmony_ci                            false,
1108b8021494Sopenharmony_ci                            al,
1109b8021494Sopenharmony_ci                            "ls r8 r2 r8 ROR r7",
1110b8021494Sopenharmony_ci                            "ls_r8_r2_r8_ROR_r7"},
1111b8021494Sopenharmony_ci                           {{ne, r2, r6, r3, ROR, r3},
1112b8021494Sopenharmony_ci                            false,
1113b8021494Sopenharmony_ci                            al,
1114b8021494Sopenharmony_ci                            "ne r2 r6 r3 ROR r3",
1115b8021494Sopenharmony_ci                            "ne_r2_r6_r3_ROR_r3"},
1116b8021494Sopenharmony_ci                           {{mi, r12, r3, r11, ASR, r11},
1117b8021494Sopenharmony_ci                            false,
1118b8021494Sopenharmony_ci                            al,
1119b8021494Sopenharmony_ci                            "mi r12 r3 r11 ASR r11",
1120b8021494Sopenharmony_ci                            "mi_r12_r3_r11_ASR_r11"},
1121b8021494Sopenharmony_ci                           {{le, r7, r10, r11, LSL, r9},
1122b8021494Sopenharmony_ci                            false,
1123b8021494Sopenharmony_ci                            al,
1124b8021494Sopenharmony_ci                            "le r7 r10 r11 LSL r9",
1125b8021494Sopenharmony_ci                            "le_r7_r10_r11_LSL_r9"},
1126b8021494Sopenharmony_ci                           {{al, r1, r2, r10, ROR, r8},
1127b8021494Sopenharmony_ci                            false,
1128b8021494Sopenharmony_ci                            al,
1129b8021494Sopenharmony_ci                            "al r1 r2 r10 ROR r8",
1130b8021494Sopenharmony_ci                            "al_r1_r2_r10_ROR_r8"},
1131b8021494Sopenharmony_ci                           {{cc, r7, r9, r14, LSL, r7},
1132b8021494Sopenharmony_ci                            false,
1133b8021494Sopenharmony_ci                            al,
1134b8021494Sopenharmony_ci                            "cc r7 r9 r14 LSL r7",
1135b8021494Sopenharmony_ci                            "cc_r7_r9_r14_LSL_r7"},
1136b8021494Sopenharmony_ci                           {{cc, r9, r3, r5, LSL, r8},
1137b8021494Sopenharmony_ci                            false,
1138b8021494Sopenharmony_ci                            al,
1139b8021494Sopenharmony_ci                            "cc r9 r3 r5 LSL r8",
1140b8021494Sopenharmony_ci                            "cc_r9_r3_r5_LSL_r8"},
1141b8021494Sopenharmony_ci                           {{hi, r8, r3, r8, ROR, r2},
1142b8021494Sopenharmony_ci                            false,
1143b8021494Sopenharmony_ci                            al,
1144b8021494Sopenharmony_ci                            "hi r8 r3 r8 ROR r2",
1145b8021494Sopenharmony_ci                            "hi_r8_r3_r8_ROR_r2"},
1146b8021494Sopenharmony_ci                           {{pl, r10, r13, r14, LSR, r10},
1147b8021494Sopenharmony_ci                            false,
1148b8021494Sopenharmony_ci                            al,
1149b8021494Sopenharmony_ci                            "pl r10 r13 r14 LSR r10",
1150b8021494Sopenharmony_ci                            "pl_r10_r13_r14_LSR_r10"},
1151b8021494Sopenharmony_ci                           {{lt, r13, r4, r13, LSR, r12},
1152b8021494Sopenharmony_ci                            false,
1153b8021494Sopenharmony_ci                            al,
1154b8021494Sopenharmony_ci                            "lt r13 r4 r13 LSR r12",
1155b8021494Sopenharmony_ci                            "lt_r13_r4_r13_LSR_r12"},
1156b8021494Sopenharmony_ci                           {{ls, r12, r14, r11, LSR, r13},
1157b8021494Sopenharmony_ci                            false,
1158b8021494Sopenharmony_ci                            al,
1159b8021494Sopenharmony_ci                            "ls r12 r14 r11 LSR r13",
1160b8021494Sopenharmony_ci                            "ls_r12_r14_r11_LSR_r13"},
1161b8021494Sopenharmony_ci                           {{vs, r11, r10, r10, ASR, r2},
1162b8021494Sopenharmony_ci                            false,
1163b8021494Sopenharmony_ci                            al,
1164b8021494Sopenharmony_ci                            "vs r11 r10 r10 ASR r2",
1165b8021494Sopenharmony_ci                            "vs_r11_r10_r10_ASR_r2"},
1166b8021494Sopenharmony_ci                           {{cc, r5, r8, r13, LSL, r10},
1167b8021494Sopenharmony_ci                            false,
1168b8021494Sopenharmony_ci                            al,
1169b8021494Sopenharmony_ci                            "cc r5 r8 r13 LSL r10",
1170b8021494Sopenharmony_ci                            "cc_r5_r8_r13_LSL_r10"},
1171b8021494Sopenharmony_ci                           {{cs, r7, r4, r11, LSR, r14},
1172b8021494Sopenharmony_ci                            false,
1173b8021494Sopenharmony_ci                            al,
1174b8021494Sopenharmony_ci                            "cs r7 r4 r11 LSR r14",
1175b8021494Sopenharmony_ci                            "cs_r7_r4_r11_LSR_r14"},
1176b8021494Sopenharmony_ci                           {{lt, r1, r12, r7, ASR, r11},
1177b8021494Sopenharmony_ci                            false,
1178b8021494Sopenharmony_ci                            al,
1179b8021494Sopenharmony_ci                            "lt r1 r12 r7 ASR r11",
1180b8021494Sopenharmony_ci                            "lt_r1_r12_r7_ASR_r11"},
1181b8021494Sopenharmony_ci                           {{vc, r11, r4, r4, LSL, r10},
1182b8021494Sopenharmony_ci                            false,
1183b8021494Sopenharmony_ci                            al,
1184b8021494Sopenharmony_ci                            "vc r11 r4 r4 LSL r10",
1185b8021494Sopenharmony_ci                            "vc_r11_r4_r4_LSL_r10"},
1186b8021494Sopenharmony_ci                           {{vc, r7, r4, r6, LSR, r7},
1187b8021494Sopenharmony_ci                            false,
1188b8021494Sopenharmony_ci                            al,
1189b8021494Sopenharmony_ci                            "vc r7 r4 r6 LSR r7",
1190b8021494Sopenharmony_ci                            "vc_r7_r4_r6_LSR_r7"},
1191b8021494Sopenharmony_ci                           {{vc, r0, r3, r0, ASR, r14},
1192b8021494Sopenharmony_ci                            false,
1193b8021494Sopenharmony_ci                            al,
1194b8021494Sopenharmony_ci                            "vc r0 r3 r0 ASR r14",
1195b8021494Sopenharmony_ci                            "vc_r0_r3_r0_ASR_r14"},
1196b8021494Sopenharmony_ci                           {{mi, r11, r8, r13, ASR, r8},
1197b8021494Sopenharmony_ci                            false,
1198b8021494Sopenharmony_ci                            al,
1199b8021494Sopenharmony_ci                            "mi r11 r8 r13 ASR r8",
1200b8021494Sopenharmony_ci                            "mi_r11_r8_r13_ASR_r8"},
1201b8021494Sopenharmony_ci                           {{gt, r13, r14, r6, LSL, r11},
1202b8021494Sopenharmony_ci                            false,
1203b8021494Sopenharmony_ci                            al,
1204b8021494Sopenharmony_ci                            "gt r13 r14 r6 LSL r11",
1205b8021494Sopenharmony_ci                            "gt_r13_r14_r6_LSL_r11"},
1206b8021494Sopenharmony_ci                           {{cs, r3, r2, r6, LSL, r8},
1207b8021494Sopenharmony_ci                            false,
1208b8021494Sopenharmony_ci                            al,
1209b8021494Sopenharmony_ci                            "cs r3 r2 r6 LSL r8",
1210b8021494Sopenharmony_ci                            "cs_r3_r2_r6_LSL_r8"},
1211b8021494Sopenharmony_ci                           {{ne, r7, r5, r5, LSL, r8},
1212b8021494Sopenharmony_ci                            false,
1213b8021494Sopenharmony_ci                            al,
1214b8021494Sopenharmony_ci                            "ne r7 r5 r5 LSL r8",
1215b8021494Sopenharmony_ci                            "ne_r7_r5_r5_LSL_r8"},
1216b8021494Sopenharmony_ci                           {{lt, r0, r12, r6, LSR, r0},
1217b8021494Sopenharmony_ci                            false,
1218b8021494Sopenharmony_ci                            al,
1219b8021494Sopenharmony_ci                            "lt r0 r12 r6 LSR r0",
1220b8021494Sopenharmony_ci                            "lt_r0_r12_r6_LSR_r0"},
1221b8021494Sopenharmony_ci                           {{ls, r11, r9, r12, ROR, r2},
1222b8021494Sopenharmony_ci                            false,
1223b8021494Sopenharmony_ci                            al,
1224b8021494Sopenharmony_ci                            "ls r11 r9 r12 ROR r2",
1225b8021494Sopenharmony_ci                            "ls_r11_r9_r12_ROR_r2"},
1226b8021494Sopenharmony_ci                           {{ls, r6, r0, r8, LSR, r4},
1227b8021494Sopenharmony_ci                            false,
1228b8021494Sopenharmony_ci                            al,
1229b8021494Sopenharmony_ci                            "ls r6 r0 r8 LSR r4",
1230b8021494Sopenharmony_ci                            "ls_r6_r0_r8_LSR_r4"},
1231b8021494Sopenharmony_ci                           {{lt, r6, r7, r0, ROR, r13},
1232b8021494Sopenharmony_ci                            false,
1233b8021494Sopenharmony_ci                            al,
1234b8021494Sopenharmony_ci                            "lt r6 r7 r0 ROR r13",
1235b8021494Sopenharmony_ci                            "lt_r6_r7_r0_ROR_r13"},
1236b8021494Sopenharmony_ci                           {{gt, r14, r4, r1, LSL, r8},
1237b8021494Sopenharmony_ci                            false,
1238b8021494Sopenharmony_ci                            al,
1239b8021494Sopenharmony_ci                            "gt r14 r4 r1 LSL r8",
1240b8021494Sopenharmony_ci                            "gt_r14_r4_r1_LSL_r8"},
1241b8021494Sopenharmony_ci                           {{al, r14, r5, r6, LSL, r7},
1242b8021494Sopenharmony_ci                            false,
1243b8021494Sopenharmony_ci                            al,
1244b8021494Sopenharmony_ci                            "al r14 r5 r6 LSL r7",
1245b8021494Sopenharmony_ci                            "al_r14_r5_r6_LSL_r7"},
1246b8021494Sopenharmony_ci                           {{ge, r9, r6, r4, LSR, r8},
1247b8021494Sopenharmony_ci                            false,
1248b8021494Sopenharmony_ci                            al,
1249b8021494Sopenharmony_ci                            "ge r9 r6 r4 LSR r8",
1250b8021494Sopenharmony_ci                            "ge_r9_r6_r4_LSR_r8"},
1251b8021494Sopenharmony_ci                           {{lt, r2, r14, r13, ROR, r3},
1252b8021494Sopenharmony_ci                            false,
1253b8021494Sopenharmony_ci                            al,
1254b8021494Sopenharmony_ci                            "lt r2 r14 r13 ROR r3",
1255b8021494Sopenharmony_ci                            "lt_r2_r14_r13_ROR_r3"},
1256b8021494Sopenharmony_ci                           {{al, r11, r1, r13, LSR, r9},
1257b8021494Sopenharmony_ci                            false,
1258b8021494Sopenharmony_ci                            al,
1259b8021494Sopenharmony_ci                            "al r11 r1 r13 LSR r9",
1260b8021494Sopenharmony_ci                            "al_r11_r1_r13_LSR_r9"},
1261b8021494Sopenharmony_ci                           {{vs, r8, r2, r5, LSL, r11},
1262b8021494Sopenharmony_ci                            false,
1263b8021494Sopenharmony_ci                            al,
1264b8021494Sopenharmony_ci                            "vs r8 r2 r5 LSL r11",
1265b8021494Sopenharmony_ci                            "vs_r8_r2_r5_LSL_r11"},
1266b8021494Sopenharmony_ci                           {{pl, r8, r14, r8, LSL, r7},
1267b8021494Sopenharmony_ci                            false,
1268b8021494Sopenharmony_ci                            al,
1269b8021494Sopenharmony_ci                            "pl r8 r14 r8 LSL r7",
1270b8021494Sopenharmony_ci                            "pl_r8_r14_r8_LSL_r7"},
1271b8021494Sopenharmony_ci                           {{cs, r10, r5, r5, ASR, r4},
1272b8021494Sopenharmony_ci                            false,
1273b8021494Sopenharmony_ci                            al,
1274b8021494Sopenharmony_ci                            "cs r10 r5 r5 ASR r4",
1275b8021494Sopenharmony_ci                            "cs_r10_r5_r5_ASR_r4"},
1276b8021494Sopenharmony_ci                           {{eq, r12, r14, r9, LSR, r11},
1277b8021494Sopenharmony_ci                            false,
1278b8021494Sopenharmony_ci                            al,
1279b8021494Sopenharmony_ci                            "eq r12 r14 r9 LSR r11",
1280b8021494Sopenharmony_ci                            "eq_r12_r14_r9_LSR_r11"},
1281b8021494Sopenharmony_ci                           {{lt, r1, r3, r3, LSL, r1},
1282b8021494Sopenharmony_ci                            false,
1283b8021494Sopenharmony_ci                            al,
1284b8021494Sopenharmony_ci                            "lt r1 r3 r3 LSL r1",
1285b8021494Sopenharmony_ci                            "lt_r1_r3_r3_LSL_r1"},
1286b8021494Sopenharmony_ci                           {{le, r4, r13, r4, ASR, r8},
1287b8021494Sopenharmony_ci                            false,
1288b8021494Sopenharmony_ci                            al,
1289b8021494Sopenharmony_ci                            "le r4 r13 r4 ASR r8",
1290b8021494Sopenharmony_ci                            "le_r4_r13_r4_ASR_r8"},
1291b8021494Sopenharmony_ci                           {{ne, r5, r4, r2, LSL, r8},
1292b8021494Sopenharmony_ci                            false,
1293b8021494Sopenharmony_ci                            al,
1294b8021494Sopenharmony_ci                            "ne r5 r4 r2 LSL r8",
1295b8021494Sopenharmony_ci                            "ne_r5_r4_r2_LSL_r8"},
1296b8021494Sopenharmony_ci                           {{le, r3, r14, r13, LSR, r1},
1297b8021494Sopenharmony_ci                            false,
1298b8021494Sopenharmony_ci                            al,
1299b8021494Sopenharmony_ci                            "le r3 r14 r13 LSR r1",
1300b8021494Sopenharmony_ci                            "le_r3_r14_r13_LSR_r1"},
1301b8021494Sopenharmony_ci                           {{cc, r6, r3, r5, LSL, r1},
1302b8021494Sopenharmony_ci                            false,
1303b8021494Sopenharmony_ci                            al,
1304b8021494Sopenharmony_ci                            "cc r6 r3 r5 LSL r1",
1305b8021494Sopenharmony_ci                            "cc_r6_r3_r5_LSL_r1"},
1306b8021494Sopenharmony_ci                           {{lt, r9, r6, r11, LSR, r14},
1307b8021494Sopenharmony_ci                            false,
1308b8021494Sopenharmony_ci                            al,
1309b8021494Sopenharmony_ci                            "lt r9 r6 r11 LSR r14",
1310b8021494Sopenharmony_ci                            "lt_r9_r6_r11_LSR_r14"},
1311b8021494Sopenharmony_ci                           {{cc, r13, r8, r10, ROR, r1},
1312b8021494Sopenharmony_ci                            false,
1313b8021494Sopenharmony_ci                            al,
1314b8021494Sopenharmony_ci                            "cc r13 r8 r10 ROR r1",
1315b8021494Sopenharmony_ci                            "cc_r13_r8_r10_ROR_r1"},
1316b8021494Sopenharmony_ci                           {{lt, r7, r10, r11, LSR, r2},
1317b8021494Sopenharmony_ci                            false,
1318b8021494Sopenharmony_ci                            al,
1319b8021494Sopenharmony_ci                            "lt r7 r10 r11 LSR r2",
1320b8021494Sopenharmony_ci                            "lt_r7_r10_r11_LSR_r2"},
1321b8021494Sopenharmony_ci                           {{pl, r0, r9, r5, LSR, r8},
1322b8021494Sopenharmony_ci                            false,
1323b8021494Sopenharmony_ci                            al,
1324b8021494Sopenharmony_ci                            "pl r0 r9 r5 LSR r8",
1325b8021494Sopenharmony_ci                            "pl_r0_r9_r5_LSR_r8"},
1326b8021494Sopenharmony_ci                           {{eq, r8, r9, r11, LSR, r13},
1327b8021494Sopenharmony_ci                            false,
1328b8021494Sopenharmony_ci                            al,
1329b8021494Sopenharmony_ci                            "eq r8 r9 r11 LSR r13",
1330b8021494Sopenharmony_ci                            "eq_r8_r9_r11_LSR_r13"},
1331b8021494Sopenharmony_ci                           {{hi, r10, r1, r9, ROR, r12},
1332b8021494Sopenharmony_ci                            false,
1333b8021494Sopenharmony_ci                            al,
1334b8021494Sopenharmony_ci                            "hi r10 r1 r9 ROR r12",
1335b8021494Sopenharmony_ci                            "hi_r10_r1_r9_ROR_r12"},
1336b8021494Sopenharmony_ci                           {{pl, r13, r1, r14, LSL, r14},
1337b8021494Sopenharmony_ci                            false,
1338b8021494Sopenharmony_ci                            al,
1339b8021494Sopenharmony_ci                            "pl r13 r1 r14 LSL r14",
1340b8021494Sopenharmony_ci                            "pl_r13_r1_r14_LSL_r14"},
1341b8021494Sopenharmony_ci                           {{eq, r13, r3, r7, LSR, r13},
1342b8021494Sopenharmony_ci                            false,
1343b8021494Sopenharmony_ci                            al,
1344b8021494Sopenharmony_ci                            "eq r13 r3 r7 LSR r13",
1345b8021494Sopenharmony_ci                            "eq_r13_r3_r7_LSR_r13"},
1346b8021494Sopenharmony_ci                           {{eq, r3, r6, r6, ASR, r14},
1347b8021494Sopenharmony_ci                            false,
1348b8021494Sopenharmony_ci                            al,
1349b8021494Sopenharmony_ci                            "eq r3 r6 r6 ASR r14",
1350b8021494Sopenharmony_ci                            "eq_r3_r6_r6_ASR_r14"},
1351b8021494Sopenharmony_ci                           {{gt, r5, r4, r8, ROR, r13},
1352b8021494Sopenharmony_ci                            false,
1353b8021494Sopenharmony_ci                            al,
1354b8021494Sopenharmony_ci                            "gt r5 r4 r8 ROR r13",
1355b8021494Sopenharmony_ci                            "gt_r5_r4_r8_ROR_r13"},
1356b8021494Sopenharmony_ci                           {{al, r9, r7, r0, ROR, r3},
1357b8021494Sopenharmony_ci                            false,
1358b8021494Sopenharmony_ci                            al,
1359b8021494Sopenharmony_ci                            "al r9 r7 r0 ROR r3",
1360b8021494Sopenharmony_ci                            "al_r9_r7_r0_ROR_r3"},
1361b8021494Sopenharmony_ci                           {{mi, r13, r11, r3, LSL, r1},
1362b8021494Sopenharmony_ci                            false,
1363b8021494Sopenharmony_ci                            al,
1364b8021494Sopenharmony_ci                            "mi r13 r11 r3 LSL r1",
1365b8021494Sopenharmony_ci                            "mi_r13_r11_r3_LSL_r1"},
1366b8021494Sopenharmony_ci                           {{ls, r11, r14, r6, LSL, r14},
1367b8021494Sopenharmony_ci                            false,
1368b8021494Sopenharmony_ci                            al,
1369b8021494Sopenharmony_ci                            "ls r11 r14 r6 LSL r14",
1370b8021494Sopenharmony_ci                            "ls_r11_r14_r6_LSL_r14"},
1371b8021494Sopenharmony_ci                           {{al, r14, r3, r7, LSL, r9},
1372b8021494Sopenharmony_ci                            false,
1373b8021494Sopenharmony_ci                            al,
1374b8021494Sopenharmony_ci                            "al r14 r3 r7 LSL r9",
1375b8021494Sopenharmony_ci                            "al_r14_r3_r7_LSL_r9"},
1376b8021494Sopenharmony_ci                           {{cs, r14, r2, r14, LSL, r13},
1377b8021494Sopenharmony_ci                            false,
1378b8021494Sopenharmony_ci                            al,
1379b8021494Sopenharmony_ci                            "cs r14 r2 r14 LSL r13",
1380b8021494Sopenharmony_ci                            "cs_r14_r2_r14_LSL_r13"},
1381b8021494Sopenharmony_ci                           {{ls, r11, r10, r6, ASR, r11},
1382b8021494Sopenharmony_ci                            false,
1383b8021494Sopenharmony_ci                            al,
1384b8021494Sopenharmony_ci                            "ls r11 r10 r6 ASR r11",
1385b8021494Sopenharmony_ci                            "ls_r11_r10_r6_ASR_r11"},
1386b8021494Sopenharmony_ci                           {{pl, r13, r4, r2, LSL, r4},
1387b8021494Sopenharmony_ci                            false,
1388b8021494Sopenharmony_ci                            al,
1389b8021494Sopenharmony_ci                            "pl r13 r4 r2 LSL r4",
1390b8021494Sopenharmony_ci                            "pl_r13_r4_r2_LSL_r4"},
1391b8021494Sopenharmony_ci                           {{mi, r8, r10, r5, ASR, r0},
1392b8021494Sopenharmony_ci                            false,
1393b8021494Sopenharmony_ci                            al,
1394b8021494Sopenharmony_ci                            "mi r8 r10 r5 ASR r0",
1395b8021494Sopenharmony_ci                            "mi_r8_r10_r5_ASR_r0"},
1396b8021494Sopenharmony_ci                           {{cs, r2, r1, r6, ASR, r4},
1397b8021494Sopenharmony_ci                            false,
1398b8021494Sopenharmony_ci                            al,
1399b8021494Sopenharmony_ci                            "cs r2 r1 r6 ASR r4",
1400b8021494Sopenharmony_ci                            "cs_r2_r1_r6_ASR_r4"},
1401b8021494Sopenharmony_ci                           {{cc, r0, r11, r8, LSR, r14},
1402b8021494Sopenharmony_ci                            false,
1403b8021494Sopenharmony_ci                            al,
1404b8021494Sopenharmony_ci                            "cc r0 r11 r8 LSR r14",
1405b8021494Sopenharmony_ci                            "cc_r0_r11_r8_LSR_r14"},
1406b8021494Sopenharmony_ci                           {{ge, r5, r4, r6, ROR, r1},
1407b8021494Sopenharmony_ci                            false,
1408b8021494Sopenharmony_ci                            al,
1409b8021494Sopenharmony_ci                            "ge r5 r4 r6 ROR r1",
1410b8021494Sopenharmony_ci                            "ge_r5_r4_r6_ROR_r1"},
1411b8021494Sopenharmony_ci                           {{cs, r0, r14, r3, LSR, r11},
1412b8021494Sopenharmony_ci                            false,
1413b8021494Sopenharmony_ci                            al,
1414b8021494Sopenharmony_ci                            "cs r0 r14 r3 LSR r11",
1415b8021494Sopenharmony_ci                            "cs_r0_r14_r3_LSR_r11"},
1416b8021494Sopenharmony_ci                           {{ge, r9, r4, r10, LSR, r13},
1417b8021494Sopenharmony_ci                            false,
1418b8021494Sopenharmony_ci                            al,
1419b8021494Sopenharmony_ci                            "ge r9 r4 r10 LSR r13",
1420b8021494Sopenharmony_ci                            "ge_r9_r4_r10_LSR_r13"},
1421b8021494Sopenharmony_ci                           {{ne, r11, r0, r9, LSL, r8},
1422b8021494Sopenharmony_ci                            false,
1423b8021494Sopenharmony_ci                            al,
1424b8021494Sopenharmony_ci                            "ne r11 r0 r9 LSL r8",
1425b8021494Sopenharmony_ci                            "ne_r11_r0_r9_LSL_r8"},
1426b8021494Sopenharmony_ci                           {{vs, r4, r1, r0, LSL, r8},
1427b8021494Sopenharmony_ci                            false,
1428b8021494Sopenharmony_ci                            al,
1429b8021494Sopenharmony_ci                            "vs r4 r1 r0 LSL r8",
1430b8021494Sopenharmony_ci                            "vs_r4_r1_r0_LSL_r8"},
1431b8021494Sopenharmony_ci                           {{le, r5, r5, r4, ROR, r10},
1432b8021494Sopenharmony_ci                            false,
1433b8021494Sopenharmony_ci                            al,
1434b8021494Sopenharmony_ci                            "le r5 r5 r4 ROR r10",
1435b8021494Sopenharmony_ci                            "le_r5_r5_r4_ROR_r10"},
1436b8021494Sopenharmony_ci                           {{al, r9, r5, r0, ROR, r6},
1437b8021494Sopenharmony_ci                            false,
1438b8021494Sopenharmony_ci                            al,
1439b8021494Sopenharmony_ci                            "al r9 r5 r0 ROR r6",
1440b8021494Sopenharmony_ci                            "al_r9_r5_r0_ROR_r6"},
1441b8021494Sopenharmony_ci                           {{hi, r6, r6, r9, LSR, r12},
1442b8021494Sopenharmony_ci                            false,
1443b8021494Sopenharmony_ci                            al,
1444b8021494Sopenharmony_ci                            "hi r6 r6 r9 LSR r12",
1445b8021494Sopenharmony_ci                            "hi_r6_r6_r9_LSR_r12"},
1446b8021494Sopenharmony_ci                           {{lt, r1, r4, r9, ROR, r4},
1447b8021494Sopenharmony_ci                            false,
1448b8021494Sopenharmony_ci                            al,
1449b8021494Sopenharmony_ci                            "lt r1 r4 r9 ROR r4",
1450b8021494Sopenharmony_ci                            "lt_r1_r4_r9_ROR_r4"},
1451b8021494Sopenharmony_ci                           {{vc, r4, r7, r0, ROR, r11},
1452b8021494Sopenharmony_ci                            false,
1453b8021494Sopenharmony_ci                            al,
1454b8021494Sopenharmony_ci                            "vc r4 r7 r0 ROR r11",
1455b8021494Sopenharmony_ci                            "vc_r4_r7_r0_ROR_r11"},
1456b8021494Sopenharmony_ci                           {{gt, r1, r4, r2, ROR, r8},
1457b8021494Sopenharmony_ci                            false,
1458b8021494Sopenharmony_ci                            al,
1459b8021494Sopenharmony_ci                            "gt r1 r4 r2 ROR r8",
1460b8021494Sopenharmony_ci                            "gt_r1_r4_r2_ROR_r8"},
1461b8021494Sopenharmony_ci                           {{ne, r4, r5, r9, LSL, r6},
1462b8021494Sopenharmony_ci                            false,
1463b8021494Sopenharmony_ci                            al,
1464b8021494Sopenharmony_ci                            "ne r4 r5 r9 LSL r6",
1465b8021494Sopenharmony_ci                            "ne_r4_r5_r9_LSL_r6"},
1466b8021494Sopenharmony_ci                           {{gt, r3, r4, r10, LSR, r5},
1467b8021494Sopenharmony_ci                            false,
1468b8021494Sopenharmony_ci                            al,
1469b8021494Sopenharmony_ci                            "gt r3 r4 r10 LSR r5",
1470b8021494Sopenharmony_ci                            "gt_r3_r4_r10_LSR_r5"},
1471b8021494Sopenharmony_ci                           {{al, r7, r9, r2, ROR, r2},
1472b8021494Sopenharmony_ci                            false,
1473b8021494Sopenharmony_ci                            al,
1474b8021494Sopenharmony_ci                            "al r7 r9 r2 ROR r2",
1475b8021494Sopenharmony_ci                            "al_r7_r9_r2_ROR_r2"},
1476b8021494Sopenharmony_ci                           {{le, r3, r8, r2, LSL, r2},
1477b8021494Sopenharmony_ci                            false,
1478b8021494Sopenharmony_ci                            al,
1479b8021494Sopenharmony_ci                            "le r3 r8 r2 LSL r2",
1480b8021494Sopenharmony_ci                            "le_r3_r8_r2_LSL_r2"},
1481b8021494Sopenharmony_ci                           {{hi, r3, r8, r0, LSL, r1},
1482b8021494Sopenharmony_ci                            false,
1483b8021494Sopenharmony_ci                            al,
1484b8021494Sopenharmony_ci                            "hi r3 r8 r0 LSL r1",
1485b8021494Sopenharmony_ci                            "hi_r3_r8_r0_LSL_r1"},
1486b8021494Sopenharmony_ci                           {{ge, r11, r4, r4, LSL, r14},
1487b8021494Sopenharmony_ci                            false,
1488b8021494Sopenharmony_ci                            al,
1489b8021494Sopenharmony_ci                            "ge r11 r4 r4 LSL r14",
1490b8021494Sopenharmony_ci                            "ge_r11_r4_r4_LSL_r14"},
1491b8021494Sopenharmony_ci                           {{mi, r8, r14, r1, LSR, r13},
1492b8021494Sopenharmony_ci                            false,
1493b8021494Sopenharmony_ci                            al,
1494b8021494Sopenharmony_ci                            "mi r8 r14 r1 LSR r13",
1495b8021494Sopenharmony_ci                            "mi_r8_r14_r1_LSR_r13"},
1496b8021494Sopenharmony_ci                           {{pl, r6, r1, r10, LSL, r0},
1497b8021494Sopenharmony_ci                            false,
1498b8021494Sopenharmony_ci                            al,
1499b8021494Sopenharmony_ci                            "pl r6 r1 r10 LSL r0",
1500b8021494Sopenharmony_ci                            "pl_r6_r1_r10_LSL_r0"},
1501b8021494Sopenharmony_ci                           {{eq, r11, r7, r13, LSL, r0},
1502b8021494Sopenharmony_ci                            false,
1503b8021494Sopenharmony_ci                            al,
1504b8021494Sopenharmony_ci                            "eq r11 r7 r13 LSL r0",
1505b8021494Sopenharmony_ci                            "eq_r11_r7_r13_LSL_r0"},
1506b8021494Sopenharmony_ci                           {{cc, r4, r9, r11, LSR, r1},
1507b8021494Sopenharmony_ci                            false,
1508b8021494Sopenharmony_ci                            al,
1509b8021494Sopenharmony_ci                            "cc r4 r9 r11 LSR r1",
1510b8021494Sopenharmony_ci                            "cc_r4_r9_r11_LSR_r1"},
1511b8021494Sopenharmony_ci                           {{cc, r8, r2, r3, LSR, r8},
1512b8021494Sopenharmony_ci                            false,
1513b8021494Sopenharmony_ci                            al,
1514b8021494Sopenharmony_ci                            "cc r8 r2 r3 LSR r8",
1515b8021494Sopenharmony_ci                            "cc_r8_r2_r3_LSR_r8"},
1516b8021494Sopenharmony_ci                           {{ne, r5, r1, r14, LSL, r12},
1517b8021494Sopenharmony_ci                            false,
1518b8021494Sopenharmony_ci                            al,
1519b8021494Sopenharmony_ci                            "ne r5 r1 r14 LSL r12",
1520b8021494Sopenharmony_ci                            "ne_r5_r1_r14_LSL_r12"},
1521b8021494Sopenharmony_ci                           {{le, r13, r5, r2, ASR, r1},
1522b8021494Sopenharmony_ci                            false,
1523b8021494Sopenharmony_ci                            al,
1524b8021494Sopenharmony_ci                            "le r13 r5 r2 ASR r1",
1525b8021494Sopenharmony_ci                            "le_r13_r5_r2_ASR_r1"},
1526b8021494Sopenharmony_ci                           {{al, r0, r5, r0, LSL, r4},
1527b8021494Sopenharmony_ci                            false,
1528b8021494Sopenharmony_ci                            al,
1529b8021494Sopenharmony_ci                            "al r0 r5 r0 LSL r4",
1530b8021494Sopenharmony_ci                            "al_r0_r5_r0_LSL_r4"},
1531b8021494Sopenharmony_ci                           {{mi, r3, r1, r4, LSR, r3},
1532b8021494Sopenharmony_ci                            false,
1533b8021494Sopenharmony_ci                            al,
1534b8021494Sopenharmony_ci                            "mi r3 r1 r4 LSR r3",
1535b8021494Sopenharmony_ci                            "mi_r3_r1_r4_LSR_r3"},
1536b8021494Sopenharmony_ci                           {{cs, r3, r7, r0, ROR, r8},
1537b8021494Sopenharmony_ci                            false,
1538b8021494Sopenharmony_ci                            al,
1539b8021494Sopenharmony_ci                            "cs r3 r7 r0 ROR r8",
1540b8021494Sopenharmony_ci                            "cs_r3_r7_r0_ROR_r8"},
1541b8021494Sopenharmony_ci                           {{cs, r11, r14, r4, LSR, r13},
1542b8021494Sopenharmony_ci                            false,
1543b8021494Sopenharmony_ci                            al,
1544b8021494Sopenharmony_ci                            "cs r11 r14 r4 LSR r13",
1545b8021494Sopenharmony_ci                            "cs_r11_r14_r4_LSR_r13"},
1546b8021494Sopenharmony_ci                           {{vs, r11, r10, r8, ASR, r3},
1547b8021494Sopenharmony_ci                            false,
1548b8021494Sopenharmony_ci                            al,
1549b8021494Sopenharmony_ci                            "vs r11 r10 r8 ASR r3",
1550b8021494Sopenharmony_ci                            "vs_r11_r10_r8_ASR_r3"},
1551b8021494Sopenharmony_ci                           {{gt, r10, r8, r9, LSL, r13},
1552b8021494Sopenharmony_ci                            false,
1553b8021494Sopenharmony_ci                            al,
1554b8021494Sopenharmony_ci                            "gt r10 r8 r9 LSL r13",
1555b8021494Sopenharmony_ci                            "gt_r10_r8_r9_LSL_r13"},
1556b8021494Sopenharmony_ci                           {{eq, r10, r1, r8, ASR, r9},
1557b8021494Sopenharmony_ci                            false,
1558b8021494Sopenharmony_ci                            al,
1559b8021494Sopenharmony_ci                            "eq r10 r1 r8 ASR r9",
1560b8021494Sopenharmony_ci                            "eq_r10_r1_r8_ASR_r9"},
1561b8021494Sopenharmony_ci                           {{al, r2, r1, r10, ASR, r8},
1562b8021494Sopenharmony_ci                            false,
1563b8021494Sopenharmony_ci                            al,
1564b8021494Sopenharmony_ci                            "al r2 r1 r10 ASR r8",
1565b8021494Sopenharmony_ci                            "al_r2_r1_r10_ASR_r8"},
1566b8021494Sopenharmony_ci                           {{al, r7, r1, r7, ROR, r11},
1567b8021494Sopenharmony_ci                            false,
1568b8021494Sopenharmony_ci                            al,
1569b8021494Sopenharmony_ci                            "al r7 r1 r7 ROR r11",
1570b8021494Sopenharmony_ci                            "al_r7_r1_r7_ROR_r11"},
1571b8021494Sopenharmony_ci                           {{cs, r0, r5, r6, ASR, r1},
1572b8021494Sopenharmony_ci                            false,
1573b8021494Sopenharmony_ci                            al,
1574b8021494Sopenharmony_ci                            "cs r0 r5 r6 ASR r1",
1575b8021494Sopenharmony_ci                            "cs_r0_r5_r6_ASR_r1"},
1576b8021494Sopenharmony_ci                           {{lt, r12, r11, r10, LSR, r14},
1577b8021494Sopenharmony_ci                            false,
1578b8021494Sopenharmony_ci                            al,
1579b8021494Sopenharmony_ci                            "lt r12 r11 r10 LSR r14",
1580b8021494Sopenharmony_ci                            "lt_r12_r11_r10_LSR_r14"},
1581b8021494Sopenharmony_ci                           {{pl, r13, r7, r5, LSL, r2},
1582b8021494Sopenharmony_ci                            false,
1583b8021494Sopenharmony_ci                            al,
1584b8021494Sopenharmony_ci                            "pl r13 r7 r5 LSL r2",
1585b8021494Sopenharmony_ci                            "pl_r13_r7_r5_LSL_r2"},
1586b8021494Sopenharmony_ci                           {{ne, r2, r0, r12, LSL, r11},
1587b8021494Sopenharmony_ci                            false,
1588b8021494Sopenharmony_ci                            al,
1589b8021494Sopenharmony_ci                            "ne r2 r0 r12 LSL r11",
1590b8021494Sopenharmony_ci                            "ne_r2_r0_r12_LSL_r11"},
1591b8021494Sopenharmony_ci                           {{ls, r14, r9, r12, ROR, r6},
1592b8021494Sopenharmony_ci                            false,
1593b8021494Sopenharmony_ci                            al,
1594b8021494Sopenharmony_ci                            "ls r14 r9 r12 ROR r6",
1595b8021494Sopenharmony_ci                            "ls_r14_r9_r12_ROR_r6"},
1596b8021494Sopenharmony_ci                           {{cc, r9, r2, r8, ASR, r3},
1597b8021494Sopenharmony_ci                            false,
1598b8021494Sopenharmony_ci                            al,
1599b8021494Sopenharmony_ci                            "cc r9 r2 r8 ASR r3",
1600b8021494Sopenharmony_ci                            "cc_r9_r2_r8_ASR_r3"},
1601b8021494Sopenharmony_ci                           {{pl, r12, r11, r0, ASR, r7},
1602b8021494Sopenharmony_ci                            false,
1603b8021494Sopenharmony_ci                            al,
1604b8021494Sopenharmony_ci                            "pl r12 r11 r0 ASR r7",
1605b8021494Sopenharmony_ci                            "pl_r12_r11_r0_ASR_r7"},
1606b8021494Sopenharmony_ci                           {{vs, r12, r2, r3, ROR, r1},
1607b8021494Sopenharmony_ci                            false,
1608b8021494Sopenharmony_ci                            al,
1609b8021494Sopenharmony_ci                            "vs r12 r2 r3 ROR r1",
1610b8021494Sopenharmony_ci                            "vs_r12_r2_r3_ROR_r1"},
1611b8021494Sopenharmony_ci                           {{al, r3, r1, r8, LSL, r4},
1612b8021494Sopenharmony_ci                            false,
1613b8021494Sopenharmony_ci                            al,
1614b8021494Sopenharmony_ci                            "al r3 r1 r8 LSL r4",
1615b8021494Sopenharmony_ci                            "al_r3_r1_r8_LSL_r4"},
1616b8021494Sopenharmony_ci                           {{mi, r7, r9, r13, ASR, r5},
1617b8021494Sopenharmony_ci                            false,
1618b8021494Sopenharmony_ci                            al,
1619b8021494Sopenharmony_ci                            "mi r7 r9 r13 ASR r5",
1620b8021494Sopenharmony_ci                            "mi_r7_r9_r13_ASR_r5"},
1621b8021494Sopenharmony_ci                           {{vs, r13, r4, r10, ROR, r9},
1622b8021494Sopenharmony_ci                            false,
1623b8021494Sopenharmony_ci                            al,
1624b8021494Sopenharmony_ci                            "vs r13 r4 r10 ROR r9",
1625b8021494Sopenharmony_ci                            "vs_r13_r4_r10_ROR_r9"},
1626b8021494Sopenharmony_ci                           {{eq, r8, r2, r3, LSR, r2},
1627b8021494Sopenharmony_ci                            false,
1628b8021494Sopenharmony_ci                            al,
1629b8021494Sopenharmony_ci                            "eq r8 r2 r3 LSR r2",
1630b8021494Sopenharmony_ci                            "eq_r8_r2_r3_LSR_r2"},
1631b8021494Sopenharmony_ci                           {{cs, r0, r3, r11, LSR, r7},
1632b8021494Sopenharmony_ci                            false,
1633b8021494Sopenharmony_ci                            al,
1634b8021494Sopenharmony_ci                            "cs r0 r3 r11 LSR r7",
1635b8021494Sopenharmony_ci                            "cs_r0_r3_r11_LSR_r7"},
1636b8021494Sopenharmony_ci                           {{pl, r2, r10, r9, ASR, r13},
1637b8021494Sopenharmony_ci                            false,
1638b8021494Sopenharmony_ci                            al,
1639b8021494Sopenharmony_ci                            "pl r2 r10 r9 ASR r13",
1640b8021494Sopenharmony_ci                            "pl_r2_r10_r9_ASR_r13"},
1641b8021494Sopenharmony_ci                           {{eq, r14, r0, r7, ASR, r0},
1642b8021494Sopenharmony_ci                            false,
1643b8021494Sopenharmony_ci                            al,
1644b8021494Sopenharmony_ci                            "eq r14 r0 r7 ASR r0",
1645b8021494Sopenharmony_ci                            "eq_r14_r0_r7_ASR_r0"},
1646b8021494Sopenharmony_ci                           {{lt, r12, r11, r7, ROR, r7},
1647b8021494Sopenharmony_ci                            false,
1648b8021494Sopenharmony_ci                            al,
1649b8021494Sopenharmony_ci                            "lt r12 r11 r7 ROR r7",
1650b8021494Sopenharmony_ci                            "lt_r12_r11_r7_ROR_r7"},
1651b8021494Sopenharmony_ci                           {{eq, r4, r10, r1, LSL, r2},
1652b8021494Sopenharmony_ci                            false,
1653b8021494Sopenharmony_ci                            al,
1654b8021494Sopenharmony_ci                            "eq r4 r10 r1 LSL r2",
1655b8021494Sopenharmony_ci                            "eq_r4_r10_r1_LSL_r2"},
1656b8021494Sopenharmony_ci                           {{al, r7, r14, r12, ASR, r6},
1657b8021494Sopenharmony_ci                            false,
1658b8021494Sopenharmony_ci                            al,
1659b8021494Sopenharmony_ci                            "al r7 r14 r12 ASR r6",
1660b8021494Sopenharmony_ci                            "al_r7_r14_r12_ASR_r6"},
1661b8021494Sopenharmony_ci                           {{al, r2, r5, r13, ASR, r1},
1662b8021494Sopenharmony_ci                            false,
1663b8021494Sopenharmony_ci                            al,
1664b8021494Sopenharmony_ci                            "al r2 r5 r13 ASR r1",
1665b8021494Sopenharmony_ci                            "al_r2_r5_r13_ASR_r1"},
1666b8021494Sopenharmony_ci                           {{hi, r0, r3, r14, LSL, r11},
1667b8021494Sopenharmony_ci                            false,
1668b8021494Sopenharmony_ci                            al,
1669b8021494Sopenharmony_ci                            "hi r0 r3 r14 LSL r11",
1670b8021494Sopenharmony_ci                            "hi_r0_r3_r14_LSL_r11"},
1671b8021494Sopenharmony_ci                           {{vs, r5, r6, r9, LSR, r13},
1672b8021494Sopenharmony_ci                            false,
1673b8021494Sopenharmony_ci                            al,
1674b8021494Sopenharmony_ci                            "vs r5 r6 r9 LSR r13",
1675b8021494Sopenharmony_ci                            "vs_r5_r6_r9_LSR_r13"},
1676b8021494Sopenharmony_ci                           {{hi, r14, r0, r14, ROR, r14},
1677b8021494Sopenharmony_ci                            false,
1678b8021494Sopenharmony_ci                            al,
1679b8021494Sopenharmony_ci                            "hi r14 r0 r14 ROR r14",
1680b8021494Sopenharmony_ci                            "hi_r14_r0_r14_ROR_r14"},
1681b8021494Sopenharmony_ci                           {{eq, r9, r3, r13, ROR, r9},
1682b8021494Sopenharmony_ci                            false,
1683b8021494Sopenharmony_ci                            al,
1684b8021494Sopenharmony_ci                            "eq r9 r3 r13 ROR r9",
1685b8021494Sopenharmony_ci                            "eq_r9_r3_r13_ROR_r9"},
1686b8021494Sopenharmony_ci                           {{hi, r6, r8, r1, ASR, r14},
1687b8021494Sopenharmony_ci                            false,
1688b8021494Sopenharmony_ci                            al,
1689b8021494Sopenharmony_ci                            "hi r6 r8 r1 ASR r14",
1690b8021494Sopenharmony_ci                            "hi_r6_r8_r1_ASR_r14"},
1691b8021494Sopenharmony_ci                           {{vs, r13, r2, r8, LSR, r7},
1692b8021494Sopenharmony_ci                            false,
1693b8021494Sopenharmony_ci                            al,
1694b8021494Sopenharmony_ci                            "vs r13 r2 r8 LSR r7",
1695b8021494Sopenharmony_ci                            "vs_r13_r2_r8_LSR_r7"},
1696b8021494Sopenharmony_ci                           {{cc, r13, r0, r8, LSR, r7},
1697b8021494Sopenharmony_ci                            false,
1698b8021494Sopenharmony_ci                            al,
1699b8021494Sopenharmony_ci                            "cc r13 r0 r8 LSR r7",
1700b8021494Sopenharmony_ci                            "cc_r13_r0_r8_LSR_r7"},
1701b8021494Sopenharmony_ci                           {{le, r12, r0, r11, ASR, r9},
1702b8021494Sopenharmony_ci                            false,
1703b8021494Sopenharmony_ci                            al,
1704b8021494Sopenharmony_ci                            "le r12 r0 r11 ASR r9",
1705b8021494Sopenharmony_ci                            "le_r12_r0_r11_ASR_r9"},
1706b8021494Sopenharmony_ci                           {{le, r8, r8, r1, LSR, r6},
1707b8021494Sopenharmony_ci                            false,
1708b8021494Sopenharmony_ci                            al,
1709b8021494Sopenharmony_ci                            "le r8 r8 r1 LSR r6",
1710b8021494Sopenharmony_ci                            "le_r8_r8_r1_LSR_r6"},
1711b8021494Sopenharmony_ci                           {{cs, r5, r14, r7, ASR, r3},
1712b8021494Sopenharmony_ci                            false,
1713b8021494Sopenharmony_ci                            al,
1714b8021494Sopenharmony_ci                            "cs r5 r14 r7 ASR r3",
1715b8021494Sopenharmony_ci                            "cs_r5_r14_r7_ASR_r3"},
1716b8021494Sopenharmony_ci                           {{eq, r13, r13, r10, ROR, r12},
1717b8021494Sopenharmony_ci                            false,
1718b8021494Sopenharmony_ci                            al,
1719b8021494Sopenharmony_ci                            "eq r13 r13 r10 ROR r12",
1720b8021494Sopenharmony_ci                            "eq_r13_r13_r10_ROR_r12"},
1721b8021494Sopenharmony_ci                           {{lt, r4, r7, r7, LSR, r5},
1722b8021494Sopenharmony_ci                            false,
1723b8021494Sopenharmony_ci                            al,
1724b8021494Sopenharmony_ci                            "lt r4 r7 r7 LSR r5",
1725b8021494Sopenharmony_ci                            "lt_r4_r7_r7_LSR_r5"},
1726b8021494Sopenharmony_ci                           {{le, r6, r13, r10, LSR, r2},
1727b8021494Sopenharmony_ci                            false,
1728b8021494Sopenharmony_ci                            al,
1729b8021494Sopenharmony_ci                            "le r6 r13 r10 LSR r2",
1730b8021494Sopenharmony_ci                            "le_r6_r13_r10_LSR_r2"},
1731b8021494Sopenharmony_ci                           {{eq, r10, r13, r10, ASR, r8},
1732b8021494Sopenharmony_ci                            false,
1733b8021494Sopenharmony_ci                            al,
1734b8021494Sopenharmony_ci                            "eq r10 r13 r10 ASR r8",
1735b8021494Sopenharmony_ci                            "eq_r10_r13_r10_ASR_r8"},
1736b8021494Sopenharmony_ci                           {{ne, r6, r5, r12, LSR, r12},
1737b8021494Sopenharmony_ci                            false,
1738b8021494Sopenharmony_ci                            al,
1739b8021494Sopenharmony_ci                            "ne r6 r5 r12 LSR r12",
1740b8021494Sopenharmony_ci                            "ne_r6_r5_r12_LSR_r12"},
1741b8021494Sopenharmony_ci                           {{vc, r10, r8, r10, ROR, r8},
1742b8021494Sopenharmony_ci                            false,
1743b8021494Sopenharmony_ci                            al,
1744b8021494Sopenharmony_ci                            "vc r10 r8 r10 ROR r8",
1745b8021494Sopenharmony_ci                            "vc_r10_r8_r10_ROR_r8"},
1746b8021494Sopenharmony_ci                           {{gt, r10, r1, r8, LSR, r1},
1747b8021494Sopenharmony_ci                            false,
1748b8021494Sopenharmony_ci                            al,
1749b8021494Sopenharmony_ci                            "gt r10 r1 r8 LSR r1",
1750b8021494Sopenharmony_ci                            "gt_r10_r1_r8_LSR_r1"},
1751b8021494Sopenharmony_ci                           {{pl, r5, r12, r9, LSR, r13},
1752b8021494Sopenharmony_ci                            false,
1753b8021494Sopenharmony_ci                            al,
1754b8021494Sopenharmony_ci                            "pl r5 r12 r9 LSR r13",
1755b8021494Sopenharmony_ci                            "pl_r5_r12_r9_LSR_r13"},
1756b8021494Sopenharmony_ci                           {{gt, r10, r6, r4, ROR, r12},
1757b8021494Sopenharmony_ci                            false,
1758b8021494Sopenharmony_ci                            al,
1759b8021494Sopenharmony_ci                            "gt r10 r6 r4 ROR r12",
1760b8021494Sopenharmony_ci                            "gt_r10_r6_r4_ROR_r12"},
1761b8021494Sopenharmony_ci                           {{cs, r14, r10, r10, ASR, r6},
1762b8021494Sopenharmony_ci                            false,
1763b8021494Sopenharmony_ci                            al,
1764b8021494Sopenharmony_ci                            "cs r14 r10 r10 ASR r6",
1765b8021494Sopenharmony_ci                            "cs_r14_r10_r10_ASR_r6"},
1766b8021494Sopenharmony_ci                           {{le, r6, r8, r2, ROR, r7},
1767b8021494Sopenharmony_ci                            false,
1768b8021494Sopenharmony_ci                            al,
1769b8021494Sopenharmony_ci                            "le r6 r8 r2 ROR r7",
1770b8021494Sopenharmony_ci                            "le_r6_r8_r2_ROR_r7"},
1771b8021494Sopenharmony_ci                           {{le, r13, r12, r0, ROR, r14},
1772b8021494Sopenharmony_ci                            false,
1773b8021494Sopenharmony_ci                            al,
1774b8021494Sopenharmony_ci                            "le r13 r12 r0 ROR r14",
1775b8021494Sopenharmony_ci                            "le_r13_r12_r0_ROR_r14"},
1776b8021494Sopenharmony_ci                           {{le, r7, r6, r0, ASR, r10},
1777b8021494Sopenharmony_ci                            false,
1778b8021494Sopenharmony_ci                            al,
1779b8021494Sopenharmony_ci                            "le r7 r6 r0 ASR r10",
1780b8021494Sopenharmony_ci                            "le_r7_r6_r0_ASR_r10"},
1781b8021494Sopenharmony_ci                           {{cs, r10, r4, r1, ASR, r10},
1782b8021494Sopenharmony_ci                            false,
1783b8021494Sopenharmony_ci                            al,
1784b8021494Sopenharmony_ci                            "cs r10 r4 r1 ASR r10",
1785b8021494Sopenharmony_ci                            "cs_r10_r4_r1_ASR_r10"},
1786b8021494Sopenharmony_ci                           {{ne, r12, r9, r11, ASR, r6},
1787b8021494Sopenharmony_ci                            false,
1788b8021494Sopenharmony_ci                            al,
1789b8021494Sopenharmony_ci                            "ne r12 r9 r11 ASR r6",
1790b8021494Sopenharmony_ci                            "ne_r12_r9_r11_ASR_r6"},
1791b8021494Sopenharmony_ci                           {{vs, r9, r14, r6, ASR, r12},
1792b8021494Sopenharmony_ci                            false,
1793b8021494Sopenharmony_ci                            al,
1794b8021494Sopenharmony_ci                            "vs r9 r14 r6 ASR r12",
1795b8021494Sopenharmony_ci                            "vs_r9_r14_r6_ASR_r12"},
1796b8021494Sopenharmony_ci                           {{mi, r1, r8, r0, ASR, r7},
1797b8021494Sopenharmony_ci                            false,
1798b8021494Sopenharmony_ci                            al,
1799b8021494Sopenharmony_ci                            "mi r1 r8 r0 ASR r7",
1800b8021494Sopenharmony_ci                            "mi_r1_r8_r0_ASR_r7"},
1801b8021494Sopenharmony_ci                           {{gt, r11, r2, r3, ROR, r11},
1802b8021494Sopenharmony_ci                            false,
1803b8021494Sopenharmony_ci                            al,
1804b8021494Sopenharmony_ci                            "gt r11 r2 r3 ROR r11",
1805b8021494Sopenharmony_ci                            "gt_r11_r2_r3_ROR_r11"},
1806b8021494Sopenharmony_ci                           {{cs, r3, r1, r12, LSR, r0},
1807b8021494Sopenharmony_ci                            false,
1808b8021494Sopenharmony_ci                            al,
1809b8021494Sopenharmony_ci                            "cs r3 r1 r12 LSR r0",
1810b8021494Sopenharmony_ci                            "cs_r3_r1_r12_LSR_r0"},
1811b8021494Sopenharmony_ci                           {{hi, r12, r14, r11, LSL, r2},
1812b8021494Sopenharmony_ci                            false,
1813b8021494Sopenharmony_ci                            al,
1814b8021494Sopenharmony_ci                            "hi r12 r14 r11 LSL r2",
1815b8021494Sopenharmony_ci                            "hi_r12_r14_r11_LSL_r2"},
1816b8021494Sopenharmony_ci                           {{mi, r10, r11, r14, LSL, r10},
1817b8021494Sopenharmony_ci                            false,
1818b8021494Sopenharmony_ci                            al,
1819b8021494Sopenharmony_ci                            "mi r10 r11 r14 LSL r10",
1820b8021494Sopenharmony_ci                            "mi_r10_r11_r14_LSL_r10"},
1821b8021494Sopenharmony_ci                           {{al, r11, r6, r13, ASR, r2},
1822b8021494Sopenharmony_ci                            false,
1823b8021494Sopenharmony_ci                            al,
1824b8021494Sopenharmony_ci                            "al r11 r6 r13 ASR r2",
1825b8021494Sopenharmony_ci                            "al_r11_r6_r13_ASR_r2"},
1826b8021494Sopenharmony_ci                           {{gt, r2, r14, r3, ROR, r6},
1827b8021494Sopenharmony_ci                            false,
1828b8021494Sopenharmony_ci                            al,
1829b8021494Sopenharmony_ci                            "gt r2 r14 r3 ROR r6",
1830b8021494Sopenharmony_ci                            "gt_r2_r14_r3_ROR_r6"},
1831b8021494Sopenharmony_ci                           {{hi, r1, r10, r6, LSR, r6},
1832b8021494Sopenharmony_ci                            false,
1833b8021494Sopenharmony_ci                            al,
1834b8021494Sopenharmony_ci                            "hi r1 r10 r6 LSR r6",
1835b8021494Sopenharmony_ci                            "hi_r1_r10_r6_LSR_r6"},
1836b8021494Sopenharmony_ci                           {{gt, r2, r8, r3, LSL, r6},
1837b8021494Sopenharmony_ci                            false,
1838b8021494Sopenharmony_ci                            al,
1839b8021494Sopenharmony_ci                            "gt r2 r8 r3 LSL r6",
1840b8021494Sopenharmony_ci                            "gt_r2_r8_r3_LSL_r6"},
1841b8021494Sopenharmony_ci                           {{ls, r13, r4, r12, ROR, r13},
1842b8021494Sopenharmony_ci                            false,
1843b8021494Sopenharmony_ci                            al,
1844b8021494Sopenharmony_ci                            "ls r13 r4 r12 ROR r13",
1845b8021494Sopenharmony_ci                            "ls_r13_r4_r12_ROR_r13"},
1846b8021494Sopenharmony_ci                           {{vs, r13, r11, r7, ROR, r8},
1847b8021494Sopenharmony_ci                            false,
1848b8021494Sopenharmony_ci                            al,
1849b8021494Sopenharmony_ci                            "vs r13 r11 r7 ROR r8",
1850b8021494Sopenharmony_ci                            "vs_r13_r11_r7_ROR_r8"},
1851b8021494Sopenharmony_ci                           {{hi, r5, r12, r14, LSR, r3},
1852b8021494Sopenharmony_ci                            false,
1853b8021494Sopenharmony_ci                            al,
1854b8021494Sopenharmony_ci                            "hi r5 r12 r14 LSR r3",
1855b8021494Sopenharmony_ci                            "hi_r5_r12_r14_LSR_r3"},
1856b8021494Sopenharmony_ci                           {{cs, r14, r8, r3, ROR, r13},
1857b8021494Sopenharmony_ci                            false,
1858b8021494Sopenharmony_ci                            al,
1859b8021494Sopenharmony_ci                            "cs r14 r8 r3 ROR r13",
1860b8021494Sopenharmony_ci                            "cs_r14_r8_r3_ROR_r13"},
1861b8021494Sopenharmony_ci                           {{cs, r9, r10, r0, LSL, r10},
1862b8021494Sopenharmony_ci                            false,
1863b8021494Sopenharmony_ci                            al,
1864b8021494Sopenharmony_ci                            "cs r9 r10 r0 LSL r10",
1865b8021494Sopenharmony_ci                            "cs_r9_r10_r0_LSL_r10"},
1866b8021494Sopenharmony_ci                           {{lt, r0, r13, r12, ASR, r5},
1867b8021494Sopenharmony_ci                            false,
1868b8021494Sopenharmony_ci                            al,
1869b8021494Sopenharmony_ci                            "lt r0 r13 r12 ASR r5",
1870b8021494Sopenharmony_ci                            "lt_r0_r13_r12_ASR_r5"},
1871b8021494Sopenharmony_ci                           {{cs, r4, r5, r7, ROR, r7},
1872b8021494Sopenharmony_ci                            false,
1873b8021494Sopenharmony_ci                            al,
1874b8021494Sopenharmony_ci                            "cs r4 r5 r7 ROR r7",
1875b8021494Sopenharmony_ci                            "cs_r4_r5_r7_ROR_r7"},
1876b8021494Sopenharmony_ci                           {{lt, r0, r14, r7, LSR, r7},
1877b8021494Sopenharmony_ci                            false,
1878b8021494Sopenharmony_ci                            al,
1879b8021494Sopenharmony_ci                            "lt r0 r14 r7 LSR r7",
1880b8021494Sopenharmony_ci                            "lt_r0_r14_r7_LSR_r7"},
1881b8021494Sopenharmony_ci                           {{hi, r10, r5, r3, LSL, r10},
1882b8021494Sopenharmony_ci                            false,
1883b8021494Sopenharmony_ci                            al,
1884b8021494Sopenharmony_ci                            "hi r10 r5 r3 LSL r10",
1885b8021494Sopenharmony_ci                            "hi_r10_r5_r3_LSL_r10"},
1886b8021494Sopenharmony_ci                           {{ls, r6, r2, r4, ROR, r0},
1887b8021494Sopenharmony_ci                            false,
1888b8021494Sopenharmony_ci                            al,
1889b8021494Sopenharmony_ci                            "ls r6 r2 r4 ROR r0",
1890b8021494Sopenharmony_ci                            "ls_r6_r2_r4_ROR_r0"},
1891b8021494Sopenharmony_ci                           {{hi, r9, r7, r7, ASR, r10},
1892b8021494Sopenharmony_ci                            false,
1893b8021494Sopenharmony_ci                            al,
1894b8021494Sopenharmony_ci                            "hi r9 r7 r7 ASR r10",
1895b8021494Sopenharmony_ci                            "hi_r9_r7_r7_ASR_r10"},
1896b8021494Sopenharmony_ci                           {{cc, r0, r9, r4, LSR, r2},
1897b8021494Sopenharmony_ci                            false,
1898b8021494Sopenharmony_ci                            al,
1899b8021494Sopenharmony_ci                            "cc r0 r9 r4 LSR r2",
1900b8021494Sopenharmony_ci                            "cc_r0_r9_r4_LSR_r2"},
1901b8021494Sopenharmony_ci                           {{le, r3, r14, r2, ASR, r0},
1902b8021494Sopenharmony_ci                            false,
1903b8021494Sopenharmony_ci                            al,
1904b8021494Sopenharmony_ci                            "le r3 r14 r2 ASR r0",
1905b8021494Sopenharmony_ci                            "le_r3_r14_r2_ASR_r0"},
1906b8021494Sopenharmony_ci                           {{pl, r2, r8, r7, LSL, r13},
1907b8021494Sopenharmony_ci                            false,
1908b8021494Sopenharmony_ci                            al,
1909b8021494Sopenharmony_ci                            "pl r2 r8 r7 LSL r13",
1910b8021494Sopenharmony_ci                            "pl_r2_r8_r7_LSL_r13"},
1911b8021494Sopenharmony_ci                           {{al, r10, r1, r9, LSR, r6},
1912b8021494Sopenharmony_ci                            false,
1913b8021494Sopenharmony_ci                            al,
1914b8021494Sopenharmony_ci                            "al r10 r1 r9 LSR r6",
1915b8021494Sopenharmony_ci                            "al_r10_r1_r9_LSR_r6"},
1916b8021494Sopenharmony_ci                           {{vs, r1, r6, r14, ASR, r14},
1917b8021494Sopenharmony_ci                            false,
1918b8021494Sopenharmony_ci                            al,
1919b8021494Sopenharmony_ci                            "vs r1 r6 r14 ASR r14",
1920b8021494Sopenharmony_ci                            "vs_r1_r6_r14_ASR_r14"},
1921b8021494Sopenharmony_ci                           {{lt, r3, r3, r13, LSR, r0},
1922b8021494Sopenharmony_ci                            false,
1923b8021494Sopenharmony_ci                            al,
1924b8021494Sopenharmony_ci                            "lt r3 r3 r13 LSR r0",
1925b8021494Sopenharmony_ci                            "lt_r3_r3_r13_LSR_r0"},
1926b8021494Sopenharmony_ci                           {{le, r9, r3, r2, ASR, r11},
1927b8021494Sopenharmony_ci                            false,
1928b8021494Sopenharmony_ci                            al,
1929b8021494Sopenharmony_ci                            "le r9 r3 r2 ASR r11",
1930b8021494Sopenharmony_ci                            "le_r9_r3_r2_ASR_r11"},
1931b8021494Sopenharmony_ci                           {{mi, r4, r14, r6, LSL, r11},
1932b8021494Sopenharmony_ci                            false,
1933b8021494Sopenharmony_ci                            al,
1934b8021494Sopenharmony_ci                            "mi r4 r14 r6 LSL r11",
1935b8021494Sopenharmony_ci                            "mi_r4_r14_r6_LSL_r11"},
1936b8021494Sopenharmony_ci                           {{ne, r7, r5, r14, ASR, r9},
1937b8021494Sopenharmony_ci                            false,
1938b8021494Sopenharmony_ci                            al,
1939b8021494Sopenharmony_ci                            "ne r7 r5 r14 ASR r9",
1940b8021494Sopenharmony_ci                            "ne_r7_r5_r14_ASR_r9"},
1941b8021494Sopenharmony_ci                           {{cs, r11, r11, r13, LSR, r11},
1942b8021494Sopenharmony_ci                            false,
1943b8021494Sopenharmony_ci                            al,
1944b8021494Sopenharmony_ci                            "cs r11 r11 r13 LSR r11",
1945b8021494Sopenharmony_ci                            "cs_r11_r11_r13_LSR_r11"},
1946b8021494Sopenharmony_ci                           {{lt, r12, r9, r5, LSR, r9},
1947b8021494Sopenharmony_ci                            false,
1948b8021494Sopenharmony_ci                            al,
1949b8021494Sopenharmony_ci                            "lt r12 r9 r5 LSR r9",
1950b8021494Sopenharmony_ci                            "lt_r12_r9_r5_LSR_r9"},
1951b8021494Sopenharmony_ci                           {{hi, r13, r1, r10, LSL, r4},
1952b8021494Sopenharmony_ci                            false,
1953b8021494Sopenharmony_ci                            al,
1954b8021494Sopenharmony_ci                            "hi r13 r1 r10 LSL r4",
1955b8021494Sopenharmony_ci                            "hi_r13_r1_r10_LSL_r4"},
1956b8021494Sopenharmony_ci                           {{mi, r14, r6, r8, ASR, r14},
1957b8021494Sopenharmony_ci                            false,
1958b8021494Sopenharmony_ci                            al,
1959b8021494Sopenharmony_ci                            "mi r14 r6 r8 ASR r14",
1960b8021494Sopenharmony_ci                            "mi_r14_r6_r8_ASR_r14"},
1961b8021494Sopenharmony_ci                           {{vc, r3, r2, r6, ASR, r3},
1962b8021494Sopenharmony_ci                            false,
1963b8021494Sopenharmony_ci                            al,
1964b8021494Sopenharmony_ci                            "vc r3 r2 r6 ASR r3",
1965b8021494Sopenharmony_ci                            "vc_r3_r2_r6_ASR_r3"},
1966b8021494Sopenharmony_ci                           {{ne, r13, r14, r0, ASR, r2},
1967b8021494Sopenharmony_ci                            false,
1968b8021494Sopenharmony_ci                            al,
1969b8021494Sopenharmony_ci                            "ne r13 r14 r0 ASR r2",
1970b8021494Sopenharmony_ci                            "ne_r13_r14_r0_ASR_r2"},
1971b8021494Sopenharmony_ci                           {{gt, r2, r14, r5, ROR, r1},
1972b8021494Sopenharmony_ci                            false,
1973b8021494Sopenharmony_ci                            al,
1974b8021494Sopenharmony_ci                            "gt r2 r14 r5 ROR r1",
1975b8021494Sopenharmony_ci                            "gt_r2_r14_r5_ROR_r1"},
1976b8021494Sopenharmony_ci                           {{ls, r7, r7, r9, LSR, r10},
1977b8021494Sopenharmony_ci                            false,
1978b8021494Sopenharmony_ci                            al,
1979b8021494Sopenharmony_ci                            "ls r7 r7 r9 LSR r10",
1980b8021494Sopenharmony_ci                            "ls_r7_r7_r9_LSR_r10"},
1981b8021494Sopenharmony_ci                           {{gt, r2, r12, r8, ASR, r5},
1982b8021494Sopenharmony_ci                            false,
1983b8021494Sopenharmony_ci                            al,
1984b8021494Sopenharmony_ci                            "gt r2 r12 r8 ASR r5",
1985b8021494Sopenharmony_ci                            "gt_r2_r12_r8_ASR_r5"},
1986b8021494Sopenharmony_ci                           {{lt, r13, r2, r11, ROR, r6},
1987b8021494Sopenharmony_ci                            false,
1988b8021494Sopenharmony_ci                            al,
1989b8021494Sopenharmony_ci                            "lt r13 r2 r11 ROR r6",
1990b8021494Sopenharmony_ci                            "lt_r13_r2_r11_ROR_r6"},
1991b8021494Sopenharmony_ci                           {{cc, r2, r13, r13, ASR, r1},
1992b8021494Sopenharmony_ci                            false,
1993b8021494Sopenharmony_ci                            al,
1994b8021494Sopenharmony_ci                            "cc r2 r13 r13 ASR r1",
1995b8021494Sopenharmony_ci                            "cc_r2_r13_r13_ASR_r1"},
1996b8021494Sopenharmony_ci                           {{vs, r0, r6, r14, ROR, r3},
1997b8021494Sopenharmony_ci                            false,
1998b8021494Sopenharmony_ci                            al,
1999b8021494Sopenharmony_ci                            "vs r0 r6 r14 ROR r3",
2000b8021494Sopenharmony_ci                            "vs_r0_r6_r14_ROR_r3"},
2001b8021494Sopenharmony_ci                           {{vs, r2, r13, r8, LSL, r9},
2002b8021494Sopenharmony_ci                            false,
2003b8021494Sopenharmony_ci                            al,
2004b8021494Sopenharmony_ci                            "vs r2 r13 r8 LSL r9",
2005b8021494Sopenharmony_ci                            "vs_r2_r13_r8_LSL_r9"},
2006b8021494Sopenharmony_ci                           {{pl, r2, r12, r12, ROR, r6},
2007b8021494Sopenharmony_ci                            false,
2008b8021494Sopenharmony_ci                            al,
2009b8021494Sopenharmony_ci                            "pl r2 r12 r12 ROR r6",
2010b8021494Sopenharmony_ci                            "pl_r2_r12_r12_ROR_r6"},
2011b8021494Sopenharmony_ci                           {{vc, r4, r0, r12, ASR, r13},
2012b8021494Sopenharmony_ci                            false,
2013b8021494Sopenharmony_ci                            al,
2014b8021494Sopenharmony_ci                            "vc r4 r0 r12 ASR r13",
2015b8021494Sopenharmony_ci                            "vc_r4_r0_r12_ASR_r13"},
2016b8021494Sopenharmony_ci                           {{mi, r8, r12, r7, ASR, r7},
2017b8021494Sopenharmony_ci                            false,
2018b8021494Sopenharmony_ci                            al,
2019b8021494Sopenharmony_ci                            "mi r8 r12 r7 ASR r7",
2020b8021494Sopenharmony_ci                            "mi_r8_r12_r7_ASR_r7"},
2021b8021494Sopenharmony_ci                           {{al, r13, r5, r0, LSL, r5},
2022b8021494Sopenharmony_ci                            false,
2023b8021494Sopenharmony_ci                            al,
2024b8021494Sopenharmony_ci                            "al r13 r5 r0 LSL r5",
2025b8021494Sopenharmony_ci                            "al_r13_r5_r0_LSL_r5"},
2026b8021494Sopenharmony_ci                           {{le, r9, r1, r12, LSR, r8},
2027b8021494Sopenharmony_ci                            false,
2028b8021494Sopenharmony_ci                            al,
2029b8021494Sopenharmony_ci                            "le r9 r1 r12 LSR r8",
2030b8021494Sopenharmony_ci                            "le_r9_r1_r12_LSR_r8"},
2031b8021494Sopenharmony_ci                           {{vs, r5, r10, r13, ROR, r1},
2032b8021494Sopenharmony_ci                            false,
2033b8021494Sopenharmony_ci                            al,
2034b8021494Sopenharmony_ci                            "vs r5 r10 r13 ROR r1",
2035b8021494Sopenharmony_ci                            "vs_r5_r10_r13_ROR_r1"},
2036b8021494Sopenharmony_ci                           {{vs, r8, r5, r0, LSR, r11},
2037b8021494Sopenharmony_ci                            false,
2038b8021494Sopenharmony_ci                            al,
2039b8021494Sopenharmony_ci                            "vs r8 r5 r0 LSR r11",
2040b8021494Sopenharmony_ci                            "vs_r8_r5_r0_LSR_r11"},
2041b8021494Sopenharmony_ci                           {{ne, r7, r2, r0, LSL, r4},
2042b8021494Sopenharmony_ci                            false,
2043b8021494Sopenharmony_ci                            al,
2044b8021494Sopenharmony_ci                            "ne r7 r2 r0 LSL r4",
2045b8021494Sopenharmony_ci                            "ne_r7_r2_r0_LSL_r4"},
2046b8021494Sopenharmony_ci                           {{lt, r6, r6, r9, LSL, r10},
2047b8021494Sopenharmony_ci                            false,
2048b8021494Sopenharmony_ci                            al,
2049b8021494Sopenharmony_ci                            "lt r6 r6 r9 LSL r10",
2050b8021494Sopenharmony_ci                            "lt_r6_r6_r9_LSL_r10"},
2051b8021494Sopenharmony_ci                           {{cs, r13, r3, r4, ROR, r12},
2052b8021494Sopenharmony_ci                            false,
2053b8021494Sopenharmony_ci                            al,
2054b8021494Sopenharmony_ci                            "cs r13 r3 r4 ROR r12",
2055b8021494Sopenharmony_ci                            "cs_r13_r3_r4_ROR_r12"},
2056b8021494Sopenharmony_ci                           {{ne, r11, r11, r0, LSL, r7},
2057b8021494Sopenharmony_ci                            false,
2058b8021494Sopenharmony_ci                            al,
2059b8021494Sopenharmony_ci                            "ne r11 r11 r0 LSL r7",
2060b8021494Sopenharmony_ci                            "ne_r11_r11_r0_LSL_r7"},
2061b8021494Sopenharmony_ci                           {{pl, r3, r14, r12, LSR, r13},
2062b8021494Sopenharmony_ci                            false,
2063b8021494Sopenharmony_ci                            al,
2064b8021494Sopenharmony_ci                            "pl r3 r14 r12 LSR r13",
2065b8021494Sopenharmony_ci                            "pl_r3_r14_r12_LSR_r13"},
2066b8021494Sopenharmony_ci                           {{al, r2, r14, r3, LSL, r11},
2067b8021494Sopenharmony_ci                            false,
2068b8021494Sopenharmony_ci                            al,
2069b8021494Sopenharmony_ci                            "al r2 r14 r3 LSL r11",
2070b8021494Sopenharmony_ci                            "al_r2_r14_r3_LSL_r11"},
2071b8021494Sopenharmony_ci                           {{vc, r4, r6, r3, LSR, r7},
2072b8021494Sopenharmony_ci                            false,
2073b8021494Sopenharmony_ci                            al,
2074b8021494Sopenharmony_ci                            "vc r4 r6 r3 LSR r7",
2075b8021494Sopenharmony_ci                            "vc_r4_r6_r3_LSR_r7"},
2076b8021494Sopenharmony_ci                           {{ls, r6, r2, r1, LSR, r6},
2077b8021494Sopenharmony_ci                            false,
2078b8021494Sopenharmony_ci                            al,
2079b8021494Sopenharmony_ci                            "ls r6 r2 r1 LSR r6",
2080b8021494Sopenharmony_ci                            "ls_r6_r2_r1_LSR_r6"},
2081b8021494Sopenharmony_ci                           {{le, r0, r2, r5, ASR, r3},
2082b8021494Sopenharmony_ci                            false,
2083b8021494Sopenharmony_ci                            al,
2084b8021494Sopenharmony_ci                            "le r0 r2 r5 ASR r3",
2085b8021494Sopenharmony_ci                            "le_r0_r2_r5_ASR_r3"},
2086b8021494Sopenharmony_ci                           {{ge, r12, r9, r12, ROR, r13},
2087b8021494Sopenharmony_ci                            false,
2088b8021494Sopenharmony_ci                            al,
2089b8021494Sopenharmony_ci                            "ge r12 r9 r12 ROR r13",
2090b8021494Sopenharmony_ci                            "ge_r12_r9_r12_ROR_r13"},
2091b8021494Sopenharmony_ci                           {{cc, r10, r5, r3, ROR, r12},
2092b8021494Sopenharmony_ci                            false,
2093b8021494Sopenharmony_ci                            al,
2094b8021494Sopenharmony_ci                            "cc r10 r5 r3 ROR r12",
2095b8021494Sopenharmony_ci                            "cc_r10_r5_r3_ROR_r12"},
2096b8021494Sopenharmony_ci                           {{mi, r14, r0, r10, ASR, r4},
2097b8021494Sopenharmony_ci                            false,
2098b8021494Sopenharmony_ci                            al,
2099b8021494Sopenharmony_ci                            "mi r14 r0 r10 ASR r4",
2100b8021494Sopenharmony_ci                            "mi_r14_r0_r10_ASR_r4"},
2101b8021494Sopenharmony_ci                           {{al, r12, r0, r3, ROR, r13},
2102b8021494Sopenharmony_ci                            false,
2103b8021494Sopenharmony_ci                            al,
2104b8021494Sopenharmony_ci                            "al r12 r0 r3 ROR r13",
2105b8021494Sopenharmony_ci                            "al_r12_r0_r3_ROR_r13"},
2106b8021494Sopenharmony_ci                           {{hi, r1, r8, r13, ASR, r2},
2107b8021494Sopenharmony_ci                            false,
2108b8021494Sopenharmony_ci                            al,
2109b8021494Sopenharmony_ci                            "hi r1 r8 r13 ASR r2",
2110b8021494Sopenharmony_ci                            "hi_r1_r8_r13_ASR_r2"},
2111b8021494Sopenharmony_ci                           {{ls, r7, r9, r9, ASR, r2},
2112b8021494Sopenharmony_ci                            false,
2113b8021494Sopenharmony_ci                            al,
2114b8021494Sopenharmony_ci                            "ls r7 r9 r9 ASR r2",
2115b8021494Sopenharmony_ci                            "ls_r7_r9_r9_ASR_r2"},
2116b8021494Sopenharmony_ci                           {{ls, r9, r13, r6, ROR, r11},
2117b8021494Sopenharmony_ci                            false,
2118b8021494Sopenharmony_ci                            al,
2119b8021494Sopenharmony_ci                            "ls r9 r13 r6 ROR r11",
2120b8021494Sopenharmony_ci                            "ls_r9_r13_r6_ROR_r11"},
2121b8021494Sopenharmony_ci                           {{pl, r11, r12, r14, LSL, r14},
2122b8021494Sopenharmony_ci                            false,
2123b8021494Sopenharmony_ci                            al,
2124b8021494Sopenharmony_ci                            "pl r11 r12 r14 LSL r14",
2125b8021494Sopenharmony_ci                            "pl_r11_r12_r14_LSL_r14"},
2126b8021494Sopenharmony_ci                           {{eq, r1, r3, r10, ASR, r9},
2127b8021494Sopenharmony_ci                            false,
2128b8021494Sopenharmony_ci                            al,
2129b8021494Sopenharmony_ci                            "eq r1 r3 r10 ASR r9",
2130b8021494Sopenharmony_ci                            "eq_r1_r3_r10_ASR_r9"},
2131b8021494Sopenharmony_ci                           {{al, r1, r6, r6, LSL, r9},
2132b8021494Sopenharmony_ci                            false,
2133b8021494Sopenharmony_ci                            al,
2134b8021494Sopenharmony_ci                            "al r1 r6 r6 LSL r9",
2135b8021494Sopenharmony_ci                            "al_r1_r6_r6_LSL_r9"},
2136b8021494Sopenharmony_ci                           {{ne, r4, r14, r7, ROR, r12},
2137b8021494Sopenharmony_ci                            false,
2138b8021494Sopenharmony_ci                            al,
2139b8021494Sopenharmony_ci                            "ne r4 r14 r7 ROR r12",
2140b8021494Sopenharmony_ci                            "ne_r4_r14_r7_ROR_r12"},
2141b8021494Sopenharmony_ci                           {{vc, r2, r13, r1, ROR, r7},
2142b8021494Sopenharmony_ci                            false,
2143b8021494Sopenharmony_ci                            al,
2144b8021494Sopenharmony_ci                            "vc r2 r13 r1 ROR r7",
2145b8021494Sopenharmony_ci                            "vc_r2_r13_r1_ROR_r7"},
2146b8021494Sopenharmony_ci                           {{cs, r13, r12, r8, LSR, r11},
2147b8021494Sopenharmony_ci                            false,
2148b8021494Sopenharmony_ci                            al,
2149b8021494Sopenharmony_ci                            "cs r13 r12 r8 LSR r11",
2150b8021494Sopenharmony_ci                            "cs_r13_r12_r8_LSR_r11"},
2151b8021494Sopenharmony_ci                           {{le, r10, r14, r12, LSL, r4},
2152b8021494Sopenharmony_ci                            false,
2153b8021494Sopenharmony_ci                            al,
2154b8021494Sopenharmony_ci                            "le r10 r14 r12 LSL r4",
2155b8021494Sopenharmony_ci                            "le_r10_r14_r12_LSL_r4"},
2156b8021494Sopenharmony_ci                           {{cs, r14, r9, r4, ROR, r13},
2157b8021494Sopenharmony_ci                            false,
2158b8021494Sopenharmony_ci                            al,
2159b8021494Sopenharmony_ci                            "cs r14 r9 r4 ROR r13",
2160b8021494Sopenharmony_ci                            "cs_r14_r9_r4_ROR_r13"},
2161b8021494Sopenharmony_ci                           {{ge, r10, r12, r8, ASR, r14},
2162b8021494Sopenharmony_ci                            false,
2163b8021494Sopenharmony_ci                            al,
2164b8021494Sopenharmony_ci                            "ge r10 r12 r8 ASR r14",
2165b8021494Sopenharmony_ci                            "ge_r10_r12_r8_ASR_r14"},
2166b8021494Sopenharmony_ci                           {{cs, r14, r10, r3, LSL, r13},
2167b8021494Sopenharmony_ci                            false,
2168b8021494Sopenharmony_ci                            al,
2169b8021494Sopenharmony_ci                            "cs r14 r10 r3 LSL r13",
2170b8021494Sopenharmony_ci                            "cs_r14_r10_r3_LSL_r13"},
2171b8021494Sopenharmony_ci                           {{lt, r4, r3, r10, LSR, r2},
2172b8021494Sopenharmony_ci                            false,
2173b8021494Sopenharmony_ci                            al,
2174b8021494Sopenharmony_ci                            "lt r4 r3 r10 LSR r2",
2175b8021494Sopenharmony_ci                            "lt_r4_r3_r10_LSR_r2"},
2176b8021494Sopenharmony_ci                           {{ls, r13, r12, r8, ASR, r14},
2177b8021494Sopenharmony_ci                            false,
2178b8021494Sopenharmony_ci                            al,
2179b8021494Sopenharmony_ci                            "ls r13 r12 r8 ASR r14",
2180b8021494Sopenharmony_ci                            "ls_r13_r12_r8_ASR_r14"},
2181b8021494Sopenharmony_ci                           {{ge, r3, r2, r0, ASR, r8},
2182b8021494Sopenharmony_ci                            false,
2183b8021494Sopenharmony_ci                            al,
2184b8021494Sopenharmony_ci                            "ge r3 r2 r0 ASR r8",
2185b8021494Sopenharmony_ci                            "ge_r3_r2_r0_ASR_r8"},
2186b8021494Sopenharmony_ci                           {{vs, r3, r7, r1, LSL, r0},
2187b8021494Sopenharmony_ci                            false,
2188b8021494Sopenharmony_ci                            al,
2189b8021494Sopenharmony_ci                            "vs r3 r7 r1 LSL r0",
2190b8021494Sopenharmony_ci                            "vs_r3_r7_r1_LSL_r0"},
2191b8021494Sopenharmony_ci                           {{lt, r5, r13, r7, LSR, r7},
2192b8021494Sopenharmony_ci                            false,
2193b8021494Sopenharmony_ci                            al,
2194b8021494Sopenharmony_ci                            "lt r5 r13 r7 LSR r7",
2195b8021494Sopenharmony_ci                            "lt_r5_r13_r7_LSR_r7"},
2196b8021494Sopenharmony_ci                           {{ls, r8, r4, r3, ROR, r14},
2197b8021494Sopenharmony_ci                            false,
2198b8021494Sopenharmony_ci                            al,
2199b8021494Sopenharmony_ci                            "ls r8 r4 r3 ROR r14",
2200b8021494Sopenharmony_ci                            "ls_r8_r4_r3_ROR_r14"},
2201b8021494Sopenharmony_ci                           {{vc, r5, r4, r13, LSL, r12},
2202b8021494Sopenharmony_ci                            false,
2203b8021494Sopenharmony_ci                            al,
2204b8021494Sopenharmony_ci                            "vc r5 r4 r13 LSL r12",
2205b8021494Sopenharmony_ci                            "vc_r5_r4_r13_LSL_r12"},
2206b8021494Sopenharmony_ci                           {{pl, r6, r10, r11, LSR, r2},
2207b8021494Sopenharmony_ci                            false,
2208b8021494Sopenharmony_ci                            al,
2209b8021494Sopenharmony_ci                            "pl r6 r10 r11 LSR r2",
2210b8021494Sopenharmony_ci                            "pl_r6_r10_r11_LSR_r2"},
2211b8021494Sopenharmony_ci                           {{ne, r4, r0, r6, ASR, r10},
2212b8021494Sopenharmony_ci                            false,
2213b8021494Sopenharmony_ci                            al,
2214b8021494Sopenharmony_ci                            "ne r4 r0 r6 ASR r10",
2215b8021494Sopenharmony_ci                            "ne_r4_r0_r6_ASR_r10"},
2216b8021494Sopenharmony_ci                           {{vc, r2, r6, r7, LSR, r4},
2217b8021494Sopenharmony_ci                            false,
2218b8021494Sopenharmony_ci                            al,
2219b8021494Sopenharmony_ci                            "vc r2 r6 r7 LSR r4",
2220b8021494Sopenharmony_ci                            "vc_r2_r6_r7_LSR_r4"},
2221b8021494Sopenharmony_ci                           {{pl, r4, r12, r1, ROR, r14},
2222b8021494Sopenharmony_ci                            false,
2223b8021494Sopenharmony_ci                            al,
2224b8021494Sopenharmony_ci                            "pl r4 r12 r1 ROR r14",
2225b8021494Sopenharmony_ci                            "pl_r4_r12_r1_ROR_r14"},
2226b8021494Sopenharmony_ci                           {{cs, r13, r1, r10, LSL, r12},
2227b8021494Sopenharmony_ci                            false,
2228b8021494Sopenharmony_ci                            al,
2229b8021494Sopenharmony_ci                            "cs r13 r1 r10 LSL r12",
2230b8021494Sopenharmony_ci                            "cs_r13_r1_r10_LSL_r12"},
2231b8021494Sopenharmony_ci                           {{al, r7, r12, r7, LSL, r10},
2232b8021494Sopenharmony_ci                            false,
2233b8021494Sopenharmony_ci                            al,
2234b8021494Sopenharmony_ci                            "al r7 r12 r7 LSL r10",
2235b8021494Sopenharmony_ci                            "al_r7_r12_r7_LSL_r10"},
2236b8021494Sopenharmony_ci                           {{ge, r1, r9, r13, LSR, r8},
2237b8021494Sopenharmony_ci                            false,
2238b8021494Sopenharmony_ci                            al,
2239b8021494Sopenharmony_ci                            "ge r1 r9 r13 LSR r8",
2240b8021494Sopenharmony_ci                            "ge_r1_r9_r13_LSR_r8"},
2241b8021494Sopenharmony_ci                           {{eq, r12, r5, r11, ASR, r2},
2242b8021494Sopenharmony_ci                            false,
2243b8021494Sopenharmony_ci                            al,
2244b8021494Sopenharmony_ci                            "eq r12 r5 r11 ASR r2",
2245b8021494Sopenharmony_ci                            "eq_r12_r5_r11_ASR_r2"},
2246b8021494Sopenharmony_ci                           {{ls, r7, r9, r3, ASR, r14},
2247b8021494Sopenharmony_ci                            false,
2248b8021494Sopenharmony_ci                            al,
2249b8021494Sopenharmony_ci                            "ls r7 r9 r3 ASR r14",
2250b8021494Sopenharmony_ci                            "ls_r7_r9_r3_ASR_r14"},
2251b8021494Sopenharmony_ci                           {{pl, r5, r10, r3, LSL, r12},
2252b8021494Sopenharmony_ci                            false,
2253b8021494Sopenharmony_ci                            al,
2254b8021494Sopenharmony_ci                            "pl r5 r10 r3 LSL r12",
2255b8021494Sopenharmony_ci                            "pl_r5_r10_r3_LSL_r12"},
2256b8021494Sopenharmony_ci                           {{vs, r5, r14, r11, ASR, r13},
2257b8021494Sopenharmony_ci                            false,
2258b8021494Sopenharmony_ci                            al,
2259b8021494Sopenharmony_ci                            "vs r5 r14 r11 ASR r13",
2260b8021494Sopenharmony_ci                            "vs_r5_r14_r11_ASR_r13"},
2261b8021494Sopenharmony_ci                           {{al, r9, r2, r8, LSR, r10},
2262b8021494Sopenharmony_ci                            false,
2263b8021494Sopenharmony_ci                            al,
2264b8021494Sopenharmony_ci                            "al r9 r2 r8 LSR r10",
2265b8021494Sopenharmony_ci                            "al_r9_r2_r8_LSR_r10"},
2266b8021494Sopenharmony_ci                           {{cc, r11, r12, r6, ROR, r11},
2267b8021494Sopenharmony_ci                            false,
2268b8021494Sopenharmony_ci                            al,
2269b8021494Sopenharmony_ci                            "cc r11 r12 r6 ROR r11",
2270b8021494Sopenharmony_ci                            "cc_r11_r12_r6_ROR_r11"},
2271b8021494Sopenharmony_ci                           {{ge, r10, r3, r1, LSR, r5},
2272b8021494Sopenharmony_ci                            false,
2273b8021494Sopenharmony_ci                            al,
2274b8021494Sopenharmony_ci                            "ge r10 r3 r1 LSR r5",
2275b8021494Sopenharmony_ci                            "ge_r10_r3_r1_LSR_r5"},
2276b8021494Sopenharmony_ci                           {{lt, r13, r4, r7, ROR, r0},
2277b8021494Sopenharmony_ci                            false,
2278b8021494Sopenharmony_ci                            al,
2279b8021494Sopenharmony_ci                            "lt r13 r4 r7 ROR r0",
2280b8021494Sopenharmony_ci                            "lt_r13_r4_r7_ROR_r0"},
2281b8021494Sopenharmony_ci                           {{ne, r2, r12, r12, LSR, r0},
2282b8021494Sopenharmony_ci                            false,
2283b8021494Sopenharmony_ci                            al,
2284b8021494Sopenharmony_ci                            "ne r2 r12 r12 LSR r0",
2285b8021494Sopenharmony_ci                            "ne_r2_r12_r12_LSR_r0"},
2286b8021494Sopenharmony_ci                           {{gt, r2, r10, r14, ASR, r10},
2287b8021494Sopenharmony_ci                            false,
2288b8021494Sopenharmony_ci                            al,
2289b8021494Sopenharmony_ci                            "gt r2 r10 r14 ASR r10",
2290b8021494Sopenharmony_ci                            "gt_r2_r10_r14_ASR_r10"},
2291b8021494Sopenharmony_ci                           {{cc, r5, r6, r10, ASR, r11},
2292b8021494Sopenharmony_ci                            false,
2293b8021494Sopenharmony_ci                            al,
2294b8021494Sopenharmony_ci                            "cc r5 r6 r10 ASR r11",
2295b8021494Sopenharmony_ci                            "cc_r5_r6_r10_ASR_r11"},
2296b8021494Sopenharmony_ci                           {{hi, r8, r13, r1, ROR, r9},
2297b8021494Sopenharmony_ci                            false,
2298b8021494Sopenharmony_ci                            al,
2299b8021494Sopenharmony_ci                            "hi r8 r13 r1 ROR r9",
2300b8021494Sopenharmony_ci                            "hi_r8_r13_r1_ROR_r9"},
2301b8021494Sopenharmony_ci                           {{cc, r3, r1, r14, LSR, r3},
2302b8021494Sopenharmony_ci                            false,
2303b8021494Sopenharmony_ci                            al,
2304b8021494Sopenharmony_ci                            "cc r3 r1 r14 LSR r3",
2305b8021494Sopenharmony_ci                            "cc_r3_r1_r14_LSR_r3"},
2306b8021494Sopenharmony_ci                           {{lt, r11, r9, r8, ASR, r13},
2307b8021494Sopenharmony_ci                            false,
2308b8021494Sopenharmony_ci                            al,
2309b8021494Sopenharmony_ci                            "lt r11 r9 r8 ASR r13",
2310b8021494Sopenharmony_ci                            "lt_r11_r9_r8_ASR_r13"},
2311b8021494Sopenharmony_ci                           {{mi, r0, r3, r13, ASR, r5},
2312b8021494Sopenharmony_ci                            false,
2313b8021494Sopenharmony_ci                            al,
2314b8021494Sopenharmony_ci                            "mi r0 r3 r13 ASR r5",
2315b8021494Sopenharmony_ci                            "mi_r0_r3_r13_ASR_r5"},
2316b8021494Sopenharmony_ci                           {{vc, r7, r6, r10, ASR, r6},
2317b8021494Sopenharmony_ci                            false,
2318b8021494Sopenharmony_ci                            al,
2319b8021494Sopenharmony_ci                            "vc r7 r6 r10 ASR r6",
2320b8021494Sopenharmony_ci                            "vc_r7_r6_r10_ASR_r6"},
2321b8021494Sopenharmony_ci                           {{mi, r2, r6, r4, LSL, r9},
2322b8021494Sopenharmony_ci                            false,
2323b8021494Sopenharmony_ci                            al,
2324b8021494Sopenharmony_ci                            "mi r2 r6 r4 LSL r9",
2325b8021494Sopenharmony_ci                            "mi_r2_r6_r4_LSL_r9"},
2326b8021494Sopenharmony_ci                           {{ne, r12, r9, r4, ROR, r6},
2327b8021494Sopenharmony_ci                            false,
2328b8021494Sopenharmony_ci                            al,
2329b8021494Sopenharmony_ci                            "ne r12 r9 r4 ROR r6",
2330b8021494Sopenharmony_ci                            "ne_r12_r9_r4_ROR_r6"},
2331b8021494Sopenharmony_ci                           {{hi, r4, r3, r0, ROR, r4},
2332b8021494Sopenharmony_ci                            false,
2333b8021494Sopenharmony_ci                            al,
2334b8021494Sopenharmony_ci                            "hi r4 r3 r0 ROR r4",
2335b8021494Sopenharmony_ci                            "hi_r4_r3_r0_ROR_r4"},
2336b8021494Sopenharmony_ci                           {{gt, r9, r2, r11, LSL, r13},
2337b8021494Sopenharmony_ci                            false,
2338b8021494Sopenharmony_ci                            al,
2339b8021494Sopenharmony_ci                            "gt r9 r2 r11 LSL r13",
2340b8021494Sopenharmony_ci                            "gt_r9_r2_r11_LSL_r13"},
2341b8021494Sopenharmony_ci                           {{eq, r14, r4, r3, LSL, r10},
2342b8021494Sopenharmony_ci                            false,
2343b8021494Sopenharmony_ci                            al,
2344b8021494Sopenharmony_ci                            "eq r14 r4 r3 LSL r10",
2345b8021494Sopenharmony_ci                            "eq_r14_r4_r3_LSL_r10"},
2346b8021494Sopenharmony_ci                           {{le, r8, r2, r12, LSL, r10},
2347b8021494Sopenharmony_ci                            false,
2348b8021494Sopenharmony_ci                            al,
2349b8021494Sopenharmony_ci                            "le r8 r2 r12 LSL r10",
2350b8021494Sopenharmony_ci                            "le_r8_r2_r12_LSL_r10"},
2351b8021494Sopenharmony_ci                           {{ls, r8, r0, r1, ASR, r8},
2352b8021494Sopenharmony_ci                            false,
2353b8021494Sopenharmony_ci                            al,
2354b8021494Sopenharmony_ci                            "ls r8 r0 r1 ASR r8",
2355b8021494Sopenharmony_ci                            "ls_r8_r0_r1_ASR_r8"},
2356b8021494Sopenharmony_ci                           {{cc, r13, r9, r7, LSR, r3},
2357b8021494Sopenharmony_ci                            false,
2358b8021494Sopenharmony_ci                            al,
2359b8021494Sopenharmony_ci                            "cc r13 r9 r7 LSR r3",
2360b8021494Sopenharmony_ci                            "cc_r13_r9_r7_LSR_r3"},
2361b8021494Sopenharmony_ci                           {{gt, r6, r0, r7, ROR, r9},
2362b8021494Sopenharmony_ci                            false,
2363b8021494Sopenharmony_ci                            al,
2364b8021494Sopenharmony_ci                            "gt r6 r0 r7 ROR r9",
2365b8021494Sopenharmony_ci                            "gt_r6_r0_r7_ROR_r9"},
2366b8021494Sopenharmony_ci                           {{hi, r14, r12, r6, LSR, r12},
2367b8021494Sopenharmony_ci                            false,
2368b8021494Sopenharmony_ci                            al,
2369b8021494Sopenharmony_ci                            "hi r14 r12 r6 LSR r12",
2370b8021494Sopenharmony_ci                            "hi_r14_r12_r6_LSR_r12"},
2371b8021494Sopenharmony_ci                           {{cs, r3, r7, r10, LSR, r8},
2372b8021494Sopenharmony_ci                            false,
2373b8021494Sopenharmony_ci                            al,
2374b8021494Sopenharmony_ci                            "cs r3 r7 r10 LSR r8",
2375b8021494Sopenharmony_ci                            "cs_r3_r7_r10_LSR_r8"},
2376b8021494Sopenharmony_ci                           {{le, r7, r7, r7, LSL, r11},
2377b8021494Sopenharmony_ci                            false,
2378b8021494Sopenharmony_ci                            al,
2379b8021494Sopenharmony_ci                            "le r7 r7 r7 LSL r11",
2380b8021494Sopenharmony_ci                            "le_r7_r7_r7_LSL_r11"},
2381b8021494Sopenharmony_ci                           {{le, r11, r11, r14, ASR, r3},
2382b8021494Sopenharmony_ci                            false,
2383b8021494Sopenharmony_ci                            al,
2384b8021494Sopenharmony_ci                            "le r11 r11 r14 ASR r3",
2385b8021494Sopenharmony_ci                            "le_r11_r11_r14_ASR_r3"},
2386b8021494Sopenharmony_ci                           {{vc, r13, r5, r6, LSL, r13},
2387b8021494Sopenharmony_ci                            false,
2388b8021494Sopenharmony_ci                            al,
2389b8021494Sopenharmony_ci                            "vc r13 r5 r6 LSL r13",
2390b8021494Sopenharmony_ci                            "vc_r13_r5_r6_LSL_r13"},
2391b8021494Sopenharmony_ci                           {{cc, r12, r3, r12, LSL, r8},
2392b8021494Sopenharmony_ci                            false,
2393b8021494Sopenharmony_ci                            al,
2394b8021494Sopenharmony_ci                            "cc r12 r3 r12 LSL r8",
2395b8021494Sopenharmony_ci                            "cc_r12_r3_r12_LSL_r8"},
2396b8021494Sopenharmony_ci                           {{gt, r4, r14, r12, ASR, r11},
2397b8021494Sopenharmony_ci                            false,
2398b8021494Sopenharmony_ci                            al,
2399b8021494Sopenharmony_ci                            "gt r4 r14 r12 ASR r11",
2400b8021494Sopenharmony_ci                            "gt_r4_r14_r12_ASR_r11"},
2401b8021494Sopenharmony_ci                           {{cs, r9, r6, r7, LSL, r10},
2402b8021494Sopenharmony_ci                            false,
2403b8021494Sopenharmony_ci                            al,
2404b8021494Sopenharmony_ci                            "cs r9 r6 r7 LSL r10",
2405b8021494Sopenharmony_ci                            "cs_r9_r6_r7_LSL_r10"},
2406b8021494Sopenharmony_ci                           {{ge, r9, r5, r3, ROR, r5},
2407b8021494Sopenharmony_ci                            false,
2408b8021494Sopenharmony_ci                            al,
2409b8021494Sopenharmony_ci                            "ge r9 r5 r3 ROR r5",
2410b8021494Sopenharmony_ci                            "ge_r9_r5_r3_ROR_r5"},
2411b8021494Sopenharmony_ci                           {{vc, r4, r5, r14, LSR, r4},
2412b8021494Sopenharmony_ci                            false,
2413b8021494Sopenharmony_ci                            al,
2414b8021494Sopenharmony_ci                            "vc r4 r5 r14 LSR r4",
2415b8021494Sopenharmony_ci                            "vc_r4_r5_r14_LSR_r4"},
2416b8021494Sopenharmony_ci                           {{ne, r13, r12, r2, ASR, r14},
2417b8021494Sopenharmony_ci                            false,
2418b8021494Sopenharmony_ci                            al,
2419b8021494Sopenharmony_ci                            "ne r13 r12 r2 ASR r14",
2420b8021494Sopenharmony_ci                            "ne_r13_r12_r2_ASR_r14"},
2421b8021494Sopenharmony_ci                           {{gt, r2, r9, r11, LSR, r13},
2422b8021494Sopenharmony_ci                            false,
2423b8021494Sopenharmony_ci                            al,
2424b8021494Sopenharmony_ci                            "gt r2 r9 r11 LSR r13",
2425b8021494Sopenharmony_ci                            "gt_r2_r9_r11_LSR_r13"},
2426b8021494Sopenharmony_ci                           {{mi, r10, r11, r8, LSR, r1},
2427b8021494Sopenharmony_ci                            false,
2428b8021494Sopenharmony_ci                            al,
2429b8021494Sopenharmony_ci                            "mi r10 r11 r8 LSR r1",
2430b8021494Sopenharmony_ci                            "mi_r10_r11_r8_LSR_r1"},
2431b8021494Sopenharmony_ci                           {{hi, r6, r8, r1, ASR, r6},
2432b8021494Sopenharmony_ci                            false,
2433b8021494Sopenharmony_ci                            al,
2434b8021494Sopenharmony_ci                            "hi r6 r8 r1 ASR r6",
2435b8021494Sopenharmony_ci                            "hi_r6_r8_r1_ASR_r6"},
2436b8021494Sopenharmony_ci                           {{eq, r10, r12, r5, ROR, r11},
2437b8021494Sopenharmony_ci                            false,
2438b8021494Sopenharmony_ci                            al,
2439b8021494Sopenharmony_ci                            "eq r10 r12 r5 ROR r11",
2440b8021494Sopenharmony_ci                            "eq_r10_r12_r5_ROR_r11"},
2441b8021494Sopenharmony_ci                           {{mi, r9, r6, r4, LSL, r1},
2442b8021494Sopenharmony_ci                            false,
2443b8021494Sopenharmony_ci                            al,
2444b8021494Sopenharmony_ci                            "mi r9 r6 r4 LSL r1",
2445b8021494Sopenharmony_ci                            "mi_r9_r6_r4_LSL_r1"},
2446b8021494Sopenharmony_ci                           {{vc, r14, r6, r0, ROR, r7},
2447b8021494Sopenharmony_ci                            false,
2448b8021494Sopenharmony_ci                            al,
2449b8021494Sopenharmony_ci                            "vc r14 r6 r0 ROR r7",
2450b8021494Sopenharmony_ci                            "vc_r14_r6_r0_ROR_r7"},
2451b8021494Sopenharmony_ci                           {{mi, r10, r3, r12, LSL, r2},
2452b8021494Sopenharmony_ci                            false,
2453b8021494Sopenharmony_ci                            al,
2454b8021494Sopenharmony_ci                            "mi r10 r3 r12 LSL r2",
2455b8021494Sopenharmony_ci                            "mi_r10_r3_r12_LSL_r2"},
2456b8021494Sopenharmony_ci                           {{pl, r9, r6, r9, LSR, r14},
2457b8021494Sopenharmony_ci                            false,
2458b8021494Sopenharmony_ci                            al,
2459b8021494Sopenharmony_ci                            "pl r9 r6 r9 LSR r14",
2460b8021494Sopenharmony_ci                            "pl_r9_r6_r9_LSR_r14"},
2461b8021494Sopenharmony_ci                           {{al, r10, r5, r10, ROR, r1},
2462b8021494Sopenharmony_ci                            false,
2463b8021494Sopenharmony_ci                            al,
2464b8021494Sopenharmony_ci                            "al r10 r5 r10 ROR r1",
2465b8021494Sopenharmony_ci                            "al_r10_r5_r10_ROR_r1"},
2466b8021494Sopenharmony_ci                           {{ne, r9, r6, r2, ASR, r3},
2467b8021494Sopenharmony_ci                            false,
2468b8021494Sopenharmony_ci                            al,
2469b8021494Sopenharmony_ci                            "ne r9 r6 r2 ASR r3",
2470b8021494Sopenharmony_ci                            "ne_r9_r6_r2_ASR_r3"},
2471b8021494Sopenharmony_ci                           {{hi, r4, r9, r4, LSL, r6},
2472b8021494Sopenharmony_ci                            false,
2473b8021494Sopenharmony_ci                            al,
2474b8021494Sopenharmony_ci                            "hi r4 r9 r4 LSL r6",
2475b8021494Sopenharmony_ci                            "hi_r4_r9_r4_LSL_r6"},
2476b8021494Sopenharmony_ci                           {{vs, r1, r9, r7, ASR, r7},
2477b8021494Sopenharmony_ci                            false,
2478b8021494Sopenharmony_ci                            al,
2479b8021494Sopenharmony_ci                            "vs r1 r9 r7 ASR r7",
2480b8021494Sopenharmony_ci                            "vs_r1_r9_r7_ASR_r7"},
2481b8021494Sopenharmony_ci                           {{ne, r10, r13, r9, ASR, r14},
2482b8021494Sopenharmony_ci                            false,
2483b8021494Sopenharmony_ci                            al,
2484b8021494Sopenharmony_ci                            "ne r10 r13 r9 ASR r14",
2485b8021494Sopenharmony_ci                            "ne_r10_r13_r9_ASR_r14"},
2486b8021494Sopenharmony_ci                           {{gt, r11, r13, r12, ASR, r12},
2487b8021494Sopenharmony_ci                            false,
2488b8021494Sopenharmony_ci                            al,
2489b8021494Sopenharmony_ci                            "gt r11 r13 r12 ASR r12",
2490b8021494Sopenharmony_ci                            "gt_r11_r13_r12_ASR_r12"},
2491b8021494Sopenharmony_ci                           {{lt, r3, r5, r0, LSR, r10},
2492b8021494Sopenharmony_ci                            false,
2493b8021494Sopenharmony_ci                            al,
2494b8021494Sopenharmony_ci                            "lt r3 r5 r0 LSR r10",
2495b8021494Sopenharmony_ci                            "lt_r3_r5_r0_LSR_r10"},
2496b8021494Sopenharmony_ci                           {{gt, r4, r8, r13, ROR, r7},
2497b8021494Sopenharmony_ci                            false,
2498b8021494Sopenharmony_ci                            al,
2499b8021494Sopenharmony_ci                            "gt r4 r8 r13 ROR r7",
2500b8021494Sopenharmony_ci                            "gt_r4_r8_r13_ROR_r7"},
2501b8021494Sopenharmony_ci                           {{ls, r14, r14, r0, ASR, r3},
2502b8021494Sopenharmony_ci                            false,
2503b8021494Sopenharmony_ci                            al,
2504b8021494Sopenharmony_ci                            "ls r14 r14 r0 ASR r3",
2505b8021494Sopenharmony_ci                            "ls_r14_r14_r0_ASR_r3"},
2506b8021494Sopenharmony_ci                           {{vc, r2, r7, r9, ASR, r5},
2507b8021494Sopenharmony_ci                            false,
2508b8021494Sopenharmony_ci                            al,
2509b8021494Sopenharmony_ci                            "vc r2 r7 r9 ASR r5",
2510b8021494Sopenharmony_ci                            "vc_r2_r7_r9_ASR_r5"},
2511b8021494Sopenharmony_ci                           {{mi, r9, r3, r10, LSR, r10},
2512b8021494Sopenharmony_ci                            false,
2513b8021494Sopenharmony_ci                            al,
2514b8021494Sopenharmony_ci                            "mi r9 r3 r10 LSR r10",
2515b8021494Sopenharmony_ci                            "mi_r9_r3_r10_LSR_r10"},
2516b8021494Sopenharmony_ci                           {{gt, r11, r10, r3, ASR, r11},
2517b8021494Sopenharmony_ci                            false,
2518b8021494Sopenharmony_ci                            al,
2519b8021494Sopenharmony_ci                            "gt r11 r10 r3 ASR r11",
2520b8021494Sopenharmony_ci                            "gt_r11_r10_r3_ASR_r11"},
2521b8021494Sopenharmony_ci                           {{cc, r3, r14, r2, ROR, r12},
2522b8021494Sopenharmony_ci                            false,
2523b8021494Sopenharmony_ci                            al,
2524b8021494Sopenharmony_ci                            "cc r3 r14 r2 ROR r12",
2525b8021494Sopenharmony_ci                            "cc_r3_r14_r2_ROR_r12"},
2526b8021494Sopenharmony_ci                           {{ls, r3, r5, r14, ROR, r12},
2527b8021494Sopenharmony_ci                            false,
2528b8021494Sopenharmony_ci                            al,
2529b8021494Sopenharmony_ci                            "ls r3 r5 r14 ROR r12",
2530b8021494Sopenharmony_ci                            "ls_r3_r5_r14_ROR_r12"},
2531b8021494Sopenharmony_ci                           {{al, r6, r0, r11, ASR, r0},
2532b8021494Sopenharmony_ci                            false,
2533b8021494Sopenharmony_ci                            al,
2534b8021494Sopenharmony_ci                            "al r6 r0 r11 ASR r0",
2535b8021494Sopenharmony_ci                            "al_r6_r0_r11_ASR_r0"},
2536b8021494Sopenharmony_ci                           {{al, r14, r12, r13, LSL, r8},
2537b8021494Sopenharmony_ci                            false,
2538b8021494Sopenharmony_ci                            al,
2539b8021494Sopenharmony_ci                            "al r14 r12 r13 LSL r8",
2540b8021494Sopenharmony_ci                            "al_r14_r12_r13_LSL_r8"},
2541b8021494Sopenharmony_ci                           {{cs, r12, r9, r14, ROR, r4},
2542b8021494Sopenharmony_ci                            false,
2543b8021494Sopenharmony_ci                            al,
2544b8021494Sopenharmony_ci                            "cs r12 r9 r14 ROR r4",
2545b8021494Sopenharmony_ci                            "cs_r12_r9_r14_ROR_r4"},
2546b8021494Sopenharmony_ci                           {{vs, r4, r9, r6, LSL, r10},
2547b8021494Sopenharmony_ci                            false,
2548b8021494Sopenharmony_ci                            al,
2549b8021494Sopenharmony_ci                            "vs r4 r9 r6 LSL r10",
2550b8021494Sopenharmony_ci                            "vs_r4_r9_r6_LSL_r10"},
2551b8021494Sopenharmony_ci                           {{eq, r6, r1, r4, ASR, r6},
2552b8021494Sopenharmony_ci                            false,
2553b8021494Sopenharmony_ci                            al,
2554b8021494Sopenharmony_ci                            "eq r6 r1 r4 ASR r6",
2555b8021494Sopenharmony_ci                            "eq_r6_r1_r4_ASR_r6"},
2556b8021494Sopenharmony_ci                           {{ge, r6, r11, r2, LSR, r10},
2557b8021494Sopenharmony_ci                            false,
2558b8021494Sopenharmony_ci                            al,
2559b8021494Sopenharmony_ci                            "ge r6 r11 r2 LSR r10",
2560b8021494Sopenharmony_ci                            "ge_r6_r11_r2_LSR_r10"},
2561b8021494Sopenharmony_ci                           {{cc, r10, r14, r4, LSR, r0},
2562b8021494Sopenharmony_ci                            false,
2563b8021494Sopenharmony_ci                            al,
2564b8021494Sopenharmony_ci                            "cc r10 r14 r4 LSR r0",
2565b8021494Sopenharmony_ci                            "cc_r10_r14_r4_LSR_r0"},
2566b8021494Sopenharmony_ci                           {{ge, r0, r12, r1, ROR, r5},
2567b8021494Sopenharmony_ci                            false,
2568b8021494Sopenharmony_ci                            al,
2569b8021494Sopenharmony_ci                            "ge r0 r12 r1 ROR r5",
2570b8021494Sopenharmony_ci                            "ge_r0_r12_r1_ROR_r5"},
2571b8021494Sopenharmony_ci                           {{ls, r1, r13, r10, ASR, r5},
2572b8021494Sopenharmony_ci                            false,
2573b8021494Sopenharmony_ci                            al,
2574b8021494Sopenharmony_ci                            "ls r1 r13 r10 ASR r5",
2575b8021494Sopenharmony_ci                            "ls_r1_r13_r10_ASR_r5"},
2576b8021494Sopenharmony_ci                           {{cc, r9, r8, r5, ASR, r5},
2577b8021494Sopenharmony_ci                            false,
2578b8021494Sopenharmony_ci                            al,
2579b8021494Sopenharmony_ci                            "cc r9 r8 r5 ASR r5",
2580b8021494Sopenharmony_ci                            "cc_r9_r8_r5_ASR_r5"},
2581b8021494Sopenharmony_ci                           {{ls, r6, r5, r1, LSL, r11},
2582b8021494Sopenharmony_ci                            false,
2583b8021494Sopenharmony_ci                            al,
2584b8021494Sopenharmony_ci                            "ls r6 r5 r1 LSL r11",
2585b8021494Sopenharmony_ci                            "ls_r6_r5_r1_LSL_r11"},
2586b8021494Sopenharmony_ci                           {{ne, r2, r12, r1, ROR, r10},
2587b8021494Sopenharmony_ci                            false,
2588b8021494Sopenharmony_ci                            al,
2589b8021494Sopenharmony_ci                            "ne r2 r12 r1 ROR r10",
2590b8021494Sopenharmony_ci                            "ne_r2_r12_r1_ROR_r10"},
2591b8021494Sopenharmony_ci                           {{cc, r2, r9, r9, LSR, r1},
2592b8021494Sopenharmony_ci                            false,
2593b8021494Sopenharmony_ci                            al,
2594b8021494Sopenharmony_ci                            "cc r2 r9 r9 LSR r1",
2595b8021494Sopenharmony_ci                            "cc_r2_r9_r9_LSR_r1"},
2596b8021494Sopenharmony_ci                           {{ne, r1, r8, r1, ASR, r14},
2597b8021494Sopenharmony_ci                            false,
2598b8021494Sopenharmony_ci                            al,
2599b8021494Sopenharmony_ci                            "ne r1 r8 r1 ASR r14",
2600b8021494Sopenharmony_ci                            "ne_r1_r8_r1_ASR_r14"},
2601b8021494Sopenharmony_ci                           {{lt, r9, r2, r1, LSR, r10},
2602b8021494Sopenharmony_ci                            false,
2603b8021494Sopenharmony_ci                            al,
2604b8021494Sopenharmony_ci                            "lt r9 r2 r1 LSR r10",
2605b8021494Sopenharmony_ci                            "lt_r9_r2_r1_LSR_r10"},
2606b8021494Sopenharmony_ci                           {{cc, r14, r11, r9, ROR, r6},
2607b8021494Sopenharmony_ci                            false,
2608b8021494Sopenharmony_ci                            al,
2609b8021494Sopenharmony_ci                            "cc r14 r11 r9 ROR r6",
2610b8021494Sopenharmony_ci                            "cc_r14_r11_r9_ROR_r6"},
2611b8021494Sopenharmony_ci                           {{eq, r3, r12, r13, ASR, r0},
2612b8021494Sopenharmony_ci                            false,
2613b8021494Sopenharmony_ci                            al,
2614b8021494Sopenharmony_ci                            "eq r3 r12 r13 ASR r0",
2615b8021494Sopenharmony_ci                            "eq_r3_r12_r13_ASR_r0"},
2616b8021494Sopenharmony_ci                           {{le, r6, r6, r6, ASR, r2},
2617b8021494Sopenharmony_ci                            false,
2618b8021494Sopenharmony_ci                            al,
2619b8021494Sopenharmony_ci                            "le r6 r6 r6 ASR r2",
2620b8021494Sopenharmony_ci                            "le_r6_r6_r6_ASR_r2"},
2621b8021494Sopenharmony_ci                           {{mi, r11, r14, r4, ASR, r1},
2622b8021494Sopenharmony_ci                            false,
2623b8021494Sopenharmony_ci                            al,
2624b8021494Sopenharmony_ci                            "mi r11 r14 r4 ASR r1",
2625b8021494Sopenharmony_ci                            "mi_r11_r14_r4_ASR_r1"},
2626b8021494Sopenharmony_ci                           {{ls, r5, r9, r10, LSL, r9},
2627b8021494Sopenharmony_ci                            false,
2628b8021494Sopenharmony_ci                            al,
2629b8021494Sopenharmony_ci                            "ls r5 r9 r10 LSL r9",
2630b8021494Sopenharmony_ci                            "ls_r5_r9_r10_LSL_r9"},
2631b8021494Sopenharmony_ci                           {{vc, r12, r9, r3, LSR, r10},
2632b8021494Sopenharmony_ci                            false,
2633b8021494Sopenharmony_ci                            al,
2634b8021494Sopenharmony_ci                            "vc r12 r9 r3 LSR r10",
2635b8021494Sopenharmony_ci                            "vc_r12_r9_r3_LSR_r10"},
2636b8021494Sopenharmony_ci                           {{lt, r12, r0, r4, ASR, r0},
2637b8021494Sopenharmony_ci                            false,
2638b8021494Sopenharmony_ci                            al,
2639b8021494Sopenharmony_ci                            "lt r12 r0 r4 ASR r0",
2640b8021494Sopenharmony_ci                            "lt_r12_r0_r4_ASR_r0"},
2641b8021494Sopenharmony_ci                           {{mi, r0, r10, r6, ROR, r9},
2642b8021494Sopenharmony_ci                            false,
2643b8021494Sopenharmony_ci                            al,
2644b8021494Sopenharmony_ci                            "mi r0 r10 r6 ROR r9",
2645b8021494Sopenharmony_ci                            "mi_r0_r10_r6_ROR_r9"},
2646b8021494Sopenharmony_ci                           {{hi, r7, r10, r1, LSL, r7},
2647b8021494Sopenharmony_ci                            false,
2648b8021494Sopenharmony_ci                            al,
2649b8021494Sopenharmony_ci                            "hi r7 r10 r1 LSL r7",
2650b8021494Sopenharmony_ci                            "hi_r7_r10_r1_LSL_r7"},
2651b8021494Sopenharmony_ci                           {{ls, r2, r0, r14, ROR, r5},
2652b8021494Sopenharmony_ci                            false,
2653b8021494Sopenharmony_ci                            al,
2654b8021494Sopenharmony_ci                            "ls r2 r0 r14 ROR r5",
2655b8021494Sopenharmony_ci                            "ls_r2_r0_r14_ROR_r5"},
2656b8021494Sopenharmony_ci                           {{cs, r12, r14, r12, LSR, r10},
2657b8021494Sopenharmony_ci                            false,
2658b8021494Sopenharmony_ci                            al,
2659b8021494Sopenharmony_ci                            "cs r12 r14 r12 LSR r10",
2660b8021494Sopenharmony_ci                            "cs_r12_r14_r12_LSR_r10"},
2661b8021494Sopenharmony_ci                           {{le, r9, r0, r6, ROR, r2},
2662b8021494Sopenharmony_ci                            false,
2663b8021494Sopenharmony_ci                            al,
2664b8021494Sopenharmony_ci                            "le r9 r0 r6 ROR r2",
2665b8021494Sopenharmony_ci                            "le_r9_r0_r6_ROR_r2"},
2666b8021494Sopenharmony_ci                           {{cc, r3, r10, r4, LSR, r12},
2667b8021494Sopenharmony_ci                            false,
2668b8021494Sopenharmony_ci                            al,
2669b8021494Sopenharmony_ci                            "cc r3 r10 r4 LSR r12",
2670b8021494Sopenharmony_ci                            "cc_r3_r10_r4_LSR_r12"},
2671b8021494Sopenharmony_ci                           {{mi, r4, r5, r2, ASR, r14},
2672b8021494Sopenharmony_ci                            false,
2673b8021494Sopenharmony_ci                            al,
2674b8021494Sopenharmony_ci                            "mi r4 r5 r2 ASR r14",
2675b8021494Sopenharmony_ci                            "mi_r4_r5_r2_ASR_r14"},
2676b8021494Sopenharmony_ci                           {{vc, r12, r8, r10, ROR, r14},
2677b8021494Sopenharmony_ci                            false,
2678b8021494Sopenharmony_ci                            al,
2679b8021494Sopenharmony_ci                            "vc r12 r8 r10 ROR r14",
2680b8021494Sopenharmony_ci                            "vc_r12_r8_r10_ROR_r14"},
2681b8021494Sopenharmony_ci                           {{al, r5, r14, r4, ASR, r10},
2682b8021494Sopenharmony_ci                            false,
2683b8021494Sopenharmony_ci                            al,
2684b8021494Sopenharmony_ci                            "al r5 r14 r4 ASR r10",
2685b8021494Sopenharmony_ci                            "al_r5_r14_r4_ASR_r10"},
2686b8021494Sopenharmony_ci                           {{ls, r13, r8, r3, ASR, r1},
2687b8021494Sopenharmony_ci                            false,
2688b8021494Sopenharmony_ci                            al,
2689b8021494Sopenharmony_ci                            "ls r13 r8 r3 ASR r1",
2690b8021494Sopenharmony_ci                            "ls_r13_r8_r3_ASR_r1"},
2691b8021494Sopenharmony_ci                           {{le, r10, r1, r2, LSR, r4},
2692b8021494Sopenharmony_ci                            false,
2693b8021494Sopenharmony_ci                            al,
2694b8021494Sopenharmony_ci                            "le r10 r1 r2 LSR r4",
2695b8021494Sopenharmony_ci                            "le_r10_r1_r2_LSR_r4"},
2696b8021494Sopenharmony_ci                           {{ne, r0, r2, r10, ROR, r7},
2697b8021494Sopenharmony_ci                            false,
2698b8021494Sopenharmony_ci                            al,
2699b8021494Sopenharmony_ci                            "ne r0 r2 r10 ROR r7",
2700b8021494Sopenharmony_ci                            "ne_r0_r2_r10_ROR_r7"},
2701b8021494Sopenharmony_ci                           {{vs, r11, r13, r11, LSR, r12},
2702b8021494Sopenharmony_ci                            false,
2703b8021494Sopenharmony_ci                            al,
2704b8021494Sopenharmony_ci                            "vs r11 r13 r11 LSR r12",
2705b8021494Sopenharmony_ci                            "vs_r11_r13_r11_LSR_r12"},
2706b8021494Sopenharmony_ci                           {{vs, r10, r10, r8, ROR, r8},
2707b8021494Sopenharmony_ci                            false,
2708b8021494Sopenharmony_ci                            al,
2709b8021494Sopenharmony_ci                            "vs r10 r10 r8 ROR r8",
2710b8021494Sopenharmony_ci                            "vs_r10_r10_r8_ROR_r8"},
2711b8021494Sopenharmony_ci                           {{ne, r7, r2, r9, LSL, r11},
2712b8021494Sopenharmony_ci                            false,
2713b8021494Sopenharmony_ci                            al,
2714b8021494Sopenharmony_ci                            "ne r7 r2 r9 LSL r11",
2715b8021494Sopenharmony_ci                            "ne_r7_r2_r9_LSL_r11"},
2716b8021494Sopenharmony_ci                           {{mi, r5, r12, r11, ASR, r5},
2717b8021494Sopenharmony_ci                            false,
2718b8021494Sopenharmony_ci                            al,
2719b8021494Sopenharmony_ci                            "mi r5 r12 r11 ASR r5",
2720b8021494Sopenharmony_ci                            "mi_r5_r12_r11_ASR_r5"},
2721b8021494Sopenharmony_ci                           {{le, r1, r10, r5, ROR, r5},
2722b8021494Sopenharmony_ci                            false,
2723b8021494Sopenharmony_ci                            al,
2724b8021494Sopenharmony_ci                            "le r1 r10 r5 ROR r5",
2725b8021494Sopenharmony_ci                            "le_r1_r10_r5_ROR_r5"},
2726b8021494Sopenharmony_ci                           {{cc, r3, r14, r3, ASR, r6},
2727b8021494Sopenharmony_ci                            false,
2728b8021494Sopenharmony_ci                            al,
2729b8021494Sopenharmony_ci                            "cc r3 r14 r3 ASR r6",
2730b8021494Sopenharmony_ci                            "cc_r3_r14_r3_ASR_r6"},
2731b8021494Sopenharmony_ci                           {{vc, r4, r4, r0, ROR, r2},
2732b8021494Sopenharmony_ci                            false,
2733b8021494Sopenharmony_ci                            al,
2734b8021494Sopenharmony_ci                            "vc r4 r4 r0 ROR r2",
2735b8021494Sopenharmony_ci                            "vc_r4_r4_r0_ROR_r2"},
2736b8021494Sopenharmony_ci                           {{le, r3, r4, r12, ROR, r14},
2737b8021494Sopenharmony_ci                            false,
2738b8021494Sopenharmony_ci                            al,
2739b8021494Sopenharmony_ci                            "le r3 r4 r12 ROR r14",
2740b8021494Sopenharmony_ci                            "le_r3_r4_r12_ROR_r14"},
2741b8021494Sopenharmony_ci                           {{al, r3, r7, r14, LSL, r11},
2742b8021494Sopenharmony_ci                            false,
2743b8021494Sopenharmony_ci                            al,
2744b8021494Sopenharmony_ci                            "al r3 r7 r14 LSL r11",
2745b8021494Sopenharmony_ci                            "al_r3_r7_r14_LSL_r11"},
2746b8021494Sopenharmony_ci                           {{vc, r8, r11, r0, LSL, r11},
2747b8021494Sopenharmony_ci                            false,
2748b8021494Sopenharmony_ci                            al,
2749b8021494Sopenharmony_ci                            "vc r8 r11 r0 LSL r11",
2750b8021494Sopenharmony_ci                            "vc_r8_r11_r0_LSL_r11"},
2751b8021494Sopenharmony_ci                           {{vs, r12, r9, r14, LSR, r2},
2752b8021494Sopenharmony_ci                            false,
2753b8021494Sopenharmony_ci                            al,
2754b8021494Sopenharmony_ci                            "vs r12 r9 r14 LSR r2",
2755b8021494Sopenharmony_ci                            "vs_r12_r9_r14_LSR_r2"},
2756b8021494Sopenharmony_ci                           {{hi, r3, r5, r5, ROR, r6},
2757b8021494Sopenharmony_ci                            false,
2758b8021494Sopenharmony_ci                            al,
2759b8021494Sopenharmony_ci                            "hi r3 r5 r5 ROR r6",
2760b8021494Sopenharmony_ci                            "hi_r3_r5_r5_ROR_r6"},
2761b8021494Sopenharmony_ci                           {{cs, r9, r3, r13, ASR, r7},
2762b8021494Sopenharmony_ci                            false,
2763b8021494Sopenharmony_ci                            al,
2764b8021494Sopenharmony_ci                            "cs r9 r3 r13 ASR r7",
2765b8021494Sopenharmony_ci                            "cs_r9_r3_r13_ASR_r7"},
2766b8021494Sopenharmony_ci                           {{eq, r14, r3, r6, LSR, r5},
2767b8021494Sopenharmony_ci                            false,
2768b8021494Sopenharmony_ci                            al,
2769b8021494Sopenharmony_ci                            "eq r14 r3 r6 LSR r5",
2770b8021494Sopenharmony_ci                            "eq_r14_r3_r6_LSR_r5"},
2771b8021494Sopenharmony_ci                           {{lt, r8, r3, r4, LSR, r13},
2772b8021494Sopenharmony_ci                            false,
2773b8021494Sopenharmony_ci                            al,
2774b8021494Sopenharmony_ci                            "lt r8 r3 r4 LSR r13",
2775b8021494Sopenharmony_ci                            "lt_r8_r3_r4_LSR_r13"},
2776b8021494Sopenharmony_ci                           {{vc, r7, r4, r12, ROR, r6},
2777b8021494Sopenharmony_ci                            false,
2778b8021494Sopenharmony_ci                            al,
2779b8021494Sopenharmony_ci                            "vc r7 r4 r12 ROR r6",
2780b8021494Sopenharmony_ci                            "vc_r7_r4_r12_ROR_r6"},
2781b8021494Sopenharmony_ci                           {{vs, r5, r3, r3, ASR, r1},
2782b8021494Sopenharmony_ci                            false,
2783b8021494Sopenharmony_ci                            al,
2784b8021494Sopenharmony_ci                            "vs r5 r3 r3 ASR r1",
2785b8021494Sopenharmony_ci                            "vs_r5_r3_r3_ASR_r1"},
2786b8021494Sopenharmony_ci                           {{le, r5, r6, r1, ROR, r7},
2787b8021494Sopenharmony_ci                            false,
2788b8021494Sopenharmony_ci                            al,
2789b8021494Sopenharmony_ci                            "le r5 r6 r1 ROR r7",
2790b8021494Sopenharmony_ci                            "le_r5_r6_r1_ROR_r7"},
2791b8021494Sopenharmony_ci                           {{ge, r11, r5, r11, LSL, r12},
2792b8021494Sopenharmony_ci                            false,
2793b8021494Sopenharmony_ci                            al,
2794b8021494Sopenharmony_ci                            "ge r11 r5 r11 LSL r12",
2795b8021494Sopenharmony_ci                            "ge_r11_r5_r11_LSL_r12"},
2796b8021494Sopenharmony_ci                           {{lt, r0, r3, r7, ASR, r14},
2797b8021494Sopenharmony_ci                            false,
2798b8021494Sopenharmony_ci                            al,
2799b8021494Sopenharmony_ci                            "lt r0 r3 r7 ASR r14",
2800b8021494Sopenharmony_ci                            "lt_r0_r3_r7_ASR_r14"},
2801b8021494Sopenharmony_ci                           {{cs, r9, r2, r10, LSL, r1},
2802b8021494Sopenharmony_ci                            false,
2803b8021494Sopenharmony_ci                            al,
2804b8021494Sopenharmony_ci                            "cs r9 r2 r10 LSL r1",
2805b8021494Sopenharmony_ci                            "cs_r9_r2_r10_LSL_r1"},
2806b8021494Sopenharmony_ci                           {{cs, r6, r8, r6, ASR, r1},
2807b8021494Sopenharmony_ci                            false,
2808b8021494Sopenharmony_ci                            al,
2809b8021494Sopenharmony_ci                            "cs r6 r8 r6 ASR r1",
2810b8021494Sopenharmony_ci                            "cs_r6_r8_r6_ASR_r1"},
2811b8021494Sopenharmony_ci                           {{lt, r0, r11, r14, ASR, r5},
2812b8021494Sopenharmony_ci                            false,
2813b8021494Sopenharmony_ci                            al,
2814b8021494Sopenharmony_ci                            "lt r0 r11 r14 ASR r5",
2815b8021494Sopenharmony_ci                            "lt_r0_r11_r14_ASR_r5"},
2816b8021494Sopenharmony_ci                           {{ge, r11, r11, r2, ASR, r3},
2817b8021494Sopenharmony_ci                            false,
2818b8021494Sopenharmony_ci                            al,
2819b8021494Sopenharmony_ci                            "ge r11 r11 r2 ASR r3",
2820b8021494Sopenharmony_ci                            "ge_r11_r11_r2_ASR_r3"},
2821b8021494Sopenharmony_ci                           {{lt, r0, r0, r14, LSL, r2},
2822b8021494Sopenharmony_ci                            false,
2823b8021494Sopenharmony_ci                            al,
2824b8021494Sopenharmony_ci                            "lt r0 r0 r14 LSL r2",
2825b8021494Sopenharmony_ci                            "lt_r0_r0_r14_LSL_r2"},
2826b8021494Sopenharmony_ci                           {{cs, r8, r9, r11, ROR, r8},
2827b8021494Sopenharmony_ci                            false,
2828b8021494Sopenharmony_ci                            al,
2829b8021494Sopenharmony_ci                            "cs r8 r9 r11 ROR r8",
2830b8021494Sopenharmony_ci                            "cs_r8_r9_r11_ROR_r8"},
2831b8021494Sopenharmony_ci                           {{pl, r9, r5, r12, ASR, r14},
2832b8021494Sopenharmony_ci                            false,
2833b8021494Sopenharmony_ci                            al,
2834b8021494Sopenharmony_ci                            "pl r9 r5 r12 ASR r14",
2835b8021494Sopenharmony_ci                            "pl_r9_r5_r12_ASR_r14"},
2836b8021494Sopenharmony_ci                           {{eq, r13, r11, r1, LSR, r1},
2837b8021494Sopenharmony_ci                            false,
2838b8021494Sopenharmony_ci                            al,
2839b8021494Sopenharmony_ci                            "eq r13 r11 r1 LSR r1",
2840b8021494Sopenharmony_ci                            "eq_r13_r11_r1_LSR_r1"},
2841b8021494Sopenharmony_ci                           {{ne, r1, r0, r13, ROR, r0},
2842b8021494Sopenharmony_ci                            false,
2843b8021494Sopenharmony_ci                            al,
2844b8021494Sopenharmony_ci                            "ne r1 r0 r13 ROR r0",
2845b8021494Sopenharmony_ci                            "ne_r1_r0_r13_ROR_r0"},
2846b8021494Sopenharmony_ci                           {{hi, r6, r5, r9, LSR, r10},
2847b8021494Sopenharmony_ci                            false,
2848b8021494Sopenharmony_ci                            al,
2849b8021494Sopenharmony_ci                            "hi r6 r5 r9 LSR r10",
2850b8021494Sopenharmony_ci                            "hi_r6_r5_r9_LSR_r10"},
2851b8021494Sopenharmony_ci                           {{lt, r4, r7, r7, ASR, r9},
2852b8021494Sopenharmony_ci                            false,
2853b8021494Sopenharmony_ci                            al,
2854b8021494Sopenharmony_ci                            "lt r4 r7 r7 ASR r9",
2855b8021494Sopenharmony_ci                            "lt_r4_r7_r7_ASR_r9"},
2856b8021494Sopenharmony_ci                           {{ls, r13, r13, r5, LSR, r1},
2857b8021494Sopenharmony_ci                            false,
2858b8021494Sopenharmony_ci                            al,
2859b8021494Sopenharmony_ci                            "ls r13 r13 r5 LSR r1",
2860b8021494Sopenharmony_ci                            "ls_r13_r13_r5_LSR_r1"},
2861b8021494Sopenharmony_ci                           {{cs, r12, r1, r6, LSR, r14},
2862b8021494Sopenharmony_ci                            false,
2863b8021494Sopenharmony_ci                            al,
2864b8021494Sopenharmony_ci                            "cs r12 r1 r6 LSR r14",
2865b8021494Sopenharmony_ci                            "cs_r12_r1_r6_LSR_r14"},
2866b8021494Sopenharmony_ci                           {{hi, r11, r0, r5, LSR, r3},
2867b8021494Sopenharmony_ci                            false,
2868b8021494Sopenharmony_ci                            al,
2869b8021494Sopenharmony_ci                            "hi r11 r0 r5 LSR r3",
2870b8021494Sopenharmony_ci                            "hi_r11_r0_r5_LSR_r3"},
2871b8021494Sopenharmony_ci                           {{ne, r5, r2, r14, LSR, r1},
2872b8021494Sopenharmony_ci                            false,
2873b8021494Sopenharmony_ci                            al,
2874b8021494Sopenharmony_ci                            "ne r5 r2 r14 LSR r1",
2875b8021494Sopenharmony_ci                            "ne_r5_r2_r14_LSR_r1"},
2876b8021494Sopenharmony_ci                           {{le, r6, r12, r9, LSR, r5},
2877b8021494Sopenharmony_ci                            false,
2878b8021494Sopenharmony_ci                            al,
2879b8021494Sopenharmony_ci                            "le r6 r12 r9 LSR r5",
2880b8021494Sopenharmony_ci                            "le_r6_r12_r9_LSR_r5"},
2881b8021494Sopenharmony_ci                           {{cs, r1, r11, r1, LSL, r2},
2882b8021494Sopenharmony_ci                            false,
2883b8021494Sopenharmony_ci                            al,
2884b8021494Sopenharmony_ci                            "cs r1 r11 r1 LSL r2",
2885b8021494Sopenharmony_ci                            "cs_r1_r11_r1_LSL_r2"},
2886b8021494Sopenharmony_ci                           {{al, r14, r10, r8, ASR, r4},
2887b8021494Sopenharmony_ci                            false,
2888b8021494Sopenharmony_ci                            al,
2889b8021494Sopenharmony_ci                            "al r14 r10 r8 ASR r4",
2890b8021494Sopenharmony_ci                            "al_r14_r10_r8_ASR_r4"},
2891b8021494Sopenharmony_ci                           {{al, r11, r10, r8, LSL, r6},
2892b8021494Sopenharmony_ci                            false,
2893b8021494Sopenharmony_ci                            al,
2894b8021494Sopenharmony_ci                            "al r11 r10 r8 LSL r6",
2895b8021494Sopenharmony_ci                            "al_r11_r10_r8_LSL_r6"},
2896b8021494Sopenharmony_ci                           {{vs, r1, r2, r1, LSL, r11},
2897b8021494Sopenharmony_ci                            false,
2898b8021494Sopenharmony_ci                            al,
2899b8021494Sopenharmony_ci                            "vs r1 r2 r1 LSL r11",
2900b8021494Sopenharmony_ci                            "vs_r1_r2_r1_LSL_r11"},
2901b8021494Sopenharmony_ci                           {{cs, r10, r14, r14, LSL, r0},
2902b8021494Sopenharmony_ci                            false,
2903b8021494Sopenharmony_ci                            al,
2904b8021494Sopenharmony_ci                            "cs r10 r14 r14 LSL r0",
2905b8021494Sopenharmony_ci                            "cs_r10_r14_r14_LSL_r0"},
2906b8021494Sopenharmony_ci                           {{pl, r0, r1, r14, ROR, r10},
2907b8021494Sopenharmony_ci                            false,
2908b8021494Sopenharmony_ci                            al,
2909b8021494Sopenharmony_ci                            "pl r0 r1 r14 ROR r10",
2910b8021494Sopenharmony_ci                            "pl_r0_r1_r14_ROR_r10"},
2911b8021494Sopenharmony_ci                           {{pl, r3, r7, r5, LSR, r1},
2912b8021494Sopenharmony_ci                            false,
2913b8021494Sopenharmony_ci                            al,
2914b8021494Sopenharmony_ci                            "pl r3 r7 r5 LSR r1",
2915b8021494Sopenharmony_ci                            "pl_r3_r7_r5_LSR_r1"},
2916b8021494Sopenharmony_ci                           {{gt, r2, r14, r10, LSL, r6},
2917b8021494Sopenharmony_ci                            false,
2918b8021494Sopenharmony_ci                            al,
2919b8021494Sopenharmony_ci                            "gt r2 r14 r10 LSL r6",
2920b8021494Sopenharmony_ci                            "gt_r2_r14_r10_LSL_r6"},
2921b8021494Sopenharmony_ci                           {{le, r7, r7, r8, ROR, r0},
2922b8021494Sopenharmony_ci                            false,
2923b8021494Sopenharmony_ci                            al,
2924b8021494Sopenharmony_ci                            "le r7 r7 r8 ROR r0",
2925b8021494Sopenharmony_ci                            "le_r7_r7_r8_ROR_r0"},
2926b8021494Sopenharmony_ci                           {{cs, r7, r9, r8, LSL, r14},
2927b8021494Sopenharmony_ci                            false,
2928b8021494Sopenharmony_ci                            al,
2929b8021494Sopenharmony_ci                            "cs r7 r9 r8 LSL r14",
2930b8021494Sopenharmony_ci                            "cs_r7_r9_r8_LSL_r14"},
2931b8021494Sopenharmony_ci                           {{cs, r11, r4, r3, LSR, r10},
2932b8021494Sopenharmony_ci                            false,
2933b8021494Sopenharmony_ci                            al,
2934b8021494Sopenharmony_ci                            "cs r11 r4 r3 LSR r10",
2935b8021494Sopenharmony_ci                            "cs_r11_r4_r3_LSR_r10"},
2936b8021494Sopenharmony_ci                           {{cc, r9, r1, r12, ROR, r4},
2937b8021494Sopenharmony_ci                            false,
2938b8021494Sopenharmony_ci                            al,
2939b8021494Sopenharmony_ci                            "cc r9 r1 r12 ROR r4",
2940b8021494Sopenharmony_ci                            "cc_r9_r1_r12_ROR_r4"},
2941b8021494Sopenharmony_ci                           {{hi, r10, r0, r10, LSL, r8},
2942b8021494Sopenharmony_ci                            false,
2943b8021494Sopenharmony_ci                            al,
2944b8021494Sopenharmony_ci                            "hi r10 r0 r10 LSL r8",
2945b8021494Sopenharmony_ci                            "hi_r10_r0_r10_LSL_r8"},
2946b8021494Sopenharmony_ci                           {{eq, r14, r1, r0, LSL, r11},
2947b8021494Sopenharmony_ci                            false,
2948b8021494Sopenharmony_ci                            al,
2949b8021494Sopenharmony_ci                            "eq r14 r1 r0 LSL r11",
2950b8021494Sopenharmony_ci                            "eq_r14_r1_r0_LSL_r11"},
2951b8021494Sopenharmony_ci                           {{mi, r9, r11, r5, ROR, r5},
2952b8021494Sopenharmony_ci                            false,
2953b8021494Sopenharmony_ci                            al,
2954b8021494Sopenharmony_ci                            "mi r9 r11 r5 ROR r5",
2955b8021494Sopenharmony_ci                            "mi_r9_r11_r5_ROR_r5"},
2956b8021494Sopenharmony_ci                           {{le, r5, r9, r2, LSL, r1},
2957b8021494Sopenharmony_ci                            false,
2958b8021494Sopenharmony_ci                            al,
2959b8021494Sopenharmony_ci                            "le r5 r9 r2 LSL r1",
2960b8021494Sopenharmony_ci                            "le_r5_r9_r2_LSL_r1"},
2961b8021494Sopenharmony_ci                           {{pl, r7, r7, r8, ASR, r13},
2962b8021494Sopenharmony_ci                            false,
2963b8021494Sopenharmony_ci                            al,
2964b8021494Sopenharmony_ci                            "pl r7 r7 r8 ASR r13",
2965b8021494Sopenharmony_ci                            "pl_r7_r7_r8_ASR_r13"},
2966b8021494Sopenharmony_ci                           {{gt, r14, r13, r10, ASR, r11},
2967b8021494Sopenharmony_ci                            false,
2968b8021494Sopenharmony_ci                            al,
2969b8021494Sopenharmony_ci                            "gt r14 r13 r10 ASR r11",
2970b8021494Sopenharmony_ci                            "gt_r14_r13_r10_ASR_r11"},
2971b8021494Sopenharmony_ci                           {{cs, r4, r6, r5, LSR, r7},
2972b8021494Sopenharmony_ci                            false,
2973b8021494Sopenharmony_ci                            al,
2974b8021494Sopenharmony_ci                            "cs r4 r6 r5 LSR r7",
2975b8021494Sopenharmony_ci                            "cs_r4_r6_r5_LSR_r7"},
2976b8021494Sopenharmony_ci                           {{lt, r2, r7, r7, LSL, r6},
2977b8021494Sopenharmony_ci                            false,
2978b8021494Sopenharmony_ci                            al,
2979b8021494Sopenharmony_ci                            "lt r2 r7 r7 LSL r6",
2980b8021494Sopenharmony_ci                            "lt_r2_r7_r7_LSL_r6"},
2981b8021494Sopenharmony_ci                           {{al, r4, r5, r2, ROR, r5},
2982b8021494Sopenharmony_ci                            false,
2983b8021494Sopenharmony_ci                            al,
2984b8021494Sopenharmony_ci                            "al r4 r5 r2 ROR r5",
2985b8021494Sopenharmony_ci                            "al_r4_r5_r2_ROR_r5"},
2986b8021494Sopenharmony_ci                           {{cc, r6, r2, r9, ROR, r7},
2987b8021494Sopenharmony_ci                            false,
2988b8021494Sopenharmony_ci                            al,
2989b8021494Sopenharmony_ci                            "cc r6 r2 r9 ROR r7",
2990b8021494Sopenharmony_ci                            "cc_r6_r2_r9_ROR_r7"},
2991b8021494Sopenharmony_ci                           {{pl, r4, r0, r0, LSR, r11},
2992b8021494Sopenharmony_ci                            false,
2993b8021494Sopenharmony_ci                            al,
2994b8021494Sopenharmony_ci                            "pl r4 r0 r0 LSR r11",
2995b8021494Sopenharmony_ci                            "pl_r4_r0_r0_LSR_r11"},
2996b8021494Sopenharmony_ci                           {{pl, r6, r10, r12, LSL, r11},
2997b8021494Sopenharmony_ci                            false,
2998b8021494Sopenharmony_ci                            al,
2999b8021494Sopenharmony_ci                            "pl r6 r10 r12 LSL r11",
3000b8021494Sopenharmony_ci                            "pl_r6_r10_r12_LSL_r11"},
3001b8021494Sopenharmony_ci                           {{al, r0, r14, r1, LSR, r6},
3002b8021494Sopenharmony_ci                            false,
3003b8021494Sopenharmony_ci                            al,
3004b8021494Sopenharmony_ci                            "al r0 r14 r1 LSR r6",
3005b8021494Sopenharmony_ci                            "al_r0_r14_r1_LSR_r6"},
3006b8021494Sopenharmony_ci                           {{cs, r7, r9, r13, LSR, r1},
3007b8021494Sopenharmony_ci                            false,
3008b8021494Sopenharmony_ci                            al,
3009b8021494Sopenharmony_ci                            "cs r7 r9 r13 LSR r1",
3010b8021494Sopenharmony_ci                            "cs_r7_r9_r13_LSR_r1"},
3011b8021494Sopenharmony_ci                           {{al, r4, r2, r10, ROR, r3},
3012b8021494Sopenharmony_ci                            false,
3013b8021494Sopenharmony_ci                            al,
3014b8021494Sopenharmony_ci                            "al r4 r2 r10 ROR r3",
3015b8021494Sopenharmony_ci                            "al_r4_r2_r10_ROR_r3"},
3016b8021494Sopenharmony_ci                           {{gt, r12, r4, r14, ROR, r7},
3017b8021494Sopenharmony_ci                            false,
3018b8021494Sopenharmony_ci                            al,
3019b8021494Sopenharmony_ci                            "gt r12 r4 r14 ROR r7",
3020b8021494Sopenharmony_ci                            "gt_r12_r4_r14_ROR_r7"},
3021b8021494Sopenharmony_ci                           {{cs, r11, r0, r14, ASR, r7},
3022b8021494Sopenharmony_ci                            false,
3023b8021494Sopenharmony_ci                            al,
3024b8021494Sopenharmony_ci                            "cs r11 r0 r14 ASR r7",
3025b8021494Sopenharmony_ci                            "cs_r11_r0_r14_ASR_r7"},
3026b8021494Sopenharmony_ci                           {{pl, r0, r2, r4, ASR, r14},
3027b8021494Sopenharmony_ci                            false,
3028b8021494Sopenharmony_ci                            al,
3029b8021494Sopenharmony_ci                            "pl r0 r2 r4 ASR r14",
3030b8021494Sopenharmony_ci                            "pl_r0_r2_r4_ASR_r14"},
3031b8021494Sopenharmony_ci                           {{mi, r14, r4, r9, LSR, r5},
3032b8021494Sopenharmony_ci                            false,
3033b8021494Sopenharmony_ci                            al,
3034b8021494Sopenharmony_ci                            "mi r14 r4 r9 LSR r5",
3035b8021494Sopenharmony_ci                            "mi_r14_r4_r9_LSR_r5"},
3036b8021494Sopenharmony_ci                           {{ge, r13, r0, r1, ROR, r5},
3037b8021494Sopenharmony_ci                            false,
3038b8021494Sopenharmony_ci                            al,
3039b8021494Sopenharmony_ci                            "ge r13 r0 r1 ROR r5",
3040b8021494Sopenharmony_ci                            "ge_r13_r0_r1_ROR_r5"},
3041b8021494Sopenharmony_ci                           {{eq, r12, r14, r0, LSL, r11},
3042b8021494Sopenharmony_ci                            false,
3043b8021494Sopenharmony_ci                            al,
3044b8021494Sopenharmony_ci                            "eq r12 r14 r0 LSL r11",
3045b8021494Sopenharmony_ci                            "eq_r12_r14_r0_LSL_r11"},
3046b8021494Sopenharmony_ci                           {{ge, r6, r4, r10, ROR, r13},
3047b8021494Sopenharmony_ci                            false,
3048b8021494Sopenharmony_ci                            al,
3049b8021494Sopenharmony_ci                            "ge r6 r4 r10 ROR r13",
3050b8021494Sopenharmony_ci                            "ge_r6_r4_r10_ROR_r13"},
3051b8021494Sopenharmony_ci                           {{lt, r3, r7, r2, ASR, r5},
3052b8021494Sopenharmony_ci                            false,
3053b8021494Sopenharmony_ci                            al,
3054b8021494Sopenharmony_ci                            "lt r3 r7 r2 ASR r5",
3055b8021494Sopenharmony_ci                            "lt_r3_r7_r2_ASR_r5"},
3056b8021494Sopenharmony_ci                           {{al, r9, r0, r12, ROR, r0},
3057b8021494Sopenharmony_ci                            false,
3058b8021494Sopenharmony_ci                            al,
3059b8021494Sopenharmony_ci                            "al r9 r0 r12 ROR r0",
3060b8021494Sopenharmony_ci                            "al_r9_r0_r12_ROR_r0"},
3061b8021494Sopenharmony_ci                           {{le, r1, r9, r7, LSL, r12},
3062b8021494Sopenharmony_ci                            false,
3063b8021494Sopenharmony_ci                            al,
3064b8021494Sopenharmony_ci                            "le r1 r9 r7 LSL r12",
3065b8021494Sopenharmony_ci                            "le_r1_r9_r7_LSL_r12"},
3066b8021494Sopenharmony_ci                           {{lt, r14, r7, r4, ASR, r7},
3067b8021494Sopenharmony_ci                            false,
3068b8021494Sopenharmony_ci                            al,
3069b8021494Sopenharmony_ci                            "lt r14 r7 r4 ASR r7",
3070b8021494Sopenharmony_ci                            "lt_r14_r7_r4_ASR_r7"},
3071b8021494Sopenharmony_ci                           {{ne, r4, r6, r9, LSR, r8},
3072b8021494Sopenharmony_ci                            false,
3073b8021494Sopenharmony_ci                            al,
3074b8021494Sopenharmony_ci                            "ne r4 r6 r9 LSR r8",
3075b8021494Sopenharmony_ci                            "ne_r4_r6_r9_LSR_r8"},
3076b8021494Sopenharmony_ci                           {{cc, r0, r5, r1, ASR, r6},
3077b8021494Sopenharmony_ci                            false,
3078b8021494Sopenharmony_ci                            al,
3079b8021494Sopenharmony_ci                            "cc r0 r5 r1 ASR r6",
3080b8021494Sopenharmony_ci                            "cc_r0_r5_r1_ASR_r6"},
3081b8021494Sopenharmony_ci                           {{cc, r2, r13, r2, ROR, r6},
3082b8021494Sopenharmony_ci                            false,
3083b8021494Sopenharmony_ci                            al,
3084b8021494Sopenharmony_ci                            "cc r2 r13 r2 ROR r6",
3085b8021494Sopenharmony_ci                            "cc_r2_r13_r2_ROR_r6"},
3086b8021494Sopenharmony_ci                           {{ge, r10, r0, r9, ROR, r6},
3087b8021494Sopenharmony_ci                            false,
3088b8021494Sopenharmony_ci                            al,
3089b8021494Sopenharmony_ci                            "ge r10 r0 r9 ROR r6",
3090b8021494Sopenharmony_ci                            "ge_r10_r0_r9_ROR_r6"},
3091b8021494Sopenharmony_ci                           {{gt, r8, r1, r11, LSR, r0},
3092b8021494Sopenharmony_ci                            false,
3093b8021494Sopenharmony_ci                            al,
3094b8021494Sopenharmony_ci                            "gt r8 r1 r11 LSR r0",
3095b8021494Sopenharmony_ci                            "gt_r8_r1_r11_LSR_r0"},
3096b8021494Sopenharmony_ci                           {{al, r14, r0, r9, LSL, r0},
3097b8021494Sopenharmony_ci                            false,
3098b8021494Sopenharmony_ci                            al,
3099b8021494Sopenharmony_ci                            "al r14 r0 r9 LSL r0",
3100b8021494Sopenharmony_ci                            "al_r14_r0_r9_LSL_r0"},
3101b8021494Sopenharmony_ci                           {{hi, r12, r3, r12, ROR, r9},
3102b8021494Sopenharmony_ci                            false,
3103b8021494Sopenharmony_ci                            al,
3104b8021494Sopenharmony_ci                            "hi r12 r3 r12 ROR r9",
3105b8021494Sopenharmony_ci                            "hi_r12_r3_r12_ROR_r9"},
3106b8021494Sopenharmony_ci                           {{eq, r4, r12, r3, LSL, r2},
3107b8021494Sopenharmony_ci                            false,
3108b8021494Sopenharmony_ci                            al,
3109b8021494Sopenharmony_ci                            "eq r4 r12 r3 LSL r2",
3110b8021494Sopenharmony_ci                            "eq_r4_r12_r3_LSL_r2"},
3111b8021494Sopenharmony_ci                           {{ne, r5, r3, r4, LSL, r4},
3112b8021494Sopenharmony_ci                            false,
3113b8021494Sopenharmony_ci                            al,
3114b8021494Sopenharmony_ci                            "ne r5 r3 r4 LSL r4",
3115b8021494Sopenharmony_ci                            "ne_r5_r3_r4_LSL_r4"},
3116b8021494Sopenharmony_ci                           {{vc, r8, r6, r10, LSL, r11},
3117b8021494Sopenharmony_ci                            false,
3118b8021494Sopenharmony_ci                            al,
3119b8021494Sopenharmony_ci                            "vc r8 r6 r10 LSL r11",
3120b8021494Sopenharmony_ci                            "vc_r8_r6_r10_LSL_r11"},
3121b8021494Sopenharmony_ci                           {{lt, r0, r1, r4, ASR, r3},
3122b8021494Sopenharmony_ci                            false,
3123b8021494Sopenharmony_ci                            al,
3124b8021494Sopenharmony_ci                            "lt r0 r1 r4 ASR r3",
3125b8021494Sopenharmony_ci                            "lt_r0_r1_r4_ASR_r3"},
3126b8021494Sopenharmony_ci                           {{le, r14, r4, r1, ROR, r7},
3127b8021494Sopenharmony_ci                            false,
3128b8021494Sopenharmony_ci                            al,
3129b8021494Sopenharmony_ci                            "le r14 r4 r1 ROR r7",
3130b8021494Sopenharmony_ci                            "le_r14_r4_r1_ROR_r7"},
3131b8021494Sopenharmony_ci                           {{al, r12, r12, r5, LSL, r2},
3132b8021494Sopenharmony_ci                            false,
3133b8021494Sopenharmony_ci                            al,
3134b8021494Sopenharmony_ci                            "al r12 r12 r5 LSL r2",
3135b8021494Sopenharmony_ci                            "al_r12_r12_r5_LSL_r2"},
3136b8021494Sopenharmony_ci                           {{eq, r10, r3, r10, ROR, r13},
3137b8021494Sopenharmony_ci                            false,
3138b8021494Sopenharmony_ci                            al,
3139b8021494Sopenharmony_ci                            "eq r10 r3 r10 ROR r13",
3140b8021494Sopenharmony_ci                            "eq_r10_r3_r10_ROR_r13"},
3141b8021494Sopenharmony_ci                           {{ne, r7, r10, r1, LSR, r14},
3142b8021494Sopenharmony_ci                            false,
3143b8021494Sopenharmony_ci                            al,
3144b8021494Sopenharmony_ci                            "ne r7 r10 r1 LSR r14",
3145b8021494Sopenharmony_ci                            "ne_r7_r10_r1_LSR_r14"},
3146b8021494Sopenharmony_ci                           {{lt, r10, r4, r10, LSR, r5},
3147b8021494Sopenharmony_ci                            false,
3148b8021494Sopenharmony_ci                            al,
3149b8021494Sopenharmony_ci                            "lt r10 r4 r10 LSR r5",
3150b8021494Sopenharmony_ci                            "lt_r10_r4_r10_LSR_r5"},
3151b8021494Sopenharmony_ci                           {{pl, r0, r14, r0, LSL, r2},
3152b8021494Sopenharmony_ci                            false,
3153b8021494Sopenharmony_ci                            al,
3154b8021494Sopenharmony_ci                            "pl r0 r14 r0 LSL r2",
3155b8021494Sopenharmony_ci                            "pl_r0_r14_r0_LSL_r2"},
3156b8021494Sopenharmony_ci                           {{gt, r7, r4, r11, LSL, r3},
3157b8021494Sopenharmony_ci                            false,
3158b8021494Sopenharmony_ci                            al,
3159b8021494Sopenharmony_ci                            "gt r7 r4 r11 LSL r3",
3160b8021494Sopenharmony_ci                            "gt_r7_r4_r11_LSL_r3"},
3161b8021494Sopenharmony_ci                           {{cs, r8, r2, r1, LSR, r8},
3162b8021494Sopenharmony_ci                            false,
3163b8021494Sopenharmony_ci                            al,
3164b8021494Sopenharmony_ci                            "cs r8 r2 r1 LSR r8",
3165b8021494Sopenharmony_ci                            "cs_r8_r2_r1_LSR_r8"},
3166b8021494Sopenharmony_ci                           {{pl, r9, r11, r4, ASR, r7},
3167b8021494Sopenharmony_ci                            false,
3168b8021494Sopenharmony_ci                            al,
3169b8021494Sopenharmony_ci                            "pl r9 r11 r4 ASR r7",
3170b8021494Sopenharmony_ci                            "pl_r9_r11_r4_ASR_r7"},
3171b8021494Sopenharmony_ci                           {{cc, r9, r5, r12, ROR, r4},
3172b8021494Sopenharmony_ci                            false,
3173b8021494Sopenharmony_ci                            al,
3174b8021494Sopenharmony_ci                            "cc r9 r5 r12 ROR r4",
3175b8021494Sopenharmony_ci                            "cc_r9_r5_r12_ROR_r4"},
3176b8021494Sopenharmony_ci                           {{vc, r0, r11, r3, LSR, r12},
3177b8021494Sopenharmony_ci                            false,
3178b8021494Sopenharmony_ci                            al,
3179b8021494Sopenharmony_ci                            "vc r0 r11 r3 LSR r12",
3180b8021494Sopenharmony_ci                            "vc_r0_r11_r3_LSR_r12"},
3181b8021494Sopenharmony_ci                           {{gt, r6, r2, r4, LSR, r4},
3182b8021494Sopenharmony_ci                            false,
3183b8021494Sopenharmony_ci                            al,
3184b8021494Sopenharmony_ci                            "gt r6 r2 r4 LSR r4",
3185b8021494Sopenharmony_ci                            "gt_r6_r2_r4_LSR_r4"},
3186b8021494Sopenharmony_ci                           {{lt, r4, r2, r0, LSL, r12},
3187b8021494Sopenharmony_ci                            false,
3188b8021494Sopenharmony_ci                            al,
3189b8021494Sopenharmony_ci                            "lt r4 r2 r0 LSL r12",
3190b8021494Sopenharmony_ci                            "lt_r4_r2_r0_LSL_r12"},
3191b8021494Sopenharmony_ci                           {{le, r9, r4, r13, ROR, r5},
3192b8021494Sopenharmony_ci                            false,
3193b8021494Sopenharmony_ci                            al,
3194b8021494Sopenharmony_ci                            "le r9 r4 r13 ROR r5",
3195b8021494Sopenharmony_ci                            "le_r9_r4_r13_ROR_r5"},
3196b8021494Sopenharmony_ci                           {{vs, r9, r3, r8, LSR, r8},
3197b8021494Sopenharmony_ci                            false,
3198b8021494Sopenharmony_ci                            al,
3199b8021494Sopenharmony_ci                            "vs r9 r3 r8 LSR r8",
3200b8021494Sopenharmony_ci                            "vs_r9_r3_r8_LSR_r8"},
3201b8021494Sopenharmony_ci                           {{ne, r3, r8, r14, ROR, r8},
3202b8021494Sopenharmony_ci                            false,
3203b8021494Sopenharmony_ci                            al,
3204b8021494Sopenharmony_ci                            "ne r3 r8 r14 ROR r8",
3205b8021494Sopenharmony_ci                            "ne_r3_r8_r14_ROR_r8"},
3206b8021494Sopenharmony_ci                           {{vc, r12, r13, r4, LSR, r9},
3207b8021494Sopenharmony_ci                            false,
3208b8021494Sopenharmony_ci                            al,
3209b8021494Sopenharmony_ci                            "vc r12 r13 r4 LSR r9",
3210b8021494Sopenharmony_ci                            "vc_r12_r13_r4_LSR_r9"},
3211b8021494Sopenharmony_ci                           {{cc, r14, r0, r8, LSL, r1},
3212b8021494Sopenharmony_ci                            false,
3213b8021494Sopenharmony_ci                            al,
3214b8021494Sopenharmony_ci                            "cc r14 r0 r8 LSL r1",
3215b8021494Sopenharmony_ci                            "cc_r14_r0_r8_LSL_r1"},
3216b8021494Sopenharmony_ci                           {{hi, r6, r3, r5, ASR, r9},
3217b8021494Sopenharmony_ci                            false,
3218b8021494Sopenharmony_ci                            al,
3219b8021494Sopenharmony_ci                            "hi r6 r3 r5 ASR r9",
3220b8021494Sopenharmony_ci                            "hi_r6_r3_r5_ASR_r9"},
3221b8021494Sopenharmony_ci                           {{ne, r14, r4, r3, LSL, r8},
3222b8021494Sopenharmony_ci                            false,
3223b8021494Sopenharmony_ci                            al,
3224b8021494Sopenharmony_ci                            "ne r14 r4 r3 LSL r8",
3225b8021494Sopenharmony_ci                            "ne_r14_r4_r3_LSL_r8"},
3226b8021494Sopenharmony_ci                           {{ge, r1, r10, r13, LSR, r4},
3227b8021494Sopenharmony_ci                            false,
3228b8021494Sopenharmony_ci                            al,
3229b8021494Sopenharmony_ci                            "ge r1 r10 r13 LSR r4",
3230b8021494Sopenharmony_ci                            "ge_r1_r10_r13_LSR_r4"},
3231b8021494Sopenharmony_ci                           {{vc, r12, r7, r6, ROR, r3},
3232b8021494Sopenharmony_ci                            false,
3233b8021494Sopenharmony_ci                            al,
3234b8021494Sopenharmony_ci                            "vc r12 r7 r6 ROR r3",
3235b8021494Sopenharmony_ci                            "vc_r12_r7_r6_ROR_r3"},
3236b8021494Sopenharmony_ci                           {{gt, r0, r6, r7, ROR, r2},
3237b8021494Sopenharmony_ci                            false,
3238b8021494Sopenharmony_ci                            al,
3239b8021494Sopenharmony_ci                            "gt r0 r6 r7 ROR r2",
3240b8021494Sopenharmony_ci                            "gt_r0_r6_r7_ROR_r2"},
3241b8021494Sopenharmony_ci                           {{al, r4, r6, r9, LSL, r0},
3242b8021494Sopenharmony_ci                            false,
3243b8021494Sopenharmony_ci                            al,
3244b8021494Sopenharmony_ci                            "al r4 r6 r9 LSL r0",
3245b8021494Sopenharmony_ci                            "al_r4_r6_r9_LSL_r0"},
3246b8021494Sopenharmony_ci                           {{ls, r1, r3, r11, LSR, r11},
3247b8021494Sopenharmony_ci                            false,
3248b8021494Sopenharmony_ci                            al,
3249b8021494Sopenharmony_ci                            "ls r1 r3 r11 LSR r11",
3250b8021494Sopenharmony_ci                            "ls_r1_r3_r11_LSR_r11"},
3251b8021494Sopenharmony_ci                           {{lt, r3, r11, r1, LSR, r14},
3252b8021494Sopenharmony_ci                            false,
3253b8021494Sopenharmony_ci                            al,
3254b8021494Sopenharmony_ci                            "lt r3 r11 r1 LSR r14",
3255b8021494Sopenharmony_ci                            "lt_r3_r11_r1_LSR_r14"},
3256b8021494Sopenharmony_ci                           {{vc, r6, r13, r7, ROR, r11},
3257b8021494Sopenharmony_ci                            false,
3258b8021494Sopenharmony_ci                            al,
3259b8021494Sopenharmony_ci                            "vc r6 r13 r7 ROR r11",
3260b8021494Sopenharmony_ci                            "vc_r6_r13_r7_ROR_r11"},
3261b8021494Sopenharmony_ci                           {{vc, r5, r14, r13, ROR, r13},
3262b8021494Sopenharmony_ci                            false,
3263b8021494Sopenharmony_ci                            al,
3264b8021494Sopenharmony_ci                            "vc r5 r14 r13 ROR r13",
3265b8021494Sopenharmony_ci                            "vc_r5_r14_r13_ROR_r13"},
3266b8021494Sopenharmony_ci                           {{vc, r1, r4, r11, LSL, r1},
3267b8021494Sopenharmony_ci                            false,
3268b8021494Sopenharmony_ci                            al,
3269b8021494Sopenharmony_ci                            "vc r1 r4 r11 LSL r1",
3270b8021494Sopenharmony_ci                            "vc_r1_r4_r11_LSL_r1"},
3271b8021494Sopenharmony_ci                           {{ls, r7, r3, r5, LSR, r6},
3272b8021494Sopenharmony_ci                            false,
3273b8021494Sopenharmony_ci                            al,
3274b8021494Sopenharmony_ci                            "ls r7 r3 r5 LSR r6",
3275b8021494Sopenharmony_ci                            "ls_r7_r3_r5_LSR_r6"},
3276b8021494Sopenharmony_ci                           {{vc, r13, r8, r3, ASR, r4},
3277b8021494Sopenharmony_ci                            false,
3278b8021494Sopenharmony_ci                            al,
3279b8021494Sopenharmony_ci                            "vc r13 r8 r3 ASR r4",
3280b8021494Sopenharmony_ci                            "vc_r13_r8_r3_ASR_r4"},
3281b8021494Sopenharmony_ci                           {{ls, r2, r3, r10, ROR, r11},
3282b8021494Sopenharmony_ci                            false,
3283b8021494Sopenharmony_ci                            al,
3284b8021494Sopenharmony_ci                            "ls r2 r3 r10 ROR r11",
3285b8021494Sopenharmony_ci                            "ls_r2_r3_r10_ROR_r11"},
3286b8021494Sopenharmony_ci                           {{ge, r6, r1, r12, ASR, r11},
3287b8021494Sopenharmony_ci                            false,
3288b8021494Sopenharmony_ci                            al,
3289b8021494Sopenharmony_ci                            "ge r6 r1 r12 ASR r11",
3290b8021494Sopenharmony_ci                            "ge_r6_r1_r12_ASR_r11"},
3291b8021494Sopenharmony_ci                           {{lt, r3, r1, r1, ASR, r14},
3292b8021494Sopenharmony_ci                            false,
3293b8021494Sopenharmony_ci                            al,
3294b8021494Sopenharmony_ci                            "lt r3 r1 r1 ASR r14",
3295b8021494Sopenharmony_ci                            "lt_r3_r1_r1_ASR_r14"},
3296b8021494Sopenharmony_ci                           {{hi, r2, r7, r14, LSL, r12},
3297b8021494Sopenharmony_ci                            false,
3298b8021494Sopenharmony_ci                            al,
3299b8021494Sopenharmony_ci                            "hi r2 r7 r14 LSL r12",
3300b8021494Sopenharmony_ci                            "hi_r2_r7_r14_LSL_r12"},
3301b8021494Sopenharmony_ci                           {{ge, r13, r10, r10, LSL, r14},
3302b8021494Sopenharmony_ci                            false,
3303b8021494Sopenharmony_ci                            al,
3304b8021494Sopenharmony_ci                            "ge r13 r10 r10 LSL r14",
3305b8021494Sopenharmony_ci                            "ge_r13_r10_r10_LSL_r14"},
3306b8021494Sopenharmony_ci                           {{le, r0, r1, r3, LSR, r3},
3307b8021494Sopenharmony_ci                            false,
3308b8021494Sopenharmony_ci                            al,
3309b8021494Sopenharmony_ci                            "le r0 r1 r3 LSR r3",
3310b8021494Sopenharmony_ci                            "le_r0_r1_r3_LSR_r3"},
3311b8021494Sopenharmony_ci                           {{vs, r10, r7, r7, LSR, r6},
3312b8021494Sopenharmony_ci                            false,
3313b8021494Sopenharmony_ci                            al,
3314b8021494Sopenharmony_ci                            "vs r10 r7 r7 LSR r6",
3315b8021494Sopenharmony_ci                            "vs_r10_r7_r7_LSR_r6"},
3316b8021494Sopenharmony_ci                           {{al, r6, r3, r6, LSL, r7},
3317b8021494Sopenharmony_ci                            false,
3318b8021494Sopenharmony_ci                            al,
3319b8021494Sopenharmony_ci                            "al r6 r3 r6 LSL r7",
3320b8021494Sopenharmony_ci                            "al_r6_r3_r6_LSL_r7"},
3321b8021494Sopenharmony_ci                           {{ne, r3, r8, r14, ASR, r1},
3322b8021494Sopenharmony_ci                            false,
3323b8021494Sopenharmony_ci                            al,
3324b8021494Sopenharmony_ci                            "ne r3 r8 r14 ASR r1",
3325b8021494Sopenharmony_ci                            "ne_r3_r8_r14_ASR_r1"},
3326b8021494Sopenharmony_ci                           {{cc, r4, r10, r4, LSR, r9},
3327b8021494Sopenharmony_ci                            false,
3328b8021494Sopenharmony_ci                            al,
3329b8021494Sopenharmony_ci                            "cc r4 r10 r4 LSR r9",
3330b8021494Sopenharmony_ci                            "cc_r4_r10_r4_LSR_r9"},
3331b8021494Sopenharmony_ci                           {{cs, r4, r1, r5, LSR, r10},
3332b8021494Sopenharmony_ci                            false,
3333b8021494Sopenharmony_ci                            al,
3334b8021494Sopenharmony_ci                            "cs r4 r1 r5 LSR r10",
3335b8021494Sopenharmony_ci                            "cs_r4_r1_r5_LSR_r10"},
3336b8021494Sopenharmony_ci                           {{eq, r7, r6, r1, LSL, r4},
3337b8021494Sopenharmony_ci                            false,
3338b8021494Sopenharmony_ci                            al,
3339b8021494Sopenharmony_ci                            "eq r7 r6 r1 LSL r4",
3340b8021494Sopenharmony_ci                            "eq_r7_r6_r1_LSL_r4"},
3341b8021494Sopenharmony_ci                           {{hi, r3, r7, r1, LSL, r5},
3342b8021494Sopenharmony_ci                            false,
3343b8021494Sopenharmony_ci                            al,
3344b8021494Sopenharmony_ci                            "hi r3 r7 r1 LSL r5",
3345b8021494Sopenharmony_ci                            "hi_r3_r7_r1_LSL_r5"},
3346b8021494Sopenharmony_ci                           {{al, r6, r11, r8, LSR, r12},
3347b8021494Sopenharmony_ci                            false,
3348b8021494Sopenharmony_ci                            al,
3349b8021494Sopenharmony_ci                            "al r6 r11 r8 LSR r12",
3350b8021494Sopenharmony_ci                            "al_r6_r11_r8_LSR_r12"},
3351b8021494Sopenharmony_ci                           {{ls, r2, r5, r0, LSR, r5},
3352b8021494Sopenharmony_ci                            false,
3353b8021494Sopenharmony_ci                            al,
3354b8021494Sopenharmony_ci                            "ls r2 r5 r0 LSR r5",
3355b8021494Sopenharmony_ci                            "ls_r2_r5_r0_LSR_r5"},
3356b8021494Sopenharmony_ci                           {{pl, r4, r5, r13, LSL, r9},
3357b8021494Sopenharmony_ci                            false,
3358b8021494Sopenharmony_ci                            al,
3359b8021494Sopenharmony_ci                            "pl r4 r5 r13 LSL r9",
3360b8021494Sopenharmony_ci                            "pl_r4_r5_r13_LSL_r9"},
3361b8021494Sopenharmony_ci                           {{lt, r13, r12, r0, ASR, r8},
3362b8021494Sopenharmony_ci                            false,
3363b8021494Sopenharmony_ci                            al,
3364b8021494Sopenharmony_ci                            "lt r13 r12 r0 ASR r8",
3365b8021494Sopenharmony_ci                            "lt_r13_r12_r0_ASR_r8"},
3366b8021494Sopenharmony_ci                           {{cc, r11, r5, r0, LSL, r12},
3367b8021494Sopenharmony_ci                            false,
3368b8021494Sopenharmony_ci                            al,
3369b8021494Sopenharmony_ci                            "cc r11 r5 r0 LSL r12",
3370b8021494Sopenharmony_ci                            "cc_r11_r5_r0_LSL_r12"},
3371b8021494Sopenharmony_ci                           {{ne, r6, r2, r2, ROR, r0},
3372b8021494Sopenharmony_ci                            false,
3373b8021494Sopenharmony_ci                            al,
3374b8021494Sopenharmony_ci                            "ne r6 r2 r2 ROR r0",
3375b8021494Sopenharmony_ci                            "ne_r6_r2_r2_ROR_r0"},
3376b8021494Sopenharmony_ci                           {{ne, r9, r13, r12, ASR, r6},
3377b8021494Sopenharmony_ci                            false,
3378b8021494Sopenharmony_ci                            al,
3379b8021494Sopenharmony_ci                            "ne r9 r13 r12 ASR r6",
3380b8021494Sopenharmony_ci                            "ne_r9_r13_r12_ASR_r6"},
3381b8021494Sopenharmony_ci                           {{cs, r8, r6, r10, ROR, r10},
3382b8021494Sopenharmony_ci                            false,
3383b8021494Sopenharmony_ci                            al,
3384b8021494Sopenharmony_ci                            "cs r8 r6 r10 ROR r10",
3385b8021494Sopenharmony_ci                            "cs_r8_r6_r10_ROR_r10"},
3386b8021494Sopenharmony_ci                           {{vs, r10, r6, r1, LSL, r6},
3387b8021494Sopenharmony_ci                            false,
3388b8021494Sopenharmony_ci                            al,
3389b8021494Sopenharmony_ci                            "vs r10 r6 r1 LSL r6",
3390b8021494Sopenharmony_ci                            "vs_r10_r6_r1_LSL_r6"},
3391b8021494Sopenharmony_ci                           {{vc, r12, r0, r4, ASR, r10},
3392b8021494Sopenharmony_ci                            false,
3393b8021494Sopenharmony_ci                            al,
3394b8021494Sopenharmony_ci                            "vc r12 r0 r4 ASR r10",
3395b8021494Sopenharmony_ci                            "vc_r12_r0_r4_ASR_r10"},
3396b8021494Sopenharmony_ci                           {{cs, r10, r2, r11, ROR, r8},
3397b8021494Sopenharmony_ci                            false,
3398b8021494Sopenharmony_ci                            al,
3399b8021494Sopenharmony_ci                            "cs r10 r2 r11 ROR r8",
3400b8021494Sopenharmony_ci                            "cs_r10_r2_r11_ROR_r8"},
3401b8021494Sopenharmony_ci                           {{ne, r0, r9, r14, ASR, r14},
3402b8021494Sopenharmony_ci                            false,
3403b8021494Sopenharmony_ci                            al,
3404b8021494Sopenharmony_ci                            "ne r0 r9 r14 ASR r14",
3405b8021494Sopenharmony_ci                            "ne_r0_r9_r14_ASR_r14"},
3406b8021494Sopenharmony_ci                           {{eq, r0, r10, r1, ASR, r8},
3407b8021494Sopenharmony_ci                            false,
3408b8021494Sopenharmony_ci                            al,
3409b8021494Sopenharmony_ci                            "eq r0 r10 r1 ASR r8",
3410b8021494Sopenharmony_ci                            "eq_r0_r10_r1_ASR_r8"},
3411b8021494Sopenharmony_ci                           {{gt, r0, r11, r3, LSR, r0},
3412b8021494Sopenharmony_ci                            false,
3413b8021494Sopenharmony_ci                            al,
3414b8021494Sopenharmony_ci                            "gt r0 r11 r3 LSR r0",
3415b8021494Sopenharmony_ci                            "gt_r0_r11_r3_LSR_r0"},
3416b8021494Sopenharmony_ci                           {{al, r5, r11, r6, ROR, r14},
3417b8021494Sopenharmony_ci                            false,
3418b8021494Sopenharmony_ci                            al,
3419b8021494Sopenharmony_ci                            "al r5 r11 r6 ROR r14",
3420b8021494Sopenharmony_ci                            "al_r5_r11_r6_ROR_r14"},
3421b8021494Sopenharmony_ci                           {{ls, r2, r11, r11, ROR, r2},
3422b8021494Sopenharmony_ci                            false,
3423b8021494Sopenharmony_ci                            al,
3424b8021494Sopenharmony_ci                            "ls r2 r11 r11 ROR r2",
3425b8021494Sopenharmony_ci                            "ls_r2_r11_r11_ROR_r2"},
3426b8021494Sopenharmony_ci                           {{cs, r2, r11, r6, ROR, r11},
3427b8021494Sopenharmony_ci                            false,
3428b8021494Sopenharmony_ci                            al,
3429b8021494Sopenharmony_ci                            "cs r2 r11 r6 ROR r11",
3430b8021494Sopenharmony_ci                            "cs_r2_r11_r6_ROR_r11"},
3431b8021494Sopenharmony_ci                           {{cs, r4, r9, r11, ASR, r5},
3432b8021494Sopenharmony_ci                            false,
3433b8021494Sopenharmony_ci                            al,
3434b8021494Sopenharmony_ci                            "cs r4 r9 r11 ASR r5",
3435b8021494Sopenharmony_ci                            "cs_r4_r9_r11_ASR_r5"},
3436b8021494Sopenharmony_ci                           {{ls, r5, r0, r2, ASR, r3},
3437b8021494Sopenharmony_ci                            false,
3438b8021494Sopenharmony_ci                            al,
3439b8021494Sopenharmony_ci                            "ls r5 r0 r2 ASR r3",
3440b8021494Sopenharmony_ci                            "ls_r5_r0_r2_ASR_r3"},
3441b8021494Sopenharmony_ci                           {{cc, r14, r1, r13, LSR, r2},
3442b8021494Sopenharmony_ci                            false,
3443b8021494Sopenharmony_ci                            al,
3444b8021494Sopenharmony_ci                            "cc r14 r1 r13 LSR r2",
3445b8021494Sopenharmony_ci                            "cc_r14_r1_r13_LSR_r2"},
3446b8021494Sopenharmony_ci                           {{lt, r4, r5, r6, ASR, r0},
3447b8021494Sopenharmony_ci                            false,
3448b8021494Sopenharmony_ci                            al,
3449b8021494Sopenharmony_ci                            "lt r4 r5 r6 ASR r0",
3450b8021494Sopenharmony_ci                            "lt_r4_r5_r6_ASR_r0"},
3451b8021494Sopenharmony_ci                           {{vc, r0, r12, r6, ASR, r6},
3452b8021494Sopenharmony_ci                            false,
3453b8021494Sopenharmony_ci                            al,
3454b8021494Sopenharmony_ci                            "vc r0 r12 r6 ASR r6",
3455b8021494Sopenharmony_ci                            "vc_r0_r12_r6_ASR_r6"},
3456b8021494Sopenharmony_ci                           {{pl, r3, r10, r4, LSR, r8},
3457b8021494Sopenharmony_ci                            false,
3458b8021494Sopenharmony_ci                            al,
3459b8021494Sopenharmony_ci                            "pl r3 r10 r4 LSR r8",
3460b8021494Sopenharmony_ci                            "pl_r3_r10_r4_LSR_r8"},
3461b8021494Sopenharmony_ci                           {{cc, r10, r5, r10, ASR, r10},
3462b8021494Sopenharmony_ci                            false,
3463b8021494Sopenharmony_ci                            al,
3464b8021494Sopenharmony_ci                            "cc r10 r5 r10 ASR r10",
3465b8021494Sopenharmony_ci                            "cc_r10_r5_r10_ASR_r10"},
3466b8021494Sopenharmony_ci                           {{pl, r2, r14, r1, ASR, r10},
3467b8021494Sopenharmony_ci                            false,
3468b8021494Sopenharmony_ci                            al,
3469b8021494Sopenharmony_ci                            "pl r2 r14 r1 ASR r10",
3470b8021494Sopenharmony_ci                            "pl_r2_r14_r1_ASR_r10"},
3471b8021494Sopenharmony_ci                           {{eq, r12, r13, r8, ROR, r12},
3472b8021494Sopenharmony_ci                            false,
3473b8021494Sopenharmony_ci                            al,
3474b8021494Sopenharmony_ci                            "eq r12 r13 r8 ROR r12",
3475b8021494Sopenharmony_ci                            "eq_r12_r13_r8_ROR_r12"},
3476b8021494Sopenharmony_ci                           {{gt, r9, r8, r2, LSL, r2},
3477b8021494Sopenharmony_ci                            false,
3478b8021494Sopenharmony_ci                            al,
3479b8021494Sopenharmony_ci                            "gt r9 r8 r2 LSL r2",
3480b8021494Sopenharmony_ci                            "gt_r9_r8_r2_LSL_r2"},
3481b8021494Sopenharmony_ci                           {{al, r13, r10, r10, LSL, r9},
3482b8021494Sopenharmony_ci                            false,
3483b8021494Sopenharmony_ci                            al,
3484b8021494Sopenharmony_ci                            "al r13 r10 r10 LSL r9",
3485b8021494Sopenharmony_ci                            "al_r13_r10_r10_LSL_r9"},
3486b8021494Sopenharmony_ci                           {{eq, r8, r8, r6, ROR, r14},
3487b8021494Sopenharmony_ci                            false,
3488b8021494Sopenharmony_ci                            al,
3489b8021494Sopenharmony_ci                            "eq r8 r8 r6 ROR r14",
3490b8021494Sopenharmony_ci                            "eq_r8_r8_r6_ROR_r14"},
3491b8021494Sopenharmony_ci                           {{le, r14, r12, r4, ASR, r13},
3492b8021494Sopenharmony_ci                            false,
3493b8021494Sopenharmony_ci                            al,
3494b8021494Sopenharmony_ci                            "le r14 r12 r4 ASR r13",
3495b8021494Sopenharmony_ci                            "le_r14_r12_r4_ASR_r13"},
3496b8021494Sopenharmony_ci                           {{cc, r3, r6, r12, LSR, r2},
3497b8021494Sopenharmony_ci                            false,
3498b8021494Sopenharmony_ci                            al,
3499b8021494Sopenharmony_ci                            "cc r3 r6 r12 LSR r2",
3500b8021494Sopenharmony_ci                            "cc_r3_r6_r12_LSR_r2"},
3501b8021494Sopenharmony_ci                           {{ls, r5, r14, r10, LSL, r6},
3502b8021494Sopenharmony_ci                            false,
3503b8021494Sopenharmony_ci                            al,
3504b8021494Sopenharmony_ci                            "ls r5 r14 r10 LSL r6",
3505b8021494Sopenharmony_ci                            "ls_r5_r14_r10_LSL_r6"},
3506b8021494Sopenharmony_ci                           {{hi, r12, r2, r1, ROR, r3},
3507b8021494Sopenharmony_ci                            false,
3508b8021494Sopenharmony_ci                            al,
3509b8021494Sopenharmony_ci                            "hi r12 r2 r1 ROR r3",
3510b8021494Sopenharmony_ci                            "hi_r12_r2_r1_ROR_r3"},
3511b8021494Sopenharmony_ci                           {{vc, r7, r13, r1, LSL, r12},
3512b8021494Sopenharmony_ci                            false,
3513b8021494Sopenharmony_ci                            al,
3514b8021494Sopenharmony_ci                            "vc r7 r13 r1 LSL r12",
3515b8021494Sopenharmony_ci                            "vc_r7_r13_r1_LSL_r12"},
3516b8021494Sopenharmony_ci                           {{cc, r0, r3, r13, LSL, r9},
3517b8021494Sopenharmony_ci                            false,
3518b8021494Sopenharmony_ci                            al,
3519b8021494Sopenharmony_ci                            "cc r0 r3 r13 LSL r9",
3520b8021494Sopenharmony_ci                            "cc_r0_r3_r13_LSL_r9"},
3521b8021494Sopenharmony_ci                           {{hi, r0, r11, r5, LSL, r11},
3522b8021494Sopenharmony_ci                            false,
3523b8021494Sopenharmony_ci                            al,
3524b8021494Sopenharmony_ci                            "hi r0 r11 r5 LSL r11",
3525b8021494Sopenharmony_ci                            "hi_r0_r11_r5_LSL_r11"},
3526b8021494Sopenharmony_ci                           {{ge, r9, r6, r14, LSR, r14},
3527b8021494Sopenharmony_ci                            false,
3528b8021494Sopenharmony_ci                            al,
3529b8021494Sopenharmony_ci                            "ge r9 r6 r14 LSR r14",
3530b8021494Sopenharmony_ci                            "ge_r9_r6_r14_LSR_r14"},
3531b8021494Sopenharmony_ci                           {{vc, r2, r5, r2, ROR, r12},
3532b8021494Sopenharmony_ci                            false,
3533b8021494Sopenharmony_ci                            al,
3534b8021494Sopenharmony_ci                            "vc r2 r5 r2 ROR r12",
3535b8021494Sopenharmony_ci                            "vc_r2_r5_r2_ROR_r12"},
3536b8021494Sopenharmony_ci                           {{mi, r9, r6, r9, ASR, r13},
3537b8021494Sopenharmony_ci                            false,
3538b8021494Sopenharmony_ci                            al,
3539b8021494Sopenharmony_ci                            "mi r9 r6 r9 ASR r13",
3540b8021494Sopenharmony_ci                            "mi_r9_r6_r9_ASR_r13"},
3541b8021494Sopenharmony_ci                           {{pl, r1, r3, r10, ASR, r2},
3542b8021494Sopenharmony_ci                            false,
3543b8021494Sopenharmony_ci                            al,
3544b8021494Sopenharmony_ci                            "pl r1 r3 r10 ASR r2",
3545b8021494Sopenharmony_ci                            "pl_r1_r3_r10_ASR_r2"},
3546b8021494Sopenharmony_ci                           {{le, r10, r9, r7, LSL, r4},
3547b8021494Sopenharmony_ci                            false,
3548b8021494Sopenharmony_ci                            al,
3549b8021494Sopenharmony_ci                            "le r10 r9 r7 LSL r4",
3550b8021494Sopenharmony_ci                            "le_r10_r9_r7_LSL_r4"},
3551b8021494Sopenharmony_ci                           {{hi, r7, r4, r10, LSR, r6},
3552b8021494Sopenharmony_ci                            false,
3553b8021494Sopenharmony_ci                            al,
3554b8021494Sopenharmony_ci                            "hi r7 r4 r10 LSR r6",
3555b8021494Sopenharmony_ci                            "hi_r7_r4_r10_LSR_r6"},
3556b8021494Sopenharmony_ci                           {{cc, r6, r8, r13, LSR, r3},
3557b8021494Sopenharmony_ci                            false,
3558b8021494Sopenharmony_ci                            al,
3559b8021494Sopenharmony_ci                            "cc r6 r8 r13 LSR r3",
3560b8021494Sopenharmony_ci                            "cc_r6_r8_r13_LSR_r3"},
3561b8021494Sopenharmony_ci                           {{cs, r4, r9, r6, ASR, r0},
3562b8021494Sopenharmony_ci                            false,
3563b8021494Sopenharmony_ci                            al,
3564b8021494Sopenharmony_ci                            "cs r4 r9 r6 ASR r0",
3565b8021494Sopenharmony_ci                            "cs_r4_r9_r6_ASR_r0"},
3566b8021494Sopenharmony_ci                           {{ls, r0, r2, r4, ASR, r8},
3567b8021494Sopenharmony_ci                            false,
3568b8021494Sopenharmony_ci                            al,
3569b8021494Sopenharmony_ci                            "ls r0 r2 r4 ASR r8",
3570b8021494Sopenharmony_ci                            "ls_r0_r2_r4_ASR_r8"},
3571b8021494Sopenharmony_ci                           {{hi, r11, r5, r11, LSR, r1},
3572b8021494Sopenharmony_ci                            false,
3573b8021494Sopenharmony_ci                            al,
3574b8021494Sopenharmony_ci                            "hi r11 r5 r11 LSR r1",
3575b8021494Sopenharmony_ci                            "hi_r11_r5_r11_LSR_r1"},
3576b8021494Sopenharmony_ci                           {{vc, r0, r3, r6, LSR, r7},
3577b8021494Sopenharmony_ci                            false,
3578b8021494Sopenharmony_ci                            al,
3579b8021494Sopenharmony_ci                            "vc r0 r3 r6 LSR r7",
3580b8021494Sopenharmony_ci                            "vc_r0_r3_r6_LSR_r7"},
3581b8021494Sopenharmony_ci                           {{cs, r13, r10, r8, LSL, r6},
3582b8021494Sopenharmony_ci                            false,
3583b8021494Sopenharmony_ci                            al,
3584b8021494Sopenharmony_ci                            "cs r13 r10 r8 LSL r6",
3585b8021494Sopenharmony_ci                            "cs_r13_r10_r8_LSL_r6"},
3586b8021494Sopenharmony_ci                           {{al, r12, r12, r10, ASR, r13},
3587b8021494Sopenharmony_ci                            false,
3588b8021494Sopenharmony_ci                            al,
3589b8021494Sopenharmony_ci                            "al r12 r12 r10 ASR r13",
3590b8021494Sopenharmony_ci                            "al_r12_r12_r10_ASR_r13"},
3591b8021494Sopenharmony_ci                           {{ge, r7, r7, r2, ASR, r8},
3592b8021494Sopenharmony_ci                            false,
3593b8021494Sopenharmony_ci                            al,
3594b8021494Sopenharmony_ci                            "ge r7 r7 r2 ASR r8",
3595b8021494Sopenharmony_ci                            "ge_r7_r7_r2_ASR_r8"},
3596b8021494Sopenharmony_ci                           {{ne, r10, r7, r6, LSL, r14},
3597b8021494Sopenharmony_ci                            false,
3598b8021494Sopenharmony_ci                            al,
3599b8021494Sopenharmony_ci                            "ne r10 r7 r6 LSL r14",
3600b8021494Sopenharmony_ci                            "ne_r10_r7_r6_LSL_r14"},
3601b8021494Sopenharmony_ci                           {{cs, r9, r9, r14, ROR, r0},
3602b8021494Sopenharmony_ci                            false,
3603b8021494Sopenharmony_ci                            al,
3604b8021494Sopenharmony_ci                            "cs r9 r9 r14 ROR r0",
3605b8021494Sopenharmony_ci                            "cs_r9_r9_r14_ROR_r0"},
3606b8021494Sopenharmony_ci                           {{lt, r3, r12, r0, ASR, r12},
3607b8021494Sopenharmony_ci                            false,
3608b8021494Sopenharmony_ci                            al,
3609b8021494Sopenharmony_ci                            "lt r3 r12 r0 ASR r12",
3610b8021494Sopenharmony_ci                            "lt_r3_r12_r0_ASR_r12"},
3611b8021494Sopenharmony_ci                           {{ne, r6, r9, r3, ASR, r11},
3612b8021494Sopenharmony_ci                            false,
3613b8021494Sopenharmony_ci                            al,
3614b8021494Sopenharmony_ci                            "ne r6 r9 r3 ASR r11",
3615b8021494Sopenharmony_ci                            "ne_r6_r9_r3_ASR_r11"},
3616b8021494Sopenharmony_ci                           {{vc, r4, r7, r7, ASR, r7},
3617b8021494Sopenharmony_ci                            false,
3618b8021494Sopenharmony_ci                            al,
3619b8021494Sopenharmony_ci                            "vc r4 r7 r7 ASR r7",
3620b8021494Sopenharmony_ci                            "vc_r4_r7_r7_ASR_r7"},
3621b8021494Sopenharmony_ci                           {{ne, r0, r9, r5, LSR, r14},
3622b8021494Sopenharmony_ci                            false,
3623b8021494Sopenharmony_ci                            al,
3624b8021494Sopenharmony_ci                            "ne r0 r9 r5 LSR r14",
3625b8021494Sopenharmony_ci                            "ne_r0_r9_r5_LSR_r14"},
3626b8021494Sopenharmony_ci                           {{hi, r8, r13, r1, ROR, r0},
3627b8021494Sopenharmony_ci                            false,
3628b8021494Sopenharmony_ci                            al,
3629b8021494Sopenharmony_ci                            "hi r8 r13 r1 ROR r0",
3630b8021494Sopenharmony_ci                            "hi_r8_r13_r1_ROR_r0"},
3631b8021494Sopenharmony_ci                           {{cc, r6, r1, r7, ROR, r5},
3632b8021494Sopenharmony_ci                            false,
3633b8021494Sopenharmony_ci                            al,
3634b8021494Sopenharmony_ci                            "cc r6 r1 r7 ROR r5",
3635b8021494Sopenharmony_ci                            "cc_r6_r1_r7_ROR_r5"},
3636b8021494Sopenharmony_ci                           {{vc, r7, r13, r2, LSL, r4},
3637b8021494Sopenharmony_ci                            false,
3638b8021494Sopenharmony_ci                            al,
3639b8021494Sopenharmony_ci                            "vc r7 r13 r2 LSL r4",
3640b8021494Sopenharmony_ci                            "vc_r7_r13_r2_LSL_r4"},
3641b8021494Sopenharmony_ci                           {{al, r4, r2, r3, ROR, r10},
3642b8021494Sopenharmony_ci                            false,
3643b8021494Sopenharmony_ci                            al,
3644b8021494Sopenharmony_ci                            "al r4 r2 r3 ROR r10",
3645b8021494Sopenharmony_ci                            "al_r4_r2_r3_ROR_r10"},
3646b8021494Sopenharmony_ci                           {{ls, r0, r7, r3, LSR, r12},
3647b8021494Sopenharmony_ci                            false,
3648b8021494Sopenharmony_ci                            al,
3649b8021494Sopenharmony_ci                            "ls r0 r7 r3 LSR r12",
3650b8021494Sopenharmony_ci                            "ls_r0_r7_r3_LSR_r12"},
3651b8021494Sopenharmony_ci                           {{ls, r5, r8, r8, ASR, r13},
3652b8021494Sopenharmony_ci                            false,
3653b8021494Sopenharmony_ci                            al,
3654b8021494Sopenharmony_ci                            "ls r5 r8 r8 ASR r13",
3655b8021494Sopenharmony_ci                            "ls_r5_r8_r8_ASR_r13"},
3656b8021494Sopenharmony_ci                           {{gt, r0, r6, r12, ASR, r14},
3657b8021494Sopenharmony_ci                            false,
3658b8021494Sopenharmony_ci                            al,
3659b8021494Sopenharmony_ci                            "gt r0 r6 r12 ASR r14",
3660b8021494Sopenharmony_ci                            "gt_r0_r6_r12_ASR_r14"},
3661b8021494Sopenharmony_ci                           {{vs, r7, r13, r14, LSR, r11},
3662b8021494Sopenharmony_ci                            false,
3663b8021494Sopenharmony_ci                            al,
3664b8021494Sopenharmony_ci                            "vs r7 r13 r14 LSR r11",
3665b8021494Sopenharmony_ci                            "vs_r7_r13_r14_LSR_r11"},
3666b8021494Sopenharmony_ci                           {{mi, r12, r9, r11, LSL, r13},
3667b8021494Sopenharmony_ci                            false,
3668b8021494Sopenharmony_ci                            al,
3669b8021494Sopenharmony_ci                            "mi r12 r9 r11 LSL r13",
3670b8021494Sopenharmony_ci                            "mi_r12_r9_r11_LSL_r13"},
3671b8021494Sopenharmony_ci                           {{ge, r0, r0, r7, ROR, r13},
3672b8021494Sopenharmony_ci                            false,
3673b8021494Sopenharmony_ci                            al,
3674b8021494Sopenharmony_ci                            "ge r0 r0 r7 ROR r13",
3675b8021494Sopenharmony_ci                            "ge_r0_r0_r7_ROR_r13"},
3676b8021494Sopenharmony_ci                           {{hi, r14, r12, r6, LSR, r8},
3677b8021494Sopenharmony_ci                            false,
3678b8021494Sopenharmony_ci                            al,
3679b8021494Sopenharmony_ci                            "hi r14 r12 r6 LSR r8",
3680b8021494Sopenharmony_ci                            "hi_r14_r12_r6_LSR_r8"},
3681b8021494Sopenharmony_ci                           {{cs, r0, r3, r6, LSL, r6},
3682b8021494Sopenharmony_ci                            false,
3683b8021494Sopenharmony_ci                            al,
3684b8021494Sopenharmony_ci                            "cs r0 r3 r6 LSL r6",
3685b8021494Sopenharmony_ci                            "cs_r0_r3_r6_LSL_r6"},
3686b8021494Sopenharmony_ci                           {{al, r6, r9, r4, ASR, r3},
3687b8021494Sopenharmony_ci                            false,
3688b8021494Sopenharmony_ci                            al,
3689b8021494Sopenharmony_ci                            "al r6 r9 r4 ASR r3",
3690b8021494Sopenharmony_ci                            "al_r6_r9_r4_ASR_r3"},
3691b8021494Sopenharmony_ci                           {{ls, r5, r6, r1, LSR, r3},
3692b8021494Sopenharmony_ci                            false,
3693b8021494Sopenharmony_ci                            al,
3694b8021494Sopenharmony_ci                            "ls r5 r6 r1 LSR r3",
3695b8021494Sopenharmony_ci                            "ls_r5_r6_r1_LSR_r3"},
3696b8021494Sopenharmony_ci                           {{ls, r3, r6, r14, ROR, r7},
3697b8021494Sopenharmony_ci                            false,
3698b8021494Sopenharmony_ci                            al,
3699b8021494Sopenharmony_ci                            "ls r3 r6 r14 ROR r7",
3700b8021494Sopenharmony_ci                            "ls_r3_r6_r14_ROR_r7"},
3701b8021494Sopenharmony_ci                           {{le, r10, r5, r1, ASR, r12},
3702b8021494Sopenharmony_ci                            false,
3703b8021494Sopenharmony_ci                            al,
3704b8021494Sopenharmony_ci                            "le r10 r5 r1 ASR r12",
3705b8021494Sopenharmony_ci                            "le_r10_r5_r1_ASR_r12"},
3706b8021494Sopenharmony_ci                           {{hi, r3, r6, r10, ASR, r5},
3707b8021494Sopenharmony_ci                            false,
3708b8021494Sopenharmony_ci                            al,
3709b8021494Sopenharmony_ci                            "hi r3 r6 r10 ASR r5",
3710b8021494Sopenharmony_ci                            "hi_r3_r6_r10_ASR_r5"},
3711b8021494Sopenharmony_ci                           {{mi, r9, r3, r5, ROR, r8},
3712b8021494Sopenharmony_ci                            false,
3713b8021494Sopenharmony_ci                            al,
3714b8021494Sopenharmony_ci                            "mi r9 r3 r5 ROR r8",
3715b8021494Sopenharmony_ci                            "mi_r9_r3_r5_ROR_r8"},
3716b8021494Sopenharmony_ci                           {{hi, r10, r13, r8, ROR, r11},
3717b8021494Sopenharmony_ci                            false,
3718b8021494Sopenharmony_ci                            al,
3719b8021494Sopenharmony_ci                            "hi r10 r13 r8 ROR r11",
3720b8021494Sopenharmony_ci                            "hi_r10_r13_r8_ROR_r11"},
3721b8021494Sopenharmony_ci                           {{al, r11, r14, r2, ROR, r1},
3722b8021494Sopenharmony_ci                            false,
3723b8021494Sopenharmony_ci                            al,
3724b8021494Sopenharmony_ci                            "al r11 r14 r2 ROR r1",
3725b8021494Sopenharmony_ci                            "al_r11_r14_r2_ROR_r1"},
3726b8021494Sopenharmony_ci                           {{gt, r12, r8, r0, ROR, r11},
3727b8021494Sopenharmony_ci                            false,
3728b8021494Sopenharmony_ci                            al,
3729b8021494Sopenharmony_ci                            "gt r12 r8 r0 ROR r11",
3730b8021494Sopenharmony_ci                            "gt_r12_r8_r0_ROR_r11"},
3731b8021494Sopenharmony_ci                           {{vc, r1, r0, r1, ROR, r9},
3732b8021494Sopenharmony_ci                            false,
3733b8021494Sopenharmony_ci                            al,
3734b8021494Sopenharmony_ci                            "vc r1 r0 r1 ROR r9",
3735b8021494Sopenharmony_ci                            "vc_r1_r0_r1_ROR_r9"},
3736b8021494Sopenharmony_ci                           {{mi, r6, r6, r3, ASR, r5},
3737b8021494Sopenharmony_ci                            false,
3738b8021494Sopenharmony_ci                            al,
3739b8021494Sopenharmony_ci                            "mi r6 r6 r3 ASR r5",
3740b8021494Sopenharmony_ci                            "mi_r6_r6_r3_ASR_r5"},
3741b8021494Sopenharmony_ci                           {{ge, r12, r12, r4, ROR, r9},
3742b8021494Sopenharmony_ci                            false,
3743b8021494Sopenharmony_ci                            al,
3744b8021494Sopenharmony_ci                            "ge r12 r12 r4 ROR r9",
3745b8021494Sopenharmony_ci                            "ge_r12_r12_r4_ROR_r9"},
3746b8021494Sopenharmony_ci                           {{ls, r4, r6, r9, ASR, r6},
3747b8021494Sopenharmony_ci                            false,
3748b8021494Sopenharmony_ci                            al,
3749b8021494Sopenharmony_ci                            "ls r4 r6 r9 ASR r6",
3750b8021494Sopenharmony_ci                            "ls_r4_r6_r9_ASR_r6"},
3751b8021494Sopenharmony_ci                           {{pl, r11, r3, r4, LSR, r9},
3752b8021494Sopenharmony_ci                            false,
3753b8021494Sopenharmony_ci                            al,
3754b8021494Sopenharmony_ci                            "pl r11 r3 r4 LSR r9",
3755b8021494Sopenharmony_ci                            "pl_r11_r3_r4_LSR_r9"},
3756b8021494Sopenharmony_ci                           {{hi, r0, r2, r2, ROR, r7},
3757b8021494Sopenharmony_ci                            false,
3758b8021494Sopenharmony_ci                            al,
3759b8021494Sopenharmony_ci                            "hi r0 r2 r2 ROR r7",
3760b8021494Sopenharmony_ci                            "hi_r0_r2_r2_ROR_r7"},
3761b8021494Sopenharmony_ci                           {{pl, r3, r12, r0, ASR, r2},
3762b8021494Sopenharmony_ci                            false,
3763b8021494Sopenharmony_ci                            al,
3764b8021494Sopenharmony_ci                            "pl r3 r12 r0 ASR r2",
3765b8021494Sopenharmony_ci                            "pl_r3_r12_r0_ASR_r2"},
3766b8021494Sopenharmony_ci                           {{ne, r6, r0, r9, LSL, r4},
3767b8021494Sopenharmony_ci                            false,
3768b8021494Sopenharmony_ci                            al,
3769b8021494Sopenharmony_ci                            "ne r6 r0 r9 LSL r4",
3770b8021494Sopenharmony_ci                            "ne_r6_r0_r9_LSL_r4"},
3771b8021494Sopenharmony_ci                           {{vc, r1, r2, r6, ROR, r13},
3772b8021494Sopenharmony_ci                            false,
3773b8021494Sopenharmony_ci                            al,
3774b8021494Sopenharmony_ci                            "vc r1 r2 r6 ROR r13",
3775b8021494Sopenharmony_ci                            "vc_r1_r2_r6_ROR_r13"},
3776b8021494Sopenharmony_ci                           {{ge, r9, r1, r12, LSL, r14},
3777b8021494Sopenharmony_ci                            false,
3778b8021494Sopenharmony_ci                            al,
3779b8021494Sopenharmony_ci                            "ge r9 r1 r12 LSL r14",
3780b8021494Sopenharmony_ci                            "ge_r9_r1_r12_LSL_r14"},
3781b8021494Sopenharmony_ci                           {{pl, r13, r9, r6, ROR, r14},
3782b8021494Sopenharmony_ci                            false,
3783b8021494Sopenharmony_ci                            al,
3784b8021494Sopenharmony_ci                            "pl r13 r9 r6 ROR r14",
3785b8021494Sopenharmony_ci                            "pl_r13_r9_r6_ROR_r14"},
3786b8021494Sopenharmony_ci                           {{gt, r0, r13, r13, LSL, r9},
3787b8021494Sopenharmony_ci                            false,
3788b8021494Sopenharmony_ci                            al,
3789b8021494Sopenharmony_ci                            "gt r0 r13 r13 LSL r9",
3790b8021494Sopenharmony_ci                            "gt_r0_r13_r13_LSL_r9"},
3791b8021494Sopenharmony_ci                           {{mi, r13, r5, r5, ASR, r8},
3792b8021494Sopenharmony_ci                            false,
3793b8021494Sopenharmony_ci                            al,
3794b8021494Sopenharmony_ci                            "mi r13 r5 r5 ASR r8",
3795b8021494Sopenharmony_ci                            "mi_r13_r5_r5_ASR_r8"},
3796b8021494Sopenharmony_ci                           {{gt, r1, r4, r0, LSL, r6},
3797b8021494Sopenharmony_ci                            false,
3798b8021494Sopenharmony_ci                            al,
3799b8021494Sopenharmony_ci                            "gt r1 r4 r0 LSL r6",
3800b8021494Sopenharmony_ci                            "gt_r1_r4_r0_LSL_r6"},
3801b8021494Sopenharmony_ci                           {{ls, r5, r4, r7, ROR, r4},
3802b8021494Sopenharmony_ci                            false,
3803b8021494Sopenharmony_ci                            al,
3804b8021494Sopenharmony_ci                            "ls r5 r4 r7 ROR r4",
3805b8021494Sopenharmony_ci                            "ls_r5_r4_r7_ROR_r4"},
3806b8021494Sopenharmony_ci                           {{vc, r8, r8, r0, ROR, r9},
3807b8021494Sopenharmony_ci                            false,
3808b8021494Sopenharmony_ci                            al,
3809b8021494Sopenharmony_ci                            "vc r8 r8 r0 ROR r9",
3810b8021494Sopenharmony_ci                            "vc_r8_r8_r0_ROR_r9"},
3811b8021494Sopenharmony_ci                           {{mi, r12, r12, r10, ROR, r8},
3812b8021494Sopenharmony_ci                            false,
3813b8021494Sopenharmony_ci                            al,
3814b8021494Sopenharmony_ci                            "mi r12 r12 r10 ROR r8",
3815b8021494Sopenharmony_ci                            "mi_r12_r12_r10_ROR_r8"},
3816b8021494Sopenharmony_ci                           {{hi, r6, r6, r6, LSL, r2},
3817b8021494Sopenharmony_ci                            false,
3818b8021494Sopenharmony_ci                            al,
3819b8021494Sopenharmony_ci                            "hi r6 r6 r6 LSL r2",
3820b8021494Sopenharmony_ci                            "hi_r6_r6_r6_LSL_r2"},
3821b8021494Sopenharmony_ci                           {{le, r7, r10, r14, LSL, r1},
3822b8021494Sopenharmony_ci                            false,
3823b8021494Sopenharmony_ci                            al,
3824b8021494Sopenharmony_ci                            "le r7 r10 r14 LSL r1",
3825b8021494Sopenharmony_ci                            "le_r7_r10_r14_LSL_r1"},
3826b8021494Sopenharmony_ci                           {{ne, r13, r10, r6, ASR, r9},
3827b8021494Sopenharmony_ci                            false,
3828b8021494Sopenharmony_ci                            al,
3829b8021494Sopenharmony_ci                            "ne r13 r10 r6 ASR r9",
3830b8021494Sopenharmony_ci                            "ne_r13_r10_r6_ASR_r9"},
3831b8021494Sopenharmony_ci                           {{ne, r8, r8, r2, LSR, r13},
3832b8021494Sopenharmony_ci                            false,
3833b8021494Sopenharmony_ci                            al,
3834b8021494Sopenharmony_ci                            "ne r8 r8 r2 LSR r13",
3835b8021494Sopenharmony_ci                            "ne_r8_r8_r2_LSR_r13"},
3836b8021494Sopenharmony_ci                           {{mi, r0, r10, r14, ROR, r12},
3837b8021494Sopenharmony_ci                            false,
3838b8021494Sopenharmony_ci                            al,
3839b8021494Sopenharmony_ci                            "mi r0 r10 r14 ROR r12",
3840b8021494Sopenharmony_ci                            "mi_r0_r10_r14_ROR_r12"},
3841b8021494Sopenharmony_ci                           {{cc, r11, r14, r4, LSL, r5},
3842b8021494Sopenharmony_ci                            false,
3843b8021494Sopenharmony_ci                            al,
3844b8021494Sopenharmony_ci                            "cc r11 r14 r4 LSL r5",
3845b8021494Sopenharmony_ci                            "cc_r11_r14_r4_LSL_r5"},
3846b8021494Sopenharmony_ci                           {{cc, r3, r6, r3, ROR, r4},
3847b8021494Sopenharmony_ci                            false,
3848b8021494Sopenharmony_ci                            al,
3849b8021494Sopenharmony_ci                            "cc r3 r6 r3 ROR r4",
3850b8021494Sopenharmony_ci                            "cc_r3_r6_r3_ROR_r4"},
3851b8021494Sopenharmony_ci                           {{mi, r11, r1, r7, LSR, r7},
3852b8021494Sopenharmony_ci                            false,
3853b8021494Sopenharmony_ci                            al,
3854b8021494Sopenharmony_ci                            "mi r11 r1 r7 LSR r7",
3855b8021494Sopenharmony_ci                            "mi_r11_r1_r7_LSR_r7"},
3856b8021494Sopenharmony_ci                           {{vs, r12, r2, r2, LSL, r12},
3857b8021494Sopenharmony_ci                            false,
3858b8021494Sopenharmony_ci                            al,
3859b8021494Sopenharmony_ci                            "vs r12 r2 r2 LSL r12",
3860b8021494Sopenharmony_ci                            "vs_r12_r2_r2_LSL_r12"},
3861b8021494Sopenharmony_ci                           {{pl, r2, r2, r6, LSR, r0},
3862b8021494Sopenharmony_ci                            false,
3863b8021494Sopenharmony_ci                            al,
3864b8021494Sopenharmony_ci                            "pl r2 r2 r6 LSR r0",
3865b8021494Sopenharmony_ci                            "pl_r2_r2_r6_LSR_r0"},
3866b8021494Sopenharmony_ci                           {{gt, r11, r12, r7, LSR, r12},
3867b8021494Sopenharmony_ci                            false,
3868b8021494Sopenharmony_ci                            al,
3869b8021494Sopenharmony_ci                            "gt r11 r12 r7 LSR r12",
3870b8021494Sopenharmony_ci                            "gt_r11_r12_r7_LSR_r12"},
3871b8021494Sopenharmony_ci                           {{al, r13, r4, r4, ASR, r12},
3872b8021494Sopenharmony_ci                            false,
3873b8021494Sopenharmony_ci                            al,
3874b8021494Sopenharmony_ci                            "al r13 r4 r4 ASR r12",
3875b8021494Sopenharmony_ci                            "al_r13_r4_r4_ASR_r12"},
3876b8021494Sopenharmony_ci                           {{le, r9, r1, r9, ROR, r1},
3877b8021494Sopenharmony_ci                            false,
3878b8021494Sopenharmony_ci                            al,
3879b8021494Sopenharmony_ci                            "le r9 r1 r9 ROR r1",
3880b8021494Sopenharmony_ci                            "le_r9_r1_r9_ROR_r1"},
3881b8021494Sopenharmony_ci                           {{le, r1, r12, r8, ASR, r14},
3882b8021494Sopenharmony_ci                            false,
3883b8021494Sopenharmony_ci                            al,
3884b8021494Sopenharmony_ci                            "le r1 r12 r8 ASR r14",
3885b8021494Sopenharmony_ci                            "le_r1_r12_r8_ASR_r14"},
3886b8021494Sopenharmony_ci                           {{cs, r1, r0, r7, ROR, r13},
3887b8021494Sopenharmony_ci                            false,
3888b8021494Sopenharmony_ci                            al,
3889b8021494Sopenharmony_ci                            "cs r1 r0 r7 ROR r13",
3890b8021494Sopenharmony_ci                            "cs_r1_r0_r7_ROR_r13"},
3891b8021494Sopenharmony_ci                           {{le, r0, r7, r7, ROR, r5},
3892b8021494Sopenharmony_ci                            false,
3893b8021494Sopenharmony_ci                            al,
3894b8021494Sopenharmony_ci                            "le r0 r7 r7 ROR r5",
3895b8021494Sopenharmony_ci                            "le_r0_r7_r7_ROR_r5"},
3896b8021494Sopenharmony_ci                           {{hi, r6, r5, r7, ROR, r4},
3897b8021494Sopenharmony_ci                            false,
3898b8021494Sopenharmony_ci                            al,
3899b8021494Sopenharmony_ci                            "hi r6 r5 r7 ROR r4",
3900b8021494Sopenharmony_ci                            "hi_r6_r5_r7_ROR_r4"},
3901b8021494Sopenharmony_ci                           {{eq, r6, r14, r13, ASR, r1},
3902b8021494Sopenharmony_ci                            false,
3903b8021494Sopenharmony_ci                            al,
3904b8021494Sopenharmony_ci                            "eq r6 r14 r13 ASR r1",
3905b8021494Sopenharmony_ci                            "eq_r6_r14_r13_ASR_r1"},
3906b8021494Sopenharmony_ci                           {{lt, r1, r14, r13, LSR, r13},
3907b8021494Sopenharmony_ci                            false,
3908b8021494Sopenharmony_ci                            al,
3909b8021494Sopenharmony_ci                            "lt r1 r14 r13 LSR r13",
3910b8021494Sopenharmony_ci                            "lt_r1_r14_r13_LSR_r13"},
3911b8021494Sopenharmony_ci                           {{vs, r13, r1, r2, ROR, r6},
3912b8021494Sopenharmony_ci                            false,
3913b8021494Sopenharmony_ci                            al,
3914b8021494Sopenharmony_ci                            "vs r13 r1 r2 ROR r6",
3915b8021494Sopenharmony_ci                            "vs_r13_r1_r2_ROR_r6"},
3916b8021494Sopenharmony_ci                           {{gt, r11, r7, r8, ASR, r3},
3917b8021494Sopenharmony_ci                            false,
3918b8021494Sopenharmony_ci                            al,
3919b8021494Sopenharmony_ci                            "gt r11 r7 r8 ASR r3",
3920b8021494Sopenharmony_ci                            "gt_r11_r7_r8_ASR_r3"},
3921b8021494Sopenharmony_ci                           {{hi, r9, r5, r8, ASR, r8},
3922b8021494Sopenharmony_ci                            false,
3923b8021494Sopenharmony_ci                            al,
3924b8021494Sopenharmony_ci                            "hi r9 r5 r8 ASR r8",
3925b8021494Sopenharmony_ci                            "hi_r9_r5_r8_ASR_r8"},
3926b8021494Sopenharmony_ci                           {{lt, r10, r9, r5, LSL, r8},
3927b8021494Sopenharmony_ci                            false,
3928b8021494Sopenharmony_ci                            al,
3929b8021494Sopenharmony_ci                            "lt r10 r9 r5 LSL r8",
3930b8021494Sopenharmony_ci                            "lt_r10_r9_r5_LSL_r8"},
3931b8021494Sopenharmony_ci                           {{vs, r6, r1, r2, LSL, r4},
3932b8021494Sopenharmony_ci                            false,
3933b8021494Sopenharmony_ci                            al,
3934b8021494Sopenharmony_ci                            "vs r6 r1 r2 LSL r4",
3935b8021494Sopenharmony_ci                            "vs_r6_r1_r2_LSL_r4"},
3936b8021494Sopenharmony_ci                           {{pl, r13, r4, r10, LSR, r12},
3937b8021494Sopenharmony_ci                            false,
3938b8021494Sopenharmony_ci                            al,
3939b8021494Sopenharmony_ci                            "pl r13 r4 r10 LSR r12",
3940b8021494Sopenharmony_ci                            "pl_r13_r4_r10_LSR_r12"},
3941b8021494Sopenharmony_ci                           {{cs, r9, r8, r8, LSL, r6},
3942b8021494Sopenharmony_ci                            false,
3943b8021494Sopenharmony_ci                            al,
3944b8021494Sopenharmony_ci                            "cs r9 r8 r8 LSL r6",
3945b8021494Sopenharmony_ci                            "cs_r9_r8_r8_LSL_r6"},
3946b8021494Sopenharmony_ci                           {{ne, r1, r7, r0, ASR, r2},
3947b8021494Sopenharmony_ci                            false,
3948b8021494Sopenharmony_ci                            al,
3949b8021494Sopenharmony_ci                            "ne r1 r7 r0 ASR r2",
3950b8021494Sopenharmony_ci                            "ne_r1_r7_r0_ASR_r2"},
3951b8021494Sopenharmony_ci                           {{cc, r6, r3, r9, ASR, r3},
3952b8021494Sopenharmony_ci                            false,
3953b8021494Sopenharmony_ci                            al,
3954b8021494Sopenharmony_ci                            "cc r6 r3 r9 ASR r3",
3955b8021494Sopenharmony_ci                            "cc_r6_r3_r9_ASR_r3"},
3956b8021494Sopenharmony_ci                           {{hi, r13, r14, r7, ROR, r13},
3957b8021494Sopenharmony_ci                            false,
3958b8021494Sopenharmony_ci                            al,
3959b8021494Sopenharmony_ci                            "hi r13 r14 r7 ROR r13",
3960b8021494Sopenharmony_ci                            "hi_r13_r14_r7_ROR_r13"},
3961b8021494Sopenharmony_ci                           {{vc, r7, r11, r0, LSR, r8},
3962b8021494Sopenharmony_ci                            false,
3963b8021494Sopenharmony_ci                            al,
3964b8021494Sopenharmony_ci                            "vc r7 r11 r0 LSR r8",
3965b8021494Sopenharmony_ci                            "vc_r7_r11_r0_LSR_r8"},
3966b8021494Sopenharmony_ci                           {{al, r3, r2, r7, LSL, r12},
3967b8021494Sopenharmony_ci                            false,
3968b8021494Sopenharmony_ci                            al,
3969b8021494Sopenharmony_ci                            "al r3 r2 r7 LSL r12",
3970b8021494Sopenharmony_ci                            "al_r3_r2_r7_LSL_r12"},
3971b8021494Sopenharmony_ci                           {{lt, r0, r5, r5, LSR, r1},
3972b8021494Sopenharmony_ci                            false,
3973b8021494Sopenharmony_ci                            al,
3974b8021494Sopenharmony_ci                            "lt r0 r5 r5 LSR r1",
3975b8021494Sopenharmony_ci                            "lt_r0_r5_r5_LSR_r1"},
3976b8021494Sopenharmony_ci                           {{ge, r10, r10, r4, ROR, r11},
3977b8021494Sopenharmony_ci                            false,
3978b8021494Sopenharmony_ci                            al,
3979b8021494Sopenharmony_ci                            "ge r10 r10 r4 ROR r11",
3980b8021494Sopenharmony_ci                            "ge_r10_r10_r4_ROR_r11"},
3981b8021494Sopenharmony_ci                           {{ne, r13, r9, r1, ROR, r12},
3982b8021494Sopenharmony_ci                            false,
3983b8021494Sopenharmony_ci                            al,
3984b8021494Sopenharmony_ci                            "ne r13 r9 r1 ROR r12",
3985b8021494Sopenharmony_ci                            "ne_r13_r9_r1_ROR_r12"},
3986b8021494Sopenharmony_ci                           {{eq, r6, r6, r2, ROR, r3},
3987b8021494Sopenharmony_ci                            false,
3988b8021494Sopenharmony_ci                            al,
3989b8021494Sopenharmony_ci                            "eq r6 r6 r2 ROR r3",
3990b8021494Sopenharmony_ci                            "eq_r6_r6_r2_ROR_r3"},
3991b8021494Sopenharmony_ci                           {{gt, r0, r4, r1, ROR, r5},
3992b8021494Sopenharmony_ci                            false,
3993b8021494Sopenharmony_ci                            al,
3994b8021494Sopenharmony_ci                            "gt r0 r4 r1 ROR r5",
3995b8021494Sopenharmony_ci                            "gt_r0_r4_r1_ROR_r5"},
3996b8021494Sopenharmony_ci                           {{lt, r5, r8, r0, ROR, r0},
3997b8021494Sopenharmony_ci                            false,
3998b8021494Sopenharmony_ci                            al,
3999b8021494Sopenharmony_ci                            "lt r5 r8 r0 ROR r0",
4000b8021494Sopenharmony_ci                            "lt_r5_r8_r0_ROR_r0"},
4001b8021494Sopenharmony_ci                           {{cs, r5, r13, r2, LSR, r8},
4002b8021494Sopenharmony_ci                            false,
4003b8021494Sopenharmony_ci                            al,
4004b8021494Sopenharmony_ci                            "cs r5 r13 r2 LSR r8",
4005b8021494Sopenharmony_ci                            "cs_r5_r13_r2_LSR_r8"},
4006b8021494Sopenharmony_ci                           {{le, r7, r13, r2, LSL, r7},
4007b8021494Sopenharmony_ci                            false,
4008b8021494Sopenharmony_ci                            al,
4009b8021494Sopenharmony_ci                            "le r7 r13 r2 LSL r7",
4010b8021494Sopenharmony_ci                            "le_r7_r13_r2_LSL_r7"},
4011b8021494Sopenharmony_ci                           {{gt, r7, r1, r3, LSL, r1},
4012b8021494Sopenharmony_ci                            false,
4013b8021494Sopenharmony_ci                            al,
4014b8021494Sopenharmony_ci                            "gt r7 r1 r3 LSL r1",
4015b8021494Sopenharmony_ci                            "gt_r7_r1_r3_LSL_r1"},
4016b8021494Sopenharmony_ci                           {{vc, r4, r13, r10, ROR, r8},
4017b8021494Sopenharmony_ci                            false,
4018b8021494Sopenharmony_ci                            al,
4019b8021494Sopenharmony_ci                            "vc r4 r13 r10 ROR r8",
4020b8021494Sopenharmony_ci                            "vc_r4_r13_r10_ROR_r8"},
4021b8021494Sopenharmony_ci                           {{eq, r2, r8, r11, ROR, r4},
4022b8021494Sopenharmony_ci                            false,
4023b8021494Sopenharmony_ci                            al,
4024b8021494Sopenharmony_ci                            "eq r2 r8 r11 ROR r4",
4025b8021494Sopenharmony_ci                            "eq_r2_r8_r11_ROR_r4"},
4026b8021494Sopenharmony_ci                           {{le, r10, r1, r6, LSR, r9},
4027b8021494Sopenharmony_ci                            false,
4028b8021494Sopenharmony_ci                            al,
4029b8021494Sopenharmony_ci                            "le r10 r1 r6 LSR r9",
4030b8021494Sopenharmony_ci                            "le_r10_r1_r6_LSR_r9"},
4031b8021494Sopenharmony_ci                           {{ge, r5, r1, r9, ASR, r10},
4032b8021494Sopenharmony_ci                            false,
4033b8021494Sopenharmony_ci                            al,
4034b8021494Sopenharmony_ci                            "ge r5 r1 r9 ASR r10",
4035b8021494Sopenharmony_ci                            "ge_r5_r1_r9_ASR_r10"},
4036b8021494Sopenharmony_ci                           {{al, r1, r5, r5, LSR, r7},
4037b8021494Sopenharmony_ci                            false,
4038b8021494Sopenharmony_ci                            al,
4039b8021494Sopenharmony_ci                            "al r1 r5 r5 LSR r7",
4040b8021494Sopenharmony_ci                            "al_r1_r5_r5_LSR_r7"},
4041b8021494Sopenharmony_ci                           {{cs, r2, r13, r5, LSR, r8},
4042b8021494Sopenharmony_ci                            false,
4043b8021494Sopenharmony_ci                            al,
4044b8021494Sopenharmony_ci                            "cs r2 r13 r5 LSR r8",
4045b8021494Sopenharmony_ci                            "cs_r2_r13_r5_LSR_r8"},
4046b8021494Sopenharmony_ci                           {{le, r6, r6, r3, ROR, r3},
4047b8021494Sopenharmony_ci                            false,
4048b8021494Sopenharmony_ci                            al,
4049b8021494Sopenharmony_ci                            "le r6 r6 r3 ROR r3",
4050b8021494Sopenharmony_ci                            "le_r6_r6_r3_ROR_r3"},
4051b8021494Sopenharmony_ci                           {{le, r5, r1, r7, ROR, r12},
4052b8021494Sopenharmony_ci                            false,
4053b8021494Sopenharmony_ci                            al,
4054b8021494Sopenharmony_ci                            "le r5 r1 r7 ROR r12",
4055b8021494Sopenharmony_ci                            "le_r5_r1_r7_ROR_r12"},
4056b8021494Sopenharmony_ci                           {{cc, r9, r3, r9, ASR, r4},
4057b8021494Sopenharmony_ci                            false,
4058b8021494Sopenharmony_ci                            al,
4059b8021494Sopenharmony_ci                            "cc r9 r3 r9 ASR r4",
4060b8021494Sopenharmony_ci                            "cc_r9_r3_r9_ASR_r4"},
4061b8021494Sopenharmony_ci                           {{mi, r6, r2, r9, LSL, r5},
4062b8021494Sopenharmony_ci                            false,
4063b8021494Sopenharmony_ci                            al,
4064b8021494Sopenharmony_ci                            "mi r6 r2 r9 LSL r5",
4065b8021494Sopenharmony_ci                            "mi_r6_r2_r9_LSL_r5"},
4066b8021494Sopenharmony_ci                           {{cc, r5, r0, r4, ASR, r12},
4067b8021494Sopenharmony_ci                            false,
4068b8021494Sopenharmony_ci                            al,
4069b8021494Sopenharmony_ci                            "cc r5 r0 r4 ASR r12",
4070b8021494Sopenharmony_ci                            "cc_r5_r0_r4_ASR_r12"},
4071b8021494Sopenharmony_ci                           {{vc, r8, r13, r12, LSL, r11},
4072b8021494Sopenharmony_ci                            false,
4073b8021494Sopenharmony_ci                            al,
4074b8021494Sopenharmony_ci                            "vc r8 r13 r12 LSL r11",
4075b8021494Sopenharmony_ci                            "vc_r8_r13_r12_LSL_r11"},
4076b8021494Sopenharmony_ci                           {{lt, r7, r14, r9, LSR, r11},
4077b8021494Sopenharmony_ci                            false,
4078b8021494Sopenharmony_ci                            al,
4079b8021494Sopenharmony_ci                            "lt r7 r14 r9 LSR r11",
4080b8021494Sopenharmony_ci                            "lt_r7_r14_r9_LSR_r11"},
4081b8021494Sopenharmony_ci                           {{cs, r1, r5, r3, ASR, r1},
4082b8021494Sopenharmony_ci                            false,
4083b8021494Sopenharmony_ci                            al,
4084b8021494Sopenharmony_ci                            "cs r1 r5 r3 ASR r1",
4085b8021494Sopenharmony_ci                            "cs_r1_r5_r3_ASR_r1"},
4086b8021494Sopenharmony_ci                           {{lt, r14, r11, r6, ASR, r9},
4087b8021494Sopenharmony_ci                            false,
4088b8021494Sopenharmony_ci                            al,
4089b8021494Sopenharmony_ci                            "lt r14 r11 r6 ASR r9",
4090b8021494Sopenharmony_ci                            "lt_r14_r11_r6_ASR_r9"},
4091b8021494Sopenharmony_ci                           {{gt, r10, r5, r13, LSR, r3},
4092b8021494Sopenharmony_ci                            false,
4093b8021494Sopenharmony_ci                            al,
4094b8021494Sopenharmony_ci                            "gt r10 r5 r13 LSR r3",
4095b8021494Sopenharmony_ci                            "gt_r10_r5_r13_LSR_r3"},
4096b8021494Sopenharmony_ci                           {{cc, r6, r4, r12, LSL, r4},
4097b8021494Sopenharmony_ci                            false,
4098b8021494Sopenharmony_ci                            al,
4099b8021494Sopenharmony_ci                            "cc r6 r4 r12 LSL r4",
4100b8021494Sopenharmony_ci                            "cc_r6_r4_r12_LSL_r4"},
4101b8021494Sopenharmony_ci                           {{ne, r2, r12, r10, ROR, r11},
4102b8021494Sopenharmony_ci                            false,
4103b8021494Sopenharmony_ci                            al,
4104b8021494Sopenharmony_ci                            "ne r2 r12 r10 ROR r11",
4105b8021494Sopenharmony_ci                            "ne_r2_r12_r10_ROR_r11"},
4106b8021494Sopenharmony_ci                           {{eq, r8, r0, r6, ASR, r10},
4107b8021494Sopenharmony_ci                            false,
4108b8021494Sopenharmony_ci                            al,
4109b8021494Sopenharmony_ci                            "eq r8 r0 r6 ASR r10",
4110b8021494Sopenharmony_ci                            "eq_r8_r0_r6_ASR_r10"},
4111b8021494Sopenharmony_ci                           {{cc, r14, r3, r14, LSR, r7},
4112b8021494Sopenharmony_ci                            false,
4113b8021494Sopenharmony_ci                            al,
4114b8021494Sopenharmony_ci                            "cc r14 r3 r14 LSR r7",
4115b8021494Sopenharmony_ci                            "cc_r14_r3_r14_LSR_r7"},
4116b8021494Sopenharmony_ci                           {{lt, r1, r10, r1, ASR, r13},
4117b8021494Sopenharmony_ci                            false,
4118b8021494Sopenharmony_ci                            al,
4119b8021494Sopenharmony_ci                            "lt r1 r10 r1 ASR r13",
4120b8021494Sopenharmony_ci                            "lt_r1_r10_r1_ASR_r13"},
4121b8021494Sopenharmony_ci                           {{cc, r14, r3, r0, LSL, r12},
4122b8021494Sopenharmony_ci                            false,
4123b8021494Sopenharmony_ci                            al,
4124b8021494Sopenharmony_ci                            "cc r14 r3 r0 LSL r12",
4125b8021494Sopenharmony_ci                            "cc_r14_r3_r0_LSL_r12"},
4126b8021494Sopenharmony_ci                           {{vs, r8, r10, r7, LSL, r2},
4127b8021494Sopenharmony_ci                            false,
4128b8021494Sopenharmony_ci                            al,
4129b8021494Sopenharmony_ci                            "vs r8 r10 r7 LSL r2",
4130b8021494Sopenharmony_ci                            "vs_r8_r10_r7_LSL_r2"},
4131b8021494Sopenharmony_ci                           {{ls, r5, r6, r3, ASR, r2},
4132b8021494Sopenharmony_ci                            false,
4133b8021494Sopenharmony_ci                            al,
4134b8021494Sopenharmony_ci                            "ls r5 r6 r3 ASR r2",
4135b8021494Sopenharmony_ci                            "ls_r5_r6_r3_ASR_r2"},
4136b8021494Sopenharmony_ci                           {{vc, r11, r5, r13, LSL, r10},
4137b8021494Sopenharmony_ci                            false,
4138b8021494Sopenharmony_ci                            al,
4139b8021494Sopenharmony_ci                            "vc r11 r5 r13 LSL r10",
4140b8021494Sopenharmony_ci                            "vc_r11_r5_r13_LSL_r10"},
4141b8021494Sopenharmony_ci                           {{hi, r2, r10, r7, LSR, r0},
4142b8021494Sopenharmony_ci                            false,
4143b8021494Sopenharmony_ci                            al,
4144b8021494Sopenharmony_ci                            "hi r2 r10 r7 LSR r0",
4145b8021494Sopenharmony_ci                            "hi_r2_r10_r7_LSR_r0"},
4146b8021494Sopenharmony_ci                           {{ne, r5, r6, r8, ASR, r4},
4147b8021494Sopenharmony_ci                            false,
4148b8021494Sopenharmony_ci                            al,
4149b8021494Sopenharmony_ci                            "ne r5 r6 r8 ASR r4",
4150b8021494Sopenharmony_ci                            "ne_r5_r6_r8_ASR_r4"},
4151b8021494Sopenharmony_ci                           {{cs, r3, r12, r8, ASR, r5},
4152b8021494Sopenharmony_ci                            false,
4153b8021494Sopenharmony_ci                            al,
4154b8021494Sopenharmony_ci                            "cs r3 r12 r8 ASR r5",
4155b8021494Sopenharmony_ci                            "cs_r3_r12_r8_ASR_r5"},
4156b8021494Sopenharmony_ci                           {{ge, r3, r4, r4, LSR, r0},
4157b8021494Sopenharmony_ci                            false,
4158b8021494Sopenharmony_ci                            al,
4159b8021494Sopenharmony_ci                            "ge r3 r4 r4 LSR r0",
4160b8021494Sopenharmony_ci                            "ge_r3_r4_r4_LSR_r0"},
4161b8021494Sopenharmony_ci                           {{ge, r13, r13, r6, ROR, r13},
4162b8021494Sopenharmony_ci                            false,
4163b8021494Sopenharmony_ci                            al,
4164b8021494Sopenharmony_ci                            "ge r13 r13 r6 ROR r13",
4165b8021494Sopenharmony_ci                            "ge_r13_r13_r6_ROR_r13"},
4166b8021494Sopenharmony_ci                           {{eq, r4, r9, r0, LSL, r9},
4167b8021494Sopenharmony_ci                            false,
4168b8021494Sopenharmony_ci                            al,
4169b8021494Sopenharmony_ci                            "eq r4 r9 r0 LSL r9",
4170b8021494Sopenharmony_ci                            "eq_r4_r9_r0_LSL_r9"},
4171b8021494Sopenharmony_ci                           {{le, r7, r3, r1, ROR, r8},
4172b8021494Sopenharmony_ci                            false,
4173b8021494Sopenharmony_ci                            al,
4174b8021494Sopenharmony_ci                            "le r7 r3 r1 ROR r8",
4175b8021494Sopenharmony_ci                            "le_r7_r3_r1_ROR_r8"},
4176b8021494Sopenharmony_ci                           {{gt, r9, r2, r5, LSL, r4},
4177b8021494Sopenharmony_ci                            false,
4178b8021494Sopenharmony_ci                            al,
4179b8021494Sopenharmony_ci                            "gt r9 r2 r5 LSL r4",
4180b8021494Sopenharmony_ci                            "gt_r9_r2_r5_LSL_r4"},
4181b8021494Sopenharmony_ci                           {{gt, r10, r12, r9, ROR, r12},
4182b8021494Sopenharmony_ci                            false,
4183b8021494Sopenharmony_ci                            al,
4184b8021494Sopenharmony_ci                            "gt r10 r12 r9 ROR r12",
4185b8021494Sopenharmony_ci                            "gt_r10_r12_r9_ROR_r12"},
4186b8021494Sopenharmony_ci                           {{hi, r4, r9, r6, LSR, r14},
4187b8021494Sopenharmony_ci                            false,
4188b8021494Sopenharmony_ci                            al,
4189b8021494Sopenharmony_ci                            "hi r4 r9 r6 LSR r14",
4190b8021494Sopenharmony_ci                            "hi_r4_r9_r6_LSR_r14"},
4191b8021494Sopenharmony_ci                           {{pl, r1, r10, r9, LSR, r8},
4192b8021494Sopenharmony_ci                            false,
4193b8021494Sopenharmony_ci                            al,
4194b8021494Sopenharmony_ci                            "pl r1 r10 r9 LSR r8",
4195b8021494Sopenharmony_ci                            "pl_r1_r10_r9_LSR_r8"},
4196b8021494Sopenharmony_ci                           {{mi, r0, r11, r2, ROR, r13},
4197b8021494Sopenharmony_ci                            false,
4198b8021494Sopenharmony_ci                            al,
4199b8021494Sopenharmony_ci                            "mi r0 r11 r2 ROR r13",
4200b8021494Sopenharmony_ci                            "mi_r0_r11_r2_ROR_r13"},
4201b8021494Sopenharmony_ci                           {{ge, r14, r5, r4, ASR, r2},
4202b8021494Sopenharmony_ci                            false,
4203b8021494Sopenharmony_ci                            al,
4204b8021494Sopenharmony_ci                            "ge r14 r5 r4 ASR r2",
4205b8021494Sopenharmony_ci                            "ge_r14_r5_r4_ASR_r2"},
4206b8021494Sopenharmony_ci                           {{vc, r7, r8, r9, ROR, r10},
4207b8021494Sopenharmony_ci                            false,
4208b8021494Sopenharmony_ci                            al,
4209b8021494Sopenharmony_ci                            "vc r7 r8 r9 ROR r10",
4210b8021494Sopenharmony_ci                            "vc_r7_r8_r9_ROR_r10"},
4211b8021494Sopenharmony_ci                           {{cs, r3, r1, r0, ROR, r7},
4212b8021494Sopenharmony_ci                            false,
4213b8021494Sopenharmony_ci                            al,
4214b8021494Sopenharmony_ci                            "cs r3 r1 r0 ROR r7",
4215b8021494Sopenharmony_ci                            "cs_r3_r1_r0_ROR_r7"},
4216b8021494Sopenharmony_ci                           {{hi, r9, r11, r4, ASR, r14},
4217b8021494Sopenharmony_ci                            false,
4218b8021494Sopenharmony_ci                            al,
4219b8021494Sopenharmony_ci                            "hi r9 r11 r4 ASR r14",
4220b8021494Sopenharmony_ci                            "hi_r9_r11_r4_ASR_r14"},
4221b8021494Sopenharmony_ci                           {{mi, r3, r8, r6, LSR, r12},
4222b8021494Sopenharmony_ci                            false,
4223b8021494Sopenharmony_ci                            al,
4224b8021494Sopenharmony_ci                            "mi r3 r8 r6 LSR r12",
4225b8021494Sopenharmony_ci                            "mi_r3_r8_r6_LSR_r12"},
4226b8021494Sopenharmony_ci                           {{vc, r5, r5, r6, LSL, r1},
4227b8021494Sopenharmony_ci                            false,
4228b8021494Sopenharmony_ci                            al,
4229b8021494Sopenharmony_ci                            "vc r5 r5 r6 LSL r1",
4230b8021494Sopenharmony_ci                            "vc_r5_r5_r6_LSL_r1"},
4231b8021494Sopenharmony_ci                           {{mi, r4, r8, r1, ASR, r3},
4232b8021494Sopenharmony_ci                            false,
4233b8021494Sopenharmony_ci                            al,
4234b8021494Sopenharmony_ci                            "mi r4 r8 r1 ASR r3",
4235b8021494Sopenharmony_ci                            "mi_r4_r8_r1_ASR_r3"},
4236b8021494Sopenharmony_ci                           {{le, r6, r0, r0, LSL, r0},
4237b8021494Sopenharmony_ci                            false,
4238b8021494Sopenharmony_ci                            al,
4239b8021494Sopenharmony_ci                            "le r6 r0 r0 LSL r0",
4240b8021494Sopenharmony_ci                            "le_r6_r0_r0_LSL_r0"},
4241b8021494Sopenharmony_ci                           {{hi, r8, r11, r8, LSL, r14},
4242b8021494Sopenharmony_ci                            false,
4243b8021494Sopenharmony_ci                            al,
4244b8021494Sopenharmony_ci                            "hi r8 r11 r8 LSL r14",
4245b8021494Sopenharmony_ci                            "hi_r8_r11_r8_LSL_r14"},
4246b8021494Sopenharmony_ci                           {{gt, r14, r8, r12, ASR, r13},
4247b8021494Sopenharmony_ci                            false,
4248b8021494Sopenharmony_ci                            al,
4249b8021494Sopenharmony_ci                            "gt r14 r8 r12 ASR r13",
4250b8021494Sopenharmony_ci                            "gt_r14_r8_r12_ASR_r13"},
4251b8021494Sopenharmony_ci                           {{ge, r7, r7, r4, ROR, r7},
4252b8021494Sopenharmony_ci                            false,
4253b8021494Sopenharmony_ci                            al,
4254b8021494Sopenharmony_ci                            "ge r7 r7 r4 ROR r7",
4255b8021494Sopenharmony_ci                            "ge_r7_r7_r4_ROR_r7"},
4256b8021494Sopenharmony_ci                           {{eq, r11, r4, r13, LSL, r3},
4257b8021494Sopenharmony_ci                            false,
4258b8021494Sopenharmony_ci                            al,
4259b8021494Sopenharmony_ci                            "eq r11 r4 r13 LSL r3",
4260b8021494Sopenharmony_ci                            "eq_r11_r4_r13_LSL_r3"},
4261b8021494Sopenharmony_ci                           {{eq, r3, r6, r6, LSL, r10},
4262b8021494Sopenharmony_ci                            false,
4263b8021494Sopenharmony_ci                            al,
4264b8021494Sopenharmony_ci                            "eq r3 r6 r6 LSL r10",
4265b8021494Sopenharmony_ci                            "eq_r3_r6_r6_LSL_r10"},
4266b8021494Sopenharmony_ci                           {{al, r3, r10, r11, ROR, r12},
4267b8021494Sopenharmony_ci                            false,
4268b8021494Sopenharmony_ci                            al,
4269b8021494Sopenharmony_ci                            "al r3 r10 r11 ROR r12",
4270b8021494Sopenharmony_ci                            "al_r3_r10_r11_ROR_r12"},
4271b8021494Sopenharmony_ci                           {{pl, r13, r7, r8, LSL, r13},
4272b8021494Sopenharmony_ci                            false,
4273b8021494Sopenharmony_ci                            al,
4274b8021494Sopenharmony_ci                            "pl r13 r7 r8 LSL r13",
4275b8021494Sopenharmony_ci                            "pl_r13_r7_r8_LSL_r13"},
4276b8021494Sopenharmony_ci                           {{pl, r9, r2, r11, LSR, r2},
4277b8021494Sopenharmony_ci                            false,
4278b8021494Sopenharmony_ci                            al,
4279b8021494Sopenharmony_ci                            "pl r9 r2 r11 LSR r2",
4280b8021494Sopenharmony_ci                            "pl_r9_r2_r11_LSR_r2"},
4281b8021494Sopenharmony_ci                           {{al, r3, r12, r8, LSR, r2},
4282b8021494Sopenharmony_ci                            false,
4283b8021494Sopenharmony_ci                            al,
4284b8021494Sopenharmony_ci                            "al r3 r12 r8 LSR r2",
4285b8021494Sopenharmony_ci                            "al_r3_r12_r8_LSR_r2"},
4286b8021494Sopenharmony_ci                           {{ne, r4, r14, r6, ROR, r0},
4287b8021494Sopenharmony_ci                            false,
4288b8021494Sopenharmony_ci                            al,
4289b8021494Sopenharmony_ci                            "ne r4 r14 r6 ROR r0",
4290b8021494Sopenharmony_ci                            "ne_r4_r14_r6_ROR_r0"},
4291b8021494Sopenharmony_ci                           {{cs, r6, r14, r13, ASR, r3},
4292b8021494Sopenharmony_ci                            false,
4293b8021494Sopenharmony_ci                            al,
4294b8021494Sopenharmony_ci                            "cs r6 r14 r13 ASR r3",
4295b8021494Sopenharmony_ci                            "cs_r6_r14_r13_ASR_r3"},
4296b8021494Sopenharmony_ci                           {{pl, r10, r6, r8, LSR, r7},
4297b8021494Sopenharmony_ci                            false,
4298b8021494Sopenharmony_ci                            al,
4299b8021494Sopenharmony_ci                            "pl r10 r6 r8 LSR r7",
4300b8021494Sopenharmony_ci                            "pl_r10_r6_r8_LSR_r7"},
4301b8021494Sopenharmony_ci                           {{ls, r10, r1, r12, ROR, r6},
4302b8021494Sopenharmony_ci                            false,
4303b8021494Sopenharmony_ci                            al,
4304b8021494Sopenharmony_ci                            "ls r10 r1 r12 ROR r6",
4305b8021494Sopenharmony_ci                            "ls_r10_r1_r12_ROR_r6"},
4306b8021494Sopenharmony_ci                           {{eq, r12, r0, r1, LSL, r9},
4307b8021494Sopenharmony_ci                            false,
4308b8021494Sopenharmony_ci                            al,
4309b8021494Sopenharmony_ci                            "eq r12 r0 r1 LSL r9",
4310b8021494Sopenharmony_ci                            "eq_r12_r0_r1_LSL_r9"},
4311b8021494Sopenharmony_ci                           {{hi, r11, r14, r8, ROR, r6},
4312b8021494Sopenharmony_ci                            false,
4313b8021494Sopenharmony_ci                            al,
4314b8021494Sopenharmony_ci                            "hi r11 r14 r8 ROR r6",
4315b8021494Sopenharmony_ci                            "hi_r11_r14_r8_ROR_r6"},
4316b8021494Sopenharmony_ci                           {{vc, r9, r2, r5, LSL, r6},
4317b8021494Sopenharmony_ci                            false,
4318b8021494Sopenharmony_ci                            al,
4319b8021494Sopenharmony_ci                            "vc r9 r2 r5 LSL r6",
4320b8021494Sopenharmony_ci                            "vc_r9_r2_r5_LSL_r6"},
4321b8021494Sopenharmony_ci                           {{ne, r11, r8, r5, LSR, r11},
4322b8021494Sopenharmony_ci                            false,
4323b8021494Sopenharmony_ci                            al,
4324b8021494Sopenharmony_ci                            "ne r11 r8 r5 LSR r11",
4325b8021494Sopenharmony_ci                            "ne_r11_r8_r5_LSR_r11"},
4326b8021494Sopenharmony_ci                           {{mi, r1, r12, r3, ASR, r5},
4327b8021494Sopenharmony_ci                            false,
4328b8021494Sopenharmony_ci                            al,
4329b8021494Sopenharmony_ci                            "mi r1 r12 r3 ASR r5",
4330b8021494Sopenharmony_ci                            "mi_r1_r12_r3_ASR_r5"},
4331b8021494Sopenharmony_ci                           {{pl, r14, r7, r1, ASR, r12},
4332b8021494Sopenharmony_ci                            false,
4333b8021494Sopenharmony_ci                            al,
4334b8021494Sopenharmony_ci                            "pl r14 r7 r1 ASR r12",
4335b8021494Sopenharmony_ci                            "pl_r14_r7_r1_ASR_r12"},
4336b8021494Sopenharmony_ci                           {{pl, r9, r4, r1, ASR, r1},
4337b8021494Sopenharmony_ci                            false,
4338b8021494Sopenharmony_ci                            al,
4339b8021494Sopenharmony_ci                            "pl r9 r4 r1 ASR r1",
4340b8021494Sopenharmony_ci                            "pl_r9_r4_r1_ASR_r1"},
4341b8021494Sopenharmony_ci                           {{ls, r11, r0, r5, ROR, r14},
4342b8021494Sopenharmony_ci                            false,
4343b8021494Sopenharmony_ci                            al,
4344b8021494Sopenharmony_ci                            "ls r11 r0 r5 ROR r14",
4345b8021494Sopenharmony_ci                            "ls_r11_r0_r5_ROR_r14"},
4346b8021494Sopenharmony_ci                           {{lt, r13, r10, r14, ROR, r13},
4347b8021494Sopenharmony_ci                            false,
4348b8021494Sopenharmony_ci                            al,
4349b8021494Sopenharmony_ci                            "lt r13 r10 r14 ROR r13",
4350b8021494Sopenharmony_ci                            "lt_r13_r10_r14_ROR_r13"},
4351b8021494Sopenharmony_ci                           {{gt, r3, r14, r10, LSR, r4},
4352b8021494Sopenharmony_ci                            false,
4353b8021494Sopenharmony_ci                            al,
4354b8021494Sopenharmony_ci                            "gt r3 r14 r10 LSR r4",
4355b8021494Sopenharmony_ci                            "gt_r3_r14_r10_LSR_r4"},
4356b8021494Sopenharmony_ci                           {{cc, r1, r0, r5, ROR, r7},
4357b8021494Sopenharmony_ci                            false,
4358b8021494Sopenharmony_ci                            al,
4359b8021494Sopenharmony_ci                            "cc r1 r0 r5 ROR r7",
4360b8021494Sopenharmony_ci                            "cc_r1_r0_r5_ROR_r7"},
4361b8021494Sopenharmony_ci                           {{hi, r2, r14, r0, LSR, r14},
4362b8021494Sopenharmony_ci                            false,
4363b8021494Sopenharmony_ci                            al,
4364b8021494Sopenharmony_ci                            "hi r2 r14 r0 LSR r14",
4365b8021494Sopenharmony_ci                            "hi_r2_r14_r0_LSR_r14"},
4366b8021494Sopenharmony_ci                           {{pl, r3, r7, r2, ASR, r9},
4367b8021494Sopenharmony_ci                            false,
4368b8021494Sopenharmony_ci                            al,
4369b8021494Sopenharmony_ci                            "pl r3 r7 r2 ASR r9",
4370b8021494Sopenharmony_ci                            "pl_r3_r7_r2_ASR_r9"},
4371b8021494Sopenharmony_ci                           {{eq, r7, r5, r0, ROR, r6},
4372b8021494Sopenharmony_ci                            false,
4373b8021494Sopenharmony_ci                            al,
4374b8021494Sopenharmony_ci                            "eq r7 r5 r0 ROR r6",
4375b8021494Sopenharmony_ci                            "eq_r7_r5_r0_ROR_r6"},
4376b8021494Sopenharmony_ci                           {{mi, r14, r9, r14, LSR, r5},
4377b8021494Sopenharmony_ci                            false,
4378b8021494Sopenharmony_ci                            al,
4379b8021494Sopenharmony_ci                            "mi r14 r9 r14 LSR r5",
4380b8021494Sopenharmony_ci                            "mi_r14_r9_r14_LSR_r5"},
4381b8021494Sopenharmony_ci                           {{mi, r6, r1, r1, LSL, r12},
4382b8021494Sopenharmony_ci                            false,
4383b8021494Sopenharmony_ci                            al,
4384b8021494Sopenharmony_ci                            "mi r6 r1 r1 LSL r12",
4385b8021494Sopenharmony_ci                            "mi_r6_r1_r1_LSL_r12"},
4386b8021494Sopenharmony_ci                           {{ge, r12, r0, r8, LSR, r0},
4387b8021494Sopenharmony_ci                            false,
4388b8021494Sopenharmony_ci                            al,
4389b8021494Sopenharmony_ci                            "ge r12 r0 r8 LSR r0",
4390b8021494Sopenharmony_ci                            "ge_r12_r0_r8_LSR_r0"},
4391b8021494Sopenharmony_ci                           {{cc, r13, r8, r3, ROR, r7},
4392b8021494Sopenharmony_ci                            false,
4393b8021494Sopenharmony_ci                            al,
4394b8021494Sopenharmony_ci                            "cc r13 r8 r3 ROR r7",
4395b8021494Sopenharmony_ci                            "cc_r13_r8_r3_ROR_r7"},
4396b8021494Sopenharmony_ci                           {{vs, r7, r9, r4, LSL, r11},
4397b8021494Sopenharmony_ci                            false,
4398b8021494Sopenharmony_ci                            al,
4399b8021494Sopenharmony_ci                            "vs r7 r9 r4 LSL r11",
4400b8021494Sopenharmony_ci                            "vs_r7_r9_r4_LSL_r11"},
4401b8021494Sopenharmony_ci                           {{ge, r9, r10, r9, LSR, r5},
4402b8021494Sopenharmony_ci                            false,
4403b8021494Sopenharmony_ci                            al,
4404b8021494Sopenharmony_ci                            "ge r9 r10 r9 LSR r5",
4405b8021494Sopenharmony_ci                            "ge_r9_r10_r9_LSR_r5"},
4406b8021494Sopenharmony_ci                           {{ls, r5, r3, r0, LSR, r7},
4407b8021494Sopenharmony_ci                            false,
4408b8021494Sopenharmony_ci                            al,
4409b8021494Sopenharmony_ci                            "ls r5 r3 r0 LSR r7",
4410b8021494Sopenharmony_ci                            "ls_r5_r3_r0_LSR_r7"},
4411b8021494Sopenharmony_ci                           {{eq, r0, r6, r1, LSL, r11},
4412b8021494Sopenharmony_ci                            false,
4413b8021494Sopenharmony_ci                            al,
4414b8021494Sopenharmony_ci                            "eq r0 r6 r1 LSL r11",
4415b8021494Sopenharmony_ci                            "eq_r0_r6_r1_LSL_r11"},
4416b8021494Sopenharmony_ci                           {{ge, r9, r7, r0, ROR, r11},
4417b8021494Sopenharmony_ci                            false,
4418b8021494Sopenharmony_ci                            al,
4419b8021494Sopenharmony_ci                            "ge r9 r7 r0 ROR r11",
4420b8021494Sopenharmony_ci                            "ge_r9_r7_r0_ROR_r11"},
4421b8021494Sopenharmony_ci                           {{mi, r4, r2, r3, LSL, r12},
4422b8021494Sopenharmony_ci                            false,
4423b8021494Sopenharmony_ci                            al,
4424b8021494Sopenharmony_ci                            "mi r4 r2 r3 LSL r12",
4425b8021494Sopenharmony_ci                            "mi_r4_r2_r3_LSL_r12"},
4426b8021494Sopenharmony_ci                           {{hi, r7, r5, r0, ASR, r5},
4427b8021494Sopenharmony_ci                            false,
4428b8021494Sopenharmony_ci                            al,
4429b8021494Sopenharmony_ci                            "hi r7 r5 r0 ASR r5",
4430b8021494Sopenharmony_ci                            "hi_r7_r5_r0_ASR_r5"},
4431b8021494Sopenharmony_ci                           {{cc, r7, r13, r7, LSL, r14},
4432b8021494Sopenharmony_ci                            false,
4433b8021494Sopenharmony_ci                            al,
4434b8021494Sopenharmony_ci                            "cc r7 r13 r7 LSL r14",
4435b8021494Sopenharmony_ci                            "cc_r7_r13_r7_LSL_r14"},
4436b8021494Sopenharmony_ci                           {{ne, r2, r11, r2, LSL, r14},
4437b8021494Sopenharmony_ci                            false,
4438b8021494Sopenharmony_ci                            al,
4439b8021494Sopenharmony_ci                            "ne r2 r11 r2 LSL r14",
4440b8021494Sopenharmony_ci                            "ne_r2_r11_r2_LSL_r14"},
4441b8021494Sopenharmony_ci                           {{cc, r7, r5, r3, LSR, r11},
4442b8021494Sopenharmony_ci                            false,
4443b8021494Sopenharmony_ci                            al,
4444b8021494Sopenharmony_ci                            "cc r7 r5 r3 LSR r11",
4445b8021494Sopenharmony_ci                            "cc_r7_r5_r3_LSR_r11"},
4446b8021494Sopenharmony_ci                           {{ge, r12, r0, r12, ASR, r10},
4447b8021494Sopenharmony_ci                            false,
4448b8021494Sopenharmony_ci                            al,
4449b8021494Sopenharmony_ci                            "ge r12 r0 r12 ASR r10",
4450b8021494Sopenharmony_ci                            "ge_r12_r0_r12_ASR_r10"},
4451b8021494Sopenharmony_ci                           {{al, r11, r0, r2, LSR, r11},
4452b8021494Sopenharmony_ci                            false,
4453b8021494Sopenharmony_ci                            al,
4454b8021494Sopenharmony_ci                            "al r11 r0 r2 LSR r11",
4455b8021494Sopenharmony_ci                            "al_r11_r0_r2_LSR_r11"},
4456b8021494Sopenharmony_ci                           {{cc, r1, r12, r1, ROR, r1},
4457b8021494Sopenharmony_ci                            false,
4458b8021494Sopenharmony_ci                            al,
4459b8021494Sopenharmony_ci                            "cc r1 r12 r1 ROR r1",
4460b8021494Sopenharmony_ci                            "cc_r1_r12_r1_ROR_r1"},
4461b8021494Sopenharmony_ci                           {{ls, r5, r9, r6, ASR, r4},
4462b8021494Sopenharmony_ci                            false,
4463b8021494Sopenharmony_ci                            al,
4464b8021494Sopenharmony_ci                            "ls r5 r9 r6 ASR r4",
4465b8021494Sopenharmony_ci                            "ls_r5_r9_r6_ASR_r4"},
4466b8021494Sopenharmony_ci                           {{ne, r5, r13, r2, ROR, r12},
4467b8021494Sopenharmony_ci                            false,
4468b8021494Sopenharmony_ci                            al,
4469b8021494Sopenharmony_ci                            "ne r5 r13 r2 ROR r12",
4470b8021494Sopenharmony_ci                            "ne_r5_r13_r2_ROR_r12"},
4471b8021494Sopenharmony_ci                           {{ge, r9, r10, r12, ROR, r10},
4472b8021494Sopenharmony_ci                            false,
4473b8021494Sopenharmony_ci                            al,
4474b8021494Sopenharmony_ci                            "ge r9 r10 r12 ROR r10",
4475b8021494Sopenharmony_ci                            "ge_r9_r10_r12_ROR_r10"},
4476b8021494Sopenharmony_ci                           {{cc, r10, r1, r8, LSR, r12},
4477b8021494Sopenharmony_ci                            false,
4478b8021494Sopenharmony_ci                            al,
4479b8021494Sopenharmony_ci                            "cc r10 r1 r8 LSR r12",
4480b8021494Sopenharmony_ci                            "cc_r10_r1_r8_LSR_r12"},
4481b8021494Sopenharmony_ci                           {{le, r9, r6, r11, ROR, r3},
4482b8021494Sopenharmony_ci                            false,
4483b8021494Sopenharmony_ci                            al,
4484b8021494Sopenharmony_ci                            "le r9 r6 r11 ROR r3",
4485b8021494Sopenharmony_ci                            "le_r9_r6_r11_ROR_r3"},
4486b8021494Sopenharmony_ci                           {{le, r9, r9, r13, ASR, r5},
4487b8021494Sopenharmony_ci                            false,
4488b8021494Sopenharmony_ci                            al,
4489b8021494Sopenharmony_ci                            "le r9 r9 r13 ASR r5",
4490b8021494Sopenharmony_ci                            "le_r9_r9_r13_ASR_r5"},
4491b8021494Sopenharmony_ci                           {{ge, r1, r12, r11, LSL, r12},
4492b8021494Sopenharmony_ci                            false,
4493b8021494Sopenharmony_ci                            al,
4494b8021494Sopenharmony_ci                            "ge r1 r12 r11 LSL r12",
4495b8021494Sopenharmony_ci                            "ge_r1_r12_r11_LSL_r12"},
4496b8021494Sopenharmony_ci                           {{vs, r11, r4, r6, LSL, r10},
4497b8021494Sopenharmony_ci                            false,
4498b8021494Sopenharmony_ci                            al,
4499b8021494Sopenharmony_ci                            "vs r11 r4 r6 LSL r10",
4500b8021494Sopenharmony_ci                            "vs_r11_r4_r6_LSL_r10"},
4501b8021494Sopenharmony_ci                           {{vs, r3, r3, r1, ROR, r2},
4502b8021494Sopenharmony_ci                            false,
4503b8021494Sopenharmony_ci                            al,
4504b8021494Sopenharmony_ci                            "vs r3 r3 r1 ROR r2",
4505b8021494Sopenharmony_ci                            "vs_r3_r3_r1_ROR_r2"},
4506b8021494Sopenharmony_ci                           {{ne, r12, r8, r12, ASR, r11},
4507b8021494Sopenharmony_ci                            false,
4508b8021494Sopenharmony_ci                            al,
4509b8021494Sopenharmony_ci                            "ne r12 r8 r12 ASR r11",
4510b8021494Sopenharmony_ci                            "ne_r12_r8_r12_ASR_r11"},
4511b8021494Sopenharmony_ci                           {{pl, r4, r8, r1, ROR, r8},
4512b8021494Sopenharmony_ci                            false,
4513b8021494Sopenharmony_ci                            al,
4514b8021494Sopenharmony_ci                            "pl r4 r8 r1 ROR r8",
4515b8021494Sopenharmony_ci                            "pl_r4_r8_r1_ROR_r8"},
4516b8021494Sopenharmony_ci                           {{gt, r3, r11, r13, ROR, r9},
4517b8021494Sopenharmony_ci                            false,
4518b8021494Sopenharmony_ci                            al,
4519b8021494Sopenharmony_ci                            "gt r3 r11 r13 ROR r9",
4520b8021494Sopenharmony_ci                            "gt_r3_r11_r13_ROR_r9"},
4521b8021494Sopenharmony_ci                           {{pl, r6, r0, r3, LSR, r9},
4522b8021494Sopenharmony_ci                            false,
4523b8021494Sopenharmony_ci                            al,
4524b8021494Sopenharmony_ci                            "pl r6 r0 r3 LSR r9",
4525b8021494Sopenharmony_ci                            "pl_r6_r0_r3_LSR_r9"},
4526b8021494Sopenharmony_ci                           {{ne, r5, r7, r9, LSL, r10},
4527b8021494Sopenharmony_ci                            false,
4528b8021494Sopenharmony_ci                            al,
4529b8021494Sopenharmony_ci                            "ne r5 r7 r9 LSL r10",
4530b8021494Sopenharmony_ci                            "ne_r5_r7_r9_LSL_r10"},
4531b8021494Sopenharmony_ci                           {{lt, r1, r12, r12, LSR, r8},
4532b8021494Sopenharmony_ci                            false,
4533b8021494Sopenharmony_ci                            al,
4534b8021494Sopenharmony_ci                            "lt r1 r12 r12 LSR r8",
4535b8021494Sopenharmony_ci                            "lt_r1_r12_r12_LSR_r8"},
4536b8021494Sopenharmony_ci                           {{cc, r2, r0, r0, ROR, r5},
4537b8021494Sopenharmony_ci                            false,
4538b8021494Sopenharmony_ci                            al,
4539b8021494Sopenharmony_ci                            "cc r2 r0 r0 ROR r5",
4540b8021494Sopenharmony_ci                            "cc_r2_r0_r0_ROR_r5"},
4541b8021494Sopenharmony_ci                           {{vc, r7, r11, r8, LSR, r14},
4542b8021494Sopenharmony_ci                            false,
4543b8021494Sopenharmony_ci                            al,
4544b8021494Sopenharmony_ci                            "vc r7 r11 r8 LSR r14",
4545b8021494Sopenharmony_ci                            "vc_r7_r11_r8_LSR_r14"},
4546b8021494Sopenharmony_ci                           {{ge, r0, r11, r6, ROR, r10},
4547b8021494Sopenharmony_ci                            false,
4548b8021494Sopenharmony_ci                            al,
4549b8021494Sopenharmony_ci                            "ge r0 r11 r6 ROR r10",
4550b8021494Sopenharmony_ci                            "ge_r0_r11_r6_ROR_r10"},
4551b8021494Sopenharmony_ci                           {{vs, r0, r9, r1, LSR, r0},
4552b8021494Sopenharmony_ci                            false,
4553b8021494Sopenharmony_ci                            al,
4554b8021494Sopenharmony_ci                            "vs r0 r9 r1 LSR r0",
4555b8021494Sopenharmony_ci                            "vs_r0_r9_r1_LSR_r0"},
4556b8021494Sopenharmony_ci                           {{gt, r13, r7, r11, LSR, r1},
4557b8021494Sopenharmony_ci                            false,
4558b8021494Sopenharmony_ci                            al,
4559b8021494Sopenharmony_ci                            "gt r13 r7 r11 LSR r1",
4560b8021494Sopenharmony_ci                            "gt_r13_r7_r11_LSR_r1"},
4561b8021494Sopenharmony_ci                           {{eq, r9, r10, r2, ROR, r12},
4562b8021494Sopenharmony_ci                            false,
4563b8021494Sopenharmony_ci                            al,
4564b8021494Sopenharmony_ci                            "eq r9 r10 r2 ROR r12",
4565b8021494Sopenharmony_ci                            "eq_r9_r10_r2_ROR_r12"},
4566b8021494Sopenharmony_ci                           {{eq, r0, r4, r0, LSR, r3},
4567b8021494Sopenharmony_ci                            false,
4568b8021494Sopenharmony_ci                            al,
4569b8021494Sopenharmony_ci                            "eq r0 r4 r0 LSR r3",
4570b8021494Sopenharmony_ci                            "eq_r0_r4_r0_LSR_r3"},
4571b8021494Sopenharmony_ci                           {{cs, r14, r2, r9, ASR, r12},
4572b8021494Sopenharmony_ci                            false,
4573b8021494Sopenharmony_ci                            al,
4574b8021494Sopenharmony_ci                            "cs r14 r2 r9 ASR r12",
4575b8021494Sopenharmony_ci                            "cs_r14_r2_r9_ASR_r12"},
4576b8021494Sopenharmony_ci                           {{lt, r9, r4, r9, ASR, r8},
4577b8021494Sopenharmony_ci                            false,
4578b8021494Sopenharmony_ci                            al,
4579b8021494Sopenharmony_ci                            "lt r9 r4 r9 ASR r8",
4580b8021494Sopenharmony_ci                            "lt_r9_r4_r9_ASR_r8"},
4581b8021494Sopenharmony_ci                           {{vs, r6, r12, r3, LSL, r11},
4582b8021494Sopenharmony_ci                            false,
4583b8021494Sopenharmony_ci                            al,
4584b8021494Sopenharmony_ci                            "vs r6 r12 r3 LSL r11",
4585b8021494Sopenharmony_ci                            "vs_r6_r12_r3_LSL_r11"},
4586b8021494Sopenharmony_ci                           {{ge, r9, r14, r10, ROR, r0},
4587b8021494Sopenharmony_ci                            false,
4588b8021494Sopenharmony_ci                            al,
4589b8021494Sopenharmony_ci                            "ge r9 r14 r10 ROR r0",
4590b8021494Sopenharmony_ci                            "ge_r9_r14_r10_ROR_r0"},
4591b8021494Sopenharmony_ci                           {{pl, r10, r2, r5, LSL, r12},
4592b8021494Sopenharmony_ci                            false,
4593b8021494Sopenharmony_ci                            al,
4594b8021494Sopenharmony_ci                            "pl r10 r2 r5 LSL r12",
4595b8021494Sopenharmony_ci                            "pl_r10_r2_r5_LSL_r12"},
4596b8021494Sopenharmony_ci                           {{al, r8, r0, r6, ROR, r6},
4597b8021494Sopenharmony_ci                            false,
4598b8021494Sopenharmony_ci                            al,
4599b8021494Sopenharmony_ci                            "al r8 r0 r6 ROR r6",
4600b8021494Sopenharmony_ci                            "al_r8_r0_r6_ROR_r6"},
4601b8021494Sopenharmony_ci                           {{le, r9, r7, r7, LSR, r11},
4602b8021494Sopenharmony_ci                            false,
4603b8021494Sopenharmony_ci                            al,
4604b8021494Sopenharmony_ci                            "le r9 r7 r7 LSR r11",
4605b8021494Sopenharmony_ci                            "le_r9_r7_r7_LSR_r11"},
4606b8021494Sopenharmony_ci                           {{vc, r3, r4, r5, LSR, r1},
4607b8021494Sopenharmony_ci                            false,
4608b8021494Sopenharmony_ci                            al,
4609b8021494Sopenharmony_ci                            "vc r3 r4 r5 LSR r1",
4610b8021494Sopenharmony_ci                            "vc_r3_r4_r5_LSR_r1"},
4611b8021494Sopenharmony_ci                           {{cc, r13, r1, r4, LSR, r11},
4612b8021494Sopenharmony_ci                            false,
4613b8021494Sopenharmony_ci                            al,
4614b8021494Sopenharmony_ci                            "cc r13 r1 r4 LSR r11",
4615b8021494Sopenharmony_ci                            "cc_r13_r1_r4_LSR_r11"},
4616b8021494Sopenharmony_ci                           {{vc, r13, r4, r0, LSL, r10},
4617b8021494Sopenharmony_ci                            false,
4618b8021494Sopenharmony_ci                            al,
4619b8021494Sopenharmony_ci                            "vc r13 r4 r0 LSL r10",
4620b8021494Sopenharmony_ci                            "vc_r13_r4_r0_LSL_r10"},
4621b8021494Sopenharmony_ci                           {{vc, r5, r0, r1, LSR, r1},
4622b8021494Sopenharmony_ci                            false,
4623b8021494Sopenharmony_ci                            al,
4624b8021494Sopenharmony_ci                            "vc r5 r0 r1 LSR r1",
4625b8021494Sopenharmony_ci                            "vc_r5_r0_r1_LSR_r1"},
4626b8021494Sopenharmony_ci                           {{ls, r5, r11, r1, ASR, r9},
4627b8021494Sopenharmony_ci                            false,
4628b8021494Sopenharmony_ci                            al,
4629b8021494Sopenharmony_ci                            "ls r5 r11 r1 ASR r9",
4630b8021494Sopenharmony_ci                            "ls_r5_r11_r1_ASR_r9"},
4631b8021494Sopenharmony_ci                           {{vs, r3, r2, r8, ASR, r1},
4632b8021494Sopenharmony_ci                            false,
4633b8021494Sopenharmony_ci                            al,
4634b8021494Sopenharmony_ci                            "vs r3 r2 r8 ASR r1",
4635b8021494Sopenharmony_ci                            "vs_r3_r2_r8_ASR_r1"},
4636b8021494Sopenharmony_ci                           {{hi, r8, r4, r6, ASR, r4},
4637b8021494Sopenharmony_ci                            false,
4638b8021494Sopenharmony_ci                            al,
4639b8021494Sopenharmony_ci                            "hi r8 r4 r6 ASR r4",
4640b8021494Sopenharmony_ci                            "hi_r8_r4_r6_ASR_r4"},
4641b8021494Sopenharmony_ci                           {{mi, r11, r12, r14, ASR, r13},
4642b8021494Sopenharmony_ci                            false,
4643b8021494Sopenharmony_ci                            al,
4644b8021494Sopenharmony_ci                            "mi r11 r12 r14 ASR r13",
4645b8021494Sopenharmony_ci                            "mi_r11_r12_r14_ASR_r13"},
4646b8021494Sopenharmony_ci                           {{gt, r7, r12, r12, LSL, r14},
4647b8021494Sopenharmony_ci                            false,
4648b8021494Sopenharmony_ci                            al,
4649b8021494Sopenharmony_ci                            "gt r7 r12 r12 LSL r14",
4650b8021494Sopenharmony_ci                            "gt_r7_r12_r12_LSL_r14"},
4651b8021494Sopenharmony_ci                           {{ge, r11, r4, r9, LSR, r7},
4652b8021494Sopenharmony_ci                            false,
4653b8021494Sopenharmony_ci                            al,
4654b8021494Sopenharmony_ci                            "ge r11 r4 r9 LSR r7",
4655b8021494Sopenharmony_ci                            "ge_r11_r4_r9_LSR_r7"},
4656b8021494Sopenharmony_ci                           {{vs, r0, r4, r10, LSL, r2},
4657b8021494Sopenharmony_ci                            false,
4658b8021494Sopenharmony_ci                            al,
4659b8021494Sopenharmony_ci                            "vs r0 r4 r10 LSL r2",
4660b8021494Sopenharmony_ci                            "vs_r0_r4_r10_LSL_r2"},
4661b8021494Sopenharmony_ci                           {{pl, r6, r4, r13, ASR, r0},
4662b8021494Sopenharmony_ci                            false,
4663b8021494Sopenharmony_ci                            al,
4664b8021494Sopenharmony_ci                            "pl r6 r4 r13 ASR r0",
4665b8021494Sopenharmony_ci                            "pl_r6_r4_r13_ASR_r0"},
4666b8021494Sopenharmony_ci                           {{eq, r2, r3, r11, ROR, r1},
4667b8021494Sopenharmony_ci                            false,
4668b8021494Sopenharmony_ci                            al,
4669b8021494Sopenharmony_ci                            "eq r2 r3 r11 ROR r1",
4670b8021494Sopenharmony_ci                            "eq_r2_r3_r11_ROR_r1"},
4671b8021494Sopenharmony_ci                           {{vs, r10, r9, r0, LSL, r4},
4672b8021494Sopenharmony_ci                            false,
4673b8021494Sopenharmony_ci                            al,
4674b8021494Sopenharmony_ci                            "vs r10 r9 r0 LSL r4",
4675b8021494Sopenharmony_ci                            "vs_r10_r9_r0_LSL_r4"},
4676b8021494Sopenharmony_ci                           {{cs, r0, r7, r10, LSL, r0},
4677b8021494Sopenharmony_ci                            false,
4678b8021494Sopenharmony_ci                            al,
4679b8021494Sopenharmony_ci                            "cs r0 r7 r10 LSL r0",
4680b8021494Sopenharmony_ci                            "cs_r0_r7_r10_LSL_r0"},
4681b8021494Sopenharmony_ci                           {{eq, r11, r2, r3, ASR, r13},
4682b8021494Sopenharmony_ci                            false,
4683b8021494Sopenharmony_ci                            al,
4684b8021494Sopenharmony_ci                            "eq r11 r2 r3 ASR r13",
4685b8021494Sopenharmony_ci                            "eq_r11_r2_r3_ASR_r13"},
4686b8021494Sopenharmony_ci                           {{eq, r14, r3, r7, ASR, r14},
4687b8021494Sopenharmony_ci                            false,
4688b8021494Sopenharmony_ci                            al,
4689b8021494Sopenharmony_ci                            "eq r14 r3 r7 ASR r14",
4690b8021494Sopenharmony_ci                            "eq_r14_r3_r7_ASR_r14"},
4691b8021494Sopenharmony_ci                           {{gt, r0, r2, r0, LSL, r12},
4692b8021494Sopenharmony_ci                            false,
4693b8021494Sopenharmony_ci                            al,
4694b8021494Sopenharmony_ci                            "gt r0 r2 r0 LSL r12",
4695b8021494Sopenharmony_ci                            "gt_r0_r2_r0_LSL_r12"},
4696b8021494Sopenharmony_ci                           {{mi, r0, r12, r6, LSR, r13},
4697b8021494Sopenharmony_ci                            false,
4698b8021494Sopenharmony_ci                            al,
4699b8021494Sopenharmony_ci                            "mi r0 r12 r6 LSR r13",
4700b8021494Sopenharmony_ci                            "mi_r0_r12_r6_LSR_r13"},
4701b8021494Sopenharmony_ci                           {{gt, r4, r4, r9, LSR, r12},
4702b8021494Sopenharmony_ci                            false,
4703b8021494Sopenharmony_ci                            al,
4704b8021494Sopenharmony_ci                            "gt r4 r4 r9 LSR r12",
4705b8021494Sopenharmony_ci                            "gt_r4_r4_r9_LSR_r12"},
4706b8021494Sopenharmony_ci                           {{vc, r6, r7, r10, ROR, r2},
4707b8021494Sopenharmony_ci                            false,
4708b8021494Sopenharmony_ci                            al,
4709b8021494Sopenharmony_ci                            "vc r6 r7 r10 ROR r2",
4710b8021494Sopenharmony_ci                            "vc_r6_r7_r10_ROR_r2"},
4711b8021494Sopenharmony_ci                           {{lt, r10, r8, r13, ROR, r13},
4712b8021494Sopenharmony_ci                            false,
4713b8021494Sopenharmony_ci                            al,
4714b8021494Sopenharmony_ci                            "lt r10 r8 r13 ROR r13",
4715b8021494Sopenharmony_ci                            "lt_r10_r8_r13_ROR_r13"},
4716b8021494Sopenharmony_ci                           {{lt, r13, r10, r4, ROR, r0},
4717b8021494Sopenharmony_ci                            false,
4718b8021494Sopenharmony_ci                            al,
4719b8021494Sopenharmony_ci                            "lt r13 r10 r4 ROR r0",
4720b8021494Sopenharmony_ci                            "lt_r13_r10_r4_ROR_r0"},
4721b8021494Sopenharmony_ci                           {{pl, r1, r6, r0, LSR, r12},
4722b8021494Sopenharmony_ci                            false,
4723b8021494Sopenharmony_ci                            al,
4724b8021494Sopenharmony_ci                            "pl r1 r6 r0 LSR r12",
4725b8021494Sopenharmony_ci                            "pl_r1_r6_r0_LSR_r12"},
4726b8021494Sopenharmony_ci                           {{ge, r14, r7, r1, LSR, r8},
4727b8021494Sopenharmony_ci                            false,
4728b8021494Sopenharmony_ci                            al,
4729b8021494Sopenharmony_ci                            "ge r14 r7 r1 LSR r8",
4730b8021494Sopenharmony_ci                            "ge_r14_r7_r1_LSR_r8"},
4731b8021494Sopenharmony_ci                           {{cc, r8, r13, r6, LSL, r13},
4732b8021494Sopenharmony_ci                            false,
4733b8021494Sopenharmony_ci                            al,
4734b8021494Sopenharmony_ci                            "cc r8 r13 r6 LSL r13",
4735b8021494Sopenharmony_ci                            "cc_r8_r13_r6_LSL_r13"},
4736b8021494Sopenharmony_ci                           {{gt, r13, r4, r7, LSR, r2},
4737b8021494Sopenharmony_ci                            false,
4738b8021494Sopenharmony_ci                            al,
4739b8021494Sopenharmony_ci                            "gt r13 r4 r7 LSR r2",
4740b8021494Sopenharmony_ci                            "gt_r13_r4_r7_LSR_r2"},
4741b8021494Sopenharmony_ci                           {{eq, r11, r3, r5, LSR, r3},
4742b8021494Sopenharmony_ci                            false,
4743b8021494Sopenharmony_ci                            al,
4744b8021494Sopenharmony_ci                            "eq r11 r3 r5 LSR r3",
4745b8021494Sopenharmony_ci                            "eq_r11_r3_r5_LSR_r3"},
4746b8021494Sopenharmony_ci                           {{vc, r8, r11, r2, ROR, r7},
4747b8021494Sopenharmony_ci                            false,
4748b8021494Sopenharmony_ci                            al,
4749b8021494Sopenharmony_ci                            "vc r8 r11 r2 ROR r7",
4750b8021494Sopenharmony_ci                            "vc_r8_r11_r2_ROR_r7"},
4751b8021494Sopenharmony_ci                           {{vc, r11, r2, r0, LSL, r2},
4752b8021494Sopenharmony_ci                            false,
4753b8021494Sopenharmony_ci                            al,
4754b8021494Sopenharmony_ci                            "vc r11 r2 r0 LSL r2",
4755b8021494Sopenharmony_ci                            "vc_r11_r2_r0_LSL_r2"},
4756b8021494Sopenharmony_ci                           {{cs, r9, r11, r11, LSL, r11},
4757b8021494Sopenharmony_ci                            false,
4758b8021494Sopenharmony_ci                            al,
4759b8021494Sopenharmony_ci                            "cs r9 r11 r11 LSL r11",
4760b8021494Sopenharmony_ci                            "cs_r9_r11_r11_LSL_r11"},
4761b8021494Sopenharmony_ci                           {{ge, r14, r4, r12, LSL, r11},
4762b8021494Sopenharmony_ci                            false,
4763b8021494Sopenharmony_ci                            al,
4764b8021494Sopenharmony_ci                            "ge r14 r4 r12 LSL r11",
4765b8021494Sopenharmony_ci                            "ge_r14_r4_r12_LSL_r11"},
4766b8021494Sopenharmony_ci                           {{vs, r4, r10, r3, LSL, r1},
4767b8021494Sopenharmony_ci                            false,
4768b8021494Sopenharmony_ci                            al,
4769b8021494Sopenharmony_ci                            "vs r4 r10 r3 LSL r1",
4770b8021494Sopenharmony_ci                            "vs_r4_r10_r3_LSL_r1"},
4771b8021494Sopenharmony_ci                           {{mi, r13, r1, r8, LSR, r2},
4772b8021494Sopenharmony_ci                            false,
4773b8021494Sopenharmony_ci                            al,
4774b8021494Sopenharmony_ci                            "mi r13 r1 r8 LSR r2",
4775b8021494Sopenharmony_ci                            "mi_r13_r1_r8_LSR_r2"},
4776b8021494Sopenharmony_ci                           {{le, r3, r13, r13, LSL, r8},
4777b8021494Sopenharmony_ci                            false,
4778b8021494Sopenharmony_ci                            al,
4779b8021494Sopenharmony_ci                            "le r3 r13 r13 LSL r8",
4780b8021494Sopenharmony_ci                            "le_r3_r13_r13_LSL_r8"},
4781b8021494Sopenharmony_ci                           {{mi, r9, r12, r8, LSR, r14},
4782b8021494Sopenharmony_ci                            false,
4783b8021494Sopenharmony_ci                            al,
4784b8021494Sopenharmony_ci                            "mi r9 r12 r8 LSR r14",
4785b8021494Sopenharmony_ci                            "mi_r9_r12_r8_LSR_r14"},
4786b8021494Sopenharmony_ci                           {{pl, r7, r11, r10, ASR, r2},
4787b8021494Sopenharmony_ci                            false,
4788b8021494Sopenharmony_ci                            al,
4789b8021494Sopenharmony_ci                            "pl r7 r11 r10 ASR r2",
4790b8021494Sopenharmony_ci                            "pl_r7_r11_r10_ASR_r2"},
4791b8021494Sopenharmony_ci                           {{lt, r12, r2, r9, ASR, r5},
4792b8021494Sopenharmony_ci                            false,
4793b8021494Sopenharmony_ci                            al,
4794b8021494Sopenharmony_ci                            "lt r12 r2 r9 ASR r5",
4795b8021494Sopenharmony_ci                            "lt_r12_r2_r9_ASR_r5"},
4796b8021494Sopenharmony_ci                           {{gt, r13, r0, r5, LSL, r2},
4797b8021494Sopenharmony_ci                            false,
4798b8021494Sopenharmony_ci                            al,
4799b8021494Sopenharmony_ci                            "gt r13 r0 r5 LSL r2",
4800b8021494Sopenharmony_ci                            "gt_r13_r0_r5_LSL_r2"},
4801b8021494Sopenharmony_ci                           {{le, r5, r10, r9, ROR, r0},
4802b8021494Sopenharmony_ci                            false,
4803b8021494Sopenharmony_ci                            al,
4804b8021494Sopenharmony_ci                            "le r5 r10 r9 ROR r0",
4805b8021494Sopenharmony_ci                            "le_r5_r10_r9_ROR_r0"},
4806b8021494Sopenharmony_ci                           {{lt, r6, r1, r4, ASR, r11},
4807b8021494Sopenharmony_ci                            false,
4808b8021494Sopenharmony_ci                            al,
4809b8021494Sopenharmony_ci                            "lt r6 r1 r4 ASR r11",
4810b8021494Sopenharmony_ci                            "lt_r6_r1_r4_ASR_r11"},
4811b8021494Sopenharmony_ci                           {{pl, r11, r5, r14, LSR, r4},
4812b8021494Sopenharmony_ci                            false,
4813b8021494Sopenharmony_ci                            al,
4814b8021494Sopenharmony_ci                            "pl r11 r5 r14 LSR r4",
4815b8021494Sopenharmony_ci                            "pl_r11_r5_r14_LSR_r4"},
4816b8021494Sopenharmony_ci                           {{eq, r9, r0, r6, ROR, r9},
4817b8021494Sopenharmony_ci                            false,
4818b8021494Sopenharmony_ci                            al,
4819b8021494Sopenharmony_ci                            "eq r9 r0 r6 ROR r9",
4820b8021494Sopenharmony_ci                            "eq_r9_r0_r6_ROR_r9"},
4821b8021494Sopenharmony_ci                           {{mi, r3, r11, r2, ASR, r4},
4822b8021494Sopenharmony_ci                            false,
4823b8021494Sopenharmony_ci                            al,
4824b8021494Sopenharmony_ci                            "mi r3 r11 r2 ASR r4",
4825b8021494Sopenharmony_ci                            "mi_r3_r11_r2_ASR_r4"},
4826b8021494Sopenharmony_ci                           {{pl, r13, r8, r0, ROR, r6},
4827b8021494Sopenharmony_ci                            false,
4828b8021494Sopenharmony_ci                            al,
4829b8021494Sopenharmony_ci                            "pl r13 r8 r0 ROR r6",
4830b8021494Sopenharmony_ci                            "pl_r13_r8_r0_ROR_r6"},
4831b8021494Sopenharmony_ci                           {{vc, r8, r2, r6, ASR, r4},
4832b8021494Sopenharmony_ci                            false,
4833b8021494Sopenharmony_ci                            al,
4834b8021494Sopenharmony_ci                            "vc r8 r2 r6 ASR r4",
4835b8021494Sopenharmony_ci                            "vc_r8_r2_r6_ASR_r4"},
4836b8021494Sopenharmony_ci                           {{ge, r1, r0, r4, ASR, r1},
4837b8021494Sopenharmony_ci                            false,
4838b8021494Sopenharmony_ci                            al,
4839b8021494Sopenharmony_ci                            "ge r1 r0 r4 ASR r1",
4840b8021494Sopenharmony_ci                            "ge_r1_r0_r4_ASR_r1"},
4841b8021494Sopenharmony_ci                           {{vc, r2, r4, r13, LSL, r13},
4842b8021494Sopenharmony_ci                            false,
4843b8021494Sopenharmony_ci                            al,
4844b8021494Sopenharmony_ci                            "vc r2 r4 r13 LSL r13",
4845b8021494Sopenharmony_ci                            "vc_r2_r4_r13_LSL_r13"},
4846b8021494Sopenharmony_ci                           {{lt, r4, r3, r5, ASR, r11},
4847b8021494Sopenharmony_ci                            false,
4848b8021494Sopenharmony_ci                            al,
4849b8021494Sopenharmony_ci                            "lt r4 r3 r5 ASR r11",
4850b8021494Sopenharmony_ci                            "lt_r4_r3_r5_ASR_r11"},
4851b8021494Sopenharmony_ci                           {{pl, r5, r12, r3, LSL, r4},
4852b8021494Sopenharmony_ci                            false,
4853b8021494Sopenharmony_ci                            al,
4854b8021494Sopenharmony_ci                            "pl r5 r12 r3 LSL r4",
4855b8021494Sopenharmony_ci                            "pl_r5_r12_r3_LSL_r4"},
4856b8021494Sopenharmony_ci                           {{pl, r14, r6, r6, LSR, r10},
4857b8021494Sopenharmony_ci                            false,
4858b8021494Sopenharmony_ci                            al,
4859b8021494Sopenharmony_ci                            "pl r14 r6 r6 LSR r10",
4860b8021494Sopenharmony_ci                            "pl_r14_r6_r6_LSR_r10"},
4861b8021494Sopenharmony_ci                           {{gt, r14, r13, r3, LSL, r9},
4862b8021494Sopenharmony_ci                            false,
4863b8021494Sopenharmony_ci                            al,
4864b8021494Sopenharmony_ci                            "gt r14 r13 r3 LSL r9",
4865b8021494Sopenharmony_ci                            "gt_r14_r13_r3_LSL_r9"},
4866b8021494Sopenharmony_ci                           {{pl, r10, r9, r4, LSL, r3},
4867b8021494Sopenharmony_ci                            false,
4868b8021494Sopenharmony_ci                            al,
4869b8021494Sopenharmony_ci                            "pl r10 r9 r4 LSL r3",
4870b8021494Sopenharmony_ci                            "pl_r10_r9_r4_LSL_r3"},
4871b8021494Sopenharmony_ci                           {{al, r10, r8, r4, ROR, r1},
4872b8021494Sopenharmony_ci                            false,
4873b8021494Sopenharmony_ci                            al,
4874b8021494Sopenharmony_ci                            "al r10 r8 r4 ROR r1",
4875b8021494Sopenharmony_ci                            "al_r10_r8_r4_ROR_r1"},
4876b8021494Sopenharmony_ci                           {{pl, r14, r9, r11, ASR, r13},
4877b8021494Sopenharmony_ci                            false,
4878b8021494Sopenharmony_ci                            al,
4879b8021494Sopenharmony_ci                            "pl r14 r9 r11 ASR r13",
4880b8021494Sopenharmony_ci                            "pl_r14_r9_r11_ASR_r13"},
4881b8021494Sopenharmony_ci                           {{cc, r8, r1, r4, ROR, r12},
4882b8021494Sopenharmony_ci                            false,
4883b8021494Sopenharmony_ci                            al,
4884b8021494Sopenharmony_ci                            "cc r8 r1 r4 ROR r12",
4885b8021494Sopenharmony_ci                            "cc_r8_r1_r4_ROR_r12"},
4886b8021494Sopenharmony_ci                           {{vs, r5, r14, r7, LSR, r0},
4887b8021494Sopenharmony_ci                            false,
4888b8021494Sopenharmony_ci                            al,
4889b8021494Sopenharmony_ci                            "vs r5 r14 r7 LSR r0",
4890b8021494Sopenharmony_ci                            "vs_r5_r14_r7_LSR_r0"},
4891b8021494Sopenharmony_ci                           {{gt, r1, r10, r13, ROR, r9},
4892b8021494Sopenharmony_ci                            false,
4893b8021494Sopenharmony_ci                            al,
4894b8021494Sopenharmony_ci                            "gt r1 r10 r13 ROR r9",
4895b8021494Sopenharmony_ci                            "gt_r1_r10_r13_ROR_r9"},
4896b8021494Sopenharmony_ci                           {{mi, r8, r14, r9, LSR, r5},
4897b8021494Sopenharmony_ci                            false,
4898b8021494Sopenharmony_ci                            al,
4899b8021494Sopenharmony_ci                            "mi r8 r14 r9 LSR r5",
4900b8021494Sopenharmony_ci                            "mi_r8_r14_r9_LSR_r5"},
4901b8021494Sopenharmony_ci                           {{ge, r12, r10, r7, ROR, r2},
4902b8021494Sopenharmony_ci                            false,
4903b8021494Sopenharmony_ci                            al,
4904b8021494Sopenharmony_ci                            "ge r12 r10 r7 ROR r2",
4905b8021494Sopenharmony_ci                            "ge_r12_r10_r7_ROR_r2"},
4906b8021494Sopenharmony_ci                           {{al, r11, r8, r1, LSR, r10},
4907b8021494Sopenharmony_ci                            false,
4908b8021494Sopenharmony_ci                            al,
4909b8021494Sopenharmony_ci                            "al r11 r8 r1 LSR r10",
4910b8021494Sopenharmony_ci                            "al_r11_r8_r1_LSR_r10"},
4911b8021494Sopenharmony_ci                           {{al, r7, r13, r11, LSL, r14},
4912b8021494Sopenharmony_ci                            false,
4913b8021494Sopenharmony_ci                            al,
4914b8021494Sopenharmony_ci                            "al r7 r13 r11 LSL r14",
4915b8021494Sopenharmony_ci                            "al_r7_r13_r11_LSL_r14"},
4916b8021494Sopenharmony_ci                           {{vc, r13, r11, r11, ASR, r9},
4917b8021494Sopenharmony_ci                            false,
4918b8021494Sopenharmony_ci                            al,
4919b8021494Sopenharmony_ci                            "vc r13 r11 r11 ASR r9",
4920b8021494Sopenharmony_ci                            "vc_r13_r11_r11_ASR_r9"},
4921b8021494Sopenharmony_ci                           {{gt, r10, r5, r11, LSR, r14},
4922b8021494Sopenharmony_ci                            false,
4923b8021494Sopenharmony_ci                            al,
4924b8021494Sopenharmony_ci                            "gt r10 r5 r11 LSR r14",
4925b8021494Sopenharmony_ci                            "gt_r10_r5_r11_LSR_r14"},
4926b8021494Sopenharmony_ci                           {{vc, r10, r11, r7, ROR, r3},
4927b8021494Sopenharmony_ci                            false,
4928b8021494Sopenharmony_ci                            al,
4929b8021494Sopenharmony_ci                            "vc r10 r11 r7 ROR r3",
4930b8021494Sopenharmony_ci                            "vc_r10_r11_r7_ROR_r3"},
4931b8021494Sopenharmony_ci                           {{le, r10, r2, r7, LSL, r6},
4932b8021494Sopenharmony_ci                            false,
4933b8021494Sopenharmony_ci                            al,
4934b8021494Sopenharmony_ci                            "le r10 r2 r7 LSL r6",
4935b8021494Sopenharmony_ci                            "le_r10_r2_r7_LSL_r6"},
4936b8021494Sopenharmony_ci                           {{al, r1, r3, r6, ASR, r5},
4937b8021494Sopenharmony_ci                            false,
4938b8021494Sopenharmony_ci                            al,
4939b8021494Sopenharmony_ci                            "al r1 r3 r6 ASR r5",
4940b8021494Sopenharmony_ci                            "al_r1_r3_r6_ASR_r5"},
4941b8021494Sopenharmony_ci                           {{cs, r14, r9, r7, LSL, r12},
4942b8021494Sopenharmony_ci                            false,
4943b8021494Sopenharmony_ci                            al,
4944b8021494Sopenharmony_ci                            "cs r14 r9 r7 LSL r12",
4945b8021494Sopenharmony_ci                            "cs_r14_r9_r7_LSL_r12"},
4946b8021494Sopenharmony_ci                           {{ls, r10, r1, r4, LSL, r4},
4947b8021494Sopenharmony_ci                            false,
4948b8021494Sopenharmony_ci                            al,
4949b8021494Sopenharmony_ci                            "ls r10 r1 r4 LSL r4",
4950b8021494Sopenharmony_ci                            "ls_r10_r1_r4_LSL_r4"},
4951b8021494Sopenharmony_ci                           {{vs, r2, r5, r4, ROR, r3},
4952b8021494Sopenharmony_ci                            false,
4953b8021494Sopenharmony_ci                            al,
4954b8021494Sopenharmony_ci                            "vs r2 r5 r4 ROR r3",
4955b8021494Sopenharmony_ci                            "vs_r2_r5_r4_ROR_r3"},
4956b8021494Sopenharmony_ci                           {{vs, r1, r7, r10, ASR, r0},
4957b8021494Sopenharmony_ci                            false,
4958b8021494Sopenharmony_ci                            al,
4959b8021494Sopenharmony_ci                            "vs r1 r7 r10 ASR r0",
4960b8021494Sopenharmony_ci                            "vs_r1_r7_r10_ASR_r0"},
4961b8021494Sopenharmony_ci                           {{cs, r10, r12, r0, LSR, r4},
4962b8021494Sopenharmony_ci                            false,
4963b8021494Sopenharmony_ci                            al,
4964b8021494Sopenharmony_ci                            "cs r10 r12 r0 LSR r4",
4965b8021494Sopenharmony_ci                            "cs_r10_r12_r0_LSR_r4"},
4966b8021494Sopenharmony_ci                           {{vs, r8, r8, r1, LSR, r13},
4967b8021494Sopenharmony_ci                            false,
4968b8021494Sopenharmony_ci                            al,
4969b8021494Sopenharmony_ci                            "vs r8 r8 r1 LSR r13",
4970b8021494Sopenharmony_ci                            "vs_r8_r8_r1_LSR_r13"},
4971b8021494Sopenharmony_ci                           {{mi, r14, r5, r9, LSR, r7},
4972b8021494Sopenharmony_ci                            false,
4973b8021494Sopenharmony_ci                            al,
4974b8021494Sopenharmony_ci                            "mi r14 r5 r9 LSR r7",
4975b8021494Sopenharmony_ci                            "mi_r14_r5_r9_LSR_r7"},
4976b8021494Sopenharmony_ci                           {{vs, r6, r6, r14, ASR, r8},
4977b8021494Sopenharmony_ci                            false,
4978b8021494Sopenharmony_ci                            al,
4979b8021494Sopenharmony_ci                            "vs r6 r6 r14 ASR r8",
4980b8021494Sopenharmony_ci                            "vs_r6_r6_r14_ASR_r8"},
4981b8021494Sopenharmony_ci                           {{vc, r0, r1, r14, ROR, r0},
4982b8021494Sopenharmony_ci                            false,
4983b8021494Sopenharmony_ci                            al,
4984b8021494Sopenharmony_ci                            "vc r0 r1 r14 ROR r0",
4985b8021494Sopenharmony_ci                            "vc_r0_r1_r14_ROR_r0"},
4986b8021494Sopenharmony_ci                           {{ls, r9, r3, r11, ASR, r3},
4987b8021494Sopenharmony_ci                            false,
4988b8021494Sopenharmony_ci                            al,
4989b8021494Sopenharmony_ci                            "ls r9 r3 r11 ASR r3",
4990b8021494Sopenharmony_ci                            "ls_r9_r3_r11_ASR_r3"},
4991b8021494Sopenharmony_ci                           {{ls, r1, r12, r1, ASR, r6},
4992b8021494Sopenharmony_ci                            false,
4993b8021494Sopenharmony_ci                            al,
4994b8021494Sopenharmony_ci                            "ls r1 r12 r1 ASR r6",
4995b8021494Sopenharmony_ci                            "ls_r1_r12_r1_ASR_r6"},
4996b8021494Sopenharmony_ci                           {{hi, r6, r10, r0, ASR, r2},
4997b8021494Sopenharmony_ci                            false,
4998b8021494Sopenharmony_ci                            al,
4999b8021494Sopenharmony_ci                            "hi r6 r10 r0 ASR r2",
5000b8021494Sopenharmony_ci                            "hi_r6_r10_r0_ASR_r2"},
5001b8021494Sopenharmony_ci                           {{vc, r6, r14, r7, ASR, r1},
5002b8021494Sopenharmony_ci                            false,
5003b8021494Sopenharmony_ci                            al,
5004b8021494Sopenharmony_ci                            "vc r6 r14 r7 ASR r1",
5005b8021494Sopenharmony_ci                            "vc_r6_r14_r7_ASR_r1"},
5006b8021494Sopenharmony_ci                           {{eq, r14, r11, r10, LSL, r13},
5007b8021494Sopenharmony_ci                            false,
5008b8021494Sopenharmony_ci                            al,
5009b8021494Sopenharmony_ci                            "eq r14 r11 r10 LSL r13",
5010b8021494Sopenharmony_ci                            "eq_r14_r11_r10_LSL_r13"},
5011b8021494Sopenharmony_ci                           {{ge, r6, r12, r5, LSR, r9},
5012b8021494Sopenharmony_ci                            false,
5013b8021494Sopenharmony_ci                            al,
5014b8021494Sopenharmony_ci                            "ge r6 r12 r5 LSR r9",
5015b8021494Sopenharmony_ci                            "ge_r6_r12_r5_LSR_r9"},
5016b8021494Sopenharmony_ci                           {{mi, r1, r5, r0, ROR, r9},
5017b8021494Sopenharmony_ci                            false,
5018b8021494Sopenharmony_ci                            al,
5019b8021494Sopenharmony_ci                            "mi r1 r5 r0 ROR r9",
5020b8021494Sopenharmony_ci                            "mi_r1_r5_r0_ROR_r9"},
5021b8021494Sopenharmony_ci                           {{al, r7, r8, r2, ROR, r4},
5022b8021494Sopenharmony_ci                            false,
5023b8021494Sopenharmony_ci                            al,
5024b8021494Sopenharmony_ci                            "al r7 r8 r2 ROR r4",
5025b8021494Sopenharmony_ci                            "al_r7_r8_r2_ROR_r4"},
5026b8021494Sopenharmony_ci                           {{hi, r8, r1, r5, ASR, r10},
5027b8021494Sopenharmony_ci                            false,
5028b8021494Sopenharmony_ci                            al,
5029b8021494Sopenharmony_ci                            "hi r8 r1 r5 ASR r10",
5030b8021494Sopenharmony_ci                            "hi_r8_r1_r5_ASR_r10"},
5031b8021494Sopenharmony_ci                           {{ne, r14, r5, r0, LSR, r7},
5032b8021494Sopenharmony_ci                            false,
5033b8021494Sopenharmony_ci                            al,
5034b8021494Sopenharmony_ci                            "ne r14 r5 r0 LSR r7",
5035b8021494Sopenharmony_ci                            "ne_r14_r5_r0_LSR_r7"},
5036b8021494Sopenharmony_ci                           {{vc, r3, r13, r9, LSL, r9},
5037b8021494Sopenharmony_ci                            false,
5038b8021494Sopenharmony_ci                            al,
5039b8021494Sopenharmony_ci                            "vc r3 r13 r9 LSL r9",
5040b8021494Sopenharmony_ci                            "vc_r3_r13_r9_LSL_r9"},
5041b8021494Sopenharmony_ci                           {{vs, r2, r2, r7, LSL, r5},
5042b8021494Sopenharmony_ci                            false,
5043b8021494Sopenharmony_ci                            al,
5044b8021494Sopenharmony_ci                            "vs r2 r2 r7 LSL r5",
5045b8021494Sopenharmony_ci                            "vs_r2_r2_r7_LSL_r5"},
5046b8021494Sopenharmony_ci                           {{vc, r7, r3, r6, ASR, r6},
5047b8021494Sopenharmony_ci                            false,
5048b8021494Sopenharmony_ci                            al,
5049b8021494Sopenharmony_ci                            "vc r7 r3 r6 ASR r6",
5050b8021494Sopenharmony_ci                            "vc_r7_r3_r6_ASR_r6"},
5051b8021494Sopenharmony_ci                           {{eq, r2, r5, r8, ROR, r1},
5052b8021494Sopenharmony_ci                            false,
5053b8021494Sopenharmony_ci                            al,
5054b8021494Sopenharmony_ci                            "eq r2 r5 r8 ROR r1",
5055b8021494Sopenharmony_ci                            "eq_r2_r5_r8_ROR_r1"},
5056b8021494Sopenharmony_ci                           {{eq, r0, r0, r10, ROR, r3},
5057b8021494Sopenharmony_ci                            false,
5058b8021494Sopenharmony_ci                            al,
5059b8021494Sopenharmony_ci                            "eq r0 r0 r10 ROR r3",
5060b8021494Sopenharmony_ci                            "eq_r0_r0_r10_ROR_r3"},
5061b8021494Sopenharmony_ci                           {{lt, r6, r1, r0, ROR, r9},
5062b8021494Sopenharmony_ci                            false,
5063b8021494Sopenharmony_ci                            al,
5064b8021494Sopenharmony_ci                            "lt r6 r1 r0 ROR r9",
5065b8021494Sopenharmony_ci                            "lt_r6_r1_r0_ROR_r9"},
5066b8021494Sopenharmony_ci                           {{ls, r7, r7, r12, LSR, r5},
5067b8021494Sopenharmony_ci                            false,
5068b8021494Sopenharmony_ci                            al,
5069b8021494Sopenharmony_ci                            "ls r7 r7 r12 LSR r5",
5070b8021494Sopenharmony_ci                            "ls_r7_r7_r12_LSR_r5"},
5071b8021494Sopenharmony_ci                           {{vs, r0, r9, r7, ROR, r14},
5072b8021494Sopenharmony_ci                            false,
5073b8021494Sopenharmony_ci                            al,
5074b8021494Sopenharmony_ci                            "vs r0 r9 r7 ROR r14",
5075b8021494Sopenharmony_ci                            "vs_r0_r9_r7_ROR_r14"},
5076b8021494Sopenharmony_ci                           {{al, r0, r8, r2, ROR, r2},
5077b8021494Sopenharmony_ci                            false,
5078b8021494Sopenharmony_ci                            al,
5079b8021494Sopenharmony_ci                            "al r0 r8 r2 ROR r2",
5080b8021494Sopenharmony_ci                            "al_r0_r8_r2_ROR_r2"},
5081b8021494Sopenharmony_ci                           {{vc, r1, r14, r14, LSL, r11},
5082b8021494Sopenharmony_ci                            false,
5083b8021494Sopenharmony_ci                            al,
5084b8021494Sopenharmony_ci                            "vc r1 r14 r14 LSL r11",
5085b8021494Sopenharmony_ci                            "vc_r1_r14_r14_LSL_r11"},
5086b8021494Sopenharmony_ci                           {{ge, r9, r14, r10, ASR, r11},
5087b8021494Sopenharmony_ci                            false,
5088b8021494Sopenharmony_ci                            al,
5089b8021494Sopenharmony_ci                            "ge r9 r14 r10 ASR r11",
5090b8021494Sopenharmony_ci                            "ge_r9_r14_r10_ASR_r11"},
5091b8021494Sopenharmony_ci                           {{vs, r0, r3, r9, LSL, r4},
5092b8021494Sopenharmony_ci                            false,
5093b8021494Sopenharmony_ci                            al,
5094b8021494Sopenharmony_ci                            "vs r0 r3 r9 LSL r4",
5095b8021494Sopenharmony_ci                            "vs_r0_r3_r9_LSL_r4"},
5096b8021494Sopenharmony_ci                           {{pl, r14, r13, r7, LSR, r14},
5097b8021494Sopenharmony_ci                            false,
5098b8021494Sopenharmony_ci                            al,
5099b8021494Sopenharmony_ci                            "pl r14 r13 r7 LSR r14",
5100b8021494Sopenharmony_ci                            "pl_r14_r13_r7_LSR_r14"},
5101b8021494Sopenharmony_ci                           {{le, r2, r4, r6, LSR, r3},
5102b8021494Sopenharmony_ci                            false,
5103b8021494Sopenharmony_ci                            al,
5104b8021494Sopenharmony_ci                            "le r2 r4 r6 LSR r3",
5105b8021494Sopenharmony_ci                            "le_r2_r4_r6_LSR_r3"},
5106b8021494Sopenharmony_ci                           {{vc, r7, r14, r6, LSR, r10},
5107b8021494Sopenharmony_ci                            false,
5108b8021494Sopenharmony_ci                            al,
5109b8021494Sopenharmony_ci                            "vc r7 r14 r6 LSR r10",
5110b8021494Sopenharmony_ci                            "vc_r7_r14_r6_LSR_r10"},
5111b8021494Sopenharmony_ci                           {{mi, r13, r11, r14, ASR, r7},
5112b8021494Sopenharmony_ci                            false,
5113b8021494Sopenharmony_ci                            al,
5114b8021494Sopenharmony_ci                            "mi r13 r11 r14 ASR r7",
5115b8021494Sopenharmony_ci                            "mi_r13_r11_r14_ASR_r7"}};
5116b8021494Sopenharmony_ci
5117b8021494Sopenharmony_ci// These headers each contain an array of `TestResult` with the reference output
5118b8021494Sopenharmony_ci// values. The reference arrays are names `kReference{mnemonic}`.
5119b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-adc-a32.h"
5120b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-adcs-a32.h"
5121b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-add-a32.h"
5122b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-adds-a32.h"
5123b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-and-a32.h"
5124b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-ands-a32.h"
5125b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-bic-a32.h"
5126b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-bics-a32.h"
5127b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-eor-a32.h"
5128b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-eors-a32.h"
5129b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-orr-a32.h"
5130b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-orrs-a32.h"
5131b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-rsb-a32.h"
5132b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-rsbs-a32.h"
5133b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-rsc-a32.h"
5134b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-rscs-a32.h"
5135b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-sbc-a32.h"
5136b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-sbcs-a32.h"
5137b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-sub-a32.h"
5138b8021494Sopenharmony_ci#include "aarch32/traces/assembler-cond-rd-rn-operand-rm-shift-rs-subs-a32.h"
5139b8021494Sopenharmony_ci
5140b8021494Sopenharmony_ci
5141b8021494Sopenharmony_ci// The maximum number of errors to report in detail for each test.
5142b8021494Sopenharmony_ciconst unsigned kErrorReportLimit = 8;
5143b8021494Sopenharmony_ci
5144b8021494Sopenharmony_citypedef void (MacroAssembler::*Fn)(Condition cond,
5145b8021494Sopenharmony_ci                                   Register rd,
5146b8021494Sopenharmony_ci                                   Register rn,
5147b8021494Sopenharmony_ci                                   const Operand& op);
5148b8021494Sopenharmony_ci
5149b8021494Sopenharmony_civoid TestHelper(Fn instruction,
5150b8021494Sopenharmony_ci                const char* mnemonic,
5151b8021494Sopenharmony_ci                const TestResult reference[]) {
5152b8021494Sopenharmony_ci  unsigned total_error_count = 0;
5153b8021494Sopenharmony_ci  MacroAssembler masm(BUF_SIZE);
5154b8021494Sopenharmony_ci
5155b8021494Sopenharmony_ci  masm.UseA32();
5156b8021494Sopenharmony_ci
5157b8021494Sopenharmony_ci  for (unsigned i = 0; i < ARRAY_SIZE(kTests); i++) {
5158b8021494Sopenharmony_ci    // Values to pass to the macro-assembler.
5159b8021494Sopenharmony_ci    Condition cond = kTests[i].operands.cond;
5160b8021494Sopenharmony_ci    Register rd = kTests[i].operands.rd;
5161b8021494Sopenharmony_ci    Register rn = kTests[i].operands.rn;
5162b8021494Sopenharmony_ci    Register rm = kTests[i].operands.rm;
5163b8021494Sopenharmony_ci    ShiftType shift = kTests[i].operands.shift;
5164b8021494Sopenharmony_ci    Register rs = kTests[i].operands.rs;
5165b8021494Sopenharmony_ci    Operand op(rm, shift, rs);
5166b8021494Sopenharmony_ci
5167b8021494Sopenharmony_ci    int32_t start = masm.GetCursorOffset();
5168b8021494Sopenharmony_ci    {
5169b8021494Sopenharmony_ci      // We never generate more that 4 bytes, as IT instructions are only
5170b8021494Sopenharmony_ci      // allowed for narrow encodings.
5171b8021494Sopenharmony_ci      ExactAssemblyScope scope(&masm, 4, ExactAssemblyScope::kMaximumSize);
5172b8021494Sopenharmony_ci      if (kTests[i].in_it_block) {
5173b8021494Sopenharmony_ci        masm.it(kTests[i].it_condition);
5174b8021494Sopenharmony_ci      }
5175b8021494Sopenharmony_ci      (masm.*instruction)(cond, rd, rn, op);
5176b8021494Sopenharmony_ci    }
5177b8021494Sopenharmony_ci    int32_t end = masm.GetCursorOffset();
5178b8021494Sopenharmony_ci
5179b8021494Sopenharmony_ci    const byte* result_ptr =
5180b8021494Sopenharmony_ci        masm.GetBuffer()->GetOffsetAddress<const byte*>(start);
5181b8021494Sopenharmony_ci    VIXL_ASSERT(start < end);
5182b8021494Sopenharmony_ci    uint32_t result_size = end - start;
5183b8021494Sopenharmony_ci
5184b8021494Sopenharmony_ci    if (Test::generate_test_trace()) {
5185b8021494Sopenharmony_ci      // Print the result bytes.
5186b8021494Sopenharmony_ci      printf("const byte kInstruction_%s_%s[] = {\n",
5187b8021494Sopenharmony_ci             mnemonic,
5188b8021494Sopenharmony_ci             kTests[i].identifier);
5189b8021494Sopenharmony_ci      for (uint32_t j = 0; j < result_size; j++) {
5190b8021494Sopenharmony_ci        if (j == 0) {
5191b8021494Sopenharmony_ci          printf("  0x%02" PRIx8, result_ptr[j]);
5192b8021494Sopenharmony_ci        } else {
5193b8021494Sopenharmony_ci          printf(", 0x%02" PRIx8, result_ptr[j]);
5194b8021494Sopenharmony_ci        }
5195b8021494Sopenharmony_ci      }
5196b8021494Sopenharmony_ci      // This comment is meant to be used by external tools to validate
5197b8021494Sopenharmony_ci      // the encoding. We can parse the comment to figure out what
5198b8021494Sopenharmony_ci      // instruction this corresponds to.
5199b8021494Sopenharmony_ci      if (kTests[i].in_it_block) {
5200b8021494Sopenharmony_ci        printf(" // It %s; %s %s\n};\n",
5201b8021494Sopenharmony_ci               kTests[i].it_condition.GetName(),
5202b8021494Sopenharmony_ci               mnemonic,
5203b8021494Sopenharmony_ci               kTests[i].operands_description);
5204b8021494Sopenharmony_ci      } else {
5205b8021494Sopenharmony_ci        printf(" // %s %s\n};\n", mnemonic, kTests[i].operands_description);
5206b8021494Sopenharmony_ci      }
5207b8021494Sopenharmony_ci    } else {
5208b8021494Sopenharmony_ci      // Check we've emitted the exact same encoding as present in the
5209b8021494Sopenharmony_ci      // trace file. Only print up to `kErrorReportLimit` errors.
5210b8021494Sopenharmony_ci      if (((result_size != reference[i].size) ||
5211b8021494Sopenharmony_ci           (memcmp(result_ptr, reference[i].encoding, reference[i].size) !=
5212b8021494Sopenharmony_ci            0)) &&
5213b8021494Sopenharmony_ci          (++total_error_count <= kErrorReportLimit)) {
5214b8021494Sopenharmony_ci        printf("Error when testing \"%s\" with operands \"%s\":\n",
5215b8021494Sopenharmony_ci               mnemonic,
5216b8021494Sopenharmony_ci               kTests[i].operands_description);
5217b8021494Sopenharmony_ci        printf("  Expected: ");
5218b8021494Sopenharmony_ci        for (uint32_t j = 0; j < reference[i].size; j++) {
5219b8021494Sopenharmony_ci          if (j == 0) {
5220b8021494Sopenharmony_ci            printf("0x%02" PRIx8, reference[i].encoding[j]);
5221b8021494Sopenharmony_ci          } else {
5222b8021494Sopenharmony_ci            printf(", 0x%02" PRIx8, reference[i].encoding[j]);
5223b8021494Sopenharmony_ci          }
5224b8021494Sopenharmony_ci        }
5225b8021494Sopenharmony_ci        printf("\n");
5226b8021494Sopenharmony_ci        printf("  Found:    ");
5227b8021494Sopenharmony_ci        for (uint32_t j = 0; j < result_size; j++) {
5228b8021494Sopenharmony_ci          if (j == 0) {
5229b8021494Sopenharmony_ci            printf("0x%02" PRIx8, result_ptr[j]);
5230b8021494Sopenharmony_ci          } else {
5231b8021494Sopenharmony_ci            printf(", 0x%02" PRIx8, result_ptr[j]);
5232b8021494Sopenharmony_ci          }
5233b8021494Sopenharmony_ci        }
5234b8021494Sopenharmony_ci        printf("\n");
5235b8021494Sopenharmony_ci      }
5236b8021494Sopenharmony_ci    }
5237b8021494Sopenharmony_ci  }
5238b8021494Sopenharmony_ci
5239b8021494Sopenharmony_ci  masm.FinalizeCode();
5240b8021494Sopenharmony_ci
5241b8021494Sopenharmony_ci  if (Test::generate_test_trace()) {
5242b8021494Sopenharmony_ci    // Finalize the trace file by writing the final `TestResult` array
5243b8021494Sopenharmony_ci    // which links all generated instruction encodings.
5244b8021494Sopenharmony_ci    printf("const TestResult kReference%s[] = {\n", mnemonic);
5245b8021494Sopenharmony_ci    for (unsigned i = 0; i < ARRAY_SIZE(kTests); i++) {
5246b8021494Sopenharmony_ci      printf("  {\n");
5247b8021494Sopenharmony_ci      printf("    ARRAY_SIZE(kInstruction_%s_%s),\n",
5248b8021494Sopenharmony_ci             mnemonic,
5249b8021494Sopenharmony_ci             kTests[i].identifier);
5250b8021494Sopenharmony_ci      printf("    kInstruction_%s_%s,\n", mnemonic, kTests[i].identifier);
5251b8021494Sopenharmony_ci      printf("  },\n");
5252b8021494Sopenharmony_ci    }
5253b8021494Sopenharmony_ci    printf("};\n");
5254b8021494Sopenharmony_ci  } else {
5255b8021494Sopenharmony_ci    if (total_error_count > kErrorReportLimit) {
5256b8021494Sopenharmony_ci      printf("%u other errors follow.\n",
5257b8021494Sopenharmony_ci             total_error_count - kErrorReportLimit);
5258b8021494Sopenharmony_ci    }
5259b8021494Sopenharmony_ci    // Crash if the test failed.
5260b8021494Sopenharmony_ci    VIXL_CHECK(total_error_count == 0);
5261b8021494Sopenharmony_ci  }
5262b8021494Sopenharmony_ci}
5263b8021494Sopenharmony_ci
5264b8021494Sopenharmony_ci// Instantiate tests for each instruction in the list.
5265b8021494Sopenharmony_ci#define TEST(mnemonic)                                                      \
5266b8021494Sopenharmony_ci  void Test_##mnemonic() {                                                  \
5267b8021494Sopenharmony_ci    TestHelper(&MacroAssembler::mnemonic, #mnemonic, kReference##mnemonic); \
5268b8021494Sopenharmony_ci  }                                                                         \
5269b8021494Sopenharmony_ci  Test test_##mnemonic(                                                     \
5270b8021494Sopenharmony_ci      "AARCH32_ASSEMBLER_COND_RD_RN_OPERAND_RM_SHIFT_RS_" #mnemonic "_A32", \
5271b8021494Sopenharmony_ci      &Test_##mnemonic);
5272b8021494Sopenharmony_ciFOREACH_INSTRUCTION(TEST)
5273b8021494Sopenharmony_ci#undef TEST
5274b8021494Sopenharmony_ci
5275b8021494Sopenharmony_ci}  // namespace
5276b8021494Sopenharmony_ci#endif
5277b8021494Sopenharmony_ci
5278b8021494Sopenharmony_ci}  // namespace aarch32
5279b8021494Sopenharmony_ci}  // namespace vixl
5280