Coverage Report

Created: 2024-07-27 06:12

/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
10.0M
#define kCrcPoly 0xEDB88320
10
11
#ifdef MY_CPU_LE
12
8.79M
  #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
0
{
37
0
  return g_CrcUpdate(v, data, size, g_CrcTable);
38
0
}
39
40
UInt32 MY_FAST_CALL CrcCalc(const void *data, size_t size)
41
10.8k
{
42
10.8k
  return g_CrcUpdate(CRC_INIT_VAL, data, size, g_CrcTable) ^ CRC_INIT_VAL;
43
10.8k
}
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
4.90k
{
58
4.90k
  UInt32 i;
59
1.26M
  for (i = 0; i < 256; i++)
60
1.25M
  {
61
1.25M
    UInt32 r = i;
62
1.25M
    unsigned j;
63
11.2M
    for (j = 0; j < 8; j++)
64
10.0M
      r = (r >> 1) ^ (kCrcPoly & ((UInt32)0 - (r & 1)));
65
1.25M
    g_CrcTable[i] = r;
66
1.25M
  }
67
8.79M
  for (i = 256; i < 256 * CRC_NUM_TABLES; i++)
68
8.78M
  {
69
8.78M
    UInt32 r = g_CrcTable[(size_t)i - 256];
70
8.78M
    g_CrcTable[i] = g_CrcTable[r & 0xFF] ^ (r >> 8);
71
8.78M
  }
72
73
  #if CRC_NUM_TABLES < 4
74
  
75
  g_CrcUpdate = CrcUpdateT1;
76
  
77
  #else
78
 
79
4.90k
  #ifdef MY_CPU_LE
80
81
4.90k
    g_CrcUpdateT4 = CrcUpdateT4;
82
4.90k
    g_CrcUpdate = CrcUpdateT4;
83
84
4.90k
    #if CRC_NUM_TABLES >= 8
85
4.90k
      g_CrcUpdateT8 = CrcUpdateT8;
86
  
87
4.90k
      #ifdef MY_CPU_X86_OR_AMD64
88
4.90k
      if (!CPU_Is_InOrder())
89
4.90k
      #endif
90
4.90k
        g_CrcUpdate = CrcUpdateT8;
91
4.90k
    #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
4.90k
  #endif
128
4.90k
}