]> git.saurik.com Git - apple/xnu.git/blame - osfmk/vm/lz4.h
xnu-4903.270.47.tar.gz
[apple/xnu.git] / osfmk / vm / lz4.h
CommitLineData
39037602
A
1/*
2 * Copyright (c) 2016-2016 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
39037602
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
0a7de745 14 *
39037602
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
39037602
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
0a7de745 25 *
39037602
A
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28
29#pragma once
30#include <stdint.h>
31#include <stddef.h>
32#include <kern/assert.h>
33#include <machine/machlimits.h>
34#include "lz4_assembly_select.h"
35#include "lz4_constants.h"
36
37#define memcpy __builtin_memcpy
38
39#pragma mark - Building blocks
40
41// Represents a position in the input stream
42typedef struct { uint32_t offset; uint32_t word; } lz4_hash_entry_t;
0a7de745 43static const size_t lz4_hash_table_size = LZ4_COMPRESS_HASH_ENTRIES * sizeof(lz4_hash_entry_t);
39037602
A
44
45// Worker function for lz4 encode. Underlies both the buffer and stream encode operations.
46// Performs lz4 encoding of up to 2gb of data, updates dst_ptr and src_ptr to point to the
47// first byte of output and input that couldn't be completely processed, respectively.
48//
49// If skip_final_literals is 0, the entire src buffer is encoded, by emitting a final sequence of literals
50// at the end of the compressed payload.
51//
52// If skip_final_literals is not 0, this final literal sequence is not emitted, and the src buffer is
53// partially encoded (the length of this literal sequence varies).
54extern void lz4_encode_2gb(uint8_t **dst_ptr, size_t dst_size,
0a7de745
A
55 const uint8_t **src_ptr, const uint8_t *src_begin, size_t src_size,
56 lz4_hash_entry_t hash_table[LZ4_COMPRESS_HASH_ENTRIES], int skip_final_literals);
39037602
A
57
58extern int lz4_decode(uint8_t **dst_ptr, uint8_t *dst_begin, uint8_t *dst_end,
0a7de745 59 const uint8_t **src_ptr, const uint8_t *src_end);
39037602
A
60
61#if LZ4_ENABLE_ASSEMBLY_DECODE
62extern int lz4_decode_asm(uint8_t **dst_ptr, uint8_t *dst_begin, uint8_t *dst_end,
0a7de745 63 const uint8_t **src_ptr, const uint8_t *src_end);
39037602
A
64#endif
65
66#pragma mark - Buffer interfaces
67
68static const size_t lz4_encode_scratch_size = lz4_hash_table_size;
69static const size_t lz4_decode_scratch_size = 0;
70
71#pragma mark - Buffer interfaces (LZ4 RAW)
72
73size_t lz4raw_encode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size,
0a7de745
A
74 const uint8_t * __restrict src_buffer, size_t src_size,
75 lz4_hash_entry_t hash_table[LZ4_COMPRESS_HASH_ENTRIES]);
39037602
A
76
77size_t lz4raw_decode_buffer(uint8_t * __restrict dst_buffer, size_t dst_size,
0a7de745
A
78 const uint8_t * __restrict src_buffer, size_t src_size,
79 void * __restrict work __attribute__((unused)));
39037602 80
0a7de745 81typedef __attribute__((__ext_vector_type__(8))) uint8_t vector_uchar8;
39037602
A
82typedef __attribute__((__ext_vector_type__(16))) uint8_t vector_uchar16;
83typedef __attribute__((__ext_vector_type__(32))) uint8_t vector_uchar32;
84typedef __attribute__((__ext_vector_type__(64))) uint8_t vector_uchar64;
0a7de745
A
85typedef __attribute__((__ext_vector_type__(16), __aligned__(1))) uint8_t packed_uchar16;
86typedef __attribute__((__ext_vector_type__(32), __aligned__(1))) uint8_t packed_uchar32;
87typedef __attribute__((__ext_vector_type__(64), __aligned__(1))) uint8_t packed_uchar64;
39037602
A
88
89typedef __attribute__((__ext_vector_type__(4))) uint16_t vector_ushort4;
0a7de745 90typedef __attribute__((__ext_vector_type__(4), __aligned__(2))) uint16_t packed_ushort4;
39037602
A
91
92typedef __attribute__((__ext_vector_type__(2))) int32_t vector_int2;
93typedef __attribute__((__ext_vector_type__(4))) int32_t vector_int4;
94typedef __attribute__((__ext_vector_type__(8))) int32_t vector_int8;
95
96typedef __attribute__((__ext_vector_type__(4))) uint32_t vector_uint4;
97
98#define UTIL_FUNCTION static inline __attribute__((__always_inline__)) __attribute__((__overloadable__))
99
100// Load N bytes from unaligned location PTR
0a7de745
A
101UTIL_FUNCTION uint16_t
102load2(const void * ptr)
103{
104 uint16_t data; memcpy(&data, ptr, sizeof data); return data;
105}
106UTIL_FUNCTION uint32_t
107load4(const void * ptr)
108{
109 uint32_t data; memcpy(&data, ptr, sizeof data); return data;
110}
111UTIL_FUNCTION uint64_t
112load8(const void * ptr)
113{
114 uint64_t data; memcpy(&data, ptr, sizeof data); return data;
115}
116UTIL_FUNCTION vector_uchar16
117load16(const void * ptr)
118{
119 return (const vector_uchar16)*(const packed_uchar16 *)ptr;
120}
121UTIL_FUNCTION vector_uchar32
122load32(const void * ptr)
123{
124 return (const vector_uchar32)*(const packed_uchar32 *)ptr;
125}
126UTIL_FUNCTION vector_uchar64
127load64(const void * ptr)
128{
129 return (const vector_uchar64)*(const packed_uchar64 *)ptr;
130}
39037602
A
131
132// Store N bytes to unaligned location PTR
0a7de745
A
133UTIL_FUNCTION void
134store2(void * ptr, uint16_t data)
135{
136 memcpy(ptr, &data, sizeof data);
137}
138UTIL_FUNCTION void
139store4(void * ptr, uint32_t data)
140{
141 memcpy(ptr, &data, sizeof data);
142}
143UTIL_FUNCTION void
144store8(void * ptr, uint64_t data)
145{
146 memcpy(ptr, &data, sizeof data);
147}
148UTIL_FUNCTION void
149store16(void * ptr, vector_uchar16 data)
150{
151 *(packed_uchar16 *)ptr = (packed_uchar16)data;
152}
153UTIL_FUNCTION void
154store32(void * ptr, vector_uchar32 data)
155{
156 *(packed_uchar32 *)ptr = (packed_uchar32)data;
157}
158UTIL_FUNCTION void
159store64(void * ptr, vector_uchar64 data)
160{
161 *(packed_uchar64 *)ptr = (packed_uchar64)data;
162}
39037602
A
163
164// Load+Store N bytes from unaligned locations SRC to DST. No overlap allowed.
0a7de745
A
165UTIL_FUNCTION void
166copy8(void * dst, const void * src)
167{
168 store8(dst, load8(src));
169}
170UTIL_FUNCTION void
171copy16(void * dst, const void * src)
172{
173 *(packed_uchar16 *)dst = *(const packed_uchar16 *)src;
174}
175UTIL_FUNCTION void
176copy32(void * dst, const void * src)
177{
178 *(packed_uchar32 *)dst = *(const packed_uchar32 *)src;
179}
5ba3f43e
A
180
181#undef memcpy