From 09202d80716ef7e2931de60c66b6fb2383f52613 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Fri, 4 Jun 2010 16:19:40 -0400 Subject: LICENSE: update with latest text Change-Id: Ieebea089095d9073b3a94932791099f614ce120c --- vp8/common/x86/iwalsh_sse2.asm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'vp8/common/x86/iwalsh_sse2.asm') diff --git a/vp8/common/x86/iwalsh_sse2.asm b/vp8/common/x86/iwalsh_sse2.asm index 96943dfb8..cb61691fd 100644 --- a/vp8/common/x86/iwalsh_sse2.asm +++ b/vp8/common/x86/iwalsh_sse2.asm @@ -1,10 +1,11 @@ ; ; Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ; -; Use of this source code is governed by a BSD-style license and patent -; grant that can be found in the LICENSE file in the root of the source -; tree. All contributing project authors may be found in the AUTHORS -; file in the root of the source tree. +; Use of this source code is governed by a BSD-style license +; that can be found in the LICENSE file in the root of the source +; tree. An additional intellectual property rights grant can be found +; in the file PATENTS. All contributing project authors may +; be found in the AUTHORS file in the root of the source tree. ; -- cgit v1.2.3 From 63ea8705eb0b4609b1c87968817d18421f051641 Mon Sep 17 00:00:00 2001 From: Makoto Kato Date: Fri, 11 Jun 2010 18:32:28 +0900 Subject: some XMM registers are non-volatile on windows x64 ABI XMM6 to XMM15 are non-volatile on Windows x64 ABI. We have to save these registers. Change-Id: I4676309f1350af25c8a35f0c81b1f0499ab99076 --- vp8/common/x86/iwalsh_sse2.asm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vp8/common/x86/iwalsh_sse2.asm') diff --git a/vp8/common/x86/iwalsh_sse2.asm b/vp8/common/x86/iwalsh_sse2.asm index cb61691fd..bb0d1d7ae 100644 --- a/vp8/common/x86/iwalsh_sse2.asm +++ b/vp8/common/x86/iwalsh_sse2.asm @@ -17,6 +17,7 @@ sym(vp8_short_inv_walsh4x4_sse2): push rbp mov rbp, rsp SHADOW_ARGS_TO_STACK 2 + SAVE_XMM push rsi push rdi ; end prolog @@ -101,6 +102,7 @@ sym(vp8_short_inv_walsh4x4_sse2): ; begin epilog pop rdi pop rsi + RESTORE_XMM UNSHADOW_ARGS pop rbp ret -- cgit v1.2.3 From 94c52e4da8a3532989c84f6b0da695dfaeb18449 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Fri, 18 Jun 2010 12:39:21 -0400 Subject: cosmetics: trim trailing whitespace When the license headers were updated, they accidentally contained trailing whitespace, so unfortunately we have to touch all the files again. Change-Id: I236c05fade06589e417179c0444cb39b09e4200d --- vp8/common/x86/iwalsh_sse2.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vp8/common/x86/iwalsh_sse2.asm') diff --git a/vp8/common/x86/iwalsh_sse2.asm b/vp8/common/x86/iwalsh_sse2.asm index bb0d1d7ae..17337f0c1 100644 --- a/vp8/common/x86/iwalsh_sse2.asm +++ b/vp8/common/x86/iwalsh_sse2.asm @@ -1,10 +1,10 @@ ; ; Copyright (c) 2010 The VP8 project authors. All Rights Reserved. ; -; Use of this source code is governed by a BSD-style license +; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found -; in the file PATENTS. All contributing project authors may +; in the file PATENTS. All contributing project authors may ; be found in the AUTHORS file in the root of the source tree. ; -- cgit v1.2.3 From c2140b8af169a6d93a70efc403a5956f5ec84dba Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Thu, 9 Sep 2010 08:16:39 -0400 Subject: Use WebM in copyright notice for consistency Changes 'The VP8 project' to 'The WebM project', for consistency with other webmproject.org repositories. Fixes issue #97. Change-Id: I37c13ed5fbdb9d334ceef71c6350e9febed9bbba --- vp8/common/x86/iwalsh_sse2.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vp8/common/x86/iwalsh_sse2.asm') diff --git a/vp8/common/x86/iwalsh_sse2.asm b/vp8/common/x86/iwalsh_sse2.asm index 17337f0c1..83c97df7d 100644 --- a/vp8/common/x86/iwalsh_sse2.asm +++ b/vp8/common/x86/iwalsh_sse2.asm @@ -1,5 +1,5 @@ ; -; Copyright (c) 2010 The VP8 project authors. All Rights Reserved. +; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source -- cgit v1.2.3