fangting cdbfa4340e optimize compiler
Issue:#IALVU8
Signed-off-by: fangting <fangting12@huawei.com>
2024-08-27 11:02:23 +08:00

123 lines
5.1 KiB
C++

/*
* Copyright (c) 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.
*/
#include "ecmascript/js_api/js_api_tree_map.h"
#include "ecmascript/containers/containers_errors.h"
#include "ecmascript/tagged_tree.h"
namespace panda::ecmascript {
using ContainerError = containers::ContainerError;
using ErrorFlag = containers::ErrorFlag;
void JSAPITreeMap::Set(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key,
const JSHandle<JSTaggedValue> &value)
{
if (!TaggedTreeMap::IsKey(key.GetTaggedValue())) {
JSHandle<EcmaString> result = JSTaggedValue::ToString(thread, key.GetTaggedValue());
RETURN_IF_ABRUPT_COMPLETION(thread);
CString errorMsg =
"The type of \"key\" must be not null. Received value is: " + ConvertToString(*result);
JSTaggedValue error = ContainerError::BusinessError(thread, ErrorFlag::TYPE_ERROR, errorMsg.c_str());
THROW_NEW_ERROR_AND_RETURN(thread, error);
}
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject()));
JSTaggedValue newMap = TaggedTreeMap::Set(thread, mapHandle, key, value);
RETURN_IF_ABRUPT_COMPLETION(thread);
map->SetTreeMap(thread, newMap);
}
JSTaggedValue JSAPITreeMap::Get(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key)
{
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject()));
return TaggedTreeMap::Get(thread, mapHandle, key);
}
int JSAPITreeMap::GetSize() const
{
return TaggedTreeMap::Cast(GetTreeMap().GetTaggedObject())->NumberOfElements();
}
JSTaggedValue JSAPITreeMap::GetKey(int entry) const
{
ASSERT_PRINT(entry < GetSize(), "entry must less than capacity");
JSTaggedValue key = TaggedTreeMap::Cast(GetTreeMap().GetTaggedObject())->GetKey(entry);
return key.IsHole() ? JSTaggedValue::Undefined() : key;
}
JSTaggedValue JSAPITreeMap::GetValue(int entry) const
{
ASSERT_PRINT(entry < GetSize(), "entry must less than capacity");
JSTaggedValue value = TaggedTreeMap::Cast(GetTreeMap().GetTaggedObject())->GetValue(entry);
return value.IsHole() ? JSTaggedValue::Undefined() : value;
}
JSTaggedValue JSAPITreeMap::Delete(JSThread *thread, const JSHandle<JSAPITreeMap> &map,
const JSHandle<JSTaggedValue> &key)
{
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject()));
int entry = TaggedTreeMap::FindEntry(thread, mapHandle, key);
RETURN_EXCEPTION_IF_ABRUPT_COMPLETION(thread);
if (entry < 0) {
return JSTaggedValue::Undefined();
}
JSHandle<JSTaggedValue> value(thread, mapHandle->GetValue(entry));
JSTaggedValue newMap = TaggedTreeMap::Delete(thread, mapHandle, entry);
map->SetTreeMap(thread, newMap);
return value.GetTaggedValue();
}
bool JSAPITreeMap::HasKey(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key)
{
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject()));
return TaggedTreeMap::FindEntry(thread, mapHandle, key) >= 0;
}
bool JSAPITreeMap::HasValue(JSThread *thread, const JSHandle<JSTaggedValue> &value) const
{
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(GetTreeMap().GetTaggedObject()));
return mapHandle->HasValue(thread, value.GetTaggedValue());
}
void JSAPITreeMap::Clear(const JSThread *thread, const JSHandle<JSAPITreeMap> &map)
{
int cap = map->GetSize();
if (cap == 0) {
return;
}
JSTaggedValue fn = TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject())->GetCompare();
JSHandle<JSTaggedValue> compareFn = JSHandle<JSTaggedValue>(thread, fn);
cap = std::max(cap, TaggedTreeMap::MIN_CAPACITY);
JSTaggedValue internal = TaggedTreeMap::Create(thread, cap);
if (!compareFn->IsUndefined() && !compareFn->IsNull()) {
TaggedTreeMap::Cast(internal.GetTaggedObject())->SetCompare(thread, compareFn.GetTaggedValue());
}
map->SetTreeMap(thread, internal);
}
bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key,
const JSHandle<JSTaggedValue> &value)
{
JSHandle<TaggedTreeMap> mapHandle(thread, TaggedTreeMap::Cast(map->GetTreeMap().GetTaggedObject()));
int index = TaggedTreeMap::FindEntry(thread, mapHandle, key);
RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, false);
if (index < 0) {
return false;
}
mapHandle->SetValue(thread, index, value.GetTaggedValue());
return true;
}
} // namespace panda::ecmascript