mirror of
https://gitee.com/openharmony/arkcompiler_ets_runtime
synced 2024-11-27 04:00:37 +00:00
2a3f69fd60
Merge pull request !8805 from hanweiqi/fix_dropframe
77 lines
3.0 KiB
C++
77 lines
3.0 KiB
C++
/*
|
|
* Copyright (c) 2023-2024 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_DEBUGGER_DROPFRAME_MANAGER_H
|
|
#define ECMASCRIPT_DEBUGGER_DROPFRAME_MANAGER_H
|
|
|
|
#include "ecmascript/js_handle.h"
|
|
#include "ecmascript/js_thread.h"
|
|
#include "ecmascript/method.h"
|
|
#include "libpandafile/bytecode_instruction.h"
|
|
|
|
namespace panda::ecmascript::tooling {
|
|
enum class MethodType : uint8_t {
|
|
OTHER_METHOD = 0,
|
|
NORMAL_METHOD,
|
|
SENDABLE_METHOD
|
|
};
|
|
|
|
class DropframeManager {
|
|
public:
|
|
DropframeManager() = default;
|
|
~DropframeManager() = default;
|
|
NO_COPY_SEMANTIC(DropframeManager);
|
|
NO_MOVE_SEMANTIC(DropframeManager);
|
|
|
|
void MethodEntry(JSThread *thread, JSHandle<Method> method, JSHandle<JSTaggedValue> env);
|
|
void MethodExit(JSThread *thread, JSHandle<Method> method);
|
|
void DropLastFrame(JSThread *thread);
|
|
uint32_t GetPromiseQueueSizeRecordOfTopFrame();
|
|
bool CheckIsSendableMethod();
|
|
private:
|
|
bool IsNewlexenvOpcode(BytecodeInstruction::Opcode op);
|
|
bool IsStlexvarOpcode(BytecodeInstruction::Opcode op);
|
|
std::pair<uint16_t, uint16_t> ReadStlexvarParams(const uint8_t *pc, BytecodeInstruction::Opcode op);
|
|
|
|
void NewLexModifyRecordLevel();
|
|
void EmplaceLexModifyRecord(JSThread *thread, JSTaggedValue env, uint16_t slot, JSTaggedValue value);
|
|
uint32_t GetLexModifyRecordLevel();
|
|
std::vector<std::tuple<JSHandle<JSTaggedValue>, uint16_t, JSHandle<JSTaggedValue>>> GetLexModifyRecordOfTopFrame();
|
|
void RemoveLexModifyRecordOfTopFrame(JSThread *thread);
|
|
void MergeLexModifyRecordOfTopFrame(JSThread *thread);
|
|
|
|
void PushPromiseQueueSizeRecord(JSThread *thread);
|
|
void PopPromiseQueueSizeRecord();
|
|
|
|
void PushMethodInfo(std::tuple<JSPandaFile*, panda_file::File::EntityId> methodInfo);
|
|
bool CheckExitMethodInfo(std::tuple<JSPandaFile*, panda_file::File::EntityId> methodInfo);
|
|
void PopMethodInfo();
|
|
|
|
void PushMethodType(MethodType methodType);
|
|
void PopMethodType();
|
|
|
|
void AddLexPropertiesToRecord(JSThread *thread, BytecodeInstruction &bcIns, uint16_t &newEnvCount,
|
|
std::set<std::pair<uint16_t, uint16_t>> &modifiedLexVarPos, JSHandle<JSTaggedValue> envHandle);
|
|
|
|
std::stack<std::vector<std::tuple<JSHandle<JSTaggedValue>, uint16_t, JSHandle<JSTaggedValue>>>> modifiedLexVar_;
|
|
std::stack<uint32_t> promiseQueueSizeRecord_;
|
|
std::stack<MethodType> methodType_;
|
|
std::stack<std::tuple<JSPandaFile*, panda_file::File::EntityId>> methodInfo_;
|
|
|
|
friend class DropframeManagerFriendTest;
|
|
};
|
|
}
|
|
|
|
#endif // ECMASCRIPT_DEBUGGER_DROPFRAME_MANAGER_H
|