Searched refs:MSAsmStmt (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | Stmt.cpp | 333 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in generateAsmString() 341 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputConstraint() 349 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputExpr() 357 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputConstraint() 365 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputExpr() 373 if (const MSAsmStmt *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getClobber() 671 std::string MSAsmStmt::generateAsmString(const ASTContext &C) const { in generateAsmString() 676 Expr *MSAsmStmt::getOutputExpr(unsigned i) { in getOutputExpr() 680 Expr *MSAsmStmt::getInputExpr(unsigned i) { in getInputExpr() 683 void MSAsmStmt::setInputExpr(unsigned i, Expr *E) { in setInputExpr() [all …]
|
D | StmtProfile.cpp | 182 void StmtProfiler::VisitMSAsmStmt(const MSAsmStmt *S) { in VisitMSAsmStmt()
|
D | StmtPrinter.cpp | 441 void StmtPrinter::VisitMSAsmStmt(MSAsmStmt *Node) { in VisitMSAsmStmt()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1744 class MSAsmStmt : public AsmStmt { 1757 MSAsmStmt(const ASTContext &C, SourceLocation asmloc, 1765 explicit MSAsmStmt(EmptyShell Empty) : AsmStmt(MSAsmStmtClass, Empty), in MSAsmStmt() function 1794 return const_cast<MSAsmStmt*>(this)->getOutputExpr(i); in getOutputExpr() 1808 return const_cast<MSAsmStmt*>(this)->getInputExpr(i); in getInputExpr()
|
D | RecursiveASTVisitor.h | 1999 MSAsmStmt,
|
/external/clang/lib/Sema/ |
D | SemaStmtAsm.cpp | 733 MSAsmStmt *NS = in ActOnMSAsmStmt() 734 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
|
D | AnalysisBasedWarnings.cpp | 385 if (isa<MSAsmStmt>(S)) { in CheckFallThrough()
|
D | TreeTransform.h | 6584 TreeTransform<Derived>::TransformMSAsmStmt(MSAsmStmt *S) { in TransformMSAsmStmt()
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 35 def MSAsmStmt : DStmt<AsmStmt>;
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
D | ExprEngine.h | 344 void VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred,
|
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 1937 if (isa<MSAsmStmt>(&S)) { in EmitAsmStmt() 2054 llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ? in EmitAsmStmt() 2063 if (isa<MSAsmStmt>(&S)) { in EmitAsmStmt()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngine.cpp | 1028 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); in Visit() 2499 void ExprEngine::VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, in VisitMSAsmStmt()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 343 void ASTStmtReader::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt() 2930 S = new (Context) MSAsmStmt(Empty); in ReadStmtFromStream()
|
D | ASTWriterStmt.cpp | 270 void ASTStmtWriter::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt()
|