mirror of https://github.com/xemu-project/xemu.git
target/loongarch: Renamed lsx*.c to vec* .c
Renamed lsx_helper.c to vec_helper.c and trans_lsx.c.inc to trans_vec.c.inc So LASX can used them. Signed-off-by: Song Gao <gaosong@loongson.cn> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230914022645.1151356-2-gaosong@loongson.cn>
This commit is contained in:
parent
4907644841
commit
1dc33f2653
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
/*
|
/*
|
||||||
* LSX translate functions
|
* LoongArch vector translate functions
|
||||||
* Copyright (c) 2022-2023 Loongson Technology Corporation Limited
|
* Copyright (c) 2022-2023 Loongson Technology Corporation Limited
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@ loongarch_tcg_ss.add(files(
|
||||||
'op_helper.c',
|
'op_helper.c',
|
||||||
'translate.c',
|
'translate.c',
|
||||||
'gdbstub.c',
|
'gdbstub.c',
|
||||||
'lsx_helper.c',
|
'vec_helper.c',
|
||||||
))
|
))
|
||||||
loongarch_tcg_ss.add(zlib)
|
loongarch_tcg_ss.add(zlib)
|
||||||
|
|
||||||
|
|
|
@ -261,7 +261,7 @@ static uint64_t make_address_pc(DisasContext *ctx, uint64_t addr)
|
||||||
#include "insn_trans/trans_fmemory.c.inc"
|
#include "insn_trans/trans_fmemory.c.inc"
|
||||||
#include "insn_trans/trans_branch.c.inc"
|
#include "insn_trans/trans_branch.c.inc"
|
||||||
#include "insn_trans/trans_privileged.c.inc"
|
#include "insn_trans/trans_privileged.c.inc"
|
||||||
#include "insn_trans/trans_lsx.c.inc"
|
#include "insn_trans/trans_vec.c.inc"
|
||||||
|
|
||||||
static void loongarch_tr_translate_insn(DisasContextBase *dcbase, CPUState *cs)
|
static void loongarch_tr_translate_insn(DisasContextBase *dcbase, CPUState *cs)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||||
/*
|
/*
|
||||||
* QEMU LoongArch LSX helper functions.
|
* QEMU LoongArch vector helper functions.
|
||||||
*
|
*
|
||||||
* Copyright (c) 2022-2023 Loongson Technology Corporation Limited
|
* Copyright (c) 2022-2023 Loongson Technology Corporation Limited
|
||||||
*/
|
*/
|
Loading…
Reference in New Issue