[coreboot-gerrit] New patch to review for coreboot: a381b9f cbfstool/lzma: Remove code which depends on commented out defines

Alexandru Gagniuc (mr.nuke.me@gmail.com) gerrit at coreboot.org
Thu Jan 30 00:08:09 CET 2014


Alexandru Gagniuc (mr.nuke.me at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5084

-gerrit

commit a381b9f62b655905b6c28869329e431399e35638
Author: Alexandru Gagniuc <mr.nuke.me at gmail.com>
Date:   Wed Jan 29 16:55:48 2014 -0600

    cbfstool/lzma: Remove code which depends on commented out defines
    
    These options seem to control the behavior of the encoder/decoder,
    with comments citing a trade-off between memory usage and performance.
    I removed these in a separate patch to make reverting in the future
    easier, if we find these options are useful.
    
    Change-Id: I24cb7101b89e60f4fb96777e3681c03d2a62e3d5
    Signed-off-by: Alexandru Gagniuc <mr.nuke.me at gmail.com>
---
 util/cbfstool/lzma/C/LzmaDec.c |  6 ------
 util/cbfstool/lzma/C/LzmaDec.h | 11 +----------
 util/cbfstool/lzma/C/LzmaEnc.c |  7 ++-----
 3 files changed, 3 insertions(+), 21 deletions(-)

diff --git a/util/cbfstool/lzma/C/LzmaDec.c b/util/cbfstool/lzma/C/LzmaDec.c
index 5537b71..e208877 100644
--- a/util/cbfstool/lzma/C/LzmaDec.c
+++ b/util/cbfstool/lzma/C/LzmaDec.c
@@ -28,11 +28,6 @@
 #define TREE_DECODE(probs, limit, i) \
   { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; }
 
-/* #define _LZMA_SIZE_OPT */
-
-#ifdef _LZMA_SIZE_OPT
-#define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i)
-#else
 #define TREE_6_DECODE(probs, i) \
   { i = 1; \
   TREE_GET_BIT(probs, i); \
@@ -42,7 +37,6 @@
   TREE_GET_BIT(probs, i); \
   TREE_GET_BIT(probs, i); \
   i -= 0x40; }
-#endif
 
 #define NORMALIZE_CHECK if (range < kTopValue) { if (buf >= bufLimit) return DUMMY_ERROR; range <<= 8; code = (code << 8) | (*buf++); }
 
diff --git a/util/cbfstool/lzma/C/LzmaDec.h b/util/cbfstool/lzma/C/LzmaDec.h
index d296f85..1addabe 100644
--- a/util/cbfstool/lzma/C/LzmaDec.h
+++ b/util/cbfstool/lzma/C/LzmaDec.h
@@ -6,16 +6,7 @@
 
 #include "Types.h"
 
-/* #define _LZMA_PROB32 */
-/* _LZMA_PROB32 can increase the speed on some CPUs,
-   but memory usage for CLzmaDec::probs will be doubled in that case */
-
-#ifdef _LZMA_PROB32
-#define CLzmaProb uint32_t
-#else
-#define CLzmaProb uint16_t
-#endif
-
+typedef uint16_t CLzmaProb;
 
 /* ---------- LZMA Properties ---------- */
 
diff --git a/util/cbfstool/lzma/C/LzmaEnc.c b/util/cbfstool/lzma/C/LzmaEnc.c
index 01da281..e7d14c5 100644
--- a/util/cbfstool/lzma/C/LzmaEnc.c
+++ b/util/cbfstool/lzma/C/LzmaEnc.c
@@ -131,11 +131,8 @@ struct COptimal
 
 #define kNumFullDistances (1 << (kEndPosModelIndex >> 1))
 
-#ifdef _LZMA_PROB32
-#define CLzmaProb uint32_t
-#else
-#define CLzmaProb uint16_t
-#endif
+typedef uint16_t CLzmaProb;
+
 
 #define LZMA_PB_MAX 4
 #define LZMA_LC_MAX 8



More information about the coreboot-gerrit mailing list