revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git] / workbench / libs / mesa / src / gallium / auxiliary / tgsi / tgsi_parse.c
blobfb36f9de32dcd06b0c883b41c78535dcf5796d10
1 /**************************************************************************
2 *
3 * Copyright 2007 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:
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.
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.
26 **************************************************************************/
28 #include "util/u_debug.h"
29 #include "pipe/p_shader_tokens.h"
30 #include "tgsi_parse.h"
31 #include "util/u_memory.h"
33 unsigned
34 tgsi_parse_init(
35 struct tgsi_parse_context *ctx,
36 const struct tgsi_token *tokens )
38 ctx->FullHeader.Header = *(struct tgsi_header *) &tokens[0];
39 if( ctx->FullHeader.Header.HeaderSize >= 2 ) {
40 ctx->FullHeader.Processor = *(struct tgsi_processor *) &tokens[1];
42 else {
43 return TGSI_PARSE_ERROR;
46 ctx->Tokens = tokens;
47 ctx->Position = ctx->FullHeader.Header.HeaderSize;
49 return TGSI_PARSE_OK;
52 void
53 tgsi_parse_free(
54 struct tgsi_parse_context *ctx )
58 boolean
59 tgsi_parse_end_of_tokens(
60 struct tgsi_parse_context *ctx )
62 return ctx->Position >=
63 ctx->FullHeader.Header.HeaderSize + ctx->FullHeader.Header.BodySize;
67 /**
68 * This function is used to avoid and work-around type punning/aliasing
69 * warnings. The warnings seem harmless on x86 but on PPC they cause
70 * real failures.
72 static INLINE void
73 copy_token(void *dst, const void *src)
75 memcpy(dst, src, 4);
79 /**
80 * Get next 4-byte token, return it at address specified by 'token'
82 static void
83 next_token(
84 struct tgsi_parse_context *ctx,
85 void *token )
87 assert( !tgsi_parse_end_of_tokens( ctx ) );
88 copy_token(token, &ctx->Tokens[ctx->Position]);
89 ctx->Position++;
93 void
94 tgsi_parse_token(
95 struct tgsi_parse_context *ctx )
97 struct tgsi_token token;
98 unsigned i;
100 next_token( ctx, &token );
102 switch( token.Type ) {
103 case TGSI_TOKEN_TYPE_DECLARATION:
105 struct tgsi_full_declaration *decl = &ctx->FullToken.FullDeclaration;
107 memset(decl, 0, sizeof *decl);
108 copy_token(&decl->Declaration, &token);
110 next_token( ctx, &decl->Range );
112 if (decl->Declaration.Dimension) {
113 next_token(ctx, &decl->Dim);
116 if( decl->Declaration.Semantic ) {
117 next_token( ctx, &decl->Semantic );
120 if (decl->Declaration.File == TGSI_FILE_IMMEDIATE_ARRAY) {
121 unsigned i, j;
122 decl->ImmediateData.u = (union tgsi_immediate_data*)
123 &ctx->Tokens[ctx->Position];
124 for (i = 0; i <= decl->Range.Last; ++i) {
125 for (j = 0; j < 4; ++j) {
126 ctx->Position++;
131 if (decl->Declaration.File == TGSI_FILE_RESOURCE) {
132 next_token(ctx, &decl->Resource);
135 break;
138 case TGSI_TOKEN_TYPE_IMMEDIATE:
140 struct tgsi_full_immediate *imm = &ctx->FullToken.FullImmediate;
141 uint imm_count;
143 memset(imm, 0, sizeof *imm);
144 copy_token(&imm->Immediate, &token);
146 imm_count = imm->Immediate.NrTokens - 1;
148 switch (imm->Immediate.DataType) {
149 case TGSI_IMM_FLOAT32:
150 for (i = 0; i < imm_count; i++) {
151 next_token(ctx, &imm->u[i].Float);
153 break;
155 case TGSI_IMM_UINT32:
156 for (i = 0; i < imm_count; i++) {
157 next_token(ctx, &imm->u[i].Uint);
159 break;
161 case TGSI_IMM_INT32:
162 for (i = 0; i < imm_count; i++) {
163 next_token(ctx, &imm->u[i].Int);
165 break;
167 default:
168 assert( 0 );
171 break;
174 case TGSI_TOKEN_TYPE_INSTRUCTION:
176 struct tgsi_full_instruction *inst = &ctx->FullToken.FullInstruction;
178 memset(inst, 0, sizeof *inst);
179 copy_token(&inst->Instruction, &token);
181 if (inst->Instruction.Predicate) {
182 next_token(ctx, &inst->Predicate);
185 if (inst->Instruction.Label) {
186 next_token( ctx, &inst->Label);
189 if (inst->Instruction.Texture) {
190 next_token( ctx, &inst->Texture);
193 assert( inst->Instruction.NumDstRegs <= TGSI_FULL_MAX_DST_REGISTERS );
195 for( i = 0; i < inst->Instruction.NumDstRegs; i++ ) {
197 next_token( ctx, &inst->Dst[i].Register );
199 if( inst->Dst[i].Register.Indirect ) {
200 next_token( ctx, &inst->Dst[i].Indirect );
203 * No support for indirect or multi-dimensional addressing.
205 assert( !inst->Dst[i].Indirect.Dimension );
206 assert( !inst->Dst[i].Indirect.Indirect );
208 if( inst->Dst[i].Register.Dimension ) {
209 next_token( ctx, &inst->Dst[i].Dimension );
212 * No support for multi-dimensional addressing.
214 assert( !inst->Dst[i].Dimension.Dimension );
216 if( inst->Dst[i].Dimension.Indirect ) {
217 next_token( ctx, &inst->Dst[i].DimIndirect );
220 * No support for indirect or multi-dimensional addressing.
222 assert( !inst->Dst[i].Indirect.Indirect );
223 assert( !inst->Dst[i].Indirect.Dimension );
228 assert( inst->Instruction.NumSrcRegs <= TGSI_FULL_MAX_SRC_REGISTERS );
230 for( i = 0; i < inst->Instruction.NumSrcRegs; i++ ) {
232 next_token( ctx, &inst->Src[i].Register );
234 if( inst->Src[i].Register.Indirect ) {
235 next_token( ctx, &inst->Src[i].Indirect );
238 * No support for indirect or multi-dimensional addressing.
240 assert( !inst->Src[i].Indirect.Indirect );
241 assert( !inst->Src[i].Indirect.Dimension );
244 if( inst->Src[i].Register.Dimension ) {
245 next_token( ctx, &inst->Src[i].Dimension );
248 * No support for multi-dimensional addressing.
250 assert( !inst->Src[i].Dimension.Dimension );
252 if( inst->Src[i].Dimension.Indirect ) {
253 next_token( ctx, &inst->Src[i].DimIndirect );
256 * No support for indirect or multi-dimensional addressing.
258 assert( !inst->Src[i].Indirect.Indirect );
259 assert( !inst->Src[i].Indirect.Dimension );
264 break;
267 case TGSI_TOKEN_TYPE_PROPERTY:
269 struct tgsi_full_property *prop = &ctx->FullToken.FullProperty;
270 uint prop_count;
272 memset(prop, 0, sizeof *prop);
273 copy_token(&prop->Property, &token);
275 prop_count = prop->Property.NrTokens - 1;
276 for (i = 0; i < prop_count; i++) {
277 next_token(ctx, &prop->u[i]);
280 break;
283 default:
284 assert( 0 );
292 * Make a new copy of a token array.
294 struct tgsi_token *
295 tgsi_dup_tokens(const struct tgsi_token *tokens)
297 unsigned n = tgsi_num_tokens(tokens);
298 unsigned bytes = n * sizeof(struct tgsi_token);
299 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes);
300 if (new_tokens)
301 memcpy(new_tokens, tokens, bytes);
302 return new_tokens;
307 * Allocate memory for num_tokens tokens.
309 struct tgsi_token *
310 tgsi_alloc_tokens(unsigned num_tokens)
312 unsigned bytes = num_tokens * sizeof(struct tgsi_token);
313 return (struct tgsi_token *) MALLOC(bytes);
317 void
318 tgsi_dump_tokens(const struct tgsi_token *tokens)
320 const unsigned *dwords = (const unsigned *)tokens;
321 int nr = tgsi_num_tokens(tokens);
322 int i;
324 assert(sizeof(*tokens) == sizeof(unsigned));
326 debug_printf("const unsigned tokens[%d] = {\n", nr);
327 for (i = 0; i < nr; i++)
328 debug_printf("0x%08x,\n", dwords[i]);
329 debug_printf("};\n");