Mercurial > libavcodec.hg
annotate x86/x86inc.asm @ 10027:652e08aa95fd libavcodec
cosmetics: move fixed_coeffs into the aligned arrays comment group
author | jbr |
---|---|
date | Wed, 05 Aug 2009 02:37:49 +0000 |
parents | c08ca946c80a |
children | 12c8175d6db5 |
rev | line source |
---|---|
8430 | 1 ;***************************************************************************** |
2 ;* x86inc.asm | |
3 ;***************************************************************************** | |
4 ;* Copyright (C) 2005-2008 Loren Merritt <lorenm@u.washington.edu> | |
5 ;* | |
6 ;* This file is part of FFmpeg. | |
7 ;* | |
8 ;* FFmpeg is free software; you can redistribute it and/or | |
9 ;* modify it under the terms of the GNU Lesser General Public | |
10 ;* License as published by the Free Software Foundation; either | |
11 ;* version 2.1 of the License, or (at your option) any later version. | |
12 ;* | |
13 ;* FFmpeg is distributed in the hope that it will be useful, | |
14 ;* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 ;* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 ;* Lesser General Public License for more details. | |
17 ;* | |
18 ;* You should have received a copy of the GNU Lesser General Public | |
19 ;* License along with FFmpeg; if not, write to the Free Software | |
20 ;* 51, Inc., Foundation Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
21 ;***************************************************************************** | |
22 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
23 %ifdef ARCH_X86_64 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
24 %ifidn __OUTPUT_FORMAT__,win32 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
25 %define WIN64 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
26 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
27 %define UNIX64 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
28 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
29 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
30 |
8430 | 31 ; FIXME: All of the 64bit asm functions that take a stride as an argument |
32 ; via register, assume that the high dword of that register is filled with 0. | |
33 ; This is true in practice (since we never do any 64bit arithmetic on strides, | |
34 ; and x264's strides are all positive), but is not guaranteed by the ABI. | |
35 | |
36 ; Name of the .rodata section. | |
37 ; Kludge: Something on OS X fails to align .rodata even given an align attribute, | |
38 ; so use a different read-only section. | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
39 %macro SECTION_RODATA 0-1 16 |
8430 | 40 %ifidn __OUTPUT_FORMAT__,macho64 |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
41 SECTION .text align=%1 |
8430 | 42 %elifidn __OUTPUT_FORMAT__,macho |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
43 SECTION .text align=%1 |
8430 | 44 fakegot: |
45 %else | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
46 SECTION .rodata align=%1 |
8430 | 47 %endif |
48 %endmacro | |
49 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
50 ; PIC support macros. |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
51 ; x86_64 can't fit 64bit address literals in most instruction types, |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
52 ; so shared objects (under the assumption that they might be anywhere |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
53 ; in memory) must use an address mode that does fit. |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
54 ; So all accesses to global variables must use this macro, e.g. |
8430 | 55 ; mov eax, [foo GLOBAL] |
56 ; instead of | |
57 ; mov eax, [foo] | |
58 ; | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
59 ; x86_32 doesn't require PIC. |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
60 ; Some distros prefer shared objects to be PIC, but nothing breaks if |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
61 ; the code contains a few textrels, so we'll skip that complexity. |
8430 | 62 |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
63 %ifdef WIN64 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
64 %define PIC |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
65 %elifndef ARCH_X86_64 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
66 %undef PIC |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
67 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
68 %ifdef PIC |
8430 | 69 %define GLOBAL wrt rip |
70 %else | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
71 %define GLOBAL |
8430 | 72 %endif |
73 | |
74 ; Macros to eliminate most code duplication between x86_32 and x86_64: | |
75 ; Currently this works only for leaf functions which load all their arguments | |
76 ; into registers at the start, and make no other use of the stack. Luckily that | |
77 ; covers most of x264's asm. | |
78 | |
79 ; PROLOGUE: | |
80 ; %1 = number of arguments. loads them from stack if needed. | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
81 ; %2 = number of registers used. pushes callee-saved regs if needed. |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
82 ; %3 = number of xmm registers used. pushes callee-saved xmm regs if needed. |
8430 | 83 ; %4 = list of names to define to registers |
84 ; PROLOGUE can also be invoked by adding the same options to cglobal | |
85 | |
86 ; e.g. | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
87 ; cglobal foo, 2,3, dst, src, tmp |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
88 ; declares a function (foo), taking two args (dst and src) and one local variable (tmp) |
8430 | 89 |
90 ; TODO Some functions can use some args directly from the stack. If they're the | |
91 ; last args then you can just not declare them, but if they're in the middle | |
92 ; we need more flexible macro. | |
93 | |
94 ; RET: | |
95 ; Pops anything that was pushed by PROLOGUE | |
96 | |
97 ; REP_RET: | |
98 ; Same, but if it doesn't pop anything it becomes a 2-byte ret, for athlons | |
99 ; which are slow when a normal ret follows a branch. | |
100 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
101 ; registers: |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
102 ; rN and rNq are the native-size register holding function argument N |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
103 ; rNd, rNw, rNb are dword, word, and byte size |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
104 ; rNm is the original location of arg N (a register or on the stack), dword |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
105 ; rNmp is native size |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
106 |
8430 | 107 %macro DECLARE_REG 6 |
108 %define r%1q %2 | |
109 %define r%1d %3 | |
110 %define r%1w %4 | |
111 %define r%1b %5 | |
112 %define r%1m %6 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
113 %ifid %6 ; i.e. it's a register |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
114 %define r%1mp %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
115 %elifdef ARCH_X86_64 ; memory |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
116 %define r%1mp qword %6 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
117 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
118 %define r%1mp dword %6 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
119 %endif |
8430 | 120 %define r%1 %2 |
121 %endmacro | |
122 | |
123 %macro DECLARE_REG_SIZE 2 | |
124 %define r%1q r%1 | |
125 %define e%1q r%1 | |
126 %define r%1d e%1 | |
127 %define e%1d e%1 | |
128 %define r%1w %1 | |
129 %define e%1w %1 | |
130 %define r%1b %2 | |
131 %define e%1b %2 | |
132 %ifndef ARCH_X86_64 | |
133 %define r%1 e%1 | |
134 %endif | |
135 %endmacro | |
136 | |
137 DECLARE_REG_SIZE ax, al | |
138 DECLARE_REG_SIZE bx, bl | |
139 DECLARE_REG_SIZE cx, cl | |
140 DECLARE_REG_SIZE dx, dl | |
141 DECLARE_REG_SIZE si, sil | |
142 DECLARE_REG_SIZE di, dil | |
143 DECLARE_REG_SIZE bp, bpl | |
144 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
145 ; t# defines for when per-arch register allocation is more complex than just function arguments |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
146 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
147 %macro DECLARE_REG_TMP 1-* |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
148 %assign %%i 0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
149 %rep %0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
150 CAT_XDEFINE t, %%i, r%1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
151 %assign %%i %%i+1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
152 %rotate 1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
153 %endrep |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
154 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
155 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
156 %macro DECLARE_REG_TMP_SIZE 0-* |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
157 %rep %0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
158 %define t%1q t%1 %+ q |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
159 %define t%1d t%1 %+ d |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
160 %define t%1w t%1 %+ w |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
161 %define t%1b t%1 %+ b |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
162 %rotate 1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
163 %endrep |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
164 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
165 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
166 DECLARE_REG_TMP_SIZE 0,1,2,3,4,5,6,7 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
167 |
8430 | 168 %ifdef ARCH_X86_64 |
169 %define gprsize 8 | |
170 %else | |
171 %define gprsize 4 | |
172 %endif | |
173 | |
174 %macro PUSH 1 | |
175 push %1 | |
176 %assign stack_offset stack_offset+gprsize | |
177 %endmacro | |
178 | |
179 %macro POP 1 | |
180 pop %1 | |
181 %assign stack_offset stack_offset-gprsize | |
182 %endmacro | |
183 | |
184 %macro SUB 2 | |
185 sub %1, %2 | |
186 %ifidn %1, rsp | |
187 %assign stack_offset stack_offset+(%2) | |
188 %endif | |
189 %endmacro | |
190 | |
191 %macro ADD 2 | |
192 add %1, %2 | |
193 %ifidn %1, rsp | |
194 %assign stack_offset stack_offset-(%2) | |
195 %endif | |
196 %endmacro | |
197 | |
198 %macro movifnidn 2 | |
199 %ifnidn %1, %2 | |
200 mov %1, %2 | |
201 %endif | |
202 %endmacro | |
203 | |
204 %macro movsxdifnidn 2 | |
205 %ifnidn %1, %2 | |
206 movsxd %1, %2 | |
207 %endif | |
208 %endmacro | |
209 | |
210 %macro ASSERT 1 | |
211 %if (%1) == 0 | |
212 %error assert failed | |
213 %endif | |
214 %endmacro | |
215 | |
216 %macro DEFINE_ARGS 0-* | |
217 %ifdef n_arg_names | |
218 %assign %%i 0 | |
219 %rep n_arg_names | |
220 CAT_UNDEF arg_name %+ %%i, q | |
221 CAT_UNDEF arg_name %+ %%i, d | |
222 CAT_UNDEF arg_name %+ %%i, w | |
223 CAT_UNDEF arg_name %+ %%i, b | |
224 CAT_UNDEF arg_name, %%i | |
225 %assign %%i %%i+1 | |
226 %endrep | |
227 %endif | |
228 | |
229 %assign %%i 0 | |
230 %rep %0 | |
231 %xdefine %1q r %+ %%i %+ q | |
232 %xdefine %1d r %+ %%i %+ d | |
233 %xdefine %1w r %+ %%i %+ w | |
234 %xdefine %1b r %+ %%i %+ b | |
235 CAT_XDEFINE arg_name, %%i, %1 | |
236 %assign %%i %%i+1 | |
237 %rotate 1 | |
238 %endrep | |
239 %assign n_arg_names %%i | |
240 %endmacro | |
241 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
242 %ifdef WIN64 ; Windows x64 ;================================================= |
8430 | 243 |
244 DECLARE_REG 0, rcx, ecx, cx, cl, ecx | |
245 DECLARE_REG 1, rdx, edx, dx, dl, edx | |
246 DECLARE_REG 2, r8, r8d, r8w, r8b, r8d | |
247 DECLARE_REG 3, r9, r9d, r9w, r9b, r9d | |
248 DECLARE_REG 4, rdi, edi, di, dil, [rsp + stack_offset + 40] | |
249 DECLARE_REG 5, rsi, esi, si, sil, [rsp + stack_offset + 48] | |
250 DECLARE_REG 6, rax, eax, ax, al, [rsp + stack_offset + 56] | |
251 %define r7m [rsp + stack_offset + 64] | |
252 %define r8m [rsp + stack_offset + 72] | |
253 | |
254 %macro LOAD_IF_USED 2 ; reg_id, number_of_args | |
255 %if %1 < %2 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
256 mov r%1, [rsp + stack_offset + 8 + %1*8] |
8430 | 257 %endif |
258 %endmacro | |
259 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
260 %macro PROLOGUE 2-4+ ; #args, #regs, #xmm_regs, arg_names... |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
261 ASSERT %2 >= %1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
262 %assign regs_used %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
263 ASSERT regs_used <= 7 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
264 %if %0 > 2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
265 %assign xmm_regs_used %3 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
266 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
267 %assign xmm_regs_used 0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
268 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
269 ASSERT xmm_regs_used <= 16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
270 %if regs_used > 4 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
271 push r4 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
272 push r5 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
273 %assign stack_offset stack_offset+16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
274 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
275 %if xmm_regs_used > 6 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
276 sub rsp, (xmm_regs_used-6)*16+16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
277 %assign stack_offset stack_offset+(xmm_regs_used-6)*16+16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
278 %assign %%i xmm_regs_used |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
279 %rep (xmm_regs_used-6) |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
280 %assign %%i %%i-1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
281 movdqa [rsp + (%%i-6)*16+8], xmm %+ %%i |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
282 %endrep |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
283 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
284 LOAD_IF_USED 4, %1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
285 LOAD_IF_USED 5, %1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
286 LOAD_IF_USED 6, %1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
287 DEFINE_ARGS %4 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
288 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
289 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
290 %macro RESTORE_XMM_INTERNAL 1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
291 %if xmm_regs_used > 6 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
292 %assign %%i xmm_regs_used |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
293 %rep (xmm_regs_used-6) |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
294 %assign %%i %%i-1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
295 movdqa xmm %+ %%i, [%1 + (%%i-6)*16+8] |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
296 %endrep |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
297 add %1, (xmm_regs_used-6)*16+16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
298 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
299 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
300 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
301 %macro RESTORE_XMM 1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
302 RESTORE_XMM_INTERNAL %1 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
303 %assign stack_offset stack_offset-(xmm_regs_used-6)*16+16 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
304 %assign xmm_regs_used 0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
305 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
306 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
307 %macro RET 0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
308 RESTORE_XMM_INTERNAL rsp |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
309 %if regs_used > 4 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
310 pop r5 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
311 pop r4 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
312 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
313 ret |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
314 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
315 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
316 %macro REP_RET 0 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
317 %if regs_used > 4 || xmm_regs_used > 6 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
318 RET |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
319 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
320 rep ret |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
321 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
322 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
323 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
324 %elifdef ARCH_X86_64 ; *nix x64 ;============================================= |
8430 | 325 |
326 DECLARE_REG 0, rdi, edi, di, dil, edi | |
327 DECLARE_REG 1, rsi, esi, si, sil, esi | |
328 DECLARE_REG 2, rdx, edx, dx, dl, edx | |
329 DECLARE_REG 3, rcx, ecx, cx, cl, ecx | |
330 DECLARE_REG 4, r8, r8d, r8w, r8b, r8d | |
331 DECLARE_REG 5, r9, r9d, r9w, r9b, r9d | |
332 DECLARE_REG 6, rax, eax, ax, al, [rsp + stack_offset + 8] | |
333 %define r7m [rsp + stack_offset + 16] | |
334 %define r8m [rsp + stack_offset + 24] | |
335 | |
336 %macro LOAD_IF_USED 2 ; reg_id, number_of_args | |
337 %if %1 < %2 | |
338 mov r%1, [rsp - 40 + %1*8] | |
339 %endif | |
340 %endmacro | |
341 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
342 %macro PROLOGUE 2-4+ ; #args, #regs, #xmm_regs, arg_names... |
8430 | 343 ASSERT %2 >= %1 |
344 ASSERT %2 <= 7 | |
345 LOAD_IF_USED 6, %1 | |
346 DEFINE_ARGS %4 | |
347 %endmacro | |
348 | |
349 %macro RET 0 | |
350 ret | |
351 %endmacro | |
352 | |
353 %macro REP_RET 0 | |
354 rep ret | |
355 %endmacro | |
356 | |
357 %else ; X86_32 ;============================================================== | |
358 | |
359 DECLARE_REG 0, eax, eax, ax, al, [esp + stack_offset + 4] | |
360 DECLARE_REG 1, ecx, ecx, cx, cl, [esp + stack_offset + 8] | |
361 DECLARE_REG 2, edx, edx, dx, dl, [esp + stack_offset + 12] | |
362 DECLARE_REG 3, ebx, ebx, bx, bl, [esp + stack_offset + 16] | |
363 DECLARE_REG 4, esi, esi, si, null, [esp + stack_offset + 20] | |
364 DECLARE_REG 5, edi, edi, di, null, [esp + stack_offset + 24] | |
365 DECLARE_REG 6, ebp, ebp, bp, null, [esp + stack_offset + 28] | |
366 %define r7m [esp + stack_offset + 32] | |
367 %define r8m [esp + stack_offset + 36] | |
368 %define rsp esp | |
369 | |
370 %macro PUSH_IF_USED 1 ; reg_id | |
371 %if %1 < regs_used | |
372 push r%1 | |
373 %assign stack_offset stack_offset+4 | |
374 %endif | |
375 %endmacro | |
376 | |
377 %macro POP_IF_USED 1 ; reg_id | |
378 %if %1 < regs_used | |
379 pop r%1 | |
380 %endif | |
381 %endmacro | |
382 | |
383 %macro LOAD_IF_USED 2 ; reg_id, number_of_args | |
384 %if %1 < %2 | |
385 mov r%1, [esp + stack_offset + 4 + %1*4] | |
386 %endif | |
387 %endmacro | |
388 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
389 %macro PROLOGUE 2-4+ ; #args, #regs, arg_names... |
8430 | 390 ASSERT %2 >= %1 |
391 %assign regs_used %2 | |
392 ASSERT regs_used <= 7 | |
393 PUSH_IF_USED 3 | |
394 PUSH_IF_USED 4 | |
395 PUSH_IF_USED 5 | |
396 PUSH_IF_USED 6 | |
397 LOAD_IF_USED 0, %1 | |
398 LOAD_IF_USED 1, %1 | |
399 LOAD_IF_USED 2, %1 | |
400 LOAD_IF_USED 3, %1 | |
401 LOAD_IF_USED 4, %1 | |
402 LOAD_IF_USED 5, %1 | |
403 LOAD_IF_USED 6, %1 | |
404 DEFINE_ARGS %4 | |
405 %endmacro | |
406 | |
407 %macro RET 0 | |
408 POP_IF_USED 6 | |
409 POP_IF_USED 5 | |
410 POP_IF_USED 4 | |
411 POP_IF_USED 3 | |
412 ret | |
413 %endmacro | |
414 | |
415 %macro REP_RET 0 | |
416 %if regs_used > 3 | |
417 RET | |
418 %else | |
419 rep ret | |
420 %endif | |
421 %endmacro | |
422 | |
423 %endif ;====================================================================== | |
424 | |
425 | |
426 | |
427 ;============================================================================= | |
428 ; arch-independent part | |
429 ;============================================================================= | |
430 | |
431 %assign function_align 16 | |
432 | |
433 ; Symbol prefix for C linkage | |
434 %macro cglobal 1-2+ | |
435 %xdefine %1 ff_%1 | |
436 %ifdef PREFIX | |
437 %xdefine %1 _ %+ %1 | |
438 %endif | |
439 %ifidn __OUTPUT_FORMAT__,elf | |
440 global %1:function hidden | |
441 %else | |
442 global %1 | |
443 %endif | |
444 align function_align | |
445 %1: | |
446 RESET_MM_PERMUTATION ; not really needed, but makes disassembly somewhat nicer | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
447 %assign stack_offset 0 |
8430 | 448 %if %0 > 1 |
449 PROLOGUE %2 | |
450 %endif | |
451 %endmacro | |
452 | |
453 %macro cextern 1 | |
454 %ifdef PREFIX | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
455 %xdefine %1 _%1 |
8430 | 456 %endif |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
457 extern %1 |
8430 | 458 %endmacro |
459 | |
460 ; This is needed for ELF, otherwise the GNU linker assumes the stack is | |
461 ; executable by default. | |
462 %ifidn __OUTPUT_FORMAT__,elf | |
463 SECTION .note.GNU-stack noalloc noexec nowrite progbits | |
464 %endif | |
465 | |
466 %assign FENC_STRIDE 16 | |
467 %assign FDEC_STRIDE 32 | |
468 | |
469 ; merge mmx and sse* | |
470 | |
471 %macro CAT_XDEFINE 3 | |
472 %xdefine %1%2 %3 | |
473 %endmacro | |
474 | |
475 %macro CAT_UNDEF 2 | |
476 %undef %1%2 | |
477 %endmacro | |
478 | |
479 %macro INIT_MMX 0 | |
480 %define RESET_MM_PERMUTATION INIT_MMX | |
481 %define mmsize 8 | |
482 %define num_mmregs 8 | |
483 %define mova movq | |
484 %define movu movq | |
485 %define movh movd | |
486 %define movnt movntq | |
487 %assign %%i 0 | |
488 %rep 8 | |
489 CAT_XDEFINE m, %%i, mm %+ %%i | |
490 CAT_XDEFINE nmm, %%i, %%i | |
491 %assign %%i %%i+1 | |
492 %endrep | |
493 %rep 8 | |
494 CAT_UNDEF m, %%i | |
495 CAT_UNDEF nmm, %%i | |
496 %assign %%i %%i+1 | |
497 %endrep | |
498 %endmacro | |
499 | |
500 %macro INIT_XMM 0 | |
501 %define RESET_MM_PERMUTATION INIT_XMM | |
502 %define mmsize 16 | |
503 %define num_mmregs 8 | |
504 %ifdef ARCH_X86_64 | |
505 %define num_mmregs 16 | |
506 %endif | |
507 %define mova movdqa | |
508 %define movu movdqu | |
509 %define movh movq | |
510 %define movnt movntdq | |
511 %assign %%i 0 | |
512 %rep num_mmregs | |
513 CAT_XDEFINE m, %%i, xmm %+ %%i | |
514 CAT_XDEFINE nxmm, %%i, %%i | |
515 %assign %%i %%i+1 | |
516 %endrep | |
517 %endmacro | |
518 | |
519 INIT_MMX | |
520 | |
521 ; I often want to use macros that permute their arguments. e.g. there's no | |
522 ; efficient way to implement butterfly or transpose or dct without swapping some | |
523 ; arguments. | |
524 ; | |
525 ; I would like to not have to manually keep track of the permutations: | |
526 ; If I insert a permutation in the middle of a function, it should automatically | |
527 ; change everything that follows. For more complex macros I may also have multiple | |
528 ; implementations, e.g. the SSE2 and SSSE3 versions may have different permutations. | |
529 ; | |
530 ; Hence these macros. Insert a PERMUTE or some SWAPs at the end of a macro that | |
531 ; permutes its arguments. It's equivalent to exchanging the contents of the | |
532 ; registers, except that this way you exchange the register names instead, so it | |
533 ; doesn't cost any cycles. | |
534 | |
535 %macro PERMUTE 2-* ; takes a list of pairs to swap | |
536 %rep %0/2 | |
537 %xdefine tmp%2 m%2 | |
538 %xdefine ntmp%2 nm%2 | |
539 %rotate 2 | |
540 %endrep | |
541 %rep %0/2 | |
542 %xdefine m%1 tmp%2 | |
543 %xdefine nm%1 ntmp%2 | |
544 %undef tmp%2 | |
545 %undef ntmp%2 | |
546 %rotate 2 | |
547 %endrep | |
548 %endmacro | |
549 | |
550 %macro SWAP 2-* ; swaps a single chain (sometimes more concise than pairs) | |
551 %rep %0-1 | |
552 %ifdef m%1 | |
553 %xdefine tmp m%1 | |
554 %xdefine m%1 m%2 | |
555 %xdefine m%2 tmp | |
556 CAT_XDEFINE n, m%1, %1 | |
557 CAT_XDEFINE n, m%2, %2 | |
558 %else | |
559 ; If we were called as "SWAP m0,m1" rather than "SWAP 0,1" infer the original numbers here. | |
560 ; Be careful using this mode in nested macros though, as in some cases there may be | |
561 ; other copies of m# that have already been dereferenced and don't get updated correctly. | |
562 %xdefine %%n1 n %+ %1 | |
563 %xdefine %%n2 n %+ %2 | |
564 %xdefine tmp m %+ %%n1 | |
565 CAT_XDEFINE m, %%n1, m %+ %%n2 | |
566 CAT_XDEFINE m, %%n2, tmp | |
567 CAT_XDEFINE n, m %+ %%n1, %%n1 | |
568 CAT_XDEFINE n, m %+ %%n2, %%n2 | |
569 %endif | |
570 %undef tmp | |
571 %rotate 1 | |
572 %endrep | |
573 %endmacro | |
574 | |
575 %macro SAVE_MM_PERMUTATION 1 | |
576 %assign %%i 0 | |
577 %rep num_mmregs | |
578 CAT_XDEFINE %1_m, %%i, m %+ %%i | |
579 %assign %%i %%i+1 | |
580 %endrep | |
581 %endmacro | |
582 | |
583 %macro LOAD_MM_PERMUTATION 1 | |
584 %assign %%i 0 | |
585 %rep num_mmregs | |
586 CAT_XDEFINE m, %%i, %1_m %+ %%i | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
587 CAT_XDEFINE n, m %+ %%i, %%i |
8430 | 588 %assign %%i %%i+1 |
589 %endrep | |
590 %endmacro | |
591 | |
592 %macro call 1 | |
593 call %1 | |
594 %ifdef %1_m0 | |
595 LOAD_MM_PERMUTATION %1 | |
596 %endif | |
597 %endmacro | |
598 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
599 ;Substitutions that reduce instruction size but are functionally equivalent |
8430 | 600 %define movdqa movaps |
601 %define movdqu movups | |
602 | |
10019
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
603 %macro add 2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
604 %ifnum %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
605 %if %2==128 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
606 sub %1, -128 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
607 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
608 add %1, %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
609 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
610 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
611 add %1, %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
612 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
613 %endmacro |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
614 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
615 %macro sub 2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
616 %ifnum %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
617 %if %2==128 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
618 add %1, -128 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
619 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
620 sub %1, %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
621 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
622 %else |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
623 sub %1, %2 |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
624 %endif |
c08ca946c80a
Update x264 asm code to latest to add support for 64-bit Windows.
darkshikari
parents:
8430
diff
changeset
|
625 %endmacro |