Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/merge_abc/src/
DassemblyFunctionProto.cpp74 for (const auto &debug : function.local_variable_debug) { in Serialize()
136 function.local_variable_debug.reserve(protoFunction.localvariabledebug_size()); in Deserialize()
140 function.local_variable_debug.emplace_back(std::move(localVariable)); in Deserialize()
/arkcompiler/ets_frontend/es2panda/compiler/debugger/
DdebuginfoDumper.cpp186 WrapArray("variables", iter->second.local_variable_debug); in Dump()
/arkcompiler/runtime_core/assembler/
Dassembly-function.h78 std::vector<panda::pandasm::debuginfo::LocalVariable> local_variable_debug; member
Dassembly-emitter.cpp971 for (const auto &v : func.local_variable_debug) { in HandleFunctionLocalVariables()
1131 for (const auto &v : func.local_variable_debug) { in SetCodeAndDebugInfo()
1597 ASSERT(variable_index < local_variable_debug.size()); in EmitLocalVariable()
1598 const auto &v = local_variable_debug[variable_index]; in EmitLocalVariable()
1669 for (size_t i = 0; i < local_variable_debug.size(); i++) { in CollectLocalVariable()
1670 const auto &v = local_variable_debug[i]; in CollectLocalVariable()
/arkcompiler/runtime_core/bytecode_optimizer/
Doptimize_bytecode.cpp95 function.local_variable_debug.clear(); in BuildMapFromPcToIns()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp295 auto &variableDebug = func_->local_variable_debug.emplace_back(); in GenScopeVariableInfo()
/arkcompiler/runtime_core/assembler/tests/
Dassembler_emitter_test.cpp1149 program.Value().function_table.at("f:(i8)").local_variable_debug.push_back(local);
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp482 pandaFunc.local_variable_debug.push_back(variableDebug); in ParseVariablesDebugInfo()