Searched refs:try_end_label (Results 1 - 15 of 15) sorted by relevance
/arkcompiler/runtime_core/abc2program/ |
H A D | dump_utils.cpp | 128 res.try_end_label = catch_block.try_end_label; in DeepCopyCatchBlock()
|
H A D | program_dump.cpp | 529 catch_block.try_end_label = GetUpdatedCatchBlockLabel(catch_block.try_end_label); in UpdateCatchBlock() 557 << catch_block.try_end_label << DUMP_CONTENT_SINGLE_ENDL; in DumpCatchBlock()
|
H A D | abc_code_processor.cpp | 188 pa_catch_block.try_end_label = GetLabelNameAtPc(curr_try_end_inst_pc_); in FillCatchBlockLabels()
|
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | assemblyFunctionProto.cpp | 25 protoBlock.set_tryendlabel(block.try_end_label); in Serialize() 35 block.try_end_label = protoBlock.tryendlabel(); in Deserialize()
|
/arkcompiler/runtime_core/bytecode_optimizer/tests/ |
H A D | optimize_bytecode_test.cpp | 214 cat.try_end_label = "random"; // random: It's a random string in HWTEST_F()
|
/arkcompiler/runtime_core/compiler/tests/ |
H A D | irBuilder_tests.cpp | 151 catchBlock.try_end_label = "try_end"; in HWTEST_F() 278 catchBlock1.try_end_label = "LABEL_1"; in HWTEST_F() 284 catchBlock2.try_end_label = "LABEL_2"; in HWTEST_F() 290 catchBlock3.try_end_label = "LABEL_5"; in HWTEST_F()
|
/arkcompiler/runtime_core/assembler/ |
H A D | assembly-function.h | 45 std::string try_end_label; member
|
H A D | assembly-emitter.cpp | 1796 try_catch_labels.insert_or_assign(catch_block.try_end_label, 0); in MakeOrderAndOffsets() 1800 std::string try_key = catch_block.try_begin_label + ":" + catch_block.try_end_label; in MakeOrderAndOffsets() 1867 auto try_end_pc_offset = tcs.try_catch_labels[try_catch_blocks[0]->try_end_label]; in BuildTryBlocks()
|
H A D | assembly-parser.cpp | 854 catch_block.try_end_label = labels[TRY_END]; in PrepareCatchBlock() 877 "Incorrect catch block declaration. Must be in the format: .catchall <try_begin_label>, <try_end_label>, " in ParseAsCatchDirective() 886 "<try_end_label>, <catch_begin_label>[, <catch_end_label>]", in ParseAsCatchDirective()
|
/arkcompiler/runtime_core/abc2program/tests/cpp_sources/ |
H A D | hello_world_test.cpp | 578 EXPECT_TRUE(pa_catch_block0.try_end_label == "label@11"); in HWTEST_F() 584 EXPECT_TRUE(pa_catch_block1.try_end_label == "label@38"); in HWTEST_F() 590 EXPECT_TRUE(pa_catch_block2.try_end_label == "label@47"); in HWTEST_F()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | codegen.cpp | 47 cb.try_end_label = "end_" + BytecodeGen::LabelName(try_end->GetId()); in AppendCatchBlock()
|
/arkcompiler/runtime_core/disassembler/ |
H A D | disassembler.cpp | 882 catch_block_pa->try_end_label = ss.str(); in LocateTryBlock() 885 catch_block_pa->try_end_label = it->second; in LocateTryBlock() 1998 os << catch_block.try_begin_label << ", " << catch_block.try_end_label << ", " << catch_block.catch_begin_label; in Serialize()
|
/arkcompiler/ets_frontend/es2panda/util/ |
H A D | patchFix.cpp | 207 ss << ".catchall " << ct.try_begin_label << ", " << ct.try_end_label << ", " << ct.catch_begin_label in GenerateFunctionAndClassHash()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
H A D | emitter.cpp | 483 pandaCatchBlock.try_end_label = labelSet.TryEnd()->Id(); in GenFunctionCatchTables() 1184 ss << ".catchall " << ct.try_begin_label << ", " << ct.try_end_label << ", " << ct.catch_begin_label in DumpAsm()
|
/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() 2536 ASSERT_EQ(function.catch_blocks[0].try_end_label, "try_end"); in TEST() 2571 ASSERT_EQ(function.catch_blocks[0].try_end_label, "try_end"); in TEST() 2617 "<try_end_label>, <catch_begin_label>[, <catch_end_label>]"); in TEST() 2741 ASSERT_EQ(function.catch_blocks[0].try_end_label, "try_end"); in TEST()
|
Completed in 31 milliseconds