]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/arm/asm.S
ARM: use plain labels for pc-relative addressing
[ffmpeg] / libavcodec / arm / asm.S
index e2595f4789bc25652d097717d6a94349d448be95..0fbd641dc3a9939e92e0aeaa46f46c2595e171d0 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include "config.h"
+
+#ifdef __ELF__
+#   define ELF
+#else
+#   define ELF @
+#endif
+
         .macro require8, val=1
-        .eabi_attribute 24, \val
+ELF     .eabi_attribute 24, \val
         .endm
 
         .macro preserve8, val=1
-        .eabi_attribute 25, \val
+ELF     .eabi_attribute 25, \val
         .endm
 
         .macro function name, export=0
 .if \export
-        .global \name
+        .global EXTERN_ASM\name
+EXTERN_ASM\name:
 .endif
-        .type   \name, %function
+ELF     .type   \name, %function
         .func   \name
 \name:
         .endm
+
+        .macro movrel rd, val
+#if HAVE_ARMV6T2 && !CONFIG_SHARED && !CONFIG_PIC
+        movw            \rd, #:lower16:\val
+        movt            \rd, #:upper16:\val
+#else
+        ldr             \rd, =\val
+#endif
+        .endm
+
+#if HAVE_VFP_ARGS
+        .eabi_attribute 28, 1
+#   define VFP
+#   define NOVFP @
+#else
+#   define VFP   @
+#   define NOVFP
+#endif
+
+#define GLUE(a, b) a ## b
+#define JOIN(a, b) GLUE(a, b)
+#define X(s) JOIN(EXTERN_ASM, s)