2011-04-24 14:16:00 +00:00
|
|
|
/*
|
|
|
|
LZ4 - Fast LZ compression algorithm
|
2012-01-04 13:08:10 +00:00
|
|
|
Copyright (C) 2011-2012, Yann Collet.
|
|
|
|
BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
|
2011-04-26 23:49:24 +00:00
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are
|
|
|
|
met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
copyright notice, this list of conditions and the following disclaimer
|
|
|
|
in the documentation and/or other materials provided with the
|
|
|
|
distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2011-04-24 14:16:00 +00:00
|
|
|
*/
|
|
|
|
|
2011-11-19 21:38:27 +00:00
|
|
|
//**************************************
|
|
|
|
// Compilation Directives
|
|
|
|
//**************************************
|
|
|
|
#if __STDC_VERSION__ >= 199901L
|
|
|
|
/* "restrict" is a known keyword */
|
|
|
|
#else
|
|
|
|
#define restrict // Disable restrict
|
|
|
|
#endif
|
|
|
|
|
2012-01-04 13:08:10 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define inline __forceinline
|
|
|
|
#endif
|
|
|
|
|
2012-01-09 23:21:05 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
#define _PACKED __attribute__ ((packed))
|
|
|
|
#else
|
|
|
|
#define _PACKED
|
|
|
|
#endif
|
|
|
|
|
2012-01-13 19:44:18 +00:00
|
|
|
#if (__x86_64__ || __ppc64__ || _WIN64 || __LP64__) // Detect 64 bits mode
|
|
|
|
#define ARCH64 1
|
|
|
|
#else
|
|
|
|
#define ARCH64 0
|
|
|
|
#endif
|
2012-01-04 13:08:10 +00:00
|
|
|
|
2011-11-19 21:38:27 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
//**************************************
|
|
|
|
// Includes
|
|
|
|
//**************************************
|
|
|
|
#include <stdlib.h> // for malloc
|
|
|
|
#include <string.h> // for memset
|
|
|
|
#include "lz4.h"
|
|
|
|
|
|
|
|
|
2011-06-04 17:15:43 +00:00
|
|
|
//**************************************
|
2011-06-05 21:23:42 +00:00
|
|
|
// Performance parameter
|
2011-06-04 17:15:43 +00:00
|
|
|
//**************************************
|
2011-09-26 21:15:24 +00:00
|
|
|
// Increasing this value improves compression ratio
|
|
|
|
// Lowering this value reduces memory usage
|
|
|
|
// Lowering may also improve speed, typically on reaching cache size limits (L1 32KB for Intel, 64KB for AMD)
|
2011-08-30 22:35:09 +00:00
|
|
|
// Memory usage formula for 32 bits systems : N->2^(N+2) Bytes (examples : 17 -> 512KB ; 12 -> 16KB)
|
2011-06-05 21:23:42 +00:00
|
|
|
#define HASH_LOG 12
|
2011-06-04 17:15:43 +00:00
|
|
|
|
2012-01-09 23:21:05 +00:00
|
|
|
//#define _FORCE_SW_BITCOUNT // Uncomment for better performance if target platform has no hardware support for LowBitCount
|
2012-01-04 13:08:10 +00:00
|
|
|
|
2011-06-04 17:15:43 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
//**************************************
|
|
|
|
// Basic Types
|
|
|
|
//**************************************
|
2011-11-15 22:06:33 +00:00
|
|
|
#if defined(_MSC_VER) // Visual Studio does not support 'stdint' natively
|
2011-05-25 22:25:57 +00:00
|
|
|
#define BYTE unsigned __int8
|
|
|
|
#define U16 unsigned __int16
|
|
|
|
#define U32 unsigned __int32
|
|
|
|
#define S32 __int32
|
2012-01-07 20:26:15 +00:00
|
|
|
#define U64 unsigned __int64
|
2011-05-25 22:25:57 +00:00
|
|
|
#else
|
|
|
|
#include <stdint.h>
|
|
|
|
#define BYTE uint8_t
|
|
|
|
#define U16 uint16_t
|
|
|
|
#define U32 uint32_t
|
|
|
|
#define S32 int32_t
|
2012-01-07 20:26:15 +00:00
|
|
|
#define U64 uint64_t
|
2011-05-25 22:25:57 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
//**************************************
|
|
|
|
// Constants
|
|
|
|
//**************************************
|
|
|
|
#define MINMATCH 4
|
2011-09-13 22:55:49 +00:00
|
|
|
#define SKIPSTRENGTH 6
|
2011-09-21 11:45:00 +00:00
|
|
|
#define STACKLIMIT 13
|
|
|
|
#define HEAPMODE (HASH_LOG>STACKLIMIT) // Defines if memory is allocated into the stack (local variable), or into the heap (malloc()).
|
2011-09-23 22:27:08 +00:00
|
|
|
#define COPYLENGTH 8
|
|
|
|
#define LASTLITERALS 5
|
2011-09-26 21:15:24 +00:00
|
|
|
#define MFLIMIT (COPYLENGTH+MINMATCH)
|
|
|
|
#define MINLENGTH (MFLIMIT+1)
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
#define MAXD_LOG 16
|
|
|
|
#define MAX_DISTANCE ((1 << MAXD_LOG) - 1)
|
|
|
|
|
|
|
|
#define HASHTABLESIZE (1 << HASH_LOG)
|
|
|
|
#define HASH_MASK (HASHTABLESIZE - 1)
|
|
|
|
|
|
|
|
#define ML_BITS 4
|
|
|
|
#define ML_MASK ((1U<<ML_BITS)-1)
|
|
|
|
#define RUN_BITS (8-ML_BITS)
|
|
|
|
#define RUN_MASK ((1U<<RUN_BITS)-1)
|
|
|
|
|
|
|
|
|
|
|
|
//**************************************
|
|
|
|
// Local structures
|
|
|
|
//**************************************
|
|
|
|
struct refTables
|
|
|
|
{
|
2011-09-13 22:55:49 +00:00
|
|
|
const BYTE* hashTable[HASHTABLESIZE];
|
2011-04-24 14:16:00 +00:00
|
|
|
};
|
|
|
|
|
2012-01-07 20:26:15 +00:00
|
|
|
typedef struct _U64_S
|
|
|
|
{
|
|
|
|
U64 v;
|
|
|
|
} _PACKED U64_S;
|
|
|
|
|
2011-09-27 11:59:58 +00:00
|
|
|
typedef struct _U32_S
|
|
|
|
{
|
|
|
|
U32 v;
|
|
|
|
} _PACKED U32_S;
|
|
|
|
|
|
|
|
typedef struct _U16_S
|
|
|
|
{
|
|
|
|
U16 v;
|
|
|
|
} _PACKED U16_S;
|
|
|
|
|
2012-01-07 20:26:15 +00:00
|
|
|
#define A64(x) (((U64_S *)(x))->v)
|
2011-09-27 11:59:58 +00:00
|
|
|
#define A32(x) (((U32_S *)(x))->v)
|
|
|
|
#define A16(x) (((U16_S *)(x))->v)
|
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2012-01-09 23:21:05 +00:00
|
|
|
//**************************************
|
|
|
|
// Architecture-specific macros
|
|
|
|
//**************************************
|
|
|
|
#if ARCH64 // 64-bit
|
2012-01-13 19:44:18 +00:00
|
|
|
#define STEPSIZE 8
|
|
|
|
#define UARCH U64
|
|
|
|
#define AARCH A64
|
2012-01-10 20:03:01 +00:00
|
|
|
#define LZ4_COPYSTEP(s,d) A64(d) = A64(s); d+=8; s+=8;
|
|
|
|
#define LZ4_COPYPACKET(s,d) LZ4_COPYSTEP(s,d)
|
2012-01-14 17:17:12 +00:00
|
|
|
#define HTYPE U32
|
|
|
|
#define INITBASE(base) const BYTE* const base = ip
|
2012-01-09 23:21:05 +00:00
|
|
|
#else // 32-bit
|
2012-01-13 19:44:18 +00:00
|
|
|
#define STEPSIZE 4
|
|
|
|
#define UARCH U32
|
|
|
|
#define AARCH A32
|
2012-01-10 20:03:01 +00:00
|
|
|
#define LZ4_COPYSTEP(s,d) A32(d) = A32(s); d+=4; s+=4;
|
|
|
|
#define LZ4_COPYPACKET(s,d) LZ4_COPYSTEP(s,d); LZ4_COPYSTEP(s,d);
|
2012-01-14 17:17:12 +00:00
|
|
|
#define HTYPE const BYTE*
|
|
|
|
#define INITBASE(base) const int base = 0
|
2012-01-09 23:21:05 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2012-01-09 23:21:05 +00:00
|
|
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
2012-01-14 17:17:12 +00:00
|
|
|
#define LZ4_READ_LITTLEENDIAN_16(d,s,p) { d = (s) - A16(p); }
|
2012-01-09 23:21:05 +00:00
|
|
|
#define LZ4_WRITE_LITTLEENDIAN_16(p,v) { A16(p) = v; p+=2; }
|
2012-01-10 20:03:01 +00:00
|
|
|
#define LZ4_NbCommonBytes LZ4_NbCommonBytes_LittleEndian
|
2012-01-09 23:21:05 +00:00
|
|
|
#else // Big Endian
|
2012-01-14 17:17:12 +00:00
|
|
|
#define LZ4_READ_LITTLEENDIAN_16(d,s,p) { int delta = p[0]; delta += p[1] << 8; d = (s) - delta; }
|
|
|
|
#define LZ4_WRITE_LITTLEENDIAN_16(p,v) { int delta = v; *p++ = delta; *p++ = delta>>8; }
|
2012-01-10 20:03:01 +00:00
|
|
|
#define LZ4_NbCommonBytes LZ4_NbCommonBytes_BigEndian
|
2012-01-09 23:21:05 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2012-01-10 20:03:01 +00:00
|
|
|
|
|
|
|
//**************************************
|
|
|
|
// Macros
|
|
|
|
//**************************************
|
|
|
|
#define LZ4_HASH_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH*8)-HASH_LOG))
|
|
|
|
#define LZ4_HASH_VALUE(p) LZ4_HASH_FUNCTION(A32(p))
|
|
|
|
#define LZ4_WILDCOPY(s,d,e) do { LZ4_COPYPACKET(s,d) } while (d<e);
|
2012-01-14 17:17:12 +00:00
|
|
|
#define LZ4_BLINDCOPY(s,d,l) { BYTE* e=(d)+l; LZ4_WILDCOPY(s,d,e); d=e; }
|
2012-01-10 20:03:01 +00:00
|
|
|
|
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
//****************************
|
2012-01-09 23:21:05 +00:00
|
|
|
// Private functions
|
2011-04-24 14:16:00 +00:00
|
|
|
//****************************
|
2012-01-13 19:44:18 +00:00
|
|
|
#if ARCH64
|
|
|
|
|
|
|
|
inline static int LZ4_NbCommonBytes_LittleEndian (register U64 val)
|
|
|
|
{
|
|
|
|
#if defined(_MSC_VER) && !defined(_FORCE_SW_BITCOUNT)
|
|
|
|
unsigned long r = 0;
|
|
|
|
_BitScanForward64( &r, val );
|
|
|
|
return (int)(r>>3);
|
|
|
|
#elif defined(__GNUC__) && !defined(_FORCE_SW_BITCOUNT)
|
|
|
|
return (__builtin_ctzll(val) >> 3);
|
|
|
|
#else
|
|
|
|
static const int DeBruijnBytePos[64] = { 0, 0, 0, 0, 0, 1, 1, 2, 0, 3, 1, 3, 1, 4, 2, 7, 0, 2, 3, 6, 1, 5, 3, 5, 1, 3, 4, 4, 2, 5, 6, 7, 7, 0, 1, 2, 3, 3, 4, 6, 2, 6, 5, 5, 3, 4, 5, 6, 7, 1, 2, 4, 6, 4, 4, 5, 7, 2, 6, 5, 7, 6, 7, 7 };
|
|
|
|
return DeBruijnBytePos[((U64)((val & -val) * 0x0218A392CDABBD3F)) >> 58];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static int LZ4_NbCommonBytes_BigEndian (register U64 val)
|
|
|
|
{
|
|
|
|
#if defined(_MSC_VER) && !defined(_FORCE_SW_BITCOUNT)
|
|
|
|
unsigned long r = 0;
|
|
|
|
_BitScanReverse64( &r, val );
|
|
|
|
return (int)(r>>3);
|
|
|
|
#elif defined(__GNUC__) && !defined(_FORCE_SW_BITCOUNT)
|
|
|
|
return (__builtin_clzll(val) >> 3);
|
|
|
|
#else
|
|
|
|
int r;
|
|
|
|
if (!(val>>32)) { r=4; } else { r=0; val>>=32; }
|
|
|
|
if (!(val>>16)) { r+=2; val>>=8; } else { val>>=24; }
|
|
|
|
r += (!val);
|
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-01-10 20:03:01 +00:00
|
|
|
inline static int LZ4_NbCommonBytes_LittleEndian (register U32 val)
|
2012-01-04 13:08:10 +00:00
|
|
|
{
|
2012-01-09 23:21:05 +00:00
|
|
|
#if defined(_MSC_VER) && !defined(_FORCE_SW_BITCOUNT)
|
2012-01-10 20:03:01 +00:00
|
|
|
unsigned long r = 0;
|
|
|
|
_BitScanForward( &r, val );
|
|
|
|
return (int)(r>>3);
|
2012-01-13 19:44:18 +00:00
|
|
|
#elif defined(__GNUC__) && !defined(_FORCE_SW_BITCOUNT)
|
2012-01-04 13:08:10 +00:00
|
|
|
return (__builtin_ctz(val) >> 3);
|
|
|
|
#else
|
|
|
|
static const int DeBruijnBytePos[32] = { 0, 0, 3, 0, 3, 1, 3, 0, 3, 2, 2, 1, 3, 2, 0, 1, 3, 3, 1, 2, 2, 2, 2, 0, 3, 1, 2, 0, 1, 0, 1, 1 };
|
|
|
|
return DeBruijnBytePos[((U32)((val & -val) * 0x077CB531U)) >> 27];
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-01-10 20:03:01 +00:00
|
|
|
inline static int LZ4_NbCommonBytes_BigEndian (register U32 val)
|
|
|
|
{
|
|
|
|
#if defined(_MSC_VER) && !defined(_FORCE_SW_BITCOUNT)
|
|
|
|
unsigned long r = 0;
|
|
|
|
_BitScanReverse( &r, val );
|
|
|
|
return (int)(r>>3);
|
2012-01-13 19:44:18 +00:00
|
|
|
#elif defined(__GNUC__) && !defined(_FORCE_SW_BITCOUNT)
|
2012-01-10 20:03:01 +00:00
|
|
|
return (__builtin_clz(val) >> 3);
|
|
|
|
#else
|
|
|
|
int r;
|
|
|
|
if (!(val>>16)) { r=2; val>>=8; } else { r=0; val>>=24; }
|
|
|
|
r += (!val);
|
|
|
|
return r;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2012-01-13 19:44:18 +00:00
|
|
|
#endif
|
|
|
|
|
2012-01-04 13:08:10 +00:00
|
|
|
|
2012-01-09 23:21:05 +00:00
|
|
|
//******************************
|
|
|
|
// Public Compression functions
|
|
|
|
//******************************
|
2012-01-14 17:17:12 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
int LZ4_compressCtx(void** ctx,
|
|
|
|
char* source,
|
|
|
|
char* dest,
|
|
|
|
int isize)
|
|
|
|
{
|
2011-09-21 11:45:00 +00:00
|
|
|
#if HEAPMODE
|
2011-04-24 14:16:00 +00:00
|
|
|
struct refTables *srt = (struct refTables *) (*ctx);
|
2012-01-14 17:17:12 +00:00
|
|
|
HTYPE* HashTable;
|
2011-09-20 10:01:23 +00:00
|
|
|
#else
|
2012-01-14 17:17:12 +00:00
|
|
|
HTYPE HashTable[HASHTABLESIZE] = {0};
|
2011-09-20 10:01:23 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
const BYTE* ip = (BYTE*) source;
|
2012-01-14 17:17:12 +00:00
|
|
|
INITBASE(base);
|
2011-09-13 22:55:49 +00:00
|
|
|
const BYTE* anchor = ip;
|
|
|
|
const BYTE* const iend = ip + isize;
|
2011-09-23 22:27:08 +00:00
|
|
|
const BYTE* const mflimit = iend - MFLIMIT;
|
|
|
|
#define matchlimit (iend - LASTLITERALS)
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
BYTE* op = (BYTE*) dest;
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
int len, length;
|
|
|
|
const int skipStrength = SKIPSTRENGTH;
|
2011-09-15 21:37:09 +00:00
|
|
|
U32 forwardH;
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Init
|
2011-09-22 13:11:17 +00:00
|
|
|
if (isize<MINLENGTH) goto _last_literals;
|
2011-09-21 11:45:00 +00:00
|
|
|
#if HEAPMODE
|
2011-04-24 14:16:00 +00:00
|
|
|
if (*ctx == NULL)
|
|
|
|
{
|
|
|
|
srt = (struct refTables *) malloc ( sizeof(struct refTables) );
|
|
|
|
*ctx = (void*) srt;
|
|
|
|
}
|
2012-01-14 17:17:12 +00:00
|
|
|
HashTable = (HTYPE*)(srt->hashTable);
|
2011-09-15 21:37:09 +00:00
|
|
|
memset((void*)HashTable, 0, sizeof(srt->hashTable));
|
2011-09-21 11:45:00 +00:00
|
|
|
#else
|
|
|
|
(void) ctx;
|
2011-09-20 10:01:23 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
|
2011-09-15 21:37:09 +00:00
|
|
|
// First Byte
|
2012-01-14 17:17:12 +00:00
|
|
|
HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
|
2011-09-23 22:27:08 +00:00
|
|
|
ip++; forwardH = LZ4_HASH_VALUE(ip);
|
2011-09-15 21:37:09 +00:00
|
|
|
|
|
|
|
// Main Loop
|
2011-09-20 10:01:23 +00:00
|
|
|
for ( ; ; )
|
|
|
|
{
|
2011-09-21 11:45:00 +00:00
|
|
|
int findMatchAttempts = (1U << skipStrength) + 3;
|
2011-09-20 10:01:23 +00:00
|
|
|
const BYTE* forwardIp = ip;
|
|
|
|
const BYTE* ref;
|
2011-09-23 22:27:08 +00:00
|
|
|
BYTE* token;
|
2011-09-20 10:01:23 +00:00
|
|
|
|
2011-09-15 21:37:09 +00:00
|
|
|
// Find a match
|
2011-09-20 10:01:23 +00:00
|
|
|
do {
|
|
|
|
U32 h = forwardH;
|
2011-09-21 11:45:00 +00:00
|
|
|
int step = findMatchAttempts++ >> skipStrength;
|
2011-09-20 10:01:23 +00:00
|
|
|
ip = forwardIp;
|
2011-09-21 11:45:00 +00:00
|
|
|
forwardIp = ip + step;
|
2011-09-20 10:01:23 +00:00
|
|
|
|
2011-09-23 22:27:08 +00:00
|
|
|
if (forwardIp > mflimit) { goto _last_literals; }
|
2011-09-15 21:37:09 +00:00
|
|
|
|
2011-09-23 22:27:08 +00:00
|
|
|
forwardH = LZ4_HASH_VALUE(forwardIp);
|
2012-01-14 17:17:12 +00:00
|
|
|
ref = base + HashTable[h];
|
|
|
|
HashTable[h] = ip - base;
|
2011-09-20 10:01:23 +00:00
|
|
|
|
2011-09-27 11:59:58 +00:00
|
|
|
} while ((ref < ip - MAX_DISTANCE) || (A32(ref) != A32(ip)));
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-06-05 21:23:42 +00:00
|
|
|
// Catch up
|
2011-09-03 12:43:13 +00:00
|
|
|
while ((ip>anchor) && (ref>(BYTE*)source) && (ip[-1]==ref[-1])) { ip--; ref--; }
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// Encode Literal length
|
2011-06-05 21:23:42 +00:00
|
|
|
length = ip - anchor;
|
2011-09-21 11:45:00 +00:00
|
|
|
token = op++;
|
|
|
|
if (length>=(int)RUN_MASK) { *token=(RUN_MASK<<ML_BITS); len = length-RUN_MASK; for(; len > 254 ; len-=255) *op++ = 255; *op++ = (BYTE)len; }
|
|
|
|
else *token = (length<<ML_BITS);
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// Copy Literals
|
2011-09-23 22:27:08 +00:00
|
|
|
LZ4_BLINDCOPY(anchor, op, length);
|
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
_next_match:
|
2011-04-24 14:16:00 +00:00
|
|
|
// Encode Offset
|
2012-01-09 23:21:05 +00:00
|
|
|
LZ4_WRITE_LITTLEENDIAN_16(op,ip-ref);
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// Start Counting
|
2011-06-07 17:57:25 +00:00
|
|
|
ip+=MINMATCH; ref+=MINMATCH; // MinMatch verified
|
2011-04-24 14:16:00 +00:00
|
|
|
anchor = ip;
|
2012-01-13 19:44:18 +00:00
|
|
|
while (ip<matchlimit-(STEPSIZE-1))
|
2011-06-05 21:23:42 +00:00
|
|
|
{
|
2012-01-13 19:44:18 +00:00
|
|
|
UARCH diff = AARCH(ref) ^ AARCH(ip);
|
|
|
|
if (!diff) { ip+=STEPSIZE; ref+=STEPSIZE; continue; }
|
2012-01-10 20:03:01 +00:00
|
|
|
ip += LZ4_NbCommonBytes(diff);
|
2011-11-21 23:56:21 +00:00
|
|
|
goto _endCount;
|
2011-06-05 21:23:42 +00:00
|
|
|
}
|
2012-01-13 19:44:18 +00:00
|
|
|
if (ARCH64) if ((ip<(matchlimit-3)) && (A32(ref) == A32(ip))) { ip+=4; ref+=4; }
|
2011-11-21 23:56:21 +00:00
|
|
|
if ((ip<(matchlimit-1)) && (A16(ref) == A16(ip))) { ip+=2; ref+=2; }
|
|
|
|
if ((ip<matchlimit) && (*ref == *ip)) ip++;
|
|
|
|
_endCount:
|
2012-01-14 17:17:12 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
// Encode MatchLength
|
2012-01-04 13:08:10 +00:00
|
|
|
len = (ip - anchor);
|
2011-09-21 11:45:00 +00:00
|
|
|
if (len>=(int)ML_MASK) { *token+=ML_MASK; len-=ML_MASK; for(; len > 509 ; len-=510) { *op++ = 255; *op++ = 255; } if (len > 254) { len-=255; *op++ = 255; } *op++ = (BYTE)len; }
|
|
|
|
else *token += len;
|
2011-09-13 22:55:49 +00:00
|
|
|
|
|
|
|
// Test end of chunk
|
2011-09-23 22:27:08 +00:00
|
|
|
if (ip > mflimit) { anchor = ip; break; }
|
2011-09-13 22:55:49 +00:00
|
|
|
|
2011-09-29 20:28:37 +00:00
|
|
|
// Fill table
|
2012-01-14 17:17:12 +00:00
|
|
|
HashTable[LZ4_HASH_VALUE(ip-2)] = ip - 2 - base;
|
2011-09-29 20:28:37 +00:00
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
// Test next position
|
2012-01-14 17:17:12 +00:00
|
|
|
ref = base + HashTable[LZ4_HASH_VALUE(ip)];
|
|
|
|
HashTable[LZ4_HASH_VALUE(ip)] = ip - base;
|
2011-09-27 11:59:58 +00:00
|
|
|
if ((ref > ip - (MAX_DISTANCE + 1)) && (A32(ref) == A32(ip))) { token = op++; *token=0; goto _next_match; }
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// Prepare next loop
|
2011-09-13 22:55:49 +00:00
|
|
|
anchor = ip++;
|
2011-09-23 22:27:08 +00:00
|
|
|
forwardH = LZ4_HASH_VALUE(ip);
|
2011-04-24 14:16:00 +00:00
|
|
|
}
|
|
|
|
|
2011-09-15 21:37:09 +00:00
|
|
|
_last_literals:
|
2011-04-24 14:16:00 +00:00
|
|
|
// Encode Last Literals
|
2011-06-04 17:15:43 +00:00
|
|
|
{
|
2011-09-23 22:27:08 +00:00
|
|
|
int lastRun = iend - anchor;
|
|
|
|
if (lastRun>=(int)RUN_MASK) { *op++=(RUN_MASK<<ML_BITS); lastRun-=RUN_MASK; for(; lastRun > 254 ; lastRun-=255) *op++ = 255; *op++ = (BYTE) lastRun; }
|
|
|
|
else *op++ = (lastRun<<ML_BITS);
|
|
|
|
memcpy(op, anchor, iend - anchor);
|
|
|
|
op += iend-anchor;
|
2011-09-22 13:11:17 +00:00
|
|
|
}
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// End
|
2011-05-20 19:54:28 +00:00
|
|
|
return (int) (((char*)op)-dest);
|
2011-04-24 14:16:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-13 22:55:49 +00:00
|
|
|
|
2011-09-29 20:28:37 +00:00
|
|
|
// Note : this function is valid only if isize < LZ4_64KLIMIT
|
2012-01-14 17:17:12 +00:00
|
|
|
#define LZ4_64KLIMIT ((1<<16) + (MFLIMIT-1))
|
2011-09-29 20:28:37 +00:00
|
|
|
#define HASHLOG64K (HASH_LOG+1)
|
2012-01-14 17:17:12 +00:00
|
|
|
#define HASH64KTABLESIZE (1U<<HASHLOG64K)
|
2011-09-29 20:28:37 +00:00
|
|
|
#define LZ4_HASH64K_FUNCTION(i) (((i) * 2654435761U) >> ((MINMATCH*8)-HASHLOG64K))
|
|
|
|
#define LZ4_HASH64K_VALUE(p) LZ4_HASH64K_FUNCTION(A32(p))
|
|
|
|
int LZ4_compress64kCtx(void** ctx,
|
|
|
|
char* source,
|
|
|
|
char* dest,
|
|
|
|
int isize)
|
|
|
|
{
|
|
|
|
#if HEAPMODE
|
|
|
|
struct refTables *srt = (struct refTables *) (*ctx);
|
|
|
|
U16* HashTable;
|
|
|
|
#else
|
2012-01-14 17:17:12 +00:00
|
|
|
U16 HashTable[HASH64KTABLESIZE] = {0};
|
2011-09-29 20:28:37 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const BYTE* ip = (BYTE*) source;
|
|
|
|
const BYTE* anchor = ip;
|
|
|
|
const BYTE* const base = ip;
|
|
|
|
const BYTE* const iend = ip + isize;
|
|
|
|
const BYTE* const mflimit = iend - MFLIMIT;
|
|
|
|
#define matchlimit (iend - LASTLITERALS)
|
|
|
|
|
|
|
|
BYTE* op = (BYTE*) dest;
|
|
|
|
|
|
|
|
int len, length;
|
|
|
|
const int skipStrength = SKIPSTRENGTH;
|
|
|
|
U32 forwardH;
|
|
|
|
|
|
|
|
|
|
|
|
// Init
|
|
|
|
if (isize<MINLENGTH) goto _last_literals;
|
|
|
|
#if HEAPMODE
|
|
|
|
if (*ctx == NULL)
|
|
|
|
{
|
|
|
|
srt = (struct refTables *) malloc ( sizeof(struct refTables) );
|
|
|
|
*ctx = (void*) srt;
|
|
|
|
}
|
|
|
|
HashTable = (U16*)(srt->hashTable);
|
|
|
|
memset((void*)HashTable, 0, sizeof(srt->hashTable));
|
|
|
|
#else
|
|
|
|
(void) ctx;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
// First Byte
|
|
|
|
ip++; forwardH = LZ4_HASH64K_VALUE(ip);
|
|
|
|
|
|
|
|
// Main Loop
|
|
|
|
for ( ; ; )
|
|
|
|
{
|
|
|
|
int findMatchAttempts = (1U << skipStrength) + 3;
|
|
|
|
const BYTE* forwardIp = ip;
|
|
|
|
const BYTE* ref;
|
|
|
|
BYTE* token;
|
|
|
|
|
|
|
|
// Find a match
|
|
|
|
do {
|
|
|
|
U32 h = forwardH;
|
|
|
|
int step = findMatchAttempts++ >> skipStrength;
|
|
|
|
ip = forwardIp;
|
|
|
|
forwardIp = ip + step;
|
|
|
|
|
|
|
|
if (forwardIp > mflimit) { goto _last_literals; }
|
|
|
|
|
|
|
|
forwardH = LZ4_HASH64K_VALUE(forwardIp);
|
|
|
|
ref = base + HashTable[h];
|
|
|
|
HashTable[h] = ip - base;
|
|
|
|
|
|
|
|
} while (A32(ref) != A32(ip));
|
|
|
|
|
|
|
|
// Catch up
|
|
|
|
while ((ip>anchor) && (ref>(BYTE*)source) && (ip[-1]==ref[-1])) { ip--; ref--; }
|
|
|
|
|
|
|
|
// Encode Literal length
|
|
|
|
length = ip - anchor;
|
|
|
|
token = op++;
|
|
|
|
if (length>=(int)RUN_MASK) { *token=(RUN_MASK<<ML_BITS); len = length-RUN_MASK; for(; len > 254 ; len-=255) *op++ = 255; *op++ = (BYTE)len; }
|
|
|
|
else *token = (length<<ML_BITS);
|
|
|
|
|
|
|
|
// Copy Literals
|
|
|
|
LZ4_BLINDCOPY(anchor, op, length);
|
|
|
|
|
|
|
|
_next_match:
|
|
|
|
// Encode Offset
|
2012-01-09 23:21:05 +00:00
|
|
|
LZ4_WRITE_LITTLEENDIAN_16(op,ip-ref);
|
2011-09-29 20:28:37 +00:00
|
|
|
|
|
|
|
// Start Counting
|
|
|
|
ip+=MINMATCH; ref+=MINMATCH; // MinMatch verified
|
|
|
|
anchor = ip;
|
2012-01-13 19:44:18 +00:00
|
|
|
while (ip<matchlimit-(STEPSIZE-1))
|
2011-09-29 20:28:37 +00:00
|
|
|
{
|
2012-01-13 19:44:18 +00:00
|
|
|
UARCH diff = AARCH(ref) ^ AARCH(ip);
|
|
|
|
if (!diff) { ip+=STEPSIZE; ref+=STEPSIZE; continue; }
|
2012-01-10 20:03:01 +00:00
|
|
|
ip += LZ4_NbCommonBytes(diff);
|
2011-09-29 20:28:37 +00:00
|
|
|
goto _endCount;
|
|
|
|
}
|
2012-01-13 19:44:18 +00:00
|
|
|
if (ARCH64) if ((ip<(matchlimit-3)) && (A32(ref) == A32(ip))) { ip+=4; ref+=4; }
|
2011-09-29 20:28:37 +00:00
|
|
|
if ((ip<(matchlimit-1)) && (A16(ref) == A16(ip))) { ip+=2; ref+=2; }
|
|
|
|
if ((ip<matchlimit) && (*ref == *ip)) ip++;
|
|
|
|
_endCount:
|
|
|
|
|
|
|
|
// Encode MatchLength
|
2012-01-04 13:08:10 +00:00
|
|
|
len = (ip - anchor);
|
2011-09-29 20:28:37 +00:00
|
|
|
if (len>=(int)ML_MASK) { *token+=ML_MASK; len-=ML_MASK; for(; len > 509 ; len-=510) { *op++ = 255; *op++ = 255; } if (len > 254) { len-=255; *op++ = 255; } *op++ = (BYTE)len; }
|
|
|
|
else *token += len;
|
|
|
|
|
|
|
|
// Test end of chunk
|
|
|
|
if (ip > mflimit) { anchor = ip; break; }
|
|
|
|
|
2012-01-04 13:08:10 +00:00
|
|
|
// Fill table
|
|
|
|
HashTable[LZ4_HASH64K_VALUE(ip-2)] = ip - 2 - base;
|
|
|
|
|
2011-09-29 20:28:37 +00:00
|
|
|
// Test next position
|
|
|
|
ref = base + HashTable[LZ4_HASH64K_VALUE(ip)];
|
|
|
|
HashTable[LZ4_HASH64K_VALUE(ip)] = ip - base;
|
2011-11-17 23:07:28 +00:00
|
|
|
if (A32(ref) == A32(ip)) { token = op++; *token=0; goto _next_match; }
|
2011-09-29 20:28:37 +00:00
|
|
|
|
|
|
|
// Prepare next loop
|
|
|
|
anchor = ip++;
|
|
|
|
forwardH = LZ4_HASH64K_VALUE(ip);
|
|
|
|
}
|
|
|
|
|
|
|
|
_last_literals:
|
|
|
|
// Encode Last Literals
|
|
|
|
{
|
|
|
|
int lastRun = iend - anchor;
|
|
|
|
if (lastRun>=(int)RUN_MASK) { *op++=(RUN_MASK<<ML_BITS); lastRun-=RUN_MASK; for(; lastRun > 254 ; lastRun-=255) *op++ = 255; *op++ = (BYTE) lastRun; }
|
|
|
|
else *op++ = (lastRun<<ML_BITS);
|
|
|
|
memcpy(op, anchor, iend - anchor);
|
|
|
|
op += iend-anchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
// End
|
|
|
|
return (int) (((char*)op)-dest);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-13 18:19:42 +00:00
|
|
|
int LZ4_compress(char* source,
|
|
|
|
char* dest,
|
|
|
|
int isize)
|
|
|
|
{
|
2011-09-21 11:45:00 +00:00
|
|
|
#if HEAPMODE
|
2011-09-13 18:19:42 +00:00
|
|
|
void* ctx = malloc(sizeof(struct refTables));
|
2011-09-29 20:28:37 +00:00
|
|
|
int result;
|
|
|
|
if (isize < LZ4_64KLIMIT)
|
|
|
|
result = LZ4_compress64kCtx(&ctx, source, dest, isize);
|
|
|
|
else result = LZ4_compressCtx(&ctx, source, dest, isize);
|
2011-09-13 18:19:42 +00:00
|
|
|
free(ctx);
|
|
|
|
return result;
|
2011-09-20 10:01:23 +00:00
|
|
|
#else
|
2011-09-29 20:28:37 +00:00
|
|
|
if (isize < (int)LZ4_64KLIMIT) return LZ4_compress64kCtx(NULL, source, dest, isize);
|
2011-09-20 10:01:23 +00:00
|
|
|
return LZ4_compressCtx(NULL, source, dest, isize);
|
|
|
|
#endif
|
2011-09-13 18:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-09-20 10:01:23 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
//****************************
|
2012-01-10 20:03:01 +00:00
|
|
|
// Decompression functions
|
2011-04-24 14:16:00 +00:00
|
|
|
//****************************
|
2011-09-03 12:43:13 +00:00
|
|
|
|
|
|
|
// Note : The decoding functions LZ4_uncompress() and LZ4_uncompress_unknownOutputSize()
|
2012-01-09 23:21:05 +00:00
|
|
|
// are safe against "buffer overflow" attack type.
|
2012-01-10 20:03:01 +00:00
|
|
|
// They will never write nor read outside of the provided input and output buffers.
|
|
|
|
// A corrupted input will produce an error result, a negative int, indicating the position of the error within input stream.
|
2011-09-03 12:43:13 +00:00
|
|
|
|
2011-06-04 17:15:43 +00:00
|
|
|
int LZ4_uncompress(char* source,
|
2011-04-24 14:16:00 +00:00
|
|
|
char* dest,
|
2011-06-04 17:15:43 +00:00
|
|
|
int osize)
|
2011-04-24 14:16:00 +00:00
|
|
|
{
|
|
|
|
// Local Variables
|
2011-11-15 22:06:33 +00:00
|
|
|
const BYTE* restrict ip = (const BYTE*) source;
|
|
|
|
const BYTE* restrict ref;
|
2011-09-21 11:45:00 +00:00
|
|
|
|
2011-11-15 22:06:33 +00:00
|
|
|
BYTE* restrict op = (BYTE*) dest;
|
2011-09-23 22:27:08 +00:00
|
|
|
BYTE* const oend = op + osize;
|
2011-09-26 21:04:03 +00:00
|
|
|
BYTE* cpy;
|
2011-04-24 14:16:00 +00:00
|
|
|
|
2011-09-26 21:04:03 +00:00
|
|
|
BYTE token;
|
|
|
|
|
2011-09-26 21:15:24 +00:00
|
|
|
int len, length;
|
2012-01-10 20:03:01 +00:00
|
|
|
size_t dec[] ={0, 3, 2, 3, 0, 0, 0, 0};
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Main Loop
|
2011-06-04 17:15:43 +00:00
|
|
|
while (1)
|
2011-04-24 14:16:00 +00:00
|
|
|
{
|
|
|
|
// get runlength
|
2011-09-21 11:45:00 +00:00
|
|
|
token = *ip++;
|
2011-09-26 21:04:03 +00:00
|
|
|
if ((length=(token>>ML_BITS)) == RUN_MASK) { for (;(len=*ip++)==255;length+=255){} length += len; }
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// copy literals
|
2011-11-15 22:06:33 +00:00
|
|
|
cpy = op+length;
|
|
|
|
if (cpy>oend-COPYLENGTH)
|
2011-06-04 17:15:43 +00:00
|
|
|
{
|
2011-11-15 22:06:33 +00:00
|
|
|
if (cpy > oend) goto _output_error;
|
2011-09-23 22:27:08 +00:00
|
|
|
memcpy(op, ip, length);
|
2011-09-26 21:04:03 +00:00
|
|
|
ip += length;
|
2011-06-04 17:15:43 +00:00
|
|
|
break; // Necessarily EOF
|
|
|
|
}
|
2011-11-15 22:06:33 +00:00
|
|
|
LZ4_WILDCOPY(ip, op, cpy); ip -= (op-cpy); op = cpy;
|
2011-09-26 21:04:03 +00:00
|
|
|
|
2011-04-24 14:16:00 +00:00
|
|
|
// get offset
|
2012-01-09 23:21:05 +00:00
|
|
|
LZ4_READ_LITTLEENDIAN_16(ref,cpy,ip); ip+=2;
|
|
|
|
if (ref < (BYTE* const)dest) goto _output_error;
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// get matchlength
|
2011-09-21 11:45:00 +00:00
|
|
|
if ((length=(token&ML_MASK)) == ML_MASK) { for (;*ip==255;length+=255) {ip++;} length += *ip++; }
|
2011-04-24 14:16:00 +00:00
|
|
|
|
|
|
|
// copy repeated sequence
|
2012-01-13 19:44:18 +00:00
|
|
|
if (op-ref<STEPSIZE)
|
2012-01-09 23:21:05 +00:00
|
|
|
{
|
2012-01-10 20:03:01 +00:00
|
|
|
#if ARCH64
|
|
|
|
size_t dec2table[]={0, 4, 4, 3, 4, 5, 6, 7};
|
|
|
|
size_t dec2 = dec2table[op-ref];
|
2012-01-09 23:21:05 +00:00
|
|
|
#else
|
2012-01-13 19:44:18 +00:00
|
|
|
const int dec2 = 0;
|
2012-01-10 20:03:01 +00:00
|
|
|
#endif
|
2011-04-24 14:16:00 +00:00
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
2012-01-10 20:03:01 +00:00
|
|
|
ref -= dec[op-ref];
|
2012-01-13 19:44:18 +00:00
|
|
|
A32(op)=A32(ref); op += STEPSIZE-4; ref += STEPSIZE-4;
|
2012-01-10 20:03:01 +00:00
|
|
|
ref -= dec2;
|
|
|
|
} else { LZ4_COPYSTEP(ref,op); }
|
2012-01-13 19:44:18 +00:00
|
|
|
cpy = op + length - (STEPSIZE-4);
|
2012-01-09 23:21:05 +00:00
|
|
|
if (cpy>oend-COPYLENGTH)
|
2011-06-04 17:15:43 +00:00
|
|
|
{
|
2011-09-23 22:27:08 +00:00
|
|
|
if (cpy > oend) goto _output_error;
|
2012-01-10 20:03:01 +00:00
|
|
|
LZ4_WILDCOPY(ref, op, (oend-COPYLENGTH));
|
2011-09-23 22:27:08 +00:00
|
|
|
while(op<cpy) *op++=*ref++;
|
|
|
|
op=cpy;
|
|
|
|
if (op == oend) break; // Check EOF (should never happen, since last 5 bytes are supposed to be literals)
|
2011-06-04 17:15:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-01-10 20:03:01 +00:00
|
|
|
LZ4_WILDCOPY(ref, op, cpy);
|
2011-06-04 17:15:43 +00:00
|
|
|
op=cpy; // correction
|
|
|
|
}
|
|
|
|
|
|
|
|
// end of decoding
|
|
|
|
return (int) (((char*)ip)-source);
|
|
|
|
|
|
|
|
// write overflow error detected
|
|
|
|
_output_error:
|
|
|
|
return (int) (-(((char*)ip)-source));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LZ4_uncompress_unknownOutputSize(
|
|
|
|
char* source,
|
|
|
|
char* dest,
|
|
|
|
int isize,
|
|
|
|
int maxOutputSize)
|
|
|
|
{
|
|
|
|
// Local Variables
|
2011-11-15 22:06:33 +00:00
|
|
|
const BYTE* restrict ip = (const BYTE*) source;
|
2011-09-21 11:45:00 +00:00
|
|
|
const BYTE* const iend = ip + isize;
|
2011-11-15 22:06:33 +00:00
|
|
|
const BYTE* restrict ref;
|
2011-09-21 11:45:00 +00:00
|
|
|
|
2011-11-15 22:06:33 +00:00
|
|
|
BYTE* restrict op = (BYTE*) dest;
|
2011-09-21 11:45:00 +00:00
|
|
|
BYTE* const oend = op + maxOutputSize;
|
|
|
|
BYTE* cpy;
|
2011-06-04 17:15:43 +00:00
|
|
|
|
2011-09-21 11:45:00 +00:00
|
|
|
BYTE token;
|
2011-06-04 17:15:43 +00:00
|
|
|
|
2011-09-26 21:15:24 +00:00
|
|
|
int len, length;
|
2012-01-10 20:03:01 +00:00
|
|
|
size_t dec[] ={0, 3, 2, 3, 0, 0, 0, 0};
|
2011-06-04 17:15:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Main Loop
|
|
|
|
while (ip<iend)
|
|
|
|
{
|
|
|
|
// get runlength
|
2011-09-21 11:45:00 +00:00
|
|
|
token = *ip++;
|
|
|
|
if ((length=(token>>ML_BITS)) == RUN_MASK) { for (;(len=*ip++)==255;length+=255){} length += len; }
|
2011-06-04 17:15:43 +00:00
|
|
|
|
|
|
|
// copy literals
|
2011-11-15 22:06:33 +00:00
|
|
|
cpy = op+length;
|
|
|
|
if (cpy>oend-COPYLENGTH)
|
2011-06-04 17:15:43 +00:00
|
|
|
{
|
2011-11-15 22:06:33 +00:00
|
|
|
if (cpy > oend) goto _output_error;
|
2011-09-26 21:04:03 +00:00
|
|
|
memcpy(op, ip, length);
|
2011-10-26 20:15:33 +00:00
|
|
|
op += length;
|
2011-06-04 17:15:43 +00:00
|
|
|
break; // Necessarily EOF
|
|
|
|
}
|
2011-11-15 22:06:33 +00:00
|
|
|
LZ4_WILDCOPY(ip, op, cpy); ip -= (op-cpy); op = cpy;
|
2011-06-04 17:15:43 +00:00
|
|
|
if (ip>=iend) break; // check EOF
|
|
|
|
|
|
|
|
// get offset
|
2012-01-09 23:21:05 +00:00
|
|
|
LZ4_READ_LITTLEENDIAN_16(ref,cpy,ip); ip+=2;
|
2012-01-10 20:03:01 +00:00
|
|
|
if (ref < (BYTE* const)dest) goto _output_error;
|
|
|
|
|
2011-06-04 17:15:43 +00:00
|
|
|
// get matchlength
|
2011-09-21 11:45:00 +00:00
|
|
|
if ((length=(token&ML_MASK)) == ML_MASK) { for (;(len=*ip++)==255;length+=255){} length += len; }
|
2011-06-04 17:15:43 +00:00
|
|
|
|
|
|
|
// copy repeated sequence
|
2012-01-13 19:44:18 +00:00
|
|
|
if (op-ref<STEPSIZE)
|
2012-01-09 23:21:05 +00:00
|
|
|
{
|
2012-01-10 20:03:01 +00:00
|
|
|
#if ARCH64
|
|
|
|
size_t dec2table[]={0, 4, 4, 3, 4, 5, 6, 7};
|
|
|
|
size_t dec2 = dec2table[op-ref];
|
2012-01-09 23:21:05 +00:00
|
|
|
#else
|
2012-01-13 19:44:18 +00:00
|
|
|
const int dec2 = 0;
|
2012-01-10 20:03:01 +00:00
|
|
|
#endif
|
2011-06-04 17:15:43 +00:00
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
|
|
|
*op++ = *ref++;
|
2012-01-10 20:03:01 +00:00
|
|
|
ref -= dec[op-ref];
|
2012-01-13 19:44:18 +00:00
|
|
|
A32(op)=A32(ref); op += STEPSIZE-4; ref += STEPSIZE-4;
|
2012-01-10 20:03:01 +00:00
|
|
|
ref -= dec2;
|
|
|
|
} else { LZ4_COPYSTEP(ref,op); }
|
2012-01-13 19:44:18 +00:00
|
|
|
cpy = op + length - (STEPSIZE-4);
|
2011-09-26 21:04:03 +00:00
|
|
|
if (cpy>oend-COPYLENGTH)
|
2011-06-04 17:15:43 +00:00
|
|
|
{
|
2011-09-26 21:04:03 +00:00
|
|
|
if (cpy > oend) goto _output_error;
|
2012-01-10 20:03:01 +00:00
|
|
|
LZ4_WILDCOPY(ref, op, (oend-COPYLENGTH));
|
2011-06-04 17:15:43 +00:00
|
|
|
while(op<cpy) *op++=*ref++;
|
2011-09-26 21:04:03 +00:00
|
|
|
op=cpy;
|
|
|
|
if (op == oend) break; // Check EOF (should never happen, since last 5 bytes are supposed to be literals)
|
2011-06-04 17:15:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2012-01-10 20:03:01 +00:00
|
|
|
LZ4_WILDCOPY(ref, op, cpy);
|
2011-04-24 14:16:00 +00:00
|
|
|
op=cpy; // correction
|
|
|
|
}
|
|
|
|
|
|
|
|
// end of decoding
|
2011-05-20 19:54:28 +00:00
|
|
|
return (int) (((char*)op)-dest);
|
2011-06-04 17:15:43 +00:00
|
|
|
|
|
|
|
// write overflow error detected
|
|
|
|
_output_error:
|
|
|
|
return (int) (-(((char*)ip)-source));
|
2011-04-24 14:16:00 +00:00
|
|
|
}
|
|
|
|
|