Geant4 Cross Reference |
1 /* crc32.c -- compute the CRC-32 of a data str 1 2 * Copyright (C) 1995-2022 Mark Adler 3 * For conditions of distribution and use, see 4 * 5 * This interleaved implementation of a CRC ma 6 * arithmetic-logic units, commonly found in m 7 * Kadatch and Jenkins (2010). See doc/crc-doc 8 */ 9 10 /* @(#) $Id$ */ 11 12 /* 13 Note on the use of DYNAMIC_CRC_TABLE: there 14 protection on the static variables used to c 15 of the crc tables. Therefore, if you #define 16 first call get_crc_table() to initialize the 17 one thread to use crc32(). 18 19 MAKECRCH can be #defined to write out crc32. 20 produced, so that this one source file can b 21 */ 22 23 #ifdef MAKECRCH 24 # include <stdio.h> 25 # ifndef DYNAMIC_CRC_TABLE 26 # define DYNAMIC_CRC_TABLE 27 # endif /* !DYNAMIC_CRC_TABLE */ 28 #endif /* MAKECRCH */ 29 30 #include "zutil.h" /* for Z_U4, Z_U8, z_c 31 32 /* 33 A CRC of a message is computed on N braids o 34 each word consists of W bytes (4 or 8). If N 35 running sparse CRCs are calculated respectiv 36 indices in the array of words: 0, 3, 6, ..., 37 This is done starting at a word boundary, an 38 of N * W bytes as are available have been pr 39 into a single CRC at the end. For this code, 40 W must be 4 or 8. The upper limit on N can b 41 more #if blocks, extending the patterns appa 42 crc32.h would need to be regenerated, if the 43 44 N and W are chosen empirically by benchmarki 45 processor. The choices for N and W below wer 46 Lake i7, AMD Ryzen 7, ARM Cortex-A57, Sparc6 47 Octeon II processors. The Intel, AMD, and AR 48 with N=5, W=8. The Sparc, PowerPC, and MIPS6 49 They were all tested with either gcc or clan 50 level. Your mileage may vary. 51 */ 52 53 /* Define N */ 54 #ifdef Z_TESTN 55 # define N Z_TESTN 56 #else 57 # define N 5 58 #endif 59 #if N < 1 || N > 6 60 # error N must be in 1..6 61 #endif 62 63 /* 64 z_crc_t must be at least 32 bits. z_word_t m 65 z_crc_t. It is assumed here that z_word_t is 66 that bytes are eight bits. 67 */ 68 69 /* 70 Define W and the associated z_word_t type. I 71 braided calculation is not used, and the ass 72 compiled. 73 */ 74 #ifdef Z_TESTW 75 # if Z_TESTW-1 != -1 76 # define W Z_TESTW 77 # endif 78 #else 79 # ifdef MAKECRCH 80 # define W 8 /* required for MAKECR 81 # else 82 # if defined(__x86_64__) || defined(__aarch 83 # define W 8 84 # else 85 # define W 4 86 # endif 87 # endif 88 #endif 89 #ifdef W 90 # if W == 8 && defined(Z_U8) 91 typedef Z_U8 z_word_t; 92 # elif defined(Z_U4) 93 # undef W 94 # define W 4 95 typedef Z_U4 z_word_t; 96 # else 97 # undef W 98 # endif 99 #endif 100 101 /* If available, use the ARM processor CRC32 i 102 #if defined(__aarch64__) && defined(__ARM_FEAT 103 # define ARMCRC32 104 #endif 105 106 /* Local functions. */ 107 local z_crc_t multmodp OF((z_crc_t a, z_crc_t 108 local z_crc_t x2nmodp OF((z_off64_t n, unsigne 109 110 #if defined(W) && (!defined(ARMCRC32) || defin 111 local z_word_t byte_swap OF((z_word_t word 112 #endif 113 114 #if defined(W) && !defined(ARMCRC32) 115 local z_crc_t crc_word OF((z_word_t data)) 116 local z_word_t crc_word_big OF((z_word_t d 117 #endif 118 119 #if defined(W) && (!defined(ARMCRC32) || defin 120 /* 121 Swap the bytes in a z_word_t to convert betw 122 self-respecting compiler will optimize this 123 instruction, if one is available. This assum 124 or 64 bits. 125 */ 126 local z_word_t byte_swap(word) 127 z_word_t word; 128 { 129 # if W == 8 130 return 131 (word & 0xff00000000000000) >> 56 | 132 (word & 0xff000000000000) >> 40 | 133 (word & 0xff0000000000) >> 24 | 134 (word & 0xff00000000) >> 8 | 135 (word & 0xff000000) << 8 | 136 (word & 0xff0000) << 24 | 137 (word & 0xff00) << 40 | 138 (word & 0xff) << 56; 139 # else /* W == 4 */ 140 return 141 (word & 0xff000000) >> 24 | 142 (word & 0xff0000) >> 8 | 143 (word & 0xff00) << 8 | 144 (word & 0xff) << 24; 145 # endif 146 } 147 #endif 148 149 /* CRC polynomial. */ 150 #define POLY 0xedb88320 /* p(x) reflec 151 152 #ifdef DYNAMIC_CRC_TABLE 153 154 local z_crc_t FAR crc_table[256]; 155 local z_crc_t FAR x2n_table[32]; 156 local void make_crc_table OF((void)); 157 #ifdef W 158 local z_word_t FAR crc_big_table[256]; 159 local z_crc_t FAR crc_braid_table[W][256]; 160 local z_word_t FAR crc_braid_big_table[W][2 161 local void braid OF((z_crc_t [][256], z_wor 162 #endif 163 #ifdef MAKECRCH 164 local void write_table OF((FILE *, const z_ 165 local void write_table32hi OF((FILE *, cons 166 local void write_table64 OF((FILE *, const 167 #endif /* MAKECRCH */ 168 169 /* 170 Define a once() function depending on the av 171 compiled with DYNAMIC_CRC_TABLE defined, and 172 multiple threads, and if atomics are not ava 173 be called to initialize the tables and must 174 allowed to compute or combine CRCs. 175 */ 176 177 /* Definition of once functionality. */ 178 typedef struct once_s once_t; 179 local void once OF((once_t *, void (*)(void))) 180 181 /* Check for the availability of atomics. */ 182 #if defined(__STDC__) && __STDC_VERSION__ >= 2 183 !defined(__STDC_NO_ATOMICS__) 184 185 #include <stdatomic.h> 186 187 /* Structure for once(), which must be initial 188 struct once_s { 189 atomic_flag begun; 190 atomic_int done; 191 }; 192 #define ONCE_INIT {ATOMIC_FLAG_INIT, 0} 193 194 /* 195 Run the provided init() function exactly onc 196 invoke once() at the same time. The state mu 197 ONCE_INIT. 198 */ 199 local void once(state, init) 200 once_t *state; 201 void (*init)(void); 202 { 203 if (!atomic_load(&state->done)) { 204 if (atomic_flag_test_and_set(&state->b 205 while (!atomic_load(&state->done)) 206 ; 207 else { 208 init(); 209 atomic_store(&state->done, 1); 210 } 211 } 212 } 213 214 #else /* no atomics */ 215 216 /* Structure for once(), which must be initial 217 struct once_s { 218 volatile int begun; 219 volatile int done; 220 }; 221 #define ONCE_INIT {0, 0} 222 223 /* Test and set. Alas, not atomic, but tries t 224 vulnerability. */ 225 local int test_and_set OF((int volatile *)); 226 local int test_and_set(flag) 227 int volatile *flag; 228 { 229 int was; 230 231 was = *flag; 232 *flag = 1; 233 return was; 234 } 235 236 /* Run the provided init() function once. This 237 local void once(state, init) 238 once_t *state; 239 void (*init)(void); 240 { 241 if (!state->done) { 242 if (test_and_set(&state->begun)) 243 while (!state->done) 244 ; 245 else { 246 init(); 247 state->done = 1; 248 } 249 } 250 } 251 252 #endif 253 254 /* State for once(). */ 255 local once_t made = ONCE_INIT; 256 257 /* 258 Generate tables for a byte-wise 32-bit CRC c 259 x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+ 260 261 Polynomials over GF(2) are represented in bi 262 with the lowest powers in the most significa 263 is just exclusive-or, and multiplying a poly 264 one. If we call the above polynomial p, and 265 polynomial q, also with the lowest power in 266 byte 0xb1 is the polynomial x^7+x^3+x^2+1), 267 where a mod b means the remainder after divi 268 269 This calculation is done using the shift-reg 270 taking the remainder. The register is initia 271 incoming bit, x^32 is added mod p to the reg 272 x^32 mod p is p+x^32 = x^26+...+1), and the 273 (which is shifting right by one and adding x 274 is a one). We start with the highest power ( 275 repeat for all eight bits of q. 276 277 The table is simply the CRC of all possible 278 information needed to generate CRCs on data 279 combinations of CRC register values and inco 280 */ 281 282 local void make_crc_table() 283 { 284 unsigned i, j, n; 285 z_crc_t p; 286 287 /* initialize the CRC of bytes tables */ 288 for (i = 0; i < 256; i++) { 289 p = i; 290 for (j = 0; j < 8; j++) 291 p = p & 1 ? (p >> 1) ^ POLY : p >> 292 crc_table[i] = p; 293 #ifdef W 294 crc_big_table[i] = byte_swap(p); 295 #endif 296 } 297 298 /* initialize the x^2^n mod p(x) table */ 299 p = (z_crc_t)1 << 30; /* x^1 */ 300 x2n_table[0] = p; 301 for (n = 1; n < 32; n++) 302 x2n_table[n] = p = multmodp(p, p); 303 304 #ifdef W 305 /* initialize the braiding tables -- needs 306 braid(crc_braid_table, crc_braid_big_table 307 #endif 308 309 #ifdef MAKECRCH 310 { 311 /* 312 The crc32.h header file contains tab 313 z_word_t's, and so requires a 64-bit 314 z_word_t must be defined to be 64-bi 315 and writes out the tables for the ca 316 */ 317 #if !defined(W) || W != 8 318 # error Need a 64-bit integer type in order t 319 #endif 320 FILE *out; 321 int k, n; 322 z_crc_t ltl[8][256]; 323 z_word_t big[8][256]; 324 325 out = fopen("crc32.h", "w"); 326 if (out == NULL) return; 327 328 /* write out little-endian CRC table t 329 fprintf(out, 330 "/* crc32.h -- tables for rapid CR 331 " * Generated automatically by crc 332 "\n" 333 "local const z_crc_t FAR crc_table 334 " "); 335 write_table(out, crc_table, 256); 336 fprintf(out, 337 "};\n"); 338 339 /* write out big-endian CRC table for 340 fprintf(out, 341 "\n" 342 "#ifdef W\n" 343 "\n" 344 "#if W == 8\n" 345 "\n" 346 "local const z_word_t FAR crc_big_ 347 " "); 348 write_table64(out, crc_big_table, 256) 349 fprintf(out, 350 "};\n"); 351 352 /* write out big-endian CRC table for 353 fprintf(out, 354 "\n" 355 "#else /* W == 4 */\n" 356 "\n" 357 "local const z_word_t FAR crc_big_ 358 " "); 359 write_table32hi(out, crc_big_table, 25 360 fprintf(out, 361 "};\n" 362 "\n" 363 "#endif\n"); 364 365 /* write out braid tables for each val 366 for (n = 1; n <= 6; n++) { 367 fprintf(out, 368 "\n" 369 "#if N == %d\n", n); 370 371 /* compute braid tables for this N 372 braid(ltl, big, n, 8); 373 374 /* write out braid tables for 64-b 375 fprintf(out, 376 "\n" 377 "#if W == 8\n" 378 "\n" 379 "local const z_crc_t FAR crc_braid 380 for (k = 0; k < 8; k++) { 381 fprintf(out, " {"); 382 write_table(out, ltl[k], 256); 383 fprintf(out, "}%s", k < 7 ? ", 384 } 385 fprintf(out, 386 "};\n" 387 "\n" 388 "local const z_word_t FAR crc_brai 389 for (k = 0; k < 8; k++) { 390 fprintf(out, " {"); 391 write_table64(out, big[k], 256 392 fprintf(out, "}%s", k < 7 ? ", 393 } 394 fprintf(out, 395 "};\n"); 396 397 /* compute braid tables for this N 398 braid(ltl, big, n, 4); 399 400 /* write out braid tables for 32-b 401 fprintf(out, 402 "\n" 403 "#else /* W == 4 */\n" 404 "\n" 405 "local const z_crc_t FAR crc_braid 406 for (k = 0; k < 4; k++) { 407 fprintf(out, " {"); 408 write_table(out, ltl[k], 256); 409 fprintf(out, "}%s", k < 3 ? ", 410 } 411 fprintf(out, 412 "};\n" 413 "\n" 414 "local const z_word_t FAR crc_brai 415 for (k = 0; k < 4; k++) { 416 fprintf(out, " {"); 417 write_table32hi(out, big[k], 2 418 fprintf(out, "}%s", k < 3 ? ", 419 } 420 fprintf(out, 421 "};\n" 422 "\n" 423 "#endif\n" 424 "\n" 425 "#endif\n"); 426 } 427 fprintf(out, 428 "\n" 429 "#endif\n"); 430 431 /* write out zeros operator table to c 432 fprintf(out, 433 "\n" 434 "local const z_crc_t FAR x2n_table 435 " "); 436 write_table(out, x2n_table, 32); 437 fprintf(out, 438 "};\n"); 439 fclose(out); 440 } 441 #endif /* MAKECRCH */ 442 } 443 444 #ifdef MAKECRCH 445 446 /* 447 Write the 32-bit values in table[0..k-1] to 448 hexadecimal separated by commas. 449 */ 450 local void write_table(out, table, k) 451 FILE *out; 452 const z_crc_t FAR *table; 453 int k; 454 { 455 int n; 456 457 for (n = 0; n < k; n++) 458 fprintf(out, "%s0x%08lx%s", n == 0 || 459 (unsigned long)(table[n]), 460 n == k - 1 ? "" : (n % 5 == 4 461 } 462 463 /* 464 Write the high 32-bits of each value in tab 465 in hexadecimal separated by commas. 466 */ 467 local void write_table32hi(out, table, k) 468 FILE *out; 469 const z_word_t FAR *table; 470 int k; 471 { 472 int n; 473 474 for (n = 0; n < k; n++) 475 fprintf(out, "%s0x%08lx%s", n == 0 || 476 (unsigned long)(table[n] >> 32 477 n == k - 1 ? "" : (n % 5 == 4 478 } 479 480 /* 481 Write the 64-bit values in table[0..k-1] to 482 hexadecimal separated by commas. This assume 483 type, then there is also a long long integer 484 bits. If not, then the type cast and format 485 accordingly. 486 */ 487 local void write_table64(out, table, k) 488 FILE *out; 489 const z_word_t FAR *table; 490 int k; 491 { 492 int n; 493 494 for (n = 0; n < k; n++) 495 fprintf(out, "%s0x%016llx%s", n == 0 | 496 (unsigned long long)(table[n]) 497 n == k - 1 ? "" : (n % 3 == 2 498 } 499 500 /* Actually do the deed. */ 501 int main() 502 { 503 make_crc_table(); 504 return 0; 505 } 506 507 #endif /* MAKECRCH */ 508 509 #ifdef W 510 /* 511 Generate the little and big-endian braid tab 512 size w. Each array must have room for w bloc 513 */ 514 local void braid(ltl, big, n, w) 515 z_crc_t ltl[][256]; 516 z_word_t big[][256]; 517 int n; 518 int w; 519 { 520 int k; 521 z_crc_t i, p, q; 522 for (k = 0; k < w; k++) { 523 p = x2nmodp((n * w + 3 - k) << 3, 0); 524 ltl[k][0] = 0; 525 big[w - 1 - k][0] = 0; 526 for (i = 1; i < 256; i++) { 527 ltl[k][i] = q = multmodp(i << 24, 528 big[w - 1 - k][i] = byte_swap(q); 529 } 530 } 531 } 532 #endif 533 534 #else /* !DYNAMIC_CRC_TABLE */ 535 /* =========================================== 536 * Tables for byte-wise and braided CRC-32 cal 537 * of x for combining CRC-32s, all made by mak 538 */ 539 #include "crc32.h" 540 #endif /* DYNAMIC_CRC_TABLE */ 541 542 /* =========================================== 543 * Routines used for CRC calculation. Some are 544 * generation above. 545 */ 546 547 /* 548 Return a(x) multiplied by b(x) modulo p(x), 549 reflected. For speed, this requires that a n 550 */ 551 local z_crc_t multmodp(a, b) 552 z_crc_t a; 553 z_crc_t b; 554 { 555 z_crc_t m, p; 556 557 m = (z_crc_t)1 << 31; 558 p = 0; 559 for (;;) { 560 if (a & m) { 561 p ^= b; 562 if ((a & (m - 1)) == 0) 563 break; 564 } 565 m >>= 1; 566 b = b & 1 ? (b >> 1) ^ POLY : b >> 1; 567 } 568 return p; 569 } 570 571 /* 572 Return x^(n * 2^k) modulo p(x). Requires tha 573 initialized. 574 */ 575 local z_crc_t x2nmodp(n, k) 576 z_off64_t n; 577 unsigned k; 578 { 579 z_crc_t p; 580 581 p = (z_crc_t)1 << 31; /* x^0 == 582 while (n) { 583 if (n & 1) 584 p = multmodp(x2n_table[k & 31], p) 585 n >>= 1; 586 k++; 587 } 588 return p; 589 } 590 591 /* =========================================== 592 * This function can be used by asm versions o 593 * generation of the CRC tables in a threaded 594 */ 595 const z_crc_t FAR * ZEXPORT get_crc_table() 596 { 597 #ifdef DYNAMIC_CRC_TABLE 598 once(&made, make_crc_table); 599 #endif /* DYNAMIC_CRC_TABLE */ 600 return (const z_crc_t FAR *)crc_table; 601 } 602 603 /* =========================================== 604 * Use ARM machine instructions if available. 605 * ten times faster than the braided calculati 606 * the presence of the CRC instruction at run 607 * only be defined if the compilation specifie 608 * that has the instructions. For example, com 609 * -march=armv8-a+crc, or -march=native if the 610 * instructions. 611 */ 612 #ifdef ARMCRC32 613 614 /* 615 Constants empirically determined to maximiz 616 measurements on a Cortex-A57. Your mileage 617 */ 618 #define Z_BATCH 3990 /* number 619 #define Z_BATCH_ZEROS 0xa10d3d0c /* compute 620 #define Z_BATCH_MIN 800 /* fewest 621 622 unsigned long ZEXPORT crc32_z(crc, buf, len) 623 unsigned long crc; 624 const unsigned char FAR *buf; 625 z_size_t len; 626 { 627 z_crc_t val; 628 z_word_t crc1, crc2; 629 const z_word_t *word; 630 z_word_t val0, val1, val2; 631 z_size_t last, last2, i; 632 z_size_t num; 633 634 /* Return initial CRC, if requested. */ 635 if (buf == Z_NULL) return 0; 636 637 #ifdef DYNAMIC_CRC_TABLE 638 once(&made, make_crc_table); 639 #endif /* DYNAMIC_CRC_TABLE */ 640 641 /* Pre-condition the CRC */ 642 crc = (~crc) & 0xffffffff; 643 644 /* Compute the CRC up to a word boundary. 645 while (len && ((z_size_t)buf & 7) != 0) { 646 len--; 647 val = *buf++; 648 __asm__ volatile("crc32b %w0, %w0, %w1 649 } 650 651 /* Prepare to compute the CRC on full 64-b 652 word = (z_word_t const *)buf; 653 num = len >> 3; 654 len &= 7; 655 656 /* Do three interleaved CRCs to realize th 657 instruction per cycle. Each CRC is calc 658 three CRCs are combined into a single C 659 while (num >= 3 * Z_BATCH) { 660 crc1 = 0; 661 crc2 = 0; 662 for (i = 0; i < Z_BATCH; i++) { 663 val0 = word[i]; 664 val1 = word[i + Z_BATCH]; 665 val2 = word[i + 2 * Z_BATCH]; 666 __asm__ volatile("crc32x %w0, %w0, 667 __asm__ volatile("crc32x %w0, %w0, 668 __asm__ volatile("crc32x %w0, %w0, 669 } 670 word += 3 * Z_BATCH; 671 num -= 3 * Z_BATCH; 672 crc = multmodp(Z_BATCH_ZEROS, crc) ^ c 673 crc = multmodp(Z_BATCH_ZEROS, crc) ^ c 674 } 675 676 /* Do one last smaller batch with the rema 677 to pay for the combination of CRCs. */ 678 last = num / 3; 679 if (last >= Z_BATCH_MIN) { 680 last2 = last << 1; 681 crc1 = 0; 682 crc2 = 0; 683 for (i = 0; i < last; i++) { 684 val0 = word[i]; 685 val1 = word[i + last]; 686 val2 = word[i + last2]; 687 __asm__ volatile("crc32x %w0, %w0, 688 __asm__ volatile("crc32x %w0, %w0, 689 __asm__ volatile("crc32x %w0, %w0, 690 } 691 word += 3 * last; 692 num -= 3 * last; 693 val = x2nmodp(last, 6); 694 crc = multmodp(val, crc) ^ crc1; 695 crc = multmodp(val, crc) ^ crc2; 696 } 697 698 /* Compute the CRC on any remaining words. 699 for (i = 0; i < num; i++) { 700 val0 = word[i]; 701 __asm__ volatile("crc32x %w0, %w0, %x1 702 } 703 word += num; 704 705 /* Complete the CRC on any remaining bytes 706 buf = (const unsigned char FAR *)word; 707 while (len) { 708 len--; 709 val = *buf++; 710 __asm__ volatile("crc32b %w0, %w0, %w1 711 } 712 713 /* Return the CRC, post-conditioned. */ 714 return crc ^ 0xffffffff; 715 } 716 717 #else 718 719 #ifdef W 720 721 /* 722 Return the CRC of the W bytes in the word_t 723 least-significant byte of the word as the fi 724 or post conditioning. This is used to combin 725 */ 726 local z_crc_t crc_word(data) 727 z_word_t data; 728 { 729 int k; 730 for (k = 0; k < W; k++) 731 data = (data >> 8) ^ crc_table[data & 732 return (z_crc_t)data; 733 } 734 735 local z_word_t crc_word_big(data) 736 z_word_t data; 737 { 738 int k; 739 for (k = 0; k < W; k++) 740 data = (data << 8) ^ 741 crc_big_table[(data >> ((W - 1) << 742 return data; 743 } 744 745 #endif 746 747 /* =========================================== 748 unsigned long ZEXPORT crc32_z(crc, buf, len) 749 unsigned long crc; 750 const unsigned char FAR *buf; 751 z_size_t len; 752 { 753 /* Return initial CRC, if requested. */ 754 if (buf == Z_NULL) return 0; 755 756 #ifdef DYNAMIC_CRC_TABLE 757 once(&made, make_crc_table); 758 #endif /* DYNAMIC_CRC_TABLE */ 759 760 /* Pre-condition the CRC */ 761 crc = (~crc) & 0xffffffff; 762 763 #ifdef W 764 765 /* If provided enough bytes, do a braided 766 if (len >= N * W + W - 1) { 767 z_size_t blks; 768 z_word_t const *words; 769 unsigned endian; 770 int k; 771 772 /* Compute the CRC up to a z_word_t bo 773 while (len && ((z_size_t)buf & (W - 1) 774 len--; 775 crc = (crc >> 8) ^ crc_table[(crc 776 } 777 778 /* Compute the CRC on as many N z_word 779 blks = len / (N * W); 780 len -= blks * N * W; 781 words = (z_word_t const *)buf; 782 783 /* Do endian check at execution time i 784 processors can change the endianess 785 compiler knows what the endianess w 786 check and the unused branch. */ 787 endian = 1; 788 if (*(unsigned char *)&endian) { 789 /* Little endian. */ 790 791 z_crc_t crc0; 792 z_word_t word0; 793 #if N > 1 794 z_crc_t crc1; 795 z_word_t word1; 796 #if N > 2 797 z_crc_t crc2; 798 z_word_t word2; 799 #if N > 3 800 z_crc_t crc3; 801 z_word_t word3; 802 #if N > 4 803 z_crc_t crc4; 804 z_word_t word4; 805 #if N > 5 806 z_crc_t crc5; 807 z_word_t word5; 808 #endif 809 #endif 810 #endif 811 #endif 812 #endif 813 814 /* Initialize the CRC for each bra 815 crc0 = crc; 816 #if N > 1 817 crc1 = 0; 818 #if N > 2 819 crc2 = 0; 820 #if N > 3 821 crc3 = 0; 822 #if N > 4 823 crc4 = 0; 824 #if N > 5 825 crc5 = 0; 826 #endif 827 #endif 828 #endif 829 #endif 830 #endif 831 832 /* 833 Process the first blks-1 blocks, 834 independently. 835 */ 836 while (--blks) { 837 /* Load the word for each brai 838 word0 = crc0 ^ words[0]; 839 #if N > 1 840 word1 = crc1 ^ words[1]; 841 #if N > 2 842 word2 = crc2 ^ words[2]; 843 #if N > 3 844 word3 = crc3 ^ words[3]; 845 #if N > 4 846 word4 = crc4 ^ words[4]; 847 #if N > 5 848 word5 = crc5 ^ words[5]; 849 #endif 850 #endif 851 #endif 852 #endif 853 #endif 854 words += N; 855 856 /* Compute and update the CRC 857 get unrolled. */ 858 crc0 = crc_braid_table[0][word 859 #if N > 1 860 crc1 = crc_braid_table[0][word 861 #if N > 2 862 crc2 = crc_braid_table[0][word 863 #if N > 3 864 crc3 = crc_braid_table[0][word 865 #if N > 4 866 crc4 = crc_braid_table[0][word 867 #if N > 5 868 crc5 = crc_braid_table[0][word 869 #endif 870 #endif 871 #endif 872 #endif 873 #endif 874 for (k = 1; k < W; k++) { 875 crc0 ^= crc_braid_table[k] 876 #if N > 1 877 crc1 ^= crc_braid_table[k] 878 #if N > 2 879 crc2 ^= crc_braid_table[k] 880 #if N > 3 881 crc3 ^= crc_braid_table[k] 882 #if N > 4 883 crc4 ^= crc_braid_table[k] 884 #if N > 5 885 crc5 ^= crc_braid_table[k] 886 #endif 887 #endif 888 #endif 889 #endif 890 #endif 891 } 892 } 893 894 /* 895 Process the last block, combinin 896 same time. 897 */ 898 crc = crc_word(crc0 ^ words[0]); 899 #if N > 1 900 crc = crc_word(crc1 ^ words[1] ^ c 901 #if N > 2 902 crc = crc_word(crc2 ^ words[2] ^ c 903 #if N > 3 904 crc = crc_word(crc3 ^ words[3] ^ c 905 #if N > 4 906 crc = crc_word(crc4 ^ words[4] ^ c 907 #if N > 5 908 crc = crc_word(crc5 ^ words[5] ^ c 909 #endif 910 #endif 911 #endif 912 #endif 913 #endif 914 words += N; 915 } 916 else { 917 /* Big endian. */ 918 919 z_word_t crc0, word0, comb; 920 #if N > 1 921 z_word_t crc1, word1; 922 #if N > 2 923 z_word_t crc2, word2; 924 #if N > 3 925 z_word_t crc3, word3; 926 #if N > 4 927 z_word_t crc4, word4; 928 #if N > 5 929 z_word_t crc5, word5; 930 #endif 931 #endif 932 #endif 933 #endif 934 #endif 935 936 /* Initialize the CRC for each bra 937 crc0 = byte_swap(crc); 938 #if N > 1 939 crc1 = 0; 940 #if N > 2 941 crc2 = 0; 942 #if N > 3 943 crc3 = 0; 944 #if N > 4 945 crc4 = 0; 946 #if N > 5 947 crc5 = 0; 948 #endif 949 #endif 950 #endif 951 #endif 952 #endif 953 954 /* 955 Process the first blks-1 blocks, 956 independently. 957 */ 958 while (--blks) { 959 /* Load the word for each brai 960 word0 = crc0 ^ words[0]; 961 #if N > 1 962 word1 = crc1 ^ words[1]; 963 #if N > 2 964 word2 = crc2 ^ words[2]; 965 #if N > 3 966 word3 = crc3 ^ words[3]; 967 #if N > 4 968 word4 = crc4 ^ words[4]; 969 #if N > 5 970 word5 = crc5 ^ words[5]; 971 #endif 972 #endif 973 #endif 974 #endif 975 #endif 976 words += N; 977 978 /* Compute and update the CRC 979 get unrolled. */ 980 crc0 = crc_braid_big_table[0][ 981 #if N > 1 982 crc1 = crc_braid_big_table[0][ 983 #if N > 2 984 crc2 = crc_braid_big_table[0][ 985 #if N > 3 986 crc3 = crc_braid_big_table[0][ 987 #if N > 4 988 crc4 = crc_braid_big_table[0][ 989 #if N > 5 990 crc5 = crc_braid_big_table[0][ 991 #endif 992 #endif 993 #endif 994 #endif 995 #endif 996 for (k = 1; k < W; k++) { 997 crc0 ^= crc_braid_big_tabl 998 #if N > 1 999 crc1 ^= crc_braid_big_tabl 1000 #if N > 2 1001 crc2 ^= crc_braid_big_tab 1002 #if N > 3 1003 crc3 ^= crc_braid_big_tab 1004 #if N > 4 1005 crc4 ^= crc_braid_big_tab 1006 #if N > 5 1007 crc5 ^= crc_braid_big_tab 1008 #endif 1009 #endif 1010 #endif 1011 #endif 1012 #endif 1013 } 1014 } 1015 1016 /* 1017 Process the last block, combini 1018 same time. 1019 */ 1020 comb = crc_word_big(crc0 ^ words[ 1021 #if N > 1 1022 comb = crc_word_big(crc1 ^ words[ 1023 #if N > 2 1024 comb = crc_word_big(crc2 ^ words[ 1025 #if N > 3 1026 comb = crc_word_big(crc3 ^ words[ 1027 #if N > 4 1028 comb = crc_word_big(crc4 ^ words[ 1029 #if N > 5 1030 comb = crc_word_big(crc5 ^ words[ 1031 #endif 1032 #endif 1033 #endif 1034 #endif 1035 #endif 1036 words += N; 1037 crc = byte_swap(comb); 1038 } 1039 1040 /* 1041 Update the pointer to the remaining 1042 */ 1043 buf = (unsigned char const *)words; 1044 } 1045 1046 #endif /* W */ 1047 1048 /* Complete the computation of the CRC on 1049 while (len >= 8) { 1050 len -= 8; 1051 crc = (crc >> 8) ^ crc_table[(crc ^ * 1052 crc = (crc >> 8) ^ crc_table[(crc ^ * 1053 crc = (crc >> 8) ^ crc_table[(crc ^ * 1054 crc = (crc >> 8) ^ crc_table[(crc ^ * 1055 crc = (crc >> 8) ^ crc_table[(crc ^ * 1056 crc = (crc >> 8) ^ crc_table[(crc ^ * 1057 crc = (crc >> 8) ^ crc_table[(crc ^ * 1058 crc = (crc >> 8) ^ crc_table[(crc ^ * 1059 } 1060 while (len) { 1061 len--; 1062 crc = (crc >> 8) ^ crc_table[(crc ^ * 1063 } 1064 1065 /* Return the CRC, post-conditioned. */ 1066 return crc ^ 0xffffffff; 1067 } 1068 1069 #endif 1070 1071 /* ========================================== 1072 unsigned long ZEXPORT crc32(crc, buf, len) 1073 unsigned long crc; 1074 const unsigned char FAR *buf; 1075 uInt len; 1076 { 1077 return crc32_z(crc, buf, len); 1078 } 1079 1080 /* ========================================== 1081 uLong ZEXPORT crc32_combine64(crc1, crc2, len 1082 uLong crc1; 1083 uLong crc2; 1084 z_off64_t len2; 1085 { 1086 #ifdef DYNAMIC_CRC_TABLE 1087 once(&made, make_crc_table); 1088 #endif /* DYNAMIC_CRC_TABLE */ 1089 return multmodp(x2nmodp(len2, 3), crc1) ^ 1090 } 1091 1092 /* ========================================== 1093 uLong ZEXPORT crc32_combine(crc1, crc2, len2) 1094 uLong crc1; 1095 uLong crc2; 1096 z_off_t len2; 1097 { 1098 return crc32_combine64(crc1, crc2, (z_off 1099 } 1100 1101 /* ========================================== 1102 uLong ZEXPORT crc32_combine_gen64(len2) 1103 z_off64_t len2; 1104 { 1105 #ifdef DYNAMIC_CRC_TABLE 1106 once(&made, make_crc_table); 1107 #endif /* DYNAMIC_CRC_TABLE */ 1108 return x2nmodp(len2, 3); 1109 } 1110 1111 /* ========================================== 1112 uLong ZEXPORT crc32_combine_gen(len2) 1113 z_off_t len2; 1114 { 1115 return crc32_combine_gen64((z_off64_t)len 1116 } 1117 1118 /* ========================================== 1119 uLong ZEXPORT crc32_combine_op(crc1, crc2, op 1120 uLong crc1; 1121 uLong crc2; 1122 uLong op; 1123 { 1124 return multmodp(op, crc1) ^ (crc2 & 0xfff 1125 } 1126