mirror of
https://gitee.com/openharmony/arkcompiler_runtime_core
synced 2025-04-13 08:00:43 +00:00

Issue: https://gitee.com/openharmony/arkcompiler_ets_frontend/issues/IAARFN Signed-off-by: huyunhui1 <huyunhui1@huawei.com> Change-Id: I90cf5e23941a728d60cdc4409cbb17a6385836ca
31 lines
1.2 KiB
C++
31 lines
1.2 KiB
C++
/**
|
|
* Copyright (c) 2024 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 CONST_VALUE_H
|
|
#define CONST_VALUE_H
|
|
|
|
namespace ark {
|
|
static constexpr size_t INSTRUCTION_WIDTH_LIMIT = 80;
|
|
static constexpr size_t INSTRUCTION_FORMAT_WIDTH = 20;
|
|
static constexpr size_t INSTRUCTION_VALUE_WIDTH = 2;
|
|
static constexpr size_t INSTRUCTION_OFFSET_WIDTH = 4;
|
|
static constexpr std::string_view SCOPE_NAME_RECORD = "_ESScopeNamesRecord";
|
|
static constexpr std::string_view TYPE_SUMMARY_FIELD_NAME = "typeSummaryOffset";
|
|
static constexpr std::string_view SCOPE_NAMES = "scopeNames";
|
|
static constexpr std::string_view MODULE_REQUEST_PAHSE_IDX = "moduleRequestPhaseIdx";
|
|
} // namespace ark
|
|
|
|
#endif // CONST_VALUE_H
|