blob: d1294f2666b75b6b778f2b309e3bbe04d3af40c1 [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001// Copyright 2013 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_
6#define V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_
7
8#include "src/base/macros.h"
9
10namespace v8 {
11namespace base {
12
13// -----------------------------------------------------------------------------
14// RandomNumberGenerator
15//
16// This class is used to generate a stream of pseudorandom numbers. The class
17// uses a 48-bit seed, which is modified using a linear congruential formula.
18// (See Donald Knuth, The Art of Computer Programming, Volume 3, Section 3.2.1.)
19// If two instances of RandomNumberGenerator are created with the same seed, and
20// the same sequence of method calls is made for each, they will generate and
21// return identical sequences of numbers.
22// This class uses (probably) weak entropy by default, but it's sufficient,
23// because it is the responsibility of the embedder to install an entropy source
24// using v8::V8::SetEntropySource(), which provides reasonable entropy, see:
25// https://code.google.com/p/v8/issues/detail?id=2905
26// This class is neither reentrant nor threadsafe.
27
28class RandomNumberGenerator FINAL {
29 public:
30 // EntropySource is used as a callback function when V8 needs a source of
31 // entropy.
32 typedef bool (*EntropySource)(unsigned char* buffer, size_t buflen);
33 static void SetEntropySource(EntropySource entropy_source);
34
35 RandomNumberGenerator();
36 explicit RandomNumberGenerator(int64_t seed) { SetSeed(seed); }
37
38 // Returns the next pseudorandom, uniformly distributed int value from this
39 // random number generator's sequence. The general contract of |NextInt()| is
40 // that one int value is pseudorandomly generated and returned.
41 // All 2^32 possible integer values are produced with (approximately) equal
42 // probability.
43 V8_INLINE int NextInt() WARN_UNUSED_RESULT {
44 return Next(32);
45 }
46
47 // Returns a pseudorandom, uniformly distributed int value between 0
48 // (inclusive) and the specified max value (exclusive), drawn from this random
49 // number generator's sequence. The general contract of |NextInt(int)| is that
50 // one int value in the specified range is pseudorandomly generated and
51 // returned. All max possible int values are produced with (approximately)
52 // equal probability.
53 int NextInt(int max) WARN_UNUSED_RESULT;
54
55 // Returns the next pseudorandom, uniformly distributed boolean value from
56 // this random number generator's sequence. The general contract of
57 // |NextBoolean()| is that one boolean value is pseudorandomly generated and
58 // returned. The values true and false are produced with (approximately) equal
59 // probability.
60 V8_INLINE bool NextBool() WARN_UNUSED_RESULT {
61 return Next(1) != 0;
62 }
63
64 // Returns the next pseudorandom, uniformly distributed double value between
65 // 0.0 and 1.0 from this random number generator's sequence.
66 // The general contract of |NextDouble()| is that one double value, chosen
67 // (approximately) uniformly from the range 0.0 (inclusive) to 1.0
68 // (exclusive), is pseudorandomly generated and returned.
69 double NextDouble() WARN_UNUSED_RESULT;
70
Emily Bernierd0a1eb72015-03-24 16:35:39 -040071 // Returns the next pseudorandom, uniformly distributed int64 value from this
72 // random number generator's sequence. The general contract of |NextInt64()|
73 // is that one 64-bit int value is pseudorandomly generated and returned.
74 // All 2^64 possible integer values are produced with (approximately) equal
75 // probability.
76 int64_t NextInt64() WARN_UNUSED_RESULT;
77
Ben Murdochb8a8cc12014-11-26 15:28:44 +000078 // Fills the elements of a specified array of bytes with random numbers.
79 void NextBytes(void* buffer, size_t buflen);
80
81 // Override the current ssed.
82 void SetSeed(int64_t seed);
83
84 int64_t initial_seed() const { return initial_seed_; }
85
86 private:
87 static const int64_t kMultiplier = V8_2PART_UINT64_C(0x5, deece66d);
88 static const int64_t kAddend = 0xb;
89 static const int64_t kMask = V8_2PART_UINT64_C(0xffff, ffffffff);
90
91 int Next(int bits) WARN_UNUSED_RESULT;
92
93 int64_t initial_seed_;
94 int64_t seed_;
95};
96
97} } // namespace v8::base
98
99#endif // V8_BASE_UTILS_RANDOM_NUMBER_GENERATOR_H_