blob: 059ae3f7fb09322cb27ff93db0812b598e9489df [file] [log] [blame]
Ulrich Weigand5f613df2013-05-06 16:15:19 +00001//===-- SystemZInstPrinter.cpp - Convert SystemZ MCInst to assembly syntax ===//
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
Ulrich Weigand5f613df2013-05-06 16:15:19 +000010#include "SystemZInstPrinter.h"
11#include "llvm/MC/MCExpr.h"
Pete Cooper3de83e42015-05-15 21:58:42 +000012#include "llvm/MC/MCInst.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000013#include "llvm/MC/MCInstrInfo.h"
Ulrich Weigand7bdd7c22015-02-18 09:11:36 +000014#include "llvm/MC/MCSymbol.h"
Pete Cooper3de83e42015-05-15 21:58:42 +000015#include "llvm/Support/ErrorHandling.h"
Ulrich Weigand5f613df2013-05-06 16:15:19 +000016#include "llvm/Support/raw_ostream.h"
17
18using namespace llvm;
19
Chandler Carruth84e68b22014-04-22 02:41:26 +000020#define DEBUG_TYPE "asm-printer"
21
Ulrich Weigand5f613df2013-05-06 16:15:19 +000022#include "SystemZGenAsmWriter.inc"
23
24void SystemZInstPrinter::printAddress(unsigned Base, int64_t Disp,
25 unsigned Index, raw_ostream &O) {
26 O << Disp;
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000027 if (Base || Index) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000028 O << '(';
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000029 if (Index) {
30 O << '%' << getRegisterName(Index);
31 if (Base)
32 O << ',';
33 }
34 if (Base)
35 O << '%' << getRegisterName(Base);
36 O << ')';
37 }
Ulrich Weigand5f613df2013-05-06 16:15:19 +000038}
39
Matt Arsenault8b643552015-06-09 00:31:39 +000040void SystemZInstPrinter::printOperand(const MCOperand &MO, const MCAsmInfo *MAI,
41 raw_ostream &O) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000042 if (MO.isReg())
43 O << '%' << getRegisterName(MO.getReg());
44 else if (MO.isImm())
45 O << MO.getImm();
46 else if (MO.isExpr())
Matt Arsenault8b643552015-06-09 00:31:39 +000047 MO.getExpr()->print(O, MAI);
Ulrich Weigand5f613df2013-05-06 16:15:19 +000048 else
49 llvm_unreachable("Invalid operand");
50}
51
52void SystemZInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
Akira Hatanakab46d0232015-03-27 20:36:02 +000053 StringRef Annot,
54 const MCSubtargetInfo &STI) {
Ulrich Weigand5f613df2013-05-06 16:15:19 +000055 printInstruction(MI, O);
56 printAnnotation(O, Annot);
57}
58
59void SystemZInstPrinter::printRegName(raw_ostream &O, unsigned RegNo) const {
60 O << '%' << getRegisterName(RegNo);
61}
62
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000063template<unsigned N>
64void printUImmOperand(const MCInst *MI, int OpNum, raw_ostream &O) {
65 int64_t Value = MI->getOperand(OpNum).getImm();
66 assert(isUInt<N>(Value) && "Invalid uimm argument");
67 O << Value;
68}
69
70template<unsigned N>
71void printSImmOperand(const MCInst *MI, int OpNum, raw_ostream &O) {
72 int64_t Value = MI->getOperand(OpNum).getImm();
73 assert(isInt<N>(Value) && "Invalid simm argument");
74 O << Value;
75}
76
77void SystemZInstPrinter::printU1ImmOperand(const MCInst *MI, int OpNum,
78 raw_ostream &O) {
79 printUImmOperand<1>(MI, OpNum, O);
80}
81
82void SystemZInstPrinter::printU2ImmOperand(const MCInst *MI, int OpNum,
83 raw_ostream &O) {
84 printUImmOperand<2>(MI, OpNum, O);
85}
86
87void SystemZInstPrinter::printU3ImmOperand(const MCInst *MI, int OpNum,
88 raw_ostream &O) {
89 printUImmOperand<3>(MI, OpNum, O);
90}
91
Ulrich Weigand5f613df2013-05-06 16:15:19 +000092void SystemZInstPrinter::printU4ImmOperand(const MCInst *MI, int OpNum,
93 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000094 printUImmOperand<4>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +000095}
96
97void SystemZInstPrinter::printU6ImmOperand(const MCInst *MI, int OpNum,
98 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +000099 printUImmOperand<6>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000100}
101
102void SystemZInstPrinter::printS8ImmOperand(const MCInst *MI, int OpNum,
103 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000104 printSImmOperand<8>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000105}
106
107void SystemZInstPrinter::printU8ImmOperand(const MCInst *MI, int OpNum,
108 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000109 printUImmOperand<8>(MI, OpNum, O);
110}
111
112void SystemZInstPrinter::printU12ImmOperand(const MCInst *MI, int OpNum,
113 raw_ostream &O) {
114 printUImmOperand<12>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000115}
116
117void SystemZInstPrinter::printS16ImmOperand(const MCInst *MI, int OpNum,
118 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000119 printSImmOperand<16>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000120}
121
122void SystemZInstPrinter::printU16ImmOperand(const MCInst *MI, int OpNum,
123 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000124 printUImmOperand<16>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000125}
126
127void SystemZInstPrinter::printS32ImmOperand(const MCInst *MI, int OpNum,
128 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000129 printSImmOperand<32>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000130}
131
132void SystemZInstPrinter::printU32ImmOperand(const MCInst *MI, int OpNum,
133 raw_ostream &O) {
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000134 printUImmOperand<32>(MI, OpNum, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000135}
136
137void SystemZInstPrinter::printAccessRegOperand(const MCInst *MI, int OpNum,
138 raw_ostream &O) {
139 uint64_t Value = MI->getOperand(OpNum).getImm();
140 assert(Value < 16 && "Invalid access register number");
141 O << "%a" << (unsigned int)Value;
142}
143
Richard Sandifordeb9af292013-05-14 10:17:52 +0000144void SystemZInstPrinter::printPCRelOperand(const MCInst *MI, int OpNum,
145 raw_ostream &O) {
146 const MCOperand &MO = MI->getOperand(OpNum);
147 if (MO.isImm()) {
148 O << "0x";
149 O.write_hex(MO.getImm());
150 } else
Matt Arsenault8b643552015-06-09 00:31:39 +0000151 MO.getExpr()->print(O, &MAI);
Richard Sandifordeb9af292013-05-14 10:17:52 +0000152}
153
Ulrich Weigand7bdd7c22015-02-18 09:11:36 +0000154void SystemZInstPrinter::printPCRelTLSOperand(const MCInst *MI, int OpNum,
155 raw_ostream &O) {
156 // Output the PC-relative operand.
157 printPCRelOperand(MI, OpNum, O);
158
159 // Output the TLS marker if present.
160 if ((unsigned)OpNum + 1 < MI->getNumOperands()) {
161 const MCOperand &MO = MI->getOperand(OpNum + 1);
162 const MCSymbolRefExpr &refExp = cast<MCSymbolRefExpr>(*MO.getExpr());
163 switch (refExp.getKind()) {
164 case MCSymbolRefExpr::VK_TLSGD:
165 O << ":tls_gdcall:";
166 break;
167 case MCSymbolRefExpr::VK_TLSLDM:
168 O << ":tls_ldcall:";
169 break;
170 default:
171 llvm_unreachable("Unexpected symbol kind");
172 }
173 O << refExp.getSymbol().getName();
174 }
175}
176
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000177void SystemZInstPrinter::printOperand(const MCInst *MI, int OpNum,
178 raw_ostream &O) {
Matt Arsenault8b643552015-06-09 00:31:39 +0000179 printOperand(MI->getOperand(OpNum), &MAI, O);
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000180}
181
182void SystemZInstPrinter::printBDAddrOperand(const MCInst *MI, int OpNum,
183 raw_ostream &O) {
184 printAddress(MI->getOperand(OpNum).getReg(),
185 MI->getOperand(OpNum + 1).getImm(), 0, O);
186}
187
188void SystemZInstPrinter::printBDXAddrOperand(const MCInst *MI, int OpNum,
189 raw_ostream &O) {
190 printAddress(MI->getOperand(OpNum).getReg(),
191 MI->getOperand(OpNum + 1).getImm(),
192 MI->getOperand(OpNum + 2).getReg(), O);
193}
194
Richard Sandiford1d959002013-07-02 14:56:45 +0000195void SystemZInstPrinter::printBDLAddrOperand(const MCInst *MI, int OpNum,
196 raw_ostream &O) {
197 unsigned Base = MI->getOperand(OpNum).getReg();
198 uint64_t Disp = MI->getOperand(OpNum + 1).getImm();
199 uint64_t Length = MI->getOperand(OpNum + 2).getImm();
200 O << Disp << '(' << Length;
201 if (Base)
202 O << ",%" << getRegisterName(Base);
203 O << ')';
204}
205
Ulrich Weiganda8b04e12015-05-05 19:23:40 +0000206void SystemZInstPrinter::printBDVAddrOperand(const MCInst *MI, int OpNum,
207 raw_ostream &O) {
208 printAddress(MI->getOperand(OpNum).getReg(),
209 MI->getOperand(OpNum + 1).getImm(),
210 MI->getOperand(OpNum + 2).getReg(), O);
211}
212
Ulrich Weigand5f613df2013-05-06 16:15:19 +0000213void SystemZInstPrinter::printCond4Operand(const MCInst *MI, int OpNum,
214 raw_ostream &O) {
215 static const char *const CondNames[] = {
216 "o", "h", "nle", "l", "nhe", "lh", "ne",
217 "e", "nlh", "he", "nl", "le", "nh", "no"
218 };
219 uint64_t Imm = MI->getOperand(OpNum).getImm();
220 assert(Imm > 0 && Imm < 15 && "Invalid condition");
221 O << CondNames[Imm - 1];
222}