blob: 7a3b827352a8d1ce8a248c5bfce66135d9302a68 [file] [log] [blame]
Michal Krol2861e732004-03-29 11:09:34 +00001/*
2 * Mesa 3-D graphics library
Brian942ee022007-02-09 15:40:00 -07003 * Version: 6.5.3
Michal Krol2861e732004-03-29 11:09:34 +00004 *
Brian942ee022007-02-09 15:40:00 -07005 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
Michal Krol2861e732004-03-29 11:09:34 +00006 *
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/**
26 * \file program.c
27 * Vertex and fragment program support functions.
28 * \author Brian Paul
29 */
30
31
José Fonseca101d1a62008-07-23 21:06:01 +090032#include "main/glheader.h"
33#include "main/context.h"
34#include "main/hash.h"
Brian0560d812006-12-14 15:01:28 -070035#include "program.h"
Brianb26aae62007-10-31 12:00:38 -060036#include "prog_cache.h"
Brian0560d812006-12-14 15:01:28 -070037#include "prog_parameter.h"
38#include "prog_instruction.h"
Michal Krol2861e732004-03-29 11:09:34 +000039
40
Brian942ee022007-02-09 15:40:00 -070041/**
42 * A pointer to this dummy program is put into the hash table when
Brian Paul765f1a12004-09-14 22:28:27 +000043 * glGenPrograms is called.
44 */
Brian Paul122629f2006-07-20 16:49:57 +000045struct gl_program _mesa_DummyProgram;
Brian Paul765f1a12004-09-14 22:28:27 +000046
47
Michal Krol2861e732004-03-29 11:09:34 +000048/**
Brian Paul21841f02004-08-14 14:28:11 +000049 * Init context's vertex/fragment program state
Michal Krol2861e732004-03-29 11:09:34 +000050 */
51void
52_mesa_init_program(GLcontext *ctx)
53{
54 GLuint i;
55
56 ctx->Program.ErrorPos = -1;
57 ctx->Program.ErrorString = _mesa_strdup("");
58
59#if FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
60 ctx->VertexProgram.Enabled = GL_FALSE;
Brian Paulaf3d9db2008-08-12 10:00:36 -060061#if FEATURE_es2_glsl
62 ctx->VertexProgram.PointSizeEnabled = GL_TRUE;
63#else
Michal Krol2861e732004-03-29 11:09:34 +000064 ctx->VertexProgram.PointSizeEnabled = GL_FALSE;
Brian Paulaf3d9db2008-08-12 10:00:36 -060065#endif
Michal Krol2861e732004-03-29 11:09:34 +000066 ctx->VertexProgram.TwoSideEnabled = GL_FALSE;
Briandf43fb62008-05-06 23:08:51 -060067 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
68 ctx->Shared->DefaultVertexProgram);
Michal Krol2861e732004-03-29 11:09:34 +000069 assert(ctx->VertexProgram.Current);
Michal Krol2861e732004-03-29 11:09:34 +000070 for (i = 0; i < MAX_NV_VERTEX_PROGRAM_PARAMS / 4; i++) {
71 ctx->VertexProgram.TrackMatrix[i] = GL_NONE;
72 ctx->VertexProgram.TrackMatrixTransform[i] = GL_IDENTITY_NV;
73 }
Brianb26aae62007-10-31 12:00:38 -060074 ctx->VertexProgram.Cache = _mesa_new_program_cache();
Michal Krol2861e732004-03-29 11:09:34 +000075#endif
76
77#if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program
78 ctx->FragmentProgram.Enabled = GL_FALSE;
Briandf43fb62008-05-06 23:08:51 -060079 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
80 ctx->Shared->DefaultFragmentProgram);
Michal Krol2861e732004-03-29 11:09:34 +000081 assert(ctx->FragmentProgram.Current);
Brianb26aae62007-10-31 12:00:38 -060082 ctx->FragmentProgram.Cache = _mesa_new_program_cache();
Michal Krol2861e732004-03-29 11:09:34 +000083#endif
Dave Airlie7f752fe2004-12-19 03:06:59 +000084
Brianb26aae62007-10-31 12:00:38 -060085
Brian Paul63d68302005-11-19 16:43:04 +000086 /* XXX probably move this stuff */
Dave Airlie7f752fe2004-12-19 03:06:59 +000087#if FEATURE_ATI_fragment_shader
88 ctx->ATIFragmentShader.Enabled = GL_FALSE;
Brian Paulb7eea9a2008-07-29 17:19:25 -060089 ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader;
Dave Airlie7f752fe2004-12-19 03:06:59 +000090 assert(ctx->ATIFragmentShader.Current);
Brian Paul63d68302005-11-19 16:43:04 +000091 ctx->ATIFragmentShader.Current->RefCount++;
Dave Airlie7f752fe2004-12-19 03:06:59 +000092#endif
Michal Krol2861e732004-03-29 11:09:34 +000093}
94
95
96/**
Brian Paul21841f02004-08-14 14:28:11 +000097 * Free a context's vertex/fragment program state
98 */
99void
100_mesa_free_program_data(GLcontext *ctx)
101{
Roland Scheidegger93da6732006-03-01 23:11:14 +0000102#if FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
Briandf43fb62008-05-06 23:08:51 -0600103 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
Brian1631a952007-12-26 06:57:24 -0700104 _mesa_delete_program_cache(ctx, ctx->VertexProgram.Cache);
Brian Paul21841f02004-08-14 14:28:11 +0000105#endif
Roland Scheidegger93da6732006-03-01 23:11:14 +0000106#if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program
Briandf43fb62008-05-06 23:08:51 -0600107 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL);
Brian1631a952007-12-26 06:57:24 -0700108 _mesa_delete_program_cache(ctx, ctx->FragmentProgram.Cache);
Brian Paul21841f02004-08-14 14:28:11 +0000109#endif
Brian Paul63d68302005-11-19 16:43:04 +0000110 /* XXX probably move this stuff */
Dave Airlie7f752fe2004-12-19 03:06:59 +0000111#if FEATURE_ATI_fragment_shader
112 if (ctx->ATIFragmentShader.Current) {
Brian Paul63d68302005-11-19 16:43:04 +0000113 ctx->ATIFragmentShader.Current->RefCount--;
114 if (ctx->ATIFragmentShader.Current->RefCount <= 0) {
115 _mesa_free(ctx->ATIFragmentShader.Current);
116 }
Dave Airlie7f752fe2004-12-19 03:06:59 +0000117 }
118#endif
Brian Paul21841f02004-08-14 14:28:11 +0000119 _mesa_free((void *) ctx->Program.ErrorString);
120}
121
122
Brian4b654d42007-08-23 08:53:43 +0100123/**
124 * Update the default program objects in the given context to reference those
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200125 * specified in the shared state and release those referencing the old
Brian4b654d42007-08-23 08:53:43 +0100126 * shared state.
127 */
128void
129_mesa_update_default_objects_program(GLcontext *ctx)
130{
131#if FEATURE_NV_vertex_program || FEATURE_ARB_vertex_program
Brian Paul57e222d2008-05-14 12:10:45 -0600132 _mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
133 (struct gl_vertex_program *)
134 ctx->Shared->DefaultVertexProgram);
Brian4b654d42007-08-23 08:53:43 +0100135 assert(ctx->VertexProgram.Current);
Brian4b654d42007-08-23 08:53:43 +0100136#endif
137
138#if FEATURE_NV_fragment_program || FEATURE_ARB_fragment_program
Brian Paul57e222d2008-05-14 12:10:45 -0600139 _mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
140 (struct gl_fragment_program *)
141 ctx->Shared->DefaultFragmentProgram);
Brian4b654d42007-08-23 08:53:43 +0100142 assert(ctx->FragmentProgram.Current);
Brian4b654d42007-08-23 08:53:43 +0100143#endif
144
145 /* XXX probably move this stuff */
146#if FEATURE_ATI_fragment_shader
147 if (ctx->ATIFragmentShader.Current) {
148 ctx->ATIFragmentShader.Current->RefCount--;
149 if (ctx->ATIFragmentShader.Current->RefCount <= 0) {
150 _mesa_free(ctx->ATIFragmentShader.Current);
151 }
152 }
153 ctx->ATIFragmentShader.Current = (struct ati_fragment_shader *) ctx->Shared->DefaultFragmentShader;
154 assert(ctx->ATIFragmentShader.Current);
155 ctx->ATIFragmentShader.Current->RefCount++;
156#endif
157}
Brian Paul21841f02004-08-14 14:28:11 +0000158
159
160/**
Michal Krol2861e732004-03-29 11:09:34 +0000161 * Set the vertex/fragment program error state (position and error string).
162 * This is generally called from within the parsers.
163 */
164void
165_mesa_set_program_error(GLcontext *ctx, GLint pos, const char *string)
166{
167 ctx->Program.ErrorPos = pos;
168 _mesa_free((void *) ctx->Program.ErrorString);
169 if (!string)
170 string = "";
171 ctx->Program.ErrorString = _mesa_strdup(string);
172}
173
174
175/**
176 * Find the line number and column for 'pos' within 'string'.
177 * Return a copy of the line which contains 'pos'. Free the line with
178 * _mesa_free().
179 * \param string the program string
180 * \param pos the position within the string
181 * \param line returns the line number corresponding to 'pos'.
182 * \param col returns the column number corresponding to 'pos'.
183 * \return copy of the line containing 'pos'.
184 */
185const GLubyte *
186_mesa_find_line_column(const GLubyte *string, const GLubyte *pos,
187 GLint *line, GLint *col)
188{
189 const GLubyte *lineStart = string;
190 const GLubyte *p = string;
191 GLubyte *s;
192 int len;
193
194 *line = 1;
195
196 while (p != pos) {
197 if (*p == (GLubyte) '\n') {
198 (*line)++;
199 lineStart = p + 1;
200 }
201 p++;
202 }
203
204 *col = (pos - lineStart) + 1;
205
206 /* return copy of this line */
207 while (*p != 0 && *p != '\n')
208 p++;
209 len = p - lineStart;
210 s = (GLubyte *) _mesa_malloc(len + 1);
211 _mesa_memcpy(s, lineStart, len);
212 s[len] = 0;
213
214 return s;
215}
216
217
Brian Paul765f1a12004-09-14 22:28:27 +0000218/**
219 * Initialize a new vertex/fragment program object.
220 */
Brian Paul122629f2006-07-20 16:49:57 +0000221static struct gl_program *
222_mesa_init_program_struct( GLcontext *ctx, struct gl_program *prog,
Brian Paul765f1a12004-09-14 22:28:27 +0000223 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000224{
Brian Paula6c423d2004-08-25 15:59:48 +0000225 (void) ctx;
Michal Krol2861e732004-03-29 11:09:34 +0000226 if (prog) {
Brian Paul0c78c762008-05-18 15:46:26 -0600227 GLuint i;
228 _mesa_bzero(prog, sizeof(*prog));
Michal Krol2861e732004-03-29 11:09:34 +0000229 prog->Id = id;
230 prog->Target = target;
231 prog->Resident = GL_TRUE;
232 prog->RefCount = 1;
Brian Paul308b85f2006-11-23 15:58:30 +0000233 prog->Format = GL_PROGRAM_FORMAT_ASCII_ARB;
Brian Paul0c78c762008-05-18 15:46:26 -0600234
235 /* default mapping from samplers to texture units */
236 for (i = 0; i < MAX_SAMPLERS; i++)
237 prog->SamplerUnits[i] = i;
Michal Krol2861e732004-03-29 11:09:34 +0000238 }
239
240 return prog;
241}
242
Brian Paul765f1a12004-09-14 22:28:27 +0000243
244/**
245 * Initialize a new fragment program object.
246 */
Brian Paul122629f2006-07-20 16:49:57 +0000247struct gl_program *
248_mesa_init_fragment_program( GLcontext *ctx, struct gl_fragment_program *prog,
Brian Paul765f1a12004-09-14 22:28:27 +0000249 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000250{
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200251 if (prog)
Michal Krol2861e732004-03-29 11:09:34 +0000252 return _mesa_init_program_struct( ctx, &prog->Base, target, id );
253 else
254 return NULL;
255}
256
Brian Paul765f1a12004-09-14 22:28:27 +0000257
258/**
259 * Initialize a new vertex program object.
260 */
Brian Paul122629f2006-07-20 16:49:57 +0000261struct gl_program *
262_mesa_init_vertex_program( GLcontext *ctx, struct gl_vertex_program *prog,
Brian Paul765f1a12004-09-14 22:28:27 +0000263 GLenum target, GLuint id)
Michal Krol2861e732004-03-29 11:09:34 +0000264{
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200265 if (prog)
Michal Krol2861e732004-03-29 11:09:34 +0000266 return _mesa_init_program_struct( ctx, &prog->Base, target, id );
267 else
268 return NULL;
269}
270
271
272/**
273 * Allocate and initialize a new fragment/vertex program object but
274 * don't put it into the program hash table. Called via
275 * ctx->Driver.NewProgram. May be overridden (ie. replaced) by a
276 * device driver function to implement OO deriviation with additional
277 * types not understood by this function.
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200278 *
Michal Krol2861e732004-03-29 11:09:34 +0000279 * \param ctx context
280 * \param id program id/number
281 * \param target program target/type
282 * \return pointer to new program object
283 */
Brian Paul122629f2006-07-20 16:49:57 +0000284struct gl_program *
Michal Krol2861e732004-03-29 11:09:34 +0000285_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id)
286{
Brian Paula3e86d42008-05-16 09:56:11 -0600287 struct gl_program *prog;
Michal Krol2861e732004-03-29 11:09:34 +0000288 switch (target) {
289 case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
Brian Paula3e86d42008-05-16 09:56:11 -0600290 prog = _mesa_init_vertex_program(ctx, CALLOC_STRUCT(gl_vertex_program),
Brian Paul122629f2006-07-20 16:49:57 +0000291 target, id );
Brian Paula3e86d42008-05-16 09:56:11 -0600292 break;
Michal Krol2861e732004-03-29 11:09:34 +0000293 case GL_FRAGMENT_PROGRAM_NV:
294 case GL_FRAGMENT_PROGRAM_ARB:
Brian Paula3e86d42008-05-16 09:56:11 -0600295 prog =_mesa_init_fragment_program(ctx,
Brian Paul122629f2006-07-20 16:49:57 +0000296 CALLOC_STRUCT(gl_fragment_program),
297 target, id );
Brian Paula3e86d42008-05-16 09:56:11 -0600298 break;
Michal Krol2861e732004-03-29 11:09:34 +0000299 default:
300 _mesa_problem(ctx, "bad target in _mesa_new_program");
Brian Paula3e86d42008-05-16 09:56:11 -0600301 prog = NULL;
Michal Krol2861e732004-03-29 11:09:34 +0000302 }
Brian Paula3e86d42008-05-16 09:56:11 -0600303 return prog;
Michal Krol2861e732004-03-29 11:09:34 +0000304}
305
306
307/**
308 * Delete a program and remove it from the hash table, ignoring the
309 * reference count.
310 * Called via ctx->Driver.DeleteProgram. May be wrapped (OO deriviation)
311 * by a device driver function.
312 */
313void
Brian Paul122629f2006-07-20 16:49:57 +0000314_mesa_delete_program(GLcontext *ctx, struct gl_program *prog)
Michal Krol2861e732004-03-29 11:09:34 +0000315{
Brian Paula6c423d2004-08-25 15:59:48 +0000316 (void) ctx;
Brian Paul57e222d2008-05-14 12:10:45 -0600317 ASSERT(prog);
318 ASSERT(prog->RefCount==0);
Michal Krol2861e732004-03-29 11:09:34 +0000319
Brian Paul308b85f2006-11-23 15:58:30 +0000320 if (prog == &_mesa_DummyProgram)
321 return;
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200322
Michal Krol2861e732004-03-29 11:09:34 +0000323 if (prog->String)
324 _mesa_free(prog->String);
Brian Paulde997602005-11-12 17:53:14 +0000325
Brian Paul19ad9cf2008-05-14 12:39:41 -0600326 _mesa_free_instructions(prog->Instructions, prog->NumInstructions);
Brian Paulde997602005-11-12 17:53:14 +0000327
Brian Paul65a51c02006-05-24 03:30:31 +0000328 if (prog->Parameters) {
Brian Paulde997602005-11-12 17:53:14 +0000329 _mesa_free_parameter_list(prog->Parameters);
Brian Paul65a51c02006-05-24 03:30:31 +0000330 }
Brianfe1d01c2006-12-13 14:54:47 -0700331 if (prog->Varying) {
332 _mesa_free_parameter_list(prog->Varying);
333 }
Brian3493e862007-03-24 16:18:13 -0600334 if (prog->Attributes) {
335 _mesa_free_parameter_list(prog->Attributes);
336 }
Brianfe1d01c2006-12-13 14:54:47 -0700337
Brian Paul58d080b2006-08-25 19:46:31 +0000338 /* XXX this is a little ugly */
339 if (prog->Target == GL_VERTEX_PROGRAM_ARB) {
340 struct gl_vertex_program *vprog = (struct gl_vertex_program *) prog;
341 if (vprog->TnlData)
342 _mesa_free(vprog->TnlData);
343 }
344
Michal Krol2861e732004-03-29 11:09:34 +0000345 _mesa_free(prog);
346}
347
348
Brian Paul4d12a052006-08-23 23:10:14 +0000349/**
350 * Return the gl_program object for a given ID.
351 * Basically just a wrapper for _mesa_HashLookup() to avoid a lot of
352 * casts elsewhere.
353 */
354struct gl_program *
355_mesa_lookup_program(GLcontext *ctx, GLuint id)
356{
357 if (id)
358 return (struct gl_program *) _mesa_HashLookup(ctx->Shared->Programs, id);
359 else
360 return NULL;
361}
362
Michal Krol2861e732004-03-29 11:09:34 +0000363
Brian Paul3b9b8de2006-08-24 21:57:36 +0000364/**
Briandf43fb62008-05-06 23:08:51 -0600365 * Reference counting for vertex/fragment programs
366 */
367void
368_mesa_reference_program(GLcontext *ctx,
369 struct gl_program **ptr,
370 struct gl_program *prog)
371{
372 assert(ptr);
373 if (*ptr && prog) {
374 /* sanity check */
Brian Paul4bc39c52008-09-26 07:40:45 -0600375 if ((*ptr)->Target == GL_VERTEX_PROGRAM_ARB)
376 ASSERT(prog->Target == GL_VERTEX_PROGRAM_ARB);
377 else if ((*ptr)->Target == GL_FRAGMENT_PROGRAM_ARB)
378 ASSERT(prog->Target == GL_FRAGMENT_PROGRAM_ARB ||
379 prog->Target == GL_FRAGMENT_PROGRAM_NV);
Briandf43fb62008-05-06 23:08:51 -0600380 }
381 if (*ptr == prog) {
382 return; /* no change */
383 }
384 if (*ptr) {
385 GLboolean deleteFlag;
386
387 /*_glthread_LOCK_MUTEX((*ptr)->Mutex);*/
Brian Paulb4e75d62008-05-08 10:59:31 -0600388#if 0
Brian Paula3e86d42008-05-16 09:56:11 -0600389 printf("Program %p ID=%u Target=%s Refcount-- to %d\n",
390 *ptr, (*ptr)->Id,
391 ((*ptr)->Target == GL_VERTEX_PROGRAM_ARB ? "VP" : "FP"),
392 (*ptr)->RefCount - 1);
Briandf43fb62008-05-06 23:08:51 -0600393#endif
394 ASSERT((*ptr)->RefCount > 0);
395 (*ptr)->RefCount--;
396
397 deleteFlag = ((*ptr)->RefCount == 0);
398 /*_glthread_UNLOCK_MUTEX((*ptr)->Mutex);*/
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200399
Briandf43fb62008-05-06 23:08:51 -0600400 if (deleteFlag) {
401 ASSERT(ctx);
402 ctx->Driver.DeleteProgram(ctx, *ptr);
403 }
404
405 *ptr = NULL;
406 }
407
408 assert(!*ptr);
409 if (prog) {
410 /*_glthread_LOCK_MUTEX(prog->Mutex);*/
411 prog->RefCount++;
Brian Paulb4e75d62008-05-08 10:59:31 -0600412#if 0
Brian Paula3e86d42008-05-16 09:56:11 -0600413 printf("Program %p ID=%u Target=%s Refcount++ to %d\n",
414 prog, prog->Id,
415 (prog->Target == GL_VERTEX_PROGRAM_ARB ? "VP" : "FP"),
416 prog->RefCount);
Briandf43fb62008-05-06 23:08:51 -0600417#endif
418 /*_glthread_UNLOCK_MUTEX(prog->Mutex);*/
419 }
420
421 *ptr = prog;
422}
423
424
425/**
Brianb2a3a852006-12-14 13:56:58 -0700426 * Return a copy of a program.
427 * XXX Problem here if the program object is actually OO-derivation
428 * made by a device driver.
429 */
430struct gl_program *
431_mesa_clone_program(GLcontext *ctx, const struct gl_program *prog)
432{
433 struct gl_program *clone;
434
Brian5b6858c2007-07-24 09:56:44 -0600435 clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id);
Brianb2a3a852006-12-14 13:56:58 -0700436 if (!clone)
437 return NULL;
438
439 assert(clone->Target == prog->Target);
Briandf43fb62008-05-06 23:08:51 -0600440 assert(clone->RefCount == 1);
441
Brianb2a3a852006-12-14 13:56:58 -0700442 clone->String = (GLubyte *) _mesa_strdup((char *) prog->String);
Brianb2a3a852006-12-14 13:56:58 -0700443 clone->Format = prog->Format;
444 clone->Instructions = _mesa_alloc_instructions(prog->NumInstructions);
445 if (!clone->Instructions) {
Brian Paul57e222d2008-05-14 12:10:45 -0600446 _mesa_reference_program(ctx, &clone, NULL);
Brianb2a3a852006-12-14 13:56:58 -0700447 return NULL;
448 }
Brian12229f12007-03-22 09:11:26 -0600449 _mesa_copy_instructions(clone->Instructions, prog->Instructions,
450 prog->NumInstructions);
Brianb2a3a852006-12-14 13:56:58 -0700451 clone->InputsRead = prog->InputsRead;
452 clone->OutputsWritten = prog->OutputsWritten;
Brian Paul0c78c762008-05-18 15:46:26 -0600453 clone->SamplersUsed = prog->SamplersUsed;
Nicolai Haehnle82635aa2008-07-05 18:03:44 +0200454 clone->ShadowSamplers = prog->ShadowSamplers;
Brianc9db2232007-01-04 17:22:19 -0700455 memcpy(clone->TexturesUsed, prog->TexturesUsed, sizeof(prog->TexturesUsed));
456
Brian2e76f0a2006-12-19 09:52:07 -0700457 if (prog->Parameters)
458 clone->Parameters = _mesa_clone_parameter_list(prog->Parameters);
Brianb2a3a852006-12-14 13:56:58 -0700459 memcpy(clone->LocalParams, prog->LocalParams, sizeof(clone->LocalParams));
Brian2e76f0a2006-12-19 09:52:07 -0700460 if (prog->Varying)
461 clone->Varying = _mesa_clone_parameter_list(prog->Varying);
Brian3209c3e2007-01-09 17:49:24 -0700462 if (prog->Attributes)
463 clone->Attributes = _mesa_clone_parameter_list(prog->Attributes);
Brianb2a3a852006-12-14 13:56:58 -0700464 memcpy(clone->LocalParams, prog->LocalParams, sizeof(clone->LocalParams));
465 clone->NumInstructions = prog->NumInstructions;
466 clone->NumTemporaries = prog->NumTemporaries;
467 clone->NumParameters = prog->NumParameters;
468 clone->NumAttributes = prog->NumAttributes;
469 clone->NumAddressRegs = prog->NumAddressRegs;
470 clone->NumNativeInstructions = prog->NumNativeInstructions;
471 clone->NumNativeTemporaries = prog->NumNativeTemporaries;
472 clone->NumNativeParameters = prog->NumNativeParameters;
473 clone->NumNativeAttributes = prog->NumNativeAttributes;
474 clone->NumNativeAddressRegs = prog->NumNativeAddressRegs;
Brian21f99792007-01-09 11:00:21 -0700475 clone->NumAluInstructions = prog->NumAluInstructions;
476 clone->NumTexInstructions = prog->NumTexInstructions;
477 clone->NumTexIndirections = prog->NumTexIndirections;
478 clone->NumNativeAluInstructions = prog->NumNativeAluInstructions;
479 clone->NumNativeTexInstructions = prog->NumNativeTexInstructions;
480 clone->NumNativeTexIndirections = prog->NumNativeTexIndirections;
Brianb2a3a852006-12-14 13:56:58 -0700481
482 switch (prog->Target) {
483 case GL_VERTEX_PROGRAM_ARB:
484 {
485 const struct gl_vertex_program *vp
486 = (const struct gl_vertex_program *) prog;
487 struct gl_vertex_program *vpc = (struct gl_vertex_program *) clone;
488 vpc->IsPositionInvariant = vp->IsPositionInvariant;
489 }
490 break;
491 case GL_FRAGMENT_PROGRAM_ARB:
492 {
493 const struct gl_fragment_program *fp
494 = (const struct gl_fragment_program *) prog;
495 struct gl_fragment_program *fpc = (struct gl_fragment_program *) clone;
Brianb2a3a852006-12-14 13:56:58 -0700496 fpc->FogOption = fp->FogOption;
497 fpc->UsesKill = fp->UsesKill;
498 }
499 break;
500 default:
501 _mesa_problem(NULL, "Unexpected target in _mesa_clone_program");
502 }
503
504 return clone;
505}
506
507
Brian Paul19ad9cf2008-05-14 12:39:41 -0600508/**
509 * Insert 'count' NOP instructions at 'start' in the given program.
510 * Adjust branch targets accordingly.
511 */
512GLboolean
513_mesa_insert_instructions(struct gl_program *prog, GLuint start, GLuint count)
514{
515 const GLuint origLen = prog->NumInstructions;
516 const GLuint newLen = origLen + count;
517 struct prog_instruction *newInst;
518 GLuint i;
519
520 /* adjust branches */
521 for (i = 0; i < prog->NumInstructions; i++) {
522 struct prog_instruction *inst = prog->Instructions + i;
523 if (inst->BranchTarget > 0) {
José Fonseca457d7212008-06-24 11:34:46 +0900524 if ((GLuint)inst->BranchTarget >= start) {
Brian Paul19ad9cf2008-05-14 12:39:41 -0600525 inst->BranchTarget += count;
526 }
527 }
528 }
529
530 /* Alloc storage for new instructions */
531 newInst = _mesa_alloc_instructions(newLen);
532 if (!newInst) {
533 return GL_FALSE;
534 }
535
536 /* Copy 'start' instructions into new instruction buffer */
537 _mesa_copy_instructions(newInst, prog->Instructions, start);
538
539 /* init the new instructions */
540 _mesa_init_instructions(newInst + start, count);
541
542 /* Copy the remaining/tail instructions to new inst buffer */
543 _mesa_copy_instructions(newInst + start + count,
544 prog->Instructions + start,
545 origLen - start);
546
547 /* free old instructions */
548 _mesa_free_instructions(prog->Instructions, origLen);
549
550 /* install new instructions */
551 prog->Instructions = newInst;
552 prog->NumInstructions = newLen;
553
554 return GL_TRUE;
555}
556
Brianb2a3a852006-12-14 13:56:58 -0700557/**
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200558 * Delete 'count' instructions at 'start' in the given program.
559 * Adjust branch targets accordingly.
560 */
561GLboolean
562_mesa_delete_instructions(struct gl_program *prog, GLuint start, GLuint count)
563{
564 const GLuint origLen = prog->NumInstructions;
565 const GLuint newLen = origLen - count;
566 struct prog_instruction *newInst;
567 GLuint i;
568
569 /* adjust branches */
570 for (i = 0; i < prog->NumInstructions; i++) {
571 struct prog_instruction *inst = prog->Instructions + i;
572 if (inst->BranchTarget > 0) {
Brian Paul5273a5f2009-01-07 12:31:14 -0700573 if (inst->BranchTarget > start) {
Nicolai Haehnled8d086c2008-07-06 19:48:50 +0200574 inst->BranchTarget -= count;
575 }
576 }
577 }
578
579 /* Alloc storage for new instructions */
580 newInst = _mesa_alloc_instructions(newLen);
581 if (!newInst) {
582 return GL_FALSE;
583 }
584
585 /* Copy 'start' instructions into new instruction buffer */
586 _mesa_copy_instructions(newInst, prog->Instructions, start);
587
588 /* Copy the remaining/tail instructions to new inst buffer */
589 _mesa_copy_instructions(newInst + start,
590 prog->Instructions + start + count,
591 newLen - start);
592
593 /* free old instructions */
594 _mesa_free_instructions(prog->Instructions, origLen);
595
596 /* install new instructions */
597 prog->Instructions = newInst;
598 prog->NumInstructions = newLen;
599
600 return GL_TRUE;
601}
602
603
604/**
Brian Paul6ca948a2008-05-14 12:53:03 -0600605 * Search instructions for registers that match (oldFile, oldIndex),
606 * replacing them with (newFile, newIndex).
607 */
608static void
609replace_registers(struct prog_instruction *inst, GLuint numInst,
610 GLuint oldFile, GLuint oldIndex,
611 GLuint newFile, GLuint newIndex)
612{
613 GLuint i, j;
614 for (i = 0; i < numInst; i++) {
Brian Paul0c78c762008-05-18 15:46:26 -0600615 /* src regs */
Brian Paul6ca948a2008-05-14 12:53:03 -0600616 for (j = 0; j < _mesa_num_inst_src_regs(inst->Opcode); j++) {
617 if (inst[i].SrcReg[j].File == oldFile &&
618 inst[i].SrcReg[j].Index == oldIndex) {
619 inst[i].SrcReg[j].File = newFile;
620 inst[i].SrcReg[j].Index = newIndex;
621 }
622 }
Brian Paul0c78c762008-05-18 15:46:26 -0600623 /* dst reg */
624 if (inst[i].DstReg.File == oldFile && inst[i].DstReg.Index == oldIndex) {
625 inst[i].DstReg.File = newFile;
626 inst[i].DstReg.Index = newIndex;
627 }
Brian Paul6ca948a2008-05-14 12:53:03 -0600628 }
629}
630
631
632/**
633 * Search instructions for references to program parameters. When found,
634 * increment the parameter index by 'offset'.
635 * Used when combining programs.
636 */
637static void
638adjust_param_indexes(struct prog_instruction *inst, GLuint numInst,
639 GLuint offset)
640{
641 GLuint i, j;
642 for (i = 0; i < numInst; i++) {
643 for (j = 0; j < _mesa_num_inst_src_regs(inst->Opcode); j++) {
644 GLuint f = inst[i].SrcReg[j].File;
645 if (f == PROGRAM_CONSTANT ||
646 f == PROGRAM_UNIFORM ||
647 f == PROGRAM_STATE_VAR) {
648 inst[i].SrcReg[j].Index += offset;
649 }
650 }
651 }
652}
653
654
655/**
656 * Combine two programs into one. Fix instructions so the outputs of
657 * the first program go to the inputs of the second program.
658 */
659struct gl_program *
660_mesa_combine_programs(GLcontext *ctx,
Brian Paul0c78c762008-05-18 15:46:26 -0600661 const struct gl_program *progA,
662 const struct gl_program *progB)
Brian Paul6ca948a2008-05-14 12:53:03 -0600663{
664 struct prog_instruction *newInst;
665 struct gl_program *newProg;
666 const GLuint lenA = progA->NumInstructions - 1; /* omit END instr */
667 const GLuint lenB = progB->NumInstructions;
668 const GLuint numParamsA = _mesa_num_parameters(progA->Parameters);
669 const GLuint newLength = lenA + lenB;
Brian Paul0c78c762008-05-18 15:46:26 -0600670 GLbitfield inputsB;
Brian Paul6ca948a2008-05-14 12:53:03 -0600671 GLuint i;
672
673 ASSERT(progA->Target == progB->Target);
674
675 newInst = _mesa_alloc_instructions(newLength);
676 if (!newInst)
677 return GL_FALSE;
678
679 _mesa_copy_instructions(newInst, progA->Instructions, lenA);
680 _mesa_copy_instructions(newInst + lenA, progB->Instructions, lenB);
681
682 /* adjust branch / instruction addresses for B's instructions */
683 for (i = 0; i < lenB; i++) {
684 newInst[lenA + i].BranchTarget += lenA;
685 }
686
687 newProg = ctx->Driver.NewProgram(ctx, progA->Target, 0);
688 newProg->Instructions = newInst;
689 newProg->NumInstructions = newLength;
690
691 if (newProg->Target == GL_FRAGMENT_PROGRAM_ARB) {
Brian Paul0c78c762008-05-18 15:46:26 -0600692 struct gl_fragment_program *fprogA, *fprogB, *newFprog;
Brian Paul5c4bd762008-10-08 14:02:24 -0600693 GLbitfield progB_inputsRead = progB->InputsRead;
694 GLint progB_colorFile, progB_colorIndex;
695
Brian Paul0c78c762008-05-18 15:46:26 -0600696 fprogA = (struct gl_fragment_program *) progA;
697 fprogB = (struct gl_fragment_program *) progB;
698 newFprog = (struct gl_fragment_program *) newProg;
699
700 newFprog->UsesKill = fprogA->UsesKill || fprogB->UsesKill;
701
Brian Paul5c4bd762008-10-08 14:02:24 -0600702 /* We'll do a search and replace for instances
703 * of progB_colorFile/progB_colorIndex below...
704 */
705 progB_colorFile = PROGRAM_INPUT;
706 progB_colorIndex = FRAG_ATTRIB_COL0;
707
708 /*
709 * The fragment program may get color from a state var rather than
710 * a fragment input (vertex output) if it's constant.
711 * See the texenvprogram.c code.
712 * So, search the program's parameter list now to see if the program
713 * gets color from a state var instead of a conventional fragment
714 * input register.
715 */
716 for (i = 0; i < progB->Parameters->NumParameters; i++) {
717 struct gl_program_parameter *p = &progB->Parameters->Parameters[i];
718 if (p->Type == PROGRAM_STATE_VAR &&
719 p->StateIndexes[0] == STATE_INTERNAL &&
720 p->StateIndexes[1] == STATE_CURRENT_ATTRIB &&
721 p->StateIndexes[2] == VERT_ATTRIB_COLOR0) {
722 progB_inputsRead |= FRAG_BIT_COL0;
723 progB_colorFile = PROGRAM_STATE_VAR;
724 progB_colorIndex = i;
725 break;
726 }
727 }
728
Brian Paul0c78c762008-05-18 15:46:26 -0600729 /* Connect color outputs of fprogA to color inputs of fprogB, via a
730 * new temporary register.
731 */
Brian Paul6ca948a2008-05-14 12:53:03 -0600732 if ((progA->OutputsWritten & (1 << FRAG_RESULT_COLR)) &&
Brian Paul5c4bd762008-10-08 14:02:24 -0600733 (progB_inputsRead & FRAG_BIT_COL0)) {
Brian Paul0c78c762008-05-18 15:46:26 -0600734 GLint tempReg = _mesa_find_free_register(newProg, PROGRAM_TEMPORARY);
Brian Paule469d782008-05-19 16:03:43 -0600735 if (tempReg < 0) {
Brian Paul0c78c762008-05-18 15:46:26 -0600736 _mesa_problem(ctx, "No free temp regs found in "
737 "_mesa_combine_programs(), using 31");
738 tempReg = 31;
739 }
740 /* replace writes to result.color[0] with tempReg */
741 replace_registers(newInst, lenA,
742 PROGRAM_OUTPUT, FRAG_RESULT_COLR,
743 PROGRAM_TEMPORARY, tempReg);
Brian Paul5c4bd762008-10-08 14:02:24 -0600744 /* replace reads from the input color with tempReg */
Brian Paul6ca948a2008-05-14 12:53:03 -0600745 replace_registers(newInst + lenA, lenB,
Brian Paul5c4bd762008-10-08 14:02:24 -0600746 progB_colorFile, progB_colorIndex, /* search for */
747 PROGRAM_TEMPORARY, tempReg /* replace with */ );
Brian Paul6ca948a2008-05-14 12:53:03 -0600748 }
749
Brian Paul5c4bd762008-10-08 14:02:24 -0600750 /* compute combined program's InputsRead */
751 inputsB = progB_inputsRead;
Brian Paul0c78c762008-05-18 15:46:26 -0600752 if (progA->OutputsWritten & (1 << FRAG_RESULT_COLR)) {
753 inputsB &= ~(1 << FRAG_ATTRIB_COL0);
754 }
755 newProg->InputsRead = progA->InputsRead | inputsB;
Brian Paul6ca948a2008-05-14 12:53:03 -0600756 newProg->OutputsWritten = progB->OutputsWritten;
Brian Paul0c78c762008-05-18 15:46:26 -0600757 newProg->SamplersUsed = progA->SamplersUsed | progB->SamplersUsed;
Brian Paul6ca948a2008-05-14 12:53:03 -0600758 }
759 else {
760 /* vertex program */
761 assert(0); /* XXX todo */
762 }
763
764 /*
765 * Merge parameters (uniforms, constants, etc)
766 */
767 newProg->Parameters = _mesa_combine_parameter_lists(progA->Parameters,
768 progB->Parameters);
769
770 adjust_param_indexes(newInst + lenA, lenB, numParamsA);
771
772
773 return newProg;
774}
775
776
777
778
779/**
780 * Scan the given program to find a free register of the given type.
781 * \param regFile - PROGRAM_INPUT, PROGRAM_OUTPUT or PROGRAM_TEMPORARY
782 */
783GLint
784_mesa_find_free_register(const struct gl_program *prog, GLuint regFile)
785{
786 GLboolean used[MAX_PROGRAM_TEMPS];
787 GLuint i, k;
788
789 assert(regFile == PROGRAM_INPUT ||
790 regFile == PROGRAM_OUTPUT ||
791 regFile == PROGRAM_TEMPORARY);
792
793 _mesa_memset(used, 0, sizeof(used));
794
795 for (i = 0; i < prog->NumInstructions; i++) {
796 const struct prog_instruction *inst = prog->Instructions + i;
797 const GLuint n = _mesa_num_inst_src_regs(inst->Opcode);
798
799 for (k = 0; k < n; k++) {
800 if (inst->SrcReg[k].File == regFile) {
801 used[inst->SrcReg[k].Index] = GL_TRUE;
802 }
803 }
804 }
805
806 for (i = 0; i < MAX_PROGRAM_TEMPS; i++) {
807 if (!used[i])
808 return i;
809 }
810
811 return -1;
812}