Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmtAsm.cpp39 SourceLocation AsmLoc; member in __anon362010ca0111::ClangAsmParserCallback
51 : TheParser(P), AsmLoc(Loc), AsmString(AsmString), AsmToks(Toks), in ClangAsmParserCallback()
108 AsmLoc); in LookupInlineAsmField()
162 SourceLocation Loc = AsmLoc; in translateLocation()
264 static bool buildMSAsmString(Preprocessor &PP, SourceLocation AsmLoc, in buildMSAsmString() argument
294 PP.Diag(AsmLoc, diag::err_asm_empty); in buildMSAsmString()
334 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { in ParseMicrosoftAsmStatement() argument
336 SourceLocation EndLoc = AsmLoc; in ParseMicrosoftAsmStatement()
481 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName(); in ParseMicrosoftAsmStatement()
486 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error; in ParseMicrosoftAsmStatement()
[all …]
/external/clang/lib/Sema/
DSemaStmtAsm.cpp110 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
310 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
560 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
583 if (RequireCompleteType(AsmLoc, QualType(RT, 0), 0)) in LookupInlineAsmField()
605 StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in ActOnMSAsmStmt() argument
616 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
DTreeTransform.h1241 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1247 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1256 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1264 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h116 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
/external/clang/include/clang/AST/
DStmt.h1396 SourceLocation AsmLoc;
1413 Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
1423 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
1424 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
1714 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
1812 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
DDecl.h3353 StringLiteral *Str, SourceLocation AsmLoc,
/external/clang/lib/AST/
DDecl.cpp3979 SourceLocation AsmLoc, in Create() argument
3981 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/external/clang/include/clang/Sema/
DSema.h1656 SourceLocation AsmLoc,
3172 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
3185 unsigned &Offset, SourceLocation AsmLoc);
3186 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp217 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
4542 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, in parseMSInlineAsm() argument
/external/clang/include/clang/Parse/
DParser.h1601 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);