summaryrefslogtreecommitdiff
path: root/user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch
diff options
context:
space:
mode:
authorDan Theisen <djt@hxx.in>2018-06-09 03:16:12 -0700
committerDan Theisen <djt@hxx.in>2018-06-09 03:17:48 -0700
commit0b9e930043cefb129176959b37a587869d64ffea (patch)
tree7b01329967757f01eb191e704be8d43b16822f5e /user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch
parent01c8ec5045e37155b989d01314254a234e36d5c6 (diff)
downloadpackages-0b9e930043cefb129176959b37a587869d64ffea.tar.gz
packages-0b9e930043cefb129176959b37a587869d64ffea.tar.bz2
packages-0b9e930043cefb129176959b37a587869d64ffea.tar.xz
packages-0b9e930043cefb129176959b37a587869d64ffea.zip
user/libmad: import, add support for ARM Thumb mode
Diffstat (limited to 'user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch')
-rw-r--r--user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch b/user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch
new file mode 100644
index 000000000..46415107d
--- /dev/null
+++ b/user/libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.patch
@@ -0,0 +1,34 @@
+From: Dave Martin
+Subject: "rsc" doesnt exist anymore in thumb2
+
+diff --git a/fixed.h b/fixed.h
+index 4b58abf..ba4bc26 100644
+--- a/fixed.h
++++ b/fixed.h
+@@ -275,12 +275,25 @@ mad_fixed_t mad_f_mul_inline(mad_fixed_t x, mad_fixed_t y)
+ : "+r" (lo), "+r" (hi) \
+ : "%r" (x), "r" (y))
+
++#ifdef __thumb__
++/* In Thumb-2, the RSB-immediate instruction is only allowed with a zero
++ operand. If needed this code can also support Thumb-1
++ (simply append "s" to the end of the second two instructions). */
++# define MAD_F_MLN(hi, lo) \
++ asm ("rsbs %0, %0, #0\n\t" \
++ "sbc %1, %1, %1\n\t" \
++ "sub %1, %1, %2" \
++ : "+&r" (lo), "=&r" (hi) \
++ : "r" (hi) \
++ : "cc")
++#else /* ! __thumb__ */
+ # define MAD_F_MLN(hi, lo) \
+ asm ("rsbs %0, %2, #0\n\t" \
+ "rsc %1, %3, #0" \
+- : "=r" (lo), "=r" (hi) \
++ : "=&r" (lo), "=r" (hi) \
+ : "0" (lo), "1" (hi) \
+ : "cc")
++#endif /* __thumb__ */
+
+ # define mad_f_scale64(hi, lo) \
+ ({ mad_fixed_t __result; \