/* * Copyright (c) 2025 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include "random.h" #include // written in 2015 by Sebastiano Vigna https://prng.di.unimi.it/splitmix64.c static inline uint64_t splitmix64_next(uint64_t *state) { uint64_t z = (*state += 0x9e3779b97f4a7c15); z = (z ^ (z >> 30)) * 0xbf58476d1ce4e5b9; z = (z ^ (z >> 27)) * 0x94d049bb133111eb; return z ^ (z >> 31); } static inline uint64_t rotl64(uint64_t x, int8_t r) { return (x << r) | (x >> (64 - r)); } // fast alternative to x % n static inline uint64_t fast_bound(uint64_t x, uint64_t n) { uint128_t mul = (uint128_t)x * (uint128_t)n; return (uint64_t)(mul >> 64); } // initial state as if random_set_seed(1337) was called uint64_t romuduojr_x_state = 13161956497586561035ull; uint64_t romuduojr_y_state = 14663483216071361993ull; void random_set_seed(uint64_t seed) { romuduojr_x_state = splitmix64_next(&seed); romuduojr_y_state = splitmix64_next(&seed); } uint64_t random_next(void) { const uint64_t xp = romuduojr_x_state; romuduojr_x_state = 15241094284759029579ull * romuduojr_y_state; romuduojr_y_state = romuduojr_y_state - xp; romuduojr_y_state = rotl64(romuduojr_y_state, 27); return xp; } uint64_t random_below(uint64_t upper_bound) { return fast_bound(random_next(), upper_bound); }