2 * Copyright (c) 2009 Loren Merritt
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #define GLUE(a, b) a ## b
24 #define JOIN(a, b) GLUE(a, b)
25 #define X(s) JOIN(EXTERN_ASM, s)
35 #define L(s) JOIN(., s)
42 addis %r2, %r12, .TOC.-X(\name)@ha
43 addi %r2, %r2, .TOC.-X(\name)@l
44 .localentry X(\name), .-X(\name)
48 .quad L(\name), .TOC.@tocbase, 0
50 .type X(\name), STT_FUNC
55 .macro movrel rd, sym, gp
62 #else /* ARCH_PPC64 */
74 .type X(\name), STT_FUNC
79 .macro movrel rd, sym, gp
81 lwz \rd, \sym@got(\gp)
93 addis \rd, \rd, _GLOBAL_OFFSET_TABLE_ - .Lgot\@@ha
94 addi \rd, \rd, _GLOBAL_OFFSET_TABLE_ - .Lgot\@@l
98 #endif /* ARCH_PPC64 */
141 #endif /* HAVE_IBM_ASM */