Home
last modified time | relevance | path

Searched refs:try_begin_label (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_frontend/merge_abc/src/
DassemblyFunctionProto.cpp24 protoBlock.set_trybeginlabel(block.try_begin_label); in Serialize()
34 block.try_begin_label = protoBlock.trybeginlabel(); in Deserialize()
/arkcompiler/runtime_core/compiler/tests/
DirBuilder_tests.cpp147 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/
Dassembly-function.h44 std::string try_begin_label; member
Dassembly-emitter.cpp1674 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()
Dassembly-parser.cpp853 catch_block.try_begin_label = labels[TRY_BEGIN]; in PrepareCatchBlock()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp213 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/
Dassembly_format.md367 .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/
Ddisassembler.cpp558 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/
Dcodegen.cpp46 cb.try_begin_label = BytecodeGen::LabelName(try_begin->GetId()); in AppendCatchBlock()
/arkcompiler/ets_frontend/es2panda/util/
DpatchFix.cpp186 …ss << ".catchall " << ct.try_begin_label << ", " << ct.try_end_label << ", " << ct.catch_begin_lab… in GenerateFunctionAndClassHash()
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp507 pandaCatchBlock.try_begin_label = catch_block["tb_lab"].asString(); in ParsecatchBlock()
/arkcompiler/runtime_core/assembler/tests/
Dparser_test.cpp2535 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()