OLD | NEW |
1 ; | 1 ; |
2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
3 ; | 3 ; |
4 ; Use of this source code is governed by a BSD-style license and patent | 4 ; Use of this source code is governed by a BSD-style license and patent |
5 ; grant that can be found in the LICENSE file in the root of the source | 5 ; grant that can be found in the LICENSE file in the root of the source |
6 ; tree. All contributing project authors may be found in the AUTHORS | 6 ; tree. All contributing project authors may be found in the AUTHORS |
7 ; file in the root of the source tree. | 7 ; file in the root of the source tree. |
8 ; | 8 ; |
9 | 9 |
10 | 10 |
11 %include "vpx_ports/x86_abi_support.asm" | 11 %include "vpx_ports/x86_abi_support.asm" |
12 %include "asm_enc_offsets.asm" | 12 %include "vp8_asm_enc_offsets.asm" |
13 | 13 |
14 | 14 |
15 ; void vp8_fast_quantize_b_ssse3 | arg | 15 ; void vp8_fast_quantize_b_ssse3 | arg |
16 ; (BLOCK *b, | 0 | 16 ; (BLOCK *b, | 0 |
17 ; BLOCKD *d) | 1 | 17 ; BLOCKD *d) | 1 |
18 ; | 18 ; |
19 | 19 |
20 global sym(vp8_fast_quantize_b_ssse3) PRIVATE | 20 global sym(vp8_fast_quantize_b_ssse3) PRIVATE |
21 sym(vp8_fast_quantize_b_ssse3): | 21 sym(vp8_fast_quantize_b_ssse3): |
22 push rbp | 22 push rbp |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 %endif | 129 %endif |
130 | 130 |
131 RESTORE_GOT | 131 RESTORE_GOT |
132 pop rbp | 132 pop rbp |
133 ret | 133 ret |
134 | 134 |
135 SECTION_RODATA | 135 SECTION_RODATA |
136 align 16 | 136 align 16 |
137 zz_shuf: | 137 zz_shuf: |
138 db 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15 | 138 db 0, 1, 4, 8, 5, 2, 3, 6, 9, 12, 13, 10, 7, 11, 14, 15 |
OLD | NEW |