Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: source/row_gcc.cc

Issue 1423283002: Fix debug compilation problems for gcc and 32 bit x86. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/libyuv/row.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // VERSION 2 1 // VERSION 2
2 /* 2 /*
3 * Copyright 2011 The LibYuv Project Authors. All rights reserved. 3 * Copyright 2011 The LibYuv Project Authors. All rights reserved.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license 5 * Use of this source code is governed by a BSD-style license
6 * that can be found in the LICENSE file in the root of the source 6 * that can be found in the LICENSE file in the root of the source
7 * tree. An additional intellectual property rights grant can be found 7 * tree. An additional intellectual property rights grant can be found
8 * in the file PATENTS. All contributing project authors may 8 * in the file PATENTS. All contributing project authors may
9 * be found in the AUTHORS file in the root of the source tree. 9 * be found in the AUTHORS file in the root of the source tree.
10 */ 10 */
(...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after
1727 [u_buf]"+r"(u_buf), // %[u_buf] 1727 [u_buf]"+r"(u_buf), // %[u_buf]
1728 [v_buf]"+r"(v_buf), // %[v_buf] 1728 [v_buf]"+r"(v_buf), // %[v_buf]
1729 [dst_argb]"+r"(dst_argb), // %[dst_argb] 1729 [dst_argb]"+r"(dst_argb), // %[dst_argb]
1730 [width]"+rm"(width) // %[width] 1730 [width]"+rm"(width) // %[width]
1731 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants] 1731 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants]
1732 : "memory", "cc", NACL_R14 1732 : "memory", "cc", NACL_R14
1733 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5" 1733 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5"
1734 ); 1734 );
1735 } 1735 }
1736 1736
1737 #ifdef HAS_I422ALPHATOARGBROW_SSSE3
1737 void OMITFP I422AlphaToARGBRow_SSSE3(const uint8* y_buf, 1738 void OMITFP I422AlphaToARGBRow_SSSE3(const uint8* y_buf,
1738 const uint8* u_buf, 1739 const uint8* u_buf,
1739 const uint8* v_buf, 1740 const uint8* v_buf,
1740 const uint8* a_buf, 1741 const uint8* a_buf,
1741 uint8* dst_argb, 1742 uint8* dst_argb,
1742 const struct YuvConstants* yuvconstants, 1743 const struct YuvConstants* yuvconstants,
1743 int width) { 1744 int width) {
1744 asm volatile ( 1745 asm volatile (
1745 "sub %[u_buf],%[v_buf] \n" 1746 "sub %[u_buf],%[v_buf] \n"
1746 LABELALIGN 1747 LABELALIGN
(...skipping 11 matching lines...) Expand all
1758 #if defined(__i386__) && defined(__pic__) 1759 #if defined(__i386__) && defined(__pic__)
1759 [width]"+m"(width) // %[width] 1760 [width]"+m"(width) // %[width]
1760 #else 1761 #else
1761 [width]"+rm"(width) // %[width] 1762 [width]"+rm"(width) // %[width]
1762 #endif 1763 #endif
1763 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants] 1764 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants]
1764 : "memory", "cc", NACL_R14 1765 : "memory", "cc", NACL_R14
1765 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5" 1766 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5"
1766 ); 1767 );
1767 } 1768 }
1769 #endif // HAS_I422ALPHATOARGBROW_SSSE3
1768 1770
1769 void OMITFP I411ToARGBRow_SSSE3(const uint8* y_buf, 1771 void OMITFP I411ToARGBRow_SSSE3(const uint8* y_buf,
1770 const uint8* u_buf, 1772 const uint8* u_buf,
1771 const uint8* v_buf, 1773 const uint8* v_buf,
1772 uint8* dst_argb, 1774 uint8* dst_argb,
1773 const struct YuvConstants* yuvconstants, 1775 const struct YuvConstants* yuvconstants,
1774 int width) { 1776 int width) {
1775 asm volatile ( 1777 asm volatile (
1776 "sub %[u_buf],%[v_buf] \n" 1778 "sub %[u_buf],%[v_buf] \n"
1777 "pcmpeqb %%xmm5,%%xmm5 \n" 1779 "pcmpeqb %%xmm5,%%xmm5 \n"
(...skipping 3712 matching lines...) Expand 10 before | Expand all | Expand 10 after
5490 ); 5492 );
5491 } 5493 }
5492 #endif // HAS_ARGBLUMACOLORTABLEROW_SSSE3 5494 #endif // HAS_ARGBLUMACOLORTABLEROW_SSSE3
5493 5495
5494 #endif // defined(__x86_64__) || defined(__i386__) 5496 #endif // defined(__x86_64__) || defined(__i386__)
5495 5497
5496 #ifdef __cplusplus 5498 #ifdef __cplusplus
5497 } // extern "C" 5499 } // extern "C"
5498 } // namespace libyuv 5500 } // namespace libyuv
5499 #endif 5501 #endif
OLDNEW
« no previous file with comments | « include/libyuv/row.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698