blob: 7e26b71c0482642b11600d718a65186315398a99 [file] [log] [blame]
Chad Rosier571c5e92012-08-17 21:27:25 +00001//===--- SemaStmtAsm.cpp - Semantic Analysis for Asm Statements -----------===//
Chad Rosier0731aff2012-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
Weiming Zhao71ac2402015-02-03 22:35:58 +000014#include "clang/AST/ExprCXX.h"
Chad Rosier5c563642012-10-25 21:49:22 +000015#include "clang/AST/RecordLayout.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000016#include "clang/AST/TypeLoc.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000017#include "clang/Basic/TargetInfo.h"
Ehsan Akhgari31097582014-09-22 02:21:54 +000018#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000019#include "clang/Sema/Initialization.h"
20#include "clang/Sema/Lookup.h"
21#include "clang/Sema/Scope.h"
22#include "clang/Sema/ScopeInfo.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000023#include "clang/Sema/SemaInternal.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000024#include "llvm/ADT/ArrayRef.h"
Marina Yatsinac42fd032016-12-26 12:23:42 +000025#include "llvm/ADT/StringSet.h"
Alp Toker10399272014-06-08 05:11:37 +000026#include "llvm/MC/MCParser/MCAsmParser.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000027using namespace clang;
28using namespace sema;
29
30/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
31/// ignore "noop" casts in places where an lvalue is required by an inline asm.
32/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
33/// provide a strong guidance to not use it.
34///
35/// This method checks to see if the argument is an acceptable l-value and
36/// returns false if it is a case we can handle.
37static bool CheckAsmLValue(const Expr *E, Sema &S) {
38 // Type dependent expressions will be checked during instantiation.
39 if (E->isTypeDependent())
40 return false;
41
42 if (E->isLValue())
43 return false; // Cool, this is an lvalue.
44
45 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
46 // are supposed to allow.
47 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
48 if (E != E2 && E2->isLValue()) {
49 if (!S.getLangOpts().HeinousExtensions)
50 S.Diag(E2->getLocStart(), diag::err_invalid_asm_cast_lvalue)
Coby Tayree61504192017-09-29 07:02:49 +000051 << E->getSourceRange();
Chad Rosier0731aff2012-08-17 21:19:40 +000052 else
53 S.Diag(E2->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
Coby Tayree61504192017-09-29 07:02:49 +000054 << E->getSourceRange();
Chad Rosier0731aff2012-08-17 21:19:40 +000055 // Accept, even if we emitted an error diagnostic.
56 return false;
57 }
58
59 // None of the above, just randomly invalid non-lvalue.
60 return true;
61}
62
63/// isOperandMentioned - Return true if the specified operand # is mentioned
64/// anywhere in the decomposed asm string.
Coby Tayree18f92182017-09-10 12:39:21 +000065static bool
66isOperandMentioned(unsigned OpNo,
67 ArrayRef<GCCAsmStmt::AsmStringPiece> AsmStrPieces) {
Chad Rosier0731aff2012-08-17 21:19:40 +000068 for (unsigned p = 0, e = AsmStrPieces.size(); p != e; ++p) {
Chad Rosierde70e0e2012-08-25 00:11:56 +000069 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p];
Coby Tayree18f92182017-09-10 12:39:21 +000070 if (!Piece.isOperand())
71 continue;
Chad Rosier0731aff2012-08-17 21:19:40 +000072
73 // If this is a reference to the input and if the input was the smaller
74 // one, then we have to reject this asm.
75 if (Piece.getOperandNo() == OpNo)
76 return true;
77 }
78 return false;
79}
80
Hans Wennborge9d240a2014-10-08 01:58:02 +000081static bool CheckNakedParmReference(Expr *E, Sema &S) {
82 FunctionDecl *Func = dyn_cast<FunctionDecl>(S.CurContext);
83 if (!Func)
84 return false;
85 if (!Func->hasAttr<NakedAttr>())
86 return false;
87
88 SmallVector<Expr*, 4> WorkList;
89 WorkList.push_back(E);
90 while (WorkList.size()) {
91 Expr *E = WorkList.pop_back_val();
Weiming Zhao71ac2402015-02-03 22:35:58 +000092 if (isa<CXXThisExpr>(E)) {
93 S.Diag(E->getLocStart(), diag::err_asm_naked_this_ref);
94 S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
95 return true;
96 }
Hans Wennborge9d240a2014-10-08 01:58:02 +000097 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
98 if (isa<ParmVarDecl>(DRE->getDecl())) {
99 S.Diag(DRE->getLocStart(), diag::err_asm_naked_parm_ref);
100 S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
101 return true;
102 }
103 }
104 for (Stmt *Child : E->children()) {
105 if (Expr *E = dyn_cast_or_null<Expr>(Child))
106 WorkList.push_back(E);
107 }
108 }
109 return false;
110}
111
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000112/// Returns true if given expression is not compatible with inline
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000113/// assembly's memory constraint; false otherwise.
114static bool checkExprMemoryConstraintCompat(Sema &S, Expr *E,
115 TargetInfo::ConstraintInfo &Info,
116 bool is_input_expr) {
117 enum {
118 ExprBitfield = 0,
119 ExprVectorElt,
120 ExprGlobalRegVar,
121 ExprSafeType
122 } EType = ExprSafeType;
123
124 // Bitfields, vector elements and global register variables are not
125 // compatible.
126 if (E->refersToBitField())
127 EType = ExprBitfield;
128 else if (E->refersToVectorElement())
129 EType = ExprVectorElt;
130 else if (E->refersToGlobalRegisterVar())
131 EType = ExprGlobalRegVar;
132
133 if (EType != ExprSafeType) {
134 S.Diag(E->getLocStart(), diag::err_asm_non_addr_value_in_memory_constraint)
135 << EType << is_input_expr << Info.getConstraintStr()
136 << E->getSourceRange();
137 return true;
138 }
139
140 return false;
141}
142
Marina Yatsinac42fd032016-12-26 12:23:42 +0000143// Extracting the register name from the Expression value,
144// if there is no register name to extract, returns ""
145static StringRef extractRegisterName(const Expr *Expression,
146 const TargetInfo &Target) {
147 Expression = Expression->IgnoreImpCasts();
148 if (const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(Expression)) {
149 // Handle cases where the expression is a variable
150 const VarDecl *Variable = dyn_cast<VarDecl>(AsmDeclRef->getDecl());
151 if (Variable && Variable->getStorageClass() == SC_Register) {
152 if (AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>())
153 if (Target.isValidGCCRegisterName(Attr->getLabel()))
154 return Target.getNormalizedGCCRegisterName(Attr->getLabel(), true);
155 }
156 }
157 return "";
158}
159
160// Checks if there is a conflict between the input and output lists with the
161// clobbers list. If there's a conflict, returns the location of the
162// conflicted clobber, else returns nullptr
163static SourceLocation
164getClobberConflictLocation(MultiExprArg Exprs, StringLiteral **Constraints,
165 StringLiteral **Clobbers, int NumClobbers,
166 const TargetInfo &Target, ASTContext &Cont) {
167 llvm::StringSet<> InOutVars;
168 // Collect all the input and output registers from the extended asm
Marina Yatsinac5cf7a82016-12-26 13:16:40 +0000169 // statement in order to check for conflicts with the clobber list
170 for (unsigned int i = 0; i < Exprs.size(); ++i) {
Marina Yatsinac42fd032016-12-26 12:23:42 +0000171 StringRef Constraint = Constraints[i]->getString();
172 StringRef InOutReg = Target.getConstraintRegister(
173 Constraint, extractRegisterName(Exprs[i], Target));
174 if (InOutReg != "")
175 InOutVars.insert(InOutReg);
176 }
177 // Check for each item in the clobber list if it conflicts with the input
178 // or output
179 for (int i = 0; i < NumClobbers; ++i) {
180 StringRef Clobber = Clobbers[i]->getString();
181 // We only check registers, therefore we don't check cc and memory
182 // clobbers
183 if (Clobber == "cc" || Clobber == "memory")
184 continue;
185 Clobber = Target.getNormalizedGCCRegisterName(Clobber, true);
186 // Go over the output's registers we collected
187 if (InOutVars.count(Clobber))
188 return Clobbers[i]->getLocStart();
189 }
190 return SourceLocation();
191}
192
Chad Rosierde70e0e2012-08-25 00:11:56 +0000193StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
194 bool IsVolatile, unsigned NumOutputs,
195 unsigned NumInputs, IdentifierInfo **Names,
Dmitri Gribenkoea2d5f82013-05-10 01:14:26 +0000196 MultiExprArg constraints, MultiExprArg Exprs,
Chad Rosierde70e0e2012-08-25 00:11:56 +0000197 Expr *asmString, MultiExprArg clobbers,
198 SourceLocation RParenLoc) {
Chad Rosier0731aff2012-08-17 21:19:40 +0000199 unsigned NumClobbers = clobbers.size();
200 StringLiteral **Constraints =
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000201 reinterpret_cast<StringLiteral**>(constraints.data());
Chad Rosier0731aff2012-08-17 21:19:40 +0000202 StringLiteral *AsmString = cast<StringLiteral>(asmString);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000203 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
Chad Rosier0731aff2012-08-17 21:19:40 +0000204
205 SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
206
207 // The parser verifies that there is a string literal here.
David Majnemerb3e96f72014-12-11 01:00:48 +0000208 assert(AsmString->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000209
Artem Belevich5ef02c22015-08-27 19:54:21 +0000210 // If we're compiling CUDA file and function attributes indicate that it's not
211 // for this compilation side, skip all the checks.
212 if (!DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) {
213 GCCAsmStmt *NS = new (Context) GCCAsmStmt(
214 Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names,
215 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
216 return NS;
217 }
Artem Belevich5196fe72015-03-19 18:40:25 +0000218
Chad Rosier0731aff2012-08-17 21:19:40 +0000219 for (unsigned i = 0; i != NumOutputs; i++) {
220 StringLiteral *Literal = Constraints[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000221 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000222
223 StringRef OutputName;
224 if (Names[i])
225 OutputName = Names[i]->getName();
226
227 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
Artem Belevich5ef02c22015-08-27 19:54:21 +0000228 if (!Context.getTargetInfo().validateOutputConstraint(Info))
Chad Rosier0731aff2012-08-17 21:19:40 +0000229 return StmtError(Diag(Literal->getLocStart(),
230 diag::err_asm_invalid_output_constraint)
231 << Info.getConstraintStr());
232
David Majnemer0f4d6412014-12-29 09:30:33 +0000233 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
234 if (ER.isInvalid())
235 return StmtError();
236 Exprs[i] = ER.get();
237
Chad Rosier0731aff2012-08-17 21:19:40 +0000238 // Check that the output exprs are valid lvalues.
239 Expr *OutputExpr = Exprs[i];
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000240
Hans Wennborge9d240a2014-10-08 01:58:02 +0000241 // Referring to parameters is not allowed in naked functions.
242 if (CheckNakedParmReference(OutputExpr, *this))
243 return StmtError();
244
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000245 // Check that the output expression is compatible with memory constraint.
246 if (Info.allowsMemory() &&
247 checkExprMemoryConstraintCompat(*this, OutputExpr, Info, false))
248 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000249
Chad Rosier0731aff2012-08-17 21:19:40 +0000250 OutputConstraintInfos.push_back(Info);
Akira Hatanaka974131e2014-09-18 18:17:18 +0000251
David Majnemer0f4d6412014-12-29 09:30:33 +0000252 // If this is dependent, just continue.
253 if (OutputExpr->isTypeDependent())
Akira Hatanaka974131e2014-09-18 18:17:18 +0000254 continue;
255
David Majnemer0f4d6412014-12-29 09:30:33 +0000256 Expr::isModifiableLvalueResult IsLV =
257 OutputExpr->isModifiableLvalue(Context, /*Loc=*/nullptr);
258 switch (IsLV) {
259 case Expr::MLV_Valid:
260 // Cool, this is an lvalue.
261 break;
David Majnemer04b78412014-12-29 10:29:53 +0000262 case Expr::MLV_ArrayType:
263 // This is OK too.
264 break;
David Majnemer0f4d6412014-12-29 09:30:33 +0000265 case Expr::MLV_LValueCast: {
266 const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context);
267 if (!getLangOpts().HeinousExtensions) {
268 Diag(LVal->getLocStart(), diag::err_invalid_asm_cast_lvalue)
269 << OutputExpr->getSourceRange();
270 } else {
271 Diag(LVal->getLocStart(), diag::warn_invalid_asm_cast_lvalue)
272 << OutputExpr->getSourceRange();
273 }
274 // Accept, even if we emitted an error diagnostic.
275 break;
276 }
277 case Expr::MLV_IncompleteType:
278 case Expr::MLV_IncompleteVoidType:
279 if (RequireCompleteType(OutputExpr->getLocStart(), Exprs[i]->getType(),
280 diag::err_dereference_incomplete_type))
281 return StmtError();
Galina Kistanova33399112017-06-03 06:35:06 +0000282 LLVM_FALLTHROUGH;
David Majnemer0f4d6412014-12-29 09:30:33 +0000283 default:
284 return StmtError(Diag(OutputExpr->getLocStart(),
285 diag::err_asm_invalid_lvalue_in_output)
286 << OutputExpr->getSourceRange());
287 }
288
289 unsigned Size = Context.getTypeSize(OutputExpr->getType());
Akira Hatanaka974131e2014-09-18 18:17:18 +0000290 if (!Context.getTargetInfo().validateOutputSize(Literal->getString(),
291 Size))
292 return StmtError(Diag(OutputExpr->getLocStart(),
293 diag::err_asm_invalid_output_size)
294 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000295 }
296
297 SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
298
299 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
300 StringLiteral *Literal = Constraints[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000301 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000302
303 StringRef InputName;
304 if (Names[i])
305 InputName = Names[i]->getName();
306
307 TargetInfo::ConstraintInfo Info(Literal->getString(), InputName);
Craig Topper55765ca2015-10-21 02:34:10 +0000308 if (!Context.getTargetInfo().validateInputConstraint(OutputConstraintInfos,
309 Info)) {
Chad Rosier0731aff2012-08-17 21:19:40 +0000310 return StmtError(Diag(Literal->getLocStart(),
311 diag::err_asm_invalid_input_constraint)
312 << Info.getConstraintStr());
313 }
314
David Majnemer0f4d6412014-12-29 09:30:33 +0000315 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
316 if (ER.isInvalid())
317 return StmtError();
318 Exprs[i] = ER.get();
319
Chad Rosier0731aff2012-08-17 21:19:40 +0000320 Expr *InputExpr = Exprs[i];
321
Hans Wennborge9d240a2014-10-08 01:58:02 +0000322 // Referring to parameters is not allowed in naked functions.
323 if (CheckNakedParmReference(InputExpr, *this))
324 return StmtError();
325
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000326 // Check that the input expression is compatible with memory constraint.
327 if (Info.allowsMemory() &&
328 checkExprMemoryConstraintCompat(*this, InputExpr, Info, true))
329 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000330
Chad Rosier0731aff2012-08-17 21:19:40 +0000331 // Only allow void types for memory constraints.
332 if (Info.allowsMemory() && !Info.allowsRegister()) {
333 if (CheckAsmLValue(InputExpr, *this))
334 return StmtError(Diag(InputExpr->getLocStart(),
335 diag::err_asm_invalid_lvalue_in_input)
336 << Info.getConstraintStr()
337 << InputExpr->getSourceRange());
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000338 } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) {
Sunil Srivastava780e5012015-07-14 18:08:50 +0000339 if (!InputExpr->isValueDependent()) {
340 llvm::APSInt Result;
341 if (!InputExpr->EvaluateAsInt(Result, Context))
342 return StmtError(
343 Diag(InputExpr->getLocStart(), diag::err_asm_immediate_expected)
344 << Info.getConstraintStr() << InputExpr->getSourceRange());
Alexey Bataev91e58602015-07-20 12:08:00 +0000345 if (!Info.isValidAsmImmediate(Result))
Sunil Srivastava780e5012015-07-14 18:08:50 +0000346 return StmtError(Diag(InputExpr->getLocStart(),
347 diag::err_invalid_asm_value_for_constraint)
348 << Result.toString(10) << Info.getConstraintStr()
349 << InputExpr->getSourceRange());
350 }
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000351
David Majnemerade4bee2014-07-14 16:27:53 +0000352 } else {
353 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
354 if (Result.isInvalid())
355 return StmtError();
356
357 Exprs[i] = Result.get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000358 }
359
360 if (Info.allowsRegister()) {
361 if (InputExpr->getType()->isVoidType()) {
362 return StmtError(Diag(InputExpr->getLocStart(),
363 diag::err_asm_invalid_type_in_input)
364 << InputExpr->getType() << Info.getConstraintStr()
365 << InputExpr->getSourceRange());
366 }
367 }
368
Chad Rosier0731aff2012-08-17 21:19:40 +0000369 InputConstraintInfos.push_back(Info);
Bill Wendling887b4852012-11-12 06:42:51 +0000370
371 const Type *Ty = Exprs[i]->getType().getTypePtr();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000372 if (Ty->isDependentType())
Eric Christopherd41010a2012-11-12 23:13:34 +0000373 continue;
374
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000375 if (!Ty->isVoidType() || !Info.allowsMemory())
Bill Wendlingb68b7572013-03-27 06:06:26 +0000376 if (RequireCompleteType(InputExpr->getLocStart(), Exprs[i]->getType(),
377 diag::err_dereference_incomplete_type))
378 return StmtError();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000379
Bill Wendling887b4852012-11-12 06:42:51 +0000380 unsigned Size = Context.getTypeSize(Ty);
381 if (!Context.getTargetInfo().validateInputSize(Literal->getString(),
382 Size))
383 return StmtError(Diag(InputExpr->getLocStart(),
384 diag::err_asm_invalid_input_size)
385 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000386 }
387
388 // Check that the clobbers are valid.
389 for (unsigned i = 0; i != NumClobbers; i++) {
390 StringLiteral *Literal = Clobbers[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000391 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000392
393 StringRef Clobber = Literal->getString();
394
395 if (!Context.getTargetInfo().isValidClobber(Clobber))
396 return StmtError(Diag(Literal->getLocStart(),
397 diag::err_asm_unknown_register_name) << Clobber);
398 }
399
Chad Rosierde70e0e2012-08-25 00:11:56 +0000400 GCCAsmStmt *NS =
401 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
Dmitri Gribenkoea2d5f82013-05-10 01:14:26 +0000402 NumInputs, Names, Constraints, Exprs.data(),
403 AsmString, NumClobbers, Clobbers, RParenLoc);
Chad Rosier0731aff2012-08-17 21:19:40 +0000404 // Validate the asm string, ensuring it makes sense given the operands we
405 // have.
Chad Rosierde70e0e2012-08-25 00:11:56 +0000406 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
Chad Rosier0731aff2012-08-17 21:19:40 +0000407 unsigned DiagOffs;
408 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
409 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
410 << AsmString->getSourceRange();
411 return StmtError();
412 }
413
Bill Wendling9d1ee112012-10-25 23:28:48 +0000414 // Validate constraints and modifiers.
415 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
416 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
417 if (!Piece.isOperand()) continue;
418
419 // Look for the correct constraint index.
Akira Hatanaka96a36012015-02-04 00:27:13 +0000420 unsigned ConstraintIdx = Piece.getOperandNo();
421 unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs();
Bill Wendling9d1ee112012-10-25 23:28:48 +0000422
Akira Hatanaka96a36012015-02-04 00:27:13 +0000423 // Look for the (ConstraintIdx - NumOperands + 1)th constraint with
424 // modifier '+'.
425 if (ConstraintIdx >= NumOperands) {
426 unsigned I = 0, E = NS->getNumOutputs();
427
428 for (unsigned Cnt = ConstraintIdx - NumOperands; I != E; ++I)
429 if (OutputConstraintInfos[I].isReadWrite() && Cnt-- == 0) {
430 ConstraintIdx = I;
Bill Wendling9d1ee112012-10-25 23:28:48 +0000431 break;
Akira Hatanaka96a36012015-02-04 00:27:13 +0000432 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000433
Akira Hatanaka96a36012015-02-04 00:27:13 +0000434 assert(I != E && "Invalid operand number should have been caught in "
435 " AnalyzeAsmString");
Bill Wendling9d1ee112012-10-25 23:28:48 +0000436 }
437
438 // Now that we have the right indexes go ahead and check.
439 StringLiteral *Literal = Constraints[ConstraintIdx];
440 const Type *Ty = Exprs[ConstraintIdx]->getType().getTypePtr();
441 if (Ty->isDependentType() || Ty->isIncompleteType())
442 continue;
443
444 unsigned Size = Context.getTypeSize(Ty);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000445 std::string SuggestedModifier;
446 if (!Context.getTargetInfo().validateConstraintModifier(
447 Literal->getString(), Piece.getModifier(), Size,
448 SuggestedModifier)) {
Bill Wendling9d1ee112012-10-25 23:28:48 +0000449 Diag(Exprs[ConstraintIdx]->getLocStart(),
450 diag::warn_asm_mismatched_size_modifier);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000451
452 if (!SuggestedModifier.empty()) {
453 auto B = Diag(Piece.getRange().getBegin(),
454 diag::note_asm_missing_constraint_modifier)
455 << SuggestedModifier;
456 SuggestedModifier = "%" + SuggestedModifier + Piece.getString();
457 B.AddFixItHint(FixItHint::CreateReplacement(Piece.getRange(),
458 SuggestedModifier));
459 }
460 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000461 }
462
Chad Rosier0731aff2012-08-17 21:19:40 +0000463 // Validate tied input operands for type mismatches.
David Majnemerc63fa612014-12-29 04:09:59 +0000464 unsigned NumAlternatives = ~0U;
465 for (unsigned i = 0, e = OutputConstraintInfos.size(); i != e; ++i) {
466 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
467 StringRef ConstraintStr = Info.getConstraintStr();
468 unsigned AltCount = ConstraintStr.count(',') + 1;
469 if (NumAlternatives == ~0U)
470 NumAlternatives = AltCount;
471 else if (NumAlternatives != AltCount)
472 return StmtError(Diag(NS->getOutputExpr(i)->getLocStart(),
473 diag::err_asm_unexpected_constraint_alternatives)
474 << NumAlternatives << AltCount);
475 }
Alexander Musman8e261be2015-09-21 14:41:00 +0000476 SmallVector<size_t, 4> InputMatchedToOutput(OutputConstraintInfos.size(),
477 ~0U);
Chad Rosier0731aff2012-08-17 21:19:40 +0000478 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
479 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
David Majnemerc63fa612014-12-29 04:09:59 +0000480 StringRef ConstraintStr = Info.getConstraintStr();
481 unsigned AltCount = ConstraintStr.count(',') + 1;
482 if (NumAlternatives == ~0U)
483 NumAlternatives = AltCount;
484 else if (NumAlternatives != AltCount)
485 return StmtError(Diag(NS->getInputExpr(i)->getLocStart(),
486 diag::err_asm_unexpected_constraint_alternatives)
487 << NumAlternatives << AltCount);
Chad Rosier0731aff2012-08-17 21:19:40 +0000488
489 // If this is a tied constraint, verify that the output and input have
490 // either exactly the same type, or that they are int/ptr operands with the
491 // same size (int/long, int*/long, are ok etc).
492 if (!Info.hasTiedOperand()) continue;
493
494 unsigned TiedTo = Info.getTiedOperand();
495 unsigned InputOpNo = i+NumOutputs;
496 Expr *OutputExpr = Exprs[TiedTo];
497 Expr *InputExpr = Exprs[InputOpNo];
498
Alexander Musman8e261be2015-09-21 14:41:00 +0000499 // Make sure no more than one input constraint matches each output.
500 assert(TiedTo < InputMatchedToOutput.size() && "TiedTo value out of range");
501 if (InputMatchedToOutput[TiedTo] != ~0U) {
502 Diag(NS->getInputExpr(i)->getLocStart(),
503 diag::err_asm_input_duplicate_match)
504 << TiedTo;
505 Diag(NS->getInputExpr(InputMatchedToOutput[TiedTo])->getLocStart(),
506 diag::note_asm_input_duplicate_first)
507 << TiedTo;
508 return StmtError();
509 }
510 InputMatchedToOutput[TiedTo] = i;
511
Chad Rosier0731aff2012-08-17 21:19:40 +0000512 if (OutputExpr->isTypeDependent() || InputExpr->isTypeDependent())
513 continue;
514
515 QualType InTy = InputExpr->getType();
516 QualType OutTy = OutputExpr->getType();
517 if (Context.hasSameType(InTy, OutTy))
518 continue; // All types can be tied to themselves.
519
520 // Decide if the input and output are in the same domain (integer/ptr or
521 // floating point.
522 enum AsmDomain {
523 AD_Int, AD_FP, AD_Other
524 } InputDomain, OutputDomain;
525
526 if (InTy->isIntegerType() || InTy->isPointerType())
527 InputDomain = AD_Int;
528 else if (InTy->isRealFloatingType())
529 InputDomain = AD_FP;
530 else
531 InputDomain = AD_Other;
532
533 if (OutTy->isIntegerType() || OutTy->isPointerType())
534 OutputDomain = AD_Int;
535 else if (OutTy->isRealFloatingType())
536 OutputDomain = AD_FP;
537 else
538 OutputDomain = AD_Other;
539
540 // They are ok if they are the same size and in the same domain. This
541 // allows tying things like:
542 // void* to int*
543 // void* to int if they are the same size.
544 // double to long double if they are the same size.
545 //
546 uint64_t OutSize = Context.getTypeSize(OutTy);
547 uint64_t InSize = Context.getTypeSize(InTy);
548 if (OutSize == InSize && InputDomain == OutputDomain &&
549 InputDomain != AD_Other)
550 continue;
551
552 // If the smaller input/output operand is not mentioned in the asm string,
553 // then we can promote the smaller one to a larger input and the asm string
554 // won't notice.
555 bool SmallerValueMentioned = false;
556
557 // If this is a reference to the input and if the input was the smaller
558 // one, then we have to reject this asm.
559 if (isOperandMentioned(InputOpNo, Pieces)) {
560 // This is a use in the asm string of the smaller operand. Since we
561 // codegen this by promoting to a wider value, the asm will get printed
562 // "wrong".
563 SmallerValueMentioned |= InSize < OutSize;
564 }
565 if (isOperandMentioned(TiedTo, Pieces)) {
566 // If this is a reference to the output, and if the output is the larger
567 // value, then it's ok because we'll promote the input to the larger type.
568 SmallerValueMentioned |= OutSize < InSize;
569 }
570
571 // If the smaller value wasn't mentioned in the asm string, and if the
572 // output was a register, just extend the shorter one to the size of the
573 // larger one.
574 if (!SmallerValueMentioned && InputDomain != AD_Other &&
575 OutputConstraintInfos[TiedTo].allowsRegister())
576 continue;
577
578 // Either both of the operands were mentioned or the smaller one was
579 // mentioned. One more special case that we'll allow: if the tied input is
580 // integer, unmentioned, and is a constant, then we'll allow truncating it
581 // down to the size of the destination.
582 if (InputDomain == AD_Int && OutputDomain == AD_Int &&
583 !isOperandMentioned(InputOpNo, Pieces) &&
584 InputExpr->isEvaluatable(Context)) {
585 CastKind castKind =
586 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000587 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000588 Exprs[InputOpNo] = InputExpr;
589 NS->setInputExpr(i, InputExpr);
590 continue;
591 }
592
593 Diag(InputExpr->getLocStart(),
594 diag::err_asm_tying_incompatible_types)
595 << InTy << OutTy << OutputExpr->getSourceRange()
596 << InputExpr->getSourceRange();
597 return StmtError();
598 }
599
Marina Yatsinac42fd032016-12-26 12:23:42 +0000600 // Check for conflicts between clobber list and input or output lists
601 SourceLocation ConstraintLoc =
602 getClobberConflictLocation(Exprs, Constraints, Clobbers, NumClobbers,
603 Context.getTargetInfo(), Context);
604 if (ConstraintLoc.isValid())
605 return Diag(ConstraintLoc, diag::error_inoutput_conflict_with_clobber);
606
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000607 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000608}
609
Coby Tayree61504192017-09-29 07:02:49 +0000610void Sema::FillInlineAsmIdentifierInfo(Expr *Res,
611 llvm::InlineAsmIdentifierInfo &Info) {
612 QualType T = Res->getType();
613 Expr::EvalResult Eval;
614 if (T->isFunctionType() || T->isDependentType())
615 return Info.setLabel(Res);
616 if (Res->isRValue()) {
617 if (isa<clang::EnumType>(T) && Res->EvaluateAsRValue(Eval, Context))
618 return Info.setEnum(Eval.Val.getInt().getSExtValue());
619 return Info.setLabel(Res);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000620 }
Coby Tayree61504192017-09-29 07:02:49 +0000621 unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
622 unsigned Type = Size;
623 if (const auto *ATy = Context.getAsArrayType(T))
624 Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity();
625 bool IsGlobalLV = false;
626 if (Res->EvaluateAsLValue(Eval, Context))
627 IsGlobalLV = Eval.isGlobalLValue();
628 Info.setVar(Res, IsGlobalLV, Size, Type);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000629}
630
John McCallf413f5e2013-05-03 00:10:13 +0000631ExprResult Sema::LookupInlineAsmIdentifier(CXXScopeSpec &SS,
632 SourceLocation TemplateKWLoc,
633 UnqualifiedId &Id,
John McCallf413f5e2013-05-03 00:10:13 +0000634 bool IsUnevaluatedContext) {
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000635
John McCallf413f5e2013-05-03 00:10:13 +0000636 if (IsUnevaluatedContext)
Faisal Valid143a0c2017-04-01 21:30:49 +0000637 PushExpressionEvaluationContext(
638 ExpressionEvaluationContext::UnevaluatedAbstract,
639 ReuseLambdaContextDecl);
John McCallf413f5e2013-05-03 00:10:13 +0000640
641 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
642 /*trailing lparen*/ false,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000643 /*is & operand*/ false,
Craig Topperc3ec1492014-05-26 06:22:03 +0000644 /*CorrectionCandidateCallback=*/nullptr,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000645 /*IsInlineAsmIdentifier=*/ true);
John McCallf413f5e2013-05-03 00:10:13 +0000646
647 if (IsUnevaluatedContext)
648 PopExpressionEvaluationContext();
649
650 if (!Result.isUsable()) return Result;
651
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000652 Result = CheckPlaceholderExpr(Result.get());
John McCallf413f5e2013-05-03 00:10:13 +0000653 if (!Result.isUsable()) return Result;
654
Hans Wennborg93dbeae2014-09-04 22:16:48 +0000655 // Referring to parameters is not allowed in naked functions.
Hans Wennborge9d240a2014-10-08 01:58:02 +0000656 if (CheckNakedParmReference(Result.get(), *this))
657 return ExprError();
Eric Christophercf941522017-07-25 19:17:32 +0000658
659 QualType T = Result.get()->getType();
John McCallf413f5e2013-05-03 00:10:13 +0000660
John McCallf413f5e2013-05-03 00:10:13 +0000661 if (T->isDependentType()) {
David Majnemerf8b569c2016-01-04 23:51:15 +0000662 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000663 }
664
John McCallf413f5e2013-05-03 00:10:13 +0000665 // Any sort of function type is fine.
666 if (T->isFunctionType()) {
667 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000668 }
669
John McCallf413f5e2013-05-03 00:10:13 +0000670 // Otherwise, it needs to be a complete type.
Eric Christophercf941522017-07-25 19:17:32 +0000671 if (RequireCompleteExprType(Result.get(), diag::err_asm_incomplete_type)) {
John McCallf413f5e2013-05-03 00:10:13 +0000672 return ExprError();
673 }
674
John McCallf413f5e2013-05-03 00:10:13 +0000675 return Result;
Chad Rosier4a0054f2012-10-15 19:56:10 +0000676}
Chad Rosierd997bd12012-08-22 19:18:30 +0000677
Chad Rosier5c563642012-10-25 21:49:22 +0000678bool Sema::LookupInlineAsmField(StringRef Base, StringRef Member,
679 unsigned &Offset, SourceLocation AsmLoc) {
680 Offset = 0;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000681 SmallVector<StringRef, 2> Members;
682 Member.split(Members, ".");
683
Coby Tayree69eb6962017-08-09 13:31:41 +0000684 NamedDecl *FoundDecl = nullptr;
Chad Rosier5c563642012-10-25 21:49:22 +0000685
Coby Tayree69eb6962017-08-09 13:31:41 +0000686 // MS InlineAsm uses 'this' as a base
687 if (getLangOpts().CPlusPlus && Base.equals("this")) {
688 if (const Type *PT = getCurrentThisType().getTypePtrOrNull())
689 FoundDecl = PT->getPointeeType()->getAsTagDecl();
690 } else {
691 LookupResult BaseResult(*this, &Context.Idents.get(Base), SourceLocation(),
692 LookupOrdinaryName);
693 if (LookupName(BaseResult, getCurScope()) && BaseResult.isSingleResult())
694 FoundDecl = BaseResult.getFoundDecl();
695 }
696
697 if (!FoundDecl)
Chad Rosier5c563642012-10-25 21:49:22 +0000698 return true;
Coby Tayree69eb6962017-08-09 13:31:41 +0000699
Marina Yatsina71ebc692015-12-17 12:51:51 +0000700 for (StringRef NextMember : Members) {
Marina Yatsina71ebc692015-12-17 12:51:51 +0000701 const RecordType *RT = nullptr;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000702 if (VarDecl *VD = dyn_cast<VarDecl>(FoundDecl))
703 RT = VD->getType()->getAs<RecordType>();
704 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(FoundDecl)) {
705 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
Coby Tayree69eb6962017-08-09 13:31:41 +0000706 // MS InlineAsm often uses struct pointer aliases as a base
707 QualType QT = TD->getUnderlyingType();
708 if (const auto *PT = QT->getAs<PointerType>())
709 QT = PT->getPointeeType();
710 RT = QT->getAs<RecordType>();
Marina Yatsina71ebc692015-12-17 12:51:51 +0000711 } else if (TypeDecl *TD = dyn_cast<TypeDecl>(FoundDecl))
712 RT = TD->getTypeForDecl()->getAs<RecordType>();
713 else if (FieldDecl *TD = dyn_cast<FieldDecl>(FoundDecl))
714 RT = TD->getType()->getAs<RecordType>();
715 if (!RT)
716 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000717
Richard Smithdb0ac552015-12-18 22:40:25 +0000718 if (RequireCompleteType(AsmLoc, QualType(RT, 0),
719 diag::err_asm_incomplete_type))
Marina Yatsina71ebc692015-12-17 12:51:51 +0000720 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000721
Marina Yatsina71ebc692015-12-17 12:51:51 +0000722 LookupResult FieldResult(*this, &Context.Idents.get(NextMember),
723 SourceLocation(), LookupMemberName);
Chad Rosier5c563642012-10-25 21:49:22 +0000724
Marina Yatsina71ebc692015-12-17 12:51:51 +0000725 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
726 return true;
727
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000728 if (!FieldResult.isSingleResult())
729 return true;
730 FoundDecl = FieldResult.getFoundDecl();
731
Marina Yatsina71ebc692015-12-17 12:51:51 +0000732 // FIXME: Handle IndirectFieldDecl?
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000733 FieldDecl *FD = dyn_cast<FieldDecl>(FoundDecl);
Marina Yatsina71ebc692015-12-17 12:51:51 +0000734 if (!FD)
735 return true;
736
Marina Yatsina71ebc692015-12-17 12:51:51 +0000737 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl());
738 unsigned i = FD->getFieldIndex();
739 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i));
740 Offset += (unsigned)Result.getQuantity();
741 }
Chad Rosier5c563642012-10-25 21:49:22 +0000742
743 return false;
744}
745
Reid Kleckner14e96b42015-08-26 21:57:20 +0000746ExprResult
David Majnemer758e7982016-01-05 00:08:41 +0000747Sema::LookupInlineAsmVarDeclField(Expr *E, StringRef Member,
Reid Kleckner14e96b42015-08-26 21:57:20 +0000748 SourceLocation AsmLoc) {
Reid Kleckner14e96b42015-08-26 21:57:20 +0000749
David Majnemerf8b569c2016-01-04 23:51:15 +0000750 QualType T = E->getType();
751 if (T->isDependentType()) {
752 DeclarationNameInfo NameInfo;
753 NameInfo.setLoc(AsmLoc);
754 NameInfo.setName(&Context.Idents.get(Member));
755 return CXXDependentScopeMemberExpr::Create(
756 Context, E, T, /*IsArrow=*/false, AsmLoc, NestedNameSpecifierLoc(),
757 SourceLocation(),
758 /*FirstQualifierInScope=*/nullptr, NameInfo, /*TemplateArgs=*/nullptr);
759 }
760
761 const RecordType *RT = T->getAs<RecordType>();
Reid Kleckner14e96b42015-08-26 21:57:20 +0000762 // FIXME: Diagnose this as field access into a scalar type.
763 if (!RT)
764 return ExprResult();
765
766 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc,
767 LookupMemberName);
768
769 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
770 return ExprResult();
771
772 // Only normal and indirect field results will work.
773 ValueDecl *FD = dyn_cast<FieldDecl>(FieldResult.getFoundDecl());
774 if (!FD)
775 FD = dyn_cast<IndirectFieldDecl>(FieldResult.getFoundDecl());
776 if (!FD)
777 return ExprResult();
778
Reid Kleckner14e96b42015-08-26 21:57:20 +0000779 // Make an Expr to thread through OpDecl.
780 ExprResult Result = BuildMemberReferenceExpr(
781 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(),
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000782 SourceLocation(), nullptr, FieldResult, nullptr, nullptr);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000783
784 return Result;
785}
786
Chad Rosierb261a502012-09-13 00:06:55 +0000787StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
John McCallf413f5e2013-05-03 00:10:13 +0000788 ArrayRef<Token> AsmToks,
789 StringRef AsmString,
790 unsigned NumOutputs, unsigned NumInputs,
791 ArrayRef<StringRef> Constraints,
792 ArrayRef<StringRef> Clobbers,
793 ArrayRef<Expr*> Exprs,
794 SourceLocation EndLoc) {
795 bool IsSimple = (NumOutputs != 0 || NumInputs != 0);
Reid Kleckner87a31802018-03-12 21:43:02 +0000796 setFunctionHasBranchProtectedScope();
Chad Rosier0731aff2012-08-17 21:19:40 +0000797 MSAsmStmt *NS =
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000798 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
799 /*IsVolatile*/ true, AsmToks, NumOutputs, NumInputs,
John McCallf413f5e2013-05-03 00:10:13 +0000800 Constraints, Exprs, AsmString,
801 Clobbers, EndLoc);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000802 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000803}
Ehsan Akhgari31097582014-09-22 02:21:54 +0000804
805LabelDecl *Sema::GetOrCreateMSAsmLabel(StringRef ExternalLabelName,
806 SourceLocation Location,
807 bool AlwaysCreate) {
808 LabelDecl* Label = LookupOrCreateLabel(PP.getIdentifierInfo(ExternalLabelName),
809 Location);
810
Ehsan Akhgari42924432014-10-08 17:28:34 +0000811 if (Label->isMSAsmLabel()) {
812 // If we have previously created this label implicitly, mark it as used.
813 Label->markUsed(Context);
814 } else {
Ehsan Akhgari31097582014-09-22 02:21:54 +0000815 // Otherwise, insert it, but only resolve it if we have seen the label itself.
816 std::string InternalName;
817 llvm::raw_string_ostream OS(InternalName);
Reid Kleckner36c201a2016-12-07 00:17:18 +0000818 // Create an internal name for the label. The name should not be a valid
819 // mangled name, and should be unique. We use a dot to make the name an
820 // invalid mangled name. We use LLVM's inline asm ${:uid} escape so that a
821 // unique label is generated each time this blob is emitted, even after
822 // inlining or LTO.
Reid Klecknerfec0f322016-11-29 00:39:37 +0000823 OS << "__MSASMLABEL_.${:uid}__";
Reid Kleckner08ebbce2016-11-28 20:52:19 +0000824 for (char C : ExternalLabelName) {
825 OS << C;
826 // We escape '$' in asm strings by replacing it with "$$"
827 if (C == '$')
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000828 OS << '$';
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000829 }
Ehsan Akhgari31097582014-09-22 02:21:54 +0000830 Label->setMSAsmLabel(OS.str());
831 }
832 if (AlwaysCreate) {
833 // The label might have been created implicitly from a previously encountered
834 // goto statement. So, for both newly created and looked up labels, we mark
835 // them as resolved.
836 Label->setMSAsmLabelResolved();
837 }
838 // Adjust their location for being able to generate accurate diagnostics.
839 Label->setLocation(Location);
840
841 return Label;
842}