Files
Ilya Trubachev 333ccf0f98 copyright update
Signed-off-by: Ilya Trubachev <trubachev.ilya@huawei.com>
2022-03-25 13:17:51 +03:00

172 lines
5.1 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 PANDA_RUNTIME_INCLUDE_VTABLE_BUILDER_INL_H_
#define PANDA_RUNTIME_INCLUDE_VTABLE_BUILDER_INL_H_
#include "runtime/include/vtable_builder.h"
namespace panda {
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::BuildForInterface(panda_file::ClassDataAccessor *cda)
{
ASSERT(cda->IsInterface());
cda->EnumerateMethods([this](panda_file::MethodDataAccessor &mda) {
if (mda.IsStatic()) {
return;
}
if (!mda.IsAbstract()) {
has_default_methods_ = true;
}
++num_vmethods_;
});
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::BuildForInterface(Span<Method> methods)
{
for (const auto &method : methods) {
if (method.IsStatic()) {
continue;
}
if (!method.IsAbstract()) {
has_default_methods_ = true;
}
++num_vmethods_;
}
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::AddBaseMethods(Class *base_class)
{
if (base_class != nullptr) {
auto base_class_vtable = base_class->GetVTable();
for (auto *method : base_class_vtable) {
vtable_.AddBaseMethod(MethodInfo(method, 0, true));
}
}
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::AddClassMethods(panda_file::ClassDataAccessor *cda,
ClassLinkerContext *ctx)
{
cda->EnumerateMethods([this, ctx](panda_file::MethodDataAccessor &mda) {
if (mda.IsStatic()) {
return;
}
MethodInfo method_info(mda.GetPandaFile(), mda.GetMethodId(), num_vmethods_, ctx);
if (!vtable_.AddMethod(method_info)) {
vtable_.AddBaseMethod(method_info);
}
++num_vmethods_;
});
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::AddClassMethods(Span<Method> methods)
{
for (auto &method : methods) {
if (method.IsStatic()) {
continue;
}
MethodInfo method_info(&method, num_vmethods_);
if (!vtable_.AddMethod(method_info)) {
vtable_.AddBaseMethod(method_info);
}
++num_vmethods_;
}
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::AddDefaultInterfaceMethods(ITable itable)
{
for (size_t i = itable.Size(); i > 0; i--) {
auto entry = itable[i - 1];
auto iface = entry.GetInterface();
if (!iface->HasDefaultMethods()) {
continue;
}
auto methods = iface->GetVirtualMethods();
for (auto &method : methods) {
if (method.IsAbstract()) {
continue;
}
if (vtable_.AddMethod(MethodInfo(&method, copied_methods_.size(), false, true))) {
copied_methods_.push_back(&method);
}
}
}
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::Build(panda_file::ClassDataAccessor *cda, Class *base_class,
ITable itable, ClassLinkerContext *ctx)
{
if (cda->IsInterface()) {
return BuildForInterface(cda);
}
AddBaseMethods(base_class);
AddClassMethods(cda, ctx);
AddDefaultInterfaceMethods(itable);
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::Build(Span<Method> methods, Class *base_class, ITable itable,
bool is_interface)
{
if (is_interface) {
return BuildForInterface(methods);
}
AddBaseMethods(base_class);
AddClassMethods(methods);
AddDefaultInterfaceMethods(itable);
}
template <class SearchBySignature, class OverridePred>
void VTableBuilderImpl<SearchBySignature, OverridePred>::UpdateClass(Class *klass) const
{
if (klass->IsInterface()) {
if (has_default_methods_) {
klass->SetHasDefaultMethods();
}
size_t idx = 0;
for (auto &method : klass->GetVirtualMethods()) {
method.SetVTableIndex(idx++);
}
}
vtable_.UpdateClass(klass);
}
} // namespace panda
#endif // PANDA_RUNTIME_INCLUDE_VTABLE_BUILDER_INL_H_