2013-12-10 19:13:32 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Mans Rullgard <mans@mansr.com>
|
|
|
|
*
|
2014-01-15 13:41:41 +00:00
|
|
|
* This file is part of FFmpeg.
|
2013-12-10 19:13:32 +00:00
|
|
|
*
|
2014-01-15 13:41:41 +00:00
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2013-12-10 19:13:32 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
2014-01-15 13:41:41 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2013-12-10 19:13:32 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2014-01-15 13:41:41 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2013-12-10 19:13:32 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#ifdef __ELF__
|
|
|
|
# define ELF
|
|
|
|
#else
|
2014-05-30 14:57:44 +00:00
|
|
|
# define ELF #
|
2013-12-10 19:13:32 +00:00
|
|
|
#endif
|
|
|
|
|
2014-05-30 07:58:43 +00:00
|
|
|
#if HAVE_AS_FUNC
|
|
|
|
# define FUNC
|
|
|
|
#else
|
|
|
|
# define FUNC #
|
|
|
|
#endif
|
|
|
|
|
2013-12-10 19:13:32 +00:00
|
|
|
.macro function name, export=0, align=2
|
|
|
|
.macro endfunc
|
|
|
|
ELF .size \name, . - \name
|
2014-05-30 07:58:43 +00:00
|
|
|
FUNC .endfunc
|
2013-12-10 19:13:32 +00:00
|
|
|
.purgem endfunc
|
|
|
|
.endm
|
|
|
|
.text
|
|
|
|
.align \align
|
|
|
|
.if \export
|
|
|
|
.global EXTERN_ASM\name
|
2014-02-07 15:05:50 +00:00
|
|
|
ELF .type EXTERN_ASM\name, %function
|
2014-05-30 07:58:43 +00:00
|
|
|
FUNC .func EXTERN_ASM\name
|
2013-12-10 19:13:32 +00:00
|
|
|
EXTERN_ASM\name:
|
2014-02-07 15:05:50 +00:00
|
|
|
.else
|
2013-12-10 19:13:32 +00:00
|
|
|
ELF .type \name, %function
|
2014-05-30 07:58:43 +00:00
|
|
|
FUNC .func \name
|
2013-12-10 19:13:32 +00:00
|
|
|
\name:
|
2014-02-07 15:05:50 +00:00
|
|
|
.endif
|
2013-12-10 19:13:32 +00:00
|
|
|
.endm
|
|
|
|
|
2014-11-16 10:52:21 +00:00
|
|
|
.macro const name, align=2, relocate=0
|
2013-12-10 19:13:32 +00:00
|
|
|
.macro endconst
|
|
|
|
ELF .size \name, . - \name
|
|
|
|
.purgem endconst
|
|
|
|
.endm
|
2014-11-16 10:52:21 +00:00
|
|
|
#if HAVE_SECTION_DATA_REL_RO
|
|
|
|
.if \relocate
|
|
|
|
.section .data.rel.ro
|
|
|
|
.else
|
|
|
|
.section .rodata
|
|
|
|
.endif
|
|
|
|
#elif !defined(__MACH__)
|
2013-12-10 19:13:32 +00:00
|
|
|
.section .rodata
|
2014-07-23 08:06:15 +00:00
|
|
|
#else
|
|
|
|
.const_data
|
|
|
|
#endif
|
2013-12-10 19:13:32 +00:00
|
|
|
.align \align
|
|
|
|
\name:
|
|
|
|
.endm
|
|
|
|
|
2016-11-14 10:32:24 +00:00
|
|
|
.macro movrel rd, val, offset=0
|
2014-06-01 13:50:42 +00:00
|
|
|
#if CONFIG_PIC && defined(__APPLE__)
|
2016-11-14 10:32:24 +00:00
|
|
|
.if \offset < 0
|
2014-06-01 13:50:42 +00:00
|
|
|
adrp \rd, \val@PAGE
|
|
|
|
add \rd, \rd, \val@PAGEOFF
|
2016-11-14 10:32:24 +00:00
|
|
|
sub \rd, \rd, -(\offset)
|
|
|
|
.else
|
|
|
|
adrp \rd, \val+(\offset)@PAGE
|
|
|
|
add \rd, \rd, \val+(\offset)@PAGEOFF
|
|
|
|
.endif
|
2014-06-01 13:50:42 +00:00
|
|
|
#elif CONFIG_PIC
|
2017-02-16 07:18:25 +00:00
|
|
|
adrp \rd, \val+(\offset)
|
|
|
|
add \rd, \rd, :lo12:\val+(\offset)
|
2013-12-10 19:13:32 +00:00
|
|
|
#else
|
2016-11-14 10:32:24 +00:00
|
|
|
ldr \rd, =\val+\offset
|
2013-12-10 19:13:32 +00:00
|
|
|
#endif
|
|
|
|
.endm
|
2014-02-07 15:05:50 +00:00
|
|
|
|
|
|
|
#define GLUE(a, b) a ## b
|
|
|
|
#define JOIN(a, b) GLUE(a, b)
|
|
|
|
#define X(s) JOIN(EXTERN_ASM, s)
|