Searched refs:try_begin_label (Results 1 – 12 of 12) sorted by relevance
/arkcompiler/ets_frontend/merge_abc/src/ |
D | assemblyFunctionProto.cpp | 24 protoBlock.set_trybeginlabel(block.try_begin_label); in Serialize() 34 block.try_begin_label = protoBlock.trybeginlabel(); in Deserialize()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | irBuilder_tests.cpp | 147 catchBlock.try_begin_label = "try_begin"; 274 catchBlock1.try_begin_label = "LABEL_0"; 280 catchBlock2.try_begin_label = "LABEL_1"; 286 catchBlock3.try_begin_label = "LABEL_2";
|
/arkcompiler/runtime_core/assembler/ |
D | assembly-function.h | 44 std::string try_begin_label; member
|
D | assembly-emitter.cpp | 1674 try_catch_labels.insert_or_assign(catch_block.try_begin_label, 0); in MakeOrderAndOffsets() 1679 std::string try_key = catch_block.try_begin_label + ":" + catch_block.try_end_label; in MakeOrderAndOffsets() 1745 auto try_start_pc_offset = tcs.try_catch_labels[try_catch_blocks[0]->try_begin_label]; in BuildTryBlocks()
|
D | assembly-parser.cpp | 853 catch_block.try_begin_label = labels[TRY_BEGIN]; in PrepareCatchBlock()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
D | emitter.cpp | 213 pandaCatchBlock.try_begin_label = labelSet.TryBegin()->Id(); in GenFunctionCatchTables() 569 …ss << ".catchall " << ct.try_begin_label << ", " << ct.try_end_label << ", " << ct.catch_begin_lab… in DumpAsm()
|
/arkcompiler/runtime_core/docs/ |
D | assembly_format.md | 367 .catch <exception_record>, <try_begin_label>, <try_end_label>, <catch_begin_label> 368 .catchall <try_begin_label>, <try_end_label>, <catch_begin_label> 401 .catch <exception_record>, <try_begin_label>, <try_end_label>, <catch_begin_label>, <catch_end_labe… 402 .catchall <try_begin_label>, <try_end_label>, <catch_begin_label>, <catch_end_label>
|
/arkcompiler/runtime_core/disassembler/ |
D | disassembler.cpp | 558 catch_block_pa->try_begin_label = ss.str(); in LocateTryBlock() 561 catch_block_pa->try_begin_label = it->second; in LocateTryBlock() 1427 …os << catch_block.try_begin_label << ", " << catch_block.try_end_label << ", " << catch_block.catc… in Serialize()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
D | codegen.cpp | 46 cb.try_begin_label = BytecodeGen::LabelName(try_begin->GetId()); in AppendCatchBlock()
|
/arkcompiler/ets_frontend/es2panda/util/ |
D | patchFix.cpp | 186 …ss << ".catchall " << ct.try_begin_label << ", " << ct.try_end_label << ", " << ct.catch_begin_lab… in GenerateFunctionAndClassHash()
|
/arkcompiler/ets_frontend/ts2panda/ts2abc/ |
D | ts2abc.cpp | 507 pandaCatchBlock.try_begin_label = catch_block["tb_lab"].asString(); in ParsecatchBlock()
|
/arkcompiler/runtime_core/assembler/tests/ |
D | parser_test.cpp | 2535 ASSERT_EQ(function.catch_blocks[0].try_begin_label, "try_begin"); in TEST() 2570 ASSERT_EQ(function.catch_blocks[0].try_begin_label, "try_begin"); in TEST() 2740 ASSERT_EQ(function.catch_blocks[0].try_begin_label, "try_begin"); in TEST()
|