Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1260 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() argument
1262 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt()
1267 Expr *FilterExpr, Stmt *Block) { in Create() argument
1268 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGException.cpp2076 const Expr *FilterExpr = Except.getFilterExpr(); in GenerateSEHFilterFunction() local
2077 startOutlinedSEHHelper(ParentCGF, true, FilterExpr); in GenerateSEHFilterFunction()
2080 llvm::Value *R = EmitScalarExpr(FilterExpr); in GenerateSEHFilterFunction()
2082 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
2085 FinishFunction(FilterExpr->getEndLoc()); in GenerateSEHFilterFunction()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp644 ExprResult FilterExpr; in ParseSEHExceptBlock() local
648 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
657 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
671 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4635 StmtResult Sema::ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr, in ActOnSEHExceptBlock() argument
4637 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
4638 QualType FTy = FilterExpr->getType(); in ActOnSEHExceptBlock()
4641 Diag(FilterExpr->getExprLoc(), diag::err_filter_expression_integral) in ActOnSEHExceptBlock()
4644 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h2609 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument
2611 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt()
8774 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
8775 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt()
8782 return getDerived().RebuildSEHExceptStmt(S->getExceptLoc(), FilterExpr.get(), in TransformSEHExceptStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h3593 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
3599 Expr *FilterExpr,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5391 Expr *FilterExpr,