Searched refs:MSAsmStmt (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Stmt.cpp | 445 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in generateAsmString() 453 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputConstraint() 461 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getOutputExpr() 469 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputConstraint() 477 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getInputExpr() 485 if (const auto *msAsmStmt = dyn_cast<MSAsmStmt>(this)) in getClobber() 806 std::string MSAsmStmt::generateAsmString(const ASTContext &C) const { in generateAsmString() 832 Expr *MSAsmStmt::getOutputExpr(unsigned i) { in getOutputExpr() 836 Expr *MSAsmStmt::getInputExpr(unsigned i) { in getInputExpr() 840 void MSAsmStmt::setInputExpr(unsigned i, Expr *E) { in setInputExpr() [all …]
|
H A D | StmtProfile.cpp | 350 void StmtProfiler::VisitMSAsmStmt(const MSAsmStmt *S) { in VisitMSAsmStmt()
|
H A D | StmtPrinter.cpp | 572 void StmtPrinter::VisitMSAsmStmt(MSAsmStmt *Node) { in VisitMSAsmStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | ExprEngine.h | 62 class MSAsmStmt; variable 454 void VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAsm.cpp | 962 MSAsmStmt *NS = in ActOnMSAsmStmt() 963 new (Context) MSAsmStmt(Context, AsmLoc, LBraceLoc, IsSimple, in ActOnMSAsmStmt()
|
H A D | AnalysisBasedWarnings.cpp | 517 if (isa<MSAsmStmt>(S)) { in CheckFallThrough()
|
H A D | TreeTransform.h | 8360 TreeTransform<Derived>::TransformMSAsmStmt(MSAsmStmt *S) { in TransformMSAsmStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Stmt.h | 3487 class MSAsmStmt : public AsmStmt { 3500 MSAsmStmt(const ASTContext &C, SourceLocation asmloc, 3508 explicit MSAsmStmt(EmptyShell Empty) : AsmStmt(MSAsmStmtClass, Empty) {} 3536 return const_cast<MSAsmStmt*>(this)->getOutputExpr(i); 3550 return const_cast<MSAsmStmt*>(this)->getInputExpr(i);
|
H A D | RecursiveASTVisitor.h | 2401 MSAsmStmt,
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | StmtNodes.td | 37 def MSAsmStmt : StmtNode<AsmStmt>;
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGStmt.cpp | 2845 if (isa<MSAsmStmt>(&S)) { in EmitAsmStmt() 2974 if (isa<MSAsmStmt>(&S)) { in EmitAsmStmt() 3027 llvm::InlineAsm::AsmDialect AsmDialect = isa<MSAsmStmt>(&S) ? in EmitAsmStmt()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngine.cpp | 2077 VisitMSAsmStmt(cast<MSAsmStmt>(S), Pred, Dst); in Visit() 3809 void ExprEngine::VisitMSAsmStmt(const MSAsmStmt *A, ExplodedNode *Pred, in VisitMSAsmStmt()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 418 void ASTStmtReader::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt() 3022 S = new (Context) MSAsmStmt(Empty); in ReadStmtFromStream()
|
H A D | ASTWriterStmt.cpp | 392 void ASTStmtWriter::VisitMSAsmStmt(MSAsmStmt *S) { in VisitMSAsmStmt()
|