| OLD | NEW |
| 1 ; | 1 ; |
| 2 ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. | 2 ; Copyright (c) 2014 The WebM project authors. All Rights Reserved. |
| 3 ; | 3 ; |
| 4 ; Use of this source code is governed by a BSD-style license | 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 | 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 | 6 ; tree. An additional intellectual property rights grant can be found |
| 7 ; in the file PATENTS. All contributing project authors may | 7 ; in the file PATENTS. All contributing project authors may |
| 8 ; be found in the AUTHORS file in the root of the source tree. | 8 ; be found in the AUTHORS file in the root of the source tree. |
| 9 ; | 9 ; |
| 10 | 10 |
| 11 %define program_name vpx | |
| 12 | |
| 13 %include "third_party/x86inc/x86inc.asm" | 11 %include "third_party/x86inc/x86inc.asm" |
| 14 | 12 |
| 15 SECTION_RODATA | 13 SECTION_RODATA |
| 16 pw_4: times 8 dw 4 | 14 pw_4: times 8 dw 4 |
| 17 pw_8: times 8 dw 8 | 15 pw_8: times 8 dw 8 |
| 18 pw_16: times 4 dd 16 | 16 pw_16: times 4 dd 16 |
| 19 pw_32: times 4 dd 32 | 17 pw_32: times 4 dd 32 |
| 20 | 18 |
| 21 SECTION .text | 19 SECTION .text |
| 22 INIT_MMX sse | 20 INIT_MMX sse |
| (...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 ;Store these values | 467 ;Store these values |
| 470 mova [dstq+strideq*2 ], m7 | 468 mova [dstq+strideq*2 ], m7 |
| 471 mova [dstq+strideq*2+16], m8 | 469 mova [dstq+strideq*2+16], m8 |
| 472 mova [dstq+strideq*2+32], m9 | 470 mova [dstq+strideq*2+32], m9 |
| 473 mova [dstq+strideq*2+48], m6 | 471 mova [dstq+strideq*2+48], m6 |
| 474 lea dstq, [dstq+strideq*4] | 472 lea dstq, [dstq+strideq*4] |
| 475 inc lineq | 473 inc lineq |
| 476 jnz .loop | 474 jnz .loop |
| 477 REP_RET | 475 REP_RET |
| 478 %endif | 476 %endif |
| OLD | NEW |