| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 203 unsigned getNumHandlers() const { 212 assert(I < getNumHandlers()); 218 assert(I < getNumHandlers()); 224 assert(I < getNumHandlers()); 233 for (unsigned I = 0, N = getNumHandlers(); I != N; ++I) 239 iterator end() const { return getHandlers() + getNumHandlers(); } 584 static_cast<const EHCatchScope *>(get())->getNumHandlers()); 636 deallocate(EHCatchScope::getSizeForNumHandlers(scope.getNumHandlers()));
|
| H A D | CGException.cpp | 636 unsigned NumHandlers = S.getNumHandlers(); in EnterCXXTryStmt() 691 if (catchScope.getNumHandlers() == 1 && in getEHDispatchBlock() 903 for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) { in EmitLandingPad() 979 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitCatchPadBlock() 1023 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitWasmCatchPadBlock() 1059 if (CatchScope.getNumHandlers() == 1 && in emitWasmCatchPadBlock() 1130 if (catchScope.getNumHandlers() == 1 && in emitCatchDispatchBlock() 1149 for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) { in emitCatchDispatchBlock() 1211 unsigned NumHandlers = S.getNumHandlers(); in ExitCXXTryStmt() 1213 assert(CatchScope.getNumHandlers() == NumHandlers); in ExitCXXTryStmt()
|
| H A D | CodeGenPGO.cpp | 904 for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I) in VisitCXXTryStmt()
|
| H A D | CoverageMappingGen.cpp | 2126 for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I) in VisitCXXTryStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 107 unsigned getNumHandlers() const { return NumHandlers; } in getNumHandlers() function 120 return child_range(getStmts(), getStmts() + getNumHandlers() + 1); in children() 124 return const_child_range(getStmts(), getStmts() + getNumHandlers() + 1); in children()
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Tracker.cpp | 225 : CSI(CSI), HandlerIdx(CSI->getNumHandlers()) {} in CatchSwitchAddHandler()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | WinEHPrepare.cpp | 512 assert(CatchSwitch->getNumHandlers() == 1 && in calculateSEHStateNumbers() 748 assert(CatchSwitch->getNumHandlers()); in calculateClrEHStateNumbers()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 415 for (unsigned I = 0, E = TS->getNumHandlers(); I != E; ++I) { in BuildScopeInformation()
|
| H A D | SemaExceptionSpec.cpp | 1588 const CXXCatchStmt *FinalHandler = TS->getHandler(TS->getNumHandlers() - 1); in canThrow()
|
| H A D | TreeTransform.h | 9172 for (unsigned I = 0, N = S->getNumHandlers(); I != N; ++I) { in TransformCXXTryStmt()
|
| H A D | SemaDeclCXX.cpp | 18614 for (unsigned I = 0, E = TryBlock->getNumHandlers(); I != E; ++I) { in DiagnoseReturnInConstructorExceptionHandler()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Instruction.h | 1779 unsigned getNumHandlers() const { in getNumHandlers() function 1780 return cast<llvm::CatchSwitchInst>(Val)->getNumHandlers(); in getNumHandlers()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 1667 Record.push_back(S->getNumHandlers()); in VisitCXXTryStmt() 1670 for (unsigned i = 0, e = S->getNumHandlers(); i != e; ++i) in VisitCXXTryStmt()
|
| H A D | ASTReaderStmt.cpp | 1700 assert(Record.peekInt() == S->getNumHandlers() && "NumStmtFields is wrong ?"); in VisitCXXTryStmt() 1704 for (unsigned i = 0, e = S->getNumHandlers(); i != e; ++i) in VisitCXXTryStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 676 for (unsigned i = 0, e = Node->getNumHandlers(); i < e; ++i) { in VisitCXXTryStmt()
|
| H A D | ASTImporter.cpp | 7454 SmallVector<Stmt *, 1> ToHandlers(S->getNumHandlers()); in VisitCXXTryStmt() 7455 for (unsigned HI = 0, HE = S->getNumHandlers(); HI != HE; ++HI) { in VisitCXXTryStmt()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | InlineFunction.cpp | 761 CatchSwitch->getNumHandlers(), CatchSwitch->getName(), in HandleInlinedEHPad()
|
| H A D | Local.cpp | 3225 CatchSwitch->getParentPad(), nullptr, CatchSwitch->getNumHandlers(), in removeUnwindEdge()
|
| H A D | SimplifyCFG.cpp | 5578 if (CSI->getNumHandlers() == 0) { in simplifyUnreachable()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 4170 unsigned getNumHandlers() const {
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 4700 for (unsigned I = 0, E = Terminator->getNumHandlers(); I != E; ++I) { in VisitCXXTryStmt()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 3560 return unwrap<CatchSwitchInst>(CatchSwitch)->getNumHandlers(); in LLVMGetNumHandlers()
|
| H A D | Verifier.cpp | 4919 Check(CatchSwitch.getNumHandlers() != 0, in visitCatchSwitchInst()
|
| /freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 3345 unsigned NumHandlers = CatchSwitch.getNumHandlers(); in writeInstruction()
|