mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-24 00:18:36 -07:00
target/arm/tcg/neon_helper: compile file twice (system, user)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-id: 20250512180502.2395029-44-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
d5f8252cd1
commit
b586c86a8e
2 changed files with 5 additions and 2 deletions
|
|
@ -32,7 +32,6 @@ arm_ss.add(files(
|
|||
'translate-vfp.c',
|
||||
'm_helper.c',
|
||||
'mve_helper.c',
|
||||
'neon_helper.c',
|
||||
'op_helper.c',
|
||||
'tlb_helper.c',
|
||||
'vec_helper.c',
|
||||
|
|
@ -68,8 +67,10 @@ arm_common_ss.add(files(
|
|||
arm_common_system_ss.add(files(
|
||||
'hflags.c',
|
||||
'iwmmxt_helper.c',
|
||||
'neon_helper.c',
|
||||
))
|
||||
arm_user_ss.add(files(
|
||||
'hflags.c',
|
||||
'iwmmxt_helper.c',
|
||||
'neon_helper.c',
|
||||
))
|
||||
|
|
|
|||
|
|
@ -9,11 +9,13 @@
|
|||
|
||||
#include "qemu/osdep.h"
|
||||
#include "cpu.h"
|
||||
#include "exec/helper-proto.h"
|
||||
#include "tcg/tcg-gvec-desc.h"
|
||||
#include "fpu/softfloat.h"
|
||||
#include "vec_internal.h"
|
||||
|
||||
#define HELPER_H "tcg/helper.h"
|
||||
#include "exec/helper-proto.h.inc"
|
||||
|
||||
#define SIGNBIT (uint32_t)0x80000000
|
||||
#define SIGNBIT64 ((uint64_t)1 << 63)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue