| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 75 unsigned NumHandlers; variable 76 size_t numTrailingObjects(OverloadToken<Stmt *>) const { return NumHandlers; } in numTrailingObjects() 81 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } in CXXTryStmt() 97 return getStmts()[NumHandlers]->getEndLoc(); in getEndLoc() 107 unsigned getNumHandlers() const { return NumHandlers; } in getNumHandlers()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 59 unsigned NumHandlers : 32 - NumCommonBits; variable 183 CatchBits.NumHandlers = numHandlers; in EHCatchScope() 184 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?"); in EHCatchScope() 188 return CatchBits.NumHandlers; in getNumHandlers()
|
| H A D | CGException.cpp | 636 unsigned NumHandlers = S.getNumHandlers(); in EnterCXXTryStmt() local 637 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers); in EnterCXXTryStmt() 639 for (unsigned I = 0; I != NumHandlers; ++I) { in EnterCXXTryStmt() 979 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitCatchPadBlock() local 984 for (unsigned I = 0; I < NumHandlers; ++I) { in emitCatchPadBlock() 1023 unsigned NumHandlers = CatchScope.getNumHandlers(); in emitWasmCatchPadBlock() local 1035 for (unsigned I = 0, E = NumHandlers; I < E; ++I) { in emitWasmCatchPadBlock() 1066 for (unsigned I = 0, E = NumHandlers;; ++I) { in emitWasmCatchPadBlock() 1211 unsigned NumHandlers = S.getNumHandlers(); in ExitCXXTryStmt() local 1213 assert(CatchScope.getNumHandlers() == NumHandlers); in ExitCXXTryStmt() [all …]
|
| H A D | EHScopeStack.h | 337 class EHCatchScope *pushCatch(unsigned NumHandlers);
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 42 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Instructions.h | 4344 unsigned NumHandlers, const Twine &NameStr, 4352 unsigned NumHandlers, const Twine &NameStr, 4371 unsigned NumHandlers, 4374 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr, 4379 unsigned NumHandlers, const Twine &NameStr, 4381 return new CatchSwitchInst(ParentPad, UnwindDest, NumHandlers, NameStr,
|
| H A D | IRBuilder.h | 1236 unsigned NumHandlers, 1238 return Insert(CatchSwitchInst::Create(ParentPad, UnwindBB, NumHandlers),
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4518 const unsigned NumHandlers = Handlers.size(); in ActOnCXXTryBlock() local 4524 for (unsigned i = 0; i < NumHandlers; ++i) { in ActOnCXXTryBlock() 4531 if (i < NumHandlers - 1) in ActOnCXXTryBlock()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | Core.h | 3950 unsigned NumHandlers, const char *Name);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 3233 unsigned NumHandlers, const char *Name) { in LLVMBuildCatchSwitch() argument 3239 NumHandlers, Name)); in LLVMBuildCatchSwitch()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
| H A D | BitcodeReader.cpp | 5379 unsigned NumHandlers = Record[Idx++]; in parseFunctionBody() local 5382 for (unsigned Op = 0; Op != NumHandlers; ++Op) { in parseFunctionBody() 5400 CatchSwitchInst::Create(ParentPad, UnwindDest, NumHandlers); in parseFunctionBody()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
| H A D | BitcodeWriter.cpp | 3093 unsigned NumHandlers = CatchSwitch.getNumHandlers(); in writeInstruction() local 3094 Vals.push_back(NumHandlers); in writeInstruction()
|