blob: 8037ccf22b1dfe38dbf0782fc32f74cd497b5667 [file] [log] [blame]
Eugene Klyuchnikov771eb102015-11-27 11:27:11 +01001/* Copyright 2013 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/* This class models a sequence of literals and a backward reference copy. */
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +02008
9#ifndef BROTLI_ENC_COMMAND_H_
10#define BROTLI_ENC_COMMAND_H_
11
Eugene Kliuchnikov81480012016-08-23 14:40:33 +020012#include <brotli/types.h>
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020013#include "../common/port.h"
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010014#include "./fast_log.h"
Lode Vandevenne6511d6b2015-08-28 16:09:23 +020015#include "./prefix.h"
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020016
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020017#if defined(__cplusplus) || defined(c_plusplus)
18extern "C" {
19#endif
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +020020
Zoltan Szabadka8844b7f2016-01-07 16:27:49 +010021static uint32_t kInsBase[] = { 0, 1, 2, 3, 4, 5, 6, 8, 10, 14, 18, 26, 34, 50,
22 66, 98, 130, 194, 322, 578, 1090, 2114, 6210, 22594 };
23static uint32_t kInsExtra[] = { 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4,
24 5, 5, 6, 7, 8, 9, 10, 12, 14, 24 };
25static uint32_t kCopyBase[] = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 18, 22, 30,
26 38, 54, 70, 102, 134, 198, 326, 582, 1094, 2118 };
27static uint32_t kCopyExtra[] = { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 3, 3,
28 4, 4, 5, 5, 6, 7, 8, 9, 10, 24 };
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010029
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020030static BROTLI_INLINE uint16_t GetInsertLengthCode(size_t insertlen) {
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010031 if (insertlen < 6) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020032 return (uint16_t)insertlen;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010033 } else if (insertlen < 130) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020034 uint32_t nbits = Log2FloorNonZero(insertlen - 2) - 1u;
35 return (uint16_t)((nbits << 1) + ((insertlen - 2) >> nbits) + 2);
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010036 } else if (insertlen < 2114) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020037 return (uint16_t)(Log2FloorNonZero(insertlen - 66) + 10);
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010038 } else if (insertlen < 6210) {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010039 return 21u;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010040 } else if (insertlen < 22594) {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010041 return 22u;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010042 } else {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010043 return 23u;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010044 }
45}
46
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020047static BROTLI_INLINE uint16_t GetCopyLengthCode(size_t copylen) {
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010048 if (copylen < 10) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020049 return (uint16_t)(copylen - 2);
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010050 } else if (copylen < 134) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020051 uint32_t nbits = Log2FloorNonZero(copylen - 6) - 1u;
52 return (uint16_t)((nbits << 1) + ((copylen - 6) >> nbits) + 4);
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010053 } else if (copylen < 2118) {
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020054 return (uint16_t)(Log2FloorNonZero(copylen - 70) + 12);
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010055 } else {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010056 return 23u;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010057 }
58}
59
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020060static BROTLI_INLINE uint16_t CombineLengthCodes(
Eugene Kliuchnikov20481892016-07-26 14:41:59 +020061 uint16_t inscode, uint16_t copycode, BROTLI_BOOL use_last_distance) {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010062 uint16_t bits64 =
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020063 (uint16_t)((copycode & 0x7u) | ((inscode & 0x7u) << 3));
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010064 if (use_last_distance && inscode < 8 && copycode < 16) {
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010065 return (copycode < 8) ? bits64 : (bits64 | 64);
66 } else {
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +020067 /* "To convert an insert-and-copy length code to an insert length code and
68 a copy length code, the following table can be used" */
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010069 static const uint16_t cells[9] = { 128u, 192u, 384u, 256u, 320u, 512u,
70 448u, 576u, 640u };
71 return cells[(copycode >> 3) + 3 * (inscode >> 3)] | bits64;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010072 }
73}
74
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020075static BROTLI_INLINE void GetLengthCode(size_t insertlen, size_t copylen,
Eugene Kliuchnikov20481892016-07-26 14:41:59 +020076 BROTLI_BOOL use_last_distance,
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020077 uint16_t* code) {
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010078 uint16_t inscode = GetInsertLengthCode(insertlen);
79 uint16_t copycode = GetCopyLengthCode(copylen);
Zoltan Szabadkaea48ce52015-10-28 17:44:47 +010080 *code = CombineLengthCodes(inscode, copycode, use_last_distance);
Zoltan Szabadkab820c392016-03-15 10:50:16 +010081}
82
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020083static BROTLI_INLINE uint32_t GetInsertBase(uint16_t inscode) {
Zoltan Szabadkab820c392016-03-15 10:50:16 +010084 return kInsBase[inscode];
85}
86
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020087static BROTLI_INLINE uint32_t GetInsertExtra(uint16_t inscode) {
Zoltan Szabadkab820c392016-03-15 10:50:16 +010088 return kInsExtra[inscode];
89}
90
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020091static BROTLI_INLINE uint32_t GetCopyBase(uint16_t copycode) {
Zoltan Szabadkab820c392016-03-15 10:50:16 +010092 return kCopyBase[copycode];
93}
94
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020095static BROTLI_INLINE uint32_t GetCopyExtra(uint16_t copycode) {
Zoltan Szabadkab820c392016-03-15 10:50:16 +010096 return kCopyExtra[copycode];
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +010097}
98
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +020099typedef struct Command {
Zoltan Szabadka8844b7f2016-01-07 16:27:49 +0100100 uint32_t insert_len_;
Zoltan Szabadkab820c392016-03-15 10:50:16 +0100101 /* Stores copy_len in low 24 bits and copy_len XOR copy_code in high 8 bit. */
Zoltan Szabadka8844b7f2016-01-07 16:27:49 +0100102 uint32_t copy_len_;
Zoltan Szabadkab4f39bf2014-10-28 13:25:22 +0100103 uint32_t dist_extra_;
Zoltan Szabadka14d6ae72016-01-26 11:25:53 +0100104 uint16_t cmd_prefix_;
105 uint16_t dist_prefix_;
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +0200106} Command;
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +0200107
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +0200108/* distance_code is e.g. 0 for same-as-last short code, or 16 for offset 1. */
109static BROTLI_INLINE void InitCommand(Command* self, size_t insertlen,
110 size_t copylen, size_t copylen_code, size_t distance_code) {
111 self->insert_len_ = (uint32_t)insertlen;
112 self->copy_len_ = (uint32_t)(copylen | ((copylen_code ^ copylen) << 24));
113 /* The distance prefix and extra bits are stored in this Command as if
114 npostfix and ndirect were 0, they are only recomputed later after the
115 clustering if needed. */
116 PrefixEncodeCopyDistance(
117 distance_code, 0, 0, &self->dist_prefix_, &self->dist_extra_);
118 GetLengthCode(
Eugene Kliuchnikov20481892016-07-26 14:41:59 +0200119 insertlen, copylen_code, TO_BROTLI_BOOL(self->dist_prefix_ == 0),
120 &self->cmd_prefix_);
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +0200121}
122
123static BROTLI_INLINE void InitInsertCommand(Command* self, size_t insertlen) {
124 self->insert_len_ = (uint32_t)insertlen;
125 self->copy_len_ = 4 << 24;
126 self->dist_extra_ = 0;
127 self->dist_prefix_ = 16;
Eugene Kliuchnikov20481892016-07-26 14:41:59 +0200128 GetLengthCode(insertlen, 4, BROTLI_FALSE, &self->cmd_prefix_);
Eugene Kliuchnikovb972c672016-06-13 11:01:04 +0200129}
130
131static BROTLI_INLINE uint32_t CommandDistanceCode(const Command* self) {
132 if (self->dist_prefix_ < 16) {
133 return self->dist_prefix_;
134 } else {
135 uint32_t nbits = self->dist_extra_ >> 24;
136 uint32_t extra = self->dist_extra_ & 0xffffff;
137 uint32_t prefix = self->dist_prefix_ - 12u - 2u * nbits;
138 return (prefix << nbits) + extra + 12;
139 }
140}
141
142static BROTLI_INLINE uint32_t CommandDistanceContext(const Command* self) {
143 uint32_t r = self->cmd_prefix_ >> 6;
144 uint32_t c = self->cmd_prefix_ & 7;
145 if ((r == 0 || r == 2 || r == 4 || r == 7) && (c <= 2)) {
146 return c;
147 }
148 return 3;
149}
150
151static BROTLI_INLINE uint32_t CommandCopyLen(const Command* self) {
152 return self->copy_len_ & 0xFFFFFF;
153}
154
155static BROTLI_INLINE uint32_t CommandCopyLenCode(const Command* self) {
156 return (self->copy_len_ & 0xFFFFFF) ^ (self->copy_len_ >> 24);
157}
158
159#if defined(__cplusplus) || defined(c_plusplus)
160} /* extern "C" */
161#endif
Zoltan Szabadkac66e4e32013-10-23 13:06:13 +0200162
Eugene Kliuchnikov352b0b22016-06-03 11:19:23 +0200163#endif /* BROTLI_ENC_COMMAND_H_ */