blob: 9b6b6c929c00dab654972a3297d82ad1864e6f6a [file] [log] [blame]
Chad Rosier3d45a772012-08-17 21:27:25 +00001//===--- SemaStmtAsm.cpp - Semantic Analysis for Asm Statements -----------===//
Chad Rosier4b5e48d2012-08-17 21:19: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 implements semantic analysis for inline asm statements.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Sema/SemaInternal.h"
15#include "clang/Sema/Scope.h"
16#include "clang/Sema/ScopeInfo.h"
17#include "clang/Sema/Initialization.h"
18#include "clang/Sema/Lookup.h"
19#include "clang/AST/TypeLoc.h"
20#include "clang/Lex/Preprocessor.h"
21#include "clang/Basic/TargetInfo.h"
22#include "llvm/ADT/ArrayRef.h"
23#include "llvm/ADT/BitVector.h"
24#include "llvm/ADT/SmallString.h"
25#include "llvm/MC/MCAsmInfo.h"
26#include "llvm/MC/MCContext.h"
Chad Rosier6e97be72012-08-22 23:42:09 +000027#include "llvm/MC/MCExpr.h"
Chad Rosier4b5e48d2012-08-17 21:19:40 +000028#include "llvm/MC/MCInst.h"
29#include "llvm/MC/MCInstPrinter.h"
30#include "llvm/MC/MCInstrInfo.h"
31#include "llvm/MC/MCObjectFileInfo.h"
32#include "llvm/MC/MCRegisterInfo.h"
33#include "llvm/MC/MCStreamer.h"
34#include "llvm/MC/MCSubtargetInfo.h"
Chad Rosier6e97be72012-08-22 23:42:09 +000035#include "llvm/MC/MCSymbol.h"
Chad Rosier4b5e48d2012-08-17 21:19:40 +000036#include "llvm/MC/MCTargetAsmParser.h"
37#include "llvm/MC/MCParser/MCAsmLexer.h"
38#include "llvm/MC/MCParser/MCAsmParser.h"
Chad Rosierfb700262012-09-11 23:13:15 +000039#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
Chad Rosier4b5e48d2012-08-17 21:19:40 +000040#include "llvm/Support/SourceMgr.h"
41#include "llvm/Support/TargetRegistry.h"
42#include "llvm/Support/TargetSelect.h"
43using namespace clang;
44using namespace sema;
45
46/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
47/// ignore "noop" casts in places where an lvalue is required by an inline asm.
48/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
49/// provide a strong guidance to not use it.
50///
51/// This method checks to see if the argument is an acceptable l-value and
52/// returns false if it is a case we can handle.
53static bool CheckAsmLValue(const Expr *E, Sema &S) {
54 // Type dependent expressions will be checked during instantiation.
55 if (E->isTypeDependent())
56 return false;
57
58 if (E->isLValue())
59 return false; // Cool, this is an lvalue.
60
61 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
62 // are supposed to allow.
63 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
64 if (E != E2 && E2->isLValue()) {
65 if (!S.getLangOpts().HeinousExtensions)
66 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
67 << E->getSourceRange();
68 else
69 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
70 << E->getSourceRange();
71 // Accept, even if we emitted an error diagnostic.
72 return false;
73 }
74
75 // None of the above, just randomly invalid non-lvalue.
76 return true;
77}
78
79/// isOperandMentioned - Return true if the specified operand # is mentioned
80/// anywhere in the decomposed asm string.
81static bool isOperandMentioned(unsigned OpNo,
Chad Rosierdf5faf52012-08-25 00:11:56 +000082 ArrayRef<GCCAsmStmt::AsmStringPiece> AsmStrPieces) {
Chad Rosier4b5e48d2012-08-17 21:19:40 +000083 for (unsigned p = 0, e = AsmStrPieces.size(); p != e; ++p) {
Chad Rosierdf5faf52012-08-25 00:11:56 +000084 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p];
Chad Rosier4b5e48d2012-08-17 21:19:40 +000085 if (!Piece.isOperand()) continue;
86
87 // If this is a reference to the input and if the input was the smaller
88 // one, then we have to reject this asm.
89 if (Piece.getOperandNo() == OpNo)
90 return true;
91 }
92 return false;
93}
94
Chad Rosierdf5faf52012-08-25 00:11:56 +000095StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
96 bool IsVolatile, unsigned NumOutputs,
97 unsigned NumInputs, IdentifierInfo **Names,
98 MultiExprArg constraints, MultiExprArg exprs,
99 Expr *asmString, MultiExprArg clobbers,
100 SourceLocation RParenLoc) {
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000101 unsigned NumClobbers = clobbers.size();
102 StringLiteral **Constraints =
Benjamin Kramer5354e772012-08-23 23:38:35 +0000103 reinterpret_cast<StringLiteral**>(constraints.data());
104 Expr **Exprs = exprs.data();
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000105 StringLiteral *AsmString = cast<StringLiteral>(asmString);
Benjamin Kramer5354e772012-08-23 23:38:35 +0000106 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000107
108 SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
109
110 // The parser verifies that there is a string literal here.
111 if (!AsmString->isAscii())
112 return StmtError(Diag(AsmString->getLocStart(),diag::err_asm_wide_character)
113 << AsmString->getSourceRange());
114
115 for (unsigned i = 0; i != NumOutputs; i++) {
116 StringLiteral *Literal = Constraints[i];
117 if (!Literal->isAscii())
118 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
119 << Literal->getSourceRange());
120
121 StringRef OutputName;
122 if (Names[i])
123 OutputName = Names[i]->getName();
124
125 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
126 if (!Context.getTargetInfo().validateOutputConstraint(Info))
127 return StmtError(Diag(Literal->getLocStart(),
128 diag::err_asm_invalid_output_constraint)
129 << Info.getConstraintStr());
130
131 // Check that the output exprs are valid lvalues.
132 Expr *OutputExpr = Exprs[i];
133 if (CheckAsmLValue(OutputExpr, *this)) {
134 return StmtError(Diag(OutputExpr->getLocStart(),
135 diag::err_asm_invalid_lvalue_in_output)
136 << OutputExpr->getSourceRange());
137 }
138
139 OutputConstraintInfos.push_back(Info);
140 }
141
142 SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
143
144 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
145 StringLiteral *Literal = Constraints[i];
146 if (!Literal->isAscii())
147 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
148 << Literal->getSourceRange());
149
150 StringRef InputName;
151 if (Names[i])
152 InputName = Names[i]->getName();
153
154 TargetInfo::ConstraintInfo Info(Literal->getString(), InputName);
155 if (!Context.getTargetInfo().validateInputConstraint(OutputConstraintInfos.data(),
156 NumOutputs, Info)) {
157 return StmtError(Diag(Literal->getLocStart(),
158 diag::err_asm_invalid_input_constraint)
159 << Info.getConstraintStr());
160 }
161
162 Expr *InputExpr = Exprs[i];
163
164 // Only allow void types for memory constraints.
165 if (Info.allowsMemory() && !Info.allowsRegister()) {
166 if (CheckAsmLValue(InputExpr, *this))
167 return StmtError(Diag(InputExpr->getLocStart(),
168 diag::err_asm_invalid_lvalue_in_input)
169 << Info.getConstraintStr()
170 << InputExpr->getSourceRange());
171 }
172
173 if (Info.allowsRegister()) {
174 if (InputExpr->getType()->isVoidType()) {
175 return StmtError(Diag(InputExpr->getLocStart(),
176 diag::err_asm_invalid_type_in_input)
177 << InputExpr->getType() << Info.getConstraintStr()
178 << InputExpr->getSourceRange());
179 }
180 }
181
182 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
183 if (Result.isInvalid())
184 return StmtError();
185
186 Exprs[i] = Result.take();
187 InputConstraintInfos.push_back(Info);
188 }
189
190 // Check that the clobbers are valid.
191 for (unsigned i = 0; i != NumClobbers; i++) {
192 StringLiteral *Literal = Clobbers[i];
193 if (!Literal->isAscii())
194 return StmtError(Diag(Literal->getLocStart(),diag::err_asm_wide_character)
195 << Literal->getSourceRange());
196
197 StringRef Clobber = Literal->getString();
198
199 if (!Context.getTargetInfo().isValidClobber(Clobber))
200 return StmtError(Diag(Literal->getLocStart(),
201 diag::err_asm_unknown_register_name) << Clobber);
202 }
203
Chad Rosierdf5faf52012-08-25 00:11:56 +0000204 GCCAsmStmt *NS =
205 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
206 NumInputs, Names, Constraints, Exprs, AsmString,
207 NumClobbers, Clobbers, RParenLoc);
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000208 // Validate the asm string, ensuring it makes sense given the operands we
209 // have.
Chad Rosierdf5faf52012-08-25 00:11:56 +0000210 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000211 unsigned DiagOffs;
212 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
213 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
214 << AsmString->getSourceRange();
215 return StmtError();
216 }
217
218 // Validate tied input operands for type mismatches.
219 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
220 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
221
222 // If this is a tied constraint, verify that the output and input have
223 // either exactly the same type, or that they are int/ptr operands with the
224 // same size (int/long, int*/long, are ok etc).
225 if (!Info.hasTiedOperand()) continue;
226
227 unsigned TiedTo = Info.getTiedOperand();
228 unsigned InputOpNo = i+NumOutputs;
229 Expr *OutputExpr = Exprs[TiedTo];
230 Expr *InputExpr = Exprs[InputOpNo];
231
232 if (OutputExpr->isTypeDependent() || InputExpr->isTypeDependent())
233 continue;
234
235 QualType InTy = InputExpr->getType();
236 QualType OutTy = OutputExpr->getType();
237 if (Context.hasSameType(InTy, OutTy))
238 continue; // All types can be tied to themselves.
239
240 // Decide if the input and output are in the same domain (integer/ptr or
241 // floating point.
242 enum AsmDomain {
243 AD_Int, AD_FP, AD_Other
244 } InputDomain, OutputDomain;
245
246 if (InTy->isIntegerType() || InTy->isPointerType())
247 InputDomain = AD_Int;
248 else if (InTy->isRealFloatingType())
249 InputDomain = AD_FP;
250 else
251 InputDomain = AD_Other;
252
253 if (OutTy->isIntegerType() || OutTy->isPointerType())
254 OutputDomain = AD_Int;
255 else if (OutTy->isRealFloatingType())
256 OutputDomain = AD_FP;
257 else
258 OutputDomain = AD_Other;
259
260 // They are ok if they are the same size and in the same domain. This
261 // allows tying things like:
262 // void* to int*
263 // void* to int if they are the same size.
264 // double to long double if they are the same size.
265 //
266 uint64_t OutSize = Context.getTypeSize(OutTy);
267 uint64_t InSize = Context.getTypeSize(InTy);
268 if (OutSize == InSize && InputDomain == OutputDomain &&
269 InputDomain != AD_Other)
270 continue;
271
272 // If the smaller input/output operand is not mentioned in the asm string,
273 // then we can promote the smaller one to a larger input and the asm string
274 // won't notice.
275 bool SmallerValueMentioned = false;
276
277 // If this is a reference to the input and if the input was the smaller
278 // one, then we have to reject this asm.
279 if (isOperandMentioned(InputOpNo, Pieces)) {
280 // This is a use in the asm string of the smaller operand. Since we
281 // codegen this by promoting to a wider value, the asm will get printed
282 // "wrong".
283 SmallerValueMentioned |= InSize < OutSize;
284 }
285 if (isOperandMentioned(TiedTo, Pieces)) {
286 // If this is a reference to the output, and if the output is the larger
287 // value, then it's ok because we'll promote the input to the larger type.
288 SmallerValueMentioned |= OutSize < InSize;
289 }
290
291 // If the smaller value wasn't mentioned in the asm string, and if the
292 // output was a register, just extend the shorter one to the size of the
293 // larger one.
294 if (!SmallerValueMentioned && InputDomain != AD_Other &&
295 OutputConstraintInfos[TiedTo].allowsRegister())
296 continue;
297
298 // Either both of the operands were mentioned or the smaller one was
299 // mentioned. One more special case that we'll allow: if the tied input is
300 // integer, unmentioned, and is a constant, then we'll allow truncating it
301 // down to the size of the destination.
302 if (InputDomain == AD_Int && OutputDomain == AD_Int &&
303 !isOperandMentioned(InputOpNo, Pieces) &&
304 InputExpr->isEvaluatable(Context)) {
305 CastKind castKind =
306 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
307 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).take();
308 Exprs[InputOpNo] = InputExpr;
309 NS->setInputExpr(i, InputExpr);
310 continue;
311 }
312
313 Diag(InputExpr->getLocStart(),
314 diag::err_asm_tying_incompatible_types)
315 << InTy << OutTy << OutputExpr->getSourceRange()
316 << InputExpr->getSourceRange();
317 return StmtError();
318 }
319
320 return Owned(NS);
321}
322
323// isMSAsmKeyword - Return true if this is an MS-style inline asm keyword. These
324// require special handling.
325static bool isMSAsmKeyword(StringRef Name) {
326 bool Ret = llvm::StringSwitch<bool>(Name)
327 .Cases("EVEN", "ALIGN", true) // Alignment directives.
328 .Cases("LENGTH", "SIZE", "TYPE", true) // Type and variable sizes.
329 .Case("_emit", true) // _emit Pseudoinstruction.
330 .Default(false);
331 return Ret;
332}
333
Chad Rosier180d9d92012-10-02 18:51:05 +0000334// Check to see if the expression is a substring of the asm operand.
335static StringRef getMSInlineAsmExprName(StringRef Name) {
336 // Strip off the size directives.
337 // E.g., DWORD PTR [V] -> V
338 if (Name.startswith("BYTE") || Name.startswith("byte") ||
339 Name.startswith("WORD") || Name.startswith("word") ||
340 Name.startswith("DWORD") || Name.startswith("dword") ||
341 Name.startswith("QWORD") || Name.startswith("qword") ||
342 Name.startswith("XWORD") || Name.startswith("xword") ||
343 Name.startswith("XMMWORD") || Name.startswith("xmmword") ||
344 Name.startswith("YMMWORD") || Name.startswith("ymmword")) {
345 std::pair< StringRef, StringRef > SplitName = Name.split(' ');
346 assert((SplitName.second.startswith("PTR") ||
347 SplitName.second.startswith("ptr")) &&
348 "Expected PTR/ptr!");
349 SplitName = SplitName.second.split('[');
350 SplitName = SplitName.second.split(']');
351 return SplitName.first;
352 }
353 return Name;
354}
355
Chad Rosier358ab762012-08-22 21:08:06 +0000356// getSpelling - Get the spelling of the AsmTok token.
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000357static StringRef getSpelling(Sema &SemaRef, Token AsmTok) {
358 StringRef Asm;
359 SmallString<512> TokenBuf;
360 TokenBuf.resize(512);
361 bool StringInvalid = false;
362 Asm = SemaRef.PP.getSpelling(AsmTok, TokenBuf, &StringInvalid);
363 assert (!StringInvalid && "Expected valid string!");
364 return Asm;
365}
366
Chad Rosier358ab762012-08-22 21:08:06 +0000367// Determine if we should bail on this MSAsm instruction.
Chad Rosier2735df22012-08-22 19:18:30 +0000368static bool bailOnMSAsm(std::vector<StringRef> Piece) {
369 for (unsigned i = 0, e = Piece.size(); i != e; ++i)
370 if (isMSAsmKeyword(Piece[i]))
371 return true;
372 return false;
373}
374
Chad Rosier358ab762012-08-22 21:08:06 +0000375// Determine if we should bail on this MSAsm block.
Chad Rosier2735df22012-08-22 19:18:30 +0000376static bool bailOnMSAsm(std::vector<std::vector<StringRef> > Pieces) {
377 for (unsigned i = 0, e = Pieces.size(); i != e; ++i)
378 if (bailOnMSAsm(Pieces[i]))
379 return true;
380 return false;
381}
382
Chad Rosier358ab762012-08-22 21:08:06 +0000383// Determine if this is a simple MSAsm instruction.
Chad Rosier98ac6082012-08-21 23:09:21 +0000384static bool isSimpleMSAsm(std::vector<StringRef> &Pieces,
385 const TargetInfo &TI) {
386 if (isMSAsmKeyword(Pieces[0]))
387 return false;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000388
Chad Rosier180d9d92012-10-02 18:51:05 +0000389 for (unsigned i = 1, e = Pieces.size(); i != e; ++i) {
390 StringRef Op = getMSInlineAsmExprName(Pieces[i]);
391 if (!TI.isValidGCCRegisterName(Op))
Chad Rosier98ac6082012-08-21 23:09:21 +0000392 return false;
Chad Rosier180d9d92012-10-02 18:51:05 +0000393 }
Chad Rosier153f8ec2012-08-22 19:50:28 +0000394 return true;
395}
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000396
Chad Rosier358ab762012-08-22 21:08:06 +0000397// Determine if this is a simple MSAsm block.
Chad Rosier153f8ec2012-08-22 19:50:28 +0000398static bool isSimpleMSAsm(std::vector<std::vector<StringRef> > Pieces,
399 const TargetInfo &TI) {
400 for (unsigned i = 0, e = Pieces.size(); i != e; ++i)
401 if (!isSimpleMSAsm(Pieces[i], TI))
402 return false;
Chad Rosier98ac6082012-08-21 23:09:21 +0000403 return true;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000404}
405
Bob Wilson40d39e32012-09-24 19:57:55 +0000406// Break the AsmString into pieces (i.e., mnemonic and operands).
Chad Rosier38c71d32012-08-21 21:56:39 +0000407static void buildMSAsmPieces(StringRef Asm, std::vector<StringRef> &Pieces) {
408 std::pair<StringRef,StringRef> Split = Asm.split(' ');
409
410 // Mnemonic
411 Pieces.push_back(Split.first);
412 Asm = Split.second;
413
414 // Operands
415 while (!Asm.empty()) {
416 Split = Asm.split(", ");
417 Pieces.push_back(Split.first);
418 Asm = Split.second;
419 }
420}
421
Chad Rosierf0fbd772012-08-22 21:04:07 +0000422static void buildMSAsmPieces(std::vector<std::string> &AsmStrings,
423 std::vector<std::vector<StringRef> > &Pieces) {
424 for (unsigned i = 0, e = AsmStrings.size(); i != e; ++i)
425 buildMSAsmPieces(AsmStrings[i], Pieces[i]);
426}
427
Chad Rosierb55e6022012-09-13 00:06:55 +0000428// Build the individual assembly instruction(s) and place them in the AsmStrings
Bob Wilsonb0f6b9c2012-09-24 19:57:59 +0000429// vector. These strings are fed to the AsmParser. Returns true on error.
430static bool buildMSAsmStrings(Sema &SemaRef,
431 SourceLocation AsmLoc,
432 ArrayRef<Token> AsmToks,
Chad Rosierb55e6022012-09-13 00:06:55 +0000433 std::vector<std::string> &AsmStrings,
Chad Rosier9072a022012-08-22 20:30:58 +0000434 std::vector<std::pair<unsigned,unsigned> > &AsmTokRanges) {
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000435 assert (!AsmToks.empty() && "Didn't expect an empty AsmToks!");
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000436
437 SmallString<512> Asm;
Chad Rosier9072a022012-08-22 20:30:58 +0000438 unsigned startTok = 0;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000439 for (unsigned i = 0, e = AsmToks.size(); i < e; ++i) {
Bob Wilson40d39e32012-09-24 19:57:55 +0000440 bool isNewAsm = ((i == 0) ||
441 AsmToks[i].isAtStartOfLine() ||
442 AsmToks[i].is(tok::kw_asm));
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000443
444 if (isNewAsm) {
Chad Rosier38c71d32012-08-21 21:56:39 +0000445 if (i) {
Benjamin Kramer32f3acc2012-08-24 20:43:21 +0000446 AsmStrings.push_back(Asm.str());
Chad Rosier9072a022012-08-22 20:30:58 +0000447 AsmTokRanges.push_back(std::make_pair(startTok, i-1));
448 startTok = i;
Chad Rosier38c71d32012-08-21 21:56:39 +0000449 Asm.clear();
Chad Rosier38c71d32012-08-21 21:56:39 +0000450 }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000451 if (AsmToks[i].is(tok::kw_asm)) {
452 i++; // Skip __asm
Bob Wilsonb0f6b9c2012-09-24 19:57:59 +0000453 if (i == e) {
454 SemaRef.Diag(AsmLoc, diag::err_asm_empty);
455 return true;
456 }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000457 }
458 }
459
Chad Rosierb55e6022012-09-13 00:06:55 +0000460 if (i && AsmToks[i].hasLeadingSpace() && !isNewAsm)
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000461 Asm += ' ';
Chad Rosier4de97162012-09-11 00:51:28 +0000462
463 StringRef Spelling = getSpelling(SemaRef, AsmToks[i]);
464 Asm += Spelling;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000465 }
Benjamin Kramer32f3acc2012-08-24 20:43:21 +0000466 AsmStrings.push_back(Asm.str());
Chad Rosier9072a022012-08-22 20:30:58 +0000467 AsmTokRanges.push_back(std::make_pair(startTok, AsmToks.size()-1));
Bob Wilsonb0f6b9c2012-09-24 19:57:59 +0000468
469 return false;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000470}
471
Chad Rosierc6916492012-09-06 19:56:25 +0000472#define DEF_SIMPLE_MSASM(STR) \
Chad Rosier89fb6d72012-08-28 20:28:20 +0000473 MSAsmStmt *NS = \
474 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, /*IsSimple*/ true, \
475 /*IsVolatile*/ true, AsmToks, Inputs, Outputs, \
Chad Rosierc6916492012-09-06 19:56:25 +0000476 InputExprs, OutputExprs, STR, Constraints, \
Chad Rosier89fb6d72012-08-28 20:28:20 +0000477 Clobbers, EndLoc);
Chad Rosier2735df22012-08-22 19:18:30 +0000478
Chad Rosierb55e6022012-09-13 00:06:55 +0000479StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
480 ArrayRef<Token> AsmToks,SourceLocation EndLoc) {
Chad Rosier89fb6d72012-08-28 20:28:20 +0000481 SmallVector<StringRef, 4> Constraints;
482 std::vector<std::string> InputConstraints;
483 std::vector<std::string> OutputConstraints;
Chad Rosier4112a4c2012-08-28 20:35:06 +0000484 SmallVector<StringRef, 4> Clobbers;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000485 std::set<std::string> ClobberRegs;
Chad Rosierb55e6022012-09-13 00:06:55 +0000486
487 // FIXME: Use a struct to hold the various expression information.
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000488 SmallVector<IdentifierInfo*, 4> Inputs;
489 SmallVector<IdentifierInfo*, 4> Outputs;
Chad Rosier633abb02012-08-24 00:07:09 +0000490 SmallVector<Expr*, 4> InputExprs;
491 SmallVector<Expr*, 4> OutputExprs;
Chad Rosieracc22b62012-09-06 19:35:00 +0000492 SmallVector<std::string, 4> InputExprNames;
493 SmallVector<std::string, 4> OutputExprNames;
Chad Rosierb55e6022012-09-13 00:06:55 +0000494 SmallVector<unsigned, 4> InputExprStrIdx;
495 SmallVector<unsigned, 4> OutputExprStrIdx;
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000496
497 // Empty asm statements don't need to instantiate the AsmParser, etc.
Chad Rosierc6916492012-09-06 19:56:25 +0000498 StringRef EmptyAsmStr;
499 if (AsmToks.empty()) { DEF_SIMPLE_MSASM(EmptyAsmStr); return Owned(NS); }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000500
Chad Rosier38c71d32012-08-21 21:56:39 +0000501 std::vector<std::string> AsmStrings;
Chad Rosier9072a022012-08-22 20:30:58 +0000502 std::vector<std::pair<unsigned,unsigned> > AsmTokRanges;
Bob Wilsonb0f6b9c2012-09-24 19:57:59 +0000503 if (buildMSAsmStrings(*this, AsmLoc, AsmToks, AsmStrings, AsmTokRanges))
504 return StmtError();
Chad Rosier38c71d32012-08-21 21:56:39 +0000505
Chad Rosiere78460f2012-08-22 20:57:07 +0000506 std::vector<std::vector<StringRef> > Pieces(AsmStrings.size());
Chad Rosierf0fbd772012-08-22 21:04:07 +0000507 buildMSAsmPieces(AsmStrings, Pieces);
Chad Rosier153f8ec2012-08-22 19:50:28 +0000508
509 bool IsSimple = isSimpleMSAsm(Pieces, Context.getTargetInfo());
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000510
Chad Rosier2735df22012-08-22 19:18:30 +0000511 // AsmParser doesn't fully support these asm statements.
Chad Rosierc6916492012-09-06 19:56:25 +0000512 if (bailOnMSAsm(Pieces)) { DEF_SIMPLE_MSASM(EmptyAsmStr); return Owned(NS); }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000513
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000514 // Get the target specific parser.
515 std::string Error;
516 const std::string &TT = Context.getTargetInfo().getTriple().getTriple();
517 const llvm::Target *TheTarget(llvm::TargetRegistry::lookupTarget(TT, Error));
518
519 OwningPtr<llvm::MCAsmInfo> MAI(TheTarget->createMCAsmInfo(TT));
520 OwningPtr<llvm::MCRegisterInfo> MRI(TheTarget->createMCRegInfo(TT));
521 OwningPtr<llvm::MCObjectFileInfo> MOFI(new llvm::MCObjectFileInfo());
522 OwningPtr<llvm::MCSubtargetInfo>
523 STI(TheTarget->createMCSubtargetInfo(TT, "", ""));
524
Chad Rosier25bd2982012-08-23 15:44:35 +0000525 for (unsigned StrIdx = 0, e = AsmStrings.size(); StrIdx != e; ++StrIdx) {
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000526 llvm::SourceMgr SrcMgr;
527 llvm::MCContext Ctx(*MAI, *MRI, MOFI.get(), &SrcMgr);
528 llvm::MemoryBuffer *Buffer =
Chad Rosier25bd2982012-08-23 15:44:35 +0000529 llvm::MemoryBuffer::getMemBuffer(AsmStrings[StrIdx], "<inline asm>");
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000530
531 // Tell SrcMgr about this buffer, which is what the parser will pick up.
532 SrcMgr.AddNewSourceBuffer(Buffer, llvm::SMLoc());
533
534 OwningPtr<llvm::MCStreamer> Str(createNullStreamer(Ctx));
535 OwningPtr<llvm::MCAsmParser>
536 Parser(createMCAsmParser(SrcMgr, Ctx, *Str.get(), *MAI));
537 OwningPtr<llvm::MCTargetAsmParser>
538 TargetParser(TheTarget->createMCAsmParser(*STI, *Parser));
539 // Change to the Intel dialect.
540 Parser->setAssemblerDialect(1);
541 Parser->setTargetParser(*TargetParser.get());
542
543 // Prime the lexer.
544 Parser->Lex();
545
546 // Parse the opcode.
547 StringRef IDVal;
548 Parser->ParseIdentifier(IDVal);
549
550 // Canonicalize the opcode to lower case.
Chad Rosierbe5c3fb2012-09-03 02:30:13 +0000551 SmallString<128> OpcodeStr;
Chad Rosierb706d902012-08-28 22:08:58 +0000552 for (unsigned i = 0, e = IDVal.size(); i != e; ++i)
Chad Rosierbe5c3fb2012-09-03 02:30:13 +0000553 OpcodeStr.push_back(tolower(IDVal[i]));
Chad Rosier3d442192012-09-21 22:22:39 +0000554 // FIXME: Convert to a StmtError.
555 assert(TargetParser->mnemonicIsValid(OpcodeStr) && "Invalid mnemonic!");
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000556
557 // Parse the operands.
558 llvm::SMLoc IDLoc;
559 SmallVector<llvm::MCParsedAsmOperand*, 8> Operands;
Chad Rosierbe5c3fb2012-09-03 02:30:13 +0000560 bool HadError = TargetParser->ParseInstruction(OpcodeStr.str(), IDLoc,
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000561 Operands);
Chad Rosier2735df22012-08-22 19:18:30 +0000562 // If we had an error parsing the operands, fail gracefully.
Chad Rosierc6916492012-09-06 19:56:25 +0000563 if (HadError) { DEF_SIMPLE_MSASM(EmptyAsmStr); return Owned(NS); }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000564
565 // Match the MCInstr.
Chad Rosierbe5c3fb2012-09-03 02:30:13 +0000566 unsigned Kind;
Chad Rosier3034d882012-10-01 23:45:59 +0000567 unsigned Opcode;
Chad Rosier83591b62012-08-21 18:15:08 +0000568 unsigned ErrorInfo;
Chad Rosier3034d882012-10-01 23:45:59 +0000569 SmallVector<std::pair< unsigned, std::string >, 4> MapAndConstraints;
570 HadError = TargetParser->MatchInstruction(IDLoc, Operands, *Str.get(), Kind,
571 Opcode, MapAndConstraints,
Chad Rosier7065c522012-09-03 03:16:15 +0000572 ErrorInfo,
Chad Rosier51a6b3f2012-08-21 19:37:55 +0000573 /*matchingInlineAsm*/ true);
Chad Rosier2735df22012-08-22 19:18:30 +0000574 // If we had an error parsing the operands, fail gracefully.
Chad Rosierc6916492012-09-06 19:56:25 +0000575 if (HadError) { DEF_SIMPLE_MSASM(EmptyAsmStr); return Owned(NS); }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000576
577 // Get the instruction descriptor.
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000578 const llvm::MCInstrInfo *MII = TheTarget->createMCInstrInfo();
Chad Rosier3034d882012-10-01 23:45:59 +0000579 const llvm::MCInstrDesc &Desc = MII->get(Opcode);
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000580 llvm::MCInstPrinter *IP =
581 TheTarget->createMCInstPrinter(1, *MAI, *MII, *MRI, *STI);
582
Chad Rosier6e97be72012-08-22 23:42:09 +0000583 // Build the list of clobbers, outputs and inputs.
Chad Rosierfd5e56e2012-08-22 22:10:51 +0000584 unsigned NumDefs = Desc.getNumDefs();
Chad Rosier1b497f22012-09-03 20:40:52 +0000585 for (unsigned i = 1, e = Operands.size(); i != e; ++i) {
Chad Rosier3034d882012-10-01 23:45:59 +0000586 // Skip immediates.
587 if (Operands[i]->isImm())
Chad Rosierfb700262012-09-11 23:13:15 +0000588 continue;
589
Chad Rosier3034d882012-10-01 23:45:59 +0000590 // Register.
591 if (Operands[i]->isReg()) {
592 // Clobber.
593 if (NumDefs && (MapAndConstraints[i-1].first < NumDefs)) {
Chad Rosier7f9678b2012-09-12 18:14:25 +0000594 std::string Reg;
595 llvm::raw_string_ostream OS(Reg);
Chad Rosier3034d882012-10-01 23:45:59 +0000596 IP->printRegName(OS, Operands[i]->getReg());
Chad Rosier7f9678b2012-09-12 18:14:25 +0000597 StringRef Clobber(OS.str());
598 if (!Context.getTargetInfo().isValidClobber(Clobber))
599 return StmtError(
600 Diag(AsmLoc, diag::err_asm_unknown_register_name) << Clobber);
601 ClobberRegs.insert(Reg);
Chad Rosier1b497f22012-09-03 20:40:52 +0000602 }
Chad Rosier3034d882012-10-01 23:45:59 +0000603 continue;
604 }
605
606 // Expr/Input or Output.
607 StringRef Name = getMSInlineAsmExprName(Pieces[StrIdx][i]);
608
Chad Rosier3d3f1f72012-10-02 23:38:55 +0000609 // The expr may be a register.
610 // E.g., DWORD PTR [eax]
Chad Rosier3034d882012-10-01 23:45:59 +0000611 if (Context.getTargetInfo().isValidGCCRegisterName(Name))
612 continue;
613
Chad Rosier34404152012-10-11 21:28:29 +0000614 if (IdentifierInfo *II = &Context.Idents.get(Name)) {
Chad Rosier3034d882012-10-01 23:45:59 +0000615 CXXScopeSpec SS;
616 UnqualifiedId Id;
617 SourceLocation Loc;
618 Id.setIdentifier(II, AsmLoc);
619 ExprResult Result = ActOnIdExpression(getCurScope(), SS, Loc, Id,
620 false, false);
621 if (!Result.isInvalid()) {
622 // FIXME: Determine the proper constraints.
623 bool isMemDef = (i == 1) && Desc.mayStore();
624 if (isMemDef) {
625 Outputs.push_back(II);
626 OutputExprs.push_back(Result.take());
627 OutputExprNames.push_back(Name.str());
628 OutputExprStrIdx.push_back(StrIdx);
629
630 std::string Constraint = "=" + MapAndConstraints[i-1].second;
631 OutputConstraints.push_back(Constraint);
632 } else {
633 Inputs.push_back(II);
634 InputExprs.push_back(Result.take());
635 InputExprNames.push_back(Name.str());
636 InputExprStrIdx.push_back(StrIdx);
637 InputConstraints.push_back(MapAndConstraints[i-1].second);
Chad Rosier633abb02012-08-24 00:07:09 +0000638 }
Chad Rosier6e97be72012-08-22 23:42:09 +0000639 }
Chad Rosierfd5e56e2012-08-22 22:10:51 +0000640 }
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000641 }
642 }
643 for (std::set<std::string>::iterator I = ClobberRegs.begin(),
644 E = ClobberRegs.end(); I != E; ++I)
645 Clobbers.push_back(*I);
646
Chad Rosier89fb6d72012-08-28 20:28:20 +0000647 // Merge the output and input constraints. Output constraints are expected
648 // first.
649 for (std::vector<std::string>::iterator I = OutputConstraints.begin(),
650 E = OutputConstraints.end(); I != E; ++I)
651 Constraints.push_back(*I);
652
653 for (std::vector<std::string>::iterator I = InputConstraints.begin(),
654 E = InputConstraints.end(); I != E; ++I)
655 Constraints.push_back(*I);
656
Chad Rosieracc22b62012-09-06 19:35:00 +0000657 // Enumerate the AsmString expressions.
Chad Rosieracc22b62012-09-06 19:35:00 +0000658 unsigned OpNum = 0;
659 for (unsigned i = 0, e = OutputExprNames.size(); i != e; ++i, ++OpNum) {
Chad Rosierb55e6022012-09-13 00:06:55 +0000660 unsigned StrIdx = OutputExprStrIdx[i];
661 // Iterate over the assembly instruction pieces, skipping the mnemonic.
662 for (unsigned j = 1, f = Pieces[StrIdx].size(); j != f; ++j) {
663 // If the operand and the expression name match, then rewrite the operand.
664 if (OutputExprNames[i] == Pieces[StrIdx][j]) {
665 SmallString<32> Res;
666 llvm::raw_svector_ostream OS(Res);
667 OS << '$' << OpNum;
668 OutputExprNames[i] = OS.str();
669 Pieces[StrIdx][j] = OutputExprNames[i];
670 break;
671 }
672 // Check to see if the expression is a substring of the asm piece.
673 std::pair< StringRef, StringRef > Split = Pieces[StrIdx][j].split(' ');
674 bool isKeyword = llvm::StringSwitch<bool>(Split.first)
675 .Cases("BYTE", "byte", "WORD", "word", "DWORD", true)
676 .Cases("dword", "QWORD", "qword", "XWORD", "xword", true)
677 .Cases("XMMWORD", "xmmword", "YMMWORD", "ymmword", true)
678 .Default(false);
679 if (isKeyword &&
680 Split.second.find_first_of(OutputExprNames[i]) != StringRef::npos) {
681 // Is is a substring, do the replacement.
682 SmallString<32> Res;
683 llvm::raw_svector_ostream OS(Res);
684 OS << '$' << OpNum;
685 std::string piece = Pieces[StrIdx][j].str();
686 size_t found = piece.find(InputExprNames[i]);
687 piece.replace(found, InputExprNames[i].size(), OS.str());
688 OutputExprNames[i] = piece;
689 Pieces[StrIdx][j] = OutputExprNames[i];
690 break;
691 }
692 }
Chad Rosieracc22b62012-09-06 19:35:00 +0000693 }
694 for (unsigned i = 0, e = InputExprNames.size(); i != e; ++i, ++OpNum) {
Chad Rosierb55e6022012-09-13 00:06:55 +0000695 unsigned StrIdx = InputExprStrIdx[i];
696 // Iterate over the assembly instruction pieces, skipping the mnemonic.
697 for (unsigned j = 1, f = Pieces[StrIdx].size(); j != f; ++j) {
698 // If the operand and the expression name match, then rewrite the operand.
699 if (InputExprNames[i] == Pieces[StrIdx][j]) {
700 SmallString<32> Res;
701 llvm::raw_svector_ostream OS(Res);
702 OS << '$' << OpNum;
703 InputExprNames[i] = OS.str();
704 Pieces[StrIdx][j] = InputExprNames[i];
705 break;
706 }
707 // Check to see if the expression is a substring of the asm piece.
708 std::pair< StringRef, StringRef > Split = Pieces[StrIdx][j].split(' ');
709 bool isKeyword = llvm::StringSwitch<bool>(Split.first)
710 .Cases("BYTE", "byte", "WORD", "word", "DWORD", true)
711 .Cases("dword", "QWORD", "qword", "XWORD", "xword", true)
712 .Cases("XMMWORD", "xmmword", "YMMWORD", "ymmword", true)
713 .Default(false);
714 if (isKeyword &&
715 Split.second.find_first_of(InputExprNames[i]) != StringRef::npos) {
716 // It is a substring, do the replacement.
717 SmallString<32> Res;
718 llvm::raw_svector_ostream OS(Res);
719 OS << '$' << OpNum;
720 std::string piece = Pieces[StrIdx][j].str();
721 size_t found = piece.find(InputExprNames[i]);
722 piece.replace(found, InputExprNames[i].size(), OS.str());
723 InputExprNames[i] = piece;
724 Pieces[StrIdx][j] = InputExprNames[i];
725 break;
726 }
727 }
728 }
729
730 // Emit the IR assembly string.
731 std::string AsmString;
732 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
733 // Skip empty asm stmts.
734 if (Pieces[i].empty()) continue;
735
736 if (i > 0)
737 AsmString += "\n\t";
738
739 // Emit the mnemonic.
740 AsmString += Pieces[i][0];
741 if (Pieces[i].size() > 1)
742 AsmString += ' ';
743
744 // Emit the operands adding $$ to constants.
745 for (unsigned j = 1, f = Pieces[i].size(); j != f; ++j) {
746 if (j > 1) AsmString += ", ";
747 unsigned Val;
748 if (!Pieces[i][j].getAsInteger(0, Val))
749 AsmString += "$$";
750
751 AsmString += Pieces[i][j];
752 }
Chad Rosieracc22b62012-09-06 19:35:00 +0000753 }
754
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000755 MSAsmStmt *NS =
756 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
757 /*IsVolatile*/ true, AsmToks, Inputs, Outputs,
Chad Rosier89fb6d72012-08-28 20:28:20 +0000758 InputExprs, OutputExprs, AsmString, Constraints,
759 Clobbers, EndLoc);
Chad Rosier4b5e48d2012-08-17 21:19:40 +0000760 return Owned(NS);
761}