1 //===-- M68kInstPrinter.h - Convert M68k MCInst to asm ----------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
10 /// This file contains declarations for an M68k MCInst printer.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_LIB_TARGET_M68K_INSTPRINTER_M68KINSTPRINTER_H
15 #define LLVM_LIB_TARGET_M68K_INSTPRINTER_M68KINSTPRINTER_H
17 #include "M68kMemOperandPrinter.h"
18 #include "llvm/MC/MCInstPrinter.h"
24 class M68kInstPrinter
: public MCInstPrinter
,
25 public M68kMemOperandPrinter
<M68kInstPrinter
, MCInst
> {
26 friend class M68kMemOperandPrinter
;
29 M68kInstPrinter(const MCAsmInfo
&MAI
, const MCInstrInfo
&MII
,
30 const MCRegisterInfo
&MRI
)
31 : MCInstPrinter(MAI
, MII
, MRI
) {}
33 // Autogenerated by tblgen.
34 void printInstruction(const MCInst
*MI
, uint64_t Address
, raw_ostream
&O
);
35 static const char *getRegisterName(MCRegister Reg
);
37 void printRegName(raw_ostream
&OS
, MCRegister Reg
) const override
;
38 void printInst(const MCInst
*MI
, uint64_t Address
, StringRef Annot
,
39 const MCSubtargetInfo
&STI
, raw_ostream
&O
) override
;
41 bool printAliasInstr(const MCInst
*MI
, uint64_t Address
, raw_ostream
&OS
);
42 void printCustomAliasOperand(const MCInst
*MI
, unsigned OpIdx
,
43 unsigned PrintMethodIdx
, raw_ostream
&O
);
45 std::pair
<const char *, uint64_t> getMnemonic(const MCInst
*MI
) override
;
48 void printOperand(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
49 void printImmediate(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
50 /// Print register mask for MOVEM instruction in order D0-D7,A0-A7
51 void printMoveMask(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
52 /// Print register mask for MOVEM instruction in order A7-A0,D7-D0
53 void printMoveMaskR(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
54 void printDisp(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
55 void printAbsMem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
);
57 //===----------------------------------------------------------------------===//
59 //===----------------------------------------------------------------------===//
61 void printPCRelImm(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
63 printAbsMem(MI
, opNum
, O
);
66 void printARI8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
67 printARIMem(MI
, opNum
, O
);
69 void printARI16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
70 printARIMem(MI
, opNum
, O
);
72 void printARI32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
73 printARIMem(MI
, opNum
, O
);
76 void printARIPI8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
77 printARIPIMem(MI
, opNum
, O
);
79 void printARIPI16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
80 printARIPIMem(MI
, opNum
, O
);
82 void printARIPI32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
83 printARIPIMem(MI
, opNum
, O
);
86 void printARIPD8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
87 printARIPDMem(MI
, opNum
, O
);
89 void printARIPD16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
90 printARIPDMem(MI
, opNum
, O
);
92 void printARIPD32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
93 printARIPDMem(MI
, opNum
, O
);
96 void printARID8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
97 printARIDMem(MI
, opNum
, O
);
99 void printARID16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
100 printARIDMem(MI
, opNum
, O
);
102 void printARID32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
103 printARIDMem(MI
, opNum
, O
);
106 void printARII8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
107 printARIIMem(MI
, opNum
, O
);
109 void printARII16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
110 printARIIMem(MI
, opNum
, O
);
112 void printARII32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
113 printARIIMem(MI
, opNum
, O
);
116 void printAS8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
117 printAbsMem(MI
, opNum
, O
);
119 void printAS16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
120 printAbsMem(MI
, opNum
, O
);
122 void printAS32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
123 printAbsMem(MI
, opNum
, O
);
126 void printAL8Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
127 printAbsMem(MI
, opNum
, O
);
129 void printAL16Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
130 printAbsMem(MI
, opNum
, O
);
132 void printAL32Mem(const MCInst
*MI
, unsigned opNum
, raw_ostream
&O
) {
133 printAbsMem(MI
, opNum
, O
);
136 void printPCD8Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
138 printPCDMem(MI
, Address
, opNum
, O
);
140 void printPCD16Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
142 printPCDMem(MI
, Address
, opNum
, O
);
144 void printPCD32Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
146 printPCDMem(MI
, Address
, opNum
, O
);
149 void printPCI8Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
151 printPCIMem(MI
, Address
, opNum
, O
);
153 void printPCI16Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
155 printPCIMem(MI
, Address
, opNum
, O
);
157 void printPCI32Mem(const MCInst
*MI
, uint64_t Address
, unsigned opNum
,
159 printPCIMem(MI
, Address
, opNum
, O
);
162 } // end namespace llvm
164 #endif // LLVM_LIB_TARGET_M68K_INSTPRINTER_M68KINSTPRINTER_H