checkasm.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:60k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * checkasm.c: assembly check tool
  3.  *****************************************************************************
  4.  * Copyright (C) 2003-2008 x264 project
  5.  *
  6.  * Authors: Loren Merritt <lorenm@u.washington.edu>
  7.  *          Laurent Aimar <fenrir@via.ecp.fr>
  8.  *          Jason Garrett-Glaser <darkshikari@gmail.com>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include <ctype.h>
  25. #include <stdlib.h>
  26. #include <limits.h>
  27. #include <math.h>
  28. #include "common/common.h"
  29. #include "common/cpu.h"
  30. // GCC doesn't align stack variables on ARM, so use .bss
  31. #ifdef ARCH_ARM
  32. #undef ALIGNED_16
  33. #define ALIGNED_16( var ) DECLARE_ALIGNED( static var, 16 )
  34. #endif
  35. /* buf1, buf2: initialised to random data and shouldn't write into them */
  36. uint8_t * buf1, * buf2;
  37. /* buf3, buf4: used to store output */
  38. uint8_t * buf3, * buf4;
  39. int quiet = 0;
  40. #define report( name ) { 
  41.     if( used_asm && !quiet ) 
  42.         fprintf( stderr, " - %-21s [%s]n", name, ok ? "OK" : "FAILED" ); 
  43.     if( !ok ) ret = -1; 
  44. }
  45. #define BENCH_RUNS 100  // tradeoff between accuracy and speed
  46. #define BENCH_ALIGNS 16 // number of stack+heap data alignments (another accuracy vs speed tradeoff)
  47. #define MAX_FUNCS 1000  // just has to be big enough to hold all the existing functions
  48. #define MAX_CPUS 10     // number of different combinations of cpu flags
  49. typedef struct {
  50.     void *pointer; // just for detecting duplicates
  51.     uint32_t cpu;
  52.     uint32_t cycles;
  53.     uint32_t den;
  54. } bench_t;
  55. typedef struct {
  56.     char *name;
  57.     bench_t vers[MAX_CPUS];
  58. } bench_func_t;
  59. int do_bench = 0;
  60. int bench_pattern_len = 0;
  61. const char *bench_pattern = "";
  62. char func_name[100];
  63. static bench_func_t benchs[MAX_FUNCS];
  64. static const char *pixel_names[10] = { "16x16", "16x8", "8x16", "8x8", "8x4", "4x8", "4x4", "4x2", "2x4", "2x2" };
  65. static const char *intra_predict_16x16_names[7] = { "v", "h", "dc", "p", "dcl", "dct", "dc8" };
  66. static const char *intra_predict_8x8c_names[7] = { "dc", "h", "v", "p", "dcl", "dct", "dc8" };
  67. static const char *intra_predict_4x4_names[12] = { "v", "h", "dc", "ddl", "ddr", "vr", "hd", "vl", "hu", "dcl", "dct", "dc8" };
  68. static const char **intra_predict_8x8_names = intra_predict_4x4_names;
  69. #define set_func_name(...) snprintf( func_name, sizeof(func_name), __VA_ARGS__ )
  70. static inline uint32_t read_time(void)
  71. {
  72.     uint32_t a = 0;
  73. #if defined(__GNUC__) && (defined(ARCH_X86) || defined(ARCH_X86_64))
  74.     asm volatile( "rdtsc" :"=a"(a) ::"edx" );
  75. #elif defined(ARCH_PPC)
  76.     asm volatile( "mftb %0" : "=r" (a) );
  77. #elif defined(ARCH_ARM)     // ARMv7 only
  78.     asm volatile( "mrc p15, 0, %0, c9, c13, 0" : "=r"(a) );
  79. #endif
  80.     return a;
  81. }
  82. static bench_t* get_bench( const char *name, int cpu )
  83. {
  84.     int i, j;
  85.     for( i=0; benchs[i].name && strcmp(name, benchs[i].name); i++ )
  86.         assert( i < MAX_FUNCS );
  87.     if( !benchs[i].name )
  88.         benchs[i].name = strdup( name );
  89.     if( !cpu )
  90.         return &benchs[i].vers[0];
  91.     for( j=1; benchs[i].vers[j].cpu && benchs[i].vers[j].cpu != cpu; j++ )
  92.         assert( j < MAX_CPUS );
  93.     benchs[i].vers[j].cpu = cpu;
  94.     return &benchs[i].vers[j];
  95. }
  96. static int cmp_nop( const void *a, const void *b )
  97. {
  98.     return *(uint16_t*)a - *(uint16_t*)b;
  99. }
  100. static int cmp_bench( const void *a, const void *b )
  101. {
  102.     // asciibetical sort except preserving numbers
  103.     const char *sa = ((bench_func_t*)a)->name;
  104.     const char *sb = ((bench_func_t*)b)->name;
  105.     for(;; sa++, sb++)
  106.     {
  107.         if( !*sa && !*sb ) return 0;
  108.         if( isdigit(*sa) && isdigit(*sb) && isdigit(sa[1]) != isdigit(sb[1]) )
  109.             return isdigit(sa[1]) - isdigit(sb[1]);
  110.         if( *sa != *sb ) return *sa - *sb;
  111.     }
  112. }
  113. static void print_bench(void)
  114. {
  115.     uint16_t nops[10000] = {0};
  116.     int i, j, k, nfuncs, nop_time=0;
  117.     for( i=0; i<10000; i++ )
  118.     {
  119.         int t = read_time();
  120.         nops[i] = read_time() - t;
  121.     }
  122.     qsort( nops, 10000, sizeof(uint16_t), cmp_nop );
  123.     for( i=500; i<9500; i++ )
  124.         nop_time += nops[i];
  125.     nop_time /= 900;
  126.     printf( "nop: %dn", nop_time );
  127.     for( i=0; i<MAX_FUNCS && benchs[i].name; i++ );
  128.     nfuncs=i;
  129.     qsort( benchs, nfuncs, sizeof(bench_func_t), cmp_bench );
  130.     for( i=0; i<nfuncs; i++ )
  131.         for( j=0; j<MAX_CPUS && (!j || benchs[i].vers[j].cpu); j++ )
  132.         {
  133.             bench_t *b = &benchs[i].vers[j];
  134.             if( !b->den ) continue;
  135.             for( k=0; k<j && benchs[i].vers[k].pointer != b->pointer; k++ );
  136.             if( k<j ) continue;
  137.             printf( "%s_%s%s: %"PRId64"n", benchs[i].name,
  138.                     b->cpu&X264_CPU_SSE4 ? "sse4" :
  139.                     b->cpu&X264_CPU_SHUFFLE_IS_FAST ? "fastshuffle" :
  140.                     b->cpu&X264_CPU_SSSE3 ? "ssse3" :
  141.                     b->cpu&X264_CPU_SSE3 ? "sse3" :
  142.                     /* print sse2slow only if there's also a sse2fast version of the same func */
  143.                     b->cpu&X264_CPU_SSE2_IS_SLOW && j<MAX_CPUS && b[1].cpu&X264_CPU_SSE2_IS_FAST && !(b[1].cpu&X264_CPU_SSE3) ? "sse2slow" :
  144.                     b->cpu&X264_CPU_SSE2 ? "sse2" :
  145.                     b->cpu&X264_CPU_MMX ? "mmx" :
  146.                     b->cpu&X264_CPU_ALTIVEC ? "altivec" :
  147.                     b->cpu&X264_CPU_NEON ? "neon" :
  148.                     b->cpu&X264_CPU_ARMV6 ? "armv6" : "c",
  149.                     b->cpu&X264_CPU_CACHELINE_32 ? "_c32" :
  150.                     b->cpu&X264_CPU_CACHELINE_64 ? "_c64" :
  151.                     b->cpu&X264_CPU_SSE_MISALIGN ? "_misalign" :
  152.                     b->cpu&X264_CPU_LZCNT ? "_lzcnt" :
  153.                     b->cpu&X264_CPU_FAST_NEON_MRC ? "_fast_mrc" : "",
  154.                     ((int64_t)10*b->cycles/b->den - nop_time)/4 );
  155.         }
  156. }
  157. #if defined(ARCH_X86) || defined(ARCH_X86_64)
  158. int x264_stack_pagealign( int (*func)(), int align );
  159. #else
  160. #define x264_stack_pagealign( func, align ) func()
  161. #endif
  162. #define call_c1(func,...) func(__VA_ARGS__)
  163. #if defined(ARCH_X86) || defined(_WIN64)
  164. /* detect when callee-saved regs aren't saved.
  165.  * needs an explicit asm check because it only sometimes crashes in normal use. */
  166. intptr_t x264_checkasm_call( intptr_t (*func)(), int *ok, ... );
  167. #define call_a1(func,...) x264_checkasm_call((intptr_t(*)())func, &ok, __VA_ARGS__)
  168. #else
  169. #define call_a1 call_c1
  170. #endif
  171. #define call_bench(func,cpu,...)
  172.     if( do_bench && !strncmp(func_name, bench_pattern, bench_pattern_len) )
  173.     {
  174.         uint32_t tsum = 0;
  175.         int tcount = 0;
  176.         int ti;
  177.         call_a1(func, __VA_ARGS__);
  178.         for( ti=0; ti<(cpu?BENCH_RUNS:BENCH_RUNS/4); ti++ )
  179.         {
  180.             uint32_t t = read_time();
  181.             func(__VA_ARGS__);
  182.             func(__VA_ARGS__);
  183.             func(__VA_ARGS__);
  184.             func(__VA_ARGS__);
  185.             t = read_time() - t;
  186.             if( t*tcount <= tsum*4 && ti > 0 )
  187.             {
  188.                 tsum += t;
  189.                 tcount++;
  190.             }
  191.         }
  192.         bench_t *b = get_bench( func_name, cpu );
  193.         b->cycles += tsum;
  194.         b->den += tcount;
  195.         b->pointer = func;
  196.     }
  197. /* for most functions, run benchmark and correctness test at the same time.
  198.  * for those that modify their inputs, run the above macros separately */
  199. #define call_a(func,...) ({ call_a2(func,__VA_ARGS__); call_a1(func,__VA_ARGS__); })
  200. #define call_c(func,...) ({ call_c2(func,__VA_ARGS__); call_c1(func,__VA_ARGS__); })
  201. #define call_a2(func,...) ({ call_bench(func,cpu_new,__VA_ARGS__); })
  202. #define call_c2(func,...) ({ call_bench(func,0,__VA_ARGS__); })
  203. static int check_pixel( int cpu_ref, int cpu_new )
  204. {
  205.     x264_pixel_function_t pixel_c;
  206.     x264_pixel_function_t pixel_ref;
  207.     x264_pixel_function_t pixel_asm;
  208.     x264_predict_t predict_16x16[4+3];
  209.     x264_predict_t predict_8x8c[4+3];
  210.     x264_predict_t predict_4x4[9+3];
  211.     x264_predict8x8_t predict_8x8[9+3];
  212.     x264_predict_8x8_filter_t predict_8x8_filter;
  213.     ALIGNED_16( uint8_t edge[33] );
  214.     uint16_t cost_mv[32];
  215.     int ret = 0, ok, used_asm;
  216.     int i, j;
  217.     x264_pixel_init( 0, &pixel_c );
  218.     x264_pixel_init( cpu_ref, &pixel_ref );
  219.     x264_pixel_init( cpu_new, &pixel_asm );
  220.     x264_predict_16x16_init( 0, predict_16x16 );
  221.     x264_predict_8x8c_init( 0, predict_8x8c );
  222.     x264_predict_8x8_init( 0, predict_8x8, &predict_8x8_filter );
  223.     x264_predict_4x4_init( 0, predict_4x4 );
  224.     predict_8x8_filter( buf2+40, edge, ALL_NEIGHBORS, ALL_NEIGHBORS );
  225.     // maximize sum
  226.     for( i=0; i<256; i++ )
  227.     {
  228.         int z = i|(i>>4);
  229.         z ^= z>>2;
  230.         z ^= z>>1;
  231.         buf3[i] = ~(buf4[i] = -(z&1));
  232.     }
  233.     // random pattern made of maxed pixel differences, in case an intermediate value overflows
  234.     for( ; i<0x1000; i++ )
  235.         buf3[i] = ~(buf4[i] = -(buf1[i&~0x88]&1));
  236. #define TEST_PIXEL( name, align ) 
  237.     for( i = 0, ok = 1, used_asm = 0; i < 7; i++ ) 
  238.     { 
  239.         int res_c, res_asm; 
  240.         if( pixel_asm.name[i] != pixel_ref.name[i] ) 
  241.         { 
  242.             set_func_name( "%s_%s", #name, pixel_names[i] ); 
  243.             used_asm = 1; 
  244.             for( j=0; j<64; j++ ) 
  245.             { 
  246.                 res_c   = call_c( pixel_c.name[i], buf1, 16, buf2+j*!align, 64 ); 
  247.                 res_asm = call_a( pixel_asm.name[i], buf1, 16, buf2+j*!align, 64 ); 
  248.                 if( res_c != res_asm ) 
  249.                 { 
  250.                     ok = 0; 
  251.                     fprintf( stderr, #name "[%d]: %d != %d [FAILED]n", i, res_c, res_asm ); 
  252.                     break; 
  253.                 } 
  254.             } 
  255.             for( j=0; j<0x1000 && ok; j+=256 ) 
  256.             { 
  257.                 res_c   = pixel_c  .name[i]( buf3+j, 16, buf4+j, 16 ); 
  258.                 res_asm = pixel_asm.name[i]( buf3+j, 16, buf4+j, 16 ); 
  259.                 if( res_c != res_asm ) 
  260.                 { 
  261.                     ok = 0; 
  262.                     fprintf( stderr, #name "[%d]: overflow %d != %dn", i, res_c, res_asm ); 
  263.                 } 
  264.             } 
  265.         } 
  266.     } 
  267.     report( "pixel " #name " :" );
  268.     TEST_PIXEL( sad, 0 );
  269.     TEST_PIXEL( sad_aligned, 1 );
  270.     TEST_PIXEL( ssd, 1 );
  271.     TEST_PIXEL( satd, 0 );
  272.     TEST_PIXEL( sa8d, 1 );
  273. #define TEST_PIXEL_X( N ) 
  274.     for( i = 0, ok = 1, used_asm = 0; i < 7; i++ ) 
  275.     { 
  276.         int res_c[4]={0}, res_asm[4]={0}; 
  277.         if( pixel_asm.sad_x##N[i] && pixel_asm.sad_x##N[i] != pixel_ref.sad_x##N[i] ) 
  278.         { 
  279.             set_func_name( "sad_x%d_%s", N, pixel_names[i] ); 
  280.             used_asm = 1; 
  281.             for( j=0; j<64; j++) 
  282.             { 
  283.                 uint8_t *pix2 = buf2+j; 
  284.                 res_c[0] = pixel_c.sad[i]( buf1, 16, pix2, 64 ); 
  285.                 res_c[1] = pixel_c.sad[i]( buf1, 16, pix2+6, 64 ); 
  286.                 res_c[2] = pixel_c.sad[i]( buf1, 16, pix2+1, 64 ); 
  287.                 if(N==4) 
  288.                 { 
  289.                     res_c[3] = pixel_c.sad[i]( buf1, 16, pix2+10, 64 ); 
  290.                     call_a( pixel_asm.sad_x4[i], buf1, pix2, pix2+6, pix2+1, pix2+10, 64, res_asm ); 
  291.                 } 
  292.                 else 
  293.                     call_a( pixel_asm.sad_x3[i], buf1, pix2, pix2+6, pix2+1, 64, res_asm ); 
  294.                 if( memcmp(res_c, res_asm, sizeof(res_c)) ) 
  295.                 { 
  296.                     ok = 0; 
  297.                     fprintf( stderr, "sad_x"#N"[%d]: %d,%d,%d,%d != %d,%d,%d,%d [FAILED]n", 
  298.                              i, res_c[0], res_c[1], res_c[2], res_c[3], 
  299.                              res_asm[0], res_asm[1], res_asm[2], res_asm[3] ); 
  300.                 } 
  301.                 if(N==4) 
  302.                     call_c2( pixel_c.sad_x4[i], buf1, pix2, pix2+6, pix2+1, pix2+10, 64, res_asm ); 
  303.                 else 
  304.                     call_c2( pixel_c.sad_x3[i], buf1, pix2, pix2+6, pix2+1, 64, res_asm ); 
  305.             } 
  306.         } 
  307.     } 
  308.     report( "pixel sad_x"#N" :" );
  309.     TEST_PIXEL_X(3);
  310.     TEST_PIXEL_X(4);
  311. #define TEST_PIXEL_VAR( i ) 
  312.     if( pixel_asm.var[i] != pixel_ref.var[i] ) 
  313.     { 
  314.         int res_c, res_asm; 
  315.         set_func_name( "%s_%s", "var", pixel_names[i] ); 
  316.         used_asm = 1; 
  317.         res_c   = call_c( pixel_c.var[i], buf1, 16 ); 
  318.         res_asm = call_a( pixel_asm.var[i], buf1, 16 ); 
  319.         if( res_c != res_asm ) 
  320.         { 
  321.             ok = 0; 
  322.             fprintf( stderr, "var[%d]: %d != %d [FAILED]n", i, res_c, res_asm ); 
  323.         } 
  324.     }
  325.     ok = 1; used_asm = 0;
  326.     TEST_PIXEL_VAR( PIXEL_16x16 );
  327.     TEST_PIXEL_VAR( PIXEL_8x8 );
  328.     report( "pixel var :" );
  329.     ok = 1; used_asm = 0;
  330.     if( pixel_asm.var2_8x8 != pixel_ref.var2_8x8 )
  331.     {
  332.         int res_c, res_asm, ssd_c, ssd_asm;
  333.         set_func_name( "var2_8x8" );
  334.         used_asm = 1;
  335.         res_c   = call_c( pixel_c.var2_8x8, buf1, 16, buf2, 16, &ssd_c );
  336.         res_asm = call_a( pixel_asm.var2_8x8, buf1, 16, buf2, 16, &ssd_asm );
  337.         if( res_c != res_asm || ssd_c != ssd_asm )
  338.         {
  339.             ok = 0;
  340.             fprintf( stderr, "var[%d]: %d != %d or %d != %d [FAILED]n", i, res_c, res_asm, ssd_c, ssd_asm );
  341.         }
  342.     }
  343.     report( "pixel var2 :" );
  344.     for( i=0, ok=1, used_asm=0; i<4; i++ )
  345.         if( pixel_asm.hadamard_ac[i] != pixel_ref.hadamard_ac[i] )
  346.         {
  347.             set_func_name( "hadamard_ac_%s", pixel_names[i] );
  348.             used_asm = 1;
  349.             for( j=0; j<32; j++ )
  350.             {
  351.                 uint8_t *pix = (j&16 ? buf1 : buf3) + (j&15)*256;
  352.                 uint64_t rc = pixel_c.hadamard_ac[i]( pix, 16 );
  353.                 uint64_t ra = pixel_asm.hadamard_ac[i]( pix, 16 );
  354.                 if( rc != ra )
  355.                 {
  356.                     ok = 0;
  357.                     fprintf( stderr, "hadamard_ac[%d]: %d,%d != %d,%dn", i, (int)rc, (int)(rc>>32), (int)ra, (int)(ra>>32) );
  358.                     break;
  359.                 }
  360.             }
  361.             call_c2( pixel_c.hadamard_ac[i], buf1, 16 );
  362.             call_a2( pixel_asm.hadamard_ac[i], buf1, 16 );
  363.         }
  364.     report( "pixel hadamard_ac :" );
  365. #define TEST_INTRA_MBCMP( name, pred, satd, i8x8, ... ) 
  366.     if( pixel_asm.name && pixel_asm.name != pixel_ref.name ) 
  367.     { 
  368.         int res_c[3], res_asm[3]; 
  369.         set_func_name( #name );
  370.         used_asm = 1; 
  371.         memcpy( buf3, buf2, 1024 ); 
  372.         for( i=0; i<3; i++ ) 
  373.         { 
  374.             pred[i]( buf3+48, ##__VA_ARGS__ ); 
  375.             res_c[i] = pixel_c.satd( buf1+48, 16, buf3+48, 32 ); 
  376.         } 
  377.         call_a( pixel_asm.name, buf1+48, i8x8 ? edge : buf3+48, res_asm ); 
  378.         if( memcmp(res_c, res_asm, sizeof(res_c)) ) 
  379.         { 
  380.             ok = 0; 
  381.             fprintf( stderr, #name": %d,%d,%d != %d,%d,%d [FAILED]n", 
  382.                      res_c[0], res_c[1], res_c[2], 
  383.                      res_asm[0], res_asm[1], res_asm[2] ); 
  384.         } 
  385.     }
  386.     ok = 1; used_asm = 0;
  387.     TEST_INTRA_MBCMP( intra_satd_x3_16x16, predict_16x16, satd[PIXEL_16x16], 0 );
  388.     TEST_INTRA_MBCMP( intra_satd_x3_8x8c , predict_8x8c , satd[PIXEL_8x8]  , 0 );
  389.     TEST_INTRA_MBCMP( intra_satd_x3_4x4  , predict_4x4  , satd[PIXEL_4x4]  , 0 );
  390.     TEST_INTRA_MBCMP( intra_sa8d_x3_8x8  , predict_8x8  , sa8d[PIXEL_8x8]  , 1, edge );
  391.     report( "intra satd_x3 :" );
  392.     TEST_INTRA_MBCMP( intra_sad_x3_16x16 , predict_16x16, sad [PIXEL_16x16], 0 );
  393.     TEST_INTRA_MBCMP( intra_sad_x3_8x8c  , predict_8x8c , sad [PIXEL_8x8]  , 0 );
  394.     TEST_INTRA_MBCMP( intra_sad_x3_8x8   , predict_8x8  , sad [PIXEL_8x8]  , 1, edge );
  395.     TEST_INTRA_MBCMP( intra_sad_x3_4x4   , predict_4x4  , sad [PIXEL_4x4]  , 0 );
  396.     report( "intra sad_x3 :" );
  397.     if( pixel_asm.ssim_4x4x2_core != pixel_ref.ssim_4x4x2_core ||
  398.         pixel_asm.ssim_end4 != pixel_ref.ssim_end4 )
  399.     {
  400.         float res_c, res_a;
  401.         ALIGNED_16( int sums[5][4] ) = {{0}};
  402.         used_asm = ok = 1;
  403.         x264_emms();
  404.         res_c = x264_pixel_ssim_wxh( &pixel_c,   buf1+2, 32, buf2+2, 32, 32, 28, buf3 );
  405.         res_a = x264_pixel_ssim_wxh( &pixel_asm, buf1+2, 32, buf2+2, 32, 32, 28, buf3 );
  406.         if( fabs(res_c - res_a) > 1e-6 )
  407.         {
  408.             ok = 0;
  409.             fprintf( stderr, "ssim: %.7f != %.7f [FAILED]n", res_c, res_a );
  410.         }
  411.         set_func_name( "ssim_core" );
  412.         call_c2( pixel_c.ssim_4x4x2_core,   buf1+2, 32, buf2+2, 32, sums );
  413.         call_a2( pixel_asm.ssim_4x4x2_core, buf1+2, 32, buf2+2, 32, sums );
  414.         set_func_name( "ssim_end" );
  415.         call_c2( pixel_c.ssim_end4,   sums, sums, 4 );
  416.         call_a2( pixel_asm.ssim_end4, sums, sums, 4 );
  417.         report( "ssim :" );
  418.     }
  419.     ok = 1; used_asm = 0;
  420.     for( i=0; i<32; i++ )
  421.         cost_mv[i] = i*10;
  422.     for( i=0; i<100 && ok; i++ )
  423.         if( pixel_asm.ads[i&3] != pixel_ref.ads[i&3] )
  424.         {
  425.             ALIGNED_16( uint16_t sums[72] );
  426.             ALIGNED_16( int dc[4] );
  427.             int16_t mvs_a[32], mvs_c[32];
  428.             int mvn_a, mvn_c;
  429.             int thresh = rand() & 0x3fff;
  430.             set_func_name( "esa_ads" );
  431.             for( j=0; j<72; j++ )
  432.                 sums[j] = rand() & 0x3fff;
  433.             for( j=0; j<4; j++ )
  434.                 dc[j] = rand() & 0x3fff;
  435.             used_asm = 1;
  436.             mvn_c = call_c( pixel_c.ads[i&3], dc, sums, 32, cost_mv, mvs_c, 28, thresh );
  437.             mvn_a = call_a( pixel_asm.ads[i&3], dc, sums, 32, cost_mv, mvs_a, 28, thresh );
  438.             if( mvn_c != mvn_a || memcmp( mvs_c, mvs_a, mvn_c*sizeof(*mvs_c) ) )
  439.             {
  440.                 ok = 0;
  441.                 printf("c%d: ", i&3);
  442.                 for(j=0; j<mvn_c; j++)
  443.                     printf("%d ", mvs_c[j]);
  444.                 printf("na%d: ", i&3);
  445.                 for(j=0; j<mvn_a; j++)
  446.                     printf("%d ", mvs_a[j]);
  447.                 printf("nn");
  448.             }
  449.         }
  450.     report( "esa ads:" );
  451.     return ret;
  452. }
  453. static int check_dct( int cpu_ref, int cpu_new )
  454. {
  455.     x264_dct_function_t dct_c;
  456.     x264_dct_function_t dct_ref;
  457.     x264_dct_function_t dct_asm;
  458.     x264_quant_function_t qf;
  459.     int ret = 0, ok, used_asm, i, j, interlace;
  460.     ALIGNED_16( int16_t dct1[16][4][4] );
  461.     ALIGNED_16( int16_t dct2[16][4][4] );
  462.     ALIGNED_16( int16_t dct4[16][4][4] );
  463.     ALIGNED_16( int16_t dct8[4][8][8] );
  464.     ALIGNED_8( int16_t dctdc[2][2][2] );
  465.     x264_t h_buf;
  466.     x264_t *h = &h_buf;
  467.     x264_dct_init( 0, &dct_c );
  468.     x264_dct_init( cpu_ref, &dct_ref);
  469.     x264_dct_init( cpu_new, &dct_asm );
  470.     memset( h, 0, sizeof(*h) );
  471.     h->pps = h->pps_array;
  472.     x264_param_default( &h->param );
  473.     h->chroma_qp_table = i_chroma_qp_table + 12;
  474.     h->param.analyse.i_luma_deadzone[0] = 0;
  475.     h->param.analyse.i_luma_deadzone[1] = 0;
  476.     h->param.analyse.b_transform_8x8 = 1;
  477.     for( i=0; i<6; i++ )
  478.         h->pps->scaling_list[i] = x264_cqm_flat16;
  479.     x264_cqm_init( h );
  480.     x264_quant_init( h, 0, &qf );
  481. #define TEST_DCT( name, t1, t2, size ) 
  482.     if( dct_asm.name != dct_ref.name ) 
  483.     { 
  484.         set_func_name( #name );
  485.         used_asm = 1; 
  486.         call_c( dct_c.name, t1, buf1, buf2 ); 
  487.         call_a( dct_asm.name, t2, buf1, buf2 ); 
  488.         if( memcmp( t1, t2, size ) ) 
  489.         { 
  490.             ok = 0; 
  491.             fprintf( stderr, #name " [FAILED]n" ); 
  492.         } 
  493.     }
  494.     ok = 1; used_asm = 0;
  495.     TEST_DCT( sub4x4_dct, dct1[0], dct2[0], 16*2 );
  496.     TEST_DCT( sub8x8_dct, dct1, dct2, 16*2*4 );
  497.     TEST_DCT( sub8x8_dct_dc, dctdc[0], dctdc[1], 4*2 );
  498.     TEST_DCT( sub16x16_dct, dct1, dct2, 16*2*16 );
  499.     report( "sub_dct4 :" );
  500.     ok = 1; used_asm = 0;
  501.     TEST_DCT( sub8x8_dct8, (void*)dct1[0], (void*)dct2[0], 64*2 );
  502.     TEST_DCT( sub16x16_dct8, (void*)dct1, (void*)dct2, 64*2*4 );
  503.     report( "sub_dct8 :" );
  504. #undef TEST_DCT
  505.     // fdct and idct are denormalized by different factors, so quant/dequant
  506.     // is needed to force the coefs into the right range.
  507.     dct_c.sub16x16_dct( dct4, buf1, buf2 );
  508.     dct_c.sub16x16_dct8( dct8, buf1, buf2 );
  509.     for( i=0; i<16; i++ )
  510.     {
  511.         qf.quant_4x4( dct4[i], h->quant4_mf[CQM_4IY][20], h->quant4_bias[CQM_4IY][20] );
  512.         qf.dequant_4x4( dct4[i], h->dequant4_mf[CQM_4IY], 20 );
  513.     }
  514.     for( i=0; i<4; i++ )
  515.     {
  516.         qf.quant_8x8( dct8[i], h->quant8_mf[CQM_8IY][20], h->quant8_bias[CQM_8IY][20] );
  517.         qf.dequant_8x8( dct8[i], h->dequant8_mf[CQM_8IY], 20 );
  518.     }
  519. #define TEST_IDCT( name, src ) 
  520.     if( dct_asm.name != dct_ref.name ) 
  521.     { 
  522.         set_func_name( #name );
  523.         used_asm = 1; 
  524.         memcpy( buf3, buf1, 32*32 ); 
  525.         memcpy( buf4, buf1, 32*32 ); 
  526.         memcpy( dct1, src, 512 ); 
  527.         memcpy( dct2, src, 512 ); 
  528.         call_c1( dct_c.name, buf3, (void*)dct1 ); 
  529.         call_a1( dct_asm.name, buf4, (void*)dct2 ); 
  530.         if( memcmp( buf3, buf4, 32*32 ) ) 
  531.         { 
  532.             ok = 0; 
  533.             fprintf( stderr, #name " [FAILED]n" ); 
  534.         } 
  535.         call_c2( dct_c.name, buf3, (void*)dct1 ); 
  536.         call_a2( dct_asm.name, buf4, (void*)dct2 ); 
  537.     }
  538.     ok = 1; used_asm = 0;
  539.     TEST_IDCT( add4x4_idct, dct4 );
  540.     TEST_IDCT( add8x8_idct, dct4 );
  541.     TEST_IDCT( add8x8_idct_dc, dct4 );
  542.     TEST_IDCT( add16x16_idct, dct4 );
  543.     TEST_IDCT( add16x16_idct_dc, dct4 );
  544.     report( "add_idct4 :" );
  545.     ok = 1; used_asm = 0;
  546.     TEST_IDCT( add8x8_idct8, dct8 );
  547.     TEST_IDCT( add16x16_idct8, dct8 );
  548.     report( "add_idct8 :" );
  549. #undef TEST_IDCT
  550. #define TEST_DCTDC( name )
  551.     ok = 1; used_asm = 0;
  552.     if( dct_asm.name != dct_ref.name )
  553.     {
  554.         set_func_name( #name );
  555.         used_asm = 1;
  556.         uint16_t *p = (uint16_t*)buf1;
  557.         for( i=0; i<16 && ok; i++ )
  558.         {
  559.             for( j=0; j<16; j++ )
  560.                 dct1[0][0][j] = !i ? (j^j>>1^j>>2^j>>3)&1 ? 4080 : -4080 /* max dc */
  561.                               : i<8 ? (*p++)&1 ? 4080 : -4080 /* max elements */
  562.                               : ((*p++)&0x1fff)-0x1000; /* general case */
  563.             memcpy( dct2, dct1, 32 );
  564.             call_c1( dct_c.name, dct1[0] );
  565.             call_a1( dct_asm.name, dct2[0] );
  566.             if( memcmp( dct1, dct2, 32 ) )
  567.                 ok = 0;
  568.         }
  569.         call_c2( dct_c.name, dct1[0] );
  570.         call_a2( dct_asm.name, dct2[0] );
  571.     }
  572.     report( #name " :" );
  573.     TEST_DCTDC(  dct4x4dc );
  574.     TEST_DCTDC( idct4x4dc );
  575. #undef TEST_DCTDC
  576.     x264_zigzag_function_t zigzag_c;
  577.     x264_zigzag_function_t zigzag_ref;
  578.     x264_zigzag_function_t zigzag_asm;
  579.     ALIGNED_16( int16_t level1[64] );
  580.     ALIGNED_16( int16_t level2[64] );
  581. #define TEST_ZIGZAG_SCAN( name, t1, t2, dct, size )   
  582.     if( zigzag_asm.name != zigzag_ref.name ) 
  583.     { 
  584.         set_func_name( "zigzag_"#name"_%s", interlace?"field":"frame" );
  585.         used_asm = 1; 
  586.         memcpy(dct, buf1, size*sizeof(int16_t));
  587.         call_c( zigzag_c.name, t1, dct ); 
  588.         call_a( zigzag_asm.name, t2, dct ); 
  589.         if( memcmp( t1, t2, size*sizeof(int16_t) ) ) 
  590.         { 
  591.             ok = 0; 
  592.             fprintf( stderr, #name " [FAILED]n" ); 
  593.         } 
  594.     }
  595. #define TEST_ZIGZAG_SUB( name, t1, t2, size ) 
  596.     if( zigzag_asm.name != zigzag_ref.name ) 
  597.     { 
  598.         int nz_a, nz_c; 
  599.         set_func_name( "zigzag_"#name"_%s", interlace?"field":"frame" );
  600.         used_asm = 1; 
  601.         memcpy( buf3, buf1, 16*FDEC_STRIDE ); 
  602.         memcpy( buf4, buf1, 16*FDEC_STRIDE ); 
  603.         nz_c = call_c1( zigzag_c.name, t1, buf2, buf3 );  
  604.         nz_a = call_a1( zigzag_asm.name, t2, buf2, buf4 ); 
  605.         if( memcmp( t1, t2, size*sizeof(int16_t) )|| memcmp( buf3, buf4, 16*FDEC_STRIDE ) || nz_c != nz_a )  
  606.         { 
  607.             ok = 0; 
  608.             fprintf( stderr, #name " [FAILED]n" ); 
  609.         } 
  610.         call_c2( zigzag_c.name, t1, buf2, buf3 );  
  611.         call_a2( zigzag_asm.name, t2, buf2, buf4 ); 
  612.     }
  613. #define TEST_ZIGZAG_SUBAC( name, t1, t2 ) 
  614.     if( zigzag_asm.name != zigzag_ref.name ) 
  615.     { 
  616.         int nz_a, nz_c; 
  617.         int16_t dc_a, dc_c; 
  618.         set_func_name( "zigzag_"#name"_%s", interlace?"field":"frame" );
  619.         used_asm = 1; 
  620.         for( i = 0; i < 2; i++ ) 
  621.         { 
  622.             memcpy( buf3, buf2, 16*FDEC_STRIDE ); 
  623.             memcpy( buf4, buf2, 16*FDEC_STRIDE ); 
  624.             for( j = 0; j < 4; j++ ) 
  625.             { 
  626.                 memcpy( buf3 + j*FDEC_STRIDE, (i?buf1:buf2) + j*FENC_STRIDE, 4 ); 
  627.                 memcpy( buf4 + j*FDEC_STRIDE, (i?buf1:buf2) + j*FENC_STRIDE, 4 ); 
  628.             } 
  629.             nz_c = call_c1( zigzag_c.name, t1, buf2, buf3, &dc_c );  
  630.             nz_a = call_a1( zigzag_asm.name, t2, buf2, buf4, &dc_a ); 
  631.             if( memcmp( t1+1, t2+1, 15*sizeof(int16_t) ) || memcmp( buf3, buf4, 16*FDEC_STRIDE ) || nz_c != nz_a || dc_c != dc_a )  
  632.             { 
  633.                 ok = 0; 
  634.                 fprintf( stderr, #name " [FAILED]n" ); 
  635.                 break; 
  636.             } 
  637.         } 
  638.         call_c2( zigzag_c.name, t1, buf2, buf3, &dc_c );  
  639.         call_a2( zigzag_asm.name, t2, buf2, buf4, &dc_a ); 
  640.     }
  641. #define TEST_INTERLEAVE( name, t1, t2, dct, size )   
  642.     if( zigzag_asm.name != zigzag_ref.name ) 
  643.     { 
  644.         for( j=0; j<100; j++ ) 
  645.         { 
  646.             set_func_name( "zigzag_"#name"_%s", interlace?"field":"frame" );
  647.             used_asm = 1; 
  648.             memcpy(dct, buf1, size*sizeof(int16_t));
  649.             for( i=0; i<size; i++ ) 
  650.                 dct[i] = rand()&0x1F ? 0 : dct[i]; 
  651.             memcpy(buf3, buf4, 10*sizeof(uint8_t)); 
  652.             call_c( zigzag_c.name, t1, dct, buf3 ); 
  653.             call_a( zigzag_asm.name, t2, dct, buf4 ); 
  654.             if( memcmp( t1, t2, size*sizeof(int16_t) ) || memcmp( buf3, buf4, 10*sizeof(uint8_t) ) ) 
  655.             { 
  656.                 ok = 0; 
  657.             } 
  658.         } 
  659.     }
  660.     interlace = 0;
  661.     x264_zigzag_init( 0, &zigzag_c, 0 );
  662.     x264_zigzag_init( cpu_ref, &zigzag_ref, 0 );
  663.     x264_zigzag_init( cpu_new, &zigzag_asm, 0 );
  664.     ok = 1; used_asm = 0;
  665.     TEST_ZIGZAG_SCAN( scan_8x8, level1, level2, (void*)dct1, 64 );
  666.     TEST_ZIGZAG_SCAN( scan_4x4, level1, level2, dct1[0], 16  );
  667.     TEST_ZIGZAG_SUB( sub_4x4, level1, level2, 16 );
  668.     TEST_ZIGZAG_SUBAC( sub_4x4ac, level1, level2 );
  669.     report( "zigzag_frame :" );
  670.     interlace = 1;
  671.     x264_zigzag_init( 0, &zigzag_c, 1 );
  672.     x264_zigzag_init( cpu_ref, &zigzag_ref, 1 );
  673.     x264_zigzag_init( cpu_new, &zigzag_asm, 1 );
  674.     ok = 1; used_asm = 0;
  675.     TEST_ZIGZAG_SCAN( scan_8x8, level1, level2, (void*)dct1, 64 );
  676.     TEST_ZIGZAG_SCAN( scan_4x4, level1, level2, dct1[0], 16  );
  677.     TEST_ZIGZAG_SUB( sub_4x4, level1, level2, 16 );
  678.     TEST_ZIGZAG_SUBAC( sub_4x4ac, level1, level2 );
  679.     report( "zigzag_field :" );
  680.     ok = 1; used_asm = 0;
  681.     TEST_INTERLEAVE( interleave_8x8_cavlc, level1, level2, dct1[0][0], 64 );
  682.     report( "zigzag_interleave :" );
  683. #undef TEST_ZIGZAG_SCAN
  684. #undef TEST_ZIGZAG_SUB
  685.     return ret;
  686. }
  687. static int check_mc( int cpu_ref, int cpu_new )
  688. {
  689.     x264_mc_functions_t mc_c;
  690.     x264_mc_functions_t mc_ref;
  691.     x264_mc_functions_t mc_a;
  692.     x264_pixel_function_t pixel;
  693.     uint8_t *src     = &buf1[2*64+2];
  694.     uint8_t *src2[4] = { &buf1[3*64+2], &buf1[5*64+2],
  695.                          &buf1[7*64+2], &buf1[9*64+2] };
  696.     uint8_t *dst1    = buf3;
  697.     uint8_t *dst2    = buf4;
  698.     int dx, dy, i, j, k, w;
  699.     int ret = 0, ok, used_asm;
  700.     x264_mc_init( 0, &mc_c );
  701.     x264_mc_init( cpu_ref, &mc_ref );
  702.     x264_mc_init( cpu_new, &mc_a );
  703.     x264_pixel_init( 0, &pixel );
  704. #define MC_TEST_LUMA( w, h ) 
  705.         if( mc_a.mc_luma != mc_ref.mc_luma && !(w&(w-1)) && h<=16 ) 
  706.         { 
  707.             set_func_name( "mc_luma_%dx%d", w, h );
  708.             used_asm = 1; 
  709.             memset(buf3, 0xCD, 1024); 
  710.             memset(buf4, 0xCD, 1024); 
  711.             call_c( mc_c.mc_luma, dst1, 32, src2, 64, dx, dy, w, h ); 
  712.             call_a( mc_a.mc_luma, dst2, 32, src2, 64, dx, dy, w, h ); 
  713.             if( memcmp( buf3, buf4, 1024 ) ) 
  714.             { 
  715.                 fprintf( stderr, "mc_luma[mv(%d,%d) %2dx%-2d]     [FAILED]n", dx, dy, w, h ); 
  716.                 ok = 0; 
  717.             } 
  718.         } 
  719.         if( mc_a.get_ref != mc_ref.get_ref ) 
  720.         { 
  721.             uint8_t *ref = dst2; 
  722.             int ref_stride = 32; 
  723.             set_func_name( "get_ref_%dx%d", w, h );
  724.             used_asm = 1; 
  725.             memset(buf3, 0xCD, 1024); 
  726.             memset(buf4, 0xCD, 1024); 
  727.             call_c( mc_c.mc_luma, dst1, 32, src2, 64, dx, dy, w, h ); 
  728.             ref = (uint8_t*) call_a( mc_a.get_ref, ref, &ref_stride, src2, 64, dx, dy, w, h ); 
  729.             for( i=0; i<h; i++ ) 
  730.                 if( memcmp( dst1+i*32, ref+i*ref_stride, w ) ) 
  731.                 { 
  732.                     fprintf( stderr, "get_ref[mv(%d,%d) %2dx%-2d]     [FAILED]n", dx, dy, w, h ); 
  733.                     ok = 0; 
  734.                     break; 
  735.                 } 
  736.         }
  737. #define MC_TEST_CHROMA( w, h ) 
  738.         if( mc_a.mc_chroma != mc_ref.mc_chroma ) 
  739.         { 
  740.             set_func_name( "mc_chroma_%dx%d", w, h );
  741.             used_asm = 1; 
  742.             memset(buf3, 0xCD, 1024); 
  743.             memset(buf4, 0xCD, 1024); 
  744.             call_c( mc_c.mc_chroma, dst1, 16, src, 64, dx, dy, w, h ); 
  745.             call_a( mc_a.mc_chroma, dst2, 16, src, 64, dx, dy, w, h ); 
  746.             /* mc_chroma width=2 may write garbage to the right of dst. ignore that. */
  747.             for( j=0; j<h; j++ ) 
  748.                 for( i=w; i<4; i++ ) 
  749.                     dst2[i+j*16] = dst1[i+j*16]; 
  750.             if( memcmp( buf3, buf4, 1024 ) ) 
  751.             { 
  752.                 fprintf( stderr, "mc_chroma[mv(%d,%d) %2dx%-2d]     [FAILED]n", dx, dy, w, h ); 
  753.                 ok = 0; 
  754.             } 
  755.         }
  756.     ok = 1; used_asm = 0;
  757.     for( dy = -8; dy < 8; dy++ )
  758.         for( dx = -128; dx < 128; dx++ )
  759.         {
  760.             if( rand()&15 ) continue; // running all of them is too slow
  761.             MC_TEST_LUMA( 20, 18 );
  762.             MC_TEST_LUMA( 16, 16 );
  763.             MC_TEST_LUMA( 16, 8 );
  764.             MC_TEST_LUMA( 12, 10 );
  765.             MC_TEST_LUMA( 8, 16 );
  766.             MC_TEST_LUMA( 8, 8 );
  767.             MC_TEST_LUMA( 8, 4 );
  768.             MC_TEST_LUMA( 4, 8 );
  769.             MC_TEST_LUMA( 4, 4 );
  770.         }
  771.     report( "mc luma :" );
  772.     ok = 1; used_asm = 0;
  773.     for( dy = -1; dy < 9; dy++ )
  774.         for( dx = -128; dx < 128; dx++ )
  775.         {
  776.             if( rand()&15 ) continue;
  777.             MC_TEST_CHROMA( 8, 8 );
  778.             MC_TEST_CHROMA( 8, 4 );
  779.             MC_TEST_CHROMA( 4, 8 );
  780.             MC_TEST_CHROMA( 4, 4 );
  781.             MC_TEST_CHROMA( 4, 2 );
  782.             MC_TEST_CHROMA( 2, 4 );
  783.             MC_TEST_CHROMA( 2, 2 );
  784.         }
  785.     report( "mc chroma :" );
  786. #undef MC_TEST_LUMA
  787. #undef MC_TEST_CHROMA
  788. #define MC_TEST_AVG( name, weight ) 
  789.     for( i = 0, ok = 1, used_asm = 0; i < 10; i++ ) 
  790.     { 
  791.         memcpy( buf3, buf1+320, 320 ); 
  792.         memcpy( buf4, buf1+320, 320 ); 
  793.         if( mc_a.name[i] != mc_ref.name[i] ) 
  794.         { 
  795.             set_func_name( "%s_%s", #name, pixel_names[i] );
  796.             used_asm = 1; 
  797.             call_c1( mc_c.name[i], buf3, 16, buf2+1, 16, buf1+18, 16, weight ); 
  798.             call_a1( mc_a.name[i], buf4, 16, buf2+1, 16, buf1+18, 16, weight ); 
  799.             if( memcmp( buf3, buf4, 320 ) ) 
  800.             { 
  801.                 ok = 0; 
  802.                 fprintf( stderr, #name "[%d]: [FAILED]n", i ); 
  803.             } 
  804.             call_c2( mc_c.name[i], buf3, 16, buf2+1, 16, buf1+18, 16, weight ); 
  805.             call_a2( mc_a.name[i], buf4, 16, buf2+1, 16, buf1+18, 16, weight ); 
  806.         } 
  807.     }
  808.     ok = 1; used_asm = 0;
  809.     for( w = -63; w <= 127 && ok; w++ )
  810.         MC_TEST_AVG( avg, w );
  811.     report( "mc wpredb :" );
  812.     if( mc_a.hpel_filter != mc_ref.hpel_filter )
  813.     {
  814.         uint8_t *src = buf1+8+2*64;
  815.         uint8_t *dstc[3] = { buf3+8, buf3+8+16*64, buf3+8+32*64 };
  816.         uint8_t *dsta[3] = { buf4+8, buf4+8+16*64, buf4+8+32*64 };
  817.         void *tmp = buf3+49*64;
  818.         set_func_name( "hpel_filter" );
  819.         ok = 1; used_asm = 1;
  820.         memset( buf3, 0, 4096 );
  821.         memset( buf4, 0, 4096 );
  822.         call_c( mc_c.hpel_filter, dstc[0], dstc[1], dstc[2], src, 64, 48, 10, tmp );
  823.         call_a( mc_a.hpel_filter, dsta[0], dsta[1], dsta[2], src, 64, 48, 10, tmp );
  824.         for( i=0; i<3; i++ )
  825.             for( j=0; j<10; j++ )
  826.                 //FIXME ideally the first pixels would match too, but they aren't actually used
  827.                 if( memcmp( dstc[i]+j*64+2, dsta[i]+j*64+2, 43 ) )
  828.                 {
  829.                     ok = 0;
  830.                     fprintf( stderr, "hpel filter differs at plane %c line %dn", "hvc"[i], j );
  831.                     for( k=0; k<48; k++ )
  832.                         printf("%02x%s", dstc[i][j*64+k], (k+1)&3 ? "" : " ");
  833.                     printf("n");
  834.                     for( k=0; k<48; k++ )
  835.                         printf("%02x%s", dsta[i][j*64+k], (k+1)&3 ? "" : " ");
  836.                     printf("n");
  837.                     break;
  838.                 }
  839.         report( "hpel filter :" );
  840.     }
  841.     if( mc_a.frame_init_lowres_core != mc_ref.frame_init_lowres_core )
  842.     {
  843.         uint8_t *dstc[4] = { buf3, buf3+1024, buf3+2048, buf3+3072 };
  844.         uint8_t *dsta[4] = { buf4, buf4+1024, buf4+2048, buf4+3072 };
  845.         set_func_name( "lowres_init" );
  846.         ok = 1; used_asm = 1;
  847.         for( w=40; w<=48; w+=8 )
  848.         {
  849.             int stride = (w+8)&~15;
  850.             call_c( mc_c.frame_init_lowres_core, buf1, dstc[0], dstc[1], dstc[2], dstc[3], w*2, stride, w, 16 );
  851.             call_a( mc_a.frame_init_lowres_core, buf1, dsta[0], dsta[1], dsta[2], dsta[3], w*2, stride, w, 16 );
  852.             for( i=0; i<16; i++)
  853.             {
  854.                 for( j=0; j<4; j++)
  855.                     if( memcmp( dstc[j]+i*stride, dsta[j]+i*stride, w ) )
  856.                     {
  857.                         ok = 0;
  858.                         fprintf( stderr, "frame_init_lowres differs at plane %d line %dn", j, i );
  859.                         for( k=0; k<w; k++ )
  860.                             printf( "%d ", dstc[j][k+i*stride] );
  861.                         printf("n");
  862.                         for( k=0; k<w; k++ )
  863.                             printf( "%d ", dsta[j][k+i*stride] );
  864.                         printf("n");
  865.                         break;
  866.                     }
  867.             }
  868.         }
  869.         report( "lowres init :" );
  870.     }
  871. #define INTEGRAL_INIT( name, size, ... )
  872.     if( mc_a.name != mc_ref.name )
  873.     {
  874.         int stride = 80;
  875.         set_func_name( #name );
  876.         used_asm = 1;
  877.         memcpy( buf3, buf1, size*2*stride );
  878.         memcpy( buf4, buf1, size*2*stride );
  879.         uint16_t *sum = (uint16_t*)buf3;
  880.         call_c1( mc_c.name, __VA_ARGS__ );
  881.         sum = (uint16_t*)buf4;
  882.         call_a1( mc_a.name, __VA_ARGS__ );
  883.         if( memcmp( buf3, buf4, (stride-8)*2 )
  884.             || (size>9 && memcmp( buf3+18*stride, buf4+18*stride, (stride-8)*2 )))
  885.             ok = 0;
  886.         call_c2( mc_c.name, __VA_ARGS__ );
  887.         call_a2( mc_a.name, __VA_ARGS__ );
  888.     }
  889.     ok = 1; used_asm = 0;
  890.     INTEGRAL_INIT( integral_init4h, 2, sum+stride, buf2, stride );
  891.     INTEGRAL_INIT( integral_init8h, 2, sum+stride, buf2, stride );
  892.     INTEGRAL_INIT( integral_init4v, 14, sum, sum+9*stride, stride );
  893.     INTEGRAL_INIT( integral_init8v, 9, sum, stride );
  894.     report( "integral init :" );
  895.     if( mc_a.mbtree_propagate_cost != mc_ref.mbtree_propagate_cost )
  896.     {
  897.         ok = 1; used_asm = 1;
  898.         set_func_name( "mbtree_propagate" );
  899.         int *dsta = (int*)buf3;
  900.         int *dstc = dsta+400;
  901.         uint16_t *prop = (uint16_t*)buf1;
  902.         uint16_t *intra = (uint16_t*)buf4;
  903.         uint16_t *inter = intra+400;
  904.         uint16_t *qscale = inter+400;
  905.         uint16_t *rand = (uint16_t*)buf2;
  906.         x264_emms();
  907.         for( i=0; i<400; i++ )
  908.         {
  909.             intra[i]  = *rand++ & 0x7fff;
  910.             intra[i] += !intra[i];
  911.             inter[i]  = *rand++ & 0x7fff;
  912.             qscale[i] = *rand++ & 0x7fff;
  913.         }
  914.         call_c( mc_c.mbtree_propagate_cost, dstc, prop, intra, inter, qscale, 400 );
  915.         call_a( mc_a.mbtree_propagate_cost, dsta, prop, intra, inter, qscale, 400 );
  916.         // I don't care about exact rounding, this is just how close the floating-point implementation happens to be
  917.         for( i=0; i<400; i++ )
  918.             ok &= abs(dstc[i]-dsta[i]) <= (abs(dstc[i])>512) || fabs((double)dstc[i]/dsta[i]-1) < 1e-6;
  919.         report( "mbtree propagate :" );
  920.     }
  921.     return ret;
  922. }
  923. static int check_deblock( int cpu_ref, int cpu_new )
  924. {
  925.     x264_deblock_function_t db_c;
  926.     x264_deblock_function_t db_ref;
  927.     x264_deblock_function_t db_a;
  928.     int ret = 0, ok = 1, used_asm = 0;
  929.     int alphas[36], betas[36];
  930.     int8_t tcs[36][4];
  931.     int a, c, i, j;
  932.     x264_deblock_init( 0, &db_c );
  933.     x264_deblock_init( cpu_ref, &db_ref );
  934.     x264_deblock_init( cpu_new, &db_a );
  935.     /* not exactly the real values of a,b,tc but close enough */
  936.     a = 255; c = 250;
  937.     for( i = 35; i >= 0; i-- )
  938.     {
  939.         alphas[i] = a;
  940.         betas[i] = (i+1)/2;
  941.         tcs[i][0] = tcs[i][2] = (c+6)/10;
  942.         tcs[i][1] = tcs[i][3] = (c+9)/20;
  943.         a = a*9/10;
  944.         c = c*9/10;
  945.     }
  946. #define TEST_DEBLOCK( name, align, ... ) 
  947.     for( i = 0; i < 36; i++ ) 
  948.     { 
  949.         int off = 8*32 + (i&15)*4*!align; /* benchmark various alignments of h filter */
  950.         for( j = 0; j < 1024; j++ ) 
  951.             /* two distributions of random to excersize different failure modes */
  952.             buf3[j] = rand() & (i&1 ? 0xf : 0xff ); 
  953.         memcpy( buf4, buf3, 1024 ); 
  954.         if( db_a.name != db_ref.name ) 
  955.         { 
  956.             set_func_name( #name );
  957.             used_asm = 1; 
  958.             call_c1( db_c.name, buf3+off, 32, alphas[i], betas[i], ##__VA_ARGS__ ); 
  959.             call_a1( db_a.name, buf4+off, 32, alphas[i], betas[i], ##__VA_ARGS__ ); 
  960.             if( memcmp( buf3, buf4, 1024 ) ) 
  961.             { 
  962.                 ok = 0; 
  963.                 fprintf( stderr, #name "(a=%d, b=%d): [FAILED]n", alphas[i], betas[i] ); 
  964.                 break; 
  965.             } 
  966.             call_c2( db_c.name, buf3+off, 32, alphas[i], betas[i], ##__VA_ARGS__ ); 
  967.             call_a2( db_a.name, buf4+off, 32, alphas[i], betas[i], ##__VA_ARGS__ ); 
  968.         } 
  969.     }
  970.     TEST_DEBLOCK( deblock_h_luma, 0, tcs[i] );
  971.     TEST_DEBLOCK( deblock_v_luma, 1, tcs[i] );
  972.     TEST_DEBLOCK( deblock_h_chroma, 0, tcs[i] );
  973.     TEST_DEBLOCK( deblock_v_chroma, 1, tcs[i] );
  974.     TEST_DEBLOCK( deblock_h_luma_intra, 0 );
  975.     TEST_DEBLOCK( deblock_v_luma_intra, 1 );
  976.     TEST_DEBLOCK( deblock_h_chroma_intra, 0 );
  977.     TEST_DEBLOCK( deblock_v_chroma_intra, 1 );
  978.     report( "deblock :" );
  979.     return ret;
  980. }
  981. static int check_quant( int cpu_ref, int cpu_new )
  982. {
  983.     x264_quant_function_t qf_c;
  984.     x264_quant_function_t qf_ref;
  985.     x264_quant_function_t qf_a;
  986.     ALIGNED_16( int16_t dct1[64] );
  987.     ALIGNED_16( int16_t dct2[64] );
  988.     ALIGNED_16( uint8_t cqm_buf[64] );
  989.     int ret = 0, ok, used_asm;
  990.     int oks[2] = {1,1}, used_asms[2] = {0,0};
  991.     int i, j, i_cqm, qp;
  992.     x264_t h_buf;
  993.     x264_t *h = &h_buf;
  994.     memset( h, 0, sizeof(*h) );
  995.     h->pps = h->pps_array;
  996.     x264_param_default( &h->param );
  997.     h->chroma_qp_table = i_chroma_qp_table + 12;
  998.     h->param.rc.i_qp_min = 26;
  999.     h->param.analyse.b_transform_8x8 = 1;
  1000.     for( i_cqm = 0; i_cqm < 4; i_cqm++ )
  1001.     {
  1002.         if( i_cqm == 0 )
  1003.         {
  1004.             for( i = 0; i < 6; i++ )
  1005.                 h->pps->scaling_list[i] = x264_cqm_flat16;
  1006.             h->param.i_cqm_preset = h->pps->i_cqm_preset = X264_CQM_FLAT;
  1007.         }
  1008.         else if( i_cqm == 1 )
  1009.         {
  1010.             for( i = 0; i < 6; i++ )
  1011.                 h->pps->scaling_list[i] = x264_cqm_jvt[i];
  1012.             h->param.i_cqm_preset = h->pps->i_cqm_preset = X264_CQM_JVT;
  1013.         }
  1014.         else
  1015.         {
  1016.             if( i_cqm == 2 )
  1017.                 for( i = 0; i < 64; i++ )
  1018.                     cqm_buf[i] = 10 + rand() % 246;
  1019.             else
  1020.                 for( i = 0; i < 64; i++ )
  1021.                     cqm_buf[i] = 1;
  1022.             for( i = 0; i < 6; i++ )
  1023.                 h->pps->scaling_list[i] = cqm_buf;
  1024.             h->param.i_cqm_preset = h->pps->i_cqm_preset = X264_CQM_CUSTOM;
  1025.         }
  1026.         x264_cqm_init( h );
  1027.         x264_quant_init( h, 0, &qf_c );
  1028.         x264_quant_init( h, cpu_ref, &qf_ref );
  1029.         x264_quant_init( h, cpu_new, &qf_a );
  1030. #define INIT_QUANT8() 
  1031.         { 
  1032.             static const int scale1d[8] = {32,31,24,31,32,31,24,31}; 
  1033.             int x, y; 
  1034.             for( y = 0; y < 8; y++ ) 
  1035.                 for( x = 0; x < 8; x++ ) 
  1036.                 { 
  1037.                     unsigned int scale = (255*scale1d[y]*scale1d[x])/16; 
  1038.                     dct1[y*8+x] = dct2[y*8+x] = j ? (rand()%(2*scale+1))-scale : 0; 
  1039.                 } 
  1040.         }
  1041. #define INIT_QUANT4() 
  1042.         { 
  1043.             static const int scale1d[4] = {4,6,4,6}; 
  1044.             int x, y; 
  1045.             for( y = 0; y < 4; y++ ) 
  1046.                 for( x = 0; x < 4; x++ ) 
  1047.                 { 
  1048.                     unsigned int scale = 255*scale1d[y]*scale1d[x]; 
  1049.                     dct1[y*4+x] = dct2[y*4+x] = j ? (rand()%(2*scale+1))-scale : 0; 
  1050.                 } 
  1051.         }
  1052. #define TEST_QUANT_DC( name, cqm ) 
  1053.         if( qf_a.name != qf_ref.name ) 
  1054.         { 
  1055.             set_func_name( #name ); 
  1056.             used_asms[0] = 1; 
  1057.             for( qp = 51; qp > 0; qp-- ) 
  1058.             { 
  1059.                 for( j = 0; j < 2; j++ ) 
  1060.                 { 
  1061.                     int result_c, result_a; 
  1062.                     for( i = 0; i < 16; i++ ) 
  1063.                         dct1[i] = dct2[i] = j ? (rand() & 0x1fff) - 0xfff : 0; 
  1064.                     result_c = call_c1( qf_c.name, (void*)dct1, h->quant4_mf[CQM_4IY][qp][0], h->quant4_bias[CQM_4IY][qp][0] ); 
  1065.                     result_a = call_a1( qf_a.name, (void*)dct2, h->quant4_mf[CQM_4IY][qp][0], h->quant4_bias[CQM_4IY][qp][0] ); 
  1066.                     if( memcmp( dct1, dct2, 16*2 ) || result_c != result_a )       
  1067.                     { 
  1068.                         oks[0] = 0; 
  1069.                         fprintf( stderr, #name "(cqm=%d): [FAILED]n", i_cqm ); 
  1070.                         break; 
  1071.                     } 
  1072.                     call_c2( qf_c.name, (void*)dct1, h->quant4_mf[CQM_4IY][qp][0], h->quant4_bias[CQM_4IY][qp][0] ); 
  1073.                     call_a2( qf_a.name, (void*)dct2, h->quant4_mf[CQM_4IY][qp][0], h->quant4_bias[CQM_4IY][qp][0] ); 
  1074.                 } 
  1075.             } 
  1076.         }
  1077. #define TEST_QUANT( qname, block, w ) 
  1078.         if( qf_a.qname != qf_ref.qname ) 
  1079.         { 
  1080.             set_func_name( #qname ); 
  1081.             used_asms[0] = 1; 
  1082.             for( qp = 51; qp > 0; qp-- ) 
  1083.             { 
  1084.                 for( j = 0; j < 2; j++ ) 
  1085.                 { 
  1086.                     int result_c, result_a; 
  1087.                     INIT_QUANT##w() 
  1088.                     result_c = call_c1( qf_c.qname, (void*)dct1, h->quant##w##_mf[block][qp], h->quant##w##_bias[block][qp] ); 
  1089.                     result_a = call_a1( qf_a.qname, (void*)dct2, h->quant##w##_mf[block][qp], h->quant##w##_bias[block][qp] ); 
  1090.                     if( memcmp( dct1, dct2, w*w*2 ) || result_c != result_a ) 
  1091.                     { 
  1092.                         oks[0] = 0; 
  1093.                         fprintf( stderr, #qname "(qp=%d, cqm=%d, block="#block"): [FAILED]n", qp, i_cqm ); 
  1094.                         break; 
  1095.                     } 
  1096.                     call_c2( qf_c.qname, (void*)dct1, h->quant##w##_mf[block][qp], h->quant##w##_bias[block][qp] ); 
  1097.                     call_a2( qf_a.qname, (void*)dct2, h->quant##w##_mf[block][qp], h->quant##w##_bias[block][qp] ); 
  1098.                 } 
  1099.             } 
  1100.         }
  1101.         TEST_QUANT( quant_8x8, CQM_8IY, 8 );
  1102.         TEST_QUANT( quant_8x8, CQM_8PY, 8 );
  1103.         TEST_QUANT( quant_4x4, CQM_4IY, 4 );
  1104.         TEST_QUANT( quant_4x4, CQM_4PY, 4 );
  1105.         TEST_QUANT_DC( quant_4x4_dc, **h->quant4_mf[CQM_4IY] );
  1106.         TEST_QUANT_DC( quant_2x2_dc, **h->quant4_mf[CQM_4IC] );
  1107. #define TEST_DEQUANT( qname, dqname, block, w ) 
  1108.         if( qf_a.dqname != qf_ref.dqname ) 
  1109.         { 
  1110.             set_func_name( "%s_%s", #dqname, i_cqm?"cqm":"flat" ); 
  1111.             used_asms[1] = 1; 
  1112.             j = 1; 
  1113.             for( qp = 51; qp > 0; qp-- ) 
  1114.             { 
  1115.                 INIT_QUANT##w() 
  1116.                 call_c1( qf_c.qname, (void*)dct1, h->quant##w##_mf[block][qp], h->quant##w##_bias[block][qp] ); 
  1117.                 memcpy( dct2, dct1, w*w*2 ); 
  1118.                 call_c1( qf_c.dqname, (void*)dct1, h->dequant##w##_mf[block], qp ); 
  1119.                 call_a1( qf_a.dqname, (void*)dct2, h->dequant##w##_mf[block], qp ); 
  1120.                 if( memcmp( dct1, dct2, w*w*2 ) ) 
  1121.                 { 
  1122.                     oks[1] = 0; 
  1123.                     fprintf( stderr, #dqname "(qp=%d, cqm=%d, block="#block"): [FAILED]n", qp, i_cqm ); 
  1124.                     break; 
  1125.                 } 
  1126.                 call_c2( qf_c.dqname, (void*)dct1, h->dequant##w##_mf[block], qp ); 
  1127.                 call_a2( qf_a.dqname, (void*)dct2, h->dequant##w##_mf[block], qp ); 
  1128.             } 
  1129.         }
  1130.         TEST_DEQUANT( quant_8x8, dequant_8x8, CQM_8IY, 8 );
  1131.         TEST_DEQUANT( quant_8x8, dequant_8x8, CQM_8PY, 8 );
  1132.         TEST_DEQUANT( quant_4x4, dequant_4x4, CQM_4IY, 4 );
  1133.         TEST_DEQUANT( quant_4x4, dequant_4x4, CQM_4PY, 4 );
  1134. #define TEST_DEQUANT_DC( qname, dqname, block, w ) 
  1135.         if( qf_a.dqname != qf_ref.dqname ) 
  1136.         { 
  1137.             set_func_name( "%s_%s", #dqname, i_cqm?"cqm":"flat" ); 
  1138.             used_asms[1] = 1; 
  1139.             for( qp = 51; qp > 0; qp-- ) 
  1140.             { 
  1141.                 for( i = 0; i < 16; i++ ) 
  1142.                     dct1[i] = rand(); 
  1143.                 call_c1( qf_c.qname, (void*)dct1, h->quant##w##_mf[block][qp][0]>>1, h->quant##w##_bias[block][qp][0]>>1 ); 
  1144.                 memcpy( dct2, dct1, w*w*2 ); 
  1145.                 call_c1( qf_c.dqname, (void*)dct1, h->dequant##w##_mf[block], qp ); 
  1146.                 call_a1( qf_a.dqname, (void*)dct2, h->dequant##w##_mf[block], qp ); 
  1147.                 if( memcmp( dct1, dct2, w*w*2 ) ) 
  1148.                 { 
  1149.                     oks[1] = 0; 
  1150.                     fprintf( stderr, #dqname "(qp=%d, cqm=%d, block="#block"): [FAILED]n", qp, i_cqm ); 
  1151.                 } 
  1152.                 call_c2( qf_c.dqname, (void*)dct1, h->dequant##w##_mf[block], qp ); 
  1153.                 call_a2( qf_a.dqname, (void*)dct2, h->dequant##w##_mf[block], qp ); 
  1154.             } 
  1155.         }
  1156.         TEST_DEQUANT_DC( quant_4x4_dc, dequant_4x4_dc, CQM_4IY, 4 );
  1157.         x264_cqm_delete( h );
  1158.     }
  1159.     ok = oks[0]; used_asm = used_asms[0];
  1160.     report( "quant :" );
  1161.     ok = oks[1]; used_asm = used_asms[1];
  1162.     report( "dequant :" );
  1163.     ok = 1; used_asm = 0;
  1164.     if( qf_a.denoise_dct != qf_ref.denoise_dct )
  1165.     {
  1166.         int size;
  1167.         used_asm = 1;
  1168.         for( size = 16; size <= 64; size += 48 )
  1169.         {
  1170.             set_func_name( "denoise_dct" );
  1171.             memcpy(dct1, buf1, size*2);
  1172.             memcpy(dct2, buf1, size*2);
  1173.             memcpy(buf3+256, buf3, 256);
  1174.             call_c1( qf_c.denoise_dct, dct1, (uint32_t*)buf3, (uint16_t*)buf2, size );
  1175.             call_a1( qf_a.denoise_dct, dct2, (uint32_t*)(buf3+256), (uint16_t*)buf2, size );
  1176.             if( memcmp( dct1, dct2, size*2 ) || memcmp( buf3+4, buf3+256+4, (size-1)*sizeof(uint32_t) ) )
  1177.                 ok = 0;
  1178.             call_c2( qf_c.denoise_dct, dct1, (uint32_t*)buf3, (uint16_t*)buf2, size );
  1179.             call_a2( qf_a.denoise_dct, dct2, (uint32_t*)(buf3+256), (uint16_t*)buf2, size );
  1180.         }
  1181.     }
  1182.     report( "denoise dct :" );
  1183. #define TEST_DECIMATE( decname, w, ac, thresh ) 
  1184.     if( qf_a.decname != qf_ref.decname ) 
  1185.     { 
  1186.         set_func_name( #decname ); 
  1187.         used_asm = 1; 
  1188.         for( i = 0; i < 100; i++ ) 
  1189.         { 
  1190.             int result_c, result_a, idx; 
  1191.             for( idx = 0; idx < w*w; idx++ ) 
  1192.                 dct1[idx] = !(rand()&3) + (!(rand()&15))*(rand()&3); 
  1193.             if( ac ) 
  1194.                 dct1[0] = 0; 
  1195.             result_c = call_c( qf_c.decname, (void*)dct1 ); 
  1196.             result_a = call_a( qf_a.decname, (void*)dct1 ); 
  1197.             if( X264_MIN(result_c,thresh) != X264_MIN(result_a,thresh) ) 
  1198.             { 
  1199.                 ok = 0; 
  1200.                 fprintf( stderr, #decname ": [FAILED]n" ); 
  1201.                 break; 
  1202.             } 
  1203.         } 
  1204.     }
  1205.     ok = 1; used_asm = 0;
  1206.     TEST_DECIMATE( decimate_score64, 8, 0, 6 );
  1207.     TEST_DECIMATE( decimate_score16, 4, 0, 6 );
  1208.     TEST_DECIMATE( decimate_score15, 4, 1, 7 );
  1209.     report( "decimate_score :" );
  1210. #define TEST_LAST( last, lastname, w, ac ) 
  1211.     if( qf_a.last != qf_ref.last ) 
  1212.     { 
  1213.         set_func_name( #lastname ); 
  1214.         used_asm = 1; 
  1215.         for( i = 0; i < 100; i++ ) 
  1216.         { 
  1217.             int result_c, result_a, idx, nnz=0; 
  1218.             int max = rand() & (w*w-1); 
  1219.             memset( dct1, 0, w*w*2 ); 
  1220.             for( idx = ac; idx < max; idx++ ) 
  1221.                 nnz |= dct1[idx] = !(rand()&3) + (!(rand()&15))*rand(); 
  1222.             if( !nnz ) 
  1223.                 dct1[ac] = 1; 
  1224.             result_c = call_c( qf_c.last, (void*)(dct1+ac) ); 
  1225.             result_a = call_a( qf_a.last, (void*)(dct1+ac) ); 
  1226.             if( result_c != result_a ) 
  1227.             { 
  1228.                 ok = 0; 
  1229.                 fprintf( stderr, #lastname ": [FAILED]n" ); 
  1230.                 break; 
  1231.             } 
  1232.         } 
  1233.     }
  1234.     ok = 1; used_asm = 0;
  1235.     TEST_LAST( coeff_last[DCT_CHROMA_DC],  coeff_last4, 2, 0 );
  1236.     TEST_LAST( coeff_last[  DCT_LUMA_AC], coeff_last15, 4, 1 );
  1237.     TEST_LAST( coeff_last[ DCT_LUMA_4x4], coeff_last16, 4, 0 );
  1238.     TEST_LAST( coeff_last[ DCT_LUMA_8x8], coeff_last64, 8, 0 );
  1239.     report( "coeff_last :" );
  1240. #define TEST_LEVELRUN( lastname, name, w, ac ) 
  1241.     if( qf_a.lastname != qf_ref.lastname ) 
  1242.     { 
  1243.         set_func_name( #name ); 
  1244.         used_asm = 1; 
  1245.         for( i = 0; i < 100; i++ ) 
  1246.         { 
  1247.             x264_run_level_t runlevel_c, runlevel_a; 
  1248.             int result_c, result_a, idx, nnz=0; 
  1249.             int max = rand() & (w*w-1); 
  1250.             memset( dct1, 0, w*w*2 ); 
  1251.             memcpy( &runlevel_a, buf1+i, sizeof(x264_run_level_t) ); 
  1252.             memcpy( &runlevel_c, buf1+i, sizeof(x264_run_level_t) ); 
  1253.             for( idx = ac; idx < max; idx++ ) 
  1254.                 nnz |= dct1[idx] = !(rand()&3) + (!(rand()&15))*rand(); 
  1255.             if( !nnz ) 
  1256.                 dct1[ac] = 1; 
  1257.             result_c = call_c( qf_c.lastname, (void*)(dct1+ac), &runlevel_c ); 
  1258.             result_a = call_a( qf_a.lastname, (void*)(dct1+ac), &runlevel_a ); 
  1259.             if( result_c != result_a || runlevel_c.last != runlevel_a.last || 
  1260.                 memcmp(runlevel_c.level, runlevel_a.level, sizeof(int16_t)*result_c) || 
  1261.                 memcmp(runlevel_c.run, runlevel_a.run, sizeof(uint8_t)*(result_c-1)) ) 
  1262.             { 
  1263.                 ok = 0; 
  1264.                 fprintf( stderr, #name ": [FAILED]n" ); 
  1265.                 break; 
  1266.             } 
  1267.         } 
  1268.     }
  1269.     ok = 1; used_asm = 0;
  1270.     TEST_LEVELRUN( coeff_level_run[DCT_CHROMA_DC],  coeff_level_run4, 2, 0 );
  1271.     TEST_LEVELRUN( coeff_level_run[  DCT_LUMA_AC], coeff_level_run15, 4, 1 );
  1272.     TEST_LEVELRUN( coeff_level_run[ DCT_LUMA_4x4], coeff_level_run16, 4, 0 );
  1273.     report( "coeff_level_run :" );
  1274.     return ret;
  1275. }
  1276. static int check_intra( int cpu_ref, int cpu_new )
  1277. {
  1278.     int ret = 0, ok = 1, used_asm = 0;
  1279.     int i;
  1280.     ALIGNED_16( uint8_t edge[33] );
  1281.     ALIGNED_16( uint8_t edge2[33] );
  1282.     struct
  1283.     {
  1284.         x264_predict_t      predict_16x16[4+3];
  1285.         x264_predict_t      predict_8x8c[4+3];
  1286.         x264_predict8x8_t   predict_8x8[9+3];
  1287.         x264_predict_t      predict_4x4[9+3];
  1288.         x264_predict_8x8_filter_t predict_8x8_filter;
  1289.     } ip_c, ip_ref, ip_a;
  1290.     x264_predict_16x16_init( 0, ip_c.predict_16x16 );
  1291.     x264_predict_8x8c_init( 0, ip_c.predict_8x8c );
  1292.     x264_predict_8x8_init( 0, ip_c.predict_8x8, &ip_c.predict_8x8_filter );
  1293.     x264_predict_4x4_init( 0, ip_c.predict_4x4 );
  1294.     x264_predict_16x16_init( cpu_ref, ip_ref.predict_16x16 );
  1295.     x264_predict_8x8c_init( cpu_ref, ip_ref.predict_8x8c );
  1296.     x264_predict_8x8_init( cpu_ref, ip_ref.predict_8x8, &ip_ref.predict_8x8_filter );
  1297.     x264_predict_4x4_init( cpu_ref, ip_ref.predict_4x4 );
  1298.     x264_predict_16x16_init( cpu_new, ip_a.predict_16x16 );
  1299.     x264_predict_8x8c_init( cpu_new, ip_a.predict_8x8c );
  1300.     x264_predict_8x8_init( cpu_new, ip_a.predict_8x8, &ip_a.predict_8x8_filter );
  1301.     x264_predict_4x4_init( cpu_new, ip_a.predict_4x4 );
  1302.     ip_c.predict_8x8_filter( buf1+48, edge, ALL_NEIGHBORS, ALL_NEIGHBORS );
  1303. #define INTRA_TEST( name, dir, w, ... ) 
  1304.     if( ip_a.name[dir] != ip_ref.name[dir] )
  1305.     { 
  1306.         set_func_name( "intra_%s_%s", #name, intra_##name##_names[dir] );
  1307.         used_asm = 1; 
  1308.         memcpy( buf3, buf1, 32*20 );
  1309.         memcpy( buf4, buf1, 32*20 );
  1310.         call_c( ip_c.name[dir], buf3+48, ##__VA_ARGS__ );
  1311.         call_a( ip_a.name[dir], buf4+48, ##__VA_ARGS__ );
  1312.         if( memcmp( buf3, buf4, 32*20 ) )
  1313.         {
  1314.             fprintf( stderr, #name "[%d] :  [FAILED]n", dir );
  1315.             ok = 0;
  1316.             int j,k;
  1317.             for(k=-1; k<16; k++)
  1318.                 printf("%2x ", edge[16+k]);
  1319.             printf("n");
  1320.             for(j=0; j<w; j++){
  1321.                 printf("%2x ", edge[14-j]);
  1322.                 for(k=0; k<w; k++)
  1323.                     printf("%2x ", buf4[48+k+j*32]);
  1324.                 printf("n");
  1325.             }
  1326.             printf("n");
  1327.             for(j=0; j<w; j++){
  1328.                 printf("   ");
  1329.                 for(k=0; k<w; k++)
  1330.                     printf("%2x ", buf3[48+k+j*32]);
  1331.                 printf("n");
  1332.             }
  1333.         }
  1334.     }
  1335.     for( i = 0; i < 12; i++ )
  1336.         INTRA_TEST( predict_4x4, i, 4 );
  1337.     for( i = 0; i < 7; i++ )
  1338.         INTRA_TEST( predict_8x8c, i, 8 );
  1339.     for( i = 0; i < 7; i++ )
  1340.         INTRA_TEST( predict_16x16, i, 16 );
  1341.     for( i = 0; i < 12; i++ )
  1342.         INTRA_TEST( predict_8x8, i, 8, edge );
  1343.     set_func_name("intra_predict_8x8_filter");
  1344.     if( ip_a.predict_8x8_filter != ip_ref.predict_8x8_filter )
  1345.     {
  1346.         used_asm = 1;
  1347.         for( i = 0; i < 32; i++ )
  1348.         {
  1349.             memcpy( edge2, edge, 33 );
  1350.             call_c(ip_c.predict_8x8_filter, buf1+48, edge, (i&24)>>1, i&7);
  1351.             call_a(ip_a.predict_8x8_filter, buf1+48, edge2, (i&24)>>1, i&7);
  1352.             if( memcmp( edge, edge2, 33 ) )
  1353.             {
  1354.                 fprintf( stderr, "predict_8x8_filter :  [FAILED] %d %dn", (i&24)>>1, i&7);
  1355.                 ok = 0;
  1356.             }
  1357.         }
  1358.     }
  1359.     report( "intra pred :" );
  1360.     return ret;
  1361. }
  1362. #define DECL_CABAC(cpu) 
  1363. static void run_cabac_##cpu( uint8_t *dst )
  1364. {
  1365.     int i;
  1366.     x264_cabac_t cb;
  1367.     x264_cabac_context_init( &cb, SLICE_TYPE_P, 26, 0 );
  1368.     x264_cabac_encode_init( &cb, dst, dst+0xff0 );
  1369.     for( i=0; i<0x1000; i++ )
  1370.         x264_cabac_encode_decision_##cpu( &cb, buf1[i]>>1, buf1[i]&1 );
  1371. }
  1372. DECL_CABAC(c)
  1373. #ifdef HAVE_MMX
  1374. DECL_CABAC(asm)
  1375. #else
  1376. #define run_cabac_asm run_cabac_c
  1377. #endif
  1378. static int check_cabac( int cpu_ref, int cpu_new )
  1379. {
  1380.     int ret = 0, ok, used_asm = 1;
  1381.     if( cpu_ref || run_cabac_c == run_cabac_asm)
  1382.         return 0;
  1383.     set_func_name( "cabac_encode_decision" );
  1384.     memcpy( buf4, buf3, 0x1000 );
  1385.     call_c( run_cabac_c, buf3 );
  1386.     call_a( run_cabac_asm, buf4 );
  1387.     ok = !memcmp( buf3, buf4, 0x1000 );
  1388.     report( "cabac :" );
  1389.     return ret;
  1390. }
  1391. static int check_all_funcs( int cpu_ref, int cpu_new )
  1392. {
  1393.     return check_pixel( cpu_ref, cpu_new )
  1394.          + check_dct( cpu_ref, cpu_new )
  1395.          + check_mc( cpu_ref, cpu_new )
  1396.          + check_intra( cpu_ref, cpu_new )
  1397.          + check_deblock( cpu_ref, cpu_new )
  1398.          + check_quant( cpu_ref, cpu_new )
  1399.          + check_cabac( cpu_ref, cpu_new );
  1400. }
  1401. static int add_flags( int *cpu_ref, int *cpu_new, int flags, const char *name )
  1402. {
  1403.     *cpu_ref = *cpu_new;
  1404.     *cpu_new |= flags;
  1405.     if( *cpu_new & X264_CPU_SSE2_IS_FAST )
  1406.         *cpu_new &= ~X264_CPU_SSE2_IS_SLOW;
  1407.     if( !quiet )
  1408.         fprintf( stderr, "x264: %sn", name );
  1409.     return check_all_funcs( *cpu_ref, *cpu_new );
  1410. }
  1411. static int check_all_flags( void )
  1412. {
  1413.     int ret = 0;
  1414.     int cpu0 = 0, cpu1 = 0;
  1415. #ifdef HAVE_MMX
  1416.     if( x264_cpu_detect() & X264_CPU_MMXEXT )
  1417.     {
  1418.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_MMX | X264_CPU_MMXEXT, "MMX" );
  1419.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_CACHELINE_64, "MMX Cache64" );
  1420.         cpu1 &= ~X264_CPU_CACHELINE_64;
  1421. #ifdef ARCH_X86
  1422.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_CACHELINE_32, "MMX Cache32" );
  1423.         cpu1 &= ~X264_CPU_CACHELINE_32;
  1424. #endif
  1425.         if( x264_cpu_detect() & X264_CPU_LZCNT )
  1426.         {
  1427.             ret |= add_flags( &cpu0, &cpu1, X264_CPU_LZCNT, "MMX_LZCNT" );
  1428.             cpu1 &= ~X264_CPU_LZCNT;
  1429.         }
  1430.     }
  1431.     if( x264_cpu_detect() & X264_CPU_SSE2 )
  1432.     {
  1433.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSE | X264_CPU_SSE2 | X264_CPU_SSE2_IS_SLOW, "SSE2Slow" );
  1434.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSE2_IS_FAST, "SSE2Fast" );
  1435.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_CACHELINE_64, "SSE2Fast Cache64" );
  1436.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SHUFFLE_IS_FAST, "SSE2 FastShuffle" );
  1437.         cpu1 &= ~X264_CPU_SHUFFLE_IS_FAST;
  1438.     }
  1439.     if( x264_cpu_detect() & X264_CPU_SSE_MISALIGN )
  1440.     {
  1441.         cpu1 &= ~X264_CPU_CACHELINE_64;
  1442.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSE_MISALIGN, "SSE_Misalign" );
  1443.         cpu1 &= ~X264_CPU_SSE_MISALIGN;
  1444.     }
  1445.     if( x264_cpu_detect() & X264_CPU_LZCNT )
  1446.     {
  1447.         cpu1 &= ~X264_CPU_CACHELINE_64;
  1448.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_LZCNT, "SSE_LZCNT" );
  1449.         cpu1 &= ~X264_CPU_LZCNT;
  1450.     }
  1451.     if( x264_cpu_detect() & X264_CPU_SSE3 )
  1452.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSE3 | X264_CPU_CACHELINE_64, "SSE3" );
  1453.     if( x264_cpu_detect() & X264_CPU_SSSE3 )
  1454.     {
  1455.         cpu1 &= ~X264_CPU_CACHELINE_64;
  1456.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSSE3, "SSSE3" );
  1457.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_CACHELINE_64, "SSSE3 Cache64" );
  1458.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SHUFFLE_IS_FAST, "SSSE3 FastShuffle" );
  1459.         cpu1 &= ~X264_CPU_SHUFFLE_IS_FAST;
  1460.     }
  1461.     if( x264_cpu_detect() & X264_CPU_SSE4 )
  1462.     {
  1463.         cpu1 &= ~X264_CPU_CACHELINE_64;
  1464.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_SSE4, "SSE4" );
  1465.     }
  1466. #elif ARCH_PPC
  1467.     if( x264_cpu_detect() & X264_CPU_ALTIVEC )
  1468.     {
  1469.         fprintf( stderr, "x264: ALTIVEC against Cn" );
  1470.         ret = check_all_funcs( 0, X264_CPU_ALTIVEC );
  1471.     }
  1472. #elif ARCH_ARM
  1473.     if( x264_cpu_detect() & X264_CPU_ARMV6 )
  1474.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_ARMV6, "ARMv6" );
  1475.     if( x264_cpu_detect() & X264_CPU_NEON )
  1476.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_NEON, "NEON" );
  1477.     if( x264_cpu_detect() & X264_CPU_FAST_NEON_MRC )
  1478.         ret |= add_flags( &cpu0, &cpu1, X264_CPU_FAST_NEON_MRC, "Fast NEON MRC" );
  1479. #endif
  1480.     return ret;
  1481. }
  1482. int main(int argc, char *argv[])
  1483. {
  1484.     int ret = 0;
  1485.     int i;
  1486.     if( argc > 1 && !strncmp( argv[1], "--bench", 7 ) )
  1487.     {
  1488. #if !defined(ARCH_X86) && !defined(ARCH_X86_64) && !defined(ARCH_PPC) && !defined(ARCH_ARM)
  1489.         fprintf( stderr, "no --bench for your cpu until you port rdtscn" );
  1490.         return 1;
  1491. #endif
  1492.         do_bench = 1;
  1493.         if( argv[1][7] == '=' )
  1494.         {
  1495.             bench_pattern = argv[1]+8;
  1496.             bench_pattern_len = strlen(bench_pattern);
  1497.         }
  1498.         argc--;
  1499.         argv++;
  1500.     }
  1501.     i = ( argc > 1 ) ? atoi(argv[1]) : x264_mdate();
  1502.     fprintf( stderr, "x264: using random seed %un", i );
  1503.     srand( i );
  1504.     buf1 = x264_malloc( 0x3e00 + 16*BENCH_ALIGNS );
  1505.     if( !buf1 )
  1506.     {
  1507.         fprintf( stderr, "malloc failed, unable to initiate tests!n" );
  1508.         return -1;
  1509.     }
  1510.     buf2 = buf1 + 0xf00;
  1511.     buf3 = buf2 + 0xf00;
  1512.     buf4 = buf3 + 0x1000;
  1513.     for( i=0; i<0x1e00; i++ )
  1514.         buf1[i] = rand() & 0xFF;
  1515.     memset( buf1+0x1e00, 0, 0x2000 );
  1516.     /* 16-byte alignment is guaranteed whenever it's useful, but some functions also vary in speed depending on %64 */
  1517.     if( do_bench )
  1518.         for( i=0; i<BENCH_ALIGNS && !ret; i++ )
  1519.         {
  1520.             buf2 = buf1 + 0xf00;
  1521.             buf3 = buf2 + 0xf00;
  1522.             buf4 = buf3 + 0x1000;
  1523.             ret |= x264_stack_pagealign( check_all_flags, i*16 );
  1524.             buf1 += 16;
  1525.             quiet = 1;
  1526.             fprintf( stderr, "%d/%dr", i+1, BENCH_ALIGNS );
  1527.         }
  1528.     else
  1529.         ret = check_all_flags();
  1530.     if( ret )
  1531.     {
  1532.         fprintf( stderr, "x264: at least one test has failed. Go and fix that Right Now!n" );
  1533.         return -1;
  1534.     }
  1535.     fprintf( stderr, "x264: All tests passed Yeah :)n" );
  1536.     if( do_bench )
  1537.         print_bench();
  1538.     return 0;
  1539. }