Home
last modified time | relevance | path

Searched refs:variableDebug (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp276 auto &variableDebug = func_->local_variable_debug.emplace_back(); in GenScopeVariableInfo() local
277 variableDebug.name = name.Mutf8(); in GenScopeVariableInfo()
278 variableDebug.signature = "any"; in GenScopeVariableInfo()
279 variableDebug.signature_type = "any"; in GenScopeVariableInfo()
280 variableDebug.reg = static_cast<int32_t>(variable->AsLocalVariable()->Vreg()); in GenScopeVariableInfo()
281 variableDebug.start = start; in GenScopeVariableInfo()
282 variableDebug.length = static_cast<uint32_t>(varsLength); in GenScopeVariableInfo()
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp456 panda::pandasm::debuginfo::LocalVariable variableDebug; in ParseVariablesDebugInfo() local
459 variableDebug.name = variable["n"].asString(); // name in ParseVariablesDebugInfo()
463 variableDebug.signature = variable["s"].asString(); // signature in ParseVariablesDebugInfo()
467 variableDebug.signature_type = variable["st"].asString(); // signature type in ParseVariablesDebugInfo()
471 variableDebug.reg = variable["r"].asInt(); // regs in ParseVariablesDebugInfo()
475 variableDebug.start = variable["start"].asUInt(); // start in ParseVariablesDebugInfo()
479 variableDebug.length = variable["len"].asUInt(); // length in ParseVariablesDebugInfo()
482 pandaFunc.local_variable_debug.push_back(variableDebug); in ParseVariablesDebugInfo()