mirror of
https://gitee.com/openharmony/arkcompiler_ets_runtime
synced 2024-11-27 12:10:47 +00:00
712e73bcee
Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IAK0JM Signed-off-by: hlm2001 <huanglimin10@huawei.com> Change-Id: I69e8c0f44157c2c5d31f7bc1781227a7901bc135
63 lines
2.5 KiB
C++
63 lines
2.5 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 "ecmascript/jspandafile/scope_info_extractor.h"
|
|
|
|
#include "ecmascript/interpreter/frame_handler.h"
|
|
#include "ecmascript/jspandafile/program_object.h"
|
|
#include "ecmascript/object_factory-inl.h"
|
|
|
|
namespace panda::ecmascript {
|
|
JSTaggedValue ScopeInfoExtractor::GenerateScopeInfo(JSThread *thread, uint16_t scopeId)
|
|
{
|
|
EcmaVM *ecmaVm = thread->GetEcmaVM();
|
|
ObjectFactory *factory = ecmaVm->GetFactory();
|
|
|
|
[[maybe_unused]] EcmaHandleScope handleScope(thread);
|
|
Method *method = FrameHandler(thread).GetMethod();
|
|
const JSPandaFile *jsPandaFile = method->GetJSPandaFile();
|
|
ASSERT(jsPandaFile != nullptr);
|
|
JSHandle<ConstantPool> constpool(thread, method->GetConstantPool());
|
|
|
|
JSHandle<TaggedArray> elementsLiteral;
|
|
if (jsPandaFile->IsNewVersion()) {
|
|
panda_file::File::EntityId id = constpool->GetEntityId(scopeId);
|
|
elementsLiteral = LiteralDataExtractor::GetDatasIgnoreType(thread, jsPandaFile, id, constpool);
|
|
} else {
|
|
elementsLiteral = LiteralDataExtractor::GetDatasIgnoreType(thread, jsPandaFile, scopeId, constpool);
|
|
}
|
|
|
|
ASSERT(elementsLiteral->GetLength() > 0);
|
|
|
|
auto *scopeDebugInfo = ecmaVm->GetNativeAreaAllocator()->New<ScopeDebugInfo>();
|
|
if (scopeDebugInfo == nullptr) {
|
|
return JSTaggedValue::Hole();
|
|
}
|
|
|
|
size_t length = elementsLiteral->GetLength();
|
|
for (size_t i = 1; i < length; i += 2) { // 2: Each literal buffer contains a pair of key-value.
|
|
JSTaggedValue val = elementsLiteral->Get(i);
|
|
ASSERT(val.IsString());
|
|
CString name = ConvertToString(EcmaString::Cast(val.GetTaggedObject()));
|
|
int32_t slot = elementsLiteral->Get(i + 1).GetInt();
|
|
scopeDebugInfo->scopeInfo.emplace(name, slot);
|
|
}
|
|
|
|
JSHandle<JSNativePointer> pointer = factory->NewJSNativePointer(
|
|
scopeDebugInfo, NativeAreaAllocator::FreeObjectFunc<ScopeDebugInfo>, ecmaVm->GetNativeAreaAllocator());
|
|
return pointer.GetTaggedValue();
|
|
}
|
|
} // namespace panda::ecmascript
|