Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp1121 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() argument
1123 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt()
1128 Expr *FilterExpr, Stmt *Block) { in Create() argument
1129 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGException.cpp1899 const Expr *FilterExpr = Except.getFilterExpr(); in GenerateSEHFilterFunction() local
1900 startOutlinedSEHHelper(ParentCGF, true, FilterExpr); in GenerateSEHFilterFunction()
1903 llvm::Value *R = EmitScalarExpr(FilterExpr); in GenerateSEHFilterFunction()
1905 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
1908 FinishFunction(FilterExpr->getEndLoc()); in GenerateSEHFilterFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParseStmt.cpp510 ExprResult FilterExpr; in ParseSEHExceptBlock() local
514 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
523 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
537 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaStmt.cpp4145 Expr *FilterExpr, in ActOnSEHExceptBlock() argument
4147 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
4149 if(!FilterExpr->getType()->isIntegerType()) { in ActOnSEHExceptBlock()
4150 return StmtError(Diag(FilterExpr->getExprLoc(), in ActOnSEHExceptBlock()
4152 << FilterExpr->getType()); in ActOnSEHExceptBlock()
4155 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h2085 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument
2087 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt()
7670 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
7671 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt()
7678 return getDerived().RebuildSEHExceptStmt(S->getExceptLoc(), FilterExpr.get(), in TransformSEHExceptStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h2959 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
2965 Expr *FilterExpr,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h3936 Expr *FilterExpr,