| OLD | NEW |
| 1 /* | 1 /* |
| 2 * mpi_x86.c - MSVC inline assembly implementation of s_mpv_ functions. | 2 * mpi_x86_asm.c - MSVC inline assembly implementation of s_mpv_ functions. |
| 3 * | 3 * |
| 4 * This Source Code Form is subject to the terms of the Mozilla Public | 4 * This Source Code Form is subject to the terms of the Mozilla Public |
| 5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 7 | 7 |
| 8 #include "mpi-priv.h" | 8 #include "mpi-priv.h" |
| 9 | 9 |
| 10 static int is_sse = -1; | 10 static int is_sse = -1; |
| 11 extern unsigned long s_mpi_is_sse2(); | 11 extern unsigned long s_mpi_is_sse2(); |
| 12 | 12 |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 mov ebx,[esp+20] | 526 mov ebx,[esp+20] |
| 527 mov [ebx],eax | 527 mov [ebx],eax |
| 528 mov ebx,[esp+24] | 528 mov ebx,[esp+24] |
| 529 mov [ebx],edx | 529 mov [ebx],edx |
| 530 xor eax,eax ; return zero | 530 xor eax,eax ; return zero |
| 531 pop ebx | 531 pop ebx |
| 532 ret | 532 ret |
| 533 nop | 533 nop |
| 534 } | 534 } |
| 535 } | 535 } |
| OLD | NEW |