blob: 0d38f48aa5a51031967499883d1f47077b706c56 [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
256 for (unsigned i = 0; i != NumOutputs; i++) {
257 StringLiteral *Literal = Constraints[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000258 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000259
260 StringRef OutputName;
261 if (Names[i])
262 OutputName = Names[i]->getName();
263
264 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
Alexey Bataev305b6b92019-02-26 21:51:16 +0000265 if (!Context.getTargetInfo().validateOutputConstraint(Info)) {
266 targetDiag(Literal->getBeginLoc(),
267 diag::err_asm_invalid_output_constraint)
268 << Info.getConstraintStr();
269 return new (Context)
270 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
271 NumInputs, Names, Constraints, Exprs.data(), AsmString,
272 NumClobbers, Clobbers, RParenLoc);
273 }
Chad Rosier0731aff2012-08-17 21:19:40 +0000274
David Majnemer0f4d6412014-12-29 09:30:33 +0000275 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
276 if (ER.isInvalid())
277 return StmtError();
278 Exprs[i] = ER.get();
279
Chad Rosier0731aff2012-08-17 21:19:40 +0000280 // Check that the output exprs are valid lvalues.
281 Expr *OutputExpr = Exprs[i];
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000282
Hans Wennborge9d240a2014-10-08 01:58:02 +0000283 // Referring to parameters is not allowed in naked functions.
284 if (CheckNakedParmReference(OutputExpr, *this))
285 return StmtError();
286
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000287 // Check that the output expression is compatible with memory constraint.
288 if (Info.allowsMemory() &&
289 checkExprMemoryConstraintCompat(*this, OutputExpr, Info, false))
290 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000291
Chad Rosier0731aff2012-08-17 21:19:40 +0000292 OutputConstraintInfos.push_back(Info);
Akira Hatanaka974131e2014-09-18 18:17:18 +0000293
David Majnemer0f4d6412014-12-29 09:30:33 +0000294 // If this is dependent, just continue.
295 if (OutputExpr->isTypeDependent())
Akira Hatanaka974131e2014-09-18 18:17:18 +0000296 continue;
297
David Majnemer0f4d6412014-12-29 09:30:33 +0000298 Expr::isModifiableLvalueResult IsLV =
299 OutputExpr->isModifiableLvalue(Context, /*Loc=*/nullptr);
300 switch (IsLV) {
301 case Expr::MLV_Valid:
302 // Cool, this is an lvalue.
303 break;
David Majnemer04b78412014-12-29 10:29:53 +0000304 case Expr::MLV_ArrayType:
305 // This is OK too.
306 break;
David Majnemer0f4d6412014-12-29 09:30:33 +0000307 case Expr::MLV_LValueCast: {
308 const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context);
Aleksei Sidorin55365e42018-10-20 22:49:23 +0000309 emitAndFixInvalidAsmCastLValue(LVal, OutputExpr, *this);
David Majnemer0f4d6412014-12-29 09:30:33 +0000310 // Accept, even if we emitted an error diagnostic.
311 break;
312 }
313 case Expr::MLV_IncompleteType:
314 case Expr::MLV_IncompleteVoidType:
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000315 if (RequireCompleteType(OutputExpr->getBeginLoc(), Exprs[i]->getType(),
David Majnemer0f4d6412014-12-29 09:30:33 +0000316 diag::err_dereference_incomplete_type))
317 return StmtError();
Galina Kistanova33399112017-06-03 06:35:06 +0000318 LLVM_FALLTHROUGH;
David Majnemer0f4d6412014-12-29 09:30:33 +0000319 default:
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000320 return StmtError(Diag(OutputExpr->getBeginLoc(),
David Majnemer0f4d6412014-12-29 09:30:33 +0000321 diag::err_asm_invalid_lvalue_in_output)
322 << OutputExpr->getSourceRange());
323 }
324
325 unsigned Size = Context.getTypeSize(OutputExpr->getType());
Alexey Bataev305b6b92019-02-26 21:51:16 +0000326 if (!Context.getTargetInfo().validateOutputSize(Literal->getString(),
327 Size)) {
328 targetDiag(OutputExpr->getBeginLoc(), diag::err_asm_invalid_output_size)
329 << Info.getConstraintStr();
330 return new (Context)
331 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
332 NumInputs, Names, Constraints, Exprs.data(), AsmString,
333 NumClobbers, Clobbers, RParenLoc);
334 }
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)) {
Alexey Bataev305b6b92019-02-26 21:51:16 +0000350 targetDiag(Literal->getBeginLoc(), diag::err_asm_invalid_input_constraint)
351 << Info.getConstraintStr();
352 return new (Context)
353 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
354 NumInputs, Names, Constraints, Exprs.data(), AsmString,
355 NumClobbers, Clobbers, RParenLoc);
Chad Rosier0731aff2012-08-17 21:19:40 +0000356 }
357
David Majnemer0f4d6412014-12-29 09:30:33 +0000358 ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
359 if (ER.isInvalid())
360 return StmtError();
361 Exprs[i] = ER.get();
362
Chad Rosier0731aff2012-08-17 21:19:40 +0000363 Expr *InputExpr = Exprs[i];
364
Hans Wennborge9d240a2014-10-08 01:58:02 +0000365 // Referring to parameters is not allowed in naked functions.
366 if (CheckNakedParmReference(InputExpr, *this))
367 return StmtError();
368
Andrey Bokhankod9eab9c2015-08-03 10:38:10 +0000369 // Check that the input expression is compatible with memory constraint.
370 if (Info.allowsMemory() &&
371 checkExprMemoryConstraintCompat(*this, InputExpr, Info, true))
372 return StmtError();
Alexander Musmaneae29e22015-06-05 13:40:59 +0000373
Chad Rosier0731aff2012-08-17 21:19:40 +0000374 // Only allow void types for memory constraints.
375 if (Info.allowsMemory() && !Info.allowsRegister()) {
376 if (CheckAsmLValue(InputExpr, *this))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000377 return StmtError(Diag(InputExpr->getBeginLoc(),
Chad Rosier0731aff2012-08-17 21:19:40 +0000378 diag::err_asm_invalid_lvalue_in_input)
379 << Info.getConstraintStr()
380 << InputExpr->getSourceRange());
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000381 } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) {
Sunil Srivastava780e5012015-07-14 18:08:50 +0000382 if (!InputExpr->isValueDependent()) {
Bill Wendling13381fb2018-12-19 04:36:42 +0000383 Expr::EvalResult EVResult;
Bill Wendling642e1402018-12-19 04:54:29 +0000384 if (!InputExpr->EvaluateAsRValue(EVResult, Context, true))
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000385 return StmtError(
386 Diag(InputExpr->getBeginLoc(), diag::err_asm_immediate_expected)
387 << Info.getConstraintStr() << InputExpr->getSourceRange());
Bill Wendling13381fb2018-12-19 04:36:42 +0000388 llvm::APSInt Result = EVResult.Val.getInt();
Bill Wendling642e1402018-12-19 04:54:29 +0000389 if (!Info.isValidAsmImmediate(Result))
390 return StmtError(Diag(InputExpr->getBeginLoc(),
391 diag::err_invalid_asm_value_for_constraint)
392 << Result.toString(10) << Info.getConstraintStr()
393 << InputExpr->getSourceRange());
Sunil Srivastava780e5012015-07-14 18:08:50 +0000394 }
Saleem Abdulrasoola2823572015-01-06 04:26:34 +0000395
David Majnemerade4bee2014-07-14 16:27:53 +0000396 } else {
397 ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
398 if (Result.isInvalid())
399 return StmtError();
400
401 Exprs[i] = Result.get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000402 }
403
404 if (Info.allowsRegister()) {
405 if (InputExpr->getType()->isVoidType()) {
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000406 return StmtError(
407 Diag(InputExpr->getBeginLoc(), diag::err_asm_invalid_type_in_input)
408 << InputExpr->getType() << Info.getConstraintStr()
409 << InputExpr->getSourceRange());
Chad Rosier0731aff2012-08-17 21:19:40 +0000410 }
411 }
412
Chad Rosier0731aff2012-08-17 21:19:40 +0000413 InputConstraintInfos.push_back(Info);
Bill Wendling887b4852012-11-12 06:42:51 +0000414
415 const Type *Ty = Exprs[i]->getType().getTypePtr();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000416 if (Ty->isDependentType())
Eric Christopherd41010a2012-11-12 23:13:34 +0000417 continue;
418
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000419 if (!Ty->isVoidType() || !Info.allowsMemory())
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000420 if (RequireCompleteType(InputExpr->getBeginLoc(), Exprs[i]->getType(),
Bill Wendlingb68b7572013-03-27 06:06:26 +0000421 diag::err_dereference_incomplete_type))
422 return StmtError();
Bill Wendlingc4fc3a22013-03-25 21:09:49 +0000423
Bill Wendling887b4852012-11-12 06:42:51 +0000424 unsigned Size = Context.getTypeSize(Ty);
425 if (!Context.getTargetInfo().validateInputSize(Literal->getString(),
426 Size))
Alexey Bataev5c96c1c2019-02-20 17:42:57 +0000427 return StmtResult(
428 targetDiag(InputExpr->getBeginLoc(), diag::err_asm_invalid_input_size)
Stephen Kellyf2ceec42018-08-09 21:08:08 +0000429 << Info.getConstraintStr());
Chad Rosier0731aff2012-08-17 21:19:40 +0000430 }
431
432 // Check that the clobbers are valid.
433 for (unsigned i = 0; i != NumClobbers; i++) {
434 StringLiteral *Literal = Clobbers[i];
David Majnemerb3e96f72014-12-11 01:00:48 +0000435 assert(Literal->isAscii());
Chad Rosier0731aff2012-08-17 21:19:40 +0000436
437 StringRef Clobber = Literal->getString();
438
Alexey Bataev305b6b92019-02-26 21:51:16 +0000439 if (!Context.getTargetInfo().isValidClobber(Clobber)) {
440 targetDiag(Literal->getBeginLoc(), diag::err_asm_unknown_register_name)
441 << Clobber;
442 return new (Context)
443 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
444 NumInputs, Names, Constraints, Exprs.data(), AsmString,
445 NumClobbers, Clobbers, RParenLoc);
446 }
Chad Rosier0731aff2012-08-17 21:19:40 +0000447 }
448
Chad Rosierde70e0e2012-08-25 00:11:56 +0000449 GCCAsmStmt *NS =
450 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
Dmitri Gribenkoea2d5f82013-05-10 01:14:26 +0000451 NumInputs, Names, Constraints, Exprs.data(),
452 AsmString, NumClobbers, Clobbers, RParenLoc);
Chad Rosier0731aff2012-08-17 21:19:40 +0000453 // Validate the asm string, ensuring it makes sense given the operands we
454 // have.
Chad Rosierde70e0e2012-08-25 00:11:56 +0000455 SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
Chad Rosier0731aff2012-08-17 21:19:40 +0000456 unsigned DiagOffs;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000457 if (unsigned DiagID = NS->AnalyzeAsmString(Pieces, Context, DiagOffs)) {
458 targetDiag(getLocationOfStringLiteralByte(AsmString, DiagOffs), DiagID)
459 << AsmString->getSourceRange();
460 return NS;
461 }
Chad Rosier0731aff2012-08-17 21:19:40 +0000462
Bill Wendling9d1ee112012-10-25 23:28:48 +0000463 // Validate constraints and modifiers.
464 for (unsigned i = 0, e = Pieces.size(); i != e; ++i) {
465 GCCAsmStmt::AsmStringPiece &Piece = Pieces[i];
466 if (!Piece.isOperand()) continue;
467
468 // Look for the correct constraint index.
Akira Hatanaka96a36012015-02-04 00:27:13 +0000469 unsigned ConstraintIdx = Piece.getOperandNo();
470 unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs();
Bill Wendling9d1ee112012-10-25 23:28:48 +0000471
Akira Hatanaka96a36012015-02-04 00:27:13 +0000472 // Look for the (ConstraintIdx - NumOperands + 1)th constraint with
473 // modifier '+'.
474 if (ConstraintIdx >= NumOperands) {
475 unsigned I = 0, E = NS->getNumOutputs();
476
477 for (unsigned Cnt = ConstraintIdx - NumOperands; I != E; ++I)
478 if (OutputConstraintInfos[I].isReadWrite() && Cnt-- == 0) {
479 ConstraintIdx = I;
Bill Wendling9d1ee112012-10-25 23:28:48 +0000480 break;
Akira Hatanaka96a36012015-02-04 00:27:13 +0000481 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000482
Akira Hatanaka96a36012015-02-04 00:27:13 +0000483 assert(I != E && "Invalid operand number should have been caught in "
484 " AnalyzeAsmString");
Bill Wendling9d1ee112012-10-25 23:28:48 +0000485 }
486
487 // Now that we have the right indexes go ahead and check.
488 StringLiteral *Literal = Constraints[ConstraintIdx];
489 const Type *Ty = Exprs[ConstraintIdx]->getType().getTypePtr();
490 if (Ty->isDependentType() || Ty->isIncompleteType())
491 continue;
492
493 unsigned Size = Context.getTypeSize(Ty);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000494 std::string SuggestedModifier;
495 if (!Context.getTargetInfo().validateConstraintModifier(
496 Literal->getString(), Piece.getModifier(), Size,
497 SuggestedModifier)) {
Alexey Bataev5c96c1c2019-02-20 17:42:57 +0000498 targetDiag(Exprs[ConstraintIdx]->getBeginLoc(),
499 diag::warn_asm_mismatched_size_modifier);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000500
501 if (!SuggestedModifier.empty()) {
Alexey Bataev5c96c1c2019-02-20 17:42:57 +0000502 auto B = targetDiag(Piece.getRange().getBegin(),
503 diag::note_asm_missing_constraint_modifier)
Akira Hatanaka987f1862014-08-22 06:05:21 +0000504 << SuggestedModifier;
505 SuggestedModifier = "%" + SuggestedModifier + Piece.getString();
Alexey Bataev5c96c1c2019-02-20 17:42:57 +0000506 B << FixItHint::CreateReplacement(Piece.getRange(), SuggestedModifier);
Akira Hatanaka987f1862014-08-22 06:05:21 +0000507 }
508 }
Bill Wendling9d1ee112012-10-25 23:28:48 +0000509 }
510
Chad Rosier0731aff2012-08-17 21:19:40 +0000511 // Validate tied input operands for type mismatches.
David Majnemerc63fa612014-12-29 04:09:59 +0000512 unsigned NumAlternatives = ~0U;
513 for (unsigned i = 0, e = OutputConstraintInfos.size(); i != e; ++i) {
514 TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i];
515 StringRef ConstraintStr = Info.getConstraintStr();
516 unsigned AltCount = ConstraintStr.count(',') + 1;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000517 if (NumAlternatives == ~0U) {
David Majnemerc63fa612014-12-29 04:09:59 +0000518 NumAlternatives = AltCount;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000519 } else if (NumAlternatives != AltCount) {
520 targetDiag(NS->getOutputExpr(i)->getBeginLoc(),
521 diag::err_asm_unexpected_constraint_alternatives)
522 << NumAlternatives << AltCount;
523 return NS;
524 }
David Majnemerc63fa612014-12-29 04:09:59 +0000525 }
Alexander Musman8e261be2015-09-21 14:41:00 +0000526 SmallVector<size_t, 4> InputMatchedToOutput(OutputConstraintInfos.size(),
527 ~0U);
Chad Rosier0731aff2012-08-17 21:19:40 +0000528 for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
529 TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
David Majnemerc63fa612014-12-29 04:09:59 +0000530 StringRef ConstraintStr = Info.getConstraintStr();
531 unsigned AltCount = ConstraintStr.count(',') + 1;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000532 if (NumAlternatives == ~0U) {
David Majnemerc63fa612014-12-29 04:09:59 +0000533 NumAlternatives = AltCount;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000534 } else if (NumAlternatives != AltCount) {
535 targetDiag(NS->getInputExpr(i)->getBeginLoc(),
536 diag::err_asm_unexpected_constraint_alternatives)
537 << NumAlternatives << AltCount;
538 return NS;
539 }
Chad Rosier0731aff2012-08-17 21:19:40 +0000540
541 // If this is a tied constraint, verify that the output and input have
542 // either exactly the same type, or that they are int/ptr operands with the
543 // same size (int/long, int*/long, are ok etc).
544 if (!Info.hasTiedOperand()) continue;
545
546 unsigned TiedTo = Info.getTiedOperand();
547 unsigned InputOpNo = i+NumOutputs;
548 Expr *OutputExpr = Exprs[TiedTo];
549 Expr *InputExpr = Exprs[InputOpNo];
550
Alexander Musman8e261be2015-09-21 14:41:00 +0000551 // Make sure no more than one input constraint matches each output.
552 assert(TiedTo < InputMatchedToOutput.size() && "TiedTo value out of range");
553 if (InputMatchedToOutput[TiedTo] != ~0U) {
Alexey Bataev5c96c1c2019-02-20 17:42:57 +0000554 targetDiag(NS->getInputExpr(i)->getBeginLoc(),
555 diag::err_asm_input_duplicate_match)
Alexander Musman8e261be2015-09-21 14:41:00 +0000556 << TiedTo;
Alexey Bataev305b6b92019-02-26 21:51:16 +0000557 targetDiag(NS->getInputExpr(InputMatchedToOutput[TiedTo])->getBeginLoc(),
558 diag::note_asm_input_duplicate_first)
559 << TiedTo;
560 return NS;
Alexander Musman8e261be2015-09-21 14:41:00 +0000561 }
562 InputMatchedToOutput[TiedTo] = i;
563
Chad Rosier0731aff2012-08-17 21:19:40 +0000564 if (OutputExpr->isTypeDependent() || InputExpr->isTypeDependent())
565 continue;
566
567 QualType InTy = InputExpr->getType();
568 QualType OutTy = OutputExpr->getType();
569 if (Context.hasSameType(InTy, OutTy))
570 continue; // All types can be tied to themselves.
571
572 // Decide if the input and output are in the same domain (integer/ptr or
573 // floating point.
574 enum AsmDomain {
575 AD_Int, AD_FP, AD_Other
576 } InputDomain, OutputDomain;
577
578 if (InTy->isIntegerType() || InTy->isPointerType())
579 InputDomain = AD_Int;
580 else if (InTy->isRealFloatingType())
581 InputDomain = AD_FP;
582 else
583 InputDomain = AD_Other;
584
585 if (OutTy->isIntegerType() || OutTy->isPointerType())
586 OutputDomain = AD_Int;
587 else if (OutTy->isRealFloatingType())
588 OutputDomain = AD_FP;
589 else
590 OutputDomain = AD_Other;
591
592 // They are ok if they are the same size and in the same domain. This
593 // allows tying things like:
594 // void* to int*
595 // void* to int if they are the same size.
596 // double to long double if they are the same size.
597 //
598 uint64_t OutSize = Context.getTypeSize(OutTy);
599 uint64_t InSize = Context.getTypeSize(InTy);
600 if (OutSize == InSize && InputDomain == OutputDomain &&
601 InputDomain != AD_Other)
602 continue;
603
604 // If the smaller input/output operand is not mentioned in the asm string,
605 // then we can promote the smaller one to a larger input and the asm string
606 // won't notice.
607 bool SmallerValueMentioned = false;
608
609 // If this is a reference to the input and if the input was the smaller
610 // one, then we have to reject this asm.
611 if (isOperandMentioned(InputOpNo, Pieces)) {
612 // This is a use in the asm string of the smaller operand. Since we
613 // codegen this by promoting to a wider value, the asm will get printed
614 // "wrong".
615 SmallerValueMentioned |= InSize < OutSize;
616 }
617 if (isOperandMentioned(TiedTo, Pieces)) {
618 // If this is a reference to the output, and if the output is the larger
619 // value, then it's ok because we'll promote the input to the larger type.
620 SmallerValueMentioned |= OutSize < InSize;
621 }
622
623 // If the smaller value wasn't mentioned in the asm string, and if the
624 // output was a register, just extend the shorter one to the size of the
625 // larger one.
626 if (!SmallerValueMentioned && InputDomain != AD_Other &&
627 OutputConstraintInfos[TiedTo].allowsRegister())
628 continue;
629
630 // Either both of the operands were mentioned or the smaller one was
631 // mentioned. One more special case that we'll allow: if the tied input is
632 // integer, unmentioned, and is a constant, then we'll allow truncating it
633 // down to the size of the destination.
634 if (InputDomain == AD_Int && OutputDomain == AD_Int &&
635 !isOperandMentioned(InputOpNo, Pieces) &&
636 InputExpr->isEvaluatable(Context)) {
637 CastKind castKind =
638 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000639 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
Chad Rosier0731aff2012-08-17 21:19:40 +0000640 Exprs[InputOpNo] = InputExpr;
641 NS->setInputExpr(i, InputExpr);
642 continue;
643 }
644
Alexey Bataev305b6b92019-02-26 21:51:16 +0000645 targetDiag(InputExpr->getBeginLoc(), diag::err_asm_tying_incompatible_types)
646 << InTy << OutTy << OutputExpr->getSourceRange()
647 << InputExpr->getSourceRange();
648 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000649 }
650
Marina Yatsinac42fd032016-12-26 12:23:42 +0000651 // Check for conflicts between clobber list and input or output lists
652 SourceLocation ConstraintLoc =
653 getClobberConflictLocation(Exprs, Constraints, Clobbers, NumClobbers,
654 Context.getTargetInfo(), Context);
655 if (ConstraintLoc.isValid())
Alexey Bataev305b6b92019-02-26 21:51:16 +0000656 targetDiag(ConstraintLoc, diag::error_inoutput_conflict_with_clobber);
Fangrui Song6907ce22018-07-30 19:24:48 +0000657
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000658 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000659}
660
Coby Tayree61504192017-09-29 07:02:49 +0000661void Sema::FillInlineAsmIdentifierInfo(Expr *Res,
662 llvm::InlineAsmIdentifierInfo &Info) {
663 QualType T = Res->getType();
664 Expr::EvalResult Eval;
665 if (T->isFunctionType() || T->isDependentType())
666 return Info.setLabel(Res);
667 if (Res->isRValue()) {
668 if (isa<clang::EnumType>(T) && Res->EvaluateAsRValue(Eval, Context))
669 return Info.setEnum(Eval.Val.getInt().getSExtValue());
670 return Info.setLabel(Res);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000671 }
Coby Tayree61504192017-09-29 07:02:49 +0000672 unsigned Size = Context.getTypeSizeInChars(T).getQuantity();
673 unsigned Type = Size;
674 if (const auto *ATy = Context.getAsArrayType(T))
675 Type = Context.getTypeSizeInChars(ATy->getElementType()).getQuantity();
676 bool IsGlobalLV = false;
677 if (Res->EvaluateAsLValue(Eval, Context))
678 IsGlobalLV = Eval.isGlobalLValue();
679 Info.setVar(Res, IsGlobalLV, Size, Type);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000680}
681
John McCallf413f5e2013-05-03 00:10:13 +0000682ExprResult Sema::LookupInlineAsmIdentifier(CXXScopeSpec &SS,
683 SourceLocation TemplateKWLoc,
684 UnqualifiedId &Id,
John McCallf413f5e2013-05-03 00:10:13 +0000685 bool IsUnevaluatedContext) {
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000686
John McCallf413f5e2013-05-03 00:10:13 +0000687 if (IsUnevaluatedContext)
Faisal Valid143a0c2017-04-01 21:30:49 +0000688 PushExpressionEvaluationContext(
689 ExpressionEvaluationContext::UnevaluatedAbstract,
690 ReuseLambdaContextDecl);
John McCallf413f5e2013-05-03 00:10:13 +0000691
692 ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
693 /*trailing lparen*/ false,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000694 /*is & operand*/ false,
Craig Topperc3ec1492014-05-26 06:22:03 +0000695 /*CorrectionCandidateCallback=*/nullptr,
Chad Rosierb9aff1e2013-05-24 18:32:55 +0000696 /*IsInlineAsmIdentifier=*/ true);
John McCallf413f5e2013-05-03 00:10:13 +0000697
698 if (IsUnevaluatedContext)
699 PopExpressionEvaluationContext();
700
701 if (!Result.isUsable()) return Result;
702
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000703 Result = CheckPlaceholderExpr(Result.get());
John McCallf413f5e2013-05-03 00:10:13 +0000704 if (!Result.isUsable()) return Result;
705
Hans Wennborg93dbeae2014-09-04 22:16:48 +0000706 // Referring to parameters is not allowed in naked functions.
Hans Wennborge9d240a2014-10-08 01:58:02 +0000707 if (CheckNakedParmReference(Result.get(), *this))
708 return ExprError();
Eric Christophercf941522017-07-25 19:17:32 +0000709
710 QualType T = Result.get()->getType();
John McCallf413f5e2013-05-03 00:10:13 +0000711
John McCallf413f5e2013-05-03 00:10:13 +0000712 if (T->isDependentType()) {
David Majnemerf8b569c2016-01-04 23:51:15 +0000713 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000714 }
715
John McCallf413f5e2013-05-03 00:10:13 +0000716 // Any sort of function type is fine.
717 if (T->isFunctionType()) {
718 return Result;
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000719 }
720
John McCallf413f5e2013-05-03 00:10:13 +0000721 // Otherwise, it needs to be a complete type.
Eric Christophercf941522017-07-25 19:17:32 +0000722 if (RequireCompleteExprType(Result.get(), diag::err_asm_incomplete_type)) {
John McCallf413f5e2013-05-03 00:10:13 +0000723 return ExprError();
724 }
725
John McCallf413f5e2013-05-03 00:10:13 +0000726 return Result;
Chad Rosier4a0054f2012-10-15 19:56:10 +0000727}
Chad Rosierd997bd12012-08-22 19:18:30 +0000728
Chad Rosier5c563642012-10-25 21:49:22 +0000729bool Sema::LookupInlineAsmField(StringRef Base, StringRef Member,
730 unsigned &Offset, SourceLocation AsmLoc) {
731 Offset = 0;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000732 SmallVector<StringRef, 2> Members;
733 Member.split(Members, ".");
734
Coby Tayree69eb6962017-08-09 13:31:41 +0000735 NamedDecl *FoundDecl = nullptr;
Chad Rosier5c563642012-10-25 21:49:22 +0000736
Coby Tayree69eb6962017-08-09 13:31:41 +0000737 // MS InlineAsm uses 'this' as a base
738 if (getLangOpts().CPlusPlus && Base.equals("this")) {
739 if (const Type *PT = getCurrentThisType().getTypePtrOrNull())
740 FoundDecl = PT->getPointeeType()->getAsTagDecl();
741 } else {
742 LookupResult BaseResult(*this, &Context.Idents.get(Base), SourceLocation(),
743 LookupOrdinaryName);
744 if (LookupName(BaseResult, getCurScope()) && BaseResult.isSingleResult())
745 FoundDecl = BaseResult.getFoundDecl();
746 }
747
748 if (!FoundDecl)
Chad Rosier5c563642012-10-25 21:49:22 +0000749 return true;
Coby Tayree69eb6962017-08-09 13:31:41 +0000750
Marina Yatsina71ebc692015-12-17 12:51:51 +0000751 for (StringRef NextMember : Members) {
Marina Yatsina71ebc692015-12-17 12:51:51 +0000752 const RecordType *RT = nullptr;
Marina Yatsina71ebc692015-12-17 12:51:51 +0000753 if (VarDecl *VD = dyn_cast<VarDecl>(FoundDecl))
754 RT = VD->getType()->getAs<RecordType>();
755 else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(FoundDecl)) {
756 MarkAnyDeclReferenced(TD->getLocation(), TD, /*OdrUse=*/false);
Coby Tayree69eb6962017-08-09 13:31:41 +0000757 // MS InlineAsm often uses struct pointer aliases as a base
758 QualType QT = TD->getUnderlyingType();
759 if (const auto *PT = QT->getAs<PointerType>())
760 QT = PT->getPointeeType();
761 RT = QT->getAs<RecordType>();
Marina Yatsina71ebc692015-12-17 12:51:51 +0000762 } else if (TypeDecl *TD = dyn_cast<TypeDecl>(FoundDecl))
763 RT = TD->getTypeForDecl()->getAs<RecordType>();
764 else if (FieldDecl *TD = dyn_cast<FieldDecl>(FoundDecl))
765 RT = TD->getType()->getAs<RecordType>();
766 if (!RT)
767 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000768
Richard Smithdb0ac552015-12-18 22:40:25 +0000769 if (RequireCompleteType(AsmLoc, QualType(RT, 0),
770 diag::err_asm_incomplete_type))
Marina Yatsina71ebc692015-12-17 12:51:51 +0000771 return true;
Chad Rosier5c563642012-10-25 21:49:22 +0000772
Marina Yatsina71ebc692015-12-17 12:51:51 +0000773 LookupResult FieldResult(*this, &Context.Idents.get(NextMember),
774 SourceLocation(), LookupMemberName);
Chad Rosier5c563642012-10-25 21:49:22 +0000775
Marina Yatsina71ebc692015-12-17 12:51:51 +0000776 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
777 return true;
778
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000779 if (!FieldResult.isSingleResult())
780 return true;
781 FoundDecl = FieldResult.getFoundDecl();
782
Marina Yatsina71ebc692015-12-17 12:51:51 +0000783 // FIXME: Handle IndirectFieldDecl?
Marina Yatsinad6d8b312016-03-16 09:56:58 +0000784 FieldDecl *FD = dyn_cast<FieldDecl>(FoundDecl);
Marina Yatsina71ebc692015-12-17 12:51:51 +0000785 if (!FD)
786 return true;
787
Marina Yatsina71ebc692015-12-17 12:51:51 +0000788 const ASTRecordLayout &RL = Context.getASTRecordLayout(RT->getDecl());
789 unsigned i = FD->getFieldIndex();
790 CharUnits Result = Context.toCharUnitsFromBits(RL.getFieldOffset(i));
791 Offset += (unsigned)Result.getQuantity();
792 }
Chad Rosier5c563642012-10-25 21:49:22 +0000793
794 return false;
795}
796
Reid Kleckner14e96b42015-08-26 21:57:20 +0000797ExprResult
David Majnemer758e7982016-01-05 00:08:41 +0000798Sema::LookupInlineAsmVarDeclField(Expr *E, StringRef Member,
Reid Kleckner14e96b42015-08-26 21:57:20 +0000799 SourceLocation AsmLoc) {
Reid Kleckner14e96b42015-08-26 21:57:20 +0000800
David Majnemerf8b569c2016-01-04 23:51:15 +0000801 QualType T = E->getType();
802 if (T->isDependentType()) {
803 DeclarationNameInfo NameInfo;
804 NameInfo.setLoc(AsmLoc);
805 NameInfo.setName(&Context.Idents.get(Member));
806 return CXXDependentScopeMemberExpr::Create(
807 Context, E, T, /*IsArrow=*/false, AsmLoc, NestedNameSpecifierLoc(),
808 SourceLocation(),
809 /*FirstQualifierInScope=*/nullptr, NameInfo, /*TemplateArgs=*/nullptr);
810 }
811
812 const RecordType *RT = T->getAs<RecordType>();
Reid Kleckner14e96b42015-08-26 21:57:20 +0000813 // FIXME: Diagnose this as field access into a scalar type.
814 if (!RT)
815 return ExprResult();
816
817 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc,
818 LookupMemberName);
819
820 if (!LookupQualifiedName(FieldResult, RT->getDecl()))
821 return ExprResult();
822
823 // Only normal and indirect field results will work.
824 ValueDecl *FD = dyn_cast<FieldDecl>(FieldResult.getFoundDecl());
825 if (!FD)
826 FD = dyn_cast<IndirectFieldDecl>(FieldResult.getFoundDecl());
827 if (!FD)
828 return ExprResult();
829
Reid Kleckner14e96b42015-08-26 21:57:20 +0000830 // Make an Expr to thread through OpDecl.
831 ExprResult Result = BuildMemberReferenceExpr(
832 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(),
Aaron Ballman6924dcd2015-09-01 14:49:24 +0000833 SourceLocation(), nullptr, FieldResult, nullptr, nullptr);
Reid Kleckner14e96b42015-08-26 21:57:20 +0000834
835 return Result;
836}
837
Chad Rosierb261a502012-09-13 00:06:55 +0000838StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
John McCallf413f5e2013-05-03 00:10:13 +0000839 ArrayRef<Token> AsmToks,
840 StringRef AsmString,
841 unsigned NumOutputs, unsigned NumInputs,
842 ArrayRef<StringRef> Constraints,
843 ArrayRef<StringRef> Clobbers,
844 ArrayRef<Expr*> Exprs,
845 SourceLocation EndLoc) {
846 bool IsSimple = (NumOutputs != 0 || NumInputs != 0);
Reid Kleckner87a31802018-03-12 21:43:02 +0000847 setFunctionHasBranchProtectedScope();
Chad Rosier0731aff2012-08-17 21:19:40 +0000848 MSAsmStmt *NS =
Chad Rosierce2bcbf2012-10-18 15:49:40 +0000849 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
850 /*IsVolatile*/ true, AsmToks, NumOutputs, NumInputs,
John McCallf413f5e2013-05-03 00:10:13 +0000851 Constraints, Exprs, AsmString,
852 Clobbers, EndLoc);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000853 return NS;
Chad Rosier0731aff2012-08-17 21:19:40 +0000854}
Ehsan Akhgari31097582014-09-22 02:21:54 +0000855
856LabelDecl *Sema::GetOrCreateMSAsmLabel(StringRef ExternalLabelName,
857 SourceLocation Location,
858 bool AlwaysCreate) {
859 LabelDecl* Label = LookupOrCreateLabel(PP.getIdentifierInfo(ExternalLabelName),
860 Location);
861
Ehsan Akhgari42924432014-10-08 17:28:34 +0000862 if (Label->isMSAsmLabel()) {
863 // If we have previously created this label implicitly, mark it as used.
864 Label->markUsed(Context);
865 } else {
Ehsan Akhgari31097582014-09-22 02:21:54 +0000866 // Otherwise, insert it, but only resolve it if we have seen the label itself.
867 std::string InternalName;
868 llvm::raw_string_ostream OS(InternalName);
Reid Kleckner36c201a2016-12-07 00:17:18 +0000869 // Create an internal name for the label. The name should not be a valid
870 // mangled name, and should be unique. We use a dot to make the name an
871 // invalid mangled name. We use LLVM's inline asm ${:uid} escape so that a
872 // unique label is generated each time this blob is emitted, even after
873 // inlining or LTO.
Reid Klecknerfec0f322016-11-29 00:39:37 +0000874 OS << "__MSASMLABEL_.${:uid}__";
Reid Kleckner08ebbce2016-11-28 20:52:19 +0000875 for (char C : ExternalLabelName) {
876 OS << C;
877 // We escape '$' in asm strings by replacing it with "$$"
878 if (C == '$')
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000879 OS << '$';
Marina Yatsinaafb72f32015-12-29 08:49:34 +0000880 }
Ehsan Akhgari31097582014-09-22 02:21:54 +0000881 Label->setMSAsmLabel(OS.str());
882 }
883 if (AlwaysCreate) {
884 // The label might have been created implicitly from a previously encountered
885 // goto statement. So, for both newly created and looked up labels, we mark
886 // them as resolved.
887 Label->setMSAsmLabelResolved();
888 }
889 // Adjust their location for being able to generate accurate diagnostics.
890 Label->setLocation(Location);
891
892 return Label;
893}