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()
286 static bool buildMSAsmString(Preprocessor &PP, SourceLocation AsmLoc, in buildMSAsmString() argument
316 PP.Diag(AsmLoc, diag::err_asm_empty); in buildMSAsmString()
356 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { in ParseMicrosoftAsmStatement() argument
358 SourceLocation EndLoc = AsmLoc; in ParseMicrosoftAsmStatement()
503 Diag(AsmLoc, diag::err_msasm_unsupported_arch) << TheTriple.getArchName(); in ParseMicrosoftAsmStatement()
508 Diag(AsmLoc, diag::err_msasm_unable_to_create_target) << Error; in ParseMicrosoftAsmStatement()
[all …]
/external/clang/lib/Sema/
DSemaStmtAsm.cpp141 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
162 Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, NumInputs, Names, in ActOnGCCAsmStmt()
348 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
618 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
650 if (RequireCompleteType(AsmLoc, QualType(RT, 0), in LookupInlineAsmField()
679 SourceLocation AsmLoc) { in LookupInlineAsmVarDeclField() argument
687 LookupResult FieldResult(*this, &Context.Idents.get(Member), AsmLoc, in LookupInlineAsmVarDeclField()
705 E, E->getType(), AsmLoc, /*IsArrow=*/false, CXXScopeSpec(), in LookupInlineAsmVarDeclField()
719 StmtResult Sema::ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in ActOnMSAsmStmt() argument
730 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
DTreeTransform.h1262 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1268 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1277 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1285 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, AsmString, in RebuildMSAsmStmt()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h118 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
/external/clang/include/clang/AST/
DStmt.h1394 SourceLocation AsmLoc;
1411 Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
1421 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
1422 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
1712 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
1810 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
DDecl.h3411 StringLiteral *Str, SourceLocation AsmLoc,
/external/clang/include/clang/Sema/
DSema.h1794 SourceLocation AsmLoc,
3404 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
3417 unsigned &Offset, SourceLocation AsmLoc);
3421 SourceLocation AsmLoc);
3422 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/external/clang/lib/AST/
DDecl.cpp3994 SourceLocation AsmLoc, in Create() argument
3996 return new (C, DC) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp226 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
4680 void *AsmLoc, std::string &AsmString, unsigned &NumOutputs, in parseMSInlineAsm() argument
/external/clang/include/clang/Parse/
DParser.h1676 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);