Searched refs:set_label (Results 1 - 17 of 17) sorted by relevance
/arkcompiler/ets_frontend/merge_abc/src/ |
H A D | assemblyInsProto.cpp | 41 protoInsn.set_label(insn.label); in Serialize() 42 protoInsn.set_setlabelval(insn.set_label); in Serialize() 74 insn.set_label = protoInsn.setlabelval(); in Deserialize()
|
/arkcompiler/runtime_core/abc2program/tests/cpp_sources/ |
H A D | hello_world_test.cpp | 414 EXPECT_FALSE(ins0.set_label); in HWTEST_F() 420 EXPECT_TRUE(ins3.set_label); in HWTEST_F() 426 EXPECT_TRUE(ins9.set_label); in HWTEST_F() 432 EXPECT_TRUE(ins11.set_label); in HWTEST_F() 451 EXPECT_TRUE(ins12.set_label); in HWTEST_F() 457 EXPECT_FALSE(ins22.set_label); in HWTEST_F() 463 EXPECT_FALSE(ins26.set_label); in HWTEST_F() 469 EXPECT_TRUE(ins29.set_label); in HWTEST_F() 475 EXPECT_FALSE(ins33.set_label); in HWTEST_F() 481 EXPECT_TRUE(ins36.set_label); in HWTEST_F() [all...] |
/arkcompiler/runtime_core/abc2program/ |
H A D | abc_code_processor.cpp | 107 dummy_end_ins.set_label = true; in AddDummyEndIns() 208 if (pa_ins.set_label) { in AddLabel4InsAtIndex() 212 pa_ins.set_label = true; in AddLabel4InsAtIndex()
|
H A D | dump_utils.cpp | 111 res.set_label = input.set_label; in DeepCopyIns()
|
H A D | program_dump.cpp | 412 if (!invalid_op_ins.set_label) { in HandleInvalidopInsLabel() 419 if (!nearest_valid_op_ins->set_label) { in HandleInvalidopInsLabel() 423 nearest_valid_op_ins->set_label = true; in HandleInvalidopInsLabel() 486 if (curr_ins->set_label) { in HandleFinalLabelAtIndex() 490 curr_ins->set_label = true; in HandleFinalLabelAtIndex()
|
/arkcompiler/ets_frontend/es2panda/compiler/debugger/ |
H A D | debuginfoDumper.cpp | 100 insCopy.set_label = ins.set_label; in WriteIns()
|
/arkcompiler/ets_frontend/es2panda/util/ |
H A D | commonUtil.h | 97 if (iter->opcode != pandasm::Opcode::DYNAMICIMPORT || iter->set_label) { in VisitDyanmicImports()
|
H A D | patchFix.cpp | 188 ss << (ins.set_label ? "" : "\t") << ins.ToString("", true, func->GetTotalRegs()) << " "; in GenerateFunctionAndClassHash()
|
/arkcompiler/runtime_core/bytecode_optimizer/ |
H A D | codegen.h | 88 l.set_label = true; in EmitLabel()
|
/arkcompiler/runtime_core/assembler/tests/ |
H A D | assembler_ins_test.cpp | 134 ins.set_label = false; in HWTEST_F() 217 ins.set_label = false; in HWTEST_F()
|
H A D | assembler_parser_test.cpp | 72 EXPECT_EQ(item.Value().function_table.at(sig_main).ins[0].set_label, true) << "true expected"; in HWTEST_F() 586 EXPECT_EQ(func_main_at[3].set_label, false); in HWTEST_F() 590 EXPECT_EQ(func_m123_at[1].set_label, false); in HWTEST_F() 628 EXPECT_EQ(item.Value().function_table.at(sig_main).ins[3].set_label, true); in HWTEST_F()
|
H A D | parser_test.cpp | 53 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[0].set_label, true) << "true expected"; in TEST() 368 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[2].set_label, false); in TEST() 373 ASSERT_EQ(item.Value().function_table.at(sig_main).ins[3].set_label, true); in TEST() 386 ASSERT_EQ(item.Value().function_table.at(sig_m123).ins[2].set_label, true); in TEST()
|
/arkcompiler/runtime_core/assembler/ |
H A D | assembly-ins.h | 105 bool set_label = false; /* whether this label is defined */ member
|
H A D | assembly-emitter.cpp | 1602 if (insn.set_label) { in Emit() 1608 if (insn.set_label) { in Emit() 1813 if (ins[i].set_label) { in MakeOrderAndOffsets()
|
H A D | assembly-parser.cpp | 1174 curr_ins_->set_label = true; in ParseLabel()
|
/arkcompiler/runtime_core/disassembler/ |
H A D | disassembler.cpp | 1903 if (i.set_label) { in SerializeInstructions() 1915 if (method.ins[i].set_label) { in SerializeInstructions() 2258 method->ins[pair.first].set_label = true; in GetInstructions()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/ |
H A D | emitter.cpp | 1178 ss << (ins.set_label ? "" : "\t") << ins.ToString("", true, func.GetTotalRegs()) << std::endl; in DumpAsm()
|
Completed in 30 milliseconds