/*
* Copyright ( c ) 2016 , 2021 , Intel Corporation . All rights reserved .
* Copyright ( C ) 2021 THL A29 Limited , a Tencent company . All rights reserved .
* Intel Math Library ( LIBM ) Source Code
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER .
*
* This code is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License version 2 only , as
* published by the Free Software Foundation .
*
* This code is distributed in the hope that it will be useful , but WITHOUT
* ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE . See the GNU General Public License
* version 2 for more details ( a copy is included in the LICENSE file that
* accompanied this code ) .
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work ; if not , write to the Free Software Foundation ,
* Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 USA .
*
* Please contact Oracle , 500 Oracle Parkway , Redwood Shores , CA 94065 USA
* or visit www . oracle . com if you need additional information or have any
* questions .
*
*/
#include "precompiled.hpp"
#include "macroAssembler_x86.hpp"
#include "stubGenerator_x86_64.hpp"
/******************************************************************************/
// ALGORITHM DESCRIPTION - POW()
// ---------------------
//
// Let x=2^k * mx, mx in [1,2)
//
// log2(x) calculation:
//
// Get B~1/mx based on the output of rcpps instruction (B0)
// B = int((B0*LH*2^9+0.5))/2^9
// LH is a short approximation for log2(e)
//
// Reduced argument, scaled by LH:
// r=B*mx-LH (computed accurately in high and low parts)
//
// log2(x) result: k - log2(B) + p(r)
// p(r) is a degree 8 polynomial
// -log2(B) read from data table (high, low parts)
// log2(x) is formed from high and low parts
// For |x| in [1-1/32, 1+1/16), a slower but more accurate computation
// based om the same table design is performed.
//
// Main path is taken if | floor(log2(|log2(|x|)|) + floor(log2|y|) | < 8,
// to filter out all potential OF/UF cases.
// exp2(y*log2(x)) is computed using an 8-bit index table and a degree 5
// polynomial
//
// Special cases:
// pow(-0,y) = -INF and raises the divide-by-zero exception for y an odd
// integer < 0.
// pow(-0,y) = +INF and raises the divide-by-zero exception for y < 0 and
// not an odd integer.
// pow(-0,y) = -0 for y an odd integer > 0.
// pow(-0,y) = +0 for y > 0 and not an odd integer.
// pow(-1,-INF) = NaN.
// pow(+1,y) = NaN for any y, even a NaN.
// pow(x,-0) = 1 for any x, even a NaN.
// pow(x,y) = a NaN and raises the invalid exception for finite x < 0 and
// finite non-integer y.
// pow(x,-INF) = +INF for |x|<1.
// pow(x,-INF) = +0 for |x|>1.
// pow(x,+INF) = +0 for |x|<1.
// pow(x,+INF) = +INF for |x|>1.
// pow(-INF,y) = -0 for y an odd integer < 0.
// pow(-INF,y) = +0 for y < 0 and not an odd integer.
// pow(-INF,y) = -INF for y an odd integer > 0.
// pow(-INF,y) = +INF for y > 0 and not an odd integer.
// pow(+INF,y) = +0 for y <0.
// pow(+INF,y) = +INF for y >0.
//
/******************************************************************************/
ATTRIBUTE_ALIGNED(16 ) juint _HIGHSIGMASK[] = {
0 x00000000UL, 0 xfffff800UL, 0 x00000000UL, 0 xfffff800UL
};
ATTRIBUTE_ALIGNED(16 ) juint _LOG2_E[] = {
0 x00000000UL, 0 x3ff72000UL, 0 x161bb241UL, 0 xbf5dabe1UL
};
ATTRIBUTE_ALIGNED(16 ) juint _HIGHMASK_Y[] = {
0 x00000000UL, 0 xfffffff8UL, 0 x00000000UL, 0 xffffffffUL
};
ATTRIBUTE_ALIGNED(16 ) juint _T_exp[] = {
0 x00000000UL, 0 x3ff00000UL, 0 x00000000UL, 0 x3b700000UL, 0 xfa5abcbfUL,
0 x3ff00b1aUL, 0 xa7609f71UL, 0 xbc84f6b2UL, 0 xa9fb3335UL, 0 x3ff0163dUL,
0 x9ab8cdb7UL, 0 x3c9b6129UL, 0 x143b0281UL, 0 x3ff02168UL, 0 x0fc54eb6UL,
0 xbc82bf31UL, 0 x3e778061UL, 0 x3ff02c9aUL, 0 x535b085dUL, 0 xbc719083UL,
0 x2e11bbccUL, 0 x3ff037d4UL, 0 xeeade11aUL, 0 x3c656811UL, 0 xe86e7f85UL,
0 x3ff04315UL, 0 x1977c96eUL, 0 xbc90a31cUL, 0 x72f654b1UL, 0 x3ff04e5fUL,
0 x3aa0d08cUL, 0 x3c84c379UL, 0 xd3158574UL, 0 x3ff059b0UL, 0 xa475b465UL,
0 x3c8d73e2UL, 0 x0e3c1f89UL, 0 x3ff0650aUL, 0 x5799c397UL, 0 xbc95cb7bUL,
0 x29ddf6deUL, 0 x3ff0706bUL, 0 xe2b13c27UL, 0 xbc8c91dfUL, 0 x2b72a836UL,
0 x3ff07bd4UL, 0 x54458700UL, 0 x3c832334UL, 0 x18759bc8UL, 0 x3ff08745UL,
0 x4bb284ffUL, 0 x3c6186beUL, 0 xf66607e0UL, 0 x3ff092bdUL, 0 x800a3fd1UL,
0 xbc968063UL, 0 xcac6f383UL, 0 x3ff09e3eUL, 0 x18316136UL, 0 x3c914878UL,
0 x9b1f3919UL, 0 x3ff0a9c7UL, 0 x873d1d38UL, 0 x3c85d16cUL, 0 x6cf9890fUL,
0 x3ff0b558UL, 0 x4adc610bUL, 0 x3c98a62eUL, 0 x45e46c85UL, 0 x3ff0c0f1UL,
0 x06d21cefUL, 0 x3c94f989UL, 0 x2b7247f7UL, 0 x3ff0cc92UL, 0 x16e24f71UL,
0 x3c901edcUL, 0 x23395decUL, 0 x3ff0d83bUL, 0 xe43f316aUL, 0 xbc9bc14dUL,
0 x32d3d1a2UL, 0 x3ff0e3ecUL, 0 x27c57b52UL, 0 x3c403a17UL, 0 x5fdfa9c5UL,
0 x3ff0efa5UL, 0 xbc54021bUL, 0 xbc949db9UL, 0 xaffed31bUL, 0 x3ff0fb66UL,
0 xc44ebd7bUL, 0 xbc6b9bedUL, 0 x28d7233eUL, 0 x3ff10730UL, 0 x1692fdd5UL,
0 x3c8d46ebUL, 0 xd0125b51UL, 0 x3ff11301UL, 0 x39449b3aUL, 0 xbc96c510UL,
0 xab5e2ab6UL, 0 x3ff11edbUL, 0 xf703fb72UL, 0 xbc9ca454UL, 0 xc06c31ccUL,
0 x3ff12abdUL, 0 xb36ca5c7UL, 0 xbc51b514UL, 0 x14f204abUL, 0 x3ff136a8UL,
0 xba48dcf0UL, 0 xbc67108fUL, 0 xaea92de0UL, 0 x3ff1429aUL, 0 x9af1369eUL,
0 xbc932fbfUL, 0 x934f312eUL, 0 x3ff14e95UL, 0 x39bf44abUL, 0 xbc8b91e8UL,
0 xc8a58e51UL, 0 x3ff15a98UL, 0 xb9eeab0aUL, 0 x3c82406aUL, 0 x5471c3c2UL,
0 x3ff166a4UL, 0 x82ea1a32UL, 0 x3c58f23bUL, 0 x3c7d517bUL, 0 x3ff172b8UL,
0 xb9d78a76UL, 0 xbc819041UL, 0 x8695bbc0UL, 0 x3ff17ed4UL, 0 xe2ac5a64UL,
0 x3c709e3fUL, 0 x388c8deaUL, 0 x3ff18af9UL, 0 xd1970f6cUL, 0 xbc911023UL,
0 x58375d2fUL, 0 x3ff19726UL, 0 x85f17e08UL, 0 x3c94aaddUL, 0 xeb6fcb75UL,
0 x3ff1a35bUL, 0 x7b4968e4UL, 0 x3c8e5b4cUL, 0 xf8138a1cUL, 0 x3ff1af99UL,
0 xa4b69280UL, 0 x3c97bf85UL, 0 x84045cd4UL, 0 x3ff1bbe0UL, 0 x352ef607UL,
0 xbc995386UL, 0 x95281c6bUL, 0 x3ff1c82fUL, 0 x8010f8c9UL, 0 x3c900977UL,
0 x3168b9aaUL, 0 x3ff1d487UL, 0 x00a2643cUL, 0 x3c9e016eUL, 0 x5eb44027UL,
0 x3ff1e0e7UL, 0 x088cb6deUL, 0 xbc96fdd8UL, 0 x22fcd91dUL, 0 x3ff1ed50UL,
0 x027bb78cUL, 0 xbc91df98UL, 0 x8438ce4dUL, 0 x3ff1f9c1UL, 0 xa097af5cUL,
0 xbc9bf524UL, 0 x88628cd6UL, 0 x3ff2063bUL, 0 x814a8495UL, 0 x3c8dc775UL,
0 x3578a819UL, 0 x3ff212beUL, 0 x2cfcaac9UL, 0 x3c93592dUL, 0 x917ddc96UL,
0 x3ff21f49UL, 0 x9494a5eeUL, 0 x3c82a97eUL, 0 xa27912d1UL, 0 x3ff22bddUL,
0 x5577d69fUL, 0 x3c8d34fbUL, 0 x6e756238UL, 0 x3ff2387aUL, 0 xb6c70573UL,
0 x3c99b07eUL, 0 xfb82140aUL, 0 x3ff2451fUL, 0 x911ca996UL, 0 x3c8acfccUL,
0 x4fb2a63fUL, 0 x3ff251ceUL, 0 xbef4f4a4UL, 0 x3c8ac155UL, 0 x711ece75UL,
0 x3ff25e85UL, 0 x4ac31b2cUL, 0 x3c93e1a2UL, 0 x65e27cddUL, 0 x3ff26b45UL,
0 x9940e9d9UL, 0 x3c82bd33UL, 0 x341ddf29UL, 0 x3ff2780eUL, 0 x05f9e76cUL,
0 x3c9e067cUL, 0 xe1f56381UL, 0 x3ff284dfUL, 0 x8c3f0d7eUL, 0 xbc9a4c3aUL,
0 x7591bb70UL, 0 x3ff291baUL, 0 x28401cbdUL, 0 xbc82cc72UL, 0 xf51fdee1UL,
0 x3ff29e9dUL, 0 xafad1255UL, 0 x3c8612e8UL, 0 x66d10f13UL, 0 x3ff2ab8aUL,
0 x191690a7UL, 0 xbc995743UL, 0 xd0dad990UL, 0 x3ff2b87fUL, 0 xd6381aa4UL,
0 xbc410adcUL, 0 x39771b2fUL, 0 x3ff2c57eUL, 0 xa6eb5124UL, 0 xbc950145UL,
0 xa6e4030bUL, 0 x3ff2d285UL, 0 x54db41d5UL, 0 x3c900247UL, 0 x1f641589UL,
0 x3ff2df96UL, 0 xfbbce198UL, 0 x3c9d16cfUL, 0 xa93e2f56UL, 0 x3ff2ecafUL,
0 x45d52383UL, 0 x3c71ca0fUL, 0 x4abd886bUL, 0 x3ff2f9d2UL, 0 x532bda93UL,
0 xbc653c55UL, 0 x0a31b715UL, 0 x3ff306feUL, 0 xd23182e4UL, 0 x3c86f46aUL,
0 xedeeb2fdUL, 0 x3ff31432UL, 0 xf3f3fcd1UL, 0 x3c8959a3UL, 0 xfc4cd831UL,
0 x3ff32170UL, 0 x8e18047cUL, 0 x3c8a9ce7UL, 0 x3ba8ea32UL, 0 x3ff32eb8UL,
0 x3cb4f318UL, 0 xbc9c45e8UL, 0 xb26416ffUL, 0 x3ff33c08UL, 0 x843659a6UL,
0 x3c932721UL, 0 x66e3fa2dUL, 0 x3ff34962UL, 0 x930881a4UL, 0 xbc835a75UL,
0 x5f929ff1UL, 0 x3ff356c5UL, 0 x5c4e4628UL, 0 xbc8b5ceeUL, 0 xa2de883bUL,
0 x3ff36431UL, 0 xa06cb85eUL, 0 xbc8c3144UL, 0 x373aa9cbUL, 0 x3ff371a7UL,
0 xbf42eae2UL, 0 xbc963aeaUL, 0 x231e754aUL, 0 x3ff37f26UL, 0 x9eceb23cUL,
0 xbc99f5caUL, 0 x6d05d866UL, 0 x3ff38caeUL, 0 x3c9904bdUL, 0 xbc9e958dUL,
0 x1b7140efUL, 0 x3ff39a40UL, 0 xfc8e2934UL, 0 xbc99a9a5UL, 0 x34e59ff7UL,
0 x3ff3a7dbUL, 0 xd661f5e3UL, 0 xbc75e436UL, 0 xbfec6cf4UL, 0 x3ff3b57fUL,
0 xe26fff18UL, 0 x3c954c66UL, 0 xc313a8e5UL, 0 x3ff3c32dUL, 0 x375d29c3UL,
0 xbc9efff8UL, 0 x44ede173UL, 0 x3ff3d0e5UL, 0 x8c284c71UL, 0 x3c7fe8d0UL,
0 x4c123422UL, 0 x3ff3dea6UL, 0 x11f09ebcUL, 0 x3c8ada09UL, 0 xdf1c5175UL,
0 x3ff3ec70UL, 0 x7b8c9bcaUL, 0 xbc8af663UL, 0 x04ac801cUL, 0 x3ff3fa45UL,
0 xf956f9f3UL, 0 xbc97d023UL, 0 xc367a024UL, 0 x3ff40822UL, 0 xb6f4d048UL,
0 x3c8bddf8UL, 0 x21f72e2aUL, 0 x3ff4160aUL, 0 x1c309278UL, 0 xbc5ef369UL,
0 x2709468aUL, 0 x3ff423fbUL, 0 xc0b314ddUL, 0 xbc98462dUL, 0 xd950a897UL,
0 x3ff431f5UL, 0 xe35f7999UL, 0 xbc81c7ddUL, 0 x3f84b9d4UL, 0 x3ff43ffaUL,
0 x9704c003UL, 0 x3c8880beUL, 0 x6061892dUL, 0 x3ff44e08UL, 0 x04ef80d0UL,
0 x3c489b7aUL, 0 x42a7d232UL, 0 x3ff45c20UL, 0 x82fb1f8eUL, 0 xbc686419UL,
0 xed1d0057UL, 0 x3ff46a41UL, 0 xd1648a76UL, 0 x3c9c944bUL, 0 x668b3237UL,
0 x3ff4786dUL, 0 xed445733UL, 0 xbc9c20f0UL, 0 xb5c13cd0UL, 0 x3ff486a2UL,
0 xb69062f0UL, 0 x3c73c1a3UL, 0 xe192aed2UL, 0 x3ff494e1UL, 0 x5e499ea0UL,
0 xbc83b289UL, 0 xf0d7d3deUL, 0 x3ff4a32aUL, 0 xf3d1be56UL, 0 x3c99cb62UL,
0 xea6db7d7UL, 0 x3ff4b17dUL, 0 x7f2897f0UL, 0 xbc8125b8UL, 0 xd5362a27UL,
0 x3ff4bfdaUL, 0 xafec42e2UL, 0 x3c7d4397UL, 0 xb817c114UL, 0 x3ff4ce41UL,
0 x690abd5dUL, 0 x3c905e29UL, 0 x99fddd0dUL, 0 x3ff4dcb2UL, 0 xbc6a7833UL,
0 x3c98ecdbUL, 0 x81d8abffUL, 0 x3ff4eb2dUL, 0 x2e5d7a52UL, 0 xbc95257dUL,
0 x769d2ca7UL, 0 x3ff4f9b2UL, 0 xd25957e3UL, 0 xbc94b309UL, 0 x7f4531eeUL,
0 x3ff50841UL, 0 x49b7465fUL, 0 x3c7a249bUL, 0 xa2cf6642UL, 0 x3ff516daUL,
0 x69bd93efUL, 0 xbc8f7685UL, 0 xe83f4eefUL, 0 x3ff5257dUL, 0 x43efef71UL,
0 xbc7c998dUL, 0 x569d4f82UL, 0 x3ff5342bUL, 0 x1db13cadUL, 0 xbc807abeUL,
0 xf4f6ad27UL, 0 x3ff542e2UL, 0 x192d5f7eUL, 0 x3c87926dUL, 0 xca5d920fUL,
0 x3ff551a4UL, 0 xefede59bUL, 0 xbc8d689cUL, 0 xdde910d2UL, 0 x3ff56070UL,
0 x168eebf0UL, 0 xbc90fb6eUL, 0 x36b527daUL, 0 x3ff56f47UL, 0 x011d93adUL,
0 x3c99bb2cUL, 0 xdbe2c4cfUL, 0 x3ff57e27UL, 0 x8a57b9c4UL, 0 xbc90b98cUL,
0 xd497c7fdUL, 0 x3ff58d12UL, 0 x5b9a1de8UL, 0 x3c8295e1UL, 0 x27ff07ccUL,
0 x3ff59c08UL, 0 xe467e60fUL, 0 xbc97e2ceUL, 0 xdd485429UL, 0 x3ff5ab07UL,
0 x054647adUL, 0 x3c96324cUL, 0 xfba87a03UL, 0 x3ff5ba11UL, 0 x4c233e1aUL,
0 xbc9b77a1UL, 0 x8a5946b7UL, 0 x3ff5c926UL, 0 x816986a2UL, 0 x3c3c4b1bUL,
0 x90998b93UL, 0 x3ff5d845UL, 0 xa8b45643UL, 0 xbc9cd6a7UL, 0 x15ad2148UL,
0 x3ff5e76fUL, 0 x3080e65eUL, 0 x3c9ba6f9UL, 0 x20dceb71UL, 0 x3ff5f6a3UL,
0 xe3cdcf92UL, 0 xbc89eaddUL, 0 xb976dc09UL, 0 x3ff605e1UL, 0 x9b56de47UL,
0 xbc93e242UL, 0 xe6cdf6f4UL, 0 x3ff6152aUL, 0 x4ab84c27UL, 0 x3c9e4b3eUL,
0 xb03a5585UL, 0 x3ff6247eUL, 0 x7e40b497UL, 0 xbc9383c1UL, 0 x1d1929fdUL,
0 x3ff633ddUL, 0 xbeb964e5UL, 0 x3c984710UL, 0 x34ccc320UL, 0 x3ff64346UL,
0 x759d8933UL, 0 xbc8c483cUL, 0 xfebc8fb7UL, 0 x3ff652b9UL, 0 xc9a73e09UL,
0 xbc9ae3d5UL, 0 x82552225UL, 0 x3ff66238UL, 0 x87591c34UL, 0 xbc9bb609UL,
0 xc70833f6UL, 0 x3ff671c1UL, 0 x586c6134UL, 0 xbc8e8732UL, 0 xd44ca973UL,
0 x3ff68155UL, 0 x44f73e65UL, 0 x3c6038aeUL, 0 xb19e9538UL, 0 x3ff690f4UL,
0 x9aeb445dUL, 0 x3c8804bdUL, 0 x667f3bcdUL, 0 x3ff6a09eUL, 0 x13b26456UL,
0 xbc9bdd34UL, 0 xfa75173eUL, 0 x3ff6b052UL, 0 x2c9a9d0eUL, 0 x3c7a38f5UL,
0 x750bdabfUL, 0 x3ff6c012UL, 0 x67ff0b0dUL, 0 xbc728956UL, 0 xddd47645UL,
0 x3ff6cfdcUL, 0 xb6f17309UL, 0 x3c9c7aa9UL, 0 x3c651a2fUL, 0 x3ff6dfb2UL,
0 x683c88abUL, 0 xbc6bbe3aUL, 0 x98593ae5UL, 0 x3ff6ef92UL, 0 x9e1ac8b2UL,
0 xbc90b974UL, 0 xf9519484UL, 0 x3ff6ff7dUL, 0 x25860ef6UL, 0 xbc883c0fUL,
0 x66f42e87UL, 0 x3ff70f74UL, 0 xd45aa65fUL, 0 x3c59d644UL, 0 xe8ec5f74UL,
0 x3ff71f75UL, 0 x86887a99UL, 0 xbc816e47UL, 0 x86ead08aUL, 0 x3ff72f82UL,
0 x2cd62c72UL, 0 xbc920aa0UL, 0 x48a58174UL, 0 x3ff73f9aUL, 0 x6c65d53cUL,
0 xbc90a8d9UL, 0 x35d7cbfdUL, 0 x3ff74fbdUL, 0 x618a6e1cUL, 0 x3c9047fdUL,
0 x564267c9UL, 0 x3ff75febUL, 0 x57316dd3UL, 0 xbc902459UL, 0 xb1ab6e09UL,
0 x3ff77024UL, 0 x169147f8UL, 0 x3c9b7877UL, 0 x4fde5d3fUL, 0 x3ff78069UL,
0 x0a02162dUL, 0 x3c9866b8UL, 0 x38ac1cf6UL, 0 x3ff790b9UL, 0 x62aadd3eUL,
0 x3c9349a8UL, 0 x73eb0187UL, 0 x3ff7a114UL, 0 xee04992fUL, 0 xbc841577UL,
0 x0976cfdbUL, 0 x3ff7b17bUL, 0 x8468dc88UL, 0 xbc9bebb5UL, 0 x0130c132UL,
0 x3ff7c1edUL, 0 xd1164dd6UL, 0 x3c9f124cUL, 0 x62ff86f0UL, 0 x3ff7d26aUL,
0 xfb72b8b4UL, 0 x3c91bddbUL, 0 x36cf4e62UL, 0 x3ff7e2f3UL, 0 xba15797eUL,
0 x3c705d02UL, 0 x8491c491UL, 0 x3ff7f387UL, 0 xcf9311aeUL, 0 xbc807f11UL,
0 x543e1a12UL, 0 x3ff80427UL, 0 x626d972bUL, 0 xbc927c86UL, 0 xadd106d9UL,
0 x3ff814d2UL, 0 x0d151d4dUL, 0 x3c946437UL, 0 x994cce13UL, 0 x3ff82589UL,
0 xd41532d8UL, 0 xbc9d4c1dUL, 0 x1eb941f7UL, 0 x3ff8364cUL, 0 x31df2bd5UL,
0 x3c999b9aUL, 0 x4623c7adUL, 0 x3ff8471aUL, 0 xa341cdfbUL, 0 xbc88d684UL,
0 x179f5b21UL, 0 x3ff857f4UL, 0 xf8b216d0UL, 0 xbc5ba748UL, 0 x9b4492edUL,
0 x3ff868d9UL, 0 x9bd4f6baUL, 0 xbc9fc6f8UL, 0 xd931a436UL, 0 x3ff879caUL,
0 xd2db47bdUL, 0 x3c85d2d7UL, 0 xd98a6699UL, 0 x3ff88ac7UL, 0 xf37cb53aUL,
0 x3c9994c2UL, 0 xa478580fUL, 0 x3ff89bd0UL, 0 x4475202aUL, 0 x3c9d5395UL,
0 x422aa0dbUL, 0 x3ff8ace5UL, 0 x56864b27UL, 0 x3c96e9f1UL, 0 xbad61778UL,
0 x3ff8be05UL, 0 xfc43446eUL, 0 x3c9ecb5eUL, 0 x16b5448cUL, 0 x3ff8cf32UL,
0 x32e9e3aaUL, 0 xbc70d55eUL, 0 x5e0866d9UL, 0 x3ff8e06aUL, 0 x6fc9b2e6UL,
0 xbc97114aUL, 0 x99157736UL, 0 x3ff8f1aeUL, 0 xa2e3976cUL, 0 x3c85cc13UL,
0 xd0282c8aUL, 0 x3ff902feUL, 0 x85fe3fd2UL, 0 x3c9592caUL, 0 x0b91ffc6UL,
0 x3ff9145bUL, 0 x2e582524UL, 0 xbc9dd679UL, 0 x53aa2fe2UL, 0 x3ff925c3UL,
0 xa639db7fUL, 0 xbc83455fUL, 0 xb0cdc5e5UL, 0 x3ff93737UL, 0 x81b57ebcUL,
0 xbc675fc7UL, 0 x2b5f98e5UL, 0 x3ff948b8UL, 0 x797d2d99UL, 0 xbc8dc3d6UL,
0 xcbc8520fUL, 0 x3ff95a44UL, 0 x96a5f039UL, 0 xbc764b7cUL, 0 x9a7670b3UL,
0 x3ff96bddUL, 0 x7f19c896UL, 0 xbc5ba596UL, 0 x9fde4e50UL, 0 x3ff97d82UL,
0 x7c1b85d1UL, 0 xbc9d185bUL, 0 xe47a22a2UL, 0 x3ff98f33UL, 0 xa24c78ecUL,
0 x3c7cabdaUL, 0 x70ca07baUL, 0 x3ff9a0f1UL, 0 x91cee632UL, 0 xbc9173bdUL,
0 x4d53fe0dUL, 0 x3ff9b2bbUL, 0 x4df6d518UL, 0 xbc9dd84eUL, 0 x82a3f090UL,
0 x3ff9c491UL, 0 xb071f2beUL, 0 x3c7c7c46UL, 0 x194bb8d5UL, 0 x3ff9d674UL,
0 xa3dd8233UL, 0 xbc9516beUL, 0 x19e32323UL, 0 x3ff9e863UL, 0 x78e64c6eUL,
0 x3c7824caUL, 0 x8d07f29eUL, 0 x3ff9fa5eUL, 0 xaaf1faceUL, 0 xbc84a9ceUL,
0 x7b5de565UL, 0 x3ffa0c66UL, 0 x5d1cd533UL, 0 xbc935949UL, 0 xed8eb8bbUL,
0 x3ffa1e7aUL, 0 xee8be70eUL, 0 x3c9c6618UL, 0 xec4a2d33UL, 0 x3ffa309bUL,
0 x7ddc36abUL, 0 x3c96305cUL, 0 x80460ad8UL, 0 x3ffa42c9UL, 0 x589fb120UL,
0 xbc9aa780UL, 0 xb23e255dUL, 0 x3ffa5503UL, 0 xdb8d41e1UL, 0 xbc9d2f6eUL,
0 x8af46052UL, 0 x3ffa674aUL, 0 x30670366UL, 0 x3c650f56UL, 0 x1330b358UL,
0 x3ffa799eUL, 0 xcac563c7UL, 0 x3c9bcb7eUL, 0 x53c12e59UL, 0 x3ffa8bfeUL,
0 xb2ba15a9UL, 0 xbc94f867UL, 0 x5579fdbfUL, 0 x3ffa9e6bUL, 0 x0ef7fd31UL,
0 x3c90fac9UL, 0 x21356ebaUL, 0 x3ffab0e5UL, 0 xdae94545UL, 0 x3c889c31UL,
0 xbfd3f37aUL, 0 x3ffac36bUL, 0 xcae76cd0UL, 0 xbc8f9234UL, 0 x3a3c2774UL,
0 x3ffad5ffUL, 0 xb6b1b8e5UL, 0 x3c97ef3bUL, 0 x995ad3adUL, 0 x3ffae89fUL,
0 x345dcc81UL, 0 x3c97a1cdUL, 0 xe622f2ffUL, 0 x3ffafb4cUL, 0 x0f315ecdUL,
0 xbc94b2fcUL, 0 x298db666UL, 0 x3ffb0e07UL, 0 x4c80e425UL, 0 xbc9bdef5UL,
0 x6c9a8952UL, 0 x3ffb20ceUL, 0 x4a0756ccUL, 0 x3c94dd02UL, 0 xb84f15fbUL,
0 x3ffb33a2UL, 0 x3084d708UL, 0 xbc62805eUL, 0 x15b749b1UL, 0 x3ffb4684UL,
0 xe9df7c90UL, 0 xbc7f763dUL, 0 x8de5593aUL, 0 x3ffb5972UL, 0 xbbba6de3UL,
0 xbc9c71dfUL, 0 x29f1c52aUL, 0 x3ffb6c6eUL, 0 x52883f6eUL, 0 x3c92a8f3UL,
0 xf2fb5e47UL, 0 x3ffb7f76UL, 0 x7e54ac3bUL, 0 xbc75584fUL, 0 xf22749e4UL,
0 x3ffb928cUL, 0 x54cb65c6UL, 0 xbc9b7216UL, 0 x30a1064aUL, 0 x3ffba5b0UL,
0 x0e54292eUL, 0 xbc9efcd3UL, 0 xb79a6f1fUL, 0 x3ffbb8e0UL, 0 xc9696205UL,
0 xbc3f52d1UL, 0 x904bc1d2UL, 0 x3ffbcc1eUL, 0 x7a2d9e84UL, 0 x3c823dd0UL,
0 xc3f3a207UL, 0 x3ffbdf69UL, 0 x60ea5b53UL, 0 xbc3c2623UL, 0 x5bd71e09UL,
0 x3ffbf2c2UL, 0 x3f6b9c73UL, 0 xbc9efdcaUL, 0 x6141b33dUL, 0 x3ffc0628UL,
0 xa1fbca34UL, 0 xbc8d8a5aUL, 0 xdd85529cUL, 0 x3ffc199bUL, 0 x895048ddUL,
0 x3c811065UL, 0 xd9fa652cUL, 0 x3ffc2d1cUL, 0 x17c8a5d7UL, 0 xbc96e516UL,
0 x5fffd07aUL, 0 x3ffc40abUL, 0 xe083c60aUL, 0 x3c9b4537UL, 0 x78fafb22UL,
0 x3ffc5447UL, 0 x2493b5afUL, 0 x3c912f07UL, 0 x2e57d14bUL, 0 x3ffc67f1UL,
0 xff483cadUL, 0 x3c92884dUL, 0 x8988c933UL, 0 x3ffc7ba8UL, 0 xbe255559UL,
0 xbc8e76bbUL, 0 x9406e7b5UL, 0 x3ffc8f6dUL, 0 x48805c44UL, 0 x3c71acbcUL,
0 x5751c4dbUL, 0 x3ffca340UL, 0 xd10d08f5UL, 0 xbc87f2beUL, 0 xdcef9069UL,
0 x3ffcb720UL, 0 xd1e949dbUL, 0 x3c7503cbUL, 0 x2e6d1675UL, 0 x3ffccb0fUL,
0 x86009092UL, 0 xbc7d220fUL, 0 x555dc3faUL, 0 x3ffcdf0bUL, 0 x53829d72UL,
0 xbc8dd83bUL, 0 x5b5bab74UL, 0 x3ffcf315UL, 0 xb86dff57UL, 0 xbc9a08e9UL,
0 x4a07897cUL, 0 x3ffd072dUL, 0 x43797a9cUL, 0 xbc9cbc37UL, 0 x2b08c968UL,
0 x3ffd1b53UL, 0 x219a36eeUL, 0 x3c955636UL, 0 x080d89f2UL, 0 x3ffd2f87UL,
0 x719d8578UL, 0 xbc9d487bUL, 0 xeacaa1d6UL, 0 x3ffd43c8UL, 0 xbf5a1614UL,
0 x3c93db53UL, 0 xdcfba487UL, 0 x3ffd5818UL, 0 xd75b3707UL, 0 x3c82ed02UL,
0 xe862e6d3UL, 0 x3ffd6c76UL, 0 x4a8165a0UL, 0 x3c5fe87aUL, 0 x16c98398UL,
0 x3ffd80e3UL, 0 x8beddfe8UL, 0 xbc911ec1UL, 0 x71ff6075UL, 0 x3ffd955dUL,
0 xbb9af6beUL, 0 x3c9a052dUL, 0 x03db3285UL, 0 x3ffda9e6UL, 0 x696db532UL,
0 x3c9c2300UL, 0 xd63a8315UL, 0 x3ffdbe7cUL, 0 x926b8be4UL, 0 xbc9b76f1UL,
0 xf301b460UL, 0 x3ffdd321UL, 0 x78f018c3UL, 0 x3c92da57UL, 0 x641c0658UL,
0 x3ffde7d5UL, 0 x8e79ba8fUL, 0 xbc9ca552UL, 0 x337b9b5fUL, 0 x3ffdfc97UL,
0 x4f184b5cUL, 0 xbc91a5cdUL, 0 x6b197d17UL, 0 x3ffe1167UL, 0 xbd5c7f44UL,
0 xbc72b529UL, 0 x14f5a129UL, 0 x3ffe2646UL, 0 x817a1496UL, 0 xbc97b627UL,
0 x3b16ee12UL, 0 x3ffe3b33UL, 0 x31fdc68bUL, 0 xbc99f4a4UL, 0 xe78b3ff6UL,
0 x3ffe502eUL, 0 x80a9cc8fUL, 0 x3c839e89UL, 0 x24676d76UL, 0 x3ffe6539UL,
0 x7522b735UL, 0 xbc863ff8UL, 0 xfbc74c83UL, 0 x3ffe7a51UL, 0 xca0c8de2UL,
0 x3c92d522UL, 0 x77cdb740UL, 0 x3ffe8f79UL, 0 x80b054b1UL, 0 xbc910894UL,
0 xa2a490daUL, 0 x3ffea4afUL, 0 x179c2893UL, 0 xbc9e9c23UL, 0 x867cca6eUL,
0 x3ffeb9f4UL, 0 x2293e4f2UL, 0 x3c94832fUL, 0 x2d8e67f1UL, 0 x3ffecf48UL,
0 xb411ad8cUL, 0 xbc9c93f3UL, 0 xa2188510UL, 0 x3ffee4aaUL, 0 xa487568dUL,
0 x3c91c68dUL, 0 xee615a27UL, 0 x3ffefa1bUL, 0 x86a4b6b0UL, 0 x3c9dc7f4UL,
0 x1cb6412aUL, 0 x3fff0f9cUL, 0 x65181d45UL, 0 xbc932200UL, 0 x376bba97UL,
0 x3fff252bUL, 0 xbf0d8e43UL, 0 x3c93a1a5UL, 0 x48dd7274UL, 0 x3fff3ac9UL,
0 x3ed837deUL, 0 xbc795a5aUL, 0 x5b6e4540UL, 0 x3fff5076UL, 0 x2dd8a18bUL,
0 x3c99d3e1UL, 0 x798844f8UL, 0 x3fff6632UL, 0 x3539343eUL, 0 x3c9fa37bUL,
0 xad9cbe14UL, 0 x3fff7bfdUL, 0 xd006350aUL, 0 xbc9dbb12UL, 0 x02243c89UL,
0 x3fff91d8UL, 0 xa779f689UL, 0 xbc612ea8UL, 0 x819e90d8UL, 0 x3fffa7c1UL,
0 xf3a5931eUL, 0 x3c874853UL, 0 x3692d514UL, 0 x3fffbdbaUL, 0 x15098eb6UL,
0 xbc796773UL, 0 x2b8f71f1UL, 0 x3fffd3c2UL, 0 x966579e7UL, 0 x3c62eb74UL,
0 x6b2a23d9UL, 0 x3fffe9d9UL, 0 x7442fde3UL, 0 x3c74a603UL
};
ATTRIBUTE_ALIGNED(16 ) juint _e_coeff[] = {
0 xe78a6731UL, 0 x3f55d87fUL, 0 xd704a0c0UL, 0 x3fac6b08UL, 0 x6fba4e77UL,
0 x3f83b2abUL, 0 xff82c58fUL, 0 x3fcebfbdUL, 0 xfefa39efUL, 0 x3fe62e42UL,
0 x00000000UL, 0 x00000000UL
};
ATTRIBUTE_ALIGNED(16 ) juint _coeff_h[] = {
0 x00000000UL, 0 xbfd61a00UL, 0 x00000000UL, 0 xbf5dabe1UL
};
ATTRIBUTE_ALIGNED(16 ) juint _HIGHMASK_LOG_X[] = {
0 xf8000000UL, 0 xffffffffUL, 0 x00000000UL, 0 xfffff800UL
};
ATTRIBUTE_ALIGNED(8 ) juint _HALFMASK[] = {
0 xf8000000UL, 0 xffffffffUL, 0 xf8000000UL, 0 xffffffffUL
};
ATTRIBUTE_ALIGNED(16 ) juint _coeff_pow[] = {
0 x6dc96112UL, 0 xbf836578UL, 0 xee241472UL, 0 xbf9b0301UL, 0 x9f95985aUL,
0 xbfb528dbUL, 0 xb3841d2aUL, 0 xbfd619b6UL, 0 x518775e3UL, 0 x3f9004f2UL,
0 xac8349bbUL, 0 x3fa76c9bUL, 0 x486ececcUL, 0 x3fc4635eUL, 0 x161bb241UL,
0 xbf5dabe1UL, 0 x9f95985aUL, 0 xbfb528dbUL, 0 xf8b5787dUL, 0 x3ef2531eUL,
0 x486ececbUL, 0 x3fc4635eUL, 0 x412055ccUL, 0 xbdd61bb2UL
};
ATTRIBUTE_ALIGNED(16 ) juint _L_tbl_pow[] = {
0 x00000000UL, 0 x3ff00000UL, 0 x00000000UL, 0 x00000000UL, 0 x20000000UL,
0 x3feff00aUL, 0 x96621f95UL, 0 x3e5b1856UL, 0 xe0000000UL, 0 x3fefe019UL,
0 xe5916f9eUL, 0 xbe325278UL, 0 x00000000UL, 0 x3fefd02fUL, 0 x859a1062UL,
0 x3e595fb7UL, 0 xc0000000UL, 0 x3fefc049UL, 0 xb245f18fUL, 0 xbe529c38UL,
0 xe0000000UL, 0 x3fefb069UL, 0 xad2880a7UL, 0 xbe501230UL, 0 x60000000UL,
0 x3fefa08fUL, 0 xc8e72420UL, 0 x3e597bd1UL, 0 x80000000UL, 0 x3fef90baUL,
0 xc30c4500UL, 0 xbe5d6c75UL, 0 xe0000000UL, 0 x3fef80eaUL, 0 x02c63f43UL,
0 x3e2e1318UL, 0 xc0000000UL, 0 x3fef7120UL, 0 xb3d4ccccUL, 0 xbe44c52aUL,
0 x00000000UL, 0 x3fef615cUL, 0 xdbd91397UL, 0 xbe4e7d6cUL, 0 xa0000000UL,
0 x3fef519cUL, 0 x65c5cd68UL, 0 xbe522dc8UL, 0 xa0000000UL, 0 x3fef41e2UL,
0 x46d1306cUL, 0 xbe5a840eUL, 0 xe0000000UL, 0 x3fef322dUL, 0 xd2980e94UL,
0 x3e5071afUL, 0 xa0000000UL, 0 x3fef227eUL, 0 x773abadeUL, 0 xbe5891e5UL,
0 xa0000000UL, 0 x3fef12d4UL, 0 xdc6bf46bUL, 0 xbe5cccbeUL, 0 xe0000000UL,
0 x3fef032fUL, 0 xbc7247faUL, 0 xbe2bab83UL, 0 x80000000UL, 0 x3feef390UL,
0 xbcaa1e46UL, 0 xbe53bb3bUL, 0 x60000000UL, 0 x3feee3f6UL, 0 x5f6c682dUL,
0 xbe54c619UL, 0 x80000000UL, 0 x3feed461UL, 0 x5141e368UL, 0 xbe4b6d86UL,
0 xe0000000UL, 0 x3feec4d1UL, 0 xec678f76UL, 0 xbe369af6UL, 0 x80000000UL,
0 x3feeb547UL, 0 x41301f55UL, 0 xbe2d4312UL, 0 x60000000UL, 0 x3feea5c2UL,
0 x676da6bdUL, 0 xbe4d8dd0UL, 0 x60000000UL, 0 x3fee9642UL, 0 x57a891c4UL,
0 x3e51f991UL, 0 xa0000000UL, 0 x3fee86c7UL, 0 xe4eb491eUL, 0 x3e579bf9UL,
0 x20000000UL, 0 x3fee7752UL, 0 xfddc4a2cUL, 0 xbe3356e6UL, 0 xc0000000UL,
0 x3fee67e1UL, 0 xd75b5bf1UL, 0 xbe449531UL, 0 x80000000UL, 0 x3fee5876UL,
0 xbd423b8eUL, 0 x3df54fe4UL, 0 x60000000UL, 0 x3fee4910UL, 0 x330e51b9UL,
0 x3e54289cUL, 0 x80000000UL, 0 x3fee39afUL, 0 x8651a95fUL, 0 xbe55aad6UL,
0 xa0000000UL, 0 x3fee2a53UL, 0 x5e98c708UL, 0 xbe2fc4a9UL, 0 xe0000000UL,
0 x3fee1afcUL, 0 x0989328dUL, 0 x3e23958cUL, 0 x40000000UL, 0 x3fee0babUL,
0 xee642abdUL, 0 xbe425dd8UL, 0 xa0000000UL, 0 x3fedfc5eUL, 0 xc394d236UL,
0 x3e526362UL, 0 x20000000UL, 0 x3feded17UL, 0 xe104aa8eUL, 0 x3e4ce247UL,
0 xc0000000UL, 0 x3fedddd4UL, 0 x265a9be4UL, 0 xbe5bb77aUL, 0 x40000000UL,
0 x3fedce97UL, 0 x0ecac52fUL, 0 x3e4a7cb1UL, 0 xe0000000UL, 0 x3fedbf5eUL,
0 x124cb3b8UL, 0 x3e257024UL, 0 x80000000UL, 0 x3fedb02bUL, 0 xe6d4febeUL,
0 xbe2033eeUL, 0 x20000000UL, 0 x3feda0fdUL, 0 x39cca00eUL, 0 xbe3ddabcUL,
0 xc0000000UL, 0 x3fed91d3UL, 0 xef8a552aUL, 0 xbe543390UL, 0 x40000000UL,
0 x3fed82afUL, 0 xb8e85204UL, 0 x3e513850UL, 0 xe0000000UL, 0 x3fed738fUL,
0 x3d59fe08UL, 0 xbe5db728UL, 0 x40000000UL, 0 x3fed6475UL, 0 x3aa7ead1UL,
0 x3e58804bUL, 0 xc0000000UL, 0 x3fed555fUL, 0 xf8a35ba9UL, 0 xbe5298b0UL,
0 x00000000UL, 0 x3fed464fUL, 0 x9a88dd15UL, 0 x3e5a8cdbUL, 0 x40000000UL,
0 x3fed3743UL, 0 xb0b0a190UL, 0 x3e598635UL, 0 x80000000UL, 0 x3fed283cUL,
0 xe2113295UL, 0 xbe5c1119UL, 0 x80000000UL, 0 x3fed193aUL, 0 xafbf1728UL,
0 xbe492e9cUL, 0 x60000000UL, 0 x3fed0a3dUL, 0 xe4a4ccf3UL, 0 x3e19b90eUL,
0 x20000000UL, 0 x3fecfb45UL, 0 xba3cbeb8UL, 0 x3e406b50UL, 0 xc0000000UL,
0 x3fecec51UL, 0 x110f7dddUL, 0 x3e0d6806UL, 0 x40000000UL, 0 x3fecdd63UL,
0 x7dd7d508UL, 0 xbe5a8943UL, 0 x80000000UL, 0 x3fecce79UL, 0 x9b60f271UL,
0 xbe50676aUL, 0 x80000000UL, 0 x3fecbf94UL, 0 x0b9ad660UL, 0 x3e59174fUL,
0 x60000000UL, 0 x3fecb0b4UL, 0 x00823d9cUL, 0 x3e5bbf72UL, 0 x20000000UL,
0 x3feca1d9UL, 0 x38a6ec89UL, 0 xbe4d38f9UL, 0 x80000000UL, 0 x3fec9302UL,
0 x3a0b7d8eUL, 0 x3e53dbfdUL, 0 xc0000000UL, 0 x3fec8430UL, 0 xc6826b34UL,
0 xbe27c5c9UL, 0 xc0000000UL, 0 x3fec7563UL, 0 x0c706381UL, 0 xbe593653UL,
0 x60000000UL, 0 x3fec669bUL, 0 x7df34ec7UL, 0 x3e461ab5UL, 0 xe0000000UL,
0 x3fec57d7UL, 0 x40e5e7e8UL, 0 xbe5c3daeUL, 0 x00000000UL, 0 x3fec4919UL,
0 x5602770fUL, 0 xbe55219dUL, 0 xc0000000UL, 0 x3fec3a5eUL, 0 xec7911ebUL,
0 x3e5a5d25UL, 0 x60000000UL, 0 x3fec2ba9UL, 0 xb39ea225UL, 0 xbe53c00bUL,
0 x80000000UL, 0 x3fec1cf8UL, 0 x967a212eUL, 0 x3e5a8ddfUL, 0 x60000000UL,
0 x3fec0e4cUL, 0 x580798bdUL, 0 x3e5f53abUL, 0 x00000000UL, 0 x3febffa5UL,
0 xb8282df6UL, 0 xbe46b874UL, 0 x20000000UL, 0 x3febf102UL, 0 xe33a6729UL,
0 x3e54963fUL, 0 x00000000UL, 0 x3febe264UL, 0 x3b53e88aUL, 0 xbe3adce1UL,
0 x60000000UL, 0 x3febd3caUL, 0 xc2585084UL, 0 x3e5cde9fUL, 0 x80000000UL,
0 x3febc535UL, 0 xa335c5eeUL, 0 xbe39fd9cUL, 0 x20000000UL, 0 x3febb6a5UL,
0 x7325b04dUL, 0 x3e42ba15UL, 0 x60000000UL, 0 x3feba819UL, 0 x1564540fUL,
0 x3e3a9f35UL, 0 x40000000UL, 0 x3feb9992UL, 0 x83fff592UL, 0 xbe5465ceUL,
0 xa0000000UL, 0 x3feb8b0fUL, 0 xb9da63d3UL, 0 xbe4b1a0aUL, 0 x80000000UL,
0 x3feb7c91UL, 0 x6d6f1ea4UL, 0 x3e557657UL, 0 x00000000UL, 0 x3feb6e18UL,
0 x5e80a1bfUL, 0 x3e4ddbb6UL, 0 x00000000UL, 0 x3feb5fa3UL, 0 x1c9eacb5UL,
0 x3e592877UL, 0 xa0000000UL, 0 x3feb5132UL, 0 x6d40beb3UL, 0 xbe51858cUL,
0 xa0000000UL, 0 x3feb42c6UL, 0 xd740c67bUL, 0 x3e427ad2UL, 0 x40000000UL,
0 x3feb345fUL, 0 xa3e0cceeUL, 0 xbe5c2fc4UL, 0 x40000000UL, 0 x3feb25fcUL,
0 x8e752b50UL, 0 xbe3da3c2UL, 0 xc0000000UL, 0 x3feb179dUL, 0 xa892e7deUL,
0 x3e1fb481UL, 0 xc0000000UL, 0 x3feb0943UL, 0 x21ed71e9UL, 0 xbe365206UL,
0 x20000000UL, 0 x3feafaeeUL, 0 x0e1380a3UL, 0 x3e5c5b7bUL, 0 x20000000UL,
0 x3feaec9dUL, 0 x3c3d640eUL, 0 xbe5dbbd0UL, 0 x60000000UL, 0 x3feade50UL,
0 x8f97a715UL, 0 x3e3a8ec5UL, 0 x20000000UL, 0 x3fead008UL, 0 x23ab2839UL,
0 x3e2fe98aUL, 0 x40000000UL, 0 x3feac1c4UL, 0 xf4bbd50fUL, 0 x3e54d8f6UL,
0 xe0000000UL, 0 x3feab384UL, 0 x14757c4dUL, 0 xbe48774cUL, 0 xc0000000UL,
0 x3feaa549UL, 0 x7c7b0eeaUL, 0 x3e5b51bbUL, 0 x20000000UL, 0 x3fea9713UL,
0 xf56f7013UL, 0 x3e386200UL, 0 xe0000000UL, 0 x3fea88e0UL, 0 xbe428ebeUL,
0 xbe514af5UL, 0 xe0000000UL, 0 x3fea7ab2UL, 0 x8d0e4496UL, 0 x3e4f9165UL,
0 x60000000UL, 0 x3fea6c89UL, 0 xdbacc5d5UL, 0 xbe5c063bUL, 0 x20000000UL,
0 x3fea5e64UL, 0 x3f19d970UL, 0 xbe5a0c8cUL, 0 x20000000UL, 0 x3fea5043UL,
0 x09ea3e6bUL, 0 x3e5065dcUL, 0 x80000000UL, 0 x3fea4226UL, 0 x78df246cUL,
0 x3e5e05f6UL, 0 x40000000UL, 0 x3fea340eUL, 0 x4057d4a0UL, 0 x3e431b2bUL,
0 x40000000UL, 0 x3fea25faUL, 0 x82867bb5UL, 0 x3e4b76beUL, 0 xa0000000UL,
0 x3fea17eaUL, 0 x9436f40aUL, 0 xbe5aad39UL, 0 x20000000UL, 0 x3fea09dfUL,
0 x4b5253b3UL, 0 x3e46380bUL, 0 x00000000UL, 0 x3fe9fbd8UL, 0 x8fc52466UL,
0 xbe386f9bUL, 0 x20000000UL, 0 x3fe9edd5UL, 0 x22d3f344UL, 0 xbe538347UL,
0 x60000000UL, 0 x3fe9dfd6UL, 0 x1ac33522UL, 0 x3e5dbc53UL, 0 x00000000UL,
0 x3fe9d1dcUL, 0 xeabdff1dUL, 0 x3e40fc0cUL, 0 xe0000000UL, 0 x3fe9c3e5UL,
0 xafd30e73UL, 0 xbe585e63UL, 0 xe0000000UL, 0 x3fe9b5f3UL, 0 xa52f226aUL,
0 xbe43e8f9UL, 0 x20000000UL, 0 x3fe9a806UL, 0 xecb8698dUL, 0 xbe515b36UL,
0 x80000000UL, 0 x3fe99a1cUL, 0 xf2b4e89dUL, 0 x3e48b62bUL, 0 x20000000UL,
0 x3fe98c37UL, 0 x7c9a88fbUL, 0 x3e44414cUL, 0 x00000000UL, 0 x3fe97e56UL,
0 xda015741UL, 0 xbe5d13baUL, 0 xe0000000UL, 0 x3fe97078UL, 0 x5fdace06UL,
0 x3e51b947UL, 0 x00000000UL, 0 x3fe962a0UL, 0 x956ca094UL, 0 x3e518785UL,
0 x40000000UL, 0 x3fe954cbUL, 0 x01164c1dUL, 0 x3e5d5b57UL, 0 xc0000000UL,
0 x3fe946faUL, 0 xe63b3767UL, 0 xbe4f84e7UL, 0 x40000000UL, 0 x3fe9392eUL,
0 xe57cc2a9UL, 0 x3e34eda3UL, 0 xe0000000UL, 0 x3fe92b65UL, 0 x8c75b544UL,
0 x3e5766a0UL, 0 xc0000000UL, 0 x3fe91da1UL, 0 x37d1d087UL, 0 xbe5e2ab1UL,
0 x80000000UL, 0 x3fe90fe1UL, 0 xa953dc20UL, 0 x3e5fa1f3UL, 0 x80000000UL,
0 x3fe90225UL, 0 xdbd3f369UL, 0 x3e47d6dbUL, 0 xa0000000UL, 0 x3fe8f46dUL,
0 x1c9be989UL, 0 xbe5e2b0aUL, 0 xa0000000UL, 0 x3fe8e6b9UL, 0 x3c93d76aUL,
0 x3e5c8618UL, 0 xe0000000UL, 0 x3fe8d909UL, 0 x2182fc9aUL, 0 xbe41aa9eUL,
0 x20000000UL, 0 x3fe8cb5eUL, 0 xe6b3539dUL, 0 xbe530d19UL, 0 x60000000UL,
0 x3fe8bdb6UL, 0 x49e58cc3UL, 0 xbe3bb374UL, 0 xa0000000UL, 0 x3fe8b012UL,
0 xa7cfeb8fUL, 0 x3e56c412UL, 0 x00000000UL, 0 x3fe8a273UL, 0 x8d52bc19UL,
0 x3e1429b8UL, 0 x60000000UL, 0 x3fe894d7UL, 0 x4dc32c6cUL, 0 xbe48604cUL,
0 xc0000000UL, 0 x3fe8873fUL, 0 x0c868e56UL, 0 xbe564ee5UL, 0 x00000000UL,
0 x3fe879acUL, 0 x56aee828UL, 0 x3e5e2fd8UL, 0 x60000000UL, 0 x3fe86c1cUL,
0 x7ceab8ecUL, 0 x3e493365UL, 0 xc0000000UL, 0 x3fe85e90UL, 0 x78d4dadcUL,
0 xbe4f7f25UL, 0 x00000000UL, 0 x3fe85109UL, 0 x0ccd8280UL, 0 x3e31e7a2UL,
0 x40000000UL, 0 x3fe84385UL, 0 x34ba4e15UL, 0 x3e328077UL, 0 x80000000UL,
0 x3fe83605UL, 0 xa670975aUL, 0 xbe53eee5UL, 0 xa0000000UL, 0 x3fe82889UL,
0 xf61b77b2UL, 0 xbe43a20aUL, 0 xa0000000UL, 0 x3fe81b11UL, 0 x13e6643bUL,
0 x3e5e5fe5UL, 0 xc0000000UL, 0 x3fe80d9dUL, 0 x82cc94e8UL, 0 xbe5ff1f9UL,
0 xa0000000UL, 0 x3fe8002dUL, 0 x8a0c9c5dUL, 0 xbe42b0e7UL, 0 x60000000UL,
0 x3fe7f2c1UL, 0 x22a16f01UL, 0 x3e5d9ea0UL, 0 x20000000UL, 0 x3fe7e559UL,
0 xc38cd451UL, 0 x3e506963UL, 0 xc0000000UL, 0 x3fe7d7f4UL, 0 x9902bc71UL,
0 x3e4503d7UL, 0 x40000000UL, 0 x3fe7ca94UL, 0 xdef2a3c0UL, 0 x3e3d98edUL,
0 xa0000000UL, 0 x3fe7bd37UL, 0 xed49abb0UL, 0 x3e24c1ffUL, 0 xe0000000UL,
0 x3fe7afdeUL, 0 xe3b0be70UL, 0 xbe40c467UL, 0 x00000000UL, 0 x3fe7a28aUL,
0 xaf9f193cUL, 0 xbe5dff6cUL, 0 xe0000000UL, 0 x3fe79538UL, 0 xb74cf6b6UL,
0 xbe258ed0UL, 0 xa0000000UL, 0 x3fe787ebUL, 0 x1d9127c7UL, 0 x3e345fb0UL,
0 x40000000UL, 0 x3fe77aa2UL, 0 x1028c21dUL, 0 xbe4619bdUL, 0 xa0000000UL,
0 x3fe76d5cUL, 0 x7cb0b5e4UL, 0 x3e40f1a2UL, 0 xe0000000UL, 0 x3fe7601aUL,
0 x2b1bc4adUL, 0 xbe32e8bbUL, 0 xe0000000UL, 0 x3fe752dcUL, 0 x6839f64eUL,
0 x3e41f57bUL, 0 xc0000000UL, 0 x3fe745a2UL, 0 xc4121f7eUL, 0 xbe52c40aUL,
0 x60000000UL, 0 x3fe7386cUL, 0 xd6852d72UL, 0 xbe5c4e6bUL, 0 xc0000000UL,
0 x3fe72b39UL, 0 x91d690f7UL, 0 xbe57f88fUL, 0 xe0000000UL, 0 x3fe71e0aUL,
0 x627a2159UL, 0 xbe4425d5UL, 0 xc0000000UL, 0 x3fe710dfUL, 0 x50a54033UL,
0 x3e422b7eUL, 0 x60000000UL, 0 x3fe703b8UL, 0 x3b0b5f91UL, 0 x3e5d3857UL,
0 xe0000000UL, 0 x3fe6f694UL, 0 x84d628a2UL, 0 xbe51f090UL, 0 x00000000UL,
0 x3fe6e975UL, 0 x306d8894UL, 0 xbe414d83UL, 0 xe0000000UL, 0 x3fe6dc58UL,
0 x30bf24aaUL, 0 xbe4650caUL, 0 x80000000UL, 0 x3fe6cf40UL, 0 xd4628d69UL,
0 xbe5db007UL, 0 xc0000000UL, 0 x3fe6c22bUL, 0 xa2aae57bUL, 0 xbe31d279UL,
0 xc0000000UL, 0 x3fe6b51aUL, 0 x860edf7eUL, 0 xbe2d4c4aUL, 0 x80000000UL,
0 x3fe6a80dUL, 0 xf3559341UL, 0 xbe5f7e98UL, 0 xe0000000UL, 0 x3fe69b03UL,
0 xa885899eUL, 0 xbe5c2011UL, 0 xe0000000UL, 0 x3fe68dfdUL, 0 x2bdc6d37UL,
0 x3e224a82UL, 0 xa0000000UL, 0 x3fe680fbUL, 0 xc12ad1b9UL, 0 xbe40cf56UL,
0 x00000000UL, 0 x3fe673fdUL, 0 x1bcdf659UL, 0 xbdf52f2dUL, 0 x00000000UL,
0 x3fe66702UL, 0 x5df10408UL, 0 x3e5663e0UL, 0 xc0000000UL, 0 x3fe65a0aUL,
0 xa4070568UL, 0 xbe40b12fUL, 0 x00000000UL, 0 x3fe64d17UL, 0 x71c54c47UL,
0 x3e5f5e8bUL, 0 x00000000UL, 0 x3fe64027UL, 0 xbd4b7e83UL, 0 x3e42ead6UL,
0 xa0000000UL, 0 x3fe6333aUL, 0 x61598bd2UL, 0 xbe4c48d4UL, 0 xc0000000UL,
0 x3fe62651UL, 0 x6f538d61UL, 0 x3e548401UL, 0 xa0000000UL, 0 x3fe6196cUL,
0 x14344120UL, 0 xbe529af6UL, 0 x00000000UL, 0 x3fe60c8bUL, 0 x5982c587UL,
0 xbe3e1e4fUL, 0 x00000000UL, 0 x3fe5ffadUL, 0 xfe51d4eaUL, 0 xbe4c897aUL,
0 x80000000UL, 0 x3fe5f2d2UL, 0 xfd46ebe1UL, 0 x3e552e00UL, 0 xa0000000UL,
0 x3fe5e5fbUL, 0 xa4695699UL, 0 x3e5ed471UL, 0 x60000000UL, 0 x3fe5d928UL,
0 x80d118aeUL, 0 x3e456b61UL, 0 xa0000000UL, 0 x3fe5cc58UL, 0 x304c330bUL,
0 x3e54dc29UL, 0 x80000000UL, 0 x3fe5bf8cUL, 0 x0af2dedfUL, 0 xbe3aa9bdUL,
0 xe0000000UL, 0 x3fe5b2c3UL, 0 x15fc9258UL, 0 xbe479a37UL, 0 xc0000000UL,
0 x3fe5a5feUL, 0 x9292c7eaUL, 0 x3e188650UL, 0 x20000000UL, 0 x3fe5993dUL,
0 x33b4d380UL, 0 x3e5d6d93UL, 0 x20000000UL, 0 x3fe58c7fUL, 0 x02fd16c7UL,
0 x3e2fe961UL, 0 xa0000000UL, 0 x3fe57fc4UL, 0 x4a05edb6UL, 0 xbe4d55b4UL,
0 xa0000000UL, 0 x3fe5730dUL, 0 x3d443abbUL, 0 xbe5e6954UL, 0 x00000000UL,
0 x3fe5665aUL, 0 x024acfeaUL, 0 x3e50e61bUL, 0 x00000000UL, 0 x3fe559aaUL,
0 xcc9edd09UL, 0 xbe325403UL, 0 x60000000UL, 0 x3fe54cfdUL, 0 x1fe26950UL,
0 x3e5d500eUL, 0 x60000000UL, 0 x3fe54054UL, 0 x6c5ae164UL, 0 xbe4a79b4UL,
0 xc0000000UL, 0 x3fe533aeUL, 0 x154b0287UL, 0 xbe401571UL, 0 xa0000000UL,
0 x3fe5270cUL, 0 x0673f401UL, 0 xbe56e56bUL, 0 xe0000000UL, 0 x3fe51a6dUL,
0 x751b639cUL, 0 x3e235269UL, 0 xa0000000UL, 0 x3fe50dd2UL, 0 x7c7b2bedUL,
0 x3ddec887UL, 0 xc0000000UL, 0 x3fe5013aUL, 0 xafab4e17UL, 0 x3e5e7575UL,
0 x60000000UL, 0 x3fe4f4a6UL, 0 x2e308668UL, 0 x3e59aed6UL, 0 x80000000UL,
0 x3fe4e815UL, 0 xf33e2a76UL, 0 xbe51f184UL, 0 xe0000000UL, 0 x3fe4db87UL,
0 x839f3e3eUL, 0 x3e57db01UL, 0 xc0000000UL, 0 x3fe4cefdUL, 0 xa9eda7bbUL,
0 x3e535e0fUL, 0 x00000000UL, 0 x3fe4c277UL, 0 x2a8f66a5UL, 0 x3e5ce451UL,
0 xc0000000UL, 0 x3fe4b5f3UL, 0 x05192456UL, 0 xbe4e8518UL, 0 xc0000000UL,
0 x3fe4a973UL, 0 x4aa7cd1dUL, 0 x3e46784aUL, 0 x40000000UL, 0 x3fe49cf7UL,
0 x8e23025eUL, 0 xbe5749f2UL, 0 x00000000UL, 0 x3fe4907eUL, 0 x18d30215UL,
0 x3e360f39UL, 0 x20000000UL, 0 x3fe48408UL, 0 x63dcf2f3UL, 0 x3e5e00feUL,
0 xc0000000UL, 0 x3fe47795UL, 0 x46182d09UL, 0 xbe5173d9UL, 0 xa0000000UL,
0 x3fe46b26UL, 0 x8f0e62aaUL, 0 xbe48f281UL, 0 xe0000000UL, 0 x3fe45ebaUL,
0 x5775c40cUL, 0 xbe56aad4UL, 0 x60000000UL, 0 x3fe45252UL, 0 x0fe25f69UL,
0 x3e48bd71UL, 0 x40000000UL, 0 x3fe445edUL, 0 xe9989ec5UL, 0 x3e590d97UL,
0 x80000000UL, 0 x3fe4398bUL, 0 xb3d9ffe3UL, 0 x3e479dbcUL, 0 x20000000UL,
0 x3fe42d2dUL, 0 x388e4d2eUL, 0 xbe5eed80UL, 0 xe0000000UL, 0 x3fe420d1UL,
0 x6f797c18UL, 0 x3e554b4cUL, 0 x20000000UL, 0 x3fe4147aUL, 0 x31048bb4UL,
0 xbe5b1112UL, 0 x80000000UL, 0 x3fe40825UL, 0 x2efba4f9UL, 0 x3e48ebc7UL,
0 x40000000UL, 0 x3fe3fbd4UL, 0 x50201119UL, 0 x3e40b701UL, 0 x40000000UL,
0 x3fe3ef86UL, 0 x0a4db32cUL, 0 x3e551de8UL, 0 xa0000000UL, 0 x3fe3e33bUL,
0 x0c9c148bUL, 0 xbe50c1f6UL, 0 x20000000UL, 0 x3fe3d6f4UL, 0 xc9129447UL,
0 x3e533fa0UL, 0 x00000000UL, 0 x3fe3cab0UL, 0 xaae5b5a0UL, 0 xbe22b68eUL,
0 x20000000UL, 0 x3fe3be6fUL, 0 x02305e8aUL, 0 xbe54fc08UL, 0 x60000000UL,
0 x3fe3b231UL, 0 x7f908258UL, 0 x3e57dc05UL, 0 x00000000UL, 0 x3fe3a5f7UL,
0 x1a09af78UL, 0 x3e08038bUL, 0 xe0000000UL, 0 x3fe399bfUL, 0 x490643c1UL,
0 xbe5dbe42UL, 0 xe0000000UL, 0 x3fe38d8bUL, 0 x5e8ad724UL, 0 xbe3c2b72UL,
0 x20000000UL, 0 x3fe3815bUL, 0 xc67196b6UL, 0 x3e1713cfUL, 0 xa0000000UL,
0 x3fe3752dUL, 0 x6182e429UL, 0 xbe3ec14cUL, 0 x40000000UL, 0 x3fe36903UL,
0 xab6eb1aeUL, 0 x3e5a2cc5UL, 0 x40000000UL, 0 x3fe35cdcUL, 0 xfe5dc064UL,
0 xbe5c5878UL, 0 x40000000UL, 0 x3fe350b8UL, 0 x0ba6b9e4UL, 0 x3e51619bUL,
0 x80000000UL, 0 x3fe34497UL, 0 x857761aaUL, 0 x3e5fff53UL, 0 x00000000UL,
0 x3fe3387aUL, 0 xf872d68cUL, 0 x3e484f4dUL, 0 xa0000000UL, 0 x3fe32c5fUL,
0 x087e97c2UL, 0 x3e52842eUL, 0 x80000000UL, 0 x3fe32048UL, 0 x73d6d0c0UL,
0 xbe503edfUL, 0 x80000000UL, 0 x3fe31434UL, 0 x0c1456a1UL, 0 xbe5f72adUL,
0 xa0000000UL, 0 x3fe30823UL, 0 x83a1a4d5UL, 0 xbe5e65ccUL, 0 xe0000000UL,
0 x3fe2fc15UL, 0 x855a7390UL, 0 xbe506438UL, 0 x40000000UL, 0 x3fe2f00bUL,
0 xa2898287UL, 0 x3e3d22a2UL, 0 xe0000000UL, 0 x3fe2e403UL, 0 x8b56f66fUL,
0 xbe5aa5fdUL, 0 x80000000UL, 0 x3fe2d7ffUL, 0 x52db119aUL, 0 x3e3a2e3dUL,
0 x60000000UL, 0 x3fe2cbfeUL, 0 xe2ddd4c0UL, 0 xbe586469UL, 0 x40000000UL,
0 x3fe2c000UL, 0 x6b01bf10UL, 0 x3e352b9dUL, 0 x40000000UL, 0 x3fe2b405UL,
0 xb07a1cdfUL, 0 x3e5c5cdaUL, 0 x80000000UL, 0 x3fe2a80dUL, 0 xc7b5f868UL,
0 xbe5668b3UL, 0 xc0000000UL, 0 x3fe29c18UL, 0 x185edf62UL, 0 xbe563d66UL,
0 x00000000UL, 0 x3fe29027UL, 0 xf729e1ccUL, 0 x3e59a9a0UL, 0 x80000000UL,
0 x3fe28438UL, 0 x6433c727UL, 0 xbe43cc89UL, 0 x00000000UL, 0 x3fe2784dUL,
0 x41782631UL, 0 xbe30750cUL, 0 xa0000000UL, 0 x3fe26c64UL, 0 x914911b7UL,
0 xbe58290eUL, 0 x40000000UL, 0 x3fe2607fUL, 0 x3dcc73e1UL, 0 xbe4269cdUL,
0 x00000000UL, 0 x3fe2549dUL, 0 x2751bf70UL, 0 xbe5a6998UL, 0 xc0000000UL,
0 x3fe248bdUL, 0 x4248b9fbUL, 0 xbe4ddb00UL, 0 x80000000UL, 0 x3fe23ce1UL,
0 xf35cf82fUL, 0 x3e561b71UL, 0 x60000000UL, 0 x3fe23108UL, 0 x8e481a2dUL,
0 x3e518fb9UL, 0 x60000000UL, 0 x3fe22532UL, 0 x5ab96edcUL, 0 xbe5fafc5UL,
0 x40000000UL, 0 x3fe2195fUL, 0 x80943911UL, 0 xbe07f819UL, 0 x40000000UL,
0 x3fe20d8fUL, 0 x386f2d6cUL, 0 xbe54ba8bUL, 0 x40000000UL, 0 x3fe201c2UL,
0 xf29664acUL, 0 xbe5eb815UL, 0 x20000000UL, 0 x3fe1f5f8UL, 0 x64f03390UL,
0 x3e5e320cUL, 0 x20000000UL, 0 x3fe1ea31UL, 0 x747ff696UL, 0 x3e5ef0a5UL,
0 x40000000UL, 0 x3fe1de6dUL, 0 x3e9ceb51UL, 0 xbe5f8d27UL, 0 x20000000UL,
0 x3fe1d2acUL, 0 x4ae0b55eUL, 0 x3e5faa21UL, 0 x20000000UL, 0 x3fe1c6eeUL,
0 x28569a5eUL, 0 x3e598a4fUL, 0 x20000000UL, 0 x3fe1bb33UL, 0 x54b33e07UL,
0 x3e46130aUL, 0 x20000000UL, 0 x3fe1af7bUL, 0 x024f1078UL, 0 xbe4dbf93UL,
0 x00000000UL, 0 x3fe1a3c6UL, 0 xb0783bfaUL, 0 x3e419248UL, 0 xe0000000UL,
0 x3fe19813UL, 0 x2f02b836UL, 0 x3e4e02b7UL, 0 xc0000000UL, 0 x3fe18c64UL,
0 x28dec9d4UL, 0 x3e09064fUL, 0 x80000000UL, 0 x3fe180b8UL, 0 x45cbf406UL,
0 x3e5b1f46UL, 0 x40000000UL, 0 x3fe1750fUL, 0 x03d9964cUL, 0 x3e5b0a79UL,
0 x00000000UL, 0 x3fe16969UL, 0 x8b5b882bUL, 0 xbe238086UL, 0 xa0000000UL,
0 x3fe15dc5UL, 0 x73bad6f8UL, 0 xbdf1fca4UL, 0 x20000000UL, 0 x3fe15225UL,
0 x5385769cUL, 0 x3e5e8d76UL, 0 xa0000000UL, 0 x3fe14687UL, 0 x1676dc6bUL,
0 x3e571d08UL, 0 x20000000UL, 0 x3fe13aedUL, 0 xa8c41c7fUL, 0 xbe598a25UL,
0 x60000000UL, 0 x3fe12f55UL, 0 xc4e1aaf0UL, 0 x3e435277UL, 0 xa0000000UL,
0 x3fe123c0UL, 0 x403638e1UL, 0 xbe21aa7cUL, 0 xc0000000UL, 0 x3fe1182eUL,
0 x557a092bUL, 0 xbdd0116bUL, 0 xc0000000UL, 0 x3fe10c9fUL, 0 x7d779f66UL,
0 x3e4a61baUL, 0 xc0000000UL, 0 x3fe10113UL, 0 x2b09c645UL, 0 xbe5d586eUL,
0 x20000000UL, 0 x3fe0ea04UL, 0 xea2cad46UL, 0 x3e5aa97cUL, 0 x20000000UL,
0 x3fe0d300UL, 0 x23190e54UL, 0 x3e50f1a7UL, 0 xa0000000UL, 0 x3fe0bc07UL,
0 x1379a5a6UL, 0 xbe51619dUL, 0 x60000000UL, 0 x3fe0a51aUL, 0 x926a3d4aUL,
0 x3e5cf019UL, 0 xa0000000UL, 0 x3fe08e38UL, 0 xa8c24358UL, 0 x3e35241eUL,
0 x20000000UL, 0 x3fe07762UL, 0 x24317e7aUL, 0 x3e512cfaUL, 0 x00000000UL,
0 x3fe06097UL, 0 xfd9cf274UL, 0 xbe55bef3UL, 0 x00000000UL, 0 x3fe049d7UL,
0 x3689b49dUL, 0 xbe36d26dUL, 0 x40000000UL, 0 x3fe03322UL, 0 xf72ef6c4UL,
0 xbe54cd08UL, 0 xa0000000UL, 0 x3fe01c78UL, 0 x23702d2dUL, 0 xbe5900bfUL,
0 x00000000UL, 0 x3fe005daUL, 0 x3f59c14cUL, 0 x3e57d80bUL, 0 x40000000UL,
0 x3fdfde8dUL, 0 xad67766dUL, 0 xbe57fad4UL, 0 x40000000UL, 0 x3fdfb17cUL,
0 x644f4ae7UL, 0 x3e1ee43bUL, 0 x40000000UL, 0 x3fdf8481UL, 0 x903234d2UL,
0 x3e501a86UL, 0 x40000000UL, 0 x3fdf579cUL, 0 xafe9e509UL, 0 xbe267c3eUL,
0 x00000000UL, 0 x3fdf2acdUL, 0 xb7dfda0bUL, 0 xbe48149bUL, 0 x40000000UL,
0 x3fdefe13UL, 0 x3b94305eUL, 0 x3e5f4ea7UL, 0 x80000000UL, 0 x3fded16fUL,
0 x5d95da61UL, 0 xbe55c198UL, 0 x00000000UL, 0 x3fdea4e1UL, 0 x406960c9UL,
0 xbdd99a19UL, 0 x00000000UL, 0 x3fde7868UL, 0 xd22f3539UL, 0 x3e470c78UL,
0 x80000000UL, 0 x3fde4c04UL, 0 x83eec535UL, 0 xbe3e1232UL, 0 x40000000UL,
0 x3fde1fb6UL, 0 x3dfbffcbUL, 0 xbe4b7d71UL, 0 x40000000UL, 0 x3fddf37dUL,
0 x7e1be4e0UL, 0 xbe5b8f8fUL, 0 x40000000UL, 0 x3fddc759UL, 0 x46dae887UL,
0 xbe350458UL, 0 x80000000UL, 0 x3fdd9b4aUL, 0 xed6ecc49UL, 0 xbe5f0045UL,
0 x80000000UL, 0 x3fdd6f50UL, 0 x2e9e883cUL, 0 x3e2915daUL, 0 x80000000UL,
0 x3fdd436bUL, 0 xf0bccb32UL, 0 x3e4a68c9UL, 0 x80000000UL, 0 x3fdd179bUL,
0 x9bbfc779UL, 0 xbe54a26aUL, 0 x00000000UL, 0 x3fdcebe0UL, 0 x7cea33abUL,
0 x3e43c6b7UL, 0 x40000000UL, 0 x3fdcc039UL, 0 xe740fd06UL, 0 x3e5526c2UL,
0 x40000000UL, 0 x3fdc94a7UL, 0 x9eadeb1aUL, 0 xbe396d8dUL, 0 xc0000000UL,
0 x3fdc6929UL, 0 xf0a8f95aUL, 0 xbe5c0ab2UL, 0 x80000000UL, 0 x3fdc3dc0UL,
0 x6ee2693bUL, 0 x3e0992e6UL, 0 xc0000000UL, 0 x3fdc126bUL, 0 x5ac6b581UL,
0 xbe2834b6UL, 0 x40000000UL, 0 x3fdbe72bUL, 0 x8cc226ffUL, 0 x3e3596a6UL,
0 x00000000UL, 0 x3fdbbbffUL, 0 xf92a74bbUL, 0 x3e3c5813UL, 0 x00000000UL,
0 x3fdb90e7UL, 0 x479664c0UL, 0 xbe50d644UL, 0 x00000000UL, 0 x3fdb65e3UL,
0 x5004975bUL, 0 xbe55258fUL, 0 x00000000UL, 0 x3fdb3af3UL, 0 xe4b23194UL,
0 xbe588407UL, 0 xc0000000UL, 0 x3fdb1016UL, 0 xe65d4d0aUL, 0 x3e527c26UL,
0 x80000000UL, 0 x3fdae54eUL, 0 x814fddd6UL, 0 x3e5962a2UL, 0 x40000000UL,
0 x3fdaba9aUL, 0 xe19d0913UL, 0 xbe562f4eUL, 0 x80000000UL, 0 x3fda8ff9UL,
0 x43cfd006UL, 0 xbe4cfdebUL, 0 x40000000UL, 0 x3fda656cUL, 0 x686f0a4eUL,
0 x3e5e47a8UL, 0 xc0000000UL, 0 x3fda3af2UL, 0 x7200d410UL, 0 x3e5e1199UL,
0 xc0000000UL, 0 x3fda108cUL, 0 xabd2266eUL, 0 x3e5ee4d1UL, 0 x40000000UL,
0 x3fd9e63aUL, 0 x396f8f2cUL, 0 x3e4dbffbUL, 0 x00000000UL, 0 x3fd9bbfbUL,
0 xe32b25ddUL, 0 x3e5c3a54UL, 0 x40000000UL, 0 x3fd991cfUL, 0 x431e4035UL,
0 xbe457925UL, 0 x80000000UL, 0 x3fd967b6UL, 0 x7bed3dd3UL, 0 x3e40c61dUL,
0 x00000000UL, 0 x3fd93db1UL, 0 xd7449365UL, 0 x3e306419UL, 0 x80000000UL,
0 x3fd913beUL, 0 x1746e791UL, 0 x3e56fcfcUL, 0 x40000000UL, 0 x3fd8e9dfUL,
0 xf3a9028bUL, 0 xbe5041b9UL, 0 xc0000000UL, 0 x3fd8c012UL, 0 x56840c50UL,
0 xbe26e20aUL, 0 x40000000UL, 0 x3fd89659UL, 0 x19763102UL, 0 xbe51f466UL,
0 x80000000UL, 0 x3fd86cb2UL, 0 x7032de7cUL, 0 xbe4d298aUL, 0 x80000000UL,
0 x3fd8431eUL, 0 xdeb39fabUL, 0 xbe4361ebUL, 0 x40000000UL, 0 x3fd8199dUL,
0 x5d01cbe0UL, 0 xbe5425b3UL, 0 x80000000UL, 0 x3fd7f02eUL, 0 x3ce99aa9UL,
0 x3e146fa8UL, 0 x80000000UL, 0 x3fd7c6d2UL, 0 xd1a262b9UL, 0 xbe5a1a69UL,
0 xc0000000UL, 0 x3fd79d88UL, 0 x8606c236UL, 0 x3e423a08UL, 0 x80000000UL,
0 x3fd77451UL, 0 x8fd1e1b7UL, 0 x3e5a6a63UL, 0 xc0000000UL, 0 x3fd74b2cUL,
0 xe491456aUL, 0 x3e42c1caUL, 0 x40000000UL, 0 x3fd7221aUL, 0 x4499a6d7UL,
0 x3e36a69aUL, 0 x00000000UL, 0 x3fd6f91aUL, 0 x5237df94UL, 0 xbe0f8f02UL,
0 x00000000UL, 0 x3fd6d02cUL, 0 xb6482c6eUL, 0 xbe5abcf7UL, 0 x00000000UL,
0 x3fd6a750UL, 0 x1919fd61UL, 0 xbe57ade2UL, 0 x00000000UL, 0 x3fd67e86UL,
0 xaa7a994dUL, 0 xbe3f3fbdUL, 0 x00000000UL, 0 x3fd655ceUL, 0 x67db014cUL,
0 x3e33c550UL, 0 x00000000UL, 0 x3fd62d28UL, 0 xa82856b7UL, 0 xbe1409d1UL,
0 xc0000000UL, 0 x3fd60493UL, 0 x1e6a300dUL, 0 x3e55d899UL, 0 x80000000UL,
0 x3fd5dc11UL, 0 x1222bd5cUL, 0 xbe35bfc0UL, 0 xc0000000UL, 0 x3fd5b3a0UL,
0 x6e8dc2d3UL, 0 x3e5d4d79UL, 0 x00000000UL, 0 x3fd58b42UL, 0 xe0e4ace6UL,
0 xbe517303UL, 0 x80000000UL, 0 x3fd562f4UL, 0 xb306e0a8UL, 0 x3e5edf0fUL,
0 xc0000000UL, 0 x3fd53ab8UL, 0 x6574bc54UL, 0 x3e5ee859UL, 0 x80000000UL,
0 x3fd5128eUL, 0 xea902207UL, 0 x3e5f6188UL, 0 xc0000000UL, 0 x3fd4ea75UL,
0 x9f911d79UL, 0 x3e511735UL, 0 x80000000UL, 0 x3fd4c26eUL, 0 xf9c77397UL,
0 xbe5b1643UL, 0 x40000000UL, 0 x3fd49a78UL, 0 x15fc9258UL, 0 x3e479a37UL,
0 x80000000UL, 0 x3fd47293UL, 0 xd5a04dd9UL, 0 xbe426e56UL, 0 xc0000000UL,
0 x3fd44abfUL, 0 xe04042f5UL, 0 x3e56f7c6UL, 0 x40000000UL, 0 x3fd422fdUL,
0 x1d8bf2c8UL, 0 x3e5d8810UL, 0 x00000000UL, 0 x3fd3fb4cUL, 0 x88a8ddeeUL,
0 xbe311454UL, 0 xc0000000UL, 0 x3fd3d3abUL, 0 x3e3b5e47UL, 0 xbe5d1b72UL,
0 x40000000UL, 0 x3fd3ac1cUL, 0 xc2ab5d59UL, 0 x3e31b02bUL, 0 xc0000000UL,
0 x3fd3849dUL, 0 xd4e34b9eUL, 0 x3e51cb2fUL, 0 x40000000UL, 0 x3fd35d30UL,
0 x177204fbUL, 0 xbe2b8cd7UL, 0 x80000000UL, 0 x3fd335d3UL, 0 xfcd38c82UL,
0 xbe4356e1UL, 0 x80000000UL, 0 x3fd30e87UL, 0 x64f54accUL, 0 xbe4e6224UL,
0 x00000000UL, 0 x3fd2e74cUL, 0 xaa7975d9UL, 0 x3e5dc0feUL, 0 x80000000UL,
0 x3fd2c021UL, 0 x516dab3fUL, 0 xbe50ffa3UL, 0 x40000000UL, 0 x3fd29907UL,
0 x2bfb7313UL, 0 x3e5674a2UL, 0 xc0000000UL, 0 x3fd271fdUL, 0 x0549fc99UL,
0 x3e385d29UL, 0 xc0000000UL, 0 x3fd24b04UL, 0 x55b63073UL, 0 xbe500c6dUL,
0 x00000000UL, 0 x3fd2241cUL, 0 x3f91953aUL, 0 x3e389977UL, 0 xc0000000UL,
0 x3fd1fd43UL, 0 xa1543f71UL, 0 xbe3487abUL, 0 xc0000000UL, 0 x3fd1d67bUL,
0 x4ec8867cUL, 0 x3df6a2dcUL, 0 x00000000UL, 0 x3fd1afc4UL, 0 x4328e3bbUL,
0 x3e41d9c0UL, 0 x80000000UL, 0 x3fd1891cUL, 0 x2e1cda84UL, 0 x3e3bdd87UL,
0 x40000000UL, 0 x3fd16285UL, 0 x4b5331aeUL, 0 xbe53128eUL, 0 x00000000UL,
0 x3fd13bfeUL, 0 xb9aec164UL, 0 xbe52ac98UL, 0 xc0000000UL, 0 x3fd11586UL,
0 xd91e1316UL, 0 xbe350630UL, 0 x80000000UL, 0 x3fd0ef1fUL, 0 x7cacc12cUL,
0 x3e3f5219UL, 0 x40000000UL, 0 x3fd0c8c8UL, 0 xbce277b7UL, 0 x3e3d30c0UL,
0 x00000000UL, 0 x3fd0a281UL, 0 x2a63447dUL, 0 xbe541377UL, 0 x80000000UL,
0 x3fd07c49UL, 0 xfac483b5UL, 0 xbe5772ecUL, 0 xc0000000UL, 0 x3fd05621UL,
0 x36b8a570UL, 0 xbe4fd4bdUL, 0 xc0000000UL, 0 x3fd03009UL, 0 xbae505f7UL,
0 xbe450388UL, 0 x80000000UL, 0 x3fd00a01UL, 0 x3e35aeadUL, 0 xbe5430fcUL,
0 x80000000UL, 0 x3fcfc811UL, 0 x707475acUL, 0 x3e38806eUL, 0 x80000000UL,
0 x3fcf7c3fUL, 0 xc91817fcUL, 0 xbe40cceaUL, 0 x80000000UL, 0 x3fcf308cUL,
0 xae05d5e9UL, 0 xbe4919b8UL, 0 x80000000UL, 0 x3fcee4f8UL, 0 xae6cc9e6UL,
0 xbe530b94UL, 0 x00000000UL, 0 x3fce9983UL, 0 x1efe3e8eUL, 0 x3e57747eUL,
0 x00000000UL, 0 x3fce4e2dUL, 0 xda78d9bfUL, 0 xbe59a608UL, 0 x00000000UL,
0 x3fce02f5UL, 0 x8abe2c2eUL, 0 x3e4a35adUL, 0 x00000000UL, 0 x3fcdb7dcUL,
0 x1495450dUL, 0 xbe0872ccUL, 0 x80000000UL, 0 x3fcd6ce1UL, 0 x86ee0ba0UL,
0 xbe4f59a0UL, 0 x00000000UL, 0 x3fcd2205UL, 0 xe81ca888UL, 0 x3e5402c3UL,
0 x00000000UL, 0 x3fccd747UL, 0 x3b4424b9UL, 0 x3e5dfdc3UL, 0 x80000000UL,
0 x3fcc8ca7UL, 0 xd305b56cUL, 0 x3e202da6UL, 0 x00000000UL, 0 x3fcc4226UL,
0 x399a6910UL, 0 xbe482a1cUL, 0 x80000000UL, 0 x3fcbf7c2UL, 0 x747f7938UL,
0 xbe587372UL, 0 x80000000UL, 0 x3fcbad7cUL, 0 x6fc246a0UL, 0 x3e50d83dUL,
0 x00000000UL, 0 x3fcb6355UL, 0 xee9e9be5UL, 0 xbe5c35bdUL, 0 x80000000UL,
0 x3fcb194aUL, 0 x8416c0bcUL, 0 x3e546d4fUL, 0 x00000000UL, 0 x3fcacf5eUL,
0 x49f7f08fUL, 0 x3e56da76UL, 0 x00000000UL, 0 x3fca858fUL, 0 x5dc30de2UL,
0 x3e5f390cUL, 0 x00000000UL, 0 x3fca3bdeUL, 0 x950583b6UL, 0 xbe5e4169UL,
0 x80000000UL, 0 x3fc9f249UL, 0 x33631553UL, 0 x3e52aeb1UL, 0 x00000000UL,
0 x3fc9a8d3UL, 0 xde8795a6UL, 0 xbe59a504UL, 0 x00000000UL, 0 x3fc95f79UL,
0 x076bf41eUL, 0 x3e5122feUL, 0 x80000000UL, 0 x3fc9163cUL, 0 x2914c8e7UL,
0 x3e3dd064UL, 0 x00000000UL, 0 x3fc8cd1dUL, 0 x3a30eca3UL, 0 xbe21b4aaUL,
0 x80000000UL, 0 x3fc8841aUL, 0 xb2a96650UL, 0 xbe575444UL, 0 x80000000UL,
0 x3fc83b34UL, 0 x2376c0cbUL, 0 xbe2a74c7UL, 0 x80000000UL, 0 x3fc7f26bUL,
0 xd8a0b653UL, 0 xbe5181b6UL, 0 x00000000UL, 0 x3fc7a9bfUL, 0 x32257882UL,
0 xbe4a78b4UL, 0 x00000000UL, 0 x3fc7612fUL, 0 x1eee8bd9UL, 0 xbe1bfe9dUL,
0 x80000000UL, 0 x3fc718bbUL, 0 x0c603cc4UL, 0 x3e36fdc9UL, 0 x80000000UL,
0 x3fc6d064UL, 0 x3728b8cfUL, 0 xbe1e542eUL, 0 x80000000UL, 0 x3fc68829UL,
0 xc79a4067UL, 0 x3e5c380fUL, 0 x00000000UL, 0 x3fc6400bUL, 0 xf69eac69UL,
0 x3e550a84UL, 0 x80000000UL, 0 x3fc5f808UL, 0 xb7a780a4UL, 0 x3e5d9224UL,
0 x80000000UL, 0 x3fc5b022UL, 0 xad9dfb1eUL, 0 xbe55242fUL, 0 x00000000UL,
0 x3fc56858UL, 0 x659b18beUL, 0 xbe4bfda3UL, 0 x80000000UL, 0 x3fc520a9UL,
0 x66ee3631UL, 0 xbe57d769UL, 0 x80000000UL, 0 x3fc4d916UL, 0 x1ec62819UL,
0 x3e2427f7UL, 0 x80000000UL, 0 x3fc4919fUL, 0 xdec25369UL, 0 xbe435431UL,
0 x00000000UL, 0 x3fc44a44UL, 0 xa8acfc4bUL, 0 xbe3c62e8UL, 0 x00000000UL,
0 x3fc40304UL, 0 xcf1d3eabUL, 0 xbdfba29fUL, 0 x80000000UL, 0 x3fc3bbdfUL,
0 x79aba3eaUL, 0 xbdf1b7c8UL, 0 x80000000UL, 0 x3fc374d6UL, 0 xb8d186daUL,
0 xbe5130cfUL, 0 x80000000UL, 0 x3fc32de8UL, 0 x9d74f152UL, 0 x3e2285b6UL,
0 x00000000UL, 0 x3fc2e716UL, 0 x50ae7ca9UL, 0 xbe503920UL, 0 x80000000UL,
0 x3fc2a05eUL, 0 x6caed92eUL, 0 xbe533924UL, 0 x00000000UL, 0 x3fc259c2UL,
0 x9cb5034eUL, 0 xbe510e31UL, 0 x80000000UL, 0 x3fc21340UL, 0 x12c4d378UL,
0 xbe540b43UL, 0 x80000000UL, 0 x3fc1ccd9UL, 0 xcc418706UL, 0 x3e59887aUL,
0 x00000000UL, 0 x3fc1868eUL, 0 x921f4106UL, 0 xbe528e67UL, 0 x80000000UL,
0 x3fc1405cUL, 0 x3969441eUL, 0 x3e5d8051UL, 0 x00000000UL, 0 x3fc0fa46UL,
0 xd941ef5bUL, 0 x3e5f9079UL, 0 x80000000UL, 0 x3fc0b44aUL, 0 x5a3e81b2UL,
0 xbe567691UL, 0 x00000000UL, 0 x3fc06e69UL, 0 x9d66afe7UL, 0 xbe4d43fbUL,
0 x00000000UL, 0 x3fc028a2UL, 0 x0a92a162UL, 0 xbe52f394UL, 0 x00000000UL,
0 x3fbfc5eaUL, 0 x209897e5UL, 0 x3e529e37UL, 0 x00000000UL, 0 x3fbf3ac5UL,
0 x8458bd7bUL, 0 x3e582831UL, 0 x00000000UL, 0 x3fbeafd5UL, 0 xb8d8b4b8UL,
0 xbe486b4aUL, 0 x00000000UL, 0 x3fbe2518UL, 0 xe0a3b7b6UL, 0 x3e5bafd2UL,
0 x00000000UL, 0 x3fbd9a90UL, 0 x2bf2710eUL, 0 x3e383b2bUL, 0 x00000000UL,
0 x3fbd103cUL, 0 x73eb6ab7UL, 0 xbe56d78dUL, 0 x00000000UL, 0 x3fbc861bUL,
0 x32ceaff5UL, 0 xbe32dc5aUL, 0 x00000000UL, 0 x3fbbfc2eUL, 0 xbee04cb7UL,
0 xbe4a71a4UL, 0 x00000000UL, 0 x3fbb7274UL, 0 x35ae9577UL, 0 x3e38142fUL,
0 x00000000UL, 0 x3fbae8eeUL, 0 xcbaddab4UL, 0 xbe5490f0UL, 0 x00000000UL,
0 x3fba5f9aUL, 0 x95ce1114UL, 0 x3e597c71UL, 0 x00000000UL, 0 x3fb9d67aUL,
0 x6d7c0f78UL, 0 x3e3abc2dUL, 0 x00000000UL, 0 x3fb94d8dUL, 0 x2841a782UL,
0 xbe566cbcUL, 0 x00000000UL, 0 x3fb8c4d2UL, 0 x6ed429c6UL, 0 xbe3cfff9UL,
0 x00000000UL, 0 x3fb83c4aUL, 0 xe4a49fbbUL, 0 xbe552964UL, 0 x00000000UL,
0 x3fb7b3f4UL, 0 x2193d81eUL, 0 xbe42fa72UL, 0 x00000000UL, 0 x3fb72bd0UL,
0 xdd70c122UL, 0 x3e527a8cUL, 0 x00000000UL, 0 x3fb6a3dfUL, 0 x03108a54UL,
0 xbe450393UL, 0 x00000000UL, 0 x3fb61c1fUL, 0 x30ff7954UL, 0 x3e565840UL,
0 x00000000UL, 0 x3fb59492UL, 0 xdedd460cUL, 0 xbe5422b5UL, 0 x00000000UL,
0 x3fb50d36UL, 0 x950f9f45UL, 0 xbe5313f6UL, 0 x00000000UL, 0 x3fb4860bUL,
0 x582cdcb1UL, 0 x3e506d39UL, 0 x00000000UL, 0 x3fb3ff12UL, 0 x7216d3a6UL,
0 x3e4aa719UL, 0 x00000000UL, 0 x3fb3784aUL, 0 x57a423fdUL, 0 x3e5a9b9fUL,
0 x00000000UL, 0 x3fb2f1b4UL, 0 x7a138b41UL, 0 xbe50b418UL, 0 x00000000UL,
0 x3fb26b4eUL, 0 x2fbfd7eaUL, 0 x3e23a53eUL, 0 x00000000UL, 0 x3fb1e519UL,
0 x18913ccbUL, 0 x3e465fc1UL, 0 x00000000UL, 0 x3fb15f15UL, 0 x7ea24e21UL,
0 x3e042843UL, 0 x00000000UL, 0 x3fb0d941UL, 0 x7c6d9c77UL, 0 x3e59f61eUL,
0 x00000000UL, 0 x3fb0539eUL, 0 x114efd44UL, 0 x3e4ccab7UL, 0 x00000000UL,
0 x3faf9c56UL, 0 x1777f657UL, 0 x3e552f65UL, 0 x00000000UL, 0 x3fae91d2UL,
0 xc317b86aUL, 0 xbe5a61e0UL, 0 x00000000UL, 0 x3fad87acUL, 0 xb7664efbUL,
0 xbe41f64eUL, 0 x00000000UL, 0 x3fac7de6UL, 0 x5d3d03a9UL, 0 x3e0807a0UL,
0 x00000000UL, 0 x3fab7480UL, 0 x743c38ebUL, 0 xbe3726e1UL, 0 x00000000UL,
0 x3faa6b78UL, 0 x06a253f1UL, 0 x3e5ad636UL, 0 x00000000UL, 0 x3fa962d0UL,
0 xa35f541bUL, 0 x3e5a187aUL, 0 x00000000UL, 0 x3fa85a88UL, 0 x4b86e446UL,
0 xbe508150UL, 0 x00000000UL, 0 x3fa7529cUL, 0 x2589cacfUL, 0 x3e52938aUL,
0 x00000000UL, 0 x3fa64b10UL, 0 xaf6b11f2UL, 0 xbe3454cdUL, 0 x00000000UL,
0 x3fa543e2UL, 0 x97506fefUL, 0 xbe5fdec5UL, 0 x00000000UL, 0 x3fa43d10UL,
0 xe75f7dd9UL, 0 xbe388dd3UL, 0 x00000000UL, 0 x3fa3369cUL, 0 xa4139632UL,
0 xbdea5177UL, 0 x00000000UL, 0 x3fa23086UL, 0 x352d6f1eUL, 0 xbe565ad6UL,
0 x00000000UL, 0 x3fa12accUL, 0 x77449eb7UL, 0 xbe50d5c7UL, 0 x00000000UL,
0 x3fa0256eUL, 0 x7478da78UL, 0 x3e404724UL, 0 x00000000UL, 0 x3f9e40dcUL,
0 xf59cef7fUL, 0 xbe539d0aUL, 0 x00000000UL, 0 x3f9c3790UL, 0 x1511d43cUL,
0 x3e53c2c8UL, 0 x00000000UL, 0 x3f9a2f00UL, 0 x9b8bff3cUL, 0 xbe43b3e1UL,
0 x00000000UL, 0 x3f982724UL, 0 xad1e22a5UL, 0 x3e46f0bdUL, 0 x00000000UL,
0 x3f962000UL, 0 x130d9356UL, 0 x3e475ba0UL, 0 x00000000UL, 0 x3f941994UL,
0 x8f86f883UL, 0 xbe513d0bUL, 0 x00000000UL, 0 x3f9213dcUL, 0 x914d0dc8UL,
0 xbe534335UL, 0 x00000000UL, 0 x3f900ed8UL, 0 x2d73e5e7UL, 0 xbe22ba75UL,
0 x00000000UL, 0 x3f8c1510UL, 0 xc5b7d70eUL, 0 x3e599c5dUL, 0 x00000000UL,
0 x3f880de0UL, 0 x8a27857eUL, 0 xbe3d28c8UL, 0 x00000000UL, 0 x3f840810UL,
0 xda767328UL, 0 x3e531b3dUL, 0 x00000000UL, 0 x3f8003b0UL, 0 x77bacaf3UL,
0 xbe5f04e3UL, 0 x00000000UL, 0 x3f780150UL, 0 xdf4b0720UL, 0 x3e5a8bffUL,
0 x00000000UL, 0 x3f6ffc40UL, 0 x34c48e71UL, 0 xbe3fcd99UL, 0 x00000000UL,
0 x3f5ff6c0UL, 0 x1ad218afUL, 0 xbe4c78a7UL, 0 x00000000UL, 0 x00000000UL,
0 x00000000UL, 0 x80000000UL
};
ATTRIBUTE_ALIGNED(8 ) juint _log2_pow[] = {
0 xfefa39efUL, 0 x3fe62e42UL, 0 xfefa39efUL, 0 xbfe62e42UL
};
ATTRIBUTE_ALIGNED(8 ) juint _DOUBLE2[] = {
0 x00000000UL, 0 x40000000UL
};
ATTRIBUTE_ALIGNED(8 ) juint _DOUBLE0[] = {
0 x00000000UL, 0 x00000000UL
};
ATTRIBUTE_ALIGNED(8 ) juint _DOUBLE0DOT5[] = {
0 x00000000UL, 0 x3fe00000UL
};
#define __ _masm->
address StubGenerator::generate_libmPow() {
StubCodeMark mark(this , "StubRoutines" , "libmPow" );
address start = __ pc();
Label L_2TAG_PACKET_0_0_2, L_2TAG_PACKET_1_0_2, L_2TAG_PACKET_2_0_2, L_2TAG_PACKET_3_0_2;
Label L_2TAG_PACKET_4_0_2, L_2TAG_PACKET_5_0_2, L_2TAG_PACKET_6_0_2, L_2TAG_PACKET_7_0_2;
Label L_2TAG_PACKET_8_0_2, L_2TAG_PACKET_9_0_2, L_2TAG_PACKET_10_0_2, L_2TAG_PACKET_11_0_2;
Label L_2TAG_PACKET_12_0_2, L_2TAG_PACKET_13_0_2, L_2TAG_PACKET_14_0_2, L_2TAG_PACKET_15_0_2;
Label L_2TAG_PACKET_16_0_2, L_2TAG_PACKET_17_0_2, L_2TAG_PACKET_18_0_2, L_2TAG_PACKET_19_0_2;
Label L_2TAG_PACKET_20_0_2, L_2TAG_PACKET_21_0_2, L_2TAG_PACKET_22_0_2, L_2TAG_PACKET_23_0_2;
Label L_2TAG_PACKET_24_0_2, L_2TAG_PACKET_25_0_2, L_2TAG_PACKET_26_0_2, L_2TAG_PACKET_27_0_2;
Label L_2TAG_PACKET_28_0_2, L_2TAG_PACKET_29_0_2, L_2TAG_PACKET_30_0_2, L_2TAG_PACKET_31_0_2;
Label L_2TAG_PACKET_32_0_2, L_2TAG_PACKET_33_0_2, L_2TAG_PACKET_34_0_2, L_2TAG_PACKET_35_0_2;
Label L_2TAG_PACKET_36_0_2, L_2TAG_PACKET_37_0_2, L_2TAG_PACKET_38_0_2, L_2TAG_PACKET_39_0_2;
Label L_2TAG_PACKET_40_0_2, L_2TAG_PACKET_41_0_2, L_2TAG_PACKET_42_0_2, L_2TAG_PACKET_43_0_2;
Label L_2TAG_PACKET_44_0_2, L_2TAG_PACKET_45_0_2, L_2TAG_PACKET_46_0_2, L_2TAG_PACKET_47_0_2;
Label L_2TAG_PACKET_48_0_2, L_2TAG_PACKET_49_0_2, L_2TAG_PACKET_50_0_2, L_2TAG_PACKET_51_0_2;
Label L_2TAG_PACKET_52_0_2, L_2TAG_PACKET_53_0_2, L_2TAG_PACKET_54_0_2, L_2TAG_PACKET_55_0_2;
Label L_2TAG_PACKET_56_0_2;
Label B1_2, B1_3, B1_5;
Label L_POW;
address HIGHSIGMASK = (address)_HIGHSIGMASK;
address LOG2_E = (address)_LOG2_E;
address coeff = (address)_coeff_pow;
address L_tbl = (address)_L_tbl_pow;
address HIGHMASK_Y = (address)_HIGHMASK_Y;
address T_exp = (address)_T_exp;
address e_coeff = (address)_e_coeff;
address coeff_h = (address)_coeff_h;
address HIGHMASK_LOG_X = (address)_HIGHMASK_LOG_X;
address HALFMASK = (address)_HALFMASK;
address log2 = (address)_log2_pow;
address DOUBLE2 = (address)_DOUBLE2;
address DOUBLE0 = (address)_DOUBLE0;
address DOUBLE0DOT5 = (address)_DOUBLE0DOT5;
__ enter(); // required for proper stackwalking of RuntimeStub frame
__ subq(rsp, 40 );
__ movsd(Address(rsp, 8 ), xmm0);
__ movsd(Address(rsp, 16 ), xmm1);
// Special case: pow(x, 2.0) => x * x
__ movdq(r8, xmm1);
__ cmp64(r8, ExternalAddress(DOUBLE2), r9 /*rscratch*/);
__ jccb(Assembler::notEqual, B1_2);
__ mulsd(xmm0, xmm0);
__ jmp(B1_5);
// Special case: pow(x, 0.5) => sqrt(x)
__ bind(B1_2);
__ cmp64(r8, ExternalAddress(DOUBLE0DOT5), r9 /*rscratch*/);
__ jccb(Assembler::notEqual, L_POW); // For pow(x, y), check whether y == 0.5
__ movdq(r9, xmm0);
__ cmp64(r9, ExternalAddress(DOUBLE0), r10 /*rscratch*/);
__ jccb(Assembler::less, L_POW); // pow(x, 0.5) => sqrt(x) only for x >= 0.0 or x is +inf/NaN
__ sqrtsd(xmm0, xmm0);
__ jmp(B1_5);
__ bind(L_POW);
__ pextrw(rax, xmm0, 3 );
__ xorpd(xmm2, xmm2);
__ mov64(r9, 0 x3ff0000000000000);
__ movdq(xmm2, r9);
__ movl(r8, 1069088768 );
__ movdq(xmm7, r8);
__ xorpd(xmm1, xmm1);
__ mov64(r10, 0 x77f0000000000000);
__ movdq(xmm1, r10);
__ movdqu(xmm3, xmm0);
__ movl(rdx, 32752 );
__ andl(rdx, rax);
__ subl(rdx, 16368 );
__ movl(rcx, rdx);
__ sarl(rdx, 31 );
__ addl(rcx, rdx);
__ xorl(rcx, rdx);
__ por(xmm0, xmm2);
__ movdqu(xmm6, ExternalAddress(HIGHSIGMASK), r9 /*rscratch*/); //0x00000000UL, 0xfffff800UL, 0x00000000UL, 0xfffff800UL
__ psrlq(xmm0, 27 );
__ movq(xmm2, ExternalAddress(LOG2_E), r9 /*rscratch*/); //0x00000000UL, 0x3ff72000UL, 0x161bb241UL, 0xbf5dabe1UL
__ psrld(xmm0, 2 );
__ addl(rcx, 16 );
__ bsrl(rcx, rcx);
__ rcpps(xmm0, xmm0);
__ psllq(xmm3, 12 );
__ movl(r11, 8192 );
__ movdq(xmm4, r11);
__ psrlq(xmm3, 12 );
__ subl(rax, 16 );
__ cmpl(rax, 32736 );
__ jcc(Assembler::aboveEqual, L_2TAG_PACKET_0_0_2);
__ movl(r8, 0 );
__ bind(L_2TAG_PACKET_1_0_2);
__ mulss(xmm0, xmm7);
__ movl(rdx, -1 );
__ subl(rcx, 4 );
__ shll(rdx);
__ shlq(rdx, 32 );
__ movdq(xmm5, rdx);
__ por(xmm3, xmm1);
__ subl(rax, 16351 );
__ cmpl(rax, 1 );
__ jcc(Assembler::belowEqual, L_2TAG_PACKET_2_0_2);
__ paddd(xmm0, xmm4);
__ pand(xmm5, xmm3);
__ movdl(rdx, xmm0);
__ psllq(xmm0, 29 );
__ bind(L_2TAG_PACKET_3_0_2);
__ subsd(xmm3, xmm5);
__ pand(xmm0, xmm6);
__ subl(rax, 1 );
__ sarl(rax, 4 );
__ cvtsi2sdl(xmm7, rax);
__ mulpd(xmm5, xmm0);
__ bind(L_2TAG_PACKET_4_0_2);
__ mulsd(xmm3, xmm0);
__ movdqu(xmm1, ExternalAddress(coeff), r9 /*rscratch*/); //0x6dc96112UL, 0xbf836578UL, 0xee241472UL, 0xbf9b0301UL
__ lea(r11, ExternalAddress(L_tbl));
__ subsd(xmm5, xmm2);
__ movdqu(xmm4, ExternalAddress(coeff + 16 ), r9 /*rscratch*/); //0x9f95985aUL, 0xbfb528dbUL, 0xb3841d2aUL, 0xbfd619b6UL
__ movl(rcx, rax);
__ sarl(rax, 31 );
__ addl(rcx, rax);
__ xorl(rax, rcx);
__ addl(rax, 1 );
__ bsrl(rax, rax);
__ unpcklpd(xmm5, xmm3);
__ movdqu(xmm6, ExternalAddress(coeff + 32 ), r9 /*rscratch*/); //0x518775e3UL, 0x3f9004f2UL, 0xac8349bbUL, 0x3fa76c9bUL
__ addsd(xmm3, xmm5);
__ andl(rdx, 16760832 );
__ shrl(rdx, 10 );
__ addpd(xmm5, Address(r11, rdx, Address::times_1, -3648 ));
__ movdqu(xmm0, ExternalAddress(coeff + 48 ), r9 /*rscratch*/); //0x486ececcUL, 0x3fc4635eUL, 0x161bb241UL, 0xbf5dabe1UL
__ pshufd(xmm2, xmm3, 68 );
__ mulsd(xmm3, xmm3);
__ mulpd(xmm1, xmm2);
__ mulpd(xmm4, xmm2);
__ addsd(xmm5, xmm7);
__ mulsd(xmm2, xmm3);
__ addpd(xmm6, xmm1);
__ mulsd(xmm3, xmm3);
__ addpd(xmm0, xmm4);
__ movq(xmm1, Address(rsp, 16 ));
__ movw(rcx, Address(rsp, 22 ));
__ pshufd(xmm7, xmm5, 238 );
__ movq(xmm4, ExternalAddress(HIGHMASK_Y), r9 /*rscratch*/); //0x00000000UL, 0xfffffff8UL, 0x00000000UL, 0xffffffffUL
__ mulpd(xmm6, xmm2);
__ pshufd(xmm3, xmm3, 68 );
__ mulpd(xmm0, xmm2);
__ shll(rax, 4 );
__ subl(rax, 15872 );
__ andl(rcx, 32752 );
__ addl(rax, rcx);
__ mulpd(xmm3, xmm6);
__ cmpl(rax, 624 );
__ jcc(Assembler::aboveEqual, L_2TAG_PACKET_5_0_2);
__ xorpd(xmm6, xmm6);
__ movl(rdx, 17080 );
__ pinsrw(xmm6, rdx, 3 );
__ movdqu(xmm2, xmm1);
__ pand(xmm4, xmm1);
__ subsd(xmm1, xmm4);
__ mulsd(xmm4, xmm5);
__ addsd(xmm0, xmm7);
__ mulsd(xmm1, xmm5);
__ movdqu(xmm7, xmm6);
__ addsd(xmm6, xmm4);
__ lea(r11, ExternalAddress(T_exp));
__ addpd(xmm3, xmm0);
__ movdl(rdx, xmm6);
__ subsd(xmm6, xmm7);
__ pshufd(xmm0, xmm3, 238 );
__ subsd(xmm4, xmm6);
__ addsd(xmm0, xmm3);
__ movl(rcx, rdx);
__ andl(rdx, 255 );
__ addl(rdx, rdx);
__ movdqu(xmm5, Address(r11, rdx, Address::times_8, 0 ));
__ addsd(xmm4, xmm1);
__ mulsd(xmm2, xmm0);
__ movdqu(xmm7, ExternalAddress(e_coeff), r9 /*rscratch*/); //0xe78a6731UL, 0x3f55d87fUL, 0xd704a0c0UL, 0x3fac6b08UL
__ movdqu(xmm3, ExternalAddress(e_coeff + 16 ), r9 /*rscratch*/); //0x6fba4e77UL, 0x3f83b2abUL, 0xff82c58fUL, 0x3fcebfbdUL
__ shll(rcx, 12 );
__ xorl(rcx, r8);
__ andl(rcx, -1048576 );
__ movdq(xmm6, rcx);
__ addsd(xmm2, xmm4);
__ mov64(r9, 0 x3fe62e42fefa39ef);
__ movdq(xmm1, r9);
__ pshufd(xmm0, xmm2, 68 );
__ pshufd(xmm4, xmm2, 68 );
__ mulsd(xmm1, xmm2);
__ pshufd(xmm6, xmm6, 17 );
__ mulpd(xmm0, xmm0);
__ mulpd(xmm7, xmm4);
__ paddd(xmm5, xmm6);
__ mulsd(xmm1, xmm5);
__ pshufd(xmm6, xmm5, 238 );
__ mulsd(xmm0, xmm0);
__ addpd(xmm3, xmm7);
__ addsd(xmm1, xmm6);
__ mulpd(xmm0, xmm3);
__ pshufd(xmm3, xmm0, 238 );
__ mulsd(xmm0, xmm5);
__ mulsd(xmm3, xmm5);
__ addsd(xmm0, xmm1);
__ addsd(xmm0, xmm3);
__ addsd(xmm0, xmm5);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_0_0_2);
__ addl(rax, 16 );
__ movl(rdx, 32752 );
__ andl(rdx, rax);
__ cmpl(rdx, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_6_0_2);
__ testl(rax, 32768 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_7_0_2);
__ bind(L_2TAG_PACKET_8_0_2);
__ movq(xmm0, Address(rsp, 8 ));
__ movq(xmm3, Address(rsp, 8 ));
__ movdl(rdx, xmm3);
__ psrlq(xmm3, 32 );
__ movdl(rcx, xmm3);
__ orl(rdx, rcx);
__ cmpl(rdx, 0 );
__ jcc(Assembler::equal, L_2TAG_PACKET_9_0_2);
__ xorpd(xmm3, xmm3);
__ movl(rax, 18416 );
__ pinsrw(xmm3, rax, 3 );
__ mulsd(xmm0, xmm3);
__ xorpd(xmm2, xmm2);
__ movl(rax, 16368 );
__ pinsrw(xmm2, rax, 3 );
__ movdqu(xmm3, xmm0);
__ pextrw(rax, xmm0, 3 );
__ por(xmm0, xmm2);
__ movl(rcx, 18416 );
__ psrlq(xmm0, 27 );
__ movq(xmm2, ExternalAddress(LOG2_E), r9 /*rscratch*/); //0x00000000UL, 0x3ff72000UL, 0x161bb241UL, 0xbf5dabe1UL
__ psrld(xmm0, 2 );
__ rcpps(xmm0, xmm0);
__ psllq(xmm3, 12 );
__ movdqu(xmm6, ExternalAddress(HIGHSIGMASK), r9 /*rscratch*/); //0x00000000UL, 0xfffff800UL, 0x00000000UL, 0xfffff800UL
__ psrlq(xmm3, 12 );
__ mulss(xmm0, xmm7);
__ movl(rdx, -1024 );
__ movdl(xmm5, rdx);
__ por(xmm3, xmm1);
__ paddd(xmm0, xmm4);
__ psllq(xmm5, 32 );
__ movdl(rdx, xmm0);
__ psllq(xmm0, 29 );
__ pand(xmm5, xmm3);
__ movl(r8, 0 );
__ pand(xmm0, xmm6);
__ subsd(xmm3, xmm5);
__ andl(rax, 32752 );
__ subl(rax, 18416 );
__ sarl(rax, 4 );
__ cvtsi2sdl(xmm7, rax);
__ mulpd(xmm5, xmm0);
__ jmp(L_2TAG_PACKET_4_0_2);
__ bind(L_2TAG_PACKET_10_0_2);
__ movq(xmm0, Address(rsp, 8 ));
__ movq(xmm3, Address(rsp, 8 ));
__ movdl(rdx, xmm3);
__ psrlq(xmm3, 32 );
__ movdl(rcx, xmm3);
__ orl(rdx, rcx);
__ cmpl(rdx, 0 );
__ jcc(Assembler::equal, L_2TAG_PACKET_9_0_2);
__ xorpd(xmm3, xmm3);
__ movl(rax, 18416 );
__ pinsrw(xmm3, rax, 3 );
__ mulsd(xmm0, xmm3);
__ xorpd(xmm2, xmm2);
__ movl(rax, 16368 );
__ pinsrw(xmm2, rax, 3 );
__ movdqu(xmm3, xmm0);
__ pextrw(rax, xmm0, 3 );
__ por(xmm0, xmm2);
__ movl(rcx, 18416 );
__ psrlq(xmm0, 27 );
__ movq(xmm2, ExternalAddress(LOG2_E), r9 /*rscratch*/); //0x00000000UL, 0x3ff72000UL, 0x161bb241UL, 0xbf5dabe1UL
__ psrld(xmm0, 2 );
__ rcpps(xmm0, xmm0);
__ psllq(xmm3, 12 );
__ movdqu(xmm6, ExternalAddress(HIGHSIGMASK), r9 /*rscratch*/); //0x00000000UL, 0xfffff800UL, 0x00000000UL, 0xfffff800UL
__ psrlq(xmm3, 12 );
__ mulss(xmm0, xmm7);
__ movl(rdx, -1024 );
__ movdl(xmm5, rdx);
__ por(xmm3, xmm1);
__ paddd(xmm0, xmm4);
__ psllq(xmm5, 32 );
__ movdl(rdx, xmm0);
__ psllq(xmm0, 29 );
__ pand(xmm5, xmm3);
__ movl(r8, INT_MIN);
__ pand(xmm0, xmm6);
__ subsd(xmm3, xmm5);
__ andl(rax, 32752 );
__ subl(rax, 18416 );
__ sarl(rax, 4 );
__ cvtsi2sdl(xmm7, rax);
__ mulpd(xmm5, xmm0);
__ jmp(L_2TAG_PACKET_4_0_2);
__ bind(L_2TAG_PACKET_5_0_2);
__ cmpl(rax, 0 );
__ jcc(Assembler::less, L_2TAG_PACKET_11_0_2);
__ cmpl(rax, 752 );
__ jcc(Assembler::aboveEqual, L_2TAG_PACKET_12_0_2);
__ addsd(xmm0, xmm7);
__ movq(xmm2, ExternalAddress(HALFMASK), r9 /*rscratch*/); //0xf8000000UL, 0xffffffffUL, 0xf8000000UL, 0xffffffffUL
__ addpd(xmm3, xmm0);
__ xorpd(xmm6, xmm6);
__ movl(rax, 17080 );
__ pinsrw(xmm6, rax, 3 );
__ pshufd(xmm0, xmm3, 238 );
__ addsd(xmm0, xmm3);
__ movdqu(xmm3, xmm5);
__ addsd(xmm5, xmm0);
__ movdqu(xmm4, xmm2);
__ subsd(xmm3, xmm5);
__ movdqu(xmm7, xmm5);
__ pand(xmm5, xmm2);
__ movdqu(xmm2, xmm1);
__ pand(xmm4, xmm1);
__ subsd(xmm7, xmm5);
__ addsd(xmm0, xmm3);
__ subsd(xmm1, xmm4);
__ mulsd(xmm4, xmm5);
__ addsd(xmm0, xmm7);
__ mulsd(xmm2, xmm0);
__ movdqu(xmm7, xmm6);
__ mulsd(xmm1, xmm5);
__ addsd(xmm6, xmm4);
__ movdl(rax, xmm6);
__ subsd(xmm6, xmm7);
__ lea(r11, ExternalAddress(T_exp));
__ addsd(xmm2, xmm1);
__ movdqu(xmm7, ExternalAddress(e_coeff + 0 ), r9 /*rscratch*/); //0xe78a6731UL, 0x3f55d87fUL, 0xd704a0c0UL, 0x3fac6b08UL
__ movdqu(xmm3, ExternalAddress(e_coeff + 16 ), r9 /*rscratch*/); //0x6fba4e77UL, 0x3f83b2abUL, 0xff82c58fUL, 0x3fcebfbdUL
__ subsd(xmm4, xmm6);
__ pextrw(rdx, xmm6, 3 );
__ movl(rcx, rax);
__ andl(rax, 255 );
__ addl(rax, rax);
__ movdqu(xmm5, Address(r11, rax, Address::times_8, 0 ));
__ addsd(xmm2, xmm4);
__ sarl(rcx, 8 );
__ movl(rax, rcx);
__ sarl(rcx, 1 );
__ subl(rax, rcx);
__ shll(rcx, 20 );
__ xorl(rcx, r8);
__ movdl(xmm6, rcx);
__ movq(xmm1, ExternalAddress(e_coeff + 32 ), r9 /*rscratch*/); //0xfefa39efUL, 0x3fe62e42UL, 0x00000000UL, 0x00000000UL
__ andl(rdx, 32767 );
__ cmpl(rdx, 16529 );
__ jcc(Assembler::above, L_2TAG_PACKET_12_0_2);
__ pshufd(xmm0, xmm2, 68 );
__ pshufd(xmm4, xmm2, 68 );
__ mulpd(xmm0, xmm0);
__ mulpd(xmm7, xmm4);
__ pshufd(xmm6, xmm6, 17 );
__ mulsd(xmm1, xmm2);
__ mulsd(xmm0, xmm0);
__ paddd(xmm5, xmm6);
__ addpd(xmm3, xmm7);
__ mulsd(xmm1, xmm5);
__ pshufd(xmm6, xmm5, 238 );
__ mulpd(xmm0, xmm3);
__ addsd(xmm1, xmm6);
__ pshufd(xmm3, xmm0, 238 );
__ mulsd(xmm0, xmm5);
__ mulsd(xmm3, xmm5);
__ shll(rax, 4 );
__ xorpd(xmm4, xmm4);
__ addl(rax, 16368 );
__ pinsrw(xmm4, rax, 3 );
__ addsd(xmm0, xmm1);
__ addsd(xmm0, xmm3);
__ movdqu(xmm1, xmm0);
__ addsd(xmm0, xmm5);
__ mulsd(xmm0, xmm4);
__ pextrw(rax, xmm0, 3 );
__ andl(rax, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_13_0_2);
__ cmpl(rax, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_14_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_6_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movq(xmm0, Address(rsp, 8 ));
__ movdqu(xmm2, xmm0);
__ movdl(rax, xmm2);
__ psrlq(xmm2, 20 );
__ movdl(rdx, xmm2);
__ orl(rax, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_15_0_2);
__ movdl(rax, xmm1);
__ psrlq(xmm1, 32 );
__ movdl(rdx, xmm1);
__ movl(rcx, rdx);
__ addl(rdx, rdx);
__ orl(rax, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_16_0_2);
__ addsd(xmm0, xmm0);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_16_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 16368 );
__ pinsrw(xmm0, rax, 3 );
__ movl(Address(rsp, 0 ), 29 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_18_0_2);
__ movq(xmm0, Address(rsp, 16 ));
__ addpd(xmm0, xmm0);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_15_0_2);
__ movdl(rax, xmm1);
__ movdqu(xmm2, xmm1);
__ psrlq(xmm1, 32 );
__ movdl(rdx, xmm1);
__ movl(rcx, rdx);
__ addl(rdx, rdx);
__ orl(rax, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_19_0_2);
__ pextrw(rax, xmm2, 3 );
__ andl(rax, 32752 );
__ cmpl(rax, 32752 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_20_0_2);
__ movdl(rax, xmm2);
__ psrlq(xmm2, 20 );
__ movdl(rdx, xmm2);
__ orl(rax, rdx);
__ jcc(Assembler::notEqual, L_2TAG_PACKET_18_0_2);
__ bind(L_2TAG_PACKET_20_0_2);
__ pextrw(rax, xmm0, 3 );
__ testl(rax, 32768 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_21_0_2);
__ testl(rcx, INT_MIN);
__ jcc(Assembler::notEqual, L_2TAG_PACKET_22_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_23_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movdl(rax, xmm1);
__ testl(rax, 1 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_24_0_2);
__ testl(rax, 2 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_25_0_2);
__ jmp(L_2TAG_PACKET_24_0_2);
__ bind(L_2TAG_PACKET_21_0_2);
__ shrl(rcx, 20 );
__ andl(rcx, 2047 );
__ cmpl(rcx, 1075 );
__ jcc(Assembler::above, L_2TAG_PACKET_24_0_2);
__ jcc(Assembler::equal, L_2TAG_PACKET_26_0_2);
__ cmpl(rcx, 1074 );
__ jcc(Assembler::above, L_2TAG_PACKET_23_0_2);
__ cmpl(rcx, 1023 );
__ jcc(Assembler::below, L_2TAG_PACKET_24_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movl(rax, 17208 );
__ xorpd(xmm3, xmm3);
__ pinsrw(xmm3, rax, 3 );
__ movdqu(xmm4, xmm3);
__ addsd(xmm3, xmm1);
__ subsd(xmm4, xmm3);
__ addsd(xmm1, xmm4);
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32752 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_24_0_2);
__ movdl(rax, xmm3);
__ andl(rax, 1 );
__ jcc(Assembler::equal, L_2TAG_PACKET_24_0_2);
__ bind(L_2TAG_PACKET_25_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32768 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_27_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_27_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 32768 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_24_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32768 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_22_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 32752 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_26_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movdl(rax, xmm1);
__ andl(rax, 1 );
__ jcc(Assembler::equal, L_2TAG_PACKET_24_0_2);
__ jmp(L_2TAG_PACKET_25_0_2);
__ bind(L_2TAG_PACKET_28_0_2);
__ movdl(rax, xmm1);
__ psrlq(xmm1, 20 );
__ movdl(rdx, xmm1);
__ orl(rax, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_29_0_2);
__ movq(xmm0, Address(rsp, 16 ));
__ addsd(xmm0, xmm0);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_29_0_2);
__ movq(xmm0, Address(rsp, 8 ));
__ pextrw(rax, xmm0, 3 );
__ cmpl(rax, 49136 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_30_0_2);
__ movdl(rcx, xmm0);
__ psrlq(xmm0, 20 );
__ movdl(rdx, xmm0);
__ orl(rcx, rdx);
__ jcc(Assembler::notEqual, L_2TAG_PACKET_30_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 32760 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_30_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ andl(rax, 32752 );
__ subl(rax, 16368 );
__ pextrw(rdx, xmm1, 3 );
__ xorpd(xmm0, xmm0);
__ xorl(rax, rdx);
__ andl(rax, 32768 );
__ jcc(Assembler::equal, L_2TAG_PACKET_31_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_31_0_2);
__ movl(rcx, 32752 );
__ pinsrw(xmm0, rcx, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_32_0_2);
__ movdl(rax, xmm1);
__ cmpl(rdx, 17184 );
__ jcc(Assembler::above, L_2TAG_PACKET_33_0_2);
__ testl(rax, 1 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_34_0_2);
__ testl(rax, 2 );
__ jcc(Assembler::equal, L_2TAG_PACKET_35_0_2);
__ jmp(L_2TAG_PACKET_36_0_2);
__ bind(L_2TAG_PACKET_33_0_2);
__ testl(rax, 1 );
__ jcc(Assembler::equal, L_2TAG_PACKET_35_0_2);
__ jmp(L_2TAG_PACKET_36_0_2);
__ bind(L_2TAG_PACKET_7_0_2);
__ movq(xmm2, Address(rsp, 8 ));
__ movdl(rax, xmm2);
__ psrlq(xmm2, 31 );
__ movdl(rcx, xmm2);
__ orl(rax, rcx);
__ jcc(Assembler::equal, L_2TAG_PACKET_9_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ pextrw(rdx, xmm1, 3 );
__ movdl(rax, xmm1);
__ movdqu(xmm2, xmm1);
__ psrlq(xmm2, 32 );
__ movdl(rcx, xmm2);
__ addl(rcx, rcx);
__ orl(rcx, rax);
__ jcc(Assembler::equal, L_2TAG_PACKET_37_0_2);
__ andl(rdx, 32752 );
__ cmpl(rdx, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_28_0_2);
__ cmpl(rdx, 17200 );
__ jcc(Assembler::above, L_2TAG_PACKET_35_0_2);
__ cmpl(rdx, 17184 );
__ jcc(Assembler::aboveEqual, L_2TAG_PACKET_32_0_2);
__ cmpl(rdx, 16368 );
__ jcc(Assembler::below, L_2TAG_PACKET_34_0_2);
__ movl(rax, 17208 );
__ xorpd(xmm2, xmm2);
__ pinsrw(xmm2, rax, 3 );
__ movdqu(xmm4, xmm2);
__ addsd(xmm2, xmm1);
__ subsd(xmm4, xmm2);
__ addsd(xmm1, xmm4);
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32767 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_34_0_2);
__ movdl(rax, xmm2);
__ andl(rax, 1 );
__ jcc(Assembler::equal, L_2TAG_PACKET_35_0_2);
__ bind(L_2TAG_PACKET_36_0_2);
__ xorpd(xmm1, xmm1);
__ movl(rdx, 30704 );
__ pinsrw(xmm1, rdx, 3 );
__ movq(xmm2, ExternalAddress(LOG2_E), r9 /*rscratch*/); //0x00000000UL, 0x3ff72000UL, 0x161bb241UL, 0xbf5dabe1UL
__ movq(xmm4, Address(rsp, 8 ));
__ pextrw(rax, xmm4, 3 );
__ movl(rdx, 8192 );
__ movdl(xmm4, rdx);
__ andl(rax, 32767 );
__ subl(rax, 16 );
__ jcc(Assembler::less, L_2TAG_PACKET_10_0_2);
__ movl(rdx, rax);
__ andl(rdx, 32752 );
__ subl(rdx, 16368 );
__ movl(rcx, rdx);
__ sarl(rdx, 31 );
__ addl(rcx, rdx);
__ xorl(rcx, rdx);
__ addl(rcx, 16 );
__ bsrl(rcx, rcx);
__ movl(r8, INT_MIN);
__ jmp(L_2TAG_PACKET_1_0_2);
__ bind(L_2TAG_PACKET_34_0_2);
__ xorpd(xmm1, xmm1);
__ movl(rax, 32752 );
__ pinsrw(xmm1, rax, 3 );
__ xorpd(xmm0, xmm0);
__ mulsd(xmm0, xmm1);
__ movl(Address(rsp, 0 ), 28 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_35_0_2);
__ xorpd(xmm1, xmm1);
__ movl(rdx, 30704 );
__ pinsrw(xmm1, rdx, 3 );
__ movq(xmm2, ExternalAddress(LOG2_E), r9 /*rscratch*/); //0x00000000UL, 0x3ff72000UL, 0x161bb241UL, 0xbf5dabe1UL
__ movq(xmm4, Address(rsp, 8 ));
__ pextrw(rax, xmm4, 3 );
__ movl(rdx, 8192 );
__ movdl(xmm4, rdx);
__ andl(rax, 32767 );
__ subl(rax, 16 );
__ jcc(Assembler::less, L_2TAG_PACKET_8_0_2);
__ movl(rdx, rax);
__ andl(rdx, 32752 );
__ subl(rdx, 16368 );
__ movl(rcx, rdx);
__ sarl(rdx, 31 );
__ addl(rcx, rdx);
__ xorl(rcx, rdx);
__ addl(rcx, 16 );
__ bsrl(rcx, rcx);
__ movl(r8, 0 );
__ jmp(L_2TAG_PACKET_1_0_2);
__ bind(L_2TAG_PACKET_19_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 16368 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_22_0_2);
__ xorpd(xmm0, xmm0);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_11_0_2);
__ addl(rax, 384 );
__ cmpl(rax, 0 );
__ jcc(Assembler::less, L_2TAG_PACKET_38_0_2);
__ mulsd(xmm5, xmm1);
__ addsd(xmm0, xmm7);
__ shrl(r8, 31 );
__ addpd(xmm3, xmm0);
__ pshufd(xmm0, xmm3, 238 );
__ addsd(xmm3, xmm0);
__ lea(r11, ExternalAddress(log2)); //0xfefa39efUL, 0x3fe62e42UL, 0xfefa39efUL, 0xbfe62e42UL
__ movq(xmm4, Address(r11, r8, Address::times_8, 0 ));
__ mulsd(xmm1, xmm3);
__ xorpd(xmm0, xmm0);
__ movl(rax, 16368 );
__ shll(r8, 15 );
__ orl(rax, r8);
__ pinsrw(xmm0, rax, 3 );
__ addsd(xmm5, xmm1);
__ mulsd(xmm5, xmm4);
__ addsd(xmm0, xmm5);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_38_0_2);
__ bind(L_2TAG_PACKET_37_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 16368 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_39_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 16368 );
__ pinsrw(xmm0, rax, 3 );
__ movl(Address(rsp, 0 ), 26 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_9_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movdqu(xmm2, xmm1);
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32752 );
__ cmpl(rax, 32752 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_40_0_2);
__ movdl(rax, xmm2);
__ psrlq(xmm2, 20 );
__ movdl(rdx, xmm2);
__ orl(rax, rdx);
__ jcc(Assembler::notEqual, L_2TAG_PACKET_18_0_2);
__ bind(L_2TAG_PACKET_40_0_2);
__ movdl(rax, xmm1);
__ psrlq(xmm1, 32 );
__ movdl(rdx, xmm1);
__ movl(rcx, rdx);
__ addl(rdx, rdx);
__ orl(rax, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_39_0_2);
__ shrl(rdx, 21 );
__ cmpl(rdx, 1075 );
__ jcc(Assembler::above, L_2TAG_PACKET_41_0_2);
__ jcc(Assembler::equal, L_2TAG_PACKET_42_0_2);
__ cmpl(rdx, 1023 );
__ jcc(Assembler::below, L_2TAG_PACKET_41_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movl(rax, 17208 );
__ xorpd(xmm3, xmm3);
__ pinsrw(xmm3, rax, 3 );
__ movdqu(xmm4, xmm3);
__ addsd(xmm3, xmm1);
__ subsd(xmm4, xmm3);
__ addsd(xmm1, xmm4);
__ pextrw(rax, xmm1, 3 );
__ andl(rax, 32752 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_41_0_2);
__ movdl(rax, xmm3);
__ andl(rax, 1 );
__ jcc(Assembler::equal, L_2TAG_PACKET_41_0_2);
__ bind(L_2TAG_PACKET_43_0_2);
__ movq(xmm0, Address(rsp, 8 ));
__ testl(rcx, INT_MIN);
__ jcc(Assembler::notEqual, L_2TAG_PACKET_44_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_42_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movdl(rax, xmm1);
__ testl(rax, 1 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_43_0_2);
__ bind(L_2TAG_PACKET_41_0_2);
__ testl(rcx, INT_MIN);
__ jcc(Assembler::equal, L_2TAG_PACKET_22_0_2);
__ xorpd(xmm0, xmm0);
__ bind(L_2TAG_PACKET_44_0_2);
__ movl(rax, 16368 );
__ xorpd(xmm1, xmm1);
__ pinsrw(xmm1, rax, 3 );
__ divsd(xmm1, xmm0);
__ movdqu(xmm0, xmm1);
__ movl(Address(rsp, 0 ), 27 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_12_0_2);
__ movq(xmm2, Address(rsp, 8 ));
__ movq(xmm6, Address(rsp, 16 ));
__ pextrw(rax, xmm2, 3 );
__ pextrw(rdx, xmm6, 3 );
__ movl(rcx, 32752 );
__ andl(rcx, rdx);
__ cmpl(rcx, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_45_0_2);
__ andl(rax, 32752 );
__ subl(rax, 16368 );
__ xorl(rdx, rax);
__ testl(rdx, 32768 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_46_0_2);
__ bind(L_2TAG_PACKET_47_0_2);
__ movl(rax, 32736 );
__ pinsrw(xmm0, rax, 3 );
__ shrl(r8, 16 );
__ orl(rax, r8);
__ pinsrw(xmm1, rax, 3 );
__ mulsd(xmm0, xmm1);
__ bind(L_2TAG_PACKET_14_0_2);
__ movl(Address(rsp, 0 ), 24 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_46_0_2);
__ movl(rax, 16 );
__ pinsrw(xmm0, rax, 3 );
__ mulsd(xmm0, xmm0);
__ testl(r8, INT_MIN);
__ jcc(Assembler::equal, L_2TAG_PACKET_48_0_2);
__ mov64(r9, 0 x8000000000000000);
__ movdq(xmm2, r9);
__ xorpd(xmm0, xmm2);
__ bind(L_2TAG_PACKET_48_0_2);
__ movl(Address(rsp, 0 ), 25 );
__ jmp(L_2TAG_PACKET_17_0_2);
__ bind(L_2TAG_PACKET_13_0_2);
__ pextrw(rcx, xmm5, 3 );
__ pextrw(rdx, xmm4, 3 );
__ movl(rax, -1 );
__ andl(rcx, 32752 );
__ subl(rcx, 16368 );
__ andl(rdx, 32752 );
__ addl(rdx, rcx);
__ movl(rcx, -31 );
__ sarl(rdx, 4 );
__ subl(rcx, rdx);
__ jcc(Assembler::lessEqual, L_2TAG_PACKET_49_0_2);
__ cmpl(rcx, 20 );
__ jcc(Assembler::above, L_2TAG_PACKET_50_0_2);
__ shll(rax);
__ bind(L_2TAG_PACKET_49_0_2);
__ movdl(xmm0, rax);
__ psllq(xmm0, 32 );
__ pand(xmm0, xmm5);
__ subsd(xmm5, xmm0);
__ addsd(xmm5, xmm1);
__ mulsd(xmm0, xmm4);
__ mulsd(xmm5, xmm4);
__ addsd(xmm0, xmm5);
__ bind(L_2TAG_PACKET_50_0_2);
__ jmp(L_2TAG_PACKET_48_0_2);
__ bind(L_2TAG_PACKET_2_0_2);
__ movw(rcx, Address(rsp, 22 ));
__ movl(rdx, INT_MIN);
__ movdl(xmm1, rdx);
__ xorpd(xmm7, xmm7);
__ paddd(xmm0, xmm4);
__ movdl(rdx, xmm0);
__ psllq(xmm0, 29 );
__ paddq(xmm1, xmm3);
__ pand(xmm5, xmm1);
__ andl(rcx, 32752 );
__ cmpl(rcx, 16560 );
__ jcc(Assembler::less, L_2TAG_PACKET_3_0_2);
__ pand(xmm0, xmm6);
__ subsd(xmm3, xmm5);
__ addl(rax, 16351 );
__ shrl(rax, 4 );
__ subl(rax, 1022 );
__ cvtsi2sdl(xmm7, rax);
__ mulpd(xmm5, xmm0);
__ lea(r11, ExternalAddress(L_tbl));
__ movq(xmm4, ExternalAddress(coeff_h), r9 /*rscratch*/); //0x00000000UL, 0xbfd61a00UL, 0x00000000UL, 0xbf5dabe1UL
__ mulsd(xmm3, xmm0);
__ movq(xmm6, ExternalAddress(coeff_h), r9 /*rscratch*/); //0x00000000UL, 0xbfd61a00UL, 0x00000000UL, 0xbf5dabe1UL
__ subsd(xmm5, xmm2);
__ movq(xmm1, ExternalAddress(coeff_h + 8 ), r9 /*rscratch*/); //0x00000000UL, 0xbf5dabe1UL
__ pshufd(xmm2, xmm3, 68 );
__ unpcklpd(xmm5, xmm3);
__ addsd(xmm3, xmm5);
__ movq(xmm0, ExternalAddress(coeff_h + 8 ), r9 /*rscratch*/); //0x00000000UL, 0xbf5dabe1UL
__ andl(rdx, 16760832 );
__ shrl(rdx, 10 );
__ addpd(xmm7, Address(r11, rdx, Address::times_1, -3648 ));
__ mulsd(xmm4, xmm5);
__ mulsd(xmm0, xmm5);
__ mulsd(xmm6, xmm2);
__ mulsd(xmm1, xmm2);
__ movdqu(xmm2, xmm5);
__ mulsd(xmm4, xmm5);
__ addsd(xmm5, xmm0);
__ movdqu(xmm0, xmm7);
__ addsd(xmm2, xmm3);
__ addsd(xmm7, xmm5);
__ mulsd(xmm6, xmm2);
__ subsd(xmm0, xmm7);
__ movdqu(xmm2, xmm7);
__ addsd(xmm7, xmm4);
__ addsd(xmm0, xmm5);
__ subsd(xmm2, xmm7);
__ addsd(xmm4, xmm2);
__ pshufd(xmm2, xmm5, 238 );
__ movdqu(xmm5, xmm7);
__ addsd(xmm7, xmm2);
__ addsd(xmm4, xmm0);
__ movdqu(xmm0, ExternalAddress(coeff), r9 /*rscratch*/); //0x6dc96112UL, 0xbf836578UL, 0xee241472UL, 0xbf9b0301UL
__ subsd(xmm5, xmm7);
__ addsd(xmm6, xmm4);
__ movdqu(xmm4, xmm7);
__ addsd(xmm5, xmm2);
__ addsd(xmm7, xmm1);
__ movdqu(xmm2, ExternalAddress(coeff + 64 ), r9 /*rscratch*/); //0x486ececcUL, 0x3fc4635eUL, 0x161bb241UL, 0xbf5dabe1UL
__ subsd(xmm4, xmm7);
__ addsd(xmm6, xmm5);
__ addsd(xmm4, xmm1);
__ pshufd(xmm5, xmm7, 238 );
__ movapd(xmm1, xmm7);
__ addsd(xmm7, xmm5);
__ subsd(xmm1, xmm7);
__ addsd(xmm1, xmm5);
__ movdqu(xmm5, ExternalAddress(coeff + 80 ), r9 /*rscratch*/); //0x9f95985aUL, 0xbfb528dbUL, 0xf8b5787dUL, 0x3ef2531eUL
__ pshufd(xmm3, xmm3, 68 );
__ addsd(xmm6, xmm4);
__ addsd(xmm6, xmm1);
__ movdqu(xmm1, ExternalAddress(coeff + 32 ), r9 /*rscratch*/); //0x9f95985aUL, 0xbfb528dbUL, 0xb3841d2aUL, 0xbfd619b6UL
__ mulpd(xmm0, xmm3);
__ mulpd(xmm2, xmm3);
__ pshufd(xmm4, xmm3, 68 );
__ mulpd(xmm3, xmm3);
__ addpd(xmm0, xmm1);
__ addpd(xmm5, xmm2);
__ mulsd(xmm4, xmm3);
__ movq(xmm2, ExternalAddress(HIGHMASK_LOG_X), r9 /*rscratch*/); //0xf8000000UL, 0xffffffffUL, 0x00000000UL, 0xfffff800UL
__ mulpd(xmm3, xmm3);
__ movq(xmm1, Address(rsp, 16 ));
__ movw(rcx, Address(rsp, 22 ));
__ mulpd(xmm0, xmm4);
__ pextrw(rax, xmm7, 3 );
__ mulpd(xmm5, xmm4);
__ mulpd(xmm0, xmm3);
__ movq(xmm4, ExternalAddress(HIGHMASK_Y + 8 ), r9 /*rscratch*/); //0x00000000UL, 0xffffffffUL
__ pand(xmm2, xmm7);
__ addsd(xmm5, xmm6);
__ subsd(xmm7, xmm2);
__ addpd(xmm5, xmm0);
__ andl(rax, 32752 );
__ subl(rax, 16368 );
__ andl(rcx, 32752 );
__ cmpl(rcx, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_45_0_2);
__ addl(rcx, rax);
__ cmpl(rcx, 16576 );
__ jcc(Assembler::aboveEqual, L_2TAG_PACKET_51_0_2);
__ pshufd(xmm0, xmm5, 238 );
__ pand(xmm4, xmm1);
__ movdqu(xmm3, xmm1);
__ addsd(xmm5, xmm0);
__ subsd(xmm1, xmm4);
__ xorpd(xmm6, xmm6);
__ movl(rdx, 17080 );
__ pinsrw(xmm6, rdx, 3 );
__ addsd(xmm7, xmm5);
__ mulsd(xmm4, xmm2);
__ mulsd(xmm1, xmm2);
__ movdqu(xmm5, xmm6);
__ mulsd(xmm3, xmm7);
__ addsd(xmm6, xmm4);
__ addsd(xmm1, xmm3);
__ movdqu(xmm7, ExternalAddress(e_coeff), r9 /*rscratch*/); //0xe78a6731UL, 0x3f55d87fUL, 0xd704a0c0UL, 0x3fac6b08UL
__ movdl(rdx, xmm6);
__ subsd(xmm6, xmm5);
__ lea(r11, ExternalAddress(T_exp));
__ movdqu(xmm3, ExternalAddress(e_coeff + 16 ), r9 /*rscratch*/); //0x6fba4e77UL, 0x3f83b2abUL, 0xff82c58fUL, 0x3fcebfbdUL
__ movq(xmm2, ExternalAddress(e_coeff + 32 ), r9 /*rscratch*/); //0xfefa39efUL, 0x3fe62e42UL, 0x00000000UL, 0x00000000UL
__ subsd(xmm4, xmm6);
__ movl(rcx, rdx);
__ andl(rdx, 255 );
__ addl(rdx, rdx);
__ movdqu(xmm5, Address(r11, rdx, Address::times_8, 0 ));
__ addsd(xmm4, xmm1);
__ pextrw(rdx, xmm6, 3 );
__ shrl(rcx, 8 );
__ movl(rax, rcx);
__ shrl(rcx, 1 );
__ subl(rax, rcx);
__ shll(rcx, 20 );
__ movdl(xmm6, rcx);
__ pshufd(xmm0, xmm4, 68 );
__ pshufd(xmm1, xmm4, 68 );
__ mulpd(xmm0, xmm0);
__ mulpd(xmm7, xmm1);
__ pshufd(xmm6, xmm6, 17 );
__ mulsd(xmm2, xmm4);
__ andl(rdx, 32767 );
__ cmpl(rdx, 16529 );
__ jcc(Assembler::above, L_2TAG_PACKET_12_0_2);
__ mulsd(xmm0, xmm0);
__ paddd(xmm5, xmm6);
__ addpd(xmm3, xmm7);
__ mulsd(xmm2, xmm5);
__ pshufd(xmm6, xmm5, 238 );
__ mulpd(xmm0, xmm3);
__ addsd(xmm2, xmm6);
__ pshufd(xmm3, xmm0, 238 );
__ addl(rax, 1023 );
__ shll(rax, 20 );
__ orl(rax, r8);
__ movdl(xmm4, rax);
__ mulsd(xmm0, xmm5);
__ mulsd(xmm3, xmm5);
__ addsd(xmm0, xmm2);
__ psllq(xmm4, 32 );
__ addsd(xmm0, xmm3);
__ movdqu(xmm1, xmm0);
__ addsd(xmm0, xmm5);
__ mulsd(xmm0, xmm4);
__ pextrw(rax, xmm0, 3 );
__ andl(rax, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_13_0_2);
__ cmpl(rax, 32752 );
__ jcc(Assembler::equal, L_2TAG_PACKET_14_0_2);
__ bind(L_2TAG_PACKET_52_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_45_0_2);
__ movq(xmm0, Address(rsp, 8 ));
__ xorpd(xmm2, xmm2);
__ movl(rax, 49136 );
__ pinsrw(xmm2, rax, 3 );
__ addsd(xmm2, xmm0);
__ pextrw(rax, xmm2, 3 );
__ cmpl(rax, 0 );
__ jcc(Assembler::notEqual, L_2TAG_PACKET_53_0_2);
__ xorpd(xmm0, xmm0);
__ movl(rax, 32760 );
__ pinsrw(xmm0, rax, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_53_0_2);
__ movq(xmm1, Address(rsp, 16 ));
__ movdl(rdx, xmm1);
__ movdqu(xmm3, xmm1);
__ psrlq(xmm3, 20 );
__ movdl(rcx, xmm3);
__ orl(rcx, rdx);
__ jcc(Assembler::equal, L_2TAG_PACKET_54_0_2);
__ addsd(xmm1, xmm1);
__ movdqu(xmm0, xmm1);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_51_0_2);
__ pextrw(rax, xmm1, 3 );
__ pextrw(rcx, xmm2, 3 );
__ xorl(rax, rcx);
__ testl(rax, 32768 );
__ jcc(Assembler::equal, L_2TAG_PACKET_47_0_2);
__ jmp(L_2TAG_PACKET_46_0_2);
__ bind(L_2TAG_PACKET_54_0_2);
__ pextrw(rax, xmm0, 3 );
__ andl(rax, 32752 );
__ pextrw(rdx, xmm1, 3 );
__ xorpd(xmm0, xmm0);
__ subl(rax, 16368 );
__ xorl(rax, rdx);
__ testl(rax, 32768 );
__ jcc(Assembler::equal, L_2TAG_PACKET_55_0_2);
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_55_0_2);
__ movl(rdx, 32752 );
__ pinsrw(xmm0, rdx, 3 );
__ jmp(B1_5);
__ bind(L_2TAG_PACKET_17_0_2);
__ movq(Address(rsp, 24 ), xmm0);
__ bind(B1_3);
__ movq(xmm0, Address(rsp, 24 ));
__ bind(L_2TAG_PACKET_56_0_2);
__ bind(B1_5);
__ addq(rsp, 40 );
__ leave(); // required for proper stackwalking of RuntimeStub frame
__ ret(0 );
return start;
}
#undef __
Messung V0.5 in Prozent C=95 H=100 G=97
¤ Dauer der Verarbeitung: 0.42 Sekunden
¤
*© Formatika GbR, Deutschland