Home
last modified time | relevance | path

Searched refs:FilterExpr (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1305 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() argument
1307 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt()
1312 Expr *FilterExpr, Stmt *Block) { in Create() argument
1313 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp2079 const Expr *FilterExpr = Except.getFilterExpr(); in GenerateSEHFilterFunction() local
2080 startOutlinedSEHHelper(ParentCGF, true, FilterExpr); in GenerateSEHFilterFunction()
2083 llvm::Value *R = EmitScalarExpr(FilterExpr); in GenerateSEHFilterFunction()
2085 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
2088 FinishFunction(FilterExpr->getEndLoc()); in GenerateSEHFilterFunction()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp609 ExprResult FilterExpr; in ParseSEHExceptBlock() local
613 FilterExpr = ParseExpression(); in ParseSEHExceptBlock()
622 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
636 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4469 StmtResult Sema::ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr, in ActOnSEHExceptBlock() argument
4471 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
4472 QualType FTy = FilterExpr->getType(); in ActOnSEHExceptBlock()
4475 Diag(FilterExpr->getExprLoc(), diag::err_filter_expression_integral) in ActOnSEHExceptBlock()
4478 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h2668 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument
2670 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt()
9440 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
9441 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt()
9448 return getDerived().RebuildSEHExceptStmt(S->getExceptLoc(), FilterExpr.get(), in TransformSEHExceptStmt()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3693 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
3699 Expr *FilterExpr,
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11122 StmtResult ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr,