arkcompiler_ets_runtime/ecmascript/jspandafile/panda_file_translator.h
g00416891 c443bd6a58 Refactor quick fix loader and manager
Signed-off-by: g00416891 <guobingbing3@huawei.com>
Change-Id: I3cba0e3d28f741137ecaa790fe2e365d3ac71b4d
2022-12-05 17:25:22 +08:00

60 lines
2.8 KiB
C++

/*
* Copyright (c) 2021-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_JSPANDAFILE_PANDA_FILE_TRANSLATOR_H
#define ECMASCRIPT_JSPANDAFILE_PANDA_FILE_TRANSLATOR_H
#include "ecmascript/ecma_vm.h"
#include "ecmascript/jspandafile/constpool_value.h"
#include "ecmascript/jspandafile/js_pandafile.h"
#include "libpandabase/utils/bit_field.h"
#include "libpandafile/code_data_accessor-inl.h"
#include "libpandafile/file-inl.h"
#include "ecmascript/jspandafile/bytecode_inst/old_instruction.h"
namespace panda::ecmascript {
class Program;
class PUBLIC_API PandaFileTranslator {
public:
enum FixInstructionIndex : uint8_t { FIX_ONE = 1, FIX_TWO = 2, FIX_FOUR = 4 };
PandaFileTranslator() = default;
~PandaFileTranslator() = default;
NO_COPY_SEMANTIC(PandaFileTranslator);
NO_MOVE_SEMANTIC(PandaFileTranslator);
static JSHandle<Program> GenerateProgram(EcmaVM *vm, const JSPandaFile *jsPandaFile,
std::string_view entryPoint);
static void TranslateClasses(JSPandaFile *jsPandaFile, const CString &methodName);
private:
static JSHandle<Program> GenerateProgramInternal(EcmaVM *vm, const JSPandaFile *jsPandaFile,
uint32_t mainMethodIndex, JSHandle<ConstantPool> constpool);
static void TranslateBytecode(JSPandaFile *jsPandaFile, uint32_t insSz, const uint8_t *insArr,
const MethodLiteral *methodLiteral, const CString &methodName = JSPandaFile::ENTRY_FUNCTION_NAME);
static void FixInstructionId32(const OldBytecodeInst &inst, uint32_t index, uint32_t fixOrder = 0);
static void FixOpcode(MethodLiteral *method, const OldBytecodeInst &inst);
static void UpdateICOffset(MethodLiteral *method, uint8_t *pc);
static JSHandle<ConstantPool> ParseConstPool(EcmaVM *vm, const JSPandaFile *jsPandaFile);
static void ParseFuncAndLiteralConstPool(EcmaVM *vm, const JSPandaFile *jsPandaFile, const CString &entryPoint,
JSHandle<ConstantPool> constpool);
static JSHandle<ConstantPool> AllocateConstPool(EcmaVM *vm, const JSPandaFile *jsPandaFile);
friend class PatchLoader;
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_JSPANDAFILE_PANDA_FILE_TRANSLATOR_H