arkcompiler_ets_runtime/ecmascript/deoptimizer/deoptimizer.h

178 lines
5.8 KiB
C
Raw Normal View History

/*
* Copyright (c) 2022 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 ECMASCRIPT_DEOPTIMIZER_DEOPTIMIZER_H
#define ECMASCRIPT_DEOPTIMIZER_DEOPTIMIZER_H
#include "ecmascript/base/aligned_struct.h"
#include "ecmascript/compiler/argument_accessor.h"
#include "ecmascript/deoptimizer/calleeReg.h"
#include "ecmascript/js_handle.h"
#include "ecmascript/js_tagged_value.h"
#include "ecmascript/stackmap/llvm_stackmap_type.h"
namespace panda::ecmascript {
class JSThread;
enum class SpecVregIndex: int {
PC_OFFSET_INDEX = -1,
ACC_INDEX = -2,
ENV_INDEX = -3,
FUNC_INDEX = -4,
NEWTARGET_INDEX = -5,
THIS_OBJECT_INDEX = -6,
};
struct Context {
uintptr_t callsiteSp;
uintptr_t callsiteFp;
kungfu::CalleeRegAndOffsetVec calleeRegAndOffset;
};
struct AsmStackContext : public base::AlignedStruct<base::AlignedPointer::Size(),
base::AlignedPointer,
base::AlignedPointer,
base::AlignedPointer,
base::AlignedPointer> {
enum class Index : size_t {
OUTPUT_COUNT_INDEX = 0,
CALLFRAME_TOP_INDEX,
RETURN_ADDRESS_INDEX,
CALLERFRAME_POINTER_INDEX,
NUM_OF_MEMBER
};
static_assert(static_cast<size_t>(Index::NUM_OF_MEMBER) == NumOfTypes);
static size_t GetOutputCountOffset(bool isArch32)
{
return GetOffset<static_cast<size_t>(Index::OUTPUT_COUNT_INDEX)>(isArch32);
}
static size_t GetCallFrameTopOffset(bool isArch32)
{
return GetOffset<static_cast<size_t>(Index::CALLFRAME_TOP_INDEX)>(isArch32);
}
static size_t GetReturnAddressOffset(bool isArch32)
{
return GetOffset<static_cast<size_t>(Index::RETURN_ADDRESS_INDEX)>(isArch32);
}
static size_t GetCallerFpOffset(bool isArch32)
{
return GetOffset<static_cast<size_t>(Index::CALLERFRAME_POINTER_INDEX)>(isArch32);
}
static constexpr size_t GetSize(bool isArch32)
{
return isArch32 ? AsmStackContext::SizeArch32 : AsmStackContext::SizeArch64;
}
alignas(EAS) size_t outputCount_ {0};
alignas(EAS) uintptr_t callFrameTop_{0};
alignas(EAS) uintptr_t returnAddr_{0};
alignas(EAS) uintptr_t callerFp_{0};
// out put data
};
class FrameWriter;
class Deoptimizier {
public:
using ARKDeopt = kungfu::ARKDeopt;
using CalleeReg = kungfu::CalleeReg;
using CalleeRegAndOffsetVec = kungfu::CalleeRegAndOffsetVec;
using CommonArgIdx = kungfu::CommonArgIdx;
using DeoptType = kungfu::DeoptType;
using DwarfRegType = kungfu::LLVMStackMapType::DwarfRegType;
using DwarfRegAndOffsetType = kungfu::LLVMStackMapType::DwarfRegAndOffsetType;
using IntType = kungfu::LLVMStackMapType::IntType;
using LargeInt = kungfu::LLVMStackMapType::LargeInt;
using LocationTy = kungfu::LocationTy;
using OffsetType = kungfu::LLVMStackMapType::OffsetType;
using VRegId = kungfu::LLVMStackMapType::VRegId;
explicit Deoptimizier(JSThread *thread) : thread_(thread)
{
CalleeReg callreg;
numCalleeRegs_ = static_cast<size_t>(callreg.GetCallRegNum());
JSRuntimeOptions options = thread_->GetEcmaVM()->GetJSOptions();
traceDeopt_ = options.GetTraceDeopt();
}
void CollectVregs(const std::vector<ARKDeopt>& deoptBundle);
void CollectDeoptBundleVec(std::vector<ARKDeopt>& deoptBundle);
JSTaggedType ConstructAsmInterpretFrame(DeoptType type);
static std::string DisplayItems(DeoptType type);
JSThread *GetThread() const
{
return thread_;
}
static const char *GetLLVMDeoptRelocateSymbol()
{
return "__llvm_deoptimize";
}
private:
size_t GetFrameIndex(CommonArgIdx index)
{
return static_cast<size_t>(index) - static_cast<size_t>(CommonArgIdx::FUNC);
}
JSTaggedValue GetFrameArgv(size_t idx)
{
ASSERT(frameArgvs_ != nullptr);
ASSERT(idx < frameArgc_);
return JSTaggedValue(frameArgvs_[idx]);
}
JSTaggedValue GetFrameArgv(CommonArgIdx index)
{
return GetFrameArgv(GetFrameIndex(index));
}
JSTaggedValue GetActualFrameArgs(int32_t index)
{
index += NUM_MANDATORY_JSFUNC_ARGS;
return GetFrameArgv(static_cast<size_t>(index));
}
bool CollectVirtualRegisters(Method* method, FrameWriter *frameWriter);
bool HasDeoptValue(int32_t index) const
{
return deoptVregs_.find(static_cast<VRegId>(index)) != deoptVregs_.end();
}
JSTaggedValue GetDeoptValue(int32_t index) const
{
if (!HasDeoptValue(index)) {
return JSTaggedValue::Undefined();
}
return deoptVregs_.at(static_cast<VRegId>(index));
}
Method* GetMethod(JSTaggedValue &target);
void RelocateCalleeSave();
void Dump(Method* method, DeoptType type);
JSThread *thread_ {nullptr};
uintptr_t *calleeRegAddr_ {nullptr};
size_t numCalleeRegs_ {0};
AsmStackContext stackContext_;
std::unordered_map<VRegId, JSTaggedValue> deoptVregs_;
struct Context context_ {0, 0, {}};
uint32_t pc_ {0};
JSTaggedValue env_ {JSTaggedValue::Undefined()};
size_t frameArgc_ {0};
JSTaggedType *frameArgvs_ {nullptr};
bool traceDeopt_{false};
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_DEOPTIMIZER_DEOPTIMIZER_H