Searched refs:MSAsmStmt (Results 1 – 15 of 15) sorted by relevance
/external/clang/lib/AST/ |
D | Stmt.cpp | 331 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in generateAsmString() 339 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputConstraint() 347 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputExpr() 355 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputConstraint() 363 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputExpr() 371 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getClobber() 662 std::string MSAsmStmt::generateAsmString(const ASTContext &C) const { in generateAsmString() 667 Expr *MSAsmStmt::getOutputExpr(unsigned i) { in getOutputExpr() 671 Expr *MSAsmStmt::getInputExpr(unsigned i) { in getInputExpr() 674 void MSAsmStmt::setInputExpr(unsigned i, Expr *E) { in setInputExpr() [all …]
|
D | StmtProfile.cpp | 180 void StmtProfiler::VisitMSAsmStmt(const MSAsmStmt *S) { in VisitMSAsmStmt()
|
D | StmtPrinter.cpp | 437 void StmtPrinter::VisitMSAsmStmt(MSAsmStmt *Node) { in VisitMSAsmStmt()
|
/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 615 MSAsmStmt *NS = in ActOnMSAsmStmt() 616 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
|
D | AnalysisBasedWarnings.cpp | 373 if (isa<MSAsmStmt>(S)) { in CheckFallThrough()
|
D | TreeTransform.h | 6148 TreeTransform<Derived>::TransformMSAsmStmt(MSAsmStmt *S) { in TransformMSAsmStmt()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1724 class MSAsmStmt : public AsmStmt { 1737 MSAsmStmt(const ASTContext &C, SourceLocation asmloc, 1745 explicit MSAsmStmt(EmptyShell Empty) : AsmStmt(MSAsmStmtClass, Empty), in MSAsmStmt() function 1774 return const_cast<MSAsmStmt*>(this)->getOutputExpr(i); in getOutputExpr() 1788 return const_cast<MSAsmStmt*>(this)->getInputExpr(i); in getInputExpr()
|
D | DataRecursiveASTVisitor.h | 1888 MSAsmStmt,
|
D | RecursiveASTVisitor.h | 1905 MSAsmStmt,
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 35 def MSAsmStmt : DStmt<AsmStmt>;
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExprEngine.h | 337 void VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred,
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 1940 if (isa<MSAsmStmt>(&S)) { in EmitAsmStmt() 2052 llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ? in EmitAsmStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 999 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); in Visit() 2385 void ExprEngine::VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, in VisitMSAsmStmt()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 339 void ASTStmtReader::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt() 2384 S = new (Context) MSAsmStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 258 void ASTStmtWriter::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt()
|