1 /* 2 * RISC-V Vector Extension Internals 3 * 4 * Copyright (c) 2020 T-Head Semiconductor Co., Ltd. All rights reserved. 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms and conditions of the GNU General Public License, 8 * version 2 or later, as published by the Free Software Foundation. 9 * 10 * This program is distributed in the hope it will be useful, but WITHOUT 11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 13 * more details. 14 * 15 * You should have received a copy of the GNU General Public License along with 16 * this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 18 19 #include "qemu/osdep.h" 20 #include "vector_internals.h" 21 22 /* set agnostic elements to 1s */ 23 void vext_set_elems_1s(void *base, uint32_t is_agnostic, uint32_t cnt, 24 uint32_t tot) 25 { 26 if (is_agnostic == 0) { 27 /* policy undisturbed */ 28 return; 29 } 30 if (tot - cnt == 0) { 31 return ; 32 } 33 memset(base + cnt, -1, tot - cnt); 34 } 35 36 void do_vext_vv(void *vd, void *v0, void *vs1, void *vs2, 37 CPURISCVState *env, uint32_t desc, 38 opivv2_fn *fn, uint32_t esz) 39 { 40 uint32_t vm = vext_vm(desc); 41 uint32_t vl = env->vl; 42 uint32_t total_elems = vext_get_total_elems(env, desc, esz); 43 uint32_t vta = vext_vta(desc); 44 uint32_t vma = vext_vma(desc); 45 uint32_t i; 46 47 for (i = env->vstart; i < vl; i++) { 48 if (!vm && !vext_elem_mask(v0, i)) { 49 /* set masked-off elements to 1s */ 50 vext_set_elems_1s(vd, vma, i * esz, (i + 1) * esz); 51 continue; 52 } 53 fn(vd, vs1, vs2, i); 54 } 55 env->vstart = 0; 56 /* set tail elements to 1s */ 57 vext_set_elems_1s(vd, vta, vl * esz, total_elems * esz); 58 } 59 60 void do_vext_vx(void *vd, void *v0, target_long s1, void *vs2, 61 CPURISCVState *env, uint32_t desc, 62 opivx2_fn fn, uint32_t esz) 63 { 64 uint32_t vm = vext_vm(desc); 65 uint32_t vl = env->vl; 66 uint32_t total_elems = vext_get_total_elems(env, desc, esz); 67 uint32_t vta = vext_vta(desc); 68 uint32_t vma = vext_vma(desc); 69 uint32_t i; 70 71 for (i = env->vstart; i < vl; i++) { 72 if (!vm && !vext_elem_mask(v0, i)) { 73 /* set masked-off elements to 1s */ 74 vext_set_elems_1s(vd, vma, i * esz, (i + 1) * esz); 75 continue; 76 } 77 fn(vd, s1, vs2, i); 78 } 79 env->vstart = 0; 80 /* set tail elements to 1s */ 81 vext_set_elems_1s(vd, vta, vl * esz, total_elems * esz); 82 } 83