Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 1 | //===-- AMDGPUInstPrinter.h - AMDGPU MC Inst -> ASM interface ---*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | /// \file |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
Matt Arsenault | 6b6a2c3 | 2016-03-11 08:00:27 +0000 | [diff] [blame] | 13 | #ifndef LLVM_LIB_TARGET_AMDGPU_INSTPRINTER_AMDGPUINSTPRINTER_H |
| 14 | #define LLVM_LIB_TARGET_AMDGPU_INSTPRINTER_AMDGPUINSTPRINTER_H |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 15 | |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 16 | #include "llvm/MC/MCInstPrinter.h" |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 17 | |
| 18 | namespace llvm { |
| 19 | |
| 20 | class AMDGPUInstPrinter : public MCInstPrinter { |
| 21 | public: |
| 22 | AMDGPUInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII, |
| 23 | const MCRegisterInfo &MRI) |
| 24 | : MCInstPrinter(MAI, MII, MRI) {} |
| 25 | |
| 26 | //Autogenerated by tblgen |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 27 | void printInstruction(const MCInst *MI, const MCSubtargetInfo &STI, |
| 28 | raw_ostream &O); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 29 | static const char *getRegisterName(unsigned RegNo); |
| 30 | |
Akira Hatanaka | b46d023 | 2015-03-27 20:36:02 +0000 | [diff] [blame] | 31 | void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot, |
| 32 | const MCSubtargetInfo &STI) override; |
Tom Stellard | d7e6f13 | 2015-04-08 01:09:26 +0000 | [diff] [blame] | 33 | static void printRegOperand(unsigned RegNo, raw_ostream &O, |
| 34 | const MCRegisterInfo &MRI); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 35 | |
| 36 | private: |
Matt Arsenault | cc88ce3 | 2016-10-12 18:00:51 +0000 | [diff] [blame] | 37 | void printU4ImmOperand(const MCInst *MI, unsigned OpNo, |
| 38 | const MCSubtargetInfo &STI, raw_ostream &O); |
Matt Arsenault | 4d7d383 | 2014-04-15 22:32:49 +0000 | [diff] [blame] | 39 | void printU8ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 40 | void printU16ImmOperand(const MCInst *MI, unsigned OpNo, |
| 41 | const MCSubtargetInfo &STI, raw_ostream &O); |
Sam Kolton | dfa29f7 | 2016-03-09 12:29:31 +0000 | [diff] [blame] | 42 | void printU4ImmDecOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Matt Arsenault | 61cc908 | 2014-10-10 22:16:07 +0000 | [diff] [blame] | 43 | void printU8ImmDecOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
| 44 | void printU16ImmDecOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Matt Arsenault | 9698f1c | 2017-06-20 19:54:14 +0000 | [diff] [blame] | 45 | void printS16ImmDecOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 46 | void printU32ImmOperand(const MCInst *MI, unsigned OpNo, |
| 47 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 48 | void printNamedBit(const MCInst *MI, unsigned OpNo, raw_ostream &O, |
Matt Arsenault | e8dbf79 | 2016-07-05 22:06:56 +0000 | [diff] [blame] | 49 | StringRef BitName); |
Tom Stellard | 229d5e6 | 2014-08-05 14:48:12 +0000 | [diff] [blame] | 50 | void printOffen(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
| 51 | void printIdxen(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
| 52 | void printAddr64(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
| 53 | void printMBUFOffset(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 54 | void printOffset(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 55 | raw_ostream &O); |
Matt Arsenault | 9698f1c | 2017-06-20 19:54:14 +0000 | [diff] [blame] | 56 | void printOffsetS13(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 57 | raw_ostream &O); |
| 58 | |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 59 | void printOffset0(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 60 | raw_ostream &O); |
| 61 | void printOffset1(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 62 | raw_ostream &O); |
Artem Tamazov | 54bfd54 | 2016-10-31 16:07:39 +0000 | [diff] [blame] | 63 | void printSMRDOffset8(const MCInst *MI, unsigned OpNo, |
| 64 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 65 | void printSMRDOffset20(const MCInst *MI, unsigned OpNo, |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 66 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 67 | void printSMRDLiteralOffset(const MCInst *MI, unsigned OpNo, |
| 68 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 69 | void printGDS(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 70 | raw_ostream &O); |
| 71 | void printGLC(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 72 | raw_ostream &O); |
| 73 | void printSLC(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 74 | raw_ostream &O); |
| 75 | void printTFE(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 76 | raw_ostream &O); |
| 77 | void printDMask(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 78 | raw_ostream &O); |
| 79 | void printUNorm(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 80 | raw_ostream &O); |
| 81 | void printDA(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 82 | raw_ostream &O); |
| 83 | void printR128(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 84 | raw_ostream &O); |
Matt Arsenault | 8a63cb9 | 2016-12-05 20:31:49 +0000 | [diff] [blame] | 85 | void printLWE(const MCInst *MI, unsigned OpNo, |
| 86 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 87 | void printExpCompr(const MCInst *MI, unsigned OpNo, |
| 88 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 89 | void printExpVM(const MCInst *MI, unsigned OpNo, |
| 90 | const MCSubtargetInfo &STI, raw_ostream &O); |
David Stuttard | 70e8bc1 | 2017-06-22 16:29:22 +0000 | [diff] [blame^] | 91 | void printDFMT(const MCInst *MI, unsigned OpNo, |
| 92 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 93 | void printNFMT(const MCInst *MI, unsigned OpNo, |
| 94 | const MCSubtargetInfo &STI, raw_ostream &O); |
Matt Arsenault | 8a63cb9 | 2016-12-05 20:31:49 +0000 | [diff] [blame] | 95 | |
Matt Arsenault | fcf86c5 | 2014-04-15 22:32:42 +0000 | [diff] [blame] | 96 | void printRegOperand(unsigned RegNo, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 97 | void printVOPDst(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 98 | raw_ostream &O); |
Matt Arsenault | 4bd7236 | 2016-12-10 00:39:12 +0000 | [diff] [blame] | 99 | void printImmediate16(uint32_t Imm, const MCSubtargetInfo &STI, |
| 100 | raw_ostream &O); |
Matt Arsenault | 9be7b0d | 2017-02-27 18:49:11 +0000 | [diff] [blame] | 101 | void printImmediateV216(uint32_t Imm, const MCSubtargetInfo &STI, |
| 102 | raw_ostream &O); |
Matt Arsenault | c88ba36 | 2016-10-29 04:05:06 +0000 | [diff] [blame] | 103 | void printImmediate32(uint32_t Imm, const MCSubtargetInfo &STI, |
| 104 | raw_ostream &O); |
| 105 | void printImmediate64(uint64_t Imm, const MCSubtargetInfo &STI, |
| 106 | raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 107 | void printOperand(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 108 | raw_ostream &O); |
| 109 | void printOperandAndFPInputMods(const MCInst *MI, unsigned OpNo, |
| 110 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 111 | void printOperandAndIntInputMods(const MCInst *MI, unsigned OpNo, |
| 112 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 113 | void printDPPCtrl(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 114 | raw_ostream &O); |
| 115 | void printRowMask(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 116 | raw_ostream &O); |
| 117 | void printBankMask(const MCInst *MI, unsigned OpNo, |
| 118 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 119 | void printBoundCtrl(const MCInst *MI, unsigned OpNo, |
| 120 | const MCSubtargetInfo &STI, raw_ostream &O); |
Sam Kolton | 3025e7f | 2016-04-26 13:33:56 +0000 | [diff] [blame] | 121 | void printSDWASel(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 122 | void printSDWADstSel(const MCInst *MI, unsigned OpNo, |
| 123 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 124 | void printSDWASrc0Sel(const MCInst *MI, unsigned OpNo, |
| 125 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 126 | void printSDWASrc1Sel(const MCInst *MI, unsigned OpNo, |
| 127 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 128 | void printSDWADstUnused(const MCInst *MI, unsigned OpNo, |
| 129 | const MCSubtargetInfo &STI, raw_ostream &O); |
Matt Arsenault | 9be7b0d | 2017-02-27 18:49:11 +0000 | [diff] [blame] | 130 | void printOpSel(const MCInst *MI, unsigned OpNo, |
| 131 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 132 | void printOpSelHi(const MCInst *MI, unsigned OpNo, |
| 133 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 134 | void printNegLo(const MCInst *MI, unsigned OpNo, |
| 135 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 136 | void printNegHi(const MCInst *MI, unsigned OpNo, |
| 137 | const MCSubtargetInfo &STI, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 138 | void printInterpSlot(const MCInst *MI, unsigned OpNo, |
| 139 | const MCSubtargetInfo &STI, raw_ostream &O); |
Matt Arsenault | ebfba70 | 2016-12-14 16:36:12 +0000 | [diff] [blame] | 140 | void printInterpAttr(const MCInst *MI, unsigned OpNo, |
| 141 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 142 | void printInterpAttrChan(const MCInst *MI, unsigned OpNo, |
| 143 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 144 | |
Matt Arsenault | cc88ce3 | 2016-10-12 18:00:51 +0000 | [diff] [blame] | 145 | void printVGPRIndexMode(const MCInst *MI, unsigned OpNo, |
| 146 | const MCSubtargetInfo &STI, raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 147 | void printMemOperand(const MCInst *MI, unsigned OpNo, |
| 148 | const MCSubtargetInfo &STI, raw_ostream &O); |
Matt Arsenault | 8a63cb9 | 2016-12-05 20:31:49 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | template <unsigned N> |
| 152 | void printExpSrcN(const MCInst *MI, unsigned OpNo, |
| 153 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 154 | void printExpSrc0(const MCInst *MI, unsigned OpNo, |
| 155 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 156 | void printExpSrc1(const MCInst *MI, unsigned OpNo, |
| 157 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 158 | void printExpSrc2(const MCInst *MI, unsigned OpNo, |
| 159 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 160 | void printExpSrc3(const MCInst *MI, unsigned OpNo, |
| 161 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 162 | void printExpTgt(const MCInst *MI, unsigned OpNo, |
| 163 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 164 | |
Matt Arsenault | f45faaf | 2014-03-17 22:23:09 +0000 | [diff] [blame] | 165 | static void printIfSet(const MCInst *MI, unsigned OpNo, raw_ostream &O, |
| 166 | StringRef Asm, StringRef Default = ""); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 167 | static void printIfSet(const MCInst *MI, unsigned OpNo, raw_ostream &O, |
| 168 | char Asm); |
| 169 | void printAbs(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 170 | raw_ostream &O); |
| 171 | void printClamp(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 172 | raw_ostream &O); |
| 173 | void printClampSI(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 174 | raw_ostream &O); |
| 175 | void printOModSI(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 176 | raw_ostream &O); |
| 177 | void printLiteral(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 178 | raw_ostream &O); |
| 179 | void printLast(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 180 | raw_ostream &O); |
| 181 | void printNeg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 182 | raw_ostream &O); |
| 183 | void printOMOD(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 184 | raw_ostream &O); |
| 185 | void printRel(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 186 | raw_ostream &O); |
| 187 | void printUpdateExecMask(const MCInst *MI, unsigned OpNo, |
| 188 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 189 | void printUpdatePred(const MCInst *MI, unsigned OpNo, |
| 190 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 191 | void printWrite(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 192 | raw_ostream &O); |
| 193 | void printSel(const MCInst *MI, unsigned OpNo, raw_ostream &O); |
| 194 | void printBankSwizzle(const MCInst *MI, unsigned OpNo, |
| 195 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 196 | void printRSel(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 197 | raw_ostream &O); |
| 198 | void printCT(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 199 | raw_ostream &O); |
| 200 | void printKCache(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 201 | raw_ostream &O); |
| 202 | void printSendMsg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 203 | raw_ostream &O); |
Dmitry Preobrazhensky | 793c592 | 2017-05-31 16:26:47 +0000 | [diff] [blame] | 204 | void printSwizzle(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 205 | raw_ostream &O); |
Konstantin Zhuravlyov | da4687c | 2016-09-27 14:42:48 +0000 | [diff] [blame] | 206 | void printWaitFlag(const MCInst *MI, unsigned OpNo, |
| 207 | const MCSubtargetInfo &STI, raw_ostream &O); |
| 208 | void printHwreg(const MCInst *MI, unsigned OpNo, const MCSubtargetInfo &STI, |
| 209 | raw_ostream &O); |
Tom Stellard | 75aadc2 | 2012-12-11 21:25:42 +0000 | [diff] [blame] | 210 | }; |
| 211 | |
| 212 | } // End namespace llvm |
| 213 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 214 | #endif |