aboutsummaryrefslogtreecommitdiff
path: root/DOC/lzma.txt
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--DOC/lzma.txt43
1 files changed, 30 insertions, 13 deletions
diff --git a/DOC/lzma.txt b/DOC/lzma.txt
index a65988f..142feb1 100644
--- a/DOC/lzma.txt
+++ b/DOC/lzma.txt
@@ -1,6 +1,6 @@
1LZMA compression 1LZMA compression
2---------------- 2----------------
3Version: 9.35 3Version: 23.01
4 4
5This file describes LZMA encoding and decoding functions written in C language. 5This file describes LZMA encoding and decoding functions written in C language.
6 6
@@ -169,12 +169,14 @@ How To compress data
169Compile files: 169Compile files:
170 7zTypes.h 170 7zTypes.h
171 Threads.h 171 Threads.h
172 Threads.c
172 LzmaEnc.h 173 LzmaEnc.h
173 LzmaEnc.c 174 LzmaEnc.c
174 LzFind.h 175 LzFind.h
175 LzFind.c 176 LzFind.c
176 LzFindMt.h 177 LzFindMt.h
177 LzFindMt.c 178 LzFindMt.c
179 LzFindOpt.c
178 LzHash.h 180 LzHash.h
179 181
180Memory Requirements: 182Memory Requirements:
@@ -283,17 +285,26 @@ Return code:
283Defines 285Defines
284------- 286-------
285 287
286_LZMA_SIZE_OPT - Enable some optimizations in LZMA Decoder to get smaller executable code. 288Z7_LZMA_SIZE_OPT - Enable some code size optimizations in LZMA Decoder to get smaller executable code.
287 289
288_LZMA_PROB32 - It can increase the speed on some 32-bit CPUs, but memory usage for 290Z7_LZMA_PROB32 - It can increase the speed on some 32-bit CPUs, but memory usage for
289 some structures will be doubled in that case. 291 some structures will be doubled in that case.
290 292
291_LZMA_UINT32_IS_ULONG - Define it if int is 16-bit on your compiler and long is 32-bit. 293Z7_DECL_Int32_AS_long - Define it if int is 16-bit on your compiler and long is 32-bit.
292 294
293_LZMA_NO_SYSTEM_SIZE_T - Define it if you don't want to use size_t type. 295Z7_DECL_SizeT_AS_unsigned_int - Define it if you don't want to use size_t type.
294 296
295 297
296_7ZIP_PPMD_SUPPPORT - Define it if you don't want to support PPMD method in AMSI-C .7z decoder. 298Defines for 7z decoder written in C
299-----------------------------------
300These defines are for 7zDec.c only (the decoder in C).
301C++ 7z decoder doesn't uses these macros.
302
303Z7_PPMD_SUPPORT - define it if you need PPMD method support.
304Z7_NO_METHODS_FILTERS - do not use filters (except of BCJ2 filter).
305Z7_USE_NATIVE_BRANCH_FILTER - use filter for native ISA:
306 use x86 filter, if compiled to x86 executable,
307 use arm64 filter, if compiled to arm64 executable.
297 308
298 309
299C++ LZMA Encoder/Decoder 310C++ LZMA Encoder/Decoder
@@ -305,20 +316,26 @@ C++ LZMA code is just wrapper over ANSI-C code.
305 316
306C++ Notes 317C++ Notes
307~~~~~~~~~~~~~~~~~~~~~~~~ 318~~~~~~~~~~~~~~~~~~~~~~~~
308If you use some C++ code folders in 7-Zip (for example, C++ code for .7z handling), 319If you use some C++ code folders in 7-Zip (for example, C++ code for 7z archive handling),
309you must check that you correctly work with "new" operator. 320you must check that you correctly work with "new" operator.
3107-Zip can be compiled with MSVC 6.0 that doesn't throw "exception" from "new" operator. 3217-Zip can be compiled with MSVC 6.0 that doesn't throw "exception" from "new" operator.
311So 7-Zip uses "CPP\Common\NewHandler.cpp" that redefines "new" operator: 322So 7-Zip uses "CPP\Common\NewHandler.cpp" that redefines "new" operator,
323if compiled by old MSVC compilers (MSVC before version VS 2010):
324
312operator new(size_t size) 325operator new(size_t size)
313{ 326{
314 void *p = ::malloc(size); 327 void *p = ::malloc(size);
315 if (p == 0) 328 if (!p)
316 throw CNewException(); 329 throw CNewException();
317 return p; 330 return p;
318} 331}
319If you use MSCV that throws exception for "new" operator, you can compile without 332
320"NewHandler.cpp". So standard exception will be used. Actually some code of 333If the compiler is VS 2010 or newer, NewHandler.cpp doesn't redefine "new" operator.
3217-Zip catches any exception in internal code and converts it to HRESULT code. 334Sp if you use new compiler (VS 2010 or newer), you still can include "NewHandler.cpp"
335to compilation, and it will not redefine operator new.
336Also you can compile without "NewHandler.cpp" with new compilers.
337If 7-zip doesn't redefine operator "new", standard exception will be used instead of CNewException.
338Some code of 7-Zip catches any exception in internal code and converts it to HRESULT code.
322So you don't need to catch CNewException, if you call COM interfaces of 7-Zip. 339So you don't need to catch CNewException, if you call COM interfaces of 7-Zip.
323 340
324--- 341---