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# The following comment until the empty line must be a valid YAML document 15b1994897Sopenharmony_ci# containing exact copies of ISA specification assertions relevant to this test. 16b1994897Sopenharmony_ci#--- 17b1994897Sopenharmony_ci# - title: Load from array 18b1994897Sopenharmony_ci# description: > 19b1994897Sopenharmony_ci# Load an element from array using accumulator as an index and puts it into accumulator. 20b1994897Sopenharmony_ci# If element size is smaller then 32 bits, it will be zero or sign extended (depending on bytecode) 21b1994897Sopenharmony_ci# to i32. 22b1994897Sopenharmony_ci# properties: 23b1994897Sopenharmony_ci# - acc_read 24b1994897Sopenharmony_ci# - acc_write 25b1994897Sopenharmony_ci# pseudo: | 26b1994897Sopenharmony_ci# if vs == null then 27b1994897Sopenharmony_ci# throw NullPointerException 28b1994897Sopenharmony_ci# end 29b1994897Sopenharmony_ci# if acc < 0 || acc >= len(vs) then 30b1994897Sopenharmony_ci# throw ArrayIndexOutOfBoundsException 31b1994897Sopenharmony_ci# end 32b1994897Sopenharmony_ci# if op == fldarr.32 then 33b1994897Sopenharmony_ci# acc = f32tof64(vs[acc]) 34b1994897Sopenharmony_ci# else if op == ldarr.8 then 35b1994897Sopenharmony_ci# acc = i8toi32(vs[acc]) 36b1994897Sopenharmony_ci# else if op == ldarru.8 then 37b1994897Sopenharmony_ci# acc = u8toi32(vs[acc]) 38b1994897Sopenharmony_ci# else if op == ldarr.16 then 39b1994897Sopenharmony_ci# acc = i16toi32(vs[acc]) 40b1994897Sopenharmony_ci# else if op == ldarru.16 then 41b1994897Sopenharmony_ci# acc = u16toi32(vs[acc]) 42b1994897Sopenharmony_ci# else 43b1994897Sopenharmony_ci# acc = vs[acc] 44b1994897Sopenharmony_ci# end 45b1994897Sopenharmony_ci# instructions: 46b1994897Sopenharmony_ci# - sig: ldarru.16 vs 47b1994897Sopenharmony_ci# format: [op_vs_8] 48b1994897Sopenharmony_ci# type: obj 49b1994897Sopenharmony_ci# dtype: i32 50b1994897Sopenharmony_ci# etype: u16 51b1994897Sopenharmony_ci 52b1994897Sopenharmony_ci# assert that operation ldarru.16 works fine 53b1994897Sopenharmony_ci.function i32 main() { 54b1994897Sopenharmony_ci movi v0, 10 55b1994897Sopenharmony_ci newarr v1, v0, u16[] 56b1994897Sopenharmony_ci movi v2, 0 57b1994897Sopenharmony_ci ldai 65000 58b1994897Sopenharmony_ci starr.16 v1, v2 59b1994897Sopenharmony_ci ldai 0 60b1994897Sopenharmony_ci ldarru.16 v1 61b1994897Sopenharmony_ci u32toi64 62b1994897Sopenharmony_ci sta.64 v0 63b1994897Sopenharmony_ci ldai.64 65000 64b1994897Sopenharmony_ci cmp.64 v0 65b1994897Sopenharmony_ci jnez exit_failure 66b1994897Sopenharmony_ci ldai 0 67b1994897Sopenharmony_ci return 68b1994897Sopenharmony_ciexit_failure: 69b1994897Sopenharmony_ci ldai 1 70b1994897Sopenharmony_ci return 71b1994897Sopenharmony_ci} 72