blob: 3f79632087395e60ca2ddf47a9aeac9fdb23ed29 [file] [log] [blame]
Eugene Zelenko52889212017-08-01 21:20:10 +00001//===- HexagonAsmPrinter.cpp - Print machine instrs to Hexagon assembly ---===//
Tony Linthicum1213a7a2011-12-12 21:14:40 +00002//
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 file contains a printer that converts from our internal representation
11// of machine-dependent LLVM code to Hexagon assembly language. This printer is
12// the output mechanism used by `llc'.
13//
Tony Linthicum1213a7a2011-12-12 21:14:40 +000014//===----------------------------------------------------------------------===//
15
Jyotsna Verma7503a622013-02-20 16:13:27 +000016#include "HexagonAsmPrinter.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000017#include "Hexagon.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000018#include "HexagonInstrInfo.h"
19#include "HexagonRegisterInfo.h"
Jyotsna Verma7503a622013-02-20 16:13:27 +000020#include "HexagonSubtarget.h"
Colin LeMahieuff062612014-11-20 21:56:35 +000021#include "MCTargetDesc/HexagonInstPrinter.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000022#include "MCTargetDesc/HexagonMCExpr.h"
Colin LeMahieu1174fea2015-02-19 21:10:50 +000023#include "MCTargetDesc/HexagonMCInstrInfo.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000024#include "MCTargetDesc/HexagonMCTargetDesc.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000025#include "llvm/ADT/StringExtras.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000026#include "llvm/ADT/StringRef.h"
27#include "llvm/ADT/Twine.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000028#include "llvm/BinaryFormat/ELF.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000029#include "llvm/CodeGen/AsmPrinter.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000030#include "llvm/CodeGen/MachineBasicBlock.h"
31#include "llvm/CodeGen/MachineFunction.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000032#include "llvm/CodeGen/MachineInstr.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000033#include "llvm/CodeGen/MachineOperand.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000034#include "llvm/MC/MCContext.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000035#include "llvm/MC/MCDirectives.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000036#include "llvm/MC/MCExpr.h"
37#include "llvm/MC/MCInst.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000038#include "llvm/MC/MCRegisterInfo.h"
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +000039#include "llvm/MC/MCSectionELF.h"
Evandro Menezes5cee6212012-04-12 17:55:53 +000040#include "llvm/MC/MCStreamer.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000041#include "llvm/MC/MCSymbol.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000042#include "llvm/Support/Casting.h"
Tony Linthicum1213a7a2011-12-12 21:14:40 +000043#include "llvm/Support/CommandLine.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000044#include "llvm/Support/ErrorHandling.h"
Craig Topperb25fda92012-03-17 18:46:09 +000045#include "llvm/Support/TargetRegistry.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000047#include "llvm/Target/TargetRegisterInfo.h"
Eugene Zelenko52889212017-08-01 21:20:10 +000048#include "llvm/Target/TargetSubtargetInfo.h"
49#include <algorithm>
50#include <cassert>
51#include <cstdint>
52#include <string>
Tony Linthicum1213a7a2011-12-12 21:14:40 +000053
54using namespace llvm;
55
Krzysztof Parzyszek8d8b2292015-12-02 23:08:29 +000056namespace llvm {
Eugene Zelenko52889212017-08-01 21:20:10 +000057
58void HexagonLowerToMC(const MCInstrInfo &MCII, const MachineInstr *MI,
59 MCInst &MCB, HexagonAsmPrinter &AP);
60
61} // end namespace llvm
Krzysztof Parzyszek8d8b2292015-12-02 23:08:29 +000062
Chandler Carruth84e68b22014-04-22 02:41:26 +000063#define DEBUG_TYPE "asm-printer"
64
Tony Linthicum1213a7a2011-12-12 21:14:40 +000065static cl::opt<bool> AlignCalls(
66 "hexagon-align-calls", cl::Hidden, cl::init(true),
67 cl::desc("Insert falign after call instruction for Hexagon target"));
68
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +000069// Given a scalar register return its pair.
70inline static unsigned getHexagonRegisterPair(unsigned Reg,
71 const MCRegisterInfo *RI) {
72 assert(Hexagon::IntRegsRegClass.contains(Reg));
73 MCSuperRegIterator SR(Reg, RI, false);
74 unsigned Pair = *SR;
75 assert(Hexagon::DoubleRegsRegClass.contains(Pair));
76 return Pair;
77}
78
David Blaikie94598322015-01-18 20:29:04 +000079HexagonAsmPrinter::HexagonAsmPrinter(TargetMachine &TM,
80 std::unique_ptr<MCStreamer> Streamer)
Eugene Zelenko52889212017-08-01 21:20:10 +000081 : AsmPrinter(TM, std::move(Streamer)) {}
David Blaikie94598322015-01-18 20:29:04 +000082
Evandro Menezes5cee6212012-04-12 17:55:53 +000083void HexagonAsmPrinter::printOperand(const MachineInstr *MI, unsigned OpNo,
Krzysztof Parzyszek29c567a2016-07-26 17:31:02 +000084 raw_ostream &O) {
Evandro Menezes5cee6212012-04-12 17:55:53 +000085 const MachineOperand &MO = MI->getOperand(OpNo);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000086
Evandro Menezes5cee6212012-04-12 17:55:53 +000087 switch (MO.getType()) {
Sirish Pandef8e5e3c2012-05-03 21:52:53 +000088 default: llvm_unreachable ("<unknown operand type>");
Evandro Menezes5cee6212012-04-12 17:55:53 +000089 case MachineOperand::MO_Register:
90 O << HexagonInstPrinter::getRegisterName(MO.getReg());
91 return;
92 case MachineOperand::MO_Immediate:
93 O << MO.getImm();
94 return;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000095 case MachineOperand::MO_MachineBasicBlock:
Matt Arsenault8b643552015-06-09 00:31:39 +000096 MO.getMBB()->getSymbol()->print(O, MAI);
Tony Linthicum1213a7a2011-12-12 21:14:40 +000097 return;
Tony Linthicum1213a7a2011-12-12 21:14:40 +000098 case MachineOperand::MO_ConstantPoolIndex:
Matt Arsenault8b643552015-06-09 00:31:39 +000099 GetCPISymbol(MO.getIndex())->print(O, MAI);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000100 return;
Evandro Menezes5cee6212012-04-12 17:55:53 +0000101 case MachineOperand::MO_GlobalAddress:
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000102 // Computing the address of a global symbol, not calling it.
Matt Arsenault8b643552015-06-09 00:31:39 +0000103 getSymbol(MO.getGlobal())->print(O, MAI);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000104 printOffset(MO.getOffset(), O);
105 return;
106 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000107}
108
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000109// isBlockOnlyReachableByFallthrough - We need to override this since the
110// default AsmPrinter does not print labels for any basic block that
111// is only reachable by a fall through. That works for all cases except
112// for the case in which the basic block is reachable by a fall through but
113// through an indirect from a jump table. In this case, the jump table
114// will contain a label not defined by AsmPrinter.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000115bool HexagonAsmPrinter::
116isBlockOnlyReachableByFallthrough(const MachineBasicBlock *MBB) const {
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000117 if (MBB->hasAddressTaken())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000118 return false;
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000119 return AsmPrinter::isBlockOnlyReachableByFallthrough(MBB);
120}
121
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000122/// PrintAsmOperand - Print out an operand for an inline asm expression.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000123bool HexagonAsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
124 unsigned AsmVariant,
125 const char *ExtraCode,
Evandro Menezes5cee6212012-04-12 17:55:53 +0000126 raw_ostream &OS) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000127 // Does this asm operand have a single letter operand modifier?
128 if (ExtraCode && ExtraCode[0]) {
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000129 if (ExtraCode[1] != 0)
130 return true; // Unknown modifier.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000131
132 switch (ExtraCode[0]) {
Jack Carter5e69cff2012-06-26 13:49:27 +0000133 default:
134 // See if this is a generic print operand
135 return AsmPrinter::PrintAsmOperand(MI, OpNo, AsmVariant, ExtraCode, OS);
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000136 case 'c': // Don't print "$" before a global var name or constant.
137 // Hexagon never has a prefix.
138 printOperand(MI, OpNo, OS);
139 return false;
Krzysztof Parzyszek29c567a2016-07-26 17:31:02 +0000140 case 'L':
141 case 'H': { // The highest-numbered register of a pair.
142 const MachineOperand &MO = MI->getOperand(OpNo);
143 const MachineFunction &MF = *MI->getParent()->getParent();
144 const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
145 if (!MO.isReg())
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000146 return true;
Krzysztof Parzyszek29c567a2016-07-26 17:31:02 +0000147 unsigned RegNumber = MO.getReg();
148 // This should be an assert in the frontend.
149 if (Hexagon::DoubleRegsRegClass.contains(RegNumber))
150 RegNumber = TRI->getSubReg(RegNumber, ExtraCode[0] == 'L' ?
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000151 Hexagon::isub_lo :
152 Hexagon::isub_hi);
Krzysztof Parzyszek29c567a2016-07-26 17:31:02 +0000153 OS << HexagonInstPrinter::getRegisterName(RegNumber);
154 return false;
155 }
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000156 case 'I':
157 // Write 'i' if an integer constant, otherwise nothing. Used to print
158 // addi vs add, etc.
159 if (MI->getOperand(OpNo).isImm())
160 OS << "i";
161 return false;
162 }
163 }
164
165 printOperand(MI, OpNo, OS);
166 return false;
167}
168
169bool HexagonAsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI,
Krzysztof Parzyszek067debe2016-08-19 14:12:51 +0000170 unsigned OpNo, unsigned AsmVariant,
171 const char *ExtraCode,
172 raw_ostream &O) {
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000173 if (ExtraCode && ExtraCode[0])
174 return true; // Unknown modifier.
175
176 const MachineOperand &Base = MI->getOperand(OpNo);
177 const MachineOperand &Offset = MI->getOperand(OpNo+1);
178
179 if (Base.isReg())
180 printOperand(MI, OpNo, O);
181 else
Craig Toppere55c5562012-02-07 02:50:20 +0000182 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000183
184 if (Offset.isImm()) {
185 if (Offset.getImm())
186 O << " + #" << Offset.getImm();
187 }
188 else
Craig Toppere55c5562012-02-07 02:50:20 +0000189 llvm_unreachable("Unimplemented");
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000190
191 return false;
192}
193
Benjamin Kramerab8cc022016-01-12 14:58:49 +0000194static MCSymbol *smallData(AsmPrinter &AP, const MachineInstr &MI,
195 MCStreamer &OutStreamer, const MCOperand &Imm,
196 int AlignSize) {
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000197 MCSymbol *Sym;
198 int64_t Value;
199 if (Imm.getExpr()->evaluateAsAbsolute(Value)) {
200 StringRef sectionPrefix;
201 std::string ImmString;
202 StringRef Name;
203 if (AlignSize == 8) {
204 Name = ".CONST_0000000000000000";
205 sectionPrefix = ".gnu.linkonce.l8";
206 ImmString = utohexstr(Value);
207 } else {
208 Name = ".CONST_00000000";
209 sectionPrefix = ".gnu.linkonce.l4";
210 ImmString = utohexstr(static_cast<uint32_t>(Value));
211 }
212
213 std::string symbolName = // Yes, leading zeros are kept.
214 Name.drop_back(ImmString.size()).str() + ImmString;
215 std::string sectionName = sectionPrefix.str() + symbolName;
216
217 MCSectionELF *Section = OutStreamer.getContext().getELFSection(
218 sectionName, ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
219 OutStreamer.SwitchSection(Section);
220
221 Sym = AP.OutContext.getOrCreateSymbol(Twine(symbolName));
222 if (Sym->isUndefined()) {
223 OutStreamer.EmitLabel(Sym);
224 OutStreamer.EmitSymbolAttribute(Sym, MCSA_Global);
225 OutStreamer.EmitIntValue(Value, AlignSize);
226 OutStreamer.EmitCodeAlignment(AlignSize);
227 }
228 } else {
229 assert(Imm.isExpr() && "Expected expression and found none");
230 const MachineOperand &MO = MI.getOperand(1);
231 assert(MO.isGlobal() || MO.isCPI() || MO.isJTI());
232 MCSymbol *MOSymbol = nullptr;
233 if (MO.isGlobal())
234 MOSymbol = AP.getSymbol(MO.getGlobal());
235 else if (MO.isCPI())
236 MOSymbol = AP.GetCPISymbol(MO.getIndex());
237 else if (MO.isJTI())
238 MOSymbol = AP.GetJTISymbol(MO.getIndex());
239 else
240 llvm_unreachable("Unknown operand type!");
241
242 StringRef SymbolName = MOSymbol->getName();
243 std::string LitaName = ".CONST_" + SymbolName.str();
244
245 MCSectionELF *Section = OutStreamer.getContext().getELFSection(
246 ".lita", ELF::SHT_PROGBITS, ELF::SHF_WRITE | ELF::SHF_ALLOC);
247
248 OutStreamer.SwitchSection(Section);
249 Sym = AP.OutContext.getOrCreateSymbol(Twine(LitaName));
250 if (Sym->isUndefined()) {
251 OutStreamer.EmitLabel(Sym);
252 OutStreamer.EmitSymbolAttribute(Sym, MCSA_Local);
253 OutStreamer.EmitValue(Imm.getExpr(), AlignSize);
254 OutStreamer.EmitCodeAlignment(AlignSize);
255 }
256 }
257 return Sym;
258}
259
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000260static MCInst ScaleVectorOffset(MCInst &Inst, unsigned OpNo,
261 unsigned VectorSize, MCContext &Ctx) {
262 MCInst T;
263 T.setOpcode(Inst.getOpcode());
264 for (unsigned i = 0, n = Inst.getNumOperands(); i != n; ++i) {
265 if (i != OpNo) {
266 T.addOperand(Inst.getOperand(i));
267 continue;
268 }
269 MCOperand &ImmOp = Inst.getOperand(i);
270 const auto *HE = static_cast<const HexagonMCExpr*>(ImmOp.getExpr());
271 int32_t V = cast<MCConstantExpr>(HE->getExpr())->getValue();
272 auto *NewCE = MCConstantExpr::create(V / int32_t(VectorSize), Ctx);
273 auto *NewHE = HexagonMCExpr::create(NewCE, Ctx);
274 T.addOperand(MCOperand::createExpr(NewHE));
275 }
276 return T;
277}
278
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000279void HexagonAsmPrinter::HexagonProcessInstruction(MCInst &Inst,
280 const MachineInstr &MI) {
281 MCInst &MappedInst = static_cast <MCInst &>(Inst);
282 const MCRegisterInfo *RI = OutStreamer->getContext().getRegisterInfo();
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000283 const MachineFunction &MF = *MI.getParent()->getParent();
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000284 auto &HRI = *MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
285 unsigned VectorSize = HRI.getRegSizeInBits(Hexagon::HvxVRRegClass) / 8;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000286
287 switch (Inst.getOpcode()) {
288 default: return;
289
Colin LeMahieuecef1d92016-02-16 20:38:17 +0000290 case Hexagon::A2_iconst: {
291 Inst.setOpcode(Hexagon::A2_addi);
292 MCOperand Reg = Inst.getOperand(0);
293 MCOperand S16 = Inst.getOperand(1);
294 HexagonMCInstrInfo::setMustNotExtend(*S16.getExpr());
Krzysztof Parzyszek57a8bb432017-05-02 18:19:11 +0000295 HexagonMCInstrInfo::setS27_2_reloc(*S16.getExpr());
Colin LeMahieuecef1d92016-02-16 20:38:17 +0000296 Inst.clear();
297 Inst.addOperand(Reg);
298 Inst.addOperand(MCOperand::createReg(Hexagon::R0));
299 Inst.addOperand(S16);
300 break;
301 }
302
Eugene Zelenko52889212017-08-01 21:20:10 +0000303 case Hexagon::A2_tfrf:
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000304 Inst.setOpcode(Hexagon::A2_paddif);
305 Inst.addOperand(MCOperand::createExpr(MCConstantExpr::create(0, OutContext)));
306 break;
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000307
Eugene Zelenko52889212017-08-01 21:20:10 +0000308 case Hexagon::A2_tfrt:
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000309 Inst.setOpcode(Hexagon::A2_paddit);
310 Inst.addOperand(MCOperand::createExpr(MCConstantExpr::create(0, OutContext)));
311 break;
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000312
Eugene Zelenko52889212017-08-01 21:20:10 +0000313 case Hexagon::A2_tfrfnew:
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000314 Inst.setOpcode(Hexagon::A2_paddifnew);
315 Inst.addOperand(MCOperand::createExpr(MCConstantExpr::create(0, OutContext)));
316 break;
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000317
Eugene Zelenko52889212017-08-01 21:20:10 +0000318 case Hexagon::A2_tfrtnew:
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000319 Inst.setOpcode(Hexagon::A2_padditnew);
320 Inst.addOperand(MCOperand::createExpr(MCConstantExpr::create(0, OutContext)));
321 break;
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000322
Eugene Zelenko52889212017-08-01 21:20:10 +0000323 case Hexagon::A2_zxtb:
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000324 Inst.setOpcode(Hexagon::A2_andir);
325 Inst.addOperand(MCOperand::createExpr(MCConstantExpr::create(255, OutContext)));
326 break;
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000327
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000328 // "$dst = CONST64(#$src1)",
Krzysztof Parzyszeka3386502016-08-10 16:46:36 +0000329 case Hexagon::CONST64:
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000330 if (!OutStreamer->hasRawTextSupport()) {
331 const MCOperand &Imm = MappedInst.getOperand(1);
332 MCSectionSubPair Current = OutStreamer->getCurrentSection();
333
334 MCSymbol *Sym = smallData(*this, MI, *OutStreamer, Imm, 8);
335
336 OutStreamer->SwitchSection(Current.first, Current.second);
337 MCInst TmpInst;
338 MCOperand &Reg = MappedInst.getOperand(0);
339 TmpInst.setOpcode(Hexagon::L2_loadrdgp);
340 TmpInst.addOperand(Reg);
341 TmpInst.addOperand(MCOperand::createExpr(
342 MCSymbolRefExpr::create(Sym, OutContext)));
343 MappedInst = TmpInst;
344
345 }
346 break;
347 case Hexagon::CONST32:
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000348 if (!OutStreamer->hasRawTextSupport()) {
349 MCOperand &Imm = MappedInst.getOperand(1);
350 MCSectionSubPair Current = OutStreamer->getCurrentSection();
351 MCSymbol *Sym = smallData(*this, MI, *OutStreamer, Imm, 4);
352 OutStreamer->SwitchSection(Current.first, Current.second);
353 MCInst TmpInst;
354 MCOperand &Reg = MappedInst.getOperand(0);
355 TmpInst.setOpcode(Hexagon::L2_loadrigp);
356 TmpInst.addOperand(Reg);
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000357 TmpInst.addOperand(MCOperand::createExpr(HexagonMCExpr::create(
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000358 MCSymbolRefExpr::create(Sym, OutContext), OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000359 MappedInst = TmpInst;
360 }
361 break;
362
363 // C2_pxfer_map maps to C2_or instruction. Though, it's possible to use
364 // C2_or during instruction selection itself but it results
365 // into suboptimal code.
366 case Hexagon::C2_pxfer_map: {
367 MCOperand &Ps = Inst.getOperand(1);
368 MappedInst.setOpcode(Hexagon::C2_or);
369 MappedInst.addOperand(Ps);
370 return;
371 }
372
373 // Vector reduce complex multiply by scalar, Rt & 1 map to :hi else :lo
374 // The insn is mapped from the 4 operand to the 3 operand raw form taking
375 // 3 register pairs.
376 case Hexagon::M2_vrcmpys_acc_s1: {
377 MCOperand &Rt = Inst.getOperand(3);
Eugene Zelenko52889212017-08-01 21:20:10 +0000378 assert(Rt.isReg() && "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000379 unsigned Reg = RI->getEncodingValue(Rt.getReg());
380 if (Reg & 1)
381 MappedInst.setOpcode(Hexagon::M2_vrcmpys_acc_s1_h);
382 else
383 MappedInst.setOpcode(Hexagon::M2_vrcmpys_acc_s1_l);
384 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI));
385 return;
386 }
387 case Hexagon::M2_vrcmpys_s1: {
388 MCOperand &Rt = Inst.getOperand(2);
Eugene Zelenko52889212017-08-01 21:20:10 +0000389 assert(Rt.isReg() && "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000390 unsigned Reg = RI->getEncodingValue(Rt.getReg());
391 if (Reg & 1)
392 MappedInst.setOpcode(Hexagon::M2_vrcmpys_s1_h);
393 else
394 MappedInst.setOpcode(Hexagon::M2_vrcmpys_s1_l);
395 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI));
396 return;
397 }
398
399 case Hexagon::M2_vrcmpys_s1rp: {
400 MCOperand &Rt = Inst.getOperand(2);
Eugene Zelenko52889212017-08-01 21:20:10 +0000401 assert(Rt.isReg() && "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000402 unsigned Reg = RI->getEncodingValue(Rt.getReg());
403 if (Reg & 1)
404 MappedInst.setOpcode(Hexagon::M2_vrcmpys_s1rp_h);
405 else
406 MappedInst.setOpcode(Hexagon::M2_vrcmpys_s1rp_l);
407 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI));
408 return;
409 }
410
411 case Hexagon::A4_boundscheck: {
412 MCOperand &Rs = Inst.getOperand(1);
Eugene Zelenko52889212017-08-01 21:20:10 +0000413 assert(Rs.isReg() && "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000414 unsigned Reg = RI->getEncodingValue(Rs.getReg());
415 if (Reg & 1) // Odd mapped to raw:hi, regpair is rodd:odd-1, like r3:2
416 MappedInst.setOpcode(Hexagon::A4_boundscheck_hi);
417 else // raw:lo
418 MappedInst.setOpcode(Hexagon::A4_boundscheck_lo);
419 Rs.setReg(getHexagonRegisterPair(Rs.getReg(), RI));
420 return;
421 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000422
Krzysztof Parzyszekc8d676e2017-02-07 17:42:11 +0000423 case Hexagon::PS_call_nr:
424 Inst.setOpcode(Hexagon::J2_call);
425 break;
Eugene Zelenko52889212017-08-01 21:20:10 +0000426
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000427 case Hexagon::S5_asrhub_rnd_sat_goodsyntax: {
428 MCOperand &MO = MappedInst.getOperand(2);
429 int64_t Imm;
430 MCExpr const *Expr = MO.getExpr();
431 bool Success = Expr->evaluateAsAbsolute(Imm);
Eugene Zelenko52889212017-08-01 21:20:10 +0000432 assert(Success && "Expected immediate and none was found");
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000433 (void)Success;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000434 MCInst TmpInst;
435 if (Imm == 0) {
436 TmpInst.setOpcode(Hexagon::S2_vsathub);
437 TmpInst.addOperand(MappedInst.getOperand(0));
438 TmpInst.addOperand(MappedInst.getOperand(1));
439 MappedInst = TmpInst;
440 return;
441 }
442 TmpInst.setOpcode(Hexagon::S5_asrhub_rnd_sat);
443 TmpInst.addOperand(MappedInst.getOperand(0));
444 TmpInst.addOperand(MappedInst.getOperand(1));
445 const MCExpr *One = MCConstantExpr::create(1, OutContext);
446 const MCExpr *Sub = MCBinaryExpr::createSub(Expr, One, OutContext);
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000447 TmpInst.addOperand(
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000448 MCOperand::createExpr(HexagonMCExpr::create(Sub, OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000449 MappedInst = TmpInst;
450 return;
451 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000452
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000453 case Hexagon::S5_vasrhrnd_goodsyntax:
454 case Hexagon::S2_asr_i_p_rnd_goodsyntax: {
455 MCOperand &MO2 = MappedInst.getOperand(2);
456 MCExpr const *Expr = MO2.getExpr();
457 int64_t Imm;
458 bool Success = Expr->evaluateAsAbsolute(Imm);
Eugene Zelenko52889212017-08-01 21:20:10 +0000459 assert(Success && "Expected immediate and none was found");
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000460 (void)Success;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000461 MCInst TmpInst;
462 if (Imm == 0) {
463 TmpInst.setOpcode(Hexagon::A2_combinew);
464 TmpInst.addOperand(MappedInst.getOperand(0));
465 MCOperand &MO1 = MappedInst.getOperand(1);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000466 unsigned High = RI->getSubReg(MO1.getReg(), Hexagon::isub_hi);
467 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::isub_lo);
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000468 // Add a new operand for the second register in the pair.
469 TmpInst.addOperand(MCOperand::createReg(High));
470 TmpInst.addOperand(MCOperand::createReg(Low));
471 MappedInst = TmpInst;
472 return;
473 }
474
475 if (Inst.getOpcode() == Hexagon::S2_asr_i_p_rnd_goodsyntax)
476 TmpInst.setOpcode(Hexagon::S2_asr_i_p_rnd);
477 else
478 TmpInst.setOpcode(Hexagon::S5_vasrhrnd);
479 TmpInst.addOperand(MappedInst.getOperand(0));
480 TmpInst.addOperand(MappedInst.getOperand(1));
481 const MCExpr *One = MCConstantExpr::create(1, OutContext);
482 const MCExpr *Sub = MCBinaryExpr::createSub(Expr, One, OutContext);
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000483 TmpInst.addOperand(
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000484 MCOperand::createExpr(HexagonMCExpr::create(Sub, OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000485 MappedInst = TmpInst;
486 return;
487 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000488
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000489 // if ("#u5==0") Assembler mapped to: "Rd=Rs"; else Rd=asr(Rs,#u5-1):rnd
490 case Hexagon::S2_asr_i_r_rnd_goodsyntax: {
491 MCOperand &MO = Inst.getOperand(2);
492 MCExpr const *Expr = MO.getExpr();
493 int64_t Imm;
494 bool Success = Expr->evaluateAsAbsolute(Imm);
Eugene Zelenko52889212017-08-01 21:20:10 +0000495 assert(Success && "Expected immediate and none was found");
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000496 (void)Success;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000497 MCInst TmpInst;
498 if (Imm == 0) {
499 TmpInst.setOpcode(Hexagon::A2_tfr);
500 TmpInst.addOperand(MappedInst.getOperand(0));
501 TmpInst.addOperand(MappedInst.getOperand(1));
502 MappedInst = TmpInst;
503 return;
504 }
505 TmpInst.setOpcode(Hexagon::S2_asr_i_r_rnd);
506 TmpInst.addOperand(MappedInst.getOperand(0));
507 TmpInst.addOperand(MappedInst.getOperand(1));
508 const MCExpr *One = MCConstantExpr::create(1, OutContext);
509 const MCExpr *Sub = MCBinaryExpr::createSub(Expr, One, OutContext);
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000510 TmpInst.addOperand(
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000511 MCOperand::createExpr(HexagonMCExpr::create(Sub, OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000512 MappedInst = TmpInst;
513 return;
514 }
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000515
516 // Translate a "$Rdd = #imm" to "$Rdd = combine(#[-1,0], #imm)"
517 case Hexagon::A2_tfrpi: {
518 MCInst TmpInst;
519 MCOperand &Rdd = MappedInst.getOperand(0);
520 MCOperand &MO = MappedInst.getOperand(1);
521
522 TmpInst.setOpcode(Hexagon::A2_combineii);
523 TmpInst.addOperand(Rdd);
524 int64_t Imm;
525 bool Success = MO.getExpr()->evaluateAsAbsolute(Imm);
526 if (Success && Imm < 0) {
527 const MCExpr *MOne = MCConstantExpr::create(-1, OutContext);
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000528 TmpInst.addOperand(MCOperand::createExpr(HexagonMCExpr::create(MOne, OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000529 } else {
530 const MCExpr *Zero = MCConstantExpr::create(0, OutContext);
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000531 TmpInst.addOperand(MCOperand::createExpr(HexagonMCExpr::create(Zero, OutContext)));
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000532 }
533 TmpInst.addOperand(MO);
534 MappedInst = TmpInst;
535 return;
536 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000537
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000538 // Translate a "$Rdd = $Rss" to "$Rdd = combine($Rs, $Rt)"
539 case Hexagon::A2_tfrp: {
540 MCOperand &MO = MappedInst.getOperand(1);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000541 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
542 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo);
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000543 MO.setReg(High);
544 // Add a new operand for the second register in the pair.
545 MappedInst.addOperand(MCOperand::createReg(Low));
546 MappedInst.setOpcode(Hexagon::A2_combinew);
547 return;
548 }
549
550 case Hexagon::A2_tfrpt:
551 case Hexagon::A2_tfrpf: {
552 MCOperand &MO = MappedInst.getOperand(2);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000553 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
554 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo);
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000555 MO.setReg(High);
556 // Add a new operand for the second register in the pair.
557 MappedInst.addOperand(MCOperand::createReg(Low));
558 MappedInst.setOpcode((Inst.getOpcode() == Hexagon::A2_tfrpt)
559 ? Hexagon::C2_ccombinewt
560 : Hexagon::C2_ccombinewf);
561 return;
562 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000563
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000564 case Hexagon::A2_tfrptnew:
565 case Hexagon::A2_tfrpfnew: {
566 MCOperand &MO = MappedInst.getOperand(2);
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000567 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
568 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::isub_lo);
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000569 MO.setReg(High);
570 // Add a new operand for the second register in the pair.
571 MappedInst.addOperand(MCOperand::createReg(Low));
572 MappedInst.setOpcode((Inst.getOpcode() == Hexagon::A2_tfrptnew)
573 ? Hexagon::C2_ccombinewnewt
574 : Hexagon::C2_ccombinewnewf);
575 return;
576 }
577
578 case Hexagon::M2_mpysmi: {
579 MCOperand &Imm = MappedInst.getOperand(2);
580 MCExpr const *Expr = Imm.getExpr();
581 int64_t Value;
582 bool Success = Expr->evaluateAsAbsolute(Value);
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000583 assert(Success);
584 (void)Success;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000585 if (Value < 0 && Value > -256) {
586 MappedInst.setOpcode(Hexagon::M2_mpysin);
Colin LeMahieuc7b21242016-02-15 18:47:55 +0000587 Imm.setExpr(HexagonMCExpr::create(
Colin LeMahieu98c8e072016-02-15 18:42:07 +0000588 MCUnaryExpr::createMinus(Expr, OutContext), OutContext));
589 } else
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000590 MappedInst.setOpcode(Hexagon::M2_mpysip);
591 return;
592 }
593
594 case Hexagon::A2_addsp: {
595 MCOperand &Rt = Inst.getOperand(1);
Eugene Zelenko52889212017-08-01 21:20:10 +0000596 assert(Rt.isReg() && "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000597 unsigned Reg = RI->getEncodingValue(Rt.getReg());
598 if (Reg & 1)
599 MappedInst.setOpcode(Hexagon::A2_addsph);
600 else
601 MappedInst.setOpcode(Hexagon::A2_addspl);
602 Rt.setReg(getHexagonRegisterPair(Rt.getReg(), RI));
603 return;
604 }
Eugene Zelenko52889212017-08-01 21:20:10 +0000605
Krzysztof Parzyszek55772972017-09-15 15:46:05 +0000606 case Hexagon::V6_vd0: {
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000607 MCInst TmpInst;
Eugene Zelenko52889212017-08-01 21:20:10 +0000608 assert(Inst.getOperand(0).isReg() &&
609 "Expected register and none was found");
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000610
611 TmpInst.setOpcode(Hexagon::V6_vxor);
612 TmpInst.addOperand(Inst.getOperand(0));
613 TmpInst.addOperand(Inst.getOperand(0));
614 TmpInst.addOperand(Inst.getOperand(0));
615 MappedInst = TmpInst;
616 return;
617 }
618
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000619 case Hexagon::V6_vL32Ub_pi:
620 case Hexagon::V6_vL32b_cur_pi:
621 case Hexagon::V6_vL32b_nt_cur_pi:
622 case Hexagon::V6_vL32b_pi:
623 case Hexagon::V6_vL32b_nt_pi:
624 case Hexagon::V6_vL32b_nt_tmp_pi:
625 case Hexagon::V6_vL32b_tmp_pi:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000626 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext);
627 return;
628
629 case Hexagon::V6_vL32Ub_ai:
630 case Hexagon::V6_vL32b_ai:
631 case Hexagon::V6_vL32b_cur_ai:
632 case Hexagon::V6_vL32b_nt_ai:
633 case Hexagon::V6_vL32b_nt_cur_ai:
634 case Hexagon::V6_vL32b_nt_tmp_ai:
635 case Hexagon::V6_vL32b_tmp_ai:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000636 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext);
637 return;
638
639 case Hexagon::V6_vS32Ub_pi:
640 case Hexagon::V6_vS32b_new_pi:
641 case Hexagon::V6_vS32b_nt_new_pi:
642 case Hexagon::V6_vS32b_nt_pi:
643 case Hexagon::V6_vS32b_pi:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000644 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext);
645 return;
646
647 case Hexagon::V6_vS32Ub_ai:
648 case Hexagon::V6_vS32b_ai:
649 case Hexagon::V6_vS32b_new_ai:
650 case Hexagon::V6_vS32b_nt_ai:
651 case Hexagon::V6_vS32b_nt_new_ai:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000652 MappedInst = ScaleVectorOffset(Inst, 1, VectorSize, OutContext);
653 return;
654
655 case Hexagon::V6_vL32b_cur_npred_pi:
656 case Hexagon::V6_vL32b_cur_pred_pi:
657 case Hexagon::V6_vL32b_npred_pi:
658 case Hexagon::V6_vL32b_nt_cur_npred_pi:
659 case Hexagon::V6_vL32b_nt_cur_pred_pi:
660 case Hexagon::V6_vL32b_nt_npred_pi:
661 case Hexagon::V6_vL32b_nt_pred_pi:
662 case Hexagon::V6_vL32b_nt_tmp_npred_pi:
663 case Hexagon::V6_vL32b_nt_tmp_pred_pi:
664 case Hexagon::V6_vL32b_pred_pi:
665 case Hexagon::V6_vL32b_tmp_npred_pi:
666 case Hexagon::V6_vL32b_tmp_pred_pi:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000667 MappedInst = ScaleVectorOffset(Inst, 4, VectorSize, OutContext);
668 return;
669
670 case Hexagon::V6_vL32b_cur_npred_ai:
671 case Hexagon::V6_vL32b_cur_pred_ai:
672 case Hexagon::V6_vL32b_npred_ai:
673 case Hexagon::V6_vL32b_nt_cur_npred_ai:
674 case Hexagon::V6_vL32b_nt_cur_pred_ai:
675 case Hexagon::V6_vL32b_nt_npred_ai:
676 case Hexagon::V6_vL32b_nt_pred_ai:
677 case Hexagon::V6_vL32b_nt_tmp_npred_ai:
678 case Hexagon::V6_vL32b_nt_tmp_pred_ai:
679 case Hexagon::V6_vL32b_pred_ai:
680 case Hexagon::V6_vL32b_tmp_npred_ai:
681 case Hexagon::V6_vL32b_tmp_pred_ai:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000682 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext);
683 return;
684
685 case Hexagon::V6_vS32Ub_npred_pi:
686 case Hexagon::V6_vS32Ub_pred_pi:
687 case Hexagon::V6_vS32b_new_npred_pi:
688 case Hexagon::V6_vS32b_new_pred_pi:
689 case Hexagon::V6_vS32b_npred_pi:
690 case Hexagon::V6_vS32b_nqpred_pi:
691 case Hexagon::V6_vS32b_nt_new_npred_pi:
692 case Hexagon::V6_vS32b_nt_new_pred_pi:
693 case Hexagon::V6_vS32b_nt_npred_pi:
694 case Hexagon::V6_vS32b_nt_nqpred_pi:
695 case Hexagon::V6_vS32b_nt_pred_pi:
696 case Hexagon::V6_vS32b_nt_qpred_pi:
697 case Hexagon::V6_vS32b_pred_pi:
698 case Hexagon::V6_vS32b_qpred_pi:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000699 MappedInst = ScaleVectorOffset(Inst, 3, VectorSize, OutContext);
700 return;
701
702 case Hexagon::V6_vS32Ub_npred_ai:
703 case Hexagon::V6_vS32Ub_pred_ai:
704 case Hexagon::V6_vS32b_new_npred_ai:
705 case Hexagon::V6_vS32b_new_pred_ai:
706 case Hexagon::V6_vS32b_npred_ai:
707 case Hexagon::V6_vS32b_nqpred_ai:
708 case Hexagon::V6_vS32b_nt_new_npred_ai:
709 case Hexagon::V6_vS32b_nt_new_pred_ai:
710 case Hexagon::V6_vS32b_nt_npred_ai:
711 case Hexagon::V6_vS32b_nt_nqpred_ai:
712 case Hexagon::V6_vS32b_nt_pred_ai:
713 case Hexagon::V6_vS32b_nt_qpred_ai:
714 case Hexagon::V6_vS32b_pred_ai:
715 case Hexagon::V6_vS32b_qpred_ai:
Krzysztof Parzyszek058abf1a2017-04-06 17:28:21 +0000716 MappedInst = ScaleVectorOffset(Inst, 2, VectorSize, OutContext);
717 return;
Krzysztof Parzyszek372bd802015-12-15 17:05:45 +0000718 }
719}
720
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000721/// printMachineInstruction -- Print out a single Hexagon MI in Darwin syntax to
722/// the current output stream.
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000723void HexagonAsmPrinter::EmitInstruction(const MachineInstr *MI) {
Colin LeMahieuf0af6e52015-11-13 17:42:46 +0000724 MCInst MCB = HexagonMCInstrInfo::createBundle();
Krzysztof Parzyszek8d8b2292015-12-02 23:08:29 +0000725 const MCInstrInfo &MCII = *Subtarget->getInstrInfo();
Colin LeMahieu68d967d2015-05-29 14:44:13 +0000726
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000727 if (MI->isBundle()) {
Colin LeMahieu68d967d2015-05-29 14:44:13 +0000728 const MachineBasicBlock* MBB = MI->getParent();
Duncan P. N. Exon Smithc5b668d2016-02-22 20:49:58 +0000729 MachineBasicBlock::const_instr_iterator MII = MI->getIterator();
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000730
Colin LeMahieu7c572b22015-12-03 16:37:21 +0000731 for (++MII; MII != MBB->instr_end() && MII->isInsideBundle(); ++MII)
Krzysztof Parzyszekd04c9b92017-03-31 21:03:59 +0000732 if (!MII->isDebugValue() && !MII->isImplicitDef())
Krzysztof Parzyszek8d8b2292015-12-02 23:08:29 +0000733 HexagonLowerToMC(MCII, &*MII, MCB, *this);
Sirish Pandef8e5e3c2012-05-03 21:52:53 +0000734 }
Colin LeMahieu7c572b22015-12-03 16:37:21 +0000735 else
Krzysztof Parzyszek8d8b2292015-12-02 23:08:29 +0000736 HexagonLowerToMC(MCII, MI, MCB, *this);
Colin LeMahieu7c572b22015-12-03 16:37:21 +0000737
738 bool Ok = HexagonMCInstrInfo::canonicalizePacket(
739 MCII, *Subtarget, OutStreamer->getContext(), MCB, nullptr);
740 assert(Ok);
741 (void)Ok;
742 if(HexagonMCInstrInfo::bundleSize(MCB) == 0)
743 return;
744 OutStreamer->EmitInstruction(MCB, getSubtargetInfo());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000745}
746
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000747extern "C" void LLVMInitializeHexagonAsmPrinter() {
Mehdi Aminif42454b2016-10-09 23:00:34 +0000748 RegisterAsmPrinter<HexagonAsmPrinter> X(getTheHexagonTarget());
Tony Linthicum1213a7a2011-12-12 21:14:40 +0000749}