Enable SSE2 for FS.
[mesa.git] / src / mesa / state_tracker / st_cb_program.c
1 /**************************************************************************
2 *
3 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /*
29 * Authors:
30 * Keith Whitwell <keith@tungstengraphics.com>
31 */
32
33 #include "st_context.h"
34 #include "st_program.h"
35 #include "glheader.h"
36 #include "macros.h"
37 #include "enums.h"
38 #include "prog_instruction.h"
39 #include "prog_parameter.h"
40 #include "program.h"
41 #include "programopt.h"
42 #include "tnl/tnl.h"
43 #include "pipe/tgsi/mesa/tgsi_mesa.h"
44
45
46 /* Counter to track program string changes:
47 */
48 static GLuint program_id = 0;
49
50
51 static void st_bind_program( GLcontext *ctx,
52 GLenum target,
53 struct gl_program *prog )
54 {
55 struct st_context *st = st_context(ctx);
56
57 switch (target) {
58 case GL_VERTEX_PROGRAM_ARB:
59 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
60 break;
61 case GL_FRAGMENT_PROGRAM_ARB:
62 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
63 break;
64 }
65 }
66
67 static void st_use_program( GLcontext *ctx,
68 GLuint program )
69 {
70 struct st_context *st = st_context(ctx);
71
72 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
73 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
74 }
75
76
77
78 static struct gl_program *st_new_program( GLcontext *ctx,
79 GLenum target,
80 GLuint id )
81 {
82 // struct st_context *st = st_context(ctx);
83
84 switch (target) {
85 case GL_VERTEX_PROGRAM_ARB: {
86 struct st_vertex_program *prog = CALLOC_STRUCT(st_vertex_program);
87
88 prog->id = program_id++;
89 prog->dirty = 1;
90
91 #if defined(USE_X86_ASM) || defined(SLANG_X86)
92 x86_init_func( &prog->sse2_program );
93 #endif
94
95 return _mesa_init_vertex_program( ctx,
96 &prog->Base,
97 target,
98 id );
99 }
100
101 case GL_FRAGMENT_PROGRAM_ARB:
102 case GL_FRAGMENT_PROGRAM_NV: {
103 struct st_fragment_program *prog = CALLOC_STRUCT(st_fragment_program);
104
105 prog->id = program_id++;
106 prog->dirty = 1;
107
108 #if defined(USE_X86_ASM) || defined(SLANG_X86)
109 x86_init_func( &prog->sse2_program );
110 #endif
111
112 return _mesa_init_fragment_program( ctx,
113 &prog->Base,
114 target,
115 id );
116 }
117
118 default:
119 return _mesa_new_program(ctx, target, id);
120 }
121 }
122
123 static void st_delete_program( GLcontext *ctx,
124 struct gl_program *prog )
125 {
126 switch( prog->Target ) {
127 case GL_VERTEX_PROGRAM_ARB: {
128 #if defined(USE_X86_ASM) || defined(SLANG_X86)
129 struct st_vertex_program *p = (struct st_vertex_program *) prog;
130
131 x86_release_func( &p->sse2_program );
132 #endif
133 break;
134 }
135 case GL_FRAGMENT_PROGRAM_ARB: {
136 #if defined(USE_X86_ASM) || defined(SLANG_X86)
137 struct st_fragment_program *p = (struct st_fragment_program *) prog;
138
139 x86_release_func( &p->sse2_program );
140 #endif
141 break;
142 }
143 }
144 _mesa_delete_program( ctx, prog );
145 }
146
147
148 static GLboolean st_is_program_native( GLcontext *ctx,
149 GLenum target,
150 struct gl_program *prog )
151 {
152 return GL_TRUE;
153 }
154
155
156 static void st_program_string_notify( GLcontext *ctx,
157 GLenum target,
158 struct gl_program *prog )
159 {
160 struct st_context *st = st_context(ctx);
161
162 if (target == GL_FRAGMENT_PROGRAM_ARB) {
163 struct st_fragment_program *p = (struct st_fragment_program *)prog;
164
165 if (prog == &ctx->FragmentProgram._Current->Base)
166 st->dirty.st |= ST_NEW_FRAGMENT_PROGRAM;
167
168 p->id = program_id++;
169 p->param_state = p->Base.Base.Parameters->StateFlags;
170 }
171 else if (target == GL_VERTEX_PROGRAM_ARB) {
172 struct st_vertex_program *p = (struct st_vertex_program *)prog;
173
174 if (prog == &ctx->VertexProgram._Current->Base)
175 st->dirty.st |= ST_NEW_VERTEX_PROGRAM;
176
177 p->id = program_id++;
178 p->param_state = p->Base.Base.Parameters->StateFlags;
179
180 /* Also tell tnl about it:
181 */
182 _tnl_program_string(ctx, target, prog);
183 }
184 }
185
186
187
188 void st_init_program_functions(struct dd_function_table *functions)
189 {
190 functions->BindProgram = st_bind_program;
191 functions->UseProgram = st_use_program;
192 functions->NewProgram = st_new_program;
193 functions->DeleteProgram = st_delete_program;
194 functions->IsProgramNative = st_is_program_native;
195 functions->ProgramStringNotify = st_program_string_notify;
196 }