Update lzf to 3.2 fixes texturecache on 64 bit.

git-svn-id: https://svn.eduke32.com/eduke32@742 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
qbix79 2008-05-25 08:23:53 +00:00
parent 67e777a899
commit 43aa2bbc23
4 changed files with 337 additions and 258 deletions

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de>
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met: * tion, are permitted provided that the following conditions are met:
@ -11,9 +11,6 @@
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* *
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@ -26,14 +23,15 @@
* OF THE POSSIBILITY OF SUCH DAMAGE. * OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* Alternatively, the contents of this file may be used under the terms of * Alternatively, the contents of this file may be used under the terms of
* the GNU General Public License version 2 (the "GPL"), in which case the * the GNU General Public License ("GPL") version 2 or any later version,
* provisions of the GPL are applicable instead of the above. If you wish to * in which case the provisions of the GPL are applicable instead of
* allow the use of your version of this file only under the terms of the * the above. If you wish to allow the use of your version of this file
* GPL and not to allow others to use your version of this file under the * only under the terms of the GPL and not to allow others to use your
* BSD license, indicate your decision by deleting the provisions above and * version of this file under the BSD license, indicate your decision
* replace them with the notice and other provisions required by the GPL. If * by deleting the provisions above and replace them with the notice
* you do not delete the provisions above, a recipient may use your version * and other provisions required by the GPL. If you do not delete the
* of this file under either the BSD or the GPL. * provisions above, a recipient may use your version of this file under
* either the BSD or the GPL.
*/ */
#ifndef LZF_H #ifndef LZF_H
@ -62,7 +60,7 @@
* the data uncompressed otherwise. * the data uncompressed otherwise.
* *
* lzf_compress might use different algorithms on different systems and * lzf_compress might use different algorithms on different systems and
* even diferent runs, thus might result in different compressed strings * even different runs, thus might result in different compressed strings
* depending on the phase of the moon or similar factors. However, all * depending on the phase of the moon or similar factors. However, all
* these strings are architecture-independent and will result in the * these strings are architecture-independent and will result in the
* original data when decompressed using lzf_decompress. * original data when decompressed using lzf_decompress.

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de>
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met: * tion, are permitted provided that the following conditions are met:
@ -11,9 +11,6 @@
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* *
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@ -26,14 +23,15 @@
* OF THE POSSIBILITY OF SUCH DAMAGE. * OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* Alternatively, the contents of this file may be used under the terms of * Alternatively, the contents of this file may be used under the terms of
* the GNU General Public License version 2 (the "GPL"), in which case the * the GNU General Public License ("GPL") version 2 or any later version,
* provisions of the GPL are applicable instead of the above. If you wish to * in which case the provisions of the GPL are applicable instead of
* allow the use of your version of this file only under the terms of the * the above. If you wish to allow the use of your version of this file
* GPL and not to allow others to use your version of this file under the * only under the terms of the GPL and not to allow others to use your
* BSD license, indicate your decision by deleting the provisions above and * version of this file under the BSD license, indicate your decision
* replace them with the notice and other provisions required by the GPL. If * by deleting the provisions above and replace them with the notice
* you do not delete the provisions above, a recipient may use your version * and other provisions required by the GPL. If you do not delete the
* of this file under either the BSD or the GPL. * provisions above, a recipient may use your version of this file under
* either the BSD or the GPL.
*/ */
#ifndef LZFP_h #ifndef LZFP_h
@ -46,29 +44,28 @@
#endif #endif
/* /*
* size of hashtable is (1 << HLOG) * sizeof (char *) * Size of hashtable is (1 << HLOG) * sizeof (char *)
* decompression is independent of the hash table size * decompression is independent of the hash table size
* the difference between 15 and 14 is very small * the difference between 15 and 14 is very small
* for small blocks (and 14 is usually a but faster). * for small blocks (and 14 is usually a bit faster).
* For a low-memory/faster configuration, use HLOG == 13; * For a low-memory/faster configuration, use HLOG == 13;
* For best compression, use 15 or 16 (or more). * For best compression, use 15 or 16 (or more, up to 23).
*/ */
#ifndef HLOG #ifndef HLOG
# define HLOG 14 # define HLOG 16
#endif #endif
/* /*
* sacrifice very little compression quality in favour of compression speed. * Sacrifice very little compression quality in favour of compression speed.
* This gives almost the same compression as the default code, and is * This gives almost the same compression as the default code, and is
* (very roughly) 15% faster. This is the preferable mode of operation. * (very roughly) 15% faster. This is the preferred mode of operation.
*/ */
#ifndef VERY_FAST #ifndef VERY_FAST
# define VERY_FAST 1 # define VERY_FAST 1
#endif #endif
/* /*
* sacrifice some more compression quality in favour of compression speed. * Sacrifice some more compression quality in favour of compression speed.
* (roughly 1-2% worse compression for large blocks and * (roughly 1-2% worse compression for large blocks and
* 9-10% for small, redundant, blocks and >>20% better speed in both cases) * 9-10% for small, redundant, blocks and >>20% better speed in both cases)
* In short: when in need for speed, enable this for binary data, * In short: when in need for speed, enable this for binary data,
@ -79,30 +76,23 @@
#endif #endif
/* /*
* unconditionally aligning does not cost very much, so do it if unsure * Unconditionally aligning does not cost very much, so do it if unsure
*/ */
#ifndef STRICT_ALIGN #ifndef STRICT_ALIGN
# define STRICT_ALIGN !(defined(__i386) || defined (__amd64)) # define STRICT_ALIGN !(defined(__i386) || defined (__amd64))
#endif #endif
/* /*
* use string functions to copy memory. * You may choose to pre-set the hash table (might be faster on some
* this is usually a loss, even with glibc's optimized memcpy * modern cpus and large (>>64k) blocks, and also makes compression
*/ * deterministic/repeatable when the configuration otherwise is the same).
#ifndef USE_MEMCPY
# define USE_MEMCPY 0
#endif
/*
* you may choose to pre-set the hash table (might be faster on some
* modern cpus and large (>>64k) blocks)
*/ */
#ifndef INIT_HTAB #ifndef INIT_HTAB
# define INIT_HTAB 0 # define INIT_HTAB 0
#endif #endif
/* /*
* avoid assigning values to errno variable? for some embedding purposes * Avoid assigning values to errno variable? for some embedding purposes
* (linux kernel for example), this is neccessary. NOTE: this breaks * (linux kernel for example), this is neccessary. NOTE: this breaks
* the documentation in lzf.h. * the documentation in lzf.h.
*/ */
@ -119,6 +109,18 @@
# define LZF_STATE_ARG 0 # define LZF_STATE_ARG 0
#endif #endif
/*
* Wether to add extra checks for input validity in lzf_decompress
* and return EINVAL if the input stream has been corrupted. This
* only shields against overflowing the input buffer and will not
* detect most corrupted streams.
* This check is not normally noticable on modern hardware
* (<1% slowdown), but might slow down older cpus considerably.
*/
#ifndef CHECK_INPUT
# define CHECK_INPUT 1
#endif
/*****************************************************************************/ /*****************************************************************************/
/* nothing should be changed below */ /* nothing should be changed below */
@ -145,7 +147,7 @@ typedef const u8 *LZF_STATE[1 << (HLOG)];
# endif # endif
#endif #endif
#if USE_MEMCPY || INIT_HTAB #if INIT_HTAB
# ifdef __cplusplus # ifdef __cplusplus
# include <cstring> # include <cstring>
# else # else

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de>
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met: * tion, are permitted provided that the following conditions are met:
@ -11,9 +11,6 @@
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* *
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@ -26,14 +23,15 @@
* OF THE POSSIBILITY OF SUCH DAMAGE. * OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* Alternatively, the contents of this file may be used under the terms of * Alternatively, the contents of this file may be used under the terms of
* the GNU General Public License version 2 (the "GPL"), in which case the * the GNU General Public License ("GPL") version 2 or any later version,
* provisions of the GPL are applicable instead of the above. If you wish to * in which case the provisions of the GPL are applicable instead of
* allow the use of your version of this file only under the terms of the * the above. If you wish to allow the use of your version of this file
* GPL and not to allow others to use your version of this file under the * only under the terms of the GPL and not to allow others to use your
* BSD license, indicate your decision by deleting the provisions above and * version of this file under the BSD license, indicate your decision
* replace them with the notice and other provisions required by the GPL. If * by deleting the provisions above and replace them with the notice
* you do not delete the provisions above, a recipient may use your version * and other provisions required by the GPL. If you do not delete the
* of this file under either the BSD or the GPL. * provisions above, a recipient may use your version of this file under
* either the BSD or the GPL.
*/ */
#include "lzfP.h" #include "lzfP.h"
@ -49,12 +47,18 @@
#ifndef FRST #ifndef FRST
# define FRST(p) (((p[0]) << 8) | p[1]) # define FRST(p) (((p[0]) << 8) | p[1])
# define NEXT(v,p) (((v) << 8) | p[2]) # define NEXT(v,p) (((v) << 8) | p[2])
# if ULTRA_FAST
# define IDX(h) ((( h >> (3*8 - HLOG)) - h ) & (HSIZE - 1))
# elif VERY_FAST
# define IDX(h) ((( h >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
# else
# define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1)) # define IDX(h) ((((h ^ (h << 5)) >> (3*8 - HLOG)) - h*5) & (HSIZE - 1))
# endif # endif
#endif
/* /*
* IDX works because it is very similar to a multiplicative hash, e.g. * IDX works because it is very similar to a multiplicative hash, e.g.
* ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1)) * ((h * 57321 >> (3*8 - HLOG)) & (HSIZE - 1))
* the latter is also quite fast on newer CPUs, and sligthly better * the latter is also quite fast on newer CPUs, and compresses similarly.
* *
* the next one is also quite good, albeit slow ;) * the next one is also quite good, albeit slow ;)
* (int)(cos(h & 0xffffff) * 1e6) * (int)(cos(h & 0xffffff) * 1e6)
@ -71,6 +75,17 @@
#define MAX_OFF (1 << 13) #define MAX_OFF (1 << 13)
#define MAX_REF ((1 << 8) + (1 << 3)) #define MAX_REF ((1 << 8) + (1 << 3))
#if __GNUC__ >= 3
# define expect(expr,value) __builtin_expect ((expr),(value))
# define inline inline
#else
# define expect(expr,value) (expr)
# define inline static
#endif
#define expect_false(expr) expect ((expr) != 0, 0)
#define expect_true(expr) expect ((expr) != 0, 1)
/* /*
* compressed format * compressed format
* *
@ -84,7 +99,7 @@ unsigned int
lzf_compress (const void *const in_data, unsigned int in_len, lzf_compress (const void *const in_data, unsigned int in_len,
void *out_data, unsigned int out_len void *out_data, unsigned int out_len
#if LZF_STATE_ARG #if LZF_STATE_ARG
, LZF_STATE *htab , LZF_STATE htab
#endif #endif
) )
{ {
@ -98,29 +113,43 @@ lzf_compress(const void *const in_data, unsigned int in_len,
u8 *out_end = op + out_len; u8 *out_end = op + out_len;
const u8 *ref; const u8 *ref;
unsigned int hval = FRST(ip); /* off requires a type wide enough to hold a general pointer difference.
unsigned int off; * ISO C doesn't have that (size_t might not be enough and ptrdiff_t only
int lit = 0; * works for differences within a single object). We also assume that no
* no bit pattern traps. Since the only platform that is both non-POSIX
* and fails to support both assumptions is windows 64 bit, we make a
* special workaround for it.
*/
#if defined (WIN32) && defined (_M_X64)
unsigned _int64 off; /* workaround for missing POSIX compliance */
#else
unsigned long off;
#endif
unsigned int hval;
int lit;
if (!in_len || !out_len)
return 0;
#if INIT_HTAB #if INIT_HTAB
# if USE_MEMCPY
memset (htab, 0, sizeof (htab)); memset (htab, 0, sizeof (htab));
# else # if 0
for (hslot = htab; hslot < htab + HSIZE; hslot++) for (hslot = htab; hslot < htab + HSIZE; hslot++)
*hslot++ = ip; *hslot++ = ip;
# endif # endif
#endif #endif
for (;;) lit = 0; op++; /* start run */
{
if (ip < in_end - 2) hval = FRST (ip);
while (ip < in_end - 2)
{ {
hval = NEXT (hval, ip); hval = NEXT (hval, ip);
hslot = htab + IDX (hval); hslot = htab + IDX (hval);
ref = *hslot; *hslot = ip; ref = *hslot; *hslot = ip;
if (1 if (1
#if INIT_HTAB && !USE_MEMCPY #if INIT_HTAB
&& ref < ip /* the next test will actually take care of this, but this is faster */ && ref < ip /* the next test will actually take care of this, but this is faster */
#endif #endif
&& (off = ip - ref - 1) < MAX_OFF && (off = ip - ref - 1) < MAX_OFF
@ -141,20 +170,42 @@ lzf_compress(const void *const in_data, unsigned int in_len,
unsigned int maxlen = in_end - ip - len; unsigned int maxlen = in_end - ip - len;
maxlen = maxlen > MAX_REF ? MAX_REF : maxlen; maxlen = maxlen > MAX_REF ? MAX_REF : maxlen;
if (op + lit + 1 + 3 >= out_end) op [- lit - 1] = lit - 1; /* stop run */
op -= !lit; /* undo run if length is zero */
if (expect_false (op + 3 + 1 >= out_end))
return 0; return 0;
for (;;)
{
if (expect_true (maxlen > 16))
{
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
len++; if (ref [len] != ip [len]) break;
}
do do
len++; len++;
while (len < maxlen && ref[len] == ip[len]); while (len < maxlen && ref[len] == ip[len]);
if (lit) break;
{
*op++ = lit - 1;
lit = -lit;
do
*op++ = ip[lit];
while (++lit);
} }
len -= 2; len -= 2;
@ -197,46 +248,42 @@ lzf_compress(const void *const in_data, unsigned int in_len,
} }
while (len--); while (len--);
#endif #endif
continue;
}
}
else if (ip == in_end)
break;
lit = 0; op++; /* start run */
}
else
{
/* one more literal byte we must copy */ /* one more literal byte we must copy */
lit++; if (expect_false (op >= out_end))
ip++;
if (lit == MAX_LIT)
{
if (op + 1 + MAX_LIT >= out_end)
return 0; return 0;
*op++ = MAX_LIT - 1; lit++; *op++ = *ip++;
#if USE_MEMCPY
memcpy(op, ip - MAX_LIT, MAX_LIT); if (expect_false (lit == MAX_LIT))
op += MAX_LIT; {
lit = 0; op [- lit - 1] = lit - 1; /* stop run */
#else lit = 0; op++; /* start run */
lit = -lit; }
do
*op++ = ip[lit];
while (++lit);
#endif
} }
} }
if (lit) if (op + 3 > out_end) /* at most 3 bytes can be missing here */
{
if (op + lit + 1 >= out_end)
return 0; return 0;
*op++ = lit - 1; while (ip < in_end)
lit = -lit; {
do lit++; *op++ = *ip++;
*op++ = ip[lit];
while (++lit); if (expect_false (lit == MAX_LIT))
{
op [- lit - 1] = lit - 1; /* stop run */
lit = 0; op++; /* start run */
} }
}
op [- lit - 1] = lit - 1; /* end run */
op -= !lit; /* undo run if length is zero */
return op - (u8 *)out_data; return op - (u8 *)out_data;
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2005 Marc Alexander Lehmann <schmorp@schmorp.de> * Copyright (c) 2000-2007 Marc Alexander Lehmann <schmorp@schmorp.de>
* *
* Redistribution and use in source and binary forms, with or without modifica- * Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met: * tion, are permitted provided that the following conditions are met:
@ -11,9 +11,6 @@
* notice, this list of conditions and the following disclaimer in the * notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution. * documentation and/or other materials provided with the distribution.
* *
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER- * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MER-
* CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO * CHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
@ -26,14 +23,15 @@
* OF THE POSSIBILITY OF SUCH DAMAGE. * OF THE POSSIBILITY OF SUCH DAMAGE.
* *
* Alternatively, the contents of this file may be used under the terms of * Alternatively, the contents of this file may be used under the terms of
* the GNU General Public License version 2 (the "GPL"), in which case the * the GNU General Public License ("GPL") version 2 or any later version,
* provisions of the GPL are applicable instead of the above. If you wish to * in which case the provisions of the GPL are applicable instead of
* allow the use of your version of this file only under the terms of the * the above. If you wish to allow the use of your version of this file
* GPL and not to allow others to use your version of this file under the * only under the terms of the GPL and not to allow others to use your
* BSD license, indicate your decision by deleting the provisions above and * version of this file under the BSD license, indicate your decision
* replace them with the notice and other provisions required by the GPL. If * by deleting the provisions above and replace them with the notice
* you do not delete the provisions above, a recipient may use your version * and other provisions required by the GPL. If you do not delete the
* of this file under either the BSD or the GPL. * provisions above, a recipient may use your version of this file under
* either the BSD or the GPL.
*/ */
#include "lzfP.h" #include "lzfP.h"
@ -45,6 +43,13 @@
# define SET_ERRNO(n) errno = (n) # define SET_ERRNO(n) errno = (n)
#endif #endif
#if (__i386 || __amd64) && __GNUC__ >= 3
# define lzf_movsb(dst, src, len) \
asm ("rep movsb" \
: "=D" (dst), "=S" (src), "=c" (len) \
: "0" (dst), "1" (src), "2" (len));
#endif
unsigned int unsigned int
lzf_decompress (const void *const in_data, unsigned int in_len, lzf_decompress (const void *const in_data, unsigned int in_len,
void *out_data, unsigned int out_len) void *out_data, unsigned int out_len)
@ -68,10 +73,16 @@ lzf_decompress(const void *const in_data, unsigned int in_len,
return 0; return 0;
} }
#if USE_MEMCPY #if CHECK_INPUT
memcpy(op, ip, ctrl); if (ip + ctrl > in_end)
op += ctrl; {
ip += ctrl; SET_ERRNO (EINVAL);
return 0;
}
#endif
#ifdef lzf_movsb
lzf_movsb (op, ip, ctrl);
#else #else
do do
*op++ = *ip++; *op++ = *ip++;
@ -84,8 +95,24 @@ lzf_decompress(const void *const in_data, unsigned int in_len,
u8 *ref = op - ((ctrl & 0x1f) << 8) - 1; u8 *ref = op - ((ctrl & 0x1f) << 8) - 1;
#if CHECK_INPUT
if (ip >= in_end)
{
SET_ERRNO (EINVAL);
return 0;
}
#endif
if (len == 7) if (len == 7)
{
len += *ip++; len += *ip++;
#if CHECK_INPUT
if (ip >= in_end)
{
SET_ERRNO (EINVAL);
return 0;
}
#endif
}
ref -= *ip++; ref -= *ip++;
@ -101,15 +128,20 @@ lzf_decompress(const void *const in_data, unsigned int in_len,
return 0; return 0;
} }
#ifdef lzf_movsb
len += 2;
lzf_movsb (op, ref, len);
#else
*op++ = *ref++; *op++ = *ref++;
*op++ = *ref++; *op++ = *ref++;
do do
*op++ = *ref++; *op++ = *ref++;
while (--len); while (--len);
#endif
} }
} }
while (op < out_end && ip < in_end); while (ip < in_end);
return op - (u8 *)out_data; return op - (u8 *)out_data;
} }