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_ci.function i64 main(){ 15b1994897Sopenharmony_ci movi v1, 10 16b1994897Sopenharmony_ci newarr v0, v1, i64[] 17b1994897Sopenharmony_ci ldai 0 18b1994897Sopenharmony_cimain_loop: 19b1994897Sopenharmony_ci jge v1, main_ret 20b1994897Sopenharmony_ci sta v2 21b1994897Sopenharmony_ci call.short fibonacci, v2, v2 22b1994897Sopenharmony_ci starr.64 v0, v2 23b1994897Sopenharmony_ci lda v2 24b1994897Sopenharmony_ci addi 1 25b1994897Sopenharmony_ci jmp main_loop 26b1994897Sopenharmony_cimain_ret: 27b1994897Sopenharmony_ci lda v1 28b1994897Sopenharmony_ci subi 1 29b1994897Sopenharmony_ci ldarr.64 v0 30b1994897Sopenharmony_ci return.64 31b1994897Sopenharmony_ci} 32b1994897Sopenharmony_ci 33b1994897Sopenharmony_ci.function i64 fibonacci(i64 a0){ 34b1994897Sopenharmony_ci lda a0 35b1994897Sopenharmony_ci jnez non_zero 36b1994897Sopenharmony_ci return.64 37b1994897Sopenharmony_cinon_zero: 38b1994897Sopenharmony_ci ldai 1 39b1994897Sopenharmony_ci jne a0, non_one 40b1994897Sopenharmony_ci return.64 41b1994897Sopenharmony_cinon_one: 42b1994897Sopenharmony_ci lda a0 43b1994897Sopenharmony_ci subi 1 44b1994897Sopenharmony_ci sta a0 45b1994897Sopenharmony_ci subi 1 46b1994897Sopenharmony_ci sta v1 47b1994897Sopenharmony_ci call.short fibonacci, a0, a0 48b1994897Sopenharmony_ci sta a0 49b1994897Sopenharmony_ci call.short fibonacci, v1, a0 50b1994897Sopenharmony_ci add2.64 a0 51b1994897Sopenharmony_ci return.64 52b1994897Sopenharmony_ci} 53