2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 ; Use of this source code is governed by a BSD-style license
5 ; that can be found in the LICENSE file in the root of the source
6 ; tree. An additional intellectual property rights grant can be found
7 ; in the file PATENTS. All contributing project authors may
8 ; be found in the AUTHORS file in the root of the source tree.
12 %include "vpx_config.asm"
14 ; 32/64 bit compatibility macros
16 ; In general, we make the source use 64 bit syntax, then twiddle with it using
17 ; the preprocessor to get the 32 bit syntax on 32 bit platforms.
19 %ifidn __OUTPUT_FORMAT__,elf32
20 %define ABI_IS_32BIT 1
21 %elifidn __OUTPUT_FORMAT__,macho32
22 %define ABI_IS_32BIT 1
23 %elifidn __OUTPUT_FORMAT__,win32
24 %define ABI_IS_32BIT 1
26 %define ABI_IS_32BIT 0
80 ; Return the proper symbol name for the target ABI.
82 ; Certain ABIs, notably MS COFF and Darwin MACH-O, require that symbols
83 ; with C linkage be prefixed with an underscore.
85 %ifidn __OUTPUT_FORMAT__,elf32
87 %elifidn __OUTPUT_FORMAT__,elf64
89 %elifidn __OUTPUT_FORMAT__,x64
96 ; Return the address specification of the given argument
99 %define arg(x) [ebp+8+4*x]
101 ; 64 bit ABI passes arguments in registers. This is a workaround to get up
102 ; and running quickly. Relies on SHADOW_ARGS_TO_STACK
103 %ifidn __OUTPUT_FORMAT__,x64
104 %define arg(x) [rbp+16+8*x]
106 %define arg(x) [rbp-8-8*x]
110 ; REG_SZ_BYTES, REG_SZ_BITS
113 %define REG_SZ_BYTES 4
114 %define REG_SZ_BITS 32
116 %define REG_SZ_BYTES 8
117 %define REG_SZ_BITS 64
121 ; ALIGN_STACK <alignment> <register>
122 ; This macro aligns the stack to the given alignment (in bytes). The stack
123 ; is left such that the previous value of the stack pointer is the first
124 ; argument on the stack (ie, the inverse of this macro is 'pop rsp.')
125 ; This macro uses one temporary register, which is not preserved, and thus
126 ; must be specified as an argument.
130 lea rsp, [rsp - (%1 - REG_SZ_BYTES)]
136 ; The Microsoft assembler tries to impose a certain amount of type safety in
137 ; its register usage. YASM doesn't recognize these directives, so we just
138 ; %define them away to maintain as much compatibility as possible with the
139 ; original inline assembler we're porting from.
149 %ifidn __OUTPUT_FORMAT__,elf32
150 %define GET_GOT_SAVE_ARG 1
151 %define WRT_PLT wrt ..plt
153 extern _GLOBAL_OFFSET_TABLE_
160 add %1, _GLOBAL_OFFSET_TABLE_ + $$ - %%sub_offset wrt ..gotpc
164 %define GLOBAL(x) x + %1 wrt ..gotoff
166 %define RESTORE_GOT pop %1
168 %elifidn __OUTPUT_FORMAT__,macho32
169 %define GET_GOT_SAVE_ARG 1
176 %define GLOBAL(x) x + %1 - %%get_got
178 %define RESTORE_GOT pop %1
182 %define HIDDEN_DATA(x) x
186 %define GLOBAL(x) rel x
187 %ifidn __OUTPUT_FORMAT__,elf64
188 %define WRT_PLT wrt ..plt
189 %define HIDDEN_DATA(x) x:data hidden
191 %define HIDDEN_DATA(x) x
207 %macro SHADOW_ARGS_TO_STACK 1
209 %define UNSHADOW_ARGS
211 %ifidn __OUTPUT_FORMAT__,x64
212 %macro SHADOW_ARGS_TO_STACK 1 ; argc
227 %macro SHADOW_ARGS_TO_STACK 1 ; argc
257 %define UNSHADOW_ARGS mov rsp, rbp
260 ; Win64 ABI requires that XMM6:XMM15 are callee saved
262 ; store registers 6-n on the stack
263 ; if u is specified, use unaligned movs.
264 ; Win64 ABI requires 16 byte stack alignment, but then pushes an 8 byte return
265 ; value. Typically we follow this up with 'push rbp' - re-aligning the stack -
266 ; but in some cases this is not done and unaligned movs must be used.
267 %ifidn __OUTPUT_FORMAT__,x64
268 %macro SAVE_XMM 1-2 a
270 %error Only xmm registers 6-15 must be preserved
273 %define movxmm movdq %+ %2
274 %assign xmm_stack_space ((last_xmm - 5) * 16)
275 sub rsp, xmm_stack_space
278 movxmm [rsp + ((i - 6) * 16)], xmm %+ i
285 %error RESTORE_XMM must be paired with SAVE_XMM n
289 movxmm xmm %+ i, [rsp +((i - 6) * 16)]
292 add rsp, xmm_stack_space
293 ; there are a couple functions which return from multiple places.
294 ; otherwise, we could uncomment these:
296 ; %undef xmm_stack_space
307 ; Name of the rodata section
309 ; .rodata seems to be an elf-ism, as it doesn't work on OSX.
311 %ifidn __OUTPUT_FORMAT__,macho64
312 %define SECTION_RODATA section .text
313 %elifidn __OUTPUT_FORMAT__,macho32
314 %macro SECTION_RODATA 0
318 %define SECTION_RODATA section .rodata
322 ; Tell GNU ld that we don't require an executable stack.
323 %ifidn __OUTPUT_FORMAT__,elf32
324 section .note.GNU-stack noalloc noexec nowrite progbits
326 %elifidn __OUTPUT_FORMAT__,elf64
327 section .note.GNU-stack noalloc noexec nowrite progbits