mirror of
https://github.com/openharmony/ark_runtime_core.git
synced 2026-07-19 13:17:49 -04:00
14c9021696
Signed-off-by: wanyanglan <wanyanglan1@huawei.com> Change-Id: I2564094cef9c6c41263e37faf9ffbbec14223dc7
242 lines
5.7 KiB
C++
242 lines
5.7 KiB
C++
/*
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef PANDA_RUNTIME_INTERPRETER_STATE_H_
|
|
#define PANDA_RUNTIME_INTERPRETER_STATE_H_
|
|
|
|
#include "libpandafile/bytecode_instruction-inl.h"
|
|
#include "runtime/interpreter/frame.h"
|
|
|
|
#ifdef PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES
|
|
#include "arch/global_regs.h"
|
|
#endif
|
|
|
|
namespace panda::interpreter {
|
|
|
|
template <class T>
|
|
class StateIface {
|
|
public:
|
|
ALWAYS_INLINE inline StateIface(Frame *frame) : acc_(frame->GetAcc()) {}
|
|
|
|
ALWAYS_INLINE inline BytecodeInstruction GetInst() const
|
|
{
|
|
return static_cast<const T *>(this)->GetInst();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetInst(BytecodeInstruction inst)
|
|
{
|
|
static_cast<T *>(this)->SetInst(inst);
|
|
}
|
|
|
|
ALWAYS_INLINE inline Frame *GetFrame() const
|
|
{
|
|
return static_cast<const T *>(this)->GetFrame();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetFrame(Frame *frame)
|
|
{
|
|
static_cast<T *>(this)->SetFrame(frame);
|
|
}
|
|
|
|
ALWAYS_INLINE inline ManagedThread *GetThread() const
|
|
{
|
|
return static_cast<const T *>(this)->GetThread();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetThread(ManagedThread *thread)
|
|
{
|
|
static_cast<T *>(this)->SetThread(thread);
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SaveState()
|
|
{
|
|
static_cast<T *>(this)->SaveState();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void RestoreState()
|
|
{
|
|
static_cast<T *>(this)->RestoreState();
|
|
}
|
|
|
|
ALWAYS_INLINE inline AccVRegister &GetAcc()
|
|
{
|
|
return acc_;
|
|
}
|
|
|
|
ALWAYS_INLINE inline const AccVRegister &GetAcc() const
|
|
{
|
|
return acc_;
|
|
}
|
|
|
|
private:
|
|
AccVRegister acc_;
|
|
};
|
|
|
|
#ifdef PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES
|
|
|
|
class State : public StateIface<State> {
|
|
public:
|
|
ALWAYS_INLINE inline State(ManagedThread *thread, const uint8_t *pc, Frame *frame) : StateIface(frame)
|
|
{
|
|
SetInst(BytecodeInstruction(pc));
|
|
SetFrame(frame);
|
|
SetThread(thread);
|
|
}
|
|
~State() = default;
|
|
DEFAULT_MOVE_SEMANTIC(State);
|
|
DEFAULT_COPY_SEMANTIC(State);
|
|
|
|
ALWAYS_INLINE inline void UpdateState(const uint8_t *pc, Frame *frame)
|
|
{
|
|
SetInst(BytecodeInstruction(pc));
|
|
SetFrame(frame);
|
|
}
|
|
|
|
ALWAYS_INLINE inline BytecodeInstruction GetInst() const
|
|
{
|
|
return BytecodeInstruction(arch::regs::GetPc());
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetInst(BytecodeInstruction inst)
|
|
{
|
|
arch::regs::SetPc(inst.GetAddress());
|
|
}
|
|
|
|
ALWAYS_INLINE inline Frame *GetFrame() const
|
|
{
|
|
return arch::regs::GetFrame();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetFrame(Frame *frame)
|
|
{
|
|
arch::regs::SetFrame(frame);
|
|
}
|
|
|
|
ALWAYS_INLINE inline const void *const *GetDispatchTable() const
|
|
{
|
|
return arch::regs::GetDispatchTable();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetDispatchTable(const void *const *dispatch_table)
|
|
{
|
|
return arch::regs::SetDispatchTable(dispatch_table);
|
|
}
|
|
|
|
ALWAYS_INLINE inline ManagedThread *GetThread() const
|
|
{
|
|
return arch::regs::GetThread();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetThread(ManagedThread *thread)
|
|
{
|
|
arch::regs::SetThread(thread);
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SaveState()
|
|
{
|
|
inst_spill_ = GetInst();
|
|
acc_spill_ = GetAcc();
|
|
frame_spill_ = GetFrame();
|
|
thread_spill_ = GetThread();
|
|
}
|
|
|
|
ALWAYS_INLINE inline void RestoreState()
|
|
{
|
|
SetInst(inst_spill_);
|
|
GetAcc() = acc_spill_;
|
|
SetFrame(frame_spill_);
|
|
SetThread(thread_spill_);
|
|
}
|
|
|
|
private:
|
|
BytecodeInstruction inst_spill_;
|
|
Frame *frame_spill_ {nullptr};
|
|
ManagedThread *thread_spill_ {nullptr};
|
|
Frame::VRegister acc_spill_;
|
|
};
|
|
|
|
#else
|
|
|
|
class State : public StateIface<State> {
|
|
public:
|
|
ALWAYS_INLINE inline State(ManagedThread *thread, const uint8_t *pc, Frame *frame) : StateIface(frame)
|
|
{
|
|
SetInst(BytecodeInstruction(pc));
|
|
SetFrame(frame);
|
|
SetThread(thread);
|
|
}
|
|
~State() = default;
|
|
DEFAULT_MOVE_SEMANTIC(State);
|
|
DEFAULT_COPY_SEMANTIC(State);
|
|
|
|
ALWAYS_INLINE inline void UpdateState(const uint8_t *pc, Frame *frame)
|
|
{
|
|
SetInst(BytecodeInstruction(pc));
|
|
SetFrame(frame);
|
|
}
|
|
|
|
ALWAYS_INLINE inline BytecodeInstruction GetInst() const
|
|
{
|
|
return inst_;
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetInst(BytecodeInstruction inst)
|
|
{
|
|
inst_ = inst;
|
|
}
|
|
|
|
ALWAYS_INLINE inline Frame *GetFrame() const
|
|
{
|
|
return frame_;
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetFrame(Frame *frame)
|
|
{
|
|
frame_ = frame;
|
|
}
|
|
|
|
ALWAYS_INLINE inline const void *const *GetDispatchTable() const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
ALWAYS_INLINE inline ManagedThread *GetThread() const
|
|
{
|
|
return thread_;
|
|
}
|
|
|
|
ALWAYS_INLINE inline void SetThread(ManagedThread *thread)
|
|
{
|
|
thread_ = thread;
|
|
}
|
|
|
|
void SetDispatchTable([[maybe_unused]] const void *const *dispatch_table) {}
|
|
|
|
void SaveState() {}
|
|
|
|
void RestoreState() {}
|
|
|
|
private:
|
|
BytecodeInstruction inst_;
|
|
Frame *frame_ {nullptr};
|
|
ManagedThread *thread_ {nullptr};
|
|
};
|
|
|
|
#endif // PANDA_ENABLE_GLOBAL_REGISTER_VARIABLES
|
|
|
|
} // namespace panda::interpreter
|
|
|
|
#endif // PANDA_RUNTIME_INTERPRETER_STATE_H_
|