Searched refs:SEHExceptStmt (Results 1 – 14 of 14) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Stmt.cpp | 1238 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 D | StmtPrinter.cpp | 126 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 D | StmtProfile.cpp | 363 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | Stmt.h | 3300 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 D | RecursiveASTVisitor.h | 2677 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 210 def SEHExceptStmt : StmtNode<Stmt>;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGException.cpp | 2055 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction() 2163 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt() 2204 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
|
| H A D | CodeGenFunction.h | 3234 const SEHExceptStmt &Except);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | CFG.cpp | 600 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 D | JumpDiagnostics.cpp | 444 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
|
| H A D | SemaStmt.cpp | 4567 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
|
| H A D | TreeTransform.h | 8376 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 D | ASTReaderStmt.cpp | 2233 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 D | ASTWriterStmt.cpp | 2140 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
|