mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-07-22 07:35:27 -04:00
e8389db479
Signed-off-by: Han00000000 <jianghan2@huawei.com> Change-Id: Ia058688171c00c190c74dbbc133a10ff4d5e5edc
49 lines
1.7 KiB
C++
49 lines
1.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.
|
|
*/
|
|
|
|
#include "llvm_codegen.h"
|
|
#include "ecmascript/object_factory.h"
|
|
#include "stub_descriptor.h"
|
|
|
|
using namespace panda::ecmascript;
|
|
namespace kungfu {
|
|
void LLVMCodeGeneratorImpl::GenerateCodeForStub(Circuit *circuit, const ControlFlowGraph &graph, int index)
|
|
{
|
|
auto function = module_->GetStubFunction(index);
|
|
|
|
LLVMIRBuilder builder(&graph, circuit, module_, function);
|
|
builder.Build();
|
|
}
|
|
|
|
void LLVMModuleAssembler::AssembleModule()
|
|
{
|
|
assembler_.Run();
|
|
}
|
|
|
|
void LLVMModuleAssembler::AssembleStubModule(StubModule *module)
|
|
{
|
|
auto codeBuff = reinterpret_cast<Address>(assembler_.GetCodeBuffer());
|
|
auto engine = assembler_.GetEngine();
|
|
for (int i = 0; i < FAST_STUB_MAXCOUNT; i++) {
|
|
auto stubfunction = stubmodule_->GetStubFunction(i);
|
|
if (stubfunction != nullptr) {
|
|
Address stubEntry = reinterpret_cast<Address>(LLVMGetPointerToGlobal(engine, stubfunction));
|
|
module->SetStubEntry(i, stubEntry - codeBuff);
|
|
}
|
|
}
|
|
assembler_.Disassemble();
|
|
}
|
|
} // namespace kungfu
|