Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Mesa 3-D graphics library |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 3 | * Version: 6.5 |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 4 | * |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2006 Brian Paul All Rights Reserved. |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 8 | * copy of this software and associated documentation files (the "Software"), |
| 9 | * to deal in the Software without restriction, including without limitation |
| 10 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 11 | * and/or sell copies of the Software, and to permit persons to whom the |
| 12 | * Software is furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included |
| 15 | * in all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 18 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN |
| 21 | * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 22 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 23 | */ |
| 24 | |
| 25 | |
Brian Paul | 7e1161b | 1999-11-25 18:17:04 +0000 | [diff] [blame] | 26 | /* |
| 27 | * This file manages the OpenGL API dispatch layer. |
| 28 | * The dispatch table (struct _glapi_table) is basically just a list |
| 29 | * of function pointers. |
| 30 | * There are functions to set/get the current dispatch table for the |
| 31 | * current thread and to manage registration/dispatch of dynamically |
| 32 | * added extension functions. |
Brian Paul | 9f94399 | 2000-01-28 19:03:33 +0000 | [diff] [blame] | 33 | * |
| 34 | * It's intended that this file and the other glapi*.[ch] files are |
| 35 | * flexible enough to be reused in several places: XFree86, DRI- |
| 36 | * based libGL.so, and perhaps the SGI SI. |
| 37 | * |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 38 | * NOTE: There are no dependencies on Mesa in this code. |
Brian Paul | ab0c886 | 2001-01-23 23:35:47 +0000 | [diff] [blame] | 39 | * |
| 40 | * Versions (API changes): |
| 41 | * 2000/02/23 - original version for Mesa 3.3 and XFree86 4.0 |
| 42 | * 2001/01/16 - added dispatch override feature for Mesa 3.5 |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 43 | * 2002/06/28 - added _glapi_set_warning_func(), Mesa 4.1. |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 44 | * 2002/10/01 - _glapi_get_proc_address() will now generate new entrypoints |
| 45 | * itself (using offset ~0). _glapi_add_entrypoint() can be |
| 46 | * called afterward and it'll fill in the correct dispatch |
| 47 | * offset. This allows DRI libGL to avoid probing for DRI |
| 48 | * drivers! No changes to the public glapi interface. |
Brian Paul | 7e1161b | 1999-11-25 18:17:04 +0000 | [diff] [blame] | 49 | */ |
| 50 | |
| 51 | |
| 52 | |
Brian Paul | 3c27be3 | 2000-02-10 21:27:48 +0000 | [diff] [blame] | 53 | #include "glheader.h" |
Brian Paul | fbd8f21 | 1999-11-11 01:22:25 +0000 | [diff] [blame] | 54 | #include "glapi.h" |
Brian Paul | 0c239fc | 1999-12-16 12:38:11 +0000 | [diff] [blame] | 55 | #include "glapioffsets.h" |
| 56 | #include "glapitable.h" |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 57 | |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 58 | /***** BEGIN NO-OP DISPATCH *****/ |
| 59 | |
| 60 | static GLboolean WarnFlag = GL_FALSE; |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 61 | static _glapi_warning_func warning_func; |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 62 | |
Kristian Høgsberg | 3a6d968 | 2006-03-29 22:32:38 +0000 | [diff] [blame] | 63 | #if defined(PTHREADS) || defined(GLX_USE_TLS) |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 64 | static void init_glapi_relocs(void); |
Kristian Høgsberg | 3a6d968 | 2006-03-29 22:32:38 +0000 | [diff] [blame] | 65 | #endif |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 66 | |
| 67 | static _glapi_proc generate_entrypoint(GLuint functionOffset); |
| 68 | static void fill_in_entrypoint_offset(_glapi_proc entrypoint, GLuint offset); |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 69 | |
| 70 | /* |
| 71 | * Enable/disable printing of warning messages. |
| 72 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 73 | PUBLIC void |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 74 | _glapi_noop_enable_warnings(GLboolean enable) |
| 75 | { |
| 76 | WarnFlag = enable; |
| 77 | } |
| 78 | |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 79 | /* |
| 80 | * Register a callback function for reporting errors. |
| 81 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 82 | PUBLIC void |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 83 | _glapi_set_warning_func( _glapi_warning_func func ) |
| 84 | { |
| 85 | warning_func = func; |
| 86 | } |
| 87 | |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 88 | static GLboolean |
| 89 | warn(void) |
| 90 | { |
Ben Crossman | d8aa5ff | 2005-04-15 09:13:21 +0000 | [diff] [blame] | 91 | if ((WarnFlag || getenv("MESA_DEBUG") || getenv("LIBGL_DEBUG")) |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 92 | && warning_func) { |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 93 | return GL_TRUE; |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 94 | } |
| 95 | else { |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 96 | return GL_FALSE; |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 97 | } |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | |
| 101 | #define KEYWORD1 static |
Ian Romanick | 4e4b5f4 | 2006-08-22 16:34:38 +0000 | [diff] [blame] | 102 | #define KEYWORD1_ALT static |
Daniel Borca | 722cb89 | 2004-01-07 12:37:09 +0000 | [diff] [blame] | 103 | #define KEYWORD2 GLAPIENTRY |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 104 | #define NAME(func) NoOp##func |
| 105 | |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 106 | #define F NULL |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 107 | |
Brian Paul | 5849e3d | 2004-11-05 18:32:02 +0000 | [diff] [blame] | 108 | #define DISPATCH(func, args, msg) \ |
| 109 | if (warn()) { \ |
| 110 | warning_func(NULL, "GL User Error: called without context: %s", #func); \ |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Brian Paul | 5849e3d | 2004-11-05 18:32:02 +0000 | [diff] [blame] | 113 | #define RETURN_DISPATCH(func, args, msg) \ |
| 114 | if (warn()) { \ |
| 115 | warning_func(NULL, "GL User Error: called without context: %s", #func); \ |
| 116 | } \ |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 117 | return 0 |
| 118 | |
| 119 | #define DISPATCH_TABLE_NAME __glapi_noop_table |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 120 | #define UNUSED_TABLE_NAME __unused_noop_functions |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 121 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 122 | #define TABLE_ENTRY(name) (_glapi_proc) NoOp##name |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 123 | |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 124 | static GLint NoOpUnused(void) |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 125 | { |
| 126 | if (warn()) { |
Brian Paul | 4e9676f | 2002-06-29 19:48:15 +0000 | [diff] [blame] | 127 | warning_func(NULL, "GL User Error: calling extension function without a current context\n"); |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 128 | } |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | #include "glapitemp.h" |
| 133 | |
| 134 | /***** END NO-OP DISPATCH *****/ |
| 135 | |
| 136 | |
| 137 | |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 138 | /** |
| 139 | * \name Current dispatch and current context control variables |
| 140 | * |
| 141 | * Depending on whether or not multithreading is support, and the type of |
| 142 | * support available, several variables are used to store the current context |
| 143 | * pointer and the current dispatch table pointer. In the non-threaded case, |
| 144 | * the variables \c _glapi_Dispatch and \c _glapi_Context are used for this |
| 145 | * purpose. |
| 146 | * |
| 147 | * In the "normal" threaded case, the variables \c _glapi_Dispatch and |
| 148 | * \c _glapi_Context will be \c NULL if an application is detected as being |
| 149 | * multithreaded. Single-threaded applications will use \c _glapi_Dispatch |
| 150 | * and \c _glapi_Context just like the case without any threading support. |
| 151 | * When \c _glapi_Dispatch and \c _glapi_Context are \c NULL, the thread state |
| 152 | * data \c _gl_DispatchTSD and \c ContextTSD are used. Drivers and the |
| 153 | * static dispatch functions access these variables via \c _glapi_get_dispatch |
| 154 | * and \c _glapi_get_context. |
| 155 | * |
| 156 | * There is a race condition in setting \c _glapi_Dispatch to \c NULL. It is |
| 157 | * possible for the original thread to be setting it at the same instant a new |
| 158 | * thread, perhaps running on a different processor, is clearing it. Because |
| 159 | * of that, \c ThreadSafe, which can only ever be changed to \c GL_TRUE, is |
| 160 | * used to determine whether or not the application is multithreaded. |
| 161 | * |
| 162 | * In the TLS case, the variables \c _glapi_Dispatch and \c _glapi_Context are |
| 163 | * hardcoded to \c NULL. Instead the TLS variables \c _glapi_tls_Dispatch and |
| 164 | * \c _glapi_tls_Context are used. Having \c _glapi_Dispatch and |
| 165 | * \c _glapi_Context be hardcoded to \c NULL maintains binary compatability |
| 166 | * between TLS enabled loaders and non-TLS DRI drivers. |
| 167 | */ |
| 168 | /*@{*/ |
| 169 | #if defined(GLX_USE_TLS) |
| 170 | |
| 171 | PUBLIC __thread struct _glapi_table * _glapi_tls_Dispatch |
| 172 | __attribute__((tls_model("initial-exec"))) |
| 173 | = (struct _glapi_table *) __glapi_noop_table; |
| 174 | |
| 175 | PUBLIC __thread void * _glapi_tls_Context |
| 176 | __attribute__((tls_model("initial-exec"))); |
| 177 | |
| 178 | PUBLIC const struct _glapi_table *_glapi_Dispatch = NULL; |
| 179 | PUBLIC const void *_glapi_Context = NULL; |
| 180 | |
| 181 | #else |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 182 | |
| 183 | #if defined(THREADS) |
| 184 | |
Ian Romanick | d14d103 | 2004-07-02 00:01:09 +0000 | [diff] [blame] | 185 | static GLboolean ThreadSafe = GL_FALSE; /**< In thread-safe mode? */ |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 186 | _glthread_TSD _gl_DispatchTSD; /**< Per-thread dispatch pointer */ |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 187 | static _glthread_TSD ContextTSD; /**< Per-thread context pointer */ |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 188 | |
Brian Paul | 385f23e | 2006-06-16 14:50:05 +0000 | [diff] [blame] | 189 | #if defined(WIN32_THREADS) |
| 190 | void FreeTSD(_glthread_TSD *p); |
| 191 | void FreeAllTSD(void) |
| 192 | { |
| 193 | FreeTSD(&_gl_DispatchTSD); |
| 194 | FreeTSD(&ContextTSD); |
| 195 | } |
| 196 | #endif /* defined(WIN32_THREADS) */ |
| 197 | |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 198 | #endif /* defined(THREADS) */ |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 199 | |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 200 | PUBLIC struct _glapi_table *_glapi_Dispatch = |
| 201 | (struct _glapi_table *) __glapi_noop_table; |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 202 | PUBLIC void *_glapi_Context = NULL; |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 203 | |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 204 | #endif /* defined(GLX_USE_TLS) */ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 205 | /*@}*/ |
Brian Paul | ab0c886 | 2001-01-23 23:35:47 +0000 | [diff] [blame] | 206 | |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 207 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 208 | /** |
| 209 | * strdup() is actually not a standard ANSI C or POSIX routine. |
Brian Paul | 3c257e1 | 2001-03-28 17:19:58 +0000 | [diff] [blame] | 210 | * Irix will not define it if ANSI mode is in effect. |
| 211 | */ |
| 212 | static char * |
| 213 | str_dup(const char *str) |
Randy Frank | d7361e1 | 2000-03-27 21:13:58 +0000 | [diff] [blame] | 214 | { |
Brian Paul | fffb809 | 2000-03-29 18:46:11 +0000 | [diff] [blame] | 215 | char *copy; |
| 216 | copy = (char*) malloc(strlen(str) + 1); |
| 217 | if (!copy) |
| 218 | return NULL; |
| 219 | strcpy(copy, str); |
| 220 | return copy; |
Randy Frank | d7361e1 | 2000-03-27 21:13:58 +0000 | [diff] [blame] | 221 | } |
| 222 | |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 223 | |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 224 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 225 | /** |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 226 | * We should call this periodically from a function such as glXMakeCurrent |
Brian Paul | 5104b4d | 2002-03-07 21:50:41 +0000 | [diff] [blame] | 227 | * in order to test if multiple threads are being used. |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 228 | */ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 229 | void |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 230 | _glapi_check_multithread(void) |
| 231 | { |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 232 | #if defined(THREADS) && !defined(GLX_USE_TLS) |
Ian Romanick | d14d103 | 2004-07-02 00:01:09 +0000 | [diff] [blame] | 233 | if (!ThreadSafe) { |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 234 | static unsigned long knownID; |
| 235 | static GLboolean firstCall = GL_TRUE; |
| 236 | if (firstCall) { |
| 237 | knownID = _glthread_GetID(); |
| 238 | firstCall = GL_FALSE; |
| 239 | } |
| 240 | else if (knownID != _glthread_GetID()) { |
Ian Romanick | d14d103 | 2004-07-02 00:01:09 +0000 | [diff] [blame] | 241 | ThreadSafe = GL_TRUE; |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 242 | _glapi_set_dispatch(NULL); |
| 243 | } |
| 244 | } |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 245 | else if (!_glapi_get_dispatch()) { |
| 246 | /* make sure that this thread's dispatch pointer isn't null */ |
| 247 | _glapi_set_dispatch(NULL); |
| 248 | } |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 249 | #endif |
| 250 | } |
| 251 | |
| 252 | |
| 253 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 254 | /** |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 255 | * Set the current context pointer for this thread. |
| 256 | * The context pointer is an opaque type which should be cast to |
| 257 | * void from the real context pointer type. |
| 258 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 259 | PUBLIC void |
Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 260 | _glapi_set_context(void *context) |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 261 | { |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 262 | (void) __unused_noop_functions; /* silence a warning */ |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 263 | #if defined(GLX_USE_TLS) |
| 264 | _glapi_tls_Context = context; |
| 265 | #elif defined(THREADS) |
Brian Paul | 3c27be3 | 2000-02-10 21:27:48 +0000 | [diff] [blame] | 266 | _glthread_SetTSD(&ContextTSD, context); |
Ian Romanick | d14d103 | 2004-07-02 00:01:09 +0000 | [diff] [blame] | 267 | _glapi_Context = (ThreadSafe) ? NULL : context; |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 268 | #else |
Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 269 | _glapi_Context = context; |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 270 | #endif |
| 271 | } |
| 272 | |
| 273 | |
| 274 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 275 | /** |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 276 | * Get the current context pointer for this thread. |
| 277 | * The context pointer is an opaque type which should be cast from |
| 278 | * void to the real context pointer type. |
| 279 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 280 | PUBLIC void * |
Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 281 | _glapi_get_context(void) |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 282 | { |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 283 | #if defined(GLX_USE_TLS) |
| 284 | return _glapi_tls_Context; |
| 285 | #elif defined(THREADS) |
Ian Romanick | d14d103 | 2004-07-02 00:01:09 +0000 | [diff] [blame] | 286 | if (ThreadSafe) { |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 287 | return _glthread_GetTSD(&ContextTSD); |
| 288 | } |
| 289 | else { |
Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 290 | return _glapi_Context; |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 291 | } |
| 292 | #else |
Brian Paul | f9b97d9 | 2000-01-28 20:17:42 +0000 | [diff] [blame] | 293 | return _glapi_Context; |
Brian Paul | 8f91fb6 | 1999-12-17 14:51:28 +0000 | [diff] [blame] | 294 | #endif |
| 295 | } |
| 296 | |
| 297 | |
| 298 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 299 | /** |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 300 | * Set the global or per-thread dispatch table pointer. |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 301 | * If the dispatch parameter is NULL we'll plug in the no-op dispatch |
| 302 | * table (__glapi_noop_table). |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 303 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 304 | PUBLIC void |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 305 | _glapi_set_dispatch(struct _glapi_table *dispatch) |
| 306 | { |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 307 | #if defined(PTHREADS) || defined(GLX_USE_TLS) |
| 308 | static pthread_once_t once_control = PTHREAD_ONCE_INIT; |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 309 | pthread_once( & once_control, init_glapi_relocs ); |
| 310 | #endif |
| 311 | |
Ian Romanick | 6c5402b | 2004-07-05 22:40:54 +0000 | [diff] [blame] | 312 | if (!dispatch) { |
| 313 | /* use the no-op functions */ |
| 314 | dispatch = (struct _glapi_table *) __glapi_noop_table; |
| 315 | } |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 316 | #ifdef DEBUG |
Ian Romanick | 6c5402b | 2004-07-05 22:40:54 +0000 | [diff] [blame] | 317 | else { |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 318 | _glapi_check_table(dispatch); |
| 319 | } |
| 320 | #endif |
| 321 | |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 322 | #if defined(GLX_USE_TLS) |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 323 | _glapi_tls_Dispatch = dispatch; |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 324 | #elif defined(THREADS) |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 325 | _glthread_SetTSD(&_gl_DispatchTSD, (void *) dispatch); |
| 326 | _glapi_Dispatch = (ThreadSafe) ? NULL : dispatch; |
Brian Paul | 3a71d05 | 2000-09-05 20:17:37 +0000 | [diff] [blame] | 327 | #else /*THREADS*/ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 328 | _glapi_Dispatch = dispatch; |
Brian Paul | 3a71d05 | 2000-09-05 20:17:37 +0000 | [diff] [blame] | 329 | #endif /*THREADS*/ |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 330 | } |
| 331 | |
| 332 | |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 333 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 334 | /** |
Brian Paul | bb72d32 | 1999-12-16 17:31:59 +0000 | [diff] [blame] | 335 | * Return pointer to current dispatch table for calling thread. |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 336 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 337 | PUBLIC struct _glapi_table * |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 338 | _glapi_get_dispatch(void) |
| 339 | { |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 340 | struct _glapi_table * api; |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 341 | #if defined(GLX_USE_TLS) |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 342 | api = _glapi_tls_Dispatch; |
| 343 | #elif defined(THREADS) |
| 344 | api = (ThreadSafe) |
| 345 | ? (struct _glapi_table *) _glthread_GetTSD(&_gl_DispatchTSD) |
| 346 | : _glapi_Dispatch; |
| 347 | #else |
| 348 | api = _glapi_Dispatch; |
| 349 | #endif |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 350 | return api; |
Brian Paul | 3a71d05 | 2000-09-05 20:17:37 +0000 | [diff] [blame] | 351 | } |
Brian Paul | ab0c886 | 2001-01-23 23:35:47 +0000 | [diff] [blame] | 352 | |
Brian Paul | 3a71d05 | 2000-09-05 20:17:37 +0000 | [diff] [blame] | 353 | |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 354 | |
| 355 | /*** |
| 356 | *** The rest of this file is pretty much concerned with GetProcAddress |
| 357 | *** functionality. |
| 358 | ***/ |
| 359 | |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 360 | #if defined(USE_X64_64_ASM) && defined(GLX_USE_TLS) |
| 361 | # define DISPATCH_FUNCTION_SIZE 16 |
| 362 | #elif defined(USE_X86_ASM) |
| 363 | # if defined(THREADS) && !defined(GLX_USE_TLS) |
| 364 | # define DISPATCH_FUNCTION_SIZE 32 |
| 365 | # else |
| 366 | # define DISPATCH_FUNCTION_SIZE 16 |
| 367 | # endif |
| 368 | #endif |
| 369 | |
| 370 | #if !defined(DISPATCH_FUNCTION_SIZE) && !defined(XFree86Server) && !defined(XGLServer) |
| 371 | # define NEED_FUNCTION_POINTER |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 372 | #endif |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 373 | |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 374 | /* The code in this file is auto-generated with Python */ |
Brian Paul | b5fd886 | 2001-11-18 22:48:11 +0000 | [diff] [blame] | 375 | #include "glprocs.h" |
Brian Paul | 7fb54ae | 1999-11-19 22:33:50 +0000 | [diff] [blame] | 376 | |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 377 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 378 | /** |
| 379 | * Search the table of static entrypoint functions for the named function |
| 380 | * and return the corresponding glprocs_table_t entry. |
| 381 | */ |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 382 | static const glprocs_table_t * |
| 383 | find_entry( const char * n ) |
| 384 | { |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 385 | GLuint i; |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 386 | for (i = 0; static_functions[i].Name_offset >= 0; i++) { |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 387 | const char *testName = gl_string_table + static_functions[i].Name_offset; |
| 388 | if (strcmp(testName, n) == 0) { |
| 389 | return &static_functions[i]; |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 390 | } |
| 391 | } |
| 392 | return NULL; |
| 393 | } |
| 394 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 395 | |
| 396 | /** |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 397 | * Return dispatch table offset of the named static (built-in) function. |
| 398 | * Return -1 if function not found. |
| 399 | */ |
| 400 | static GLint |
| 401 | get_static_proc_offset(const char *funcName) |
| 402 | { |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 403 | const glprocs_table_t * const f = find_entry( funcName ); |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 404 | if (f) { |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 405 | return f->Offset; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 406 | } |
| 407 | return -1; |
| 408 | } |
| 409 | |
| 410 | |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 411 | #if !defined(XFree86Server) && !defined(XGLServer) |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 412 | #ifdef USE_X86_ASM |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 413 | |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 414 | #if defined( GLX_USE_TLS ) |
| 415 | extern GLubyte gl_dispatch_functions_start[]; |
| 416 | extern GLubyte gl_dispatch_functions_end[]; |
| 417 | #else |
| 418 | extern const GLubyte gl_dispatch_functions_start[]; |
| 419 | #endif |
| 420 | |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 421 | #endif /* USE_X86_ASM */ |
| 422 | |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 423 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 424 | /** |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 425 | * Return dispatch function address for the named static (built-in) function. |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 426 | * Return NULL if function not found. |
| 427 | */ |
Brian Paul | 09c8e41 | 2006-04-13 01:51:25 +0000 | [diff] [blame] | 428 | static _glapi_proc |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 429 | get_static_proc_address(const char *funcName) |
| 430 | { |
| 431 | const glprocs_table_t * const f = find_entry( funcName ); |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 432 | if (f) { |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 433 | #ifdef DISPATCH_FUNCTION_SIZE |
Brian Paul | 209bd3a | 2004-11-27 04:02:32 +0000 | [diff] [blame] | 434 | return (_glapi_proc) (gl_dispatch_functions_start |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 435 | + (DISPATCH_FUNCTION_SIZE * f->Offset)); |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 436 | #else |
| 437 | return f->Address; |
| 438 | #endif |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 439 | } |
| 440 | else { |
| 441 | return NULL; |
| 442 | } |
| 443 | } |
| 444 | |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 445 | #endif /* !defined(XFree86Server) && !defined(XGLServer) */ |
Ian Romanick | 8e77da1c | 2004-06-29 19:08:20 +0000 | [diff] [blame] | 446 | |
| 447 | |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 448 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 449 | /** |
| 450 | * Return the name of the function at the given offset in the dispatch |
| 451 | * table. For debugging only. |
| 452 | */ |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 453 | static const char * |
| 454 | get_static_proc_name( GLuint offset ) |
| 455 | { |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 456 | GLuint i; |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 457 | for (i = 0; static_functions[i].Name_offset >= 0; i++) { |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 458 | if (static_functions[i].Offset == offset) { |
| 459 | return gl_string_table + static_functions[i].Name_offset; |
Brian Paul | 9c7ca85 | 2000-10-19 20:13:12 +0000 | [diff] [blame] | 460 | } |
| 461 | } |
| 462 | return NULL; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | |
| 466 | |
| 467 | /********************************************************************** |
| 468 | * Extension function management. |
| 469 | */ |
| 470 | |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 471 | /* |
| 472 | * Number of extension functions which we can dynamically add at runtime. |
| 473 | */ |
| 474 | #define MAX_EXTENSION_FUNCS 300 |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 475 | |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 476 | |
| 477 | /* |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 478 | * The dispatch table size (number of entries) is the size of the |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 479 | * _glapi_table struct plus the number of dynamic entries we can add. |
| 480 | * The extra slots can be filled in by DRI drivers that register new extension |
| 481 | * functions. |
| 482 | */ |
| 483 | #define DISPATCH_TABLE_SIZE (sizeof(struct _glapi_table) / sizeof(void *) + MAX_EXTENSION_FUNCS) |
| 484 | |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 485 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 486 | /** |
| 487 | * Track information about a function added to the GL API. |
| 488 | */ |
| 489 | struct _glapi_function { |
| 490 | /** |
| 491 | * Name of the function. |
| 492 | */ |
| 493 | const char * name; |
| 494 | |
| 495 | |
| 496 | /** |
| 497 | * Text string that describes the types of the parameters passed to the |
| 498 | * named function. Parameter types are converted to characters using the |
| 499 | * following rules: |
| 500 | * - 'i' for \c GLint, \c GLuint, and \c GLenum |
| 501 | * - 'p' for any pointer type |
| 502 | * - 'f' for \c GLfloat and \c GLclampf |
| 503 | * - 'd' for \c GLdouble and \c GLclampd |
| 504 | */ |
| 505 | const char * parameter_signature; |
| 506 | |
| 507 | |
| 508 | /** |
| 509 | * Offset in the dispatch table where the pointer to the real function is |
| 510 | * located. If the driver has not requested that the named function be |
| 511 | * added to the dispatch table, this will have the value ~0. |
| 512 | */ |
| 513 | unsigned dispatch_offset; |
| 514 | |
| 515 | |
| 516 | /** |
| 517 | * Pointer to the dispatch stub for the named function. |
| 518 | * |
| 519 | * \todo |
| 520 | * The semantic of this field should be changed slightly. Currently, it |
| 521 | * is always expected to be non-\c NULL. However, it would be better to |
| 522 | * only allocate the entry-point stub when the application requests the |
| 523 | * function via \c glXGetProcAddress. This would save memory for all the |
| 524 | * functions that the driver exports but that the application never wants |
| 525 | * to call. |
| 526 | */ |
| 527 | _glapi_proc dispatch_stub; |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 528 | }; |
| 529 | |
| 530 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 531 | static struct _glapi_function ExtEntryTable[MAX_EXTENSION_FUNCS]; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 532 | static GLuint NumExtEntryPoints = 0; |
| 533 | |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 534 | #ifdef USE_SPARC_ASM |
| 535 | extern void __glapi_sparc_icache_flush(unsigned int *); |
| 536 | #endif |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 537 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 538 | /** |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 539 | * Generate a dispatch function (entrypoint) which jumps through |
| 540 | * the given slot number (offset) in the current dispatch table. |
| 541 | * We need assembly language in order to accomplish this. |
| 542 | */ |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 543 | static _glapi_proc |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 544 | generate_entrypoint(GLuint functionOffset) |
| 545 | { |
| 546 | #if defined(USE_X86_ASM) |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 547 | /* 32 is chosen as something of a magic offset. For x86, the dispatch |
| 548 | * at offset 32 is the first one where the offset in the |
| 549 | * "jmp OFFSET*4(%eax)" can't be encoded in a single byte. |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 550 | */ |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 551 | const GLubyte * const template_func = gl_dispatch_functions_start |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 552 | + (DISPATCH_FUNCTION_SIZE * 32); |
| 553 | GLubyte * const code = (GLubyte *) malloc(DISPATCH_FUNCTION_SIZE); |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 554 | |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 555 | |
| 556 | if ( code != NULL ) { |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 557 | (void) memcpy(code, template_func, DISPATCH_FUNCTION_SIZE); |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 558 | fill_in_entrypoint_offset( (_glapi_proc) code, functionOffset ); |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 559 | } |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 560 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 561 | return (_glapi_proc) code; |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 562 | #elif defined(USE_SPARC_ASM) |
| 563 | |
Ian Romanick | 9f23a3a | 2005-07-28 00:11:10 +0000 | [diff] [blame] | 564 | #ifdef __arch64__ |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 565 | static const unsigned int insn_template[] = { |
| 566 | 0x05000000, /* sethi %uhi(_glapi_Dispatch), %g2 */ |
| 567 | 0x03000000, /* sethi %hi(_glapi_Dispatch), %g1 */ |
| 568 | 0x8410a000, /* or %g2, %ulo(_glapi_Dispatch), %g2 */ |
| 569 | 0x82106000, /* or %g1, %lo(_glapi_Dispatch), %g1 */ |
| 570 | 0x8528b020, /* sllx %g2, 32, %g2 */ |
| 571 | 0xc2584002, /* ldx [%g1 + %g2], %g1 */ |
| 572 | 0x05000000, /* sethi %hi(8 * glapioffset), %g2 */ |
| 573 | 0x8410a000, /* or %g2, %lo(8 * glapioffset), %g2 */ |
| 574 | 0xc6584002, /* ldx [%g1 + %g2], %g3 */ |
| 575 | 0x81c0c000, /* jmpl %g3, %g0 */ |
| 576 | 0x01000000 /* nop */ |
| 577 | }; |
| 578 | #else |
| 579 | static const unsigned int insn_template[] = { |
| 580 | 0x03000000, /* sethi %hi(_glapi_Dispatch), %g1 */ |
| 581 | 0xc2006000, /* ld [%g1 + %lo(_glapi_Dispatch)], %g1 */ |
| 582 | 0xc6006000, /* ld [%g1 + %lo(4*glapioffset)], %g3 */ |
| 583 | 0x81c0c000, /* jmpl %g3, %g0 */ |
| 584 | 0x01000000 /* nop */ |
| 585 | }; |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 586 | #endif /* __arch64__ */ |
Brian Paul | dec2a4d | 2002-10-29 15:03:14 +0000 | [diff] [blame] | 587 | unsigned int *code = (unsigned int *) malloc(sizeof(insn_template)); |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 588 | unsigned long glapi_addr = (unsigned long) &_glapi_Dispatch; |
| 589 | if (code) { |
| 590 | memcpy(code, insn_template, sizeof(insn_template)); |
| 591 | |
Ian Romanick | 9f23a3a | 2005-07-28 00:11:10 +0000 | [diff] [blame] | 592 | #ifdef __arch64__ |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 593 | code[0] |= (glapi_addr >> (32 + 10)); |
| 594 | code[1] |= ((glapi_addr & 0xffffffff) >> 10); |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 595 | __glapi_sparc_icache_flush(&code[0]); |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 596 | code[2] |= ((glapi_addr >> 32) & ((1 << 10) - 1)); |
| 597 | code[3] |= (glapi_addr & ((1 << 10) - 1)); |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 598 | __glapi_sparc_icache_flush(&code[2]); |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 599 | code[6] |= ((functionOffset * 8) >> 10); |
| 600 | code[7] |= ((functionOffset * 8) & ((1 << 10) - 1)); |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 601 | __glapi_sparc_icache_flush(&code[6]); |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 602 | #else |
| 603 | code[0] |= (glapi_addr >> 10); |
| 604 | code[1] |= (glapi_addr & ((1 << 10) - 1)); |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 605 | __glapi_sparc_icache_flush(&code[0]); |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 606 | code[2] |= (functionOffset * 4); |
davem69 | 4a497e6 | 2001-06-06 22:55:28 +0000 | [diff] [blame] | 607 | __glapi_sparc_icache_flush(&code[2]); |
Brian Paul | 514a15c | 2006-03-15 20:56:22 +0000 | [diff] [blame] | 608 | #endif /* __arch64__ */ |
davem69 | 775355a | 2001-06-05 23:54:00 +0000 | [diff] [blame] | 609 | } |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 610 | return (_glapi_proc) code; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 611 | #else |
Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 612 | (void) functionOffset; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 613 | return NULL; |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 614 | #endif /* USE_*_ASM */ |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 618 | /** |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 619 | * This function inserts a new dispatch offset into the assembly language |
| 620 | * stub that was generated with the preceeding function. |
| 621 | */ |
| 622 | static void |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 623 | fill_in_entrypoint_offset(_glapi_proc entrypoint, GLuint offset) |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 624 | { |
| 625 | #if defined(USE_X86_ASM) |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 626 | GLubyte * const code = (GLubyte *) entrypoint; |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 627 | |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 628 | #if DISPATCH_FUNCTION_SIZE == 32 |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 629 | *((unsigned int *)(code + 11)) = 4 * offset; |
| 630 | *((unsigned int *)(code + 22)) = 4 * offset; |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 631 | #elif DISPATCH_FUNCTION_SIZE == 16 && defined( GLX_USE_TLS ) |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 632 | *((unsigned int *)(code + 8)) = 4 * offset; |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 633 | #elif DISPATCH_FUNCTION_SIZE == 16 |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 634 | *((unsigned int *)(code + 7)) = 4 * offset; |
| 635 | #else |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 636 | # error Invalid DISPATCH_FUNCTION_SIZE! |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 637 | #endif |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 638 | |
| 639 | #elif defined(USE_SPARC_ASM) |
| 640 | |
| 641 | /* XXX this hasn't been tested! */ |
| 642 | unsigned int *code = (unsigned int *) entrypoint; |
Ian Romanick | 9f23a3a | 2005-07-28 00:11:10 +0000 | [diff] [blame] | 643 | #ifdef __arch64__ |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 644 | code[6] = 0x05000000; /* sethi %hi(8 * glapioffset), %g2 */ |
| 645 | code[7] = 0x8410a000; /* or %g2, %lo(8 * glapioffset), %g2 */ |
| 646 | code[6] |= ((offset * 8) >> 10); |
| 647 | code[7] |= ((offset * 8) & ((1 << 10) - 1)); |
| 648 | __glapi_sparc_icache_flush(&code[6]); |
Ian Romanick | 9f23a3a | 2005-07-28 00:11:10 +0000 | [diff] [blame] | 649 | #else /* __arch64__ */ |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 650 | code[2] = 0xc6006000; /* ld [%g1 + %lo(4*glapioffset)], %g3 */ |
Brian Paul | 944ea20 | 2002-10-17 16:29:17 +0000 | [diff] [blame] | 651 | code[2] |= (offset * 4); |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 652 | __glapi_sparc_icache_flush(&code[2]); |
Ian Romanick | 9f23a3a | 2005-07-28 00:11:10 +0000 | [diff] [blame] | 653 | #endif /* __arch64__ */ |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 654 | |
Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 655 | #else |
| 656 | |
| 657 | /* an unimplemented architecture */ |
| 658 | (void) entrypoint; |
| 659 | (void) offset; |
| 660 | |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 661 | #endif /* USE_*_ASM */ |
| 662 | } |
| 663 | |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 664 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 665 | /** |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 666 | * Generate new entrypoint |
| 667 | * |
| 668 | * Use a temporary dispatch offset of ~0 (i.e. -1). Later, when the driver |
| 669 | * calls \c _glapi_add_dispatch we'll put in the proper offset. If that |
| 670 | * never happens, and the user calls this function, he'll segfault. That's |
| 671 | * what you get when you try calling a GL function that doesn't really exist. |
| 672 | * |
| 673 | * \param funcName Name of the function to create an entry-point for. |
| 674 | * |
| 675 | * \sa _glapi_add_entrypoint |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 676 | */ |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 677 | |
| 678 | static struct _glapi_function * |
| 679 | add_function_name( const char * funcName ) |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 680 | { |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 681 | struct _glapi_function * entry = NULL; |
| 682 | |
| 683 | if (NumExtEntryPoints < MAX_EXTENSION_FUNCS) { |
| 684 | _glapi_proc entrypoint = generate_entrypoint(~0); |
| 685 | if (entrypoint != NULL) { |
| 686 | entry = & ExtEntryTable[NumExtEntryPoints]; |
| 687 | |
| 688 | ExtEntryTable[NumExtEntryPoints].name = str_dup(funcName); |
| 689 | ExtEntryTable[NumExtEntryPoints].parameter_signature = NULL; |
| 690 | ExtEntryTable[NumExtEntryPoints].dispatch_offset = ~0; |
| 691 | ExtEntryTable[NumExtEntryPoints].dispatch_stub = entrypoint; |
| 692 | NumExtEntryPoints++; |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | return entry; |
| 697 | } |
| 698 | |
| 699 | |
| 700 | /** |
| 701 | * Fill-in the dispatch stub for the named function. |
| 702 | * |
| 703 | * This function is intended to be called by a hardware driver. When called, |
| 704 | * a dispatch stub may be created created for the function. A pointer to this |
| 705 | * dispatch function will be returned by glXGetProcAddress. |
| 706 | * |
| 707 | * \param function_names Array of pointers to function names that should |
| 708 | * share a common dispatch offset. |
| 709 | * \param parameter_signature String representing the types of the parameters |
| 710 | * passed to the named function. Parameter types |
| 711 | * are converted to characters using the following |
| 712 | * rules: |
| 713 | * - 'i' for \c GLint, \c GLuint, and \c GLenum |
| 714 | * - 'p' for any pointer type |
| 715 | * - 'f' for \c GLfloat and \c GLclampf |
| 716 | * - 'd' for \c GLdouble and \c GLclampd |
| 717 | * |
| 718 | * \returns |
| 719 | * The offset in the dispatch table of the named function. A pointer to the |
| 720 | * driver's implementation of the named function should be stored at |
| 721 | * \c dispatch_table[\c offset]. |
| 722 | * |
| 723 | * \sa glXGetProcAddress |
| 724 | * |
| 725 | * \warning |
| 726 | * This function can only handle up to 8 names at a time. As far as I know, |
| 727 | * the maximum number of names ever associated with an existing GL function is |
| 728 | * 4 (\c glPointParameterfSGIS, \c glPointParameterfEXT, |
| 729 | * \c glPointParameterfARB, and \c glPointParameterf), so this should not be |
| 730 | * too painful of a limitation. |
| 731 | * |
| 732 | * \todo |
| 733 | * Determine whether or not \c parameter_signature should be allowed to be |
| 734 | * \c NULL. It doesn't seem like much of a hardship for drivers to have to |
| 735 | * pass in an empty string. |
| 736 | * |
| 737 | * \todo |
| 738 | * Determine if code should be added to reject function names that start with |
| 739 | * 'glX'. |
| 740 | * |
| 741 | * \bug |
| 742 | * Add code to compare \c parameter_signature with the parameter signature of |
| 743 | * a static function. In order to do that, we need to find a way to \b get |
| 744 | * the parameter signature of a static function. |
| 745 | */ |
| 746 | |
| 747 | PUBLIC int |
| 748 | _glapi_add_dispatch( const char * const * function_names, |
| 749 | const char * parameter_signature ) |
| 750 | { |
| 751 | static int next_dynamic_offset = _gloffset_FIRST_DYNAMIC; |
| 752 | const char * const real_sig = (parameter_signature != NULL) |
| 753 | ? parameter_signature : ""; |
| 754 | struct _glapi_function * entry[8]; |
| 755 | GLboolean is_static[8]; |
| 756 | unsigned i; |
| 757 | unsigned j; |
| 758 | int offset = ~0; |
| 759 | int new_offset; |
| 760 | |
| 761 | |
| 762 | (void) memset( is_static, 0, sizeof( is_static ) ); |
| 763 | (void) memset( entry, 0, sizeof( entry ) ); |
| 764 | |
| 765 | for ( i = 0 ; function_names[i] != NULL ; i++ ) { |
| 766 | /* Do some trivial validation on the name of the function. |
| 767 | */ |
| 768 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 769 | if (!function_names[i] || function_names[i][0] != 'g' || function_names[i][1] != 'l') |
| 770 | return GL_FALSE; |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 771 | |
| 772 | /* Determine if the named function already exists. If the function does |
| 773 | * exist, it must have the same parameter signature as the function |
| 774 | * being added. |
| 775 | */ |
Brian Paul | 8ad1076 | 2002-10-11 17:41:03 +0000 | [diff] [blame] | 776 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 777 | new_offset = get_static_proc_offset(function_names[i]); |
| 778 | if (new_offset >= 0) { |
| 779 | /* FIXME: Make sure the parameter signatures match! How do we get |
| 780 | * FIXME: the parameter signature for static functions? |
| 781 | */ |
| 782 | |
| 783 | if ( (offset != ~0) && (new_offset != offset) ) { |
| 784 | return -1; |
| 785 | } |
| 786 | |
| 787 | is_static[i] = GL_TRUE; |
| 788 | offset = new_offset; |
| 789 | } |
| 790 | |
| 791 | |
| 792 | for ( j = 0 ; j < NumExtEntryPoints ; j++ ) { |
| 793 | if (strcmp(ExtEntryTable[j].name, function_names[i]) == 0) { |
| 794 | /* The offset may be ~0 if the function name was added by |
| 795 | * glXGetProcAddress but never filled in by the driver. |
| 796 | */ |
| 797 | |
| 798 | if (ExtEntryTable[j].dispatch_offset != ~0) { |
| 799 | if (strcmp(real_sig, ExtEntryTable[j].parameter_signature) |
| 800 | != 0) { |
| 801 | return -1; |
| 802 | } |
| 803 | |
| 804 | if ( (offset != ~0) && (ExtEntryTable[j].dispatch_offset != offset) ) { |
| 805 | return -1; |
| 806 | } |
| 807 | |
| 808 | offset = ExtEntryTable[j].dispatch_offset; |
| 809 | } |
| 810 | |
| 811 | entry[i] = & ExtEntryTable[j]; |
| 812 | break; |
| 813 | } |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 814 | } |
| 815 | } |
| 816 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 817 | if (offset == ~0) { |
| 818 | offset = next_dynamic_offset; |
| 819 | next_dynamic_offset++; |
| 820 | } |
| 821 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 822 | for ( i = 0 ; function_names[i] != NULL ; i++ ) { |
| 823 | if (! is_static[i] ) { |
| 824 | if (entry[i] == NULL) { |
| 825 | entry[i] = add_function_name( function_names[i] ); |
| 826 | if (entry[i] == NULL) { |
| 827 | /* FIXME: Possible memory leak here. |
| 828 | */ |
| 829 | return -1; |
| 830 | } |
| 831 | } |
| 832 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 833 | entry[i]->parameter_signature = str_dup(real_sig); |
| 834 | fill_in_entrypoint_offset(entry[i]->dispatch_stub, offset); |
| 835 | entry[i]->dispatch_offset = offset; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 836 | } |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 837 | } |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 838 | |
| 839 | return offset; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 843 | /** |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 844 | * Return offset of entrypoint for named function within dispatch table. |
| 845 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 846 | PUBLIC GLint |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 847 | _glapi_get_proc_offset(const char *funcName) |
| 848 | { |
| 849 | /* search extension functions first */ |
Brian Paul | b51b0a8 | 2001-03-07 05:06:11 +0000 | [diff] [blame] | 850 | GLuint i; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 851 | for (i = 0; i < NumExtEntryPoints; i++) { |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 852 | if (strcmp(ExtEntryTable[i].name, funcName) == 0) { |
| 853 | return ExtEntryTable[i].dispatch_offset; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 854 | } |
| 855 | } |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 856 | /* search static functions */ |
| 857 | return get_static_proc_offset(funcName); |
| 858 | } |
| 859 | |
| 860 | |
| 861 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 862 | /** |
| 863 | * Return pointer to the named function. If the function name isn't found |
| 864 | * in the name of static functions, try generating a new API entrypoint on |
| 865 | * the fly with assembly language. |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 866 | */ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 867 | _glapi_proc |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 868 | _glapi_get_proc_address(const char *funcName) |
| 869 | { |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 870 | struct _glapi_function * entry; |
Brian Paul | b51b0a8 | 2001-03-07 05:06:11 +0000 | [diff] [blame] | 871 | GLuint i; |
Brian Paul | a6ed6f4 | 2003-08-27 14:48:16 +0000 | [diff] [blame] | 872 | |
Brian Paul | f7b4e0d | 2004-04-23 20:33:07 +0000 | [diff] [blame] | 873 | #ifdef MANGLE |
| 874 | if (funcName[0] != 'm' || funcName[1] != 'g' || funcName[2] != 'l') |
| 875 | return NULL; |
| 876 | #else |
Brian Paul | a6ed6f4 | 2003-08-27 14:48:16 +0000 | [diff] [blame] | 877 | if (funcName[0] != 'g' || funcName[1] != 'l') |
| 878 | return NULL; |
Brian Paul | f7b4e0d | 2004-04-23 20:33:07 +0000 | [diff] [blame] | 879 | #endif |
Brian Paul | a6ed6f4 | 2003-08-27 14:48:16 +0000 | [diff] [blame] | 880 | |
| 881 | /* search extension functions first */ |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 882 | for (i = 0; i < NumExtEntryPoints; i++) { |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 883 | if (strcmp(ExtEntryTable[i].name, funcName) == 0) { |
| 884 | return ExtEntryTable[i].dispatch_stub; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 885 | } |
| 886 | } |
| 887 | |
Dave Airlie | f236300 | 2006-02-10 21:46:17 +0000 | [diff] [blame] | 888 | #if !defined( XFree86Server ) && !defined( XGLServer ) |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 889 | /* search static functions */ |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 890 | { |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 891 | const _glapi_proc func = get_static_proc_address(funcName); |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 892 | if (func) |
| 893 | return func; |
| 894 | } |
Ian Romanick | 44b1bd7 | 2005-10-11 16:56:39 +0000 | [diff] [blame] | 895 | #endif /* !defined( XFree86Server ) */ |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 896 | |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 897 | entry = add_function_name(funcName); |
| 898 | return (entry == NULL) ? NULL : entry->dispatch_stub; |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 899 | } |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 900 | |
| 901 | |
| 902 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 903 | /** |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 904 | * Return the name of the function at the given dispatch offset. |
| 905 | * This is only intended for debugging. |
| 906 | */ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 907 | const char * |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 908 | _glapi_get_proc_name(GLuint offset) |
| 909 | { |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 910 | GLuint i; |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 911 | const char * n; |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 912 | |
| 913 | /* search built-in functions */ |
Ian Romanick | 7867799 | 2004-05-27 00:05:13 +0000 | [diff] [blame] | 914 | n = get_static_proc_name(offset); |
| 915 | if ( n != NULL ) { |
| 916 | return n; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 917 | } |
| 918 | |
| 919 | /* search added extension functions */ |
| 920 | for (i = 0; i < NumExtEntryPoints; i++) { |
Ian Romanick | 1585c23 | 2005-07-28 00:29:51 +0000 | [diff] [blame] | 921 | if (ExtEntryTable[i].dispatch_offset == offset) { |
| 922 | return ExtEntryTable[i].name; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 923 | } |
| 924 | } |
| 925 | return NULL; |
| 926 | } |
| 927 | |
| 928 | |
| 929 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 930 | /** |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 931 | * Return size of dispatch table struct as number of functions (or |
| 932 | * slots). |
| 933 | */ |
Adam Jackson | 791ce02 | 2004-12-15 23:14:29 +0000 | [diff] [blame] | 934 | PUBLIC GLuint |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 935 | _glapi_get_dispatch_table_size(void) |
| 936 | { |
| 937 | return DISPATCH_TABLE_SIZE; |
| 938 | } |
| 939 | |
| 940 | |
| 941 | |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 942 | /** |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 943 | * Make sure there are no NULL pointers in the given dispatch table. |
Brian Paul | 5104b4d | 2002-03-07 21:50:41 +0000 | [diff] [blame] | 944 | * Intended for debugging purposes. |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 945 | */ |
Ian Romanick | 967b006 | 2005-08-10 23:54:15 +0000 | [diff] [blame] | 946 | void |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 947 | _glapi_check_table(const struct _glapi_table *table) |
| 948 | { |
Brian Paul | 5104b4d | 2002-03-07 21:50:41 +0000 | [diff] [blame] | 949 | #ifdef DEBUG |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 950 | const GLuint entries = _glapi_get_dispatch_table_size(); |
| 951 | const void **tab = (const void **) table; |
| 952 | GLuint i; |
| 953 | for (i = 1; i < entries; i++) { |
| 954 | assert(tab[i]); |
| 955 | } |
| 956 | |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 957 | /* Do some spot checks to be sure that the dispatch table |
| 958 | * slots are assigned correctly. |
| 959 | */ |
| 960 | { |
| 961 | GLuint BeginOffset = _glapi_get_proc_offset("glBegin"); |
| 962 | char *BeginFunc = (char*) &table->Begin; |
| 963 | GLuint offset = (BeginFunc - (char *) table) / sizeof(void *); |
| 964 | assert(BeginOffset == _gloffset_Begin); |
| 965 | assert(BeginOffset == offset); |
| 966 | } |
| 967 | { |
| 968 | GLuint viewportOffset = _glapi_get_proc_offset("glViewport"); |
| 969 | char *viewportFunc = (char*) &table->Viewport; |
| 970 | GLuint offset = (viewportFunc - (char *) table) / sizeof(void *); |
| 971 | assert(viewportOffset == _gloffset_Viewport); |
| 972 | assert(viewportOffset == offset); |
| 973 | } |
| 974 | { |
| 975 | GLuint VertexPointerOffset = _glapi_get_proc_offset("glVertexPointer"); |
| 976 | char *VertexPointerFunc = (char*) &table->VertexPointer; |
| 977 | GLuint offset = (VertexPointerFunc - (char *) table) / sizeof(void *); |
| 978 | assert(VertexPointerOffset == _gloffset_VertexPointer); |
| 979 | assert(VertexPointerOffset == offset); |
| 980 | } |
| 981 | { |
| 982 | GLuint ResetMinMaxOffset = _glapi_get_proc_offset("glResetMinmax"); |
| 983 | char *ResetMinMaxFunc = (char*) &table->ResetMinmax; |
| 984 | GLuint offset = (ResetMinMaxFunc - (char *) table) / sizeof(void *); |
| 985 | assert(ResetMinMaxOffset == _gloffset_ResetMinmax); |
| 986 | assert(ResetMinMaxOffset == offset); |
| 987 | } |
| 988 | { |
| 989 | GLuint blendColorOffset = _glapi_get_proc_offset("glBlendColor"); |
| 990 | char *blendColorFunc = (char*) &table->BlendColor; |
| 991 | GLuint offset = (blendColorFunc - (char *) table) / sizeof(void *); |
| 992 | assert(blendColorOffset == _gloffset_BlendColor); |
| 993 | assert(blendColorOffset == offset); |
| 994 | } |
| 995 | { |
| 996 | GLuint istextureOffset = _glapi_get_proc_offset("glIsTextureEXT"); |
| 997 | char *istextureFunc = (char*) &table->IsTextureEXT; |
| 998 | GLuint offset = (istextureFunc - (char *) table) / sizeof(void *); |
| 999 | assert(istextureOffset == _gloffset_IsTextureEXT); |
| 1000 | assert(istextureOffset == offset); |
| 1001 | } |
Brian Paul | a14cbff | 2000-10-27 18:31:21 +0000 | [diff] [blame] | 1002 | { |
| 1003 | GLuint secondaryColor3fOffset = _glapi_get_proc_offset("glSecondaryColor3fEXT"); |
| 1004 | char *secondaryColor3fFunc = (char*) &table->SecondaryColor3fEXT; |
| 1005 | GLuint offset = (secondaryColor3fFunc - (char *) table) / sizeof(void *); |
| 1006 | assert(secondaryColor3fOffset == _gloffset_SecondaryColor3fEXT); |
| 1007 | assert(secondaryColor3fOffset == offset); |
Brian Paul | 767e15a | 2004-11-27 03:51:11 +0000 | [diff] [blame] | 1008 | assert(_glapi_get_proc_address("glSecondaryColor3fEXT") == (_glapi_proc) &glSecondaryColor3fEXT); |
Brian Paul | a14cbff | 2000-10-27 18:31:21 +0000 | [diff] [blame] | 1009 | } |
Brian Paul | 91d6f12 | 2002-05-29 15:23:16 +0000 | [diff] [blame] | 1010 | { |
| 1011 | GLuint pointParameterivOffset = _glapi_get_proc_offset("glPointParameterivNV"); |
| 1012 | char *pointParameterivFunc = (char*) &table->PointParameterivNV; |
| 1013 | GLuint offset = (pointParameterivFunc - (char *) table) / sizeof(void *); |
| 1014 | assert(pointParameterivOffset == _gloffset_PointParameterivNV); |
| 1015 | assert(pointParameterivOffset == offset); |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 1016 | assert(_glapi_get_proc_address("glPointParameterivNV") == (_glapi_proc) &glPointParameterivNV); |
Brian Paul | 91d6f12 | 2002-05-29 15:23:16 +0000 | [diff] [blame] | 1017 | } |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 1018 | { |
| 1019 | GLuint setFenceOffset = _glapi_get_proc_offset("glSetFenceNV"); |
| 1020 | char *setFenceFunc = (char*) &table->SetFenceNV; |
| 1021 | GLuint offset = (setFenceFunc - (char *) table) / sizeof(void *); |
| 1022 | assert(setFenceOffset == _gloffset_SetFenceNV); |
| 1023 | assert(setFenceOffset == offset); |
Brian Paul | a760ccf | 2004-12-03 15:24:34 +0000 | [diff] [blame] | 1024 | assert(_glapi_get_proc_address("glSetFenceNV") == (_glapi_proc) &glSetFenceNV); |
Brian Paul | 54f3aab | 2002-10-02 01:51:44 +0000 | [diff] [blame] | 1025 | } |
Brian Paul | a6c423d | 2004-08-25 15:59:48 +0000 | [diff] [blame] | 1026 | #else |
| 1027 | (void) table; |
Brian Paul | 959f802 | 2000-03-19 01:10:11 +0000 | [diff] [blame] | 1028 | #endif |
| 1029 | } |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 1030 | |
| 1031 | |
Kristian Høgsberg | 3a6d968 | 2006-03-29 22:32:38 +0000 | [diff] [blame] | 1032 | #if defined(PTHREADS) || defined(GLX_USE_TLS) |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 1033 | /** |
| 1034 | * Perform platform-specific GL API entry-point fixups. |
| 1035 | * |
| 1036 | * |
| 1037 | */ |
| 1038 | static void |
| 1039 | init_glapi_relocs( void ) |
| 1040 | { |
| 1041 | #if defined( USE_X86_ASM ) && defined( GLX_USE_TLS ) |
| 1042 | extern void * _x86_get_dispatch(void); |
| 1043 | const GLubyte * const get_disp = (const GLubyte *) _x86_get_dispatch; |
| 1044 | GLubyte * curr_func = (GLubyte *) gl_dispatch_functions_start; |
| 1045 | |
| 1046 | |
| 1047 | while ( curr_func != (GLubyte *) gl_dispatch_functions_end ) { |
| 1048 | (void) memcpy( curr_func, get_disp, 6 ); |
Ian Romanick | d319edf | 2006-08-22 18:22:20 +0000 | [diff] [blame^] | 1049 | curr_func += DISPATCH_FUNCTION_SIZE; |
Ian Romanick | 25fe93f | 2005-04-13 20:59:15 +0000 | [diff] [blame] | 1050 | } |
| 1051 | #endif /* defined( USE_X86_ASM ) && defined( GLX_USE_TLS ) */ |
| 1052 | } |
Kristian Høgsberg | 3a6d968 | 2006-03-29 22:32:38 +0000 | [diff] [blame] | 1053 | #endif |