blob: 1e29bde516c356c3eb8480ee26691a5a1e679044 [file] [log] [blame]
Chia-I Wude399402010-04-22 16:22:13 +08001/*
2 * Mesa 3-D graphics library
Chia-I Wude399402010-04-22 16:22:13 +08003 *
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
Eric Engestrom4da9f7e2016-07-22 10:24:03 +010028#ifdef HAVE_FUNC_ATTRIBUTE_VISIBILITY
Matt Turner5ec140c2016-07-11 10:44:25 -070029#define HIDDEN __attribute__((visibility("hidden")))
30#else
31#define HIDDEN
32#endif
Chia-I Wude399402010-04-22 16:22:13 +080033
Chia-I Wu97185bf2010-12-17 00:24:27 +080034__asm__(".text\n"
35 ".balign 32\n"
Chia-I Wue6a7ef32010-12-24 15:06:41 +080036 "x86_64_entry_start:");
37
Chia-I Wude399402010-04-22 16:22:13 +080038#define STUB_ASM_ENTRY(func) \
39 ".globl " func "\n" \
40 ".type " func ", @function\n" \
41 ".balign 32\n" \
42 func ":"
43
Grazvydas Ignotas89458362017-01-08 19:38:09 +020044#ifndef __ILP32__
45
Chia-I Wude399402010-04-22 16:22:13 +080046#define STUB_ASM_CODE(slot) \
Chia-I Wu96c52d12010-08-24 15:51:57 +080047 "movq " ENTRY_CURRENT_TABLE "@GOTTPOFF(%rip), %rax\n\t" \
Chia-I Wude399402010-04-22 16:22:13 +080048 "movq %fs:(%rax), %r11\n\t" \
49 "jmp *(8 * " slot ")(%r11)"
50
Grazvydas Ignotas89458362017-01-08 19:38:09 +020051#else
52
53#define STUB_ASM_CODE(slot) \
54 "movq " ENTRY_CURRENT_TABLE "@GOTTPOFF(%rip), %rax\n\t" \
55 "movl %fs:(%rax), %r11d\n\t" \
56 "movl 4*" slot "(%r11d), %r11d\n\t" \
57 "jmp *%r11"
58
59#endif
60
Chia-I Wude399402010-04-22 16:22:13 +080061#define MAPI_TMP_STUB_ASM_GCC
62#include "mapi_tmp.h"
63
Chia-I Wu97185bf2010-12-17 00:24:27 +080064#ifndef MAPI_MODE_BRIDGE
65
Chia-I Wu97185bf2010-12-17 00:24:27 +080066#include <string.h>
67#include "u_execmem.h"
68
Chia-I Wude399402010-04-22 16:22:13 +080069void
70entry_patch_public(void)
71{
72}
73
Matt Turner5ec140c2016-07-11 10:44:25 -070074extern char
75x86_64_entry_start[] HIDDEN;
Benjamin Franzke3e1caf52011-06-08 15:50:25 +020076
Chia-I Wue6a7ef32010-12-24 15:06:41 +080077mapi_func
78entry_get_public(int slot)
79{
Chia-I Wue6a7ef32010-12-24 15:06:41 +080080 return (mapi_func) (x86_64_entry_start + slot * 32);
81}
82
Chia-I Wude399402010-04-22 16:22:13 +080083void
84entry_patch(mapi_func entry, int slot)
85{
Chia-I Wuebeb4a72010-09-30 17:09:59 +080086 char *code = (char *) entry;
Grazvydas Ignotas89458362017-01-08 19:38:09 +020087 int offset = 12;
88#ifdef __ILP32__
89 offset = 13;
90#endif
91 *((unsigned int *) (code + offset)) = slot * sizeof(mapi_func);
Chia-I Wude399402010-04-22 16:22:13 +080092}
93
94mapi_func
95entry_generate(int slot)
96{
Grazvydas Ignotas89458362017-01-08 19:38:09 +020097 const char code_templ[] = {
98#ifndef __ILP32__
Chia-I Wude399402010-04-22 16:22:13 +080099 /* movq %fs:0, %r11 */
100 0x64, 0x4c, 0x8b, 0x1c, 0x25, 0x00, 0x00, 0x00, 0x00,
101 /* jmp *0x1234(%r11) */
102 0x41, 0xff, 0xa3, 0x34, 0x12, 0x00, 0x00,
Grazvydas Ignotas89458362017-01-08 19:38:09 +0200103#else
104 /* movl %fs:0, %r11d */
105 0x64, 0x44, 0x8b, 0x1c, 0x25, 0x00, 0x00, 0x00, 0x00,
106 /* movl 0x1234(%r11d), %r11d */
107 0x67, 0x45, 0x8b, 0x9b, 0x34, 0x12, 0x00, 0x00,
108 /* jmp *%r11 */
109 0x41, 0xff, 0xe3,
110#endif
Chia-I Wude399402010-04-22 16:22:13 +0800111 };
Grazvydas Ignotas89458362017-01-08 19:38:09 +0200112 unsigned long long addr;
Matt Turner76cd0f02015-02-27 11:42:43 -0800113 char *code;
Chia-I Wude399402010-04-22 16:22:13 +0800114 mapi_func entry;
115
Matt Turnere34834f2014-09-25 17:28:20 -0700116 __asm__("movq " ENTRY_CURRENT_TABLE "@GOTTPOFF(%%rip), %0"
117 : "=r" (addr));
Chia-I Wude399402010-04-22 16:22:13 +0800118 if ((addr >> 32) != 0xffffffff)
119 return NULL;
120 addr &= 0xffffffff;
121
122 code = u_execmem_alloc(sizeof(code_templ));
123 if (!code)
124 return NULL;
125
126 memcpy(code, code_templ, sizeof(code_templ));
127
128 *((unsigned int *) (code + 5)) = addr;
129 entry = (mapi_func) code;
130 entry_patch(entry, slot);
131
132 return entry;
133}
Chia-I Wu97185bf2010-12-17 00:24:27 +0800134
135#endif /* MAPI_MODE_BRIDGE */