| 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 | 
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 70     pop         rbp | 70     pop         rbp | 
| 71     ret | 71     ret | 
| 72 | 72 | 
| 73 | 73 | 
| 74 ;void vp8_subtract_mby_sse2(short *diff, unsigned char *src, unsigned char *pred
     , int stride) | 74 ;void vp8_subtract_mby_sse2(short *diff, unsigned char *src, unsigned char *pred
     , int stride) | 
| 75 global sym(vp8_subtract_mby_sse2) | 75 global sym(vp8_subtract_mby_sse2) | 
| 76 sym(vp8_subtract_mby_sse2): | 76 sym(vp8_subtract_mby_sse2): | 
| 77     push        rbp | 77     push        rbp | 
| 78     mov         rbp, rsp | 78     mov         rbp, rsp | 
| 79     SHADOW_ARGS_TO_STACK 4 | 79     SHADOW_ARGS_TO_STACK 4 | 
| 80     SAVE_XMM | 80     SAVE_XMM 7 | 
| 81     GET_GOT     rbx | 81     GET_GOT     rbx | 
| 82     push rsi | 82     push rsi | 
| 83     push rdi | 83     push rdi | 
| 84     ; end prolog | 84     ; end prolog | 
| 85 | 85 | 
| 86             mov         rsi,            arg(1) ;src | 86             mov         rsi,            arg(1) ;src | 
| 87             mov         rdi,            arg(0) ;diff | 87             mov         rdi,            arg(0) ;diff | 
| 88 | 88 | 
| 89             mov         rax,            arg(2) ;pred | 89             mov         rax,            arg(2) ;pred | 
| 90             movsxd      rdx,            dword ptr arg(3) ;stride | 90             movsxd      rdx,            dword ptr arg(3) ;stride | 
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 347     pop rsi | 347     pop rsi | 
| 348     RESTORE_GOT | 348     RESTORE_GOT | 
| 349     UNSHADOW_ARGS | 349     UNSHADOW_ARGS | 
| 350     pop         rbp | 350     pop         rbp | 
| 351     ret | 351     ret | 
| 352 | 352 | 
| 353 SECTION_RODATA | 353 SECTION_RODATA | 
| 354 align 16 | 354 align 16 | 
| 355 t80: | 355 t80: | 
| 356     times 16 db 0x80 | 356     times 16 db 0x80 | 
| OLD | NEW | 
|---|