Commit 9e22f62e0db9995d62bd0ecf3008c15754618634

Ozkan Sezer 2020-12-28T11:50:02

arm64 implementations of SDL_Swap16/32 (bug #5419.) patch from David Carlier.

diff --git a/include/SDL_endian.h b/include/SDL_endian.h
index 171c008..b11a83a 100644
--- a/include/SDL_endian.h
+++ b/include/SDL_endian.h
@@ -92,6 +92,13 @@ SDL_Swap16(Uint16 x)
   __asm__("rlwimi %0,%2,8,16,23": "=&r"(result):"0"(x >> 8), "r"(x));
     return (Uint16)result;
 }
+#elif defined(__GNUC__) && defined(__aarch64__)
+SDL_FORCE_INLINE Uint16
+SDL_Swap16(Uint16 x)
+{
+  __asm__("rev16 %w1, %w0" : "=r"(x) : "r"(x));
+  return x;
+}
 #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__)
 SDL_FORCE_INLINE Uint16
 SDL_Swap16(Uint16 x)
@@ -138,6 +145,13 @@ SDL_Swap32(Uint32 x)
   __asm__("rlwimi %0,%2,24,0,7": "=&r"(result):"0"(result), "r"(x));
     return result;
 }
+#elif defined(__GNUC__) && defined(__aarch64__)
+SDL_FORCE_INLINE Uint32
+SDL_Swap32(Uint32 x)
+{
+  __asm__("rev %w1, %w0": "=r"(x):"r"(x));
+  return x;
+}
 #elif defined(__GNUC__) && (defined(__M68000__) || defined(__M68020__)) && !defined(__mcoldfire__)
 SDL_FORCE_INLINE Uint32
 SDL_Swap32(Uint32 x)