11cb0ef41Sopenharmony_ci#! /usr/bin/env perl 21cb0ef41Sopenharmony_ci# Copyright 2005-2020 The OpenSSL Project Authors. All Rights Reserved. 31cb0ef41Sopenharmony_ci# 41cb0ef41Sopenharmony_ci# Licensed under the Apache License 2.0 (the "License"). You may not use 51cb0ef41Sopenharmony_ci# this file except in compliance with the License. You can obtain a copy 61cb0ef41Sopenharmony_ci# in the file LICENSE in the source distribution or at 71cb0ef41Sopenharmony_ci# https://www.openssl.org/source/license.html 81cb0ef41Sopenharmony_ci 91cb0ef41Sopenharmony_ci# 101cb0ef41Sopenharmony_ci# ==================================================================== 111cb0ef41Sopenharmony_ci# Written by Andy Polyakov <appro@openssl.org> for the OpenSSL 121cb0ef41Sopenharmony_ci# project. Rights for redistribution and usage in source and binary 131cb0ef41Sopenharmony_ci# forms are granted according to the License. 141cb0ef41Sopenharmony_ci# ==================================================================== 151cb0ef41Sopenharmony_ci# 161cb0ef41Sopenharmony_ci# whirlpool_block_mmx implementation. 171cb0ef41Sopenharmony_ci# 181cb0ef41Sopenharmony_ci*SCALE=\(2); # 2 or 8, that is the question:-) Value of 8 results 191cb0ef41Sopenharmony_ci# in 16KB large table, which is tough on L1 cache, but eliminates 201cb0ef41Sopenharmony_ci# unaligned references to it. Value of 2 results in 4KB table, but 211cb0ef41Sopenharmony_ci# 7/8 of references to it are unaligned. AMD cores seem to be 221cb0ef41Sopenharmony_ci# allergic to the latter, while Intel ones - to former [see the 231cb0ef41Sopenharmony_ci# table]. I stick to value of 2 for two reasons: 1. smaller table 241cb0ef41Sopenharmony_ci# minimizes cache trashing and thus mitigates the hazard of side- 251cb0ef41Sopenharmony_ci# channel leakage similar to AES cache-timing one; 2. performance 261cb0ef41Sopenharmony_ci# gap among different µ-archs is smaller. 271cb0ef41Sopenharmony_ci# 281cb0ef41Sopenharmony_ci# Performance table lists rounded amounts of CPU cycles spent by 291cb0ef41Sopenharmony_ci# whirlpool_block_mmx routine on single 64 byte input block, i.e. 301cb0ef41Sopenharmony_ci# smaller is better and asymptotic throughput can be estimated by 311cb0ef41Sopenharmony_ci# multiplying 64 by CPU clock frequency and dividing by relevant 321cb0ef41Sopenharmony_ci# value from the given table: 331cb0ef41Sopenharmony_ci# 341cb0ef41Sopenharmony_ci# $SCALE=2/8 icc8 gcc3 351cb0ef41Sopenharmony_ci# Intel P4 3200/4600 4600(*) 6400 361cb0ef41Sopenharmony_ci# Intel PIII 2900/3000 4900 5400 371cb0ef41Sopenharmony_ci# AMD K[78] 2500/1800 9900 8200(**) 381cb0ef41Sopenharmony_ci# 391cb0ef41Sopenharmony_ci# (*) I've sketched even non-MMX assembler, but for the record 401cb0ef41Sopenharmony_ci# I've failed to beat the Intel compiler on P4, without using 411cb0ef41Sopenharmony_ci# MMX that is... 421cb0ef41Sopenharmony_ci# (**) ... on AMD on the other hand non-MMX assembler was observed 431cb0ef41Sopenharmony_ci# to perform significantly better, but I figured this MMX 441cb0ef41Sopenharmony_ci# implementation is even faster anyway, so why bother? As for 451cb0ef41Sopenharmony_ci# pre-MMX AMD core[s], the improvement coefficient is more 461cb0ef41Sopenharmony_ci# than likely to vary anyway and I don't know how. But the 471cb0ef41Sopenharmony_ci# least I know is that gcc-generated code compiled with 481cb0ef41Sopenharmony_ci# -DL_ENDIAN and -DOPENSSL_SMALL_FOOTPRINT [see C module for 491cb0ef41Sopenharmony_ci# details] and optimized for Pentium was observed to perform 501cb0ef41Sopenharmony_ci# *better* on Pentium 100 than unrolled non-MMX assembler 511cb0ef41Sopenharmony_ci# loop... So we just say that I don't know if maintaining 521cb0ef41Sopenharmony_ci# non-MMX implementation would actually pay off, but till 531cb0ef41Sopenharmony_ci# opposite is proved "unlikely" is assumed. 541cb0ef41Sopenharmony_ci 551cb0ef41Sopenharmony_ci$0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; 561cb0ef41Sopenharmony_cipush(@INC,"${dir}","${dir}../../perlasm"); 571cb0ef41Sopenharmony_cirequire "x86asm.pl"; 581cb0ef41Sopenharmony_ci 591cb0ef41Sopenharmony_ci$output=pop and open STDOUT,">$output"; 601cb0ef41Sopenharmony_ci 611cb0ef41Sopenharmony_ci&asm_init($ARGV[0]); 621cb0ef41Sopenharmony_ci 631cb0ef41Sopenharmony_cisub L() { &data_byte(@_); } 641cb0ef41Sopenharmony_cisub LL() 651cb0ef41Sopenharmony_ci{ if ($SCALE==2) { &data_byte(@_); &data_byte(@_); } 661cb0ef41Sopenharmony_ci elsif ($SCALE==8) { for ($i=0;$i<8;$i++) { 671cb0ef41Sopenharmony_ci &data_byte(@_); 681cb0ef41Sopenharmony_ci unshift(@_,pop(@_)); 691cb0ef41Sopenharmony_ci } 701cb0ef41Sopenharmony_ci } 711cb0ef41Sopenharmony_ci else { die "invalid SCALE value"; } 721cb0ef41Sopenharmony_ci} 731cb0ef41Sopenharmony_ci 741cb0ef41Sopenharmony_cisub scale() 751cb0ef41Sopenharmony_ci{ if ($SCALE==2) { &lea(@_[0],&DWP(0,@_[1],@_[1])); } 761cb0ef41Sopenharmony_ci elsif ($SCALE==8) { &lea(@_[0],&DWP(0,"",@_[1],8)); } 771cb0ef41Sopenharmony_ci else { die "invalid SCALE value"; } 781cb0ef41Sopenharmony_ci} 791cb0ef41Sopenharmony_ci 801cb0ef41Sopenharmony_cisub row() 811cb0ef41Sopenharmony_ci{ if ($SCALE==2) { ((8-shift)&7); } 821cb0ef41Sopenharmony_ci elsif ($SCALE==8) { (8*shift); } 831cb0ef41Sopenharmony_ci else { die "invalid SCALE value"; } 841cb0ef41Sopenharmony_ci} 851cb0ef41Sopenharmony_ci 861cb0ef41Sopenharmony_ci$tbl="ebp"; 871cb0ef41Sopenharmony_ci@mm=("mm0","mm1","mm2","mm3","mm4","mm5","mm6","mm7"); 881cb0ef41Sopenharmony_ci 891cb0ef41Sopenharmony_ci&function_begin_B("whirlpool_block_mmx"); 901cb0ef41Sopenharmony_ci &push ("ebp"); 911cb0ef41Sopenharmony_ci &push ("ebx"); 921cb0ef41Sopenharmony_ci &push ("esi"); 931cb0ef41Sopenharmony_ci &push ("edi"); 941cb0ef41Sopenharmony_ci 951cb0ef41Sopenharmony_ci &mov ("esi",&wparam(0)); # hash value 961cb0ef41Sopenharmony_ci &mov ("edi",&wparam(1)); # input data stream 971cb0ef41Sopenharmony_ci &mov ("ebp",&wparam(2)); # number of chunks in input 981cb0ef41Sopenharmony_ci 991cb0ef41Sopenharmony_ci &mov ("eax","esp"); # copy stack pointer 1001cb0ef41Sopenharmony_ci &sub ("esp",128+20); # allocate frame 1011cb0ef41Sopenharmony_ci &and ("esp",-64); # align for cache-line 1021cb0ef41Sopenharmony_ci 1031cb0ef41Sopenharmony_ci &lea ("ebx",&DWP(128,"esp")); 1041cb0ef41Sopenharmony_ci &mov (&DWP(0,"ebx"),"esi"); # save parameter block 1051cb0ef41Sopenharmony_ci &mov (&DWP(4,"ebx"),"edi"); 1061cb0ef41Sopenharmony_ci &mov (&DWP(8,"ebx"),"ebp"); 1071cb0ef41Sopenharmony_ci &mov (&DWP(16,"ebx"),"eax"); # saved stack pointer 1081cb0ef41Sopenharmony_ci 1091cb0ef41Sopenharmony_ci &call (&label("pic_point")); 1101cb0ef41Sopenharmony_ci&set_label("pic_point"); 1111cb0ef41Sopenharmony_ci &blindpop($tbl); 1121cb0ef41Sopenharmony_ci &lea ($tbl,&DWP(&label("table")."-".&label("pic_point"),$tbl)); 1131cb0ef41Sopenharmony_ci 1141cb0ef41Sopenharmony_ci &xor ("ecx","ecx"); 1151cb0ef41Sopenharmony_ci &xor ("edx","edx"); 1161cb0ef41Sopenharmony_ci 1171cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(@mm[$i],&QWP($i*8,"esi")); } # L=H 1181cb0ef41Sopenharmony_ci&set_label("outerloop"); 1191cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(&QWP($i*8,"esp"),@mm[$i]); } # K=L 1201cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &pxor(@mm[$i],&QWP($i*8,"edi")); } # L^=inp 1211cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(&QWP(64+$i*8,"esp"),@mm[$i]); } # S=L 1221cb0ef41Sopenharmony_ci 1231cb0ef41Sopenharmony_ci &xor ("esi","esi"); 1241cb0ef41Sopenharmony_ci &mov (&DWP(12,"ebx"),"esi"); # zero round counter 1251cb0ef41Sopenharmony_ci 1261cb0ef41Sopenharmony_ci&set_label("round",16); 1271cb0ef41Sopenharmony_ci &movq (@mm[0],&QWP(2048*$SCALE,$tbl,"esi",8)); # rc[r] 1281cb0ef41Sopenharmony_ci &mov ("eax",&DWP(0,"esp")); 1291cb0ef41Sopenharmony_ci &mov ("ebx",&DWP(4,"esp")); 1301cb0ef41Sopenharmony_ci &movz ("ecx",&LB("eax")); 1311cb0ef41Sopenharmony_ci &movz ("edx",&HB("eax")); 1321cb0ef41Sopenharmony_cifor($i=0;$i<8;$i++) { 1331cb0ef41Sopenharmony_ci my $func = ($i==0)? \&movq : \&pxor; 1341cb0ef41Sopenharmony_ci &shr ("eax",16); 1351cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1361cb0ef41Sopenharmony_ci &movz ("ecx",&LB("eax")); 1371cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1381cb0ef41Sopenharmony_ci &movz ("edx",&HB("eax")); 1391cb0ef41Sopenharmony_ci &pxor (@mm[0],&QWP(&row(0),$tbl,"esi",8)); 1401cb0ef41Sopenharmony_ci &$func (@mm[1],&QWP(&row(1),$tbl,"edi",8)); 1411cb0ef41Sopenharmony_ci &mov ("eax",&DWP(($i+1)*8,"esp")); 1421cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1431cb0ef41Sopenharmony_ci &movz ("ecx",&LB("ebx")); 1441cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1451cb0ef41Sopenharmony_ci &movz ("edx",&HB("ebx")); 1461cb0ef41Sopenharmony_ci &$func (@mm[2],&QWP(&row(2),$tbl,"esi",8)); 1471cb0ef41Sopenharmony_ci &$func (@mm[3],&QWP(&row(3),$tbl,"edi",8)); 1481cb0ef41Sopenharmony_ci &shr ("ebx",16); 1491cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1501cb0ef41Sopenharmony_ci &movz ("ecx",&LB("ebx")); 1511cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1521cb0ef41Sopenharmony_ci &movz ("edx",&HB("ebx")); 1531cb0ef41Sopenharmony_ci &$func (@mm[4],&QWP(&row(4),$tbl,"esi",8)); 1541cb0ef41Sopenharmony_ci &$func (@mm[5],&QWP(&row(5),$tbl,"edi",8)); 1551cb0ef41Sopenharmony_ci &mov ("ebx",&DWP(($i+1)*8+4,"esp")); 1561cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1571cb0ef41Sopenharmony_ci &movz ("ecx",&LB("eax")); 1581cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1591cb0ef41Sopenharmony_ci &movz ("edx",&HB("eax")); 1601cb0ef41Sopenharmony_ci &$func (@mm[6],&QWP(&row(6),$tbl,"esi",8)); 1611cb0ef41Sopenharmony_ci &$func (@mm[7],&QWP(&row(7),$tbl,"edi",8)); 1621cb0ef41Sopenharmony_ci push(@mm,shift(@mm)); 1631cb0ef41Sopenharmony_ci} 1641cb0ef41Sopenharmony_ci 1651cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(&QWP($i*8,"esp"),@mm[$i]); } # K=L 1661cb0ef41Sopenharmony_ci 1671cb0ef41Sopenharmony_cifor($i=0;$i<8;$i++) { 1681cb0ef41Sopenharmony_ci &shr ("eax",16); 1691cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1701cb0ef41Sopenharmony_ci &movz ("ecx",&LB("eax")); 1711cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1721cb0ef41Sopenharmony_ci &movz ("edx",&HB("eax")); 1731cb0ef41Sopenharmony_ci &pxor (@mm[0],&QWP(&row(0),$tbl,"esi",8)); 1741cb0ef41Sopenharmony_ci &pxor (@mm[1],&QWP(&row(1),$tbl,"edi",8)); 1751cb0ef41Sopenharmony_ci &mov ("eax",&DWP(64+($i+1)*8,"esp")) if ($i<7); 1761cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1771cb0ef41Sopenharmony_ci &movz ("ecx",&LB("ebx")); 1781cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1791cb0ef41Sopenharmony_ci &movz ("edx",&HB("ebx")); 1801cb0ef41Sopenharmony_ci &pxor (@mm[2],&QWP(&row(2),$tbl,"esi",8)); 1811cb0ef41Sopenharmony_ci &pxor (@mm[3],&QWP(&row(3),$tbl,"edi",8)); 1821cb0ef41Sopenharmony_ci &shr ("ebx",16); 1831cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1841cb0ef41Sopenharmony_ci &movz ("ecx",&LB("ebx")); 1851cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1861cb0ef41Sopenharmony_ci &movz ("edx",&HB("ebx")); 1871cb0ef41Sopenharmony_ci &pxor (@mm[4],&QWP(&row(4),$tbl,"esi",8)); 1881cb0ef41Sopenharmony_ci &pxor (@mm[5],&QWP(&row(5),$tbl,"edi",8)); 1891cb0ef41Sopenharmony_ci &mov ("ebx",&DWP(64+($i+1)*8+4,"esp")) if ($i<7); 1901cb0ef41Sopenharmony_ci &scale ("esi","ecx"); 1911cb0ef41Sopenharmony_ci &movz ("ecx",&LB("eax")); 1921cb0ef41Sopenharmony_ci &scale ("edi","edx"); 1931cb0ef41Sopenharmony_ci &movz ("edx",&HB("eax")); 1941cb0ef41Sopenharmony_ci &pxor (@mm[6],&QWP(&row(6),$tbl,"esi",8)); 1951cb0ef41Sopenharmony_ci &pxor (@mm[7],&QWP(&row(7),$tbl,"edi",8)); 1961cb0ef41Sopenharmony_ci push(@mm,shift(@mm)); 1971cb0ef41Sopenharmony_ci} 1981cb0ef41Sopenharmony_ci &lea ("ebx",&DWP(128,"esp")); 1991cb0ef41Sopenharmony_ci &mov ("esi",&DWP(12,"ebx")); # pull round counter 2001cb0ef41Sopenharmony_ci &add ("esi",1); 2011cb0ef41Sopenharmony_ci &cmp ("esi",10); 2021cb0ef41Sopenharmony_ci &je (&label("roundsdone")); 2031cb0ef41Sopenharmony_ci 2041cb0ef41Sopenharmony_ci &mov (&DWP(12,"ebx"),"esi"); # update round counter 2051cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(&QWP(64+$i*8,"esp"),@mm[$i]); } # S=L 2061cb0ef41Sopenharmony_ci &jmp (&label("round")); 2071cb0ef41Sopenharmony_ci 2081cb0ef41Sopenharmony_ci&set_label("roundsdone",16); 2091cb0ef41Sopenharmony_ci &mov ("esi",&DWP(0,"ebx")); # reload argument block 2101cb0ef41Sopenharmony_ci &mov ("edi",&DWP(4,"ebx")); 2111cb0ef41Sopenharmony_ci &mov ("eax",&DWP(8,"ebx")); 2121cb0ef41Sopenharmony_ci 2131cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &pxor(@mm[$i],&QWP($i*8,"edi")); } # L^=inp 2141cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &pxor(@mm[$i],&QWP($i*8,"esi")); } # L^=H 2151cb0ef41Sopenharmony_ci for($i=0;$i<8;$i++) { &movq(&QWP($i*8,"esi"),@mm[$i]); } # H=L 2161cb0ef41Sopenharmony_ci 2171cb0ef41Sopenharmony_ci &lea ("edi",&DWP(64,"edi")); # inp+=64 2181cb0ef41Sopenharmony_ci &sub ("eax",1); # num-- 2191cb0ef41Sopenharmony_ci &jz (&label("alldone")); 2201cb0ef41Sopenharmony_ci &mov (&DWP(4,"ebx"),"edi"); # update argument block 2211cb0ef41Sopenharmony_ci &mov (&DWP(8,"ebx"),"eax"); 2221cb0ef41Sopenharmony_ci &jmp (&label("outerloop")); 2231cb0ef41Sopenharmony_ci 2241cb0ef41Sopenharmony_ci&set_label("alldone"); 2251cb0ef41Sopenharmony_ci &emms (); 2261cb0ef41Sopenharmony_ci &mov ("esp",&DWP(16,"ebx")); # restore saved stack pointer 2271cb0ef41Sopenharmony_ci &pop ("edi"); 2281cb0ef41Sopenharmony_ci &pop ("esi"); 2291cb0ef41Sopenharmony_ci &pop ("ebx"); 2301cb0ef41Sopenharmony_ci &pop ("ebp"); 2311cb0ef41Sopenharmony_ci &ret (); 2321cb0ef41Sopenharmony_ci 2331cb0ef41Sopenharmony_ci&align(64); 2341cb0ef41Sopenharmony_ci&set_label("table"); 2351cb0ef41Sopenharmony_ci &LL(0x18,0x18,0x60,0x18,0xc0,0x78,0x30,0xd8); 2361cb0ef41Sopenharmony_ci &LL(0x23,0x23,0x8c,0x23,0x05,0xaf,0x46,0x26); 2371cb0ef41Sopenharmony_ci &LL(0xc6,0xc6,0x3f,0xc6,0x7e,0xf9,0x91,0xb8); 2381cb0ef41Sopenharmony_ci &LL(0xe8,0xe8,0x87,0xe8,0x13,0x6f,0xcd,0xfb); 2391cb0ef41Sopenharmony_ci &LL(0x87,0x87,0x26,0x87,0x4c,0xa1,0x13,0xcb); 2401cb0ef41Sopenharmony_ci &LL(0xb8,0xb8,0xda,0xb8,0xa9,0x62,0x6d,0x11); 2411cb0ef41Sopenharmony_ci &LL(0x01,0x01,0x04,0x01,0x08,0x05,0x02,0x09); 2421cb0ef41Sopenharmony_ci &LL(0x4f,0x4f,0x21,0x4f,0x42,0x6e,0x9e,0x0d); 2431cb0ef41Sopenharmony_ci &LL(0x36,0x36,0xd8,0x36,0xad,0xee,0x6c,0x9b); 2441cb0ef41Sopenharmony_ci &LL(0xa6,0xa6,0xa2,0xa6,0x59,0x04,0x51,0xff); 2451cb0ef41Sopenharmony_ci &LL(0xd2,0xd2,0x6f,0xd2,0xde,0xbd,0xb9,0x0c); 2461cb0ef41Sopenharmony_ci &LL(0xf5,0xf5,0xf3,0xf5,0xfb,0x06,0xf7,0x0e); 2471cb0ef41Sopenharmony_ci &LL(0x79,0x79,0xf9,0x79,0xef,0x80,0xf2,0x96); 2481cb0ef41Sopenharmony_ci &LL(0x6f,0x6f,0xa1,0x6f,0x5f,0xce,0xde,0x30); 2491cb0ef41Sopenharmony_ci &LL(0x91,0x91,0x7e,0x91,0xfc,0xef,0x3f,0x6d); 2501cb0ef41Sopenharmony_ci &LL(0x52,0x52,0x55,0x52,0xaa,0x07,0xa4,0xf8); 2511cb0ef41Sopenharmony_ci &LL(0x60,0x60,0x9d,0x60,0x27,0xfd,0xc0,0x47); 2521cb0ef41Sopenharmony_ci &LL(0xbc,0xbc,0xca,0xbc,0x89,0x76,0x65,0x35); 2531cb0ef41Sopenharmony_ci &LL(0x9b,0x9b,0x56,0x9b,0xac,0xcd,0x2b,0x37); 2541cb0ef41Sopenharmony_ci &LL(0x8e,0x8e,0x02,0x8e,0x04,0x8c,0x01,0x8a); 2551cb0ef41Sopenharmony_ci &LL(0xa3,0xa3,0xb6,0xa3,0x71,0x15,0x5b,0xd2); 2561cb0ef41Sopenharmony_ci &LL(0x0c,0x0c,0x30,0x0c,0x60,0x3c,0x18,0x6c); 2571cb0ef41Sopenharmony_ci &LL(0x7b,0x7b,0xf1,0x7b,0xff,0x8a,0xf6,0x84); 2581cb0ef41Sopenharmony_ci &LL(0x35,0x35,0xd4,0x35,0xb5,0xe1,0x6a,0x80); 2591cb0ef41Sopenharmony_ci &LL(0x1d,0x1d,0x74,0x1d,0xe8,0x69,0x3a,0xf5); 2601cb0ef41Sopenharmony_ci &LL(0xe0,0xe0,0xa7,0xe0,0x53,0x47,0xdd,0xb3); 2611cb0ef41Sopenharmony_ci &LL(0xd7,0xd7,0x7b,0xd7,0xf6,0xac,0xb3,0x21); 2621cb0ef41Sopenharmony_ci &LL(0xc2,0xc2,0x2f,0xc2,0x5e,0xed,0x99,0x9c); 2631cb0ef41Sopenharmony_ci &LL(0x2e,0x2e,0xb8,0x2e,0x6d,0x96,0x5c,0x43); 2641cb0ef41Sopenharmony_ci &LL(0x4b,0x4b,0x31,0x4b,0x62,0x7a,0x96,0x29); 2651cb0ef41Sopenharmony_ci &LL(0xfe,0xfe,0xdf,0xfe,0xa3,0x21,0xe1,0x5d); 2661cb0ef41Sopenharmony_ci &LL(0x57,0x57,0x41,0x57,0x82,0x16,0xae,0xd5); 2671cb0ef41Sopenharmony_ci &LL(0x15,0x15,0x54,0x15,0xa8,0x41,0x2a,0xbd); 2681cb0ef41Sopenharmony_ci &LL(0x77,0x77,0xc1,0x77,0x9f,0xb6,0xee,0xe8); 2691cb0ef41Sopenharmony_ci &LL(0x37,0x37,0xdc,0x37,0xa5,0xeb,0x6e,0x92); 2701cb0ef41Sopenharmony_ci &LL(0xe5,0xe5,0xb3,0xe5,0x7b,0x56,0xd7,0x9e); 2711cb0ef41Sopenharmony_ci &LL(0x9f,0x9f,0x46,0x9f,0x8c,0xd9,0x23,0x13); 2721cb0ef41Sopenharmony_ci &LL(0xf0,0xf0,0xe7,0xf0,0xd3,0x17,0xfd,0x23); 2731cb0ef41Sopenharmony_ci &LL(0x4a,0x4a,0x35,0x4a,0x6a,0x7f,0x94,0x20); 2741cb0ef41Sopenharmony_ci &LL(0xda,0xda,0x4f,0xda,0x9e,0x95,0xa9,0x44); 2751cb0ef41Sopenharmony_ci &LL(0x58,0x58,0x7d,0x58,0xfa,0x25,0xb0,0xa2); 2761cb0ef41Sopenharmony_ci &LL(0xc9,0xc9,0x03,0xc9,0x06,0xca,0x8f,0xcf); 2771cb0ef41Sopenharmony_ci &LL(0x29,0x29,0xa4,0x29,0x55,0x8d,0x52,0x7c); 2781cb0ef41Sopenharmony_ci &LL(0x0a,0x0a,0x28,0x0a,0x50,0x22,0x14,0x5a); 2791cb0ef41Sopenharmony_ci &LL(0xb1,0xb1,0xfe,0xb1,0xe1,0x4f,0x7f,0x50); 2801cb0ef41Sopenharmony_ci &LL(0xa0,0xa0,0xba,0xa0,0x69,0x1a,0x5d,0xc9); 2811cb0ef41Sopenharmony_ci &LL(0x6b,0x6b,0xb1,0x6b,0x7f,0xda,0xd6,0x14); 2821cb0ef41Sopenharmony_ci &LL(0x85,0x85,0x2e,0x85,0x5c,0xab,0x17,0xd9); 2831cb0ef41Sopenharmony_ci &LL(0xbd,0xbd,0xce,0xbd,0x81,0x73,0x67,0x3c); 2841cb0ef41Sopenharmony_ci &LL(0x5d,0x5d,0x69,0x5d,0xd2,0x34,0xba,0x8f); 2851cb0ef41Sopenharmony_ci &LL(0x10,0x10,0x40,0x10,0x80,0x50,0x20,0x90); 2861cb0ef41Sopenharmony_ci &LL(0xf4,0xf4,0xf7,0xf4,0xf3,0x03,0xf5,0x07); 2871cb0ef41Sopenharmony_ci &LL(0xcb,0xcb,0x0b,0xcb,0x16,0xc0,0x8b,0xdd); 2881cb0ef41Sopenharmony_ci &LL(0x3e,0x3e,0xf8,0x3e,0xed,0xc6,0x7c,0xd3); 2891cb0ef41Sopenharmony_ci &LL(0x05,0x05,0x14,0x05,0x28,0x11,0x0a,0x2d); 2901cb0ef41Sopenharmony_ci &LL(0x67,0x67,0x81,0x67,0x1f,0xe6,0xce,0x78); 2911cb0ef41Sopenharmony_ci &LL(0xe4,0xe4,0xb7,0xe4,0x73,0x53,0xd5,0x97); 2921cb0ef41Sopenharmony_ci &LL(0x27,0x27,0x9c,0x27,0x25,0xbb,0x4e,0x02); 2931cb0ef41Sopenharmony_ci &LL(0x41,0x41,0x19,0x41,0x32,0x58,0x82,0x73); 2941cb0ef41Sopenharmony_ci &LL(0x8b,0x8b,0x16,0x8b,0x2c,0x9d,0x0b,0xa7); 2951cb0ef41Sopenharmony_ci &LL(0xa7,0xa7,0xa6,0xa7,0x51,0x01,0x53,0xf6); 2961cb0ef41Sopenharmony_ci &LL(0x7d,0x7d,0xe9,0x7d,0xcf,0x94,0xfa,0xb2); 2971cb0ef41Sopenharmony_ci &LL(0x95,0x95,0x6e,0x95,0xdc,0xfb,0x37,0x49); 2981cb0ef41Sopenharmony_ci &LL(0xd8,0xd8,0x47,0xd8,0x8e,0x9f,0xad,0x56); 2991cb0ef41Sopenharmony_ci &LL(0xfb,0xfb,0xcb,0xfb,0x8b,0x30,0xeb,0x70); 3001cb0ef41Sopenharmony_ci &LL(0xee,0xee,0x9f,0xee,0x23,0x71,0xc1,0xcd); 3011cb0ef41Sopenharmony_ci &LL(0x7c,0x7c,0xed,0x7c,0xc7,0x91,0xf8,0xbb); 3021cb0ef41Sopenharmony_ci &LL(0x66,0x66,0x85,0x66,0x17,0xe3,0xcc,0x71); 3031cb0ef41Sopenharmony_ci &LL(0xdd,0xdd,0x53,0xdd,0xa6,0x8e,0xa7,0x7b); 3041cb0ef41Sopenharmony_ci &LL(0x17,0x17,0x5c,0x17,0xb8,0x4b,0x2e,0xaf); 3051cb0ef41Sopenharmony_ci &LL(0x47,0x47,0x01,0x47,0x02,0x46,0x8e,0x45); 3061cb0ef41Sopenharmony_ci &LL(0x9e,0x9e,0x42,0x9e,0x84,0xdc,0x21,0x1a); 3071cb0ef41Sopenharmony_ci &LL(0xca,0xca,0x0f,0xca,0x1e,0xc5,0x89,0xd4); 3081cb0ef41Sopenharmony_ci &LL(0x2d,0x2d,0xb4,0x2d,0x75,0x99,0x5a,0x58); 3091cb0ef41Sopenharmony_ci &LL(0xbf,0xbf,0xc6,0xbf,0x91,0x79,0x63,0x2e); 3101cb0ef41Sopenharmony_ci &LL(0x07,0x07,0x1c,0x07,0x38,0x1b,0x0e,0x3f); 3111cb0ef41Sopenharmony_ci &LL(0xad,0xad,0x8e,0xad,0x01,0x23,0x47,0xac); 3121cb0ef41Sopenharmony_ci &LL(0x5a,0x5a,0x75,0x5a,0xea,0x2f,0xb4,0xb0); 3131cb0ef41Sopenharmony_ci &LL(0x83,0x83,0x36,0x83,0x6c,0xb5,0x1b,0xef); 3141cb0ef41Sopenharmony_ci &LL(0x33,0x33,0xcc,0x33,0x85,0xff,0x66,0xb6); 3151cb0ef41Sopenharmony_ci &LL(0x63,0x63,0x91,0x63,0x3f,0xf2,0xc6,0x5c); 3161cb0ef41Sopenharmony_ci &LL(0x02,0x02,0x08,0x02,0x10,0x0a,0x04,0x12); 3171cb0ef41Sopenharmony_ci &LL(0xaa,0xaa,0x92,0xaa,0x39,0x38,0x49,0x93); 3181cb0ef41Sopenharmony_ci &LL(0x71,0x71,0xd9,0x71,0xaf,0xa8,0xe2,0xde); 3191cb0ef41Sopenharmony_ci &LL(0xc8,0xc8,0x07,0xc8,0x0e,0xcf,0x8d,0xc6); 3201cb0ef41Sopenharmony_ci &LL(0x19,0x19,0x64,0x19,0xc8,0x7d,0x32,0xd1); 3211cb0ef41Sopenharmony_ci &LL(0x49,0x49,0x39,0x49,0x72,0x70,0x92,0x3b); 3221cb0ef41Sopenharmony_ci &LL(0xd9,0xd9,0x43,0xd9,0x86,0x9a,0xaf,0x5f); 3231cb0ef41Sopenharmony_ci &LL(0xf2,0xf2,0xef,0xf2,0xc3,0x1d,0xf9,0x31); 3241cb0ef41Sopenharmony_ci &LL(0xe3,0xe3,0xab,0xe3,0x4b,0x48,0xdb,0xa8); 3251cb0ef41Sopenharmony_ci &LL(0x5b,0x5b,0x71,0x5b,0xe2,0x2a,0xb6,0xb9); 3261cb0ef41Sopenharmony_ci &LL(0x88,0x88,0x1a,0x88,0x34,0x92,0x0d,0xbc); 3271cb0ef41Sopenharmony_ci &LL(0x9a,0x9a,0x52,0x9a,0xa4,0xc8,0x29,0x3e); 3281cb0ef41Sopenharmony_ci &LL(0x26,0x26,0x98,0x26,0x2d,0xbe,0x4c,0x0b); 3291cb0ef41Sopenharmony_ci &LL(0x32,0x32,0xc8,0x32,0x8d,0xfa,0x64,0xbf); 3301cb0ef41Sopenharmony_ci &LL(0xb0,0xb0,0xfa,0xb0,0xe9,0x4a,0x7d,0x59); 3311cb0ef41Sopenharmony_ci &LL(0xe9,0xe9,0x83,0xe9,0x1b,0x6a,0xcf,0xf2); 3321cb0ef41Sopenharmony_ci &LL(0x0f,0x0f,0x3c,0x0f,0x78,0x33,0x1e,0x77); 3331cb0ef41Sopenharmony_ci &LL(0xd5,0xd5,0x73,0xd5,0xe6,0xa6,0xb7,0x33); 3341cb0ef41Sopenharmony_ci &LL(0x80,0x80,0x3a,0x80,0x74,0xba,0x1d,0xf4); 3351cb0ef41Sopenharmony_ci &LL(0xbe,0xbe,0xc2,0xbe,0x99,0x7c,0x61,0x27); 3361cb0ef41Sopenharmony_ci &LL(0xcd,0xcd,0x13,0xcd,0x26,0xde,0x87,0xeb); 3371cb0ef41Sopenharmony_ci &LL(0x34,0x34,0xd0,0x34,0xbd,0xe4,0x68,0x89); 3381cb0ef41Sopenharmony_ci &LL(0x48,0x48,0x3d,0x48,0x7a,0x75,0x90,0x32); 3391cb0ef41Sopenharmony_ci &LL(0xff,0xff,0xdb,0xff,0xab,0x24,0xe3,0x54); 3401cb0ef41Sopenharmony_ci &LL(0x7a,0x7a,0xf5,0x7a,0xf7,0x8f,0xf4,0x8d); 3411cb0ef41Sopenharmony_ci &LL(0x90,0x90,0x7a,0x90,0xf4,0xea,0x3d,0x64); 3421cb0ef41Sopenharmony_ci &LL(0x5f,0x5f,0x61,0x5f,0xc2,0x3e,0xbe,0x9d); 3431cb0ef41Sopenharmony_ci &LL(0x20,0x20,0x80,0x20,0x1d,0xa0,0x40,0x3d); 3441cb0ef41Sopenharmony_ci &LL(0x68,0x68,0xbd,0x68,0x67,0xd5,0xd0,0x0f); 3451cb0ef41Sopenharmony_ci &LL(0x1a,0x1a,0x68,0x1a,0xd0,0x72,0x34,0xca); 3461cb0ef41Sopenharmony_ci &LL(0xae,0xae,0x82,0xae,0x19,0x2c,0x41,0xb7); 3471cb0ef41Sopenharmony_ci &LL(0xb4,0xb4,0xea,0xb4,0xc9,0x5e,0x75,0x7d); 3481cb0ef41Sopenharmony_ci &LL(0x54,0x54,0x4d,0x54,0x9a,0x19,0xa8,0xce); 3491cb0ef41Sopenharmony_ci &LL(0x93,0x93,0x76,0x93,0xec,0xe5,0x3b,0x7f); 3501cb0ef41Sopenharmony_ci &LL(0x22,0x22,0x88,0x22,0x0d,0xaa,0x44,0x2f); 3511cb0ef41Sopenharmony_ci &LL(0x64,0x64,0x8d,0x64,0x07,0xe9,0xc8,0x63); 3521cb0ef41Sopenharmony_ci &LL(0xf1,0xf1,0xe3,0xf1,0xdb,0x12,0xff,0x2a); 3531cb0ef41Sopenharmony_ci &LL(0x73,0x73,0xd1,0x73,0xbf,0xa2,0xe6,0xcc); 3541cb0ef41Sopenharmony_ci &LL(0x12,0x12,0x48,0x12,0x90,0x5a,0x24,0x82); 3551cb0ef41Sopenharmony_ci &LL(0x40,0x40,0x1d,0x40,0x3a,0x5d,0x80,0x7a); 3561cb0ef41Sopenharmony_ci &LL(0x08,0x08,0x20,0x08,0x40,0x28,0x10,0x48); 3571cb0ef41Sopenharmony_ci &LL(0xc3,0xc3,0x2b,0xc3,0x56,0xe8,0x9b,0x95); 3581cb0ef41Sopenharmony_ci &LL(0xec,0xec,0x97,0xec,0x33,0x7b,0xc5,0xdf); 3591cb0ef41Sopenharmony_ci &LL(0xdb,0xdb,0x4b,0xdb,0x96,0x90,0xab,0x4d); 3601cb0ef41Sopenharmony_ci &LL(0xa1,0xa1,0xbe,0xa1,0x61,0x1f,0x5f,0xc0); 3611cb0ef41Sopenharmony_ci &LL(0x8d,0x8d,0x0e,0x8d,0x1c,0x83,0x07,0x91); 3621cb0ef41Sopenharmony_ci &LL(0x3d,0x3d,0xf4,0x3d,0xf5,0xc9,0x7a,0xc8); 3631cb0ef41Sopenharmony_ci &LL(0x97,0x97,0x66,0x97,0xcc,0xf1,0x33,0x5b); 3641cb0ef41Sopenharmony_ci &LL(0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00); 3651cb0ef41Sopenharmony_ci &LL(0xcf,0xcf,0x1b,0xcf,0x36,0xd4,0x83,0xf9); 3661cb0ef41Sopenharmony_ci &LL(0x2b,0x2b,0xac,0x2b,0x45,0x87,0x56,0x6e); 3671cb0ef41Sopenharmony_ci &LL(0x76,0x76,0xc5,0x76,0x97,0xb3,0xec,0xe1); 3681cb0ef41Sopenharmony_ci &LL(0x82,0x82,0x32,0x82,0x64,0xb0,0x19,0xe6); 3691cb0ef41Sopenharmony_ci &LL(0xd6,0xd6,0x7f,0xd6,0xfe,0xa9,0xb1,0x28); 3701cb0ef41Sopenharmony_ci &LL(0x1b,0x1b,0x6c,0x1b,0xd8,0x77,0x36,0xc3); 3711cb0ef41Sopenharmony_ci &LL(0xb5,0xb5,0xee,0xb5,0xc1,0x5b,0x77,0x74); 3721cb0ef41Sopenharmony_ci &LL(0xaf,0xaf,0x86,0xaf,0x11,0x29,0x43,0xbe); 3731cb0ef41Sopenharmony_ci &LL(0x6a,0x6a,0xb5,0x6a,0x77,0xdf,0xd4,0x1d); 3741cb0ef41Sopenharmony_ci &LL(0x50,0x50,0x5d,0x50,0xba,0x0d,0xa0,0xea); 3751cb0ef41Sopenharmony_ci &LL(0x45,0x45,0x09,0x45,0x12,0x4c,0x8a,0x57); 3761cb0ef41Sopenharmony_ci &LL(0xf3,0xf3,0xeb,0xf3,0xcb,0x18,0xfb,0x38); 3771cb0ef41Sopenharmony_ci &LL(0x30,0x30,0xc0,0x30,0x9d,0xf0,0x60,0xad); 3781cb0ef41Sopenharmony_ci &LL(0xef,0xef,0x9b,0xef,0x2b,0x74,0xc3,0xc4); 3791cb0ef41Sopenharmony_ci &LL(0x3f,0x3f,0xfc,0x3f,0xe5,0xc3,0x7e,0xda); 3801cb0ef41Sopenharmony_ci &LL(0x55,0x55,0x49,0x55,0x92,0x1c,0xaa,0xc7); 3811cb0ef41Sopenharmony_ci &LL(0xa2,0xa2,0xb2,0xa2,0x79,0x10,0x59,0xdb); 3821cb0ef41Sopenharmony_ci &LL(0xea,0xea,0x8f,0xea,0x03,0x65,0xc9,0xe9); 3831cb0ef41Sopenharmony_ci &LL(0x65,0x65,0x89,0x65,0x0f,0xec,0xca,0x6a); 3841cb0ef41Sopenharmony_ci &LL(0xba,0xba,0xd2,0xba,0xb9,0x68,0x69,0x03); 3851cb0ef41Sopenharmony_ci &LL(0x2f,0x2f,0xbc,0x2f,0x65,0x93,0x5e,0x4a); 3861cb0ef41Sopenharmony_ci &LL(0xc0,0xc0,0x27,0xc0,0x4e,0xe7,0x9d,0x8e); 3871cb0ef41Sopenharmony_ci &LL(0xde,0xde,0x5f,0xde,0xbe,0x81,0xa1,0x60); 3881cb0ef41Sopenharmony_ci &LL(0x1c,0x1c,0x70,0x1c,0xe0,0x6c,0x38,0xfc); 3891cb0ef41Sopenharmony_ci &LL(0xfd,0xfd,0xd3,0xfd,0xbb,0x2e,0xe7,0x46); 3901cb0ef41Sopenharmony_ci &LL(0x4d,0x4d,0x29,0x4d,0x52,0x64,0x9a,0x1f); 3911cb0ef41Sopenharmony_ci &LL(0x92,0x92,0x72,0x92,0xe4,0xe0,0x39,0x76); 3921cb0ef41Sopenharmony_ci &LL(0x75,0x75,0xc9,0x75,0x8f,0xbc,0xea,0xfa); 3931cb0ef41Sopenharmony_ci &LL(0x06,0x06,0x18,0x06,0x30,0x1e,0x0c,0x36); 3941cb0ef41Sopenharmony_ci &LL(0x8a,0x8a,0x12,0x8a,0x24,0x98,0x09,0xae); 3951cb0ef41Sopenharmony_ci &LL(0xb2,0xb2,0xf2,0xb2,0xf9,0x40,0x79,0x4b); 3961cb0ef41Sopenharmony_ci &LL(0xe6,0xe6,0xbf,0xe6,0x63,0x59,0xd1,0x85); 3971cb0ef41Sopenharmony_ci &LL(0x0e,0x0e,0x38,0x0e,0x70,0x36,0x1c,0x7e); 3981cb0ef41Sopenharmony_ci &LL(0x1f,0x1f,0x7c,0x1f,0xf8,0x63,0x3e,0xe7); 3991cb0ef41Sopenharmony_ci &LL(0x62,0x62,0x95,0x62,0x37,0xf7,0xc4,0x55); 4001cb0ef41Sopenharmony_ci &LL(0xd4,0xd4,0x77,0xd4,0xee,0xa3,0xb5,0x3a); 4011cb0ef41Sopenharmony_ci &LL(0xa8,0xa8,0x9a,0xa8,0x29,0x32,0x4d,0x81); 4021cb0ef41Sopenharmony_ci &LL(0x96,0x96,0x62,0x96,0xc4,0xf4,0x31,0x52); 4031cb0ef41Sopenharmony_ci &LL(0xf9,0xf9,0xc3,0xf9,0x9b,0x3a,0xef,0x62); 4041cb0ef41Sopenharmony_ci &LL(0xc5,0xc5,0x33,0xc5,0x66,0xf6,0x97,0xa3); 4051cb0ef41Sopenharmony_ci &LL(0x25,0x25,0x94,0x25,0x35,0xb1,0x4a,0x10); 4061cb0ef41Sopenharmony_ci &LL(0x59,0x59,0x79,0x59,0xf2,0x20,0xb2,0xab); 4071cb0ef41Sopenharmony_ci &LL(0x84,0x84,0x2a,0x84,0x54,0xae,0x15,0xd0); 4081cb0ef41Sopenharmony_ci &LL(0x72,0x72,0xd5,0x72,0xb7,0xa7,0xe4,0xc5); 4091cb0ef41Sopenharmony_ci &LL(0x39,0x39,0xe4,0x39,0xd5,0xdd,0x72,0xec); 4101cb0ef41Sopenharmony_ci &LL(0x4c,0x4c,0x2d,0x4c,0x5a,0x61,0x98,0x16); 4111cb0ef41Sopenharmony_ci &LL(0x5e,0x5e,0x65,0x5e,0xca,0x3b,0xbc,0x94); 4121cb0ef41Sopenharmony_ci &LL(0x78,0x78,0xfd,0x78,0xe7,0x85,0xf0,0x9f); 4131cb0ef41Sopenharmony_ci &LL(0x38,0x38,0xe0,0x38,0xdd,0xd8,0x70,0xe5); 4141cb0ef41Sopenharmony_ci &LL(0x8c,0x8c,0x0a,0x8c,0x14,0x86,0x05,0x98); 4151cb0ef41Sopenharmony_ci &LL(0xd1,0xd1,0x63,0xd1,0xc6,0xb2,0xbf,0x17); 4161cb0ef41Sopenharmony_ci &LL(0xa5,0xa5,0xae,0xa5,0x41,0x0b,0x57,0xe4); 4171cb0ef41Sopenharmony_ci &LL(0xe2,0xe2,0xaf,0xe2,0x43,0x4d,0xd9,0xa1); 4181cb0ef41Sopenharmony_ci &LL(0x61,0x61,0x99,0x61,0x2f,0xf8,0xc2,0x4e); 4191cb0ef41Sopenharmony_ci &LL(0xb3,0xb3,0xf6,0xb3,0xf1,0x45,0x7b,0x42); 4201cb0ef41Sopenharmony_ci &LL(0x21,0x21,0x84,0x21,0x15,0xa5,0x42,0x34); 4211cb0ef41Sopenharmony_ci &LL(0x9c,0x9c,0x4a,0x9c,0x94,0xd6,0x25,0x08); 4221cb0ef41Sopenharmony_ci &LL(0x1e,0x1e,0x78,0x1e,0xf0,0x66,0x3c,0xee); 4231cb0ef41Sopenharmony_ci &LL(0x43,0x43,0x11,0x43,0x22,0x52,0x86,0x61); 4241cb0ef41Sopenharmony_ci &LL(0xc7,0xc7,0x3b,0xc7,0x76,0xfc,0x93,0xb1); 4251cb0ef41Sopenharmony_ci &LL(0xfc,0xfc,0xd7,0xfc,0xb3,0x2b,0xe5,0x4f); 4261cb0ef41Sopenharmony_ci &LL(0x04,0x04,0x10,0x04,0x20,0x14,0x08,0x24); 4271cb0ef41Sopenharmony_ci &LL(0x51,0x51,0x59,0x51,0xb2,0x08,0xa2,0xe3); 4281cb0ef41Sopenharmony_ci &LL(0x99,0x99,0x5e,0x99,0xbc,0xc7,0x2f,0x25); 4291cb0ef41Sopenharmony_ci &LL(0x6d,0x6d,0xa9,0x6d,0x4f,0xc4,0xda,0x22); 4301cb0ef41Sopenharmony_ci &LL(0x0d,0x0d,0x34,0x0d,0x68,0x39,0x1a,0x65); 4311cb0ef41Sopenharmony_ci &LL(0xfa,0xfa,0xcf,0xfa,0x83,0x35,0xe9,0x79); 4321cb0ef41Sopenharmony_ci &LL(0xdf,0xdf,0x5b,0xdf,0xb6,0x84,0xa3,0x69); 4331cb0ef41Sopenharmony_ci &LL(0x7e,0x7e,0xe5,0x7e,0xd7,0x9b,0xfc,0xa9); 4341cb0ef41Sopenharmony_ci &LL(0x24,0x24,0x90,0x24,0x3d,0xb4,0x48,0x19); 4351cb0ef41Sopenharmony_ci &LL(0x3b,0x3b,0xec,0x3b,0xc5,0xd7,0x76,0xfe); 4361cb0ef41Sopenharmony_ci &LL(0xab,0xab,0x96,0xab,0x31,0x3d,0x4b,0x9a); 4371cb0ef41Sopenharmony_ci &LL(0xce,0xce,0x1f,0xce,0x3e,0xd1,0x81,0xf0); 4381cb0ef41Sopenharmony_ci &LL(0x11,0x11,0x44,0x11,0x88,0x55,0x22,0x99); 4391cb0ef41Sopenharmony_ci &LL(0x8f,0x8f,0x06,0x8f,0x0c,0x89,0x03,0x83); 4401cb0ef41Sopenharmony_ci &LL(0x4e,0x4e,0x25,0x4e,0x4a,0x6b,0x9c,0x04); 4411cb0ef41Sopenharmony_ci &LL(0xb7,0xb7,0xe6,0xb7,0xd1,0x51,0x73,0x66); 4421cb0ef41Sopenharmony_ci &LL(0xeb,0xeb,0x8b,0xeb,0x0b,0x60,0xcb,0xe0); 4431cb0ef41Sopenharmony_ci &LL(0x3c,0x3c,0xf0,0x3c,0xfd,0xcc,0x78,0xc1); 4441cb0ef41Sopenharmony_ci &LL(0x81,0x81,0x3e,0x81,0x7c,0xbf,0x1f,0xfd); 4451cb0ef41Sopenharmony_ci &LL(0x94,0x94,0x6a,0x94,0xd4,0xfe,0x35,0x40); 4461cb0ef41Sopenharmony_ci &LL(0xf7,0xf7,0xfb,0xf7,0xeb,0x0c,0xf3,0x1c); 4471cb0ef41Sopenharmony_ci &LL(0xb9,0xb9,0xde,0xb9,0xa1,0x67,0x6f,0x18); 4481cb0ef41Sopenharmony_ci &LL(0x13,0x13,0x4c,0x13,0x98,0x5f,0x26,0x8b); 4491cb0ef41Sopenharmony_ci &LL(0x2c,0x2c,0xb0,0x2c,0x7d,0x9c,0x58,0x51); 4501cb0ef41Sopenharmony_ci &LL(0xd3,0xd3,0x6b,0xd3,0xd6,0xb8,0xbb,0x05); 4511cb0ef41Sopenharmony_ci &LL(0xe7,0xe7,0xbb,0xe7,0x6b,0x5c,0xd3,0x8c); 4521cb0ef41Sopenharmony_ci &LL(0x6e,0x6e,0xa5,0x6e,0x57,0xcb,0xdc,0x39); 4531cb0ef41Sopenharmony_ci &LL(0xc4,0xc4,0x37,0xc4,0x6e,0xf3,0x95,0xaa); 4541cb0ef41Sopenharmony_ci &LL(0x03,0x03,0x0c,0x03,0x18,0x0f,0x06,0x1b); 4551cb0ef41Sopenharmony_ci &LL(0x56,0x56,0x45,0x56,0x8a,0x13,0xac,0xdc); 4561cb0ef41Sopenharmony_ci &LL(0x44,0x44,0x0d,0x44,0x1a,0x49,0x88,0x5e); 4571cb0ef41Sopenharmony_ci &LL(0x7f,0x7f,0xe1,0x7f,0xdf,0x9e,0xfe,0xa0); 4581cb0ef41Sopenharmony_ci &LL(0xa9,0xa9,0x9e,0xa9,0x21,0x37,0x4f,0x88); 4591cb0ef41Sopenharmony_ci &LL(0x2a,0x2a,0xa8,0x2a,0x4d,0x82,0x54,0x67); 4601cb0ef41Sopenharmony_ci &LL(0xbb,0xbb,0xd6,0xbb,0xb1,0x6d,0x6b,0x0a); 4611cb0ef41Sopenharmony_ci &LL(0xc1,0xc1,0x23,0xc1,0x46,0xe2,0x9f,0x87); 4621cb0ef41Sopenharmony_ci &LL(0x53,0x53,0x51,0x53,0xa2,0x02,0xa6,0xf1); 4631cb0ef41Sopenharmony_ci &LL(0xdc,0xdc,0x57,0xdc,0xae,0x8b,0xa5,0x72); 4641cb0ef41Sopenharmony_ci &LL(0x0b,0x0b,0x2c,0x0b,0x58,0x27,0x16,0x53); 4651cb0ef41Sopenharmony_ci &LL(0x9d,0x9d,0x4e,0x9d,0x9c,0xd3,0x27,0x01); 4661cb0ef41Sopenharmony_ci &LL(0x6c,0x6c,0xad,0x6c,0x47,0xc1,0xd8,0x2b); 4671cb0ef41Sopenharmony_ci &LL(0x31,0x31,0xc4,0x31,0x95,0xf5,0x62,0xa4); 4681cb0ef41Sopenharmony_ci &LL(0x74,0x74,0xcd,0x74,0x87,0xb9,0xe8,0xf3); 4691cb0ef41Sopenharmony_ci &LL(0xf6,0xf6,0xff,0xf6,0xe3,0x09,0xf1,0x15); 4701cb0ef41Sopenharmony_ci &LL(0x46,0x46,0x05,0x46,0x0a,0x43,0x8c,0x4c); 4711cb0ef41Sopenharmony_ci &LL(0xac,0xac,0x8a,0xac,0x09,0x26,0x45,0xa5); 4721cb0ef41Sopenharmony_ci &LL(0x89,0x89,0x1e,0x89,0x3c,0x97,0x0f,0xb5); 4731cb0ef41Sopenharmony_ci &LL(0x14,0x14,0x50,0x14,0xa0,0x44,0x28,0xb4); 4741cb0ef41Sopenharmony_ci &LL(0xe1,0xe1,0xa3,0xe1,0x5b,0x42,0xdf,0xba); 4751cb0ef41Sopenharmony_ci &LL(0x16,0x16,0x58,0x16,0xb0,0x4e,0x2c,0xa6); 4761cb0ef41Sopenharmony_ci &LL(0x3a,0x3a,0xe8,0x3a,0xcd,0xd2,0x74,0xf7); 4771cb0ef41Sopenharmony_ci &LL(0x69,0x69,0xb9,0x69,0x6f,0xd0,0xd2,0x06); 4781cb0ef41Sopenharmony_ci &LL(0x09,0x09,0x24,0x09,0x48,0x2d,0x12,0x41); 4791cb0ef41Sopenharmony_ci &LL(0x70,0x70,0xdd,0x70,0xa7,0xad,0xe0,0xd7); 4801cb0ef41Sopenharmony_ci &LL(0xb6,0xb6,0xe2,0xb6,0xd9,0x54,0x71,0x6f); 4811cb0ef41Sopenharmony_ci &LL(0xd0,0xd0,0x67,0xd0,0xce,0xb7,0xbd,0x1e); 4821cb0ef41Sopenharmony_ci &LL(0xed,0xed,0x93,0xed,0x3b,0x7e,0xc7,0xd6); 4831cb0ef41Sopenharmony_ci &LL(0xcc,0xcc,0x17,0xcc,0x2e,0xdb,0x85,0xe2); 4841cb0ef41Sopenharmony_ci &LL(0x42,0x42,0x15,0x42,0x2a,0x57,0x84,0x68); 4851cb0ef41Sopenharmony_ci &LL(0x98,0x98,0x5a,0x98,0xb4,0xc2,0x2d,0x2c); 4861cb0ef41Sopenharmony_ci &LL(0xa4,0xa4,0xaa,0xa4,0x49,0x0e,0x55,0xed); 4871cb0ef41Sopenharmony_ci &LL(0x28,0x28,0xa0,0x28,0x5d,0x88,0x50,0x75); 4881cb0ef41Sopenharmony_ci &LL(0x5c,0x5c,0x6d,0x5c,0xda,0x31,0xb8,0x86); 4891cb0ef41Sopenharmony_ci &LL(0xf8,0xf8,0xc7,0xf8,0x93,0x3f,0xed,0x6b); 4901cb0ef41Sopenharmony_ci &LL(0x86,0x86,0x22,0x86,0x44,0xa4,0x11,0xc2); 4911cb0ef41Sopenharmony_ci 4921cb0ef41Sopenharmony_ci &L(0x18,0x23,0xc6,0xe8,0x87,0xb8,0x01,0x4f); # rc[ROUNDS] 4931cb0ef41Sopenharmony_ci &L(0x36,0xa6,0xd2,0xf5,0x79,0x6f,0x91,0x52); 4941cb0ef41Sopenharmony_ci &L(0x60,0xbc,0x9b,0x8e,0xa3,0x0c,0x7b,0x35); 4951cb0ef41Sopenharmony_ci &L(0x1d,0xe0,0xd7,0xc2,0x2e,0x4b,0xfe,0x57); 4961cb0ef41Sopenharmony_ci &L(0x15,0x77,0x37,0xe5,0x9f,0xf0,0x4a,0xda); 4971cb0ef41Sopenharmony_ci &L(0x58,0xc9,0x29,0x0a,0xb1,0xa0,0x6b,0x85); 4981cb0ef41Sopenharmony_ci &L(0xbd,0x5d,0x10,0xf4,0xcb,0x3e,0x05,0x67); 4991cb0ef41Sopenharmony_ci &L(0xe4,0x27,0x41,0x8b,0xa7,0x7d,0x95,0xd8); 5001cb0ef41Sopenharmony_ci &L(0xfb,0xee,0x7c,0x66,0xdd,0x17,0x47,0x9e); 5011cb0ef41Sopenharmony_ci &L(0xca,0x2d,0xbf,0x07,0xad,0x5a,0x83,0x33); 5021cb0ef41Sopenharmony_ci 5031cb0ef41Sopenharmony_ci&function_end_B("whirlpool_block_mmx"); 5041cb0ef41Sopenharmony_ci&asm_finish(); 5051cb0ef41Sopenharmony_ci 5061cb0ef41Sopenharmony_ciclose STDOUT or die "error closing STDOUT: $!"; 507