mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 20:43:38 +01:00
stdlib: add TinyMT-based rand, and malloc/etc for gint
This commit is contained in:
parent
625a6af459
commit
009a2eef6e
12 changed files with 244 additions and 33 deletions
14
3rdparty/tinymt32/rand.c
vendored
Normal file
14
3rdparty/tinymt32/rand.c
vendored
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include "tinymt32.h"
|
||||||
|
|
||||||
|
static tinymt32_t random;
|
||||||
|
|
||||||
|
void srand(unsigned int seed)
|
||||||
|
{
|
||||||
|
tinymt32_init(&random, seed);
|
||||||
|
}
|
||||||
|
|
||||||
|
int rand(void)
|
||||||
|
{
|
||||||
|
return tinymt32_generate_uint32(&random) & 0x7fffffff;
|
||||||
|
}
|
121
3rdparty/tinymt32/tinymt32.c
vendored
Normal file
121
3rdparty/tinymt32/tinymt32.c
vendored
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
/**
|
||||||
|
* @file tinymt32.c
|
||||||
|
*
|
||||||
|
* @brief Tiny Mersenne Twister only 127 bit internal state
|
||||||
|
*
|
||||||
|
* @author Mutsuo Saito (Hiroshima University)
|
||||||
|
* @author Makoto Matsumoto (The University of Tokyo)
|
||||||
|
*
|
||||||
|
* Copyright (C) 2011 Mutsuo Saito, Makoto Matsumoto,
|
||||||
|
* Hiroshima University and The University of Tokyo.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* The 3-clause BSD License is applied to this software, see
|
||||||
|
* LICENSE.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Note: this is a stripped-down version of TinyMT that only includes the
|
||||||
|
32-bit integer generator. For the full version, please see
|
||||||
|
<https://github.com/MersenneTwister-Lab/TinyMT>. */
|
||||||
|
|
||||||
|
#include "tinymt32.h"
|
||||||
|
|
||||||
|
#define TINYMT32_SH0 1
|
||||||
|
#define TINYMT32_SH1 10
|
||||||
|
#define TINYMT32_SH8 8
|
||||||
|
#define TINYMT32_MASK 0x7fffffff
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function changes internal state of tinymt32.
|
||||||
|
* Users should not call this function directly.
|
||||||
|
* @param random tinymt internal status
|
||||||
|
*/
|
||||||
|
static void tinymt32_next_state(tinymt32_t * random) {
|
||||||
|
uint32_t x;
|
||||||
|
uint32_t y;
|
||||||
|
|
||||||
|
y = random->status[3];
|
||||||
|
x = (random->status[0] & TINYMT32_MASK)
|
||||||
|
^ random->status[1]
|
||||||
|
^ random->status[2];
|
||||||
|
x ^= (x << TINYMT32_SH0);
|
||||||
|
y ^= (y >> TINYMT32_SH0) ^ x;
|
||||||
|
random->status[0] = random->status[1];
|
||||||
|
random->status[1] = random->status[2];
|
||||||
|
random->status[2] = x ^ (y << TINYMT32_SH1);
|
||||||
|
random->status[3] = y;
|
||||||
|
random->status[1] ^= -((int32_t)(y & 1)) & random->mat1;
|
||||||
|
random->status[2] ^= -((int32_t)(y & 1)) & random->mat2;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function outputs 32-bit unsigned integer from internal state.
|
||||||
|
* Users should not call this function directly.
|
||||||
|
* @param random tinymt internal status
|
||||||
|
* @return 32-bit unsigned pseudorandom number
|
||||||
|
*/
|
||||||
|
static uint32_t tinymt32_temper(tinymt32_t * random) {
|
||||||
|
uint32_t t0, t1;
|
||||||
|
t0 = random->status[3];
|
||||||
|
#if defined(LINEARITY_CHECK)
|
||||||
|
t1 = random->status[0]
|
||||||
|
^ (random->status[2] >> TINYMT32_SH8);
|
||||||
|
#else
|
||||||
|
t1 = random->status[0]
|
||||||
|
+ (random->status[2] >> TINYMT32_SH8);
|
||||||
|
#endif
|
||||||
|
t0 ^= t1;
|
||||||
|
t0 ^= -((int32_t)(t1 & 1)) & random->tmat;
|
||||||
|
return t0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function outputs 32-bit unsigned integer from internal state.
|
||||||
|
* @param random tinymt internal status
|
||||||
|
* @return 32-bit unsigned integer r (0 <= r < 2^32)
|
||||||
|
*/
|
||||||
|
uint32_t tinymt32_generate_uint32(tinymt32_t * random) {
|
||||||
|
tinymt32_next_state(random);
|
||||||
|
return tinymt32_temper(random);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define MIN_LOOP 8
|
||||||
|
#define PRE_LOOP 8
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function certificate the period of 2^127-1.
|
||||||
|
* @param random tinymt state vector.
|
||||||
|
*/
|
||||||
|
static void period_certification(tinymt32_t * random) {
|
||||||
|
if ((random->status[0] & TINYMT32_MASK) == 0 &&
|
||||||
|
random->status[1] == 0 &&
|
||||||
|
random->status[2] == 0 &&
|
||||||
|
random->status[3] == 0) {
|
||||||
|
random->status[0] = 'T';
|
||||||
|
random->status[1] = 'I';
|
||||||
|
random->status[2] = 'N';
|
||||||
|
random->status[3] = 'Y';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This function initializes the internal state array with a 32-bit
|
||||||
|
* unsigned integer seed.
|
||||||
|
* @param random tinymt state vector.
|
||||||
|
* @param seed a 32-bit unsigned integer used as a seed.
|
||||||
|
*/
|
||||||
|
void tinymt32_init(tinymt32_t * random, uint32_t seed) {
|
||||||
|
random->status[0] = seed;
|
||||||
|
random->status[1] = random->mat1;
|
||||||
|
random->status[2] = random->mat2;
|
||||||
|
random->status[3] = random->tmat;
|
||||||
|
for (int i = 1; i < MIN_LOOP; i++) {
|
||||||
|
random->status[i & 3] ^= i + UINT32_C(1812433253)
|
||||||
|
* (random->status[(i - 1) & 3]
|
||||||
|
^ (random->status[(i - 1) & 3] >> 30));
|
||||||
|
}
|
||||||
|
period_certification(random);
|
||||||
|
for (int i = 0; i < PRE_LOOP; i++) {
|
||||||
|
tinymt32_next_state(random);
|
||||||
|
}
|
||||||
|
}
|
40
3rdparty/tinymt32/tinymt32.h
vendored
Normal file
40
3rdparty/tinymt32/tinymt32.h
vendored
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#ifndef TINYMT32_H
|
||||||
|
#define TINYMT32_H
|
||||||
|
/**
|
||||||
|
* @file tinymt32.h
|
||||||
|
*
|
||||||
|
* @brief Tiny Mersenne Twister only 127 bit internal state
|
||||||
|
*
|
||||||
|
* @author Mutsuo Saito (Hiroshima University)
|
||||||
|
* @author Makoto Matsumoto (University of Tokyo)
|
||||||
|
*
|
||||||
|
* Copyright (C) 2011 Mutsuo Saito, Makoto Matsumoto,
|
||||||
|
* Hiroshima University and The University of Tokyo.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* The 3-clause BSD License is applied to this software, see
|
||||||
|
* LICENSE.txt
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Note: this is a stripped-down version of TinyMT that only includes the
|
||||||
|
32-bit integer generator. For the full version, please see
|
||||||
|
<https://github.com/MersenneTwister-Lab/TinyMT>. */
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
/**
|
||||||
|
* tinymt32 internal state vector and parameters
|
||||||
|
*/
|
||||||
|
struct TINYMT32_T {
|
||||||
|
uint32_t status[4];
|
||||||
|
uint32_t mat1;
|
||||||
|
uint32_t mat2;
|
||||||
|
uint32_t tmat;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef struct TINYMT32_T tinymt32_t;
|
||||||
|
|
||||||
|
uint32_t tinymt32_generate_uint32(tinymt32_t *random);
|
||||||
|
void tinymt32_init(tinymt32_t *random, uint32_t seed);
|
||||||
|
|
||||||
|
#endif
|
|
@ -83,6 +83,8 @@ endif()
|
||||||
set(SOURCES
|
set(SOURCES
|
||||||
# 3rdparty
|
# 3rdparty
|
||||||
3rdparty/grisu2b_59_56/grisu2b_59_56.c
|
3rdparty/grisu2b_59_56/grisu2b_59_56.c
|
||||||
|
3rdparty/tinymt32/rand.c
|
||||||
|
3rdparty/tinymt32/tinymt32.c
|
||||||
# assert
|
# assert
|
||||||
src/libc/assert/assert.c
|
src/libc/assert/assert.c
|
||||||
# ctype
|
# ctype
|
||||||
|
@ -229,6 +231,13 @@ if(sh-generic IN_LIST TARGET_FOLDERS)
|
||||||
src/target/sh-generic/cpucap.c)
|
src/target/sh-generic/cpucap.c)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(gint IN_LIST TARGET_FOLDERS)
|
||||||
|
list(APPEND SOURCES
|
||||||
|
src/libc/stdlib/target/gint/free.c
|
||||||
|
src/libc/stdlib/target/gint/malloc.c
|
||||||
|
src/libc/stdlib/target/gint/realloc.c)
|
||||||
|
endif()
|
||||||
|
|
||||||
if(casiowin-fx IN_LIST TARGET_FOLDERS)
|
if(casiowin-fx IN_LIST TARGET_FOLDERS)
|
||||||
list(APPEND SOURCES
|
list(APPEND SOURCES
|
||||||
src/posix/unistd/target/casiowin-fx/close.S)
|
src/posix/unistd/target/casiowin-fx/close.S)
|
||||||
|
|
|
@ -111,6 +111,9 @@ Or see the LICENSE file.
|
||||||
FxLibc also includes third-party code that is distributed under its own
|
FxLibc also includes third-party code that is distributed under its own
|
||||||
license. Currently, this includes:
|
license. Currently, this includes:
|
||||||
|
|
||||||
|
* A stripped-down version of the [TinyMT random number generator](http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/TINYMT/index.html)
|
||||||
|
([GitHub repository](https://github.com/MersenneTwister-Lab/TinyMT)) by
|
||||||
|
Mutsuo Saito and Makoto Matsumoto. See `src/3rdparty/tinymt32/LICENSE.txt`.
|
||||||
* A stripped-down version of the [Grisu2b floating-point representation
|
* A stripped-down version of the [Grisu2b floating-point representation
|
||||||
algorithm](https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf)
|
algorithm](https://www.cs.tufts.edu/~nr/cs257/archive/florian-loitsch/printf.pdf)
|
||||||
with α=-59 and γ=-56, by Florian Loitsch. See `src/3rdparty/grisu2b_59_56/README`
|
with α=-59 and γ=-56, by Florian Loitsch. See `src/3rdparty/grisu2b_59_56/README`
|
||||||
|
|
11
STATUS
11
STATUS
|
@ -96,13 +96,18 @@ DONE: Function/symbol/macro is defined, builds, links, and is tested
|
||||||
! 7.19.10 Error-handling functions: TODO
|
! 7.19.10 Error-handling functions: TODO
|
||||||
|
|
||||||
7.20 <stdlib.h>
|
7.20 <stdlib.h>
|
||||||
7.20 RAND_MAX, MB_CUR_MAX: TODO
|
7.20 RAND_MAX: DONE
|
||||||
|
! 7.20 MB_CUR_MAX: TODO
|
||||||
7.20.1.1 atof: DONE
|
7.20.1.1 atof: DONE
|
||||||
7.20.1.2 atoi, atol, atoll: DONE
|
7.20.1.2 atoi, atol, atoll: DONE
|
||||||
7.20.1.3 strtod, strtof, strtold: DONE
|
7.20.1.3 strtod, strtof, strtold: DONE
|
||||||
7.20.1.4 strtol, strtoul, strtoll, strtoull: DONE
|
7.20.1.4 strtol, strtoul, strtoll, strtoull: DONE
|
||||||
! 7.20.2 Pseudo-random sequence generation functions: TODO
|
7.20.2.1 rand: DONE
|
||||||
! 7.20.3 Memory management functions: TODO (check existing code first)
|
7.20.2.2 srand: DONE
|
||||||
|
7.20.3.1 calloc: DONE
|
||||||
|
7.20.3.2 free: DONE (at least gint)
|
||||||
|
7.20.3.3 malloc: DONE (at least gint)
|
||||||
|
7.20.3.4 realloc: DONE (at least gint)
|
||||||
7.20.4.1 abort: DONE
|
7.20.4.1 abort: DONE
|
||||||
! 7.20.4.2 atexit: TODO
|
! 7.20.4.2 atexit: TODO
|
||||||
7.20.4.3 exit: DONE (missing stream flushing/closing/etc)
|
7.20.4.3 exit: DONE (missing stream flushing/closing/etc)
|
||||||
|
|
|
@ -31,7 +31,7 @@ struct __printf_output {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Generic formatted printing. */
|
/* Generic formatted printing. */
|
||||||
int __printf(
|
extern int __printf(
|
||||||
struct __printf_output * restrict __out,
|
struct __printf_output * restrict __out,
|
||||||
char const * restrict __format,
|
char const * restrict __format,
|
||||||
va_list *__args);
|
va_list *__args);
|
||||||
|
@ -46,7 +46,7 @@ int __printf(
|
||||||
** code from the fxlibc library and registers formatters for all 6
|
** code from the fxlibc library and registers formatters for all 6
|
||||||
** floating-point formats.
|
** floating-point formats.
|
||||||
*/
|
*/
|
||||||
void __printf_enable_fp(void);
|
extern void __printf_enable_fp(void);
|
||||||
|
|
||||||
/* Format extension API. */
|
/* Format extension API. */
|
||||||
|
|
||||||
|
@ -219,7 +219,7 @@ struct __printf_geometry
|
||||||
** 5. Turn remaining padding into spaces at the left (if opt->alignment == NUL)
|
** 5. Turn remaining padding into spaces at the left (if opt->alignment == NUL)
|
||||||
** or right (if opt->alignment == '-').
|
** or right (if opt->alignment == '-').
|
||||||
*/
|
*/
|
||||||
void __printf_compute_geometry(
|
extern void __printf_compute_geometry(
|
||||||
struct __printf_format *__opt,
|
struct __printf_format *__opt,
|
||||||
struct __printf_geometry *__geometry);
|
struct __printf_geometry *__geometry);
|
||||||
|
|
||||||
|
|
|
@ -32,15 +32,15 @@ extern void free(void *__ptr);
|
||||||
|
|
||||||
/* Abort execution; raises SIGABRT and leaves quickly with _Exit(). */
|
/* Abort execution; raises SIGABRT and leaves quickly with _Exit(). */
|
||||||
__attribute__((noreturn))
|
__attribute__((noreturn))
|
||||||
void abort(void);
|
extern void abort(void);
|
||||||
|
|
||||||
/* Exit; calls handlers, flushes and closes streams and temporary files. */
|
/* Exit; calls handlers, flushes and closes streams and temporary files. */
|
||||||
__attribute__((noreturn))
|
__attribute__((noreturn))
|
||||||
void exit(int __status);
|
extern void exit(int __status);
|
||||||
|
|
||||||
/* Exit immediately, bypassing exit handlers or signal handlers. */
|
/* Exit immediately, bypassing exit handlers or signal handlers. */
|
||||||
__attribute__((noreturn))
|
__attribute__((noreturn))
|
||||||
void _Exit(int __status);
|
extern void _Exit(int __status);
|
||||||
|
|
||||||
/* Integer arithmetic functions. */
|
/* Integer arithmetic functions. */
|
||||||
|
|
||||||
|
@ -74,9 +74,9 @@ typedef struct {
|
||||||
long long int quot, rem;
|
long long int quot, rem;
|
||||||
} lldiv_t;
|
} lldiv_t;
|
||||||
|
|
||||||
div_t div(int __num, int __denom);
|
extern div_t div(int __num, int __denom);
|
||||||
ldiv_t ldiv(long int __num, long int __denom);
|
extern ldiv_t ldiv(long int __num, long int __denom);
|
||||||
lldiv_t lldiv(long long int __num, long long int __denom);
|
extern lldiv_t lldiv(long long int __num, long long int __denom);
|
||||||
|
|
||||||
/* Simplified numeric conversion functions. */
|
/* Simplified numeric conversion functions. */
|
||||||
|
|
||||||
|
@ -133,4 +133,14 @@ extern long double strtold(
|
||||||
char const * restrict __ptr,
|
char const * restrict __ptr,
|
||||||
char ** restrict __endptr);
|
char ** restrict __endptr);
|
||||||
|
|
||||||
|
/* Pseudo-random sequence generation functions. */
|
||||||
|
|
||||||
|
#define RAND_MAX 0x7fffffff
|
||||||
|
|
||||||
|
/* Seed the PRNG. */
|
||||||
|
extern void srand(unsigned int seed);
|
||||||
|
|
||||||
|
/* Generate a pseudo-random number between 0 and RAND_MAX. */
|
||||||
|
extern int rand(void);
|
||||||
|
|
||||||
#endif /*__STDLIB_H__*/
|
#endif /*__STDLIB_H__*/
|
||||||
|
|
|
@ -1,29 +1,14 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
/*
|
|
||||||
** The calloc() function allocates memory for an array of nmemb elements of size
|
|
||||||
** bytes each and returns a pointer to the allocated memory. The memory is set
|
|
||||||
** to zero. If nmemb or size is 0, then calloc() returns either NULL, or a
|
|
||||||
** unique pointer value that can later be successfully passed to free(). If the
|
|
||||||
** multiplication of nmemb and size would result in integer overflow, then
|
|
||||||
** calloc() returns an error. By contrast, an integer overflow would not be
|
|
||||||
** detected in the following call to malloc(), with the result that an incorrectly
|
|
||||||
** sized block of memory would be allocated: `malloc(nmemb * size);`
|
|
||||||
*/
|
|
||||||
void *calloc(size_t nmemb, size_t size)
|
void *calloc(size_t nmemb, size_t size)
|
||||||
{
|
{
|
||||||
// check error
|
unsigned int total_size;
|
||||||
if (size == 0 || nmemb == 0)
|
|
||||||
return (NULL);
|
|
||||||
|
|
||||||
// Try to allowate the area
|
if(__builtin_umul_overflow(nmemb, size, &total_size))
|
||||||
void *ret = malloc(nmemb * size);
|
return NULL;
|
||||||
if (ret == NULL)
|
|
||||||
return (NULL);
|
|
||||||
|
|
||||||
// wipe the area
|
void *mem = malloc(total_size);
|
||||||
memset(ret, 0x00, size);
|
if(mem) memset(mem, 0, size);
|
||||||
return (ret);
|
return mem;
|
||||||
}
|
}
|
||||||
|
|
8
src/libc/stdlib/target/gint/free.c
Normal file
8
src/libc/stdlib/target/gint/free.c
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void kfree(void *ptr);
|
||||||
|
|
||||||
|
void free(void *ptr)
|
||||||
|
{
|
||||||
|
return kfree(ptr);
|
||||||
|
}
|
8
src/libc/stdlib/target/gint/malloc.c
Normal file
8
src/libc/stdlib/target/gint/malloc.c
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *kmalloc(size_t size, char const *arena_name);
|
||||||
|
|
||||||
|
void *malloc(size_t size)
|
||||||
|
{
|
||||||
|
return kmalloc(size, NULL);
|
||||||
|
}
|
8
src/libc/stdlib/target/gint/realloc.c
Normal file
8
src/libc/stdlib/target/gint/realloc.c
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
extern void *krealloc(void *ptr, size_t size);
|
||||||
|
|
||||||
|
void *realloc(void *ptr, size_t size)
|
||||||
|
{
|
||||||
|
return krealloc(ptr, size);
|
||||||
|
}
|
Loading…
Reference in a new issue