2004-03-29 11:09:34 +00:00
|
|
|
/*
|
|
|
|
* Mesa 3-D graphics library
|
|
|
|
*
|
2007-02-09 15:40:00 -07:00
|
|
|
* Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
|
2004-03-29 11:09:34 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
2013-04-21 13:46:48 -07:00
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
2004-03-29 11:09:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \file program.c
|
|
|
|
* Vertex and fragment program support functions.
|
|
|
|
* \author Brian Paul
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2008-07-23 21:06:01 +09:00
|
|
|
#include "main/glheader.h"
|
|
|
|
#include "main/context.h"
|
|
|
|
#include "main/hash.h"
|
2013-10-16 17:22:18 -07:00
|
|
|
#include "main/macros.h"
|
2006-12-14 15:01:28 -07:00
|
|
|
#include "program.h"
|
2007-10-31 12:00:38 -06:00
|
|
|
#include "prog_cache.h"
|
2006-12-14 15:01:28 -07:00
|
|
|
#include "prog_parameter.h"
|
|
|
|
#include "prog_instruction.h"
|
2015-04-07 15:15:09 -07:00
|
|
|
#include "util/ralloc.h"
|
2004-03-29 11:09:34 +00:00
|
|
|
|
|
|
|
|
2007-02-09 15:40:00 -07:00
|
|
|
/**
|
|
|
|
* A pointer to this dummy program is put into the hash table when
|
2004-09-14 22:28:27 +00:00
|
|
|
* glGenPrograms is called.
|
|
|
|
*/
|
2006-07-20 16:49:57 +00:00
|
|
|
struct gl_program _mesa_DummyProgram;
|
2004-09-14 22:28:27 +00:00
|
|
|
|
|
|
|
|
2004-03-29 11:09:34 +00:00
|
|
|
/**
|
2004-08-14 14:28:11 +00:00
|
|
|
* Init context's vertex/fragment program state
|
2004-03-29 11:09:34 +00:00
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_init_program(struct gl_context *ctx)
|
2004-03-29 11:09:34 +00:00
|
|
|
{
|
2009-02-18 11:47:40 -07:00
|
|
|
/*
|
|
|
|
* If this assertion fails, we need to increase the field
|
2010-08-10 08:38:12 -06:00
|
|
|
* size for register indexes (see INST_INDEX_BITS).
|
2009-02-18 11:47:40 -07:00
|
|
|
*/
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxUniformComponents / 4
|
2009-02-18 11:47:40 -07:00
|
|
|
<= (1 << INST_INDEX_BITS));
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxUniformComponents / 4
|
2009-02-18 11:47:40 -07:00
|
|
|
<= (1 << INST_INDEX_BITS));
|
|
|
|
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxTemps <= (1 << INST_INDEX_BITS));
|
|
|
|
assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxLocalParams <= (1 << INST_INDEX_BITS));
|
|
|
|
assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxTemps <= (1 << INST_INDEX_BITS));
|
|
|
|
assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxLocalParams <= (1 << INST_INDEX_BITS));
|
2010-08-10 08:38:12 -06:00
|
|
|
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxUniformComponents <= 4 * MAX_UNIFORMS);
|
|
|
|
assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxUniformComponents <= 4 * MAX_UNIFORMS);
|
2010-08-10 08:38:12 -06:00
|
|
|
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx->Const.Program[MESA_SHADER_VERTEX].MaxAddressOffset <= (1 << INST_INDEX_BITS));
|
|
|
|
assert(ctx->Const.Program[MESA_SHADER_FRAGMENT].MaxAddressOffset <= (1 << INST_INDEX_BITS));
|
2011-03-02 09:32:45 -07:00
|
|
|
|
2009-08-26 10:57:18 -06:00
|
|
|
/* If this fails, increase prog_instruction::TexSrcUnit size */
|
2013-09-19 20:06:35 -07:00
|
|
|
STATIC_ASSERT(MAX_TEXTURE_UNITS <= (1 << 5));
|
2009-08-26 10:57:18 -06:00
|
|
|
|
|
|
|
/* If this fails, increase prog_instruction::TexSrcTarget size */
|
2013-09-19 20:06:35 -07:00
|
|
|
STATIC_ASSERT(NUM_TEXTURE_TARGETS <= (1 << 4));
|
2009-08-26 10:57:18 -06:00
|
|
|
|
2004-03-29 11:09:34 +00:00
|
|
|
ctx->Program.ErrorPos = -1;
|
2015-03-07 13:15:22 -07:00
|
|
|
ctx->Program.ErrorString = strdup("");
|
2004-03-29 11:09:34 +00:00
|
|
|
|
|
|
|
ctx->VertexProgram.Enabled = GL_FALSE;
|
2010-05-24 10:01:38 -04:00
|
|
|
ctx->VertexProgram.PointSizeEnabled =
|
|
|
|
(ctx->API == API_OPENGLES2) ? GL_TRUE : GL_FALSE;
|
2004-03-29 11:09:34 +00:00
|
|
|
ctx->VertexProgram.TwoSideEnabled = GL_FALSE;
|
2008-05-06 23:08:51 -06:00
|
|
|
_mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
|
|
|
|
ctx->Shared->DefaultVertexProgram);
|
2004-03-29 11:09:34 +00:00
|
|
|
assert(ctx->VertexProgram.Current);
|
2007-10-31 12:00:38 -06:00
|
|
|
ctx->VertexProgram.Cache = _mesa_new_program_cache();
|
2004-03-29 11:09:34 +00:00
|
|
|
|
|
|
|
ctx->FragmentProgram.Enabled = GL_FALSE;
|
2008-05-06 23:08:51 -06:00
|
|
|
_mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
|
|
|
|
ctx->Shared->DefaultFragmentProgram);
|
2004-03-29 11:09:34 +00:00
|
|
|
assert(ctx->FragmentProgram.Current);
|
2007-10-31 12:00:38 -06:00
|
|
|
ctx->FragmentProgram.Cache = _mesa_new_program_cache();
|
2004-12-19 03:06:59 +00:00
|
|
|
|
2005-11-19 16:43:04 +00:00
|
|
|
/* XXX probably move this stuff */
|
2004-12-19 03:06:59 +00:00
|
|
|
ctx->ATIFragmentShader.Enabled = GL_FALSE;
|
2008-07-29 17:19:25 -06:00
|
|
|
ctx->ATIFragmentShader.Current = ctx->Shared->DefaultFragmentShader;
|
2004-12-19 03:06:59 +00:00
|
|
|
assert(ctx->ATIFragmentShader.Current);
|
2005-11-19 16:43:04 +00:00
|
|
|
ctx->ATIFragmentShader.Current->RefCount++;
|
2004-03-29 11:09:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-14 14:28:11 +00:00
|
|
|
/**
|
|
|
|
* Free a context's vertex/fragment program state
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_free_program_data(struct gl_context *ctx)
|
2004-08-14 14:28:11 +00:00
|
|
|
{
|
2008-05-06 23:08:51 -06:00
|
|
|
_mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current, NULL);
|
2007-12-26 06:57:24 -07:00
|
|
|
_mesa_delete_program_cache(ctx, ctx->VertexProgram.Cache);
|
2008-05-06 23:08:51 -06:00
|
|
|
_mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current, NULL);
|
2010-11-01 13:16:21 -07:00
|
|
|
_mesa_delete_shader_cache(ctx, ctx->FragmentProgram.Cache);
|
2012-09-11 11:15:14 +03:00
|
|
|
|
2005-11-19 16:43:04 +00:00
|
|
|
/* XXX probably move this stuff */
|
2004-12-19 03:06:59 +00:00
|
|
|
if (ctx->ATIFragmentShader.Current) {
|
2005-11-19 16:43:04 +00:00
|
|
|
ctx->ATIFragmentShader.Current->RefCount--;
|
|
|
|
if (ctx->ATIFragmentShader.Current->RefCount <= 0) {
|
2010-02-19 11:58:49 -05:00
|
|
|
free(ctx->ATIFragmentShader.Current);
|
2005-11-19 16:43:04 +00:00
|
|
|
}
|
2004-12-19 03:06:59 +00:00
|
|
|
}
|
2012-09-11 11:15:14 +03:00
|
|
|
|
2010-02-19 11:58:49 -05:00
|
|
|
free((void *) ctx->Program.ErrorString);
|
2004-08-14 14:28:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-23 08:53:43 +01:00
|
|
|
/**
|
|
|
|
* Update the default program objects in the given context to reference those
|
2008-07-06 19:48:50 +02:00
|
|
|
* specified in the shared state and release those referencing the old
|
2007-08-23 08:53:43 +01:00
|
|
|
* shared state.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_update_default_objects_program(struct gl_context *ctx)
|
2007-08-23 08:53:43 +01:00
|
|
|
{
|
2008-05-14 12:10:45 -06:00
|
|
|
_mesa_reference_vertprog(ctx, &ctx->VertexProgram.Current,
|
|
|
|
ctx->Shared->DefaultVertexProgram);
|
2007-08-23 08:53:43 +01:00
|
|
|
assert(ctx->VertexProgram.Current);
|
|
|
|
|
2008-05-14 12:10:45 -06:00
|
|
|
_mesa_reference_fragprog(ctx, &ctx->FragmentProgram.Current,
|
|
|
|
ctx->Shared->DefaultFragmentProgram);
|
2007-08-23 08:53:43 +01:00
|
|
|
assert(ctx->FragmentProgram.Current);
|
|
|
|
|
|
|
|
/* XXX probably move this stuff */
|
|
|
|
if (ctx->ATIFragmentShader.Current) {
|
|
|
|
ctx->ATIFragmentShader.Current->RefCount--;
|
|
|
|
if (ctx->ATIFragmentShader.Current->RefCount <= 0) {
|
2010-02-19 11:58:49 -05:00
|
|
|
free(ctx->ATIFragmentShader.Current);
|
2007-08-23 08:53:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx->ATIFragmentShader.Current = (struct ati_fragment_shader *) ctx->Shared->DefaultFragmentShader;
|
|
|
|
assert(ctx->ATIFragmentShader.Current);
|
|
|
|
ctx->ATIFragmentShader.Current->RefCount++;
|
|
|
|
}
|
2004-08-14 14:28:11 +00:00
|
|
|
|
|
|
|
|
2004-03-29 11:09:34 +00:00
|
|
|
/**
|
|
|
|
* Set the vertex/fragment program error state (position and error string).
|
|
|
|
* This is generally called from within the parsers.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_set_program_error(struct gl_context *ctx, GLint pos, const char *string)
|
2004-03-29 11:09:34 +00:00
|
|
|
{
|
|
|
|
ctx->Program.ErrorPos = pos;
|
2010-02-19 11:58:49 -05:00
|
|
|
free((void *) ctx->Program.ErrorString);
|
2004-03-29 11:09:34 +00:00
|
|
|
if (!string)
|
|
|
|
string = "";
|
2015-03-07 13:15:22 -07:00
|
|
|
ctx->Program.ErrorString = strdup(string);
|
2004-03-29 11:09:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-14 22:28:27 +00:00
|
|
|
/**
|
2014-08-08 13:19:49 -06:00
|
|
|
* Initialize a new gl_program object.
|
2004-09-14 22:28:27 +00:00
|
|
|
*/
|
2015-10-05 22:13:34 +02:00
|
|
|
struct gl_program *
|
|
|
|
_mesa_init_gl_program(void *_prog, GLenum target, GLuint id)
|
2004-03-29 11:09:34 +00:00
|
|
|
{
|
2015-10-05 22:13:34 +02:00
|
|
|
struct gl_program *prog = (struct gl_program*)_prog;
|
2014-08-08 13:19:49 -06:00
|
|
|
GLuint i;
|
|
|
|
|
2015-10-05 22:13:34 +02:00
|
|
|
if (!prog)
|
|
|
|
return NULL;
|
2004-03-29 11:09:34 +00:00
|
|
|
|
2014-08-08 13:19:49 -06:00
|
|
|
memset(prog, 0, sizeof(*prog));
|
2015-07-30 11:25:27 -07:00
|
|
|
mtx_init(&prog->Mutex, mtx_plain);
|
2014-08-08 13:19:49 -06:00
|
|
|
prog->Id = id;
|
|
|
|
prog->Target = target;
|
|
|
|
prog->RefCount = 1;
|
|
|
|
prog->Format = GL_PROGRAM_FORMAT_ASCII_ARB;
|
|
|
|
|
|
|
|
/* default mapping from samplers to texture units */
|
|
|
|
for (i = 0; i < MAX_SAMPLERS; i++)
|
|
|
|
prog->SamplerUnits[i] = i;
|
2014-01-07 15:50:39 -08:00
|
|
|
|
2015-10-05 22:13:34 +02:00
|
|
|
return prog;
|
2010-06-28 17:31:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-29 11:09:34 +00:00
|
|
|
/**
|
|
|
|
* Allocate and initialize a new fragment/vertex program object but
|
|
|
|
* don't put it into the program hash table. Called via
|
|
|
|
* ctx->Driver.NewProgram. May be overridden (ie. replaced) by a
|
|
|
|
* device driver function to implement OO deriviation with additional
|
|
|
|
* types not understood by this function.
|
2008-07-06 19:48:50 +02:00
|
|
|
*
|
2004-03-29 11:09:34 +00:00
|
|
|
* \param ctx context
|
|
|
|
* \param id program id/number
|
|
|
|
* \param target program target/type
|
|
|
|
* \return pointer to new program object
|
|
|
|
*/
|
2006-07-20 16:49:57 +00:00
|
|
|
struct gl_program *
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id)
|
2004-03-29 11:09:34 +00:00
|
|
|
{
|
2008-05-16 09:56:11 -06:00
|
|
|
struct gl_program *prog;
|
2004-03-29 11:09:34 +00:00
|
|
|
switch (target) {
|
|
|
|
case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
|
2015-10-05 22:13:34 +02:00
|
|
|
prog = _mesa_init_gl_program(CALLOC_STRUCT(gl_vertex_program),
|
|
|
|
target, id);
|
2008-05-16 09:56:11 -06:00
|
|
|
break;
|
2004-03-29 11:09:34 +00:00
|
|
|
case GL_FRAGMENT_PROGRAM_NV:
|
|
|
|
case GL_FRAGMENT_PROGRAM_ARB:
|
2015-10-05 22:13:34 +02:00
|
|
|
prog =_mesa_init_gl_program(CALLOC_STRUCT(gl_fragment_program),
|
|
|
|
target, id);
|
2008-05-16 09:56:11 -06:00
|
|
|
break;
|
2015-05-28 18:14:29 +02:00
|
|
|
case GL_GEOMETRY_PROGRAM_NV:
|
2015-10-05 22:13:34 +02:00
|
|
|
prog = _mesa_init_gl_program(CALLOC_STRUCT(gl_geometry_program),
|
|
|
|
target, id);
|
2010-06-28 17:31:21 -04:00
|
|
|
break;
|
2014-03-10 11:58:37 +01:00
|
|
|
case GL_TESS_CONTROL_PROGRAM_NV:
|
2015-10-05 22:13:34 +02:00
|
|
|
prog = _mesa_init_gl_program(CALLOC_STRUCT(gl_tess_ctrl_program),
|
|
|
|
target, id);
|
2014-03-10 11:58:37 +01:00
|
|
|
break;
|
|
|
|
case GL_TESS_EVALUATION_PROGRAM_NV:
|
2015-10-05 22:13:34 +02:00
|
|
|
prog = _mesa_init_gl_program(CALLOC_STRUCT(gl_tess_eval_program),
|
|
|
|
target, id);
|
2014-03-10 11:58:37 +01:00
|
|
|
break;
|
2014-01-07 15:50:39 -08:00
|
|
|
case GL_COMPUTE_PROGRAM_NV:
|
2015-10-05 22:13:34 +02:00
|
|
|
prog = _mesa_init_gl_program(CALLOC_STRUCT(gl_compute_program),
|
|
|
|
target, id);
|
2014-01-07 15:50:39 -08:00
|
|
|
break;
|
2004-03-29 11:09:34 +00:00
|
|
|
default:
|
|
|
|
_mesa_problem(ctx, "bad target in _mesa_new_program");
|
2008-05-16 09:56:11 -06:00
|
|
|
prog = NULL;
|
2004-03-29 11:09:34 +00:00
|
|
|
}
|
2008-05-16 09:56:11 -06:00
|
|
|
return prog;
|
2004-03-29 11:09:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a program and remove it from the hash table, ignoring the
|
|
|
|
* reference count.
|
|
|
|
* Called via ctx->Driver.DeleteProgram. May be wrapped (OO deriviation)
|
|
|
|
* by a device driver function.
|
|
|
|
*/
|
|
|
|
void
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_delete_program(struct gl_context *ctx, struct gl_program *prog)
|
2004-03-29 11:09:34 +00:00
|
|
|
{
|
2004-08-25 15:59:48 +00:00
|
|
|
(void) ctx;
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(prog);
|
|
|
|
assert(prog->RefCount==0);
|
2004-03-29 11:09:34 +00:00
|
|
|
|
2006-11-23 15:58:30 +00:00
|
|
|
if (prog == &_mesa_DummyProgram)
|
|
|
|
return;
|
2008-07-06 19:48:50 +02:00
|
|
|
|
2012-09-03 20:24:35 -07:00
|
|
|
free(prog->String);
|
2013-09-20 10:13:32 -07:00
|
|
|
free(prog->LocalParams);
|
2005-11-12 17:53:14 +00:00
|
|
|
|
2011-04-29 19:00:24 -05:00
|
|
|
if (prog->Instructions) {
|
|
|
|
_mesa_free_instructions(prog->Instructions, prog->NumInstructions);
|
|
|
|
}
|
2006-05-24 03:30:31 +00:00
|
|
|
if (prog->Parameters) {
|
2005-11-12 17:53:14 +00:00
|
|
|
_mesa_free_parameter_list(prog->Parameters);
|
2006-05-24 03:30:31 +00:00
|
|
|
}
|
2006-12-13 14:54:47 -07:00
|
|
|
|
2015-04-07 15:15:09 -07:00
|
|
|
if (prog->nir) {
|
|
|
|
ralloc_free(prog->nir);
|
|
|
|
}
|
|
|
|
|
2015-07-30 11:25:27 -07:00
|
|
|
mtx_destroy(&prog->Mutex);
|
2010-02-19 11:58:49 -05:00
|
|
|
free(prog);
|
2004-03-29 11:09:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-23 23:10:14 +00:00
|
|
|
/**
|
|
|
|
* Return the gl_program object for a given ID.
|
|
|
|
* Basically just a wrapper for _mesa_HashLookup() to avoid a lot of
|
|
|
|
* casts elsewhere.
|
|
|
|
*/
|
|
|
|
struct gl_program *
|
2010-10-12 12:26:10 -04:00
|
|
|
_mesa_lookup_program(struct gl_context *ctx, GLuint id)
|
2006-08-23 23:10:14 +00:00
|
|
|
{
|
|
|
|
if (id)
|
|
|
|
return (struct gl_program *) _mesa_HashLookup(ctx->Shared->Programs, id);
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-03-29 11:09:34 +00:00
|
|
|
|
2008-05-06 23:08:51 -06:00
|
|
|
/**
|
|
|
|
* Reference counting for vertex/fragment programs
|
2011-07-14 08:09:21 -06:00
|
|
|
* This is normally only called from the _mesa_reference_program() macro
|
|
|
|
* when there's a real pointer change.
|
2008-05-06 23:08:51 -06:00
|
|
|
*/
|
|
|
|
void
|
2011-07-14 08:09:21 -06:00
|
|
|
_mesa_reference_program_(struct gl_context *ctx,
|
|
|
|
struct gl_program **ptr,
|
|
|
|
struct gl_program *prog)
|
2008-05-06 23:08:51 -06:00
|
|
|
{
|
2011-07-14 08:09:21 -06:00
|
|
|
#ifndef NDEBUG
|
2008-05-06 23:08:51 -06:00
|
|
|
assert(ptr);
|
|
|
|
if (*ptr && prog) {
|
|
|
|
/* sanity check */
|
2008-09-26 07:40:45 -06:00
|
|
|
if ((*ptr)->Target == GL_VERTEX_PROGRAM_ARB)
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(prog->Target == GL_VERTEX_PROGRAM_ARB);
|
2008-09-26 07:40:45 -06:00
|
|
|
else if ((*ptr)->Target == GL_FRAGMENT_PROGRAM_ARB)
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(prog->Target == GL_FRAGMENT_PROGRAM_ARB ||
|
2008-09-26 07:40:45 -06:00
|
|
|
prog->Target == GL_FRAGMENT_PROGRAM_NV);
|
2015-05-28 18:14:29 +02:00
|
|
|
else if ((*ptr)->Target == GL_GEOMETRY_PROGRAM_NV)
|
|
|
|
assert(prog->Target == GL_GEOMETRY_PROGRAM_NV);
|
2008-05-06 23:08:51 -06:00
|
|
|
}
|
2011-07-14 08:09:21 -06:00
|
|
|
#endif
|
|
|
|
|
2008-05-06 23:08:51 -06:00
|
|
|
if (*ptr) {
|
|
|
|
GLboolean deleteFlag;
|
2015-07-30 11:25:27 -07:00
|
|
|
struct gl_program *oldProg = *ptr;
|
2008-05-06 23:08:51 -06:00
|
|
|
|
2015-07-30 11:25:27 -07:00
|
|
|
mtx_lock(&oldProg->Mutex);
|
|
|
|
assert(oldProg->RefCount > 0);
|
|
|
|
oldProg->RefCount--;
|
2008-05-06 23:08:51 -06:00
|
|
|
|
2015-07-30 11:25:27 -07:00
|
|
|
deleteFlag = (oldProg->RefCount == 0);
|
|
|
|
mtx_unlock(&oldProg->Mutex);
|
2008-07-06 19:48:50 +02:00
|
|
|
|
2008-05-06 23:08:51 -06:00
|
|
|
if (deleteFlag) {
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(ctx);
|
2015-07-30 11:25:27 -07:00
|
|
|
ctx->Driver.DeleteProgram(ctx, oldProg);
|
2008-05-06 23:08:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(!*ptr);
|
|
|
|
if (prog) {
|
2015-07-30 11:25:27 -07:00
|
|
|
mtx_lock(&prog->Mutex);
|
2008-05-06 23:08:51 -06:00
|
|
|
prog->RefCount++;
|
2015-07-30 11:25:27 -07:00
|
|
|
mtx_unlock(&prog->Mutex);
|
2008-05-06 23:08:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
*ptr = prog;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-14 12:39:41 -06:00
|
|
|
/**
|
|
|
|
* Insert 'count' NOP instructions at 'start' in the given program.
|
|
|
|
* Adjust branch targets accordingly.
|
|
|
|
*/
|
|
|
|
GLboolean
|
|
|
|
_mesa_insert_instructions(struct gl_program *prog, GLuint start, GLuint count)
|
|
|
|
{
|
|
|
|
const GLuint origLen = prog->NumInstructions;
|
|
|
|
const GLuint newLen = origLen + count;
|
|
|
|
struct prog_instruction *newInst;
|
|
|
|
GLuint i;
|
|
|
|
|
|
|
|
/* adjust branches */
|
|
|
|
for (i = 0; i < prog->NumInstructions; i++) {
|
|
|
|
struct prog_instruction *inst = prog->Instructions + i;
|
|
|
|
if (inst->BranchTarget > 0) {
|
2008-06-24 11:34:46 +09:00
|
|
|
if ((GLuint)inst->BranchTarget >= start) {
|
2008-05-14 12:39:41 -06:00
|
|
|
inst->BranchTarget += count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alloc storage for new instructions */
|
|
|
|
newInst = _mesa_alloc_instructions(newLen);
|
|
|
|
if (!newInst) {
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy 'start' instructions into new instruction buffer */
|
|
|
|
_mesa_copy_instructions(newInst, prog->Instructions, start);
|
|
|
|
|
|
|
|
/* init the new instructions */
|
|
|
|
_mesa_init_instructions(newInst + start, count);
|
|
|
|
|
|
|
|
/* Copy the remaining/tail instructions to new inst buffer */
|
|
|
|
_mesa_copy_instructions(newInst + start + count,
|
|
|
|
prog->Instructions + start,
|
|
|
|
origLen - start);
|
|
|
|
|
|
|
|
/* free old instructions */
|
|
|
|
_mesa_free_instructions(prog->Instructions, origLen);
|
|
|
|
|
|
|
|
/* install new instructions */
|
|
|
|
prog->Instructions = newInst;
|
|
|
|
prog->NumInstructions = newLen;
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2008-07-06 19:48:50 +02:00
|
|
|
/**
|
|
|
|
* Delete 'count' instructions at 'start' in the given program.
|
|
|
|
* Adjust branch targets accordingly.
|
|
|
|
*/
|
|
|
|
GLboolean
|
|
|
|
_mesa_delete_instructions(struct gl_program *prog, GLuint start, GLuint count)
|
|
|
|
{
|
|
|
|
const GLuint origLen = prog->NumInstructions;
|
|
|
|
const GLuint newLen = origLen - count;
|
|
|
|
struct prog_instruction *newInst;
|
|
|
|
GLuint i;
|
|
|
|
|
|
|
|
/* adjust branches */
|
|
|
|
for (i = 0; i < prog->NumInstructions; i++) {
|
|
|
|
struct prog_instruction *inst = prog->Instructions + i;
|
|
|
|
if (inst->BranchTarget > 0) {
|
2010-01-27 17:03:04 -07:00
|
|
|
if (inst->BranchTarget > (GLint) start) {
|
2008-07-06 19:48:50 +02:00
|
|
|
inst->BranchTarget -= count;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Alloc storage for new instructions */
|
|
|
|
newInst = _mesa_alloc_instructions(newLen);
|
|
|
|
if (!newInst) {
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy 'start' instructions into new instruction buffer */
|
|
|
|
_mesa_copy_instructions(newInst, prog->Instructions, start);
|
|
|
|
|
|
|
|
/* Copy the remaining/tail instructions to new inst buffer */
|
|
|
|
_mesa_copy_instructions(newInst + start,
|
|
|
|
prog->Instructions + start + count,
|
|
|
|
newLen - start);
|
|
|
|
|
|
|
|
/* free old instructions */
|
|
|
|
_mesa_free_instructions(prog->Instructions, origLen);
|
|
|
|
|
|
|
|
/* install new instructions */
|
|
|
|
prog->Instructions = newInst;
|
|
|
|
prog->NumInstructions = newLen;
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-14 12:53:03 -06:00
|
|
|
/**
|
2010-02-01 18:00:12 -07:00
|
|
|
* Populate the 'used' array with flags indicating which registers (TEMPs,
|
|
|
|
* INPUTs, OUTPUTs, etc, are used by the given program.
|
|
|
|
* \param file type of register to scan for
|
|
|
|
* \param used returns true/false flags for in use / free
|
|
|
|
* \param usedSize size of the 'used' array
|
2008-05-14 12:53:03 -06:00
|
|
|
*/
|
2010-02-01 18:00:12 -07:00
|
|
|
void
|
|
|
|
_mesa_find_used_registers(const struct gl_program *prog,
|
|
|
|
gl_register_file file,
|
|
|
|
GLboolean used[], GLuint usedSize)
|
2008-05-14 12:53:03 -06:00
|
|
|
{
|
2010-02-01 18:00:12 -07:00
|
|
|
GLuint i, j;
|
2008-05-14 12:53:03 -06:00
|
|
|
|
2010-02-18 23:51:00 -08:00
|
|
|
memset(used, 0, usedSize);
|
2008-05-14 12:53:03 -06:00
|
|
|
|
|
|
|
for (i = 0; i < prog->NumInstructions; i++) {
|
|
|
|
const struct prog_instruction *inst = prog->Instructions + i;
|
|
|
|
const GLuint n = _mesa_num_inst_src_regs(inst->Opcode);
|
|
|
|
|
2010-02-01 18:00:12 -07:00
|
|
|
if (inst->DstReg.File == file) {
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(inst->DstReg.Index < usedSize);
|
2010-09-05 17:57:12 +02:00
|
|
|
if(inst->DstReg.Index < usedSize)
|
|
|
|
used[inst->DstReg.Index] = GL_TRUE;
|
2009-12-11 09:16:25 -07:00
|
|
|
}
|
2010-02-01 18:00:12 -07:00
|
|
|
|
|
|
|
for (j = 0; j < n; j++) {
|
|
|
|
if (inst->SrcReg[j].File == file) {
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(inst->SrcReg[j].Index < (GLint) usedSize);
|
2013-01-22 17:19:30 -07:00
|
|
|
if (inst->SrcReg[j].Index < (GLint) usedSize)
|
2010-09-05 17:57:12 +02:00
|
|
|
used[inst->SrcReg[j].Index] = GL_TRUE;
|
2008-05-14 12:53:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-02-01 18:00:12 -07:00
|
|
|
}
|
2008-05-14 12:53:03 -06:00
|
|
|
|
2010-02-01 18:00:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Scan the given 'used' register flag array for the first entry
|
|
|
|
* that's >= firstReg.
|
|
|
|
* \param used vector of flags indicating registers in use (as returned
|
|
|
|
* by _mesa_find_used_registers())
|
|
|
|
* \param usedSize size of the 'used' array
|
|
|
|
* \param firstReg first register to start searching at
|
|
|
|
* \return index of unused register, or -1 if none.
|
|
|
|
*/
|
|
|
|
GLint
|
|
|
|
_mesa_find_free_register(const GLboolean used[],
|
|
|
|
GLuint usedSize, GLuint firstReg)
|
|
|
|
{
|
|
|
|
GLuint i;
|
|
|
|
|
|
|
|
assert(firstReg < usedSize);
|
|
|
|
|
|
|
|
for (i = firstReg; i < usedSize; i++)
|
2008-05-14 12:53:03 -06:00
|
|
|
if (!used[i])
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2009-06-17 07:42:49 -06:00
|
|
|
|
|
|
|
|
2013-10-16 17:22:18 -07:00
|
|
|
/* Gets the minimum number of shader invocations per fragment.
|
|
|
|
* This function is useful to determine if we need to do per
|
|
|
|
* sample shading or per fragment shading.
|
|
|
|
*/
|
|
|
|
GLint
|
|
|
|
_mesa_get_min_invocations_per_fragment(struct gl_context *ctx,
|
2014-01-13 12:26:55 -08:00
|
|
|
const struct gl_fragment_program *prog,
|
|
|
|
bool ignore_sample_qualifier)
|
2013-10-16 17:22:18 -07:00
|
|
|
{
|
|
|
|
/* From ARB_sample_shading specification:
|
|
|
|
* "Using gl_SampleID in a fragment shader causes the entire shader
|
|
|
|
* to be evaluated per-sample."
|
|
|
|
*
|
|
|
|
* "Using gl_SamplePosition in a fragment shader causes the entire
|
|
|
|
* shader to be evaluated per-sample."
|
|
|
|
*
|
|
|
|
* "If MULTISAMPLE or SAMPLE_SHADING_ARB is disabled, sample shading
|
|
|
|
* has no effect."
|
|
|
|
*/
|
|
|
|
if (ctx->Multisample.Enabled) {
|
2013-11-29 21:44:13 +13:00
|
|
|
/* The ARB_gpu_shader5 specification says:
|
|
|
|
*
|
|
|
|
* "Use of the "sample" qualifier on a fragment shader input
|
|
|
|
* forces per-sample shading"
|
|
|
|
*/
|
2014-01-13 12:26:55 -08:00
|
|
|
if (prog->IsSample && !ignore_sample_qualifier)
|
2013-11-29 21:44:13 +13:00
|
|
|
return MAX2(ctx->DrawBuffer->Visual.samples, 1);
|
|
|
|
|
2013-10-16 17:22:18 -07:00
|
|
|
if (prog->Base.SystemValuesRead & (SYSTEM_BIT_SAMPLE_ID |
|
|
|
|
SYSTEM_BIT_SAMPLE_POS))
|
|
|
|
return MAX2(ctx->DrawBuffer->Visual.samples, 1);
|
|
|
|
else if (ctx->Multisample.SampleShading)
|
|
|
|
return MAX2(ceil(ctx->Multisample.MinSampleShadingValue *
|
|
|
|
ctx->DrawBuffer->Visual.samples), 1);
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|