1*82f8b3dcSTaylor Simpson /* 2*82f8b3dcSTaylor Simpson * Copyright(c) 2019-2021 Qualcomm Innovation Center, Inc. All Rights Reserved. 3*82f8b3dcSTaylor Simpson * 4*82f8b3dcSTaylor Simpson * This program is free software; you can redistribute it and/or modify 5*82f8b3dcSTaylor Simpson * it under the terms of the GNU General Public License as published by 6*82f8b3dcSTaylor Simpson * the Free Software Foundation; either version 2 of the License, or 7*82f8b3dcSTaylor Simpson * (at your option) any later version. 8*82f8b3dcSTaylor Simpson * 9*82f8b3dcSTaylor Simpson * This program is distributed in the hope that it will be useful, 10*82f8b3dcSTaylor Simpson * but WITHOUT ANY WARRANTY; without even the implied warranty of 11*82f8b3dcSTaylor Simpson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12*82f8b3dcSTaylor Simpson * GNU General Public License for more details. 13*82f8b3dcSTaylor Simpson * 14*82f8b3dcSTaylor Simpson * You should have received a copy of the GNU General Public License 15*82f8b3dcSTaylor Simpson * along with this program; if not, see <http://www.gnu.org/licenses/>. 16*82f8b3dcSTaylor Simpson */ 17*82f8b3dcSTaylor Simpson 18*82f8b3dcSTaylor Simpson #ifndef HEXAGON_SYSTEM_EXT_MMVEC_H 19*82f8b3dcSTaylor Simpson #define HEXAGON_SYSTEM_EXT_MMVEC_H 20*82f8b3dcSTaylor Simpson 21*82f8b3dcSTaylor Simpson void mem_gather_store(CPUHexagonState *env, target_ulong vaddr, int slot); 22*82f8b3dcSTaylor Simpson void mem_vector_scatter_init(CPUHexagonState *env); 23*82f8b3dcSTaylor Simpson void mem_vector_gather_init(CPUHexagonState *env); 24*82f8b3dcSTaylor Simpson 25*82f8b3dcSTaylor Simpson #endif 26