Home
last modified time | relevance | path

Searched refs:local_variable_debug (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_frontend/merge_abc/src/
DassemblyFunctionProto.cpp74 for (const auto &debug : function.local_variable_debug) { in Serialize()
144 function.local_variable_debug.reserve(protoFunction.localvariabledebug_size()); in DeserializeProtoLocalVariable()
148 function.local_variable_debug.emplace_back(std::move(localVariable)); in DeserializeProtoLocalVariable()
/arkcompiler/runtime_core/abc2program/tests/cpp_sources/
Dhello_world_test.cpp745 EXPECT_FALSE(function.local_variable_debug.empty());
746 EXPECT_TRUE(function.local_variable_debug[0].name.find("4funcObj") != std::string::npos);
747 EXPECT_TRUE(function.local_variable_debug[0].signature.find("any") != std::string::npos);
748 EXPECT_TRUE(function.local_variable_debug[0].signature_type.find("any") != std::string::npos);
749 EXPECT_TRUE(function.local_variable_debug[0].reg == 0);
750 EXPECT_TRUE(function.local_variable_debug[0].start == 3);
751 EXPECT_TRUE(function.local_variable_debug[0].length == 74);
764 EXPECT_FALSE(function.local_variable_debug.empty());
/arkcompiler/ets_frontend/es2panda/compiler/debugger/
DdebuginfoDumper.cpp186 WrapArray("variables", iter->second.local_variable_debug); in Dump()
/arkcompiler/runtime_core/assembler/
Dassembly-emitter.cpp974 for (const auto &v : func.local_variable_debug) { in HandleFunctionLocalVariables()
1164 for (const auto &v : func.local_variable_debug) { in SetCodeAndDebugInfo()
1637 ASSERT(variable_index < local_variable_debug.size()); in EmitLocalVariable()
1638 const auto &v = local_variable_debug[variable_index]; in EmitLocalVariable()
1709 for (size_t i = 0; i < local_variable_debug.size(); i++) { in CollectLocalVariable()
1710 const auto &v = local_variable_debug[i]; in CollectLocalVariable()
1720 auto a_var = this->local_variable_debug[a.variable_index]; in CollectLocalVariable()
1721 auto b_var = this->local_variable_debug[b.variable_index]; in CollectLocalVariable()
Dassembly-function.h78 std::vector<panda::pandasm::debuginfo::LocalVariable> local_variable_debug; member
/arkcompiler/runtime_core/abc2program/
Dprogram_dump.cpp568 if (function.local_variable_debug.empty()) { in DumpFunctionDebugInfo()
575 for (const auto &variable_info : function.local_variable_debug) { in DumpFunctionDebugInfo()
619 for (const auto &variable_info : function.local_variable_debug) { in UpdateLocalVarMap()
Dabc_code_processor.cpp242 function_.local_variable_debug.push_back(local_var); in FillLocalVariableTable()
/arkcompiler/runtime_core/bytecode_optimizer/
Doptimize_bytecode.cpp108 function.local_variable_debug.clear(); in BuildMapFromPcToIns()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp286 auto &variableDebug = func_->local_variable_debug.emplace_back(); in GenScopeVariableInfo()
/arkcompiler/runtime_core/assembler/tests/
Dassembler_emitter_test.cpp1147 program.Value().function_table.at("f:(i8)").local_variable_debug.push_back(local);