Home
last modified time | relevance | path

Searched refs:SEHExceptStmt (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DStmt.cpp1250 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 DStmtPrinter.cpp127 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 DStmtProfile.cpp367 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DStmt.h3361 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 DRecursiveASTVisitor.h2823 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DStmtNodes.td211 def SEHExceptStmt : StmtNode<Stmt>;
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGException.cpp2062 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction()
2170 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt()
2211 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
H A DCodeGenFunction.h3292 const SEHExceptStmt &Except);
/llvm-project-15.0.7/clang/lib/Analysis/
H A DCFG.cpp603 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 DJumpDiagnostics.cpp450 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
H A DSemaStmt.cpp4590 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h8505 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 DASTReaderStmt.cpp2228 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 DASTWriterStmt.cpp2149 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()