Chandler Carruth | 34085df | 2012-03-01 18:58:59 +0000 | [diff] [blame] | 1 | //===-------------- lib/Support/Hashing.cpp -------------------------------===// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Chandler Carruth | 34085df | 2012-03-01 18:58:59 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // This file provides implementation bits for the LLVM common hashing |
| 10 | // infrastructure. Documentation and most of the other information is in the |
| 11 | // header file. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/ADT/Hashing.h" |
| 16 | |
| 17 | using namespace llvm; |
| 18 | |
| 19 | // Provide a definition and static initializer for the fixed seed. This |
| 20 | // initializer should always be zero to ensure its value can never appear to be |
| 21 | // non-zero, even during dynamic initialization. |
Tim Northover | c044509 | 2018-08-30 20:28:32 +0000 | [diff] [blame] | 22 | uint64_t llvm::hashing::detail::fixed_seed_override = 0; |
Chandler Carruth | 34085df | 2012-03-01 18:58:59 +0000 | [diff] [blame] | 23 | |
| 24 | // Implement the function for forced setting of the fixed seed. |
| 25 | // FIXME: Use atomic operations here so that there is no data race. |
Tim Northover | c044509 | 2018-08-30 20:28:32 +0000 | [diff] [blame] | 26 | void llvm::set_fixed_execution_hash_seed(uint64_t fixed_value) { |
Chandler Carruth | 34085df | 2012-03-01 18:58:59 +0000 | [diff] [blame] | 27 | hashing::detail::fixed_seed_override = fixed_value; |
| 28 | } |