/* * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2016, Intel Corporation. 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. */ package org.graalvm.compiler.lir.amd64; import static jdk.vm.ci.amd64.AMD64.r10; import static jdk.vm.ci.amd64.AMD64.r11; import static jdk.vm.ci.amd64.AMD64.r8; import static jdk.vm.ci.amd64.AMD64.r9; import static jdk.vm.ci.amd64.AMD64.rax; import static jdk.vm.ci.amd64.AMD64.rcx; import static jdk.vm.ci.amd64.AMD64.rdx; import static jdk.vm.ci.amd64.AMD64.rsp; import static jdk.vm.ci.amd64.AMD64.xmm0; import static jdk.vm.ci.amd64.AMD64.xmm1; import static jdk.vm.ci.amd64.AMD64.xmm2; import static jdk.vm.ci.amd64.AMD64.xmm3; import static jdk.vm.ci.amd64.AMD64.xmm4; import static jdk.vm.ci.amd64.AMD64.xmm5; import static jdk.vm.ci.amd64.AMD64.xmm6; import static jdk.vm.ci.amd64.AMD64.xmm7; import static org.graalvm.compiler.lir.amd64.AMD64HotSpotHelper.pointerConstant; import static org.graalvm.compiler.lir.amd64.AMD64HotSpotHelper.recordExternalAddress; import org.graalvm.compiler.asm.Label; import org.graalvm.compiler.asm.amd64.AMD64Address; import org.graalvm.compiler.asm.amd64.AMD64Assembler; import org.graalvm.compiler.asm.amd64.AMD64MacroAssembler; import org.graalvm.compiler.lir.LIRInstructionClass; import org.graalvm.compiler.lir.asm.ArrayDataPointerConstant; import org.graalvm.compiler.lir.asm.CompilationResultBuilder; import jdk.vm.ci.code.Register; /** *
 *                     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.
 * 
*/ public final class AMD64MathPowOp extends AMD64MathIntrinsicBinaryOp { public static final LIRInstructionClass TYPE = LIRInstructionClass.create(AMD64MathPowOp.class); public AMD64MathPowOp() { super(TYPE, /* GPR */ rax, rcx, rdx, r8, r9, r10, r11, /* XMM */ xmm2, xmm3, xmm4, xmm5, xmm6, xmm7); } private ArrayDataPointerConstant highsigmask = pointerConstant(16, new int[]{ //@formatter:off 0x00000000, 0xfffff800, 0x00000000, 0xfffff800 //@formatter:on }); private ArrayDataPointerConstant log2E = pointerConstant(16, new int[]{ //@formatter:off 0x00000000, 0x3ff72000, 0x161bb241, 0xbf5dabe1 //@formatter:on }); private ArrayDataPointerConstant highmaskY = pointerConstant(8, new int[]{ //@formatter:off 0x00000000, 0xfffffff8, }); private ArrayDataPointerConstant highmaskY8 = pointerConstant(8, new int[]{ 0x00000000, 0xffffffff //@formatter:on }); private ArrayDataPointerConstant tExp = pointerConstant(16, new int[]{ //@formatter:off 0x00000000, 0x3ff00000, 0x00000000, 0x3b700000, 0xfa5abcbf, 0x3ff00b1a, 0xa7609f71, 0xbc84f6b2, 0xa9fb3335, 0x3ff0163d, 0x9ab8cdb7, 0x3c9b6129, 0x143b0281, 0x3ff02168, 0x0fc54eb6, 0xbc82bf31, 0x3e778061, 0x3ff02c9a, 0x535b085d, 0xbc719083, 0x2e11bbcc, 0x3ff037d4, 0xeeade11a, 0x3c656811, 0xe86e7f85, 0x3ff04315, 0x1977c96e, 0xbc90a31c, 0x72f654b1, 0x3ff04e5f, 0x3aa0d08c, 0x3c84c379, 0xd3158574, 0x3ff059b0, 0xa475b465, 0x3c8d73e2, 0x0e3c1f89, 0x3ff0650a, 0x5799c397, 0xbc95cb7b, 0x29ddf6de, 0x3ff0706b, 0xe2b13c27, 0xbc8c91df, 0x2b72a836, 0x3ff07bd4, 0x54458700, 0x3c832334, 0x18759bc8, 0x3ff08745, 0x4bb284ff, 0x3c6186be, 0xf66607e0, 0x3ff092bd, 0x800a3fd1, 0xbc968063, 0xcac6f383, 0x3ff09e3e, 0x18316136, 0x3c914878, 0x9b1f3919, 0x3ff0a9c7, 0x873d1d38, 0x3c85d16c, 0x6cf9890f, 0x3ff0b558, 0x4adc610b, 0x3c98a62e, 0x45e46c85, 0x3ff0c0f1, 0x06d21cef, 0x3c94f989, 0x2b7247f7, 0x3ff0cc92, 0x16e24f71, 0x3c901edc, 0x23395dec, 0x3ff0d83b, 0xe43f316a, 0xbc9bc14d, 0x32d3d1a2, 0x3ff0e3ec, 0x27c57b52, 0x3c403a17, 0x5fdfa9c5, 0x3ff0efa5, 0xbc54021b, 0xbc949db9, 0xaffed31b, 0x3ff0fb66, 0xc44ebd7b, 0xbc6b9bed, 0x28d7233e, 0x3ff10730, 0x1692fdd5, 0x3c8d46eb, 0xd0125b51, 0x3ff11301, 0x39449b3a, 0xbc96c510, 0xab5e2ab6, 0x3ff11edb, 0xf703fb72, 0xbc9ca454, 0xc06c31cc, 0x3ff12abd, 0xb36ca5c7, 0xbc51b514, 0x14f204ab, 0x3ff136a8, 0xba48dcf0, 0xbc67108f, 0xaea92de0, 0x3ff1429a, 0x9af1369e, 0xbc932fbf, 0x934f312e, 0x3ff14e95, 0x39bf44ab, 0xbc8b91e8, 0xc8a58e51, 0x3ff15a98, 0xb9eeab0a, 0x3c82406a, 0x5471c3c2, 0x3ff166a4, 0x82ea1a32, 0x3c58f23b, 0x3c7d517b, 0x3ff172b8, 0xb9d78a76, 0xbc819041, 0x8695bbc0, 0x3ff17ed4, 0xe2ac5a64, 0x3c709e3f, 0x388c8dea, 0x3ff18af9, 0xd1970f6c, 0xbc911023, 0x58375d2f, 0x3ff19726, 0x85f17e08, 0x3c94aadd, 0xeb6fcb75, 0x3ff1a35b, 0x7b4968e4, 0x3c8e5b4c, 0xf8138a1c, 0x3ff1af99, 0xa4b69280, 0x3c97bf85, 0x84045cd4, 0x3ff1bbe0, 0x352ef607, 0xbc995386, 0x95281c6b, 0x3ff1c82f, 0x8010f8c9, 0x3c900977, 0x3168b9aa, 0x3ff1d487, 0x00a2643c, 0x3c9e016e, 0x5eb44027, 0x3ff1e0e7, 0x088cb6de, 0xbc96fdd8, 0x22fcd91d, 0x3ff1ed50, 0x027bb78c, 0xbc91df98, 0x8438ce4d, 0x3ff1f9c1, 0xa097af5c, 0xbc9bf524, 0x88628cd6, 0x3ff2063b, 0x814a8495, 0x3c8dc775, 0x3578a819, 0x3ff212be, 0x2cfcaac9, 0x3c93592d, 0x917ddc96, 0x3ff21f49, 0x9494a5ee, 0x3c82a97e, 0xa27912d1, 0x3ff22bdd, 0x5577d69f, 0x3c8d34fb, 0x6e756238, 0x3ff2387a, 0xb6c70573, 0x3c99b07e, 0xfb82140a, 0x3ff2451f, 0x911ca996, 0x3c8acfcc, 0x4fb2a63f, 0x3ff251ce, 0xbef4f4a4, 0x3c8ac155, 0x711ece75, 0x3ff25e85, 0x4ac31b2c, 0x3c93e1a2, 0x65e27cdd, 0x3ff26b45, 0x9940e9d9, 0x3c82bd33, 0x341ddf29, 0x3ff2780e, 0x05f9e76c, 0x3c9e067c, 0xe1f56381, 0x3ff284df, 0x8c3f0d7e, 0xbc9a4c3a, 0x7591bb70, 0x3ff291ba, 0x28401cbd, 0xbc82cc72, 0xf51fdee1, 0x3ff29e9d, 0xafad1255, 0x3c8612e8, 0x66d10f13, 0x3ff2ab8a, 0x191690a7, 0xbc995743, 0xd0dad990, 0x3ff2b87f, 0xd6381aa4, 0xbc410adc, 0x39771b2f, 0x3ff2c57e, 0xa6eb5124, 0xbc950145, 0xa6e4030b, 0x3ff2d285, 0x54db41d5, 0x3c900247, 0x1f641589, 0x3ff2df96, 0xfbbce198, 0x3c9d16cf, 0xa93e2f56, 0x3ff2ecaf, 0x45d52383, 0x3c71ca0f, 0x4abd886b, 0x3ff2f9d2, 0x532bda93, 0xbc653c55, 0x0a31b715, 0x3ff306fe, 0xd23182e4, 0x3c86f46a, 0xedeeb2fd, 0x3ff31432, 0xf3f3fcd1, 0x3c8959a3, 0xfc4cd831, 0x3ff32170, 0x8e18047c, 0x3c8a9ce7, 0x3ba8ea32, 0x3ff32eb8, 0x3cb4f318, 0xbc9c45e8, 0xb26416ff, 0x3ff33c08, 0x843659a6, 0x3c932721, 0x66e3fa2d, 0x3ff34962, 0x930881a4, 0xbc835a75, 0x5f929ff1, 0x3ff356c5, 0x5c4e4628, 0xbc8b5cee, 0xa2de883b, 0x3ff36431, 0xa06cb85e, 0xbc8c3144, 0x373aa9cb, 0x3ff371a7, 0xbf42eae2, 0xbc963aea, 0x231e754a, 0x3ff37f26, 0x9eceb23c, 0xbc99f5ca, 0x6d05d866, 0x3ff38cae, 0x3c9904bd, 0xbc9e958d, 0x1b7140ef, 0x3ff39a40, 0xfc8e2934, 0xbc99a9a5, 0x34e59ff7, 0x3ff3a7db, 0xd661f5e3, 0xbc75e436, 0xbfec6cf4, 0x3ff3b57f, 0xe26fff18, 0x3c954c66, 0xc313a8e5, 0x3ff3c32d, 0x375d29c3, 0xbc9efff8, 0x44ede173, 0x3ff3d0e5, 0x8c284c71, 0x3c7fe8d0, 0x4c123422, 0x3ff3dea6, 0x11f09ebc, 0x3c8ada09, 0xdf1c5175, 0x3ff3ec70, 0x7b8c9bca, 0xbc8af663, 0x04ac801c, 0x3ff3fa45, 0xf956f9f3, 0xbc97d023, 0xc367a024, 0x3ff40822, 0xb6f4d048, 0x3c8bddf8, 0x21f72e2a, 0x3ff4160a, 0x1c309278, 0xbc5ef369, 0x2709468a, 0x3ff423fb, 0xc0b314dd, 0xbc98462d, 0xd950a897, 0x3ff431f5, 0xe35f7999, 0xbc81c7dd, 0x3f84b9d4, 0x3ff43ffa, 0x9704c003, 0x3c8880be, 0x6061892d, 0x3ff44e08, 0x04ef80d0, 0x3c489b7a, 0x42a7d232, 0x3ff45c20, 0x82fb1f8e, 0xbc686419, 0xed1d0057, 0x3ff46a41, 0xd1648a76, 0x3c9c944b, 0x668b3237, 0x3ff4786d, 0xed445733, 0xbc9c20f0, 0xb5c13cd0, 0x3ff486a2, 0xb69062f0, 0x3c73c1a3, 0xe192aed2, 0x3ff494e1, 0x5e499ea0, 0xbc83b289, 0xf0d7d3de, 0x3ff4a32a, 0xf3d1be56, 0x3c99cb62, 0xea6db7d7, 0x3ff4b17d, 0x7f2897f0, 0xbc8125b8, 0xd5362a27, 0x3ff4bfda, 0xafec42e2, 0x3c7d4397, 0xb817c114, 0x3ff4ce41, 0x690abd5d, 0x3c905e29, 0x99fddd0d, 0x3ff4dcb2, 0xbc6a7833, 0x3c98ecdb, 0x81d8abff, 0x3ff4eb2d, 0x2e5d7a52, 0xbc95257d, 0x769d2ca7, 0x3ff4f9b2, 0xd25957e3, 0xbc94b309, 0x7f4531ee, 0x3ff50841, 0x49b7465f, 0x3c7a249b, 0xa2cf6642, 0x3ff516da, 0x69bd93ef, 0xbc8f7685, 0xe83f4eef, 0x3ff5257d, 0x43efef71, 0xbc7c998d, 0x569d4f82, 0x3ff5342b, 0x1db13cad, 0xbc807abe, 0xf4f6ad27, 0x3ff542e2, 0x192d5f7e, 0x3c87926d, 0xca5d920f, 0x3ff551a4, 0xefede59b, 0xbc8d689c, 0xdde910d2, 0x3ff56070, 0x168eebf0, 0xbc90fb6e, 0x36b527da, 0x3ff56f47, 0x011d93ad, 0x3c99bb2c, 0xdbe2c4cf, 0x3ff57e27, 0x8a57b9c4, 0xbc90b98c, 0xd497c7fd, 0x3ff58d12, 0x5b9a1de8, 0x3c8295e1, 0x27ff07cc, 0x3ff59c08, 0xe467e60f, 0xbc97e2ce, 0xdd485429, 0x3ff5ab07, 0x054647ad, 0x3c96324c, 0xfba87a03, 0x3ff5ba11, 0x4c233e1a, 0xbc9b77a1, 0x8a5946b7, 0x3ff5c926, 0x816986a2, 0x3c3c4b1b, 0x90998b93, 0x3ff5d845, 0xa8b45643, 0xbc9cd6a7, 0x15ad2148, 0x3ff5e76f, 0x3080e65e, 0x3c9ba6f9, 0x20dceb71, 0x3ff5f6a3, 0xe3cdcf92, 0xbc89eadd, 0xb976dc09, 0x3ff605e1, 0x9b56de47, 0xbc93e242, 0xe6cdf6f4, 0x3ff6152a, 0x4ab84c27, 0x3c9e4b3e, 0xb03a5585, 0x3ff6247e, 0x7e40b497, 0xbc9383c1, 0x1d1929fd, 0x3ff633dd, 0xbeb964e5, 0x3c984710, 0x34ccc320, 0x3ff64346, 0x759d8933, 0xbc8c483c, 0xfebc8fb7, 0x3ff652b9, 0xc9a73e09, 0xbc9ae3d5, 0x82552225, 0x3ff66238, 0x87591c34, 0xbc9bb609, 0xc70833f6, 0x3ff671c1, 0x586c6134, 0xbc8e8732, 0xd44ca973, 0x3ff68155, 0x44f73e65, 0x3c6038ae, 0xb19e9538, 0x3ff690f4, 0x9aeb445d, 0x3c8804bd, 0x667f3bcd, 0x3ff6a09e, 0x13b26456, 0xbc9bdd34, 0xfa75173e, 0x3ff6b052, 0x2c9a9d0e, 0x3c7a38f5, 0x750bdabf, 0x3ff6c012, 0x67ff0b0d, 0xbc728956, 0xddd47645, 0x3ff6cfdc, 0xb6f17309, 0x3c9c7aa9, 0x3c651a2f, 0x3ff6dfb2, 0x683c88ab, 0xbc6bbe3a, 0x98593ae5, 0x3ff6ef92, 0x9e1ac8b2, 0xbc90b974, 0xf9519484, 0x3ff6ff7d, 0x25860ef6, 0xbc883c0f, 0x66f42e87, 0x3ff70f74, 0xd45aa65f, 0x3c59d644, 0xe8ec5f74, 0x3ff71f75, 0x86887a99, 0xbc816e47, 0x86ead08a, 0x3ff72f82, 0x2cd62c72, 0xbc920aa0, 0x48a58174, 0x3ff73f9a, 0x6c65d53c, 0xbc90a8d9, 0x35d7cbfd, 0x3ff74fbd, 0x618a6e1c, 0x3c9047fd, 0x564267c9, 0x3ff75feb, 0x57316dd3, 0xbc902459, 0xb1ab6e09, 0x3ff77024, 0x169147f8, 0x3c9b7877, 0x4fde5d3f, 0x3ff78069, 0x0a02162d, 0x3c9866b8, 0x38ac1cf6, 0x3ff790b9, 0x62aadd3e, 0x3c9349a8, 0x73eb0187, 0x3ff7a114, 0xee04992f, 0xbc841577, 0x0976cfdb, 0x3ff7b17b, 0x8468dc88, 0xbc9bebb5, 0x0130c132, 0x3ff7c1ed, 0xd1164dd6, 0x3c9f124c, 0x62ff86f0, 0x3ff7d26a, 0xfb72b8b4, 0x3c91bddb, 0x36cf4e62, 0x3ff7e2f3, 0xba15797e, 0x3c705d02, 0x8491c491, 0x3ff7f387, 0xcf9311ae, 0xbc807f11, 0x543e1a12, 0x3ff80427, 0x626d972b, 0xbc927c86, 0xadd106d9, 0x3ff814d2, 0x0d151d4d, 0x3c946437, 0x994cce13, 0x3ff82589, 0xd41532d8, 0xbc9d4c1d, 0x1eb941f7, 0x3ff8364c, 0x31df2bd5, 0x3c999b9a, 0x4623c7ad, 0x3ff8471a, 0xa341cdfb, 0xbc88d684, 0x179f5b21, 0x3ff857f4, 0xf8b216d0, 0xbc5ba748, 0x9b4492ed, 0x3ff868d9, 0x9bd4f6ba, 0xbc9fc6f8, 0xd931a436, 0x3ff879ca, 0xd2db47bd, 0x3c85d2d7, 0xd98a6699, 0x3ff88ac7, 0xf37cb53a, 0x3c9994c2, 0xa478580f, 0x3ff89bd0, 0x4475202a, 0x3c9d5395, 0x422aa0db, 0x3ff8ace5, 0x56864b27, 0x3c96e9f1, 0xbad61778, 0x3ff8be05, 0xfc43446e, 0x3c9ecb5e, 0x16b5448c, 0x3ff8cf32, 0x32e9e3aa, 0xbc70d55e, 0x5e0866d9, 0x3ff8e06a, 0x6fc9b2e6, 0xbc97114a, 0x99157736, 0x3ff8f1ae, 0xa2e3976c, 0x3c85cc13, 0xd0282c8a, 0x3ff902fe, 0x85fe3fd2, 0x3c9592ca, 0x0b91ffc6, 0x3ff9145b, 0x2e582524, 0xbc9dd679, 0x53aa2fe2, 0x3ff925c3, 0xa639db7f, 0xbc83455f, 0xb0cdc5e5, 0x3ff93737, 0x81b57ebc, 0xbc675fc7, 0x2b5f98e5, 0x3ff948b8, 0x797d2d99, 0xbc8dc3d6, 0xcbc8520f, 0x3ff95a44, 0x96a5f039, 0xbc764b7c, 0x9a7670b3, 0x3ff96bdd, 0x7f19c896, 0xbc5ba596, 0x9fde4e50, 0x3ff97d82, 0x7c1b85d1, 0xbc9d185b, 0xe47a22a2, 0x3ff98f33, 0xa24c78ec, 0x3c7cabda, 0x70ca07ba, 0x3ff9a0f1, 0x91cee632, 0xbc9173bd, 0x4d53fe0d, 0x3ff9b2bb, 0x4df6d518, 0xbc9dd84e, 0x82a3f090, 0x3ff9c491, 0xb071f2be, 0x3c7c7c46, 0x194bb8d5, 0x3ff9d674, 0xa3dd8233, 0xbc9516be, 0x19e32323, 0x3ff9e863, 0x78e64c6e, 0x3c7824ca, 0x8d07f29e, 0x3ff9fa5e, 0xaaf1face, 0xbc84a9ce, 0x7b5de565, 0x3ffa0c66, 0x5d1cd533, 0xbc935949, 0xed8eb8bb, 0x3ffa1e7a, 0xee8be70e, 0x3c9c6618, 0xec4a2d33, 0x3ffa309b, 0x7ddc36ab, 0x3c96305c, 0x80460ad8, 0x3ffa42c9, 0x589fb120, 0xbc9aa780, 0xb23e255d, 0x3ffa5503, 0xdb8d41e1, 0xbc9d2f6e, 0x8af46052, 0x3ffa674a, 0x30670366, 0x3c650f56, 0x1330b358, 0x3ffa799e, 0xcac563c7, 0x3c9bcb7e, 0x53c12e59, 0x3ffa8bfe, 0xb2ba15a9, 0xbc94f867, 0x5579fdbf, 0x3ffa9e6b, 0x0ef7fd31, 0x3c90fac9, 0x21356eba, 0x3ffab0e5, 0xdae94545, 0x3c889c31, 0xbfd3f37a, 0x3ffac36b, 0xcae76cd0, 0xbc8f9234, 0x3a3c2774, 0x3ffad5ff, 0xb6b1b8e5, 0x3c97ef3b, 0x995ad3ad, 0x3ffae89f, 0x345dcc81, 0x3c97a1cd, 0xe622f2ff, 0x3ffafb4c, 0x0f315ecd, 0xbc94b2fc, 0x298db666, 0x3ffb0e07, 0x4c80e425, 0xbc9bdef5, 0x6c9a8952, 0x3ffb20ce, 0x4a0756cc, 0x3c94dd02, 0xb84f15fb, 0x3ffb33a2, 0x3084d708, 0xbc62805e, 0x15b749b1, 0x3ffb4684, 0xe9df7c90, 0xbc7f763d, 0x8de5593a, 0x3ffb5972, 0xbbba6de3, 0xbc9c71df, 0x29f1c52a, 0x3ffb6c6e, 0x52883f6e, 0x3c92a8f3, 0xf2fb5e47, 0x3ffb7f76, 0x7e54ac3b, 0xbc75584f, 0xf22749e4, 0x3ffb928c, 0x54cb65c6, 0xbc9b7216, 0x30a1064a, 0x3ffba5b0, 0x0e54292e, 0xbc9efcd3, 0xb79a6f1f, 0x3ffbb8e0, 0xc9696205, 0xbc3f52d1, 0x904bc1d2, 0x3ffbcc1e, 0x7a2d9e84, 0x3c823dd0, 0xc3f3a207, 0x3ffbdf69, 0x60ea5b53, 0xbc3c2623, 0x5bd71e09, 0x3ffbf2c2, 0x3f6b9c73, 0xbc9efdca, 0x6141b33d, 0x3ffc0628, 0xa1fbca34, 0xbc8d8a5a, 0xdd85529c, 0x3ffc199b, 0x895048dd, 0x3c811065, 0xd9fa652c, 0x3ffc2d1c, 0x17c8a5d7, 0xbc96e516, 0x5fffd07a, 0x3ffc40ab, 0xe083c60a, 0x3c9b4537, 0x78fafb22, 0x3ffc5447, 0x2493b5af, 0x3c912f07, 0x2e57d14b, 0x3ffc67f1, 0xff483cad, 0x3c92884d, 0x8988c933, 0x3ffc7ba8, 0xbe255559, 0xbc8e76bb, 0x9406e7b5, 0x3ffc8f6d, 0x48805c44, 0x3c71acbc, 0x5751c4db, 0x3ffca340, 0xd10d08f5, 0xbc87f2be, 0xdcef9069, 0x3ffcb720, 0xd1e949db, 0x3c7503cb, 0x2e6d1675, 0x3ffccb0f, 0x86009092, 0xbc7d220f, 0x555dc3fa, 0x3ffcdf0b, 0x53829d72, 0xbc8dd83b, 0x5b5bab74, 0x3ffcf315, 0xb86dff57, 0xbc9a08e9, 0x4a07897c, 0x3ffd072d, 0x43797a9c, 0xbc9cbc37, 0x2b08c968, 0x3ffd1b53, 0x219a36ee, 0x3c955636, 0x080d89f2, 0x3ffd2f87, 0x719d8578, 0xbc9d487b, 0xeacaa1d6, 0x3ffd43c8, 0xbf5a1614, 0x3c93db53, 0xdcfba487, 0x3ffd5818, 0xd75b3707, 0x3c82ed02, 0xe862e6d3, 0x3ffd6c76, 0x4a8165a0, 0x3c5fe87a, 0x16c98398, 0x3ffd80e3, 0x8beddfe8, 0xbc911ec1, 0x71ff6075, 0x3ffd955d, 0xbb9af6be, 0x3c9a052d, 0x03db3285, 0x3ffda9e6, 0x696db532, 0x3c9c2300, 0xd63a8315, 0x3ffdbe7c, 0x926b8be4, 0xbc9b76f1, 0xf301b460, 0x3ffdd321, 0x78f018c3, 0x3c92da57, 0x641c0658, 0x3ffde7d5, 0x8e79ba8f, 0xbc9ca552, 0x337b9b5f, 0x3ffdfc97, 0x4f184b5c, 0xbc91a5cd, 0x6b197d17, 0x3ffe1167, 0xbd5c7f44, 0xbc72b529, 0x14f5a129, 0x3ffe2646, 0x817a1496, 0xbc97b627, 0x3b16ee12, 0x3ffe3b33, 0x31fdc68b, 0xbc99f4a4, 0xe78b3ff6, 0x3ffe502e, 0x80a9cc8f, 0x3c839e89, 0x24676d76, 0x3ffe6539, 0x7522b735, 0xbc863ff8, 0xfbc74c83, 0x3ffe7a51, 0xca0c8de2, 0x3c92d522, 0x77cdb740, 0x3ffe8f79, 0x80b054b1, 0xbc910894, 0xa2a490da, 0x3ffea4af, 0x179c2893, 0xbc9e9c23, 0x867cca6e, 0x3ffeb9f4, 0x2293e4f2, 0x3c94832f, 0x2d8e67f1, 0x3ffecf48, 0xb411ad8c, 0xbc9c93f3, 0xa2188510, 0x3ffee4aa, 0xa487568d, 0x3c91c68d, 0xee615a27, 0x3ffefa1b, 0x86a4b6b0, 0x3c9dc7f4, 0x1cb6412a, 0x3fff0f9c, 0x65181d45, 0xbc932200, 0x376bba97, 0x3fff252b, 0xbf0d8e43, 0x3c93a1a5, 0x48dd7274, 0x3fff3ac9, 0x3ed837de, 0xbc795a5a, 0x5b6e4540, 0x3fff5076, 0x2dd8a18b, 0x3c99d3e1, 0x798844f8, 0x3fff6632, 0x3539343e, 0x3c9fa37b, 0xad9cbe14, 0x3fff7bfd, 0xd006350a, 0xbc9dbb12, 0x02243c89, 0x3fff91d8, 0xa779f689, 0xbc612ea8, 0x819e90d8, 0x3fffa7c1, 0xf3a5931e, 0x3c874853, 0x3692d514, 0x3fffbdba, 0x15098eb6, 0xbc796773, 0x2b8f71f1, 0x3fffd3c2, 0x966579e7, 0x3c62eb74, 0x6b2a23d9, 0x3fffe9d9, 0x7442fde3, 0x3c74a603 //@formatter:on }); private ArrayDataPointerConstant eCoeff = pointerConstant(16, new int[]{ //@formatter:off 0xe78a6731, 0x3f55d87f, 0xd704a0c0, 0x3fac6b08, }); private ArrayDataPointerConstant eCoeff16 = pointerConstant(16, new int[]{ 0x6fba4e77, 0x3f83b2ab, 0xff82c58f, 0x3fcebfbd, }); private ArrayDataPointerConstant eCoeff32 = pointerConstant(16, new int[]{ 0xfefa39ef, 0x3fe62e42, 0x00000000, 0x00000000 //@formatter:on }); private ArrayDataPointerConstant coeffH = pointerConstant(8, new int[]{ //@formatter:off 0x00000000, 0xbfd61a00, }); private ArrayDataPointerConstant coeffH8 = pointerConstant(8, new int[]{ 0x00000000, 0xbf5dabe1 //@formatter:on }); private ArrayDataPointerConstant highmaskLogX = pointerConstant(16, new int[]{ //@formatter:off 0xf8000000, 0xffffffff, 0x00000000, 0xfffff800 //@formatter:on }); private ArrayDataPointerConstant halfmask = pointerConstant(8, new int[]{ //@formatter:off 0xf8000000, 0xffffffff, 0xf8000000, 0xffffffff //@formatter:on }); private ArrayDataPointerConstant coeff = pointerConstant(16, new int[]{ //@formatter:off 0x6dc96112, 0xbf836578, 0xee241472, 0xbf9b0301, }); private ArrayDataPointerConstant coeff16 = pointerConstant(16, new int[]{ 0x9f95985a, 0xbfb528db, 0xb3841d2a, 0xbfd619b6, }); private ArrayDataPointerConstant coeff32 = pointerConstant(16, new int[]{ 0x518775e3, 0x3f9004f2, 0xac8349bb, 0x3fa76c9b, }); private ArrayDataPointerConstant coeff48 = pointerConstant(16, new int[]{ 0x486ececc, 0x3fc4635e, 0x161bb241, 0xbf5dabe1, }); private ArrayDataPointerConstant coeff64 = pointerConstant(16, new int[]{ 0x9f95985a, 0xbfb528db, 0xf8b5787d, 0x3ef2531e, }); private ArrayDataPointerConstant coeff80 = pointerConstant(16, new int[]{ 0x486ececb, 0x3fc4635e, 0x412055cc, 0xbdd61bb2 //@formatter:on }); private ArrayDataPointerConstant lTbl = pointerConstant(16, new int[]{ //@formatter:off 0x00000000, 0x3ff00000, 0x00000000, 0x00000000, 0x20000000, 0x3feff00a, 0x96621f95, 0x3e5b1856, 0xe0000000, 0x3fefe019, 0xe5916f9e, 0xbe325278, 0x00000000, 0x3fefd02f, 0x859a1062, 0x3e595fb7, 0xc0000000, 0x3fefc049, 0xb245f18f, 0xbe529c38, 0xe0000000, 0x3fefb069, 0xad2880a7, 0xbe501230, 0x60000000, 0x3fefa08f, 0xc8e72420, 0x3e597bd1, 0x80000000, 0x3fef90ba, 0xc30c4500, 0xbe5d6c75, 0xe0000000, 0x3fef80ea, 0x02c63f43, 0x3e2e1318, 0xc0000000, 0x3fef7120, 0xb3d4cccc, 0xbe44c52a, 0x00000000, 0x3fef615c, 0xdbd91397, 0xbe4e7d6c, 0xa0000000, 0x3fef519c, 0x65c5cd68, 0xbe522dc8, 0xa0000000, 0x3fef41e2, 0x46d1306c, 0xbe5a840e, 0xe0000000, 0x3fef322d, 0xd2980e94, 0x3e5071af, 0xa0000000, 0x3fef227e, 0x773abade, 0xbe5891e5, 0xa0000000, 0x3fef12d4, 0xdc6bf46b, 0xbe5cccbe, 0xe0000000, 0x3fef032f, 0xbc7247fa, 0xbe2bab83, 0x80000000, 0x3feef390, 0xbcaa1e46, 0xbe53bb3b, 0x60000000, 0x3feee3f6, 0x5f6c682d, 0xbe54c619, 0x80000000, 0x3feed461, 0x5141e368, 0xbe4b6d86, 0xe0000000, 0x3feec4d1, 0xec678f76, 0xbe369af6, 0x80000000, 0x3feeb547, 0x41301f55, 0xbe2d4312, 0x60000000, 0x3feea5c2, 0x676da6bd, 0xbe4d8dd0, 0x60000000, 0x3fee9642, 0x57a891c4, 0x3e51f991, 0xa0000000, 0x3fee86c7, 0xe4eb491e, 0x3e579bf9, 0x20000000, 0x3fee7752, 0xfddc4a2c, 0xbe3356e6, 0xc0000000, 0x3fee67e1, 0xd75b5bf1, 0xbe449531, 0x80000000, 0x3fee5876, 0xbd423b8e, 0x3df54fe4, 0x60000000, 0x3fee4910, 0x330e51b9, 0x3e54289c, 0x80000000, 0x3fee39af, 0x8651a95f, 0xbe55aad6, 0xa0000000, 0x3fee2a53, 0x5e98c708, 0xbe2fc4a9, 0xe0000000, 0x3fee1afc, 0x0989328d, 0x3e23958c, 0x40000000, 0x3fee0bab, 0xee642abd, 0xbe425dd8, 0xa0000000, 0x3fedfc5e, 0xc394d236, 0x3e526362, 0x20000000, 0x3feded17, 0xe104aa8e, 0x3e4ce247, 0xc0000000, 0x3fedddd4, 0x265a9be4, 0xbe5bb77a, 0x40000000, 0x3fedce97, 0x0ecac52f, 0x3e4a7cb1, 0xe0000000, 0x3fedbf5e, 0x124cb3b8, 0x3e257024, 0x80000000, 0x3fedb02b, 0xe6d4febe, 0xbe2033ee, 0x20000000, 0x3feda0fd, 0x39cca00e, 0xbe3ddabc, 0xc0000000, 0x3fed91d3, 0xef8a552a, 0xbe543390, 0x40000000, 0x3fed82af, 0xb8e85204, 0x3e513850, 0xe0000000, 0x3fed738f, 0x3d59fe08, 0xbe5db728, 0x40000000, 0x3fed6475, 0x3aa7ead1, 0x3e58804b, 0xc0000000, 0x3fed555f, 0xf8a35ba9, 0xbe5298b0, 0x00000000, 0x3fed464f, 0x9a88dd15, 0x3e5a8cdb, 0x40000000, 0x3fed3743, 0xb0b0a190, 0x3e598635, 0x80000000, 0x3fed283c, 0xe2113295, 0xbe5c1119, 0x80000000, 0x3fed193a, 0xafbf1728, 0xbe492e9c, 0x60000000, 0x3fed0a3d, 0xe4a4ccf3, 0x3e19b90e, 0x20000000, 0x3fecfb45, 0xba3cbeb8, 0x3e406b50, 0xc0000000, 0x3fecec51, 0x110f7ddd, 0x3e0d6806, 0x40000000, 0x3fecdd63, 0x7dd7d508, 0xbe5a8943, 0x80000000, 0x3fecce79, 0x9b60f271, 0xbe50676a, 0x80000000, 0x3fecbf94, 0x0b9ad660, 0x3e59174f, 0x60000000, 0x3fecb0b4, 0x00823d9c, 0x3e5bbf72, 0x20000000, 0x3feca1d9, 0x38a6ec89, 0xbe4d38f9, 0x80000000, 0x3fec9302, 0x3a0b7d8e, 0x3e53dbfd, 0xc0000000, 0x3fec8430, 0xc6826b34, 0xbe27c5c9, 0xc0000000, 0x3fec7563, 0x0c706381, 0xbe593653, 0x60000000, 0x3fec669b, 0x7df34ec7, 0x3e461ab5, 0xe0000000, 0x3fec57d7, 0x40e5e7e8, 0xbe5c3dae, 0x00000000, 0x3fec4919, 0x5602770f, 0xbe55219d, 0xc0000000, 0x3fec3a5e, 0xec7911eb, 0x3e5a5d25, 0x60000000, 0x3fec2ba9, 0xb39ea225, 0xbe53c00b, 0x80000000, 0x3fec1cf8, 0x967a212e, 0x3e5a8ddf, 0x60000000, 0x3fec0e4c, 0x580798bd, 0x3e5f53ab, 0x00000000, 0x3febffa5, 0xb8282df6, 0xbe46b874, 0x20000000, 0x3febf102, 0xe33a6729, 0x3e54963f, 0x00000000, 0x3febe264, 0x3b53e88a, 0xbe3adce1, 0x60000000, 0x3febd3ca, 0xc2585084, 0x3e5cde9f, 0x80000000, 0x3febc535, 0xa335c5ee, 0xbe39fd9c, 0x20000000, 0x3febb6a5, 0x7325b04d, 0x3e42ba15, 0x60000000, 0x3feba819, 0x1564540f, 0x3e3a9f35, 0x40000000, 0x3feb9992, 0x83fff592, 0xbe5465ce, 0xa0000000, 0x3feb8b0f, 0xb9da63d3, 0xbe4b1a0a, 0x80000000, 0x3feb7c91, 0x6d6f1ea4, 0x3e557657, 0x00000000, 0x3feb6e18, 0x5e80a1bf, 0x3e4ddbb6, 0x00000000, 0x3feb5fa3, 0x1c9eacb5, 0x3e592877, 0xa0000000, 0x3feb5132, 0x6d40beb3, 0xbe51858c, 0xa0000000, 0x3feb42c6, 0xd740c67b, 0x3e427ad2, 0x40000000, 0x3feb345f, 0xa3e0ccee, 0xbe5c2fc4, 0x40000000, 0x3feb25fc, 0x8e752b50, 0xbe3da3c2, 0xc0000000, 0x3feb179d, 0xa892e7de, 0x3e1fb481, 0xc0000000, 0x3feb0943, 0x21ed71e9, 0xbe365206, 0x20000000, 0x3feafaee, 0x0e1380a3, 0x3e5c5b7b, 0x20000000, 0x3feaec9d, 0x3c3d640e, 0xbe5dbbd0, 0x60000000, 0x3feade50, 0x8f97a715, 0x3e3a8ec5, 0x20000000, 0x3fead008, 0x23ab2839, 0x3e2fe98a, 0x40000000, 0x3feac1c4, 0xf4bbd50f, 0x3e54d8f6, 0xe0000000, 0x3feab384, 0x14757c4d, 0xbe48774c, 0xc0000000, 0x3feaa549, 0x7c7b0eea, 0x3e5b51bb, 0x20000000, 0x3fea9713, 0xf56f7013, 0x3e386200, 0xe0000000, 0x3fea88e0, 0xbe428ebe, 0xbe514af5, 0xe0000000, 0x3fea7ab2, 0x8d0e4496, 0x3e4f9165, 0x60000000, 0x3fea6c89, 0xdbacc5d5, 0xbe5c063b, 0x20000000, 0x3fea5e64, 0x3f19d970, 0xbe5a0c8c, 0x20000000, 0x3fea5043, 0x09ea3e6b, 0x3e5065dc, 0x80000000, 0x3fea4226, 0x78df246c, 0x3e5e05f6, 0x40000000, 0x3fea340e, 0x4057d4a0, 0x3e431b2b, 0x40000000, 0x3fea25fa, 0x82867bb5, 0x3e4b76be, 0xa0000000, 0x3fea17ea, 0x9436f40a, 0xbe5aad39, 0x20000000, 0x3fea09df, 0x4b5253b3, 0x3e46380b, 0x00000000, 0x3fe9fbd8, 0x8fc52466, 0xbe386f9b, 0x20000000, 0x3fe9edd5, 0x22d3f344, 0xbe538347, 0x60000000, 0x3fe9dfd6, 0x1ac33522, 0x3e5dbc53, 0x00000000, 0x3fe9d1dc, 0xeabdff1d, 0x3e40fc0c, 0xe0000000, 0x3fe9c3e5, 0xafd30e73, 0xbe585e63, 0xe0000000, 0x3fe9b5f3, 0xa52f226a, 0xbe43e8f9, 0x20000000, 0x3fe9a806, 0xecb8698d, 0xbe515b36, 0x80000000, 0x3fe99a1c, 0xf2b4e89d, 0x3e48b62b, 0x20000000, 0x3fe98c37, 0x7c9a88fb, 0x3e44414c, 0x00000000, 0x3fe97e56, 0xda015741, 0xbe5d13ba, 0xe0000000, 0x3fe97078, 0x5fdace06, 0x3e51b947, 0x00000000, 0x3fe962a0, 0x956ca094, 0x3e518785, 0x40000000, 0x3fe954cb, 0x01164c1d, 0x3e5d5b57, 0xc0000000, 0x3fe946fa, 0xe63b3767, 0xbe4f84e7, 0x40000000, 0x3fe9392e, 0xe57cc2a9, 0x3e34eda3, 0xe0000000, 0x3fe92b65, 0x8c75b544, 0x3e5766a0, 0xc0000000, 0x3fe91da1, 0x37d1d087, 0xbe5e2ab1, 0x80000000, 0x3fe90fe1, 0xa953dc20, 0x3e5fa1f3, 0x80000000, 0x3fe90225, 0xdbd3f369, 0x3e47d6db, 0xa0000000, 0x3fe8f46d, 0x1c9be989, 0xbe5e2b0a, 0xa0000000, 0x3fe8e6b9, 0x3c93d76a, 0x3e5c8618, 0xe0000000, 0x3fe8d909, 0x2182fc9a, 0xbe41aa9e, 0x20000000, 0x3fe8cb5e, 0xe6b3539d, 0xbe530d19, 0x60000000, 0x3fe8bdb6, 0x49e58cc3, 0xbe3bb374, 0xa0000000, 0x3fe8b012, 0xa7cfeb8f, 0x3e56c412, 0x00000000, 0x3fe8a273, 0x8d52bc19, 0x3e1429b8, 0x60000000, 0x3fe894d7, 0x4dc32c6c, 0xbe48604c, 0xc0000000, 0x3fe8873f, 0x0c868e56, 0xbe564ee5, 0x00000000, 0x3fe879ac, 0x56aee828, 0x3e5e2fd8, 0x60000000, 0x3fe86c1c, 0x7ceab8ec, 0x3e493365, 0xc0000000, 0x3fe85e90, 0x78d4dadc, 0xbe4f7f25, 0x00000000, 0x3fe85109, 0x0ccd8280, 0x3e31e7a2, 0x40000000, 0x3fe84385, 0x34ba4e15, 0x3e328077, 0x80000000, 0x3fe83605, 0xa670975a, 0xbe53eee5, 0xa0000000, 0x3fe82889, 0xf61b77b2, 0xbe43a20a, 0xa0000000, 0x3fe81b11, 0x13e6643b, 0x3e5e5fe5, 0xc0000000, 0x3fe80d9d, 0x82cc94e8, 0xbe5ff1f9, 0xa0000000, 0x3fe8002d, 0x8a0c9c5d, 0xbe42b0e7, 0x60000000, 0x3fe7f2c1, 0x22a16f01, 0x3e5d9ea0, 0x20000000, 0x3fe7e559, 0xc38cd451, 0x3e506963, 0xc0000000, 0x3fe7d7f4, 0x9902bc71, 0x3e4503d7, 0x40000000, 0x3fe7ca94, 0xdef2a3c0, 0x3e3d98ed, 0xa0000000, 0x3fe7bd37, 0xed49abb0, 0x3e24c1ff, 0xe0000000, 0x3fe7afde, 0xe3b0be70, 0xbe40c467, 0x00000000, 0x3fe7a28a, 0xaf9f193c, 0xbe5dff6c, 0xe0000000, 0x3fe79538, 0xb74cf6b6, 0xbe258ed0, 0xa0000000, 0x3fe787eb, 0x1d9127c7, 0x3e345fb0, 0x40000000, 0x3fe77aa2, 0x1028c21d, 0xbe4619bd, 0xa0000000, 0x3fe76d5c, 0x7cb0b5e4, 0x3e40f1a2, 0xe0000000, 0x3fe7601a, 0x2b1bc4ad, 0xbe32e8bb, 0xe0000000, 0x3fe752dc, 0x6839f64e, 0x3e41f57b, 0xc0000000, 0x3fe745a2, 0xc4121f7e, 0xbe52c40a, 0x60000000, 0x3fe7386c, 0xd6852d72, 0xbe5c4e6b, 0xc0000000, 0x3fe72b39, 0x91d690f7, 0xbe57f88f, 0xe0000000, 0x3fe71e0a, 0x627a2159, 0xbe4425d5, 0xc0000000, 0x3fe710df, 0x50a54033, 0x3e422b7e, 0x60000000, 0x3fe703b8, 0x3b0b5f91, 0x3e5d3857, 0xe0000000, 0x3fe6f694, 0x84d628a2, 0xbe51f090, 0x00000000, 0x3fe6e975, 0x306d8894, 0xbe414d83, 0xe0000000, 0x3fe6dc58, 0x30bf24aa, 0xbe4650ca, 0x80000000, 0x3fe6cf40, 0xd4628d69, 0xbe5db007, 0xc0000000, 0x3fe6c22b, 0xa2aae57b, 0xbe31d279, 0xc0000000, 0x3fe6b51a, 0x860edf7e, 0xbe2d4c4a, 0x80000000, 0x3fe6a80d, 0xf3559341, 0xbe5f7e98, 0xe0000000, 0x3fe69b03, 0xa885899e, 0xbe5c2011, 0xe0000000, 0x3fe68dfd, 0x2bdc6d37, 0x3e224a82, 0xa0000000, 0x3fe680fb, 0xc12ad1b9, 0xbe40cf56, 0x00000000, 0x3fe673fd, 0x1bcdf659, 0xbdf52f2d, 0x00000000, 0x3fe66702, 0x5df10408, 0x3e5663e0, 0xc0000000, 0x3fe65a0a, 0xa4070568, 0xbe40b12f, 0x00000000, 0x3fe64d17, 0x71c54c47, 0x3e5f5e8b, 0x00000000, 0x3fe64027, 0xbd4b7e83, 0x3e42ead6, 0xa0000000, 0x3fe6333a, 0x61598bd2, 0xbe4c48d4, 0xc0000000, 0x3fe62651, 0x6f538d61, 0x3e548401, 0xa0000000, 0x3fe6196c, 0x14344120, 0xbe529af6, 0x00000000, 0x3fe60c8b, 0x5982c587, 0xbe3e1e4f, 0x00000000, 0x3fe5ffad, 0xfe51d4ea, 0xbe4c897a, 0x80000000, 0x3fe5f2d2, 0xfd46ebe1, 0x3e552e00, 0xa0000000, 0x3fe5e5fb, 0xa4695699, 0x3e5ed471, 0x60000000, 0x3fe5d928, 0x80d118ae, 0x3e456b61, 0xa0000000, 0x3fe5cc58, 0x304c330b, 0x3e54dc29, 0x80000000, 0x3fe5bf8c, 0x0af2dedf, 0xbe3aa9bd, 0xe0000000, 0x3fe5b2c3, 0x15fc9258, 0xbe479a37, 0xc0000000, 0x3fe5a5fe, 0x9292c7ea, 0x3e188650, 0x20000000, 0x3fe5993d, 0x33b4d380, 0x3e5d6d93, 0x20000000, 0x3fe58c7f, 0x02fd16c7, 0x3e2fe961, 0xa0000000, 0x3fe57fc4, 0x4a05edb6, 0xbe4d55b4, 0xa0000000, 0x3fe5730d, 0x3d443abb, 0xbe5e6954, 0x00000000, 0x3fe5665a, 0x024acfea, 0x3e50e61b, 0x00000000, 0x3fe559aa, 0xcc9edd09, 0xbe325403, 0x60000000, 0x3fe54cfd, 0x1fe26950, 0x3e5d500e, 0x60000000, 0x3fe54054, 0x6c5ae164, 0xbe4a79b4, 0xc0000000, 0x3fe533ae, 0x154b0287, 0xbe401571, 0xa0000000, 0x3fe5270c, 0x0673f401, 0xbe56e56b, 0xe0000000, 0x3fe51a6d, 0x751b639c, 0x3e235269, 0xa0000000, 0x3fe50dd2, 0x7c7b2bed, 0x3ddec887, 0xc0000000, 0x3fe5013a, 0xafab4e17, 0x3e5e7575, 0x60000000, 0x3fe4f4a6, 0x2e308668, 0x3e59aed6, 0x80000000, 0x3fe4e815, 0xf33e2a76, 0xbe51f184, 0xe0000000, 0x3fe4db87, 0x839f3e3e, 0x3e57db01, 0xc0000000, 0x3fe4cefd, 0xa9eda7bb, 0x3e535e0f, 0x00000000, 0x3fe4c277, 0x2a8f66a5, 0x3e5ce451, 0xc0000000, 0x3fe4b5f3, 0x05192456, 0xbe4e8518, 0xc0000000, 0x3fe4a973, 0x4aa7cd1d, 0x3e46784a, 0x40000000, 0x3fe49cf7, 0x8e23025e, 0xbe5749f2, 0x00000000, 0x3fe4907e, 0x18d30215, 0x3e360f39, 0x20000000, 0x3fe48408, 0x63dcf2f3, 0x3e5e00fe, 0xc0000000, 0x3fe47795, 0x46182d09, 0xbe5173d9, 0xa0000000, 0x3fe46b26, 0x8f0e62aa, 0xbe48f281, 0xe0000000, 0x3fe45eba, 0x5775c40c, 0xbe56aad4, 0x60000000, 0x3fe45252, 0x0fe25f69, 0x3e48bd71, 0x40000000, 0x3fe445ed, 0xe9989ec5, 0x3e590d97, 0x80000000, 0x3fe4398b, 0xb3d9ffe3, 0x3e479dbc, 0x20000000, 0x3fe42d2d, 0x388e4d2e, 0xbe5eed80, 0xe0000000, 0x3fe420d1, 0x6f797c18, 0x3e554b4c, 0x20000000, 0x3fe4147a, 0x31048bb4, 0xbe5b1112, 0x80000000, 0x3fe40825, 0x2efba4f9, 0x3e48ebc7, 0x40000000, 0x3fe3fbd4, 0x50201119, 0x3e40b701, 0x40000000, 0x3fe3ef86, 0x0a4db32c, 0x3e551de8, 0xa0000000, 0x3fe3e33b, 0x0c9c148b, 0xbe50c1f6, 0x20000000, 0x3fe3d6f4, 0xc9129447, 0x3e533fa0, 0x00000000, 0x3fe3cab0, 0xaae5b5a0, 0xbe22b68e, 0x20000000, 0x3fe3be6f, 0x02305e8a, 0xbe54fc08, 0x60000000, 0x3fe3b231, 0x7f908258, 0x3e57dc05, 0x00000000, 0x3fe3a5f7, 0x1a09af78, 0x3e08038b, 0xe0000000, 0x3fe399bf, 0x490643c1, 0xbe5dbe42, 0xe0000000, 0x3fe38d8b, 0x5e8ad724, 0xbe3c2b72, 0x20000000, 0x3fe3815b, 0xc67196b6, 0x3e1713cf, 0xa0000000, 0x3fe3752d, 0x6182e429, 0xbe3ec14c, 0x40000000, 0x3fe36903, 0xab6eb1ae, 0x3e5a2cc5, 0x40000000, 0x3fe35cdc, 0xfe5dc064, 0xbe5c5878, 0x40000000, 0x3fe350b8, 0x0ba6b9e4, 0x3e51619b, 0x80000000, 0x3fe34497, 0x857761aa, 0x3e5fff53, 0x00000000, 0x3fe3387a, 0xf872d68c, 0x3e484f4d, 0xa0000000, 0x3fe32c5f, 0x087e97c2, 0x3e52842e, 0x80000000, 0x3fe32048, 0x73d6d0c0, 0xbe503edf, 0x80000000, 0x3fe31434, 0x0c1456a1, 0xbe5f72ad, 0xa0000000, 0x3fe30823, 0x83a1a4d5, 0xbe5e65cc, 0xe0000000, 0x3fe2fc15, 0x855a7390, 0xbe506438, 0x40000000, 0x3fe2f00b, 0xa2898287, 0x3e3d22a2, 0xe0000000, 0x3fe2e403, 0x8b56f66f, 0xbe5aa5fd, 0x80000000, 0x3fe2d7ff, 0x52db119a, 0x3e3a2e3d, 0x60000000, 0x3fe2cbfe, 0xe2ddd4c0, 0xbe586469, 0x40000000, 0x3fe2c000, 0x6b01bf10, 0x3e352b9d, 0x40000000, 0x3fe2b405, 0xb07a1cdf, 0x3e5c5cda, 0x80000000, 0x3fe2a80d, 0xc7b5f868, 0xbe5668b3, 0xc0000000, 0x3fe29c18, 0x185edf62, 0xbe563d66, 0x00000000, 0x3fe29027, 0xf729e1cc, 0x3e59a9a0, 0x80000000, 0x3fe28438, 0x6433c727, 0xbe43cc89, 0x00000000, 0x3fe2784d, 0x41782631, 0xbe30750c, 0xa0000000, 0x3fe26c64, 0x914911b7, 0xbe58290e, 0x40000000, 0x3fe2607f, 0x3dcc73e1, 0xbe4269cd, 0x00000000, 0x3fe2549d, 0x2751bf70, 0xbe5a6998, 0xc0000000, 0x3fe248bd, 0x4248b9fb, 0xbe4ddb00, 0x80000000, 0x3fe23ce1, 0xf35cf82f, 0x3e561b71, 0x60000000, 0x3fe23108, 0x8e481a2d, 0x3e518fb9, 0x60000000, 0x3fe22532, 0x5ab96edc, 0xbe5fafc5, 0x40000000, 0x3fe2195f, 0x80943911, 0xbe07f819, 0x40000000, 0x3fe20d8f, 0x386f2d6c, 0xbe54ba8b, 0x40000000, 0x3fe201c2, 0xf29664ac, 0xbe5eb815, 0x20000000, 0x3fe1f5f8, 0x64f03390, 0x3e5e320c, 0x20000000, 0x3fe1ea31, 0x747ff696, 0x3e5ef0a5, 0x40000000, 0x3fe1de6d, 0x3e9ceb51, 0xbe5f8d27, 0x20000000, 0x3fe1d2ac, 0x4ae0b55e, 0x3e5faa21, 0x20000000, 0x3fe1c6ee, 0x28569a5e, 0x3e598a4f, 0x20000000, 0x3fe1bb33, 0x54b33e07, 0x3e46130a, 0x20000000, 0x3fe1af7b, 0x024f1078, 0xbe4dbf93, 0x00000000, 0x3fe1a3c6, 0xb0783bfa, 0x3e419248, 0xe0000000, 0x3fe19813, 0x2f02b836, 0x3e4e02b7, 0xc0000000, 0x3fe18c64, 0x28dec9d4, 0x3e09064f, 0x80000000, 0x3fe180b8, 0x45cbf406, 0x3e5b1f46, 0x40000000, 0x3fe1750f, 0x03d9964c, 0x3e5b0a79, 0x00000000, 0x3fe16969, 0x8b5b882b, 0xbe238086, 0xa0000000, 0x3fe15dc5, 0x73bad6f8, 0xbdf1fca4, 0x20000000, 0x3fe15225, 0x5385769c, 0x3e5e8d76, 0xa0000000, 0x3fe14687, 0x1676dc6b, 0x3e571d08, 0x20000000, 0x3fe13aed, 0xa8c41c7f, 0xbe598a25, 0x60000000, 0x3fe12f55, 0xc4e1aaf0, 0x3e435277, 0xa0000000, 0x3fe123c0, 0x403638e1, 0xbe21aa7c, 0xc0000000, 0x3fe1182e, 0x557a092b, 0xbdd0116b, 0xc0000000, 0x3fe10c9f, 0x7d779f66, 0x3e4a61ba, 0xc0000000, 0x3fe10113, 0x2b09c645, 0xbe5d586e, 0x20000000, 0x3fe0ea04, 0xea2cad46, 0x3e5aa97c, 0x20000000, 0x3fe0d300, 0x23190e54, 0x3e50f1a7, 0xa0000000, 0x3fe0bc07, 0x1379a5a6, 0xbe51619d, 0x60000000, 0x3fe0a51a, 0x926a3d4a, 0x3e5cf019, 0xa0000000, 0x3fe08e38, 0xa8c24358, 0x3e35241e, 0x20000000, 0x3fe07762, 0x24317e7a, 0x3e512cfa, 0x00000000, 0x3fe06097, 0xfd9cf274, 0xbe55bef3, 0x00000000, 0x3fe049d7, 0x3689b49d, 0xbe36d26d, 0x40000000, 0x3fe03322, 0xf72ef6c4, 0xbe54cd08, 0xa0000000, 0x3fe01c78, 0x23702d2d, 0xbe5900bf, 0x00000000, 0x3fe005da, 0x3f59c14c, 0x3e57d80b, 0x40000000, 0x3fdfde8d, 0xad67766d, 0xbe57fad4, 0x40000000, 0x3fdfb17c, 0x644f4ae7, 0x3e1ee43b, 0x40000000, 0x3fdf8481, 0x903234d2, 0x3e501a86, 0x40000000, 0x3fdf579c, 0xafe9e509, 0xbe267c3e, 0x00000000, 0x3fdf2acd, 0xb7dfda0b, 0xbe48149b, 0x40000000, 0x3fdefe13, 0x3b94305e, 0x3e5f4ea7, 0x80000000, 0x3fded16f, 0x5d95da61, 0xbe55c198, 0x00000000, 0x3fdea4e1, 0x406960c9, 0xbdd99a19, 0x00000000, 0x3fde7868, 0xd22f3539, 0x3e470c78, 0x80000000, 0x3fde4c04, 0x83eec535, 0xbe3e1232, 0x40000000, 0x3fde1fb6, 0x3dfbffcb, 0xbe4b7d71, 0x40000000, 0x3fddf37d, 0x7e1be4e0, 0xbe5b8f8f, 0x40000000, 0x3fddc759, 0x46dae887, 0xbe350458, 0x80000000, 0x3fdd9b4a, 0xed6ecc49, 0xbe5f0045, 0x80000000, 0x3fdd6f50, 0x2e9e883c, 0x3e2915da, 0x80000000, 0x3fdd436b, 0xf0bccb32, 0x3e4a68c9, 0x80000000, 0x3fdd179b, 0x9bbfc779, 0xbe54a26a, 0x00000000, 0x3fdcebe0, 0x7cea33ab, 0x3e43c6b7, 0x40000000, 0x3fdcc039, 0xe740fd06, 0x3e5526c2, 0x40000000, 0x3fdc94a7, 0x9eadeb1a, 0xbe396d8d, 0xc0000000, 0x3fdc6929, 0xf0a8f95a, 0xbe5c0ab2, 0x80000000, 0x3fdc3dc0, 0x6ee2693b, 0x3e0992e6, 0xc0000000, 0x3fdc126b, 0x5ac6b581, 0xbe2834b6, 0x40000000, 0x3fdbe72b, 0x8cc226ff, 0x3e3596a6, 0x00000000, 0x3fdbbbff, 0xf92a74bb, 0x3e3c5813, 0x00000000, 0x3fdb90e7, 0x479664c0, 0xbe50d644, 0x00000000, 0x3fdb65e3, 0x5004975b, 0xbe55258f, 0x00000000, 0x3fdb3af3, 0xe4b23194, 0xbe588407, 0xc0000000, 0x3fdb1016, 0xe65d4d0a, 0x3e527c26, 0x80000000, 0x3fdae54e, 0x814fddd6, 0x3e5962a2, 0x40000000, 0x3fdaba9a, 0xe19d0913, 0xbe562f4e, 0x80000000, 0x3fda8ff9, 0x43cfd006, 0xbe4cfdeb, 0x40000000, 0x3fda656c, 0x686f0a4e, 0x3e5e47a8, 0xc0000000, 0x3fda3af2, 0x7200d410, 0x3e5e1199, 0xc0000000, 0x3fda108c, 0xabd2266e, 0x3e5ee4d1, 0x40000000, 0x3fd9e63a, 0x396f8f2c, 0x3e4dbffb, 0x00000000, 0x3fd9bbfb, 0xe32b25dd, 0x3e5c3a54, 0x40000000, 0x3fd991cf, 0x431e4035, 0xbe457925, 0x80000000, 0x3fd967b6, 0x7bed3dd3, 0x3e40c61d, 0x00000000, 0x3fd93db1, 0xd7449365, 0x3e306419, 0x80000000, 0x3fd913be, 0x1746e791, 0x3e56fcfc, 0x40000000, 0x3fd8e9df, 0xf3a9028b, 0xbe5041b9, 0xc0000000, 0x3fd8c012, 0x56840c50, 0xbe26e20a, 0x40000000, 0x3fd89659, 0x19763102, 0xbe51f466, 0x80000000, 0x3fd86cb2, 0x7032de7c, 0xbe4d298a, 0x80000000, 0x3fd8431e, 0xdeb39fab, 0xbe4361eb, 0x40000000, 0x3fd8199d, 0x5d01cbe0, 0xbe5425b3, 0x80000000, 0x3fd7f02e, 0x3ce99aa9, 0x3e146fa8, 0x80000000, 0x3fd7c6d2, 0xd1a262b9, 0xbe5a1a69, 0xc0000000, 0x3fd79d88, 0x8606c236, 0x3e423a08, 0x80000000, 0x3fd77451, 0x8fd1e1b7, 0x3e5a6a63, 0xc0000000, 0x3fd74b2c, 0xe491456a, 0x3e42c1ca, 0x40000000, 0x3fd7221a, 0x4499a6d7, 0x3e36a69a, 0x00000000, 0x3fd6f91a, 0x5237df94, 0xbe0f8f02, 0x00000000, 0x3fd6d02c, 0xb6482c6e, 0xbe5abcf7, 0x00000000, 0x3fd6a750, 0x1919fd61, 0xbe57ade2, 0x00000000, 0x3fd67e86, 0xaa7a994d, 0xbe3f3fbd, 0x00000000, 0x3fd655ce, 0x67db014c, 0x3e33c550, 0x00000000, 0x3fd62d28, 0xa82856b7, 0xbe1409d1, 0xc0000000, 0x3fd60493, 0x1e6a300d, 0x3e55d899, 0x80000000, 0x3fd5dc11, 0x1222bd5c, 0xbe35bfc0, 0xc0000000, 0x3fd5b3a0, 0x6e8dc2d3, 0x3e5d4d79, 0x00000000, 0x3fd58b42, 0xe0e4ace6, 0xbe517303, 0x80000000, 0x3fd562f4, 0xb306e0a8, 0x3e5edf0f, 0xc0000000, 0x3fd53ab8, 0x6574bc54, 0x3e5ee859, 0x80000000, 0x3fd5128e, 0xea902207, 0x3e5f6188, 0xc0000000, 0x3fd4ea75, 0x9f911d79, 0x3e511735, 0x80000000, 0x3fd4c26e, 0xf9c77397, 0xbe5b1643, 0x40000000, 0x3fd49a78, 0x15fc9258, 0x3e479a37, 0x80000000, 0x3fd47293, 0xd5a04dd9, 0xbe426e56, 0xc0000000, 0x3fd44abf, 0xe04042f5, 0x3e56f7c6, 0x40000000, 0x3fd422fd, 0x1d8bf2c8, 0x3e5d8810, 0x00000000, 0x3fd3fb4c, 0x88a8ddee, 0xbe311454, 0xc0000000, 0x3fd3d3ab, 0x3e3b5e47, 0xbe5d1b72, 0x40000000, 0x3fd3ac1c, 0xc2ab5d59, 0x3e31b02b, 0xc0000000, 0x3fd3849d, 0xd4e34b9e, 0x3e51cb2f, 0x40000000, 0x3fd35d30, 0x177204fb, 0xbe2b8cd7, 0x80000000, 0x3fd335d3, 0xfcd38c82, 0xbe4356e1, 0x80000000, 0x3fd30e87, 0x64f54acc, 0xbe4e6224, 0x00000000, 0x3fd2e74c, 0xaa7975d9, 0x3e5dc0fe, 0x80000000, 0x3fd2c021, 0x516dab3f, 0xbe50ffa3, 0x40000000, 0x3fd29907, 0x2bfb7313, 0x3e5674a2, 0xc0000000, 0x3fd271fd, 0x0549fc99, 0x3e385d29, 0xc0000000, 0x3fd24b04, 0x55b63073, 0xbe500c6d, 0x00000000, 0x3fd2241c, 0x3f91953a, 0x3e389977, 0xc0000000, 0x3fd1fd43, 0xa1543f71, 0xbe3487ab, 0xc0000000, 0x3fd1d67b, 0x4ec8867c, 0x3df6a2dc, 0x00000000, 0x3fd1afc4, 0x4328e3bb, 0x3e41d9c0, 0x80000000, 0x3fd1891c, 0x2e1cda84, 0x3e3bdd87, 0x40000000, 0x3fd16285, 0x4b5331ae, 0xbe53128e, 0x00000000, 0x3fd13bfe, 0xb9aec164, 0xbe52ac98, 0xc0000000, 0x3fd11586, 0xd91e1316, 0xbe350630, 0x80000000, 0x3fd0ef1f, 0x7cacc12c, 0x3e3f5219, 0x40000000, 0x3fd0c8c8, 0xbce277b7, 0x3e3d30c0, 0x00000000, 0x3fd0a281, 0x2a63447d, 0xbe541377, 0x80000000, 0x3fd07c49, 0xfac483b5, 0xbe5772ec, 0xc0000000, 0x3fd05621, 0x36b8a570, 0xbe4fd4bd, 0xc0000000, 0x3fd03009, 0xbae505f7, 0xbe450388, 0x80000000, 0x3fd00a01, 0x3e35aead, 0xbe5430fc, 0x80000000, 0x3fcfc811, 0x707475ac, 0x3e38806e, 0x80000000, 0x3fcf7c3f, 0xc91817fc, 0xbe40ccea, 0x80000000, 0x3fcf308c, 0xae05d5e9, 0xbe4919b8, 0x80000000, 0x3fcee4f8, 0xae6cc9e6, 0xbe530b94, 0x00000000, 0x3fce9983, 0x1efe3e8e, 0x3e57747e, 0x00000000, 0x3fce4e2d, 0xda78d9bf, 0xbe59a608, 0x00000000, 0x3fce02f5, 0x8abe2c2e, 0x3e4a35ad, 0x00000000, 0x3fcdb7dc, 0x1495450d, 0xbe0872cc, 0x80000000, 0x3fcd6ce1, 0x86ee0ba0, 0xbe4f59a0, 0x00000000, 0x3fcd2205, 0xe81ca888, 0x3e5402c3, 0x00000000, 0x3fccd747, 0x3b4424b9, 0x3e5dfdc3, 0x80000000, 0x3fcc8ca7, 0xd305b56c, 0x3e202da6, 0x00000000, 0x3fcc4226, 0x399a6910, 0xbe482a1c, 0x80000000, 0x3fcbf7c2, 0x747f7938, 0xbe587372, 0x80000000, 0x3fcbad7c, 0x6fc246a0, 0x3e50d83d, 0x00000000, 0x3fcb6355, 0xee9e9be5, 0xbe5c35bd, 0x80000000, 0x3fcb194a, 0x8416c0bc, 0x3e546d4f, 0x00000000, 0x3fcacf5e, 0x49f7f08f, 0x3e56da76, 0x00000000, 0x3fca858f, 0x5dc30de2, 0x3e5f390c, 0x00000000, 0x3fca3bde, 0x950583b6, 0xbe5e4169, 0x80000000, 0x3fc9f249, 0x33631553, 0x3e52aeb1, 0x00000000, 0x3fc9a8d3, 0xde8795a6, 0xbe59a504, 0x00000000, 0x3fc95f79, 0x076bf41e, 0x3e5122fe, 0x80000000, 0x3fc9163c, 0x2914c8e7, 0x3e3dd064, 0x00000000, 0x3fc8cd1d, 0x3a30eca3, 0xbe21b4aa, 0x80000000, 0x3fc8841a, 0xb2a96650, 0xbe575444, 0x80000000, 0x3fc83b34, 0x2376c0cb, 0xbe2a74c7, 0x80000000, 0x3fc7f26b, 0xd8a0b653, 0xbe5181b6, 0x00000000, 0x3fc7a9bf, 0x32257882, 0xbe4a78b4, 0x00000000, 0x3fc7612f, 0x1eee8bd9, 0xbe1bfe9d, 0x80000000, 0x3fc718bb, 0x0c603cc4, 0x3e36fdc9, 0x80000000, 0x3fc6d064, 0x3728b8cf, 0xbe1e542e, 0x80000000, 0x3fc68829, 0xc79a4067, 0x3e5c380f, 0x00000000, 0x3fc6400b, 0xf69eac69, 0x3e550a84, 0x80000000, 0x3fc5f808, 0xb7a780a4, 0x3e5d9224, 0x80000000, 0x3fc5b022, 0xad9dfb1e, 0xbe55242f, 0x00000000, 0x3fc56858, 0x659b18be, 0xbe4bfda3, 0x80000000, 0x3fc520a9, 0x66ee3631, 0xbe57d769, 0x80000000, 0x3fc4d916, 0x1ec62819, 0x3e2427f7, 0x80000000, 0x3fc4919f, 0xdec25369, 0xbe435431, 0x00000000, 0x3fc44a44, 0xa8acfc4b, 0xbe3c62e8, 0x00000000, 0x3fc40304, 0xcf1d3eab, 0xbdfba29f, 0x80000000, 0x3fc3bbdf, 0x79aba3ea, 0xbdf1b7c8, 0x80000000, 0x3fc374d6, 0xb8d186da, 0xbe5130cf, 0x80000000, 0x3fc32de8, 0x9d74f152, 0x3e2285b6, 0x00000000, 0x3fc2e716, 0x50ae7ca9, 0xbe503920, 0x80000000, 0x3fc2a05e, 0x6caed92e, 0xbe533924, 0x00000000, 0x3fc259c2, 0x9cb5034e, 0xbe510e31, 0x80000000, 0x3fc21340, 0x12c4d378, 0xbe540b43, 0x80000000, 0x3fc1ccd9, 0xcc418706, 0x3e59887a, 0x00000000, 0x3fc1868e, 0x921f4106, 0xbe528e67, 0x80000000, 0x3fc1405c, 0x3969441e, 0x3e5d8051, 0x00000000, 0x3fc0fa46, 0xd941ef5b, 0x3e5f9079, 0x80000000, 0x3fc0b44a, 0x5a3e81b2, 0xbe567691, 0x00000000, 0x3fc06e69, 0x9d66afe7, 0xbe4d43fb, 0x00000000, 0x3fc028a2, 0x0a92a162, 0xbe52f394, 0x00000000, 0x3fbfc5ea, 0x209897e5, 0x3e529e37, 0x00000000, 0x3fbf3ac5, 0x8458bd7b, 0x3e582831, 0x00000000, 0x3fbeafd5, 0xb8d8b4b8, 0xbe486b4a, 0x00000000, 0x3fbe2518, 0xe0a3b7b6, 0x3e5bafd2, 0x00000000, 0x3fbd9a90, 0x2bf2710e, 0x3e383b2b, 0x00000000, 0x3fbd103c, 0x73eb6ab7, 0xbe56d78d, 0x00000000, 0x3fbc861b, 0x32ceaff5, 0xbe32dc5a, 0x00000000, 0x3fbbfc2e, 0xbee04cb7, 0xbe4a71a4, 0x00000000, 0x3fbb7274, 0x35ae9577, 0x3e38142f, 0x00000000, 0x3fbae8ee, 0xcbaddab4, 0xbe5490f0, 0x00000000, 0x3fba5f9a, 0x95ce1114, 0x3e597c71, 0x00000000, 0x3fb9d67a, 0x6d7c0f78, 0x3e3abc2d, 0x00000000, 0x3fb94d8d, 0x2841a782, 0xbe566cbc, 0x00000000, 0x3fb8c4d2, 0x6ed429c6, 0xbe3cfff9, 0x00000000, 0x3fb83c4a, 0xe4a49fbb, 0xbe552964, 0x00000000, 0x3fb7b3f4, 0x2193d81e, 0xbe42fa72, 0x00000000, 0x3fb72bd0, 0xdd70c122, 0x3e527a8c, 0x00000000, 0x3fb6a3df, 0x03108a54, 0xbe450393, 0x00000000, 0x3fb61c1f, 0x30ff7954, 0x3e565840, 0x00000000, 0x3fb59492, 0xdedd460c, 0xbe5422b5, 0x00000000, 0x3fb50d36, 0x950f9f45, 0xbe5313f6, 0x00000000, 0x3fb4860b, 0x582cdcb1, 0x3e506d39, 0x00000000, 0x3fb3ff12, 0x7216d3a6, 0x3e4aa719, 0x00000000, 0x3fb3784a, 0x57a423fd, 0x3e5a9b9f, 0x00000000, 0x3fb2f1b4, 0x7a138b41, 0xbe50b418, 0x00000000, 0x3fb26b4e, 0x2fbfd7ea, 0x3e23a53e, 0x00000000, 0x3fb1e519, 0x18913ccb, 0x3e465fc1, 0x00000000, 0x3fb15f15, 0x7ea24e21, 0x3e042843, 0x00000000, 0x3fb0d941, 0x7c6d9c77, 0x3e59f61e, 0x00000000, 0x3fb0539e, 0x114efd44, 0x3e4ccab7, 0x00000000, 0x3faf9c56, 0x1777f657, 0x3e552f65, 0x00000000, 0x3fae91d2, 0xc317b86a, 0xbe5a61e0, 0x00000000, 0x3fad87ac, 0xb7664efb, 0xbe41f64e, 0x00000000, 0x3fac7de6, 0x5d3d03a9, 0x3e0807a0, 0x00000000, 0x3fab7480, 0x743c38eb, 0xbe3726e1, 0x00000000, 0x3faa6b78, 0x06a253f1, 0x3e5ad636, 0x00000000, 0x3fa962d0, 0xa35f541b, 0x3e5a187a, 0x00000000, 0x3fa85a88, 0x4b86e446, 0xbe508150, 0x00000000, 0x3fa7529c, 0x2589cacf, 0x3e52938a, 0x00000000, 0x3fa64b10, 0xaf6b11f2, 0xbe3454cd, 0x00000000, 0x3fa543e2, 0x97506fef, 0xbe5fdec5, 0x00000000, 0x3fa43d10, 0xe75f7dd9, 0xbe388dd3, 0x00000000, 0x3fa3369c, 0xa4139632, 0xbdea5177, 0x00000000, 0x3fa23086, 0x352d6f1e, 0xbe565ad6, 0x00000000, 0x3fa12acc, 0x77449eb7, 0xbe50d5c7, 0x00000000, 0x3fa0256e, 0x7478da78, 0x3e404724, 0x00000000, 0x3f9e40dc, 0xf59cef7f, 0xbe539d0a, 0x00000000, 0x3f9c3790, 0x1511d43c, 0x3e53c2c8, 0x00000000, 0x3f9a2f00, 0x9b8bff3c, 0xbe43b3e1, 0x00000000, 0x3f982724, 0xad1e22a5, 0x3e46f0bd, 0x00000000, 0x3f962000, 0x130d9356, 0x3e475ba0, 0x00000000, 0x3f941994, 0x8f86f883, 0xbe513d0b, 0x00000000, 0x3f9213dc, 0x914d0dc8, 0xbe534335, 0x00000000, 0x3f900ed8, 0x2d73e5e7, 0xbe22ba75, 0x00000000, 0x3f8c1510, 0xc5b7d70e, 0x3e599c5d, 0x00000000, 0x3f880de0, 0x8a27857e, 0xbe3d28c8, 0x00000000, 0x3f840810, 0xda767328, 0x3e531b3d, 0x00000000, 0x3f8003b0, 0x77bacaf3, 0xbe5f04e3, 0x00000000, 0x3f780150, 0xdf4b0720, 0x3e5a8bff, 0x00000000, 0x3f6ffc40, 0x34c48e71, 0xbe3fcd99, 0x00000000, 0x3f5ff6c0, 0x1ad218af, 0xbe4c78a7, 0x00000000, 0x00000000, 0x00000000, 0x80000000 //@formatter:on }); private ArrayDataPointerConstant log2 = pointerConstant(8, new int[]{ //@formatter:off 0xfefa39ef, 0x3fe62e42, 0xfefa39ef, 0xbfe62e42 //@formatter:on }); private ArrayDataPointerConstant double2 = pointerConstant(8, new int[]{ //@formatter:off 0x00000000, 0x40000000 //@formatter:on }); @Override public void emitCode(CompilationResultBuilder crb, AMD64MacroAssembler masm) { // registers, // input: xmm0, xmm1 // scratch: xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7 // rax, rdx, rcx, r8, r11 // Code generated by Intel C compiler for LIBM library Label block0 = new Label(); Label block1 = new Label(); Label block2 = new Label(); Label block3 = new Label(); Label block4 = new Label(); Label block5 = new Label(); Label block6 = new Label(); Label block7 = new Label(); Label block8 = new Label(); Label block9 = new Label(); Label block10 = new Label(); Label block11 = new Label(); Label block12 = new Label(); Label block13 = new Label(); Label block14 = new Label(); Label block15 = new Label(); Label block16 = new Label(); Label block17 = new Label(); Label block18 = new Label(); Label block19 = new Label(); Label block20 = new Label(); Label block21 = new Label(); Label block22 = new Label(); Label block23 = new Label(); Label block24 = new Label(); Label block25 = new Label(); Label block26 = new Label(); Label block27 = new Label(); Label block28 = new Label(); Label block29 = new Label(); Label block30 = new Label(); Label block31 = new Label(); Label block32 = new Label(); Label block33 = new Label(); Label block34 = new Label(); Label block35 = new Label(); Label block36 = new Label(); Label block37 = new Label(); Label block38 = new Label(); Label block39 = new Label(); Label block40 = new Label(); Label block41 = new Label(); Label block42 = new Label(); Label block43 = new Label(); Label block44 = new Label(); Label block45 = new Label(); Label block46 = new Label(); Label block47 = new Label(); Label block48 = new Label(); Label block49 = new Label(); Label block50 = new Label(); Label block51 = new Label(); Label block52 = new Label(); Label block53 = new Label(); Label block54 = new Label(); Label block55 = new Label(); Label block56 = new Label(); Label block57 = new Label(); Register tmp1 = r8; Register tmp2 = r9; Register tmp3 = r10; Register tmp4 = r11; masm.subq(rsp, 40); masm.movsd(new AMD64Address(rsp, 8), xmm0); masm.movsd(new AMD64Address(rsp, 16), xmm1); // Special case: pow(x, 2.0) => x * x masm.movdq(tmp1, xmm1); masm.cmpq(tmp1, recordExternalAddress(crb, double2)); masm.jccb(AMD64Assembler.ConditionFlag.NotEqual, block57); masm.mulsd(xmm0, xmm0); masm.jmp(block56); masm.bind(block57); masm.pextrw(rax, xmm0, 3); masm.xorpd(xmm2, xmm2); masm.movq(tmp2, 0x3ff0000000000000L); masm.movdq(xmm2, tmp2); masm.movl(tmp1, 1069088768); masm.movdq(xmm7, tmp1); masm.xorpd(xmm1, xmm1); masm.movq(tmp3, 0x77f0000000000000L); masm.movdq(xmm1, tmp3); masm.movdqu(xmm3, xmm0); masm.movl(rdx, 32752); masm.andl(rdx, rax); masm.subl(rdx, 16368); masm.movl(rcx, rdx); masm.sarl(rdx, 31); masm.addl(rcx, rdx); masm.xorl(rcx, rdx); masm.por(xmm0, xmm2); masm.movdqu(xmm6, recordExternalAddress(crb, highsigmask)); // 0x00000000, 0xfffff800, // 0x00000000, 0xfffff800 masm.psrlq(xmm0, 27); masm.movq(xmm2, recordExternalAddress(crb, log2E)); // 0x00000000, 0x3ff72000, // 0x161bb241, 0xbf5dabe1 masm.psrld(xmm0, 2); masm.addl(rcx, 16); masm.bsrl(rcx, rcx); masm.rcpps(xmm0, xmm0); masm.psllq(xmm3, 12); masm.movl(tmp4, 8192); masm.movdq(xmm4, tmp4); masm.psrlq(xmm3, 12); masm.subl(rax, 16); masm.cmpl(rax, 32736); masm.jcc(AMD64Assembler.ConditionFlag.AboveEqual, block0); masm.movl(tmp1, 0); masm.bind(block1); masm.mulss(xmm0, xmm7); masm.movl(rdx, -1); masm.subl(rcx, 4); masm.shll(rdx); masm.shlq(rdx, 32); masm.movdq(xmm5, rdx); masm.por(xmm3, xmm1); masm.subl(rax, 16351); masm.cmpl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.BelowEqual, block2); masm.paddd(xmm0, xmm4); masm.pand(xmm5, xmm3); masm.movdl(rdx, xmm0); masm.psllq(xmm0, 29); masm.bind(block3); masm.subsd(xmm3, xmm5); masm.pand(xmm0, xmm6); masm.subl(rax, 1); masm.sarl(rax, 4); masm.cvtsi2sdl(xmm7, rax); masm.mulpd(xmm5, xmm0); masm.bind(block4); masm.mulsd(xmm3, xmm0); masm.movdqu(xmm1, recordExternalAddress(crb, coeff)); // 0x6dc96112, 0xbf836578, // 0xee241472, 0xbf9b0301 masm.leaq(tmp4, recordExternalAddress(crb, lTbl)); masm.subsd(xmm5, xmm2); masm.movdqu(xmm4, recordExternalAddress(crb, coeff16)); // 0x9f95985a, 0xbfb528db, // 0xb3841d2a, 0xbfd619b6 masm.movl(rcx, rax); masm.sarl(rax, 31); masm.addl(rcx, rax); masm.xorl(rax, rcx); masm.addl(rax, 1); masm.bsrl(rax, rax); masm.unpcklpd(xmm5, xmm3); masm.movdqu(xmm6, recordExternalAddress(crb, coeff32)); // 0x518775e3, 0x3f9004f2, // 0xac8349bb, 0x3fa76c9b masm.addsd(xmm3, xmm5); masm.andl(rdx, 16760832); masm.shrl(rdx, 10); masm.addpd(xmm5, new AMD64Address(tmp4, rdx, AMD64Address.Scale.Times1, -3648)); masm.movdqu(xmm0, recordExternalAddress(crb, coeff48)); // 0x486ececc, 0x3fc4635e, // 0x161bb241, 0xbf5dabe1 masm.pshufd(xmm2, xmm3, 68); masm.mulsd(xmm3, xmm3); masm.mulpd(xmm1, xmm2); masm.mulpd(xmm4, xmm2); masm.addsd(xmm5, xmm7); masm.mulsd(xmm2, xmm3); masm.addpd(xmm6, xmm1); masm.mulsd(xmm3, xmm3); masm.addpd(xmm0, xmm4); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movw(rcx, new AMD64Address(rsp, 22)); masm.pshufd(xmm7, xmm5, 238); masm.movq(xmm4, recordExternalAddress(crb, highmaskY)); // 0x00000000, 0xfffffff8, // 0x00000000, 0xffffffff masm.mulpd(xmm6, xmm2); masm.pshufd(xmm3, xmm3, 68); masm.mulpd(xmm0, xmm2); masm.shll(rax, 4); masm.subl(rax, 15872); masm.andl(rcx, 32752); masm.addl(rax, rcx); masm.mulpd(xmm3, xmm6); masm.cmpl(rax, 624); masm.jcc(AMD64Assembler.ConditionFlag.AboveEqual, block5); masm.xorpd(xmm6, xmm6); masm.movl(rdx, 17080); masm.pinsrw(xmm6, rdx, 3); masm.movdqu(xmm2, xmm1); masm.pand(xmm4, xmm1); masm.subsd(xmm1, xmm4); masm.mulsd(xmm4, xmm5); masm.addsd(xmm0, xmm7); masm.mulsd(xmm1, xmm5); masm.movdqu(xmm7, xmm6); masm.addsd(xmm6, xmm4); masm.leaq(tmp4, recordExternalAddress(crb, tExp)); masm.addpd(xmm3, xmm0); masm.movdl(rdx, xmm6); masm.subsd(xmm6, xmm7); masm.pshufd(xmm0, xmm3, 238); masm.subsd(xmm4, xmm6); masm.addsd(xmm0, xmm3); masm.movl(rcx, rdx); masm.andl(rdx, 255); masm.addl(rdx, rdx); masm.movdqu(xmm5, new AMD64Address(tmp4, rdx, AMD64Address.Scale.Times8, 0)); masm.addsd(xmm4, xmm1); masm.mulsd(xmm2, xmm0); masm.movdqu(xmm7, recordExternalAddress(crb, eCoeff)); // 0xe78a6731, 0x3f55d87f, // 0xd704a0c0, 0x3fac6b08 masm.movdqu(xmm3, recordExternalAddress(crb, eCoeff16)); // 0x6fba4e77, 0x3f83b2ab, // 0xff82c58f, 0x3fcebfbd masm.shll(rcx, 12); masm.xorl(rcx, tmp1); masm.andl(rcx, -1048576); masm.movdq(xmm6, rcx); masm.addsd(xmm2, xmm4); masm.movq(tmp2, 0x3fe62e42fefa39efL); masm.movdq(xmm1, tmp2); masm.pshufd(xmm0, xmm2, 68); masm.pshufd(xmm4, xmm2, 68); masm.mulsd(xmm1, xmm2); masm.pshufd(xmm6, xmm6, 17); masm.mulpd(xmm0, xmm0); masm.mulpd(xmm7, xmm4); masm.paddd(xmm5, xmm6); masm.mulsd(xmm1, xmm5); masm.pshufd(xmm6, xmm5, 238); masm.mulsd(xmm0, xmm0); masm.addpd(xmm3, xmm7); masm.addsd(xmm1, xmm6); masm.mulpd(xmm0, xmm3); masm.pshufd(xmm3, xmm0, 238); masm.mulsd(xmm0, xmm5); masm.mulsd(xmm3, xmm5); masm.addsd(xmm0, xmm1); masm.addsd(xmm0, xmm3); masm.addsd(xmm0, xmm5); masm.jmp(block56); masm.bind(block0); masm.addl(rax, 16); masm.movl(rdx, 32752); masm.andl(rdx, rax); masm.cmpl(rdx, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block6); masm.testl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block7); masm.bind(block8); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.movq(xmm3, new AMD64Address(rsp, 8)); masm.movdl(rdx, xmm3); masm.psrlq(xmm3, 32); masm.movdl(rcx, xmm3); masm.orl(rdx, rcx); masm.cmpl(rdx, 0); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block9); masm.xorpd(xmm3, xmm3); masm.movl(rax, 18416); masm.pinsrw(xmm3, rax, 3); masm.mulsd(xmm0, xmm3); masm.xorpd(xmm2, xmm2); masm.movl(rax, 16368); masm.pinsrw(xmm2, rax, 3); masm.movdqu(xmm3, xmm0); masm.pextrw(rax, xmm0, 3); masm.por(xmm0, xmm2); masm.movl(rcx, 18416); masm.psrlq(xmm0, 27); masm.movq(xmm2, recordExternalAddress(crb, log2E)); // 0x00000000, 0x3ff72000, // 0x161bb241, 0xbf5dabe1 masm.psrld(xmm0, 2); masm.rcpps(xmm0, xmm0); masm.psllq(xmm3, 12); masm.movdqu(xmm6, recordExternalAddress(crb, highsigmask)); // 0x00000000, 0xfffff800, // 0x00000000, 0xfffff800 masm.psrlq(xmm3, 12); masm.mulss(xmm0, xmm7); masm.movl(rdx, -1024); masm.movdl(xmm5, rdx); masm.por(xmm3, xmm1); masm.paddd(xmm0, xmm4); masm.psllq(xmm5, 32); masm.movdl(rdx, xmm0); masm.psllq(xmm0, 29); masm.pand(xmm5, xmm3); masm.movl(tmp1, 0); masm.pand(xmm0, xmm6); masm.subsd(xmm3, xmm5); masm.andl(rax, 32752); masm.subl(rax, 18416); masm.sarl(rax, 4); masm.cvtsi2sdl(xmm7, rax); masm.mulpd(xmm5, xmm0); masm.jmp(block4); masm.bind(block10); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.movq(xmm3, new AMD64Address(rsp, 8)); masm.movdl(rdx, xmm3); masm.psrlq(xmm3, 32); masm.movdl(rcx, xmm3); masm.orl(rdx, rcx); masm.cmpl(rdx, 0); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block9); masm.xorpd(xmm3, xmm3); masm.movl(rax, 18416); masm.pinsrw(xmm3, rax, 3); masm.mulsd(xmm0, xmm3); masm.xorpd(xmm2, xmm2); masm.movl(rax, 16368); masm.pinsrw(xmm2, rax, 3); masm.movdqu(xmm3, xmm0); masm.pextrw(rax, xmm0, 3); masm.por(xmm0, xmm2); masm.movl(rcx, 18416); masm.psrlq(xmm0, 27); masm.movq(xmm2, recordExternalAddress(crb, log2E)); // 0x00000000, 0x3ff72000, // 0x161bb241, 0xbf5dabe1 masm.psrld(xmm0, 2); masm.rcpps(xmm0, xmm0); masm.psllq(xmm3, 12); masm.movdqu(xmm6, recordExternalAddress(crb, highsigmask)); // 0x00000000, 0xfffff800, // 0x00000000, 0xfffff800 masm.psrlq(xmm3, 12); masm.mulss(xmm0, xmm7); masm.movl(rdx, -1024); masm.movdl(xmm5, rdx); masm.por(xmm3, xmm1); masm.paddd(xmm0, xmm4); masm.psllq(xmm5, 32); masm.movdl(rdx, xmm0); masm.psllq(xmm0, 29); masm.pand(xmm5, xmm3); masm.movl(tmp1, Integer.MIN_VALUE); masm.pand(xmm0, xmm6); masm.subsd(xmm3, xmm5); masm.andl(rax, 32752); masm.subl(rax, 18416); masm.sarl(rax, 4); masm.cvtsi2sdl(xmm7, rax); masm.mulpd(xmm5, xmm0); masm.jmp(block4); masm.bind(block5); masm.cmpl(rax, 0); masm.jcc(AMD64Assembler.ConditionFlag.Less, block11); masm.cmpl(rax, 752); masm.jcc(AMD64Assembler.ConditionFlag.AboveEqual, block12); masm.addsd(xmm0, xmm7); masm.movq(xmm2, recordExternalAddress(crb, halfmask)); // 0xf8000000, 0xffffffff, // 0xf8000000, 0xffffffff masm.addpd(xmm3, xmm0); masm.xorpd(xmm6, xmm6); masm.movl(rax, 17080); masm.pinsrw(xmm6, rax, 3); masm.pshufd(xmm0, xmm3, 238); masm.addsd(xmm0, xmm3); masm.movdqu(xmm3, xmm5); masm.addsd(xmm5, xmm0); masm.movdqu(xmm4, xmm2); masm.subsd(xmm3, xmm5); masm.movdqu(xmm7, xmm5); masm.pand(xmm5, xmm2); masm.movdqu(xmm2, xmm1); masm.pand(xmm4, xmm1); masm.subsd(xmm7, xmm5); masm.addsd(xmm0, xmm3); masm.subsd(xmm1, xmm4); masm.mulsd(xmm4, xmm5); masm.addsd(xmm0, xmm7); masm.mulsd(xmm2, xmm0); masm.movdqu(xmm7, xmm6); masm.mulsd(xmm1, xmm5); masm.addsd(xmm6, xmm4); masm.movdl(rax, xmm6); masm.subsd(xmm6, xmm7); masm.leaq(tmp4, recordExternalAddress(crb, tExp)); masm.addsd(xmm2, xmm1); masm.movdqu(xmm7, recordExternalAddress(crb, eCoeff)); // 0xe78a6731, 0x3f55d87f, // 0xd704a0c0, 0x3fac6b08 masm.movdqu(xmm3, recordExternalAddress(crb, eCoeff16)); // 0x6fba4e77, 0x3f83b2ab, // 0xff82c58f, 0x3fcebfbd masm.subsd(xmm4, xmm6); masm.pextrw(rdx, xmm6, 3); masm.movl(rcx, rax); masm.andl(rax, 255); masm.addl(rax, rax); masm.movdqu(xmm5, new AMD64Address(tmp4, rax, AMD64Address.Scale.Times8, 0)); masm.addsd(xmm2, xmm4); masm.sarl(rcx, 8); masm.movl(rax, rcx); masm.sarl(rcx, 1); masm.subl(rax, rcx); masm.shll(rcx, 20); masm.xorl(rcx, tmp1); masm.movdl(xmm6, rcx); masm.movq(xmm1, recordExternalAddress(crb, eCoeff32)); // 0xfefa39ef, 0x3fe62e42, // 0x00000000, 0x00000000 masm.andl(rdx, 32767); masm.cmpl(rdx, 16529); masm.jcc(AMD64Assembler.ConditionFlag.Above, block12); masm.pshufd(xmm0, xmm2, 68); masm.pshufd(xmm4, xmm2, 68); masm.mulpd(xmm0, xmm0); masm.mulpd(xmm7, xmm4); masm.pshufd(xmm6, xmm6, 17); masm.mulsd(xmm1, xmm2); masm.mulsd(xmm0, xmm0); masm.paddd(xmm5, xmm6); masm.addpd(xmm3, xmm7); masm.mulsd(xmm1, xmm5); masm.pshufd(xmm6, xmm5, 238); masm.mulpd(xmm0, xmm3); masm.addsd(xmm1, xmm6); masm.pshufd(xmm3, xmm0, 238); masm.mulsd(xmm0, xmm5); masm.mulsd(xmm3, xmm5); masm.shll(rax, 4); masm.xorpd(xmm4, xmm4); masm.addl(rax, 16368); masm.pinsrw(xmm4, rax, 3); masm.addsd(xmm0, xmm1); masm.addsd(xmm0, xmm3); masm.movdqu(xmm1, xmm0); masm.addsd(xmm0, xmm5); masm.mulsd(xmm0, xmm4); masm.pextrw(rax, xmm0, 3); masm.andl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block13); masm.cmpl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block14); masm.jmp(block56); masm.bind(block6); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.movdqu(xmm2, xmm0); masm.movdl(rax, xmm2); masm.psrlq(xmm2, 20); masm.movdl(rdx, xmm2); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block15); masm.movdl(rax, xmm1); masm.psrlq(xmm1, 32); masm.movdl(rdx, xmm1); masm.movl(rcx, rdx); masm.addl(rdx, rdx); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block16); masm.addsd(xmm0, xmm0); masm.jmp(block56); masm.bind(block16); masm.xorpd(xmm0, xmm0); masm.movl(rax, 16368); masm.pinsrw(xmm0, rax, 3); masm.movl(new AMD64Address(rsp, 0), 29); masm.jmp(block17); masm.bind(block18); masm.movq(xmm0, new AMD64Address(rsp, 16)); masm.addpd(xmm0, xmm0); masm.jmp(block56); masm.bind(block15); masm.movdl(rax, xmm1); masm.movdqu(xmm2, xmm1); masm.psrlq(xmm1, 32); masm.movdl(rdx, xmm1); masm.movl(rcx, rdx); masm.addl(rdx, rdx); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block19); masm.pextrw(rax, xmm2, 3); masm.andl(rax, 32752); masm.cmpl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block20); masm.movdl(rax, xmm2); masm.psrlq(xmm2, 20); masm.movdl(rdx, xmm2); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block18); masm.bind(block20); masm.pextrw(rax, xmm0, 3); masm.testl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block21); masm.testl(rcx, Integer.MIN_VALUE); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block22); masm.jmp(block56); masm.bind(block23); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movdl(rax, xmm1); masm.testl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block24); masm.testl(rax, 2); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block25); masm.jmp(block24); masm.bind(block21); masm.shrl(rcx, 20); masm.andl(rcx, 2047); masm.cmpl(rcx, 1075); masm.jcc(AMD64Assembler.ConditionFlag.Above, block24); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block26); masm.cmpl(rcx, 1074); masm.jcc(AMD64Assembler.ConditionFlag.Above, block23); masm.cmpl(rcx, 1023); masm.jcc(AMD64Assembler.ConditionFlag.Below, block24); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movl(rax, 17208); masm.xorpd(xmm3, xmm3); masm.pinsrw(xmm3, rax, 3); masm.movdqu(xmm4, xmm3); masm.addsd(xmm3, xmm1); masm.subsd(xmm4, xmm3); masm.addsd(xmm1, xmm4); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block24); masm.movdl(rax, xmm3); masm.andl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block24); masm.bind(block25); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block27); masm.jmp(block56); masm.bind(block27); masm.xorpd(xmm0, xmm0); masm.movl(rax, 32768); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block24); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block22); masm.xorpd(xmm0, xmm0); masm.movl(rax, 32752); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block26); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movdl(rax, xmm1); masm.andl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block24); masm.jmp(block25); masm.bind(block28); masm.movdl(rax, xmm1); masm.psrlq(xmm1, 20); masm.movdl(rdx, xmm1); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block29); masm.movq(xmm0, new AMD64Address(rsp, 16)); masm.addsd(xmm0, xmm0); masm.jmp(block56); masm.bind(block29); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.pextrw(rax, xmm0, 3); masm.cmpl(rax, 49136); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block30); masm.movdl(rcx, xmm0); masm.psrlq(xmm0, 20); masm.movdl(rdx, xmm0); masm.orl(rcx, rdx); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block30); masm.xorpd(xmm0, xmm0); masm.movl(rax, 32760); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block30); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.andl(rax, 32752); masm.subl(rax, 16368); masm.pextrw(rdx, xmm1, 3); masm.xorpd(xmm0, xmm0); masm.xorl(rax, rdx); masm.andl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block31); masm.jmp(block56); masm.bind(block31); masm.movl(rcx, 32752); masm.pinsrw(xmm0, rcx, 3); masm.jmp(block56); masm.bind(block32); masm.movdl(rax, xmm1); masm.cmpl(rdx, 17184); masm.jcc(AMD64Assembler.ConditionFlag.Above, block33); masm.testl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block34); masm.testl(rax, 2); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block35); masm.jmp(block36); masm.bind(block33); masm.testl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block35); masm.jmp(block36); masm.bind(block7); masm.movq(xmm2, new AMD64Address(rsp, 8)); masm.movdl(rax, xmm2); masm.psrlq(xmm2, 31); masm.movdl(rcx, xmm2); masm.orl(rax, rcx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block9); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.pextrw(rdx, xmm1, 3); masm.movdl(rax, xmm1); masm.movdqu(xmm2, xmm1); masm.psrlq(xmm2, 32); masm.movdl(rcx, xmm2); masm.addl(rcx, rcx); masm.orl(rcx, rax); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block37); masm.andl(rdx, 32752); masm.cmpl(rdx, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block28); masm.cmpl(rdx, 17200); masm.jcc(AMD64Assembler.ConditionFlag.Above, block35); masm.cmpl(rdx, 17184); masm.jcc(AMD64Assembler.ConditionFlag.AboveEqual, block32); masm.cmpl(rdx, 16368); masm.jcc(AMD64Assembler.ConditionFlag.Below, block34); masm.movl(rax, 17208); masm.xorpd(xmm2, xmm2); masm.pinsrw(xmm2, rax, 3); masm.movdqu(xmm4, xmm2); masm.addsd(xmm2, xmm1); masm.subsd(xmm4, xmm2); masm.addsd(xmm1, xmm4); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32767); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block34); masm.movdl(rax, xmm2); masm.andl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block35); masm.bind(block36); masm.xorpd(xmm1, xmm1); masm.movl(rdx, 30704); masm.pinsrw(xmm1, rdx, 3); masm.movq(xmm2, recordExternalAddress(crb, log2E)); // 0x00000000, 0x3ff72000, // 0x161bb241, 0xbf5dabe1 masm.movq(xmm4, new AMD64Address(rsp, 8)); masm.pextrw(rax, xmm4, 3); masm.movl(rdx, 8192); masm.movdl(xmm4, rdx); masm.andl(rax, 32767); masm.subl(rax, 16); masm.jcc(AMD64Assembler.ConditionFlag.Less, block10); masm.movl(rdx, rax); masm.andl(rdx, 32752); masm.subl(rdx, 16368); masm.movl(rcx, rdx); masm.sarl(rdx, 31); masm.addl(rcx, rdx); masm.xorl(rcx, rdx); masm.addl(rcx, 16); masm.bsrl(rcx, rcx); masm.movl(tmp1, Integer.MIN_VALUE); masm.jmp(block1); masm.bind(block34); masm.xorpd(xmm1, xmm1); masm.movl(rax, 32752); masm.pinsrw(xmm1, rax, 3); masm.xorpd(xmm0, xmm0); masm.mulsd(xmm0, xmm1); masm.movl(new AMD64Address(rsp, 0), 28); masm.jmp(block17); masm.bind(block35); masm.xorpd(xmm1, xmm1); masm.movl(rdx, 30704); masm.pinsrw(xmm1, rdx, 3); masm.movq(xmm2, recordExternalAddress(crb, log2E)); // 0x00000000, 0x3ff72000, // 0x161bb241, 0xbf5dabe1 masm.movq(xmm4, new AMD64Address(rsp, 8)); masm.pextrw(rax, xmm4, 3); masm.movl(rdx, 8192); masm.movdl(xmm4, rdx); masm.andl(rax, 32767); masm.subl(rax, 16); masm.jcc(AMD64Assembler.ConditionFlag.Less, block8); masm.movl(rdx, rax); masm.andl(rdx, 32752); masm.subl(rdx, 16368); masm.movl(rcx, rdx); masm.sarl(rdx, 31); masm.addl(rcx, rdx); masm.xorl(rcx, rdx); masm.addl(rcx, 16); masm.bsrl(rcx, rcx); masm.movl(tmp1, 0); masm.jmp(block1); masm.bind(block19); masm.xorpd(xmm0, xmm0); masm.movl(rax, 16368); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block22); masm.xorpd(xmm0, xmm0); masm.jmp(block56); masm.bind(block11); masm.addl(rax, 384); masm.cmpl(rax, 0); masm.jcc(AMD64Assembler.ConditionFlag.Less, block38); masm.mulsd(xmm5, xmm1); masm.addsd(xmm0, xmm7); masm.shrl(tmp1, 31); masm.addpd(xmm3, xmm0); masm.pshufd(xmm0, xmm3, 238); masm.addsd(xmm3, xmm0); masm.leaq(tmp4, recordExternalAddress(crb, log2)); // 0xfefa39ef, 0x3fe62e42, // 0xfefa39ef, 0xbfe62e42 masm.movq(xmm4, new AMD64Address(tmp4, tmp1, AMD64Address.Scale.Times8, 0)); masm.mulsd(xmm1, xmm3); masm.xorpd(xmm0, xmm0); masm.movl(rax, 16368); masm.shll(tmp1, 15); masm.orl(rax, tmp1); masm.pinsrw(xmm0, rax, 3); masm.addsd(xmm5, xmm1); masm.mulsd(xmm5, xmm4); masm.addsd(xmm0, xmm5); masm.jmp(block56); masm.bind(block38); masm.bind(block37); masm.xorpd(xmm0, xmm0); masm.movl(rax, 16368); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block39); masm.xorpd(xmm0, xmm0); masm.movl(rax, 16368); masm.pinsrw(xmm0, rax, 3); masm.movl(new AMD64Address(rsp, 0), 26); masm.jmp(block17); masm.bind(block9); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movdqu(xmm2, xmm1); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32752); masm.cmpl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block40); masm.movdl(rax, xmm2); masm.psrlq(xmm2, 20); masm.movdl(rdx, xmm2); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block18); masm.bind(block40); masm.movdl(rax, xmm1); masm.psrlq(xmm1, 32); masm.movdl(rdx, xmm1); masm.movl(rcx, rdx); masm.addl(rdx, rdx); masm.orl(rax, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block39); masm.shrl(rdx, 21); masm.cmpl(rdx, 1075); masm.jcc(AMD64Assembler.ConditionFlag.Above, block41); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block42); masm.cmpl(rdx, 1023); masm.jcc(AMD64Assembler.ConditionFlag.Below, block41); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movl(rax, 17208); masm.xorpd(xmm3, xmm3); masm.pinsrw(xmm3, rax, 3); masm.movdqu(xmm4, xmm3); masm.addsd(xmm3, xmm1); masm.subsd(xmm4, xmm3); masm.addsd(xmm1, xmm4); masm.pextrw(rax, xmm1, 3); masm.andl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block41); masm.movdl(rax, xmm3); masm.andl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block41); masm.bind(block43); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.testl(rcx, Integer.MIN_VALUE); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block44); masm.jmp(block56); masm.bind(block42); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movdl(rax, xmm1); masm.testl(rax, 1); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block43); masm.bind(block41); masm.testl(rcx, Integer.MIN_VALUE); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block22); masm.xorpd(xmm0, xmm0); masm.bind(block44); masm.movl(rax, 16368); masm.xorpd(xmm1, xmm1); masm.pinsrw(xmm1, rax, 3); masm.divsd(xmm1, xmm0); masm.movdqu(xmm0, xmm1); masm.movl(new AMD64Address(rsp, 0), 27); masm.jmp(block17); masm.bind(block12); masm.movq(xmm2, new AMD64Address(rsp, 8)); masm.movq(xmm6, new AMD64Address(rsp, 16)); masm.pextrw(rax, xmm2, 3); masm.pextrw(rdx, xmm6, 3); masm.movl(rcx, 32752); masm.andl(rcx, rdx); masm.cmpl(rcx, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block45); masm.andl(rax, 32752); masm.subl(rax, 16368); masm.xorl(rdx, rax); masm.testl(rdx, 32768); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block46); masm.bind(block47); masm.movl(rax, 32736); masm.pinsrw(xmm0, rax, 3); masm.shrl(tmp1, 16); masm.orl(rax, tmp1); masm.pinsrw(xmm1, rax, 3); masm.mulsd(xmm0, xmm1); masm.bind(block14); masm.movl(new AMD64Address(rsp, 0), 24); masm.jmp(block17); masm.bind(block46); masm.movl(rax, 16); masm.pinsrw(xmm0, rax, 3); masm.mulsd(xmm0, xmm0); masm.testl(tmp1, Integer.MIN_VALUE); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block48); masm.movq(tmp2, 0x8000000000000000L); masm.movdq(xmm2, tmp2); masm.xorpd(xmm0, xmm2); masm.bind(block48); masm.movl(new AMD64Address(rsp, 0), 25); masm.jmp(block17); masm.bind(block13); masm.pextrw(rcx, xmm5, 3); masm.pextrw(rdx, xmm4, 3); masm.movl(rax, -1); masm.andl(rcx, 32752); masm.subl(rcx, 16368); masm.andl(rdx, 32752); masm.addl(rdx, rcx); masm.movl(rcx, -31); masm.sarl(rdx, 4); masm.subl(rcx, rdx); masm.jcc(AMD64Assembler.ConditionFlag.LessEqual, block49); masm.cmpl(rcx, 20); masm.jcc(AMD64Assembler.ConditionFlag.Above, block50); masm.shll(rax); masm.bind(block49); masm.movdl(xmm0, rax); masm.psllq(xmm0, 32); masm.pand(xmm0, xmm5); masm.subsd(xmm5, xmm0); masm.addsd(xmm5, xmm1); masm.mulsd(xmm0, xmm4); masm.mulsd(xmm5, xmm4); masm.addsd(xmm0, xmm5); masm.bind(block50); masm.jmp(block48); masm.bind(block2); masm.movw(rcx, new AMD64Address(rsp, 22)); masm.movl(rdx, Integer.MIN_VALUE); masm.movdl(xmm1, rdx); masm.xorpd(xmm7, xmm7); masm.paddd(xmm0, xmm4); masm.movdl(rdx, xmm0); masm.psllq(xmm0, 29); masm.paddq(xmm1, xmm3); masm.pand(xmm5, xmm1); masm.andl(rcx, 32752); masm.cmpl(rcx, 16560); masm.jcc(AMD64Assembler.ConditionFlag.Less, block3); masm.pand(xmm0, xmm6); masm.subsd(xmm3, xmm5); masm.addl(rax, 16351); masm.shrl(rax, 4); masm.subl(rax, 1022); masm.cvtsi2sdl(xmm7, rax); masm.mulpd(xmm5, xmm0); masm.leaq(r11, recordExternalAddress(crb, lTbl)); masm.movq(xmm4, recordExternalAddress(crb, coeffH)); // 0x00000000, 0xbfd61a00, // 0x00000000, 0xbf5dabe1 masm.mulsd(xmm3, xmm0); masm.movq(xmm6, recordExternalAddress(crb, coeffH)); // 0x00000000, 0xbfd61a00, // 0x00000000, 0xbf5dabe1 masm.subsd(xmm5, xmm2); masm.movq(xmm1, recordExternalAddress(crb, coeffH8)); // 0x00000000, 0xbf5dabe1 masm.pshufd(xmm2, xmm3, 68); masm.unpcklpd(xmm5, xmm3); masm.addsd(xmm3, xmm5); masm.movq(xmm0, recordExternalAddress(crb, coeffH8)); // 0x00000000, 0xbf5dabe1 masm.andl(rdx, 16760832); masm.shrl(rdx, 10); masm.addpd(xmm7, new AMD64Address(tmp4, rdx, AMD64Address.Scale.Times1, -3648)); masm.mulsd(xmm4, xmm5); masm.mulsd(xmm0, xmm5); masm.mulsd(xmm6, xmm2); masm.mulsd(xmm1, xmm2); masm.movdqu(xmm2, xmm5); masm.mulsd(xmm4, xmm5); masm.addsd(xmm5, xmm0); masm.movdqu(xmm0, xmm7); masm.addsd(xmm2, xmm3); masm.addsd(xmm7, xmm5); masm.mulsd(xmm6, xmm2); masm.subsd(xmm0, xmm7); masm.movdqu(xmm2, xmm7); masm.addsd(xmm7, xmm4); masm.addsd(xmm0, xmm5); masm.subsd(xmm2, xmm7); masm.addsd(xmm4, xmm2); masm.pshufd(xmm2, xmm5, 238); masm.movdqu(xmm5, xmm7); masm.addsd(xmm7, xmm2); masm.addsd(xmm4, xmm0); masm.movdqu(xmm0, recordExternalAddress(crb, coeff)); // 0x6dc96112, 0xbf836578, // 0xee241472, 0xbf9b0301 masm.subsd(xmm5, xmm7); masm.addsd(xmm6, xmm4); masm.movdqu(xmm4, xmm7); masm.addsd(xmm5, xmm2); masm.addsd(xmm7, xmm1); masm.movdqu(xmm2, recordExternalAddress(crb, coeff64)); // 0x486ececc, 0x3fc4635e, // 0x161bb241, 0xbf5dabe1 masm.subsd(xmm4, xmm7); masm.addsd(xmm6, xmm5); masm.addsd(xmm4, xmm1); masm.pshufd(xmm5, xmm7, 238); masm.movapd(xmm1, xmm7); masm.addsd(xmm7, xmm5); masm.subsd(xmm1, xmm7); masm.addsd(xmm1, xmm5); masm.movdqu(xmm5, recordExternalAddress(crb, coeff80)); // 0x9f95985a, 0xbfb528db, // 0xf8b5787d, 0x3ef2531e masm.pshufd(xmm3, xmm3, 68); masm.addsd(xmm6, xmm4); masm.addsd(xmm6, xmm1); masm.movdqu(xmm1, recordExternalAddress(crb, coeff32)); // 0x9f95985a, 0xbfb528db, // 0xb3841d2a, 0xbfd619b6 masm.mulpd(xmm0, xmm3); masm.mulpd(xmm2, xmm3); masm.pshufd(xmm4, xmm3, 68); masm.mulpd(xmm3, xmm3); masm.addpd(xmm0, xmm1); masm.addpd(xmm5, xmm2); masm.mulsd(xmm4, xmm3); masm.movq(xmm2, recordExternalAddress(crb, highmaskLogX)); // 0xf8000000, 0xffffffff, // 0x00000000, 0xfffff800 masm.mulpd(xmm3, xmm3); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movw(rcx, new AMD64Address(rsp, 22)); masm.mulpd(xmm0, xmm4); masm.pextrw(rax, xmm7, 3); masm.mulpd(xmm5, xmm4); masm.mulpd(xmm0, xmm3); masm.movq(xmm4, recordExternalAddress(crb, highmaskY8)); // 0x00000000, 0xffffffff masm.pand(xmm2, xmm7); masm.addsd(xmm5, xmm6); masm.subsd(xmm7, xmm2); masm.addpd(xmm5, xmm0); masm.andl(rax, 32752); masm.subl(rax, 16368); masm.andl(rcx, 32752); masm.cmpl(rcx, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block45); masm.addl(rcx, rax); masm.cmpl(rcx, 16576); masm.jcc(AMD64Assembler.ConditionFlag.AboveEqual, block51); masm.pshufd(xmm0, xmm5, 238); masm.pand(xmm4, xmm1); masm.movdqu(xmm3, xmm1); masm.addsd(xmm5, xmm0); masm.subsd(xmm1, xmm4); masm.xorpd(xmm6, xmm6); masm.movl(rdx, 17080); masm.pinsrw(xmm6, rdx, 3); masm.addsd(xmm7, xmm5); masm.mulsd(xmm4, xmm2); masm.mulsd(xmm1, xmm2); masm.movdqu(xmm5, xmm6); masm.mulsd(xmm3, xmm7); masm.addsd(xmm6, xmm4); masm.addsd(xmm1, xmm3); masm.movdqu(xmm7, recordExternalAddress(crb, eCoeff)); // 0xe78a6731, 0x3f55d87f, // 0xd704a0c0, 0x3fac6b08 masm.movdl(rdx, xmm6); masm.subsd(xmm6, xmm5); masm.leaq(tmp4, recordExternalAddress(crb, tExp)); masm.movdqu(xmm3, recordExternalAddress(crb, eCoeff16)); // 0x6fba4e77, 0x3f83b2ab, // 0xff82c58f, 0x3fcebfbd masm.movq(xmm2, recordExternalAddress(crb, eCoeff32)); // 0xfefa39ef, 0x3fe62e42, // 0x00000000, 0x00000000 masm.subsd(xmm4, xmm6); masm.movl(rcx, rdx); masm.andl(rdx, 255); masm.addl(rdx, rdx); masm.movdqu(xmm5, new AMD64Address(tmp4, rdx, AMD64Address.Scale.Times8, 0)); masm.addsd(xmm4, xmm1); masm.pextrw(rdx, xmm6, 3); masm.shrl(rcx, 8); masm.movl(rax, rcx); masm.shrl(rcx, 1); masm.subl(rax, rcx); masm.shll(rcx, 20); masm.movdl(xmm6, rcx); masm.pshufd(xmm0, xmm4, 68); masm.pshufd(xmm1, xmm4, 68); masm.mulpd(xmm0, xmm0); masm.mulpd(xmm7, xmm1); masm.pshufd(xmm6, xmm6, 17); masm.mulsd(xmm2, xmm4); masm.andl(rdx, 32767); masm.cmpl(rdx, 16529); masm.jcc(AMD64Assembler.ConditionFlag.Above, block12); masm.mulsd(xmm0, xmm0); masm.paddd(xmm5, xmm6); masm.addpd(xmm3, xmm7); masm.mulsd(xmm2, xmm5); masm.pshufd(xmm6, xmm5, 238); masm.mulpd(xmm0, xmm3); masm.addsd(xmm2, xmm6); masm.pshufd(xmm3, xmm0, 238); masm.addl(rax, 1023); masm.shll(rax, 20); masm.orl(rax, tmp1); masm.movdl(xmm4, rax); masm.mulsd(xmm0, xmm5); masm.mulsd(xmm3, xmm5); masm.addsd(xmm0, xmm2); masm.psllq(xmm4, 32); masm.addsd(xmm0, xmm3); masm.movdqu(xmm1, xmm0); masm.addsd(xmm0, xmm5); masm.mulsd(xmm0, xmm4); masm.pextrw(rax, xmm0, 3); masm.andl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block13); masm.cmpl(rax, 32752); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block14); masm.bind(block52); masm.jmp(block56); masm.bind(block45); masm.movq(xmm0, new AMD64Address(rsp, 8)); masm.xorpd(xmm2, xmm2); masm.movl(rax, 49136); masm.pinsrw(xmm2, rax, 3); masm.addsd(xmm2, xmm0); masm.pextrw(rax, xmm2, 3); masm.cmpl(rax, 0); masm.jcc(AMD64Assembler.ConditionFlag.NotEqual, block53); masm.xorpd(xmm0, xmm0); masm.movl(rax, 32760); masm.pinsrw(xmm0, rax, 3); masm.jmp(block56); masm.bind(block53); masm.movq(xmm1, new AMD64Address(rsp, 16)); masm.movdl(rdx, xmm1); masm.movdqu(xmm3, xmm1); masm.psrlq(xmm3, 20); masm.movdl(rcx, xmm3); masm.orl(rcx, rdx); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block54); masm.addsd(xmm1, xmm1); masm.movdqu(xmm0, xmm1); masm.jmp(block56); masm.bind(block51); masm.pextrw(rax, xmm1, 3); masm.pextrw(rcx, xmm2, 3); masm.xorl(rax, rcx); masm.testl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block47); masm.jmp(block46); masm.bind(block54); masm.pextrw(rax, xmm0, 3); masm.andl(rax, 32752); masm.pextrw(rdx, xmm1, 3); masm.xorpd(xmm0, xmm0); masm.subl(rax, 16368); masm.xorl(rax, rdx); masm.testl(rax, 32768); masm.jcc(AMD64Assembler.ConditionFlag.Equal, block55); masm.jmp(block56); masm.bind(block55); masm.movl(rdx, 32752); masm.pinsrw(xmm0, rdx, 3); masm.jmp(block56); masm.bind(block17); masm.movq(new AMD64Address(rsp, 24), xmm0); masm.movq(xmm0, new AMD64Address(rsp, 24)); masm.bind(block56); masm.addq(rsp, 40); } }