mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
target/arm/tcg/vfp_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-49-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
c0b623cb1c
commit
9eb5427ac0
2 changed files with 5 additions and 2 deletions
|
@ -34,7 +34,6 @@ arm_ss.add(files(
|
||||||
'mve_helper.c',
|
'mve_helper.c',
|
||||||
'op_helper.c',
|
'op_helper.c',
|
||||||
'vec_helper.c',
|
'vec_helper.c',
|
||||||
'vfp_helper.c',
|
|
||||||
))
|
))
|
||||||
|
|
||||||
arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
|
arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
|
||||||
|
@ -68,10 +67,12 @@ arm_common_system_ss.add(files(
|
||||||
'neon_helper.c',
|
'neon_helper.c',
|
||||||
'tlb_helper.c',
|
'tlb_helper.c',
|
||||||
'tlb-insns.c',
|
'tlb-insns.c',
|
||||||
|
'vfp_helper.c',
|
||||||
))
|
))
|
||||||
arm_user_ss.add(files(
|
arm_user_ss.add(files(
|
||||||
'hflags.c',
|
'hflags.c',
|
||||||
'iwmmxt_helper.c',
|
'iwmmxt_helper.c',
|
||||||
'neon_helper.c',
|
'neon_helper.c',
|
||||||
'tlb_helper.c',
|
'tlb_helper.c',
|
||||||
|
'vfp_helper.c',
|
||||||
))
|
))
|
||||||
|
|
|
@ -19,12 +19,14 @@
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "exec/helper-proto.h"
|
|
||||||
#include "internals.h"
|
#include "internals.h"
|
||||||
#include "cpu-features.h"
|
#include "cpu-features.h"
|
||||||
#include "fpu/softfloat.h"
|
#include "fpu/softfloat.h"
|
||||||
#include "qemu/log.h"
|
#include "qemu/log.h"
|
||||||
|
|
||||||
|
#define HELPER_H "tcg/helper.h"
|
||||||
|
#include "exec/helper-proto.h.inc"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set the float_status behaviour to match the Arm defaults:
|
* Set the float_status behaviour to match the Arm defaults:
|
||||||
* * tininess-before-rounding
|
* * tininess-before-rounding
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue