blob: 27f009915e63668cc8421bc16ec80f01deb066f9 [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
14#define DEBUG_TYPE "asm-printer"
Chris Lattner1e158692010-04-04 18:34:07 +000015#include "llvm/CodeGen/AsmPrinter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/OwningPtr.h"
17#include "llvm/ADT/SmallString.h"
18#include "llvm/ADT/Twine.h"
19#include "llvm/CodeGen/MachineBasicBlock.h"
20#include "llvm/CodeGen/MachineModuleInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/Constants.h"
Rafael Espindola58873562014-01-03 19:21:54 +000022#include "llvm/IR/DataLayout.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/InlineAsm.h"
24#include "llvm/IR/LLVMContext.h"
25#include "llvm/IR/Module.h"
Chris Lattner1e158692010-04-04 18:34:07 +000026#include "llvm/MC/MCAsmInfo.h"
27#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"
Evan Cheng11424442011-07-26 00:24:13 +000030#include "llvm/MC/MCTargetAsmParser.h"
Chris Lattner1e158692010-04-04 18:34:07 +000031#include "llvm/Support/ErrorHandling.h"
Chris Lattner8900ef12010-04-05 23:11:24 +000032#include "llvm/Support/MemoryBuffer.h"
33#include "llvm/Support/SourceMgr.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000034#include "llvm/Support/TargetRegistry.h"
Chris Lattner1e158692010-04-04 18:34:07 +000035#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Target/TargetMachine.h"
Greg Fitzgerald1f6a6082014-01-22 18:32:35 +000037#include "llvm/Target/TargetSubtargetInfo.h"
Chris Lattner1e158692010-04-04 18:34:07 +000038using namespace llvm;
39
Chris Lattner300fa452010-11-17 08:03:32 +000040namespace {
41 struct SrcMgrDiagInfo {
42 const MDNode *LocInfo;
Bob Wilsona594fab2013-02-11 05:37:07 +000043 LLVMContext::InlineAsmDiagHandlerTy DiagHandler;
Chris Lattner300fa452010-11-17 08:03:32 +000044 void *DiagContext;
45 };
46}
47
Chad Rosierb759ede2012-09-07 18:16:38 +000048/// srcMgrDiagHandler - This callback is invoked when the SourceMgr for an
Chris Lattner300fa452010-11-17 08:03:32 +000049/// inline asm has an error in it. diagInfo is a pointer to the SrcMgrDiagInfo
50/// struct above.
Chad Rosierb759ede2012-09-07 18:16:38 +000051static void srcMgrDiagHandler(const SMDiagnostic &Diag, void *diagInfo) {
Chris Lattner300fa452010-11-17 08:03:32 +000052 SrcMgrDiagInfo *DiagInfo = static_cast<SrcMgrDiagInfo *>(diagInfo);
53 assert(DiagInfo && "Diagnostic context not passed down?");
Jim Grosbach098f5a22011-09-21 21:36:53 +000054
Chris Lattner79ffdc72010-11-17 08:20:42 +000055 // If the inline asm had metadata associated with it, pull out a location
56 // cookie corresponding to which line the error occurred on.
Chris Lattner300fa452010-11-17 08:03:32 +000057 unsigned LocCookie = 0;
Chris Lattner79ffdc72010-11-17 08:20:42 +000058 if (const MDNode *LocInfo = DiagInfo->LocInfo) {
59 unsigned ErrorLine = Diag.getLineNo()-1;
60 if (ErrorLine >= LocInfo->getNumOperands())
61 ErrorLine = 0;
Jim Grosbach098f5a22011-09-21 21:36:53 +000062
Chris Lattner79ffdc72010-11-17 08:20:42 +000063 if (LocInfo->getNumOperands() != 0)
64 if (const ConstantInt *CI =
65 dyn_cast<ConstantInt>(LocInfo->getOperand(ErrorLine)))
Chris Lattner300fa452010-11-17 08:03:32 +000066 LocCookie = CI->getZExtValue();
Chris Lattner79ffdc72010-11-17 08:20:42 +000067 }
Jim Grosbach098f5a22011-09-21 21:36:53 +000068
Chris Lattnerb0e36082010-11-17 08:13:01 +000069 DiagInfo->DiagHandler(Diag, DiagInfo->DiagContext, LocCookie);
Chris Lattner300fa452010-11-17 08:03:32 +000070}
71
Chris Lattner1e158692010-04-04 18:34:07 +000072/// EmitInlineAsm - Emit a blob of inline asm to the output streamer.
Chad Rosierf24ae7b2012-09-05 23:57:37 +000073void AsmPrinter::EmitInlineAsm(StringRef Str, const MDNode *LocMDNode,
74 InlineAsm::AsmDialect Dialect) const {
Chris Lattner1e158692010-04-04 18:34:07 +000075 assert(!Str.empty() && "Can't emit empty inline asm block");
Jim Grosbach00915352010-10-01 23:29:12 +000076
Chris Lattner8900ef12010-04-05 23:11:24 +000077 // Remember if the buffer is nul terminated or not so we can avoid a copy.
78 bool isNullTerminated = Str.back() == 0;
79 if (isNullTerminated)
80 Str = Str.substr(0, Str.size()-1);
Jim Grosbach00915352010-10-01 23:29:12 +000081
Daniel Sanders753e1762014-02-13 14:44:26 +000082 // If the output streamer does not have mature MC support or the integrated
83 // assembler has been disabled, just emit the blob textually.
84 // Otherwise parse the asm and emit it via MC support.
Chris Lattner1e158692010-04-04 18:34:07 +000085 // This is useful in case the asm parser doesn't handle something but the
86 // system assembler does.
Daniel Sanders753e1762014-02-13 14:44:26 +000087 const MCAsmInfo *MCAI = TM.getMCAsmInfo();
88 assert(MCAI && "No MCAsmInfo");
89 if (!MCAI->useIntegratedAssembler() &&
90 !OutStreamer.isIntegratedAssemblerRequired()) {
Chris Lattner1e158692010-04-04 18:34:07 +000091 OutStreamer.EmitRawText(Str);
Rafael Espindola65fd0a82014-01-24 15:47:54 +000092 emitInlineAsmEnd(TM.getSubtarget<MCSubtargetInfo>(), 0);
Chris Lattner1e158692010-04-04 18:34:07 +000093 return;
94 }
Jim Grosbach00915352010-10-01 23:29:12 +000095
Chris Lattner8900ef12010-04-05 23:11:24 +000096 SourceMgr SrcMgr;
Chris Lattner300fa452010-11-17 08:03:32 +000097 SrcMgrDiagInfo DiagInfo;
Jim Grosbach00915352010-10-01 23:29:12 +000098
Bob Wilsona594fab2013-02-11 05:37:07 +000099 // If the current LLVMContext has an inline asm handler, set it in SourceMgr.
Chris Lattner59126b22010-04-06 00:55:39 +0000100 LLVMContext &LLVMCtx = MMI->getModule()->getContext();
101 bool HasDiagHandler = false;
Bob Wilsona594fab2013-02-11 05:37:07 +0000102 if (LLVMCtx.getInlineAsmDiagnosticHandler() != 0) {
Chad Rosierb759ede2012-09-07 18:16:38 +0000103 // If the source manager has an issue, we arrange for srcMgrDiagHandler
Chris Lattner300fa452010-11-17 08:03:32 +0000104 // to be invoked, getting DiagInfo passed into it.
105 DiagInfo.LocInfo = LocMDNode;
Bob Wilsona594fab2013-02-11 05:37:07 +0000106 DiagInfo.DiagHandler = LLVMCtx.getInlineAsmDiagnosticHandler();
107 DiagInfo.DiagContext = LLVMCtx.getInlineAsmDiagnosticContext();
Chad Rosierb759ede2012-09-07 18:16:38 +0000108 SrcMgr.setDiagHandler(srcMgrDiagHandler, &DiagInfo);
Chris Lattner59126b22010-04-06 00:55:39 +0000109 HasDiagHandler = true;
110 }
Jim Grosbach00915352010-10-01 23:29:12 +0000111
Chris Lattner8900ef12010-04-05 23:11:24 +0000112 MemoryBuffer *Buffer;
113 if (isNullTerminated)
114 Buffer = MemoryBuffer::getMemBuffer(Str, "<inline asm>");
115 else
116 Buffer = MemoryBuffer::getMemBufferCopy(Str, "<inline asm>");
117
118 // Tell SrcMgr about this buffer, it takes ownership of the buffer.
119 SrcMgr.AddNewSourceBuffer(Buffer, SMLoc());
Jim Grosbach00915352010-10-01 23:29:12 +0000120
Jim Grosbach345768c2011-08-16 18:33:49 +0000121 OwningPtr<MCAsmParser> Parser(createMCAsmParser(SrcMgr,
Daniel Dunbar7f5bf5a2010-07-18 18:31:33 +0000122 OutContext, OutStreamer,
123 *MAI));
Evan Cheng4d1ca962011-07-08 01:53:10 +0000124
David Peixottoea2bcb92014-02-06 18:19:40 +0000125 // Initialize the parser with a fresh subtarget info. It is better to use a
126 // new STI here because the parser may modify it and we do not want those
127 // modifications to persist after parsing the inlineasm. The modifications
128 // made by the parser will be seen by the code emitters because it passes
129 // the current STI down to the EncodeInstruction() method.
130 OwningPtr<MCSubtargetInfo> STI(TM.getTarget().createMCSubtargetInfo(
131 TM.getTargetTriple(), TM.getTargetCPU(), TM.getTargetFeatureString()));
Greg Fitzgerald1f6a6082014-01-22 18:32:35 +0000132
David Peixottoea2bcb92014-02-06 18:19:40 +0000133 // Preserve a copy of the original STI because the parser may modify it. For
134 // example, when switching between arm and thumb mode. If the target needs to
Eric Christopherf9761a22014-02-26 02:53:18 +0000135 // emit code to return to the original state it can do so in
136 // emitInlineAsmEnd().
Greg Fitzgerald1f6a6082014-01-22 18:32:35 +0000137 MCSubtargetInfo STIOrig = *STI;
138
Evan Cheng11424442011-07-26 00:24:13 +0000139 OwningPtr<MCTargetAsmParser>
Joey Gouly0e76fa72013-09-12 10:28:05 +0000140 TAP(TM.getTarget().createMCAsmParser(*STI, *Parser, *MII));
Chris Lattner8900ef12010-04-05 23:11:24 +0000141 if (!TAP)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000142 report_fatal_error("Inline asm not supported by this streamer because"
Benjamin Kramera6769262010-04-08 10:44:28 +0000143 " we don't have an asm parser for this target\n");
Chad Rosierf24ae7b2012-09-05 23:57:37 +0000144 Parser->setAssemblerDialect(Dialect);
Daniel Dunbar7f5bf5a2010-07-18 18:31:33 +0000145 Parser->setTargetParser(*TAP.get());
Chris Lattner8900ef12010-04-05 23:11:24 +0000146
147 // Don't implicitly switch to the text section before the asm.
Daniel Dunbar7f5bf5a2010-07-18 18:31:33 +0000148 int Res = Parser->Run(/*NoInitialTextSection*/ true,
149 /*NoFinalize*/ true);
David Peixottoea2bcb92014-02-06 18:19:40 +0000150 emitInlineAsmEnd(STIOrig, STI.get());
Chris Lattner59126b22010-04-06 00:55:39 +0000151 if (Res && !HasDiagHandler)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000152 report_fatal_error("Error parsing inline asm\n");
Chris Lattner1e158692010-04-04 18:34:07 +0000153}
154
Chad Rosier17788312012-09-11 19:09:56 +0000155static void EmitMSInlineAsmStr(const char *AsmStr, const MachineInstr *MI,
156 MachineModuleInfo *MMI, int InlineAsmVariant,
157 AsmPrinter *AP, unsigned LocCookie,
158 raw_ostream &OS) {
159 // Switch to the inline assembly variant.
160 OS << "\t.intel_syntax\n\t";
Chris Lattner1e158692010-04-04 18:34:07 +0000161
Chad Rosier17788312012-09-11 19:09:56 +0000162 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chris Lattner1e158692010-04-04 18:34:07 +0000163 unsigned NumOperands = MI->getNumOperands();
Jim Grosbach00915352010-10-01 23:29:12 +0000164
Chad Rosier17788312012-09-11 19:09:56 +0000165 while (*LastEmitted) {
166 switch (*LastEmitted) {
167 default: {
168 // Not a special case, emit the string section literally.
169 const char *LiteralEnd = LastEmitted+1;
170 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
171 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
172 ++LiteralEnd;
Jim Grosbach00915352010-10-01 23:29:12 +0000173
Chad Rosier17788312012-09-11 19:09:56 +0000174 OS.write(LastEmitted, LiteralEnd-LastEmitted);
175 LastEmitted = LiteralEnd;
176 break;
177 }
178 case '\n':
179 ++LastEmitted; // Consume newline character.
180 OS << '\n'; // Indent code with newline.
181 break;
182 case '$': {
183 ++LastEmitted; // Consume '$' character.
184 bool Done = true;
Chris Lattner1e158692010-04-04 18:34:07 +0000185
Chad Rosier17788312012-09-11 19:09:56 +0000186 // Handle escapes.
187 switch (*LastEmitted) {
188 default: Done = false; break;
189 case '$':
190 ++LastEmitted; // Consume second '$' character.
Chris Lattner2a7f6fd2010-11-17 07:53:40 +0000191 break;
192 }
Chad Rosier17788312012-09-11 19:09:56 +0000193 if (Done) break;
194
195 const char *IDStart = LastEmitted;
196 const char *IDEnd = IDStart;
197 while (*IDEnd >= '0' && *IDEnd <= '9') ++IDEnd;
198
199 unsigned Val;
200 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
201 report_fatal_error("Bad $ operand number in inline asm string: '" +
202 Twine(AsmStr) + "'");
203 LastEmitted = IDEnd;
204
205 if (Val >= NumOperands-1)
206 report_fatal_error("Invalid $ operand number in inline asm string: '" +
207 Twine(AsmStr) + "'");
208
209 // Okay, we finally have a value number. Ask the target to print this
210 // operand!
211 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
212
213 bool Error = false;
214
215 // Scan to find the machine operand number for the operand.
216 for (; Val; --Val) {
217 if (OpNo >= MI->getNumOperands()) break;
218 unsigned OpFlags = MI->getOperand(OpNo).getImm();
219 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
220 }
221
222 // We may have a location metadata attached to the end of the
223 // instruction, and at no point should see metadata at any
224 // other point while processing. It's an error if so.
225 if (OpNo >= MI->getNumOperands() ||
226 MI->getOperand(OpNo).isMetadata()) {
227 Error = true;
228 } else {
229 unsigned OpFlags = MI->getOperand(OpNo).getImm();
230 ++OpNo; // Skip over the ID number.
Eric Christopher5fdd68e2013-06-24 23:20:02 +0000231
Chad Rosier17788312012-09-11 19:09:56 +0000232 if (InlineAsm::isMemKind(OpFlags)) {
233 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
234 /*Modifier*/ 0, OS);
235 } else {
236 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
237 /*Modifier*/ 0, OS);
238 }
239 }
240 if (Error) {
241 std::string msg;
242 raw_string_ostream Msg(msg);
243 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
244 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
245 }
246 break;
247 }
Chris Lattner2a7f6fd2010-11-17 07:53:40 +0000248 }
Chris Lattner51065562010-04-07 05:38:05 +0000249 }
Chad Rosier17788312012-09-11 19:09:56 +0000250 OS << "\n\t.att_syntax\n" << (char)0; // null terminate string.
251}
Jim Grosbach00915352010-10-01 23:29:12 +0000252
Chad Rosier17788312012-09-11 19:09:56 +0000253static void EmitGCCInlineAsmStr(const char *AsmStr, const MachineInstr *MI,
254 MachineModuleInfo *MMI, int InlineAsmVariant,
255 int AsmPrinterVariant, AsmPrinter *AP,
256 unsigned LocCookie, raw_ostream &OS) {
Chris Lattner1e158692010-04-04 18:34:07 +0000257 int CurVariant = -1; // The number of the {.|.|.} region we are in.
258 const char *LastEmitted = AsmStr; // One past the last character emitted.
Chad Rosier17788312012-09-11 19:09:56 +0000259 unsigned NumOperands = MI->getNumOperands();
260
261 OS << '\t';
Jim Grosbach00915352010-10-01 23:29:12 +0000262
Chris Lattner1e158692010-04-04 18:34:07 +0000263 while (*LastEmitted) {
264 switch (*LastEmitted) {
265 default: {
266 // Not a special case, emit the string section literally.
267 const char *LiteralEnd = LastEmitted+1;
268 while (*LiteralEnd && *LiteralEnd != '{' && *LiteralEnd != '|' &&
269 *LiteralEnd != '}' && *LiteralEnd != '$' && *LiteralEnd != '\n')
270 ++LiteralEnd;
271 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
272 OS.write(LastEmitted, LiteralEnd-LastEmitted);
273 LastEmitted = LiteralEnd;
274 break;
275 }
276 case '\n':
277 ++LastEmitted; // Consume newline character.
Chris Lattner0e45d242010-04-05 22:42:30 +0000278 OS << '\n'; // Indent code with newline.
Chris Lattner1e158692010-04-04 18:34:07 +0000279 break;
280 case '$': {
281 ++LastEmitted; // Consume '$' character.
282 bool Done = true;
283
284 // Handle escapes.
285 switch (*LastEmitted) {
286 default: Done = false; break;
287 case '$': // $$ -> $
288 if (CurVariant == -1 || CurVariant == AsmPrinterVariant)
289 OS << '$';
290 ++LastEmitted; // Consume second '$' character.
291 break;
292 case '(': // $( -> same as GCC's { character.
293 ++LastEmitted; // Consume '(' character.
Chris Lattnerd62adaa2010-04-07 05:27:36 +0000294 if (CurVariant != -1)
Benjamin Kramera6769262010-04-08 10:44:28 +0000295 report_fatal_error("Nested variants found in inline asm string: '" +
296 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000297 CurVariant = 0; // We're in the first variant now.
298 break;
299 case '|':
300 ++LastEmitted; // consume '|' character.
301 if (CurVariant == -1)
302 OS << '|'; // this is gcc's behavior for | outside a variant
303 else
304 ++CurVariant; // We're in the next variant.
305 break;
306 case ')': // $) -> same as GCC's } char.
307 ++LastEmitted; // consume ')' character.
308 if (CurVariant == -1)
309 OS << '}'; // this is gcc's behavior for } outside a variant
Jim Grosbach00915352010-10-01 23:29:12 +0000310 else
Chris Lattner1e158692010-04-04 18:34:07 +0000311 CurVariant = -1;
312 break;
313 }
314 if (Done) break;
Jim Grosbach00915352010-10-01 23:29:12 +0000315
Chris Lattner1e158692010-04-04 18:34:07 +0000316 bool HasCurlyBraces = false;
317 if (*LastEmitted == '{') { // ${variable}
318 ++LastEmitted; // Consume '{' character.
319 HasCurlyBraces = true;
320 }
Jim Grosbach00915352010-10-01 23:29:12 +0000321
Chris Lattner1e158692010-04-04 18:34:07 +0000322 // If we have ${:foo}, then this is not a real operand reference, it is a
323 // "magic" string reference, just like in .td files. Arrange to call
324 // PrintSpecial.
325 if (HasCurlyBraces && *LastEmitted == ':') {
326 ++LastEmitted;
327 const char *StrStart = LastEmitted;
328 const char *StrEnd = strchr(StrStart, '}');
329 if (StrEnd == 0)
Benjamin Kramera6769262010-04-08 10:44:28 +0000330 report_fatal_error("Unterminated ${:foo} operand in inline asm"
331 " string: '" + Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000332
Chris Lattner1e158692010-04-04 18:34:07 +0000333 std::string Val(StrStart, StrEnd);
Chad Rosier17788312012-09-11 19:09:56 +0000334 AP->PrintSpecial(MI, OS, Val.c_str());
Chris Lattner1e158692010-04-04 18:34:07 +0000335 LastEmitted = StrEnd+1;
336 break;
337 }
Jim Grosbach00915352010-10-01 23:29:12 +0000338
Chris Lattner1e158692010-04-04 18:34:07 +0000339 const char *IDStart = LastEmitted;
Chris Lattnerbaa2c972010-04-04 18:42:18 +0000340 const char *IDEnd = IDStart;
Jim Grosbach00915352010-10-01 23:29:12 +0000341 while (*IDEnd >= '0' && *IDEnd <= '9') ++IDEnd;
342
Chris Lattnerbaa2c972010-04-04 18:42:18 +0000343 unsigned Val;
344 if (StringRef(IDStart, IDEnd-IDStart).getAsInteger(10, Val))
Benjamin Kramera6769262010-04-08 10:44:28 +0000345 report_fatal_error("Bad $ operand number in inline asm string: '" +
346 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000347 LastEmitted = IDEnd;
Jim Grosbach00915352010-10-01 23:29:12 +0000348
Chris Lattner1e158692010-04-04 18:34:07 +0000349 char Modifier[2] = { 0, 0 };
Jim Grosbach00915352010-10-01 23:29:12 +0000350
Chris Lattner1e158692010-04-04 18:34:07 +0000351 if (HasCurlyBraces) {
352 // If we have curly braces, check for a modifier character. This
353 // supports syntax like ${0:u}, which correspond to "%u0" in GCC asm.
354 if (*LastEmitted == ':') {
355 ++LastEmitted; // Consume ':' character.
Chris Lattner0e45d242010-04-05 22:42:30 +0000356 if (*LastEmitted == 0)
Chris Lattner2104b8d2010-04-07 22:58:41 +0000357 report_fatal_error("Bad ${:} expression in inline asm string: '" +
Benjamin Kramera6769262010-04-08 10:44:28 +0000358 Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000359
Chris Lattner1e158692010-04-04 18:34:07 +0000360 Modifier[0] = *LastEmitted;
361 ++LastEmitted; // Consume modifier character.
362 }
Jim Grosbach00915352010-10-01 23:29:12 +0000363
Chris Lattner0e45d242010-04-05 22:42:30 +0000364 if (*LastEmitted != '}')
Benjamin Kramera6769262010-04-08 10:44:28 +0000365 report_fatal_error("Bad ${} expression in inline asm string: '" +
366 Twine(AsmStr) + "'");
Chris Lattner1e158692010-04-04 18:34:07 +0000367 ++LastEmitted; // Consume '}' character.
368 }
Jim Grosbach00915352010-10-01 23:29:12 +0000369
Chris Lattner0e45d242010-04-05 22:42:30 +0000370 if (Val >= NumOperands-1)
Benjamin Kramera6769262010-04-08 10:44:28 +0000371 report_fatal_error("Invalid $ operand number in inline asm string: '" +
372 Twine(AsmStr) + "'");
Jim Grosbach00915352010-10-01 23:29:12 +0000373
Chris Lattner1e158692010-04-04 18:34:07 +0000374 // Okay, we finally have a value number. Ask the target to print this
375 // operand!
376 if (CurVariant == -1 || CurVariant == AsmPrinterVariant) {
Evan Cheng6eb516d2011-01-07 23:50:32 +0000377 unsigned OpNo = InlineAsm::MIOp_FirstOperand;
Chris Lattner1e158692010-04-04 18:34:07 +0000378
379 bool Error = false;
380
381 // Scan to find the machine operand number for the operand.
382 for (; Val; --Val) {
383 if (OpNo >= MI->getNumOperands()) break;
384 unsigned OpFlags = MI->getOperand(OpNo).getImm();
385 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1;
386 }
387
Akira Hatanakafd82286e2012-05-08 19:14:42 +0000388 // We may have a location metadata attached to the end of the
389 // instruction, and at no point should see metadata at any
390 // other point while processing. It's an error if so.
Eric Christopher12da1692012-03-22 01:33:51 +0000391 if (OpNo >= MI->getNumOperands() ||
Akira Hatanakafd82286e2012-05-08 19:14:42 +0000392 MI->getOperand(OpNo).isMetadata()) {
Chris Lattner1e158692010-04-04 18:34:07 +0000393 Error = true;
394 } else {
395 unsigned OpFlags = MI->getOperand(OpNo).getImm();
396 ++OpNo; // Skip over the ID number.
397
398 if (Modifier[0] == 'l') // labels are target independent
399 // FIXME: What if the operand isn't an MBB, report error?
400 OS << *MI->getOperand(OpNo).getMBB()->getSymbol();
401 else {
Chris Lattnerd62adaa2010-04-07 05:27:36 +0000402 if (InlineAsm::isMemKind(OpFlags)) {
Chad Rosierdb20a412012-09-10 21:10:49 +0000403 Error = AP->PrintAsmMemoryOperand(MI, OpNo, InlineAsmVariant,
Chris Lattner1e158692010-04-04 18:34:07 +0000404 Modifier[0] ? Modifier : 0,
405 OS);
406 } else {
Chad Rosierdb20a412012-09-10 21:10:49 +0000407 Error = AP->PrintAsmOperand(MI, OpNo, InlineAsmVariant,
Chris Lattner1e158692010-04-04 18:34:07 +0000408 Modifier[0] ? Modifier : 0, OS);
409 }
410 }
411 }
412 if (Error) {
413 std::string msg;
414 raw_string_ostream Msg(msg);
Chris Lattner1e457892010-04-07 23:40:44 +0000415 Msg << "invalid operand in inline asm: '" << AsmStr << "'";
416 MMI->getModule()->getContext().emitError(LocCookie, Msg.str());
Chris Lattner1e158692010-04-04 18:34:07 +0000417 }
418 }
419 break;
420 }
421 }
422 }
Chad Rosier17788312012-09-11 19:09:56 +0000423 OS << '\n' << (char)0; // null terminate string.
424}
425
426/// EmitInlineAsm - This method formats and emits the specified machine
427/// instruction that is an inline asm.
428void AsmPrinter::EmitInlineAsm(const MachineInstr *MI) const {
429 assert(MI->isInlineAsm() && "printInlineAsm only works on inline asms");
430
431 // Count the number of register definitions to find the asm string.
432 unsigned NumDefs = 0;
433 for (; MI->getOperand(NumDefs).isReg() && MI->getOperand(NumDefs).isDef();
434 ++NumDefs)
435 assert(NumDefs != MI->getNumOperands()-2 && "No asm string?");
436
437 assert(MI->getOperand(NumDefs).isSymbol() && "No asm string?");
438
439 // Disassemble the AsmStr, printing out the literal pieces, the operands, etc.
440 const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
441
442 // If this asmstr is empty, just print the #APP/#NOAPP markers.
443 // These are useful to see where empty asm's wound up.
444 if (AsmStr[0] == 0) {
Rafael Espindola0b694812014-01-16 16:28:37 +0000445 OutStreamer.emitRawComment(MAI->getInlineAsmStart());
446 OutStreamer.emitRawComment(MAI->getInlineAsmEnd());
Chad Rosier17788312012-09-11 19:09:56 +0000447 return;
Chad Rosier7641f582012-09-10 21:36:05 +0000448 }
449
Chad Rosier17788312012-09-11 19:09:56 +0000450 // Emit the #APP start marker. This has to happen even if verbose-asm isn't
Rafael Espindola0b694812014-01-16 16:28:37 +0000451 // enabled, so we use emitRawComment.
452 OutStreamer.emitRawComment(MAI->getInlineAsmStart());
Chad Rosier17788312012-09-11 19:09:56 +0000453
454 // Get the !srcloc metadata node if we have it, and decode the loc cookie from
455 // it.
456 unsigned LocCookie = 0;
457 const MDNode *LocMD = 0;
458 for (unsigned i = MI->getNumOperands(); i != 0; --i) {
459 if (MI->getOperand(i-1).isMetadata() &&
460 (LocMD = MI->getOperand(i-1).getMetadata()) &&
461 LocMD->getNumOperands() != 0) {
462 if (const ConstantInt *CI = dyn_cast<ConstantInt>(LocMD->getOperand(0))) {
463 LocCookie = CI->getZExtValue();
464 break;
465 }
466 }
467 }
468
469 // Emit the inline asm to a temporary string so we can emit it through
470 // EmitInlineAsm.
471 SmallString<256> StringData;
472 raw_svector_ostream OS(StringData);
473
474 // The variant of the current asmprinter.
475 int AsmPrinterVariant = MAI->getAssemblerDialect();
476 InlineAsm::AsmDialect InlineAsmVariant = MI->getInlineAsmDialect();
477 AsmPrinter *AP = const_cast<AsmPrinter*>(this);
478 if (InlineAsmVariant == InlineAsm::AD_ATT)
479 EmitGCCInlineAsmStr(AsmStr, MI, MMI, InlineAsmVariant, AsmPrinterVariant,
480 AP, LocCookie, OS);
481 else
482 EmitMSInlineAsmStr(AsmStr, MI, MMI, InlineAsmVariant, AP, LocCookie, OS);
483
Chad Rosierf24ae7b2012-09-05 23:57:37 +0000484 EmitInlineAsm(OS.str(), LocMD, MI->getInlineAsmDialect());
Jim Grosbach00915352010-10-01 23:29:12 +0000485
Chris Lattner1e158692010-04-04 18:34:07 +0000486 // Emit the #NOAPP end marker. This has to happen even if verbose-asm isn't
Rafael Espindola0b694812014-01-16 16:28:37 +0000487 // enabled, so we use emitRawComment.
488 OutStreamer.emitRawComment(MAI->getInlineAsmEnd());
Chris Lattner1e158692010-04-04 18:34:07 +0000489}
490
491
492/// PrintSpecial - Print information related to the specified machine instr
493/// that is independent of the operand, and may be independent of the instr
494/// itself. This can be useful for portably encoding the comment character
495/// or other bits of target-specific knowledge into the asmstrings. The
496/// syntax used is ${:comment}. Targets can override this to add support
497/// for their own strange codes.
498void AsmPrinter::PrintSpecial(const MachineInstr *MI, raw_ostream &OS,
499 const char *Code) const {
Rafael Espindola58873562014-01-03 19:21:54 +0000500 const DataLayout *DL = TM.getDataLayout();
Chris Lattner1e158692010-04-04 18:34:07 +0000501 if (!strcmp(Code, "private")) {
Rafael Espindola58873562014-01-03 19:21:54 +0000502 OS << DL->getPrivateGlobalPrefix();
Chris Lattner1e158692010-04-04 18:34:07 +0000503 } else if (!strcmp(Code, "comment")) {
504 OS << MAI->getCommentString();
505 } else if (!strcmp(Code, "uid")) {
506 // Comparing the address of MI isn't sufficient, because machineinstrs may
507 // be allocated to the same address across functions.
Jim Grosbach00915352010-10-01 23:29:12 +0000508
Chris Lattner1e158692010-04-04 18:34:07 +0000509 // If this is a new LastFn instruction, bump the counter.
510 if (LastMI != MI || LastFn != getFunctionNumber()) {
511 ++Counter;
512 LastMI = MI;
513 LastFn = getFunctionNumber();
514 }
515 OS << Counter;
516 } else {
517 std::string msg;
518 raw_string_ostream Msg(msg);
519 Msg << "Unknown special formatter '" << Code
520 << "' for machine instr: " << *MI;
Chris Lattner2104b8d2010-04-07 22:58:41 +0000521 report_fatal_error(Msg.str());
Jim Grosbach00915352010-10-01 23:29:12 +0000522 }
Chris Lattner1e158692010-04-04 18:34:07 +0000523}
524
525/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
526/// instruction, using the specified assembler variant. Targets should
527/// override this to format as appropriate.
528bool AsmPrinter::PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
Chad Rosier1f57bcb2012-09-07 20:23:29 +0000529 unsigned AsmVariant, const char *ExtraCode,
530 raw_ostream &O) {
Jack Carterb2fd5f62012-06-21 17:14:46 +0000531 // Does this asm operand have a single letter operand modifier?
532 if (ExtraCode && ExtraCode[0]) {
533 if (ExtraCode[1] != 0) return true; // Unknown modifier.
534
535 const MachineOperand &MO = MI->getOperand(OpNo);
536 switch (ExtraCode[0]) {
537 default:
538 return true; // Unknown modifier.
539 case 'c': // Substitute immediate value without immediate syntax
Jack Carterc457f622012-06-21 21:37:54 +0000540 if (MO.getType() != MachineOperand::MO_Immediate)
Jack Carterb2fd5f62012-06-21 17:14:46 +0000541 return true;
542 O << MO.getImm();
543 return false;
Jack Carterc457f622012-06-21 21:37:54 +0000544 case 'n': // Negate the immediate constant.
545 if (MO.getType() != MachineOperand::MO_Immediate)
546 return true;
547 O << -MO.getImm();
548 return false;
Jack Carterb2fd5f62012-06-21 17:14:46 +0000549 }
550 }
Chris Lattner1e158692010-04-04 18:34:07 +0000551 return true;
552}
553
554bool AsmPrinter::PrintAsmMemoryOperand(const MachineInstr *MI, unsigned OpNo,
555 unsigned AsmVariant,
556 const char *ExtraCode, raw_ostream &O) {
557 // Target doesn't support this yet!
558 return true;
559}
560
Rafael Espindola65fd0a82014-01-24 15:47:54 +0000561void AsmPrinter::emitInlineAsmEnd(const MCSubtargetInfo &StartInfo,
David Peixottoea2bcb92014-02-06 18:19:40 +0000562 const MCSubtargetInfo *EndInfo) const {}