Searched refs:catch_end_label (Results 1 - 13 of 13) sorted by relevance
/arkcompiler/runtime_core/abc2program/ |
H A D | dump_utils.cpp | 130 res.catch_end_label = catch_block.catch_end_label; in DeepCopyCatchBlock()
|
H A D | program_dump.cpp | 531 catch_block.catch_end_label = GetUpdatedCatchBlockLabel(catch_block.catch_end_label); in UpdateCatchBlock() 562 << catch_block.catch_end_label << DUMP_CONTENT_SINGLE_ENDL; in DumpCatchBlock()
|
H A D | abc_code_processor.cpp | 190 pa_catch_block.catch_end_label = GetLabelNameAtPc(curr_catch_end_pc_); in FillCatchBlockLabels()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | assemblyFunctionProto.cpp | 27 protoBlock.set_catchendlabel(block.catch_end_label); in Serialize() 37 block.catch_end_label = protoBlock.catchendlabel(); in Deserialize()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | irBuilder_tests.cpp | 153 catchBlock.catch_end_label = "catch_end"; in HWTEST_F() 280 catchBlock1.catch_end_label = "LABEL_6"; in HWTEST_F() 286 catchBlock2.catch_end_label = "LABEL_3"; in HWTEST_F() 292 catchBlock3.catch_end_label = "LABEL_6"; in HWTEST_F()
|
/arkcompiler/runtime_core/assembler/ |
H A D | assembly-function.h | 47 std::string catch_end_label; member
|
H A D | assembly-parser.cpp | 857 catch_block.catch_end_label = labels[CATCH_END]; in PrepareCatchBlock() 859 catch_block.catch_end_label = labels[CATCH_BEGIN]; in PrepareCatchBlock() 878 "<catch_begin_label>[, <catch_end_label>]", in ParseAsCatchDirective() 886 "<try_end_label>, <catch_begin_label>[, <catch_end_label>]", in ParseAsCatchDirective()
|
H A D | assembly-emitter.cpp | 1798 try_catch_labels.insert_or_assign(catch_block.catch_end_label, 0); in MakeOrderAndOffsets() 1862 auto handler_code_size = tcs.try_catch_labels[catch_block->catch_end_label] - handler_pc_offset; in BuildTryBlocks()
|
/arkcompiler/runtime_core/abc2program/tests/cpp_sources/ |
H A D | hello_world_test.cpp | 580 EXPECT_TRUE(pa_catch_block0.catch_end_label == "label@12"); in HWTEST_F() 586 EXPECT_TRUE(pa_catch_block1.catch_end_label == "label@38"); in HWTEST_F() 592 EXPECT_TRUE(pa_catch_block2.catch_end_label == "label@52"); in HWTEST_F()
|
/arkcompiler/runtime_core/disassembler/ |
H A D | disassembler.cpp | 811 catch_block_pa.catch_end_label = ""; in GetExceptions() 939 catch_block_pa->catch_end_label = ss.str(); in LocateCatchBlock() 942 catch_block_pa->catch_end_label = it->second; in LocateCatchBlock() 2000 if (catch_block.catch_end_label != "") { in Serialize() 2001 os << ", " << catch_block.catch_end_label; in Serialize()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | codegen.cpp | 49 cb.catch_end_label = in AppendCatchBlock()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
H A D | emitter.cpp | 485 pandaCatchBlock.catch_end_label = labelSet.CatchEnd()->Id(); in GenFunctionCatchTables()
|
/arkcompiler/runtime_core/assembler/tests/ |
H A D | parser_test.cpp | 2390 "<try_begin_label>, <try_end_label>, <catch_begin_label>[, <catch_end_label>]"); in TEST() 2538 ASSERT_EQ(function.catch_blocks[0].catch_end_label, "catch_begin"); in TEST() 2573 ASSERT_EQ(function.catch_blocks[0].catch_end_label, "catch_end"); in TEST() 2617 "<try_end_label>, <catch_begin_label>[, <catch_end_label>]"); in TEST()
|
Completed in 25 milliseconds