1f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/*
2f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Mesa 3-D graphics library
3f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Version:  7.9
4f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
5f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Copyright (C) 2010 LunarG Inc.
6f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
7f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Permission is hereby granted, free of charge, to any person obtaining a
8f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * copy of this software and associated documentation files (the "Software"),
9f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * to deal in the Software without restriction, including without limitation
10f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * and/or sell copies of the Software, and to permit persons to whom the
12f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Software is furnished to do so, subject to the following conditions:
13f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
14f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * The above copyright notice and this permission notice shall be included
15f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * in all copies or substantial portions of the Software.
16f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
17f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * DEALINGS IN THE SOFTWARE.
24f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *
25f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org * Authors:
26f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org *    Chia-I Wu <olv@lunarg.com>
27f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org */
28f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
29f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "entry.h"
30f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "u_current.h"
31f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "u_macros.h"
32f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
33f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/* define macros for use by assembly dispatchers */
34f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define ENTRY_CURRENT_TABLE U_STRINGIFY(u_current_table)
35f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
36f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/* in bridge mode, mapi is a user of glapi */
37f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#ifdef MAPI_MODE_BRIDGE
38f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define ENTRY_CURRENT_TABLE_GET "_glapi_get_dispatch"
39f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#else
40f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define ENTRY_CURRENT_TABLE_GET U_STRINGIFY(u_current_get_internal)
41f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif
42f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
43f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#if defined(USE_X86_ASM) && defined(__GNUC__)
44f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#   ifdef GLX_USE_TLS
45f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#      include "entry_x86_tls.h"
46f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#   else
47f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#      include "entry_x86_tsd.h"
48f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#   endif
49f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#elif defined(USE_X86_64_ASM) && defined(__GNUC__) && defined(GLX_USE_TLS)
50f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#   include "entry_x86-64_tls.h"
51f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#else
52f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
53f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include <stdlib.h>
54f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
55f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgstatic INLINE const struct mapi_table *
56f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgentry_current_get(void)
57f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
58f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#ifdef MAPI_MODE_BRIDGE
59f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   return GET_DISPATCH();
60f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#else
61f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   return u_current_get();
62f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif
63f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
64f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
65f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org/* C version of the public entries */
66f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define MAPI_TMP_DEFINES
67f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define MAPI_TMP_PUBLIC_DECLARES
68f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#define MAPI_TMP_PUBLIC_ENTRIES
69f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#include "mapi_tmp.h"
70f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
71f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#ifndef MAPI_MODE_BRIDGE
72f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
73f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid
74f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgentry_patch_public(void)
75f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
76f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
77f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
78f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgmapi_func
79f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgentry_get_public(int slot)
80f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
81f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   /* pubic_entries are defined by MAPI_TMP_PUBLIC_ENTRIES */
82f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   return public_entries[slot];
83f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
84f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
85f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgmapi_func
86f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgentry_generate(int slot)
87f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
88f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org   return NULL;
89f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
90f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
91f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgvoid
92f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.orgentry_patch(mapi_func entry, int slot)
93f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org{
94f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org}
95f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
96f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif /* MAPI_MODE_BRIDGE */
97f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org
98f2ba7591b1407a7ee9209f842c50696914dc2dedkbr@chromium.org#endif /* asm */
99