Home
last modified time | relevance | path

Searched refs:AsmLoc (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anonc60b55280111::ClangAsmParserCallback
51 : TheParser(P), AsmLoc(Loc), AsmString(AsmString), AsmToks(Toks), in ClangAsmParserCallback()
67 AsmLoc); in LookupInlineAsmField()
184 SourceLocation Loc = AsmLoc; in translateLocation()
299 static bool buildMSAsmString(Preprocessor &PP, SourceLocation AsmLoc, in buildMSAsmString() argument
329 PP.Diag(AsmLoc, diag::err_asm_empty); in buildMSAsmString()
378 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { in ParseMicrosoftAsmStatement() argument
380 SourceLocation EndLoc = AsmLoc; in ParseMicrosoftAsmStatement()
537 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName(); in ParseMicrosoftAsmStatement()
542 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error; in ParseMicrosoftAsmStatement()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp243 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
280 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
349 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
371 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
478 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
492 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, in ActOnGCCAsmStmt()
498 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
824 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
863 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
893 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
[all …]
H A DTreeTransform.h1518 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1525 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1534 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1542 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3109 SourceLocation AsmLoc;
3127 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile),
3135 SourceLocation getAsmLoc() const { return AsmLoc; }
3136 void setAsmLoc(SourceLocation L) { AsmLoc = L; }
3478 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; }
3576 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; }
H A DDecl.h4405 StringLiteral *Str, SourceLocation AsmLoc,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3781 Decl *ActOnFileScopeAsmDecl(Expr *expr, SourceLocation AsmLoc,
10956 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
10970 SourceLocation AsmLoc);
10972 SourceLocation AsmLoc);
10973 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5580 SourceLocation AsmLoc, in Create() argument
5582 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2206 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);