Searched refs:CXXThrowExpr (Results 1 – 25 of 27) sorted by relevance
12
| /NextBSD/contrib/llvm/tools/clang/lib/AST/ |
| HD | ExprClassification.cpp | 555 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts()); in ClassifyConditional() 556 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts()); in ClassifyConditional()
|
| HD | StmtProfile.cpp | 1100 void StmtProfiler::VisitCXXThrowExpr(const CXXThrowExpr *S) { in VisitCXXThrowExpr()
|
| HD | ItaniumMangle.cpp | 3060 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E); in mangleExpression()
|
| HD | StmtPrinter.cpp | 1728 void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) { in VisitCXXThrowExpr()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | StmtNodes.td | 111 def CXXThrowExpr : DStmt<Expr>;
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGCXXABI.h | 218 virtual void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) = 0;
|
| HD | CodeGenFunction.cpp | 1200 if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) { in EmitBranchOnBoolExpr()
|
| HD | CodeGenPGO.cpp | 324 void VisitCXXThrowExpr(const CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
| HD | CoverageMappingGen.cpp | 603 void VisitCXXThrowExpr(const CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
| HD | CGExprAgg.cpp | 200 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } in VisitCXXThrowExpr()
|
| HD | CGException.cpp | 416 void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E, in EmitCXXThrowExpr()
|
| HD | ItaniumCXXABI.cpp | 118 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 947 void ItaniumCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
| HD | MicrosoftCXXABI.cpp | 79 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 4100 void MicrosoftCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
| HD | CodeGenFunction.h | 2814 void EmitCXXThrowExpr(const CXXThrowExpr *E, bool KeepInsertionPoint = true);
|
| HD | CGExpr.cpp | 2858 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(Operand->IgnoreParens())) { in EmitLValueOrThrowExpression()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/AST/ |
| HD | ExprCXX.h | 808 class CXXThrowExpr : public Expr { 820 CXXThrowExpr(Expr *expr, QualType Ty, SourceLocation l, in CXXThrowExpr() function 826 CXXThrowExpr(EmptyShell Empty) : Expr(CXXThrowExprClass, Empty) {} in CXXThrowExpr() function
|
| HD | DataRecursiveASTVisitor.h | 2230 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
|
| HD | RecursiveASTVisitor.h | 2262 DEF_TRAVERSE_STMT(CXXThrowExpr, {})
|
| /NextBSD/contrib/llvm/tools/clang/lib/Analysis/ |
| HD | CFG.cpp | 378 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); 1472 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); in Visit() 2814 CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { in VisitCXXThrowExpr()
|
| HD | ThreadSafety.cpp | 2071 if (isa<CXXThrowExpr>(S->getStmt())) in neverReturns()
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| HD | ASTMatchers.h | 1349 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr> throwExpr;
|
| /NextBSD/contrib/llvm/tools/clang/lib/Sema/ |
| HD | SemaExprCXX.cpp | 683 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope); in BuildCXXThrow() 4797 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands() 4798 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands()
|
| HD | AnalysisBasedWarnings.cpp | 368 if (isa<CXXThrowExpr>(S)) { in CheckFallThrough()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Serialization/ |
| HD | ASTReaderStmt.cpp | 1323 void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) { in VisitCXXThrowExpr() 2954 S = new (Context) CXXThrowExpr(Empty); in ReadStmtFromStream()
|
| HD | ASTWriterStmt.cpp | 1295 void ASTStmtWriter::VisitCXXThrowExpr(CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
12