]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lzms_common.h
tagged_items: rename inode_set_tagged_data() to inode_set_tagged_item()
[wimlib] / include / wimlib / lzms_common.h
index 10dc4d020a3b3240252366abee98b4c070064e6b..b5071469f443bf3227657ac7ba0c72023fe30b27 100644 (file)
 #include "wimlib/lzms_constants.h"
 #include "wimlib/types.h"
 
-//#define ENABLE_LZMS_DEBUG
-#ifdef ENABLE_LZMS_DEBUG
-#      define LZMS_DEBUG DEBUG
-#       define LZMS_ASSERT wimlib_assert
-#       include "wimlib/assert.h"
-#       include "wimlib/error.h"
-#else
-#      define LZMS_DEBUG(format, ...)
-#      define LZMS_ASSERT(...)
-#endif
-
-extern void
-lzms_x86_filter(u8 data[], s32 size, s32 last_target_usages[], bool undo);
-
-/* Probability entry for use by the range coder when in a specific state.  */
-struct lzms_probability_entry {
-
-       /* Number of zeroes in the most recent LZMS_PROBABILITY_MAX bits that
-        * have been coded using this probability entry.  This is a cached value
-        * because it can be computed as LZMS_PROBABILITY_MAX minus the number
-        * of bits set in the low-order LZMS_PROBABILITY_MAX bits of
-        * @recent_bits.  */
-       u32 num_recent_zero_bits;
-
-       /* The most recent LZMS_PROBABILITY_MAX bits that have been coded using
-        * this probability entry.  The size of this variable, in bits, must be
-        * at least LZMS_PROBABILITY_MAX.  */
-       u64 recent_bits;
-};
-
 /* Offset slot tables  */
 extern const u32 lzms_offset_slot_base[LZMS_MAX_NUM_OFFSET_SYMS + 1];
 extern const u8 lzms_extra_offset_bits[LZMS_MAX_NUM_OFFSET_SYMS];
@@ -53,14 +23,14 @@ extern unsigned
 lzms_get_slot(u32 value, const u32 slot_base_tab[], unsigned num_slots);
 
 /* Return the offset slot for the specified offset  */
-static inline unsigned
+static forceinline unsigned
 lzms_get_offset_slot(u32 offset)
 {
        return lzms_get_slot(offset, lzms_offset_slot_base, LZMS_MAX_NUM_OFFSET_SYMS);
 }
 
 /* Return the length slot for the specified length  */
-static inline unsigned
+static forceinline unsigned
 lzms_get_length_slot(u32 length)
 {
        return lzms_get_slot(length, lzms_length_slot_base, LZMS_NUM_LENGTH_SYMS);
@@ -69,42 +39,105 @@ lzms_get_length_slot(u32 length)
 extern unsigned
 lzms_get_num_offset_slots(size_t uncompressed_size);
 
-extern void
-lzms_init_probability_entries(struct lzms_probability_entry *entries, size_t count);
 
-extern void
-lzms_init_symbol_frequencies(u32 freqs[], size_t num_syms);
+/* Probability entry for use by the range coder when in a specific state  */
+struct lzms_probability_entry {
 
-/* Given a decoded bit, update the probability entry.  */
-static inline void
-lzms_update_probability_entry(struct lzms_probability_entry *prob_entry, int bit)
-{
-       s32 delta_zero_bits;
+       /* The number of zeroes in the most recent LZMS_PROBABILITY_DENOMINATOR
+        * bits that have been decoded or encoded using this probability entry.
+        * The probability of the next bit being 0 is this value over
+        * LZMS_PROBABILITY_DENOMINATOR, except for the cases where this would
+        * imply 0% or 100% probability.  */
+       u32 num_recent_zero_bits;
+
+       /* The most recent LZMS_PROBABILITY_DENOMINATOR bits that have been
+        * coded using this probability entry.  The bits are ordered such that
+        * low order is newest and high order is oldest.  */
+       u64 recent_bits;
+};
 
-       BUILD_BUG_ON(LZMS_PROBABILITY_MAX != sizeof(prob_entry->recent_bits) * 8);
+struct lzms_probabilites {
+       struct lzms_probability_entry main[LZMS_NUM_MAIN_PROBS];
+       struct lzms_probability_entry match[LZMS_NUM_MATCH_PROBS];
+       struct lzms_probability_entry lz[LZMS_NUM_LZ_PROBS];
+       struct lzms_probability_entry delta[LZMS_NUM_DELTA_PROBS];
+       struct lzms_probability_entry lz_rep[LZMS_NUM_LZ_REP_DECISIONS]
+                                           [LZMS_NUM_LZ_REP_PROBS];
+       struct lzms_probability_entry delta_rep[LZMS_NUM_DELTA_REP_DECISIONS]
+                                              [LZMS_NUM_DELTA_REP_PROBS];
+};
 
-       delta_zero_bits = (s32)(prob_entry->recent_bits >> (LZMS_PROBABILITY_MAX - 1)) - bit;
+extern void
+lzms_init_probabilities(struct lzms_probabilites *probs);
 
-       prob_entry->num_recent_zero_bits += delta_zero_bits;
-       prob_entry->recent_bits <<= 1;
-       prob_entry->recent_bits |= bit;
+/* Given a decoded or encoded bit, update the probability entry.  */
+static forceinline void
+lzms_update_probability_entry(struct lzms_probability_entry *entry, int bit)
+{
+       STATIC_ASSERT(LZMS_PROBABILITY_DENOMINATOR == sizeof(entry->recent_bits) * 8);
+
+#ifdef __x86_64__
+       if (__builtin_constant_p(bit)) {
+               /* Optimized implementation for x86_64 using carry flag  */
+               if (bit) {
+                      __asm__("shlq %[recent_bits]                          \n"
+                              "adcl $0xffffffff, %[num_recent_zero_bits]    \n"
+                              "orq $0x1, %[recent_bits]                     \n"
+                              : [recent_bits] "+r" (entry->recent_bits),
+                                [num_recent_zero_bits] "+mr" (entry->num_recent_zero_bits)
+                              :
+                              : "cc");
+               } else {
+                      __asm__("shlq %[recent_bits]                          \n"
+                              "adcl $0x0, %[num_recent_zero_bits]           \n"
+                              : [recent_bits] "+m" (entry->recent_bits),
+                                [num_recent_zero_bits] "+mr" (entry->num_recent_zero_bits)
+                              :
+                              : "cc");
+               }
+       } else
+#endif
+       {
+               s32 delta_zero_bits = (s32)(entry->recent_bits >>
+                                           (LZMS_PROBABILITY_DENOMINATOR - 1)) - bit;
+
+               entry->num_recent_zero_bits += delta_zero_bits;
+               entry->recent_bits = (entry->recent_bits << 1) | bit;
+       }
 }
 
-/* Given a probability entry, return the chance out of LZMS_PROBABILITY_MAX that
- * the next decoded bit will be a 0.  */
-static inline u32
+/* Given a probability entry, return the chance out of
+ * LZMS_PROBABILITY_DENOMINATOR that the next decoded bit will be a 0.  */
+static forceinline u32
 lzms_get_probability(const struct lzms_probability_entry *prob_entry)
 {
-       u32 prob;
-
-       prob = prob_entry->num_recent_zero_bits;
+       u32 prob = prob_entry->num_recent_zero_bits;
 
        /* 0% and 100% probabilities aren't allowed.  */
-       if (prob == 0)
-               prob++;
-       if (prob == LZMS_PROBABILITY_MAX)
-               prob--;
+
+       /*
+        *      if (prob == 0)
+        *              prob++;
+        */
+       prob += (u32)(prob - 1) >> 31;
+
+       /*
+        *      if (prob == LZMS_PROBABILITY_DENOMINATOR)
+        *              prob--;
+        */
+       prob -= (prob >> LZMS_PROBABILITY_BITS);
+
        return prob;
 }
 
+extern void
+lzms_init_symbol_frequencies(u32 freqs[], unsigned num_syms);
+
+extern void
+lzms_dilute_symbol_frequencies(u32 freqs[], unsigned num_syms);
+
+/* Pre/post-processing  */
+extern void
+lzms_x86_filter(u8 data[], s32 size, s32 last_target_usages[], bool undo);
+
 #endif /* _LZMS_COMMON_H */