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

Side by Side Diff: source/row_gcc.cc

Issue 1461013002: disable debug build of 411 to work around compiler bug (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 | « source/row_any.cc ('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 1778 matching lines...) Expand 10 before | Expand all | Expand 10 after
1789 #else 1789 #else
1790 [width]"+rm"(width) // %[width] 1790 [width]"+rm"(width) // %[width]
1791 #endif 1791 #endif
1792 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants] 1792 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants]
1793 : "memory", "cc", NACL_R14 YUVTORGB_REGS 1793 : "memory", "cc", NACL_R14 YUVTORGB_REGS
1794 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5" 1794 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5"
1795 ); 1795 );
1796 } 1796 }
1797 #endif // HAS_I422ALPHATOARGBROW_SSSE3 1797 #endif // HAS_I422ALPHATOARGBROW_SSSE3
1798 1798
1799 #ifdef HAS_I411TOARGBROW_SSSE3
1799 void OMITFP I411ToARGBRow_SSSE3(const uint8* y_buf, 1800 void OMITFP I411ToARGBRow_SSSE3(const uint8* y_buf,
1800 const uint8* u_buf, 1801 const uint8* u_buf,
1801 const uint8* v_buf, 1802 const uint8* v_buf,
1802 uint8* dst_argb, 1803 uint8* dst_argb,
1803 const struct YuvConstants* yuvconstants, 1804 const struct YuvConstants* yuvconstants,
1804 int width) { 1805 int width) {
1805 int temp = 0; 1806 int temp = 0;
1806 asm volatile ( 1807 asm volatile (
1807 YUVTORGB_SETUP(yuvconstants) 1808 YUVTORGB_SETUP(yuvconstants)
1808 "sub %[u_buf],%[v_buf] \n" 1809 "sub %[u_buf],%[v_buf] \n"
1809 "pcmpeqb %%xmm5,%%xmm5 \n" 1810 "pcmpeqb %%xmm5,%%xmm5 \n"
1810 LABELALIGN 1811 LABELALIGN
1811 "1: \n" 1812 "1: \n"
1812 READYUV411_TEMP 1813 READYUV411_TEMP
1813 YUVTORGB(yuvconstants) 1814 YUVTORGB(yuvconstants)
1814 STOREARGB 1815 STOREARGB
1815 "sub $0x8,%[width] \n" 1816 "sub $0x8,%[width] \n"
1816 "jg 1b \n" 1817 "jg 1b \n"
1817 : [y_buf]"+r"(y_buf), // %[y_buf] 1818 : [y_buf]"+r"(y_buf), // %[y_buf]
1818 [u_buf]"+r"(u_buf), // %[u_buf] 1819 [u_buf]"+r"(u_buf), // %[u_buf]
1819 [v_buf]"+r"(v_buf), // %[v_buf] 1820 [v_buf]"+r"(v_buf), // %[v_buf]
1820 [dst_argb]"+r"(dst_argb), // %[dst_argb] 1821 [dst_argb]"+r"(dst_argb), // %[dst_argb]
1821 [temp]"+r"(temp), // %[temp] 1822 [temp]"+r"(temp), // %[temp]
1822 [width]"+rm"(width) // %[width] 1823 [width]"+rm"(width) // %[width]
1823 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants] 1824 : [yuvconstants]"r"(yuvconstants) // %[yuvconstants]
1824 : "memory", "cc", NACL_R14 YUVTORGB_REGS 1825 : "memory", "cc", NACL_R14 YUVTORGB_REGS
1825 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5" 1826 "xmm0", "xmm1", "xmm2", "xmm3", "xmm4", "xmm5"
1826 ); 1827 );
1827 } 1828 }
1829 #endif
1828 1830
1829 void OMITFP NV12ToARGBRow_SSSE3(const uint8* y_buf, 1831 void OMITFP NV12ToARGBRow_SSSE3(const uint8* y_buf,
1830 const uint8* uv_buf, 1832 const uint8* uv_buf,
1831 uint8* dst_argb, 1833 uint8* dst_argb,
1832 const struct YuvConstants* yuvconstants, 1834 const struct YuvConstants* yuvconstants,
1833 int width) { 1835 int width) {
1834 asm volatile ( 1836 asm volatile (
1835 YUVTORGB_SETUP(yuvconstants) 1837 YUVTORGB_SETUP(yuvconstants)
1836 "pcmpeqb %%xmm5,%%xmm5 \n" 1838 "pcmpeqb %%xmm5,%%xmm5 \n"
1837 LABELALIGN 1839 LABELALIGN
(...skipping 3650 matching lines...) Expand 10 before | Expand all | Expand 10 after
5488 ); 5490 );
5489 } 5491 }
5490 #endif // HAS_ARGBLUMACOLORTABLEROW_SSSE3 5492 #endif // HAS_ARGBLUMACOLORTABLEROW_SSSE3
5491 5493
5492 #endif // defined(__x86_64__) || defined(__i386__) 5494 #endif // defined(__x86_64__) || defined(__i386__)
5493 5495
5494 #ifdef __cplusplus 5496 #ifdef __cplusplus
5495 } // extern "C" 5497 } // extern "C"
5496 } // namespace libyuv 5498 } // namespace libyuv
5497 #endif 5499 #endif
OLDNEW
« no previous file with comments | « source/row_any.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698