libosmocore
1.5.1
Osmocom core library
|
Go to the documentation of this file.
29 #ifndef __always_inline
30 #define __always_inline inline __attribute__((always_inline))
33 #define NEON_BUTTERFLY(M0,M1,M2,M3,M4) \
35 M3 = vqaddq_s16(M0, M2); \
36 M4 = vqsubq_s16(M1, M2); \
37 M0 = vqsubq_s16(M0, M2); \
38 M1 = vqaddq_s16(M1, M2); \
39 M2 = vmaxq_s16(M3, M4); \
40 M3 = vreinterpretq_s16_u16(vcgtq_s16(M3, M4)); \
41 M4 = vmaxq_s16(M0, M1); \
42 M1 = vreinterpretq_s16_u16(vcgtq_s16(M0, M1)); \
45 #define NEON_DEINTERLEAVE_K5(M0,M1,M2,M3) \
48 tmp = vuzpq_s16(M0, M1); \
53 #define NEON_DEINTERLEAVE_K7(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11,M12,M13,M14,M15) \
56 tmp = vuzpq_s16(M0, M1); \
57 M8 = tmp.val[0]; M9 = tmp.val[1]; \
58 tmp = vuzpq_s16(M2, M3); \
59 M10 = tmp.val[0]; M11 = tmp.val[1]; \
60 tmp = vuzpq_s16(M4, M5); \
61 M12 = tmp.val[0]; M13 = tmp.val[1]; \
62 tmp = vuzpq_s16(M6, M7); \
63 M14 = tmp.val[0]; M15 = tmp.val[1]; \
66 #define NEON_BRANCH_METRIC_N2(M0,M1,M2,M3,M4,M6,M7) \
68 M0 = vmulq_s16(M4, M0); \
69 M1 = vmulq_s16(M4, M1); \
70 M2 = vmulq_s16(M4, M2); \
71 M3 = vmulq_s16(M4, M3); \
72 M6 = vcombine_s16(vpadd_s16(vget_low_s16(M0), vget_high_s16(M0)), vpadd_s16(vget_low_s16(M1), vget_high_s16(M1))); \
73 M7 = vcombine_s16(vpadd_s16(vget_low_s16(M2), vget_high_s16(M2)), vpadd_s16(vget_low_s16(M3), vget_high_s16(M3))); \
76 #define NEON_BRANCH_METRIC_N4(M0,M1,M2,M3,M4,M5) \
78 M0 = vmulq_s16(M4, M0); \
79 M1 = vmulq_s16(M4, M1); \
80 M2 = vmulq_s16(M4, M2); \
81 M3 = vmulq_s16(M4, M3); \
82 int16x4_t t1 = vpadd_s16(vpadd_s16(vget_low_s16(M0), vget_high_s16(M0)), vpadd_s16(vget_low_s16(M1), vget_high_s16(M1))); \
83 int16x4_t t2 = vpadd_s16(vpadd_s16(vget_low_s16(M2), vget_high_s16(M2)), vpadd_s16(vget_low_s16(M3), vget_high_s16(M3))); \
84 M5 = vcombine_s16(t1, t2); \
87 #define NEON_NORMALIZE_K5(M0,M1,M2,M3) \
89 M2 = vminq_s16(M0, M1); \
90 int16x4_t t = vpmin_s16(vget_low_s16(M2), vget_high_s16(M2)); \
91 t = vpmin_s16(t, t); \
92 t = vpmin_s16(t, t); \
93 M2 = vdupq_lane_s16(t, 0); \
94 M0 = vqsubq_s16(M0, M2); \
95 M1 = vqsubq_s16(M1, M2); \
98 #define NEON_NORMALIZE_K7(M0,M1,M2,M3,M4,M5,M6,M7,M8,M9,M10,M11) \
100 M8 = vminq_s16(M0, M1); \
101 M9 = vminq_s16(M2, M3); \
102 M10 = vminq_s16(M4, M5); \
103 M11 = vminq_s16(M6, M7); \
104 M8 = vminq_s16(M8, M9); \
105 M10 = vminq_s16(M10, M11); \
106 M8 = vminq_s16(M8, M10); \
107 int16x4_t t = vpmin_s16(vget_low_s16(M8), vget_high_s16(M8)); \
108 t = vpmin_s16(t, t); \
109 t = vpmin_s16(t, t); \
110 M8 = vdupq_lane_s16(t, 0); \
111 M0 = vqsubq_s16(M0, M8); \
112 M1 = vqsubq_s16(M1, M8); \
113 M2 = vqsubq_s16(M2, M8); \
114 M3 = vqsubq_s16(M3, M8); \
115 M4 = vqsubq_s16(M4, M8); \
116 M5 = vqsubq_s16(M5, M8); \
117 M6 = vqsubq_s16(M6, M8); \
118 M7 = vqsubq_s16(M7, M8); \
124 int16_t *__restrict out = __builtin_assume_aligned(outa, 8);
125 int16_t *__restrict sums = __builtin_assume_aligned(sumsa, 8);
126 int16x8_t m0, m1, m2, m3, m4, m5, m6;
130 input = vld1_s16(val);
131 m2 = vcombine_s16(input, input);
134 m0 = vld1q_s16(&out[0]);
135 m1 = vld1q_s16(&out[8]);
137 m0 = vmulq_s16(m2, m0);
138 m1 = vmulq_s16(m2, m1);
139 m2 = vcombine_s16(vpadd_s16(vget_low_s16(m0), vget_high_s16(m0)),
140 vpadd_s16(vget_low_s16(m1), vget_high_s16(m1)));
143 m0 = vld1q_s16(&sums[0]);
144 m1 = vld1q_s16(&sums[8]);
154 vst1q_s16(&sums[0], m2);
155 vst1q_s16(&sums[8], m6);
156 vst1q_s16(&
paths[0], m5);
157 vst1q_s16(&
paths[8], m4);
163 int16_t *__restrict out = __builtin_assume_aligned(outa, 8);
164 int16_t *__restrict sums = __builtin_assume_aligned(sumsa, 8);
165 int16x8_t m0, m1, m2, m3, m4, m5, m6;
169 input = vld1_s16(val);
170 m4 = vcombine_s16(input, input);
173 m0 = vld1q_s16(&out[0]);
174 m1 = vld1q_s16(&out[8]);
175 m2 = vld1q_s16(&out[16]);
176 m3 = vld1q_s16(&out[24]);
181 m0 = vld1q_s16(&sums[0]);
182 m1 = vld1q_s16(&sums[8]);
192 vst1q_s16(&sums[0], m2);
193 vst1q_s16(&sums[8], m6);
194 vst1q_s16(&
paths[0], m5);
195 vst1q_s16(&
paths[8], m4);
201 int16_t *__restrict out = __builtin_assume_aligned(outa, 8);
202 int16_t *__restrict sums = __builtin_assume_aligned(sumsa, 8);
203 int16x8_t m0, m1, m2, m3, m4, m5, m6, m7;
204 int16x8_t m8, m9, m10, m11, m12, m13, m14, m15;
208 m0 = vld1q_s16(&sums[0]);
209 m1 = vld1q_s16(&sums[8]);
210 m2 = vld1q_s16(&sums[16]);
211 m3 = vld1q_s16(&sums[24]);
212 m4 = vld1q_s16(&sums[32]);
213 m5 = vld1q_s16(&sums[40]);
214 m6 = vld1q_s16(&sums[48]);
215 m7 = vld1q_s16(&sums[56]);
218 NEON_DEINTERLEAVE_K7(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11, m12, m13, m14, m15)
221 input = vld1_s16(val);
222 m7 = vcombine_s16(input, input);
225 m0 = vld1q_s16(&out[0]);
226 m1 = vld1q_s16(&out[8]);
227 m2 = vld1q_s16(&out[16]);
228 m3 = vld1q_s16(&out[24]);
232 m0 = vld1q_s16(&out[32]);
233 m1 = vld1q_s16(&out[40]);
234 m2 = vld1q_s16(&out[48]);
235 m3 = vld1q_s16(&out[56]);
243 vst1q_s16(&
paths[0], m0);
244 vst1q_s16(&
paths[8], m2);
245 vst1q_s16(&
paths[32], m9);
246 vst1q_s16(&
paths[40], m11);
252 vst1q_s16(&
paths[16], m0);
253 vst1q_s16(&
paths[24], m9);
254 vst1q_s16(&
paths[48], m13);
255 vst1q_s16(&
paths[56], m15);
258 NEON_NORMALIZE_K7(m4, m1, m5, m3, m6, m2, m7, m11, m0, m8, m9, m10)
260 vst1q_s16(&sums[0], m4);
261 vst1q_s16(&sums[8], m5);
262 vst1q_s16(&sums[16], m6);
263 vst1q_s16(&sums[24], m7);
264 vst1q_s16(&sums[32], m1);
265 vst1q_s16(&sums[40], m3);
266 vst1q_s16(&sums[48], m2);
267 vst1q_s16(&sums[56], m11);
273 int16_t *__restrict out = __builtin_assume_aligned(outa, 8);
274 int16_t *__restrict sums = __builtin_assume_aligned(sumsa, 8);
275 int16x8_t m0, m1, m2, m3, m4, m5, m6, m7;
276 int16x8_t m8, m9, m10, m11, m12, m13, m14, m15;
280 m0 = vld1q_s16(&sums[0]);
281 m1 = vld1q_s16(&sums[8]);
282 m2 = vld1q_s16(&sums[16]);
283 m3 = vld1q_s16(&sums[24]);
284 m4 = vld1q_s16(&sums[32]);
285 m5 = vld1q_s16(&sums[40]);
286 m6 = vld1q_s16(&sums[48]);
287 m7 = vld1q_s16(&sums[56]);
290 NEON_DEINTERLEAVE_K7(m0, m1, m2, m3, m4, m5, m6, m7, m8, m9, m10, m11, m12, m13, m14, m15)
293 input = vld1_s16(val);
294 m7 = vcombine_s16(input, input);
297 m0 = vld1q_s16(&out[0]);
298 m1 = vld1q_s16(&out[8]);
299 m2 = vld1q_s16(&out[16]);
300 m3 = vld1q_s16(&out[24]);
304 m0 = vld1q_s16(&out[32]);
305 m1 = vld1q_s16(&out[40]);
306 m2 = vld1q_s16(&out[48]);
307 m3 = vld1q_s16(&out[56]);
311 m0 = vld1q_s16(&out[64]);
312 m1 = vld1q_s16(&out[72]);
313 m2 = vld1q_s16(&out[80]);
314 m3 = vld1q_s16(&out[88]);
318 m0 = vld1q_s16(&out[96]);
319 m1 = vld1q_s16(&out[104]);
320 m2 = vld1q_s16(&out[112]);
321 m3 = vld1q_s16(&out[120]);
329 vst1q_s16(&
paths[0], m0);
330 vst1q_s16(&
paths[8], m2);
331 vst1q_s16(&
paths[32], m9);
332 vst1q_s16(&
paths[40], m11);
338 vst1q_s16(&
paths[16], m0);
339 vst1q_s16(&
paths[24], m9);
340 vst1q_s16(&
paths[48], m13);
341 vst1q_s16(&
paths[56], m15);
344 NEON_NORMALIZE_K7(m4, m1, m5, m3, m6, m2, m7, m11, m0, m8, m9, m10)
346 vst1q_s16(&sums[0], m4);
347 vst1q_s16(&sums[8], m5);
348 vst1q_s16(&sums[16], m6);
349 vst1q_s16(&sums[24], m7);
350 vst1q_s16(&sums[32], m1);
351 vst1q_s16(&sums[40], m3);
352 vst1q_s16(&sums[48], m2);
353 vst1q_s16(&sums[56], m11);
uint8_t * state_history
state history [len][n_states]
Definition: conv.h:117
int i_idx
Next input bit index.
Definition: conv.h:82
int num_states
Definition: conv_acc.c:168
static void acs_butterfly(int state, int num_states, int16_t metric, int16_t *sum, int16_t *new_sum, int16_t *path)
Definition: conv_acc_generic.c:36
uint64_t bitvec_read_field(struct bitvec *bv, unsigned int *read_index, unsigned int len)
read part of the vector
Definition: bitvec.c:477
int p_idx
puncture index
Definition: conv.h:113
uint8_t * data
pointer to data array
Definition: bitvec.h:49
int16_t bitvec_get_int16_msb(const struct bitvec *bv, unsigned int num_bits)
get multiple bits (num_bits) from beginning of vector (MSB side)
Definition: bitvec.c:252
int n
Definition: conv_acc.c:184
struct log_target * osmo_stderr_target
the default logging target, logging to stderr
Definition: application.c:85
void log_add_target(struct log_target *target)
Register a new log target with the logging core.
Definition: logging.c:705
int p_idx
Current puncture index.
Definition: conv.h:83
int bitvec_get_bytes(struct bitvec *bv, uint8_t *bytes, unsigned int count)
get multiple bytes from current pos Assumes MSB first encoding.
Definition: bitvec.c:328
int bitvec_get_bit_high(struct bitvec *bv)
get the next bit (low/high) inside a bitvec
Definition: bitvec.c:186
int osmo_ubit2pbit(pbit_t *out, const ubit_t *in, unsigned int num_bits)
convert unpacked bits to packed bits, return length in bytes
Definition: bits.c:45
enum osmo_conv_term term
Termination type.
Definition: conv.h:57
unsigned int * ae_next
next accumulated error (tmp in scan)
Definition: conv.h:116
int bitvec_set_bit_pos(struct bitvec *bv, unsigned int bitnum, enum bit_value bit)
set a bit at given position in a bit vector
Definition: bitvec.c:147
static void _osmo_backtrace(int use_printf, int subsys, int level)
Definition: backtrace.c:36
int osmo_t4_encode(struct bitvec *bv)
encode bit vector in-place using T4 encoding Assumes MSB first encoding.
Definition: bitcomp.c:316
static void _traceback(struct vdecoder *dec, unsigned state, uint8_t *out, int len)
Definition: conv_acc.c:458
static int depuncture(const int8_t *in, const int *punc, int8_t *out, int len)
Definition: conv_acc.c:614
int osmo_pbit2ubit(ubit_t *out, const pbit_t *in, unsigned int num_bits)
convert packed bits to unpacked bits, return length in bytes
Definition: bits.c:146
uint8_t state
Current state.
Definition: conv.h:84
enum bit_value bitvec_get_bit_pos(const struct bitvec *bv, unsigned int bitnr)
check if the bit is 0 or 1 for a given position inside a bitvec
Definition: bitvec.c:81
static size_t len(const char *str)
unsigned int bitvec_pack(const struct bitvec *bv, uint8_t *buffer)
Export a bit vector to a buffer.
Definition: bitvec.c:432
@ ZERO
A zero (0) bit.
Definition: bitvec.h:39
int osmo_init_logging2(void *ctx, const struct log_info *log_info)
Definition: application.c:120
write Write running configuration to or terminal n Write configuration to the copy running config startup Copy configuration n Copy running config to n Copy running config to startup write Write running configuration to or terminal n Write to terminal n
#define OSMO_ASSERT(exp)
Helper macro to terminate when an assertion fails.
Definition: utils.h:104
int bitvec_set_bit(struct bitvec *bv, enum bit_value bit)
set the next bit inside a bitvec
Definition: bitvec.c:173
char subsys[16]
logging sub-system
Definition: gsmtap.h:9
int bitvec_find_bit_pos(const struct bitvec *bv, unsigned int n, enum bit_value val)
find first bit set in bit vector
Definition: bitvec.c:308
static int vdec_init(struct vdecoder *dec, const struct osmo_conv_code *code)
Definition: conv_acc.c:537
void bitvec_free(struct bitvec *bv)
Free a bit vector (release its memory)
Definition: bitvec.c:420
void osmo_conv_encode_init(struct osmo_conv_encoder *encoder, const struct osmo_conv_code *code)
Initialize a convolutional encoder.
Definition: conv.c:87
int len
Definition: conv_acc.c:186
void osmo_conv_decode_reset(struct osmo_conv_decoder *decoder, int start_state)
Definition: conv.c:276
#define NEON_BUTTERFLY(M0, M1, M2, M3, M4)
Definition: conv_acc_neon_impl.h:33
int bitvec_set_bits(struct bitvec *bv, const enum bit_value *bits, unsigned int count)
set multiple bits (based on array of bitvals) at current pos
Definition: bitvec.c:202
void osmo_nibble_shift_left_unal(uint8_t *out, const uint8_t *in, unsigned int num_nibbles)
Shift unaligned input to octet-aligned output.
Definition: bits.c:100
#define NEON_DEINTERLEAVE_K5(M0, M1, M2, M3)
Definition: conv_acc_neon_impl.h:45
int len
Max o_idx (excl.
Definition: conv.h:110
unsigned int data_len
length of data array in bytes
Definition: bitvec.h:48
bit_value
A single GSM bit.
Definition: bitvec.h:38
convolutional encoder state
Definition: conv.h:80
#define BIT2NRZ(REG, N)
Definition: conv_acc.c:33
Logging configuration, passed to log_init.
Definition: logging.h:225
int osmo_conv_decode_get_output(struct osmo_conv_decoder *decoder, ubit_t *output, int has_flush, int end_state)
Definition: conv.c:533
int osmo_ctx_init(const char *id)
Definition: context.c:31
struct log_target * log_target_create_stderr(void)
Create the STDERR log target.
Definition: logging.c:951
static unsigned bitswap6(unsigned v)
Definition: conv_acc.c:241
__always_inline void _neon_metrics_k5_n4(const int16_t *val, const int16_t *outa, int16_t *sumsa, int16_t *paths, int norm)
Definition: conv_acc_neon_impl.h:160
int osmo_conv_decode_acc(const struct osmo_conv_code *code, const sbit_t *input, ubit_t *output)
Definition: conv_acc.c:718
const uint8_t * next_term_state
Flush termination state
Definition: conv.h:63
int intrvl
Definition: conv_acc.c:188
static unsigned bitswap2(unsigned v)
Definition: conv_acc.c:218
int o_idx
output index
Definition: conv.h:112
int recursive
Definition: conv_acc.c:187
static void gen_branch_metrics_n4(int num_states, const int8_t *seq, const int16_t *out, int16_t *metrics)
Definition: conv_acc_generic.c:94
int osmo_conv_encode(const struct osmo_conv_code *code, const ubit_t *input, ubit_t *output)
All-in-one convolutional encoding function.
Definition: conv.c:214
const struct osmo_conv_code * code
for which code?
Definition: conv.h:106
static int gen_state_info(uint8_t *val, unsigned reg, int16_t *output, const struct osmo_conv_code *code)
Definition: conv_acc.c:291
#define NEON_BRANCH_METRIC_N4(M0, M1, M2, M3, M4, M5)
Definition: conv_acc_neon_impl.h:76
void osmo_revbytebits_buf(uint8_t *buf, int len)
reverse bit-order of each byte in a buffer
Definition: bits.c:309
int osmo_daemonize(void)
Turn the current process into a background daemon.
Definition: application.c:143
unsigned int * ae
accumulated error
Definition: conv.h:115
void bitvec_shiftl(struct bitvec *bv, unsigned n)
Shifts bitvec to the left, n MSB bits lost.
Definition: bitvec.c:638
struct vtrellis trellis
Definition: conv_acc.c:189
static void forward_traverse(struct vdecoder *dec, const int8_t *seq)
Definition: conv_acc.c:636
unsigned bitvec_rl_curbit(struct bitvec *bv, bool b, int max_bits)
Return number (bits) of uninterrupted bit run in vector starting from the current bit.
Definition: bitvec.c:600
int8_t sbit_t
soft bit with value (-127...127), as commonly used in communications receivers such as [viterbi] deco...
Definition: bits.h:21
int log_targets_reopen(void)
close and re-open all log files (for log file rotation)
Definition: logging.c:1075
void osmo_init_ignore_signals(void)
Ignore SIGPIPE, SIGALRM, SIGHUP and SIGIO.
Definition: application.c:93
uint8_t level
logging level
Definition: gsmtap.h:6
#define NEON_ALIGN
Definition: conv_acc_neon.c:37
static uint16_t osmo_load16be(const void *p)
load unaligned 16-bit integer (big-endian encoding)
Definition: bit16gen.h:112
#define NUM_STATES(K)
Definition: conv_acc.c:34
int16_t ** paths
Definition: conv_acc.c:190
const uint8_t(* next_output)[2]
Next output array.
Definition: conv.h:59
#define __always_inline
Definition: conv_acc_neon_impl.h:30
structure representing a logging target
Definition: logging.h:267
__attribute__((visibility("hidden")))
Definition: conv_acc_neon.c:46
void(* metric_func)(const int8_t *, const int16_t *, int16_t *, int16_t *, int)
Definition: conv_acc.c:192
per-thread talloc contexts.
Definition: talloc.h:10
int16_t * outputs
Definition: conv_acc.c:170
static int traceback(struct vdecoder *dec, uint8_t *out, int term, int len)
Definition: conv_acc.c:488
#define NEON_BRANCH_METRIC_N2(M0, M1, M2, M3, M4, M6, M7)
Definition: conv_acc_neon_impl.h:66
static unsigned bitswap4(unsigned v)
Definition: conv_acc.c:229
convolutional decoder state
Definition: conv.h:105
void osmo_conv_encode_load_state(struct osmo_conv_encoder *encoder, const ubit_t *input)
Definition: conv.c:96
__attribute__((visibility("hidden")))
Definition: conv_acc.c:50
void osmo_panic(const char *fmt,...) __attribute__((noreturn))
Terminate the current program with a panic.
Definition: panic.c:75
static int init_complete
Definition: conv_acc.c:48
@ CONV_TERM_TAIL_BITING
Tail biting.
Definition: conv.h:43
static __attribute__((constructor))
Definition: context.c:47
int osmo_conv_get_output_length(const struct osmo_conv_code *code, int len)
Definition: conv.c:55
static const uint8_t flip_table[256]
Definition: bits.c:239
static __always_inline void _neon_metrics_k7_n2(const int16_t *val, const int16_t *outa, int16_t *sumsa, int16_t *paths, int norm)
Definition: conv_acc_neon_impl.h:198
uint32_t osmo_bit_reversal(uint32_t x, enum osmo_br_mode k)
generalized bit reversal function
Definition: bits.c:268
static unsigned bitswap3(unsigned v)
Definition: conv_acc.c:223
static int gen_recursive_state_info(uint8_t *val, unsigned reg, int16_t *output, const struct osmo_conv_code *code)
Definition: conv_acc.c:348
int osmo_conv_encode_flush(struct osmo_conv_encoder *encoder, ubit_t *output)
Definition: conv.c:168
static int t4_rle(struct bitvec *bv, unsigned len, bool b)
Make-up codes for a given length.
Definition: bitcomp.c:230
static int conv_code_recursive(const struct osmo_conv_code *code)
Definition: conv_acc.c:197
unsigned int bitvec_add_array(struct bitvec *bv, const uint32_t *array, unsigned int array_len, bool dry_run, unsigned int num_bits)
Add given array to bitvec.
Definition: bitvec.c:680
int osmo_conv_decode_scan(struct osmo_conv_decoder *decoder, const sbit_t *input, int n)
Definition: conv.c:327
uint32_t osmo_revbytebits_32(uint32_t x)
reverse the bit-order in each byte of a dword
Definition: bits.c:285
int16_t * sums
Definition: conv_acc.c:169
int osmo_init_logging(const struct log_info *log_info)
Initialize the osmocom logging framework.
Definition: application.c:115
int bitvec_set_u64(struct bitvec *bv, uint64_t v, uint8_t num_bits, bool use_lh)
set multiple bits (based on numeric value) at current pos.
Definition: bitvec.c:221
#define NEON_NORMALIZE_K5(M0, M1, M2, M3)
Definition: conv_acc_neon_impl.h:87
void osmo_conv_decode_rewind(struct osmo_conv_decoder *decoder)
Definition: conv.c:297
__always_inline void _neon_metrics_k5_n2(const int16_t *val, const int16_t *outa, int16_t *sumsa, int16_t *paths, int norm)
Definition: conv_acc_neon_impl.h:121
uint8_t pbit_t
packed bits (8 bits in a byte).
Definition: bits.h:30
static unsigned gen_output(struct vstate *state, int val, const struct osmo_conv_code *code)
Definition: conv_acc.c:274
static unsigned gen_recursive_output(struct vstate *state, uint8_t *val, unsigned reg, const struct osmo_conv_code *code, int pos)
Definition: conv_acc.c:316
static const unsigned t4_term[2][64]
Definition: bitcomp.c:43
uint32_t osmo_revbytebits_8(uint8_t x)
reverse the bit order in a byte
Definition: bits.c:298
uint32_t pid
process ID
Definition: gsmtap.h:5
void osmo_sbit2ubit(ubit_t *out, const sbit_t *in, unsigned int num_bits)
convert soft bits to unpacked bits
Definition: bits.c:133
if(vty->type==VTY_SHELL_SERV)
static int conv_decode(struct vdecoder *dec, const int8_t *seq, const int *punc, uint8_t *out, int len, int term)
Definition: conv_acc.c:654
struct abis_rsl_common_hdr c
int osmo_conv_decode(const struct osmo_conv_code *code, const sbit_t *input, ubit_t *output)
All-in-one convolutional decoding function.
Definition: conv.c:609
int gsm48_generate_mid_from_tmsi *(uint8_t *buf, uint32_t tmsi) OSMO_DEPRECATED_OUTSIDE("Instead u l))
int osmo_hexparse(const char *str, uint8_t *b, int max_len)
Parse a string containing hexadecimal digits.
Definition: utils.c:244
static void osmo_conv_init(void)
Definition: conv_acc.c:673
int osmo_conv_decode_flush(struct osmo_conv_decoder *decoder, const sbit_t *input)
Definition: conv.c:428
int bitvec_write_field(struct bitvec *bv, unsigned int *write_index, uint64_t val, unsigned int len)
write into the vector
Definition: bitvec.c:501
struct bitvec * bitvec_alloc(unsigned int size, TALLOC_CTX *bvctx)
Allocate a bit vector.
Definition: bitvec.c:401
static void _traceback_rec(struct vdecoder *dec, unsigned state, uint8_t *out, int len)
Definition: conv_acc.c:471
structure describing a bit vector
Definition: bitvec.h:46
void bitvec_to_string_r(const struct bitvec *bv, char *str)
prints bit vector to provided string It's caller's responsibility to ensure that we won't shoot him i...
Definition: bitvec.c:534
static const unsigned t4_make_up[2][15]
Definition: bitcomp.c:188
void * global
global per-thread talloc context.
Definition: talloc.h:12
static unsigned leading_bits(uint8_t x, bool b)
Definition: bitvec.c:548
void bitvec_shiftl(struct bitvec *bv, unsigned int n)
static void gen_branch_metrics_n2(int num_states, const int8_t *seq, const int16_t *out, int16_t *metrics)
Definition: conv_acc_generic.c:69
@ ONE
A one (1) bit.
Definition: bitvec.h:40
const uint8_t(* next_state)[2]
Next state array
Definition: conv.h:60
const struct osmo_conv_code * code
for which code?
Definition: conv.h:81
void osmo_generate_backtrace(void)
Generate and print a call back-trace.
Definition: backtrace.c:67
@ CONV_TERM_FLUSH
Flush encoder state.
Definition: conv.h:41
int K
Constraint length.
Definition: conv.h:54
void osmo_conv_decode_init(struct osmo_conv_decoder *decoder, const struct osmo_conv_code *code, int len, int start_state)
Definition: conv.c:248
__attribute__((visibility("hidden")))
Definition: conv_acc_generic.c:134
int osmo_conv_get_input_length(const struct osmo_conv_code *code, int len)
Definition: conv.c:49
const int * puncture
Punctured bits indexes.
Definition: conv.h:65
static unsigned int bytenum_from_bitnum(unsigned int bitnum)
Definition: bitvec.c:52
int bitvec_set_bytes(struct bitvec *bv, const uint8_t *bytes, unsigned int count)
set multiple bytes at current pos Assumes MSB first encoding.
Definition: bitvec.c:364
uint8_t ubit_t
unpacked bit (0 or 1): 1 bit per byte
Definition: bits.h:24
#define ARRAY_SIZE(x)
Determine number of elements in an array of static size.
Definition: utils.h:19
static uint8_t bitval2mask(enum bit_value bit, uint8_t bitnum)
Definition: bitvec.c:60
int N
Inverse of code rate.
Definition: conv.h:53
static void gen_path_metrics(int num_states, int16_t *sums, int16_t *metrics, int16_t *paths, int norm)
Definition: conv_acc_generic.c:108
const uint8_t * next_term_output
Flush termination output.
Definition: conv.h:62
static int generate_trellis(struct vdecoder *dec, const struct osmo_conv_code *code)
Definition: conv_acc.c:405
static void osmo_store16be(uint16_t x, void *p)
store unaligned 16-bit integer (big-endian encoding)
Definition: bit16gen.h:125
osmo_br_mode
bit-reversal mode for osmo_bit_reversal()
Definition: bits.h:93
int k
Definition: conv_acc.c:185
uint8_t * vals
Definition: conv_acc.c:171
static void free_trellis(struct vtrellis *trellis)
Definition: conv_acc.c:389
void bitvec_zero(struct bitvec *bv)
force bit vector to all 0 and current bit to the beginnig of the vector
Definition: bitvec.c:570
static const unsigned t4_term_length[2][64]
Definition: bitcomp.c:178
@ H
A CSN.1 "H" bit.
Definition: bitvec.h:42
static void vdec_deinit(struct vdecoder *dec)
Definition: conv_acc.c:520
unsigned bitvec_rl(const struct bitvec *bv, bool b)
Return number (bits) of uninterrupted bit run in vector starting from the MSB.
Definition: bitvec.c:581
void int log_init(const struct log_info *inf, void *talloc_ctx)
Initialize the Osmocom logging core.
Definition: logging.c:1105
enum bit_value bitvec_get_bit_pos_high(const struct bitvec *bv, unsigned int bitnr)
check if the bit is L or H for a given position inside a bitvec
Definition: bitvec.c:103
#define LOGP(ss, level, fmt, args...)
Log a new message through the Osmocom logging framework.
Definition: logging.h:43
int osmo_conv_encode_raw(struct osmo_conv_encoder *encoder, const ubit_t *input, ubit_t *output, int n)
Definition: conv.c:139
int bitvec_spare_padding(struct bitvec *bv, unsigned int up_to_bit)
pad all remaining bits up to a given bit number
Definition: bitvec.c:297
char bit_value_to_char(enum bit_value v)
convert enum to corresponding character
Definition: bitvec.c:519
static unsigned vstate_lshift(unsigned reg, int k, int val)
Definition: conv_acc.c:203
unsigned int cur_bit
cursor to the next unused bit
Definition: bitvec.h:47
int len
Definition: conv.h:55
void osmo_ubit2sbit(sbit_t *out, const ubit_t *in, unsigned int num_bits)
convert unpacked bits to soft bits
Definition: bits.c:121
static unsigned bitswap(unsigned v, unsigned n)
Definition: conv_acc.c:247
Definition: conv_acc.c:183
void osmo_log_backtrace(int subsys, int level)
Generate and log a call back-trace.
Definition: backtrace.c:79
#define NEON_DEINTERLEAVE_K7(M0, M1, M2, M3, M4, M5, M6, M7, M8, M9, M10, M11, M12, M13, M14, M15)
Definition: conv_acc_neon_impl.h:53
void * select
volatile select-dispatch context.
Definition: talloc.h:19
static int _conv_encode_do_output(struct osmo_conv_encoder *encoder, uint8_t out, ubit_t *output)
Definition: conv.c:109
static void gen_branch_metrics_n3(int num_states, const int8_t *seq, const int16_t *out, int16_t *metrics)
Definition: conv_acc_generic.c:81
int n_states
number of states
Definition: conv.h:108
int bitvec_set_uint(struct bitvec *bv, unsigned int in, unsigned int count)
set multiple bits (based on numeric value) at current pos.
Definition: bitvec.c:245
uint8_t k[OSMO_A5_MAX_KEY_LEN_BYTES]
int osmo_pbit2ubit_ext(ubit_t *out, unsigned int out_ofs, const pbit_t *in, unsigned int in_ofs, unsigned int num_bits, int lsb_mode)
convert packed bits to unpacked bits (extended options)
Definition: bits.c:216
int bitvec_get_uint(struct bitvec *bv, unsigned int num_bits)
get multiple bits (based on numeric value) from current pos
Definition: bitvec.c:265
int osmo_ubit2pbit_ext(pbit_t *out, unsigned int out_ofs, const ubit_t *in, unsigned int in_ofs, unsigned int num_bits, int lsb_mode)
convert unpacked bits to packed bits (extended options)
Definition: bits.c:191
static void sighup_hdlr(int signal)
Definition: application.c:87
#define MAX_AE
Definition: conv.c:240
static __always_inline void _neon_metrics_k7_n4(const int16_t *val, const int16_t *outa, int16_t *sumsa, int16_t *paths, int norm)
Definition: conv_acc_neon_impl.h:270
static unsigned bitswap5(unsigned v)
Definition: conv_acc.c:235
void log_set_all_filter(struct log_target *target, int)
Enable the LOG_FLT_ALL log filter.
Definition: logging.c:753
void osmo_conv_decode_deinit(struct osmo_conv_decoder *decoder)
Definition: conv.c:317
structure describing a given convolutional code
Definition: conv.h:52
int bitvec_fill(struct bitvec *bv, unsigned int num_bits, enum bit_value fill)
fill num_bits with \fill starting from the current position
Definition: bitvec.c:285
#define INIT_POINTERS(simd)
Definition: conv_acc.c:36
#define NEON_NORMALIZE_K7(M0, M1, M2, M3, M4, M5, M6, M7, M8, M9, M10, M11)
Definition: conv_acc_neon_impl.h:98
int bitvec_unhex(struct bitvec *bv, const char *src)
read hexadecimap string into a bit vector
Definition: bitvec.c:459
Definition: conv_acc.c:167
unsigned int bitvec_unpack(struct bitvec *bv, const uint8_t *buffer)
Copy buffer of unpacked bits into bit vector.
Definition: bitvec.c:445
__thread struct osmo_talloc_contexts * osmo_ctx
Definition: context.c:29
unsigned int bitvec_get_nth_set_bit(const struct bitvec *bv, unsigned int n)
get the Nth set bit inside the bit vector
Definition: bitvec.c:126
static const unsigned t4_make_up_length[2][15]
Definition: bitcomp.c:183
@ L
A CSN.1 "L" bit.
Definition: bitvec.h:41
void osmo_nibble_shift_right(uint8_t *out, const uint8_t *in, unsigned int num_nibbles)
Shift unaligned input to octet-aligned output.
Definition: bits.c:73