-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsimdvariablebyte.h
97 lines (90 loc) · 3.01 KB
/
simdvariablebyte.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/**
* (c) Part of the copyright is to Indeed.com
* Licensed under the Apache License Version 2.0
*/
/*
* Based on an initial design by Jeff Plaisance and
* improved by Nathan Kurz.
*/
#ifndef SIMDVARIABLEBYTE_H_
#define SIMDVARIABLEBYTE_H_
#include "common.h"
#include "codecs.h"
#ifdef __cplusplus
extern "C" {
#endif
size_t masked_vbyte_read_loop_fromcompressedsize(const uint8_t *in,
uint32_t *out,
size_t inputsize);
#ifdef __cplusplus
}
#endif
/**
* SIMD-accelerated version of VariableByteAlt.
*/
class MaskedVByte : public FastPForLib::IntegerCODEC {
public:
MaskedVByte() {}
void encodeArray(const uint32_t *in, const size_t length, uint32_t *out,
size_t &nvalue) {
const uint8_t *const initbout = reinterpret_cast<uint8_t *>(out);
uint8_t *bout = reinterpret_cast<uint8_t *>(out);
for (size_t k = 0; k < length; ++k) {
const uint32_t val(in[k]);
/**
* Code below could be shorter. Whether it could be faster
* depends on your compiler and machine.
*/
if (val < (1U << 7)) {
*bout = val & 0x7F;
++bout;
} else if (val < (1U << 14)) {
*bout = static_cast<uint8_t>((val & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(val >> 7);
++bout;
} else if (val < (1U << 21)) {
*bout = static_cast<uint8_t>((val & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 7) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(val >> 14);
++bout;
} else if (val < (1U << 28)) {
*bout = static_cast<uint8_t>((val & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 7) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 14) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(val >> 21);
++bout;
} else {
*bout = static_cast<uint8_t>((val & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 7) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 14) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(((val >> 21) & 0x7F) | (1U << 7));
++bout;
*bout = static_cast<uint8_t>(val >> 28);
++bout;
}
}
while (FastPForLib::needPaddingTo32Bits(bout)) {
*bout++ = 0xFFU;
}
const size_t storageinbytes = bout - initbout;
nvalue = storageinbytes / 4;
}
const uint32_t *decodeArray(const uint32_t *in, const size_t length,
uint32_t *out, size_t &nvalue) {
const uint8_t *inbyte = reinterpret_cast<const uint8_t *>(in);
nvalue = masked_vbyte_read_loop_fromcompressedsize(inbyte, out, length * 4);
return reinterpret_cast<const uint32_t *>(inbyte);
return in + length;
}
std::string name() const { return "MaskedVByte"; }
};
#endif /* SIMDVARIABLEBYTE_H_ */