Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/ets2panda/compiler/core/
Demitter.cpp289 static void GenLocalVariableInfo(pandasm::debuginfo::LocalVariable &variableDebug, varbinder::Varia… in GenLocalVariableInfo() argument
294 variableDebug.name = var->Name().Mutf8(); in GenLocalVariableInfo()
297 variableDebug.signature = "any"; in GenLocalVariableInfo()
298 variableDebug.signatureType = "any"; in GenLocalVariableInfo()
302 variableDebug.signature = ss.str(); in GenLocalVariableInfo()
303variableDebug.signatureType = ss.str(); // NOTE: Handle typeParams, either class or interface in GenLocalVariableInfo()
306 variableDebug.reg = in GenLocalVariableInfo()
308 variableDebug.start = start; in GenLocalVariableInfo()
309 variableDebug.length = static_cast<uint32_t>(varsLength); in GenLocalVariableInfo()
320 auto &variableDebug = func->localVariableDebug.emplace_back(); in GenScopeVariableInfoEnd() local
[all …]
DJSemitter.cpp47 void JSFunctionEmitter::GenVariableSignature(pandasm::debuginfo::LocalVariable &variableDebug, in GenVariableSignature() argument
50 variableDebug.signature = "any"; in GenVariableSignature()
51 variableDebug.signatureType = "any"; in GenVariableSignature()
DJSemitter.h39 void GenVariableSignature(pandasm::debuginfo::LocalVariable &variableDebug,
Demitter.h72 virtual void GenVariableSignature(pandasm::debuginfo::LocalVariable &variableDebug,
DETSemitter.h60 void GenVariableSignature(pandasm::debuginfo::LocalVariable &variableDebug,
DETSemitter.cpp156 void ETSFunctionEmitter::GenVariableSignature(pandasm::debuginfo::LocalVariable &variableDebug, in GenVariableSignature() argument
159 variableDebug.signature = Signatures::ANY; in GenVariableSignature()
160 variableDebug.signatureType = Signatures::ANY; in GenVariableSignature()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp290 auto &variableDebug = func_->local_variable_debug.emplace_back(); in GenScopeVariableInfo() local
291 variableDebug.name = name.Mutf8(); in GenScopeVariableInfo()
292 variableDebug.signature = "any"; in GenScopeVariableInfo()
293 variableDebug.signature_type = "any"; in GenScopeVariableInfo()
302 variableDebug.reg = in GenScopeVariableInfo()
304 variableDebug.start = start; in GenScopeVariableInfo()
305 variableDebug.length = static_cast<uint32_t>(varsLength); in GenScopeVariableInfo()