Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anon8dd050df0111::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 …]
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmtAsm.cpp242 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
278 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
347 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
369 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
476 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
490 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, in ActOnGCCAsmStmt()
496 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
822 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
861 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
891 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
[all …]
H A DTreeTransform.h1472 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1479 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1488 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1496 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h2891 SourceLocation AsmLoc; variable
2909 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
2917 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
2918 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
3260 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
3358 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
H A DDecl.h4281 StringLiteral *Str, SourceLocation AsmLoc,
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDecl.cpp5258 SourceLocation AsmLoc, in Create() argument
5260 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h3130 SourceLocation AsmLoc,
5193 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
5208 unsigned &Offset, SourceLocation AsmLoc);
5210 SourceLocation AsmLoc);
5211 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DParser.h2123 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);