blob: 33667f436e9d6f5c9a3d62f491a8449112885b09 [file] [log] [blame]
Evandro Menezes5cee6212012-04-12 17:55:53 +00001//===- HexagonInstPrinter.cpp - Convert Hexagon 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//
10// This class prints an Hexagon MCInst to a .s file.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "asm-printer"
Evandro Menezes5cee6212012-04-12 17:55:53 +000015#include "HexagonAsmPrinter.h"
Jyotsna Verma7503a622013-02-20 16:13:27 +000016#include "Hexagon.h"
17#include "HexagonInstPrinter.h"
18#include "MCTargetDesc/HexagonMCInst.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/StringExtras.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000020#include "llvm/MC/MCAsmInfo.h"
21#include "llvm/MC/MCExpr.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000022#include "llvm/MC/MCInst.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000023#include "llvm/Support/raw_ostream.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000024
25using namespace llvm;
26
27#define GET_INSTRUCTION_NAME
28#include "HexagonGenAsmWriter.inc"
29
Jyotsna Verma7503a622013-02-20 16:13:27 +000030const char HexagonInstPrinter::PacketPadding = '\t';
31
Evandro Menezes5cee6212012-04-12 17:55:53 +000032StringRef HexagonInstPrinter::getOpcodeName(unsigned Opcode) const {
33 return MII.getName(Opcode);
34}
35
36StringRef HexagonInstPrinter::getRegName(unsigned RegNo) const {
37 return getRegisterName(RegNo);
38}
39
40void HexagonInstPrinter::printInst(const MCInst *MI, raw_ostream &O,
41 StringRef Annot) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000042 printInst((const HexagonMCInst*)(MI), O, Annot);
43}
44
45void HexagonInstPrinter::printInst(const HexagonMCInst *MI, raw_ostream &O,
46 StringRef Annot) {
Evandro Menezes5cee6212012-04-12 17:55:53 +000047 const char startPacket = '{',
48 endPacket = '}';
49 // TODO: add outer HW loop when it's supported too.
50 if (MI->getOpcode() == Hexagon::ENDLOOP0) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000051 // Ending a harware loop is different from ending an regular packet.
Jyotsna Verma7503a622013-02-20 16:13:27 +000052 assert(MI->isPacketEnd() && "Loop-end must also end the packet");
Evandro Menezes5cee6212012-04-12 17:55:53 +000053
Jyotsna Verma7503a622013-02-20 16:13:27 +000054 if (MI->isPacketStart()) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000055 // There must be a packet to end a loop.
56 // FIXME: when shuffling is always run, this shouldn't be needed.
57 HexagonMCInst Nop;
58 StringRef NoAnnot;
59
60 Nop.setOpcode (Hexagon::NOP);
Jyotsna Verma7503a622013-02-20 16:13:27 +000061 Nop.setPacketStart (MI->isPacketStart());
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000062 printInst (&Nop, O, NoAnnot);
63 }
64
65 // Close the packet.
Jyotsna Verma7503a622013-02-20 16:13:27 +000066 if (MI->isPacketEnd())
67 O << PacketPadding << endPacket;
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000068
69 printInstruction(MI, O);
70 }
71 else {
72 // Prefix the insn opening the packet.
Jyotsna Verma7503a622013-02-20 16:13:27 +000073 if (MI->isPacketStart())
74 O << PacketPadding << startPacket << '\n';
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000075
76 printInstruction(MI, O);
77
78 // Suffix the insn closing the packet.
Jyotsna Verma7503a622013-02-20 16:13:27 +000079 if (MI->isPacketEnd())
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000080 // Suffix the packet in a new line always, since the GNU assembler has
81 // issues with a closing brace on the same line as CONST{32,64}.
Jyotsna Verma7503a622013-02-20 16:13:27 +000082 O << '\n' << PacketPadding << endPacket;
Evandro Menezes5cee6212012-04-12 17:55:53 +000083 }
84
Evandro Menezes5cee6212012-04-12 17:55:53 +000085 printAnnotation(O, Annot);
86}
87
88void HexagonInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
89 raw_ostream &O) const {
90 const MCOperand& MO = MI->getOperand(OpNo);
91
92 if (MO.isReg()) {
93 O << getRegisterName(MO.getReg());
94 } else if(MO.isExpr()) {
95 O << *MO.getExpr();
96 } else if(MO.isImm()) {
97 printImmOperand(MI, OpNo, O);
98 } else {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000099 llvm_unreachable("Unknown operand");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000100 }
101}
102
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000103void HexagonInstPrinter::printImmOperand(const MCInst *MI, unsigned OpNo,
104 raw_ostream &O) const {
Jyotsna Verma7503a622013-02-20 16:13:27 +0000105 const MCOperand& MO = MI->getOperand(OpNo);
106
107 if(MO.isExpr()) {
108 O << *MO.getExpr();
109 } else if(MO.isImm()) {
110 O << MI->getOperand(OpNo).getImm();
111 } else {
112 llvm_unreachable("Unknown operand");
113 }
Evandro Menezes5cee6212012-04-12 17:55:53 +0000114}
115
116void HexagonInstPrinter::printExtOperand(const MCInst *MI, unsigned OpNo,
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000117 raw_ostream &O) const {
Jyotsna Verma7503a622013-02-20 16:13:27 +0000118 const HexagonMCInst *HMCI = static_cast<const HexagonMCInst*>(MI);
119 if (HMCI->isConstExtended())
120 O << "#";
121 printOperand(MI, OpNo, O);
Evandro Menezes5cee6212012-04-12 17:55:53 +0000122}
123
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000124void HexagonInstPrinter::printUnsignedImmOperand(const MCInst *MI,
125 unsigned OpNo, raw_ostream &O) const {
Evandro Menezes5cee6212012-04-12 17:55:53 +0000126 O << MI->getOperand(OpNo).getImm();
127}
128
129void HexagonInstPrinter::printNegImmOperand(const MCInst *MI, unsigned OpNo,
130 raw_ostream &O) const {
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000131 O << -MI->getOperand(OpNo).getImm();
Evandro Menezes5cee6212012-04-12 17:55:53 +0000132}
133
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000134void HexagonInstPrinter::printNOneImmOperand(const MCInst *MI, unsigned OpNo,
135 raw_ostream &O) const {
Evandro Menezes5cee6212012-04-12 17:55:53 +0000136 O << -1;
137}
138
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000139void HexagonInstPrinter::printMEMriOperand(const MCInst *MI, unsigned OpNo,
140 raw_ostream &O) const {
Evandro Menezes5cee6212012-04-12 17:55:53 +0000141 const MCOperand& MO0 = MI->getOperand(OpNo);
142 const MCOperand& MO1 = MI->getOperand(OpNo + 1);
143
144 O << getRegisterName(MO0.getReg());
Brendon Cahoonf6b687e2012-05-14 19:35:42 +0000145 O << " + #" << MO1.getImm();
Evandro Menezes5cee6212012-04-12 17:55:53 +0000146}
147
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000148void HexagonInstPrinter::printFrameIndexOperand(const MCInst *MI, unsigned OpNo,
149 raw_ostream &O) const {
Evandro Menezes5cee6212012-04-12 17:55:53 +0000150 const MCOperand& MO0 = MI->getOperand(OpNo);
151 const MCOperand& MO1 = MI->getOperand(OpNo + 1);
152
153 O << getRegisterName(MO0.getReg()) << ", #" << MO1.getImm();
154}
155
156void HexagonInstPrinter::printGlobalOperand(const MCInst *MI, unsigned OpNo,
157 raw_ostream &O) const {
NAKAMURA Takumidf3d5ea2012-04-21 11:24:55 +0000158 assert(MI->getOperand(OpNo).isExpr() && "Expecting expression");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000159
160 printOperand(MI, OpNo, O);
161}
162
163void HexagonInstPrinter::printJumpTable(const MCInst *MI, unsigned OpNo,
164 raw_ostream &O) const {
NAKAMURA Takumidf3d5ea2012-04-21 11:24:55 +0000165 assert(MI->getOperand(OpNo).isExpr() && "Expecting expression");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000166
167 printOperand(MI, OpNo, O);
168}
169
170void HexagonInstPrinter::printConstantPool(const MCInst *MI, unsigned OpNo,
171 raw_ostream &O) const {
NAKAMURA Takumidf3d5ea2012-04-21 11:24:55 +0000172 assert(MI->getOperand(OpNo).isExpr() && "Expecting expression");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000173
174 printOperand(MI, OpNo, O);
175}
176
177void HexagonInstPrinter::printBranchOperand(const MCInst *MI, unsigned OpNo,
178 raw_ostream &O) const {
179 // Branches can take an immediate operand. This is used by the branch
180 // selection pass to print $+8, an eight byte displacement from the PC.
Richard Trieud7fd95a2013-06-28 23:46:19 +0000181 llvm_unreachable("Unknown branch operand.");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000182}
183
184void HexagonInstPrinter::printCallOperand(const MCInst *MI, unsigned OpNo,
185 raw_ostream &O) const {
186}
187
188void HexagonInstPrinter::printAbsAddrOperand(const MCInst *MI, unsigned OpNo,
189 raw_ostream &O) const {
190}
191
192void HexagonInstPrinter::printPredicateOperand(const MCInst *MI, unsigned OpNo,
193 raw_ostream &O) const {
194}
195
196void HexagonInstPrinter::printSymbol(const MCInst *MI, unsigned OpNo,
197 raw_ostream &O, bool hi) const {
Benjamin Kramer755bf4f2013-07-02 17:24:00 +0000198 assert(MI->getOperand(OpNo).isImm() && "Unknown symbol operand");
Evandro Menezes5cee6212012-04-12 17:55:53 +0000199
Benjamin Kramer755bf4f2013-07-02 17:24:00 +0000200 O << '#' << (hi ? "HI" : "LO") << "(#";
Richard Trieufab01e52013-07-01 23:06:23 +0000201 printOperand(MI, OpNo, O);
Evandro Menezes5cee6212012-04-12 17:55:53 +0000202 O << ')';
203}