/arkcompiler/runtime_core/static_core/runtime/bridge/ |
H A D | bridge.cpp | 56 static inline int64_t GetVRegValue(VRegRef reg) in GetVRegValue() function 77 res = GetVRegValue(acc.template AsVRegRef<true>()); in InvokeInterpreter() 79 res = GetVRegValue(acc.AsVRegRef()); in InvokeInterpreter() 114 res = GetVRegValue(acc.template AsVRegRef<true>()); in InvokeInterpreter() 116 res = GetVRegValue(acc.AsVRegRef()); in InvokeInterpreter()
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | stack_walker-inl.h | 58 cframe.GetVRegValue(regInfo, codeInfo_, calleeStack_.stack.data(), resReg); in IterateAllRegsForCFrame() 79 cframe.GetVRegValue(regInfo, codeInfo_, calleeStack_.stack.data(), resReg); in IterateRegsForCFrameStatic() 92 cframe.GetVRegValue(regInfo, codeInfo_, calleeStack_.stack.data(), resReg); in IterateRegsForCFrameStatic() 112 cframe.GetVRegValue(regInfo, codeInfo_, calleeStack_.stack.data(), resReg); in IterateRegsForCFrameDynamic() 124 cframe.GetVRegValue(regInfo, codeInfo_, calleeStack_.stack.data(), resReg); in IterateRegsForCFrameDynamic()
|
H A D | cframe.h | 174 inline void GetVRegValue(const VRegInfo &vreg, const compiler::CodeInfo &codeInfo, SlotType **calleeStack, in GetVRegValue() function in ark::final 177 auto val = GetVRegValue<false>(vreg, codeInfo, calleeStack).GetValue(); in GetVRegValue() 189 auto val = GetVRegValue<true>(vreg, codeInfo, calleeStack).GetValue(); in GetPackVRegValue() 272 PANDA_PUBLIC_API interpreter::VRegister GetVRegValue(const VRegInfo &vreg, const compiler::CodeInfo &codeInfo,
|
H A D | stack_walker.h | 159 interpreter::VRegister GetVRegValue(size_t vregNum); 390 envData_[i] = static_cast<EnvType>(cframe.GetVRegValue<true>(vreg, codeInfo, calleeStack).GetValue()); in EnvData()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | cframe.cpp | 30 interpreter::VRegister CFrame::GetVRegValue(const VRegInfo &vreg, const compiler::CodeInfo &codeInfo, in GetVRegValue() function in ark::CFrame 46 template interpreter::VRegister CFrame::GetVRegValue<true>(const VRegInfo &vreg, const compiler::CodeInfo &code_info, 48 template interpreter::VRegister CFrame::GetVRegValue<false>(const VRegInfo &vreg, const compiler::CodeInfo &code_info,
|
H A D | stack_walker.cpp | 284 interpreter::VRegister StackWalker::GetVRegValue(size_t vregNum) in GetVRegValue() function in ark::StackWalker 293 GetCFrame().GetVRegValue(vregsList[vregNum], codeInfo_, calleeStack_.stack.data(), in GetVRegValue() 571 GetCFrame().GetVRegValue(vreg, codeInfo_, calleeStack_.stack.data(), regRef); in GetFrameFromPrevFrame()
|
/arkcompiler/ets_runtime/ecmascript/ic/ |
H A D | invoke_cache.cpp | 115 info->SetCallArg(i, frameHandler.GetVRegValue(firstArgIdx + i)); in Construct()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | frame_handler.h | 227 JSTaggedValue GetVRegValue(size_t index) const;
|
H A D | frame_handler.cpp | 97 JSTaggedValue FrameHandler::GetVRegValue(size_t index) const in GetVRegValue() function in panda::ecmascript::FrameHandler
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debugger.cpp | 883 static uint64_t GetVRegValue(VRegRef reg) in GetVRegValue() function 910 vregs.push_back(GetVRegValue(vregReg)); in FillRegisters() 918 args.push_back(GetVRegValue(argReg)); in FillRegisters() 923 acc = GetVRegValue(accReg); in FillRegisters()
|
/arkcompiler/toolchain/tooling/backend/ |
H A D | debugger_executor.cpp | 148 result = DebuggerApi::GetVRegValue(vm, frameHandler, index); in GetLocalValue()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | debugger_api.h | 95 static Local<JSValueRef> GetVRegValue(const EcmaVM *ecmaVm,
|
H A D | debugger_api.cpp | 209 Local<JSValueRef> DebuggerApi::GetVRegValue(const EcmaVM *ecmaVm, in GetVRegValue() function in panda::ecmascript::tooling::DebuggerApi 212 auto value = frameHandler->GetVRegValue(index); in GetVRegValue()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs-inl.h | 2248 JSTaggedValue value = frameHandler.GetVRegValue(firstArgIdx + i); 2436 JSTaggedValue excludedKey = frameHandler.GetVRegValue(firstArgRegIdx); 2441 excludedKey = frameHandler.GetVRegValue(firstArgRegIdx + i); 2591 argv->Set(thread, i, frameHandler.GetVRegValue(firstVRegIdx + i));
|
H A D | runtime_stubs.cpp | 3526 JSTaggedValue value = frameHandler.GetVRegValue(i); in SaveFrameToContext()
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 1938 value = DebuggerApi::GetVRegValue(vm_, frameHandler, regIndex); in GetLocalVariables()
|