Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaStmtAsm.cpp89 StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in ActOnGCCAsmStmt() argument
210 new (Context) GCCAsmStmt(Context, AsmLoc, IsSimple, IsVolatile, NumOutputs, in ActOnGCCAsmStmt()
389 SourceLocation AsmLoc, in buildMSAsmString() argument
407 SemaRef.Diag(AsmLoc, diag::err_asm_empty); in buildMSAsmString()
429 SourceLocation AsmLoc; member in __anonf63c8ba60111::MCAsmParserSemaCallbackImpl
437 : SemaRef(Ref), AsmLoc(Loc), AsmToks(Toks), TokOffsets(Offsets) { } in MCAsmParserSemaCallbackImpl()
453 return SemaRef.LookupInlineAsmField(Base, Member, Offset, AsmLoc); in LookupInlineAsmField()
477 SourceLocation Loc = AsmLoc; in MSAsmDiagHandler()
533 unsigned &Offset, SourceLocation AsmLoc) { in LookupInlineAsmField() argument
554 if (RequireCompleteType(AsmLoc, QualType(RT, 0), 0)) in LookupInlineAsmField()
[all …]
DTreeTransform.h1174 StmtResult RebuildGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple, in RebuildGCCAsmStmt() argument
1180 return getSema().ActOnGCCAsmStmt(AsmLoc, IsSimple, IsVolatile, NumOutputs, in RebuildGCCAsmStmt()
1189 StmtResult RebuildMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc, in RebuildMSAsmStmt() argument
1191 return getSema().ActOnMSAsmStmt(AsmLoc, LBraceLoc, AsmToks, EndLoc); in RebuildMSAsmStmt()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParser.h96 virtual bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
/external/clang/lib/Parse/
DParseStmt.cpp1673 StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { in ParseMicrosoftAsmStatement() argument
1675 SourceLocation EndLoc = AsmLoc; in ParseMicrosoftAsmStatement()
1767 return Actions.ActOnMSAsmStmt(AsmLoc, LBraceLoc, in ParseMicrosoftAsmStatement()
1792 SourceLocation AsmLoc = ConsumeToken(); in ParseAsmStatement() local
1797 return ParseMicrosoftAsmStatement(AsmLoc); in ParseAsmStatement()
1834 return Actions.ActOnGCCAsmStmt(AsmLoc, /*isSimple*/ true, isVolatile, in ParseAsmStatement()
1898 return Actions.ActOnGCCAsmStmt(AsmLoc, false, isVolatile, NumOutputs, in ParseAsmStatement()
/external/clang/include/clang/AST/
DStmt.h1374 SourceLocation AsmLoc;
1392 Stmt (SC), AsmLoc(asmloc), IsSimple(issimple), IsVolatile(isvolatile), in AsmStmt()
1400 SourceLocation getAsmLoc() const { return AsmLoc; } in getAsmLoc()
1401 void setAsmLoc(SourceLocation L) { AsmLoc = L; } in setAsmLoc()
1665 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
1745 SourceLocation getLocStart() const LLVM_READONLY { return AsmLoc; } in getLocStart()
DDecl.h3012 StringLiteral *Str, SourceLocation AsmLoc,
/external/llvm/lib/MC/MCParser/
DAsmParser.cpp213 bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
4066 AsmParser::parseMSInlineAsm(void *AsmLoc, std::string &AsmString, in parseMSInlineAsm() argument
4127 void *OpDecl = SI.LookupInlineAsmIdentifier(Operand->getName(), AsmLoc, in parseMSInlineAsm()
/external/clang/lib/AST/
DDecl.cpp3327 SourceLocation AsmLoc, in Create() argument
3329 return new (C) FileScopeAsmDecl(DC, Str, AsmLoc, RParenLoc); in Create()
/external/clang/include/clang/Sema/
DSema.h1476 SourceLocation AsmLoc,
2755 StmtResult ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,
2766 unsigned &Offset, SourceLocation AsmLoc);
2767 StmtResult ActOnMSAsmStmt(SourceLocation AsmLoc, SourceLocation LBraceLoc,
/external/clang/include/clang/Parse/
DParser.h1469 StmtResult ParseMicrosoftAsmStatement(SourceLocation AsmLoc);