Commit 5e826fd6 authored by Mans Rullgard's avatar Mans Rullgard

ARM: set Tag_ABI_align_preserved in all asm files

All our ARM asm preserves alignment so setting this attribute
in a common location is simpler.  This removes numerous warnings
when linking with armcc.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 7bda4ed7
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "config.h" #include "config.h"
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
#if HAVE_ARMV5TE #if HAVE_ARMV5TE
function ff_prefetch_arm, export=1 function ff_prefetch_arm, export=1
subs r2, r2, #1 subs r2, r2, #1
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
.macro call_2x_pixels type, subp .macro call_2x_pixels type, subp
function ff_\type\()_pixels16\subp\()_armv6, export=1 function ff_\type\()_pixels16\subp\()_armv6, export=1
push {r0-r3, lr} push {r0-r3, lr}
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "config.h" #include "config.h"
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
function ff_clear_block_neon, export=1 function ff_clear_block_neon, export=1
vmov.i16 q0, #0 vmov.i16 q0, #0
.rept 8 .rept 8
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "config.h" #include "config.h"
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
function ff_float_to_int16_neon, export=1 function ff_float_to_int16_neon, export=1
subs r2, r2, #8 subs r2, r2, #8
vld1.64 {d0-d1}, [r1,:128]! vld1.64 {d0-d1}, [r1,:128]!
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
function ff_h264_idct_add_neon, export=1 function ff_h264_idct_add_neon, export=1
vld1.64 {d0-d3}, [r1,:128] vld1.64 {d0-d3}, [r1,:128]
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
.fpu neon .fpu neon
function ff_scalarproduct_int16_neon, export=1 function ff_scalarproduct_int16_neon, export=1
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
.macro prerot dst, rt .macro prerot dst, rt
lsr r3, r6, #2 @ n4 lsr r3, r6, #2 @ n4
add \rt, r4, r6, lsr #1 @ revtab + n4 add \rt, r4, r6, lsr #1 @ revtab + n4
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
#define ff_fft_calc_neon X(ff_fft_calc_neon) #define ff_fft_calc_neon X(ff_fft_calc_neon)
function ff_imdct_half_neon, export=1 function ff_imdct_half_neon, export=1
......
...@@ -21,8 +21,6 @@ ...@@ -21,8 +21,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
function ff_rdft_calc_neon, export=1 function ff_rdft_calc_neon, export=1
push {r4-r8,lr} push {r4-r8,lr}
......
...@@ -20,8 +20,6 @@ ...@@ -20,8 +20,6 @@
#include "libavutil/arm/asm.S" #include "libavutil/arm/asm.S"
preserve8
function ff_synth_filter_float_neon, export=1 function ff_synth_filter_float_neon, export=1
push {r3-r11,lr} push {r3-r11,lr}
......
...@@ -52,14 +52,7 @@ ...@@ -52,14 +52,7 @@
.syntax unified .syntax unified
T .thumb T .thumb
ELF .eabi_attribute Tag_ABI_align_preserved, 1
.macro require8 val=1
ELF .eabi_attribute 24, \val
.endm
.macro preserve8 val=1
ELF .eabi_attribute 25, \val
.endm
.macro function name, export=0 .macro function name, export=0
.set .Lpic_idx, 0 .set .Lpic_idx, 0
......
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "config.h" #include "config.h"
#include "asm.S" #include "asm.S"
preserve8
function ff_vector_fmul_neon, export=1 function ff_vector_fmul_neon, export=1
subs r3, r3, #8 subs r3, r3, #8
vld1.32 {d0-d3}, [r1,:128]! vld1.32 {d0-d3}, [r1,:128]!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment