blob: d9b39e8ce7e7df4f8352fe7a862a29ab04ce9cc4 [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chad Rosier0731aff2012-08-17 21:19:40 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements semantic analysis for inline asm statements.
10//
11//===----------------------------------------------------------------------===//
12
Weiming Zhao71ac2402015-02-03 22:35:58 +000013#include "clang/AST/ExprCXX.h"
Chad Rosier5c563642012-10-25 21:49:22 +000014#include "clang/AST/RecordLayout.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000015#include "clang/AST/TypeLoc.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000016#include "clang/Basic/TargetInfo.h"
Ehsan Akhgari31097582014-09-22 02:21:54 +000017#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "clang/Sema/Initialization.h"
19#include "clang/Sema/Lookup.h"
20#include "clang/Sema/Scope.h"
21#include "clang/Sema/ScopeInfo.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000022#include "clang/Sema/SemaInternal.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000023#include "llvm/ADT/ArrayRef.h"
Marina Yatsinac42fd032016-12-26 12:23:42 +000024#include "llvm/ADT/StringSet.h"
Alp Toker10399272014-06-08 05:11:37 +000025#include "llvm/MC/MCParser/MCAsmParser.h"
Chad Rosier0731aff2012-08-17 21:19:40 +000026using namespace clang;
27using namespace sema;
28
Aleksei Sidorin55365e42018-10-20 22:49:23 +000029/// Remove the upper-level LValueToRValue cast from an expression.
30static void removeLValueToRValueCast(Expr *E) {
31 Expr *Parent = E;
32 Expr *ExprUnderCast = nullptr;
33 SmallVector<Expr *, 8> ParentsToUpdate;
34
35 while (true) {
36 ParentsToUpdate.push_back(Parent);
37 if (auto *ParenE = dyn_cast<ParenExpr>(Parent)) {
38 Parent = ParenE->getSubExpr();
39 continue;
40 }
41
42 Expr *Child = nullptr;
43 CastExpr *ParentCast = dyn_cast<CastExpr>(Parent);
44 if (ParentCast)
45 Child = ParentCast->getSubExpr();
46 else
47 return;
48
49 if (auto *CastE = dyn_cast<CastExpr>(Child))
50 if (CastE->getCastKind() == CK_LValueToRValue) {
51 ExprUnderCast = CastE->getSubExpr();
52 // LValueToRValue cast inside GCCAsmStmt requires an explicit cast.
53 ParentCast->setSubExpr(ExprUnderCast);
54 break;
55 }
56 Parent = Child;
57 }
58
59 // Update parent expressions to have same ValueType as the underlying.
60 assert(ExprUnderCast &&
61 "Should be reachable only if LValueToRValue cast was found!");
62 auto ValueKind = ExprUnderCast->getValueKind();
63 for (Expr *E : ParentsToUpdate)
64 E->setValueKind(ValueKind);
65}
66
67/// Emit a warning about usage of "noop"-like casts for lvalues (GNU extension)
68/// and fix the argument with removing LValueToRValue cast from the expression.
69static void emitAndFixInvalidAsmCastLValue(const Expr *LVal, Expr *BadArgument,
70 Sema &S) {
71 if (!S.getLangOpts().HeinousExtensions) {
72 S.Diag(LVal->getBeginLoc(), diag::err_invalid_asm_cast_lvalue)
73 << BadArgument->getSourceRange();
74 } else {
75 S.Diag(LVal->getBeginLoc(), diag::warn_invalid_asm_cast_lvalue)
76 << BadArgument->getSourceRange();
77 }
78 removeLValueToRValueCast(BadArgument);
79}
80
Chad Rosier0731aff2012-08-17 21:19:40 +000081/// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
82/// ignore "noop" casts in places where an lvalue is required by an inline asm.
83/// We emulate this behavior when -fheinous-gnu-extensions is specified, but
84/// provide a strong guidance to not use it.
85///
86/// This method checks to see if the argument is an acceptable l-value and
87/// returns false if it is a case we can handle.
Aleksei Sidorin55365e42018-10-20 22:49:23 +000088static bool CheckAsmLValue(Expr *E, Sema &S) {
Chad Rosier0731aff2012-08-17 21:19:40 +000089 // Type dependent expressions will be checked during instantiation.
90 if (E->isTypeDependent())
91 return false;
92
93 if (E->isLValue())
94 return false; // Cool, this is an lvalue.
95
96 // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
97 // are supposed to allow.
98 const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
99 if (E != E2 && E2->isLValue()) {
Aleksei Sidorin55365e42018-10-20 22:49:23 +0000100 emitAndFixInvalidAsmCastLValue(E2, E, S);
Chad Rosier0731aff2012-08-17 21:19:40 +0000101 // Accept, even if we emitted an error diagnostic.
102 return false;
103 }
104
105 // None of the above, just randomly invalid non-lvalue.
106 return true;
107}
108
109/// isOperandMentioned - Return true if the specified operand # is mentioned
110/// anywhere in the decomposed asm string.
Coby Tayree18f92182017-09-10 12:39:21 +0000111static bool
112isOperandMentioned(unsigned OpNo,
113 ArrayRef<GCCAsmStmt::AsmStringPiece> AsmStrPieces) {
Chad Rosier0731aff2012-08-17 21:19:40 +0000114 for (unsigned p = 0, e = AsmStrPieces.size(); p != e; ++p) {
Chad Rosierde70e0e2012-08-25 00:11:56 +0000115 const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p];
Coby Tayree18f92182017-09-10 12:39:21 +0000116 if (!Piece.isOperand())
117 continue;
Chad Rosier0731aff2012-08-17 21:19:40 +0000118
119 // If this is a reference to the input and if the input was the smaller
120 // one, then we have to reject this asm.
121 if (Piece.getOperandNo() == OpNo)
122 return true;
123 }
124 return false;
125}
126
Hans Wennborge9d240a2014-10-08 01:58:02 +0000127static bool CheckNakedParmReference(Expr *E, Sema &S) {
128 FunctionDecl *Func = dyn_cast<FunctionDecl>(S.CurContext);
129 if (!Func)
130 return false;
131 if (!Func->hasAttr<NakedAttr>())
132 return false;
133
134 SmallVector<Expr*, 4> WorkList;
135 WorkList.push_back(E);
136 while (WorkList.size()) {
137 Expr *E = WorkList.pop_back_val();
Weiming Zhao71ac2402015-02-03 22:35:58 +0000138 if (isa<CXXThisExpr>(E)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000139 S.Diag(E->getBeginLoc(), diag::err_asm_naked_this_ref);
Weiming Zhao71ac2402015-02-03 22:35:58 +0000140 S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
141 return true;
142 }
Hans Wennborge9d240a2014-10-08 01:58:02 +0000143 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
144 if (isa<ParmVarDecl>(DRE->getDecl())) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000145 S.Diag(DRE->getBeginLoc(), diag::err_asm_naked_parm_ref);
Hans Wennborge9d240a2014-10-08 01:58:02 +0000146 S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
147 return true;
148 }
149 }
150 for (Stmt *Child : E->children()) {
151 if (Expr *E = dyn_cast_or_null<Expr>(Child))
152 WorkList.push_back(E);
153 }
154 }
155 return false;
156}
157
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000158/// Returns true if given expression is not compatible with inline
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000159/// assembly's memory constraint; false otherwise.
160static bool checkExprMemoryConstraintCompat(Sema &S, Expr *E,
161 TargetInfo::ConstraintInfo &Info,
162 bool is_input_expr) {
163 enum {
164 ExprBitfield = 0,
165 ExprVectorElt,
166 ExprGlobalRegVar,
167 ExprSafeType
168 } EType = ExprSafeType;
169
170 // Bitfields, vector elements and global register variables are not
171 // compatible.
172 if (E->refersToBitField())
173 EType = ExprBitfield;
174 else if (E->refersToVectorElement())
175 EType = ExprVectorElt;
176 else if (E->refersToGlobalRegisterVar())
177 EType = ExprGlobalRegVar;
178
179 if (EType != ExprSafeType) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000180 S.Diag(E->getBeginLoc(), diag::err_asm_non_addr_value_in_memory_constraint)
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000181 << EType << is_input_expr << Info.getConstraintStr()
182 << E->getSourceRange();
183 return true;
184 }
185
186 return false;
187}
188
Marina Yatsinac42fd032016-12-26 12:23:42 +0000189// Extracting the register name from the Expression value,
190// if there is no register name to extract, returns ""
191static StringRef extractRegisterName(const Expr *Expression,
192 const TargetInfo &Target) {
193 Expression = Expression->IgnoreImpCasts();
194 if (const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(Expression)) {
195 // Handle cases where the expression is a variable
196 const VarDecl *Variable = dyn_cast<VarDecl>(AsmDeclRef->getDecl());
197 if (Variable && Variable->getStorageClass() == SC_Register) {
198 if (AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>())
199 if (Target.isValidGCCRegisterName(Attr->getLabel()))
200 return Target.getNormalizedGCCRegisterName(Attr->getLabel(), true);
201 }
202 }
203 return "";
204}
205
206// Checks if there is a conflict between the input and output lists with the
207// clobbers list. If there's a conflict, returns the location of the
208// conflicted clobber, else returns nullptr
209static SourceLocation
210getClobberConflictLocation(MultiExprArg Exprs, StringLiteral **Constraints,
211 StringLiteral **Clobbers, int NumClobbers,
212 const TargetInfo &Target, ASTContext &Cont) {
213 llvm::StringSet<> InOutVars;
214 // Collect all the input and output registers from the extended asm
Marina Yatsinac5cf7a82016-12-26 13:16:40 +0000215 // statement in order to check for conflicts with the clobber list
216 for (unsigned int i = 0; i < Exprs.size(); ++i) {
Marina Yatsinac42fd032016-12-26 12:23:42 +0000217 StringRef Constraint = Constraints[i]->getString();
218 StringRef InOutReg = Target.getConstraintRegister(
219 Constraint, extractRegisterName(Exprs[i], Target));
220 if (InOutReg != "")
221 InOutVars.insert(InOutReg);
222 }
223 // Check for each item in the clobber list if it conflicts with the input
224 // or output
225 for (int i = 0; i < NumClobbers; ++i) {
226 StringRef Clobber = Clobbers[i]->getString();
227 // We only check registers, therefore we don't check cc and memory
228 // clobbers
229 if (Clobber == "cc" || Clobber == "memory")
230 continue;
231 Clobber = Target.getNormalizedGCCRegisterName(Clobber, true);
232 // Go over the output's registers we collected
233 if (InOutVars.count(Clobber))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000234 return Clobbers[i]->getBeginLoc();
Marina Yatsinac42fd032016-12-26 12:23:42 +0000235 }
236 return SourceLocation();
237}
238
Chad Rosierde70e0e2012-08-25 00:11:56 +0000239StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
240 bool IsVolatile, unsigned NumOutputs,
241 unsigned NumInputs, IdentifierInfo **Names,
Dmitri Gribenkoea2d5f82013-05-10 01:14:26 +0000242 MultiExprArg constraints, MultiExprArg Exprs,
Chad Rosierde70e0e2012-08-25 00:11:56 +0000243 Expr *asmString, MultiExprArg clobbers,
244 SourceLocation RParenLoc) {
Chad Rosier0731aff2012-08-17 21:19:40 +0000245 unsigned NumClobbers = clobbers.size();
246 StringLiteral **Constraints =
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000247 reinterpret_cast<StringLiteral**>(constraints.data());
Chad Rosier0731aff2012-08-17 21:19:40 +0000248 StringLiteral *AsmString = cast<StringLiteral>(asmString);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +0000249 StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
Chad Rosier0731aff2012-08-17 21:19:40 +0000250
251 SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
252
253 // The parser verifies that there is a string literal here.
David Majnemerb3e96f72014-12-11 01:00:48 +0000254 assert(AsmString->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000255
Artem Belevich5ef02c22015-08-27 19:54:21 +0000256 // If we're compiling CUDA file and function attributes indicate that it's not
257 // for this compilation side, skip all the checks.
258 if (!DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) {
259 GCCAsmStmt *NS = new (Context) GCCAsmStmt(
260 Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names,
261 Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
262 return NS;
263 }
Artem Belevich5196fe72015-03-19 18:40:25 +0000264
Chad Rosier0731aff2012-08-17 21:19:40 +0000265 for (unsigned i = 0; i != NumOutputs; i++) {
266 StringLiteral *Literal = Constraints[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000267 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000268
269 StringRef OutputName;
270 if (Names[i])
271 OutputName = Names[i]->getName();
272
273 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
Artem Belevich5ef02c22015-08-27 19:54:21 +0000274 if (!Context.getTargetInfo().validateOutputConstraint(Info))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000275 return StmtError(
276 Diag(Literal->getBeginLoc(), diag::err_asm_invalid_output_constraint)
277 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000278
David Majnemer0f4d6412014-12-29 09:30:33 +0000279 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
280 if (ER.isInvalid())
281 return StmtError();
282 Exprs[i] = ER.get();
283
Chad Rosier0731aff2012-08-17 21:19:40 +0000284 // Check that the output exprs are valid lvalues.
285 Expr *OutputExpr = Exprs[i];
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000286
Hans Wennborge9d240a2014-10-08 01:58:02 +0000287 // Referring to parameters is not allowed in naked functions.
288 if (CheckNakedParmReference(OutputExpr, *this))
289 return StmtError();
290
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000291 // Check that the output expression is compatible with memory constraint.
292 if (Info.allowsMemory() &&
293 checkExprMemoryConstraintCompat(*this, OutputExpr, Info, false))
294 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000295
Chad Rosier0731aff2012-08-17 21:19:40 +0000296 OutputConstraintInfos.push_back(Info);
Akira Hatanaka974131e2014-09-18 18:17:18 +0000297
David Majnemer0f4d6412014-12-29 09:30:33 +0000298 // If this is dependent, just continue.
299 if (OutputExpr->isTypeDependent())
Akira Hatanaka974131e2014-09-18 18:17:18 +0000300 continue;
301
David Majnemer0f4d6412014-12-29 09:30:33 +0000302 Expr::isModifiableLvalueResult IsLV =
303 OutputExpr->isModifiableLvalue(Context, /*Loc=*/nullptr);
304 switch (IsLV) {
305 case Expr::MLV_Valid:
306 // Cool, this is an lvalue.
307 break;
David Majnemer04b78412014-12-29 10:29:53 +0000308 case Expr::MLV_ArrayType:
309 // This is OK too.
310 break;
David Majnemer0f4d6412014-12-29 09:30:33 +0000311 case Expr::MLV_LValueCast: {
312 const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context);
Aleksei Sidorin55365e42018-10-20 22:49:23 +0000313 emitAndFixInvalidAsmCastLValue(LVal, OutputExpr, *this);
David Majnemer0f4d6412014-12-29 09:30:33 +0000314 // Accept, even if we emitted an error diagnostic.
315 break;
316 }
317 case Expr::MLV_IncompleteType:
318 case Expr::MLV_IncompleteVoidType:
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000319 if (RequireCompleteType(OutputExpr->getBeginLoc(), Exprs[i]->getType(),
David Majnemer0f4d6412014-12-29 09:30:33 +0000320 diag::err_dereference_incomplete_type))
321 return StmtError();
Galina Kistanova33399112017-06-03 06:35:06 +0000322 LLVM_FALLTHROUGH;
David Majnemer0f4d6412014-12-29 09:30:33 +0000323 default:
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000324 return StmtError(Diag(OutputExpr->getBeginLoc(),
David Majnemer0f4d6412014-12-29 09:30:33 +0000325 diag::err_asm_invalid_lvalue_in_output)
326 << OutputExpr->getSourceRange());
327 }
328
329 unsigned Size = Context.getTypeSize(OutputExpr->getType());
Akira Hatanaka974131e2014-09-18 18:17:18 +0000330 if (!Context.getTargetInfo().validateOutputSize(Literal->getString(),
331 Size))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000332 return StmtError(
333 Diag(OutputExpr->getBeginLoc(), diag::err_asm_invalid_output_size)
334 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000335 }
336
337 SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
338
339 for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
340 StringLiteral *Literal = Constraints[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000341 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000342
343 StringRef InputName;
344 if (Names[i])
345 InputName = Names[i]->getName();
346
347 TargetInfo::ConstraintInfo Info(Literal->getString(), InputName);
Craig Topper55765ca2015-10-21 02:34:10 +0000348 if (!Context.getTargetInfo().validateInputConstraint(OutputConstraintInfos,
349 Info)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000350 return StmtError(
351 Diag(Literal->getBeginLoc(), diag::err_asm_invalid_input_constraint)
352 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000353 }
354
David Majnemer0f4d6412014-12-29 09:30:33 +0000355 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
356 if (ER.isInvalid())
357 return StmtError();
358 Exprs[i] = ER.get();
359
Chad Rosier0731aff2012-08-17 21:19:40 +0000360 Expr *InputExpr = Exprs[i];
361
Hans Wennborge9d240a2014-10-08 01:58:02 +0000362 // Referring to parameters is not allowed in naked functions.
363 if (CheckNakedParmReference(InputExpr, *this))
364 return StmtError();
365
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000366 // Check that the input expression is compatible with memory constraint.
367 if (Info.allowsMemory() &&
368 checkExprMemoryConstraintCompat(*this, InputExpr, Info, true))
369 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000370
Chad Rosier0731aff2012-08-17 21:19:40 +0000371 // Only allow void types for memory constraints.
372 if (Info.allowsMemory() && !Info.allowsRegister()) {
373 if (CheckAsmLValue(InputExpr, *this))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000374 return StmtError(Diag(InputExpr->getBeginLoc(),
Chad Rosier0731aff2012-08-17 21:19:40 +0000375 diag::err_asm_invalid_lvalue_in_input)
376 << Info.getConstraintStr()
377 << InputExpr->getSourceRange());
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000378 } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) {
Sunil Srivastava780e5012015-07-14 18:08:50 +0000379 if (!InputExpr->isValueDependent()) {
Bill Wendling13381fb2018-12-19 04:36:42 +0000380 Expr::EvalResult EVResult;
Bill Wendling642e1402018-12-19 04:54:29 +0000381 if (!InputExpr->EvaluateAsRValue(EVResult, Context, true))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000382 return StmtError(
383 Diag(InputExpr->getBeginLoc(), diag::err_asm_immediate_expected)
384 << Info.getConstraintStr() << InputExpr->getSourceRange());
Bill Wendling13381fb2018-12-19 04:36:42 +0000385 llvm::APSInt Result = EVResult.Val.getInt();
Bill Wendling642e1402018-12-19 04:54:29 +0000386 if (!Info.isValidAsmImmediate(Result))
387 return StmtError(Diag(InputExpr->getBeginLoc(),
388 diag::err_invalid_asm_value_for_constraint)
389 << Result.toString(10) << Info.getConstraintStr()
390 << InputExpr->getSourceRange());
Sunil Srivastava780e5012015-07-14 18:08:50 +0000391 }
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000392
David Majnemerade4bee2014-07-14 16:27:53 +0000393 } else {
394 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
395 if (Result.isInvalid())
396 return StmtError();
397
398 Exprs[i] = Result.get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000399 }
400
401 if (Info.allowsRegister()) {
402 if (InputExpr->getType()->isVoidType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000403 return StmtError(
404 Diag(InputExpr->getBeginLoc(), diag::err_asm_invalid_type_in_input)
405 << InputExpr->getType() << Info.getConstraintStr()
406 << InputExpr->getSourceRange());
Chad Rosier0731aff2012-08-17 21:19:40 +0000407 }
408 }
409
Chad Rosier0731aff2012-08-17 21:19:40 +0000410 InputConstraintInfos.push_back(Info);
Bill Wendling887b4852012-11-12 06:42:51 +0000411
412 const Type *Ty = Exprs[i]->getType().getTypePtr();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000413 if (Ty->isDependentType())
Eric Christopherd41010a2012-11-12 23:13:34 +0000414 continue;
415
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000416 if (!Ty->isVoidType() || !Info.allowsMemory())
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000417 if (RequireCompleteType(InputExpr->getBeginLoc(), Exprs[i]->getType(),
Bill Wendlingb68b7572013-03-27 06:06:26 +0000418 diag::err_dereference_incomplete_type))
419 return StmtError();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000420
Bill Wendling887b4852012-11-12 06:42:51 +0000421 unsigned Size = Context.getTypeSize(Ty);
422 if (!Context.getTargetInfo().validateInputSize(Literal->getString(),
423 Size))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000424 return StmtError(
425 Diag(InputExpr->getBeginLoc(), diag::err_asm_invalid_input_size)
426 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000427 }
428
429 // Check that the clobbers are valid.
430 for (unsigned i = 0; i != NumClobbers; i++) {
431 StringLiteral *Literal = Clobbers[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000432 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000433
434 StringRef Clobber = Literal->getString();
435
436 if (!Context.getTargetInfo().isValidClobber(Clobber))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000437 return StmtError(
438 Diag(Literal->getBeginLoc(), diag::err_asm_unknown_register_name)
439 << Clobber);
Chad Rosier0731aff2012-08-17 21:19:40 +0000440 }
441
Chad Rosierde70e0e2012-08-25 00:11:56 +0000442 GCCAsmStmt *NS =
443 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
Dmitri Gribenkoea2d5f82013-05-10 01:14:26 +0000444 NumInputs, Names, Constraints, Exprs.data(),
445 AsmString, NumClobbers, Clobbers, RParenLoc);
Chad Rosier0731aff2012-08-17 21:19:40 +0000446 // Validate the asm string, ensuring it makes sense given the operands we
447 // have.
Chad Rosierde70e0e2012-08-25 00:11:56 +0000448 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
Chad Rosier0731aff2012-08-17 21:19:40 +0000449 unsigned DiagOffs;
450 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
451 Diag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
452 << AsmString->getSourceRange();
453 return StmtError();
454 }
455
Bill Wendling9d1ee112012-10-25 23:28:48 +0000456 // Validate constraints and modifiers.
457 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
458 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
459 if (!Piece.isOperand()) continue;
460
461 // Look for the correct constraint index.
Akira Hatanaka96a36012015-02-04 00:27:13 +0000462 unsigned ConstraintIdx = Piece.getOperandNo();
463 unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs();
Bill Wendling9d1ee112012-10-25 23:28:48 +0000464
Akira Hatanaka96a36012015-02-04 00:27:13 +0000465 // Look for the (ConstraintIdx - NumOperands + 1)th constraint with
466 // modifier '+'.
467 if (ConstraintIdx >= NumOperands) {
468 unsigned I = 0, E = NS->getNumOutputs();
469
470 for (unsigned Cnt = ConstraintIdx - NumOperands; I != E; ++I)
471 if (OutputConstraintInfos[I].isReadWrite() && Cnt-- == 0) {
472 ConstraintIdx = I;
Bill Wendling9d1ee112012-10-25 23:28:48 +0000473 break;
Akira Hatanaka96a36012015-02-04 00:27:13 +0000474 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000475
Akira Hatanaka96a36012015-02-04 00:27:13 +0000476 assert(I != E && "Invalid operand number should have been caught in "
477 " AnalyzeAsmString");
Bill Wendling9d1ee112012-10-25 23:28:48 +0000478 }
479
480 // Now that we have the right indexes go ahead and check.
481 StringLiteral *Literal = Constraints[ConstraintIdx];
482 const Type *Ty = Exprs[ConstraintIdx]->getType().getTypePtr();
483 if (Ty->isDependentType() || Ty->isIncompleteType())
484 continue;
485
486 unsigned Size = Context.getTypeSize(Ty);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000487 std::string SuggestedModifier;
488 if (!Context.getTargetInfo().validateConstraintModifier(
489 Literal->getString(), Piece.getModifier(), Size,
490 SuggestedModifier)) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000491 Diag(Exprs[ConstraintIdx]->getBeginLoc(),
Bill Wendling9d1ee112012-10-25 23:28:48 +0000492 diag::warn_asm_mismatched_size_modifier);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000493
494 if (!SuggestedModifier.empty()) {
495 auto B = Diag(Piece.getRange().getBegin(),
496 diag::note_asm_missing_constraint_modifier)
497 << SuggestedModifier;
498 SuggestedModifier = "%" + SuggestedModifier + Piece.getString();
499 B.AddFixItHint(FixItHint::CreateReplacement(Piece.getRange(),
500 SuggestedModifier));
501 }
502 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000503 }
504
Chad Rosier0731aff2012-08-17 21:19:40 +0000505 // Validate tied input operands for type mismatches.
David Majnemerc63fa612014-12-29 04:09:59 +0000506 unsigned NumAlternatives = ~0U;
507 for (unsigned i = 0, e = OutputConstraintInfos.size(); i != e; ++i) {
508 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
509 StringRef ConstraintStr = Info.getConstraintStr();
510 unsigned AltCount = ConstraintStr.count(',') + 1;
511 if (NumAlternatives == ~0U)
512 NumAlternatives = AltCount;
513 else if (NumAlternatives != AltCount)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000514 return StmtError(Diag(NS->getOutputExpr(i)->getBeginLoc(),
David Majnemerc63fa612014-12-29 04:09:59 +0000515 diag::err_asm_unexpected_constraint_alternatives)
516 << NumAlternatives << AltCount);
517 }
Alexander Musman8e261be2015-09-21 14:41:00 +0000518 SmallVector<size_t, 4> InputMatchedToOutput(OutputConstraintInfos.size(),
519 ~0U);
Chad Rosier0731aff2012-08-17 21:19:40 +0000520 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
521 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
David Majnemerc63fa612014-12-29 04:09:59 +0000522 StringRef ConstraintStr = Info.getConstraintStr();
523 unsigned AltCount = ConstraintStr.count(',') + 1;
524 if (NumAlternatives == ~0U)
525 NumAlternatives = AltCount;
526 else if (NumAlternatives != AltCount)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000527 return StmtError(Diag(NS->getInputExpr(i)->getBeginLoc(),
David Majnemerc63fa612014-12-29 04:09:59 +0000528 diag::err_asm_unexpected_constraint_alternatives)
529 << NumAlternatives << AltCount);
Chad Rosier0731aff2012-08-17 21:19:40 +0000530
531 // If this is a tied constraint, verify that the output and input have
532 // either exactly the same type, or that they are int/ptr operands with the
533 // same size (int/long, int*/long, are ok etc).
534 if (!Info.hasTiedOperand()) continue;
535
536 unsigned TiedTo = Info.getTiedOperand();
537 unsigned InputOpNo = i+NumOutputs;
538 Expr *OutputExpr = Exprs[TiedTo];
539 Expr *InputExpr = Exprs[InputOpNo];
540
Alexander Musman8e261be2015-09-21 14:41:00 +0000541 // Make sure no more than one input constraint matches each output.
542 assert(TiedTo < InputMatchedToOutput.size() && "TiedTo value out of range");
543 if (InputMatchedToOutput[TiedTo] != ~0U) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000544 Diag(NS->getInputExpr(i)->getBeginLoc(),
Alexander Musman8e261be2015-09-21 14:41:00 +0000545 diag::err_asm_input_duplicate_match)
546 << TiedTo;
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000547 Diag(NS->getInputExpr(InputMatchedToOutput[TiedTo])->getBeginLoc(),
Alexander Musman8e261be2015-09-21 14:41:00 +0000548 diag::note_asm_input_duplicate_first)
549 << TiedTo;
550 return StmtError();
551 }
552 InputMatchedToOutput[TiedTo] = i;
553
Chad Rosier0731aff2012-08-17 21:19:40 +0000554 if (OutputExpr->isTypeDependent() || InputExpr->isTypeDependent())
555 continue;
556
557 QualType InTy = InputExpr->getType();
558 QualType OutTy = OutputExpr->getType();
559 if (Context.hasSameType(InTy, OutTy))
560 continue; // All types can be tied to themselves.
561
562 // Decide if the input and output are in the same domain (integer/ptr or
563 // floating point.
564 enum AsmDomain {
565 AD_Int, AD_FP, AD_Other
566 } InputDomain, OutputDomain;
567
568 if (InTy->isIntegerType() || InTy->isPointerType())
569 InputDomain = AD_Int;
570 else if (InTy->isRealFloatingType())
571 InputDomain = AD_FP;
572 else
573 InputDomain = AD_Other;
574
575 if (OutTy->isIntegerType() || OutTy->isPointerType())
576 OutputDomain = AD_Int;
577 else if (OutTy->isRealFloatingType())
578 OutputDomain = AD_FP;
579 else
580 OutputDomain = AD_Other;
581
582 // They are ok if they are the same size and in the same domain. This
583 // allows tying things like:
584 // void* to int*
585 // void* to int if they are the same size.
586 // double to long double if they are the same size.
587 //
588 uint64_t OutSize = Context.getTypeSize(OutTy);
589 uint64_t InSize = Context.getTypeSize(InTy);
590 if (OutSize == InSize && InputDomain == OutputDomain &&
591 InputDomain != AD_Other)
592 continue;
593
594 // If the smaller input/output operand is not mentioned in the asm string,
595 // then we can promote the smaller one to a larger input and the asm string
596 // won't notice.
597 bool SmallerValueMentioned = false;
598
599 // If this is a reference to the input and if the input was the smaller
600 // one, then we have to reject this asm.
601 if (isOperandMentioned(InputOpNo, Pieces)) {
602 // This is a use in the asm string of the smaller operand. Since we
603 // codegen this by promoting to a wider value, the asm will get printed
604 // "wrong".
605 SmallerValueMentioned |= InSize < OutSize;
606 }
607 if (isOperandMentioned(TiedTo, Pieces)) {
608 // If this is a reference to the output, and if the output is the larger
609 // value, then it's ok because we'll promote the input to the larger type.
610 SmallerValueMentioned |= OutSize < InSize;
611 }
612
613 // If the smaller value wasn't mentioned in the asm string, and if the
614 // output was a register, just extend the shorter one to the size of the
615 // larger one.
616 if (!SmallerValueMentioned && InputDomain != AD_Other &&
617 OutputConstraintInfos[TiedTo].allowsRegister())
618 continue;
619
620 // Either both of the operands were mentioned or the smaller one was
621 // mentioned. One more special case that we'll allow: if the tied input is
622 // integer, unmentioned, and is a constant, then we'll allow truncating it
623 // down to the size of the destination.
624 if (InputDomain == AD_Int && OutputDomain == AD_Int &&
625 !isOperandMentioned(InputOpNo, Pieces) &&
626 InputExpr->isEvaluatable(Context)) {
627 CastKind castKind =
628 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000629 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000630 Exprs[InputOpNo] = InputExpr;
631 NS->setInputExpr(i, InputExpr);
632 continue;
633 }
634
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000635 Diag(InputExpr->getBeginLoc(), diag::err_asm_tying_incompatible_types)
636 << InTy << OutTy << OutputExpr->getSourceRange()
637 << InputExpr->getSourceRange();
Chad Rosier0731aff2012-08-17 21:19:40 +0000638 return StmtError();
639 }
640
Marina Yatsinac42fd032016-12-26 12:23:42 +0000641 // Check for conflicts between clobber list and input or output lists
642 SourceLocation ConstraintLoc =
643 getClobberConflictLocation(Exprs, Constraints, Clobbers, NumClobbers,
644 Context.getTargetInfo(), Context);
645 if (ConstraintLoc.isValid())
646 return Diag(ConstraintLoc, diag::error_inoutput_conflict_with_clobber);
Fangrui Song6907ce22018-07-30 19:24:48 +0000647
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000648 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000649}
650
Coby Tayree61504192017-09-29 07:02:49 +0000651void Sema::FillInlineAsmIdentifierInfo(Expr *Res,
652 llvm::InlineAsmIdentifierInfo &Info) {
653 QualType T = Res->getType();
654 Expr::EvalResult Eval;
655 if (T->isFunctionType() || T->isDependentType())
656 return Info.setLabel(Res);
657 if (Res->isRValue()) {
658 if (isa<clang::EnumType>(T) && Res->EvaluateAsRValue(Eval, Context))
659 return Info.setEnum(Eval.Val.getInt().getSExtValue());
660 return Info.setLabel(Res);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000661 }
Coby Tayree61504192017-09-29 07:02:49 +0000662 unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
663 unsigned Type = Size;
664 if (const auto *ATy = Context.getAsArrayType(T))
665 Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity();
666 bool IsGlobalLV = false;
667 if (Res->EvaluateAsLValue(Eval, Context))
668 IsGlobalLV = Eval.isGlobalLValue();
669 Info.setVar(Res, IsGlobalLV, Size, Type);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000670}
671
John McCallf413f5e2013-05-03 00:10:13 +0000672ExprResult Sema::LookupInlineAsmIdentifier(CXXScopeSpec &SS,
673 SourceLocation TemplateKWLoc,
674 UnqualifiedId &Id,
John McCallf413f5e2013-05-03 00:10:13 +0000675 bool IsUnevaluatedContext) {
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000676
John McCallf413f5e2013-05-03 00:10:13 +0000677 if (IsUnevaluatedContext)
Faisal Valid143a0c2017-04-01 21:30:49 +0000678 PushExpressionEvaluationContext(
679 ExpressionEvaluationContext::UnevaluatedAbstract,
680 ReuseLambdaContextDecl);
John McCallf413f5e2013-05-03 00:10:13 +0000681
682 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
683 /*trailing lparen*/ false,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000684 /*is & operand*/ false,
Craig Topperc3ec1492014-05-26 06:22:03 +0000685 /*CorrectionCandidateCallback=*/nullptr,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000686 /*IsInlineAsmIdentifier=*/ true);
John McCallf413f5e2013-05-03 00:10:13 +0000687
688 if (IsUnevaluatedContext)
689 PopExpressionEvaluationContext();
690
691 if (!Result.isUsable()) return Result;
692
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000693 Result = CheckPlaceholderExpr(Result.get());
John McCallf413f5e2013-05-03 00:10:13 +0000694 if (!Result.isUsable()) return Result;
695
Hans Wennborg93dbeae2014-09-04 22:16:48 +0000696 // Referring to parameters is not allowed in naked functions.
Hans Wennborge9d240a2014-10-08 01:58:02 +0000697 if (CheckNakedParmReference(Result.get(), *this))
698 return ExprError();
Eric Christophercf941522017-07-25 19:17:32 +0000699
700 QualType T = Result.get()->getType();
John McCallf413f5e2013-05-03 00:10:13 +0000701
John McCallf413f5e2013-05-03 00:10:13 +0000702 if (T->isDependentType()) {
David Majnemerf8b569c2016-01-04 23:51:15 +0000703 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000704 }
705
John McCallf413f5e2013-05-03 00:10:13 +0000706 // Any sort of function type is fine.
707 if (T->isFunctionType()) {
708 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000709 }
710
John McCallf413f5e2013-05-03 00:10:13 +0000711 // Otherwise, it needs to be a complete type.
Eric Christophercf941522017-07-25 19:17:32 +0000712 if (RequireCompleteExprType(Result.get(), diag::err_asm_incomplete_type)) {
John McCallf413f5e2013-05-03 00:10:13 +0000713 return ExprError();
714 }
715
John McCallf413f5e2013-05-03 00:10:13 +0000716 return Result;
Chad Rosier4a0054f2012-10-15 19:56:10 +0000717}
Chad Rosierd997bd12012-08-22 19:18:30 +0000718
Chad Rosier5c563642012-10-25 21:49:22 +0000719bool Sema::LookupInlineAsmField(StringRef Base, StringRef Member,
720 unsigned &Offset, SourceLocation AsmLoc) {
721 Offset = 0;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000722 SmallVector<StringRef, 2> Members;
723 Member.split(Members, ".");
724
Coby Tayree69eb6962017-08-09 13:31:41 +0000725 NamedDecl *FoundDecl = nullptr;
Chad Rosier5c563642012-10-25 21:49:22 +0000726
Coby Tayree69eb6962017-08-09 13:31:41 +0000727 // MS InlineAsm uses 'this' as a base
728 if (getLangOpts().CPlusPlus && Base.equals("this")) {
729 if (const Type *PT = getCurrentThisType().getTypePtrOrNull())
730 FoundDecl = PT->getPointeeType()->getAsTagDecl();
731 } else {
732 LookupResult BaseResult(*this, &Context.Idents.get(Base), SourceLocation(),
733 LookupOrdinaryName);
734 if (LookupName(BaseResult, getCurScope()) && BaseResult.isSingleResult())
735 FoundDecl = BaseResult.getFoundDecl();
736 }
737
738 if (!FoundDecl)
Chad Rosier5c563642012-10-25 21:49:22 +0000739 return true;
Coby Tayree69eb6962017-08-09 13:31:41 +0000740
Marina Yatsina71ebc692015-12-17 12:51:51 +0000741 for (StringRef NextMember : Members) {
Marina Yatsina71ebc692015-12-17 12:51:51 +0000742 const RecordType *RT = nullptr;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000743 if (VarDecl *VD = dyn_cast<VarDecl>(FoundDecl))
744 RT = VD->getType()->getAs<RecordType>();
745 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(FoundDecl)) {
746 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
Coby Tayree69eb6962017-08-09 13:31:41 +0000747 // MS InlineAsm often uses struct pointer aliases as a base
748 QualType QT = TD->getUnderlyingType();
749 if (const auto *PT = QT->getAs<PointerType>())
750 QT = PT->getPointeeType();
751 RT = QT->getAs<RecordType>();
Marina Yatsina71ebc692015-12-17 12:51:51 +0000752 } else if (TypeDecl *TD = dyn_cast<TypeDecl>(FoundDecl))
753 RT = TD->getTypeForDecl()->getAs<RecordType>();
754 else if (FieldDecl *TD = dyn_cast<FieldDecl>(FoundDecl))
755 RT = TD->getType()->getAs<RecordType>();
756 if (!RT)
757 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000758
Richard Smithdb0ac552015-12-18 22:40:25 +0000759 if (RequireCompleteType(AsmLoc, QualType(RT, 0),
760 diag::err_asm_incomplete_type))
Marina Yatsina71ebc692015-12-17 12:51:51 +0000761 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000762
Marina Yatsina71ebc692015-12-17 12:51:51 +0000763 LookupResult FieldResult(*this, &Context.Idents.get(NextMember),
764 SourceLocation(), LookupMemberName);
Chad Rosier5c563642012-10-25 21:49:22 +0000765
Marina Yatsina71ebc692015-12-17 12:51:51 +0000766 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
767 return true;
768
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000769 if (!FieldResult.isSingleResult())
770 return true;
771 FoundDecl = FieldResult.getFoundDecl();
772
Marina Yatsina71ebc692015-12-17 12:51:51 +0000773 // FIXME: Handle IndirectFieldDecl?
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000774 FieldDecl *FD = dyn_cast<FieldDecl>(FoundDecl);
Marina Yatsina71ebc692015-12-17 12:51:51 +0000775 if (!FD)
776 return true;
777
Marina Yatsina71ebc692015-12-17 12:51:51 +0000778 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl());
779 unsigned i = FD->getFieldIndex();
780 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i));
781 Offset += (unsigned)Result.getQuantity();
782 }
Chad Rosier5c563642012-10-25 21:49:22 +0000783
784 return false;
785}
786
Reid Kleckner14e96b42015-08-26 21:57:20 +0000787ExprResult
David Majnemer758e7982016-01-05 00:08:41 +0000788Sema::LookupInlineAsmVarDeclField(Expr *E, StringRef Member,
Reid Kleckner14e96b42015-08-26 21:57:20 +0000789 SourceLocation AsmLoc) {
Reid Kleckner14e96b42015-08-26 21:57:20 +0000790
David Majnemerf8b569c2016-01-04 23:51:15 +0000791 QualType T = E->getType();
792 if (T->isDependentType()) {
793 DeclarationNameInfo NameInfo;
794 NameInfo.setLoc(AsmLoc);
795 NameInfo.setName(&Context.Idents.get(Member));
796 return CXXDependentScopeMemberExpr::Create(
797 Context, E, T, /*IsArrow=*/false, AsmLoc, NestedNameSpecifierLoc(),
798 SourceLocation(),
799 /*FirstQualifierInScope=*/nullptr, NameInfo, /*TemplateArgs=*/nullptr);
800 }
801
802 const RecordType *RT = T->getAs<RecordType>();
Reid Kleckner14e96b42015-08-26 21:57:20 +0000803 // FIXME: Diagnose this as field access into a scalar type.
804 if (!RT)
805 return ExprResult();
806
807 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc,
808 LookupMemberName);
809
810 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
811 return ExprResult();
812
813 // Only normal and indirect field results will work.
814 ValueDecl *FD = dyn_cast<FieldDecl>(FieldResult.getFoundDecl());
815 if (!FD)
816 FD = dyn_cast<IndirectFieldDecl>(FieldResult.getFoundDecl());
817 if (!FD)
818 return ExprResult();
819
Reid Kleckner14e96b42015-08-26 21:57:20 +0000820 // Make an Expr to thread through OpDecl.
821 ExprResult Result = BuildMemberReferenceExpr(
822 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(),
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000823 SourceLocation(), nullptr, FieldResult, nullptr, nullptr);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000824
825 return Result;
826}
827
Chad Rosierb261a502012-09-13 00:06:55 +0000828StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
John McCallf413f5e2013-05-03 00:10:13 +0000829 ArrayRef<Token> AsmToks,
830 StringRef AsmString,
831 unsigned NumOutputs, unsigned NumInputs,
832 ArrayRef<StringRef> Constraints,
833 ArrayRef<StringRef> Clobbers,
834 ArrayRef<Expr*> Exprs,
835 SourceLocation EndLoc) {
836 bool IsSimple = (NumOutputs != 0 || NumInputs != 0);
Reid Kleckner87a31802018-03-12 21:43:02 +0000837 setFunctionHasBranchProtectedScope();
Chad Rosier0731aff2012-08-17 21:19:40 +0000838 MSAsmStmt *NS =
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000839 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
840 /*IsVolatile*/ true, AsmToks, NumOutputs, NumInputs,
John McCallf413f5e2013-05-03 00:10:13 +0000841 Constraints, Exprs, AsmString,
842 Clobbers, EndLoc);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000843 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000844}
Ehsan Akhgari31097582014-09-22 02:21:54 +0000845
846LabelDecl *Sema::GetOrCreateMSAsmLabel(StringRef ExternalLabelName,
847 SourceLocation Location,
848 bool AlwaysCreate) {
849 LabelDecl* Label = LookupOrCreateLabel(PP.getIdentifierInfo(ExternalLabelName),
850 Location);
851
Ehsan Akhgari42924432014-10-08 17:28:34 +0000852 if (Label->isMSAsmLabel()) {
853 // If we have previously created this label implicitly, mark it as used.
854 Label->markUsed(Context);
855 } else {
Ehsan Akhgari31097582014-09-22 02:21:54 +0000856 // Otherwise, insert it, but only resolve it if we have seen the label itself.
857 std::string InternalName;
858 llvm::raw_string_ostream OS(InternalName);
Reid Kleckner36c201a2016-12-07 00:17:18 +0000859 // Create an internal name for the label. The name should not be a valid
860 // mangled name, and should be unique. We use a dot to make the name an
861 // invalid mangled name. We use LLVM's inline asm ${:uid} escape so that a
862 // unique label is generated each time this blob is emitted, even after
863 // inlining or LTO.
Reid Klecknerfec0f322016-11-29 00:39:37 +0000864 OS << "__MSASMLABEL_.${:uid}__";
Reid Kleckner08ebbce2016-11-28 20:52:19 +0000865 for (char C : ExternalLabelName) {
866 OS << C;
867 // We escape '$' in asm strings by replacing it with "$$"
868 if (C == '$')
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000869 OS << '$';
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000870 }
Ehsan Akhgari31097582014-09-22 02:21:54 +0000871 Label->setMSAsmLabel(OS.str());
872 }
873 if (AlwaysCreate) {
874 // The label might have been created implicitly from a previously encountered
875 // goto statement. So, for both newly created and looked up labels, we mark
876 // them as resolved.
877 Label->setMSAsmLabelResolved();
878 }
879 // Adjust their location for being able to generate accurate diagnostics.
880 Label->setLocation(Location);
881
882 return Label;
883}