• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**************************************************************************
2  *
3  * Copyright 2007 VMware, Inc.
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 VMWARE 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 #include "util/u_debug.h"
29 #include "pipe/p_shader_tokens.h"
30 #include "tgsi_parse.h"
31 #include "util/u_memory.h"
32 
33 unsigned
tgsi_parse_init(struct tgsi_parse_context * ctx,const struct tgsi_token * tokens)34 tgsi_parse_init(
35    struct tgsi_parse_context *ctx,
36    const struct tgsi_token *tokens )
37 {
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];
41    }
42    else {
43       return TGSI_PARSE_ERROR;
44    }
45 
46    ctx->Tokens = tokens;
47    ctx->Position = ctx->FullHeader.Header.HeaderSize;
48 
49    return TGSI_PARSE_OK;
50 }
51 
52 void
tgsi_parse_free(UNUSED struct tgsi_parse_context * ctx)53 tgsi_parse_free(
54    UNUSED struct tgsi_parse_context *ctx )
55 {
56 }
57 
58 boolean
tgsi_parse_end_of_tokens(struct tgsi_parse_context * ctx)59 tgsi_parse_end_of_tokens(
60    struct tgsi_parse_context *ctx )
61 {
62    /* All values involved are unsigned, but the sum will be promoted to
63     * a signed value (at least on 64 bit). To capture a possible overflow
64     * make it a signed comparison.
65     */
66    return (int)ctx->Position >=
67          ctx->FullHeader.Header.HeaderSize + ctx->FullHeader.Header.BodySize;
68 }
69 
70 
71 /**
72  * This function is used to avoid and work-around type punning/aliasing
73  * warnings.  The warnings seem harmless on x86 but on PPC they cause
74  * real failures.
75  */
76 static inline void
copy_token(void * dst,const void * src)77 copy_token(void *dst, const void *src)
78 {
79    memcpy(dst, src, 4);
80 }
81 
82 
83 /**
84  * Get next 4-byte token, return it at address specified by 'token'
85  */
86 static void
next_token(struct tgsi_parse_context * ctx,void * token)87 next_token(
88    struct tgsi_parse_context *ctx,
89    void *token )
90 {
91    assert( !tgsi_parse_end_of_tokens( ctx ) );
92    copy_token(token, &ctx->Tokens[ctx->Position]);
93    ctx->Position++;
94 }
95 
96 
97 void
tgsi_parse_token(struct tgsi_parse_context * ctx)98 tgsi_parse_token(
99    struct tgsi_parse_context *ctx )
100 {
101    struct tgsi_token token;
102    unsigned i;
103 
104    next_token( ctx, &token );
105 
106    switch( token.Type ) {
107    case TGSI_TOKEN_TYPE_DECLARATION:
108    {
109       struct tgsi_full_declaration *decl = &ctx->FullToken.FullDeclaration;
110 
111       memset(decl, 0, sizeof *decl);
112       copy_token(&decl->Declaration, &token);
113 
114       next_token( ctx, &decl->Range );
115 
116       if (decl->Declaration.Dimension) {
117          next_token(ctx, &decl->Dim);
118       }
119 
120       if( decl->Declaration.Interpolate ) {
121          next_token( ctx, &decl->Interp );
122       }
123 
124       if( decl->Declaration.Semantic ) {
125          next_token( ctx, &decl->Semantic );
126       }
127 
128       if (decl->Declaration.File == TGSI_FILE_IMAGE) {
129          next_token(ctx, &decl->Image);
130       }
131 
132       if (decl->Declaration.File == TGSI_FILE_SAMPLER_VIEW) {
133          next_token(ctx, &decl->SamplerView);
134       }
135 
136       if( decl->Declaration.Array ) {
137          next_token(ctx, &decl->Array);
138       }
139 
140       break;
141    }
142 
143    case TGSI_TOKEN_TYPE_IMMEDIATE:
144    {
145       struct tgsi_full_immediate *imm = &ctx->FullToken.FullImmediate;
146       uint imm_count;
147 
148       memset(imm, 0, sizeof *imm);
149       copy_token(&imm->Immediate, &token);
150 
151       imm_count = imm->Immediate.NrTokens - 1;
152 
153       switch (imm->Immediate.DataType) {
154       case TGSI_IMM_FLOAT32:
155          for (i = 0; i < imm_count; i++) {
156             next_token(ctx, &imm->u[i].Float);
157          }
158          break;
159 
160       case TGSI_IMM_UINT32:
161       case TGSI_IMM_FLOAT64:
162          for (i = 0; i < imm_count; i++) {
163             next_token(ctx, &imm->u[i].Uint);
164          }
165          break;
166 
167       case TGSI_IMM_INT32:
168          for (i = 0; i < imm_count; i++) {
169             next_token(ctx, &imm->u[i].Int);
170          }
171          break;
172 
173       default:
174          assert( 0 );
175       }
176 
177       break;
178    }
179 
180    case TGSI_TOKEN_TYPE_INSTRUCTION:
181    {
182       struct tgsi_full_instruction *inst = &ctx->FullToken.FullInstruction;
183 
184       memset(inst, 0, sizeof *inst);
185       copy_token(&inst->Instruction, &token);
186 
187       if (inst->Instruction.Label) {
188          next_token( ctx, &inst->Label);
189       }
190 
191       if (inst->Instruction.Texture) {
192          next_token( ctx, &inst->Texture);
193          for( i = 0; i < inst->Texture.NumOffsets; i++ ) {
194             next_token( ctx, &inst->TexOffsets[i] );
195          }
196       }
197 
198       if (inst->Instruction.Memory) {
199          next_token(ctx, &inst->Memory);
200       }
201 
202       assert( inst->Instruction.NumDstRegs <= TGSI_FULL_MAX_DST_REGISTERS );
203 
204       for(  i = 0; i < inst->Instruction.NumDstRegs; i++ ) {
205 
206          next_token( ctx, &inst->Dst[i].Register );
207 
208          if( inst->Dst[i].Register.Indirect )
209             next_token( ctx, &inst->Dst[i].Indirect );
210 
211          if( inst->Dst[i].Register.Dimension ) {
212             next_token( ctx, &inst->Dst[i].Dimension );
213 
214             /*
215              * No support for multi-dimensional addressing.
216              */
217             assert( !inst->Dst[i].Dimension.Dimension );
218 
219             if( inst->Dst[i].Dimension.Indirect )
220                next_token( ctx, &inst->Dst[i].DimIndirect );
221          }
222       }
223 
224       assert( inst->Instruction.NumSrcRegs <= TGSI_FULL_MAX_SRC_REGISTERS );
225 
226       for( i = 0; i < inst->Instruction.NumSrcRegs; i++ ) {
227 
228          next_token( ctx, &inst->Src[i].Register );
229 
230          if( inst->Src[i].Register.Indirect )
231             next_token( ctx, &inst->Src[i].Indirect );
232 
233          if( inst->Src[i].Register.Dimension ) {
234             next_token( ctx, &inst->Src[i].Dimension );
235 
236             /*
237              * No support for multi-dimensional addressing.
238              */
239             assert( !inst->Src[i].Dimension.Dimension );
240 
241             if( inst->Src[i].Dimension.Indirect )
242                next_token( ctx, &inst->Src[i].DimIndirect );
243          }
244       }
245 
246       break;
247    }
248 
249    case TGSI_TOKEN_TYPE_PROPERTY:
250    {
251       struct tgsi_full_property *prop = &ctx->FullToken.FullProperty;
252       uint prop_count;
253 
254       memset(prop, 0, sizeof *prop);
255       copy_token(&prop->Property, &token);
256 
257       prop_count = prop->Property.NrTokens - 1;
258       for (i = 0; i < prop_count; i++) {
259          next_token(ctx, &prop->u[i]);
260       }
261 
262       break;
263    }
264 
265    default:
266       assert( 0 );
267    }
268 }
269 
270 
271 
272 
273 /**
274  * Make a new copy of a token array.
275  */
276 struct tgsi_token *
tgsi_dup_tokens(const struct tgsi_token * tokens)277 tgsi_dup_tokens(const struct tgsi_token *tokens)
278 {
279    unsigned n = tgsi_num_tokens(tokens);
280    unsigned bytes = n * sizeof(struct tgsi_token);
281    struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes);
282    if (new_tokens)
283       memcpy(new_tokens, tokens, bytes);
284    return new_tokens;
285 }
286 
287 
288 /**
289  * Allocate memory for num_tokens tokens.
290  */
291 struct tgsi_token *
tgsi_alloc_tokens(unsigned num_tokens)292 tgsi_alloc_tokens(unsigned num_tokens)
293 {
294    unsigned bytes = num_tokens * sizeof(struct tgsi_token);
295    return (struct tgsi_token *) MALLOC(bytes);
296 }
297 
298 
299 void
tgsi_dump_tokens(const struct tgsi_token * tokens)300 tgsi_dump_tokens(const struct tgsi_token *tokens)
301 {
302    const unsigned *dwords = (const unsigned *)tokens;
303    int nr = tgsi_num_tokens(tokens);
304    int i;
305 
306    assert(sizeof(*tokens) == sizeof(unsigned));
307 
308    debug_printf("const unsigned tokens[%d] = {\n", nr);
309    for (i = 0; i < nr; i++)
310       debug_printf("0x%08x,\n", dwords[i]);
311    debug_printf("};\n");
312 }
313