Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * $RANDOM support. |
| 4 | * |
Denys Vlasenko | e3c6e19 | 2009-10-09 23:35:30 +0200 | [diff] [blame] | 5 | * Copyright (C) 2009 Denys Vlasenko |
Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 8 | */ |
Denys Vlasenko | 7306727 | 2010-01-12 22:11:24 +0100 | [diff] [blame] | 9 | #ifndef SHELL_RANDOM_H |
| 10 | #define SHELL_RANDOM_H 1 |
| 11 | |
| 12 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 13 | |
| 14 | typedef struct random_t { |
| 15 | /* Random number generators */ |
| 16 | int32_t galois_LFSR; /* Galois LFSR (fast but weak). signed! */ |
| 17 | uint32_t LCG; /* LCG (fast but weak) */ |
| 18 | } random_t; |
| 19 | |
Denys Vlasenko | 76ace25 | 2009-10-12 15:25:01 +0200 | [diff] [blame] | 20 | #define UNINITED_RANDOM_T(rnd) \ |
| 21 | ((rnd)->galois_LFSR == 0) |
| 22 | |
Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 23 | #define INIT_RANDOM_T(rnd, nonzero, v) \ |
| 24 | ((rnd)->galois_LFSR = (nonzero), (rnd)->LCG = (v)) |
| 25 | |
Denys Vlasenko | 76ace25 | 2009-10-12 15:25:01 +0200 | [diff] [blame] | 26 | #define CLEAR_RANDOM_T(rnd) \ |
| 27 | ((rnd)->galois_LFSR = 0) |
| 28 | |
Denys Vlasenko | 3ea2e82 | 2009-10-09 20:59:04 +0200 | [diff] [blame] | 29 | uint32_t next_random(random_t *rnd) FAST_FUNC; |
Denys Vlasenko | 7306727 | 2010-01-12 22:11:24 +0100 | [diff] [blame] | 30 | |
| 31 | POP_SAVED_FUNCTION_VISIBILITY |
| 32 | |
| 33 | #endif |