xref: /aosp_15_r20/external/mesa3d/src/mapi/entry_x86-64_tls.h (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /*
2  * Mesa 3-D graphics library
3  *
4  * Copyright (C) 2010 LunarG Inc.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included
14  * in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  *
24  * Authors:
25  *    Chia-I Wu <[email protected]>
26  */
27 
28 #ifdef __CET__
29 #define ENDBR "endbr64\n\t"
30 #else
31 #define ENDBR
32 #endif
33 
34 #ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY
35 #define HIDDEN __attribute__((visibility("hidden")))
36 #else
37 #define HIDDEN
38 #endif
39 
40 __asm__(".text\n"
41         ".balign 32\n"
42         "x86_64_entry_start:");
43 
44 #define STUB_ASM_ENTRY(func)                             \
45    ".globl " func "\n"                                   \
46    ".type " func ", @function\n"                         \
47    ".balign 32\n"                                        \
48    func ":"
49 
50 #ifndef __ILP32__
51 
52 #define STUB_ASM_CODE(slot)                              \
53    ENDBR                                                 \
54    "movq _glapi_tls_Dispatch@GOTTPOFF(%rip), %rax\n\t"  \
55    "movq %fs:(%rax), %r11\n\t"                           \
56    "jmp *(8 * " slot ")(%r11)"
57 
58 #else
59 
60 #define STUB_ASM_CODE(slot)                              \
61    ENDBR                                                 \
62    "movq _glapi_tls_Dispatch@GOTTPOFF(%rip), %rax\n\t"  \
63    "movl %fs:(%rax), %r11d\n\t"                          \
64    "movl 4*" slot "(%r11d), %r11d\n\t"                   \
65    "jmp *%r11"
66 
67 #endif
68 
69 #define MAPI_TMP_STUB_ASM_GCC
70 #include "mapi_tmp.h"
71 
72 #ifndef MAPI_MODE_BRIDGE
73 
74 #include <string.h>
75 
76 void
entry_patch_public(void)77 entry_patch_public(void)
78 {
79 }
80 
81 extern char
82 x86_64_entry_start[] HIDDEN;
83 
84 mapi_func
entry_get_public(int slot)85 entry_get_public(int slot)
86 {
87    return (mapi_func) (x86_64_entry_start + slot * 32);
88 }
89 
90 
91 #endif /* MAPI_MODE_BRIDGE */
92