diff options
| -rw-r--r-- | meta/recipes-devtools/valgrind/valgrind/avoid-neon-for-targets-which-don-t-support-it.patch | 33 | ||||
| -rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/avoid-neon-for-targets-which-don-t-support-it.patch b/meta/recipes-devtools/valgrind/valgrind/avoid-neon-for-targets-which-don-t-support-it.patch new file mode 100644 index 0000000000..5fcfec0015 --- /dev/null +++ b/meta/recipes-devtools/valgrind/valgrind/avoid-neon-for-targets-which-don-t-support-it.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | From 8facc29c3c56e6cf9cfef70986cf73876044a3fb Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
| 3 | Date: Tue, 19 Jan 2016 16:42:36 -0800 | ||
| 4 | Subject: [PATCH] avoid neon for targets which don't support it | ||
| 5 | |||
| 6 | The sh-mem-random.c test app tries to use neon loads and stores to | ||
| 7 | test 64-bit float copies when building for ARM. Allow it to do so if | ||
| 8 | possible, but fallback to C when building for ARM targets which don't | ||
| 9 | support neon. | ||
| 10 | |||
| 11 | Upstream-Status: Pending | ||
| 12 | |||
| 13 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
| 14 | --- | ||
| 15 | memcheck/tests/sh-mem-random.c | 2 +- | ||
| 16 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/memcheck/tests/sh-mem-random.c b/memcheck/tests/sh-mem-random.c | ||
| 19 | index ae82248..816e139 100644 | ||
| 20 | --- a/memcheck/tests/sh-mem-random.c | ||
| 21 | +++ b/memcheck/tests/sh-mem-random.c | ||
| 22 | @@ -191,7 +191,7 @@ void do_test_at ( U1* arr ) | ||
| 23 | "emms" | ||
| 24 | : : "r"(arr+dst), "r"(arr+src) : "memory" | ||
| 25 | ); | ||
| 26 | -#elif defined(__linux__) && defined(__arm__) && !defined(__aarch64__) | ||
| 27 | +#elif defined(__linux__) && defined(__arm__) && defined(__ARM_NEON__) && !defined(__aarch64__) | ||
| 28 | /* On arm32, many compilers generate a 64-bit float move | ||
| 29 | using two 32 bit integer registers, which completely | ||
| 30 | defeats this test. Hence force a 64-bit NEON load and | ||
| 31 | -- | ||
| 32 | 1.9.1 | ||
| 33 | |||
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb index 4f7c39a7bc..7ef1e48bda 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | |||
| @@ -22,6 +22,7 @@ SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \ | |||
| 22 | file://0005-Modify-vg_test-wrapper-to-support-PTEST-formats.patch \ | 22 | file://0005-Modify-vg_test-wrapper-to-support-PTEST-formats.patch \ |
| 23 | file://0001-Remove-tests-that-fail-to-build-on-some-PPC32-config.patch \ | 23 | file://0001-Remove-tests-that-fail-to-build-on-some-PPC32-config.patch \ |
| 24 | file://use-appropriate-march-mcpu-mfpu-for-ARM-test-apps.patch \ | 24 | file://use-appropriate-march-mcpu-mfpu-for-ARM-test-apps.patch \ |
| 25 | file://avoid-neon-for-targets-which-don-t-support-it.patch \ | ||
| 25 | " | 26 | " |
| 26 | 27 | ||
| 27 | SRC_URI[md5sum] = "4ea62074da73ae82e0162d6550d3f129" | 28 | SRC_URI[md5sum] = "4ea62074da73ae82e0162d6550d3f129" |
