mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -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:
committed by
Peter Maydell
parent
d5f8252cd1
commit
b586c86a8e
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user