1b1994897Sopenharmony_ci# Copyright (c) 2021-2022 Huawei Device Co., Ltd. 2b1994897Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License"); 3b1994897Sopenharmony_ci# you may not use this file except in compliance with the License. 4b1994897Sopenharmony_ci# You may obtain a copy of the License at 5b1994897Sopenharmony_ci# 6b1994897Sopenharmony_ci# http://www.apache.org/licenses/LICENSE-2.0 7b1994897Sopenharmony_ci# 8b1994897Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software 9b1994897Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS, 10b1994897Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11b1994897Sopenharmony_ci# See the License for the specific language governing permissions and 12b1994897Sopenharmony_ci# limitations under the License. 13b1994897Sopenharmony_ci 14b1994897Sopenharmony_cimodule: 15b1994897Sopenharmony_ci name: bytecodeopt 16b1994897Sopenharmony_ci namespace: panda::bytecodeopt 17b1994897Sopenharmony_ci 18b1994897Sopenharmony_cioptions: 19b1994897Sopenharmony_ci 20b1994897Sopenharmony_ci- name: opt-level 21b1994897Sopenharmony_ci type: int 22b1994897Sopenharmony_ci default: 2 23b1994897Sopenharmony_ci possible_values: 24b1994897Sopenharmony_ci - 0 25b1994897Sopenharmony_ci - 1 26b1994897Sopenharmony_ci - 2 27b1994897Sopenharmony_ci description: | 28b1994897Sopenharmony_ci Optimization level for bytecode optimizer. N=0: No optimizations. N=1: New optimizer is turned on, only DCE is applied. N=2: (default): New optimizer is turned on, all compiler's optimizations are turned on. 29b1994897Sopenharmony_ci 30b1994897Sopenharmony_ci- name: canonicalization 31b1994897Sopenharmony_ci type: bool 32b1994897Sopenharmony_ci default: true 33b1994897Sopenharmony_ci description: Enable Canonicalization Pass 34b1994897Sopenharmony_ci 35b1994897Sopenharmony_ci- name: const-resolver 36b1994897Sopenharmony_ci type: bool 37b1994897Sopenharmony_ci default: true 38b1994897Sopenharmony_ci description: Enable Constant Resolver Pass 39b1994897Sopenharmony_ci 40b1994897Sopenharmony_ci- name: method-regex 41b1994897Sopenharmony_ci type: std::string 42b1994897Sopenharmony_ci default: "" 43b1994897Sopenharmony_ci description: A regular expression that specifies methods to optimize 44b1994897Sopenharmony_ci 45b1994897Sopenharmony_ci- name: skip-methods-with-eh 46b1994897Sopenharmony_ci type: bool 47b1994897Sopenharmony_ci default: false 48b1994897Sopenharmony_ci description: Disable optimizer for methods with exceptions handlers 49b1994897Sopenharmony_ci 50b1994897Sopenharmony_ci- name: bytecode-opt-peepholes 51b1994897Sopenharmony_ci type: bool 52b1994897Sopenharmony_ci default: true 53b1994897Sopenharmony_ci description: Enable BytecodeOptPeepholes Pass 54b1994897Sopenharmony_ci 55b1994897Sopenharmony_ci- name: const-array-resolver 56b1994897Sopenharmony_ci type: bool 57b1994897Sopenharmony_ci default: true 58b1994897Sopenharmony_ci description: Enable ConstArray Resolver Pass 59