blob: b983fbc957682d8c76fd316e024469a2f352d827 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28#ifndef _SYS_TLS_H
29#define _SYS_TLS_H
30
31#include <sys/cdefs.h>
32
33__BEGIN_DECLS
34
35/** WARNING WARNING WARNING
36 **
37 ** This header file is *NOT* part of the public Bionic ABI/API
38 ** and should not be used/included by user-serviceable parts of
39 ** the system (e.g. applications).
40 **
41 ** It is only provided here for the benefit of the system dynamic
42 ** linker and the OpenGL sub-system (which needs to access the
43 ** pre-allocated slot directly for performance reason).
44 **/
45
Elliott Hughesad88a082012-10-24 18:37:21 -070046/* Maximum number of elements in the TLS array. */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080047#define BIONIC_TLS_SLOTS 64
48
Elliott Hughesad88a082012-10-24 18:37:21 -070049/* Well-known TLS slots. What data goes in which slot is arbitrary unless otherwise noted. */
50#define TLS_SLOT_SELF 0 /* The kernel requires this specific slot for x86. */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080051#define TLS_SLOT_THREAD_ID 1
52#define TLS_SLOT_ERRNO 2
53
54#define TLS_SLOT_OPENGL_API 3
55#define TLS_SLOT_OPENGL 4
56
Elliott Hughesad88a082012-10-24 18:37:21 -070057#define TLS_SLOT_STACK_GUARD 5 /* GCC requires this specific slot for x86. */
58#define TLS_SLOT_DLERROR 6
Elliott Hughes5419b942012-10-16 15:54:46 -070059
60#define TLS_SLOT_MAX_WELL_KNOWN TLS_SLOT_DLERROR
61
62/* This slot is only used to pass information from the dynamic linker to
David 'Digit' Turneref0bd182009-07-17 17:55:01 +020063 * libc.so when the C library is loaded in to memory. The C runtime init
64 * function will then clear it. Since its use is extremely temporary,
65 * we reuse an existing location.
66 */
Elliott Hughes5419b942012-10-16 15:54:46 -070067#define TLS_SLOT_BIONIC_PREINIT TLS_SLOT_OPENGL_API
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080068
69#define TLS_DEFAULT_ALLOC_MAP 0x0000001F
70
71/* set the Thread Local Storage, must contain at least BIONIC_TLS_SLOTS pointers */
72extern void __init_tls(void** tls, void* thread_info);
73
74/* syscall only, do not call directly */
75extern int __set_tls(void *ptr);
76
77/* get the TLS */
78#ifdef __arm__
David 'Digit' Turner6a51def2010-08-27 08:19:19 -070079/* The standard way to get the TLS is to call a kernel helper
80 * function (i.e. a function provided at a fixed address in a
81 * "magic page" mapped in all user-space address spaces ), which
82 * contains the most appropriate code path for the target device.
83 *
84 * However, for performance reasons, we're going to use our own
85 * machine code for the system's C shared library.
86 *
87 * We cannot use this optimization in the static version of the
88 * C library, because we don't know where the corresponding code
89 * is going to run.
90 */
91# ifdef LIBC_STATIC
92
93/* Use the kernel helper in static C library. */
94 typedef volatile void* (__kernel_get_tls_t)(void);
95# define __get_tls() (*(__kernel_get_tls_t *)0xffff0fe0)()
96
97# else /* !LIBC_STATIC */
98/* Use optimized code path.
David 'Digit' Turner4a05d122009-09-18 13:35:05 -070099 * Note that HAVE_ARM_TLS_REGISTER is build-specific
100 * (it must match your kernel configuration)
101 */
David 'Digit' Turner6a51def2010-08-27 08:19:19 -0700102# ifdef HAVE_ARM_TLS_REGISTER
103 /* We can read the address directly from a coprocessor
104 * register, which avoids touching the data cache
105 * completely.
106 */
107# define __get_tls() \
David 'Digit' Turner4a05d122009-09-18 13:35:05 -0700108 ({ register unsigned int __val asm("r0"); \
109 asm ("mrc p15, 0, r0, c13, c0, 3" : "=r"(__val) ); \
110 (volatile void*)__val; })
David 'Digit' Turner6a51def2010-08-27 08:19:19 -0700111# else /* !HAVE_ARM_TLS_REGISTER */
112 /* The kernel provides the address of the TLS at a fixed
113 * address of the magic page too.
114 */
115# define __get_tls() ( *((volatile void **) 0xffff0ff0) )
116# endif
117# endif /* !LIBC_STATIC */
Raghu Gandham1c303982012-08-02 17:47:37 -0700118#elif defined(__mips__)
119# define __get_tls() \
120 ({ register unsigned int __val asm("v1"); \
121 asm ( \
122 " .set push\n" \
123 " .set mips32r2\n" \
124 " rdhwr %0,$29\n" \
125 " .set pop\n" \
126 : "=r"(__val) \
127 ); \
128 (volatile void*)__val; })
129#else
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800130extern void* __get_tls( void );
Raghu Gandham1c303982012-08-02 17:47:37 -0700131#endif
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800132
133/* return the stack base and size, used by our malloc debugger */
134extern void* __get_stack_base(int *p_stack_size);
135
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800136__END_DECLS
137
Elliott Hughesd3920b32013-02-07 18:39:34 -0800138#if defined(__cplusplus)
139struct KernelArgumentBlock;
140extern void __libc_init_tls(KernelArgumentBlock& args);
141#endif
142
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800143#endif /* _SYS_TLS_H */