forked from hxim/paq8px
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShared.hpp
157 lines (128 loc) · 4.84 KB
/
Shared.hpp
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#ifndef PAQ8PX_SHARED_HPP
#define PAQ8PX_SHARED_HPP
#include "UpdateBroadcaster.hpp"
#include "RingBuffer.hpp"
#include <cstdint>
// helper #defines to access shared variables
#define INJECT_SHARED_buf const RingBuffer<uint8_t> &buf=shared->buf;
#define INJECT_SHARED_pos const uint32_t pos=shared->buf.getpos();
#define INJECT_SHARED_y const uint8_t y=shared->State.y;
#define INJECT_SHARED_c0 const uint8_t c0=shared->State.c0;
#define INJECT_SHARED_c1 const uint8_t c1=shared->State.c1;
#define INJECT_SHARED_bpos const uint8_t bpos=shared->State.bitPosition;
#define INJECT_SHARED_c4 const uint32_t c4=shared->State.c4;
#define INJECT_SHARED_c8 const uint32_t c8=shared->State.c8;
#define INJECT_SHARED_blockType const BlockType blockType=shared->State.blockType;
#define INJECT_SHARED_blockPos const uint32_t blockPos=shared->State.blockPos;
/**
* Shared information by all the models and some other classes.
*/
struct Shared {
private:
UpdateBroadcaster updateBroadcaster;
public:
//Shared state and statistics (global)
RingBuffer<uint8_t> buf; /**< Rotating input queue set by Predictor */
uint8_t options = 0; /**< Compression options (bit field) */
SIMD chosenSimd = SIMD_NONE; /**< default value, will be overridden by the CPU dispatcher, and may be overridden from the command line */
uint8_t level = 0; /**< level=0: no compression (only transformations), level=1..12 compress using less..more RAM */
uint64_t mem = 0; /**< pre-calculated value of 65536 * 2^level */
bool toScreen = true;
struct {
//
// Global state, used by most models, updated after every bit in by update(y)
//
uint8_t y = 0; /**< Last bit, 0 or 1 */
uint8_t c0 = 1; /**< Last 0-7 bits of the partial byte with a leading 1 bit (1-255) */
uint8_t c1 = 0; /**< Last whole byte, equals to c4&0xff or buf(1) */
uint8_t bitPosition = 0; /**< Bits in c0 (0 to 7), in other words the position of the bit to be predicted (0=MSB) */
uint32_t c4 = 0; /**< Last 4 whole bytes (buf(4)..buf(1)), packed. Last byte is bits 0-7. */
uint32_t c8 = 0; /**< Another 4 bytes (buf(8)..buf(5)) */
uint32_t misses{}; //updated by the Predictor, used by SSE stage
BlockType blockType{}; //used by wordModel, recordModel, SSE stage
uint32_t blockPos{}; //relative position in block, used by many models
//
// State and statistics per model - set by the individual models
// Order in appearance: models may use information from models that appears above them
//
//MatchModel
struct {
uint8_t length2; //used by SSE stage and RecordModel
uint8_t mode3; //used by SSE stage
uint8_t mode5; //used by SSE stage
uint8_t expectedByte; //used by SSE stage and RecordModel
} Match{};
//NormalModel
struct {
uint8_t order;
uint64_t cxt[15]; // context hashes used by NormalModel and MatchModel
} NormalModel{};
//image models
struct {
struct {
uint8_t WW, W, NN, N, Wp1, Np1;
} pixels; //used by SSE stage
uint8_t plane; //used by SSE stage
uint8_t ctx; //used by SSE stage
} Image{};
//AudioModel
uint8_t Audio{};
//JpegModel
struct {
std::uint16_t state; // used by SSE stage
} JPEG;
//SparseMatchModel
//SparseModel
//RecordModel
uint32_t rLength{};
//CharGroupModel
//TextModel
struct {
uint8_t characterGroup; //used by RecordModel, TextModel - Quantized partial byte as ASCII group
uint8_t firstLetter; //used by SSE stage
uint8_t mask; //used by SSE stage
uint8_t order; //used by SSE stage
} Text{};
//WordModel
struct {
uint8_t order; //used by SSE stage
} WordModel{};
//IndirectModel
//Dmcforest
//NestModel
//XMLModel
//LinearPredictionModel
//ExeModel
struct {
std::uint8_t state; // used by SSE stage
} x86_64;
//DECAlphaModel
struct {
std::uint8_t state; // used by SSE stage
std::uint8_t bcount; // used by SSE stage
} DEC;
} State{};
Shared() {
toScreen = !isOutputRedirected();
}
void init(uint8_t level);
void update(int y);
void reset();
UpdateBroadcaster *GetUpdateBroadcaster() const;
private:
/**
* Copy constructor is private so that it cannot be called
*/
Shared(Shared const & /*unused*/) {}
/**
* Assignment operator is private so that it cannot be called
*/
auto operator=(Shared const & /*unused*/) -> Shared & { return *this; }
/**
* Determine if output is redirected
* @return
*/
static auto isOutputRedirected() -> bool;
static Shared *mPInstance;
};
#endif //PAQ8PX_SHARED_HPP