Rizin
unix-like reverse engineering framework and cli tools
crc64_fast.c File Reference
#include "check.h"
#include "crc_macros.h"

Go to the source code of this file.

Macros

#define A1   A
 

Functions

 LZMA_API (uint64_t)
 Calculate approximate memory usage of easy encoder. More...
 

Macro Definition Documentation

◆ A1

#define A1   A

Definition at line 24 of file crc64_fast.c.

Function Documentation

◆ LZMA_API()

LZMA_API ( uint64_t  )

Calculate approximate memory usage of easy encoder.

Get the total amount of physical memory (RAM) in bytes.

Calculate approximate memory usage of multithreaded .xz encoder.

Calculate approximate decoder memory usage of a preset.

This function is a wrapper for lzma_raw_encoder_memusage().

Parameters
presetCompression preset (level and possible flags)
Returns
Number of bytes of memory required for the given preset when encoding. If an error occurs, for example due to unsupported preset, UINT64_MAX is returned.

This function is a wrapper for lzma_raw_decoder_memusage().

Parameters
presetCompression preset (level and possible flags)
Returns
Number of bytes of memory required to decompress a file that was compressed using the given preset. If an error occurs, for example due to unsupported preset, UINT64_MAX is returned.

Since doing the encoding in threaded mode doesn't affect the memory requirements of single-threaded decompressor, you can use lzma_easy_decoder_memusage(options->preset) or lzma_raw_decoder_memusage(options->filters) to calculate the decompressor memory requirements.

Parameters
optionsCompression options
Returns
Number of bytes of memory required for encoding with the given options. If an error occurs, for example due to unsupported preset or filter chain, UINT64_MAX is returned.

Calculate approximate memory usage of easy encoder.

Get the uncompressed size of the file.

Get the total size of the file.

Get the total size of the Blocks.

Get the total size of the Stream.

Get the size of the Index field as bytes.

Get the number of Blocks.

Get the number of Streams.

Calculate the memory usage of an existing lzma_index.

On disk, the size of the Index field depends on both the number of Records stored and how big values the Records store (due to variable-length integer encoding). When the Index is kept in lzma_index structure, the memory usage depends only on the number of Records/Blocks stored in the Index(es), and in case of concatenated lzma_indexes, the number of Streams. The size in RAM is almost always significantly bigger than in the encoded form on disk.

This function calculates an approximate amount of memory needed hold the given number of Streams and Blocks in lzma_index structure. This value may vary between CPU architectures and also between liblzma versions if the internal implementation is modified.

This is a shorthand for lzma_index_memusage(lzma_index_stream_count(i), lzma_index_block_count(i)).

This returns the total number of Blocks in lzma_index. To get number of Blocks in individual Streams, use lzma_index_iter.

This is needed to verify the Backward Size field in the Stream Footer.

If multiple lzma_indexes have been combined, this works as if the Blocks were in a single Stream. This is useful if you are going to combine Blocks from multiple Streams into a single new Stream.

This doesn't include the Stream Header, Stream Footer, Stream Padding, or Index fields.

When no lzma_indexes have been combined with lzma_index_cat() and there is no Stream Padding, this function is identical to lzma_index_stream_size(). If multiple lzma_indexes have been combined, this includes also the headers of each separate Stream and the possible Stream Padding fields.

Definition at line 29 of file crc64_fast.c.

31 {
32  crc = ~crc;
33 
34 #ifdef WORDS_BIGENDIAN
35  crc = bswap64(crc);
36 #endif
37 
38  if (size > 4) {
39  while ((uintptr_t)(buf) & 3) {
40  crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
41  --size;
42  }
43 
44  const uint8_t *const limit = buf + (size & ~(size_t)(3));
45  size &= (size_t)(3);
46 
47  while (buf < limit) {
48 #ifdef WORDS_BIGENDIAN
49  const uint32_t tmp = (crc >> 32)
51 #else
52  const uint32_t tmp = crc ^ aligned_read32ne(buf);
53 #endif
54  buf += 4;
55 
56  crc = lzma_crc64_table[3][A(tmp)]
57  ^ lzma_crc64_table[2][B(tmp)]
58  ^ S32(crc)
59  ^ lzma_crc64_table[1][C(tmp)]
60  ^ lzma_crc64_table[0][D(tmp)];
61  }
62  }
63 
64  while (size-- != 0)
65  crc = lzma_crc64_table[0][*buf++ ^ A1(crc)] ^ S8(crc);
66 
67 #ifdef WORDS_BIGENDIAN
68  crc = bswap64(crc);
69 #endif
70 
71  return ~crc;
72 }
#define A(x)
Definition: arc.h:165
#define B(x)
Definition: arc.h:166
#define C(x)
Definition: arc.h:167
#define D
Definition: block.c:38
const uint64_t lzma_crc64_table[4][256]
Definition: crc64_table_be.h:3
#define A1
Definition: crc64_fast.c:24
voidpf void uLong size
Definition: ioapi.h:138
voidpf void * buf
Definition: ioapi.h:138
static uint32_t const uint8_t uint32_t uint32_t limit
Definition: memcmplen.h:45
#define S8(val)
int size_t
Definition: sftypes.h:40
unsigned int uint32_t
Definition: sftypes.h:29
unsigned char uint8_t
Definition: sftypes.h:31
#define S32(b, x)
Definition: sha2.c:148
_W64 unsigned int uintptr_t
#define bswap64(n)
static uint32_t aligned_read32ne(const uint8_t *buf)