| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/ |
| D | ComputeDependence.h | 57 class CXXThrowExpr; variable 141 ExprDependence computeDependence(CXXThrowExpr *E);
|
| D | ExprCXX.h | 1181 class CXXThrowExpr : public Expr { 1192 CXXThrowExpr(Expr *Operand, QualType Ty, SourceLocation Loc, in CXXThrowExpr() function 1199 CXXThrowExpr(EmptyShell Empty) : Expr(CXXThrowExprClass, Empty) {} in CXXThrowExpr() function
|
| D | Stmt.h | 669 friend class CXXThrowExpr; in alignas() local
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/AST/ |
| D | ExprClassification.cpp | 604 bool TrueIsThrow = isa<CXXThrowExpr>(True->IgnoreParenImpCasts()); in ClassifyConditional() 605 bool FalseIsThrow = isa<CXXThrowExpr>(False->IgnoreParenImpCasts()); in ClassifyConditional()
|
| D | ComputeDependence.cpp | 298 ExprDependence clang::computeDependence(CXXThrowExpr *E) { in computeDependence()
|
| D | StmtProfile.cpp | 1883 void StmtProfiler::VisitCXXThrowExpr(const CXXThrowExpr *S) { in VisitCXXThrowExpr()
|
| D | StmtPrinter.cpp | 1900 void StmtPrinter::VisitCXXThrowExpr(CXXThrowExpr *Node) { in VisitCXXThrowExpr()
|
| D | ItaniumMangle.cpp | 4630 const CXXThrowExpr *TE = cast<CXXThrowExpr>(E); in mangleExpression()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | AnalysisBasedWarnings.cpp | 283 static bool throwEscapes(Sema &S, const CXXThrowExpr *E, CFGBlock &ThrowBlock, in throwEscapes() 322 llvm::function_ref<void(const CXXThrowExpr *, CFGBlock &)> Visit) { in visitReachableThrows() argument 332 if (auto *Throw = dyn_cast<CXXThrowExpr>(S->getStmt())) in visitReachableThrows() 365 visitReachableThrows(BodyCFG, [&](const CXXThrowExpr *Throw, CFGBlock &Block) { in checkThrowInNonThrowingFunc() 486 if (isa<CXXThrowExpr>(S)) { in CheckFallThrough()
|
| D | SemaExprCXX.cpp | 909 CXXThrowExpr(Ex, Context.VoidTy, OpLoc, IsThrownVarInScope); in BuildCXXThrow() 6207 bool LThrow = isa<CXXThrowExpr>(LHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands() 6208 bool RThrow = isa<CXXThrowExpr>(RHS.get()->IgnoreParenImpCasts()); in CXXCheckConditionalOperands()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CGCXXABI.h | 236 virtual void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) = 0;
|
| D | CodeGenPGO.cpp | 449 void VisitCXXThrowExpr(const CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
| D | CodeGenFunction.cpp | 1786 if (const CXXThrowExpr *Throw = dyn_cast<CXXThrowExpr>(Cond)) { in EmitBranchOnBoolExpr()
|
| D | CoverageMappingGen.cpp | 1029 void VisitCXXThrowExpr(const CXXThrowExpr *E) { in VisitCXXThrowExpr()
|
| D | CGException.cpp | 441 void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E, in EmitCXXThrowExpr()
|
| D | CGExprAgg.cpp | 210 void VisitCXXThrowExpr(const CXXThrowExpr *E) { CGF.EmitCXXThrowExpr(E); } in VisitCXXThrowExpr()
|
| D | ItaniumCXXABI.cpp | 163 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 1324 void ItaniumCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
| D | MicrosoftCXXABI.cpp | 121 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 4349 void MicrosoftCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { in emitThrow()
|
| D | CGExpr.cpp | 4511 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(Operand->IgnoreParens())) { in EmitLValueOrThrowExpression() 4542 if (auto *ThrowExpr = dyn_cast<CXXThrowExpr>(live->IgnoreParens())) { in EmitConditionalOperatorLValue()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| D | StmtNodes.td | 132 def CXXThrowExpr : StmtNode<Expr>;
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/ASTMatchers/ |
| D | ASTMatchersInternal.cpp | 900 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr> cxxThrowExpr;
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/ |
| D | CFG.cpp | 565 CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T); 2227 return VisitCXXThrowExpr(cast<CXXThrowExpr>(S)); in Visit() 3873 CFGBlock *CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr *T) { in VisitCXXThrowExpr() 5887 if (isa<CXXThrowExpr>(StmtElm->getStmt())) in isImmediateSinkBlock()
|
| D | ThreadSafety.cpp | 2276 if (isa<CXXThrowExpr>(S->getStmt())) in neverReturns()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/ |
| D | ASTReaderStmt.cpp | 1833 void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) { in VisitCXXThrowExpr() 3679 S = new (Context) CXXThrowExpr(Empty); in ReadStmtFromStream()
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| D | ASTMatchers.h | 2319 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CXXThrowExpr>
|