blob: bc428cffdaf17cd98bdf4a20c76ea62c684c447c [file] [log] [blame]
Eugene Klyuchnikov771eb102015-11-27 11:27:11 +01001/* Copyright 2010 Google Inc. All Rights Reserved.
2
Eugene Klyuchnikov24ffa782015-12-11 11:11:51 +01003 Distributed under MIT license.
Eugene Klyuchnikov771eb102015-11-27 11:27:11 +01004 See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
5*/
6
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +02007/* Function to find maximal matching prefixes of strings. */
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +02008
9#ifndef BROTLI_ENC_FIND_MATCH_LENGTH_H_
10#define BROTLI_ENC_FIND_MATCH_LENGTH_H_
11
Eugene Kliuchnikovda254cf2017-12-12 14:33:12 +010012#include "../common/platform.h"
Eugene Kliuchnikov81480012016-08-23 14:40:33 +020013#include <brotli/types.h>
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020014
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020015#if defined(__cplusplus) || defined(c_plusplus)
16extern "C" {
17#endif
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020018
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020019/* Separate implementation for little-endian 64-bit targets, for speed. */
Eugene Kliuchnikovd63e8f72017-08-04 10:02:56 +020020#if defined(__GNUC__) && defined(_LP64) && defined(BROTLI_LITTLE_ENDIAN)
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020021
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020022static BROTLI_INLINE size_t FindMatchLengthWithLimit(const uint8_t* s1,
23 const uint8_t* s2,
24 size_t limit) {
Zoltan Szabadka8844b7f2016-01-07 16:27:49 +010025 size_t matched = 0;
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020026 size_t limit2 = (limit >> 3) + 1; /* + 1 is for pre-decrement in while */
Eugene Kliuchnikov69982c22016-10-18 16:45:32 +020027 while (BROTLI_PREDICT_TRUE(--limit2)) {
Eugene Kliuchnikovd63e8f72017-08-04 10:02:56 +020028 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64LE(s2) ==
29 BROTLI_UNALIGNED_LOAD64LE(s1 + matched))) {
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020030 s2 += 8;
31 matched += 8;
32 } else {
Eugene Kliuchnikovd63e8f72017-08-04 10:02:56 +020033 uint64_t x = BROTLI_UNALIGNED_LOAD64LE(s2) ^
34 BROTLI_UNALIGNED_LOAD64LE(s1 + matched);
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020035 size_t matching_bits = (size_t)__builtin_ctzll(x);
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020036 matched += matching_bits >> 3;
37 return matched;
38 }
39 }
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020040 limit = (limit & 7) + 1; /* + 1 is for pre-decrement in while */
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020041 while (--limit) {
Eugene Kliuchnikov69982c22016-10-18 16:45:32 +020042 if (BROTLI_PREDICT_TRUE(s1[matched] == *s2)) {
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020043 ++s2;
44 ++matched;
45 } else {
46 return matched;
47 }
48 }
49 return matched;
50}
51#else
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020052static BROTLI_INLINE size_t FindMatchLengthWithLimit(const uint8_t* s1,
53 const uint8_t* s2,
54 size_t limit) {
Zoltan Szabadka8844b7f2016-01-07 16:27:49 +010055 size_t matched = 0;
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020056 const uint8_t* s2_limit = s2 + limit;
57 const uint8_t* s2_ptr = s2;
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020058 /* Find out how long the match is. We loop over the data 32 bits at a
59 time until we find a 32-bit block that doesn't match; then we find
60 the first non-matching bit and use that to calculate the total
61 length of the match. */
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020062 while (s2_ptr <= s2_limit - 4 &&
Eugene Kliuchnikovda254cf2017-12-12 14:33:12 +010063 BrotliUnalignedRead32(s2_ptr) ==
64 BrotliUnalignedRead32(s1 + matched)) {
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020065 s2_ptr += 4;
66 matched += 4;
67 }
68 while ((s2_ptr < s2_limit) && (s1[matched] == *s2_ptr)) {
69 ++s2_ptr;
70 ++matched;
71 }
72 return matched;
73}
74#endif
75
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020076#if defined(__cplusplus) || defined(c_plusplus)
77} /* extern "C" */
78#endif
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020079
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020080#endif /* BROTLI_ENC_FIND_MATCH_LENGTH_H_ */