| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| | |
|
| |
| |
| |
| |
| |
| | |
When using clang++ with std c++14 or c++17 you would get the error "an attribute list cannot appear here" when including "lz4.h" as the visibility attribute is before the c++ attribute.
This ensures that the [[deprecated]] c++ attribute is before everything
else in the function declarations.
|
|/
|
|
| |
to better reflect LZ4F API usage.
|
| |
|
|
|
|
|
|
|
| |
- Replace U+00A0 by space
- Fix build failure of archivers/py-borgbackup in FreeBSD
Reference: https://bugs.FreeBSD.org/225235
|
|
|
|
|
| |
ensure some strange jump cases are not possible
(they were already not possible, but static analyzer couldn't understand it).
|
|
|
|
|
| |
with an assert()
to help static analyzer understanding this condition.
|
|
|
|
|
|
| |
previous version used an intentional overflow,
which is defined since it uses unsigned type,
but static analyzer complain about it.
|
| |
|
| |
|
|\
| |
| | |
[lz4f] Skip memcpy() on empty dictionary
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In some contexts, *cough*like at facebook*cough*, dynamic linking is used in
contexts which aren't truly dynamic. That is, the guarantee is maintained that
a program will only ever execute against the library version it was compiled
to interact with.
For those situations, introduce a compile-time flag that overrides hiding
these unstable APIs in shared objects.
|
|\ \
| | |
| | | |
conditional pattern analysis
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Pattern analysis (currently limited to long ranges of identical bytes)
is actually detrimental to performance
when `nbSearches` is low.
Reason is : `nbSearches` provides a built-in protection for these cases.
The problem with patterns is that they dramatically increase the number of candidates to visit.
But with a low nbSearches, the match finder just aborts early.
In such cases, pattern analysis adds some complexity without reducing total nb of candidates.
It actually increases compression ratio a little bit, by filtering only "good" candidates,
but at a measurable speed cost, so it's not a good trade-off.
This patch makes pattern analysis optional.
It's enabled for levels 8+ only.
|
|/
|
|
| |
no longer limited to level 9
|
|
|
|
|
|
|
|
|
|
|
|
| |
lz4opt is only competitive vs lz4hc level 10.
Below that level, it doesn't match the speed / compression effectiveness of regular hc parser.
This patch propose to extend lz4opt to levels 10-12.
The new level 10 tend to compress a bit better and a bit faster than previous one (mileage vary depending on file)
The only downside is that `limitedDestSize` mode is now limited to max level 9 (vs 10),
since it's only compatible with regular HC parser.
(Note : I suspect it's possible to convert lz4opt to support it too, but haven't spent time into it).
|
|
|
|
|
| |
deprecated in newer C++ versions,
and dubious utility
|
|
|
|
|
| |
updated relevant doc.
This patch has no impact on ABI/API, nor on binary generation.
|
|\
| |
| | |
Improve Optimal parser
|
| | |
|
| |
| |
| |
| |
| | |
which is more explicit than its value `3`.
reported by @terrelln
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
for multi-bytes patterns
(which is not useful for the time being)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The first byte used to be skipped
to avoid a infinite self-comparison.
This is no longer necessary, since init() ensures that index starts at 64K.
The first byte is also useless to search when each block is independent,
but it's no longer the case when blocks are linked.
Removing the first-byte-skip saves
about 10 bytes / MB on files compressed with -BD4 (linked blocks 64Kb),
which feels correct as each MB has 16 blocks of 64KB.
|
| | |
|
| | |
|
| |
| |
| |
| | |
as reported by @terrelln
|
| |
| |
| |
| |
| | |
works for any repetitive pattern of length 1, 2 or 4 (but not 3!)
works for any endianess
|
| |
| |
| |
| |
| |
| |
| | |
- works with byte values other than `0`
- works for any repetitive pattern of length 1, 2 or 4 (but not 3!)
- works for little and big endian systems
- preserve speed of previous implementation
|
| |
| |
| |
| | |
dead assignment
|
| | |
|
| |
| |
| |
| |
| | |
LZ4_setCompressionLevel() can be users accross the whole range of HC levels
No more transition issue between Optimal and HC modes
|
| |
| |
| |
| | |
responsibility better handled one layer above (LZ4HC_compress_generic())
|
| |
| |
| |
| |
| | |
nbSearches now transmitted directly as function parameter
easier to track and debug
|
| |
| |
| |
| | |
levels 11+
|
| |
| |
| |
| |
| | |
saves stack space
clearer match finder interface (no more table to fill)
|
| |
| |
| |
| | |
used to be present for compatibility with binary tree matchfinder
|
| |
| |
| |
| | |
reduced size of LZ4HC state
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
improving speed
|
| | |
|
| |
| |
| |
| | |
tag interesting places
|
| |
| |
| |
| |
| | |
sometimes, it's better to re-use same match but start it later,
in order to get shorter matchlength code
|
| |
| |
| |
| |
| | |
even gained 2 bytes on calgary.tar...
added conditional traces `g_debuglog_enable`
|
| |
| |
| |
| |
| |
| |
| | |
previous strategy would leave a few "bad choices"
on the ground they would be fixed later,
but that requires passing through each position to make the fix
and cannot give the end position of the last useful match.
|