| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/ |
| D | try_catch_resolving.cpp | 152 void TryCatchResolving::ConnectThrowCatchImpl(BasicBlock *catchBlock, BasicBlock *throwBlock, uint3… in ConnectThrowCatchImpl() 259 void TryCatchResolving::RemoveCatchPhisImpl(CatchPhiInst *catchPhi, BasicBlock *catchBlock, Inst *t… in RemoveCatchPhisImpl() 295 void TryCatchResolving::RemoveCatchPhis(BasicBlock *cphisBlock, BasicBlock *catchBlock, Inst *throw… in RemoveCatchPhis()
|
| /arkcompiler/runtime_core/libabckit/src/wrappers/ |
| D | pandasm_wrapper.cpp | 74 auto catchBlock = pandasm::Function::CatchBlock(); in Update() local
|
| D | abcfile_wrapper.cpp | 158 tryBlockP->EnumerateCatchBlocks([&cb](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in EnumerateCatchBlocksForTryBlock()
|
| /arkcompiler/runtime_core/static_core/verification/absint/ |
| D | absint.cpp | 209 …ionStatus VerifyExcHandler([[maybe_unused]] TryBlock const *tryBlock, CatchBlock const *catchBlock, in VerifyExcHandler() 274 tryBlock.EnumerateCatchBlocks([&](CatchBlock const &catchBlock) { in VerifyMethod()
|
| /arkcompiler/runtime_core/static_core/verification/cflow/ |
| D | cflow_info.cpp | 81 … [[maybe_unused]] uint8_t const *tryEndPc, CatchBlock const &catchBlock) { in ProcessCatchBlocks()
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/cpp_api/dynamic/add_try_catch/ |
| D | add_try_catch.cpp | 88 abckit::BasicBlock catchBlock = graph.CreateEmptyBb(); in TEST_F() local
|
| /arkcompiler/runtime_core/libabckit/tests/scenarios/add_try_catch/dynamic/ |
| D | add_try_catch_test.cpp | 56 AbckitBasicBlock *catchBlock = g_implG->bbCreateEmpty(graph); in TransformIr() local
|
| /arkcompiler/runtime_core/static_core/abc2program/ |
| D | abc_code_processor.cpp | 151 const panda_file::CodeDataAccessor::CatchBlock &catchBlock; member 284 tryBlock.EnumerateCatchBlocks([&](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in GetExceptions()
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | assemblyFunctionProto.cpp | 156 auto *catchBlock = allocator->New<panda::pandasm::Function::CatchBlock>(); in Deserialize() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | method.cpp | 95 … tryBlock.EnumerateCatchBlocks([&](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in FindCatchBlock()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | irBuilder_tests.cpp | 149 auto &catchBlock = func.catch_blocks.emplace_back(); variable
|
| /arkcompiler/runtime_core/static_core/libpandafile/ |
| D | file_items.cpp | 801 for (auto &catchBlock : catchBlocks_) { in ComputeLayout() local 818 for (auto &catchBlock : catchBlocks_) { in CalculateSize() local 841 for (auto &catchBlock : catchBlocks_) { in Write() local
|
| D | file_reader.cpp | 594 BaseClassItem *FileReader::GetCatchTypeItem(CodeDataAccessor::CatchBlock &catchBlock, File::EntityI… in GetCatchTypeItem() 624 [this, &methodItem, &methodId, &catchBlocks](CodeDataAccessor::CatchBlock &catchBlock) { in SetMethodCodeIfPresent()
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
| D | ir_builder.cpp | 450 …tryBlock.EnumerateCatchBlocks([this, tryInfo](panda_file::CodeDataAccessor::CatchBlock &catchBlock… in CreateTryCatchBoundariesBlocks() 774 …[&pcOffset, &cls, &rta, &method, &stdCoreObject](panda_file::CodeDataAccessor::CatchBlock &catchBl… in FindCatchBlockInPandaFile()
|
| /arkcompiler/runtime_core/libabckit/tests/clean_scenarios/c_api/dynamic/add_try_catch/ |
| D | add_try_catch_test.cpp | 147 AbckitBasicBlock *catchBlock = g_implG->bbCreateEmpty(graph); in TransformIr() local
|
| /arkcompiler/runtime_core/libabckit/src/irbuilder_dynamic/ |
| D | ir_builder_dyn.cpp | 214 pfw->EnumerateCatchBlocksForTryBlock(tryBlock, [pfw, this, tryInfo](void *catchBlock) { in CreateTryCatchBoundariesBlocks()
|
| /arkcompiler/runtime_core/static_core/disassembler/ |
| D | disassembler.cpp | 219 for (const auto &catchBlock : method.catchBlocks) { in SerializeCheckEnd() local 721 tryBlock.EnumerateCatchBlocks([&](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in GetExceptions() 816 const panda_file::CodeDataAccessor::CatchBlock &catchBlock, in LocateCatchBlock() 1678 void Disassembler::Serialize(const pandasm::Function::CatchBlock &catchBlock, std::ostream &os) con… in Serialize() argument
|
| /arkcompiler/ets_frontend/ets2panda/compiler/core/ |
| D | emitter.cpp | 271 for (const auto *catchBlock : cg_->CatchList()) { in GenFunctionCatchTables() local
|
| /arkcompiler/runtime_core/static_core/assembler/ |
| D | assembly-parser.cpp | 924 Function::CatchBlock catchBlock; in PrepareCatchBlock() local 1003 Function::CatchBlock catchBlock = in ParseAsCatchDirective() local
|
| D | assembly-emitter.cpp | 872 for (const auto &catchBlock : func.catchBlocks) { in AddBytecodeIndexDependencies() local 2152 for (auto &catchBlock : catchBlocks) { in MakeOrderAndOffsets() local 2209 for (auto *catchBlock : tryCatchBlocks) { in BuildTryBlocks() local
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | method.cpp | 403 auto cb = [this, &pcOffset, &cls](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in FindCatchBlockInPandaFile()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | bytecode_circuit_builder.cpp | 135 tryBlock.EnumerateCatchBlocks([&](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in CollectTryCatchBlockInfo() 685 for (auto &catchBlock: bb.catches) { in UpdateCFG() local
|
| /arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
| D | emitter.cpp | 483 for (const auto *catchBlock : pg_->CatchList()) { in GenFunctionCatchTables() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/ir/ |
| D | graph_cloner.cpp | 162 for (auto *catchBlock : GetGraph()->GetThrowableInstHandlers(inst)) { in CloneThrowableInstHandlers() local
|
| /arkcompiler/runtime_core/static_core/assembler/tests/ |
| D | emitter_test.cpp | 340 … tryBlock.EnumerateCatchBlocks([&](panda_file::CodeDataAccessor::CatchBlock &catchBlock) { in TEST()
|