Reason:modify MIN_SIZE_FOR_UNROLLING to 128

Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IAX2KJ?from=project-issue
Test: Build & Boot devices

Signed-off-by: wupengyong <wupengyong@huawei.com>
Change-Id: I79d7ee1c2bc23a847d30467a2e3aa73eb72d0c48
This commit is contained in:
wupengyong 2024-10-14 20:34:06 +08:00
parent 977ae07069
commit 02e58a0115

View File

@ -23,7 +23,7 @@ namespace panda::ecmascript {
BLOCK_SIZE = 4,
HASH_SHIFT = 5,
HASH_MULTIPLY = 31,
MIN_SIZE_FOR_UNROLLING = 16,
MIN_SIZE_FOR_UNROLLING = 128,
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_PLATFORM_ECMA_STRING_HASH_H