mapi: Massage code to allow clang to compile.
[mesa.git] / src / mapi / entry_x86-64_tls.h
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 <olv@lunarg.com>
26 */
27
28 #ifdef HAVE_FUNC_ATTRIBUTE_VISIBIITY
29 #define HIDDEN __attribute__((visibility("hidden")))
30 #else
31 #define HIDDEN
32 #endif
33
34 __asm__(".text\n"
35 ".balign 32\n"
36 "x86_64_entry_start:");
37
38 #define STUB_ASM_ENTRY(func) \
39 ".globl " func "\n" \
40 ".type " func ", @function\n" \
41 ".balign 32\n" \
42 func ":"
43
44 #define STUB_ASM_CODE(slot) \
45 "movq " ENTRY_CURRENT_TABLE "@GOTTPOFF(%rip), %rax\n\t" \
46 "movq %fs:(%rax), %r11\n\t" \
47 "jmp *(8 * " slot ")(%r11)"
48
49 #define MAPI_TMP_STUB_ASM_GCC
50 #include "mapi_tmp.h"
51
52 #ifndef MAPI_MODE_BRIDGE
53
54 #include <string.h>
55 #include "u_execmem.h"
56
57 void
58 entry_patch_public(void)
59 {
60 }
61
62 extern char
63 x86_64_entry_start[] HIDDEN;
64
65 mapi_func
66 entry_get_public(int slot)
67 {
68 return (mapi_func) (x86_64_entry_start + slot * 32);
69 }
70
71 void
72 entry_patch(mapi_func entry, int slot)
73 {
74 char *code = (char *) entry;
75 *((unsigned int *) (code + 12)) = slot * sizeof(mapi_func);
76 }
77
78 mapi_func
79 entry_generate(int slot)
80 {
81 const char code_templ[16] = {
82 /* movq %fs:0, %r11 */
83 0x64, 0x4c, 0x8b, 0x1c, 0x25, 0x00, 0x00, 0x00, 0x00,
84 /* jmp *0x1234(%r11) */
85 0x41, 0xff, 0xa3, 0x34, 0x12, 0x00, 0x00,
86 };
87 unsigned long addr;
88 char *code;
89 mapi_func entry;
90
91 __asm__("movq " ENTRY_CURRENT_TABLE "@GOTTPOFF(%%rip), %0"
92 : "=r" (addr));
93 if ((addr >> 32) != 0xffffffff)
94 return NULL;
95 addr &= 0xffffffff;
96
97 code = u_execmem_alloc(sizeof(code_templ));
98 if (!code)
99 return NULL;
100
101 memcpy(code, code_templ, sizeof(code_templ));
102
103 *((unsigned int *) (code + 5)) = addr;
104 entry = (mapi_func) code;
105 entry_patch(entry, slot);
106
107 return entry;
108 }
109
110 #endif /* MAPI_MODE_BRIDGE */