Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp1238 SEHExceptStmt* SEHTryStmt::getExceptHandler() const { in getExceptHandler()
1239 return dyn_cast<SEHExceptStmt>(getHandler()); in getExceptHandler()
1246 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() function in SEHExceptStmt
1252 SEHExceptStmt* SEHExceptStmt::Create(const ASTContext &C, SourceLocation Loc, in Create()
1254 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
H A DStmtPrinter.cpp126 void PrintRawSEHExceptHandler(SEHExceptStmt *S);
592 SEHExceptStmt *E = Node->getExceptHandler(); in VisitSEHTryStmt()
609 void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) { in PrintRawSEHExceptHandler()
617 void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) { in VisitSEHExceptStmt()
H A DStmtProfile.cpp363 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h3300 class SEHExceptStmt : public Stmt {
3309 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
3310 explicit SEHExceptStmt(EmptyShell E) : Stmt(SEHExceptStmtClass, E) {} in SEHExceptStmt() function
3313 static SEHExceptStmt* Create(const ASTContext &C,
3415 SEHExceptStmt *getExceptHandler() const;
H A DRecursiveASTVisitor.h2677 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td210 def SEHExceptStmt : StmtNode<Stmt>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGException.cpp2055 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction()
2163 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt()
2204 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
H A DCodeGenFunction.h3234 const SEHExceptStmt &Except);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCFG.cpp600 CFGBlock *VisitSEHExceptStmt(SEHExceptStmt *S);
2306 return VisitSEHExceptStmt(cast<SEHExceptStmt>(S)); in Visit()
3123 CFGBlock *CFGBuilder::VisitSEHExceptStmt(SEHExceptStmt *ES) { in VisitSEHExceptStmt()
3199 if (SEHExceptStmt *Except = Terminator->getExceptHandler()) { in VisitSEHTryStmt()
5667 } else if (SEHExceptStmt *ES = dyn_cast<SEHExceptStmt>(Label)) { in print_block()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DJumpDiagnostics.cpp444 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
H A DSemaStmt.cpp4567 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h8376 StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(SEHExceptStmt *S) { in TransformSEHExceptStmt()
8394 return getDerived().TransformSEHExceptStmt(cast<SEHExceptStmt>(Handler)); in TransformSEHHandler()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp2233 void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
2236 S->Children[SEHExceptStmt::FILTER_EXPR] = Record.readSubStmt(); in VisitSEHExceptStmt()
2237 S->Children[SEHExceptStmt::BLOCK] = Record.readSubStmt(); in VisitSEHExceptStmt()
3133 S = new (Context) SEHExceptStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp2140 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()