1 //===--- SemaStmtAsm.cpp - Semantic Analysis for Asm Statements -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This file implements semantic analysis for inline asm statements.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/AST/ExprCXX.h"
15 #include "clang/AST/RecordLayout.h"
16 #include "clang/AST/TypeLoc.h"
17 #include "clang/Basic/TargetInfo.h"
18 #include "clang/Lex/Preprocessor.h"
19 #include "clang/Sema/Initialization.h"
20 #include "clang/Sema/Lookup.h"
21 #include "clang/Sema/Scope.h"
22 #include "clang/Sema/ScopeInfo.h"
23 #include "clang/Sema/SemaInternal.h"
24 #include "llvm/ADT/ArrayRef.h"
25 #include "llvm/ADT/StringSet.h"
26 #include "llvm/MC/MCParser/MCAsmParser.h"
27 using namespace clang;
28 using namespace sema;
29 
30 /// Remove the upper-level LValueToRValue cast from an expression.
31 static void removeLValueToRValueCast(Expr *E) {
32   Expr *Parent = E;
33   Expr *ExprUnderCast = nullptr;
34   SmallVector<Expr *, 8> ParentsToUpdate;
35 
36   while (true) {
37     ParentsToUpdate.push_back(Parent);
38     if (auto *ParenE = dyn_cast<ParenExpr>(Parent)) {
39       Parent = ParenE->getSubExpr();
40       continue;
41     }
42 
43     Expr *Child = nullptr;
44     CastExpr *ParentCast = dyn_cast<CastExpr>(Parent);
45     if (ParentCast)
46       Child = ParentCast->getSubExpr();
47     else
48       return;
49 
50     if (auto *CastE = dyn_cast<CastExpr>(Child))
51       if (CastE->getCastKind() == CK_LValueToRValue) {
52         ExprUnderCast = CastE->getSubExpr();
53         // LValueToRValue cast inside GCCAsmStmt requires an explicit cast.
54         ParentCast->setSubExpr(ExprUnderCast);
55         break;
56       }
57     Parent = Child;
58   }
59 
60   // Update parent expressions to have same ValueType as the underlying.
61   assert(ExprUnderCast &&
62          "Should be reachable only if LValueToRValue cast was found!");
63   auto ValueKind = ExprUnderCast->getValueKind();
64   for (Expr *E : ParentsToUpdate)
65     E->setValueKind(ValueKind);
66 }
67 
68 /// Emit a warning about usage of "noop"-like casts for lvalues (GNU extension)
69 /// and fix the argument with removing LValueToRValue cast from the expression.
70 static void emitAndFixInvalidAsmCastLValue(const Expr *LVal, Expr *BadArgument,
71                                            Sema &S) {
72   if (!S.getLangOpts().HeinousExtensions) {
73     S.Diag(LVal->getBeginLoc(), diag::err_invalid_asm_cast_lvalue)
74         << BadArgument->getSourceRange();
75   } else {
76     S.Diag(LVal->getBeginLoc(), diag::warn_invalid_asm_cast_lvalue)
77         << BadArgument->getSourceRange();
78   }
79   removeLValueToRValueCast(BadArgument);
80 }
81 
82 /// CheckAsmLValue - GNU C has an extremely ugly extension whereby they silently
83 /// ignore "noop" casts in places where an lvalue is required by an inline asm.
84 /// We emulate this behavior when -fheinous-gnu-extensions is specified, but
85 /// provide a strong guidance to not use it.
86 ///
87 /// This method checks to see if the argument is an acceptable l-value and
88 /// returns false if it is a case we can handle.
89 static bool CheckAsmLValue(Expr *E, Sema &S) {
90   // Type dependent expressions will be checked during instantiation.
91   if (E->isTypeDependent())
92     return false;
93 
94   if (E->isLValue())
95     return false;  // Cool, this is an lvalue.
96 
97   // Okay, this is not an lvalue, but perhaps it is the result of a cast that we
98   // are supposed to allow.
99   const Expr *E2 = E->IgnoreParenNoopCasts(S.Context);
100   if (E != E2 && E2->isLValue()) {
101     emitAndFixInvalidAsmCastLValue(E2, E, S);
102     // Accept, even if we emitted an error diagnostic.
103     return false;
104   }
105 
106   // None of the above, just randomly invalid non-lvalue.
107   return true;
108 }
109 
110 /// isOperandMentioned - Return true if the specified operand # is mentioned
111 /// anywhere in the decomposed asm string.
112 static bool
113 isOperandMentioned(unsigned OpNo,
114                    ArrayRef<GCCAsmStmt::AsmStringPiece> AsmStrPieces) {
115   for (unsigned p = 0, e = AsmStrPieces.size(); p != e; ++p) {
116     const GCCAsmStmt::AsmStringPiece &Piece = AsmStrPieces[p];
117     if (!Piece.isOperand())
118       continue;
119 
120     // If this is a reference to the input and if the input was the smaller
121     // one, then we have to reject this asm.
122     if (Piece.getOperandNo() == OpNo)
123       return true;
124   }
125   return false;
126 }
127 
128 static bool CheckNakedParmReference(Expr *E, Sema &S) {
129   FunctionDecl *Func = dyn_cast<FunctionDecl>(S.CurContext);
130   if (!Func)
131     return false;
132   if (!Func->hasAttr<NakedAttr>())
133     return false;
134 
135   SmallVector<Expr*, 4> WorkList;
136   WorkList.push_back(E);
137   while (WorkList.size()) {
138     Expr *E = WorkList.pop_back_val();
139     if (isa<CXXThisExpr>(E)) {
140       S.Diag(E->getBeginLoc(), diag::err_asm_naked_this_ref);
141       S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
142       return true;
143     }
144     if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
145       if (isa<ParmVarDecl>(DRE->getDecl())) {
146         S.Diag(DRE->getBeginLoc(), diag::err_asm_naked_parm_ref);
147         S.Diag(Func->getAttr<NakedAttr>()->getLocation(), diag::note_attribute);
148         return true;
149       }
150     }
151     for (Stmt *Child : E->children()) {
152       if (Expr *E = dyn_cast_or_null<Expr>(Child))
153         WorkList.push_back(E);
154     }
155   }
156   return false;
157 }
158 
159 /// Returns true if given expression is not compatible with inline
160 /// assembly's memory constraint; false otherwise.
161 static bool checkExprMemoryConstraintCompat(Sema &S, Expr *E,
162                                             TargetInfo::ConstraintInfo &Info,
163                                             bool is_input_expr) {
164   enum {
165     ExprBitfield = 0,
166     ExprVectorElt,
167     ExprGlobalRegVar,
168     ExprSafeType
169   } EType = ExprSafeType;
170 
171   // Bitfields, vector elements and global register variables are not
172   // compatible.
173   if (E->refersToBitField())
174     EType = ExprBitfield;
175   else if (E->refersToVectorElement())
176     EType = ExprVectorElt;
177   else if (E->refersToGlobalRegisterVar())
178     EType = ExprGlobalRegVar;
179 
180   if (EType != ExprSafeType) {
181     S.Diag(E->getBeginLoc(), diag::err_asm_non_addr_value_in_memory_constraint)
182         << EType << is_input_expr << Info.getConstraintStr()
183         << E->getSourceRange();
184     return true;
185   }
186 
187   return false;
188 }
189 
190 // Extracting the register name from the Expression value,
191 // if there is no register name to extract, returns ""
192 static StringRef extractRegisterName(const Expr *Expression,
193                                      const TargetInfo &Target) {
194   Expression = Expression->IgnoreImpCasts();
195   if (const DeclRefExpr *AsmDeclRef = dyn_cast<DeclRefExpr>(Expression)) {
196     // Handle cases where the expression is a variable
197     const VarDecl *Variable = dyn_cast<VarDecl>(AsmDeclRef->getDecl());
198     if (Variable && Variable->getStorageClass() == SC_Register) {
199       if (AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>())
200         if (Target.isValidGCCRegisterName(Attr->getLabel()))
201           return Target.getNormalizedGCCRegisterName(Attr->getLabel(), true);
202     }
203   }
204   return "";
205 }
206 
207 // Checks if there is a conflict between the input and output lists with the
208 // clobbers list. If there's a conflict, returns the location of the
209 // conflicted clobber, else returns nullptr
210 static SourceLocation
211 getClobberConflictLocation(MultiExprArg Exprs, StringLiteral **Constraints,
212                            StringLiteral **Clobbers, int NumClobbers,
213                            const TargetInfo &Target, ASTContext &Cont) {
214   llvm::StringSet<> InOutVars;
215   // Collect all the input and output registers from the extended asm
216   // statement in order to check for conflicts with the clobber list
217   for (unsigned int i = 0; i < Exprs.size(); ++i) {
218     StringRef Constraint = Constraints[i]->getString();
219     StringRef InOutReg = Target.getConstraintRegister(
220         Constraint, extractRegisterName(Exprs[i], Target));
221     if (InOutReg != "")
222       InOutVars.insert(InOutReg);
223   }
224   // Check for each item in the clobber list if it conflicts with the input
225   // or output
226   for (int i = 0; i < NumClobbers; ++i) {
227     StringRef Clobber = Clobbers[i]->getString();
228     // We only check registers, therefore we don't check cc and memory
229     // clobbers
230     if (Clobber == "cc" || Clobber == "memory")
231       continue;
232     Clobber = Target.getNormalizedGCCRegisterName(Clobber, true);
233     // Go over the output's registers we collected
234     if (InOutVars.count(Clobber))
235       return Clobbers[i]->getBeginLoc();
236   }
237   return SourceLocation();
238 }
239 
240 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
241                                  bool IsVolatile, unsigned NumOutputs,
242                                  unsigned NumInputs, IdentifierInfo **Names,
243                                  MultiExprArg constraints, MultiExprArg Exprs,
244                                  Expr *asmString, MultiExprArg clobbers,
245                                  SourceLocation RParenLoc) {
246   unsigned NumClobbers = clobbers.size();
247   StringLiteral **Constraints =
248     reinterpret_cast<StringLiteral**>(constraints.data());
249   StringLiteral *AsmString = cast<StringLiteral>(asmString);
250   StringLiteral **Clobbers = reinterpret_cast<StringLiteral**>(clobbers.data());
251 
252   SmallVector<TargetInfo::ConstraintInfo, 4> OutputConstraintInfos;
253 
254   // The parser verifies that there is a string literal here.
255   assert(AsmString->isAscii());
256 
257   // If we're compiling CUDA file and function attributes indicate that it's not
258   // for this compilation side, skip all the checks.
259   if (!DeclAttrsMatchCUDAMode(getLangOpts(), getCurFunctionDecl())) {
260     GCCAsmStmt *NS = new (Context) GCCAsmStmt(
261         Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names,
262         Constraints, Exprs.data(), AsmString, NumClobbers, Clobbers, RParenLoc);
263     return NS;
264   }
265 
266   for (unsigned i = 0; i != NumOutputs; i++) {
267     StringLiteral *Literal = Constraints[i];
268     assert(Literal->isAscii());
269 
270     StringRef OutputName;
271     if (Names[i])
272       OutputName = Names[i]->getName();
273 
274     TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
275     if (!Context.getTargetInfo().validateOutputConstraint(Info))
276       return StmtError(
277           Diag(Literal->getBeginLoc(), diag::err_asm_invalid_output_constraint)
278           << Info.getConstraintStr());
279 
280     ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
281     if (ER.isInvalid())
282       return StmtError();
283     Exprs[i] = ER.get();
284 
285     // Check that the output exprs are valid lvalues.
286     Expr *OutputExpr = Exprs[i];
287 
288     // Referring to parameters is not allowed in naked functions.
289     if (CheckNakedParmReference(OutputExpr, *this))
290       return StmtError();
291 
292     // Check that the output expression is compatible with memory constraint.
293     if (Info.allowsMemory() &&
294         checkExprMemoryConstraintCompat(*this, OutputExpr, Info, false))
295       return StmtError();
296 
297     OutputConstraintInfos.push_back(Info);
298 
299     // If this is dependent, just continue.
300     if (OutputExpr->isTypeDependent())
301       continue;
302 
303     Expr::isModifiableLvalueResult IsLV =
304         OutputExpr->isModifiableLvalue(Context, /*Loc=*/nullptr);
305     switch (IsLV) {
306     case Expr::MLV_Valid:
307       // Cool, this is an lvalue.
308       break;
309     case Expr::MLV_ArrayType:
310       // This is OK too.
311       break;
312     case Expr::MLV_LValueCast: {
313       const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context);
314       emitAndFixInvalidAsmCastLValue(LVal, OutputExpr, *this);
315       // Accept, even if we emitted an error diagnostic.
316       break;
317     }
318     case Expr::MLV_IncompleteType:
319     case Expr::MLV_IncompleteVoidType:
320       if (RequireCompleteType(OutputExpr->getBeginLoc(), Exprs[i]->getType(),
321                               diag::err_dereference_incomplete_type))
322         return StmtError();
323       LLVM_FALLTHROUGH;
324     default:
325       return StmtError(Diag(OutputExpr->getBeginLoc(),
326                             diag::err_asm_invalid_lvalue_in_output)
327                        << OutputExpr->getSourceRange());
328     }
329 
330     unsigned Size = Context.getTypeSize(OutputExpr->getType());
331     if (!Context.getTargetInfo().validateOutputSize(Literal->getString(),
332                                                     Size))
333       return StmtError(
334           Diag(OutputExpr->getBeginLoc(), diag::err_asm_invalid_output_size)
335           << Info.getConstraintStr());
336   }
337 
338   SmallVector<TargetInfo::ConstraintInfo, 4> InputConstraintInfos;
339 
340   for (unsigned i = NumOutputs, e = NumOutputs + NumInputs; i != e; i++) {
341     StringLiteral *Literal = Constraints[i];
342     assert(Literal->isAscii());
343 
344     StringRef InputName;
345     if (Names[i])
346       InputName = Names[i]->getName();
347 
348     TargetInfo::ConstraintInfo Info(Literal->getString(), InputName);
349     if (!Context.getTargetInfo().validateInputConstraint(OutputConstraintInfos,
350                                                          Info)) {
351       return StmtError(
352           Diag(Literal->getBeginLoc(), diag::err_asm_invalid_input_constraint)
353           << Info.getConstraintStr());
354     }
355 
356     ExprResult ER = CheckPlaceholderExpr(Exprs[i]);
357     if (ER.isInvalid())
358       return StmtError();
359     Exprs[i] = ER.get();
360 
361     Expr *InputExpr = Exprs[i];
362 
363     // Referring to parameters is not allowed in naked functions.
364     if (CheckNakedParmReference(InputExpr, *this))
365       return StmtError();
366 
367     // Check that the input expression is compatible with memory constraint.
368     if (Info.allowsMemory() &&
369         checkExprMemoryConstraintCompat(*this, InputExpr, Info, true))
370       return StmtError();
371 
372     // Only allow void types for memory constraints.
373     if (Info.allowsMemory() && !Info.allowsRegister()) {
374       if (CheckAsmLValue(InputExpr, *this))
375         return StmtError(Diag(InputExpr->getBeginLoc(),
376                               diag::err_asm_invalid_lvalue_in_input)
377                          << Info.getConstraintStr()
378                          << InputExpr->getSourceRange());
379     } else if (Info.requiresImmediateConstant() && !Info.allowsRegister()) {
380       if (!InputExpr->isValueDependent()) {
381         llvm::APSInt Result;
382         if (!InputExpr->EvaluateAsInt(Result, Context))
383           return StmtError(
384               Diag(InputExpr->getBeginLoc(), diag::err_asm_immediate_expected)
385               << Info.getConstraintStr() << InputExpr->getSourceRange());
386          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());
391       }
392 
393     } else {
394       ExprResult Result = DefaultFunctionArrayLvalueConversion(Exprs[i]);
395       if (Result.isInvalid())
396         return StmtError();
397 
398       Exprs[i] = Result.get();
399     }
400 
401     if (Info.allowsRegister()) {
402       if (InputExpr->getType()->isVoidType()) {
403         return StmtError(
404             Diag(InputExpr->getBeginLoc(), diag::err_asm_invalid_type_in_input)
405             << InputExpr->getType() << Info.getConstraintStr()
406             << InputExpr->getSourceRange());
407       }
408     }
409 
410     InputConstraintInfos.push_back(Info);
411 
412     const Type *Ty = Exprs[i]->getType().getTypePtr();
413     if (Ty->isDependentType())
414       continue;
415 
416     if (!Ty->isVoidType() || !Info.allowsMemory())
417       if (RequireCompleteType(InputExpr->getBeginLoc(), Exprs[i]->getType(),
418                               diag::err_dereference_incomplete_type))
419         return StmtError();
420 
421     unsigned Size = Context.getTypeSize(Ty);
422     if (!Context.getTargetInfo().validateInputSize(Literal->getString(),
423                                                    Size))
424       return StmtError(
425           Diag(InputExpr->getBeginLoc(), diag::err_asm_invalid_input_size)
426           << Info.getConstraintStr());
427   }
428 
429   // Check that the clobbers are valid.
430   for (unsigned i = 0; i != NumClobbers; i++) {
431     StringLiteral *Literal = Clobbers[i];
432     assert(Literal->isAscii());
433 
434     StringRef Clobber = Literal->getString();
435 
436     if (!Context.getTargetInfo().isValidClobber(Clobber))
437       return StmtError(
438           Diag(Literal->getBeginLoc(), diag::err_asm_unknown_register_name)
439           << Clobber);
440   }
441 
442   GCCAsmStmt *NS =
443     new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs,
444                              NumInputs, Names, Constraints, Exprs.data(),
445                              AsmString, NumClobbers, Clobbers, RParenLoc);
446   // Validate the asm string, ensuring it makes sense given the operands we
447   // have.
448   SmallVector<GCCAsmStmt::AsmStringPiece, 8> Pieces;
449   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 
456   // 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.
462     unsigned ConstraintIdx = Piece.getOperandNo();
463     unsigned NumOperands = NS->getNumOutputs() + NS->getNumInputs();
464 
465     // 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;
473           break;
474         }
475 
476       assert(I != E && "Invalid operand number should have been caught in "
477                        " AnalyzeAsmString");
478     }
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);
487     std::string SuggestedModifier;
488     if (!Context.getTargetInfo().validateConstraintModifier(
489             Literal->getString(), Piece.getModifier(), Size,
490             SuggestedModifier)) {
491       Diag(Exprs[ConstraintIdx]->getBeginLoc(),
492            diag::warn_asm_mismatched_size_modifier);
493 
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     }
503   }
504 
505   // Validate tied input operands for type mismatches.
506   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)
514       return StmtError(Diag(NS->getOutputExpr(i)->getBeginLoc(),
515                             diag::err_asm_unexpected_constraint_alternatives)
516                        << NumAlternatives << AltCount);
517   }
518   SmallVector<size_t, 4> InputMatchedToOutput(OutputConstraintInfos.size(),
519                                               ~0U);
520   for (unsigned i = 0, e = InputConstraintInfos.size(); i != e; ++i) {
521     TargetInfo::ConstraintInfo &Info = InputConstraintInfos[i];
522     StringRef ConstraintStr = Info.getConstraintStr();
523     unsigned AltCount = ConstraintStr.count(',') + 1;
524     if (NumAlternatives == ~0U)
525       NumAlternatives = AltCount;
526     else if (NumAlternatives != AltCount)
527       return StmtError(Diag(NS->getInputExpr(i)->getBeginLoc(),
528                             diag::err_asm_unexpected_constraint_alternatives)
529                        << NumAlternatives << AltCount);
530 
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 
541     // 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) {
544       Diag(NS->getInputExpr(i)->getBeginLoc(),
545            diag::err_asm_input_duplicate_match)
546           << TiedTo;
547       Diag(NS->getInputExpr(InputMatchedToOutput[TiedTo])->getBeginLoc(),
548            diag::note_asm_input_duplicate_first)
549           << TiedTo;
550       return StmtError();
551     }
552     InputMatchedToOutput[TiedTo] = i;
553 
554     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);
629       InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
630       Exprs[InputOpNo] = InputExpr;
631       NS->setInputExpr(i, InputExpr);
632       continue;
633     }
634 
635     Diag(InputExpr->getBeginLoc(), diag::err_asm_tying_incompatible_types)
636         << InTy << OutTy << OutputExpr->getSourceRange()
637         << InputExpr->getSourceRange();
638     return StmtError();
639   }
640 
641   // 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);
647 
648   return NS;
649 }
650 
651 void 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);
661   }
662   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);
670 }
671 
672 ExprResult Sema::LookupInlineAsmIdentifier(CXXScopeSpec &SS,
673                                            SourceLocation TemplateKWLoc,
674                                            UnqualifiedId &Id,
675                                            bool IsUnevaluatedContext) {
676 
677   if (IsUnevaluatedContext)
678     PushExpressionEvaluationContext(
679         ExpressionEvaluationContext::UnevaluatedAbstract,
680         ReuseLambdaContextDecl);
681 
682   ExprResult Result = ActOnIdExpression(getCurScope(), SS, TemplateKWLoc, Id,
683                                         /*trailing lparen*/ false,
684                                         /*is & operand*/ false,
685                                         /*CorrectionCandidateCallback=*/nullptr,
686                                         /*IsInlineAsmIdentifier=*/ true);
687 
688   if (IsUnevaluatedContext)
689     PopExpressionEvaluationContext();
690 
691   if (!Result.isUsable()) return Result;
692 
693   Result = CheckPlaceholderExpr(Result.get());
694   if (!Result.isUsable()) return Result;
695 
696   // Referring to parameters is not allowed in naked functions.
697   if (CheckNakedParmReference(Result.get(), *this))
698     return ExprError();
699 
700   QualType T = Result.get()->getType();
701 
702   if (T->isDependentType()) {
703     return Result;
704   }
705 
706   // Any sort of function type is fine.
707   if (T->isFunctionType()) {
708     return Result;
709   }
710 
711   // Otherwise, it needs to be a complete type.
712   if (RequireCompleteExprType(Result.get(), diag::err_asm_incomplete_type)) {
713     return ExprError();
714   }
715 
716   return Result;
717 }
718 
719 bool Sema::LookupInlineAsmField(StringRef Base, StringRef Member,
720                                 unsigned &Offset, SourceLocation AsmLoc) {
721   Offset = 0;
722   SmallVector<StringRef, 2> Members;
723   Member.split(Members, ".");
724 
725   NamedDecl *FoundDecl = nullptr;
726 
727   // 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)
739     return true;
740 
741   for (StringRef NextMember : Members) {
742     const RecordType *RT = nullptr;
743     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);
747       // 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>();
752     } 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;
758 
759     if (RequireCompleteType(AsmLoc, QualType(RT, 0),
760                             diag::err_asm_incomplete_type))
761       return true;
762 
763     LookupResult FieldResult(*this, &Context.Idents.get(NextMember),
764                              SourceLocation(), LookupMemberName);
765 
766     if (!LookupQualifiedName(FieldResult, RT->getDecl()))
767       return true;
768 
769     if (!FieldResult.isSingleResult())
770       return true;
771     FoundDecl = FieldResult.getFoundDecl();
772 
773     // FIXME: Handle IndirectFieldDecl?
774     FieldDecl *FD = dyn_cast<FieldDecl>(FoundDecl);
775     if (!FD)
776       return true;
777 
778     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   }
783 
784   return false;
785 }
786 
787 ExprResult
788 Sema::LookupInlineAsmVarDeclField(Expr *E, StringRef Member,
789                                   SourceLocation AsmLoc) {
790 
791   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>();
803   // 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 
820   // Make an Expr to thread through OpDecl.
821   ExprResult Result = BuildMemberReferenceExpr(
822       E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(),
823       SourceLocation(), nullptr, FieldResult, nullptr, nullptr);
824 
825   return Result;
826 }
827 
828 StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
829                                 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);
837   setFunctionHasBranchProtectedScope();
838   MSAsmStmt *NS =
839     new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple,
840                             /*IsVolatile*/ true, AsmToks, NumOutputs, NumInputs,
841                             Constraints, Exprs, AsmString,
842                             Clobbers, EndLoc);
843   return NS;
844 }
845 
846 LabelDecl *Sema::GetOrCreateMSAsmLabel(StringRef ExternalLabelName,
847                                        SourceLocation Location,
848                                        bool AlwaysCreate) {
849   LabelDecl* Label = LookupOrCreateLabel(PP.getIdentifierInfo(ExternalLabelName),
850                                          Location);
851 
852   if (Label->isMSAsmLabel()) {
853     // If we have previously created this label implicitly, mark it as used.
854     Label->markUsed(Context);
855   } else {
856     // 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);
859     // 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.
864     OS << "__MSASMLABEL_.${:uid}__";
865     for (char C : ExternalLabelName) {
866       OS << C;
867       // We escape '$' in asm strings by replacing it with "$$"
868       if (C == '$')
869         OS << '$';
870     }
871     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 }
884