summaryrefslogtreecommitdiff
path: root/src/support
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2016-05-05 15:38:12 +1000
committerMichael Cahill <michael.cahill@mongodb.com>2016-05-05 15:38:12 +1000
commit636a7b25ef3eca6b98009330f4d35337d4f35717 (patch)
tree7cc2e03ad96e206cbe73343feef10197023a37da /src/support
parenteaa7b5f0fcc62f356c33a2c56f45b609a73ca5dd (diff)
parent75c22bc0c662622c14e5c47d99ff262cede2c6bf (diff)
Merge branch 'develop' into mongodb-3.4mongodb-3.3.6
Diffstat (limited to 'src/support')
-rw-r--r--src/support/cksum.c1327
-rw-r--r--src/support/err.c4
-rw-r--r--src/support/power8/LICENSE.TXT476
-rw-r--r--src/support/power8/README.md208
-rw-r--r--src/support/power8/crc32.S771
-rw-r--r--src/support/power8/crc32_constants.h901
-rw-r--r--src/support/power8/crc32_wrapper.c66
-rw-r--r--src/support/power8/ppc-opcode.h23
-rw-r--r--src/support/scratch.c2
-rw-r--r--src/support/stat.c29
10 files changed, 32 insertions, 3775 deletions
diff --git a/src/support/cksum.c b/src/support/cksum.c
deleted file mode 100644
index 0b086753406..00000000000
--- a/src/support/cksum.c
+++ /dev/null
@@ -1,1327 +0,0 @@
-/*-
- * Public Domain 2014-2016 MongoDB, Inc.
- * Public Domain 2008-2014 WiredTiger, Inc.
- *
- * This is free and unencumbered software released into the public domain.
- *
- * Anyone is free to copy, modify, publish, use, compile, sell, or
- * distribute this software, either in source code form or as a compiled
- * binary, for any purpose, commercial or non-commercial, and by any
- * means.
- *
- * In jurisdictions that recognize copyright laws, the author or authors
- * of this software dedicate any and all copyright interest in the
- * software to the public domain. We make this dedication for the benefit
- * of the public at large and to the detriment of our heirs and
- * successors. We intend this dedication to be an overt act of
- * relinquishment in perpetuity of all present and future rights to this
- * software under copyright law.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
- * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- */
-/*
- * Slicing-by-8 algorithm by Michael E. Kounavis and Frank L. Berry, described
- * in "Novel Table Lookup-Based Algorithms for High-Performance CRC Generation",
- * IEEE Transactions on Computers, Volume 57 Issue 11, November 2008.
- *
- * See also Peter Kanowski's posting:
- * http://www.strchr.com/crc32_popcnt
- *
- * The big endian version calculates the same result at each step, except the
- * value of the crc is byte reversed from what it would be at that step for
- * little endian.
- */
-
-#include "wt_internal.h"
-
-/*
- * This file contains two implementations for computing CRC: one that uses
- * hardware CRC instructions, available on newer x86_64/amd64, and one that uses
- * a fast software algorithm. __wt_cksum() provides a common entry point that
- * indirects to one of these two methods.
- */
-static uint32_t (*__wt_cksum_func)(const void *chunk, size_t len);
-
-/*
- * The CRC slicing tables are used by __wt_cksum_sw.
- */
-static const uint32_t g_crc_slicing[8][256] = {
-#ifdef WORDS_BIGENDIAN
- /*
- * Big endian tables have entries that are byte reversed from little
- * endian tables.
- */
- {
- 0x00000000, 0x03836bf2, 0xf7703be1, 0xf4f35013,
- 0x1f979ac7, 0x1c14f135, 0xe8e7a126, 0xeb64cad4,
- 0xcf58d98a, 0xccdbb278, 0x3828e26b, 0x3bab8999,
- 0xd0cf434d, 0xd34c28bf, 0x27bf78ac, 0x243c135e,
- 0x6fc75e10, 0x6c4435e2, 0x98b765f1, 0x9b340e03,
- 0x7050c4d7, 0x73d3af25, 0x8720ff36, 0x84a394c4,
- 0xa09f879a, 0xa31cec68, 0x57efbc7b, 0x546cd789,
- 0xbf081d5d, 0xbc8b76af, 0x487826bc, 0x4bfb4d4e,
- 0xde8ebd20, 0xdd0dd6d2, 0x29fe86c1, 0x2a7ded33,
- 0xc11927e7, 0xc29a4c15, 0x36691c06, 0x35ea77f4,
- 0x11d664aa, 0x12550f58, 0xe6a65f4b, 0xe52534b9,
- 0x0e41fe6d, 0x0dc2959f, 0xf931c58c, 0xfab2ae7e,
- 0xb149e330, 0xb2ca88c2, 0x4639d8d1, 0x45bab323,
- 0xaede79f7, 0xad5d1205, 0x59ae4216, 0x5a2d29e4,
- 0x7e113aba, 0x7d925148, 0x8961015b, 0x8ae26aa9,
- 0x6186a07d, 0x6205cb8f, 0x96f69b9c, 0x9575f06e,
- 0xbc1d7b41, 0xbf9e10b3, 0x4b6d40a0, 0x48ee2b52,
- 0xa38ae186, 0xa0098a74, 0x54fada67, 0x5779b195,
- 0x7345a2cb, 0x70c6c939, 0x8435992a, 0x87b6f2d8,
- 0x6cd2380c, 0x6f5153fe, 0x9ba203ed, 0x9821681f,
- 0xd3da2551, 0xd0594ea3, 0x24aa1eb0, 0x27297542,
- 0xcc4dbf96, 0xcfced464, 0x3b3d8477, 0x38beef85,
- 0x1c82fcdb, 0x1f019729, 0xebf2c73a, 0xe871acc8,
- 0x0315661c, 0x00960dee, 0xf4655dfd, 0xf7e6360f,
- 0x6293c661, 0x6110ad93, 0x95e3fd80, 0x96609672,
- 0x7d045ca6, 0x7e873754, 0x8a746747, 0x89f70cb5,
- 0xadcb1feb, 0xae487419, 0x5abb240a, 0x59384ff8,
- 0xb25c852c, 0xb1dfeede, 0x452cbecd, 0x46afd53f,
- 0x0d549871, 0x0ed7f383, 0xfa24a390, 0xf9a7c862,
- 0x12c302b6, 0x11406944, 0xe5b33957, 0xe63052a5,
- 0xc20c41fb, 0xc18f2a09, 0x357c7a1a, 0x36ff11e8,
- 0xdd9bdb3c, 0xde18b0ce, 0x2aebe0dd, 0x29688b2f,
- 0x783bf682, 0x7bb89d70, 0x8f4bcd63, 0x8cc8a691,
- 0x67ac6c45, 0x642f07b7, 0x90dc57a4, 0x935f3c56,
- 0xb7632f08, 0xb4e044fa, 0x401314e9, 0x43907f1b,
- 0xa8f4b5cf, 0xab77de3d, 0x5f848e2e, 0x5c07e5dc,
- 0x17fca892, 0x147fc360, 0xe08c9373, 0xe30ff881,
- 0x086b3255, 0x0be859a7, 0xff1b09b4, 0xfc986246,
- 0xd8a47118, 0xdb271aea, 0x2fd44af9, 0x2c57210b,
- 0xc733ebdf, 0xc4b0802d, 0x3043d03e, 0x33c0bbcc,
- 0xa6b54ba2, 0xa5362050, 0x51c57043, 0x52461bb1,
- 0xb922d165, 0xbaa1ba97, 0x4e52ea84, 0x4dd18176,
- 0x69ed9228, 0x6a6ef9da, 0x9e9da9c9, 0x9d1ec23b,
- 0x767a08ef, 0x75f9631d, 0x810a330e, 0x828958fc,
- 0xc97215b2, 0xcaf17e40, 0x3e022e53, 0x3d8145a1,
- 0xd6e58f75, 0xd566e487, 0x2195b494, 0x2216df66,
- 0x062acc38, 0x05a9a7ca, 0xf15af7d9, 0xf2d99c2b,
- 0x19bd56ff, 0x1a3e3d0d, 0xeecd6d1e, 0xed4e06ec,
- 0xc4268dc3, 0xc7a5e631, 0x3356b622, 0x30d5ddd0,
- 0xdbb11704, 0xd8327cf6, 0x2cc12ce5, 0x2f424717,
- 0x0b7e5449, 0x08fd3fbb, 0xfc0e6fa8, 0xff8d045a,
- 0x14e9ce8e, 0x176aa57c, 0xe399f56f, 0xe01a9e9d,
- 0xabe1d3d3, 0xa862b821, 0x5c91e832, 0x5f1283c0,
- 0xb4764914, 0xb7f522e6, 0x430672f5, 0x40851907,
- 0x64b90a59, 0x673a61ab, 0x93c931b8, 0x904a5a4a,
- 0x7b2e909e, 0x78adfb6c, 0x8c5eab7f, 0x8fddc08d,
- 0x1aa830e3, 0x192b5b11, 0xedd80b02, 0xee5b60f0,
- 0x053faa24, 0x06bcc1d6, 0xf24f91c5, 0xf1ccfa37,
- 0xd5f0e969, 0xd673829b, 0x2280d288, 0x2103b97a,
- 0xca6773ae, 0xc9e4185c, 0x3d17484f, 0x3e9423bd,
- 0x756f6ef3, 0x76ec0501, 0x821f5512, 0x819c3ee0,
- 0x6af8f434, 0x697b9fc6, 0x9d88cfd5, 0x9e0ba427,
- 0xba37b779, 0xb9b4dc8b, 0x4d478c98, 0x4ec4e76a,
- 0xa5a02dbe, 0xa623464c, 0x52d0165f, 0x51537dad
- },{
- 0x00000000, 0x7798a213, 0xee304527, 0x99a8e734,
- 0xdc618a4e, 0xabf9285d, 0x3251cf69, 0x45c96d7a,
- 0xb8c3149d, 0xcf5bb68e, 0x56f351ba, 0x216bf3a9,
- 0x64a29ed3, 0x133a3cc0, 0x8a92dbf4, 0xfd0a79e7,
- 0x81f1c53f, 0xf669672c, 0x6fc18018, 0x1859220b,
- 0x5d904f71, 0x2a08ed62, 0xb3a00a56, 0xc438a845,
- 0x3932d1a2, 0x4eaa73b1, 0xd7029485, 0xa09a3696,
- 0xe5535bec, 0x92cbf9ff, 0x0b631ecb, 0x7cfbbcd8,
- 0x02e38b7f, 0x757b296c, 0xecd3ce58, 0x9b4b6c4b,
- 0xde820131, 0xa91aa322, 0x30b24416, 0x472ae605,
- 0xba209fe2, 0xcdb83df1, 0x5410dac5, 0x238878d6,
- 0x664115ac, 0x11d9b7bf, 0x8871508b, 0xffe9f298,
- 0x83124e40, 0xf48aec53, 0x6d220b67, 0x1abaa974,
- 0x5f73c40e, 0x28eb661d, 0xb1438129, 0xc6db233a,
- 0x3bd15add, 0x4c49f8ce, 0xd5e11ffa, 0xa279bde9,
- 0xe7b0d093, 0x90287280, 0x098095b4, 0x7e1837a7,
- 0x04c617ff, 0x735eb5ec, 0xeaf652d8, 0x9d6ef0cb,
- 0xd8a79db1, 0xaf3f3fa2, 0x3697d896, 0x410f7a85,
- 0xbc050362, 0xcb9da171, 0x52354645, 0x25ade456,
- 0x6064892c, 0x17fc2b3f, 0x8e54cc0b, 0xf9cc6e18,
- 0x8537d2c0, 0xf2af70d3, 0x6b0797e7, 0x1c9f35f4,
- 0x5956588e, 0x2ecefa9d, 0xb7661da9, 0xc0febfba,
- 0x3df4c65d, 0x4a6c644e, 0xd3c4837a, 0xa45c2169,
- 0xe1954c13, 0x960dee00, 0x0fa50934, 0x783dab27,
- 0x06259c80, 0x71bd3e93, 0xe815d9a7, 0x9f8d7bb4,
- 0xda4416ce, 0xaddcb4dd, 0x347453e9, 0x43ecf1fa,
- 0xbee6881d, 0xc97e2a0e, 0x50d6cd3a, 0x274e6f29,
- 0x62870253, 0x151fa040, 0x8cb74774, 0xfb2fe567,
- 0x87d459bf, 0xf04cfbac, 0x69e41c98, 0x1e7cbe8b,
- 0x5bb5d3f1, 0x2c2d71e2, 0xb58596d6, 0xc21d34c5,
- 0x3f174d22, 0x488fef31, 0xd1270805, 0xa6bfaa16,
- 0xe376c76c, 0x94ee657f, 0x0d46824b, 0x7ade2058,
- 0xf9fac3fb, 0x8e6261e8, 0x17ca86dc, 0x605224cf,
- 0x259b49b5, 0x5203eba6, 0xcbab0c92, 0xbc33ae81,
- 0x4139d766, 0x36a17575, 0xaf099241, 0xd8913052,
- 0x9d585d28, 0xeac0ff3b, 0x7368180f, 0x04f0ba1c,
- 0x780b06c4, 0x0f93a4d7, 0x963b43e3, 0xe1a3e1f0,
- 0xa46a8c8a, 0xd3f22e99, 0x4a5ac9ad, 0x3dc26bbe,
- 0xc0c81259, 0xb750b04a, 0x2ef8577e, 0x5960f56d,
- 0x1ca99817, 0x6b313a04, 0xf299dd30, 0x85017f23,
- 0xfb194884, 0x8c81ea97, 0x15290da3, 0x62b1afb0,
- 0x2778c2ca, 0x50e060d9, 0xc94887ed, 0xbed025fe,
- 0x43da5c19, 0x3442fe0a, 0xadea193e, 0xda72bb2d,
- 0x9fbbd657, 0xe8237444, 0x718b9370, 0x06133163,
- 0x7ae88dbb, 0x0d702fa8, 0x94d8c89c, 0xe3406a8f,
- 0xa68907f5, 0xd111a5e6, 0x48b942d2, 0x3f21e0c1,
- 0xc22b9926, 0xb5b33b35, 0x2c1bdc01, 0x5b837e12,
- 0x1e4a1368, 0x69d2b17b, 0xf07a564f, 0x87e2f45c,
- 0xfd3cd404, 0x8aa47617, 0x130c9123, 0x64943330,
- 0x215d5e4a, 0x56c5fc59, 0xcf6d1b6d, 0xb8f5b97e,
- 0x45ffc099, 0x3267628a, 0xabcf85be, 0xdc5727ad,
- 0x999e4ad7, 0xee06e8c4, 0x77ae0ff0, 0x0036ade3,
- 0x7ccd113b, 0x0b55b328, 0x92fd541c, 0xe565f60f,
- 0xa0ac9b75, 0xd7343966, 0x4e9cde52, 0x39047c41,
- 0xc40e05a6, 0xb396a7b5, 0x2a3e4081, 0x5da6e292,
- 0x186f8fe8, 0x6ff72dfb, 0xf65fcacf, 0x81c768dc,
- 0xffdf5f7b, 0x8847fd68, 0x11ef1a5c, 0x6677b84f,
- 0x23bed535, 0x54267726, 0xcd8e9012, 0xba163201,
- 0x471c4be6, 0x3084e9f5, 0xa92c0ec1, 0xdeb4acd2,
- 0x9b7dc1a8, 0xece563bb, 0x754d848f, 0x02d5269c,
- 0x7e2e9a44, 0x09b63857, 0x901edf63, 0xe7867d70,
- 0xa24f100a, 0xd5d7b219, 0x4c7f552d, 0x3be7f73e,
- 0xc6ed8ed9, 0xb1752cca, 0x28ddcbfe, 0x5f4569ed,
- 0x1a8c0497, 0x6d14a684, 0xf4bc41b0, 0x8324e3a3
- },{
- 0x00000000, 0x7e9241a5, 0x0d526f4f, 0x73c02eea,
- 0x1aa4de9e, 0x64369f3b, 0x17f6b1d1, 0x6964f074,
- 0xc53e5138, 0xbbac109d, 0xc86c3e77, 0xb6fe7fd2,
- 0xdf9a8fa6, 0xa108ce03, 0xd2c8e0e9, 0xac5aa14c,
- 0x8a7da270, 0xf4efe3d5, 0x872fcd3f, 0xf9bd8c9a,
- 0x90d97cee, 0xee4b3d4b, 0x9d8b13a1, 0xe3195204,
- 0x4f43f348, 0x31d1b2ed, 0x42119c07, 0x3c83dda2,
- 0x55e72dd6, 0x2b756c73, 0x58b54299, 0x2627033c,
- 0x14fb44e1, 0x6a690544, 0x19a92bae, 0x673b6a0b,
- 0x0e5f9a7f, 0x70cddbda, 0x030df530, 0x7d9fb495,
- 0xd1c515d9, 0xaf57547c, 0xdc977a96, 0xa2053b33,
- 0xcb61cb47, 0xb5f38ae2, 0xc633a408, 0xb8a1e5ad,
- 0x9e86e691, 0xe014a734, 0x93d489de, 0xed46c87b,
- 0x8422380f, 0xfab079aa, 0x89705740, 0xf7e216e5,
- 0x5bb8b7a9, 0x252af60c, 0x56ead8e6, 0x28789943,
- 0x411c6937, 0x3f8e2892, 0x4c4e0678, 0x32dc47dd,
- 0xd98065c7, 0xa7122462, 0xd4d20a88, 0xaa404b2d,
- 0xc324bb59, 0xbdb6fafc, 0xce76d416, 0xb0e495b3,
- 0x1cbe34ff, 0x622c755a, 0x11ec5bb0, 0x6f7e1a15,
- 0x061aea61, 0x7888abc4, 0x0b48852e, 0x75dac48b,
- 0x53fdc7b7, 0x2d6f8612, 0x5eafa8f8, 0x203de95d,
- 0x49591929, 0x37cb588c, 0x440b7666, 0x3a9937c3,
- 0x96c3968f, 0xe851d72a, 0x9b91f9c0, 0xe503b865,
- 0x8c674811, 0xf2f509b4, 0x8135275e, 0xffa766fb,
- 0xcd7b2126, 0xb3e96083, 0xc0294e69, 0xbebb0fcc,
- 0xd7dfffb8, 0xa94dbe1d, 0xda8d90f7, 0xa41fd152,
- 0x0845701e, 0x76d731bb, 0x05171f51, 0x7b855ef4,
- 0x12e1ae80, 0x6c73ef25, 0x1fb3c1cf, 0x6121806a,
- 0x47068356, 0x3994c2f3, 0x4a54ec19, 0x34c6adbc,
- 0x5da25dc8, 0x23301c6d, 0x50f03287, 0x2e627322,
- 0x8238d26e, 0xfcaa93cb, 0x8f6abd21, 0xf1f8fc84,
- 0x989c0cf0, 0xe60e4d55, 0x95ce63bf, 0xeb5c221a,
- 0x4377278b, 0x3de5662e, 0x4e2548c4, 0x30b70961,
- 0x59d3f915, 0x2741b8b0, 0x5481965a, 0x2a13d7ff,
- 0x864976b3, 0xf8db3716, 0x8b1b19fc, 0xf5895859,
- 0x9ceda82d, 0xe27fe988, 0x91bfc762, 0xef2d86c7,
- 0xc90a85fb, 0xb798c45e, 0xc458eab4, 0xbacaab11,
- 0xd3ae5b65, 0xad3c1ac0, 0xdefc342a, 0xa06e758f,
- 0x0c34d4c3, 0x72a69566, 0x0166bb8c, 0x7ff4fa29,
- 0x16900a5d, 0x68024bf8, 0x1bc26512, 0x655024b7,
- 0x578c636a, 0x291e22cf, 0x5ade0c25, 0x244c4d80,
- 0x4d28bdf4, 0x33bafc51, 0x407ad2bb, 0x3ee8931e,
- 0x92b23252, 0xec2073f7, 0x9fe05d1d, 0xe1721cb8,
- 0x8816eccc, 0xf684ad69, 0x85448383, 0xfbd6c226,
- 0xddf1c11a, 0xa36380bf, 0xd0a3ae55, 0xae31eff0,
- 0xc7551f84, 0xb9c75e21, 0xca0770cb, 0xb495316e,
- 0x18cf9022, 0x665dd187, 0x159dff6d, 0x6b0fbec8,
- 0x026b4ebc, 0x7cf90f19, 0x0f3921f3, 0x71ab6056,
- 0x9af7424c, 0xe46503e9, 0x97a52d03, 0xe9376ca6,
- 0x80539cd2, 0xfec1dd77, 0x8d01f39d, 0xf393b238,
- 0x5fc91374, 0x215b52d1, 0x529b7c3b, 0x2c093d9e,
- 0x456dcdea, 0x3bff8c4f, 0x483fa2a5, 0x36ade300,
- 0x108ae03c, 0x6e18a199, 0x1dd88f73, 0x634aced6,
- 0x0a2e3ea2, 0x74bc7f07, 0x077c51ed, 0x79ee1048,
- 0xd5b4b104, 0xab26f0a1, 0xd8e6de4b, 0xa6749fee,
- 0xcf106f9a, 0xb1822e3f, 0xc24200d5, 0xbcd04170,
- 0x8e0c06ad, 0xf09e4708, 0x835e69e2, 0xfdcc2847,
- 0x94a8d833, 0xea3a9996, 0x99fab77c, 0xe768f6d9,
- 0x4b325795, 0x35a01630, 0x466038da, 0x38f2797f,
- 0x5196890b, 0x2f04c8ae, 0x5cc4e644, 0x2256a7e1,
- 0x0471a4dd, 0x7ae3e578, 0x0923cb92, 0x77b18a37,
- 0x1ed57a43, 0x60473be6, 0x1387150c, 0x6d1554a9,
- 0xc14ff5e5, 0xbfddb440, 0xcc1d9aaa, 0xb28fdb0f,
- 0xdbeb2b7b, 0xa5796ade, 0xd6b94434, 0xa82b0591
- },{
- 0x00000000, 0xb8aa45dd, 0x812367bf, 0x39892262,
- 0xf331227b, 0x4b9b67a6, 0x721245c4, 0xcab80019,
- 0xe66344f6, 0x5ec9012b, 0x67402349, 0xdfea6694,
- 0x1552668d, 0xadf82350, 0x94710132, 0x2cdb44ef,
- 0x3db164e9, 0x851b2134, 0xbc920356, 0x0438468b,
- 0xce804692, 0x762a034f, 0x4fa3212d, 0xf70964f0,
- 0xdbd2201f, 0x637865c2, 0x5af147a0, 0xe25b027d,
- 0x28e30264, 0x904947b9, 0xa9c065db, 0x116a2006,
- 0x8b1425d7, 0x33be600a, 0x0a374268, 0xb29d07b5,
- 0x782507ac, 0xc08f4271, 0xf9066013, 0x41ac25ce,
- 0x6d776121, 0xd5dd24fc, 0xec54069e, 0x54fe4343,
- 0x9e46435a, 0x26ec0687, 0x1f6524e5, 0xa7cf6138,
- 0xb6a5413e, 0x0e0f04e3, 0x37862681, 0x8f2c635c,
- 0x45946345, 0xfd3e2698, 0xc4b704fa, 0x7c1d4127,
- 0x50c605c8, 0xe86c4015, 0xd1e56277, 0x694f27aa,
- 0xa3f727b3, 0x1b5d626e, 0x22d4400c, 0x9a7e05d1,
- 0xe75fa6ab, 0x5ff5e376, 0x667cc114, 0xded684c9,
- 0x146e84d0, 0xacc4c10d, 0x954de36f, 0x2de7a6b2,
- 0x013ce25d, 0xb996a780, 0x801f85e2, 0x38b5c03f,
- 0xf20dc026, 0x4aa785fb, 0x732ea799, 0xcb84e244,
- 0xdaeec242, 0x6244879f, 0x5bcda5fd, 0xe367e020,
- 0x29dfe039, 0x9175a5e4, 0xa8fc8786, 0x1056c25b,
- 0x3c8d86b4, 0x8427c369, 0xbdaee10b, 0x0504a4d6,
- 0xcfbca4cf, 0x7716e112, 0x4e9fc370, 0xf63586ad,
- 0x6c4b837c, 0xd4e1c6a1, 0xed68e4c3, 0x55c2a11e,
- 0x9f7aa107, 0x27d0e4da, 0x1e59c6b8, 0xa6f38365,
- 0x8a28c78a, 0x32828257, 0x0b0ba035, 0xb3a1e5e8,
- 0x7919e5f1, 0xc1b3a02c, 0xf83a824e, 0x4090c793,
- 0x51fae795, 0xe950a248, 0xd0d9802a, 0x6873c5f7,
- 0xa2cbc5ee, 0x1a618033, 0x23e8a251, 0x9b42e78c,
- 0xb799a363, 0x0f33e6be, 0x36bac4dc, 0x8e108101,
- 0x44a88118, 0xfc02c4c5, 0xc58be6a7, 0x7d21a37a,
- 0x3fc9a052, 0x8763e58f, 0xbeeac7ed, 0x06408230,
- 0xccf88229, 0x7452c7f4, 0x4ddbe596, 0xf571a04b,
- 0xd9aae4a4, 0x6100a179, 0x5889831b, 0xe023c6c6,
- 0x2a9bc6df, 0x92318302, 0xabb8a160, 0x1312e4bd,
- 0x0278c4bb, 0xbad28166, 0x835ba304, 0x3bf1e6d9,
- 0xf149e6c0, 0x49e3a31d, 0x706a817f, 0xc8c0c4a2,
- 0xe41b804d, 0x5cb1c590, 0x6538e7f2, 0xdd92a22f,
- 0x172aa236, 0xaf80e7eb, 0x9609c589, 0x2ea38054,
- 0xb4dd8585, 0x0c77c058, 0x35fee23a, 0x8d54a7e7,
- 0x47eca7fe, 0xff46e223, 0xc6cfc041, 0x7e65859c,
- 0x52bec173, 0xea1484ae, 0xd39da6cc, 0x6b37e311,
- 0xa18fe308, 0x1925a6d5, 0x20ac84b7, 0x9806c16a,
- 0x896ce16c, 0x31c6a4b1, 0x084f86d3, 0xb0e5c30e,
- 0x7a5dc317, 0xc2f786ca, 0xfb7ea4a8, 0x43d4e175,
- 0x6f0fa59a, 0xd7a5e047, 0xee2cc225, 0x568687f8,
- 0x9c3e87e1, 0x2494c23c, 0x1d1de05e, 0xa5b7a583,
- 0xd89606f9, 0x603c4324, 0x59b56146, 0xe11f249b,
- 0x2ba72482, 0x930d615f, 0xaa84433d, 0x122e06e0,
- 0x3ef5420f, 0x865f07d2, 0xbfd625b0, 0x077c606d,
- 0xcdc46074, 0x756e25a9, 0x4ce707cb, 0xf44d4216,
- 0xe5276210, 0x5d8d27cd, 0x640405af, 0xdcae4072,
- 0x1616406b, 0xaebc05b6, 0x973527d4, 0x2f9f6209,
- 0x034426e6, 0xbbee633b, 0x82674159, 0x3acd0484,
- 0xf075049d, 0x48df4140, 0x71566322, 0xc9fc26ff,
- 0x5382232e, 0xeb2866f3, 0xd2a14491, 0x6a0b014c,
- 0xa0b30155, 0x18194488, 0x219066ea, 0x993a2337,
- 0xb5e167d8, 0x0d4b2205, 0x34c20067, 0x8c6845ba,
- 0x46d045a3, 0xfe7a007e, 0xc7f3221c, 0x7f5967c1,
- 0x6e3347c7, 0xd699021a, 0xef102078, 0x57ba65a5,
- 0x9d0265bc, 0x25a82061, 0x1c210203, 0xa48b47de,
- 0x88500331, 0x30fa46ec, 0x0973648e, 0xb1d92153,
- 0x7b61214a, 0xc3cb6497, 0xfa4246f5, 0x42e80328
- },{
- 0x00000000, 0xac6f1138, 0x58df2270, 0xf4b03348,
- 0xb0be45e0, 0x1cd154d8, 0xe8616790, 0x440e76a8,
- 0x910b67c5, 0x3d6476fd, 0xc9d445b5, 0x65bb548d,
- 0x21b52225, 0x8dda331d, 0x796a0055, 0xd505116d,
- 0xd361228f, 0x7f0e33b7, 0x8bbe00ff, 0x27d111c7,
- 0x63df676f, 0xcfb07657, 0x3b00451f, 0x976f5427,
- 0x426a454a, 0xee055472, 0x1ab5673a, 0xb6da7602,
- 0xf2d400aa, 0x5ebb1192, 0xaa0b22da, 0x066433e2,
- 0x57b5a81b, 0xfbdab923, 0x0f6a8a6b, 0xa3059b53,
- 0xe70bedfb, 0x4b64fcc3, 0xbfd4cf8b, 0x13bbdeb3,
- 0xc6becfde, 0x6ad1dee6, 0x9e61edae, 0x320efc96,
- 0x76008a3e, 0xda6f9b06, 0x2edfa84e, 0x82b0b976,
- 0x84d48a94, 0x28bb9bac, 0xdc0ba8e4, 0x7064b9dc,
- 0x346acf74, 0x9805de4c, 0x6cb5ed04, 0xc0dafc3c,
- 0x15dfed51, 0xb9b0fc69, 0x4d00cf21, 0xe16fde19,
- 0xa561a8b1, 0x090eb989, 0xfdbe8ac1, 0x51d19bf9,
- 0xae6a5137, 0x0205400f, 0xf6b57347, 0x5ada627f,
- 0x1ed414d7, 0xb2bb05ef, 0x460b36a7, 0xea64279f,
- 0x3f6136f2, 0x930e27ca, 0x67be1482, 0xcbd105ba,
- 0x8fdf7312, 0x23b0622a, 0xd7005162, 0x7b6f405a,
- 0x7d0b73b8, 0xd1646280, 0x25d451c8, 0x89bb40f0,
- 0xcdb53658, 0x61da2760, 0x956a1428, 0x39050510,
- 0xec00147d, 0x406f0545, 0xb4df360d, 0x18b02735,
- 0x5cbe519d, 0xf0d140a5, 0x046173ed, 0xa80e62d5,
- 0xf9dff92c, 0x55b0e814, 0xa100db5c, 0x0d6fca64,
- 0x4961bccc, 0xe50eadf4, 0x11be9ebc, 0xbdd18f84,
- 0x68d49ee9, 0xc4bb8fd1, 0x300bbc99, 0x9c64ada1,
- 0xd86adb09, 0x7405ca31, 0x80b5f979, 0x2cdae841,
- 0x2abedba3, 0x86d1ca9b, 0x7261f9d3, 0xde0ee8eb,
- 0x9a009e43, 0x366f8f7b, 0xc2dfbc33, 0x6eb0ad0b,
- 0xbbb5bc66, 0x17daad5e, 0xe36a9e16, 0x4f058f2e,
- 0x0b0bf986, 0xa764e8be, 0x53d4dbf6, 0xffbbcace,
- 0x5cd5a26e, 0xf0bab356, 0x040a801e, 0xa8659126,
- 0xec6be78e, 0x4004f6b6, 0xb4b4c5fe, 0x18dbd4c6,
- 0xcddec5ab, 0x61b1d493, 0x9501e7db, 0x396ef6e3,
- 0x7d60804b, 0xd10f9173, 0x25bfa23b, 0x89d0b303,
- 0x8fb480e1, 0x23db91d9, 0xd76ba291, 0x7b04b3a9,
- 0x3f0ac501, 0x9365d439, 0x67d5e771, 0xcbbaf649,
- 0x1ebfe724, 0xb2d0f61c, 0x4660c554, 0xea0fd46c,
- 0xae01a2c4, 0x026eb3fc, 0xf6de80b4, 0x5ab1918c,
- 0x0b600a75, 0xa70f1b4d, 0x53bf2805, 0xffd0393d,
- 0xbbde4f95, 0x17b15ead, 0xe3016de5, 0x4f6e7cdd,
- 0x9a6b6db0, 0x36047c88, 0xc2b44fc0, 0x6edb5ef8,
- 0x2ad52850, 0x86ba3968, 0x720a0a20, 0xde651b18,
- 0xd80128fa, 0x746e39c2, 0x80de0a8a, 0x2cb11bb2,
- 0x68bf6d1a, 0xc4d07c22, 0x30604f6a, 0x9c0f5e52,
- 0x490a4f3f, 0xe5655e07, 0x11d56d4f, 0xbdba7c77,
- 0xf9b40adf, 0x55db1be7, 0xa16b28af, 0x0d043997,
- 0xf2bff359, 0x5ed0e261, 0xaa60d129, 0x060fc011,
- 0x4201b6b9, 0xee6ea781, 0x1ade94c9, 0xb6b185f1,
- 0x63b4949c, 0xcfdb85a4, 0x3b6bb6ec, 0x9704a7d4,
- 0xd30ad17c, 0x7f65c044, 0x8bd5f30c, 0x27bae234,
- 0x21ded1d6, 0x8db1c0ee, 0x7901f3a6, 0xd56ee29e,
- 0x91609436, 0x3d0f850e, 0xc9bfb646, 0x65d0a77e,
- 0xb0d5b613, 0x1cbaa72b, 0xe80a9463, 0x4465855b,
- 0x006bf3f3, 0xac04e2cb, 0x58b4d183, 0xf4dbc0bb,
- 0xa50a5b42, 0x09654a7a, 0xfdd57932, 0x51ba680a,
- 0x15b41ea2, 0xb9db0f9a, 0x4d6b3cd2, 0xe1042dea,
- 0x34013c87, 0x986e2dbf, 0x6cde1ef7, 0xc0b10fcf,
- 0x84bf7967, 0x28d0685f, 0xdc605b17, 0x700f4a2f,
- 0x766b79cd, 0xda0468f5, 0x2eb45bbd, 0x82db4a85,
- 0xc6d53c2d, 0x6aba2d15, 0x9e0a1e5d, 0x32650f65,
- 0xe7601e08, 0x4b0f0f30, 0xbfbf3c78, 0x13d02d40,
- 0x57de5be8, 0xfbb14ad0, 0x0f017998, 0xa36e68a0
- },{
- 0x00000000, 0x196b30ef, 0xc3a08cdb, 0xdacbbc34,
- 0x7737f5b2, 0x6e5cc55d, 0xb4977969, 0xadfc4986,
- 0x1f180660, 0x0673368f, 0xdcb88abb, 0xc5d3ba54,
- 0x682ff3d2, 0x7144c33d, 0xab8f7f09, 0xb2e44fe6,
- 0x3e300cc0, 0x275b3c2f, 0xfd90801b, 0xe4fbb0f4,
- 0x4907f972, 0x506cc99d, 0x8aa775a9, 0x93cc4546,
- 0x21280aa0, 0x38433a4f, 0xe288867b, 0xfbe3b694,
- 0x561fff12, 0x4f74cffd, 0x95bf73c9, 0x8cd44326,
- 0x8d16f485, 0x947dc46a, 0x4eb6785e, 0x57dd48b1,
- 0xfa210137, 0xe34a31d8, 0x39818dec, 0x20eabd03,
- 0x920ef2e5, 0x8b65c20a, 0x51ae7e3e, 0x48c54ed1,
- 0xe5390757, 0xfc5237b8, 0x26998b8c, 0x3ff2bb63,
- 0xb326f845, 0xaa4dc8aa, 0x7086749e, 0x69ed4471,
- 0xc4110df7, 0xdd7a3d18, 0x07b1812c, 0x1edab1c3,
- 0xac3efe25, 0xb555ceca, 0x6f9e72fe, 0x76f54211,
- 0xdb090b97, 0xc2623b78, 0x18a9874c, 0x01c2b7a3,
- 0xeb5b040e, 0xf23034e1, 0x28fb88d5, 0x3190b83a,
- 0x9c6cf1bc, 0x8507c153, 0x5fcc7d67, 0x46a74d88,
- 0xf443026e, 0xed283281, 0x37e38eb5, 0x2e88be5a,
- 0x8374f7dc, 0x9a1fc733, 0x40d47b07, 0x59bf4be8,
- 0xd56b08ce, 0xcc003821, 0x16cb8415, 0x0fa0b4fa,
- 0xa25cfd7c, 0xbb37cd93, 0x61fc71a7, 0x78974148,
- 0xca730eae, 0xd3183e41, 0x09d38275, 0x10b8b29a,
- 0xbd44fb1c, 0xa42fcbf3, 0x7ee477c7, 0x678f4728,
- 0x664df08b, 0x7f26c064, 0xa5ed7c50, 0xbc864cbf,
- 0x117a0539, 0x081135d6, 0xd2da89e2, 0xcbb1b90d,
- 0x7955f6eb, 0x603ec604, 0xbaf57a30, 0xa39e4adf,
- 0x0e620359, 0x170933b6, 0xcdc28f82, 0xd4a9bf6d,
- 0x587dfc4b, 0x4116cca4, 0x9bdd7090, 0x82b6407f,
- 0x2f4a09f9, 0x36213916, 0xecea8522, 0xf581b5cd,
- 0x4765fa2b, 0x5e0ecac4, 0x84c576f0, 0x9dae461f,
- 0x30520f99, 0x29393f76, 0xf3f28342, 0xea99b3ad,
- 0xd6b7081c, 0xcfdc38f3, 0x151784c7, 0x0c7cb428,
- 0xa180fdae, 0xb8ebcd41, 0x62207175, 0x7b4b419a,
- 0xc9af0e7c, 0xd0c43e93, 0x0a0f82a7, 0x1364b248,
- 0xbe98fbce, 0xa7f3cb21, 0x7d387715, 0x645347fa,
- 0xe88704dc, 0xf1ec3433, 0x2b278807, 0x324cb8e8,
- 0x9fb0f16e, 0x86dbc181, 0x5c107db5, 0x457b4d5a,
- 0xf79f02bc, 0xeef43253, 0x343f8e67, 0x2d54be88,
- 0x80a8f70e, 0x99c3c7e1, 0x43087bd5, 0x5a634b3a,
- 0x5ba1fc99, 0x42cacc76, 0x98017042, 0x816a40ad,
- 0x2c96092b, 0x35fd39c4, 0xef3685f0, 0xf65db51f,
- 0x44b9faf9, 0x5dd2ca16, 0x87197622, 0x9e7246cd,
- 0x338e0f4b, 0x2ae53fa4, 0xf02e8390, 0xe945b37f,
- 0x6591f059, 0x7cfac0b6, 0xa6317c82, 0xbf5a4c6d,
- 0x12a605eb, 0x0bcd3504, 0xd1068930, 0xc86db9df,
- 0x7a89f639, 0x63e2c6d6, 0xb9297ae2, 0xa0424a0d,
- 0x0dbe038b, 0x14d53364, 0xce1e8f50, 0xd775bfbf,
- 0x3dec0c12, 0x24873cfd, 0xfe4c80c9, 0xe727b026,
- 0x4adbf9a0, 0x53b0c94f, 0x897b757b, 0x90104594,
- 0x22f40a72, 0x3b9f3a9d, 0xe15486a9, 0xf83fb646,
- 0x55c3ffc0, 0x4ca8cf2f, 0x9663731b, 0x8f0843f4,
- 0x03dc00d2, 0x1ab7303d, 0xc07c8c09, 0xd917bce6,
- 0x74ebf560, 0x6d80c58f, 0xb74b79bb, 0xae204954,
- 0x1cc406b2, 0x05af365d, 0xdf648a69, 0xc60fba86,
- 0x6bf3f300, 0x7298c3ef, 0xa8537fdb, 0xb1384f34,
- 0xb0faf897, 0xa991c878, 0x735a744c, 0x6a3144a3,
- 0xc7cd0d25, 0xdea63dca, 0x046d81fe, 0x1d06b111,
- 0xafe2fef7, 0xb689ce18, 0x6c42722c, 0x752942c3,
- 0xd8d50b45, 0xc1be3baa, 0x1b75879e, 0x021eb771,
- 0x8ecaf457, 0x97a1c4b8, 0x4d6a788c, 0x54014863,
- 0xf9fd01e5, 0xe096310a, 0x3a5d8d3e, 0x2336bdd1,
- 0x91d2f237, 0x88b9c2d8, 0x52727eec, 0x4b194e03,
- 0xe6e50785, 0xff8e376a, 0x25458b5e, 0x3c2ebbb1
- },{
- 0x00000000, 0xc82c0368, 0x905906d0, 0x587505b8,
- 0xd1c5e0a5, 0x19e9e3cd, 0x419ce675, 0x89b0e51d,
- 0x53fd2d4e, 0x9bd12e26, 0xc3a42b9e, 0x0b8828f6,
- 0x8238cdeb, 0x4a14ce83, 0x1261cb3b, 0xda4dc853,
- 0xa6fa5b9c, 0x6ed658f4, 0x36a35d4c, 0xfe8f5e24,
- 0x773fbb39, 0xbf13b851, 0xe766bde9, 0x2f4abe81,
- 0xf50776d2, 0x3d2b75ba, 0x655e7002, 0xad72736a,
- 0x24c29677, 0xecee951f, 0xb49b90a7, 0x7cb793cf,
- 0xbd835b3d, 0x75af5855, 0x2dda5ded, 0xe5f65e85,
- 0x6c46bb98, 0xa46ab8f0, 0xfc1fbd48, 0x3433be20,
- 0xee7e7673, 0x2652751b, 0x7e2770a3, 0xb60b73cb,
- 0x3fbb96d6, 0xf79795be, 0xafe29006, 0x67ce936e,
- 0x1b7900a1, 0xd35503c9, 0x8b200671, 0x430c0519,
- 0xcabce004, 0x0290e36c, 0x5ae5e6d4, 0x92c9e5bc,
- 0x48842def, 0x80a82e87, 0xd8dd2b3f, 0x10f12857,
- 0x9941cd4a, 0x516dce22, 0x0918cb9a, 0xc134c8f2,
- 0x7a07b77a, 0xb22bb412, 0xea5eb1aa, 0x2272b2c2,
- 0xabc257df, 0x63ee54b7, 0x3b9b510f, 0xf3b75267,
- 0x29fa9a34, 0xe1d6995c, 0xb9a39ce4, 0x718f9f8c,
- 0xf83f7a91, 0x301379f9, 0x68667c41, 0xa04a7f29,
- 0xdcfdece6, 0x14d1ef8e, 0x4ca4ea36, 0x8488e95e,
- 0x0d380c43, 0xc5140f2b, 0x9d610a93, 0x554d09fb,
- 0x8f00c1a8, 0x472cc2c0, 0x1f59c778, 0xd775c410,
- 0x5ec5210d, 0x96e92265, 0xce9c27dd, 0x06b024b5,
- 0xc784ec47, 0x0fa8ef2f, 0x57ddea97, 0x9ff1e9ff,
- 0x16410ce2, 0xde6d0f8a, 0x86180a32, 0x4e34095a,
- 0x9479c109, 0x5c55c261, 0x0420c7d9, 0xcc0cc4b1,
- 0x45bc21ac, 0x8d9022c4, 0xd5e5277c, 0x1dc92414,
- 0x617eb7db, 0xa952b4b3, 0xf127b10b, 0x390bb263,
- 0xb0bb577e, 0x78975416, 0x20e251ae, 0xe8ce52c6,
- 0x32839a95, 0xfaaf99fd, 0xa2da9c45, 0x6af69f2d,
- 0xe3467a30, 0x2b6a7958, 0x731f7ce0, 0xbb337f88,
- 0xf40e6ef5, 0x3c226d9d, 0x64576825, 0xac7b6b4d,
- 0x25cb8e50, 0xede78d38, 0xb5928880, 0x7dbe8be8,
- 0xa7f343bb, 0x6fdf40d3, 0x37aa456b, 0xff864603,
- 0x7636a31e, 0xbe1aa076, 0xe66fa5ce, 0x2e43a6a6,
- 0x52f43569, 0x9ad83601, 0xc2ad33b9, 0x0a8130d1,
- 0x8331d5cc, 0x4b1dd6a4, 0x1368d31c, 0xdb44d074,
- 0x01091827, 0xc9251b4f, 0x91501ef7, 0x597c1d9f,
- 0xd0ccf882, 0x18e0fbea, 0x4095fe52, 0x88b9fd3a,
- 0x498d35c8, 0x81a136a0, 0xd9d43318, 0x11f83070,
- 0x9848d56d, 0x5064d605, 0x0811d3bd, 0xc03dd0d5,
- 0x1a701886, 0xd25c1bee, 0x8a291e56, 0x42051d3e,
- 0xcbb5f823, 0x0399fb4b, 0x5becfef3, 0x93c0fd9b,
- 0xef776e54, 0x275b6d3c, 0x7f2e6884, 0xb7026bec,
- 0x3eb28ef1, 0xf69e8d99, 0xaeeb8821, 0x66c78b49,
- 0xbc8a431a, 0x74a64072, 0x2cd345ca, 0xe4ff46a2,
- 0x6d4fa3bf, 0xa563a0d7, 0xfd16a56f, 0x353aa607,
- 0x8e09d98f, 0x4625dae7, 0x1e50df5f, 0xd67cdc37,
- 0x5fcc392a, 0x97e03a42, 0xcf953ffa, 0x07b93c92,
- 0xddf4f4c1, 0x15d8f7a9, 0x4dadf211, 0x8581f179,
- 0x0c311464, 0xc41d170c, 0x9c6812b4, 0x544411dc,
- 0x28f38213, 0xe0df817b, 0xb8aa84c3, 0x708687ab,
- 0xf93662b6, 0x311a61de, 0x696f6466, 0xa143670e,
- 0x7b0eaf5d, 0xb322ac35, 0xeb57a98d, 0x237baae5,
- 0xaacb4ff8, 0x62e74c90, 0x3a924928, 0xf2be4a40,
- 0x338a82b2, 0xfba681da, 0xa3d38462, 0x6bff870a,
- 0xe24f6217, 0x2a63617f, 0x721664c7, 0xba3a67af,
- 0x6077affc, 0xa85bac94, 0xf02ea92c, 0x3802aa44,
- 0xb1b24f59, 0x799e4c31, 0x21eb4989, 0xe9c74ae1,
- 0x9570d92e, 0x5d5cda46, 0x0529dffe, 0xcd05dc96,
- 0x44b5398b, 0x8c993ae3, 0xd4ec3f5b, 0x1cc03c33,
- 0xc68df460, 0x0ea1f708, 0x56d4f2b0, 0x9ef8f1d8,
- 0x174814c5, 0xdf6417ad, 0x87111215, 0x4f3d117d
- },{
- 0x00000000, 0x277d3c49, 0x4efa7892, 0x698744db,
- 0x6d821d21, 0x4aff2168, 0x237865b3, 0x040559fa,
- 0xda043b42, 0xfd79070b, 0x94fe43d0, 0xb3837f99,
- 0xb7862663, 0x90fb1a2a, 0xf97c5ef1, 0xde0162b8,
- 0xb4097684, 0x93744acd, 0xfaf30e16, 0xdd8e325f,
- 0xd98b6ba5, 0xfef657ec, 0x97711337, 0xb00c2f7e,
- 0x6e0d4dc6, 0x4970718f, 0x20f73554, 0x078a091d,
- 0x038f50e7, 0x24f26cae, 0x4d752875, 0x6a08143c,
- 0x9965000d, 0xbe183c44, 0xd79f789f, 0xf0e244d6,
- 0xf4e71d2c, 0xd39a2165, 0xba1d65be, 0x9d6059f7,
- 0x43613b4f, 0x641c0706, 0x0d9b43dd, 0x2ae67f94,
- 0x2ee3266e, 0x099e1a27, 0x60195efc, 0x476462b5,
- 0x2d6c7689, 0x0a114ac0, 0x63960e1b, 0x44eb3252,
- 0x40ee6ba8, 0x679357e1, 0x0e14133a, 0x29692f73,
- 0xf7684dcb, 0xd0157182, 0xb9923559, 0x9eef0910,
- 0x9aea50ea, 0xbd976ca3, 0xd4102878, 0xf36d1431,
- 0x32cb001a, 0x15b63c53, 0x7c317888, 0x5b4c44c1,
- 0x5f491d3b, 0x78342172, 0x11b365a9, 0x36ce59e0,
- 0xe8cf3b58, 0xcfb20711, 0xa63543ca, 0x81487f83,
- 0x854d2679, 0xa2301a30, 0xcbb75eeb, 0xecca62a2,
- 0x86c2769e, 0xa1bf4ad7, 0xc8380e0c, 0xef453245,
- 0xeb406bbf, 0xcc3d57f6, 0xa5ba132d, 0x82c72f64,
- 0x5cc64ddc, 0x7bbb7195, 0x123c354e, 0x35410907,
- 0x314450fd, 0x16396cb4, 0x7fbe286f, 0x58c31426,
- 0xabae0017, 0x8cd33c5e, 0xe5547885, 0xc22944cc,
- 0xc62c1d36, 0xe151217f, 0x88d665a4, 0xafab59ed,
- 0x71aa3b55, 0x56d7071c, 0x3f5043c7, 0x182d7f8e,
- 0x1c282674, 0x3b551a3d, 0x52d25ee6, 0x75af62af,
- 0x1fa77693, 0x38da4ada, 0x515d0e01, 0x76203248,
- 0x72256bb2, 0x555857fb, 0x3cdf1320, 0x1ba22f69,
- 0xc5a34dd1, 0xe2de7198, 0x8b593543, 0xac24090a,
- 0xa82150f0, 0x8f5c6cb9, 0xe6db2862, 0xc1a6142b,
- 0x64960134, 0x43eb3d7d, 0x2a6c79a6, 0x0d1145ef,
- 0x09141c15, 0x2e69205c, 0x47ee6487, 0x609358ce,
- 0xbe923a76, 0x99ef063f, 0xf06842e4, 0xd7157ead,
- 0xd3102757, 0xf46d1b1e, 0x9dea5fc5, 0xba97638c,
- 0xd09f77b0, 0xf7e24bf9, 0x9e650f22, 0xb918336b,
- 0xbd1d6a91, 0x9a6056d8, 0xf3e71203, 0xd49a2e4a,
- 0x0a9b4cf2, 0x2de670bb, 0x44613460, 0x631c0829,
- 0x671951d3, 0x40646d9a, 0x29e32941, 0x0e9e1508,
- 0xfdf30139, 0xda8e3d70, 0xb30979ab, 0x947445e2,
- 0x90711c18, 0xb70c2051, 0xde8b648a, 0xf9f658c3,
- 0x27f73a7b, 0x008a0632, 0x690d42e9, 0x4e707ea0,
- 0x4a75275a, 0x6d081b13, 0x048f5fc8, 0x23f26381,
- 0x49fa77bd, 0x6e874bf4, 0x07000f2f, 0x207d3366,
- 0x24786a9c, 0x030556d5, 0x6a82120e, 0x4dff2e47,
- 0x93fe4cff, 0xb48370b6, 0xdd04346d, 0xfa790824,
- 0xfe7c51de, 0xd9016d97, 0xb086294c, 0x97fb1505,
- 0x565d012e, 0x71203d67, 0x18a779bc, 0x3fda45f5,
- 0x3bdf1c0f, 0x1ca22046, 0x7525649d, 0x525858d4,
- 0x8c593a6c, 0xab240625, 0xc2a342fe, 0xe5de7eb7,
- 0xe1db274d, 0xc6a61b04, 0xaf215fdf, 0x885c6396,
- 0xe25477aa, 0xc5294be3, 0xacae0f38, 0x8bd33371,
- 0x8fd66a8b, 0xa8ab56c2, 0xc12c1219, 0xe6512e50,
- 0x38504ce8, 0x1f2d70a1, 0x76aa347a, 0x51d70833,
- 0x55d251c9, 0x72af6d80, 0x1b28295b, 0x3c551512,
- 0xcf380123, 0xe8453d6a, 0x81c279b1, 0xa6bf45f8,
- 0xa2ba1c02, 0x85c7204b, 0xec406490, 0xcb3d58d9,
- 0x153c3a61, 0x32410628, 0x5bc642f3, 0x7cbb7eba,
- 0x78be2740, 0x5fc31b09, 0x36445fd2, 0x1139639b,
- 0x7b3177a7, 0x5c4c4bee, 0x35cb0f35, 0x12b6337c,
- 0x16b36a86, 0x31ce56cf, 0x58491214, 0x7f342e5d,
- 0xa1354ce5, 0x864870ac, 0xefcf3477, 0xc8b2083e,
- 0xccb751c4, 0xebca6d8d, 0x824d2956, 0xa530151f
- }
-#else
- {
- 0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4,
- 0xc79a971f, 0x35f1141c, 0x26a1e7e8, 0xd4ca64eb,
- 0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b,
- 0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24,
- 0x105ec76f, 0xe235446c, 0xf165b798, 0x030e349b,
- 0xd7c45070, 0x25afd373, 0x36ff2087, 0xc494a384,
- 0x9a879fa0, 0x68ec1ca3, 0x7bbcef57, 0x89d76c54,
- 0x5d1d08bf, 0xaf768bbc, 0xbc267848, 0x4e4dfb4b,
- 0x20bd8ede, 0xd2d60ddd, 0xc186fe29, 0x33ed7d2a,
- 0xe72719c1, 0x154c9ac2, 0x061c6936, 0xf477ea35,
- 0xaa64d611, 0x580f5512, 0x4b5fa6e6, 0xb93425e5,
- 0x6dfe410e, 0x9f95c20d, 0x8cc531f9, 0x7eaeb2fa,
- 0x30e349b1, 0xc288cab2, 0xd1d83946, 0x23b3ba45,
- 0xf779deae, 0x05125dad, 0x1642ae59, 0xe4292d5a,
- 0xba3a117e, 0x4851927d, 0x5b016189, 0xa96ae28a,
- 0x7da08661, 0x8fcb0562, 0x9c9bf696, 0x6ef07595,
- 0x417b1dbc, 0xb3109ebf, 0xa0406d4b, 0x522bee48,
- 0x86e18aa3, 0x748a09a0, 0x67dafa54, 0x95b17957,
- 0xcba24573, 0x39c9c670, 0x2a993584, 0xd8f2b687,
- 0x0c38d26c, 0xfe53516f, 0xed03a29b, 0x1f682198,
- 0x5125dad3, 0xa34e59d0, 0xb01eaa24, 0x42752927,
- 0x96bf4dcc, 0x64d4cecf, 0x77843d3b, 0x85efbe38,
- 0xdbfc821c, 0x2997011f, 0x3ac7f2eb, 0xc8ac71e8,
- 0x1c661503, 0xee0d9600, 0xfd5d65f4, 0x0f36e6f7,
- 0x61c69362, 0x93ad1061, 0x80fde395, 0x72966096,
- 0xa65c047d, 0x5437877e, 0x4767748a, 0xb50cf789,
- 0xeb1fcbad, 0x197448ae, 0x0a24bb5a, 0xf84f3859,
- 0x2c855cb2, 0xdeeedfb1, 0xcdbe2c45, 0x3fd5af46,
- 0x7198540d, 0x83f3d70e, 0x90a324fa, 0x62c8a7f9,
- 0xb602c312, 0x44694011, 0x5739b3e5, 0xa55230e6,
- 0xfb410cc2, 0x092a8fc1, 0x1a7a7c35, 0xe811ff36,
- 0x3cdb9bdd, 0xceb018de, 0xdde0eb2a, 0x2f8b6829,
- 0x82f63b78, 0x709db87b, 0x63cd4b8f, 0x91a6c88c,
- 0x456cac67, 0xb7072f64, 0xa457dc90, 0x563c5f93,
- 0x082f63b7, 0xfa44e0b4, 0xe9141340, 0x1b7f9043,
- 0xcfb5f4a8, 0x3dde77ab, 0x2e8e845f, 0xdce5075c,
- 0x92a8fc17, 0x60c37f14, 0x73938ce0, 0x81f80fe3,
- 0x55326b08, 0xa759e80b, 0xb4091bff, 0x466298fc,
- 0x1871a4d8, 0xea1a27db, 0xf94ad42f, 0x0b21572c,
- 0xdfeb33c7, 0x2d80b0c4, 0x3ed04330, 0xccbbc033,
- 0xa24bb5a6, 0x502036a5, 0x4370c551, 0xb11b4652,
- 0x65d122b9, 0x97baa1ba, 0x84ea524e, 0x7681d14d,
- 0x2892ed69, 0xdaf96e6a, 0xc9a99d9e, 0x3bc21e9d,
- 0xef087a76, 0x1d63f975, 0x0e330a81, 0xfc588982,
- 0xb21572c9, 0x407ef1ca, 0x532e023e, 0xa145813d,
- 0x758fe5d6, 0x87e466d5, 0x94b49521, 0x66df1622,
- 0x38cc2a06, 0xcaa7a905, 0xd9f75af1, 0x2b9cd9f2,
- 0xff56bd19, 0x0d3d3e1a, 0x1e6dcdee, 0xec064eed,
- 0xc38d26c4, 0x31e6a5c7, 0x22b65633, 0xd0ddd530,
- 0x0417b1db, 0xf67c32d8, 0xe52cc12c, 0x1747422f,
- 0x49547e0b, 0xbb3ffd08, 0xa86f0efc, 0x5a048dff,
- 0x8ecee914, 0x7ca56a17, 0x6ff599e3, 0x9d9e1ae0,
- 0xd3d3e1ab, 0x21b862a8, 0x32e8915c, 0xc083125f,
- 0x144976b4, 0xe622f5b7, 0xf5720643, 0x07198540,
- 0x590ab964, 0xab613a67, 0xb831c993, 0x4a5a4a90,
- 0x9e902e7b, 0x6cfbad78, 0x7fab5e8c, 0x8dc0dd8f,
- 0xe330a81a, 0x115b2b19, 0x020bd8ed, 0xf0605bee,
- 0x24aa3f05, 0xd6c1bc06, 0xc5914ff2, 0x37faccf1,
- 0x69e9f0d5, 0x9b8273d6, 0x88d28022, 0x7ab90321,
- 0xae7367ca, 0x5c18e4c9, 0x4f48173d, 0xbd23943e,
- 0xf36e6f75, 0x0105ec76, 0x12551f82, 0xe03e9c81,
- 0x34f4f86a, 0xc69f7b69, 0xd5cf889d, 0x27a40b9e,
- 0x79b737ba, 0x8bdcb4b9, 0x988c474d, 0x6ae7c44e,
- 0xbe2da0a5, 0x4c4623a6, 0x5f16d052, 0xad7d5351
- },{
- 0x00000000, 0x13a29877, 0x274530ee, 0x34e7a899,
- 0x4e8a61dc, 0x5d28f9ab, 0x69cf5132, 0x7a6dc945,
- 0x9d14c3b8, 0x8eb65bcf, 0xba51f356, 0xa9f36b21,
- 0xd39ea264, 0xc03c3a13, 0xf4db928a, 0xe7790afd,
- 0x3fc5f181, 0x2c6769f6, 0x1880c16f, 0x0b225918,
- 0x714f905d, 0x62ed082a, 0x560aa0b3, 0x45a838c4,
- 0xa2d13239, 0xb173aa4e, 0x859402d7, 0x96369aa0,
- 0xec5b53e5, 0xfff9cb92, 0xcb1e630b, 0xd8bcfb7c,
- 0x7f8be302, 0x6c297b75, 0x58ced3ec, 0x4b6c4b9b,
- 0x310182de, 0x22a31aa9, 0x1644b230, 0x05e62a47,
- 0xe29f20ba, 0xf13db8cd, 0xc5da1054, 0xd6788823,
- 0xac154166, 0xbfb7d911, 0x8b507188, 0x98f2e9ff,
- 0x404e1283, 0x53ec8af4, 0x670b226d, 0x74a9ba1a,
- 0x0ec4735f, 0x1d66eb28, 0x298143b1, 0x3a23dbc6,
- 0xdd5ad13b, 0xcef8494c, 0xfa1fe1d5, 0xe9bd79a2,
- 0x93d0b0e7, 0x80722890, 0xb4958009, 0xa737187e,
- 0xff17c604, 0xecb55e73, 0xd852f6ea, 0xcbf06e9d,
- 0xb19da7d8, 0xa23f3faf, 0x96d89736, 0x857a0f41,
- 0x620305bc, 0x71a19dcb, 0x45463552, 0x56e4ad25,
- 0x2c896460, 0x3f2bfc17, 0x0bcc548e, 0x186eccf9,
- 0xc0d23785, 0xd370aff2, 0xe797076b, 0xf4359f1c,
- 0x8e585659, 0x9dface2e, 0xa91d66b7, 0xbabffec0,
- 0x5dc6f43d, 0x4e646c4a, 0x7a83c4d3, 0x69215ca4,
- 0x134c95e1, 0x00ee0d96, 0x3409a50f, 0x27ab3d78,
- 0x809c2506, 0x933ebd71, 0xa7d915e8, 0xb47b8d9f,
- 0xce1644da, 0xddb4dcad, 0xe9537434, 0xfaf1ec43,
- 0x1d88e6be, 0x0e2a7ec9, 0x3acdd650, 0x296f4e27,
- 0x53028762, 0x40a01f15, 0x7447b78c, 0x67e52ffb,
- 0xbf59d487, 0xacfb4cf0, 0x981ce469, 0x8bbe7c1e,
- 0xf1d3b55b, 0xe2712d2c, 0xd69685b5, 0xc5341dc2,
- 0x224d173f, 0x31ef8f48, 0x050827d1, 0x16aabfa6,
- 0x6cc776e3, 0x7f65ee94, 0x4b82460d, 0x5820de7a,
- 0xfbc3faf9, 0xe861628e, 0xdc86ca17, 0xcf245260,
- 0xb5499b25, 0xa6eb0352, 0x920cabcb, 0x81ae33bc,
- 0x66d73941, 0x7575a136, 0x419209af, 0x523091d8,
- 0x285d589d, 0x3bffc0ea, 0x0f186873, 0x1cbaf004,
- 0xc4060b78, 0xd7a4930f, 0xe3433b96, 0xf0e1a3e1,
- 0x8a8c6aa4, 0x992ef2d3, 0xadc95a4a, 0xbe6bc23d,
- 0x5912c8c0, 0x4ab050b7, 0x7e57f82e, 0x6df56059,
- 0x1798a91c, 0x043a316b, 0x30dd99f2, 0x237f0185,
- 0x844819fb, 0x97ea818c, 0xa30d2915, 0xb0afb162,
- 0xcac27827, 0xd960e050, 0xed8748c9, 0xfe25d0be,
- 0x195cda43, 0x0afe4234, 0x3e19eaad, 0x2dbb72da,
- 0x57d6bb9f, 0x447423e8, 0x70938b71, 0x63311306,
- 0xbb8de87a, 0xa82f700d, 0x9cc8d894, 0x8f6a40e3,
- 0xf50789a6, 0xe6a511d1, 0xd242b948, 0xc1e0213f,
- 0x26992bc2, 0x353bb3b5, 0x01dc1b2c, 0x127e835b,
- 0x68134a1e, 0x7bb1d269, 0x4f567af0, 0x5cf4e287,
- 0x04d43cfd, 0x1776a48a, 0x23910c13, 0x30339464,
- 0x4a5e5d21, 0x59fcc556, 0x6d1b6dcf, 0x7eb9f5b8,
- 0x99c0ff45, 0x8a626732, 0xbe85cfab, 0xad2757dc,
- 0xd74a9e99, 0xc4e806ee, 0xf00fae77, 0xe3ad3600,
- 0x3b11cd7c, 0x28b3550b, 0x1c54fd92, 0x0ff665e5,
- 0x759baca0, 0x663934d7, 0x52de9c4e, 0x417c0439,
- 0xa6050ec4, 0xb5a796b3, 0x81403e2a, 0x92e2a65d,
- 0xe88f6f18, 0xfb2df76f, 0xcfca5ff6, 0xdc68c781,
- 0x7b5fdfff, 0x68fd4788, 0x5c1aef11, 0x4fb87766,
- 0x35d5be23, 0x26772654, 0x12908ecd, 0x013216ba,
- 0xe64b1c47, 0xf5e98430, 0xc10e2ca9, 0xd2acb4de,
- 0xa8c17d9b, 0xbb63e5ec, 0x8f844d75, 0x9c26d502,
- 0x449a2e7e, 0x5738b609, 0x63df1e90, 0x707d86e7,
- 0x0a104fa2, 0x19b2d7d5, 0x2d557f4c, 0x3ef7e73b,
- 0xd98eedc6, 0xca2c75b1, 0xfecbdd28, 0xed69455f,
- 0x97048c1a, 0x84a6146d, 0xb041bcf4, 0xa3e32483
- },{
- 0x00000000, 0xa541927e, 0x4f6f520d, 0xea2ec073,
- 0x9edea41a, 0x3b9f3664, 0xd1b1f617, 0x74f06469,
- 0x38513ec5, 0x9d10acbb, 0x773e6cc8, 0xd27ffeb6,
- 0xa68f9adf, 0x03ce08a1, 0xe9e0c8d2, 0x4ca15aac,
- 0x70a27d8a, 0xd5e3eff4, 0x3fcd2f87, 0x9a8cbdf9,
- 0xee7cd990, 0x4b3d4bee, 0xa1138b9d, 0x045219e3,
- 0x48f3434f, 0xedb2d131, 0x079c1142, 0xa2dd833c,
- 0xd62de755, 0x736c752b, 0x9942b558, 0x3c032726,
- 0xe144fb14, 0x4405696a, 0xae2ba919, 0x0b6a3b67,
- 0x7f9a5f0e, 0xdadbcd70, 0x30f50d03, 0x95b49f7d,
- 0xd915c5d1, 0x7c5457af, 0x967a97dc, 0x333b05a2,
- 0x47cb61cb, 0xe28af3b5, 0x08a433c6, 0xade5a1b8,
- 0x91e6869e, 0x34a714e0, 0xde89d493, 0x7bc846ed,
- 0x0f382284, 0xaa79b0fa, 0x40577089, 0xe516e2f7,
- 0xa9b7b85b, 0x0cf62a25, 0xe6d8ea56, 0x43997828,
- 0x37691c41, 0x92288e3f, 0x78064e4c, 0xdd47dc32,
- 0xc76580d9, 0x622412a7, 0x880ad2d4, 0x2d4b40aa,
- 0x59bb24c3, 0xfcfab6bd, 0x16d476ce, 0xb395e4b0,
- 0xff34be1c, 0x5a752c62, 0xb05bec11, 0x151a7e6f,
- 0x61ea1a06, 0xc4ab8878, 0x2e85480b, 0x8bc4da75,
- 0xb7c7fd53, 0x12866f2d, 0xf8a8af5e, 0x5de93d20,
- 0x29195949, 0x8c58cb37, 0x66760b44, 0xc337993a,
- 0x8f96c396, 0x2ad751e8, 0xc0f9919b, 0x65b803e5,
- 0x1148678c, 0xb409f5f2, 0x5e273581, 0xfb66a7ff,
- 0x26217bcd, 0x8360e9b3, 0x694e29c0, 0xcc0fbbbe,
- 0xb8ffdfd7, 0x1dbe4da9, 0xf7908dda, 0x52d11fa4,
- 0x1e704508, 0xbb31d776, 0x511f1705, 0xf45e857b,
- 0x80aee112, 0x25ef736c, 0xcfc1b31f, 0x6a802161,
- 0x56830647, 0xf3c29439, 0x19ec544a, 0xbcadc634,
- 0xc85da25d, 0x6d1c3023, 0x8732f050, 0x2273622e,
- 0x6ed23882, 0xcb93aafc, 0x21bd6a8f, 0x84fcf8f1,
- 0xf00c9c98, 0x554d0ee6, 0xbf63ce95, 0x1a225ceb,
- 0x8b277743, 0x2e66e53d, 0xc448254e, 0x6109b730,
- 0x15f9d359, 0xb0b84127, 0x5a968154, 0xffd7132a,
- 0xb3764986, 0x1637dbf8, 0xfc191b8b, 0x595889f5,
- 0x2da8ed9c, 0x88e97fe2, 0x62c7bf91, 0xc7862def,
- 0xfb850ac9, 0x5ec498b7, 0xb4ea58c4, 0x11abcaba,
- 0x655baed3, 0xc01a3cad, 0x2a34fcde, 0x8f756ea0,
- 0xc3d4340c, 0x6695a672, 0x8cbb6601, 0x29faf47f,
- 0x5d0a9016, 0xf84b0268, 0x1265c21b, 0xb7245065,
- 0x6a638c57, 0xcf221e29, 0x250cde5a, 0x804d4c24,
- 0xf4bd284d, 0x51fcba33, 0xbbd27a40, 0x1e93e83e,
- 0x5232b292, 0xf77320ec, 0x1d5de09f, 0xb81c72e1,
- 0xccec1688, 0x69ad84f6, 0x83834485, 0x26c2d6fb,
- 0x1ac1f1dd, 0xbf8063a3, 0x55aea3d0, 0xf0ef31ae,
- 0x841f55c7, 0x215ec7b9, 0xcb7007ca, 0x6e3195b4,
- 0x2290cf18, 0x87d15d66, 0x6dff9d15, 0xc8be0f6b,
- 0xbc4e6b02, 0x190ff97c, 0xf321390f, 0x5660ab71,
- 0x4c42f79a, 0xe90365e4, 0x032da597, 0xa66c37e9,
- 0xd29c5380, 0x77ddc1fe, 0x9df3018d, 0x38b293f3,
- 0x7413c95f, 0xd1525b21, 0x3b7c9b52, 0x9e3d092c,
- 0xeacd6d45, 0x4f8cff3b, 0xa5a23f48, 0x00e3ad36,
- 0x3ce08a10, 0x99a1186e, 0x738fd81d, 0xd6ce4a63,
- 0xa23e2e0a, 0x077fbc74, 0xed517c07, 0x4810ee79,
- 0x04b1b4d5, 0xa1f026ab, 0x4bdee6d8, 0xee9f74a6,
- 0x9a6f10cf, 0x3f2e82b1, 0xd50042c2, 0x7041d0bc,
- 0xad060c8e, 0x08479ef0, 0xe2695e83, 0x4728ccfd,
- 0x33d8a894, 0x96993aea, 0x7cb7fa99, 0xd9f668e7,
- 0x9557324b, 0x3016a035, 0xda386046, 0x7f79f238,
- 0x0b899651, 0xaec8042f, 0x44e6c45c, 0xe1a75622,
- 0xdda47104, 0x78e5e37a, 0x92cb2309, 0x378ab177,
- 0x437ad51e, 0xe63b4760, 0x0c158713, 0xa954156d,
- 0xe5f54fc1, 0x40b4ddbf, 0xaa9a1dcc, 0x0fdb8fb2,
- 0x7b2bebdb, 0xde6a79a5, 0x3444b9d6, 0x91052ba8
- },{
- 0x00000000, 0xdd45aab8, 0xbf672381, 0x62228939,
- 0x7b2231f3, 0xa6679b4b, 0xc4451272, 0x1900b8ca,
- 0xf64463e6, 0x2b01c95e, 0x49234067, 0x9466eadf,
- 0x8d665215, 0x5023f8ad, 0x32017194, 0xef44db2c,
- 0xe964b13d, 0x34211b85, 0x560392bc, 0x8b463804,
- 0x924680ce, 0x4f032a76, 0x2d21a34f, 0xf06409f7,
- 0x1f20d2db, 0xc2657863, 0xa047f15a, 0x7d025be2,
- 0x6402e328, 0xb9474990, 0xdb65c0a9, 0x06206a11,
- 0xd725148b, 0x0a60be33, 0x6842370a, 0xb5079db2,
- 0xac072578, 0x71428fc0, 0x136006f9, 0xce25ac41,
- 0x2161776d, 0xfc24ddd5, 0x9e0654ec, 0x4343fe54,
- 0x5a43469e, 0x8706ec26, 0xe524651f, 0x3861cfa7,
- 0x3e41a5b6, 0xe3040f0e, 0x81268637, 0x5c632c8f,
- 0x45639445, 0x98263efd, 0xfa04b7c4, 0x27411d7c,
- 0xc805c650, 0x15406ce8, 0x7762e5d1, 0xaa274f69,
- 0xb327f7a3, 0x6e625d1b, 0x0c40d422, 0xd1057e9a,
- 0xaba65fe7, 0x76e3f55f, 0x14c17c66, 0xc984d6de,
- 0xd0846e14, 0x0dc1c4ac, 0x6fe34d95, 0xb2a6e72d,
- 0x5de23c01, 0x80a796b9, 0xe2851f80, 0x3fc0b538,
- 0x26c00df2, 0xfb85a74a, 0x99a72e73, 0x44e284cb,
- 0x42c2eeda, 0x9f874462, 0xfda5cd5b, 0x20e067e3,
- 0x39e0df29, 0xe4a57591, 0x8687fca8, 0x5bc25610,
- 0xb4868d3c, 0x69c32784, 0x0be1aebd, 0xd6a40405,
- 0xcfa4bccf, 0x12e11677, 0x70c39f4e, 0xad8635f6,
- 0x7c834b6c, 0xa1c6e1d4, 0xc3e468ed, 0x1ea1c255,
- 0x07a17a9f, 0xdae4d027, 0xb8c6591e, 0x6583f3a6,
- 0x8ac7288a, 0x57828232, 0x35a00b0b, 0xe8e5a1b3,
- 0xf1e51979, 0x2ca0b3c1, 0x4e823af8, 0x93c79040,
- 0x95e7fa51, 0x48a250e9, 0x2a80d9d0, 0xf7c57368,
- 0xeec5cba2, 0x3380611a, 0x51a2e823, 0x8ce7429b,
- 0x63a399b7, 0xbee6330f, 0xdcc4ba36, 0x0181108e,
- 0x1881a844, 0xc5c402fc, 0xa7e68bc5, 0x7aa3217d,
- 0x52a0c93f, 0x8fe56387, 0xedc7eabe, 0x30824006,
- 0x2982f8cc, 0xf4c75274, 0x96e5db4d, 0x4ba071f5,
- 0xa4e4aad9, 0x79a10061, 0x1b838958, 0xc6c623e0,
- 0xdfc69b2a, 0x02833192, 0x60a1b8ab, 0xbde41213,
- 0xbbc47802, 0x6681d2ba, 0x04a35b83, 0xd9e6f13b,
- 0xc0e649f1, 0x1da3e349, 0x7f816a70, 0xa2c4c0c8,
- 0x4d801be4, 0x90c5b15c, 0xf2e73865, 0x2fa292dd,
- 0x36a22a17, 0xebe780af, 0x89c50996, 0x5480a32e,
- 0x8585ddb4, 0x58c0770c, 0x3ae2fe35, 0xe7a7548d,
- 0xfea7ec47, 0x23e246ff, 0x41c0cfc6, 0x9c85657e,
- 0x73c1be52, 0xae8414ea, 0xcca69dd3, 0x11e3376b,
- 0x08e38fa1, 0xd5a62519, 0xb784ac20, 0x6ac10698,
- 0x6ce16c89, 0xb1a4c631, 0xd3864f08, 0x0ec3e5b0,
- 0x17c35d7a, 0xca86f7c2, 0xa8a47efb, 0x75e1d443,
- 0x9aa50f6f, 0x47e0a5d7, 0x25c22cee, 0xf8878656,
- 0xe1873e9c, 0x3cc29424, 0x5ee01d1d, 0x83a5b7a5,
- 0xf90696d8, 0x24433c60, 0x4661b559, 0x9b241fe1,
- 0x8224a72b, 0x5f610d93, 0x3d4384aa, 0xe0062e12,
- 0x0f42f53e, 0xd2075f86, 0xb025d6bf, 0x6d607c07,
- 0x7460c4cd, 0xa9256e75, 0xcb07e74c, 0x16424df4,
- 0x106227e5, 0xcd278d5d, 0xaf050464, 0x7240aedc,
- 0x6b401616, 0xb605bcae, 0xd4273597, 0x09629f2f,
- 0xe6264403, 0x3b63eebb, 0x59416782, 0x8404cd3a,
- 0x9d0475f0, 0x4041df48, 0x22635671, 0xff26fcc9,
- 0x2e238253, 0xf36628eb, 0x9144a1d2, 0x4c010b6a,
- 0x5501b3a0, 0x88441918, 0xea669021, 0x37233a99,
- 0xd867e1b5, 0x05224b0d, 0x6700c234, 0xba45688c,
- 0xa345d046, 0x7e007afe, 0x1c22f3c7, 0xc167597f,
- 0xc747336e, 0x1a0299d6, 0x782010ef, 0xa565ba57,
- 0xbc65029d, 0x6120a825, 0x0302211c, 0xde478ba4,
- 0x31035088, 0xec46fa30, 0x8e647309, 0x5321d9b1,
- 0x4a21617b, 0x9764cbc3, 0xf54642fa, 0x2803e842
- },{
- 0x00000000, 0x38116fac, 0x7022df58, 0x4833b0f4,
- 0xe045beb0, 0xd854d11c, 0x906761e8, 0xa8760e44,
- 0xc5670b91, 0xfd76643d, 0xb545d4c9, 0x8d54bb65,
- 0x2522b521, 0x1d33da8d, 0x55006a79, 0x6d1105d5,
- 0x8f2261d3, 0xb7330e7f, 0xff00be8b, 0xc711d127,
- 0x6f67df63, 0x5776b0cf, 0x1f45003b, 0x27546f97,
- 0x4a456a42, 0x725405ee, 0x3a67b51a, 0x0276dab6,
- 0xaa00d4f2, 0x9211bb5e, 0xda220baa, 0xe2336406,
- 0x1ba8b557, 0x23b9dafb, 0x6b8a6a0f, 0x539b05a3,
- 0xfbed0be7, 0xc3fc644b, 0x8bcfd4bf, 0xb3debb13,
- 0xdecfbec6, 0xe6ded16a, 0xaeed619e, 0x96fc0e32,
- 0x3e8a0076, 0x069b6fda, 0x4ea8df2e, 0x76b9b082,
- 0x948ad484, 0xac9bbb28, 0xe4a80bdc, 0xdcb96470,
- 0x74cf6a34, 0x4cde0598, 0x04edb56c, 0x3cfcdac0,
- 0x51eddf15, 0x69fcb0b9, 0x21cf004d, 0x19de6fe1,
- 0xb1a861a5, 0x89b90e09, 0xc18abefd, 0xf99bd151,
- 0x37516aae, 0x0f400502, 0x4773b5f6, 0x7f62da5a,
- 0xd714d41e, 0xef05bbb2, 0xa7360b46, 0x9f2764ea,
- 0xf236613f, 0xca270e93, 0x8214be67, 0xba05d1cb,
- 0x1273df8f, 0x2a62b023, 0x625100d7, 0x5a406f7b,
- 0xb8730b7d, 0x806264d1, 0xc851d425, 0xf040bb89,
- 0x5836b5cd, 0x6027da61, 0x28146a95, 0x10050539,
- 0x7d1400ec, 0x45056f40, 0x0d36dfb4, 0x3527b018,
- 0x9d51be5c, 0xa540d1f0, 0xed736104, 0xd5620ea8,
- 0x2cf9dff9, 0x14e8b055, 0x5cdb00a1, 0x64ca6f0d,
- 0xccbc6149, 0xf4ad0ee5, 0xbc9ebe11, 0x848fd1bd,
- 0xe99ed468, 0xd18fbbc4, 0x99bc0b30, 0xa1ad649c,
- 0x09db6ad8, 0x31ca0574, 0x79f9b580, 0x41e8da2c,
- 0xa3dbbe2a, 0x9bcad186, 0xd3f96172, 0xebe80ede,
- 0x439e009a, 0x7b8f6f36, 0x33bcdfc2, 0x0badb06e,
- 0x66bcb5bb, 0x5eadda17, 0x169e6ae3, 0x2e8f054f,
- 0x86f90b0b, 0xbee864a7, 0xf6dbd453, 0xcecabbff,
- 0x6ea2d55c, 0x56b3baf0, 0x1e800a04, 0x269165a8,
- 0x8ee76bec, 0xb6f60440, 0xfec5b4b4, 0xc6d4db18,
- 0xabc5decd, 0x93d4b161, 0xdbe70195, 0xe3f66e39,
- 0x4b80607d, 0x73910fd1, 0x3ba2bf25, 0x03b3d089,
- 0xe180b48f, 0xd991db23, 0x91a26bd7, 0xa9b3047b,
- 0x01c50a3f, 0x39d46593, 0x71e7d567, 0x49f6bacb,
- 0x24e7bf1e, 0x1cf6d0b2, 0x54c56046, 0x6cd40fea,
- 0xc4a201ae, 0xfcb36e02, 0xb480def6, 0x8c91b15a,
- 0x750a600b, 0x4d1b0fa7, 0x0528bf53, 0x3d39d0ff,
- 0x954fdebb, 0xad5eb117, 0xe56d01e3, 0xdd7c6e4f,
- 0xb06d6b9a, 0x887c0436, 0xc04fb4c2, 0xf85edb6e,
- 0x5028d52a, 0x6839ba86, 0x200a0a72, 0x181b65de,
- 0xfa2801d8, 0xc2396e74, 0x8a0ade80, 0xb21bb12c,
- 0x1a6dbf68, 0x227cd0c4, 0x6a4f6030, 0x525e0f9c,
- 0x3f4f0a49, 0x075e65e5, 0x4f6dd511, 0x777cbabd,
- 0xdf0ab4f9, 0xe71bdb55, 0xaf286ba1, 0x9739040d,
- 0x59f3bff2, 0x61e2d05e, 0x29d160aa, 0x11c00f06,
- 0xb9b60142, 0x81a76eee, 0xc994de1a, 0xf185b1b6,
- 0x9c94b463, 0xa485dbcf, 0xecb66b3b, 0xd4a70497,
- 0x7cd10ad3, 0x44c0657f, 0x0cf3d58b, 0x34e2ba27,
- 0xd6d1de21, 0xeec0b18d, 0xa6f30179, 0x9ee26ed5,
- 0x36946091, 0x0e850f3d, 0x46b6bfc9, 0x7ea7d065,
- 0x13b6d5b0, 0x2ba7ba1c, 0x63940ae8, 0x5b856544,
- 0xf3f36b00, 0xcbe204ac, 0x83d1b458, 0xbbc0dbf4,
- 0x425b0aa5, 0x7a4a6509, 0x3279d5fd, 0x0a68ba51,
- 0xa21eb415, 0x9a0fdbb9, 0xd23c6b4d, 0xea2d04e1,
- 0x873c0134, 0xbf2d6e98, 0xf71ede6c, 0xcf0fb1c0,
- 0x6779bf84, 0x5f68d028, 0x175b60dc, 0x2f4a0f70,
- 0xcd796b76, 0xf56804da, 0xbd5bb42e, 0x854adb82,
- 0x2d3cd5c6, 0x152dba6a, 0x5d1e0a9e, 0x650f6532,
- 0x081e60e7, 0x300f0f4b, 0x783cbfbf, 0x402dd013,
- 0xe85bde57, 0xd04ab1fb, 0x9879010f, 0xa0686ea3
- },{
- 0x00000000, 0xef306b19, 0xdb8ca0c3, 0x34bccbda,
- 0xb2f53777, 0x5dc55c6e, 0x697997b4, 0x8649fcad,
- 0x6006181f, 0x8f367306, 0xbb8ab8dc, 0x54bad3c5,
- 0xd2f32f68, 0x3dc34471, 0x097f8fab, 0xe64fe4b2,
- 0xc00c303e, 0x2f3c5b27, 0x1b8090fd, 0xf4b0fbe4,
- 0x72f90749, 0x9dc96c50, 0xa975a78a, 0x4645cc93,
- 0xa00a2821, 0x4f3a4338, 0x7b8688e2, 0x94b6e3fb,
- 0x12ff1f56, 0xfdcf744f, 0xc973bf95, 0x2643d48c,
- 0x85f4168d, 0x6ac47d94, 0x5e78b64e, 0xb148dd57,
- 0x370121fa, 0xd8314ae3, 0xec8d8139, 0x03bdea20,
- 0xe5f20e92, 0x0ac2658b, 0x3e7eae51, 0xd14ec548,
- 0x570739e5, 0xb83752fc, 0x8c8b9926, 0x63bbf23f,
- 0x45f826b3, 0xaac84daa, 0x9e748670, 0x7144ed69,
- 0xf70d11c4, 0x183d7add, 0x2c81b107, 0xc3b1da1e,
- 0x25fe3eac, 0xcace55b5, 0xfe729e6f, 0x1142f576,
- 0x970b09db, 0x783b62c2, 0x4c87a918, 0xa3b7c201,
- 0x0e045beb, 0xe13430f2, 0xd588fb28, 0x3ab89031,
- 0xbcf16c9c, 0x53c10785, 0x677dcc5f, 0x884da746,
- 0x6e0243f4, 0x813228ed, 0xb58ee337, 0x5abe882e,
- 0xdcf77483, 0x33c71f9a, 0x077bd440, 0xe84bbf59,
- 0xce086bd5, 0x213800cc, 0x1584cb16, 0xfab4a00f,
- 0x7cfd5ca2, 0x93cd37bb, 0xa771fc61, 0x48419778,
- 0xae0e73ca, 0x413e18d3, 0x7582d309, 0x9ab2b810,
- 0x1cfb44bd, 0xf3cb2fa4, 0xc777e47e, 0x28478f67,
- 0x8bf04d66, 0x64c0267f, 0x507ceda5, 0xbf4c86bc,
- 0x39057a11, 0xd6351108, 0xe289dad2, 0x0db9b1cb,
- 0xebf65579, 0x04c63e60, 0x307af5ba, 0xdf4a9ea3,
- 0x5903620e, 0xb6330917, 0x828fc2cd, 0x6dbfa9d4,
- 0x4bfc7d58, 0xa4cc1641, 0x9070dd9b, 0x7f40b682,
- 0xf9094a2f, 0x16392136, 0x2285eaec, 0xcdb581f5,
- 0x2bfa6547, 0xc4ca0e5e, 0xf076c584, 0x1f46ae9d,
- 0x990f5230, 0x763f3929, 0x4283f2f3, 0xadb399ea,
- 0x1c08b7d6, 0xf338dccf, 0xc7841715, 0x28b47c0c,
- 0xaefd80a1, 0x41cdebb8, 0x75712062, 0x9a414b7b,
- 0x7c0eafc9, 0x933ec4d0, 0xa7820f0a, 0x48b26413,
- 0xcefb98be, 0x21cbf3a7, 0x1577387d, 0xfa475364,
- 0xdc0487e8, 0x3334ecf1, 0x0788272b, 0xe8b84c32,
- 0x6ef1b09f, 0x81c1db86, 0xb57d105c, 0x5a4d7b45,
- 0xbc029ff7, 0x5332f4ee, 0x678e3f34, 0x88be542d,
- 0x0ef7a880, 0xe1c7c399, 0xd57b0843, 0x3a4b635a,
- 0x99fca15b, 0x76ccca42, 0x42700198, 0xad406a81,
- 0x2b09962c, 0xc439fd35, 0xf08536ef, 0x1fb55df6,
- 0xf9fab944, 0x16cad25d, 0x22761987, 0xcd46729e,
- 0x4b0f8e33, 0xa43fe52a, 0x90832ef0, 0x7fb345e9,
- 0x59f09165, 0xb6c0fa7c, 0x827c31a6, 0x6d4c5abf,
- 0xeb05a612, 0x0435cd0b, 0x308906d1, 0xdfb96dc8,
- 0x39f6897a, 0xd6c6e263, 0xe27a29b9, 0x0d4a42a0,
- 0x8b03be0d, 0x6433d514, 0x508f1ece, 0xbfbf75d7,
- 0x120cec3d, 0xfd3c8724, 0xc9804cfe, 0x26b027e7,
- 0xa0f9db4a, 0x4fc9b053, 0x7b757b89, 0x94451090,
- 0x720af422, 0x9d3a9f3b, 0xa98654e1, 0x46b63ff8,
- 0xc0ffc355, 0x2fcfa84c, 0x1b736396, 0xf443088f,
- 0xd200dc03, 0x3d30b71a, 0x098c7cc0, 0xe6bc17d9,
- 0x60f5eb74, 0x8fc5806d, 0xbb794bb7, 0x544920ae,
- 0xb206c41c, 0x5d36af05, 0x698a64df, 0x86ba0fc6,
- 0x00f3f36b, 0xefc39872, 0xdb7f53a8, 0x344f38b1,
- 0x97f8fab0, 0x78c891a9, 0x4c745a73, 0xa344316a,
- 0x250dcdc7, 0xca3da6de, 0xfe816d04, 0x11b1061d,
- 0xf7fee2af, 0x18ce89b6, 0x2c72426c, 0xc3422975,
- 0x450bd5d8, 0xaa3bbec1, 0x9e87751b, 0x71b71e02,
- 0x57f4ca8e, 0xb8c4a197, 0x8c786a4d, 0x63480154,
- 0xe501fdf9, 0x0a3196e0, 0x3e8d5d3a, 0xd1bd3623,
- 0x37f2d291, 0xd8c2b988, 0xec7e7252, 0x034e194b,
- 0x8507e5e6, 0x6a378eff, 0x5e8b4525, 0xb1bb2e3c
- },{
- 0x00000000, 0x68032cc8, 0xd0065990, 0xb8057558,
- 0xa5e0c5d1, 0xcde3e919, 0x75e69c41, 0x1de5b089,
- 0x4e2dfd53, 0x262ed19b, 0x9e2ba4c3, 0xf628880b,
- 0xebcd3882, 0x83ce144a, 0x3bcb6112, 0x53c84dda,
- 0x9c5bfaa6, 0xf458d66e, 0x4c5da336, 0x245e8ffe,
- 0x39bb3f77, 0x51b813bf, 0xe9bd66e7, 0x81be4a2f,
- 0xd27607f5, 0xba752b3d, 0x02705e65, 0x6a7372ad,
- 0x7796c224, 0x1f95eeec, 0xa7909bb4, 0xcf93b77c,
- 0x3d5b83bd, 0x5558af75, 0xed5dda2d, 0x855ef6e5,
- 0x98bb466c, 0xf0b86aa4, 0x48bd1ffc, 0x20be3334,
- 0x73767eee, 0x1b755226, 0xa370277e, 0xcb730bb6,
- 0xd696bb3f, 0xbe9597f7, 0x0690e2af, 0x6e93ce67,
- 0xa100791b, 0xc90355d3, 0x7106208b, 0x19050c43,
- 0x04e0bcca, 0x6ce39002, 0xd4e6e55a, 0xbce5c992,
- 0xef2d8448, 0x872ea880, 0x3f2bddd8, 0x5728f110,
- 0x4acd4199, 0x22ce6d51, 0x9acb1809, 0xf2c834c1,
- 0x7ab7077a, 0x12b42bb2, 0xaab15eea, 0xc2b27222,
- 0xdf57c2ab, 0xb754ee63, 0x0f519b3b, 0x6752b7f3,
- 0x349afa29, 0x5c99d6e1, 0xe49ca3b9, 0x8c9f8f71,
- 0x917a3ff8, 0xf9791330, 0x417c6668, 0x297f4aa0,
- 0xe6ecfddc, 0x8eefd114, 0x36eaa44c, 0x5ee98884,
- 0x430c380d, 0x2b0f14c5, 0x930a619d, 0xfb094d55,
- 0xa8c1008f, 0xc0c22c47, 0x78c7591f, 0x10c475d7,
- 0x0d21c55e, 0x6522e996, 0xdd279cce, 0xb524b006,
- 0x47ec84c7, 0x2fefa80f, 0x97eadd57, 0xffe9f19f,
- 0xe20c4116, 0x8a0f6dde, 0x320a1886, 0x5a09344e,
- 0x09c17994, 0x61c2555c, 0xd9c72004, 0xb1c40ccc,
- 0xac21bc45, 0xc422908d, 0x7c27e5d5, 0x1424c91d,
- 0xdbb77e61, 0xb3b452a9, 0x0bb127f1, 0x63b20b39,
- 0x7e57bbb0, 0x16549778, 0xae51e220, 0xc652cee8,
- 0x959a8332, 0xfd99affa, 0x459cdaa2, 0x2d9ff66a,
- 0x307a46e3, 0x58796a2b, 0xe07c1f73, 0x887f33bb,
- 0xf56e0ef4, 0x9d6d223c, 0x25685764, 0x4d6b7bac,
- 0x508ecb25, 0x388de7ed, 0x808892b5, 0xe88bbe7d,
- 0xbb43f3a7, 0xd340df6f, 0x6b45aa37, 0x034686ff,
- 0x1ea33676, 0x76a01abe, 0xcea56fe6, 0xa6a6432e,
- 0x6935f452, 0x0136d89a, 0xb933adc2, 0xd130810a,
- 0xccd53183, 0xa4d61d4b, 0x1cd36813, 0x74d044db,
- 0x27180901, 0x4f1b25c9, 0xf71e5091, 0x9f1d7c59,
- 0x82f8ccd0, 0xeafbe018, 0x52fe9540, 0x3afdb988,
- 0xc8358d49, 0xa036a181, 0x1833d4d9, 0x7030f811,
- 0x6dd54898, 0x05d66450, 0xbdd31108, 0xd5d03dc0,
- 0x8618701a, 0xee1b5cd2, 0x561e298a, 0x3e1d0542,
- 0x23f8b5cb, 0x4bfb9903, 0xf3feec5b, 0x9bfdc093,
- 0x546e77ef, 0x3c6d5b27, 0x84682e7f, 0xec6b02b7,
- 0xf18eb23e, 0x998d9ef6, 0x2188ebae, 0x498bc766,
- 0x1a438abc, 0x7240a674, 0xca45d32c, 0xa246ffe4,
- 0xbfa34f6d, 0xd7a063a5, 0x6fa516fd, 0x07a63a35,
- 0x8fd9098e, 0xe7da2546, 0x5fdf501e, 0x37dc7cd6,
- 0x2a39cc5f, 0x423ae097, 0xfa3f95cf, 0x923cb907,
- 0xc1f4f4dd, 0xa9f7d815, 0x11f2ad4d, 0x79f18185,
- 0x6414310c, 0x0c171dc4, 0xb412689c, 0xdc114454,
- 0x1382f328, 0x7b81dfe0, 0xc384aab8, 0xab878670,
- 0xb66236f9, 0xde611a31, 0x66646f69, 0x0e6743a1,
- 0x5daf0e7b, 0x35ac22b3, 0x8da957eb, 0xe5aa7b23,
- 0xf84fcbaa, 0x904ce762, 0x2849923a, 0x404abef2,
- 0xb2828a33, 0xda81a6fb, 0x6284d3a3, 0x0a87ff6b,
- 0x17624fe2, 0x7f61632a, 0xc7641672, 0xaf673aba,
- 0xfcaf7760, 0x94ac5ba8, 0x2ca92ef0, 0x44aa0238,
- 0x594fb2b1, 0x314c9e79, 0x8949eb21, 0xe14ac7e9,
- 0x2ed97095, 0x46da5c5d, 0xfedf2905, 0x96dc05cd,
- 0x8b39b544, 0xe33a998c, 0x5b3fecd4, 0x333cc01c,
- 0x60f48dc6, 0x08f7a10e, 0xb0f2d456, 0xd8f1f89e,
- 0xc5144817, 0xad1764df, 0x15121187, 0x7d113d4f
- },{
- 0x00000000, 0x493c7d27, 0x9278fa4e, 0xdb448769,
- 0x211d826d, 0x6821ff4a, 0xb3657823, 0xfa590504,
- 0x423b04da, 0x0b0779fd, 0xd043fe94, 0x997f83b3,
- 0x632686b7, 0x2a1afb90, 0xf15e7cf9, 0xb86201de,
- 0x847609b4, 0xcd4a7493, 0x160ef3fa, 0x5f328edd,
- 0xa56b8bd9, 0xec57f6fe, 0x37137197, 0x7e2f0cb0,
- 0xc64d0d6e, 0x8f717049, 0x5435f720, 0x1d098a07,
- 0xe7508f03, 0xae6cf224, 0x7528754d, 0x3c14086a,
- 0x0d006599, 0x443c18be, 0x9f789fd7, 0xd644e2f0,
- 0x2c1de7f4, 0x65219ad3, 0xbe651dba, 0xf759609d,
- 0x4f3b6143, 0x06071c64, 0xdd439b0d, 0x947fe62a,
- 0x6e26e32e, 0x271a9e09, 0xfc5e1960, 0xb5626447,
- 0x89766c2d, 0xc04a110a, 0x1b0e9663, 0x5232eb44,
- 0xa86bee40, 0xe1579367, 0x3a13140e, 0x732f6929,
- 0xcb4d68f7, 0x827115d0, 0x593592b9, 0x1009ef9e,
- 0xea50ea9a, 0xa36c97bd, 0x782810d4, 0x31146df3,
- 0x1a00cb32, 0x533cb615, 0x8878317c, 0xc1444c5b,
- 0x3b1d495f, 0x72213478, 0xa965b311, 0xe059ce36,
- 0x583bcfe8, 0x1107b2cf, 0xca4335a6, 0x837f4881,
- 0x79264d85, 0x301a30a2, 0xeb5eb7cb, 0xa262caec,
- 0x9e76c286, 0xd74abfa1, 0x0c0e38c8, 0x453245ef,
- 0xbf6b40eb, 0xf6573dcc, 0x2d13baa5, 0x642fc782,
- 0xdc4dc65c, 0x9571bb7b, 0x4e353c12, 0x07094135,
- 0xfd504431, 0xb46c3916, 0x6f28be7f, 0x2614c358,
- 0x1700aeab, 0x5e3cd38c, 0x857854e5, 0xcc4429c2,
- 0x361d2cc6, 0x7f2151e1, 0xa465d688, 0xed59abaf,
- 0x553baa71, 0x1c07d756, 0xc743503f, 0x8e7f2d18,
- 0x7426281c, 0x3d1a553b, 0xe65ed252, 0xaf62af75,
- 0x9376a71f, 0xda4ada38, 0x010e5d51, 0x48322076,
- 0xb26b2572, 0xfb575855, 0x2013df3c, 0x692fa21b,
- 0xd14da3c5, 0x9871dee2, 0x4335598b, 0x0a0924ac,
- 0xf05021a8, 0xb96c5c8f, 0x6228dbe6, 0x2b14a6c1,
- 0x34019664, 0x7d3deb43, 0xa6796c2a, 0xef45110d,
- 0x151c1409, 0x5c20692e, 0x8764ee47, 0xce589360,
- 0x763a92be, 0x3f06ef99, 0xe44268f0, 0xad7e15d7,
- 0x572710d3, 0x1e1b6df4, 0xc55fea9d, 0x8c6397ba,
- 0xb0779fd0, 0xf94be2f7, 0x220f659e, 0x6b3318b9,
- 0x916a1dbd, 0xd856609a, 0x0312e7f3, 0x4a2e9ad4,
- 0xf24c9b0a, 0xbb70e62d, 0x60346144, 0x29081c63,
- 0xd3511967, 0x9a6d6440, 0x4129e329, 0x08159e0e,
- 0x3901f3fd, 0x703d8eda, 0xab7909b3, 0xe2457494,
- 0x181c7190, 0x51200cb7, 0x8a648bde, 0xc358f6f9,
- 0x7b3af727, 0x32068a00, 0xe9420d69, 0xa07e704e,
- 0x5a27754a, 0x131b086d, 0xc85f8f04, 0x8163f223,
- 0xbd77fa49, 0xf44b876e, 0x2f0f0007, 0x66337d20,
- 0x9c6a7824, 0xd5560503, 0x0e12826a, 0x472eff4d,
- 0xff4cfe93, 0xb67083b4, 0x6d3404dd, 0x240879fa,
- 0xde517cfe, 0x976d01d9, 0x4c2986b0, 0x0515fb97,
- 0x2e015d56, 0x673d2071, 0xbc79a718, 0xf545da3f,
- 0x0f1cdf3b, 0x4620a21c, 0x9d642575, 0xd4585852,
- 0x6c3a598c, 0x250624ab, 0xfe42a3c2, 0xb77edee5,
- 0x4d27dbe1, 0x041ba6c6, 0xdf5f21af, 0x96635c88,
- 0xaa7754e2, 0xe34b29c5, 0x380faeac, 0x7133d38b,
- 0x8b6ad68f, 0xc256aba8, 0x19122cc1, 0x502e51e6,
- 0xe84c5038, 0xa1702d1f, 0x7a34aa76, 0x3308d751,
- 0xc951d255, 0x806daf72, 0x5b29281b, 0x1215553c,
- 0x230138cf, 0x6a3d45e8, 0xb179c281, 0xf845bfa6,
- 0x021cbaa2, 0x4b20c785, 0x906440ec, 0xd9583dcb,
- 0x613a3c15, 0x28064132, 0xf342c65b, 0xba7ebb7c,
- 0x4027be78, 0x091bc35f, 0xd25f4436, 0x9b633911,
- 0xa777317b, 0xee4b4c5c, 0x350fcb35, 0x7c33b612,
- 0x866ab316, 0xcf56ce31, 0x14124958, 0x5d2e347f,
- 0xe54c35a1, 0xac704886, 0x7734cfef, 0x3e08b2c8,
- 0xc451b7cc, 0x8d6dcaeb, 0x56294d82, 0x1f1530a5
- }
-#endif
-};
-
-/*
- * __wt_cksum_sw --
- * Return a checksum for a chunk of memory, computed in software.
- */
-static uint32_t
-__wt_cksum_sw(const void *chunk, size_t len)
-{
- uint32_t crc, next;
- size_t nqwords;
- const uint8_t *p;
-
- crc = 0xffffffff;
-
- /* Checksum one byte at a time to the first 4B boundary. */
- for (p = chunk;
- ((uintptr_t)p & (sizeof(uint32_t) - 1)) != 0 &&
- len > 0; ++p, --len)
-#ifdef WORDS_BIGENDIAN
- crc = g_crc_slicing[0][((crc >> 24) ^ *p) & 0xFF] ^ (crc << 8);
-#else
- crc = g_crc_slicing[0][(crc ^ *p) & 0xFF] ^ (crc >> 8);
-#endif
-
- /* Checksum in 8B chunks. */
- for (nqwords = len / sizeof(uint64_t); nqwords; nqwords--) {
- crc ^= *(uint32_t *)p;
- p += sizeof(uint32_t);
- next = *(uint32_t *)p;
- p += sizeof(uint32_t);
- crc =
-#ifdef WORDS_BIGENDIAN
- g_crc_slicing[4][(crc ) & 0xFF] ^
- g_crc_slicing[5][(crc >> 8) & 0xFF] ^
- g_crc_slicing[6][(crc >> 16) & 0xFF] ^
- g_crc_slicing[7][(crc >> 24)] ^
- g_crc_slicing[0][(next ) & 0xFF] ^
- g_crc_slicing[1][(next >> 8) & 0xFF] ^
- g_crc_slicing[2][(next >> 16) & 0xFF] ^
- g_crc_slicing[3][(next >> 24)];
-#else
- g_crc_slicing[7][(crc ) & 0xFF] ^
- g_crc_slicing[6][(crc >> 8) & 0xFF] ^
- g_crc_slicing[5][(crc >> 16) & 0xFF] ^
- g_crc_slicing[4][(crc >> 24)] ^
- g_crc_slicing[3][(next ) & 0xFF] ^
- g_crc_slicing[2][(next >> 8) & 0xFF] ^
- g_crc_slicing[1][(next >> 16) & 0xFF] ^
- g_crc_slicing[0][(next >> 24)];
-#endif
- }
-
- /* Checksum trailing bytes one byte at a time. */
-#ifdef WORDS_BIGENDIAN
- for (len &= 0x7; len > 0; ++p, len--)
- crc = g_crc_slicing[0][((crc >> 24) ^ *p) & 0xFF] ^ (crc << 8);
-
- /* Do final byte swap to produce a result identical to little endian */
- crc =
- ((crc << 24) & 0xFF000000) |
- ((crc << 8) & 0x00FF0000) |
- ((crc >> 8) & 0x0000FF00) |
- ((crc >> 24) & 0x000000FF);
-#else
- for (len &= 0x7; len > 0; ++p, len--)
- crc = g_crc_slicing[0][(crc ^ *p) & 0xFF] ^ (crc >> 8);
-#endif
- return (~crc);
-}
-
-#if (defined(__amd64) || defined(__x86_64))
-/*
- * __wt_cksum_hw --
- * Return a checksum for a chunk of memory, computed in hardware
- * using 8 byte steps.
- */
-static uint32_t
-__wt_cksum_hw(const void *chunk, size_t len)
-{
- uint32_t crc;
- size_t nqwords;
- const uint8_t *p;
- const uint64_t *p64;
-
- crc = 0xffffffff;
-
- /* Checksum one byte at a time to the first 4B boundary. */
- for (p = chunk;
- ((uintptr_t)p & (sizeof(uint32_t) - 1)) != 0 &&
- len > 0; ++p, --len) {
- __asm__ __volatile__(
- ".byte 0xF2, 0x0F, 0x38, 0xF0, 0xF1"
- : "=S" (crc)
- : "0" (crc), "c" (*p));
- }
-
- p64 = (const uint64_t *)p;
- /* Checksum in 8B chunks. */
- for (nqwords = len / sizeof(uint64_t); nqwords; nqwords--) {
- __asm__ __volatile__ (
- ".byte 0xF2, 0x48, 0x0F, 0x38, 0xF1, 0xF1"
- : "=S"(crc)
- : "0"(crc), "c" (*p64));
- p64++;
- }
-
- /* Checksum trailing bytes one byte at a time. */
- p = (const uint8_t *)p64;
- for (len &= 0x7; len > 0; ++p, len--) {
- __asm__ __volatile__(
- ".byte 0xF2, 0x0F, 0x38, 0xF0, 0xF1"
- : "=S" (crc)
- : "0" (crc), "c" (*p));
- }
- return (~crc);
-}
-#endif
-
-#if defined(_M_AMD64)
-/*
- * __wt_cksum_hw --
- * Return a checksum for a chunk of memory, computed in hardware
- * using 8 byte steps.
- */
-static uint32_t
-__wt_cksum_hw(const void *chunk, size_t len)
-{
- uint32_t crc;
- size_t nqwords;
- const uint8_t *p;
- const uint64_t *p64;
-
- crc = 0xffffffff;
-
- /* Checksum one byte at a time to the first 4B boundary. */
- for (p = chunk;
- ((uintptr_t)p & (sizeof(uint32_t) - 1)) != 0 &&
- len > 0; ++p, --len) {
- crc = _mm_crc32_u8(crc, *p);
- }
-
- p64 = (const uint64_t *)p;
- /* Checksum in 8B chunks. */
- for (nqwords = len / sizeof(uint64_t); nqwords; nqwords--) {
- crc = (uint32_t)_mm_crc32_u64(crc, *p64);
- p64++;
- }
-
- /* Checksum trailing bytes one byte at a time. */
- p = (const uint8_t *)p64;
- for (len &= 0x7; len > 0; ++p, len--) {
- crc = _mm_crc32_u8(crc, *p);
- }
-
- return (~crc);
-}
-#endif
-
-#if defined(__powerpc64__)
-
-unsigned int crc32_vpmsum(unsigned int crc, const unsigned char *p,
- unsigned long len);
-
-/*
- * __wt_cksum_hw --
- * Return a checksum for a chunk of memory, computed in hardware
- * using 8 byte steps.
- */
-static uint32_t
-__wt_cksum_hw(const void *chunk, size_t len)
-{
- return crc32_vpmsum(0, chunk, len);
-}
-#endif
-
-/*
- * __wt_cksum --
- * Return a checksum for a chunk of memory using the fastest method
- * available.
- */
-uint32_t
-__wt_cksum(const void *chunk, size_t len)
-{
- return (*__wt_cksum_func)(chunk, len);
-}
-
-/*
- * __wt_cksum_init --
- * Detect CRC hardware and set the checksum function.
- */
-void
-__wt_cksum_init(void)
-{
-#define CPUID_ECX_HAS_SSE42 (1 << 20)
-
-#if (defined(__amd64) || defined(__x86_64))
- unsigned int eax, ebx, ecx, edx;
-
- __asm__ __volatile__ (
- "cpuid"
- : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx)
- : "a" (1));
-
- if (ecx & CPUID_ECX_HAS_SSE42)
- __wt_cksum_func = __wt_cksum_hw;
- else
- __wt_cksum_func = __wt_cksum_sw;
-
-#elif defined(_M_AMD64)
- int cpuInfo[4];
-
- __cpuid(cpuInfo, 1);
-
- if (cpuInfo[2] & CPUID_ECX_HAS_SSE42)
- __wt_cksum_func = __wt_cksum_hw;
- else
- __wt_cksum_func = __wt_cksum_sw;
-#elif defined(__powerpc64__)
- __wt_cksum_func = __wt_cksum_hw;
-#else
- __wt_cksum_func = __wt_cksum_sw;
-#endif
-}
diff --git a/src/support/err.c b/src/support/err.c
index f64492f1561..815b79c16db 100644
--- a/src/support/err.c
+++ b/src/support/err.c
@@ -24,7 +24,7 @@ __handle_error_default(WT_EVENT_HANDLER *handler,
session = (WT_SESSION_IMPL *)wt_session;
WT_RET(__wt_fprintf(session, WT_STDERR(session), "%s\n", errmsg));
- WT_RET(__wt_fsync(session, WT_STDERR(session), true));
+ WT_RET(__wt_fflush(session, WT_STDERR(session)));
return (0);
}
@@ -42,7 +42,7 @@ __handle_message_default(WT_EVENT_HANDLER *handler,
session = (WT_SESSION_IMPL *)wt_session;
WT_RET(__wt_fprintf(session, WT_STDOUT(session), "%s\n", message));
- WT_RET(__wt_fsync(session, WT_STDOUT(session), true));
+ WT_RET(__wt_fflush(session, WT_STDOUT(session)));
return (0);
}
diff --git a/src/support/power8/LICENSE.TXT b/src/support/power8/LICENSE.TXT
deleted file mode 100644
index 2f4bb91f574..00000000000
--- a/src/support/power8/LICENSE.TXT
+++ /dev/null
@@ -1,476 +0,0 @@
-Copyright (C) 2015 Anton Blanchard <anton@au.ibm.com>, IBM
-
-crc32-vpmsum is free software; you can redistribute it and/or
-modify it under the terms of either:
-
- a) the GNU General Public License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version., or
- b) the Apache License, Version 2.0
-
-
-
-
-
-
-
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Lesser General Public License instead.) You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
- We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
- 8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-
-
-
-
-
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
diff --git a/src/support/power8/README.md b/src/support/power8/README.md
deleted file mode 100644
index 3e2976650cd..00000000000
--- a/src/support/power8/README.md
+++ /dev/null
@@ -1,208 +0,0 @@
-crc32-vpmsum
-============
-
-A set of examples for accelerating CRC32 calculations using the vector
-polynomial multiply sum (vpmsum) instructions introduced in POWER8. These
-instructions implement byte, halfword, word and doubleword carryless
-multiply/add.
-
-Performance
------------
-
-An implementation of slice-by-8, one of the fastest lookup table methods
-is included so we can compare performance against it. Testing 5000000
-iterations of a CRC of 32 kB of data (to keep it L1 cache contained):
-
-```
-# time slice_by_8_bench 32768 5000000
-122.220 seconds
-
-# time crc32_bench 32768 5000000
-2.937 seconds
-```
-
-The vpmsum accelerated CRC is just over 41x faster.
-
-This test was run on a 4.1 GHz POWER8, so the algorithm sustains about
-52 GiB/sec or 13.6 bytes/cycle. The theoretical limit is 16 bytes/cycle
-since we can execute a maximum of one vpmsum instruction per cycle.
-
-In another test, a version was added to the kernel and btrfs write
-performance was shown to be 3.8x faster. The test was done to a ramdisk
-to mitigate any I/O induced variability.
-
-Quick start
------------
-
-- Modify CRC and OPTIONS in the Makefile. There are examples for the two most
- common crc32s.
-
-- Type make to create the constants (crc32_constants.h)
-
-- Import the code into your application (crc32.S crc32_wrapper.c
- crc32_constants.h ppc-opcode.h) and call the CRC:
-
-```
-unsigned int crc32_vpmsum(unsigned int crc, unsigned char *p, unsigned long len);
-```
-
-CRC background
---------------
-
-For a good background on CRCs, check out:
-
-http://www.ross.net/crc/download/crc_v3.txt
-
-A few key points:
-
-- A CRC is the remainder after dividing a message by the CRC polynomial,
- ie M mod CRC_POLY
-- multiply/divide is carryless
-- add/subtract is an xor
-- n (where n is the order of the CRC) bits of zeroes are appended to the
- end of the message.
-
-One more important piece of information - a CRC is a linear function, so:
-
-```
- CRC(A xor B) = CRC(A) xor CRC(B)
-
- CRC(A . B) = CRC(A) . CRC(B) (remember this is carryless multiply)
-```
-
-If we take 64bits of data, represented by two 32 bit chunks (AAAAAAAA
-and BBBBBBBB):
-
-```
-CRC(AAAAAAAABBBBBBBB)
- = CRC(AAAAAAAA00000000 xor BBBBBBBB)
- = CRC(AAAAAAAA00000000) xor CRC(BBBBBBBB)
-```
-
-If we operate on AAAAAAAA:
-
-```
-CRC(AAAAAAAA00000000)
- = CRC(AAAAAAAA . 100000000)
- = CRC(AAAAAAAA) . CRC(100000000)
-```
-
-And CRC(100000000) is a constant which we can pre-calculate:
-
-```
-CRC(100000000)
- = 100000000 mod CRC_POLY
- = 2^32 mod CRC_POLY
-```
-
-Finally we can add our modified AAAAAAAA to BBBBBBBB:
-
-```
-CRC(AAAAAAAABBBBBBBB)
- = ((2^32 mod CRC_POLY) . CRC(AAAAAAAA)) xor CRC(BBBBBBBB)
-```
-
-In other words, with the right constants pre-calculated we can shift the
-input data around and we can also calculate the CRC in as many parallel
-chunks as we want.
-
-No matter how much shifting we do, the final result will be be 64 bits of
-data (63 actually, because there is no carry into the top bit). To reduce
-it further we need a another trick, and that is Barrett reduction:
-
-http://en.wikipedia.org/wiki/Barrett_reduction
-
-Barrett reduction is a method of calculating a mod n. The idea is to
-calculate q, the multiple of our polynomial that we need to subtract. By
-doing the computation 2x bits higher (ie 64 bits) and shifting the
-result back down 2x bits, we round down to the nearest multiple.
-
-```
- k = 32
- m = floor((4^k)/n) = floor((4^32))/n)
- n = 64 bits of data
- a = 32 bit CRC
-
- q = floor(ma/(2^64))
- result = a - qn
-```
-
-An example in the floating point domain makes it clearer how this works:
-
-```
-a mod n = a - floor(am) * n
-```
-
-Let's use it to calculate 22 mod 10:
-
-```
- a = 22
- n = 10
- m = 1/n = 1/10 = 0.1
-
-22 mod 10
- = 22 - floor(22*0.1) * 10
- = 22 - 2 * 10
- = 22 - 20
- = 2
-```
-
-There is one more issue left - bit reflection. Some CRCs are defined to
-operate on the least significant bit first (eg CRC32c). Lets look at
-how this would get laid out in a register, and lets simplify it to just
-two bytes (vs a 16 byte VMX register):
-
- [ 8..15 ] [ 0..7 ]
-
-Notice how the bits and bytes are out of order. Since we are doing
-multi word multiplication on these values we need them to both be
-in order.
-
-The simplest way to fix this is to reflect the bits in each byte:
-
- [ 15..8 ] [ 7..0 ]
-
-However shuffling bits in a byte is expensive on most CPUs. It is
-however relatively cheap to shuffle bytes around. What if we load
-the bytes in reversed:
-
- [ 0..7 ] [ 8..15 ]
-
-Now the bits and bytes are in order, except the least significant bit
-of the register is now on the left and the most significant bit is on the
-right. We operate as if the register is reflected, which normally we
-cannot do. The reason we get away with this is our multiplies are carryless
-and our addition and subtraction is xor, so our operations never create
-carries.
-
-The only trick is we have to shift the result of multiplies left one
-because the high bit of the multiply is always 0, and we want that high bit
-on the right not the left.
-
-Implementation
---------------
-
-The vpmsum instructions on POWER8 have a 6 cycle latency and we can
-execute one every cycle. In light of this the main loop has 8 parallel
-streams which consume 8 x 16 B each iteration. At the completion of this
-loop we have taken 32 kB of data and reduced it to 8 x 16 B (128 B).
-
-The next step is to take this 128 B and reduce it to 8 B. At this stage
-we also add 32 bits of 0 to the end.
-
-We then apply Barrett reduction to get our CRC.
-
-Examples
---------
-- barrett_reduction: An example of Barrett reduction
-
-- final_fold: Starting with 128 bits, add 32 bits of zeros and reduce it to
- 64 bits, then apply Barrett reduction
-
-- final_fold2: A second method of reduction
-
-Acknowledgements
-----------------
-
-Thanks to Michael Gschwind, Jeff Derby, Lorena Pesantez and Stewart Smith
-for their ideas and assistance.
diff --git a/src/support/power8/crc32.S b/src/support/power8/crc32.S
deleted file mode 100644
index c0b81143f07..00000000000
--- a/src/support/power8/crc32.S
+++ /dev/null
@@ -1,771 +0,0 @@
-#if defined(__powerpc64__)
-/*
- * Calculate the checksum of data that is 16 byte aligned and a multiple of
- * 16 bytes.
- *
- * The first step is to reduce it to 1024 bits. We do this in 8 parallel
- * chunks in order to mask the latency of the vpmsum instructions. If we
- * have more than 32 kB of data to checksum we repeat this step multiple
- * times, passing in the previous 1024 bits.
- *
- * The next step is to reduce the 1024 bits to 64 bits. This step adds
- * 32 bits of 0s to the end - this matches what a CRC does. We just
- * calculate constants that land the data in this 32 bits.
- *
- * We then use fixed point Barrett reduction to compute a mod n over GF(2)
- * for n = CRC using POWER8 instructions. We use x = 32.
- *
- * http://en.wikipedia.org/wiki/Barrett_reduction
- *
- * Copyright (C) 2015 Anton Blanchard <anton@au.ibm.com>, IBM
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
-#include <ppc-asm.h>
-#include "ppc-opcode.h"
-
-#undef toc
-
-#ifndef r1
-#define r1 1
-#endif
-
-#ifndef r2
-#define r2 2
-#endif
-
- .section .rodata
-.balign 16
-
-.byteswap_constant:
- /* byte reverse permute constant */
- .octa 0x0F0E0D0C0B0A09080706050403020100
-
-#define __ASSEMBLY__
-#include "crc32_constants.h"
-
- .text
-
-#if defined(__BIG_ENDIAN__) && defined(REFLECT)
-#define BYTESWAP_DATA
-#elif defined(__LITTLE_ENDIAN__) && !defined(REFLECT)
-#define BYTESWAP_DATA
-#else
-#undef BYTESWAP_DATA
-#endif
-
-#define off16 r25
-#define off32 r26
-#define off48 r27
-#define off64 r28
-#define off80 r29
-#define off96 r30
-#define off112 r31
-
-#define const1 v24
-#define const2 v25
-
-#define byteswap v26
-#define mask_32bit v27
-#define mask_64bit v28
-#define zeroes v29
-
-#ifdef BYTESWAP_DATA
-#define VPERM(A, B, C, D) vperm A, B, C, D
-#else
-#define VPERM(A, B, C, D)
-#endif
-
-/* unsigned int __crc32_vpmsum(unsigned int crc, void *p, unsigned long len) */
-FUNC_START(__crc32_vpmsum)
- std r31,-8(r1)
- std r30,-16(r1)
- std r29,-24(r1)
- std r28,-32(r1)
- std r27,-40(r1)
- std r26,-48(r1)
- std r25,-56(r1)
-
- li off16,16
- li off32,32
- li off48,48
- li off64,64
- li off80,80
- li off96,96
- li off112,112
- li r0,0
-
- /* Enough room for saving 10 non volatile VMX registers */
- subi r6,r1,56+10*16
- subi r7,r1,56+2*16
-
- stvx v20,0,r6
- stvx v21,off16,r6
- stvx v22,off32,r6
- stvx v23,off48,r6
- stvx v24,off64,r6
- stvx v25,off80,r6
- stvx v26,off96,r6
- stvx v27,off112,r6
- stvx v28,0,r7
- stvx v29,off16,r7
-
- mr r10,r3
-
- vxor zeroes,zeroes,zeroes
- vspltisw v0,-1
-
- vsldoi mask_32bit,zeroes,v0,4
- vsldoi mask_64bit,zeroes,v0,8
-
- /* Get the initial value into v8 */
- vxor v8,v8,v8
- MTVRD(v8, r3)
-#ifdef REFLECT
- vsldoi v8,zeroes,v8,8 /* shift into bottom 32 bits */
-#else
- vsldoi v8,v8,zeroes,4 /* shift into top 32 bits */
-#endif
-
-#ifdef BYTESWAP_DATA
- addis r3,r2,.byteswap_constant@toc@ha
- addi r3,r3,.byteswap_constant@toc@l
-
- lvx byteswap,0,r3
- addi r3,r3,16
-#endif
-
- cmpdi r5,256
- blt .Lshort
-
- rldicr r6,r5,0,56
-
- /* Checksum in blocks of MAX_SIZE */
-1: lis r7,MAX_SIZE@h
- ori r7,r7,MAX_SIZE@l
- mr r9,r7
- cmpd r6,r7
- bgt 2f
- mr r7,r6
-2: subf r6,r7,r6
-
- /* our main loop does 128 bytes at a time */
- srdi r7,r7,7
-
- /*
- * Work out the offset into the constants table to start at. Each
- * constant is 16 bytes, and it is used against 128 bytes of input
- * data - 128 / 16 = 8
- */
- sldi r8,r7,4
- srdi r9,r9,3
- subf r8,r8,r9
-
- /* We reduce our final 128 bytes in a separate step */
- addi r7,r7,-1
- mtctr r7
-
- addis r3,r2,.constants@toc@ha
- addi r3,r3,.constants@toc@l
-
- /* Find the start of our constants */
- add r3,r3,r8
-
- /* zero v0-v7 which will contain our checksums */
- vxor v0,v0,v0
- vxor v1,v1,v1
- vxor v2,v2,v2
- vxor v3,v3,v3
- vxor v4,v4,v4
- vxor v5,v5,v5
- vxor v6,v6,v6
- vxor v7,v7,v7
-
- lvx const1,0,r3
-
- /*
- * If we are looping back to consume more data we use the values
- * already in v16-v23.
- */
- cmpdi r0,1
- beq 2f
-
- /* First warm up pass */
- lvx v16,0,r4
- lvx v17,off16,r4
- VPERM(v16,v16,v16,byteswap)
- VPERM(v17,v17,v17,byteswap)
- lvx v18,off32,r4
- lvx v19,off48,r4
- VPERM(v18,v18,v18,byteswap)
- VPERM(v19,v19,v19,byteswap)
- lvx v20,off64,r4
- lvx v21,off80,r4
- VPERM(v20,v20,v20,byteswap)
- VPERM(v21,v21,v21,byteswap)
- lvx v22,off96,r4
- lvx v23,off112,r4
- VPERM(v22,v22,v22,byteswap)
- VPERM(v23,v23,v23,byteswap)
- addi r4,r4,8*16
-
- /* xor in initial value */
- vxor v16,v16,v8
-
-2: bdz .Lfirst_warm_up_done
-
- addi r3,r3,16
- lvx const2,0,r3
-
- /* Second warm up pass */
- VPMSUMD(v8,v16,const1)
- lvx v16,0,r4
- VPERM(v16,v16,v16,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v9,v17,const1)
- lvx v17,off16,r4
- VPERM(v17,v17,v17,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v10,v18,const1)
- lvx v18,off32,r4
- VPERM(v18,v18,v18,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v11,v19,const1)
- lvx v19,off48,r4
- VPERM(v19,v19,v19,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v12,v20,const1)
- lvx v20,off64,r4
- VPERM(v20,v20,v20,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v13,v21,const1)
- lvx v21,off80,r4
- VPERM(v21,v21,v21,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v14,v22,const1)
- lvx v22,off96,r4
- VPERM(v22,v22,v22,byteswap)
- ori r2,r2,0
-
- VPMSUMD(v15,v23,const1)
- lvx v23,off112,r4
- VPERM(v23,v23,v23,byteswap)
-
- addi r4,r4,8*16
-
- bdz .Lfirst_cool_down
-
- /*
- * main loop. We modulo schedule it such that it takes three iterations
- * to complete - first iteration load, second iteration vpmsum, third
- * iteration xor.
- */
- .balign 16
-4: lvx const1,0,r3
- addi r3,r3,16
- ori r2,r2,0
-
- vxor v0,v0,v8
- VPMSUMD(v8,v16,const2)
- lvx v16,0,r4
- VPERM(v16,v16,v16,byteswap)
- ori r2,r2,0
-
- vxor v1,v1,v9
- VPMSUMD(v9,v17,const2)
- lvx v17,off16,r4
- VPERM(v17,v17,v17,byteswap)
- ori r2,r2,0
-
- vxor v2,v2,v10
- VPMSUMD(v10,v18,const2)
- lvx v18,off32,r4
- VPERM(v18,v18,v18,byteswap)
- ori r2,r2,0
-
- vxor v3,v3,v11
- VPMSUMD(v11,v19,const2)
- lvx v19,off48,r4
- VPERM(v19,v19,v19,byteswap)
- lvx const2,0,r3
- ori r2,r2,0
-
- vxor v4,v4,v12
- VPMSUMD(v12,v20,const1)
- lvx v20,off64,r4
- VPERM(v20,v20,v20,byteswap)
- ori r2,r2,0
-
- vxor v5,v5,v13
- VPMSUMD(v13,v21,const1)
- lvx v21,off80,r4
- VPERM(v21,v21,v21,byteswap)
- ori r2,r2,0
-
- vxor v6,v6,v14
- VPMSUMD(v14,v22,const1)
- lvx v22,off96,r4
- VPERM(v22,v22,v22,byteswap)
- ori r2,r2,0
-
- vxor v7,v7,v15
- VPMSUMD(v15,v23,const1)
- lvx v23,off112,r4
- VPERM(v23,v23,v23,byteswap)
-
- addi r4,r4,8*16
-
- bdnz 4b
-
-.Lfirst_cool_down:
- /* First cool down pass */
- lvx const1,0,r3
- addi r3,r3,16
-
- vxor v0,v0,v8
- VPMSUMD(v8,v16,const1)
- ori r2,r2,0
-
- vxor v1,v1,v9
- VPMSUMD(v9,v17,const1)
- ori r2,r2,0
-
- vxor v2,v2,v10
- VPMSUMD(v10,v18,const1)
- ori r2,r2,0
-
- vxor v3,v3,v11
- VPMSUMD(v11,v19,const1)
- ori r2,r2,0
-
- vxor v4,v4,v12
- VPMSUMD(v12,v20,const1)
- ori r2,r2,0
-
- vxor v5,v5,v13
- VPMSUMD(v13,v21,const1)
- ori r2,r2,0
-
- vxor v6,v6,v14
- VPMSUMD(v14,v22,const1)
- ori r2,r2,0
-
- vxor v7,v7,v15
- VPMSUMD(v15,v23,const1)
- ori r2,r2,0
-
-.Lsecond_cool_down:
- /* Second cool down pass */
- vxor v0,v0,v8
- vxor v1,v1,v9
- vxor v2,v2,v10
- vxor v3,v3,v11
- vxor v4,v4,v12
- vxor v5,v5,v13
- vxor v6,v6,v14
- vxor v7,v7,v15
-
-#ifdef REFLECT
- /*
- * vpmsumd produces a 96 bit result in the least significant bits
- * of the register. Since we are bit reflected we have to shift it
- * left 32 bits so it occupies the least significant bits in the
- * bit reflected domain.
- */
- vsldoi v0,v0,zeroes,4
- vsldoi v1,v1,zeroes,4
- vsldoi v2,v2,zeroes,4
- vsldoi v3,v3,zeroes,4
- vsldoi v4,v4,zeroes,4
- vsldoi v5,v5,zeroes,4
- vsldoi v6,v6,zeroes,4
- vsldoi v7,v7,zeroes,4
-#endif
-
- /* xor with last 1024 bits */
- lvx v8,0,r4
- lvx v9,off16,r4
- VPERM(v8,v8,v8,byteswap)
- VPERM(v9,v9,v9,byteswap)
- lvx v10,off32,r4
- lvx v11,off48,r4
- VPERM(v10,v10,v10,byteswap)
- VPERM(v11,v11,v11,byteswap)
- lvx v12,off64,r4
- lvx v13,off80,r4
- VPERM(v12,v12,v12,byteswap)
- VPERM(v13,v13,v13,byteswap)
- lvx v14,off96,r4
- lvx v15,off112,r4
- VPERM(v14,v14,v14,byteswap)
- VPERM(v15,v15,v15,byteswap)
-
- addi r4,r4,8*16
-
- vxor v16,v0,v8
- vxor v17,v1,v9
- vxor v18,v2,v10
- vxor v19,v3,v11
- vxor v20,v4,v12
- vxor v21,v5,v13
- vxor v22,v6,v14
- vxor v23,v7,v15
-
- li r0,1
- cmpdi r6,0
- addi r6,r6,128
- bne 1b
-
- /* Work out how many bytes we have left */
- andi. r5,r5,127
-
- /* Calculate where in the constant table we need to start */
- subfic r6,r5,128
- add r3,r3,r6
-
- /* How many 16 byte chunks are in the tail */
- srdi r7,r5,4
- mtctr r7
-
- /*
- * Reduce the previously calculated 1024 bits to 64 bits, shifting
- * 32 bits to include the trailing 32 bits of zeros
- */
- lvx v0,0,r3
- lvx v1,off16,r3
- lvx v2,off32,r3
- lvx v3,off48,r3
- lvx v4,off64,r3
- lvx v5,off80,r3
- lvx v6,off96,r3
- lvx v7,off112,r3
- addi r3,r3,8*16
-
- VPMSUMW(v0,v16,v0)
- VPMSUMW(v1,v17,v1)
- VPMSUMW(v2,v18,v2)
- VPMSUMW(v3,v19,v3)
- VPMSUMW(v4,v20,v4)
- VPMSUMW(v5,v21,v5)
- VPMSUMW(v6,v22,v6)
- VPMSUMW(v7,v23,v7)
-
- /* Now reduce the tail (0 - 112 bytes) */
- cmpdi r7,0
- beq 1f
-
- lvx v16,0,r4
- lvx v17,0,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off16,r4
- lvx v17,off16,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off32,r4
- lvx v17,off32,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off48,r4
- lvx v17,off48,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off64,r4
- lvx v17,off64,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off80,r4
- lvx v17,off80,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
- bdz 1f
-
- lvx v16,off96,r4
- lvx v17,off96,r3
- VPERM(v16,v16,v16,byteswap)
- VPMSUMW(v16,v16,v17)
- vxor v0,v0,v16
-
- /* Now xor all the parallel chunks together */
-1: vxor v0,v0,v1
- vxor v2,v2,v3
- vxor v4,v4,v5
- vxor v6,v6,v7
-
- vxor v0,v0,v2
- vxor v4,v4,v6
-
- vxor v0,v0,v4
-
-.Lbarrett_reduction:
- /* Barrett constants */
- addis r3,r2,.barrett_constants@toc@ha
- addi r3,r3,.barrett_constants@toc@l
-
- lvx const1,0,r3
- lvx const2,off16,r3
-
- vsldoi v1,v0,v0,8
- vxor v0,v0,v1 /* xor two 64 bit results together */
-
-#ifdef REFLECT
- /* shift left one bit */
- vspltisb v1,1
- vsl v0,v0,v1
-#endif
-
- vand v0,v0,mask_64bit
-
-#ifndef REFLECT
- /*
- * Now for the Barrett reduction algorithm. The idea is to calculate q,
- * the multiple of our polynomial that we need to subtract. By
- * doing the computation 2x bits higher (ie 64 bits) and shifting the
- * result back down 2x bits, we round down to the nearest multiple.
- */
- VPMSUMD(v1,v0,const1) /* ma */
- vsldoi v1,zeroes,v1,8 /* q = floor(ma/(2^64)) */
- VPMSUMD(v1,v1,const2) /* qn */
- vxor v0,v0,v1 /* a - qn, subtraction is xor in GF(2) */
-
- /*
- * Get the result into r3. We need to shift it left 8 bytes:
- * V0 [ 0 1 2 X ]
- * V0 [ 0 X 2 3 ]
- */
- vsldoi v0,v0,zeroes,8 /* shift result into top 64 bits */
-#else
- /*
- * The reflected version of Barrett reduction. Instead of bit
- * reflecting our data (which is expensive to do), we bit reflect our
- * constants and our algorithm, which means the intermediate data in
- * our vector registers goes from 0-63 instead of 63-0. We can reflect
- * the algorithm because we don't carry in mod 2 arithmetic.
- */
- vand v1,v0,mask_32bit /* bottom 32 bits of a */
- VPMSUMD(v1,v1,const1) /* ma */
- vand v1,v1,mask_32bit /* bottom 32bits of ma */
- VPMSUMD(v1,v1,const2) /* qn */
- vxor v0,v0,v1 /* a - qn, subtraction is xor in GF(2) */
-
- /*
- * Since we are bit reflected, the result (ie the low 32 bits) is in
- * the high 32 bits. We just need to shift it left 4 bytes
- * V0 [ 0 1 X 3 ]
- * V0 [ 0 X 2 3 ]
- */
- vsldoi v0,v0,zeroes,4 /* shift result into top 64 bits of */
-#endif
-
- /* Get it into r3 */
- MFVRD(r3, v0)
-
-.Lout:
- subi r6,r1,56+10*16
- subi r7,r1,56+2*16
-
- lvx v20,0,r6
- lvx v21,off16,r6
- lvx v22,off32,r6
- lvx v23,off48,r6
- lvx v24,off64,r6
- lvx v25,off80,r6
- lvx v26,off96,r6
- lvx v27,off112,r6
- lvx v28,0,r7
- lvx v29,off16,r7
-
- ld r31,-8(r1)
- ld r30,-16(r1)
- ld r29,-24(r1)
- ld r28,-32(r1)
- ld r27,-40(r1)
- ld r26,-48(r1)
- ld r25,-56(r1)
-
- blr
-
-.Lfirst_warm_up_done:
- lvx const1,0,r3
- addi r3,r3,16
-
- VPMSUMD(v8,v16,const1)
- VPMSUMD(v9,v17,const1)
- VPMSUMD(v10,v18,const1)
- VPMSUMD(v11,v19,const1)
- VPMSUMD(v12,v20,const1)
- VPMSUMD(v13,v21,const1)
- VPMSUMD(v14,v22,const1)
- VPMSUMD(v15,v23,const1)
-
- b .Lsecond_cool_down
-
-.Lshort:
- cmpdi r5,0
- beq .Lzero
-
- addis r3,r2,.short_constants@toc@ha
- addi r3,r3,.short_constants@toc@l
-
- /* Calculate where in the constant table we need to start */
- subfic r6,r5,256
- add r3,r3,r6
-
- /* How many 16 byte chunks? */
- srdi r7,r5,4
- mtctr r7
-
- vxor v19,v19,v19
- vxor v20,v20,v20
-
- lvx v0,0,r4
- lvx v16,0,r3
- VPERM(v0,v0,v16,byteswap)
- vxor v0,v0,v8 /* xor in initial value */
- VPMSUMW(v0,v0,v16)
- bdz .Lv0
-
- lvx v1,off16,r4
- lvx v17,off16,r3
- VPERM(v1,v1,v17,byteswap)
- VPMSUMW(v1,v1,v17)
- bdz .Lv1
-
- lvx v2,off32,r4
- lvx v16,off32,r3
- VPERM(v2,v2,v16,byteswap)
- VPMSUMW(v2,v2,v16)
- bdz .Lv2
-
- lvx v3,off48,r4
- lvx v17,off48,r3
- VPERM(v3,v3,v17,byteswap)
- VPMSUMW(v3,v3,v17)
- bdz .Lv3
-
- lvx v4,off64,r4
- lvx v16,off64,r3
- VPERM(v4,v4,v16,byteswap)
- VPMSUMW(v4,v4,v16)
- bdz .Lv4
-
- lvx v5,off80,r4
- lvx v17,off80,r3
- VPERM(v5,v5,v17,byteswap)
- VPMSUMW(v5,v5,v17)
- bdz .Lv5
-
- lvx v6,off96,r4
- lvx v16,off96,r3
- VPERM(v6,v6,v16,byteswap)
- VPMSUMW(v6,v6,v16)
- bdz .Lv6
-
- lvx v7,off112,r4
- lvx v17,off112,r3
- VPERM(v7,v7,v17,byteswap)
- VPMSUMW(v7,v7,v17)
- bdz .Lv7
-
- addi r3,r3,128
- addi r4,r4,128
-
- lvx v8,0,r4
- lvx v16,0,r3
- VPERM(v8,v8,v16,byteswap)
- VPMSUMW(v8,v8,v16)
- bdz .Lv8
-
- lvx v9,off16,r4
- lvx v17,off16,r3
- VPERM(v9,v9,v17,byteswap)
- VPMSUMW(v9,v9,v17)
- bdz .Lv9
-
- lvx v10,off32,r4
- lvx v16,off32,r3
- VPERM(v10,v10,v16,byteswap)
- VPMSUMW(v10,v10,v16)
- bdz .Lv10
-
- lvx v11,off48,r4
- lvx v17,off48,r3
- VPERM(v11,v11,v17,byteswap)
- VPMSUMW(v11,v11,v17)
- bdz .Lv11
-
- lvx v12,off64,r4
- lvx v16,off64,r3
- VPERM(v12,v12,v16,byteswap)
- VPMSUMW(v12,v12,v16)
- bdz .Lv12
-
- lvx v13,off80,r4
- lvx v17,off80,r3
- VPERM(v13,v13,v17,byteswap)
- VPMSUMW(v13,v13,v17)
- bdz .Lv13
-
- lvx v14,off96,r4
- lvx v16,off96,r3
- VPERM(v14,v14,v16,byteswap)
- VPMSUMW(v14,v14,v16)
- bdz .Lv14
-
- lvx v15,off112,r4
- lvx v17,off112,r3
- VPERM(v15,v15,v17,byteswap)
- VPMSUMW(v15,v15,v17)
-
-.Lv15: vxor v19,v19,v15
-.Lv14: vxor v20,v20,v14
-.Lv13: vxor v19,v19,v13
-.Lv12: vxor v20,v20,v12
-.Lv11: vxor v19,v19,v11
-.Lv10: vxor v20,v20,v10
-.Lv9: vxor v19,v19,v9
-.Lv8: vxor v20,v20,v8
-.Lv7: vxor v19,v19,v7
-.Lv6: vxor v20,v20,v6
-.Lv5: vxor v19,v19,v5
-.Lv4: vxor v20,v20,v4
-.Lv3: vxor v19,v19,v3
-.Lv2: vxor v20,v20,v2
-.Lv1: vxor v19,v19,v1
-.Lv0: vxor v20,v20,v0
-
- vxor v0,v19,v20
-
- b .Lbarrett_reduction
-
-.Lzero:
- mr r3,r10
- b .Lout
-
-FUNC_END(__crc32_vpmsum)
-#endif
diff --git a/src/support/power8/crc32_constants.h b/src/support/power8/crc32_constants.h
deleted file mode 100644
index 02c471d1c56..00000000000
--- a/src/support/power8/crc32_constants.h
+++ /dev/null
@@ -1,901 +0,0 @@
-#define CRC 0x1edc6f41
-#define CRC_XOR
-#define REFLECT
-
-#ifndef __ASSEMBLY__
-#ifdef CRC_TABLE
-static const unsigned int crc_table[] = {
- 0x00000000, 0xf26b8303, 0xe13b70f7, 0x1350f3f4,
- 0xc79a971f, 0x35f1141c, 0x26a1e7e8, 0xd4ca64eb,
- 0x8ad958cf, 0x78b2dbcc, 0x6be22838, 0x9989ab3b,
- 0x4d43cfd0, 0xbf284cd3, 0xac78bf27, 0x5e133c24,
- 0x105ec76f, 0xe235446c, 0xf165b798, 0x030e349b,
- 0xd7c45070, 0x25afd373, 0x36ff2087, 0xc494a384,
- 0x9a879fa0, 0x68ec1ca3, 0x7bbcef57, 0x89d76c54,
- 0x5d1d08bf, 0xaf768bbc, 0xbc267848, 0x4e4dfb4b,
- 0x20bd8ede, 0xd2d60ddd, 0xc186fe29, 0x33ed7d2a,
- 0xe72719c1, 0x154c9ac2, 0x061c6936, 0xf477ea35,
- 0xaa64d611, 0x580f5512, 0x4b5fa6e6, 0xb93425e5,
- 0x6dfe410e, 0x9f95c20d, 0x8cc531f9, 0x7eaeb2fa,
- 0x30e349b1, 0xc288cab2, 0xd1d83946, 0x23b3ba45,
- 0xf779deae, 0x05125dad, 0x1642ae59, 0xe4292d5a,
- 0xba3a117e, 0x4851927d, 0x5b016189, 0xa96ae28a,
- 0x7da08661, 0x8fcb0562, 0x9c9bf696, 0x6ef07595,
- 0x417b1dbc, 0xb3109ebf, 0xa0406d4b, 0x522bee48,
- 0x86e18aa3, 0x748a09a0, 0x67dafa54, 0x95b17957,
- 0xcba24573, 0x39c9c670, 0x2a993584, 0xd8f2b687,
- 0x0c38d26c, 0xfe53516f, 0xed03a29b, 0x1f682198,
- 0x5125dad3, 0xa34e59d0, 0xb01eaa24, 0x42752927,
- 0x96bf4dcc, 0x64d4cecf, 0x77843d3b, 0x85efbe38,
- 0xdbfc821c, 0x2997011f, 0x3ac7f2eb, 0xc8ac71e8,
- 0x1c661503, 0xee0d9600, 0xfd5d65f4, 0x0f36e6f7,
- 0x61c69362, 0x93ad1061, 0x80fde395, 0x72966096,
- 0xa65c047d, 0x5437877e, 0x4767748a, 0xb50cf789,
- 0xeb1fcbad, 0x197448ae, 0x0a24bb5a, 0xf84f3859,
- 0x2c855cb2, 0xdeeedfb1, 0xcdbe2c45, 0x3fd5af46,
- 0x7198540d, 0x83f3d70e, 0x90a324fa, 0x62c8a7f9,
- 0xb602c312, 0x44694011, 0x5739b3e5, 0xa55230e6,
- 0xfb410cc2, 0x092a8fc1, 0x1a7a7c35, 0xe811ff36,
- 0x3cdb9bdd, 0xceb018de, 0xdde0eb2a, 0x2f8b6829,
- 0x82f63b78, 0x709db87b, 0x63cd4b8f, 0x91a6c88c,
- 0x456cac67, 0xb7072f64, 0xa457dc90, 0x563c5f93,
- 0x082f63b7, 0xfa44e0b4, 0xe9141340, 0x1b7f9043,
- 0xcfb5f4a8, 0x3dde77ab, 0x2e8e845f, 0xdce5075c,
- 0x92a8fc17, 0x60c37f14, 0x73938ce0, 0x81f80fe3,
- 0x55326b08, 0xa759e80b, 0xb4091bff, 0x466298fc,
- 0x1871a4d8, 0xea1a27db, 0xf94ad42f, 0x0b21572c,
- 0xdfeb33c7, 0x2d80b0c4, 0x3ed04330, 0xccbbc033,
- 0xa24bb5a6, 0x502036a5, 0x4370c551, 0xb11b4652,
- 0x65d122b9, 0x97baa1ba, 0x84ea524e, 0x7681d14d,
- 0x2892ed69, 0xdaf96e6a, 0xc9a99d9e, 0x3bc21e9d,
- 0xef087a76, 0x1d63f975, 0x0e330a81, 0xfc588982,
- 0xb21572c9, 0x407ef1ca, 0x532e023e, 0xa145813d,
- 0x758fe5d6, 0x87e466d5, 0x94b49521, 0x66df1622,
- 0x38cc2a06, 0xcaa7a905, 0xd9f75af1, 0x2b9cd9f2,
- 0xff56bd19, 0x0d3d3e1a, 0x1e6dcdee, 0xec064eed,
- 0xc38d26c4, 0x31e6a5c7, 0x22b65633, 0xd0ddd530,
- 0x0417b1db, 0xf67c32d8, 0xe52cc12c, 0x1747422f,
- 0x49547e0b, 0xbb3ffd08, 0xa86f0efc, 0x5a048dff,
- 0x8ecee914, 0x7ca56a17, 0x6ff599e3, 0x9d9e1ae0,
- 0xd3d3e1ab, 0x21b862a8, 0x32e8915c, 0xc083125f,
- 0x144976b4, 0xe622f5b7, 0xf5720643, 0x07198540,
- 0x590ab964, 0xab613a67, 0xb831c993, 0x4a5a4a90,
- 0x9e902e7b, 0x6cfbad78, 0x7fab5e8c, 0x8dc0dd8f,
- 0xe330a81a, 0x115b2b19, 0x020bd8ed, 0xf0605bee,
- 0x24aa3f05, 0xd6c1bc06, 0xc5914ff2, 0x37faccf1,
- 0x69e9f0d5, 0x9b8273d6, 0x88d28022, 0x7ab90321,
- 0xae7367ca, 0x5c18e4c9, 0x4f48173d, 0xbd23943e,
- 0xf36e6f75, 0x0105ec76, 0x12551f82, 0xe03e9c81,
- 0x34f4f86a, 0xc69f7b69, 0xd5cf889d, 0x27a40b9e,
- 0x79b737ba, 0x8bdcb4b9, 0x988c474d, 0x6ae7c44e,
- 0xbe2da0a5, 0x4c4623a6, 0x5f16d052, 0xad7d5351,};
-
-#endif
-#else
-#define MAX_SIZE 32768
-.constants:
-
- /* Reduce 262144 kbits to 1024 bits */
- /* x^261120 mod p(x)` << 1, x^261184 mod p(x)` << 1 */
- .octa 0x00000000b6ca9e20000000009c37c408
-
- /* x^260096 mod p(x)` << 1, x^260160 mod p(x)` << 1 */
- .octa 0x00000000350249a800000001b51df26c
-
- /* x^259072 mod p(x)` << 1, x^259136 mod p(x)` << 1 */
- .octa 0x00000001862dac54000000000724b9d0
-
- /* x^258048 mod p(x)` << 1, x^258112 mod p(x)` << 1 */
- .octa 0x00000001d87fb48c00000001c00532fe
-
- /* x^257024 mod p(x)` << 1, x^257088 mod p(x)` << 1 */
- .octa 0x00000001f39b699e00000000f05a9362
-
- /* x^256000 mod p(x)` << 1, x^256064 mod p(x)` << 1 */
- .octa 0x0000000101da11b400000001e1007970
-
- /* x^254976 mod p(x)` << 1, x^255040 mod p(x)` << 1 */
- .octa 0x00000001cab571e000000000a57366ee
-
- /* x^253952 mod p(x)` << 1, x^254016 mod p(x)` << 1 */
- .octa 0x00000000c7020cfe0000000192011284
-
- /* x^252928 mod p(x)` << 1, x^252992 mod p(x)` << 1 */
- .octa 0x00000000cdaed1ae0000000162716d9a
-
- /* x^251904 mod p(x)` << 1, x^251968 mod p(x)` << 1 */
- .octa 0x00000001e804effc00000000cd97ecde
-
- /* x^250880 mod p(x)` << 1, x^250944 mod p(x)` << 1 */
- .octa 0x0000000077c3ea3a0000000058812bc0
-
- /* x^249856 mod p(x)` << 1, x^249920 mod p(x)` << 1 */
- .octa 0x0000000068df31b40000000088b8c12e
-
- /* x^248832 mod p(x)` << 1, x^248896 mod p(x)` << 1 */
- .octa 0x00000000b059b6c200000001230b234c
-
- /* x^247808 mod p(x)` << 1, x^247872 mod p(x)` << 1 */
- .octa 0x0000000145fb8ed800000001120b416e
-
- /* x^246784 mod p(x)` << 1, x^246848 mod p(x)` << 1 */
- .octa 0x00000000cbc0916800000001974aecb0
-
- /* x^245760 mod p(x)` << 1, x^245824 mod p(x)` << 1 */
- .octa 0x000000005ceeedc2000000008ee3f226
-
- /* x^244736 mod p(x)` << 1, x^244800 mod p(x)` << 1 */
- .octa 0x0000000047d74e8600000001089aba9a
-
- /* x^243712 mod p(x)` << 1, x^243776 mod p(x)` << 1 */
- .octa 0x00000001407e9e220000000065113872
-
- /* x^242688 mod p(x)` << 1, x^242752 mod p(x)` << 1 */
- .octa 0x00000001da967bda000000005c07ec10
-
- /* x^241664 mod p(x)` << 1, x^241728 mod p(x)` << 1 */
- .octa 0x000000006c8983680000000187590924
-
- /* x^240640 mod p(x)` << 1, x^240704 mod p(x)` << 1 */
- .octa 0x00000000f2d14c9800000000e35da7c6
-
- /* x^239616 mod p(x)` << 1, x^239680 mod p(x)` << 1 */
- .octa 0x00000001993c6ad4000000000415855a
-
- /* x^238592 mod p(x)` << 1, x^238656 mod p(x)` << 1 */
- .octa 0x000000014683d1ac0000000073617758
-
- /* x^237568 mod p(x)` << 1, x^237632 mod p(x)` << 1 */
- .octa 0x00000001a7c93e6c0000000176021d28
-
- /* x^236544 mod p(x)` << 1, x^236608 mod p(x)` << 1 */
- .octa 0x000000010211e90a00000001c358fd0a
-
- /* x^235520 mod p(x)` << 1, x^235584 mod p(x)` << 1 */
- .octa 0x000000001119403e00000001ff7a2c18
-
- /* x^234496 mod p(x)` << 1, x^234560 mod p(x)` << 1 */
- .octa 0x000000001c3261aa00000000f2d9f7e4
-
- /* x^233472 mod p(x)` << 1, x^233536 mod p(x)` << 1 */
- .octa 0x000000014e37a634000000016cf1f9c8
-
- /* x^232448 mod p(x)` << 1, x^232512 mod p(x)` << 1 */
- .octa 0x0000000073786c0c000000010af9279a
-
- /* x^231424 mod p(x)` << 1, x^231488 mod p(x)` << 1 */
- .octa 0x000000011dc037f80000000004f101e8
-
- /* x^230400 mod p(x)` << 1, x^230464 mod p(x)` << 1 */
- .octa 0x0000000031433dfc0000000070bcf184
-
- /* x^229376 mod p(x)` << 1, x^229440 mod p(x)` << 1 */
- .octa 0x000000009cde8348000000000a8de642
-
- /* x^228352 mod p(x)` << 1, x^228416 mod p(x)` << 1 */
- .octa 0x0000000038d3c2a60000000062ea130c
-
- /* x^227328 mod p(x)` << 1, x^227392 mod p(x)` << 1 */
- .octa 0x000000011b25f26000000001eb31cbb2
-
- /* x^226304 mod p(x)` << 1, x^226368 mod p(x)` << 1 */
- .octa 0x000000001629e6f00000000170783448
-
- /* x^225280 mod p(x)` << 1, x^225344 mod p(x)` << 1 */
- .octa 0x0000000160838b4c00000001a684b4c6
-
- /* x^224256 mod p(x)` << 1, x^224320 mod p(x)` << 1 */
- .octa 0x000000007a44011c00000000253ca5b4
-
- /* x^223232 mod p(x)` << 1, x^223296 mod p(x)` << 1 */
- .octa 0x00000000226f417a0000000057b4b1e2
-
- /* x^222208 mod p(x)` << 1, x^222272 mod p(x)` << 1 */
- .octa 0x0000000045eb2eb400000000b6bd084c
-
- /* x^221184 mod p(x)` << 1, x^221248 mod p(x)` << 1 */
- .octa 0x000000014459d70c0000000123c2d592
-
- /* x^220160 mod p(x)` << 1, x^220224 mod p(x)` << 1 */
- .octa 0x00000001d406ed8200000000159dafce
-
- /* x^219136 mod p(x)` << 1, x^219200 mod p(x)` << 1 */
- .octa 0x0000000160c8e1a80000000127e1a64e
-
- /* x^218112 mod p(x)` << 1, x^218176 mod p(x)` << 1 */
- .octa 0x0000000027ba80980000000056860754
-
- /* x^217088 mod p(x)` << 1, x^217152 mod p(x)` << 1 */
- .octa 0x000000006d92d01800000001e661aae8
-
- /* x^216064 mod p(x)` << 1, x^216128 mod p(x)` << 1 */
- .octa 0x000000012ed7e3f200000000f82c6166
-
- /* x^215040 mod p(x)` << 1, x^215104 mod p(x)` << 1 */
- .octa 0x000000002dc8778800000000c4f9c7ae
-
- /* x^214016 mod p(x)` << 1, x^214080 mod p(x)` << 1 */
- .octa 0x0000000018240bb80000000074203d20
-
- /* x^212992 mod p(x)` << 1, x^213056 mod p(x)` << 1 */
- .octa 0x000000001ad381580000000198173052
-
- /* x^211968 mod p(x)` << 1, x^212032 mod p(x)` << 1 */
- .octa 0x00000001396b78f200000001ce8aba54
-
- /* x^210944 mod p(x)` << 1, x^211008 mod p(x)` << 1 */
- .octa 0x000000011a68133400000001850d5d94
-
- /* x^209920 mod p(x)` << 1, x^209984 mod p(x)` << 1 */
- .octa 0x000000012104732e00000001d609239c
-
- /* x^208896 mod p(x)` << 1, x^208960 mod p(x)` << 1 */
- .octa 0x00000000a140d90c000000001595f048
-
- /* x^207872 mod p(x)` << 1, x^207936 mod p(x)` << 1 */
- .octa 0x00000001b7215eda0000000042ccee08
-
- /* x^206848 mod p(x)` << 1, x^206912 mod p(x)` << 1 */
- .octa 0x00000001aaf1df3c000000010a389d74
-
- /* x^205824 mod p(x)` << 1, x^205888 mod p(x)` << 1 */
- .octa 0x0000000029d15b8a000000012a840da6
-
- /* x^204800 mod p(x)` << 1, x^204864 mod p(x)` << 1 */
- .octa 0x00000000f1a96922000000001d181c0c
-
- /* x^203776 mod p(x)` << 1, x^203840 mod p(x)` << 1 */
- .octa 0x00000001ac80d03c0000000068b7d1f6
-
- /* x^202752 mod p(x)` << 1, x^202816 mod p(x)` << 1 */
- .octa 0x000000000f11d56a000000005b0f14fc
-
- /* x^201728 mod p(x)` << 1, x^201792 mod p(x)` << 1 */
- .octa 0x00000001f1c022a20000000179e9e730
-
- /* x^200704 mod p(x)` << 1, x^200768 mod p(x)` << 1 */
- .octa 0x0000000173d00ae200000001ce1368d6
-
- /* x^199680 mod p(x)` << 1, x^199744 mod p(x)` << 1 */
- .octa 0x00000001d4ffe4ac0000000112c3a84c
-
- /* x^198656 mod p(x)` << 1, x^198720 mod p(x)` << 1 */
- .octa 0x000000016edc5ae400000000de940fee
-
- /* x^197632 mod p(x)` << 1, x^197696 mod p(x)` << 1 */
- .octa 0x00000001f1a0214000000000fe896b7e
-
- /* x^196608 mod p(x)` << 1, x^196672 mod p(x)` << 1 */
- .octa 0x00000000ca0b28a000000001f797431c
-
- /* x^195584 mod p(x)` << 1, x^195648 mod p(x)` << 1 */
- .octa 0x00000001928e30a20000000053e989ba
-
- /* x^194560 mod p(x)` << 1, x^194624 mod p(x)` << 1 */
- .octa 0x0000000097b1b002000000003920cd16
-
- /* x^193536 mod p(x)` << 1, x^193600 mod p(x)` << 1 */
- .octa 0x00000000b15bf90600000001e6f579b8
-
- /* x^192512 mod p(x)` << 1, x^192576 mod p(x)` << 1 */
- .octa 0x00000000411c5d52000000007493cb0a
-
- /* x^191488 mod p(x)` << 1, x^191552 mod p(x)` << 1 */
- .octa 0x00000001c36f330000000001bdd376d8
-
- /* x^190464 mod p(x)` << 1, x^190528 mod p(x)` << 1 */
- .octa 0x00000001119227e0000000016badfee6
-
- /* x^189440 mod p(x)` << 1, x^189504 mod p(x)` << 1 */
- .octa 0x00000000114d47020000000071de5c58
-
- /* x^188416 mod p(x)` << 1, x^188480 mod p(x)` << 1 */
- .octa 0x00000000458b5b9800000000453f317c
-
- /* x^187392 mod p(x)` << 1, x^187456 mod p(x)` << 1 */
- .octa 0x000000012e31fb8e0000000121675cce
-
- /* x^186368 mod p(x)` << 1, x^186432 mod p(x)` << 1 */
- .octa 0x000000005cf619d800000001f409ee92
-
- /* x^185344 mod p(x)` << 1, x^185408 mod p(x)` << 1 */
- .octa 0x0000000063f4d8b200000000f36b9c88
-
- /* x^184320 mod p(x)` << 1, x^184384 mod p(x)` << 1 */
- .octa 0x000000004138dc8a0000000036b398f4
-
- /* x^183296 mod p(x)` << 1, x^183360 mod p(x)` << 1 */
- .octa 0x00000001d29ee8e000000001748f9adc
-
- /* x^182272 mod p(x)` << 1, x^182336 mod p(x)` << 1 */
- .octa 0x000000006a08ace800000001be94ec00
-
- /* x^181248 mod p(x)` << 1, x^181312 mod p(x)` << 1 */
- .octa 0x0000000127d4201000000000b74370d6
-
- /* x^180224 mod p(x)` << 1, x^180288 mod p(x)` << 1 */
- .octa 0x0000000019d76b6200000001174d0b98
-
- /* x^179200 mod p(x)` << 1, x^179264 mod p(x)` << 1 */
- .octa 0x00000001b1471f6e00000000befc06a4
-
- /* x^178176 mod p(x)` << 1, x^178240 mod p(x)` << 1 */
- .octa 0x00000001f64c19cc00000001ae125288
-
- /* x^177152 mod p(x)` << 1, x^177216 mod p(x)` << 1 */
- .octa 0x00000000003c0ea00000000095c19b34
-
- /* x^176128 mod p(x)` << 1, x^176192 mod p(x)` << 1 */
- .octa 0x000000014d73abf600000001a78496f2
-
- /* x^175104 mod p(x)` << 1, x^175168 mod p(x)` << 1 */
- .octa 0x00000001620eb84400000001ac5390a0
-
- /* x^174080 mod p(x)` << 1, x^174144 mod p(x)` << 1 */
- .octa 0x0000000147655048000000002a80ed6e
-
- /* x^173056 mod p(x)` << 1, x^173120 mod p(x)` << 1 */
- .octa 0x0000000067b5077e00000001fa9b0128
-
- /* x^172032 mod p(x)` << 1, x^172096 mod p(x)` << 1 */
- .octa 0x0000000010ffe20600000001ea94929e
-
- /* x^171008 mod p(x)` << 1, x^171072 mod p(x)` << 1 */
- .octa 0x000000000fee8f1e0000000125f4305c
-
- /* x^169984 mod p(x)` << 1, x^170048 mod p(x)` << 1 */
- .octa 0x00000001da26fbae00000001471e2002
-
- /* x^168960 mod p(x)` << 1, x^169024 mod p(x)` << 1 */
- .octa 0x00000001b3a8bd880000000132d2253a
-
- /* x^167936 mod p(x)` << 1, x^168000 mod p(x)` << 1 */
- .octa 0x00000000e8f3898e00000000f26b3592
-
- /* x^166912 mod p(x)` << 1, x^166976 mod p(x)` << 1 */
- .octa 0x00000000b0d0d28c00000000bc8b67b0
-
- /* x^165888 mod p(x)` << 1, x^165952 mod p(x)` << 1 */
- .octa 0x0000000030f2a798000000013a826ef2
-
- /* x^164864 mod p(x)` << 1, x^164928 mod p(x)` << 1 */
- .octa 0x000000000fba10020000000081482c84
-
- /* x^163840 mod p(x)` << 1, x^163904 mod p(x)` << 1 */
- .octa 0x00000000bdb9bd7200000000e77307c2
-
- /* x^162816 mod p(x)` << 1, x^162880 mod p(x)` << 1 */
- .octa 0x0000000075d3bf5a00000000d4a07ec8
-
- /* x^161792 mod p(x)` << 1, x^161856 mod p(x)` << 1 */
- .octa 0x00000000ef1f98a00000000017102100
-
- /* x^160768 mod p(x)` << 1, x^160832 mod p(x)` << 1 */
- .octa 0x00000000689c760200000000db406486
-
- /* x^159744 mod p(x)` << 1, x^159808 mod p(x)` << 1 */
- .octa 0x000000016d5fa5fe0000000192db7f88
-
- /* x^158720 mod p(x)` << 1, x^158784 mod p(x)` << 1 */
- .octa 0x00000001d0d2b9ca000000018bf67b1e
-
- /* x^157696 mod p(x)` << 1, x^157760 mod p(x)` << 1 */
- .octa 0x0000000041e7b470000000007c09163e
-
- /* x^156672 mod p(x)` << 1, x^156736 mod p(x)` << 1 */
- .octa 0x00000001cbb6495e000000000adac060
-
- /* x^155648 mod p(x)` << 1, x^155712 mod p(x)` << 1 */
- .octa 0x000000010052a0b000000000bd8316ae
-
- /* x^154624 mod p(x)` << 1, x^154688 mod p(x)` << 1 */
- .octa 0x00000001d8effb5c000000019f09ab54
-
- /* x^153600 mod p(x)` << 1, x^153664 mod p(x)` << 1 */
- .octa 0x00000001d969853c0000000125155542
-
- /* x^152576 mod p(x)` << 1, x^152640 mod p(x)` << 1 */
- .octa 0x00000000523ccce2000000018fdb5882
-
- /* x^151552 mod p(x)` << 1, x^151616 mod p(x)` << 1 */
- .octa 0x000000001e2436bc00000000e794b3f4
-
- /* x^150528 mod p(x)` << 1, x^150592 mod p(x)` << 1 */
- .octa 0x00000000ddd1c3a2000000016f9bb022
-
- /* x^149504 mod p(x)` << 1, x^149568 mod p(x)` << 1 */
- .octa 0x0000000019fcfe3800000000290c9978
-
- /* x^148480 mod p(x)` << 1, x^148544 mod p(x)` << 1 */
- .octa 0x00000001ce95db640000000083c0f350
-
- /* x^147456 mod p(x)` << 1, x^147520 mod p(x)` << 1 */
- .octa 0x00000000af5828060000000173ea6628
-
- /* x^146432 mod p(x)` << 1, x^146496 mod p(x)` << 1 */
- .octa 0x00000001006388f600000001c8b4e00a
-
- /* x^145408 mod p(x)` << 1, x^145472 mod p(x)` << 1 */
- .octa 0x0000000179eca00a00000000de95d6aa
-
- /* x^144384 mod p(x)` << 1, x^144448 mod p(x)` << 1 */
- .octa 0x0000000122410a6a000000010b7f7248
-
- /* x^143360 mod p(x)` << 1, x^143424 mod p(x)` << 1 */
- .octa 0x000000004288e87c00000001326e3a06
-
- /* x^142336 mod p(x)` << 1, x^142400 mod p(x)` << 1 */
- .octa 0x000000016c5490da00000000bb62c2e6
-
- /* x^141312 mod p(x)` << 1, x^141376 mod p(x)` << 1 */
- .octa 0x00000000d1c71f6e0000000156a4b2c2
-
- /* x^140288 mod p(x)` << 1, x^140352 mod p(x)` << 1 */
- .octa 0x00000001b4ce08a6000000011dfe763a
-
- /* x^139264 mod p(x)` << 1, x^139328 mod p(x)` << 1 */
- .octa 0x00000001466ba60c000000007bcca8e2
-
- /* x^138240 mod p(x)` << 1, x^138304 mod p(x)` << 1 */
- .octa 0x00000001f6c488a40000000186118faa
-
- /* x^137216 mod p(x)` << 1, x^137280 mod p(x)` << 1 */
- .octa 0x000000013bfb06820000000111a65a88
-
- /* x^136192 mod p(x)` << 1, x^136256 mod p(x)` << 1 */
- .octa 0x00000000690e9e54000000003565e1c4
-
- /* x^135168 mod p(x)` << 1, x^135232 mod p(x)` << 1 */
- .octa 0x00000000281346b6000000012ed02a82
-
- /* x^134144 mod p(x)` << 1, x^134208 mod p(x)` << 1 */
- .octa 0x000000015646402400000000c486ecfc
-
- /* x^133120 mod p(x)` << 1, x^133184 mod p(x)` << 1 */
- .octa 0x000000016063a8dc0000000001b951b2
-
- /* x^132096 mod p(x)` << 1, x^132160 mod p(x)` << 1 */
- .octa 0x0000000116a663620000000048143916
-
- /* x^131072 mod p(x)` << 1, x^131136 mod p(x)` << 1 */
- .octa 0x000000017e8aa4d200000001dc2ae124
-
- /* x^130048 mod p(x)` << 1, x^130112 mod p(x)` << 1 */
- .octa 0x00000001728eb10c00000001416c58d6
-
- /* x^129024 mod p(x)` << 1, x^129088 mod p(x)` << 1 */
- .octa 0x00000001b08fd7fa00000000a479744a
-
- /* x^128000 mod p(x)` << 1, x^128064 mod p(x)` << 1 */
- .octa 0x00000001092a16e80000000096ca3a26
-
- /* x^126976 mod p(x)` << 1, x^127040 mod p(x)` << 1 */
- .octa 0x00000000a505637c00000000ff223d4e
-
- /* x^125952 mod p(x)` << 1, x^126016 mod p(x)` << 1 */
- .octa 0x00000000d94869b2000000010e84da42
-
- /* x^124928 mod p(x)` << 1, x^124992 mod p(x)` << 1 */
- .octa 0x00000001c8b203ae00000001b61ba3d0
-
- /* x^123904 mod p(x)` << 1, x^123968 mod p(x)` << 1 */
- .octa 0x000000005704aea000000000680f2de8
-
- /* x^122880 mod p(x)` << 1, x^122944 mod p(x)` << 1 */
- .octa 0x000000012e295fa2000000008772a9a8
-
- /* x^121856 mod p(x)` << 1, x^121920 mod p(x)` << 1 */
- .octa 0x000000011d0908bc0000000155f295bc
-
- /* x^120832 mod p(x)` << 1, x^120896 mod p(x)` << 1 */
- .octa 0x0000000193ed97ea00000000595f9282
-
- /* x^119808 mod p(x)` << 1, x^119872 mod p(x)` << 1 */
- .octa 0x000000013a0f1c520000000164b1c25a
-
- /* x^118784 mod p(x)` << 1, x^118848 mod p(x)` << 1 */
- .octa 0x000000010c2c40c000000000fbd67c50
-
- /* x^117760 mod p(x)` << 1, x^117824 mod p(x)` << 1 */
- .octa 0x00000000ff6fac3e0000000096076268
-
- /* x^116736 mod p(x)` << 1, x^116800 mod p(x)` << 1 */
- .octa 0x000000017b3609c000000001d288e4cc
-
- /* x^115712 mod p(x)` << 1, x^115776 mod p(x)` << 1 */
- .octa 0x0000000088c8c92200000001eaac1bdc
-
- /* x^114688 mod p(x)` << 1, x^114752 mod p(x)` << 1 */
- .octa 0x00000001751baae600000001f1ea39e2
-
- /* x^113664 mod p(x)` << 1, x^113728 mod p(x)` << 1 */
- .octa 0x000000010795297200000001eb6506fc
-
- /* x^112640 mod p(x)` << 1, x^112704 mod p(x)` << 1 */
- .octa 0x0000000162b00abe000000010f806ffe
-
- /* x^111616 mod p(x)` << 1, x^111680 mod p(x)` << 1 */
- .octa 0x000000000d7b404c000000010408481e
-
- /* x^110592 mod p(x)` << 1, x^110656 mod p(x)` << 1 */
- .octa 0x00000000763b13d40000000188260534
-
- /* x^109568 mod p(x)` << 1, x^109632 mod p(x)` << 1 */
- .octa 0x00000000f6dc22d80000000058fc73e0
-
- /* x^108544 mod p(x)` << 1, x^108608 mod p(x)` << 1 */
- .octa 0x000000007daae06000000000391c59b8
-
- /* x^107520 mod p(x)` << 1, x^107584 mod p(x)` << 1 */
- .octa 0x000000013359ab7c000000018b638400
-
- /* x^106496 mod p(x)` << 1, x^106560 mod p(x)` << 1 */
- .octa 0x000000008add438a000000011738f5c4
-
- /* x^105472 mod p(x)` << 1, x^105536 mod p(x)` << 1 */
- .octa 0x00000001edbefdea000000008cf7c6da
-
- /* x^104448 mod p(x)` << 1, x^104512 mod p(x)` << 1 */
- .octa 0x000000004104e0f800000001ef97fb16
-
- /* x^103424 mod p(x)` << 1, x^103488 mod p(x)` << 1 */
- .octa 0x00000000b48a82220000000102130e20
-
- /* x^102400 mod p(x)` << 1, x^102464 mod p(x)` << 1 */
- .octa 0x00000001bcb4684400000000db968898
-
- /* x^101376 mod p(x)` << 1, x^101440 mod p(x)` << 1 */
- .octa 0x000000013293ce0a00000000b5047b5e
-
- /* x^100352 mod p(x)` << 1, x^100416 mod p(x)` << 1 */
- .octa 0x00000001710d0844000000010b90fdb2
-
- /* x^99328 mod p(x)` << 1, x^99392 mod p(x)` << 1 */
- .octa 0x0000000117907f6e000000004834a32e
-
- /* x^98304 mod p(x)` << 1, x^98368 mod p(x)` << 1 */
- .octa 0x0000000087ddf93e0000000059c8f2b0
-
- /* x^97280 mod p(x)` << 1, x^97344 mod p(x)` << 1 */
- .octa 0x000000005970e9b00000000122cec508
-
- /* x^96256 mod p(x)` << 1, x^96320 mod p(x)` << 1 */
- .octa 0x0000000185b2b7d0000000000a330cda
-
- /* x^95232 mod p(x)` << 1, x^95296 mod p(x)` << 1 */
- .octa 0x00000001dcee0efc000000014a47148c
-
- /* x^94208 mod p(x)` << 1, x^94272 mod p(x)` << 1 */
- .octa 0x0000000030da27220000000042c61cb8
-
- /* x^93184 mod p(x)` << 1, x^93248 mod p(x)` << 1 */
- .octa 0x000000012f925a180000000012fe6960
-
- /* x^92160 mod p(x)` << 1, x^92224 mod p(x)` << 1 */
- .octa 0x00000000dd2e357c00000000dbda2c20
-
- /* x^91136 mod p(x)` << 1, x^91200 mod p(x)` << 1 */
- .octa 0x00000000071c80de000000011122410c
-
- /* x^90112 mod p(x)` << 1, x^90176 mod p(x)` << 1 */
- .octa 0x000000011513140a00000000977b2070
-
- /* x^89088 mod p(x)` << 1, x^89152 mod p(x)` << 1 */
- .octa 0x00000001df876e8e000000014050438e
-
- /* x^88064 mod p(x)` << 1, x^88128 mod p(x)` << 1 */
- .octa 0x000000015f81d6ce0000000147c840e8
-
- /* x^87040 mod p(x)` << 1, x^87104 mod p(x)` << 1 */
- .octa 0x000000019dd94dbe00000001cc7c88ce
-
- /* x^86016 mod p(x)` << 1, x^86080 mod p(x)` << 1 */
- .octa 0x00000001373d206e00000001476b35a4
-
- /* x^84992 mod p(x)` << 1, x^85056 mod p(x)` << 1 */
- .octa 0x00000000668ccade000000013d52d508
-
- /* x^83968 mod p(x)` << 1, x^84032 mod p(x)` << 1 */
- .octa 0x00000001b192d268000000008e4be32e
-
- /* x^82944 mod p(x)` << 1, x^83008 mod p(x)` << 1 */
- .octa 0x00000000e30f3a7800000000024120fe
-
- /* x^81920 mod p(x)` << 1, x^81984 mod p(x)` << 1 */
- .octa 0x000000010ef1f7bc00000000ddecddb4
-
- /* x^80896 mod p(x)` << 1, x^80960 mod p(x)` << 1 */
- .octa 0x00000001f5ac738000000000d4d403bc
-
- /* x^79872 mod p(x)` << 1, x^79936 mod p(x)` << 1 */
- .octa 0x000000011822ea7000000001734b89aa
-
- /* x^78848 mod p(x)` << 1, x^78912 mod p(x)` << 1 */
- .octa 0x00000000c3a33848000000010e7a58d6
-
- /* x^77824 mod p(x)` << 1, x^77888 mod p(x)` << 1 */
- .octa 0x00000001bd151c2400000001f9f04e9c
-
- /* x^76800 mod p(x)` << 1, x^76864 mod p(x)` << 1 */
- .octa 0x0000000056002d7600000000b692225e
-
- /* x^75776 mod p(x)` << 1, x^75840 mod p(x)` << 1 */
- .octa 0x000000014657c4f4000000019b8d3f3e
-
- /* x^74752 mod p(x)` << 1, x^74816 mod p(x)` << 1 */
- .octa 0x0000000113742d7c00000001a874f11e
-
- /* x^73728 mod p(x)` << 1, x^73792 mod p(x)` << 1 */
- .octa 0x000000019c5920ba000000010d5a4254
-
- /* x^72704 mod p(x)` << 1, x^72768 mod p(x)` << 1 */
- .octa 0x000000005216d2d600000000bbb2f5d6
-
- /* x^71680 mod p(x)` << 1, x^71744 mod p(x)` << 1 */
- .octa 0x0000000136f5ad8a0000000179cc0e36
-
- /* x^70656 mod p(x)` << 1, x^70720 mod p(x)` << 1 */
- .octa 0x000000018b07beb600000001dca1da4a
-
- /* x^69632 mod p(x)` << 1, x^69696 mod p(x)` << 1 */
- .octa 0x00000000db1e93b000000000feb1a192
-
- /* x^68608 mod p(x)` << 1, x^68672 mod p(x)` << 1 */
- .octa 0x000000000b96fa3a00000000d1eeedd6
-
- /* x^67584 mod p(x)` << 1, x^67648 mod p(x)` << 1 */
- .octa 0x00000001d9968af0000000008fad9bb4
-
- /* x^66560 mod p(x)` << 1, x^66624 mod p(x)` << 1 */
- .octa 0x000000000e4a77a200000001884938e4
-
- /* x^65536 mod p(x)` << 1, x^65600 mod p(x)` << 1 */
- .octa 0x00000000508c2ac800000001bc2e9bc0
-
- /* x^64512 mod p(x)` << 1, x^64576 mod p(x)` << 1 */
- .octa 0x0000000021572a8000000001f9658a68
-
- /* x^63488 mod p(x)` << 1, x^63552 mod p(x)` << 1 */
- .octa 0x00000001b859daf2000000001b9224fc
-
- /* x^62464 mod p(x)` << 1, x^62528 mod p(x)` << 1 */
- .octa 0x000000016f7884740000000055b2fb84
-
- /* x^61440 mod p(x)` << 1, x^61504 mod p(x)` << 1 */
- .octa 0x00000001b438810e000000018b090348
-
- /* x^60416 mod p(x)` << 1, x^60480 mod p(x)` << 1 */
- .octa 0x0000000095ddc6f2000000011ccbd5ea
-
- /* x^59392 mod p(x)` << 1, x^59456 mod p(x)` << 1 */
- .octa 0x00000001d977c20c0000000007ae47f8
-
- /* x^58368 mod p(x)` << 1, x^58432 mod p(x)` << 1 */
- .octa 0x00000000ebedb99a0000000172acbec0
-
- /* x^57344 mod p(x)` << 1, x^57408 mod p(x)` << 1 */
- .octa 0x00000001df9e9e9200000001c6e3ff20
-
- /* x^56320 mod p(x)` << 1, x^56384 mod p(x)` << 1 */
- .octa 0x00000001a4a3f95200000000e1b38744
-
- /* x^55296 mod p(x)` << 1, x^55360 mod p(x)` << 1 */
- .octa 0x00000000e2f5122000000000791585b2
-
- /* x^54272 mod p(x)` << 1, x^54336 mod p(x)` << 1 */
- .octa 0x000000004aa01f3e00000000ac53b894
-
- /* x^53248 mod p(x)` << 1, x^53312 mod p(x)` << 1 */
- .octa 0x00000000b3e90a5800000001ed5f2cf4
-
- /* x^52224 mod p(x)` << 1, x^52288 mod p(x)` << 1 */
- .octa 0x000000000c9ca2aa00000001df48b2e0
-
- /* x^51200 mod p(x)` << 1, x^51264 mod p(x)` << 1 */
- .octa 0x000000015168231600000000049c1c62
-
- /* x^50176 mod p(x)` << 1, x^50240 mod p(x)` << 1 */
- .octa 0x0000000036fce78c000000017c460c12
-
- /* x^49152 mod p(x)` << 1, x^49216 mod p(x)` << 1 */
- .octa 0x000000009037dc10000000015be4da7e
-
- /* x^48128 mod p(x)` << 1, x^48192 mod p(x)` << 1 */
- .octa 0x00000000d3298582000000010f38f668
-
- /* x^47104 mod p(x)` << 1, x^47168 mod p(x)` << 1 */
- .octa 0x00000001b42e8ad60000000039f40a00
-
- /* x^46080 mod p(x)` << 1, x^46144 mod p(x)` << 1 */
- .octa 0x00000000142a983800000000bd4c10c4
-
- /* x^45056 mod p(x)` << 1, x^45120 mod p(x)` << 1 */
- .octa 0x0000000109c7f1900000000042db1d98
-
- /* x^44032 mod p(x)` << 1, x^44096 mod p(x)` << 1 */
- .octa 0x0000000056ff931000000001c905bae6
-
- /* x^43008 mod p(x)` << 1, x^43072 mod p(x)` << 1 */
- .octa 0x00000001594513aa00000000069d40ea
-
- /* x^41984 mod p(x)` << 1, x^42048 mod p(x)` << 1 */
- .octa 0x00000001e3b5b1e8000000008e4fbad0
-
- /* x^40960 mod p(x)` << 1, x^41024 mod p(x)` << 1 */
- .octa 0x000000011dd5fc080000000047bedd46
-
- /* x^39936 mod p(x)` << 1, x^40000 mod p(x)` << 1 */
- .octa 0x00000001675f0cc20000000026396bf8
-
- /* x^38912 mod p(x)` << 1, x^38976 mod p(x)` << 1 */
- .octa 0x00000000d1c8dd4400000000379beb92
-
- /* x^37888 mod p(x)` << 1, x^37952 mod p(x)` << 1 */
- .octa 0x0000000115ebd3d8000000000abae54a
-
- /* x^36864 mod p(x)` << 1, x^36928 mod p(x)` << 1 */
- .octa 0x00000001ecbd0dac0000000007e6a128
-
- /* x^35840 mod p(x)` << 1, x^35904 mod p(x)` << 1 */
- .octa 0x00000000cdf67af2000000000ade29d2
-
- /* x^34816 mod p(x)` << 1, x^34880 mod p(x)` << 1 */
- .octa 0x000000004c01ff4c00000000f974c45c
-
- /* x^33792 mod p(x)` << 1, x^33856 mod p(x)` << 1 */
- .octa 0x00000000f2d8657e00000000e77ac60a
-
- /* x^32768 mod p(x)` << 1, x^32832 mod p(x)` << 1 */
- .octa 0x000000006bae74c40000000145895816
-
- /* x^31744 mod p(x)` << 1, x^31808 mod p(x)` << 1 */
- .octa 0x0000000152af8aa00000000038e362be
-
- /* x^30720 mod p(x)` << 1, x^30784 mod p(x)` << 1 */
- .octa 0x0000000004663802000000007f991a64
-
- /* x^29696 mod p(x)` << 1, x^29760 mod p(x)` << 1 */
- .octa 0x00000001ab2f5afc00000000fa366d3a
-
- /* x^28672 mod p(x)` << 1, x^28736 mod p(x)` << 1 */
- .octa 0x0000000074a4ebd400000001a2bb34f0
-
- /* x^27648 mod p(x)` << 1, x^27712 mod p(x)` << 1 */
- .octa 0x00000001d7ab3a4c0000000028a9981e
-
- /* x^26624 mod p(x)` << 1, x^26688 mod p(x)` << 1 */
- .octa 0x00000001a8da60c600000001dbc672be
-
- /* x^25600 mod p(x)` << 1, x^25664 mod p(x)` << 1 */
- .octa 0x000000013cf6382000000000b04d77f6
-
- /* x^24576 mod p(x)` << 1, x^24640 mod p(x)` << 1 */
- .octa 0x00000000bec12e1e0000000124400d96
-
- /* x^23552 mod p(x)` << 1, x^23616 mod p(x)` << 1 */
- .octa 0x00000001c6368010000000014ca4b414
-
- /* x^22528 mod p(x)` << 1, x^22592 mod p(x)` << 1 */
- .octa 0x00000001e6e78758000000012fe2c938
-
- /* x^21504 mod p(x)` << 1, x^21568 mod p(x)` << 1 */
- .octa 0x000000008d7f2b3c00000001faed01e6
-
- /* x^20480 mod p(x)` << 1, x^20544 mod p(x)` << 1 */
- .octa 0x000000016b4a156e000000007e80ecfe
-
- /* x^19456 mod p(x)` << 1, x^19520 mod p(x)` << 1 */
- .octa 0x00000001c63cfeb60000000098daee94
-
- /* x^18432 mod p(x)` << 1, x^18496 mod p(x)` << 1 */
- .octa 0x000000015f902670000000010a04edea
-
- /* x^17408 mod p(x)` << 1, x^17472 mod p(x)` << 1 */
- .octa 0x00000001cd5de11e00000001c00b4524
-
- /* x^16384 mod p(x)` << 1, x^16448 mod p(x)` << 1 */
- .octa 0x000000001acaec540000000170296550
-
- /* x^15360 mod p(x)` << 1, x^15424 mod p(x)` << 1 */
- .octa 0x000000002bd0ca780000000181afaa48
-
- /* x^14336 mod p(x)` << 1, x^14400 mod p(x)` << 1 */
- .octa 0x0000000032d63d5c0000000185a31ffa
-
- /* x^13312 mod p(x)` << 1, x^13376 mod p(x)` << 1 */
- .octa 0x000000001c6d4e4c000000002469f608
-
- /* x^12288 mod p(x)` << 1, x^12352 mod p(x)` << 1 */
- .octa 0x0000000106a60b92000000006980102a
-
- /* x^11264 mod p(x)` << 1, x^11328 mod p(x)` << 1 */
- .octa 0x00000000d3855e120000000111ea9ca8
-
- /* x^10240 mod p(x)` << 1, x^10304 mod p(x)` << 1 */
- .octa 0x00000000e312563600000001bd1d29ce
-
- /* x^9216 mod p(x)` << 1, x^9280 mod p(x)` << 1 */
- .octa 0x000000009e8f7ea400000001b34b9580
-
- /* x^8192 mod p(x)` << 1, x^8256 mod p(x)` << 1 */
- .octa 0x00000001c82e562c000000003076054e
-
- /* x^7168 mod p(x)` << 1, x^7232 mod p(x)` << 1 */
- .octa 0x00000000ca9f09ce000000012a608ea4
-
- /* x^6144 mod p(x)` << 1, x^6208 mod p(x)` << 1 */
- .octa 0x00000000c63764e600000000784d05fe
-
- /* x^5120 mod p(x)` << 1, x^5184 mod p(x)` << 1 */
- .octa 0x0000000168d2e49e000000016ef0d82a
-
- /* x^4096 mod p(x)` << 1, x^4160 mod p(x)` << 1 */
- .octa 0x00000000e986c1480000000075bda454
-
- /* x^3072 mod p(x)` << 1, x^3136 mod p(x)` << 1 */
- .octa 0x00000000cfb65894000000003dc0a1c4
-
- /* x^2048 mod p(x)` << 1, x^2112 mod p(x)` << 1 */
- .octa 0x0000000111cadee400000000e9a5d8be
-
- /* x^1024 mod p(x)` << 1, x^1088 mod p(x)` << 1 */
- .octa 0x0000000171fb63ce00000001609bc4b4
-
-.short_constants:
-
- /* Reduce final 1024-2048 bits to 64 bits, shifting 32 bits to include the trailing 32 bits of zeros */
- /* x^1952 mod p(x)`, x^1984 mod p(x)`, x^2016 mod p(x)`, x^2048 mod p(x)` */
- .octa 0x7fec2963e5bf80485cf015c388e56f72
-
- /* x^1824 mod p(x)`, x^1856 mod p(x)`, x^1888 mod p(x)`, x^1920 mod p(x)` */
- .octa 0x38e888d4844752a9963a18920246e2e6
-
- /* x^1696 mod p(x)`, x^1728 mod p(x)`, x^1760 mod p(x)`, x^1792 mod p(x)` */
- .octa 0x42316c00730206ad419a441956993a31
-
- /* x^1568 mod p(x)`, x^1600 mod p(x)`, x^1632 mod p(x)`, x^1664 mod p(x)` */
- .octa 0x543d5c543e65ddf9924752ba2b830011
-
- /* x^1440 mod p(x)`, x^1472 mod p(x)`, x^1504 mod p(x)`, x^1536 mod p(x)` */
- .octa 0x78e87aaf56767c9255bd7f9518e4a304
-
- /* x^1312 mod p(x)`, x^1344 mod p(x)`, x^1376 mod p(x)`, x^1408 mod p(x)` */
- .octa 0x8f68fcec1903da7f6d76739fe0553f1e
-
- /* x^1184 mod p(x)`, x^1216 mod p(x)`, x^1248 mod p(x)`, x^1280 mod p(x)` */
- .octa 0x3f4840246791d588c133722b1fe0b5c3
-
- /* x^1056 mod p(x)`, x^1088 mod p(x)`, x^1120 mod p(x)`, x^1152 mod p(x)` */
- .octa 0x34c96751b04de25a64b67ee0e55ef1f3
-
- /* x^928 mod p(x)`, x^960 mod p(x)`, x^992 mod p(x)`, x^1024 mod p(x)` */
- .octa 0x156c8e180b4a395b069db049b8fdb1e7
-
- /* x^800 mod p(x)`, x^832 mod p(x)`, x^864 mod p(x)`, x^896 mod p(x)` */
- .octa 0xe0b99ccbe661f7bea11bfaf3c9e90b9e
-
- /* x^672 mod p(x)`, x^704 mod p(x)`, x^736 mod p(x)`, x^768 mod p(x)` */
- .octa 0x041d37768cd75659817cdc5119b29a35
-
- /* x^544 mod p(x)`, x^576 mod p(x)`, x^608 mod p(x)`, x^640 mod p(x)` */
- .octa 0x3a0777818cfaa9651ce9d94b36c41f1c
-
- /* x^416 mod p(x)`, x^448 mod p(x)`, x^480 mod p(x)`, x^512 mod p(x)` */
- .octa 0x0e148e8252377a554f256efcb82be955
-
- /* x^288 mod p(x)`, x^320 mod p(x)`, x^352 mod p(x)`, x^384 mod p(x)` */
- .octa 0x9c25531d19e65ddeec1631edb2dea967
-
- /* x^160 mod p(x)`, x^192 mod p(x)`, x^224 mod p(x)`, x^256 mod p(x)` */
- .octa 0x790606ff9957c0a65d27e147510ac59a
-
- /* x^32 mod p(x)`, x^64 mod p(x)`, x^96 mod p(x)`, x^128 mod p(x)` */
- .octa 0x82f63b786ea2d55ca66805eb18b8ea18
-
-
-.barrett_constants:
- /* 33 bit reflected Barrett constant m - (4^32)/n */
- .octa 0x000000000000000000000000dea713f1 /* x^64 div p(x)` */
- /* 33 bit reflected Barrett constant n */
- .octa 0x00000000000000000000000105ec76f1
-#endif
diff --git a/src/support/power8/crc32_wrapper.c b/src/support/power8/crc32_wrapper.c
deleted file mode 100644
index 34ac4150338..00000000000
--- a/src/support/power8/crc32_wrapper.c
+++ /dev/null
@@ -1,66 +0,0 @@
-#if defined(__powerpc64__)
-#define CRC_TABLE
-#include "crc32_constants.h"
-
-#define VMX_ALIGN 16
-#define VMX_ALIGN_MASK (VMX_ALIGN-1)
-
-#ifdef REFLECT
-static unsigned int crc32_align(unsigned int crc, unsigned char *p,
- unsigned long len)
-{
- while (len--)
- crc = crc_table[(crc ^ *p++) & 0xff] ^ (crc >> 8);
- return crc;
-}
-#else
-static unsigned int crc32_align(unsigned int crc, unsigned char *p,
- unsigned long len)
-{
- while (len--)
- crc = crc_table[((crc >> 24) ^ *p++) & 0xff] ^ (crc << 8);
- return crc;
-}
-#endif
-
-unsigned int __crc32_vpmsum(unsigned int crc, unsigned char *p,
- unsigned long len);
-
-unsigned int crc32_vpmsum(unsigned int crc, unsigned char *p,
- unsigned long len)
-{
- unsigned int prealign;
- unsigned int tail;
-
-#ifdef CRC_XOR
- crc ^= 0xffffffff;
-#endif
-
- if (len < VMX_ALIGN + VMX_ALIGN_MASK) {
- crc = crc32_align(crc, p, len);
- goto out;
- }
-
- if ((unsigned long)p & VMX_ALIGN_MASK) {
- prealign = VMX_ALIGN - ((unsigned long)p & VMX_ALIGN_MASK);
- crc = crc32_align(crc, p, prealign);
- len -= prealign;
- p += prealign;
- }
-
- crc = __crc32_vpmsum(crc, p, len & ~VMX_ALIGN_MASK);
-
- tail = len & VMX_ALIGN_MASK;
- if (tail) {
- p += len & ~VMX_ALIGN_MASK;
- crc = crc32_align(crc, p, tail);
- }
-
-out:
-#ifdef CRC_XOR
- crc ^= 0xffffffff;
-#endif
-
- return crc;
-}
-#endif
diff --git a/src/support/power8/ppc-opcode.h b/src/support/power8/ppc-opcode.h
deleted file mode 100644
index b63feea60a0..00000000000
--- a/src/support/power8/ppc-opcode.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef __OPCODES_H
-#define __OPCODES_H
-
-#define __PPC_RA(a) (((a) & 0x1f) << 16)
-#define __PPC_RB(b) (((b) & 0x1f) << 11)
-#define __PPC_XA(a) ((((a) & 0x1f) << 16) | (((a) & 0x20) >> 3))
-#define __PPC_XB(b) ((((b) & 0x1f) << 11) | (((b) & 0x20) >> 4))
-#define __PPC_XS(s) ((((s) & 0x1f) << 21) | (((s) & 0x20) >> 5))
-#define __PPC_XT(s) __PPC_XS(s)
-#define VSX_XX3(t, a, b) (__PPC_XT(t) | __PPC_XA(a) | __PPC_XB(b))
-#define VSX_XX1(s, a, b) (__PPC_XS(s) | __PPC_RA(a) | __PPC_RB(b))
-
-#define PPC_INST_VPMSUMW 0x10000488
-#define PPC_INST_VPMSUMD 0x100004c8
-#define PPC_INST_MFVSRD 0x7c000066
-#define PPC_INST_MTVSRD 0x7c000166
-
-#define VPMSUMW(t, a, b) .long PPC_INST_VPMSUMW | VSX_XX3((t), a, b)
-#define VPMSUMD(t, a, b) .long PPC_INST_VPMSUMD | VSX_XX3((t), a, b)
-#define MFVRD(a, t) .long PPC_INST_MFVSRD | VSX_XX1((t)+32, a, 0)
-#define MTVRD(t, a) .long PPC_INST_MTVSRD | VSX_XX1((t)+32, a, 0)
-
-#endif
diff --git a/src/support/scratch.c b/src/support/scratch.c
index aea98dc49ef..1881f8ad5a5 100644
--- a/src/support/scratch.c
+++ b/src/support/scratch.c
@@ -117,7 +117,7 @@ __wt_buf_catfmt(WT_SESSION_IMPL *session, WT_ITEM *buf, const char *fmt, ...)
p = (char *)((uint8_t *)buf->mem + buf->size);
WT_ASSERT(session, buf->memsize >= buf->size);
space = buf->memsize - buf->size;
- len = (size_t)vsnprintf(p, (size_t)space, fmt, ap);
+ len = (size_t)vsnprintf(p, space, fmt, ap);
va_end(ap);
/* Check if there was enough space. */
diff --git a/src/support/stat.c b/src/support/stat.c
index 2a826eda962..bb46ad03e43 100644
--- a/src/support/stat.c
+++ b/src/support/stat.c
@@ -60,6 +60,7 @@ static const char * const __stats_dsrc_desc[] = {
"cache: page written requiring lookaside records",
"cache: pages read into cache",
"cache: pages read into cache requiring lookaside entries",
+ "cache: pages requested from the cache",
"cache: pages written from cache",
"cache: pages written requiring in-memory restoration",
"cache: unmodified pages evicted",
@@ -189,6 +190,7 @@ __wt_stat_dsrc_clear_single(WT_DSRC_STATS *stats)
stats->cache_write_lookaside = 0;
stats->cache_read = 0;
stats->cache_read_lookaside = 0;
+ stats->cache_pages_requested = 0;
stats->cache_write = 0;
stats->cache_write_restore = 0;
stats->cache_eviction_clean = 0;
@@ -316,6 +318,7 @@ __wt_stat_dsrc_aggregate_single(
to->cache_write_lookaside += from->cache_write_lookaside;
to->cache_read += from->cache_read;
to->cache_read_lookaside += from->cache_read_lookaside;
+ to->cache_pages_requested += from->cache_pages_requested;
to->cache_write += from->cache_write;
to->cache_write_restore += from->cache_write_restore;
to->cache_eviction_clean += from->cache_eviction_clean;
@@ -455,6 +458,8 @@ __wt_stat_dsrc_aggregate(
WT_STAT_READ(from, cache_write_lookaside);
to->cache_read += WT_STAT_READ(from, cache_read);
to->cache_read_lookaside += WT_STAT_READ(from, cache_read_lookaside);
+ to->cache_pages_requested +=
+ WT_STAT_READ(from, cache_pages_requested);
to->cache_write += WT_STAT_READ(from, cache_write);
to->cache_write_restore += WT_STAT_READ(from, cache_write_restore);
to->cache_eviction_clean += WT_STAT_READ(from, cache_eviction_clean);
@@ -543,11 +548,16 @@ static const char * const __stats_connection_desc[] = {
"cache: bytes read into cache",
"cache: bytes written from cache",
"cache: checkpoint blocked page eviction",
+ "cache: eviction calls to get a page",
+ "cache: eviction calls to get a page found queue empty",
+ "cache: eviction calls to get a page found queue empty after locking",
"cache: eviction currently operating in aggressive mode",
"cache: eviction server candidate queue empty when topping up",
"cache: eviction server candidate queue not empty when topping up",
"cache: eviction server evicting pages",
"cache: eviction server populating queue, but not evicting pages",
+ "cache: eviction server skipped very large page",
+ "cache: eviction server slept, because we did not make progress with eviction",
"cache: eviction server unable to reach eviction goal",
"cache: eviction worker thread evicting pages",
"cache: failed eviction of pages that exceeded the in-memory maximum",
@@ -570,6 +580,7 @@ static const char * const __stats_connection_desc[] = {
"cache: pages evicted by application threads",
"cache: pages read into cache",
"cache: pages read into cache requiring lookaside entries",
+ "cache: pages requested from the cache",
"cache: pages selected for eviction unable to be evicted",
"cache: pages walked for eviction",
"cache: pages written from cache",
@@ -740,11 +751,16 @@ __wt_stat_connection_clear_single(WT_CONNECTION_STATS *stats)
stats->cache_bytes_read = 0;
stats->cache_bytes_write = 0;
stats->cache_eviction_checkpoint = 0;
+ stats->cache_eviction_get_ref = 0;
+ stats->cache_eviction_get_ref_empty = 0;
+ stats->cache_eviction_get_ref_empty2 = 0;
/* not clearing cache_eviction_aggressive_set */
stats->cache_eviction_queue_empty = 0;
stats->cache_eviction_queue_not_empty = 0;
stats->cache_eviction_server_evicting = 0;
stats->cache_eviction_server_not_evicting = 0;
+ stats->cache_eviction_server_toobig = 0;
+ stats->cache_eviction_server_slept = 0;
stats->cache_eviction_slow = 0;
stats->cache_eviction_worker_evicting = 0;
stats->cache_eviction_force_fail = 0;
@@ -767,6 +783,7 @@ __wt_stat_connection_clear_single(WT_CONNECTION_STATS *stats)
stats->cache_eviction_app = 0;
stats->cache_read = 0;
stats->cache_read_lookaside = 0;
+ stats->cache_pages_requested = 0;
stats->cache_eviction_fail = 0;
stats->cache_eviction_walk = 0;
stats->cache_write = 0;
@@ -928,6 +945,12 @@ __wt_stat_connection_aggregate(
to->cache_bytes_write += WT_STAT_READ(from, cache_bytes_write);
to->cache_eviction_checkpoint +=
WT_STAT_READ(from, cache_eviction_checkpoint);
+ to->cache_eviction_get_ref +=
+ WT_STAT_READ(from, cache_eviction_get_ref);
+ to->cache_eviction_get_ref_empty +=
+ WT_STAT_READ(from, cache_eviction_get_ref_empty);
+ to->cache_eviction_get_ref_empty2 +=
+ WT_STAT_READ(from, cache_eviction_get_ref_empty2);
to->cache_eviction_aggressive_set +=
WT_STAT_READ(from, cache_eviction_aggressive_set);
to->cache_eviction_queue_empty +=
@@ -938,6 +961,10 @@ __wt_stat_connection_aggregate(
WT_STAT_READ(from, cache_eviction_server_evicting);
to->cache_eviction_server_not_evicting +=
WT_STAT_READ(from, cache_eviction_server_not_evicting);
+ to->cache_eviction_server_toobig +=
+ WT_STAT_READ(from, cache_eviction_server_toobig);
+ to->cache_eviction_server_slept +=
+ WT_STAT_READ(from, cache_eviction_server_slept);
to->cache_eviction_slow += WT_STAT_READ(from, cache_eviction_slow);
to->cache_eviction_worker_evicting +=
WT_STAT_READ(from, cache_eviction_worker_evicting);
@@ -973,6 +1000,8 @@ __wt_stat_connection_aggregate(
to->cache_eviction_app += WT_STAT_READ(from, cache_eviction_app);
to->cache_read += WT_STAT_READ(from, cache_read);
to->cache_read_lookaside += WT_STAT_READ(from, cache_read_lookaside);
+ to->cache_pages_requested +=
+ WT_STAT_READ(from, cache_pages_requested);
to->cache_eviction_fail += WT_STAT_READ(from, cache_eviction_fail);
to->cache_eviction_walk += WT_STAT_READ(from, cache_eviction_walk);
to->cache_write += WT_STAT_READ(from, cache_write);