| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 72 unsigned NumHandlers; variable 73 size_t numTrailingObjects(OverloadToken<Stmt *>) const { return NumHandlers; } in numTrailingObjects() 77 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } in CXXTryStmt() 93 return getStmts()[NumHandlers]->getEndLoc(); in getEndLoc() 103 unsigned getNumHandlers() const { return NumHandlers; } in getNumHandlers()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 61 unsigned NumHandlers : 32 - NumCommonBits; variable 185 CatchBits.NumHandlers = numHandlers; in EHCatchScope() 186 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?"); in EHCatchScope() 190 return CatchBits.NumHandlers; in getNumHandlers()
|
| H A D | CGException.cpp | 562 unsigned NumHandlers = S.getNumHandlers(); in EnterCXXTryStmt() local 563 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers); in EnterCXXTryStmt() 565 for (unsigned I = 0; I != NumHandlers; ++I) { in EnterCXXTryStmt() 912 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitCatchPadBlock() local 917 for (unsigned I = 0; I < NumHandlers; ++I) { in emitCatchPadBlock() 956 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitWasmCatchPadBlock() local 968 for (unsigned I = 0, E = NumHandlers; I < E; ++I) { in emitWasmCatchPadBlock() 999 for (unsigned I = 0, E = NumHandlers;; ++I) { in emitWasmCatchPadBlock() 1138 unsigned NumHandlers = S.getNumHandlers(); in ExitCXXTryStmt() local 1140 assert(CatchScope.getNumHandlers() == NumHandlers); in ExitCXXTryStmt() [all …]
|
| H A D | EHScopeStack.h | 323 class EHCatchScope *pushCatch(unsigned NumHandlers);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 42 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 3933 unsigned NumHandlers, const Twine &NameStr, 3941 unsigned NumHandlers, const Twine &NameStr, 3958 unsigned NumHandlers, 3961 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr, 3966 unsigned NumHandlers, const Twine &NameStr, 3968 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
|
| H A D | IRBuilder.h | 957 unsigned NumHandlers, 959 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers),
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4037 const unsigned NumHandlers = Handlers.size(); in ActOnCXXTryBlock() local 4042 for (unsigned i = 0; i < NumHandlers; ++i) { in ActOnCXXTryBlock() 4049 if (i < NumHandlers - 1) in ActOnCXXTryBlock()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 3992 unsigned NumHandlers = Record[Idx++]; in parseFunctionBody() local 3995 for (unsigned Op = 0; Op != NumHandlers; ++Op) { in parseFunctionBody() 4013 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers); in parseFunctionBody()
|
| /freebsd-12.1/contrib/llvm/include/llvm-c/ |
| H A D | Core.h | 3435 unsigned NumHandlers, const char *Name);
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Core.cpp | 3038 unsigned NumHandlers, const char *Name) { in LLVMBuildCatchSwitch() argument 3044 NumHandlers, Name)); in LLVMBuildCatchSwitch()
|
| /freebsd-12.1/contrib/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 2770 unsigned NumHandlers = CatchSwitch.getNumHandlers(); in writeInstruction() local 2771 Vals.push_back(NumHandlers); in writeInstruction()
|