2009-10-09 18:59:04 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* $RANDOM support.
|
|
|
|
*
|
2009-10-09 21:35:30 +00:00
|
|
|
* Copyright (C) 2009 Denys Vlasenko
|
2009-10-09 18:59:04 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2009-10-09 18:59:04 +00:00
|
|
|
*/
|
2010-01-12 21:11:24 +00:00
|
|
|
#ifndef SHELL_RANDOM_H
|
|
|
|
#define SHELL_RANDOM_H 1
|
|
|
|
|
|
|
|
PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
|
2009-10-09 18:59:04 +00:00
|
|
|
|
|
|
|
typedef struct random_t {
|
2014-03-13 11:52:43 +00:00
|
|
|
/* State of random number generators: */
|
|
|
|
|
|
|
|
/* Galois LFSR (fast but weak) */
|
|
|
|
int32_t galois_LFSR; /* must be signed! */
|
|
|
|
|
|
|
|
/* LCG (fast but weak) */
|
|
|
|
uint32_t LCG;
|
|
|
|
|
|
|
|
/* 64-bit xorshift (fast, moderate strength) */
|
|
|
|
uint32_t xs64_x;
|
|
|
|
uint32_t xs64_y;
|
2009-10-09 18:59:04 +00:00
|
|
|
} random_t;
|
|
|
|
|
2009-10-12 13:25:01 +00:00
|
|
|
#define UNINITED_RANDOM_T(rnd) \
|
|
|
|
((rnd)->galois_LFSR == 0)
|
|
|
|
|
2009-10-09 18:59:04 +00:00
|
|
|
#define INIT_RANDOM_T(rnd, nonzero, v) \
|
2014-03-13 11:52:43 +00:00
|
|
|
((rnd)->galois_LFSR = (rnd)->xs64_x = (nonzero), (rnd)->LCG = (rnd)->xs64_y = (v))
|
2009-10-09 18:59:04 +00:00
|
|
|
|
2009-10-12 13:25:01 +00:00
|
|
|
#define CLEAR_RANDOM_T(rnd) \
|
|
|
|
((rnd)->galois_LFSR = 0)
|
|
|
|
|
2009-10-09 18:59:04 +00:00
|
|
|
uint32_t next_random(random_t *rnd) FAST_FUNC;
|
2010-01-12 21:11:24 +00:00
|
|
|
|
|
|
|
POP_SAVED_FUNCTION_VISIBILITY
|
|
|
|
|
|
|
|
#endif
|