Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Parse/
H A DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anon185fbe580111::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 …]
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaStmtAsm.cpp241 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
277 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
346 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
368 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
470 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
855 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
885 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
890 NameInfo.setLoc(AsmLoc); in LookupInlineAsmVarDeclField()
903 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc, in LookupInlineAsmVarDeclField()
918 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(), in LookupInlineAsmVarDeclField()
[all …]
H A DTreeTransform.h1431 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1438 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1447 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1455 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h2879 SourceLocation AsmLoc; variable
2897 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
2905 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
2906 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
3248 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
3346 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
H A DDecl.h4196 StringLiteral *Str, SourceLocation AsmLoc,
/llvm-project-15.0.7/clang/lib/AST/
H A DDecl.cpp5171 SourceLocation AsmLoc, in Create() argument
5173 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h3062 SourceLocation AsmLoc,
5070 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
5085 unsigned &Offset, SourceLocation AsmLoc);
5087 SourceLocation AsmLoc);
5088 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DParser.h2111 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);