IcBench: Integer Compression codecs
This commit is contained in:
480
plugins.cc
480
plugins.cc
@ -71,12 +71,12 @@
|
||||
#endif
|
||||
|
||||
enum {
|
||||
#define C_MEMCPY 1
|
||||
P_LMCPY, // must be 0
|
||||
P_MCPY, // must be 1
|
||||
#define C_MEMCPY 1
|
||||
P_LMCPY, // must be 0
|
||||
P_MCPY, // must be 1
|
||||
P_COPY,
|
||||
|
||||
#define C_TURBOPFOR CODEC0
|
||||
#define C_TURBOPFOR CODEC0
|
||||
TB_PFDA,
|
||||
TB_FOR,
|
||||
TB_FORDA,
|
||||
@ -115,9 +115,9 @@ enum {
|
||||
TB_EF128V,
|
||||
|
||||
#if defined(__AVX2__) && defined(USE_AVX2)
|
||||
#define C_TURBOPFOR256 CODEC0V
|
||||
#define C_TURBOPFOR256 CODEC0V
|
||||
#else
|
||||
#define C_TURBOPFOR256 0
|
||||
#define C_TURBOPFOR256 0
|
||||
#endif
|
||||
TB_FOR256V,
|
||||
TB_BP256H,
|
||||
@ -125,7 +125,7 @@ enum {
|
||||
TB_BPN256V,
|
||||
TB_EF256V,
|
||||
|
||||
#define C_BITSHUFFLE CODEC2
|
||||
#define C_BITSHUFFLE CODEC2
|
||||
P_BITSHUFFLE,
|
||||
P_BS_LZ,
|
||||
P_BS_LZ4,
|
||||
@ -152,34 +152,34 @@ enum {
|
||||
FP_SIMDFASTPFOR,
|
||||
FP_SIMDOPTPFOR,
|
||||
|
||||
#define C_LIBFOR CODEC1
|
||||
#define C_LIBFOR CODEC1
|
||||
LF_FOR,
|
||||
LF_FORX,
|
||||
|
||||
#ifdef __ARM_NEON
|
||||
#define C_LITTLEPACK 0
|
||||
#define C_LITTLEPACK 0
|
||||
#else
|
||||
#define C_LITTLEPACK CODEC1
|
||||
#define C_LITTLEPACK CODEC1
|
||||
#endif
|
||||
LI_PACK,
|
||||
LI_TURBOPACK,
|
||||
LI_SCPACK,
|
||||
|
||||
#ifdef __ARM_NEON
|
||||
#define C_LITTLEPACK128 0
|
||||
#define C_LITTLEPACK128 0
|
||||
#else
|
||||
#define C_LITTLEPACK128 CODEC1
|
||||
#define C_LITTLEPACK128 CODEC1
|
||||
#endif
|
||||
LI_HORPACK,
|
||||
|
||||
#if defined(__AVX2__) && defined(USE_AVX2)
|
||||
#define C_LITTLEPACKBMI CODEC1
|
||||
#define C_LITTLEPACKBMI CODEC1
|
||||
#else
|
||||
#define C_LITTLEPACKBMI 0
|
||||
#define C_LITTLEPACKBMI 0
|
||||
#endif
|
||||
LI_BMIPACK,
|
||||
|
||||
#define C_LZ4 CODEC1
|
||||
#define C_LZ4 CODEC1
|
||||
LZ4_,
|
||||
LZ4_BIT,
|
||||
LZ4_BITX,
|
||||
@ -194,30 +194,30 @@ enum {
|
||||
#endif
|
||||
P_MASKEDVBYTE,
|
||||
|
||||
#define C_POLYCOM CODEC2
|
||||
PC_OPTPFD, // compression too slow and limited to 28 bits. crashs on some lists
|
||||
#define C_POLYCOM CODEC2
|
||||
PC_OPTPFD, // compression too slow and limited to 28 bits. crashs on some lists
|
||||
PC_VBYTE,
|
||||
PC_RICE, // incl. only as demo, crash on some lists
|
||||
PC_SIMPLE16, // limited to 28 bits.
|
||||
PC_RICE, // incl. only as demo, crash on some lists
|
||||
PC_SIMPLE16, // limited to 28 bits.
|
||||
|
||||
#if defined(QMX)
|
||||
#define C_QMX CODEC1
|
||||
#define C_QMX CODEC1
|
||||
#else
|
||||
#define C_QMX 0
|
||||
#define C_QMX 0
|
||||
#endif
|
||||
P_QMX,
|
||||
|
||||
#if defined(VTENC)
|
||||
#define C_VTENC CODEC1
|
||||
#define C_VTENC CODEC1
|
||||
#else
|
||||
#define C_VTENC 0
|
||||
#define C_VTENC 0
|
||||
#endif
|
||||
P_VTENC,
|
||||
|
||||
#ifdef __ARM_NEON
|
||||
#define C_SIMDCOMP128 0
|
||||
#define C_SIMDCOMP128 0
|
||||
#else
|
||||
#define C_SIMDCOMP128 CODEC2
|
||||
#define C_SIMDCOMP128 CODEC2
|
||||
#endif
|
||||
SC_PACK,
|
||||
SC_FOR,
|
||||
@ -225,13 +225,13 @@ enum {
|
||||
SC_SIMDPACK128,
|
||||
|
||||
#if defined(__AVX2__) && defined(USE_AVX2)
|
||||
#define C_SIMDCOMP256 CODEC0V
|
||||
#define C_SIMDCOMP256 CODEC0V
|
||||
#else
|
||||
#define C_SIMDCOMP256 0
|
||||
#define C_SIMDCOMP256 0
|
||||
#endif
|
||||
SC_SIMDPACK256,
|
||||
|
||||
#define C_SIMPLE8B CODEC2 //crash on integers w. size 32 bits !
|
||||
#define C_SIMPLE8B CODEC2 //crash on integers w. size 32 bits !
|
||||
AM_SIMPLE8B,
|
||||
#define C_STREAMVBYTE CODEC1
|
||||
P_STREAMVBYTE,
|
||||
@ -243,9 +243,9 @@ SC_SIMDPACK256,
|
||||
P_VARINTG8IU,
|
||||
|
||||
#ifdef ZLIB
|
||||
#define C_ZLIB CODEC2
|
||||
#define C_ZLIB CODEC2
|
||||
#else
|
||||
#define C_ZLIB 0
|
||||
#define C_ZLIB 0
|
||||
#endif
|
||||
P_ZLIB,
|
||||
#define C_TRANSFORM CODEC0
|
||||
@ -263,7 +263,7 @@ SC_SIMDPACK256,
|
||||
P_MAX
|
||||
};
|
||||
|
||||
#define PAD8(_x_) ( (((_x_)+8-1)/8) )
|
||||
#define PAD8(_x_) ( (((_x_)+8-1)/8) )
|
||||
#if CODEC1==1 || CODEC2==1
|
||||
#include "ext/beplug_.h" // external libs
|
||||
#endif
|
||||
@ -316,75 +316,75 @@ unsigned char *bitfunpackx32( unsigned char *__restrict in, unsigned n, unsigned
|
||||
|
||||
//------------------------------------------------- plugins: codes+function -------------------------------------------------
|
||||
struct codecs codecs[] = {
|
||||
{ C_TURBOPFOR, "TurboPFor", "https://github.com/powturbo/TurboPFor" },
|
||||
{ C_TURBOPFOR, "TurboPFor", "https://github.com/powturbo/TurboPFor" },
|
||||
// External libs
|
||||
{ C_C_BLOSC, "blosc", "https://github.com/Blosc/c-blosc" },
|
||||
{ C_FASTPFOR, "FastPFor", "https://github.com/lemire/FastPFor" },
|
||||
{ C_FASTPFOR128, "FastPFor SSE", "https://github.com/lemire/FastPFor" },
|
||||
{ C_LZ4, "lz4", "https://github.com/Cyan4973/lz4" },
|
||||
{ C_LITTLEPACK, "LittleIntPacker", "https://github.com/lemire/LittleIntPacker" },
|
||||
{ C_LZTURBO, "LzTurbo", "https://sites.google.com/site/powturbo" },
|
||||
{ C_MASKEDVBYTE, "MaskedVbyte", "http://maskedvbyte.org" },
|
||||
{ C_POLYCOM, "Polycom", "https://github.com/encode84/bcm" },
|
||||
{ C_QMX, "QMX", "https://bitbucket.org/andrewtrotman/bench" },
|
||||
{ C_SIMDCOMP128, "simdcomp", "https://github.com/lemire/simdcomp" },
|
||||
{ C_SIMPLE8B, "Simple-8b optimized", "https://github.com/powturbo/TurboPFor" },
|
||||
{ C_STREAMVBYTE, "Streamvbyte", "https://github.com/lemire/streamvbyte" },
|
||||
{ C_VARINTG8IU, "VarintG8IU", "https://github.com/lemire/FastPFor" },
|
||||
{ C_ZLIB, "zlib", "http://zlib.net\thttps://github.com/madler/zlib" },
|
||||
{ C_VTENC, "VTEnc", "VTENC" },
|
||||
{ C_MEMCPY, "memcpy/copy", "--------------------------------------" },
|
||||
{ C_C_BLOSC, "blosc", "https://github.com/Blosc/c-blosc" },
|
||||
{ C_FASTPFOR, "FastPFor", "https://github.com/lemire/FastPFor" },
|
||||
{ C_FASTPFOR128, "FastPFor SSE", "https://github.com/lemire/FastPFor" },
|
||||
{ C_LZ4, "lz4", "https://github.com/Cyan4973/lz4" },
|
||||
{ C_LITTLEPACK, "LittleIntPacker", "https://github.com/lemire/LittleIntPacker" },
|
||||
{ C_LZTURBO, "LzTurbo", "https://sites.google.com/site/powturbo" },
|
||||
{ C_MASKEDVBYTE, "MaskedVbyte", "http://maskedvbyte.org" },
|
||||
{ C_POLYCOM, "Polycom", "https://github.com/encode84/bcm" },
|
||||
{ C_QMX, "QMX", "https://bitbucket.org/andrewtrotman/bench" },
|
||||
{ C_SIMDCOMP128, "simdcomp", "https://github.com/lemire/simdcomp" },
|
||||
{ C_SIMPLE8B, "Simple-8b optimized", "https://github.com/powturbo/TurboPFor" },
|
||||
{ C_STREAMVBYTE, "Streamvbyte", "https://github.com/lemire/streamvbyte" },
|
||||
{ C_VARINTG8IU, "VarintG8IU", "https://github.com/lemire/FastPFor" },
|
||||
{ C_ZLIB, "zlib", "http://zlib.net\thttps://github.com/madler/zlib" },
|
||||
{ C_VTENC, "VTEnc", "VTENC" },
|
||||
{ C_MEMCPY, "memcpy/copy", "--------------------------------------" },
|
||||
{ -1 }
|
||||
};
|
||||
|
||||
struct plugs plugs[] = {
|
||||
{ TB_PF128V, "TurboPFor", C_TURBOPFOR128, BLK_V128,0,"","PFor (SSE2)" },
|
||||
{ TB_PFN128V, "TurboPForN", C_TURBOPFOR128, 0, 0,"","PFor (SSE2) large blocks" },
|
||||
{ TB_PF256V, "TurboPFor256", C_TURBOPFOR256, BLK_V256,0,"","PFor (AVX2)" },
|
||||
{ TB_PFN256V, "TurboPFor256N", C_TURBOPFOR256, 0, 0,"","PFor (AVX2) large blocks" },
|
||||
{ TB_PFDA, "TurboPForDA", C_TURBOPFOR, BLK_V128,0,"","PFor direct access" },
|
||||
{ TB_PDI, "TurboPForDI", C_TURBOPFOR, BLK_V128,0,"","PFord min" },
|
||||
{ TB_PFNZZ, "TurboPForZZ", C_TURBOPFOR, 0, 0,"","PFor zigzag of delta" },
|
||||
{ TB_PF128V, "TurboPFor", C_TURBOPFOR128, BLK_V128,0,"","PFor (SSE2)" },
|
||||
{ TB_PFN128V, "TurboPForN", C_TURBOPFOR128, 0, 0,"","PFor (SSE2) large blocks" },
|
||||
{ TB_PF256V, "TurboPFor256", C_TURBOPFOR256, BLK_V256,0,"","PFor (AVX2)" },
|
||||
{ TB_PFN256V, "TurboPFor256N", C_TURBOPFOR256, 0, 0,"","PFor (AVX2) large blocks" },
|
||||
{ TB_PFDA, "TurboPForDA", C_TURBOPFOR, BLK_V128,0,"","PFor direct access" },
|
||||
{ TB_PDI, "TurboPForDI", C_TURBOPFOR, BLK_V128,0,"","PFord min" },
|
||||
{ TB_PFNZZ, "TurboPForZZ", C_TURBOPFOR, 0, 0,"","PFor zigzag of delta" },
|
||||
|
||||
{ TB_FOR, "TurboFor", C_TURBOPFOR, BLK_V128,0,"","FOR" },
|
||||
{ TB_FOR128V, "TurboForV", C_TURBOPFOR128, BLK_V128,0,"","FOR (SIMD)" },
|
||||
{ TB_FOR256V, "TurboFor256V", C_TURBOPFOR256, BLK_V256,0,"","FOR (AVX2)" },
|
||||
{ TB_FORDA, "TurboForDA", C_TURBOPFOR, BLK_V128,0,"","FOR direct access" },
|
||||
{ TB_BPDA, "TurboPackDA", C_TURBOPFOR, BLK_V128,0,"","Bit packing direct access" },
|
||||
{ TB_FOR, "TurboFor", C_TURBOPFOR, BLK_V128,0,"","FOR" },
|
||||
{ TB_FOR128V, "TurboForV", C_TURBOPFOR128, BLK_V128,0,"","FOR (SIMD)" },
|
||||
{ TB_FOR256V, "TurboFor256V", C_TURBOPFOR256, BLK_V256,0,"","FOR (AVX2)" },
|
||||
{ TB_FORDA, "TurboForDA", C_TURBOPFOR, BLK_V128,0,"","FOR direct access" },
|
||||
{ TB_BPDA, "TurboPackDA", C_TURBOPFOR, BLK_V128,0,"","Bit packing direct access" },
|
||||
|
||||
{ TB_BP, "TurboPack", C_TURBOPFOR, 0, 0,"","Bit packing (scalar)" },
|
||||
{ TB_BPN, "TurboPackN", C_TURBOPFOR, 0, 0,"","Bit packing (scalar) large blocks" },
|
||||
{ TB_BP128V, "TurboPackV", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Vertical)" },
|
||||
{ TB_BP128H, "TurboPackH", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Horizontal)" },
|
||||
{ TB_BPN128V, "TurboPackVN", C_TURBOPFOR128, 0, 0,"","Bit packing (SSE2 large block)" },
|
||||
{ TB_BP256V, "TurboPack256V", C_TURBOPFOR256, BLK_V256,0,"","Bit packing (AVX2 Vertical)" },
|
||||
{ TB_BPN256V, "TurboPack256N", C_TURBOPFOR256, 0, 0,"","Bit packing (AVX2 large block)" },
|
||||
{ TB_BP, "TurboPack", C_TURBOPFOR, 0, 0,"","Bit packing (scalar)" },
|
||||
{ TB_BPN, "TurboPackN", C_TURBOPFOR, 0, 0,"","Bit packing (scalar) large blocks" },
|
||||
{ TB_BP128V, "TurboPackV", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Vertical)" },
|
||||
{ TB_BP128H, "TurboPackH", C_TURBOPFOR128, BLK_V128,0,"","Bit packing (SSE2 Horizontal)" },
|
||||
{ TB_BPN128V, "TurboPackVN", C_TURBOPFOR128, 0, 0,"","Bit packing (SSE2 large block)" },
|
||||
{ TB_BP256V, "TurboPack256V", C_TURBOPFOR256, BLK_V256,0,"","Bit packing (AVX2 Vertical)" },
|
||||
{ TB_BPN256V, "TurboPack256N", C_TURBOPFOR256, 0, 0,"","Bit packing (AVX2 large block)" },
|
||||
|
||||
{ TB_VBYTE, "TurboVByte", C_TURBOPFOR, 0, 0,"","Variable byte (scalar)" },
|
||||
{ TB_BYTE, "TurboByte", C_TURBOPFOR, 0, 0,"","SIMD Group Varint" },
|
||||
{ TB_BYTE128V, "TurboByte128V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" },
|
||||
{ TB_BYTE256V, "TurboByte256V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" },
|
||||
{ TB_VSIMPLE, "VSimple", C_TURBOPFOR, 0, 0,"","Variable simple (scalar)" },
|
||||
{ TB_EF, "EliasFano", C_TURBOPFOR, 0, 0,"","Elias fano (scalar)" },
|
||||
{ TB_EF128V, "EliasFanoV", C_TURBOPFOR128, BLK_V128,0,"","Eliasfano (SSE2)" },
|
||||
{ TB_EF256V, "EliasFano256V", C_TURBOPFOR256, BLK_V256,0,"","Elias fano (AVX2" },
|
||||
{ TB_VBYTE, "TurboVByte", C_TURBOPFOR, 0, 0,"","Variable byte (scalar)" },
|
||||
{ TB_BYTE, "TurboByte", C_TURBOPFOR, 0, 0,"","SIMD Group Varint" },
|
||||
{ TB_BYTE128V, "TurboByte128V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" },
|
||||
{ TB_BYTE256V, "TurboByte256V", C_TURBOPFOR, 0, 0,"","TurboByte+Bitpacking" },
|
||||
{ TB_VSIMPLE, "VSimple", C_TURBOPFOR, 0, 0,"","Variable simple (scalar)" },
|
||||
{ TB_EF, "EliasFano", C_TURBOPFOR, 0, 0,"","Elias fano (scalar)" },
|
||||
{ TB_EF128V, "EliasFanoV", C_TURBOPFOR128, BLK_V128,0,"","Eliasfano (SSE2)" },
|
||||
{ TB_EF256V, "EliasFano256V", C_TURBOPFOR256, BLK_V256,0,"","Elias fano (AVX2" },
|
||||
|
||||
{ P_MCPY, "memcpy", C_MEMCPY, 0, 0,"","memcpy" },
|
||||
{ P_COPY, "copy", C_MEMCPY, 0, 0,"","Integer copy" },
|
||||
{ P_MCPY, "memcpy", C_MEMCPY, 0, 0,"","memcpy" },
|
||||
{ P_COPY, "copy", C_MEMCPY, 0, 0,"","Integer copy" },
|
||||
//----- Transform --------------
|
||||
{ TP_BYTES, "tpbyte4s", C_TURBOPFOR, BLK_SIZE,0,"","Byte Transpose (scalar)" },
|
||||
{ TP_BYTE, "tpbyte", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Byte transpose (simd)" },
|
||||
{ TP_NIBBLE, "tpnibble", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Nibble transpose (simd)" },
|
||||
{ TB_ZIGZAG32, "ZigZag32", C_TURBOPFOR, BLK_SIZE,0,"","ZigZag encoding (sse2)" },
|
||||
{ TB_DELTA32, "Delta32", C_TURBOPFOR, BLK_SIZE,0,"","Delta encoding (sse2)"},
|
||||
{ TB_ZDELTA32, "ZDelta32", C_TURBOPFOR, BLK_SIZE,0,"","Zigzag of delta encoding (sse2)"},
|
||||
{ TB_XOR32, "Xor32", C_TURBOPFOR, BLK_SIZE,0,"","Xor encoding (sse2)" },
|
||||
{ TP_BYTES, "tpbyte4s", C_TURBOPFOR, BLK_SIZE,0,"","Byte Transpose (scalar)" },
|
||||
{ TP_BYTE, "tpbyte", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Byte transpose (simd)" },
|
||||
{ TP_NIBBLE, "tpnibble", C_TURBOPFOR, BLK_SIZE,0,"2,4,8","Nibble transpose (simd)" },
|
||||
{ TB_ZIGZAG32, "ZigZag32", C_TURBOPFOR, BLK_SIZE,0,"","ZigZag encoding (sse2)" },
|
||||
{ TB_DELTA32, "Delta32", C_TURBOPFOR, BLK_SIZE,0,"","Delta encoding (sse2)"},
|
||||
{ TB_ZDELTA32, "ZDelta32", C_TURBOPFOR, BLK_SIZE,0,"","Zigzag of delta encoding (sse2)"},
|
||||
{ TB_XOR32, "Xor32", C_TURBOPFOR, BLK_SIZE,0,"","Xor encoding (sse2)" },
|
||||
// ---- Floating point --------
|
||||
//{ TB_FPPFOR64, "FP_PREV64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR" },
|
||||
{ TB_FPFFOR64, "FP_FCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (FCM)" },
|
||||
{ TB_FPDFOR64, "FP_DFCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (DFCM)" },
|
||||
{ TB_PF64, "TurboPFor64", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" },
|
||||
{ TB_PF64V, "TurboPFor64V", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" },
|
||||
//{ TB_FPPFOR64, "FP_PREV64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR" },
|
||||
{ TB_FPFFOR64, "FP_FCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (FCM)" },
|
||||
{ TB_FPDFOR64, "FP_DFCM64", C_TURBOPFOR, BLK_SIZE,0,"","Floating point PFOR (DFCM)" },
|
||||
{ TB_PF64, "TurboPFor64", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" },
|
||||
{ TB_PF64V, "TurboPFor64V", C_TURBOPFOR, BLK_V128,0,"","PFOR 64" },
|
||||
#if CODEC1==1 || CODEC2==1
|
||||
#include "ext/beplugr_.h" // external libs
|
||||
#endif
|
||||
@ -392,18 +392,18 @@ struct plugs plugs[] = {
|
||||
};
|
||||
|
||||
struct plugg plugg[] = {
|
||||
{ "TURBOPFOR","TurboPFor library", "TurboPFor256V/TurboPack256V/TurboPFor256N/TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboForDA/EliasFano/VSimple/TurboPForN/TurboPackN/TurboPForDI" },
|
||||
{ "DEFAULT", "Default", "TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboFor/TurboPForN/TurboPackN/TurboPForDI/TurboPFor256V/TurboPack256V/TurboPFor256N" },
|
||||
{ "BENCH", "Benchmark", "TurboPFor/TurboPackV/TurboVByte/TurboPack/QMX/FP.SimdFastPfor/FP.SimdOptPFor/MaskedVbyte/StreamVbyte" },
|
||||
{ "EFFICIENT","Efficient", "TurboPFor/vsimple/turbovbyte" },
|
||||
{ "TURBOPFOR","TurboPFor library", "TurboPFor256V/TurboPack256V/TurboPFor256N/TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboForDA/EliasFano/VSimple/TurboPForN/TurboPackN/TurboPForDI" },
|
||||
{ "DEFAULT", "Default", "TurboPFor/TurboPackV/TurboVByte/TurboPack/TurboFor/TurboPForN/TurboPackN/TurboPForDI/TurboPFor256V/TurboPack256V/TurboPFor256N" },
|
||||
{ "BENCH", "Benchmark", "TurboPFor/TurboPackV/TurboVByte/TurboPack/QMX/FP.SimdFastPfor/FP.SimdOptPFor/MaskedVbyte/StreamVbyte" },
|
||||
{ "EFFICIENT","Efficient", "TurboPFor/vsimple/turbovbyte" },
|
||||
{ "TRANSFORM","transpose/shufle,delta,zigzag","tpbyte4s/tpbyte,4/tpnibble,4/ZigZag_32/Delta_32/BitShuffle,4" },
|
||||
|
||||
{ "BITPACK", "Bit Packing", "TurboPack256V/TurboPackV/TurboPackH/TurboPack/SC.SimdPack128/SC.SimdPack256" },
|
||||
{ "VBYTE", "Variable byte", "TurboVByte/FP.VByte/PC.Vbyte/VarintG8IU/MaskedVbyte/StreamVbyte" },
|
||||
{ "SIMPLE", "Simple Family", "simple8b/simple16/vsimple/qmx" },
|
||||
{ "BITPACK", "Bit Packing", "TurboPack256V/TurboPackV/TurboPackH/TurboPack/SC.SimdPack128/SC.SimdPack256" },
|
||||
{ "VBYTE", "Variable byte", "TurboVByte/FP.VByte/PC.Vbyte/VarintG8IU/MaskedVbyte/StreamVbyte" },
|
||||
{ "SIMPLE", "Simple Family", "simple8b/simple16/vsimple/qmx" },
|
||||
|
||||
{ "LZ4", "lz4+bitshufle/transpose 4,8", "lz4_bitshufle/lz4_tp4/lz4_tp8" },
|
||||
{ "LI", "Little Integer", "LI_Pack/LI_TurboPack/LI_SuperPack/LI_HorPack" },
|
||||
{ "LZ4", "lz4+bitshufle/transpose 4,8", "lz4_bitshufle/lz4_tp4/lz4_tp8" },
|
||||
{ "LI", "Little Integer", "LI_Pack/LI_TurboPack/LI_SuperPack/LI_HorPack" },
|
||||
{ "" }
|
||||
};
|
||||
|
||||
@ -429,62 +429,62 @@ unsigned char *codcomps(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
|
||||
switch(codec) {
|
||||
case TB_VSIMPLE: x = *in++; bitdienc32( in, --n, pa, x, mdelta);
|
||||
vbxput32(out, x); return vsenc32( pa, n, out);
|
||||
case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return mdelta?vbd1enc32( in, n, out, x ):vbdenc32( in, n, out, x);
|
||||
case TB_BYTE: x = *in++; --n; vbxput32(out, x); return mdelta?v8d1enc32( in, n, out, x ):v8denc32( in, n, out, x);
|
||||
case TB_EF: x = *in++; --n; vbxput32(out, x); return mdelta?efano1enc32( in, n, out, x+1 ):efanoenc32( in, n, out, x);
|
||||
vbxput32(out, x); return vsenc32( pa, n, out);
|
||||
case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return mdelta?vbd1enc32( in, n, out, x ):vbdenc32( in, n, out, x);
|
||||
case TB_BYTE: x = *in++; --n; vbxput32(out, x); return mdelta?v8d1enc32( in, n, out, x ):v8denc32( in, n, out, x);
|
||||
case TB_EF: x = *in++; --n; vbxput32(out, x); return mdelta?efano1enc32( in, n, out, x+1 ):efanoenc32( in, n, out, x);
|
||||
|
||||
case TB_PFDA: x = *in++; --n; vbxput32(out, x); DELTR(in,n,x,mdelta,pa);
|
||||
return p4encx32(pa,n,out);
|
||||
return p4encx32(pa,n,out);
|
||||
case TB_FOR :
|
||||
case TB_FORDA: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return bitf1pack32(in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return bitfpack32( in, n, out, x, b); }
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return bitf1pack32(in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return bitfpack32( in, n, out, x, b); }
|
||||
|
||||
#if C_TURBOPFORH
|
||||
case TB_BP128H:
|
||||
#endif
|
||||
case TB_BP: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitd132(in, n, 0,x)); *out++=b; return bitd1pack32(in, n, out, x, b); }
|
||||
else { b = bsr32(bitd32( in, n, 0, x)); *out++=b; return bitdpack32( in, n, out, x, b); }
|
||||
case TB_BPN: return out+(mdelta?bitnd1pack32(in, n, out):bitndpack32( in, n, out));
|
||||
if(mdelta) { b = bsr32(bitd132(in, n, 0,x)); *out++=b; return bitd1pack32(in, n, out, x, b); }
|
||||
else { b = bsr32(bitd32( in, n, 0, x)); *out++=b; return bitdpack32( in, n, out, x, b); }
|
||||
case TB_BPN: return out+(mdelta?bitnd1pack32(in, n, out):bitndpack32( in, n, out));
|
||||
|
||||
case TB_PDI: x = *in++; --n; vbxput32(out, x); return p4senc32(in, n, out, x );
|
||||
|
||||
#if C_TURBOPFOR128
|
||||
#if C_TURBOPFOR128
|
||||
case TB_EF128V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) return n == 128?efano1enc128v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1);
|
||||
else return n == 128?efanoenc128v32( in, n, out, x ):efanoenc32( in, n, out, x );
|
||||
if(mdelta) return n == 128?efano1enc128v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1);
|
||||
else return n == 128?efanoenc128v32( in, n, out, x ):efanoenc32( in, n, out, x );
|
||||
case TB_PF128V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) return n == 128?p4d1enc128v32( in, n, out, x ):p4d1enc32( in, n, out, x);
|
||||
else return n == 128?p4denc128v32( in, n, out, x ):p4denc32( in, n, out, x);
|
||||
case TB_PFN128V: return out+(mdelta?p4nd1enc128v32( in, n, out ):p4ndenc128v32(in, n, out));
|
||||
if(mdelta) return n == 128?p4d1enc128v32( in, n, out, x ):p4d1enc32( in, n, out, x);
|
||||
else return n == 128?p4denc128v32( in, n, out, x ):p4denc32( in, n, out, x);
|
||||
case TB_PFN128V: return out+(mdelta?p4nd1enc128v32( in, n, out ):p4ndenc128v32(in, n, out));
|
||||
|
||||
case TB_FOR128V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 128?bitf1pack128v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 128?bitfpack128v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); }
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 128?bitf1pack128v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 128?bitfpack128v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); }
|
||||
case TB_BP128V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitd132(in, n, 0,x));*out++=b; return n == 128?bitd1pack128v32(in, n, out, x, b):bitd1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitd32( in, n, 0,x)); *out++=b; return n == 128?bitdpack128v32( in, n, out, x, b):bitdpack32( in, n, out, x, b); }
|
||||
case TB_BPN128V: return out+(mdelta?bitnd1pack128v32( in, n, out ):bitndpack128v32(in, n, out));
|
||||
case TB_BYTE128V: return out+(mdelta?v8nd1enc128v32( in, n, out ):v8ndenc128v32( in, n, out));
|
||||
if(mdelta) { b = bsr32(bitd132(in, n, 0,x));*out++=b; return n == 128?bitd1pack128v32(in, n, out, x, b):bitd1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitd32( in, n, 0,x)); *out++=b; return n == 128?bitdpack128v32( in, n, out, x, b):bitdpack32( in, n, out, x, b); }
|
||||
case TB_BPN128V: return out+(mdelta?bitnd1pack128v32( in, n, out ):bitndpack128v32(in, n, out));
|
||||
case TB_BYTE128V: return out+(mdelta?v8nd1enc128v32( in, n, out ):v8ndenc128v32( in, n, out));
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_FOR256V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 256?bitf1pack256v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 256?bitfpack256v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); }
|
||||
if(mdelta) { b = bsr32(bitf132(in, n, 0,x)); *out++=b; return n == 256?bitf1pack256v32(in, n, out, x, b):bitf1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitf32( in, n, 0,x)); *out++=b; return n == 256?bitfpack256v32( in, n, out, x, b):bitfpack32( in, n, out, x, b); }
|
||||
case TB_EF256V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) return n == 256?efano1enc256v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1);
|
||||
else return n == 256?efanoenc256v32( in, n, out, x ):efanoenc32( in, n, out, x );
|
||||
if(mdelta) return n == 256?efano1enc256v32(in, n, out, x+1 ):efano1enc32( in, n, out, x+1);
|
||||
else return n == 256?efanoenc256v32( in, n, out, x ):efanoenc32( in, n, out, x );
|
||||
case TB_PF256V: x = *in++; bitdienc32( in, --n, pa, x, mdelta);
|
||||
vbxput32(out, x); return n == 256?p4enc256v32( pa, n, out ):p4enc32( pa, n, out);
|
||||
case TB_PFN256V: return out+(mdelta?p4nd1enc256v32( in, n, out ):p4ndenc256v32(in, n, out));
|
||||
vbxput32(out, x); return n == 256?p4enc256v32( pa, n, out ):p4enc32( pa, n, out);
|
||||
case TB_PFN256V: return out+(mdelta?p4nd1enc256v32( in, n, out ):p4ndenc256v32(in, n, out));
|
||||
case TB_BP256V: x = *in++; --n; vbxput32(out, x);
|
||||
if(mdelta) { b = bsr32(bitd132(in, n, 0,x)); *out++=b; return n == 256?bitd1pack256v32(in, n, out, x, b):bitd1pack32( in, n, out, x, b); }
|
||||
else { b = bsr32(bitd32( in, n, 0,x)); *out++=b; return n == 256?bitdpack256v32( in, n, out, x, b):bitdpack32( in, n, out, x, b); }
|
||||
case TB_BPN256V: return out+(mdelta?bitnd1pack256v32( in, n, out ):bitndpack256v32(in, n, out));
|
||||
case TB_BYTE256V: return out+(mdelta?v8nd1enc256v32( in, n, out ):v8ndenc256v32( in, n, out));
|
||||
case TB_BPN256V: return out+(mdelta?bitnd1pack256v32( in, n, out ):bitndpack256v32(in, n, out));
|
||||
case TB_BYTE256V: return out+(mdelta?v8nd1enc256v32( in, n, out ):v8ndenc256v32( in, n, out));
|
||||
#endif
|
||||
// --------- transform ------------------------------------------------------------------------------------------------
|
||||
#if C_TRANSFORM
|
||||
@ -507,63 +507,63 @@ unsigned char *coddecomps(unsigned char *in, unsigned _n, unsigned char *_out, i
|
||||
unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x,b;
|
||||
|
||||
switch(codec) {
|
||||
case TB_VSIMPLE:vbxget32(in, x);*out++ = x; --n; in = vsdec32( in, n, out); bitdidec32(out, n, x+mdelta, mdelta); return in;
|
||||
case TB_EF: vbxget32(in, x);*out++ = x; --n; return mdelta?efano1dec32( in, n, out, x+1 ):efanodec32( in, n, out, x);
|
||||
case TB_VBYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?vbd1dec32( in, n, out, x ):vbddec32( in, n, out, x);
|
||||
case TB_BYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?v8d1dec32( in, n, out, x ):v8ddec32( in, n, out, x);
|
||||
case TB_VSIMPLE:vbxget32(in, x);*out++ = x; --n; in = vsdec32( in, n, out); bitdidec32(out, n, x+mdelta, mdelta); return in;
|
||||
case TB_EF: vbxget32(in, x);*out++ = x; --n; return mdelta?efano1dec32( in, n, out, x+1 ):efanodec32( in, n, out, x);
|
||||
case TB_VBYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?vbd1dec32( in, n, out, x ):vbddec32( in, n, out, x);
|
||||
case TB_BYTE: vbxget32(in, x);*out++ = x; --n; return mdelta?v8d1dec32( in, n, out, x ):v8ddec32( in, n, out, x);
|
||||
|
||||
case TB_PFDA: vbxget32(in, x);*out++ = x; --n; return mdelta?p4f1decx32( in, n, out, x ):p4fdecx32( in, n, out, x);
|
||||
case TB_PFDA: vbxget32(in, x);*out++ = x; --n; return mdelta?p4f1decx32( in, n, out, x ):p4fdecx32( in, n, out, x);
|
||||
|
||||
case TB_FOR: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitf1unpack32( in, n, out, x, b):bitfunpack32( in, n, out, x, b);
|
||||
case TB_FORDA: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitf1unpackx32( in, n, out, x, b):bitfunpackx32( in, n, out, x, b);
|
||||
case TB_BP: vbxget32(in, x);*out++ = x; --n; b = *in++; return mdelta?bitd1unpack32( in, n, out, x, b):bitdunpack32( in, n, out, x, b);
|
||||
case TB_BPN: return in+(mdelta?bitnd1unpack32(in, n, out ):bitndunpack32( in, n, out));
|
||||
case TB_BPN: return in+(mdelta?bitnd1unpack32(in, n, out ):bitndunpack32( in, n, out));
|
||||
|
||||
case TB_PDI: vbxget32(in, x);*out++ = x; --n; return p4sdec32(in, n, out, x);
|
||||
|
||||
#if C_TURBOPFOR128
|
||||
#if C_TURBOPFOR128
|
||||
case TB_FOR128V:vbxget32(in, x);*out++ = x; --n; b = *in++;
|
||||
if(mdelta) { return n==128?bitf1unpack128v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitfunpack128v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); }
|
||||
case TB_EF128V: vbxget32(in, x);*out++ = x; --n;
|
||||
if(mdelta) { return n==128?efano1dec128v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); }
|
||||
else { return n==128?efanodec128v32( in, n, out, x ):efanodec32( in, n, out, x); }
|
||||
case TB_PF128V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256);
|
||||
if(mdelta) { return n==128?p4d1dec128v32( in, n, out, x ):p4d1dec32( in, n, out, x); }
|
||||
else { return n==128?p4ddec128v32( in, n, out, x ):p4ddec32( in, n, out, x); }
|
||||
case TB_PFN128V: return in+(mdelta?p4nd1dec128v32(in, n, out ):p4nddec128v32( in, n, out));
|
||||
if(mdelta) { return n==128?bitf1unpack128v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitfunpack128v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); }
|
||||
case TB_EF128V: vbxget32(in, x);*out++ = x; --n;
|
||||
if(mdelta) { return n==128?efano1dec128v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); }
|
||||
else { return n==128?efanodec128v32( in, n, out, x ):efanodec32( in, n, out, x); }
|
||||
case TB_PF128V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256);
|
||||
if(mdelta) { return n==128?p4d1dec128v32( in, n, out, x ):p4d1dec32( in, n, out, x); }
|
||||
else { return n==128?p4ddec128v32( in, n, out, x ):p4ddec32( in, n, out, x); }
|
||||
case TB_PFN128V: return in+(mdelta?p4nd1dec128v32(in, n, out ):p4nddec128v32( in, n, out));
|
||||
case TB_BP128V: vbxget32(in, x);*out++ = x; --n; b = *in++;
|
||||
if(mdelta) { return n==128?bitd1unpack128v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitdunpack128v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
case TB_BPN128V: return in+(mdelta?bitnd1unpack128v32(in, n, out ):bitndunpack128v32(in, n, out));
|
||||
case TB_BYTE128V: return in+(mdelta?v8nd1dec128v32(in, n, out ):v8nd1dec128v32(in, n, out));
|
||||
if(mdelta) { return n==128?bitd1unpack128v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitdunpack128v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
case TB_BPN128V: return in+(mdelta?bitnd1unpack128v32(in, n, out ):bitndunpack128v32(in, n, out));
|
||||
case TB_BYTE128V: return in+(mdelta?v8nd1dec128v32(in, n, out ):v8nd1dec128v32(in, n, out));
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFORH
|
||||
#if C_TURBOPFORH
|
||||
case TB_BP128H: vbxget32(in, x);*out++ = x; --n; b = *in++;
|
||||
if(mdelta) { return n==128?bitd1unpack128h32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitdunpack128h32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
#endif
|
||||
if(mdelta) { return n==128?bitd1unpack128h32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==128?bitdunpack128h32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_EF256V: vbxget32(in, x);*out++ = x; --n;
|
||||
if(mdelta) { return n==256?efano1dec256v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); }
|
||||
else { return n==256?efanodec256v32( in, n, out, x ):efanodec32( in, n, out, x); }
|
||||
case TB_PF256V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256);
|
||||
if(mdelta) { return n==256?p4d1dec256v32( in, n, out, x ):p4d1dec32( in, n, out, x); }
|
||||
else { return n==256?p4ddec256v32( in, n, out, x ):p4ddec32( in, n, out, x); }
|
||||
case TB_PFN256V: return in+(mdelta?p4nd1dec256v32(in, n, out ):p4nddec256v32( in, n, out));
|
||||
if(mdelta) { return n==256?efano1dec256v32(in, n, out, x+1 ):efano1dec32( in, n, out, x+1); }
|
||||
else { return n==256?efanodec256v32( in, n, out, x ):efanodec32( in, n, out, x); }
|
||||
case TB_PF256V: vbxget32(in, x);*out++ = x; --n; //__builtin_prefetch(in+256);
|
||||
if(mdelta) { return n==256?p4d1dec256v32( in, n, out, x ):p4d1dec32( in, n, out, x); }
|
||||
else { return n==256?p4ddec256v32( in, n, out, x ):p4ddec32( in, n, out, x); }
|
||||
case TB_PFN256V: return in+(mdelta?p4nd1dec256v32(in, n, out ):p4nddec256v32( in, n, out));
|
||||
case TB_FOR256V:vbxget32(in, x);*out++ = x; --n; b = *in++;
|
||||
if(mdelta) { return n==256?bitf1unpack256v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); }
|
||||
else { return n==256?bitfunpack256v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); }
|
||||
if(mdelta) { return n==256?bitf1unpack256v32( in, n, out, x, b):bitf1unpack32( in, n, out, x, b); }
|
||||
else { return n==256?bitfunpack256v32( in, n, out, x, b):bitfunpack32(in, n, out, x, b); }
|
||||
case TB_BP256V: vbxget32(in, x);*out++ = x; --n; b = *in++;
|
||||
if(mdelta) { return n==256?bitd1unpack256v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==256?bitdunpack256v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
case TB_BPN256V: return in+(mdelta?bitnd1unpack256v32(in, n, out ):bitndunpack256v32(in, n, out));
|
||||
case TB_BYTE256V: return in+(mdelta?v8nd1dec256v32(in, n, out ):v8nddec256v32(in, n, out));
|
||||
#endif
|
||||
if(mdelta) { return n==256?bitd1unpack256v32(in, n, out, x, b):bitd1unpack32( in, n, out, x, b); }
|
||||
else { return n==256?bitdunpack256v32( in, n, out, x, b):bitdunpack32( in, n, out, x, b); }
|
||||
case TB_BPN256V: return in+(mdelta?bitnd1unpack256v32(in, n, out ):bitndunpack256v32(in, n, out));
|
||||
case TB_BYTE256V: return in+(mdelta?v8nd1dec256v32(in, n, out ):v8nddec256v32(in, n, out));
|
||||
#endif
|
||||
|
||||
//---------- transpose + lz77 ----------------------
|
||||
//---------- transpose + lz77 ----------------------
|
||||
#if C_TRANSFORM
|
||||
case TB_ZIGZAG32: memcpy(out, in, outlen); bitzdec32(out, n, 0); return in + outlen;
|
||||
case TP_BYTES: tpdec4((unsigned char *)in, outlen, (unsigned char *)out); bitdidec32(out, n, -mdelta, mdelta); return in + outlen;
|
||||
@ -585,22 +585,22 @@ unsigned char *codcompz(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
unsigned *in = (unsigned *)_in, n = (_n+3) / 4, i, *pa = (unsigned *)sbuf, x, b;
|
||||
|
||||
switch(codec) {
|
||||
case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return vbzenc32( in, n, out, x);
|
||||
case TB_BYTE: x = *in++; --n; vbxput32(out, x); return v8zenc32( in, n, out, x);
|
||||
case TB_VBYTE: x = *in++; --n; vbxput32(out, x); return vbzenc32( in, n, out, x);
|
||||
case TB_BYTE: x = *in++; --n; vbxput32(out, x); return v8zenc32( in, n, out, x);
|
||||
case TB_BP: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0,x)); *out++=b;return bitzpack32(in, n, out, x, b);
|
||||
case TB_BPN: return out+bitnzpack32(in, n, out);
|
||||
#if C_TURBOPFOR128
|
||||
case TB_BPN: return out+bitnzpack32(in, n, out);
|
||||
#if C_TURBOPFOR128
|
||||
case TB_PF128V: x = *in++; --n; vbxput32(out, x); return n == 128?p4zenc128v32(in, n, out, x):p4zenc32(in, n, out, x);
|
||||
case TB_PFN128V: return out+p4nzenc128v32( in, n, out );
|
||||
case TB_PFN128V: return out+p4nzenc128v32( in, n, out );
|
||||
case TB_BP128V: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0,x)); *out++=b;return n == 128?bitzpack128v32(in, n, out, x, b):bitzpack32(in, n, out, x, b);
|
||||
case TB_BPN128V: return out+bitnzpack128v32( in, n, out );
|
||||
case TB_BPN128V: return out+bitnzpack128v32( in, n, out );
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_PF256V: x = *in++; --n; vbxput32(out, x); return n == 256?p4zenc256v32(in, n, out, x):p4zenc32(in, n, out, x);
|
||||
case TB_PFN256V: return out+p4nzenc256v32( in, n, out );
|
||||
case TB_PFN256V: return out+p4nzenc256v32( in, n, out );
|
||||
case TB_BP256V: x = *in++; --n; vbxput32(out, x);b = bsr32(bitz32(in, n, 0, x)); *out++=b;return n == 256?bitzpack256v32(in, n, out, x, b):bitzpack32(in, n, out,x, b);
|
||||
case TB_BPN256V: return out+bitnzpack256v32( in, n, out );
|
||||
case TB_BPN256V: return out+bitnzpack256v32( in, n, out );
|
||||
#endif
|
||||
}
|
||||
return out;
|
||||
@ -610,26 +610,26 @@ unsigned char *coddecompz(unsigned char *in, unsigned _n, unsigned char *_out, i
|
||||
unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x,b;
|
||||
|
||||
switch(codec) {
|
||||
case TB_VBYTE: vbxget32(in, x); *out++ = x; --n; return vbzdec32(in, n, out, x);
|
||||
case TB_VBYTE: vbxget32(in, x); *out++ = x; --n; return vbzdec32(in, n, out, x);
|
||||
case TB_BP: vbxget32(in, x); *out++ = x; --n; b = *in++; return bitzunpack32(in, n, out, x, b);
|
||||
case TB_BPN: return in+bitnzunpack32(in, n, out);
|
||||
case TB_BYTE: vbxget32(in, x); *out++ = x; --n; return v8zdec32(in, n, out, x);
|
||||
case TB_BPN: return in+bitnzunpack32(in, n, out);
|
||||
case TB_BYTE: vbxget32(in, x); *out++ = x; --n; return v8zdec32(in, n, out, x);
|
||||
|
||||
#if C_TURBOPFOR128
|
||||
#if C_TURBOPFOR128
|
||||
case TB_PF128V:vbxget32(in, x); *out++ = x; --n; return n == 128?p4zdec128v32(in, n, out, x):p4zdec32(in, n, out, x);
|
||||
case TB_PFN128V: return in+p4nzdec128v32(in, n, out);
|
||||
case TB_PFN128V: return in+p4nzdec128v32(in, n, out);
|
||||
case TB_BP128V:vbxget32(in, x); *out++ = x; --n; b = *in++; return n == 128?bitzunpack128v32(in, n, out, x, b):bitzunpack32(in, n, out, x, b);
|
||||
case TB_BPN128V: return in+bitnzunpack128v32(in, n, out);
|
||||
case TB_BYTE128V: return in+v8nzdec128v32(in, n, out);
|
||||
case TB_BPN128V: return in+bitnzunpack128v32(in, n, out);
|
||||
case TB_BYTE128V: return in+v8nzdec128v32(in, n, out);
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_PF256V:vbxget32(in, x); *out++ = x; --n; return n == 256?p4zdec256v32(in, n, out, x):p4zdec32(in, n, out, x);
|
||||
case TB_PFN256V: return in+p4nzdec256v32(in, n, out);
|
||||
case TB_PFN256V: return in+p4nzdec256v32(in, n, out);
|
||||
case TB_BP256V:vbxget32(in, x); *out++ = x; --n; b = *in++; return n == 256?bitzunpack256v32(in, n, out, x, b):bitzunpack32(in, n, out, x, b);
|
||||
case TB_BPN256V: return in+bitnzunpack256v32(in, n, out);
|
||||
case TB_BYTE256V: return in+v8nzdec256v32(in, n, out);
|
||||
#endif
|
||||
case TB_BPN256V: return in+bitnzunpack256v32(in, n, out);
|
||||
case TB_BYTE256V: return in+v8nzdec256v32(in, n, out);
|
||||
#endif
|
||||
}
|
||||
return in;
|
||||
}
|
||||
@ -638,19 +638,19 @@ unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
unsigned *in = (unsigned *)_in, n = (_n+3) / 4, x;
|
||||
|
||||
switch(codec) {
|
||||
case TB_EF: return out; // Not applicable
|
||||
case TB_VBYTE: return vbenc32( in, n, out);
|
||||
case TB_BYTE: return v8enc32( in, n, out);
|
||||
case TB_EF: return out; // Not applicable
|
||||
case TB_VBYTE: return vbenc32( in, n, out);
|
||||
case TB_BYTE: return v8enc32( in, n, out);
|
||||
case TB_VSIMPLE: return vsenc32( in, n, out);
|
||||
|
||||
case TB_PFDA: return p4encx32( in, n, out); //case TB_PFM: bsr32(bitfm32( in, n, 0,&x)); vbxput32(out, x); return p4denc32(in, n, out, x);
|
||||
case TB_PDI: { unsigned *pa = (unsigned *)sbuf,mdelta;
|
||||
bitfm32(in, n, 0, &x); // determine minimum value
|
||||
mdelta = bitdi32(in, n, 0, x); if(mdelta>(1<<27)) mdelta=1<<27;// determine minimum delta
|
||||
bitdienc32(in, n, pa, x, mdelta); // delta transform
|
||||
mdelta=mdelta<<5|(x&31); x>>=5; vbxput32(out, x); vbput32(out, mdelta);
|
||||
return p4enc32(pa, n, out);
|
||||
}
|
||||
bitfm32(in, n, 0, &x); // determine minimum value
|
||||
mdelta = bitdi32(in, n, 0, x); if(mdelta>(1<<27)) mdelta=1<<27;// determine minimum delta
|
||||
bitdienc32(in, n, pa, x, mdelta); // delta transform
|
||||
mdelta=mdelta<<5|(x&31); x>>=5; vbxput32(out, x); vbput32(out, mdelta);
|
||||
return p4enc32(pa, n, out);
|
||||
}
|
||||
case TB_FOR :
|
||||
case TB_FORDA: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack32( in, n, out, x, b);
|
||||
|
||||
@ -659,10 +659,10 @@ unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
#endif
|
||||
case TB_BPDA:
|
||||
case TB_BP: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; }
|
||||
return bitpack32(in, n, out, b);
|
||||
return bitpack32(in, n, out, b);
|
||||
case TB_BPN: return out+bitnpack32(in, n, out);
|
||||
|
||||
#if C_TURBOPFOR128
|
||||
#if C_TURBOPFOR128
|
||||
case TB_EF128V: return out;
|
||||
|
||||
case TB_PF128V: return n == 128?p4enc128v32(in, n, out):p4enc32(in, n, out);
|
||||
@ -672,25 +672,25 @@ unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
case TB_FOR128V: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack128v32( in, n, out, x, b);
|
||||
|
||||
case TB_BP128V: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; }
|
||||
return n == 128?bitpack128v32(in, n, out, b):bitpack32(in, n, out, b);
|
||||
return n == 128?bitpack128v32(in, n, out, b):bitpack32(in, n, out, b);
|
||||
case TB_BPN128V: return out+bitnpack128v32(in, n, out);
|
||||
case TB_BYTE128V: return out+v8nenc128v32(in, n, out);
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_PF256V: return n == 256?p4enc256v32(in, n, out):p4enc32(in, n, out);
|
||||
case TB_PFN256V: return out+p4nenc256v32(in, n, out);
|
||||
|
||||
case TB_FOR256V: b = bsr32(bitfm32( in, n, 0, &x)); vbxput32(out, x); *out++=b; return bitfpack256v32( in, n, out, x, b);
|
||||
|
||||
case TB_BP256V: if(b < 0) { b = bsr32(bit32(in, n, 0)); *out++ = b; }
|
||||
return n == 256?bitpack256v32(in, n, out, b):bitpack32(in, n, out, b);
|
||||
return n == 256?bitpack256v32(in, n, out, b):bitpack32(in, n, out, b);
|
||||
case TB_BPN256V: return out+bitnpack256v32(in, n, out);
|
||||
case TB_BYTE256V: return out+v8nenc256v32(in, n, out);
|
||||
#endif
|
||||
|
||||
case P_COPY: return u32enc( in, n, (unsigned *)out);
|
||||
case P_MCPY: memcpy(out, _in, _n); return out+_n;
|
||||
case P_MCPY: memcpy(out, _in, _n); return out+_n;
|
||||
// --------- transform ----------------------------------------
|
||||
#if C_TRANSFORM
|
||||
case TP_BYTES: tpenc4((unsigned char *)in, _n, out); return out + _n;
|
||||
@ -701,9 +701,9 @@ unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
case TB_ZIGZAG32: bitzenc32( in, n,(unsigned *)out,0,0); return out + _n;
|
||||
#endif
|
||||
//---- Floating point ----------------------
|
||||
//case TB_FPPFOR64: ctou64(out) = ctou64(_in); return out+fppenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
case TB_FPFFOR64: ctou64(out) = ctou64(_in); return out+fpfcmenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
case TB_FPDFOR64: ctou64(out) = ctou64(_in); return out+fpdfcmenc64((uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
//case TB_FPPFOR64: ctou64(out) = ctou64(_in); return out+fppenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
case TB_FPFFOR64: ctou64(out) = ctou64(_in); return out+fpfcmenc64( (uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
case TB_FPDFOR64: ctou64(out) = ctou64(_in); return out+fpdfcmenc64((uint64_t *)(_in+8), PAD8(_n)-1, out+8, ctou64(_in));
|
||||
case TB_PF64: return p4enc64((uint64_t *)in, PAD8(_n), out);
|
||||
case TB_PF64V: return p4enc128v64((uint64_t *)in, PAD8(_n), out);
|
||||
#if CODEC1==1 || CODEC2==1
|
||||
@ -716,46 +716,46 @@ unsigned char *codcomp(unsigned char *_in, unsigned _n, unsigned char *out, int
|
||||
unsigned char *coddecomp(unsigned char *in, unsigned _n, unsigned char *_out, int outlen, int codec, int lev, char *prm, int b) {
|
||||
unsigned *out = (unsigned *)_out, n = (outlen+3) / 4,x;
|
||||
switch(codec) {
|
||||
case TB_VBYTE: return vbdec32( in, n, out); // case P_VU: return vudec32( in, n, out);
|
||||
case TB_BYTE: return v8dec32( in, n, out);
|
||||
case TB_VSIMPLE: return vsdec32( in, n, out);
|
||||
case TB_EF: return in; // Not applicable
|
||||
case TB_PFDA : return p4decx32( in, n, out); //case TB_PFM: vbxget32(in, x); return p4ddec32( in, n, out, x);
|
||||
case TB_VBYTE: return vbdec32( in, n, out); // case P_VU: return vudec32( in, n, out);
|
||||
case TB_BYTE: return v8dec32( in, n, out);
|
||||
case TB_VSIMPLE: return vsdec32( in, n, out);
|
||||
case TB_EF: return in; // Not applicable
|
||||
case TB_PFDA : return p4decx32( in, n, out); //case TB_PFM: vbxget32(in, x); return p4ddec32( in, n, out, x);
|
||||
case TB_PDI: { uint32_t mdelta; vbxget32(in, x); vbget32(in, mdelta); x = x << 5 | (mdelta & 31); in = p4dec32(in, n, out); bitdidec32(out, n, x, mdelta>>5); break; }
|
||||
|
||||
case TB_FOR: vbxget32(in, x); b = *in++; return bitfunpack32( in, n, out, x, b);
|
||||
case TB_FORDA: vbxget32(in, x); b = *in++; return bitfunpackx32(in, n, out, x, b);
|
||||
|
||||
case TB_BPDA: if(b < 0) b = *in++; return _bitunpackx32( in, n, out, b);
|
||||
case TB_BP: if(b < 0) b = *in++; return bitunpack32( in, n, out, b);
|
||||
case TB_BPN: return in+bitnunpack32( in, n, out);
|
||||
case TB_BPDA: if(b < 0) b = *in++; return _bitunpackx32( in, n, out, b);
|
||||
case TB_BP: if(b < 0) b = *in++; return bitunpack32( in, n, out, b);
|
||||
case TB_BPN: return in+bitnunpack32( in, n, out);
|
||||
|
||||
#if C_TURBOPFOR128
|
||||
case TB_PF128V : return n == 128?p4dec128v32(in, n, out):p4dec32(in, n, out);
|
||||
case TB_PFN128V : return in+p4ndec128v32(in, n, out);
|
||||
case TB_PFNZZ: return in+p4nzzdec128v32( in, n, out,0);
|
||||
#if C_TURBOPFOR128
|
||||
case TB_PF128V : return n == 128?p4dec128v32(in, n, out):p4dec32(in, n, out);
|
||||
case TB_PFN128V : return in+p4ndec128v32(in, n, out);
|
||||
case TB_PFNZZ: return in+p4nzzdec128v32( in, n, out,0);
|
||||
|
||||
case TB_EF128V: return in;
|
||||
case TB_EF128V: return in;
|
||||
|
||||
case TB_FOR128V: vbxget32(in, x); b = *in++;return bitfunpack128v32( in, n, out, x, b);
|
||||
|
||||
case TB_BP128V: if(b < 0) b = *in++; return n != 128?bitunpack32(in, n, out, b):bitunpack128v32(in, n, out, b);
|
||||
case TB_BPN128V : return in+bitnunpack128v32(in, n, out);
|
||||
case TB_BYTE128V : return in+v8ndec128v32(in, n, out);
|
||||
case TB_BP128V: if(b < 0) b = *in++; return n != 128?bitunpack32(in, n, out, b):bitunpack128v32(in, n, out, b);
|
||||
case TB_BPN128V : return in+bitnunpack128v32(in, n, out);
|
||||
case TB_BYTE128V : return in+v8ndec128v32(in, n, out);
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFORH
|
||||
case TB_BP128H: if(b < 0) b = *in++; return n == 128?bitunpack128h32(in, n, out, b):bitunpack32(in, n, out, b);
|
||||
case TB_BP128H: if(b < 0) b = *in++; return n == 128?bitunpack128h32(in, n, out, b):bitunpack32(in, n, out, b);
|
||||
#endif
|
||||
|
||||
#if C_TURBOPFOR256
|
||||
#if C_TURBOPFOR256
|
||||
case TB_FOR256V: vbxget32(in, x); b = *in++;return bitfunpack256v32( in, n, out, x, b);
|
||||
|
||||
case TB_PF256V : __builtin_prefetch(in+256);return n == 256?p4dec256v32(in, n, out):p4dec32(in, n, out);
|
||||
case TB_PFN256V : return in+p4ndec256v32(in, n, out);
|
||||
case TB_BP256V: if(b < 0) b = *in++; return n != 256?bitunpack32(in, n, out, b):bitunpack256v32(in, n, out, b);
|
||||
case TB_BPN256V: return in+bitnunpack256v32(in, n, out);
|
||||
case TB_BYTE256V: return in+v8ndec256v32(in, n, out);
|
||||
case TB_PFN256V : return in+p4ndec256v32(in, n, out);
|
||||
case TB_BP256V: if(b < 0) b = *in++; return n != 256?bitunpack32(in, n, out, b):bitunpack256v32(in, n, out, b);
|
||||
case TB_BPN256V: return in+bitnunpack256v32(in, n, out);
|
||||
case TB_BYTE256V: return in+v8ndec256v32(in, n, out);
|
||||
#endif
|
||||
|
||||
//---------- transform ----------------------
|
||||
@ -763,14 +763,14 @@ unsigned char *coddecomp(unsigned char *in, unsigned _n, unsigned char *_out, in
|
||||
case TP_BYTES: tpdec4( (unsigned char *)in, outlen, (unsigned char *)out); return in + outlen;
|
||||
case TP_BYTE: tpdec( (unsigned char *)in, outlen, (unsigned char *)out,lev); return in + outlen;
|
||||
case TP_NIBBLE: tp4dec( (unsigned char *)in, outlen, (unsigned char *)out,lev); return in + outlen;
|
||||
case TB_DELTA32: memcpy(out, in, outlen); bitddec32(out, n, 0); return in + outlen;
|
||||
case TB_ZDELTA32: memcpy(out, in, outlen); bitzzdec32(out, n, 0); return in + outlen;
|
||||
case TB_ZIGZAG32: memcpy(out, in, outlen); bitzdec32(out, n, 0); return in + outlen;
|
||||
#endif
|
||||
case TB_DELTA32: memcpy(out, in, outlen); bitddec32(out, n, 0); return in + outlen;
|
||||
case TB_ZDELTA32: memcpy(out, in, outlen); bitzzdec32(out, n, 0); return in + outlen;
|
||||
case TB_ZIGZAG32: memcpy(out, in, outlen); bitzdec32(out, n, 0); return in + outlen;
|
||||
#endif
|
||||
//---- Floating point (64 bits)----------------------
|
||||
//case TB_FPPFOR64: ctou64(_out) = ctou64(in); return in+fppdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));
|
||||
case TB_FPFFOR64: ctou64(_out) = ctou64(in); return in+fpfcmdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));;
|
||||
case TB_FPDFOR64: ctou64(_out) = ctou64(in); return in+fpdfcmdec64(in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));
|
||||
//case TB_FPPFOR64: ctou64(_out) = ctou64(in); return in+fppdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));
|
||||
case TB_FPFFOR64: ctou64(_out) = ctou64(in); return in+fpfcmdec64( in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));;
|
||||
case TB_FPDFOR64: ctou64(_out) = ctou64(in); return in+fpdfcmdec64(in+8, PAD8(outlen)-1, (uint64_t *)(_out+8), ctou64(in));
|
||||
case TB_PF64: return p4dec64( in, PAD8(outlen), (uint64_t *)out);
|
||||
case TB_PF64V: return p4dec128v64(in, PAD8(outlen), (uint64_t *)out);
|
||||
#if CODEC1==1 || CODEC2==1
|
||||
@ -785,13 +785,13 @@ char *codver(int codec, char *v, char *s) {
|
||||
#if C_C_BLOSC
|
||||
return BLOSC_VERSION_STRING;
|
||||
#endif
|
||||
#if C_LZ4
|
||||
#if C_LZ4
|
||||
case LZ4_: sprintf(s,"%d.%d.%d", LZ4_VERSION_MAJOR, LZ4_VERSION_MINOR, LZ4_VERSION_RELEASE); return s;
|
||||
#endif
|
||||
#if C_ZSTD
|
||||
#endif
|
||||
#if C_ZSTD
|
||||
case P_ZSTD: sprintf(s,"%d.%d.%d", ZSTD_VERSION_MAJOR, ZSTD_VERSION_MINOR, ZSTD_VERSION_RELEASE); return s;
|
||||
#endif
|
||||
default: if(v) strcpy(s,v);
|
||||
default: if(v) strcpy(s,v);
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
Reference in New Issue
Block a user