Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anon4f526c1e0111::ClangAsmParserCallback
67 AsmLoc); in LookupInlineAsmField()
184 SourceLocation Loc = AsmLoc; in translateLocation()
329 PP.Diag(AsmLoc, diag::err_asm_empty); in buildMSAsmString()
380 SourceLocation EndLoc = AsmLoc; in ParseMicrosoftAsmStatement()
570 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) in ParseMicrosoftAsmStatement()
585 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) in ParseMicrosoftAsmStatement()
610 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) in ParseMicrosoftAsmStatement()
723 SourceLocation AsmLoc = ConsumeToken(); in ParseAsmStatement() local
727 return ParseMicrosoftAsmStatement(AsmLoc); in ParseAsmStatement()
[all …]
/freebsd-14.2/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()
863 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
893 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
898 NameInfo.setLoc(AsmLoc); in LookupInlineAsmVarDeclField()
911 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc, in LookupInlineAsmVarDeclField()
926 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(), in LookupInlineAsmVarDeclField()
[all …]
H A DTreeTransform.h1497 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1504 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1513 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1521 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3102 SourceLocation AsmLoc; variable
3120 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
3128 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
3129 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
3471 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
3569 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
H A DDecl.h4389 StringLiteral *Str, SourceLocation AsmLoc,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5515 SourceLocation AsmLoc, in Create() argument
5517 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h3193 SourceLocation AsmLoc,
5319 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
5334 unsigned &Offset, SourceLocation AsmLoc);
5336 SourceLocation AsmLoc);
5337 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2148 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);