OLD | NEW |
1 //===- subzero/src/IceRNG.h - Random number generator -----------*- C++ -*-===// | 1 //===- subzero/src/IceRNG.h - Random number generator -----------*- C++ -*-===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 // | 9 // |
10 // This file declares a random number generator. | 10 // This file declares a random number generator. |
11 // | 11 // |
12 //===----------------------------------------------------------------------===// | 12 //===----------------------------------------------------------------------===// |
13 | 13 |
14 #ifndef SUBZERO_SRC_ICERNG_H | 14 #ifndef SUBZERO_SRC_ICERNG_H |
15 #define SUBZERO_SRC_ICERNG_H | 15 #define SUBZERO_SRC_ICERNG_H |
16 | 16 |
17 #include <cstdint> | 17 #include <cstdint> |
18 | 18 |
19 #include "llvm/ADT/StringRef.h" | 19 #include "llvm/ADT/StringRef.h" |
20 #include "llvm/Support/Compiler.h" | 20 #include "llvm/Support/Compiler.h" |
21 | 21 |
22 namespace Ice { | 22 namespace Ice { |
23 | 23 |
24 class RandomNumberGenerator { | 24 class RandomNumberGenerator { |
25 RandomNumberGenerator() = delete; | 25 RandomNumberGenerator() = delete; |
26 RandomNumberGenerator(const RandomNumberGenerator &) = delete; | 26 RandomNumberGenerator(const RandomNumberGenerator &) = delete; |
27 RandomNumberGenerator &operator=(const RandomNumberGenerator &) = delete; | 27 RandomNumberGenerator &operator=(const RandomNumberGenerator &) = delete; |
28 | 28 |
29 public: | 29 public: |
30 explicit RandomNumberGenerator(llvm::StringRef Salt); | 30 RandomNumberGenerator(uint64_t Seed, llvm::StringRef Salt); |
31 uint64_t next(uint64_t Max); | 31 uint64_t next(uint64_t Max); |
32 | 32 |
33 private: | 33 private: |
34 uint64_t State; | 34 uint64_t State; |
35 }; | 35 }; |
36 | 36 |
37 // This class adds additional random number generator utilities. The | 37 // This class adds additional random number generator utilities. The |
38 // reason for the wrapper class is that we want to keep the | 38 // reason for the wrapper class is that we want to keep the |
39 // RandomNumberGenerator interface identical to LLVM's. | 39 // RandomNumberGenerator interface identical to LLVM's. |
40 class RandomNumberGeneratorWrapper { | 40 class RandomNumberGeneratorWrapper { |
41 RandomNumberGeneratorWrapper() = delete; | 41 RandomNumberGeneratorWrapper() = delete; |
42 RandomNumberGeneratorWrapper(const RandomNumberGeneratorWrapper &) = delete; | 42 RandomNumberGeneratorWrapper(const RandomNumberGeneratorWrapper &) = delete; |
43 RandomNumberGeneratorWrapper & | 43 RandomNumberGeneratorWrapper & |
44 operator=(const RandomNumberGeneratorWrapper &) = delete; | 44 operator=(const RandomNumberGeneratorWrapper &) = delete; |
45 | 45 |
46 public: | 46 public: |
47 uint64_t operator()(uint64_t Max) { return RNG.next(Max); } | 47 uint64_t operator()(uint64_t Max) { return RNG.next(Max); } |
48 bool getTrueWithProbability(float Probability); | 48 bool getTrueWithProbability(float Probability); |
49 explicit RandomNumberGeneratorWrapper(RandomNumberGenerator &RNG) | 49 explicit RandomNumberGeneratorWrapper(RandomNumberGenerator &RNG) |
50 : RNG(RNG) {} | 50 : RNG(RNG) {} |
51 | 51 |
52 private: | 52 private: |
53 RandomNumberGenerator &RNG; | 53 RandomNumberGenerator &RNG; |
54 }; | 54 }; |
55 | 55 |
56 } // end of namespace Ice | 56 } // end of namespace Ice |
57 | 57 |
58 #endif // SUBZERO_SRC_ICERNG_H | 58 #endif // SUBZERO_SRC_ICERNG_H |
OLD | NEW |