microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.19.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/allocator/mimalloc-sys/mimalloc/src/prim/prim.c

76lines · modeblame

91589c3aIan Davis2 years ago1/* ----------------------------------------------------------------------------
2Copyright (c) 2018-2023, Microsoft Research, Daan Leijen
3This is free software; you can redistribute it and/or modify it under the
4terms of the MIT license. A copy of the license can be found in the file
5"LICENSE" at the root of this distribution.
6-----------------------------------------------------------------------------*/
7
8// Select the implementation of the primitives
9// depending on the OS.
10
11#if defined(_WIN32)
12#include "windows/prim.c" // VirtualAlloc (Windows)
13
14#elif defined(__APPLE__)
15#include "osx/prim.c" // macOSX (actually defers to mmap in unix/prim.c)
16
17#elif defined(__wasi__)
18#define MI_USE_SBRK
19#include "wasi/prim.c" // memory-grow or sbrk (Wasm)
20
ce21e681Ian Davis11 months ago21#elif defined(__EMSCRIPTEN__)
22#include "emscripten/prim.c" // emmalloc_*, + pthread support
23
91589c3aIan Davis2 years ago24#else
25#include "unix/prim.c" // mmap() (Linux, macOSX, BSD, Illumnos, Haiku, DragonFly, etc.)
26
27#endif
ce21e681Ian Davis11 months ago28
29// Generic process initialization
30#ifndef MI_PRIM_HAS_PROCESS_ATTACH
31#if defined(__GNUC__) || defined(__clang__)
32// gcc,clang: use the constructor/destructor attribute
33// which for both seem to run before regular constructors/destructors
34#if defined(__clang__)
35#define mi_attr_constructor __attribute__((constructor(101)))
36#define mi_attr_destructor __attribute__((destructor(101)))
37#else
38#define mi_attr_constructor __attribute__((constructor))
39#define mi_attr_destructor __attribute__((destructor))
40#endif
41static void mi_attr_constructor mi_process_attach(void) {
42_mi_auto_process_init();
43}
44static void mi_attr_destructor mi_process_detach(void) {
45_mi_auto_process_done();
46}
47#elif defined(__cplusplus)
48// C++: use static initialization to detect process start/end
49// This is not guaranteed to be first/last but the best we can generally do?
50struct mi_init_done_t {
51mi_init_done_t() {
52_mi_auto_process_init();
53}
54~mi_init_done_t() {
55_mi_auto_process_done();
56}
57};
58static mi_init_done_t mi_init_done;
59#else
60#pragma message("define a way to call _mi_auto_process_init/done on your platform")
61#endif
62#endif
63
64// Generic allocator init/done callback
65#ifndef MI_PRIM_HAS_ALLOCATOR_INIT
66bool _mi_is_redirected(void) {
67return false;
68}
69bool _mi_allocator_init(const char** message) {
70if (message != NULL) { *message = NULL; }
71return true;
72}
73void _mi_allocator_done(void) {
74// nothing to do
75}
76#endif