blob: fb3eec9b1380969ebb7a6970f535eb8c93412cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/* -------------------------------------------
Copyright Zeta Electronics Corporation
------------------------------------------- */
#ifndef _KERNELKIT_TLS_HPP
#define _KERNELKIT_TLS_HPP
#include <NewKit/Defines.hpp>
//! @brief TLS implementation in C++
#define kCookieMag0 'H'
#define kCookieMag1 'C'
#define kCookieMag2 'R'
#define kTLSCookieLen (3U)
/// @brief Thread Information Block for Local Storage.
/// Located in GS on AMD64, other architectures have their own stuff. (64x0, 32x0, ARM64)
struct PACKED ThreadInformationBlock final
{
Kernel::Char Cookie[kTLSCookieLen];
Kernel::UIntPtr StartCode; // Start Address
Kernel::UIntPtr StartData; // Allocation Heap
Kernel::UIntPtr StartStack; // Stack Pointer.
Kernel::Int32 ThreadID; // Thread execution ID.
};
typedef struct ThreadInformationBlock ProcessInformationBlock;
///! @brief Cookie Sanity check.
Kernel::Boolean tls_check_tib(ThreadInformationBlock* Ptr);
///! @brief new ptr syscall.
template <typename T>
T* tls_new_ptr(void);
///! @brief delete ptr syscall.
template <typename T>
bool tls_delete_ptr(T* ptr);
template <typename T, typename... Args>
T* tls_new_class(Args&&... args);
/// @brief TLS install TIB and PIB. (syscall)
EXTERN_C void rt_install_tib(ThreadInformationBlock* TIB, ThreadInformationBlock* PIB);
/// @brief TLS check (syscall)
EXTERN_C Kernel::Void tls_check_syscall_impl(Kernel::VoidPtr TIB) noexcept;
#include <KernelKit/ThreadLocalStorage.inl>
// last rev 1/29/24
#endif /* ifndef _KERNELKIT_TLS_HPP */
|