2010-05-18 19:58:33 +04:00
|
|
|
;
|
2016-09-02 00:32:49 +03:00
|
|
|
; Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2010-05-18 19:58:33 +04:00
|
|
|
;
|
2016-09-02 00:32:49 +03:00
|
|
|
; This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
; the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
; was not distributed with this source code in the LICENSE file, you can
|
|
|
|
; obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
; Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
; PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
|
|
|
;
|
|
|
|
|
2010-05-18 19:58:33 +04:00
|
|
|
;
|
|
|
|
|
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
%include "aom_ports/x86_abi_support.asm"
|
2010-05-18 19:58:33 +04:00
|
|
|
|
|
|
|
section .text
|
2016-08-31 00:01:10 +03:00
|
|
|
global sym(aom_reset_mmx_state) PRIVATE
|
|
|
|
sym(aom_reset_mmx_state):
|
2010-05-18 19:58:33 +04:00
|
|
|
emms
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
%if LIBAOM_YASM_WIN64
|
2016-08-31 00:01:10 +03:00
|
|
|
global sym(aom_winx64_fldcw) PRIVATE
|
|
|
|
sym(aom_winx64_fldcw):
|
2010-05-18 19:58:33 +04:00
|
|
|
sub rsp, 8
|
|
|
|
mov [rsp], rcx ; win x64 specific
|
|
|
|
fldcw [rsp]
|
|
|
|
add rsp, 8
|
|
|
|
ret
|
|
|
|
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
global sym(aom_winx64_fstcw) PRIVATE
|
|
|
|
sym(aom_winx64_fstcw):
|
2010-05-18 19:58:33 +04:00
|
|
|
sub rsp, 8
|
|
|
|
fstcw [rsp]
|
|
|
|
mov rax, [rsp]
|
|
|
|
add rsp, 8
|
|
|
|
ret
|
|
|
|
%endif
|