Merge branch 'origin' into glsl-compiler-1
[mesa.git] / src / mesa / shader / slang / slang_compile_operation.c
1 /*
2 * Mesa 3-D graphics library
3 * Version: 6.5.2
4 *
5 * Copyright (C) 2005-2006 Brian Paul All Rights Reserved.
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 /**
26 * \file slang_compile_operation.c
27 * slang front-end compiler
28 * \author Michal Krol
29 */
30
31 #include "imports.h"
32 #include "slang_compile.h"
33
34
35 /**
36 * Init a slang_operation object
37 */
38 GLboolean
39 slang_operation_construct(slang_operation * oper)
40 {
41 oper->type = SLANG_OPER_NONE;
42 oper->children = NULL;
43 oper->num_children = 0;
44 oper->literal[0] = 0.0;
45 oper->a_id = SLANG_ATOM_NULL;
46 oper->locals = _slang_variable_scope_new(NULL);
47 if (oper->locals == NULL)
48 return GL_FALSE;
49 _slang_variable_scope_ctr(oper->locals);
50 oper->fun = NULL;
51 oper->var = NULL;
52 return GL_TRUE;
53 }
54
55 void
56 slang_operation_destruct(slang_operation * oper)
57 {
58 GLuint i;
59
60 for (i = 0; i < oper->num_children; i++)
61 slang_operation_destruct(oper->children + i);
62 slang_alloc_free(oper->children);
63 /*#define FREE_MEMORY*/
64 #ifdef FREE_MEMORY
65 /* XXX revisit and fix memory coruption here ! */
66 slang_variable_scope_destruct(oper->locals);
67 slang_alloc_free(oper->locals);
68 #endif
69 oper->children = NULL;
70 oper->num_children = 0;
71 oper->locals = NULL;
72 }
73
74 /**
75 * Recursively copy a slang_operation node.
76 * \return GL_TRUE for success, GL_FALSE if failure
77 */
78 GLboolean
79 slang_operation_copy(slang_operation * x, const slang_operation * y)
80 {
81 slang_operation z;
82 GLuint i;
83
84 if (!slang_operation_construct(&z))
85 return GL_FALSE;
86 z.type = y->type;
87 z.children = (slang_operation *)
88 slang_alloc_malloc(y->num_children * sizeof(slang_operation));
89 if (z.children == NULL) {
90 slang_operation_destruct(&z);
91 return GL_FALSE;
92 }
93 for (z.num_children = 0; z.num_children < y->num_children;
94 z.num_children++) {
95 if (!slang_operation_construct(&z.children[z.num_children])) {
96 slang_operation_destruct(&z);
97 return GL_FALSE;
98 }
99 }
100 for (i = 0; i < z.num_children; i++) {
101 if (!slang_operation_copy(&z.children[i], &y->children[i])) {
102 slang_operation_destruct(&z);
103 return GL_FALSE;
104 }
105 }
106 z.literal[0] = y->literal[0];
107 z.literal[1] = y->literal[1];
108 z.literal[2] = y->literal[2];
109 z.literal[3] = y->literal[3];
110 z.literal_size = y->literal_size;
111 z.a_id = y->a_id;
112 if (y->locals) {
113 if (!slang_variable_scope_copy(z.locals, y->locals)) {
114 slang_operation_destruct(&z);
115 return GL_FALSE;
116 }
117 }
118 #if 0
119 z.var = y->var;
120 z.fun = y->fun;
121 #endif
122 slang_operation_destruct(x);
123 *x = z;
124 return GL_TRUE;
125 }
126
127
128 slang_operation *
129 slang_operation_new(GLuint count)
130 {
131 slang_operation *ops
132 = (slang_operation *) _mesa_malloc(count * sizeof(slang_operation));
133 assert(count > 0);
134 if (ops) {
135 GLuint i;
136 for (i = 0; i < count; i++)
137 slang_operation_construct(ops + i);
138 }
139 return ops;
140 }
141
142
143 /**
144 * Delete operation and all children
145 */
146 void
147 slang_operation_delete(slang_operation *oper)
148 {
149 slang_operation_destruct(oper);
150 _mesa_free(oper);
151 }
152
153
154 slang_operation *
155 slang_operation_grow(GLuint *numChildren, slang_operation **children)
156 {
157 slang_operation *ops;
158
159 ops = (slang_operation *)
160 slang_alloc_realloc(*children,
161 *numChildren * sizeof(slang_operation),
162 (*numChildren + 1) * sizeof(slang_operation));
163 if (ops) {
164 slang_operation *newOp = ops + *numChildren;
165 if (!slang_operation_construct(newOp)) {
166 _mesa_free(ops);
167 *children = NULL;
168 return NULL;
169 }
170 *children = ops;
171 (*numChildren)++;
172 return newOp;
173 }
174 return NULL;
175 }
176
177 /**
178 * Insert a new slang_operation into an array.
179 * \param numChildren pointer to current number of children (in/out)
180 * \param children address of array (in/out)
181 * \param pos position to insert
182 * \return pointer to the new operation
183 */
184 slang_operation *
185 slang_operation_insert(GLuint *numChildren, slang_operation **children,
186 GLuint pos)
187 {
188 slang_operation *ops;
189
190 assert(pos <= *numChildren);
191
192 ops = (slang_operation *)
193 _mesa_malloc((*numChildren + 1) * sizeof(slang_operation));
194 if (ops) {
195 slang_operation *newOp;
196 newOp = ops + pos;
197 if (pos > 0)
198 _mesa_memcpy(ops, *children, pos * sizeof(slang_operation));
199 if (pos < *numChildren)
200 _mesa_memcpy(newOp + 1, (*children) + pos,
201 (*numChildren - pos) * sizeof(slang_operation));
202
203 if (!slang_operation_construct(newOp)) {
204 _mesa_free(ops);
205 *numChildren = 0;
206 *children = NULL;
207 return NULL;
208 }
209 *children = ops;
210 (*numChildren)++;
211 return newOp;
212 }
213 return NULL;
214 }
215