blob: a0bf1632dff39fd2711d774f8fa6692a47dded9d [file] [log] [blame]
Chris Lattner9efd1182010-04-04 19:09:29 +00001//===-- AsmPrinterInlineAsm.cpp - AsmPrinter Inline Asm Handling ----------===//
Chris Lattner1e158692010-04-04 18:34:07 +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//
Chris Lattner9efd1182010-04-04 19:09:29 +000010// This file implements the inline assembler pieces of the AsmPrinter class.
Chris Lattner1e158692010-04-04 18:34:07 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner1e158692010-04-04 18:34:07 +000014#include "llvm/CodeGen/AsmPrinter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallString.h"
16#include "llvm/ADT/Twine.h"
17#include "llvm/CodeGen/MachineBasicBlock.h"
Evgeniy Stepanov0a951b72014-04-23 11:16:03 +000018#include "llvm/CodeGen/MachineFunction.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000020#include "llvm/IR/Constants.h"
Rafael Espindola58873562014-01-03 19:21:54 +000021#include "llvm/IR/DataLayout.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000022#include "llvm/IR/InlineAsm.h"
23#include "llvm/IR/LLVMContext.h"
24#include "llvm/IR/Module.h"
Chris Lattner1e158692010-04-04 18:34:07 +000025#include "llvm/MC/MCAsmInfo.h"
Benjamin Kramerb3e8a6d2016-01-27 10:01:28 +000026#include "llvm/MC/MCParser/MCTargetAsmParser.h"
Chris Lattner1e158692010-04-04 18:34:07 +000027#include "llvm/MC/MCStreamer.h"
Evan Cheng91111d22011-07-09 05:47:46 +000028#include "llvm/MC/MCSubtargetInfo.h"
Chris Lattner1e158692010-04-04 18:34:07 +000029#include "llvm/MC/MCSymbol.h"
Chris Lattner1e158692010-04-04 18:34:07 +000030#include "llvm/Support/ErrorHandling.h"
Chris Lattner8900ef12010-04-05 23:11:24 +000031#include "llvm/Support/MemoryBuffer.h"
32#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000033#include "llvm/Support/TargetRegistry.h"
Chris Lattner1e158692010-04-04 18:34:07 +000034#include "llvm/Support/raw_ostream.h"
Eric Christopher97ea7622015-02-20 06:35:21 +000035#include "llvm/Target/TargetInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Target/TargetMachine.h"
Yuri Gorshenin3939dec2014-09-10 09:45:49 +000037#include "llvm/Target/TargetRegisterInfo.h"
Greg Fitzgerald1f6a6082014-01-22 18:32:35 +000038#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner1e158692010-04-04 18:34:07 +000039using namespace llvm;
40
Chandler Carruth1b9dde02014-04-22 02:02:50 +000041#define DEBUG_TYPE "asm-printer"
42
Chad Rosierb759ede2012-09-07 18:16:38 +000043/// srcMgrDiagHandler - This callback is invoked when the SourceMgr for an
Chris Lattner300fa452010-11-17 08:03:32 +000044/// inline asm has an error in it. diagInfo is a pointer to the SrcMgrDiagInfo
45/// struct above.
Chad Rosierb759ede2012-09-07 18:16:38 +000046static void srcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) {
Sanne Wouda29338752017-02-08 14:48:05 +000047 AsmPrinter::SrcMgrDiagInfo *DiagInfo =
48 static_cast<AsmPrinter::SrcMgrDiagInfo *>(diagInfo);
Chris Lattner300fa452010-11-17 08:03:32 +000049 assert(DiagInfo && "Diagnostic context not passed down?");
Jim Grosbach098f5a22011-09-21 21:36:53 +000050
Sanne Wouda91eadad2017-02-13 13:58:00 +000051 // Look up a LocInfo for the buffer this diagnostic is coming from.
52 unsigned BufNum = DiagInfo->SrcMgr.FindBufferContainingLoc(Diag.getLoc());
53 const MDNode *LocInfo = nullptr;
54 if (BufNum > 0 && BufNum <= DiagInfo->LocInfos.size())
55 LocInfo = DiagInfo->LocInfos[BufNum-1];
56
Chris Lattner79ffdc72010-11-17 08:20:42 +000057 // If the inline asm had metadata associated with it, pull out a location
58 // cookie corresponding to which line the error occurred on.
Chris Lattner300fa452010-11-17 08:03:32 +000059 unsigned LocCookie = 0;
Sanne Wouda91eadad2017-02-13 13:58:00 +000060 if (LocInfo) {
Chris Lattner79ffdc72010-11-17 08:20:42 +000061 unsigned ErrorLine = Diag.getLineNo()-1;
62 if (ErrorLine >= LocInfo->getNumOperands())
63 ErrorLine = 0;
Jim Grosbach098f5a22011-09-21 21:36:53 +000064
Chris Lattner79ffdc72010-11-17 08:20:42 +000065 if (LocInfo->getNumOperands() != 0)
66 if (const ConstantInt *CI =
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +000067 mdconst::dyn_extract<ConstantInt>(LocInfo->getOperand(ErrorLine)))
Chris Lattner300fa452010-11-17 08:03:32 +000068 LocCookie = CI->getZExtValue();
Chris Lattner79ffdc72010-11-17 08:20:42 +000069 }
Jim Grosbach098f5a22011-09-21 21:36:53 +000070
Chris Lattnerb0e36082010-11-17 08:13:01 +000071 DiagInfo->DiagHandler(Diag, DiagInfo->DiagContext, LocCookie);
Chris Lattner300fa452010-11-17 08:03:32 +000072}
73
Chris Lattner1e158692010-04-04 18:34:07 +000074/// EmitInlineAsm - Emit a blob of inline asm to the output streamer.
Akira Hatanaka322ffce2015-03-16 18:02:16 +000075void AsmPrinter::EmitInlineAsm(StringRef Str, const MCSubtargetInfo &STI,
Akira Hatanakaff867732015-05-15 00:20:44 +000076 const MCTargetOptions &MCOptions,
Akira Hatanaka322ffce2015-03-16 18:02:16 +000077 const MDNode *LocMDNode,
Chad Rosierf24ae7b2012-09-05 23:57:37 +000078 InlineAsm::AsmDialect Dialect) const {
Chris Lattner1e158692010-04-04 18:34:07 +000079 assert(!Str.empty() && "Can't emit empty inline asm block");
Jim Grosbach00915352010-10-01 23:29:12 +000080
Chris Lattner8900ef12010-04-05 23:11:24 +000081 // Remember if the buffer is nul terminated or not so we can avoid a copy.
82 bool isNullTerminated = Str.back() == 0;
83 if (isNullTerminated)
84 Str = Str.substr(0, Str.size()-1);
Jim Grosbach00915352010-10-01 23:29:12 +000085
Daniel Sanders753e1762014-02-13 14:44:26 +000086 // If the output streamer does not have mature MC support or the integrated
87 // assembler has been disabled, just emit the blob textually.
88 // Otherwise parse the asm and emit it via MC support.
Chris Lattner1e158692010-04-04 18:34:07 +000089 // This is useful in case the asm parser doesn't handle something but the
90 // system assembler does.
Daniel Sanders753e1762014-02-13 14:44:26 +000091 const MCAsmInfo *MCAI = TM.getMCAsmInfo();
92 assert(MCAI && "No MCAsmInfo");
93 if (!MCAI->useIntegratedAssembler() &&
Lang Hames9ff69c82015-04-24 19:11:51 +000094 !OutStreamer->isIntegratedAssemblerRequired()) {
Eric Christopher64d35be2015-02-19 19:52:25 +000095 emitInlineAsmStart();
Lang Hames9ff69c82015-04-24 19:11:51 +000096 OutStreamer->EmitRawText(Str);
Akira Hatanaka322ffce2015-03-16 18:02:16 +000097 emitInlineAsmEnd(STI, nullptr);
Chris Lattner1e158692010-04-04 18:34:07 +000098 return;
99 }
Jim Grosbach00915352010-10-01 23:29:12 +0000100
Sanne Wouda29338752017-02-08 14:48:05 +0000101 if (!DiagInfo) {
102 DiagInfo = make_unique<SrcMgrDiagInfo>();
Saleem Abdulrasool6252bd82017-01-05 05:56:39 +0000103
Sanne Wouda29338752017-02-08 14:48:05 +0000104 MCContext &Context = MMI->getContext();
105 Context.setInlineSourceManager(&DiagInfo->SrcMgr);
Jim Grosbach00915352010-10-01 23:29:12 +0000106
Sanne Wouda29338752017-02-08 14:48:05 +0000107 LLVMContext &LLVMCtx = MMI->getModule()->getContext();
108 if (LLVMCtx.getInlineAsmDiagnosticHandler()) {
109 DiagInfo->DiagHandler = LLVMCtx.getInlineAsmDiagnosticHandler();
110 DiagInfo->DiagContext = LLVMCtx.getInlineAsmDiagnosticContext();
111 DiagInfo->SrcMgr.setDiagHandler(srcMgrDiagHandler, DiagInfo.get());
112 }
Chris Lattner59126b22010-04-06 00:55:39 +0000113 }
Jim Grosbach00915352010-10-01 23:29:12 +0000114
Sanne Wouda29338752017-02-08 14:48:05 +0000115 SourceMgr &SrcMgr = DiagInfo->SrcMgr;
116 SrcMgr.setIncludeDirs(MCOptions.IASSearchPaths);
Sanne Wouda29338752017-02-08 14:48:05 +0000117
Rafael Espindola3560ff22014-08-27 20:03:13 +0000118 std::unique_ptr<MemoryBuffer> Buffer;
Sanne Wouda29338752017-02-08 14:48:05 +0000119 // The inline asm source manager will outlive Str, so make a copy of the
120 // string for SourceMgr to own.
121 Buffer = MemoryBuffer::getMemBufferCopy(Str, "<inline asm>");
Chris Lattner8900ef12010-04-05 23:11:24 +0000122
123 // Tell SrcMgr about this buffer, it takes ownership of the buffer.
Sanne Wouda29338752017-02-08 14:48:05 +0000124 unsigned BufNum = SrcMgr.AddNewSourceBuffer(std::move(Buffer), SMLoc());
Jim Grosbach00915352010-10-01 23:29:12 +0000125
Sanne Wouda91eadad2017-02-13 13:58:00 +0000126 // Store LocMDNode in DiagInfo, using BufNum as an identifier.
127 if (LocMDNode) {
128 DiagInfo->LocInfos.resize(BufNum);
129 DiagInfo->LocInfos[BufNum-1] = LocMDNode;
130 }
131
Ahmed Charles56440fd2014-03-06 05:51:42 +0000132 std::unique_ptr<MCAsmParser> Parser(
Sanne Wouda29338752017-02-08 14:48:05 +0000133 createMCAsmParser(SrcMgr, OutContext, *OutStreamer, *MAI, BufNum));
Evan Cheng4d1ca962011-07-08 01:53:10 +0000134
Eric Christopher3f05e1a2015-02-21 09:09:15 +0000135 // We create a new MCInstrInfo here since we might be at the module level
Eric Christopher2105ae92015-02-19 23:52:35 +0000136 // and not have a MachineFunction to initialize the TargetInstrInfo from and
Eric Christopher3f05e1a2015-02-21 09:09:15 +0000137 // we only need MCInstrInfo for asm parsing. We create one unconditionally
138 // because it's not subtarget dependent.
139 std::unique_ptr<MCInstrInfo> MII(TM.getTarget().createMCInstrInfo());
Eric Christophercbdbf392015-02-19 21:29:51 +0000140 std::unique_ptr<MCTargetAsmParser> TAP(TM.getTarget().createMCAsmParser(
Akira Hatanakab11ef082015-11-14 06:35:56 +0000141 STI, *Parser, *MII, MCOptions));
Chris Lattner8900ef12010-04-05 23:11:24 +0000142 if (!TAP)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000143 report_fatal_error("Inline asm not supported by this streamer because"
Benjamin Kramera6769262010-04-08 10:44:28 +0000144 " we don't have an asm parser for this target\n");
Chad Rosierf24ae7b2012-09-05 23:57:37 +0000145 Parser->setAssemblerDialect(Dialect);
Daniel Dunbar7f5bf5a2010-07-18 18:31:33 +0000146 Parser->setTargetParser(*TAP.get());
Andrew V. Tischenkoc3c67232017-04-26 09:56:59 +0000147 if (Dialect == InlineAsm::AD_Intel)
148 // We need this flag to be able to parse numbers like "0bH"
149 Parser->setParsingInlineAsm(true);
Yuri Gorshenin3939dec2014-09-10 09:45:49 +0000150 if (MF) {
151 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
152 TAP->SetFrameRegister(TRI->getFrameRegister(*MF));
153 }
Chris Lattner8900ef12010-04-05 23:11:24 +0000154
Eric Christopher64d35be2015-02-19 19:52:25 +0000155 emitInlineAsmStart();
Chris Lattner8900ef12010-04-05 23:11:24 +0000156 // Don't implicitly switch to the text section before the asm.
Daniel Dunbar7f5bf5a2010-07-18 18:31:33 +0000157 int Res = Parser->Run(/*NoInitialTextSection*/ true,
158 /*NoFinalize*/ true);
Akira Hatanakab11ef082015-11-14 06:35:56 +0000159 emitInlineAsmEnd(STI, &TAP->getSTI());
Sanne Wouda29338752017-02-08 14:48:05 +0000160
Sanne Wouda29338752017-02-08 14:48:05 +0000161 if (Res && !DiagInfo->DiagHandler)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000162 report_fatal_error("Error parsing inline asm\n");
Chris Lattner1e158692010-04-04 18:34:07 +0000163}
164
Chad Rosier17788312012-09-11 19:09:56 +0000165static void EmitMSInlineAsmStr(const char *AsmStr, const MachineInstr *MI,
166 MachineModuleInfo *MMI, int InlineAsmVariant,
167 AsmPrinter *AP, unsigned LocCookie,
168 raw_ostream &OS) {
169 // Switch to the inline assembly variant.
170 OS << "\t.intel_syntax\n\t";
Chris Lattner1e158692010-04-04 18:34:07 +0000171
Chad Rosier17788312012-09-11 19:09:56 +0000172 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner1e158692010-04-04 18:34:07 +0000173 unsigned NumOperands = MI->getNumOperands();
Jim Grosbach00915352010-10-01 23:29:12 +0000174
Chad Rosier17788312012-09-11 19:09:56 +0000175 while (*LastEmitted) {
176 switch (*LastEmitted) {
177 default: {
178 // Not a special case, emit the string section literally.
179 const char *LiteralEnd = LastEmitted+1;
180 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
181 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
182 ++LiteralEnd;
Jim Grosbach00915352010-10-01 23:29:12 +0000183
Chad Rosier17788312012-09-11 19:09:56 +0000184 OS.write(LastEmitted, LiteralEnd-LastEmitted);
185 LastEmitted = LiteralEnd;
186 break;
187 }
188 case '\n':
189 ++LastEmitted; // Consume newline character.
190 OS << '\n'; // Indent code with newline.
191 break;
192 case '$': {
193 ++LastEmitted; // Consume '$' character.
194 bool Done = true;
Chris Lattner1e158692010-04-04 18:34:07 +0000195
Chad Rosier17788312012-09-11 19:09:56 +0000196 // Handle escapes.
197 switch (*LastEmitted) {
198 default: Done = false; break;
199 case '$':
200 ++LastEmitted; // Consume second '$' character.
Chris Lattner2a7f6fd2010-11-17 07:53:40 +0000201 break;
202 }
Chad Rosier17788312012-09-11 19:09:56 +0000203 if (Done) break;
204
Reid Klecknerc68a6c42016-11-29 00:29:27 +0000205 // If we have ${:foo}, then this is not a real operand reference, it is a
206 // "magic" string reference, just like in .td files. Arrange to call
207 // PrintSpecial.
208 if (LastEmitted[0] == '{' && LastEmitted[1] == ':') {
209 LastEmitted += 2;
210 const char *StrStart = LastEmitted;
211 const char *StrEnd = strchr(StrStart, '}');
212 if (!StrEnd)
213 report_fatal_error("Unterminated ${:foo} operand in inline asm"
214 " string: '" + Twine(AsmStr) + "'");
215
216 std::string Val(StrStart, StrEnd);
217 AP->PrintSpecial(MI, OS, Val.c_str());
218 LastEmitted = StrEnd+1;
219 break;
220 }
221
Chad Rosier17788312012-09-11 19:09:56 +0000222 const char *IDStart = LastEmitted;
223 const char *IDEnd = IDStart;
224 while (*IDEnd >= '0' && *IDEnd <= '9') ++IDEnd;
225
226 unsigned Val;
227 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
228 report_fatal_error("Bad $ operand number in inline asm string: '" +
229 Twine(AsmStr) + "'");
230 LastEmitted = IDEnd;
231
232 if (Val >= NumOperands-1)
233 report_fatal_error("Invalid $ operand number in inline asm string: '" +
234 Twine(AsmStr) + "'");
235
236 // Okay, we finally have a value number. Ask the target to print this
237 // operand!
238 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
239
240 bool Error = false;
241
242 // Scan to find the machine operand number for the operand.
243 for (; Val; --Val) {
244 if (OpNo >= MI->getNumOperands()) break;
245 unsigned OpFlags = MI->getOperand(OpNo).getImm();
246 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
247 }
248
249 // We may have a location metadata attached to the end of the
250 // instruction, and at no point should see metadata at any
251 // other point while processing. It's an error if so.
252 if (OpNo >= MI->getNumOperands() ||
253 MI->getOperand(OpNo).isMetadata()) {
254 Error = true;
255 } else {
256 unsigned OpFlags = MI->getOperand(OpNo).getImm();
257 ++OpNo; // Skip over the ID number.
Eric Christopher5fdd68e2013-06-24 23:20:02 +0000258
Chad Rosier17788312012-09-11 19:09:56 +0000259 if (InlineAsm::isMemKind(OpFlags)) {
260 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
Craig Topper353eda42014-04-24 06:44:33 +0000261 /*Modifier*/ nullptr, OS);
Chad Rosier17788312012-09-11 19:09:56 +0000262 } else {
263 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
Craig Topper353eda42014-04-24 06:44:33 +0000264 /*Modifier*/ nullptr, OS);
Chad Rosier17788312012-09-11 19:09:56 +0000265 }
266 }
267 if (Error) {
Alp Tokere69170a2014-06-26 22:52:05 +0000268 std::string msg;
269 raw_string_ostream Msg(msg);
Chad Rosier17788312012-09-11 19:09:56 +0000270 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
271 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
272 }
273 break;
274 }
Chris Lattner2a7f6fd2010-11-17 07:53:40 +0000275 }
Chris Lattner51065562010-04-07 05:38:05 +0000276 }
Chad Rosier17788312012-09-11 19:09:56 +0000277 OS << "\n\t.att_syntax\n" << (char)0; // null terminate string.
278}
Jim Grosbach00915352010-10-01 23:29:12 +0000279
Chad Rosier17788312012-09-11 19:09:56 +0000280static void EmitGCCInlineAsmStr(const char *AsmStr, const MachineInstr *MI,
281 MachineModuleInfo *MMI, int InlineAsmVariant,
282 int AsmPrinterVariant, AsmPrinter *AP,
283 unsigned LocCookie, raw_ostream &OS) {
Chris Lattner1e158692010-04-04 18:34:07 +0000284 int CurVariant = -1; // The number of the {.|.|.} region we are in.
285 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chad Rosier17788312012-09-11 19:09:56 +0000286 unsigned NumOperands = MI->getNumOperands();
287
288 OS << '\t';
Jim Grosbach00915352010-10-01 23:29:12 +0000289
Chris Lattner1e158692010-04-04 18:34:07 +0000290 while (*LastEmitted) {
291 switch (*LastEmitted) {
292 default: {
293 // Not a special case, emit the string section literally.
294 const char *LiteralEnd = LastEmitted+1;
295 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
296 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
297 ++LiteralEnd;
298 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
299 OS.write(LastEmitted, LiteralEnd-LastEmitted);
300 LastEmitted = LiteralEnd;
301 break;
302 }
303 case '\n':
304 ++LastEmitted; // Consume newline character.
Chris Lattner0e45d242010-04-05 22:42:30 +0000305 OS << '\n'; // Indent code with newline.
Chris Lattner1e158692010-04-04 18:34:07 +0000306 break;
307 case '$': {
308 ++LastEmitted; // Consume '$' character.
309 bool Done = true;
310
311 // Handle escapes.
312 switch (*LastEmitted) {
313 default: Done = false; break;
314 case '$': // $$ -> $
315 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
316 OS << '$';
317 ++LastEmitted; // Consume second '$' character.
318 break;
319 case '(': // $( -> same as GCC's { character.
320 ++LastEmitted; // Consume '(' character.
Chris Lattnerd62adaa2010-04-07 05:27:36 +0000321 if (CurVariant != -1)
Benjamin Kramera6769262010-04-08 10:44:28 +0000322 report_fatal_error("Nested variants found in inline asm string: '" +
323 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000324 CurVariant = 0; // We're in the first variant now.
325 break;
326 case '|':
327 ++LastEmitted; // consume '|' character.
328 if (CurVariant == -1)
329 OS << '|'; // this is gcc's behavior for | outside a variant
330 else
331 ++CurVariant; // We're in the next variant.
332 break;
333 case ')': // $) -> same as GCC's } char.
334 ++LastEmitted; // consume ')' character.
335 if (CurVariant == -1)
336 OS << '}'; // this is gcc's behavior for } outside a variant
Jim Grosbach00915352010-10-01 23:29:12 +0000337 else
Chris Lattner1e158692010-04-04 18:34:07 +0000338 CurVariant = -1;
339 break;
340 }
341 if (Done) break;
Jim Grosbach00915352010-10-01 23:29:12 +0000342
Chris Lattner1e158692010-04-04 18:34:07 +0000343 bool HasCurlyBraces = false;
344 if (*LastEmitted == '{') { // ${variable}
345 ++LastEmitted; // Consume '{' character.
346 HasCurlyBraces = true;
347 }
Jim Grosbach00915352010-10-01 23:29:12 +0000348
Chris Lattner1e158692010-04-04 18:34:07 +0000349 // If we have ${:foo}, then this is not a real operand reference, it is a
350 // "magic" string reference, just like in .td files. Arrange to call
351 // PrintSpecial.
352 if (HasCurlyBraces && *LastEmitted == ':') {
353 ++LastEmitted;
354 const char *StrStart = LastEmitted;
355 const char *StrEnd = strchr(StrStart, '}');
Craig Topper353eda42014-04-24 06:44:33 +0000356 if (!StrEnd)
Benjamin Kramera6769262010-04-08 10:44:28 +0000357 report_fatal_error("Unterminated ${:foo} operand in inline asm"
358 " string: '" + Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000359
Chris Lattner1e158692010-04-04 18:34:07 +0000360 std::string Val(StrStart, StrEnd);
Chad Rosier17788312012-09-11 19:09:56 +0000361 AP->PrintSpecial(MI, OS, Val.c_str());
Chris Lattner1e158692010-04-04 18:34:07 +0000362 LastEmitted = StrEnd+1;
363 break;
364 }
Jim Grosbach00915352010-10-01 23:29:12 +0000365
Chris Lattner1e158692010-04-04 18:34:07 +0000366 const char *IDStart = LastEmitted;
Chris Lattnerbaa2c972010-04-04 18:42:18 +0000367 const char *IDEnd = IDStart;
Jim Grosbach00915352010-10-01 23:29:12 +0000368 while (*IDEnd >= '0' && *IDEnd <= '9') ++IDEnd;
369
Chris Lattnerbaa2c972010-04-04 18:42:18 +0000370 unsigned Val;
371 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
Benjamin Kramera6769262010-04-08 10:44:28 +0000372 report_fatal_error("Bad $ operand number in inline asm string: '" +
373 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000374 LastEmitted = IDEnd;
Jim Grosbach00915352010-10-01 23:29:12 +0000375
Chris Lattner1e158692010-04-04 18:34:07 +0000376 char Modifier[2] = { 0, 0 };
Jim Grosbach00915352010-10-01 23:29:12 +0000377
Chris Lattner1e158692010-04-04 18:34:07 +0000378 if (HasCurlyBraces) {
379 // If we have curly braces, check for a modifier character. This
380 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
381 if (*LastEmitted == ':') {
382 ++LastEmitted; // Consume ':' character.
Chris Lattner0e45d242010-04-05 22:42:30 +0000383 if (*LastEmitted == 0)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000384 report_fatal_error("Bad ${:} expression in inline asm string: '" +
Benjamin Kramera6769262010-04-08 10:44:28 +0000385 Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000386
Chris Lattner1e158692010-04-04 18:34:07 +0000387 Modifier[0] = *LastEmitted;
388 ++LastEmitted; // Consume modifier character.
389 }
Jim Grosbach00915352010-10-01 23:29:12 +0000390
Chris Lattner0e45d242010-04-05 22:42:30 +0000391 if (*LastEmitted != '}')
Benjamin Kramera6769262010-04-08 10:44:28 +0000392 report_fatal_error("Bad ${} expression in inline asm string: '" +
393 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000394 ++LastEmitted; // Consume '}' character.
395 }
Jim Grosbach00915352010-10-01 23:29:12 +0000396
Chris Lattner0e45d242010-04-05 22:42:30 +0000397 if (Val >= NumOperands-1)
Benjamin Kramera6769262010-04-08 10:44:28 +0000398 report_fatal_error("Invalid $ operand number in inline asm string: '" +
399 Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000400
Chris Lattner1e158692010-04-04 18:34:07 +0000401 // Okay, we finally have a value number. Ask the target to print this
402 // operand!
403 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
Evan Cheng6eb516d2011-01-07 23:50:32 +0000404 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
Chris Lattner1e158692010-04-04 18:34:07 +0000405
406 bool Error = false;
407
408 // Scan to find the machine operand number for the operand.
409 for (; Val; --Val) {
410 if (OpNo >= MI->getNumOperands()) break;
411 unsigned OpFlags = MI->getOperand(OpNo).getImm();
412 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
413 }
414
Akira Hatanakafd82286e2012-05-08 19:14:42 +0000415 // We may have a location metadata attached to the end of the
416 // instruction, and at no point should see metadata at any
417 // other point while processing. It's an error if so.
Eric Christopher12da1692012-03-22 01:33:51 +0000418 if (OpNo >= MI->getNumOperands() ||
Akira Hatanakafd82286e2012-05-08 19:14:42 +0000419 MI->getOperand(OpNo).isMetadata()) {
Chris Lattner1e158692010-04-04 18:34:07 +0000420 Error = true;
421 } else {
422 unsigned OpFlags = MI->getOperand(OpNo).getImm();
423 ++OpNo; // Skip over the ID number.
424
Matt Arsenault8b643552015-06-09 00:31:39 +0000425 if (Modifier[0] == 'l') { // Labels are target independent.
Chris Lattner1e158692010-04-04 18:34:07 +0000426 // FIXME: What if the operand isn't an MBB, report error?
Matt Arsenault8b643552015-06-09 00:31:39 +0000427 const MCSymbol *Sym = MI->getOperand(OpNo).getMBB()->getSymbol();
428 Sym->print(OS, AP->MAI);
429 } else {
Chris Lattnerd62adaa2010-04-07 05:27:36 +0000430 if (InlineAsm::isMemKind(OpFlags)) {
Chad Rosierdb20a412012-09-10 21:10:49 +0000431 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
Craig Topper353eda42014-04-24 06:44:33 +0000432 Modifier[0] ? Modifier : nullptr,
Chris Lattner1e158692010-04-04 18:34:07 +0000433 OS);
434 } else {
Chad Rosierdb20a412012-09-10 21:10:49 +0000435 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
Craig Topper353eda42014-04-24 06:44:33 +0000436 Modifier[0] ? Modifier : nullptr, OS);
Chris Lattner1e158692010-04-04 18:34:07 +0000437 }
438 }
439 }
440 if (Error) {
Alp Tokere69170a2014-06-26 22:52:05 +0000441 std::string msg;
442 raw_string_ostream Msg(msg);
Chris Lattner1e457892010-04-07 23:40:44 +0000443 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
444 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
Chris Lattner1e158692010-04-04 18:34:07 +0000445 }
446 }
447 break;
448 }
449 }
450 }
Chad Rosier17788312012-09-11 19:09:56 +0000451 OS << '\n' << (char)0; // null terminate string.
452}
453
454/// EmitInlineAsm - This method formats and emits the specified machine
455/// instruction that is an inline asm.
456void AsmPrinter::EmitInlineAsm(const MachineInstr *MI) const {
457 assert(MI->isInlineAsm() && "printInlineAsm only works on inline asms");
458
459 // Count the number of register definitions to find the asm string.
460 unsigned NumDefs = 0;
461 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
462 ++NumDefs)
463 assert(NumDefs != MI->getNumOperands()-2 && "No asm string?");
464
465 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
466
467 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
468 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
469
470 // If this asmstr is empty, just print the #APP/#NOAPP markers.
471 // These are useful to see where empty asm's wound up.
472 if (AsmStr[0] == 0) {
Lang Hames9ff69c82015-04-24 19:11:51 +0000473 OutStreamer->emitRawComment(MAI->getInlineAsmStart());
474 OutStreamer->emitRawComment(MAI->getInlineAsmEnd());
Chad Rosier17788312012-09-11 19:09:56 +0000475 return;
Chad Rosier7641f582012-09-10 21:36:05 +0000476 }
477
Chad Rosier17788312012-09-11 19:09:56 +0000478 // Emit the #APP start marker. This has to happen even if verbose-asm isn't
Rafael Espindola0b694812014-01-16 16:28:37 +0000479 // enabled, so we use emitRawComment.
Lang Hames9ff69c82015-04-24 19:11:51 +0000480 OutStreamer->emitRawComment(MAI->getInlineAsmStart());
Chad Rosier17788312012-09-11 19:09:56 +0000481
482 // Get the !srcloc metadata node if we have it, and decode the loc cookie from
483 // it.
484 unsigned LocCookie = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000485 const MDNode *LocMD = nullptr;
Chad Rosier17788312012-09-11 19:09:56 +0000486 for (unsigned i = MI->getNumOperands(); i != 0; --i) {
487 if (MI->getOperand(i-1).isMetadata() &&
488 (LocMD = MI->getOperand(i-1).getMetadata()) &&
489 LocMD->getNumOperands() != 0) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000490 if (const ConstantInt *CI =
491 mdconst::dyn_extract<ConstantInt>(LocMD->getOperand(0))) {
Chad Rosier17788312012-09-11 19:09:56 +0000492 LocCookie = CI->getZExtValue();
493 break;
494 }
495 }
496 }
497
498 // Emit the inline asm to a temporary string so we can emit it through
499 // EmitInlineAsm.
Alp Tokere69170a2014-06-26 22:52:05 +0000500 SmallString<256> StringData;
501 raw_svector_ostream OS(StringData);
Chad Rosier17788312012-09-11 19:09:56 +0000502
503 // The variant of the current asmprinter.
504 int AsmPrinterVariant = MAI->getAssemblerDialect();
505 InlineAsm::AsmDialect InlineAsmVariant = MI->getInlineAsmDialect();
506 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
507 if (InlineAsmVariant == InlineAsm::AD_ATT)
508 EmitGCCInlineAsmStr(AsmStr, MI, MMI, InlineAsmVariant, AsmPrinterVariant,
509 AP, LocCookie, OS);
510 else
511 EmitMSInlineAsmStr(AsmStr, MI, MMI, InlineAsmVariant, AP, LocCookie, OS);
512
Akira Hatanakaff867732015-05-15 00:20:44 +0000513 // Reset SanitizeAddress based on the function's attribute.
514 MCTargetOptions MCOptions = TM.Options.MCOptions;
515 MCOptions.SanitizeAddress =
516 MF->getFunction()->hasFnAttribute(Attribute::SanitizeAddress);
517
518 EmitInlineAsm(OS.str(), getSubtargetInfo(), MCOptions, LocMD,
519 MI->getInlineAsmDialect());
Jim Grosbach00915352010-10-01 23:29:12 +0000520
Chris Lattner1e158692010-04-04 18:34:07 +0000521 // Emit the #NOAPP end marker. This has to happen even if verbose-asm isn't
Rafael Espindola0b694812014-01-16 16:28:37 +0000522 // enabled, so we use emitRawComment.
Lang Hames9ff69c82015-04-24 19:11:51 +0000523 OutStreamer->emitRawComment(MAI->getInlineAsmEnd());
Chris Lattner1e158692010-04-04 18:34:07 +0000524}
525
526
527/// PrintSpecial - Print information related to the specified machine instr
528/// that is independent of the operand, and may be independent of the instr
529/// itself. This can be useful for portably encoding the comment character
530/// or other bits of target-specific knowledge into the asmstrings. The
531/// syntax used is ${:comment}. Targets can override this to add support
532/// for their own strange codes.
533void AsmPrinter::PrintSpecial(const MachineInstr *MI, raw_ostream &OS,
534 const char *Code) const {
535 if (!strcmp(Code, "private")) {
Mehdi Aminibd7287e2015-07-16 06:11:10 +0000536 const DataLayout &DL = MF->getDataLayout();
537 OS << DL.getPrivateGlobalPrefix();
Chris Lattner1e158692010-04-04 18:34:07 +0000538 } else if (!strcmp(Code, "comment")) {
539 OS << MAI->getCommentString();
540 } else if (!strcmp(Code, "uid")) {
541 // Comparing the address of MI isn't sufficient, because machineinstrs may
542 // be allocated to the same address across functions.
Jim Grosbach00915352010-10-01 23:29:12 +0000543
Chris Lattner1e158692010-04-04 18:34:07 +0000544 // If this is a new LastFn instruction, bump the counter.
545 if (LastMI != MI || LastFn != getFunctionNumber()) {
546 ++Counter;
547 LastMI = MI;
548 LastFn = getFunctionNumber();
549 }
550 OS << Counter;
551 } else {
Alp Tokere69170a2014-06-26 22:52:05 +0000552 std::string msg;
553 raw_string_ostream Msg(msg);
Chris Lattner1e158692010-04-04 18:34:07 +0000554 Msg << "Unknown special formatter '" << Code
555 << "' for machine instr: " << *MI;
Chris Lattner2104b8d2010-04-07 22:58:41 +0000556 report_fatal_error(Msg.str());
Jim Grosbach00915352010-10-01 23:29:12 +0000557 }
Chris Lattner1e158692010-04-04 18:34:07 +0000558}
559
560/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
561/// instruction, using the specified assembler variant. Targets should
562/// override this to format as appropriate.
563bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chad Rosier1f57bcb2012-09-07 20:23:29 +0000564 unsigned AsmVariant, const char *ExtraCode,
565 raw_ostream &O) {
Jack Carterb2fd5f62012-06-21 17:14:46 +0000566 // Does this asm operand have a single letter operand modifier?
567 if (ExtraCode && ExtraCode[0]) {
568 if (ExtraCode[1] != 0) return true; // Unknown modifier.
569
570 const MachineOperand &MO = MI->getOperand(OpNo);
571 switch (ExtraCode[0]) {
572 default:
573 return true; // Unknown modifier.
574 case 'c': // Substitute immediate value without immediate syntax
Jack Carterc457f622012-06-21 21:37:54 +0000575 if (MO.getType() != MachineOperand::MO_Immediate)
Jack Carterb2fd5f62012-06-21 17:14:46 +0000576 return true;
577 O << MO.getImm();
578 return false;
Jack Carterc457f622012-06-21 21:37:54 +0000579 case 'n': // Negate the immediate constant.
580 if (MO.getType() != MachineOperand::MO_Immediate)
581 return true;
582 O << -MO.getImm();
583 return false;
Nemanja Ivanovice8cbae32016-02-04 16:18:08 +0000584 case 's': // The GCC deprecated s modifier
585 if (MO.getType() != MachineOperand::MO_Immediate)
586 return true;
587 O << ((32 - MO.getImm()) & 31);
588 return false;
Jack Carterb2fd5f62012-06-21 17:14:46 +0000589 }
590 }
Chris Lattner1e158692010-04-04 18:34:07 +0000591 return true;
592}
593
594bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
595 unsigned AsmVariant,
596 const char *ExtraCode, raw_ostream &O) {
597 // Target doesn't support this yet!
598 return true;
599}
600
Eric Christopher64d35be2015-02-19 19:52:25 +0000601void AsmPrinter::emitInlineAsmStart() const {}
Toma Tabacua23f13c2014-12-17 10:56:16 +0000602
Rafael Espindola65fd0a82014-01-24 15:47:54 +0000603void AsmPrinter::emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
David Peixottoea2bcb92014-02-06 18:19:40 +0000604 const MCSubtargetInfo *EndInfo) const {}