Searched refs:SEHExceptStmt (Results 1 – 14 of 14) sorted by relevance
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | Stmt.cpp | 1250 SEHExceptStmt* SEHTryStmt::getExceptHandler() const { in getExceptHandler() 1251 return dyn_cast<SEHExceptStmt>(getHandler()); in getExceptHandler() 1258 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() function in SEHExceptStmt 1264 SEHExceptStmt* SEHExceptStmt::Create(const ASTContext &C, SourceLocation Loc, in Create() 1266 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
|
| H A D | StmtPrinter.cpp | 127 void PrintRawSEHExceptHandler(SEHExceptStmt *S); 668 SEHExceptStmt *E = Node->getExceptHandler(); in VisitSEHTryStmt() 685 void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) { in PrintRawSEHExceptHandler() 693 void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) { in VisitSEHExceptStmt()
|
| H A D | StmtProfile.cpp | 367 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | Stmt.h | 3361 class SEHExceptStmt : public Stmt { 3370 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block); 3371 explicit SEHExceptStmt(EmptyShell E) : Stmt(SEHExceptStmtClass, E) {} in SEHExceptStmt() function 3374 static SEHExceptStmt* Create(const ASTContext &C, 3476 SEHExceptStmt *getExceptHandler() const;
|
| H A D | RecursiveASTVisitor.h | 2823 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 211 def SEHExceptStmt : StmtNode<Stmt>;
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGException.cpp | 2062 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction() 2170 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt() 2211 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
|
| H A D | CodeGenFunction.h | 3292 const SEHExceptStmt &Except);
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | CFG.cpp | 603 CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S); 2316 return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); in Visit() 3212 CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { in VisitSEHExceptStmt() 3288 if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { in VisitSEHTryStmt() 5893 } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { in print_block()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 450 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
|
| H A D | SemaStmt.cpp | 4590 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
|
| H A D | TreeTransform.h | 8505 StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(SEHExceptStmt *S) { in TransformSEHExceptStmt() 8523 return getDerived().TransformSEHExceptStmt(cast<SEHExceptStmt>(Handler)); in TransformSEHHandler()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 2228 void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt() 2231 S->Children[SEHExceptStmt::FILTER_EXPR] = Record.readSubStmt(); in VisitSEHExceptStmt() 2232 S->Children[SEHExceptStmt::BLOCK] = Record.readSubStmt(); in VisitSEHExceptStmt() 3205 S = new (Context) SEHExceptStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 2149 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
|