Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmt.cpp1259 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block) in SEHExceptStmt() argument
1261 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt()
1266 Expr *FilterExpr, Stmt *Block) { in Create() argument
1267 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGException.cpp2060 const Expr *FilterExpr = Except.getFilterExpr(); in GenerateSEHFilterFunction() local
2061 startOutlinedSEHHelper(ParentCGF, true, FilterExpr); in GenerateSEHFilterFunction()
2064 llvm::Value *R = EmitScalarExpr(FilterExpr); in GenerateSEHFilterFunction()
2066 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
2069 FinishFunction(FilterExpr->getEndLoc()); in GenerateSEHFilterFunction()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp616 ExprResult FilterExpr; in ParseSEHExceptBlock() local
620 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
629 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
643 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaStmt.cpp4573 StmtResult Sema::ActOnSEHExceptBlock(SourceLocation Loc, Expr *FilterExpr, in ActOnSEHExceptBlock() argument
4575 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
4576 QualType FTy = FilterExpr->getType(); in ActOnSEHExceptBlock()
4579 Diag(FilterExpr->getExprLoc(), diag::err_filter_expression_integral) in ActOnSEHExceptBlock()
4582 return SEHExceptStmt::Create(Context, Loc, FilterExpr, Block); in ActOnSEHExceptBlock()
H A DTreeTransform.h2551 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument
2553 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt()
8616 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
8617 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt()
8624 return getDerived().RebuildSEHExceptStmt(S->getExceptLoc(), FilterExpr.get(), in TransformSEHExceptStmt()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmt.h3382 SEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, Stmt *Block);
3388 Expr *FilterExpr,
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5265 Expr *FilterExpr,