| 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 | 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 | 14 |
| 17 pb_1: times 16 db 1 | 15 pb_1: times 16 db 1 |
| 18 sh_b01234577: db 0, 1, 2, 3, 4, 5, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 | 16 sh_b01234577: db 0, 1, 2, 3, 4, 5, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 |
| 19 sh_b12345677: db 1, 2, 3, 4, 5, 6, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 | 17 sh_b12345677: db 1, 2, 3, 4, 5, 6, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 |
| 20 sh_b23456777: db 2, 3, 4, 5, 6, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 | 18 sh_b23456777: db 2, 3, 4, 5, 6, 7, 7, 7, 0, 0, 0, 0, 0, 0, 0, 0 |
| 21 sh_b0123456777777777: db 0, 1, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7 | 19 sh_b0123456777777777: db 0, 1, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7 |
| 22 sh_b1234567777777777: db 1, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 | 20 sh_b1234567777777777: db 1, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7 |
| (...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 mova [dstq +stride3q +16], m7 | 1027 mova [dstq +stride3q +16], m7 |
| 1030 lea dstq, [dstq+strideq*4] | 1028 lea dstq, [dstq+strideq*4] |
| 1031 mova [dstq +16], m7 | 1029 mova [dstq +16], m7 |
| 1032 mova [dstq +strideq +16], m7 | 1030 mova [dstq +strideq +16], m7 |
| 1033 mova [dstq +strideq*2+16], m7 | 1031 mova [dstq +strideq*2+16], m7 |
| 1034 mova [dstq +stride3q +16], m7 | 1032 mova [dstq +stride3q +16], m7 |
| 1035 | 1033 |
| 1036 ; done! | 1034 ; done! |
| 1037 RESTORE_GOT | 1035 RESTORE_GOT |
| 1038 RET | 1036 RET |
| OLD | NEW |