Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anonf93cad930111::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 …]
/netbsd-src/external/apache2/llvm/dist/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()
469 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
483 GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, in ActOnGCCAsmStmt()
489 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
806 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
845 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
875 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
[all …]
H A DTreeTransform.h1426 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1433 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1442 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1450 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h205 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h2818 SourceLocation AsmLoc; variable
2836 : Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
2844 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
2845 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
3187 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
3285 SourceLocation getBeginLoc() const LLVM_READONLY { return AsmLoc; } in getBeginLoc()
H A DDecl.h4091 StringLiteral *Str, SourceLocation AsmLoc,
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp5028 SourceLocation AsmLoc, in Create() argument
5030 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h2846 SourceLocation AsmLoc,
4771 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
4786 unsigned &Offset, SourceLocation AsmLoc);
4788 SourceLocation AsmLoc);
4789 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmParser.cpp256 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
5910 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, in parseMSInlineAsm() argument
H A DMasmParser.cpp512 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
7043 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, in parseMSInlineAsm() argument
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h2089 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);