/src/lzma-fuzz/sdk/C/7zCrc.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* 7zCrc.c -- CRC32 init |
2 | | 2017-06-06 : Igor Pavlov : Public domain */ |
3 | | |
4 | | #include "Precomp.h" |
5 | | |
6 | | #include "7zCrc.h" |
7 | | #include "CpuArch.h" |
8 | | |
9 | 14.8M | #define kCrcPoly 0xEDB88320 |
10 | | |
11 | | #ifdef MY_CPU_LE |
12 | 12.9M | #define CRC_NUM_TABLES 8 |
13 | | #else |
14 | | #define CRC_NUM_TABLES 9 |
15 | | |
16 | | #define CRC_UINT32_SWAP(v) ((v >> 24) | ((v >> 8) & 0xFF00) | ((v << 8) & 0xFF0000) | (v << 24)) |
17 | | |
18 | | UInt32 MY_FAST_CALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, const UInt32 *table); |
19 | | UInt32 MY_FAST_CALL CrcUpdateT1_BeT8(UInt32 v, const void *data, size_t size, const UInt32 *table); |
20 | | #endif |
21 | | |
22 | | #ifndef MY_CPU_BE |
23 | | UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table); |
24 | | UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table); |
25 | | #endif |
26 | | |
27 | | typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table); |
28 | | |
29 | | CRC_FUNC g_CrcUpdateT4; |
30 | | CRC_FUNC g_CrcUpdateT8; |
31 | | CRC_FUNC g_CrcUpdate; |
32 | | |
33 | | UInt32 g_CrcTable[256 * CRC_NUM_TABLES]; |
34 | | |
35 | | UInt32 MY_FAST_CALL CrcUpdate(UInt32 v, const void *data, size_t size) |
36 | 5.58k | { |
37 | 5.58k | return g_CrcUpdate(v, data, size, g_CrcTable); |
38 | 5.58k | } |
39 | | |
40 | | UInt32 MY_FAST_CALL CrcCalc(const void *data, size_t size) |
41 | 78.7k | { |
42 | 78.7k | return g_CrcUpdate(CRC_INIT_VAL, data, size, g_CrcTable) ^ CRC_INIT_VAL; |
43 | 78.7k | } |
44 | | |
45 | 0 | #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8)) |
46 | | |
47 | | UInt32 MY_FAST_CALL CrcUpdateT1(UInt32 v, const void *data, size_t size, const UInt32 *table) |
48 | 0 | { |
49 | 0 | const Byte *p = (const Byte *)data; |
50 | 0 | const Byte *pEnd = p + size; |
51 | 0 | for (; p != pEnd; p++) |
52 | 0 | v = CRC_UPDATE_BYTE_2(v, *p); |
53 | 0 | return v; |
54 | 0 | } |
55 | | |
56 | | void MY_FAST_CALL CrcGenerateTable() |
57 | 7.24k | { |
58 | 7.24k | UInt32 i; |
59 | 1.86M | for (i = 0; i < 256; i++) |
60 | 1.85M | { |
61 | 1.85M | UInt32 r = i; |
62 | 1.85M | unsigned j; |
63 | 16.7M | for (j = 0; j < 8; j++) |
64 | 14.8M | r = (r >> 1) ^ (kCrcPoly & ((UInt32)0 - (r & 1))); |
65 | 1.85M | g_CrcTable[i] = r; |
66 | 1.85M | } |
67 | 12.9M | for (i = 256; i < 256 * CRC_NUM_TABLES; i++) |
68 | 12.9M | { |
69 | 12.9M | UInt32 r = g_CrcTable[(size_t)i - 256]; |
70 | 12.9M | g_CrcTable[i] = g_CrcTable[r & 0xFF] ^ (r >> 8); |
71 | 12.9M | } |
72 | | |
73 | | #if CRC_NUM_TABLES < 4 |
74 | | |
75 | | g_CrcUpdate = CrcUpdateT1; |
76 | | |
77 | | #else |
78 | | |
79 | 7.24k | #ifdef MY_CPU_LE |
80 | | |
81 | 7.24k | g_CrcUpdateT4 = CrcUpdateT4; |
82 | 7.24k | g_CrcUpdate = CrcUpdateT4; |
83 | | |
84 | 7.24k | #if CRC_NUM_TABLES >= 8 |
85 | 7.24k | g_CrcUpdateT8 = CrcUpdateT8; |
86 | | |
87 | 7.24k | #ifdef MY_CPU_X86_OR_AMD64 |
88 | 7.24k | if (!CPU_Is_InOrder()) |
89 | 7.24k | #endif |
90 | 7.24k | g_CrcUpdate = CrcUpdateT8; |
91 | 7.24k | #endif |
92 | | |
93 | | #else |
94 | | { |
95 | | #ifndef MY_CPU_BE |
96 | | UInt32 k = 0x01020304; |
97 | | const Byte *p = (const Byte *)&k; |
98 | | if (p[0] == 4 && p[1] == 3) |
99 | | { |
100 | | g_CrcUpdateT4 = CrcUpdateT4; |
101 | | g_CrcUpdate = CrcUpdateT4; |
102 | | #if CRC_NUM_TABLES >= 8 |
103 | | g_CrcUpdateT8 = CrcUpdateT8; |
104 | | g_CrcUpdate = CrcUpdateT8; |
105 | | #endif |
106 | | } |
107 | | else if (p[0] != 1 || p[1] != 2) |
108 | | g_CrcUpdate = CrcUpdateT1; |
109 | | else |
110 | | #endif |
111 | | { |
112 | | for (i = 256 * CRC_NUM_TABLES - 1; i >= 256; i--) |
113 | | { |
114 | | UInt32 x = g_CrcTable[(size_t)i - 256]; |
115 | | g_CrcTable[i] = CRC_UINT32_SWAP(x); |
116 | | } |
117 | | g_CrcUpdateT4 = CrcUpdateT1_BeT4; |
118 | | g_CrcUpdate = CrcUpdateT1_BeT4; |
119 | | #if CRC_NUM_TABLES >= 8 |
120 | | g_CrcUpdateT8 = CrcUpdateT1_BeT8; |
121 | | g_CrcUpdate = CrcUpdateT1_BeT8; |
122 | | #endif |
123 | | } |
124 | | } |
125 | | #endif |
126 | | |
127 | 7.24k | #endif |
128 | 7.24k | } |