LLVM 22.0.0git
AArch64InstPrinter.cpp
Go to the documentation of this file.
1//==-- AArch64InstPrinter.cpp - Convert AArch64 MCInst to assembly syntax --==//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This class prints an AArch64 MCInst to a .s file.
10//
11//===----------------------------------------------------------------------===//
12
13#include "AArch64InstPrinter.h"
17#include "llvm/ADT/StringRef.h"
18#include "llvm/MC/MCAsmInfo.h"
19#include "llvm/MC/MCExpr.h"
20#include "llvm/MC/MCInst.h"
25#include "llvm/Support/Format.h"
28#include <cassert>
29#include <cstdint>
30#include <string>
31
32using namespace llvm;
33
34#define DEBUG_TYPE "asm-printer"
35
36#define GET_INSTRUCTION_NAME
37#define PRINT_ALIAS_INSTR
38#include "AArch64GenAsmWriter.inc"
39#define GET_INSTRUCTION_NAME
40#define PRINT_ALIAS_INSTR
41#include "AArch64GenAsmWriter1.inc"
42
47
52
54 if (Opt == "no-aliases") {
55 PrintAliases = false;
56 return true;
57 }
58 return false;
59}
60
64
66 unsigned AltIdx) {
67 markup(OS, Markup::Register) << getRegisterName(Reg, AltIdx);
68}
69
73
75 StringRef Annot, const MCSubtargetInfo &STI,
76 raw_ostream &O) {
77 // Check for special encodings and print the canonical alias instead.
78
79 unsigned Opcode = MI->getOpcode();
80
81 if (Opcode == AArch64::SYSxt)
82 if (printSysAlias(MI, STI, O)) {
83 printAnnotation(O, Annot);
84 return;
85 }
86
87 if (Opcode == AArch64::SYSPxt || Opcode == AArch64::SYSPxt_XZR)
88 if (printSyspAlias(MI, STI, O)) {
89 printAnnotation(O, Annot);
90 return;
91 }
92
93 // RPRFM overlaps PRFM (reg), so try to print it as RPRFM here.
94 if ((Opcode == AArch64::PRFMroX) || (Opcode == AArch64::PRFMroW)) {
95 if (printRangePrefetchAlias(MI, STI, O, Annot))
96 return;
97 }
98
99 // SBFM/UBFM should print to a nicer aliased form if possible.
100 if (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri ||
101 Opcode == AArch64::UBFMXri || Opcode == AArch64::UBFMWri) {
102 const MCOperand &Op0 = MI->getOperand(0);
103 const MCOperand &Op1 = MI->getOperand(1);
104 const MCOperand &Op2 = MI->getOperand(2);
105 const MCOperand &Op3 = MI->getOperand(3);
106
107 bool IsSigned = (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri);
108 bool Is64Bit = (Opcode == AArch64::SBFMXri || Opcode == AArch64::UBFMXri);
109 if (Op2.isImm() && Op2.getImm() == 0 && Op3.isImm()) {
110 const char *AsmMnemonic = nullptr;
111
112 switch (Op3.getImm()) {
113 default:
114 break;
115 case 7:
116 if (IsSigned)
117 AsmMnemonic = "sxtb";
118 else if (!Is64Bit)
119 AsmMnemonic = "uxtb";
120 break;
121 case 15:
122 if (IsSigned)
123 AsmMnemonic = "sxth";
124 else if (!Is64Bit)
125 AsmMnemonic = "uxth";
126 break;
127 case 31:
128 // *xtw is only valid for signed 64-bit operations.
129 if (Is64Bit && IsSigned)
130 AsmMnemonic = "sxtw";
131 break;
132 }
133
134 if (AsmMnemonic) {
135 O << '\t' << AsmMnemonic << '\t';
136 printRegName(O, Op0.getReg());
137 O << ", ";
139 printAnnotation(O, Annot);
140 return;
141 }
142 }
143
144 // All immediate shifts are aliases, implemented using the Bitfield
145 // instruction. In all cases the immediate shift amount shift must be in
146 // the range 0 to (reg.size -1).
147 if (Op2.isImm() && Op3.isImm()) {
148 const char *AsmMnemonic = nullptr;
149 int shift = 0;
150 int64_t immr = Op2.getImm();
151 int64_t imms = Op3.getImm();
152 if (Opcode == AArch64::UBFMWri && imms != 0x1F && ((imms + 1) == immr)) {
153 AsmMnemonic = "lsl";
154 shift = 31 - imms;
155 } else if (Opcode == AArch64::UBFMXri && imms != 0x3f &&
156 ((imms + 1 == immr))) {
157 AsmMnemonic = "lsl";
158 shift = 63 - imms;
159 } else if (Opcode == AArch64::UBFMWri && imms == 0x1f) {
160 AsmMnemonic = "lsr";
161 shift = immr;
162 } else if (Opcode == AArch64::UBFMXri && imms == 0x3f) {
163 AsmMnemonic = "lsr";
164 shift = immr;
165 } else if (Opcode == AArch64::SBFMWri && imms == 0x1f) {
166 AsmMnemonic = "asr";
167 shift = immr;
168 } else if (Opcode == AArch64::SBFMXri && imms == 0x3f) {
169 AsmMnemonic = "asr";
170 shift = immr;
171 }
172 if (AsmMnemonic) {
173 O << '\t' << AsmMnemonic << '\t';
174 printRegName(O, Op0.getReg());
175 O << ", ";
176 printRegName(O, Op1.getReg());
177 O << ", ";
178 markup(O, Markup::Immediate) << "#" << shift;
179 printAnnotation(O, Annot);
180 return;
181 }
182 }
183
184 // SBFIZ/UBFIZ aliases
185 if (Op2.getImm() > Op3.getImm()) {
186 O << '\t' << (IsSigned ? "sbfiz" : "ubfiz") << '\t';
187 printRegName(O, Op0.getReg());
188 O << ", ";
189 printRegName(O, Op1.getReg());
190 O << ", ";
191 markup(O, Markup::Immediate) << "#" << (Is64Bit ? 64 : 32) - Op2.getImm();
192 O << ", ";
193 markup(O, Markup::Immediate) << "#" << Op3.getImm() + 1;
194 printAnnotation(O, Annot);
195 return;
196 }
197
198 // Otherwise SBFX/UBFX is the preferred form
199 O << '\t' << (IsSigned ? "sbfx" : "ubfx") << '\t';
200 printRegName(O, Op0.getReg());
201 O << ", ";
202 printRegName(O, Op1.getReg());
203 O << ", ";
204 markup(O, Markup::Immediate) << "#" << Op2.getImm();
205 O << ", ";
206 markup(O, Markup::Immediate) << "#" << Op3.getImm() - Op2.getImm() + 1;
207 printAnnotation(O, Annot);
208 return;
209 }
210
211 if (Opcode == AArch64::BFMXri || Opcode == AArch64::BFMWri) {
212 const MCOperand &Op0 = MI->getOperand(0); // Op1 == Op0
213 const MCOperand &Op2 = MI->getOperand(2);
214 int ImmR = MI->getOperand(3).getImm();
215 int ImmS = MI->getOperand(4).getImm();
216
217 if ((Op2.getReg() == AArch64::WZR || Op2.getReg() == AArch64::XZR) &&
218 (ImmR == 0 || ImmS < ImmR) && STI.hasFeature(AArch64::HasV8_2aOps)) {
219 // BFC takes precedence over its entire range, slightly differently to BFI.
220 int BitWidth = Opcode == AArch64::BFMXri ? 64 : 32;
221 int LSB = (BitWidth - ImmR) % BitWidth;
222 int Width = ImmS + 1;
223
224 O << "\tbfc\t";
225 printRegName(O, Op0.getReg());
226 O << ", ";
227 markup(O, Markup::Immediate) << "#" << LSB;
228 O << ", ";
229 markup(O, Markup::Immediate) << "#" << Width;
230 printAnnotation(O, Annot);
231 return;
232 } else if (ImmS < ImmR) {
233 // BFI alias
234 int BitWidth = Opcode == AArch64::BFMXri ? 64 : 32;
235 int LSB = (BitWidth - ImmR) % BitWidth;
236 int Width = ImmS + 1;
237
238 O << "\tbfi\t";
239 printRegName(O, Op0.getReg());
240 O << ", ";
241 printRegName(O, Op2.getReg());
242 O << ", ";
243 markup(O, Markup::Immediate) << "#" << LSB;
244 O << ", ";
245 markup(O, Markup::Immediate) << "#" << Width;
246 printAnnotation(O, Annot);
247 return;
248 }
249
250 int LSB = ImmR;
251 int Width = ImmS - ImmR + 1;
252 // Otherwise BFXIL the preferred form
253 O << "\tbfxil\t";
254 printRegName(O, Op0.getReg());
255 O << ", ";
256 printRegName(O, Op2.getReg());
257 O << ", ";
258 markup(O, Markup::Immediate) << "#" << LSB;
259 O << ", ";
260 markup(O, Markup::Immediate) << "#" << Width;
261 printAnnotation(O, Annot);
262 return;
263 }
264
265 // Symbolic operands for MOVZ, MOVN and MOVK already imply a shift
266 // (e.g. :gottprel_g1: is always going to be "lsl #16") so it should not be
267 // printed.
268 if ((Opcode == AArch64::MOVZXi || Opcode == AArch64::MOVZWi ||
269 Opcode == AArch64::MOVNXi || Opcode == AArch64::MOVNWi) &&
270 MI->getOperand(1).isExpr()) {
271 if (Opcode == AArch64::MOVZXi || Opcode == AArch64::MOVZWi)
272 O << "\tmovz\t";
273 else
274 O << "\tmovn\t";
275
276 printRegName(O, MI->getOperand(0).getReg());
277 O << ", ";
278 {
280 O << "#";
281 MAI.printExpr(O, *MI->getOperand(1).getExpr());
282 }
283 return;
284 }
285
286 if ((Opcode == AArch64::MOVKXi || Opcode == AArch64::MOVKWi) &&
287 MI->getOperand(2).isExpr()) {
288 O << "\tmovk\t";
289 printRegName(O, MI->getOperand(0).getReg());
290 O << ", ";
291 {
293 O << "#";
294 MAI.printExpr(O, *MI->getOperand(2).getExpr());
295 }
296 return;
297 }
298
299 auto PrintMovImm = [&](uint64_t Value, int RegWidth) {
300 int64_t SExtVal = SignExtend64(Value, RegWidth);
301 O << "\tmov\t";
302 printRegName(O, MI->getOperand(0).getReg());
303 O << ", ";
304 markup(O, Markup::Immediate) << "#" << formatImm(SExtVal);
305 if (CommentStream) {
306 // Do the opposite to that used for instruction operands.
307 if (getPrintImmHex())
308 *CommentStream << '=' << formatDec(SExtVal) << '\n';
309 else {
310 uint64_t Mask = maskTrailingOnes<uint64_t>(RegWidth);
311 *CommentStream << '=' << formatHex(SExtVal & Mask) << '\n';
312 }
313 }
314 };
315
316 // MOVZ, MOVN and "ORR wzr, #imm" instructions are aliases for MOV, but their
317 // domains overlap so they need to be prioritized. The chain is "MOVZ lsl #0 >
318 // MOVZ lsl #N > MOVN lsl #0 > MOVN lsl #N > ORR". The highest instruction
319 // that can represent the move is the MOV alias, and the rest get printed
320 // normally.
321 if ((Opcode == AArch64::MOVZXi || Opcode == AArch64::MOVZWi) &&
322 MI->getOperand(1).isImm() && MI->getOperand(2).isImm()) {
323 int RegWidth = Opcode == AArch64::MOVZXi ? 64 : 32;
324 int Shift = MI->getOperand(2).getImm();
325 uint64_t Value = (uint64_t)MI->getOperand(1).getImm() << Shift;
326
328 Opcode == AArch64::MOVZXi ? 64 : 32)) {
329 PrintMovImm(Value, RegWidth);
330 return;
331 }
332 }
333
334 if ((Opcode == AArch64::MOVNXi || Opcode == AArch64::MOVNWi) &&
335 MI->getOperand(1).isImm() && MI->getOperand(2).isImm()) {
336 int RegWidth = Opcode == AArch64::MOVNXi ? 64 : 32;
337 int Shift = MI->getOperand(2).getImm();
338 uint64_t Value = ~((uint64_t)MI->getOperand(1).getImm() << Shift);
339 if (RegWidth == 32)
340 Value = Value & 0xffffffff;
341
342 if (AArch64_AM::isMOVNMovAlias(Value, Shift, RegWidth)) {
343 PrintMovImm(Value, RegWidth);
344 return;
345 }
346 }
347
348 if ((Opcode == AArch64::ORRXri || Opcode == AArch64::ORRWri) &&
349 (MI->getOperand(1).getReg() == AArch64::XZR ||
350 MI->getOperand(1).getReg() == AArch64::WZR) &&
351 MI->getOperand(2).isImm()) {
352 int RegWidth = Opcode == AArch64::ORRXri ? 64 : 32;
354 MI->getOperand(2).getImm(), RegWidth);
355 if (!AArch64_AM::isAnyMOVWMovAlias(Value, RegWidth)) {
356 PrintMovImm(Value, RegWidth);
357 return;
358 }
359 }
360
361 if (Opcode == AArch64::SPACE) {
362 O << '\t' << MAI.getCommentString() << " SPACE "
363 << MI->getOperand(1).getImm();
364 printAnnotation(O, Annot);
365 return;
366 }
367
368 if (!PrintAliases || !printAliasInstr(MI, Address, STI, O))
369 printInstruction(MI, Address, STI, O);
370
371 printAnnotation(O, Annot);
372
373 if (atomicBarrierDroppedOnZero(Opcode) &&
374 (MI->getOperand(0).getReg() == AArch64::XZR ||
375 MI->getOperand(0).getReg() == AArch64::WZR)) {
376 printAnnotation(O, "acquire semantics dropped since destination is zero");
377 }
378}
379
380static bool isTblTbxInstruction(unsigned Opcode, StringRef &Layout,
381 bool &IsTbx) {
382 switch (Opcode) {
383 case AArch64::TBXv8i8One:
384 case AArch64::TBXv8i8Two:
385 case AArch64::TBXv8i8Three:
386 case AArch64::TBXv8i8Four:
387 IsTbx = true;
388 Layout = ".8b";
389 return true;
390 case AArch64::TBLv8i8One:
391 case AArch64::TBLv8i8Two:
392 case AArch64::TBLv8i8Three:
393 case AArch64::TBLv8i8Four:
394 IsTbx = false;
395 Layout = ".8b";
396 return true;
397 case AArch64::TBXv16i8One:
398 case AArch64::TBXv16i8Two:
399 case AArch64::TBXv16i8Three:
400 case AArch64::TBXv16i8Four:
401 IsTbx = true;
402 Layout = ".16b";
403 return true;
404 case AArch64::TBLv16i8One:
405 case AArch64::TBLv16i8Two:
406 case AArch64::TBLv16i8Three:
407 case AArch64::TBLv16i8Four:
408 IsTbx = false;
409 Layout = ".16b";
410 return true;
411 default:
412 return false;
413 }
414}
415
417 unsigned Opcode;
418 const char *Mnemonic;
419 const char *Layout;
423};
424
426 { AArch64::LD1i8, "ld1", ".b", 1, true, 0 },
427 { AArch64::LD1i16, "ld1", ".h", 1, true, 0 },
428 { AArch64::LD1i32, "ld1", ".s", 1, true, 0 },
429 { AArch64::LD1i64, "ld1", ".d", 1, true, 0 },
430 { AArch64::LD1i8_POST, "ld1", ".b", 2, true, 1 },
431 { AArch64::LD1i16_POST, "ld1", ".h", 2, true, 2 },
432 { AArch64::LD1i32_POST, "ld1", ".s", 2, true, 4 },
433 { AArch64::LD1i64_POST, "ld1", ".d", 2, true, 8 },
434 { AArch64::LD1Rv16b, "ld1r", ".16b", 0, false, 0 },
435 { AArch64::LD1Rv8h, "ld1r", ".8h", 0, false, 0 },
436 { AArch64::LD1Rv4s, "ld1r", ".4s", 0, false, 0 },
437 { AArch64::LD1Rv2d, "ld1r", ".2d", 0, false, 0 },
438 { AArch64::LD1Rv8b, "ld1r", ".8b", 0, false, 0 },
439 { AArch64::LD1Rv4h, "ld1r", ".4h", 0, false, 0 },
440 { AArch64::LD1Rv2s, "ld1r", ".2s", 0, false, 0 },
441 { AArch64::LD1Rv1d, "ld1r", ".1d", 0, false, 0 },
442 { AArch64::LD1Rv16b_POST, "ld1r", ".16b", 1, false, 1 },
443 { AArch64::LD1Rv8h_POST, "ld1r", ".8h", 1, false, 2 },
444 { AArch64::LD1Rv4s_POST, "ld1r", ".4s", 1, false, 4 },
445 { AArch64::LD1Rv2d_POST, "ld1r", ".2d", 1, false, 8 },
446 { AArch64::LD1Rv8b_POST, "ld1r", ".8b", 1, false, 1 },
447 { AArch64::LD1Rv4h_POST, "ld1r", ".4h", 1, false, 2 },
448 { AArch64::LD1Rv2s_POST, "ld1r", ".2s", 1, false, 4 },
449 { AArch64::LD1Rv1d_POST, "ld1r", ".1d", 1, false, 8 },
450 { AArch64::LD1Onev16b, "ld1", ".16b", 0, false, 0 },
451 { AArch64::LD1Onev8h, "ld1", ".8h", 0, false, 0 },
452 { AArch64::LD1Onev4s, "ld1", ".4s", 0, false, 0 },
453 { AArch64::LD1Onev2d, "ld1", ".2d", 0, false, 0 },
454 { AArch64::LD1Onev8b, "ld1", ".8b", 0, false, 0 },
455 { AArch64::LD1Onev4h, "ld1", ".4h", 0, false, 0 },
456 { AArch64::LD1Onev2s, "ld1", ".2s", 0, false, 0 },
457 { AArch64::LD1Onev1d, "ld1", ".1d", 0, false, 0 },
458 { AArch64::LD1Onev16b_POST, "ld1", ".16b", 1, false, 16 },
459 { AArch64::LD1Onev8h_POST, "ld1", ".8h", 1, false, 16 },
460 { AArch64::LD1Onev4s_POST, "ld1", ".4s", 1, false, 16 },
461 { AArch64::LD1Onev2d_POST, "ld1", ".2d", 1, false, 16 },
462 { AArch64::LD1Onev8b_POST, "ld1", ".8b", 1, false, 8 },
463 { AArch64::LD1Onev4h_POST, "ld1", ".4h", 1, false, 8 },
464 { AArch64::LD1Onev2s_POST, "ld1", ".2s", 1, false, 8 },
465 { AArch64::LD1Onev1d_POST, "ld1", ".1d", 1, false, 8 },
466 { AArch64::LD1Twov16b, "ld1", ".16b", 0, false, 0 },
467 { AArch64::LD1Twov8h, "ld1", ".8h", 0, false, 0 },
468 { AArch64::LD1Twov4s, "ld1", ".4s", 0, false, 0 },
469 { AArch64::LD1Twov2d, "ld1", ".2d", 0, false, 0 },
470 { AArch64::LD1Twov8b, "ld1", ".8b", 0, false, 0 },
471 { AArch64::LD1Twov4h, "ld1", ".4h", 0, false, 0 },
472 { AArch64::LD1Twov2s, "ld1", ".2s", 0, false, 0 },
473 { AArch64::LD1Twov1d, "ld1", ".1d", 0, false, 0 },
474 { AArch64::LD1Twov16b_POST, "ld1", ".16b", 1, false, 32 },
475 { AArch64::LD1Twov8h_POST, "ld1", ".8h", 1, false, 32 },
476 { AArch64::LD1Twov4s_POST, "ld1", ".4s", 1, false, 32 },
477 { AArch64::LD1Twov2d_POST, "ld1", ".2d", 1, false, 32 },
478 { AArch64::LD1Twov8b_POST, "ld1", ".8b", 1, false, 16 },
479 { AArch64::LD1Twov4h_POST, "ld1", ".4h", 1, false, 16 },
480 { AArch64::LD1Twov2s_POST, "ld1", ".2s", 1, false, 16 },
481 { AArch64::LD1Twov1d_POST, "ld1", ".1d", 1, false, 16 },
482 { AArch64::LD1Threev16b, "ld1", ".16b", 0, false, 0 },
483 { AArch64::LD1Threev8h, "ld1", ".8h", 0, false, 0 },
484 { AArch64::LD1Threev4s, "ld1", ".4s", 0, false, 0 },
485 { AArch64::LD1Threev2d, "ld1", ".2d", 0, false, 0 },
486 { AArch64::LD1Threev8b, "ld1", ".8b", 0, false, 0 },
487 { AArch64::LD1Threev4h, "ld1", ".4h", 0, false, 0 },
488 { AArch64::LD1Threev2s, "ld1", ".2s", 0, false, 0 },
489 { AArch64::LD1Threev1d, "ld1", ".1d", 0, false, 0 },
490 { AArch64::LD1Threev16b_POST, "ld1", ".16b", 1, false, 48 },
491 { AArch64::LD1Threev8h_POST, "ld1", ".8h", 1, false, 48 },
492 { AArch64::LD1Threev4s_POST, "ld1", ".4s", 1, false, 48 },
493 { AArch64::LD1Threev2d_POST, "ld1", ".2d", 1, false, 48 },
494 { AArch64::LD1Threev8b_POST, "ld1", ".8b", 1, false, 24 },
495 { AArch64::LD1Threev4h_POST, "ld1", ".4h", 1, false, 24 },
496 { AArch64::LD1Threev2s_POST, "ld1", ".2s", 1, false, 24 },
497 { AArch64::LD1Threev1d_POST, "ld1", ".1d", 1, false, 24 },
498 { AArch64::LD1Fourv16b, "ld1", ".16b", 0, false, 0 },
499 { AArch64::LD1Fourv8h, "ld1", ".8h", 0, false, 0 },
500 { AArch64::LD1Fourv4s, "ld1", ".4s", 0, false, 0 },
501 { AArch64::LD1Fourv2d, "ld1", ".2d", 0, false, 0 },
502 { AArch64::LD1Fourv8b, "ld1", ".8b", 0, false, 0 },
503 { AArch64::LD1Fourv4h, "ld1", ".4h", 0, false, 0 },
504 { AArch64::LD1Fourv2s, "ld1", ".2s", 0, false, 0 },
505 { AArch64::LD1Fourv1d, "ld1", ".1d", 0, false, 0 },
506 { AArch64::LD1Fourv16b_POST, "ld1", ".16b", 1, false, 64 },
507 { AArch64::LD1Fourv8h_POST, "ld1", ".8h", 1, false, 64 },
508 { AArch64::LD1Fourv4s_POST, "ld1", ".4s", 1, false, 64 },
509 { AArch64::LD1Fourv2d_POST, "ld1", ".2d", 1, false, 64 },
510 { AArch64::LD1Fourv8b_POST, "ld1", ".8b", 1, false, 32 },
511 { AArch64::LD1Fourv4h_POST, "ld1", ".4h", 1, false, 32 },
512 { AArch64::LD1Fourv2s_POST, "ld1", ".2s", 1, false, 32 },
513 { AArch64::LD1Fourv1d_POST, "ld1", ".1d", 1, false, 32 },
514 { AArch64::LD2i8, "ld2", ".b", 1, true, 0 },
515 { AArch64::LD2i16, "ld2", ".h", 1, true, 0 },
516 { AArch64::LD2i32, "ld2", ".s", 1, true, 0 },
517 { AArch64::LD2i64, "ld2", ".d", 1, true, 0 },
518 { AArch64::LD2i8_POST, "ld2", ".b", 2, true, 2 },
519 { AArch64::LD2i16_POST, "ld2", ".h", 2, true, 4 },
520 { AArch64::LD2i32_POST, "ld2", ".s", 2, true, 8 },
521 { AArch64::LD2i64_POST, "ld2", ".d", 2, true, 16 },
522 { AArch64::LD2Rv16b, "ld2r", ".16b", 0, false, 0 },
523 { AArch64::LD2Rv8h, "ld2r", ".8h", 0, false, 0 },
524 { AArch64::LD2Rv4s, "ld2r", ".4s", 0, false, 0 },
525 { AArch64::LD2Rv2d, "ld2r", ".2d", 0, false, 0 },
526 { AArch64::LD2Rv8b, "ld2r", ".8b", 0, false, 0 },
527 { AArch64::LD2Rv4h, "ld2r", ".4h", 0, false, 0 },
528 { AArch64::LD2Rv2s, "ld2r", ".2s", 0, false, 0 },
529 { AArch64::LD2Rv1d, "ld2r", ".1d", 0, false, 0 },
530 { AArch64::LD2Rv16b_POST, "ld2r", ".16b", 1, false, 2 },
531 { AArch64::LD2Rv8h_POST, "ld2r", ".8h", 1, false, 4 },
532 { AArch64::LD2Rv4s_POST, "ld2r", ".4s", 1, false, 8 },
533 { AArch64::LD2Rv2d_POST, "ld2r", ".2d", 1, false, 16 },
534 { AArch64::LD2Rv8b_POST, "ld2r", ".8b", 1, false, 2 },
535 { AArch64::LD2Rv4h_POST, "ld2r", ".4h", 1, false, 4 },
536 { AArch64::LD2Rv2s_POST, "ld2r", ".2s", 1, false, 8 },
537 { AArch64::LD2Rv1d_POST, "ld2r", ".1d", 1, false, 16 },
538 { AArch64::LD2Twov16b, "ld2", ".16b", 0, false, 0 },
539 { AArch64::LD2Twov8h, "ld2", ".8h", 0, false, 0 },
540 { AArch64::LD2Twov4s, "ld2", ".4s", 0, false, 0 },
541 { AArch64::LD2Twov2d, "ld2", ".2d", 0, false, 0 },
542 { AArch64::LD2Twov8b, "ld2", ".8b", 0, false, 0 },
543 { AArch64::LD2Twov4h, "ld2", ".4h", 0, false, 0 },
544 { AArch64::LD2Twov2s, "ld2", ".2s", 0, false, 0 },
545 { AArch64::LD2Twov16b_POST, "ld2", ".16b", 1, false, 32 },
546 { AArch64::LD2Twov8h_POST, "ld2", ".8h", 1, false, 32 },
547 { AArch64::LD2Twov4s_POST, "ld2", ".4s", 1, false, 32 },
548 { AArch64::LD2Twov2d_POST, "ld2", ".2d", 1, false, 32 },
549 { AArch64::LD2Twov8b_POST, "ld2", ".8b", 1, false, 16 },
550 { AArch64::LD2Twov4h_POST, "ld2", ".4h", 1, false, 16 },
551 { AArch64::LD2Twov2s_POST, "ld2", ".2s", 1, false, 16 },
552 { AArch64::LD3i8, "ld3", ".b", 1, true, 0 },
553 { AArch64::LD3i16, "ld3", ".h", 1, true, 0 },
554 { AArch64::LD3i32, "ld3", ".s", 1, true, 0 },
555 { AArch64::LD3i64, "ld3", ".d", 1, true, 0 },
556 { AArch64::LD3i8_POST, "ld3", ".b", 2, true, 3 },
557 { AArch64::LD3i16_POST, "ld3", ".h", 2, true, 6 },
558 { AArch64::LD3i32_POST, "ld3", ".s", 2, true, 12 },
559 { AArch64::LD3i64_POST, "ld3", ".d", 2, true, 24 },
560 { AArch64::LD3Rv16b, "ld3r", ".16b", 0, false, 0 },
561 { AArch64::LD3Rv8h, "ld3r", ".8h", 0, false, 0 },
562 { AArch64::LD3Rv4s, "ld3r", ".4s", 0, false, 0 },
563 { AArch64::LD3Rv2d, "ld3r", ".2d", 0, false, 0 },
564 { AArch64::LD3Rv8b, "ld3r", ".8b", 0, false, 0 },
565 { AArch64::LD3Rv4h, "ld3r", ".4h", 0, false, 0 },
566 { AArch64::LD3Rv2s, "ld3r", ".2s", 0, false, 0 },
567 { AArch64::LD3Rv1d, "ld3r", ".1d", 0, false, 0 },
568 { AArch64::LD3Rv16b_POST, "ld3r", ".16b", 1, false, 3 },
569 { AArch64::LD3Rv8h_POST, "ld3r", ".8h", 1, false, 6 },
570 { AArch64::LD3Rv4s_POST, "ld3r", ".4s", 1, false, 12 },
571 { AArch64::LD3Rv2d_POST, "ld3r", ".2d", 1, false, 24 },
572 { AArch64::LD3Rv8b_POST, "ld3r", ".8b", 1, false, 3 },
573 { AArch64::LD3Rv4h_POST, "ld3r", ".4h", 1, false, 6 },
574 { AArch64::LD3Rv2s_POST, "ld3r", ".2s", 1, false, 12 },
575 { AArch64::LD3Rv1d_POST, "ld3r", ".1d", 1, false, 24 },
576 { AArch64::LD3Threev16b, "ld3", ".16b", 0, false, 0 },
577 { AArch64::LD3Threev8h, "ld3", ".8h", 0, false, 0 },
578 { AArch64::LD3Threev4s, "ld3", ".4s", 0, false, 0 },
579 { AArch64::LD3Threev2d, "ld3", ".2d", 0, false, 0 },
580 { AArch64::LD3Threev8b, "ld3", ".8b", 0, false, 0 },
581 { AArch64::LD3Threev4h, "ld3", ".4h", 0, false, 0 },
582 { AArch64::LD3Threev2s, "ld3", ".2s", 0, false, 0 },
583 { AArch64::LD3Threev16b_POST, "ld3", ".16b", 1, false, 48 },
584 { AArch64::LD3Threev8h_POST, "ld3", ".8h", 1, false, 48 },
585 { AArch64::LD3Threev4s_POST, "ld3", ".4s", 1, false, 48 },
586 { AArch64::LD3Threev2d_POST, "ld3", ".2d", 1, false, 48 },
587 { AArch64::LD3Threev8b_POST, "ld3", ".8b", 1, false, 24 },
588 { AArch64::LD3Threev4h_POST, "ld3", ".4h", 1, false, 24 },
589 { AArch64::LD3Threev2s_POST, "ld3", ".2s", 1, false, 24 },
590 { AArch64::LD4i8, "ld4", ".b", 1, true, 0 },
591 { AArch64::LD4i16, "ld4", ".h", 1, true, 0 },
592 { AArch64::LD4i32, "ld4", ".s", 1, true, 0 },
593 { AArch64::LD4i64, "ld4", ".d", 1, true, 0 },
594 { AArch64::LD4i8_POST, "ld4", ".b", 2, true, 4 },
595 { AArch64::LD4i16_POST, "ld4", ".h", 2, true, 8 },
596 { AArch64::LD4i32_POST, "ld4", ".s", 2, true, 16 },
597 { AArch64::LD4i64_POST, "ld4", ".d", 2, true, 32 },
598 { AArch64::LD4Rv16b, "ld4r", ".16b", 0, false, 0 },
599 { AArch64::LD4Rv8h, "ld4r", ".8h", 0, false, 0 },
600 { AArch64::LD4Rv4s, "ld4r", ".4s", 0, false, 0 },
601 { AArch64::LD4Rv2d, "ld4r", ".2d", 0, false, 0 },
602 { AArch64::LD4Rv8b, "ld4r", ".8b", 0, false, 0 },
603 { AArch64::LD4Rv4h, "ld4r", ".4h", 0, false, 0 },
604 { AArch64::LD4Rv2s, "ld4r", ".2s", 0, false, 0 },
605 { AArch64::LD4Rv1d, "ld4r", ".1d", 0, false, 0 },
606 { AArch64::LD4Rv16b_POST, "ld4r", ".16b", 1, false, 4 },
607 { AArch64::LD4Rv8h_POST, "ld4r", ".8h", 1, false, 8 },
608 { AArch64::LD4Rv4s_POST, "ld4r", ".4s", 1, false, 16 },
609 { AArch64::LD4Rv2d_POST, "ld4r", ".2d", 1, false, 32 },
610 { AArch64::LD4Rv8b_POST, "ld4r", ".8b", 1, false, 4 },
611 { AArch64::LD4Rv4h_POST, "ld4r", ".4h", 1, false, 8 },
612 { AArch64::LD4Rv2s_POST, "ld4r", ".2s", 1, false, 16 },
613 { AArch64::LD4Rv1d_POST, "ld4r", ".1d", 1, false, 32 },
614 { AArch64::LD4Fourv16b, "ld4", ".16b", 0, false, 0 },
615 { AArch64::LD4Fourv8h, "ld4", ".8h", 0, false, 0 },
616 { AArch64::LD4Fourv4s, "ld4", ".4s", 0, false, 0 },
617 { AArch64::LD4Fourv2d, "ld4", ".2d", 0, false, 0 },
618 { AArch64::LD4Fourv8b, "ld4", ".8b", 0, false, 0 },
619 { AArch64::LD4Fourv4h, "ld4", ".4h", 0, false, 0 },
620 { AArch64::LD4Fourv2s, "ld4", ".2s", 0, false, 0 },
621 { AArch64::LD4Fourv16b_POST, "ld4", ".16b", 1, false, 64 },
622 { AArch64::LD4Fourv8h_POST, "ld4", ".8h", 1, false, 64 },
623 { AArch64::LD4Fourv4s_POST, "ld4", ".4s", 1, false, 64 },
624 { AArch64::LD4Fourv2d_POST, "ld4", ".2d", 1, false, 64 },
625 { AArch64::LD4Fourv8b_POST, "ld4", ".8b", 1, false, 32 },
626 { AArch64::LD4Fourv4h_POST, "ld4", ".4h", 1, false, 32 },
627 { AArch64::LD4Fourv2s_POST, "ld4", ".2s", 1, false, 32 },
628 { AArch64::ST1i8, "st1", ".b", 0, true, 0 },
629 { AArch64::ST1i16, "st1", ".h", 0, true, 0 },
630 { AArch64::ST1i32, "st1", ".s", 0, true, 0 },
631 { AArch64::ST1i64, "st1", ".d", 0, true, 0 },
632 { AArch64::ST1i8_POST, "st1", ".b", 1, true, 1 },
633 { AArch64::ST1i16_POST, "st1", ".h", 1, true, 2 },
634 { AArch64::ST1i32_POST, "st1", ".s", 1, true, 4 },
635 { AArch64::ST1i64_POST, "st1", ".d", 1, true, 8 },
636 { AArch64::ST1Onev16b, "st1", ".16b", 0, false, 0 },
637 { AArch64::ST1Onev8h, "st1", ".8h", 0, false, 0 },
638 { AArch64::ST1Onev4s, "st1", ".4s", 0, false, 0 },
639 { AArch64::ST1Onev2d, "st1", ".2d", 0, false, 0 },
640 { AArch64::ST1Onev8b, "st1", ".8b", 0, false, 0 },
641 { AArch64::ST1Onev4h, "st1", ".4h", 0, false, 0 },
642 { AArch64::ST1Onev2s, "st1", ".2s", 0, false, 0 },
643 { AArch64::ST1Onev1d, "st1", ".1d", 0, false, 0 },
644 { AArch64::ST1Onev16b_POST, "st1", ".16b", 1, false, 16 },
645 { AArch64::ST1Onev8h_POST, "st1", ".8h", 1, false, 16 },
646 { AArch64::ST1Onev4s_POST, "st1", ".4s", 1, false, 16 },
647 { AArch64::ST1Onev2d_POST, "st1", ".2d", 1, false, 16 },
648 { AArch64::ST1Onev8b_POST, "st1", ".8b", 1, false, 8 },
649 { AArch64::ST1Onev4h_POST, "st1", ".4h", 1, false, 8 },
650 { AArch64::ST1Onev2s_POST, "st1", ".2s", 1, false, 8 },
651 { AArch64::ST1Onev1d_POST, "st1", ".1d", 1, false, 8 },
652 { AArch64::ST1Twov16b, "st1", ".16b", 0, false, 0 },
653 { AArch64::ST1Twov8h, "st1", ".8h", 0, false, 0 },
654 { AArch64::ST1Twov4s, "st1", ".4s", 0, false, 0 },
655 { AArch64::ST1Twov2d, "st1", ".2d", 0, false, 0 },
656 { AArch64::ST1Twov8b, "st1", ".8b", 0, false, 0 },
657 { AArch64::ST1Twov4h, "st1", ".4h", 0, false, 0 },
658 { AArch64::ST1Twov2s, "st1", ".2s", 0, false, 0 },
659 { AArch64::ST1Twov1d, "st1", ".1d", 0, false, 0 },
660 { AArch64::ST1Twov16b_POST, "st1", ".16b", 1, false, 32 },
661 { AArch64::ST1Twov8h_POST, "st1", ".8h", 1, false, 32 },
662 { AArch64::ST1Twov4s_POST, "st1", ".4s", 1, false, 32 },
663 { AArch64::ST1Twov2d_POST, "st1", ".2d", 1, false, 32 },
664 { AArch64::ST1Twov8b_POST, "st1", ".8b", 1, false, 16 },
665 { AArch64::ST1Twov4h_POST, "st1", ".4h", 1, false, 16 },
666 { AArch64::ST1Twov2s_POST, "st1", ".2s", 1, false, 16 },
667 { AArch64::ST1Twov1d_POST, "st1", ".1d", 1, false, 16 },
668 { AArch64::ST1Threev16b, "st1", ".16b", 0, false, 0 },
669 { AArch64::ST1Threev8h, "st1", ".8h", 0, false, 0 },
670 { AArch64::ST1Threev4s, "st1", ".4s", 0, false, 0 },
671 { AArch64::ST1Threev2d, "st1", ".2d", 0, false, 0 },
672 { AArch64::ST1Threev8b, "st1", ".8b", 0, false, 0 },
673 { AArch64::ST1Threev4h, "st1", ".4h", 0, false, 0 },
674 { AArch64::ST1Threev2s, "st1", ".2s", 0, false, 0 },
675 { AArch64::ST1Threev1d, "st1", ".1d", 0, false, 0 },
676 { AArch64::ST1Threev16b_POST, "st1", ".16b", 1, false, 48 },
677 { AArch64::ST1Threev8h_POST, "st1", ".8h", 1, false, 48 },
678 { AArch64::ST1Threev4s_POST, "st1", ".4s", 1, false, 48 },
679 { AArch64::ST1Threev2d_POST, "st1", ".2d", 1, false, 48 },
680 { AArch64::ST1Threev8b_POST, "st1", ".8b", 1, false, 24 },
681 { AArch64::ST1Threev4h_POST, "st1", ".4h", 1, false, 24 },
682 { AArch64::ST1Threev2s_POST, "st1", ".2s", 1, false, 24 },
683 { AArch64::ST1Threev1d_POST, "st1", ".1d", 1, false, 24 },
684 { AArch64::ST1Fourv16b, "st1", ".16b", 0, false, 0 },
685 { AArch64::ST1Fourv8h, "st1", ".8h", 0, false, 0 },
686 { AArch64::ST1Fourv4s, "st1", ".4s", 0, false, 0 },
687 { AArch64::ST1Fourv2d, "st1", ".2d", 0, false, 0 },
688 { AArch64::ST1Fourv8b, "st1", ".8b", 0, false, 0 },
689 { AArch64::ST1Fourv4h, "st1", ".4h", 0, false, 0 },
690 { AArch64::ST1Fourv2s, "st1", ".2s", 0, false, 0 },
691 { AArch64::ST1Fourv1d, "st1", ".1d", 0, false, 0 },
692 { AArch64::ST1Fourv16b_POST, "st1", ".16b", 1, false, 64 },
693 { AArch64::ST1Fourv8h_POST, "st1", ".8h", 1, false, 64 },
694 { AArch64::ST1Fourv4s_POST, "st1", ".4s", 1, false, 64 },
695 { AArch64::ST1Fourv2d_POST, "st1", ".2d", 1, false, 64 },
696 { AArch64::ST1Fourv8b_POST, "st1", ".8b", 1, false, 32 },
697 { AArch64::ST1Fourv4h_POST, "st1", ".4h", 1, false, 32 },
698 { AArch64::ST1Fourv2s_POST, "st1", ".2s", 1, false, 32 },
699 { AArch64::ST1Fourv1d_POST, "st1", ".1d", 1, false, 32 },
700 { AArch64::ST2i8, "st2", ".b", 0, true, 0 },
701 { AArch64::ST2i16, "st2", ".h", 0, true, 0 },
702 { AArch64::ST2i32, "st2", ".s", 0, true, 0 },
703 { AArch64::ST2i64, "st2", ".d", 0, true, 0 },
704 { AArch64::ST2i8_POST, "st2", ".b", 1, true, 2 },
705 { AArch64::ST2i16_POST, "st2", ".h", 1, true, 4 },
706 { AArch64::ST2i32_POST, "st2", ".s", 1, true, 8 },
707 { AArch64::ST2i64_POST, "st2", ".d", 1, true, 16 },
708 { AArch64::ST2Twov16b, "st2", ".16b", 0, false, 0 },
709 { AArch64::ST2Twov8h, "st2", ".8h", 0, false, 0 },
710 { AArch64::ST2Twov4s, "st2", ".4s", 0, false, 0 },
711 { AArch64::ST2Twov2d, "st2", ".2d", 0, false, 0 },
712 { AArch64::ST2Twov8b, "st2", ".8b", 0, false, 0 },
713 { AArch64::ST2Twov4h, "st2", ".4h", 0, false, 0 },
714 { AArch64::ST2Twov2s, "st2", ".2s", 0, false, 0 },
715 { AArch64::ST2Twov16b_POST, "st2", ".16b", 1, false, 32 },
716 { AArch64::ST2Twov8h_POST, "st2", ".8h", 1, false, 32 },
717 { AArch64::ST2Twov4s_POST, "st2", ".4s", 1, false, 32 },
718 { AArch64::ST2Twov2d_POST, "st2", ".2d", 1, false, 32 },
719 { AArch64::ST2Twov8b_POST, "st2", ".8b", 1, false, 16 },
720 { AArch64::ST2Twov4h_POST, "st2", ".4h", 1, false, 16 },
721 { AArch64::ST2Twov2s_POST, "st2", ".2s", 1, false, 16 },
722 { AArch64::ST3i8, "st3", ".b", 0, true, 0 },
723 { AArch64::ST3i16, "st3", ".h", 0, true, 0 },
724 { AArch64::ST3i32, "st3", ".s", 0, true, 0 },
725 { AArch64::ST3i64, "st3", ".d", 0, true, 0 },
726 { AArch64::ST3i8_POST, "st3", ".b", 1, true, 3 },
727 { AArch64::ST3i16_POST, "st3", ".h", 1, true, 6 },
728 { AArch64::ST3i32_POST, "st3", ".s", 1, true, 12 },
729 { AArch64::ST3i64_POST, "st3", ".d", 1, true, 24 },
730 { AArch64::ST3Threev16b, "st3", ".16b", 0, false, 0 },
731 { AArch64::ST3Threev8h, "st3", ".8h", 0, false, 0 },
732 { AArch64::ST3Threev4s, "st3", ".4s", 0, false, 0 },
733 { AArch64::ST3Threev2d, "st3", ".2d", 0, false, 0 },
734 { AArch64::ST3Threev8b, "st3", ".8b", 0, false, 0 },
735 { AArch64::ST3Threev4h, "st3", ".4h", 0, false, 0 },
736 { AArch64::ST3Threev2s, "st3", ".2s", 0, false, 0 },
737 { AArch64::ST3Threev16b_POST, "st3", ".16b", 1, false, 48 },
738 { AArch64::ST3Threev8h_POST, "st3", ".8h", 1, false, 48 },
739 { AArch64::ST3Threev4s_POST, "st3", ".4s", 1, false, 48 },
740 { AArch64::ST3Threev2d_POST, "st3", ".2d", 1, false, 48 },
741 { AArch64::ST3Threev8b_POST, "st3", ".8b", 1, false, 24 },
742 { AArch64::ST3Threev4h_POST, "st3", ".4h", 1, false, 24 },
743 { AArch64::ST3Threev2s_POST, "st3", ".2s", 1, false, 24 },
744 { AArch64::ST4i8, "st4", ".b", 0, true, 0 },
745 { AArch64::ST4i16, "st4", ".h", 0, true, 0 },
746 { AArch64::ST4i32, "st4", ".s", 0, true, 0 },
747 { AArch64::ST4i64, "st4", ".d", 0, true, 0 },
748 { AArch64::ST4i8_POST, "st4", ".b", 1, true, 4 },
749 { AArch64::ST4i16_POST, "st4", ".h", 1, true, 8 },
750 { AArch64::ST4i32_POST, "st4", ".s", 1, true, 16 },
751 { AArch64::ST4i64_POST, "st4", ".d", 1, true, 32 },
752 { AArch64::ST4Fourv16b, "st4", ".16b", 0, false, 0 },
753 { AArch64::ST4Fourv8h, "st4", ".8h", 0, false, 0 },
754 { AArch64::ST4Fourv4s, "st4", ".4s", 0, false, 0 },
755 { AArch64::ST4Fourv2d, "st4", ".2d", 0, false, 0 },
756 { AArch64::ST4Fourv8b, "st4", ".8b", 0, false, 0 },
757 { AArch64::ST4Fourv4h, "st4", ".4h", 0, false, 0 },
758 { AArch64::ST4Fourv2s, "st4", ".2s", 0, false, 0 },
759 { AArch64::ST4Fourv16b_POST, "st4", ".16b", 1, false, 64 },
760 { AArch64::ST4Fourv8h_POST, "st4", ".8h", 1, false, 64 },
761 { AArch64::ST4Fourv4s_POST, "st4", ".4s", 1, false, 64 },
762 { AArch64::ST4Fourv2d_POST, "st4", ".2d", 1, false, 64 },
763 { AArch64::ST4Fourv8b_POST, "st4", ".8b", 1, false, 32 },
764 { AArch64::ST4Fourv4h_POST, "st4", ".4h", 1, false, 32 },
765 { AArch64::ST4Fourv2s_POST, "st4", ".2s", 1, false, 32 },
766};
767
768static const LdStNInstrDesc *getLdStNInstrDesc(unsigned Opcode) {
769 for (const auto &Info : LdStNInstInfo)
770 if (Info.Opcode == Opcode)
771 return &Info;
772
773 return nullptr;
774}
775
777 StringRef Annot,
778 const MCSubtargetInfo &STI,
779 raw_ostream &O) {
780 unsigned Opcode = MI->getOpcode();
781 StringRef Layout;
782
783 bool IsTbx;
784 if (isTblTbxInstruction(MI->getOpcode(), Layout, IsTbx)) {
785 O << "\t" << (IsTbx ? "tbx" : "tbl") << Layout << '\t';
786 printRegName(O, MI->getOperand(0).getReg(), AArch64::vreg);
787 O << ", ";
788
789 unsigned ListOpNum = IsTbx ? 2 : 1;
790 printVectorList(MI, ListOpNum, STI, O, "");
791
792 O << ", ";
793 printRegName(O, MI->getOperand(ListOpNum + 1).getReg(), AArch64::vreg);
794 printAnnotation(O, Annot);
795 return;
796 }
797
798 if (const LdStNInstrDesc *LdStDesc = getLdStNInstrDesc(Opcode)) {
799 O << "\t" << LdStDesc->Mnemonic << LdStDesc->Layout << '\t';
800
801 // Now onto the operands: first a vector list with possible lane
802 // specifier. E.g. { v0 }[2]
803 int OpNum = LdStDesc->ListOperand;
804 printVectorList(MI, OpNum++, STI, O, "");
805
806 if (LdStDesc->HasLane)
807 O << '[' << MI->getOperand(OpNum++).getImm() << ']';
808
809 // Next the address: [xN]
810 MCRegister AddrReg = MI->getOperand(OpNum++).getReg();
811 O << ", [";
812 printRegName(O, AddrReg);
813 O << ']';
814
815 // Finally, there might be a post-indexed offset.
816 if (LdStDesc->NaturalOffset != 0) {
817 MCRegister Reg = MI->getOperand(OpNum++).getReg();
818 if (Reg != AArch64::XZR) {
819 O << ", ";
820 printRegName(O, Reg);
821 } else {
822 assert(LdStDesc->NaturalOffset && "no offset on post-inc instruction?");
823 O << ", ";
824 markup(O, Markup::Immediate) << "#" << LdStDesc->NaturalOffset;
825 }
826 }
827
828 printAnnotation(O, Annot);
829 return;
830 }
831
833}
834
838
840 const MCSubtargetInfo &STI,
841 raw_ostream &O,
842 StringRef Annot) {
843 unsigned Opcode = MI->getOpcode();
844
845#ifndef NDEBUG
846 assert(((Opcode == AArch64::PRFMroX) || (Opcode == AArch64::PRFMroW)) &&
847 "Invalid opcode for RPRFM alias!");
848#endif
849
850 unsigned PRFOp = MI->getOperand(0).getImm();
851 unsigned Mask = 0x18; // 0b11000
852 if ((PRFOp & Mask) != Mask)
853 return false; // Rt != '11xxx', it's a PRFM instruction.
854
855 MCRegister Rm = MI->getOperand(2).getReg();
856
857 // "Rm" must be a 64-bit GPR for RPRFM.
858 if (MRI.getRegClass(AArch64::GPR32RegClassID).contains(Rm))
859 Rm = MRI.getMatchingSuperReg(Rm, AArch64::sub_32,
860 &MRI.getRegClass(AArch64::GPR64RegClassID));
861
862 unsigned SignExtend = MI->getOperand(3).getImm(); // encoded in "option<2>".
863 unsigned Shift = MI->getOperand(4).getImm(); // encoded in "S".
864
865 assert((SignExtend <= 1) && "sign extend should be a single bit!");
866 assert((Shift <= 1) && "Shift should be a single bit!");
867
868 unsigned Option0 = (Opcode == AArch64::PRFMroX) ? 1 : 0;
869
870 // encoded in "option<2>:option<0>:S:Rt<2:0>".
871 unsigned RPRFOp =
872 (SignExtend << 5) | (Option0 << 4) | (Shift << 3) | (PRFOp & 0x7);
873
874 O << "\trprfm ";
875 if (auto RPRFM = AArch64RPRFM::lookupRPRFMByEncoding(RPRFOp))
876 O << RPRFM->Name << ", ";
877 else
878 O << "#" << formatImm(RPRFOp) << ", ";
879 O << getRegisterName(Rm);
880 O << ", [";
881 printOperand(MI, 1, STI, O); // "Rn".
882 O << "]";
883
884 printAnnotation(O, Annot);
885
886 return true;
887}
888
890 const MCSubtargetInfo &STI,
891 raw_ostream &O) {
892#ifndef NDEBUG
893 unsigned Opcode = MI->getOpcode();
894 assert(Opcode == AArch64::SYSxt && "Invalid opcode for SYS alias!");
895#endif
896
897 const MCOperand &Op1 = MI->getOperand(0);
898 const MCOperand &Cn = MI->getOperand(1);
899 const MCOperand &Cm = MI->getOperand(2);
900 const MCOperand &Op2 = MI->getOperand(3);
901
902 unsigned Op1Val = Op1.getImm();
903 unsigned CnVal = Cn.getImm();
904 unsigned CmVal = Cm.getImm();
905 unsigned Op2Val = Op2.getImm();
906
907 uint16_t Encoding = Op2Val;
908 Encoding |= CmVal << 3;
909 Encoding |= CnVal << 7;
910 Encoding |= Op1Val << 11;
911
912 bool NeedsReg;
913 std::string Ins;
914 std::string Name;
915
916 if (CnVal == 7) {
917 switch (CmVal) {
918 default: return false;
919 // Maybe IC, maybe Prediction Restriction
920 case 1:
921 switch (Op1Val) {
922 default: return false;
923 case 0: goto Search_IC;
924 case 3: goto Search_PRCTX;
925 }
926 // Prediction Restriction aliases
927 case 3: {
928 Search_PRCTX:
929 if (Op1Val != 3 || CnVal != 7 || CmVal != 3)
930 return false;
931
932 const auto Requires =
933 Op2Val == 6 ? AArch64::FeatureSPECRES2 : AArch64::FeaturePredRes;
934 if (!(STI.hasFeature(AArch64::FeatureAll) || STI.hasFeature(Requires)))
935 return false;
936
937 NeedsReg = true;
938 switch (Op2Val) {
939 default: return false;
940 case 4: Ins = "cfp\t"; break;
941 case 5: Ins = "dvp\t"; break;
942 case 6: Ins = "cosp\t"; break;
943 case 7: Ins = "cpp\t"; break;
944 }
945 Name = "RCTX";
946 }
947 break;
948 // IC aliases
949 case 5: {
950 Search_IC:
951 const AArch64IC::IC *IC = AArch64IC::lookupICByEncoding(Encoding);
952 if (!IC || !IC->haveFeatures(STI.getFeatureBits()))
953 return false;
954
955 NeedsReg = IC->NeedsReg;
956 Ins = "ic\t";
957 Name = std::string(IC->Name);
958 }
959 break;
960 // DC aliases
961 case 4: case 6: case 10: case 11: case 12: case 13: case 14:
962 {
963 const AArch64DC::DC *DC = AArch64DC::lookupDCByEncoding(Encoding);
964 if (!DC || !DC->haveFeatures(STI.getFeatureBits()))
965 return false;
966
967 NeedsReg = true;
968 Ins = "dc\t";
969 Name = std::string(DC->Name);
970 }
971 break;
972 // AT aliases
973 case 8: case 9: {
974 const AArch64AT::AT *AT = AArch64AT::lookupATByEncoding(Encoding);
975 if (!AT || !AT->haveFeatures(STI.getFeatureBits()))
976 return false;
977
978 NeedsReg = true;
979 Ins = "at\t";
980 Name = std::string(AT->Name);
981 }
982 break;
983 // Overlaps with AT and DC
984 case 15: {
985 const AArch64AT::AT *AT = AArch64AT::lookupATByEncoding(Encoding);
986 const AArch64DC::DC *DC = AArch64DC::lookupDCByEncoding(Encoding);
987 if (AT && AT->haveFeatures(STI.getFeatureBits())) {
988 NeedsReg = true;
989 Ins = "at\t";
990 Name = std::string(AT->Name);
991 } else if (DC && DC->haveFeatures(STI.getFeatureBits())) {
992 NeedsReg = true;
993 Ins = "dc\t";
994 Name = std::string(DC->Name);
995 } else {
996 return false;
997 }
998 } break;
999 }
1000 } else if (CnVal == 8 || CnVal == 9) {
1001 // TLBI aliases
1002 const AArch64TLBI::TLBI *TLBI = AArch64TLBI::lookupTLBIByEncoding(Encoding);
1003 if (!TLBI || !TLBI->haveFeatures(STI.getFeatureBits()))
1004 return false;
1005
1006 NeedsReg = TLBI->NeedsReg;
1007 Ins = "tlbi\t";
1008 Name = std::string(TLBI->Name);
1009 }
1010 else
1011 return false;
1012
1013 StringRef Reg = getRegisterName(MI->getOperand(4).getReg());
1014 bool NotXZR = Reg != "xzr";
1015
1016 // If a mandatory is not specified in the TableGen
1017 // (i.e. no register operand should be present), and the register value
1018 // is not xzr/x31, then disassemble to a SYS alias instead.
1019 if (NotXZR && !NeedsReg)
1020 return false;
1021
1022 std::string Str = Ins + Name;
1023 llvm::transform(Str, Str.begin(), ::tolower);
1024
1025 O << '\t' << Str;
1026
1027 if (NeedsReg)
1028 O << ", " << Reg;
1029
1030 return true;
1031}
1032
1034 const MCSubtargetInfo &STI,
1035 raw_ostream &O) {
1036#ifndef NDEBUG
1037 unsigned Opcode = MI->getOpcode();
1038 assert((Opcode == AArch64::SYSPxt || Opcode == AArch64::SYSPxt_XZR) &&
1039 "Invalid opcode for SYSP alias!");
1040#endif
1041
1042 const MCOperand &Op1 = MI->getOperand(0);
1043 const MCOperand &Cn = MI->getOperand(1);
1044 const MCOperand &Cm = MI->getOperand(2);
1045 const MCOperand &Op2 = MI->getOperand(3);
1046
1047 unsigned Op1Val = Op1.getImm();
1048 unsigned CnVal = Cn.getImm();
1049 unsigned CmVal = Cm.getImm();
1050 unsigned Op2Val = Op2.getImm();
1051
1052 uint16_t Encoding = Op2Val;
1053 Encoding |= CmVal << 3;
1054 Encoding |= CnVal << 7;
1055 Encoding |= Op1Val << 11;
1056
1057 std::string Ins;
1058 std::string Name;
1059
1060 if (CnVal == 8 || CnVal == 9) {
1061 // TLBIP aliases
1062
1063 if (CnVal == 9) {
1064 if (!STI.hasFeature(AArch64::FeatureXS))
1065 return false;
1066 Encoding &= ~(1 << 7);
1067 }
1068
1069 const AArch64TLBIP::TLBIP *TLBIP =
1070 AArch64TLBIP::lookupTLBIPByEncoding(Encoding);
1071 if (!TLBIP || !TLBIP->haveFeatures(STI.getFeatureBits()))
1072 return false;
1073
1074 Ins = "tlbip\t";
1075 Name = std::string(TLBIP->Name);
1076 if (CnVal == 9)
1077 Name += "nXS";
1078 } else
1079 return false;
1080
1081 std::string Str = Ins + Name;
1082 llvm::transform(Str, Str.begin(), ::tolower);
1083
1084 O << '\t' << Str;
1085 O << ", ";
1086 if (MI->getOperand(4).getReg() == AArch64::XZR)
1087 printSyspXzrPair(MI, 4, STI, O);
1088 else
1090
1091 return true;
1092}
1093
1094template <int EltSize>
1095void AArch64InstPrinter::printMatrix(const MCInst *MI, unsigned OpNum,
1096 const MCSubtargetInfo &STI,
1097 raw_ostream &O) {
1098 const MCOperand &RegOp = MI->getOperand(OpNum);
1099 assert(RegOp.isReg() && "Unexpected operand type!");
1100
1101 printRegName(O, RegOp.getReg());
1102 switch (EltSize) {
1103 case 0:
1104 break;
1105 case 8:
1106 O << ".b";
1107 break;
1108 case 16:
1109 O << ".h";
1110 break;
1111 case 32:
1112 O << ".s";
1113 break;
1114 case 64:
1115 O << ".d";
1116 break;
1117 case 128:
1118 O << ".q";
1119 break;
1120 default:
1121 llvm_unreachable("Unsupported element size");
1122 }
1123}
1124
1125template <bool IsVertical>
1127 const MCSubtargetInfo &STI,
1128 raw_ostream &O) {
1129 const MCOperand &RegOp = MI->getOperand(OpNum);
1130 assert(RegOp.isReg() && "Unexpected operand type!");
1132
1133 // Insert the horizontal/vertical flag before the suffix.
1134 StringRef Base, Suffix;
1135 std::tie(Base, Suffix) = RegName.split('.');
1136 O << Base << (IsVertical ? "v" : "h") << '.' << Suffix;
1137}
1138
1140 const MCSubtargetInfo &STI,
1141 raw_ostream &O) {
1142 const MCOperand &RegOp = MI->getOperand(OpNum);
1143 assert(RegOp.isReg() && "Unexpected operand type!");
1144 printRegName(O, RegOp.getReg());
1145}
1146
1147void AArch64InstPrinter::printSVCROp(const MCInst *MI, unsigned OpNum,
1148 const MCSubtargetInfo &STI,
1149 raw_ostream &O) {
1150 const MCOperand &MO = MI->getOperand(OpNum);
1151 assert(MO.isImm() && "Unexpected operand type!");
1152 unsigned svcrop = MO.getImm();
1153 const auto *SVCR = AArch64SVCR::lookupSVCRByEncoding(svcrop);
1154 assert(SVCR && "Unexpected SVCR operand!");
1155 O << SVCR->Name;
1156}
1157
1158void AArch64InstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
1159 const MCSubtargetInfo &STI,
1160 raw_ostream &O) {
1161 const MCOperand &Op = MI->getOperand(OpNo);
1162 if (Op.isReg()) {
1163 printRegName(O, Op.getReg());
1164 } else if (Op.isImm()) {
1165 printImm(MI, OpNo, STI, O);
1166 } else {
1167 assert(Op.isExpr() && "unknown operand kind in printOperand");
1168 MAI.printExpr(O, *Op.getExpr());
1169 }
1170}
1171
1172void AArch64InstPrinter::printImm(const MCInst *MI, unsigned OpNo,
1173 const MCSubtargetInfo &STI,
1174 raw_ostream &O) {
1175 const MCOperand &Op = MI->getOperand(OpNo);
1176 markup(O, Markup::Immediate) << "#" << formatImm(Op.getImm());
1177}
1178
1179void AArch64InstPrinter::printImmHex(const MCInst *MI, unsigned OpNo,
1180 const MCSubtargetInfo &STI,
1181 raw_ostream &O) {
1182 const MCOperand &Op = MI->getOperand(OpNo);
1183 markup(O, Markup::Immediate) << format("#%#llx", Op.getImm());
1184}
1185
1186template<int Size>
1187void AArch64InstPrinter::printSImm(const MCInst *MI, unsigned OpNo,
1188 const MCSubtargetInfo &STI,
1189 raw_ostream &O) {
1190 const MCOperand &Op = MI->getOperand(OpNo);
1191 if (Size == 8)
1192 markup(O, Markup::Immediate) << "#" << formatImm((signed char)Op.getImm());
1193 else if (Size == 16)
1194 markup(O, Markup::Immediate) << "#" << formatImm((signed short)Op.getImm());
1195 else
1196 markup(O, Markup::Immediate) << "#" << formatImm(Op.getImm());
1197}
1198
1200 unsigned Imm, raw_ostream &O) {
1201 const MCOperand &Op = MI->getOperand(OpNo);
1202 if (Op.isReg()) {
1203 MCRegister Reg = Op.getReg();
1204 if (Reg == AArch64::XZR)
1205 markup(O, Markup::Immediate) << "#" << Imm;
1206 else
1207 printRegName(O, Reg);
1208 } else
1209 llvm_unreachable("unknown operand kind in printPostIncOperand64");
1210}
1211
1213 const MCSubtargetInfo &STI,
1214 raw_ostream &O) {
1215 const MCOperand &Op = MI->getOperand(OpNo);
1216 assert(Op.isReg() && "Non-register vreg operand!");
1217 printRegName(O, Op.getReg(), AArch64::vreg);
1218}
1219
1221 const MCSubtargetInfo &STI,
1222 raw_ostream &O) {
1223 const MCOperand &Op = MI->getOperand(OpNo);
1224 assert(Op.isImm() && "System instruction C[nm] operands must be immediates!");
1225 O << "c" << Op.getImm();
1226}
1227
1229 const MCSubtargetInfo &STI,
1230 raw_ostream &O) {
1231 const MCOperand &MO = MI->getOperand(OpNum);
1232 if (MO.isImm()) {
1233 unsigned Val = (MO.getImm() & 0xfff);
1234 assert(Val == MO.getImm() && "Add/sub immediate out of range!");
1235 unsigned Shift =
1236 AArch64_AM::getShiftValue(MI->getOperand(OpNum + 1).getImm());
1237 markup(O, Markup::Immediate) << '#' << formatImm(Val);
1238 if (Shift != 0) {
1239 printShifter(MI, OpNum + 1, STI, O);
1240 if (CommentStream)
1241 *CommentStream << '=' << formatImm(Val << Shift) << '\n';
1242 }
1243 } else {
1244 assert(MO.isExpr() && "Unexpected operand type!");
1245 MAI.printExpr(O, *MO.getExpr());
1246 printShifter(MI, OpNum + 1, STI, O);
1247 }
1248}
1249
1250template <typename T>
1252 const MCSubtargetInfo &STI,
1253 raw_ostream &O) {
1254 uint64_t Val = MI->getOperand(OpNum).getImm();
1256 O << "#0x";
1257 O.write_hex(AArch64_AM::decodeLogicalImmediate(Val, 8 * sizeof(T)));
1258}
1259
1260void AArch64InstPrinter::printShifter(const MCInst *MI, unsigned OpNum,
1261 const MCSubtargetInfo &STI,
1262 raw_ostream &O) {
1263 unsigned Val = MI->getOperand(OpNum).getImm();
1264 // LSL #0 should not be printed.
1266 AArch64_AM::getShiftValue(Val) == 0)
1267 return;
1269 << " ";
1271}
1272
1274 const MCSubtargetInfo &STI,
1275 raw_ostream &O) {
1276 printRegName(O, MI->getOperand(OpNum).getReg());
1277 printShifter(MI, OpNum + 1, STI, O);
1278}
1279
1281 const MCSubtargetInfo &STI,
1282 raw_ostream &O) {
1283 printRegName(O, MI->getOperand(OpNum).getReg());
1284 printArithExtend(MI, OpNum + 1, STI, O);
1285}
1286
1288 const MCSubtargetInfo &STI,
1289 raw_ostream &O) {
1290 unsigned Val = MI->getOperand(OpNum).getImm();
1292 unsigned ShiftVal = AArch64_AM::getArithShiftValue(Val);
1293
1294 // If the destination or first source register operand is [W]SP, print
1295 // UXTW/UXTX as LSL, and if the shift amount is also zero, print nothing at
1296 // all.
1297 if (ExtType == AArch64_AM::UXTW || ExtType == AArch64_AM::UXTX) {
1298 MCRegister Dest = MI->getOperand(0).getReg();
1299 MCRegister Src1 = MI->getOperand(1).getReg();
1300 if ( ((Dest == AArch64::SP || Src1 == AArch64::SP) &&
1301 ExtType == AArch64_AM::UXTX) ||
1302 ((Dest == AArch64::WSP || Src1 == AArch64::WSP) &&
1303 ExtType == AArch64_AM::UXTW) ) {
1304 if (ShiftVal != 0) {
1305 O << ", lsl ";
1306 markup(O, Markup::Immediate) << "#" << ShiftVal;
1307 }
1308 return;
1309 }
1310 }
1311 O << ", " << AArch64_AM::getShiftExtendName(ExtType);
1312 if (ShiftVal != 0) {
1313 O << " ";
1314 markup(O, Markup::Immediate) << "#" << ShiftVal;
1315 }
1316}
1317
1318void AArch64InstPrinter::printMemExtendImpl(bool SignExtend, bool DoShift,
1319 unsigned Width, char SrcRegKind,
1320 raw_ostream &O) {
1321 // sxtw, sxtx, uxtw or lsl (== uxtx)
1322 bool IsLSL = !SignExtend && SrcRegKind == 'x';
1323 if (IsLSL)
1324 O << "lsl";
1325 else
1326 O << (SignExtend ? 's' : 'u') << "xt" << SrcRegKind;
1327
1328 if (DoShift || IsLSL) {
1329 O << " ";
1330 markup(O, Markup::Immediate) << "#" << Log2_32(Width / 8);
1331 }
1332}
1333
1335 raw_ostream &O, char SrcRegKind,
1336 unsigned Width) {
1337 bool SignExtend = MI->getOperand(OpNum).getImm();
1338 bool DoShift = MI->getOperand(OpNum + 1).getImm();
1339 printMemExtendImpl(SignExtend, DoShift, Width, SrcRegKind, O);
1340}
1341
1342template <bool SignExtend, int ExtWidth, char SrcRegKind, char Suffix>
1344 unsigned OpNum,
1345 const MCSubtargetInfo &STI,
1346 raw_ostream &O) {
1347 printOperand(MI, OpNum, STI, O);
1348 if (Suffix == 's' || Suffix == 'd')
1349 O << '.' << Suffix;
1350 else
1351 assert(Suffix == 0 && "Unsupported suffix size");
1352
1353 bool DoShift = ExtWidth != 8;
1354 if (SignExtend || DoShift || SrcRegKind == 'w') {
1355 O << ", ";
1356 printMemExtendImpl(SignExtend, DoShift, ExtWidth, SrcRegKind, O);
1357 }
1358}
1359
1360template <int EltSize>
1362 unsigned OpNum,
1363 const MCSubtargetInfo &STI,
1364 raw_ostream &O) {
1365 MCRegister Reg = MI->getOperand(OpNum).getReg();
1366 if (Reg < AArch64::PN0 || Reg > AArch64::PN15)
1367 llvm_unreachable("Unsupported predicate-as-counter register");
1368 O << "pn" << Reg - AArch64::PN0;
1369
1370 switch (EltSize) {
1371 case 0:
1372 break;
1373 case 8:
1374 O << ".b";
1375 break;
1376 case 16:
1377 O << ".h";
1378 break;
1379 case 32:
1380 O << ".s";
1381 break;
1382 case 64:
1383 O << ".d";
1384 break;
1385 default:
1386 llvm_unreachable("Unsupported element size");
1387 }
1388}
1389
1390void AArch64InstPrinter::printCondCode(const MCInst *MI, unsigned OpNum,
1391 const MCSubtargetInfo &STI,
1392 raw_ostream &O) {
1393 AArch64CC::CondCode CC = (AArch64CC::CondCode)MI->getOperand(OpNum).getImm();
1395}
1396
1398 const MCSubtargetInfo &STI,
1399 raw_ostream &O) {
1400 AArch64CC::CondCode CC = (AArch64CC::CondCode)MI->getOperand(OpNum).getImm();
1402}
1403
1405 const MCSubtargetInfo &STI,
1406 raw_ostream &O) {
1407 O << '[';
1408 printRegName(O, MI->getOperand(OpNum).getReg());
1409 O << ']';
1410}
1411
1412template <int Scale>
1413void AArch64InstPrinter::printImmScale(const MCInst *MI, unsigned OpNum,
1414 const MCSubtargetInfo &STI,
1415 raw_ostream &O) {
1417 << '#' << formatImm(Scale * MI->getOperand(OpNum).getImm());
1418}
1419
1420template <int Scale, int Offset>
1422 const MCSubtargetInfo &STI,
1423 raw_ostream &O) {
1424 unsigned FirstImm = Scale * MI->getOperand(OpNum).getImm();
1425 O << formatImm(FirstImm);
1426 O << ":" << formatImm(FirstImm + Offset);
1427}
1428
1430 unsigned Scale, raw_ostream &O) {
1431 const MCOperand MO = MI->getOperand(OpNum);
1432 if (MO.isImm()) {
1433 markup(O, Markup::Immediate) << '#' << formatImm(MO.getImm() * Scale);
1434 } else {
1435 assert(MO.isExpr() && "Unexpected operand type!");
1436 MAI.printExpr(O, *MO.getExpr());
1437 }
1438}
1439
1441 unsigned Scale, raw_ostream &O) {
1442 const MCOperand MO1 = MI->getOperand(OpNum + 1);
1443 O << '[';
1444 printRegName(O, MI->getOperand(OpNum).getReg());
1445 if (MO1.isImm()) {
1446 O << ", ";
1447 markup(O, Markup::Immediate) << "#" << formatImm(MO1.getImm() * Scale);
1448 } else {
1449 assert(MO1.isExpr() && "Unexpected operand type!");
1450 O << ", ";
1451 MAI.printExpr(O, *MO1.getExpr());
1452 }
1453 O << ']';
1454}
1455
1457 const MCSubtargetInfo &STI,
1458 raw_ostream &O) {
1459 unsigned prfop = MI->getOperand(OpNum).getImm();
1460 if (auto PRFM = AArch64RPRFM::lookupRPRFMByEncoding(prfop)) {
1461 O << PRFM->Name;
1462 return;
1463 }
1464
1465 O << '#' << formatImm(prfop);
1466}
1467
1468template <bool IsSVEPrefetch>
1470 const MCSubtargetInfo &STI,
1471 raw_ostream &O) {
1472 unsigned prfop = MI->getOperand(OpNum).getImm();
1473 if (IsSVEPrefetch) {
1474 if (auto PRFM = AArch64SVEPRFM::lookupSVEPRFMByEncoding(prfop)) {
1475 O << PRFM->Name;
1476 return;
1477 }
1478 } else {
1479 auto PRFM = AArch64PRFM::lookupPRFMByEncoding(prfop);
1480 if (PRFM && PRFM->haveFeatures(STI.getFeatureBits())) {
1481 O << PRFM->Name;
1482 return;
1483 }
1484 }
1485
1486 markup(O, Markup::Immediate) << '#' << formatImm(prfop);
1487}
1488
1490 const MCSubtargetInfo &STI,
1491 raw_ostream &O) {
1492 unsigned psbhintop = MI->getOperand(OpNum).getImm();
1493 auto PSB = AArch64PSBHint::lookupPSBByEncoding(psbhintop);
1494 if (PSB)
1495 O << PSB->Name;
1496 else
1497 markup(O, Markup::Immediate) << '#' << formatImm(psbhintop);
1498}
1499
1501 const MCSubtargetInfo &STI,
1502 raw_ostream &O) {
1503 unsigned btihintop = MI->getOperand(OpNum).getImm() ^ 32;
1504 auto BTI = AArch64BTIHint::lookupBTIByEncoding(btihintop);
1505 if (BTI)
1506 O << BTI->Name;
1507 else
1508 markup(O, Markup::Immediate) << '#' << formatImm(btihintop);
1509}
1510
1512 const MCSubtargetInfo &STI,
1513 raw_ostream &O) {
1514 const MCOperand &MO = MI->getOperand(OpNum);
1515 float FPImm = MO.isDFPImm() ? bit_cast<double>(MO.getDFPImm())
1517
1518 // 8 decimal places are enough to perfectly represent permitted floats.
1519 markup(O, Markup::Immediate) << format("#%.8f", FPImm);
1520}
1521
1522static MCRegister getNextVectorRegister(MCRegister Reg, unsigned Stride = 1) {
1523 while (Stride--) {
1524 switch (Reg.id()) {
1525 default:
1526 llvm_unreachable("Vector register expected!");
1527 case AArch64::Q0: Reg = AArch64::Q1; break;
1528 case AArch64::Q1: Reg = AArch64::Q2; break;
1529 case AArch64::Q2: Reg = AArch64::Q3; break;
1530 case AArch64::Q3: Reg = AArch64::Q4; break;
1531 case AArch64::Q4: Reg = AArch64::Q5; break;
1532 case AArch64::Q5: Reg = AArch64::Q6; break;
1533 case AArch64::Q6: Reg = AArch64::Q7; break;
1534 case AArch64::Q7: Reg = AArch64::Q8; break;
1535 case AArch64::Q8: Reg = AArch64::Q9; break;
1536 case AArch64::Q9: Reg = AArch64::Q10; break;
1537 case AArch64::Q10: Reg = AArch64::Q11; break;
1538 case AArch64::Q11: Reg = AArch64::Q12; break;
1539 case AArch64::Q12: Reg = AArch64::Q13; break;
1540 case AArch64::Q13: Reg = AArch64::Q14; break;
1541 case AArch64::Q14: Reg = AArch64::Q15; break;
1542 case AArch64::Q15: Reg = AArch64::Q16; break;
1543 case AArch64::Q16: Reg = AArch64::Q17; break;
1544 case AArch64::Q17: Reg = AArch64::Q18; break;
1545 case AArch64::Q18: Reg = AArch64::Q19; break;
1546 case AArch64::Q19: Reg = AArch64::Q20; break;
1547 case AArch64::Q20: Reg = AArch64::Q21; break;
1548 case AArch64::Q21: Reg = AArch64::Q22; break;
1549 case AArch64::Q22: Reg = AArch64::Q23; break;
1550 case AArch64::Q23: Reg = AArch64::Q24; break;
1551 case AArch64::Q24: Reg = AArch64::Q25; break;
1552 case AArch64::Q25: Reg = AArch64::Q26; break;
1553 case AArch64::Q26: Reg = AArch64::Q27; break;
1554 case AArch64::Q27: Reg = AArch64::Q28; break;
1555 case AArch64::Q28: Reg = AArch64::Q29; break;
1556 case AArch64::Q29: Reg = AArch64::Q30; break;
1557 case AArch64::Q30: Reg = AArch64::Q31; break;
1558 // Vector lists can wrap around.
1559 case AArch64::Q31:
1560 Reg = AArch64::Q0;
1561 break;
1562 case AArch64::Z0: Reg = AArch64::Z1; break;
1563 case AArch64::Z1: Reg = AArch64::Z2; break;
1564 case AArch64::Z2: Reg = AArch64::Z3; break;
1565 case AArch64::Z3: Reg = AArch64::Z4; break;
1566 case AArch64::Z4: Reg = AArch64::Z5; break;
1567 case AArch64::Z5: Reg = AArch64::Z6; break;
1568 case AArch64::Z6: Reg = AArch64::Z7; break;
1569 case AArch64::Z7: Reg = AArch64::Z8; break;
1570 case AArch64::Z8: Reg = AArch64::Z9; break;
1571 case AArch64::Z9: Reg = AArch64::Z10; break;
1572 case AArch64::Z10: Reg = AArch64::Z11; break;
1573 case AArch64::Z11: Reg = AArch64::Z12; break;
1574 case AArch64::Z12: Reg = AArch64::Z13; break;
1575 case AArch64::Z13: Reg = AArch64::Z14; break;
1576 case AArch64::Z14: Reg = AArch64::Z15; break;
1577 case AArch64::Z15: Reg = AArch64::Z16; break;
1578 case AArch64::Z16: Reg = AArch64::Z17; break;
1579 case AArch64::Z17: Reg = AArch64::Z18; break;
1580 case AArch64::Z18: Reg = AArch64::Z19; break;
1581 case AArch64::Z19: Reg = AArch64::Z20; break;
1582 case AArch64::Z20: Reg = AArch64::Z21; break;
1583 case AArch64::Z21: Reg = AArch64::Z22; break;
1584 case AArch64::Z22: Reg = AArch64::Z23; break;
1585 case AArch64::Z23: Reg = AArch64::Z24; break;
1586 case AArch64::Z24: Reg = AArch64::Z25; break;
1587 case AArch64::Z25: Reg = AArch64::Z26; break;
1588 case AArch64::Z26: Reg = AArch64::Z27; break;
1589 case AArch64::Z27: Reg = AArch64::Z28; break;
1590 case AArch64::Z28: Reg = AArch64::Z29; break;
1591 case AArch64::Z29: Reg = AArch64::Z30; break;
1592 case AArch64::Z30: Reg = AArch64::Z31; break;
1593 // Vector lists can wrap around.
1594 case AArch64::Z31:
1595 Reg = AArch64::Z0;
1596 break;
1597 case AArch64::P0: Reg = AArch64::P1; break;
1598 case AArch64::P1: Reg = AArch64::P2; break;
1599 case AArch64::P2: Reg = AArch64::P3; break;
1600 case AArch64::P3: Reg = AArch64::P4; break;
1601 case AArch64::P4: Reg = AArch64::P5; break;
1602 case AArch64::P5: Reg = AArch64::P6; break;
1603 case AArch64::P6: Reg = AArch64::P7; break;
1604 case AArch64::P7: Reg = AArch64::P8; break;
1605 case AArch64::P8: Reg = AArch64::P9; break;
1606 case AArch64::P9: Reg = AArch64::P10; break;
1607 case AArch64::P10: Reg = AArch64::P11; break;
1608 case AArch64::P11: Reg = AArch64::P12; break;
1609 case AArch64::P12: Reg = AArch64::P13; break;
1610 case AArch64::P13: Reg = AArch64::P14; break;
1611 case AArch64::P14: Reg = AArch64::P15; break;
1612 // Vector lists can wrap around.
1613 case AArch64::P15: Reg = AArch64::P0; break;
1614 }
1615 }
1616 return Reg;
1617}
1618
1619template<unsigned size>
1621 unsigned OpNum,
1622 const MCSubtargetInfo &STI,
1623 raw_ostream &O) {
1624 static_assert(size == 64 || size == 32,
1625 "Template parameter must be either 32 or 64");
1626 MCRegister Reg = MI->getOperand(OpNum).getReg();
1627
1628 unsigned Sube = (size == 32) ? AArch64::sube32 : AArch64::sube64;
1629 unsigned Subo = (size == 32) ? AArch64::subo32 : AArch64::subo64;
1630
1631 MCRegister Even = MRI.getSubReg(Reg, Sube);
1632 MCRegister Odd = MRI.getSubReg(Reg, Subo);
1633 printRegName(O, Even);
1634 O << ", ";
1635 printRegName(O, Odd);
1636}
1637
1639 const MCSubtargetInfo &STI,
1640 raw_ostream &O) {
1641 unsigned MaxRegs = 8;
1642 unsigned RegMask = MI->getOperand(OpNum).getImm();
1643
1644 unsigned NumRegs = 0;
1645 for (unsigned I = 0; I < MaxRegs; ++I)
1646 if ((RegMask & (1 << I)) != 0)
1647 ++NumRegs;
1648
1649 O << "{";
1650 unsigned Printed = 0;
1651 for (unsigned I = 0; I < MaxRegs; ++I) {
1652 unsigned Reg = RegMask & (1 << I);
1653 if (Reg == 0)
1654 continue;
1655 printRegName(O, AArch64::ZAD0 + I);
1656 if (Printed + 1 != NumRegs)
1657 O << ", ";
1658 ++Printed;
1659 }
1660 O << "}";
1661}
1662
1664 const MCSubtargetInfo &STI,
1665 raw_ostream &O,
1666 StringRef LayoutSuffix) {
1667 MCRegister Reg = MI->getOperand(OpNum).getReg();
1668
1669 O << "{ ";
1670
1671 // Work out how many registers there are in the list (if there is an actual
1672 // list).
1673 unsigned NumRegs = 1;
1674 if (MRI.getRegClass(AArch64::DDRegClassID).contains(Reg) ||
1675 MRI.getRegClass(AArch64::ZPR2RegClassID).contains(Reg) ||
1676 MRI.getRegClass(AArch64::QQRegClassID).contains(Reg) ||
1677 MRI.getRegClass(AArch64::PPR2RegClassID).contains(Reg) ||
1678 MRI.getRegClass(AArch64::ZPR2StridedRegClassID).contains(Reg))
1679 NumRegs = 2;
1680 else if (MRI.getRegClass(AArch64::DDDRegClassID).contains(Reg) ||
1681 MRI.getRegClass(AArch64::ZPR3RegClassID).contains(Reg) ||
1682 MRI.getRegClass(AArch64::QQQRegClassID).contains(Reg))
1683 NumRegs = 3;
1684 else if (MRI.getRegClass(AArch64::DDDDRegClassID).contains(Reg) ||
1685 MRI.getRegClass(AArch64::ZPR4RegClassID).contains(Reg) ||
1686 MRI.getRegClass(AArch64::QQQQRegClassID).contains(Reg) ||
1687 MRI.getRegClass(AArch64::ZPR4StridedRegClassID).contains(Reg))
1688 NumRegs = 4;
1689
1690 unsigned Stride = 1;
1691 if (MRI.getRegClass(AArch64::ZPR2StridedRegClassID).contains(Reg))
1692 Stride = 8;
1693 else if (MRI.getRegClass(AArch64::ZPR4StridedRegClassID).contains(Reg))
1694 Stride = 4;
1695
1696 // Now forget about the list and find out what the first register is.
1697 if (MCRegister FirstReg = MRI.getSubReg(Reg, AArch64::dsub0))
1698 Reg = FirstReg;
1699 else if (MCRegister FirstReg = MRI.getSubReg(Reg, AArch64::qsub0))
1700 Reg = FirstReg;
1701 else if (MCRegister FirstReg = MRI.getSubReg(Reg, AArch64::zsub0))
1702 Reg = FirstReg;
1703 else if (MCRegister FirstReg = MRI.getSubReg(Reg, AArch64::psub0))
1704 Reg = FirstReg;
1705
1706 // If it's a D-reg, we need to promote it to the equivalent Q-reg before
1707 // printing (otherwise getRegisterName fails).
1708 if (MRI.getRegClass(AArch64::FPR64RegClassID).contains(Reg)) {
1709 const MCRegisterClass &FPR128RC =
1710 MRI.getRegClass(AArch64::FPR128RegClassID);
1711 Reg = MRI.getMatchingSuperReg(Reg, AArch64::dsub, &FPR128RC);
1712 }
1713
1714 if ((MRI.getRegClass(AArch64::ZPRRegClassID).contains(Reg) ||
1715 MRI.getRegClass(AArch64::PPRRegClassID).contains(Reg)) &&
1716 NumRegs > 1 && Stride == 1 &&
1717 // Do not print the range when the last register is lower than the first.
1718 // Because it is a wrap-around register.
1719 Reg < getNextVectorRegister(Reg, NumRegs - 1)) {
1720 printRegName(O, Reg);
1721 O << LayoutSuffix;
1722 if (NumRegs > 1) {
1723 // Set of two sve registers should be separated by ','
1724 StringRef split_char = NumRegs == 2 ? ", " : " - ";
1725 O << split_char;
1726 printRegName(O, (getNextVectorRegister(Reg, NumRegs - 1)));
1727 O << LayoutSuffix;
1728 }
1729 } else {
1730 for (unsigned i = 0; i < NumRegs;
1731 ++i, Reg = getNextVectorRegister(Reg, Stride)) {
1732 // wrap-around sve register
1733 if (MRI.getRegClass(AArch64::ZPRRegClassID).contains(Reg) ||
1734 MRI.getRegClass(AArch64::PPRRegClassID).contains(Reg))
1735 printRegName(O, Reg);
1736 else
1737 printRegName(O, Reg, AArch64::vreg);
1738 O << LayoutSuffix;
1739 if (i + 1 != NumRegs)
1740 O << ", ";
1741 }
1742 }
1743 O << " }";
1744}
1745
1746void
1748 unsigned OpNum,
1749 const MCSubtargetInfo &STI,
1750 raw_ostream &O) {
1751 printVectorList(MI, OpNum, STI, O, "");
1752}
1753
1754template <unsigned NumLanes, char LaneKind>
1756 const MCSubtargetInfo &STI,
1757 raw_ostream &O) {
1758 if (LaneKind == 0) {
1759 printVectorList(MI, OpNum, STI, O, "");
1760 return;
1761 }
1762 std::string Suffix(".");
1763 if (NumLanes)
1764 Suffix += itostr(NumLanes) + LaneKind;
1765 else
1766 Suffix += LaneKind;
1767
1768 printVectorList(MI, OpNum, STI, O, Suffix);
1769}
1770
1771template <unsigned Scale>
1773 const MCSubtargetInfo &STI,
1774 raw_ostream &O) {
1775 O << "[" << Scale * MI->getOperand(OpNum).getImm() << "]";
1776}
1777
1778template <unsigned Scale>
1780 const MCSubtargetInfo &STI,
1781 raw_ostream &O) {
1782 O << Scale * MI->getOperand(OpNum).getImm();
1783}
1784
1786 unsigned OpNum,
1787 const MCSubtargetInfo &STI,
1788 raw_ostream &O) {
1789 // Do not print the numeric target address when symbolizing.
1791 return;
1792
1793 const MCOperand &Op = MI->getOperand(OpNum);
1794
1795 // If the label has already been resolved to an immediate offset (say, when
1796 // we're running the disassembler), just print the immediate.
1797 if (Op.isImm()) {
1798 int64_t Offset = Op.getImm() * 4;
1801 else
1803 return;
1804 }
1805
1806 // If the branch target is simply an address then print it in hex.
1807 const MCConstantExpr *BranchTarget =
1808 dyn_cast<MCConstantExpr>(MI->getOperand(OpNum).getExpr());
1809 int64_t TargetAddress;
1810 if (BranchTarget && BranchTarget->evaluateAsAbsolute(TargetAddress)) {
1811 markup(O, Markup::Target) << formatHex((uint64_t)TargetAddress);
1812 } else {
1813 // Otherwise, just print the expression.
1814 MAI.printExpr(O, *MI->getOperand(OpNum).getExpr());
1815 }
1816}
1817
1819 unsigned OpNum,
1820 const MCSubtargetInfo &STI,
1821 raw_ostream &O) {
1822 // Do not print the numeric target address when symbolizing.
1823 // However, do print for ADRP, as this is typically used together with an ADD
1824 // or an immediate-offset ldr/str and the label is likely at the wrong point.
1825 if (SymbolizeOperands && MI->getOpcode() != AArch64::ADRP)
1826 return;
1827
1828 const MCOperand &Op = MI->getOperand(OpNum);
1829
1830 // If the label has already been resolved to an immediate offset (say, when
1831 // we're running the disassembler), just print the immediate.
1832 if (Op.isImm()) {
1833 int64_t Offset = Op.getImm();
1834 if (MI->getOpcode() == AArch64::ADRP) {
1835 Offset = Offset * 4096;
1836 Address = Address & -4096;
1837 }
1841 else
1842 markup(O, Markup::Immediate) << "#" << Offset;
1843 return;
1844 }
1845
1846 // Otherwise, just print the expression.
1847 MAI.printExpr(O, *MI->getOperand(OpNum).getExpr());
1848}
1849
1851 const MCSubtargetInfo &STI,
1852 raw_ostream &O) {
1853 unsigned Val = MI->getOperand(OpNo).getImm();
1854 unsigned Opcode = MI->getOpcode();
1855
1856 StringRef Name;
1857 if (Opcode == AArch64::ISB) {
1858 auto ISB = AArch64ISB::lookupISBByEncoding(Val);
1859 Name = ISB ? ISB->Name : "";
1860 } else if (Opcode == AArch64::TSB) {
1861 auto TSB = AArch64TSB::lookupTSBByEncoding(Val);
1862 Name = TSB ? TSB->Name : "";
1863 } else {
1864 auto DB = AArch64DB::lookupDBByEncoding(Val);
1865 Name = DB ? DB->Name : "";
1866 }
1867 if (!Name.empty())
1868 O << Name;
1869 else
1870 markup(O, Markup::Immediate) << "#" << Val;
1871}
1872
1874 const MCSubtargetInfo &STI,
1875 raw_ostream &O) {
1876 unsigned Val = MI->getOperand(OpNo).getImm();
1877 assert(MI->getOpcode() == AArch64::DSBnXS);
1878
1879 StringRef Name;
1880 auto DB = AArch64DBnXS::lookupDBnXSByEncoding(Val);
1881 Name = DB ? DB->Name : "";
1882
1883 if (!Name.empty())
1884 O << Name;
1885 else
1886 markup(O, Markup::Immediate) << "#" << Val;
1887}
1888
1890 const MCSubtargetInfo &STI) {
1891 return (Read ? Reg.Readable : Reg.Writeable) &&
1892 Reg.haveFeatures(STI.getFeatureBits());
1893}
1894
1895// Looks up a system register either by encoding. Some system
1896// registers share the same encoding between different architectures,
1897// to work around this tablegen will return a range of registers with the same
1898// encodings. We need to check each register in the range to see if it valid.
1899static const AArch64SysReg::SysReg *lookupSysReg(unsigned Val, bool Read,
1900 const MCSubtargetInfo &STI) {
1901 auto Range = AArch64SysReg::lookupSysRegByEncoding(Val);
1902 for (auto &Reg : Range) {
1903 if (isValidSysReg(Reg, Read, STI))
1904 return &Reg;
1905 }
1906
1907 return nullptr;
1908}
1909
1911 const MCSubtargetInfo &STI,
1912 raw_ostream &O) {
1913 unsigned Val = MI->getOperand(OpNo).getImm();
1914
1915 // Horrible hack for the one register that has identical encodings but
1916 // different names in MSR and MRS. Because of this, one of MRS and MSR is
1917 // going to get the wrong entry
1918 if (Val == AArch64SysReg::DBGDTRRX_EL0) {
1919 O << "DBGDTRRX_EL0";
1920 return;
1921 }
1922
1923 // Horrible hack for two different registers having the same encoding.
1924 if (Val == AArch64SysReg::TRCEXTINSELR) {
1925 O << "TRCEXTINSELR";
1926 return;
1927 }
1928
1929 const AArch64SysReg::SysReg *Reg = lookupSysReg(Val, true /*Read*/, STI);
1930
1931 if (Reg)
1932 O << Reg->Name;
1933 else
1935}
1936
1938 const MCSubtargetInfo &STI,
1939 raw_ostream &O) {
1940 unsigned Val = MI->getOperand(OpNo).getImm();
1941
1942 // Horrible hack for the one register that has identical encodings but
1943 // different names in MSR and MRS. Because of this, one of MRS and MSR is
1944 // going to get the wrong entry
1945 if (Val == AArch64SysReg::DBGDTRTX_EL0) {
1946 O << "DBGDTRTX_EL0";
1947 return;
1948 }
1949
1950 // Horrible hack for two different registers having the same encoding.
1951 if (Val == AArch64SysReg::TRCEXTINSELR) {
1952 O << "TRCEXTINSELR";
1953 return;
1954 }
1955
1956 const AArch64SysReg::SysReg *Reg = lookupSysReg(Val, false /*Read*/, STI);
1957
1958 if (Reg)
1959 O << Reg->Name;
1960 else
1962}
1963
1965 const MCSubtargetInfo &STI,
1966 raw_ostream &O) {
1967 unsigned Val = MI->getOperand(OpNo).getImm();
1968
1969 auto PStateImm15 = AArch64PState::lookupPStateImm0_15ByEncoding(Val);
1970 auto PStateImm1 = AArch64PState::lookupPStateImm0_1ByEncoding(Val);
1971 if (PStateImm15 && PStateImm15->haveFeatures(STI.getFeatureBits()))
1972 O << PStateImm15->Name;
1973 else if (PStateImm1 && PStateImm1->haveFeatures(STI.getFeatureBits()))
1974 O << PStateImm1->Name;
1975 else
1976 O << "#" << formatImm(Val);
1977}
1978
1980 const MCSubtargetInfo &STI,
1981 raw_ostream &O) {
1982 unsigned RawVal = MI->getOperand(OpNo).getImm();
1984 markup(O, Markup::Immediate) << format("#%#016llx", Val);
1985}
1986
1987template<int64_t Angle, int64_t Remainder>
1989 const MCSubtargetInfo &STI,
1990 raw_ostream &O) {
1991 unsigned Val = MI->getOperand(OpNo).getImm();
1992 markup(O, Markup::Immediate) << "#" << (Val * Angle) + Remainder;
1993}
1994
1996 const MCSubtargetInfo &STI,
1997 raw_ostream &O) {
1998 unsigned Val = MI->getOperand(OpNum).getImm();
1999 if (auto Pat = AArch64SVEPredPattern::lookupSVEPREDPATByEncoding(Val))
2000 O << Pat->Name;
2001 else
2002 markup(O, Markup::Immediate) << '#' << formatImm(Val);
2003}
2004
2006 unsigned OpNum,
2007 const MCSubtargetInfo &STI,
2008 raw_ostream &O) {
2009 unsigned Val = MI->getOperand(OpNum).getImm();
2010 // Pattern has only 1 bit
2011 if (Val > 1)
2012 llvm_unreachable("Invalid vector length specifier");
2013 if (auto Pat =
2014 AArch64SVEVecLenSpecifier::lookupSVEVECLENSPECIFIERByEncoding(Val))
2015 O << Pat->Name;
2016 else
2017 llvm_unreachable("Invalid vector length specifier");
2018}
2019
2020template <char suffix>
2021void AArch64InstPrinter::printSVERegOp(const MCInst *MI, unsigned OpNum,
2022 const MCSubtargetInfo &STI,
2023 raw_ostream &O) {
2024 switch (suffix) {
2025 case 0:
2026 case 'b':
2027 case 'h':
2028 case 's':
2029 case 'd':
2030 case 'q':
2031 break;
2032 default: llvm_unreachable("Invalid kind specifier.");
2033 }
2034
2035 MCRegister Reg = MI->getOperand(OpNum).getReg();
2036 printRegName(O, Reg);
2037 if (suffix != 0)
2038 O << '.' << suffix;
2039}
2040
2041template <typename T>
2043 std::make_unsigned_t<T> HexValue = Value;
2044
2045 if (getPrintImmHex())
2046 markup(O, Markup::Immediate) << '#' << formatHex((uint64_t)HexValue);
2047 else
2048 markup(O, Markup::Immediate) << '#' << formatDec(Value);
2049
2050 if (CommentStream) {
2051 // Do the opposite to that used for instruction operands.
2052 if (getPrintImmHex())
2053 *CommentStream << '=' << formatDec(HexValue) << '\n';
2054 else
2055 *CommentStream << '=' << formatHex((uint64_t)Value) << '\n';
2056 }
2057}
2058
2059template <typename T>
2061 const MCSubtargetInfo &STI,
2062 raw_ostream &O) {
2063 unsigned UnscaledVal = MI->getOperand(OpNum).getImm();
2064 unsigned Shift = MI->getOperand(OpNum + 1).getImm();
2066 "Unexpected shift type!");
2067
2068 // #0 lsl #8 is never pretty printed
2069 if ((UnscaledVal == 0) && (AArch64_AM::getShiftValue(Shift) != 0)) {
2070 markup(O, Markup::Immediate) << '#' << formatImm(UnscaledVal);
2071 printShifter(MI, OpNum + 1, STI, O);
2072 return;
2073 }
2074
2075 T Val;
2076 if (std::is_signed<T>())
2077 Val = (int8_t)UnscaledVal * (1 << AArch64_AM::getShiftValue(Shift));
2078 else
2079 Val = (uint8_t)UnscaledVal * (1 << AArch64_AM::getShiftValue(Shift));
2080
2081 printImmSVE(Val, O);
2082}
2083
2084template <typename T>
2086 const MCSubtargetInfo &STI,
2087 raw_ostream &O) {
2088 typedef std::make_signed_t<T> SignedT;
2089 typedef std::make_unsigned_t<T> UnsignedT;
2090
2091 uint64_t Val = MI->getOperand(OpNum).getImm();
2092 UnsignedT PrintVal = AArch64_AM::decodeLogicalImmediate(Val, 64);
2093
2094 // Prefer the default format for 16bit values, hex otherwise.
2095 if ((int16_t)PrintVal == (SignedT)PrintVal)
2096 printImmSVE((T)PrintVal, O);
2097 else if ((uint16_t)PrintVal == PrintVal)
2098 printImmSVE(PrintVal, O);
2099 else
2100 markup(O, Markup::Immediate) << '#' << formatHex((uint64_t)PrintVal);
2101}
2102
2103template <int Width>
2104void AArch64InstPrinter::printZPRasFPR(const MCInst *MI, unsigned OpNum,
2105 const MCSubtargetInfo &STI,
2106 raw_ostream &O) {
2107 unsigned Base;
2108 switch (Width) {
2109 case 8: Base = AArch64::B0; break;
2110 case 16: Base = AArch64::H0; break;
2111 case 32: Base = AArch64::S0; break;
2112 case 64: Base = AArch64::D0; break;
2113 case 128: Base = AArch64::Q0; break;
2114 default:
2115 llvm_unreachable("Unsupported width");
2116 }
2117 MCRegister Reg = MI->getOperand(OpNum).getReg();
2118 printRegName(O, Reg - AArch64::Z0 + Base);
2119}
2120
2121template <unsigned ImmIs0, unsigned ImmIs1>
2123 const MCSubtargetInfo &STI,
2124 raw_ostream &O) {
2125 auto *Imm0Desc = AArch64ExactFPImm::lookupExactFPImmByEnum(ImmIs0);
2126 auto *Imm1Desc = AArch64ExactFPImm::lookupExactFPImmByEnum(ImmIs1);
2127 unsigned Val = MI->getOperand(OpNum).getImm();
2129 << "#" << (Val ? Imm1Desc->Repr : Imm0Desc->Repr);
2130}
2131
2133 const MCSubtargetInfo &STI,
2134 raw_ostream &O) {
2135 MCRegister Reg = MI->getOperand(OpNum).getReg();
2137}
2138
2139void AArch64InstPrinter::printGPR64x8(const MCInst *MI, unsigned OpNum,
2140 const MCSubtargetInfo &STI,
2141 raw_ostream &O) {
2142 MCRegister Reg = MI->getOperand(OpNum).getReg();
2143 printRegName(O, MRI.getSubReg(Reg, AArch64::x8sub_0));
2144}
2145
2147 const MCSubtargetInfo &STI,
2148 raw_ostream &O) {
2149 MCRegister Reg = MI->getOperand(OpNum).getReg();
2150 assert(Reg == AArch64::XZR &&
2151 "MC representation of SyspXzrPair should be XZR");
2152 O << getRegisterName(Reg) << ", " << getRegisterName(Reg);
2153}
2154
2155void AArch64InstPrinter::printPHintOp(const MCInst *MI, unsigned OpNum,
2156 const MCSubtargetInfo &STI,
2157 raw_ostream &O) {
2158 unsigned Op = MI->getOperand(OpNum).getImm();
2160 if (PH)
2161 O << PH->Name;
2162 else
2163 markup(O, Markup::Immediate) << '#' << formatImm(Op);
2164}
static MCRegister getNextVectorRegister(MCRegister Reg, unsigned Stride=1)
static const AArch64SysReg::SysReg * lookupSysReg(unsigned Val, bool Read, const MCSubtargetInfo &STI)
static const LdStNInstrDesc * getLdStNInstrDesc(unsigned Opcode)
static const LdStNInstrDesc LdStNInstInfo[]
static bool isValidSysReg(const AArch64SysReg::SysReg &Reg, bool Read, const MCSubtargetInfo &STI)
static bool isTblTbxInstruction(unsigned Opcode, StringRef &Layout, bool &IsTbx)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Analysis containing CSE Info
Definition CSEInfo.cpp:27
IRTranslator LLVM IR MI
#define RegName(no)
#define I(x, y, z)
Definition MD5.cpp:58
Register Reg
#define T
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
This file contains some functions that are useful when dealing with strings.
void printInst(const MCInst *MI, uint64_t Address, StringRef Annot, const MCSubtargetInfo &STI, raw_ostream &O) override
Print the specified MCInst to the specified raw_ostream.
AArch64AppleInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
static const char * getRegisterName(MCRegister Reg, unsigned AltIdx=AArch64::NoRegAltName)
StringRef getRegName(MCRegister Reg) const override
void printMRSSystemRegister(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printImm(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printAlignedLabel(const MCInst *MI, uint64_t Address, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printAMIndexedWB(const MCInst *MI, unsigned OpNum, unsigned Scale, raw_ostream &O)
void printMatrix(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printAdrAdrpLabel(const MCInst *MI, uint64_t Address, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printPrefetchOp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printZPRasFPR(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
virtual void printInstruction(const MCInst *MI, uint64_t Address, const MCSubtargetInfo &STI, raw_ostream &O)
void printAMNoIndex(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printUImm12Offset(const MCInst *MI, unsigned OpNum, unsigned Scale, raw_ostream &O)
void printSVCROp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
AArch64InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
void printCondCode(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printBarriernXSOption(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSystemPStateField(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printShifter(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printPSBHintOp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printGPR64x8(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSIMDType10Operand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
virtual StringRef getRegName(MCRegister Reg) const
void printMemExtend(const MCInst *MI, unsigned OpNum, raw_ostream &O, char SrcRegKind, unsigned Width)
void printMatrixTileVector(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
bool printSysAlias(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &O)
void printSysCROperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
bool applyTargetSpecificCLOption(StringRef Opt) override
Customize the printer according to a command line option.
void printRPRFMOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printVectorList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O, StringRef LayoutSuffix)
void printImplicitlyTypedVectorList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
Print a list of vector registers where the type suffix is implicit (i.e.
void printGPRSeqPairsClassOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printExtendedRegister(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
bool printRangePrefetchAlias(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &O, StringRef Annot)
void printMSRSystemRegister(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSVERegOp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printPHintOp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printMatrixTile(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printFPImmOperand(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printMemExtendImpl(bool SignExtend, bool DoShift, unsigned Width, char SrcRegKind, raw_ostream &O)
void printSVEVecLenSpecifier(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printBTIHintOp(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSyspXzrPair(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printArithExtend(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
virtual bool printAliasInstr(const MCInst *MI, uint64_t Address, const MCSubtargetInfo &STI, raw_ostream &O)
void printImmScale(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSImm(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printAddSubImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printImmSVE(T Value, raw_ostream &O)
void printShiftedRegister(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printComplexRotationOp(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printGPR64as32(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
bool printSyspAlias(const MCInst *MI, const MCSubtargetInfo &STI, raw_ostream &O)
void printRegName(raw_ostream &OS, MCRegister Reg) override
Print the assembler register name.
void printMatrixTileList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printMatrixIndex(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printImmRangeScale(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printTypedVectorList(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printInst(const MCInst *MI, uint64_t Address, StringRef Annot, const MCSubtargetInfo &STI, raw_ostream &O) override
Print the specified MCInst to the specified raw_ostream.
void printLogicalImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSVEPattern(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
static const char * getRegisterName(MCRegister Reg, unsigned AltIdx=AArch64::NoRegAltName)
void printVRegOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printPostIncOperand(const MCInst *MI, unsigned OpNo, unsigned Imm, raw_ostream &O)
void printPredicateAsCounter(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printVectorIndex(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printImm8OptLsl(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printRegWithShiftExtend(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printImmHex(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, raw_ostream &O)
void printInverseCondCode(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printExactFPImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printBarrierOption(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
void printSVELogicalImm(const MCInst *MI, unsigned OpNum, const MCSubtargetInfo &STI, raw_ostream &O)
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:64
WithMarkup markup(raw_ostream &OS, Markup M)
format_object< int64_t > formatHex(int64_t Value) const
const MCInstrInfo & MII
raw_ostream * CommentStream
A stream that comments can be emitted to if desired.
bool getPrintImmHex() const
bool SymbolizeOperands
If true, symbolize branch target and memory reference operands.
format_object< int64_t > formatDec(int64_t Value) const
Utility functions to print decimal/hexadecimal values.
const MCRegisterInfo & MRI
void printAnnotation(raw_ostream &OS, StringRef Annot)
Utility function for printing annotations.
const MCAsmInfo & MAI
format_object< int64_t > formatImm(int64_t Value) const
Utility function to print immediates in decimal or hex.
bool PrintBranchImmAsAddress
If true, a branch immediate (e.g.
MCInstPrinter(const MCAsmInfo &mai, const MCInstrInfo &mii, const MCRegisterInfo &mri)
bool PrintAliases
True if we prefer aliases (e.g. nop) to raw mnemonics.
Instances of this class represent a single low-level machine instruction.
Definition MCInst.h:188
Interface to description of machine instruction set.
Definition MCInstrInfo.h:27
Instances of this class represent operands of the MCInst class.
Definition MCInst.h:40
int64_t getImm() const
Definition MCInst.h:84
bool isImm() const
Definition MCInst.h:66
bool isReg() const
Definition MCInst.h:65
MCRegister getReg() const
Returns the register number.
Definition MCInst.h:73
bool isDFPImm() const
Definition MCInst.h:68
const MCExpr * getExpr() const
Definition MCInst.h:118
uint64_t getDFPImm() const
Definition MCInst.h:104
bool isExpr() const
Definition MCInst.h:69
MCRegisterClass - Base class of TargetRegisterClass.
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:33
Generic base class for all target subtargets.
bool hasFeature(unsigned Feature) const
const FeatureBitset & getFeatureBits() const
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
LLVM Value Representation.
Definition Value.h:75
This class implements an extremely fast bulk output stream that can only output to a stream.
Definition raw_ostream.h:53
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static const char * getCondCodeName(CondCode Code)
static CondCode getInvertedCondCode(CondCode Code)
const PHint * lookupPHintByEncoding(uint16_t)
std::string genericRegisterString(uint32_t Bits)
static bool isMOVNMovAlias(uint64_t Value, int Shift, int RegWidth)
static uint64_t decodeLogicalImmediate(uint64_t val, unsigned regSize)
decodeLogicalImmediate - Decode a logical immediate value in the form "N:immr:imms" (where the immr a...
static unsigned getShiftValue(unsigned Imm)
getShiftValue - Extract the shift value.
static bool isAnyMOVWMovAlias(uint64_t Value, int RegWidth)
static unsigned getArithShiftValue(unsigned Imm)
getArithShiftValue - get the arithmetic shift value.
static float getFPImmFloat(unsigned Imm)
static bool isMOVZMovAlias(uint64_t Value, int Shift, int RegWidth)
static const char * getShiftExtendName(AArch64_AM::ShiftExtendType ST)
getShiftName - Get the string encoding for the shift type.
static uint64_t decodeAdvSIMDModImmType10(uint8_t Imm)
static AArch64_AM::ShiftExtendType getArithExtendType(unsigned Imm)
static AArch64_AM::ShiftExtendType getShiftType(unsigned Imm)
getShiftType - Extract the shift type.
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:477
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
Definition STLExtras.h:1657
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:644
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
Definition STLExtras.h:1970
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition MathExtras.h:342
MachineInstr * getImm(const MachineOperand &MO, const MachineRegisterInfo *MRI)
static bool atomicBarrierDroppedOnZero(unsigned Opcode)
format_object< Ts... > format(const char *Fmt, const Ts &... Vals)
These are helper functions used to produce formatted output.
Definition Format.h:118
To bit_cast(const From &from) noexcept
Definition bit.h:90
DWARFExpression::Operation Op
static MCRegister getWRegFromXReg(MCRegister Reg)
constexpr unsigned BitWidth
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
Definition MathExtras.h:583
constexpr T maskTrailingOnes(unsigned N)
Create a bitmask with the N right-most bits set to 1, and all other bits set to 0.
Definition MathExtras.h:86
std::string itostr(int64_t X)
bool haveFeatures(FeatureBitset ActiveFeatures) const
const char * Name