]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/BrotliCompress/enc/hash_forgetful_chain_inc.h
BaseTools: Update Brotli Compress to the latest one 1.0.6
[mirror_edk2.git] / BaseTools / Source / C / BrotliCompress / enc / hash_forgetful_chain_inc.h
index 069441c9a707b76ac345fbf3b631b7ed2e37a66d..9caf429db1d9343162f8cc7109a97e34304746a1 100644 (file)
@@ -28,8 +28,8 @@ static BROTLI_INLINE size_t FN(HashTypeLength)(void) { return 4; }
 static BROTLI_INLINE size_t FN(StoreLookahead)(void) { return 4; }\r
 \r
 /* HashBytes is the function that chooses the bucket to place the address in.*/\r
-static BROTLI_INLINE size_t FN(HashBytes)(const uint8_t *data) {\r
-  const uint32_t h = BROTLI_UNALIGNED_LOAD32(data) * kHashMul32;\r
+static BROTLI_INLINE size_t FN(HashBytes)(const uint8_tdata) {\r
+  const uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32;\r
   /* The higher bits contain more mixture from the multiplication,\r
      so we take our results from there. */\r
   return h >> (32 - BUCKET_BITS);\r
@@ -51,65 +51,57 @@ typedef struct HashForgetfulChain {
   uint8_t tiny_hash[65536];\r
   FN(Bank) banks[NUM_BANKS];\r
   uint16_t free_slot_idx[NUM_BANKS];\r
-  BROTLI_BOOL is_dirty_;\r
-  DictionarySearchStatictics dict_search_stats_;\r
   size_t max_hops;\r
 } HashForgetfulChain;\r
 \r
-static void FN(Reset)(HashForgetfulChain* self) {\r
-  self->is_dirty_ = BROTLI_TRUE;\r
-  DictionarySearchStaticticsReset(&self->dict_search_stats_);\r
+static BROTLI_INLINE HashForgetfulChain* FN(Self)(HasherHandle handle) {\r
+  return (HashForgetfulChain*)&(GetHasherCommon(handle)[1]);\r
 }\r
 \r
-static void FN(InitEmpty)(HashForgetfulChain* self) {\r
-  if (self->is_dirty_) {\r
+static void FN(Initialize)(\r
+    HasherHandle handle, const BrotliEncoderParams* params) {\r
+  FN(Self)(handle)->max_hops =\r
+      (params->quality > 6 ? 7u : 8u) << (params->quality - 4);\r
+}\r
+\r
+static void FN(Prepare)(HasherHandle handle, BROTLI_BOOL one_shot,\r
+    size_t input_size, const uint8_t* data) {\r
+  HashForgetfulChain* self = FN(Self)(handle);\r
+  /* Partial preparation is 100 times slower (per socket). */\r
+  size_t partial_prepare_threshold = BUCKET_SIZE >> 6;\r
+  if (one_shot && input_size <= partial_prepare_threshold) {\r
+    size_t i;\r
+    for (i = 0; i < input_size; ++i) {\r
+      size_t bucket = FN(HashBytes)(&data[i]);\r
+      /* See InitEmpty comment. */\r
+      self->addr[bucket] = 0xCCCCCCCC;\r
+      self->head[bucket] = 0xCCCC;\r
+    }\r
+  } else {\r
     /* Fill |addr| array with 0xCCCCCCCC value. Because of wrapping, position\r
        processed by hasher never reaches 3GB + 64M; this makes all new chains\r
        to be terminated after the first node. */\r
     memset(self->addr, 0xCC, sizeof(self->addr));\r
     memset(self->head, 0, sizeof(self->head));\r
-    memset(self->tiny_hash, 0, sizeof(self->tiny_hash));\r
-    memset(self->free_slot_idx, 0, sizeof(self->free_slot_idx));\r
-    self->is_dirty_ = BROTLI_FALSE;\r
-  }\r
-}\r
-\r
-static void FN(InitForData)(HashForgetfulChain* self, const uint8_t* data,\r
-    size_t num) {\r
-  size_t i;\r
-  for (i = 0; i < num; ++i) {\r
-    size_t bucket = FN(HashBytes)(&data[i]);\r
-    /* See InitEmpty comment. */\r
-    self->addr[bucket] = 0xCCCCCCCC;\r
-    self->head[bucket] = 0xCCCC;\r
   }\r
   memset(self->tiny_hash, 0, sizeof(self->tiny_hash));\r
   memset(self->free_slot_idx, 0, sizeof(self->free_slot_idx));\r
-  if (num != 0) {\r
-    self->is_dirty_ = BROTLI_FALSE;\r
-  }\r
 }\r
 \r
-static void FN(Init)(\r
-    MemoryManager* m, HashForgetfulChain* self, const uint8_t* data,\r
-    const BrotliEncoderParams* params, size_t position, size_t bytes,\r
-    BROTLI_BOOL is_last) {\r
-  /* Choose which init method is faster.\r
-     Init() is about 100 times faster than InitForData(). */\r
-  const size_t kMaxBytesForPartialHashInit = BUCKET_SIZE >> 6;\r
-  BROTLI_UNUSED(m);\r
-  self->max_hops = (params->quality > 6 ? 7u : 8u) << (params->quality - 4);\r
-  if (position == 0 && is_last && bytes <= kMaxBytesForPartialHashInit) {\r
-    FN(InitForData)(self, data, bytes);\r
-  } else {\r
-    FN(InitEmpty)(self);\r
-  }\r
+static BROTLI_INLINE size_t FN(HashMemAllocInBytes)(\r
+    const BrotliEncoderParams* params, BROTLI_BOOL one_shot,\r
+    size_t input_size) {\r
+  BROTLI_UNUSED(params);\r
+  BROTLI_UNUSED(one_shot);\r
+  BROTLI_UNUSED(input_size);\r
+  return sizeof(HashForgetfulChain);\r
 }\r
 \r
 /* Look at 4 bytes at &data[ix & mask]. Compute a hash from these, and prepend\r
    node to corresponding chain; also update tiny_hash for current position. */\r
-static BROTLI_INLINE void FN(Store)(HashForgetfulChain* BROTLI_RESTRICT self,\r
+static BROTLI_INLINE void FN(Store)(HasherHandle BROTLI_RESTRICT handle,\r
     const uint8_t* BROTLI_RESTRICT data, const size_t mask, const size_t ix) {\r
+  HashForgetfulChain* self = FN(Self)(handle);\r
   const size_t key = FN(HashBytes)(&data[ix & mask]);\r
   const size_t bank = key & (NUM_BANKS - 1);\r
   const size_t idx = self->free_slot_idx[bank]++ & (BANK_SIZE - 1);\r
@@ -122,56 +114,68 @@ static BROTLI_INLINE void FN(Store)(HashForgetfulChain* BROTLI_RESTRICT self,
   self->head[key] = (uint16_t)idx;\r
 }\r
 \r
-static BROTLI_INLINE void FN(StoreRange)(HashForgetfulChain* self,\r
-    const uint8_t *data, const size_t mask, const size_t ix_start,\r
+static BROTLI_INLINE void FN(StoreRange)(HasherHandle handle,\r
+    const uint8_tdata, const size_t mask, const size_t ix_start,\r
     const size_t ix_end) {\r
   size_t i;\r
   for (i = ix_start; i < ix_end; ++i) {\r
-    FN(Store)(self, data, mask, i);\r
+    FN(Store)(handle, data, mask, i);\r
   }\r
 }\r
 \r
-static BROTLI_INLINE void FN(StitchToPreviousBlock)(HashForgetfulChain* self,\r
+static BROTLI_INLINE void FN(StitchToPreviousBlock)(HasherHandle handle,\r
     size_t num_bytes, size_t position, const uint8_t* ringbuffer,\r
     size_t ring_buffer_mask) {\r
   if (num_bytes >= FN(HashTypeLength)() - 1 && position >= 3) {\r
     /* Prepare the hashes for three last bytes of the last write.\r
        These could not be calculated before, since they require knowledge\r
        of both the previous and the current block. */\r
-    FN(Store)(self, ringbuffer, ring_buffer_mask, position - 3);\r
-    FN(Store)(self, ringbuffer, ring_buffer_mask, position - 2);\r
-    FN(Store)(self, ringbuffer, ring_buffer_mask, position - 1);\r
+    FN(Store)(handle, ringbuffer, ring_buffer_mask, position - 3);\r
+    FN(Store)(handle, ringbuffer, ring_buffer_mask, position - 2);\r
+    FN(Store)(handle, ringbuffer, ring_buffer_mask, position - 1);\r
   }\r
 }\r
 \r
+static BROTLI_INLINE void FN(PrepareDistanceCache)(\r
+    HasherHandle handle, int* BROTLI_RESTRICT distance_cache) {\r
+  BROTLI_UNUSED(handle);\r
+  PrepareDistanceCache(distance_cache, NUM_LAST_DISTANCES_TO_CHECK);\r
+}\r
+\r
 /* Find a longest backward match of &data[cur_ix] up to the length of\r
    max_length and stores the position cur_ix in the hash table.\r
 \r
+   REQUIRES: FN(PrepareDistanceCache) must be invoked for current distance cache\r
+             values; if this method is invoked repeatedly with the same distance\r
+             cache values, it is enough to invoke FN(PrepareDistanceCache) once.\r
+\r
    Does not look for matches longer than max_length.\r
    Does not look for matches further away than max_backward.\r
    Writes the best match into |out|.\r
-   Returns 1 when match is found, otherwise 0. */\r
-static BROTLI_INLINE BROTLI_BOOL FN(FindLongestMatch)(\r
-    HashForgetfulChain* self, const uint8_t* BROTLI_RESTRICT data,\r
-    const size_t ring_buffer_mask, const int* BROTLI_RESTRICT distance_cache,\r
+   |out|->score is updated only if a better match is found. */\r
+static BROTLI_INLINE void FN(FindLongestMatch)(HasherHandle handle,\r
+    const BrotliEncoderDictionary* dictionary,\r
+    const uint8_t* BROTLI_RESTRICT data, const size_t ring_buffer_mask,\r
+    const int* BROTLI_RESTRICT distance_cache,\r
     const size_t cur_ix, const size_t max_length, const size_t max_backward,\r
+    const size_t gap, const size_t max_distance,\r
     HasherSearchResult* BROTLI_RESTRICT out) {\r
+  HashForgetfulChain* self = FN(Self)(handle);\r
   const size_t cur_ix_masked = cur_ix & ring_buffer_mask;\r
-  BROTLI_BOOL is_match_found = BROTLI_FALSE;\r
   /* Don't accept a short copy from far away. */\r
+  score_t min_score = out->score;\r
   score_t best_score = out->score;\r
   size_t best_len = out->len;\r
   size_t i;\r
   const size_t key = FN(HashBytes)(&data[cur_ix_masked]);\r
   const uint8_t tiny_hash = (uint8_t)(key);\r
   out->len = 0;\r
-  out->len_x_code = 0;\r
+  out->len_code_delta = 0;\r
   /* Try last distance first. */\r
   for (i = 0; i < NUM_LAST_DISTANCES_TO_CHECK; ++i) {\r
-    const size_t idx = kDistanceCacheIndex[i];\r
-    const size_t backward =\r
-        (size_t)(distance_cache[idx] + kDistanceCacheOffset[i]);\r
+    const size_t backward = (size_t)distance_cache[i];\r
     size_t prev_ix = (cur_ix - backward);\r
+    /* For distance code 0 we want to consider 2-byte matches. */\r
     if (i > 0 && self->tiny_hash[(uint16_t)prev_ix] != tiny_hash) continue;\r
     if (prev_ix >= cur_ix || backward > max_backward) {\r
       continue;\r
@@ -182,14 +186,16 @@ static BROTLI_INLINE BROTLI_BOOL FN(FindLongestMatch)(
                                                   &data[cur_ix_masked],\r
                                                   max_length);\r
       if (len >= 2) {\r
-        score_t score = BackwardReferenceScoreUsingLastDistance(len, i);\r
+        score_t score = BackwardReferenceScoreUsingLastDistance(len);\r
         if (best_score < score) {\r
-          best_score = score;\r
-          best_len = len;\r
-          out->len = best_len;\r
-          out->distance = backward;\r
-          out->score = best_score;\r
-          is_match_found = BROTLI_TRUE;\r
+          if (i != 0) score -= BackwardReferencePenaltyUsingLastDistance(i);\r
+          if (best_score < score) {\r
+            best_score = score;\r
+            best_len = len;\r
+            out->len = best_len;\r
+            out->distance = backward;\r
+            out->score = best_score;\r
+          }\r
         }\r
       }\r
     }\r
@@ -228,18 +234,17 @@ static BROTLI_INLINE BROTLI_BOOL FN(FindLongestMatch)(
             out->len = best_len;\r
             out->distance = backward;\r
             out->score = best_score;\r
-            is_match_found = BROTLI_TRUE;\r
           }\r
         }\r
       }\r
     }\r
-    FN(Store)(self, data, ring_buffer_mask, cur_ix);\r
+    FN(Store)(handle, data, ring_buffer_mask, cur_ix);\r
   }\r
-  if (!is_match_found) {\r
-    is_match_found = SearchInStaticDictionary(&self->dict_search_stats_,\r
-        &data[cur_ix_masked], max_length, max_backward, out, BROTLI_FALSE);\r
+  if (out->score == min_score) {\r
+    SearchInStaticDictionary(dictionary,\r
+        handle, &data[cur_ix_masked], max_length, max_backward + gap,\r
+        max_distance, out, BROTLI_FALSE);\r
   }\r
-  return is_match_found;\r
 }\r
 \r
 #undef BANK_SIZE\r