]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 12 May 2023 14:43:37 +0000 (15:43 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 12 May 2023 14:43:37 +0000 (15:43 +0100)
While we cannot move the main "helper.h" out of target/arm/,
due to usage by generic code, we can move the sub-includes.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Fabiano Rosas <farosas@suse.de>
Message-id: 20230504110412.1892411-3-richard.henderson@linaro.org
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target/arm/helper.h
target/arm/tcg/helper-a64.h [moved from target/arm/helper-a64.h with 100% similarity]
target/arm/tcg/helper-mve.h [moved from target/arm/helper-mve.h with 100% similarity]
target/arm/tcg/helper-sme.h [moved from target/arm/helper-sme.h with 100% similarity]
target/arm/tcg/helper-sve.h [moved from target/arm/helper-sve.h with 100% similarity]

index 018b00ea75bf849ce24602df92ecda530cacfe88..3335c2b10b9307c864c94ee862f094abad076719 100644 (file)
@@ -1039,9 +1039,9 @@ DEF_HELPER_FLAGS_5(gvec_uclamp_d, TCG_CALL_NO_RWG,
                    void, ptr, ptr, ptr, ptr, i32)
 
 #ifdef TARGET_AARCH64
-#include "helper-a64.h"
-#include "helper-sve.h"
-#include "helper-sme.h"
+#include "tcg/helper-a64.h"
+#include "tcg/helper-sve.h"
+#include "tcg/helper-sme.h"
 #endif
 
-#include "helper-mve.h"
+#include "tcg/helper-mve.h"