1 /**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 **********************************************************/
26 #ifndef SVGA_TGSI_EMIT_H
27 #define SVGA_TGSI_EMIT_H
29 #include "tgsi/tgsi_scan.h"
30 #include "svga_hw_reg.h"
31 #include "svga_tgsi.h"
32 #include "svga3d_shaderdefs.h"
36 SVGA3dShaderSrcToken base
;
37 SVGA3dShaderSrcToken indirect
;
41 struct svga_arl_consts
{
48 /* Internal functions:
51 struct svga_shader_emitter
59 union svga_compile_key key
;
60 struct tgsi_shader_info info
;
70 int internal_temp_count
;
71 int internal_imm_count
;
73 int internal_color_idx
[2]; /* diffuse, specular */
74 int internal_color_count
;
76 boolean emitted_vface
;
77 boolean emit_frontface
;
78 int internal_frontface_idx
;
82 int dynamic_branching_level
;
86 boolean created_zero_immediate
;
87 int zero_immediate_idx
;
89 boolean created_loop_const
;
92 boolean created_sincos_consts
;
93 int sincos_consts_idx
;
98 struct src_register input_map
[PIPE_MAX_ATTRIBS
];
99 SVGA3dShaderDestToken output_map
[PIPE_MAX_ATTRIBS
];
101 struct src_register imm_0055
;
102 SVGA3dShaderDestToken temp_pos
;
103 SVGA3dShaderDestToken true_pos
;
105 SVGA3dShaderDestToken temp_col
[PIPE_MAX_COLOR_BUFS
];
106 SVGA3dShaderDestToken true_col
[PIPE_MAX_COLOR_BUFS
];
108 SVGA3dShaderDestToken temp_psiz
;
109 SVGA3dShaderDestToken true_psiz
;
111 struct svga_arl_consts arl_consts
[12];
117 boolean
svga_shader_emit_dword( struct svga_shader_emitter
*emit
,
120 boolean
svga_shader_emit_dwords( struct svga_shader_emitter
*emit
,
121 const unsigned *dwords
,
124 boolean
svga_shader_emit_opcode( struct svga_shader_emitter
*emit
,
127 boolean
svga_shader_emit_instructions( struct svga_shader_emitter
*emit
,
128 const struct tgsi_token
*tokens
);
130 boolean
svga_translate_decl_sm20( struct svga_shader_emitter
*emit
,
131 const struct tgsi_full_declaration
*decl
);
133 boolean
svga_translate_decl_sm30( struct svga_shader_emitter
*emit
,
134 const struct tgsi_full_declaration
*decl
);
137 static INLINE boolean
emit_dst( struct svga_shader_emitter
*emit
,
138 SVGA3dShaderDestToken dest
)
140 assert(dest
.reserved0
);
142 return svga_shader_emit_dword( emit
, dest
.value
);
145 static INLINE boolean
emit_src( struct svga_shader_emitter
*emit
,
146 const struct src_register src
)
148 if (src
.base
.relAddr
) {
149 assert(src
.base
.reserved0
);
150 assert(src
.indirect
.reserved0
);
151 return (svga_shader_emit_dword( emit
, src
.base
.value
) &&
152 svga_shader_emit_dword( emit
, src
.indirect
.value
));
155 assert(src
.base
.reserved0
);
156 return svga_shader_emit_dword( emit
, src
.base
.value
);
161 static INLINE boolean
emit_instruction( struct svga_shader_emitter
*emit
,
162 SVGA3dShaderInstToken opcode
)
164 return svga_shader_emit_opcode( emit
, opcode
.value
);
168 static INLINE boolean
emit_op1( struct svga_shader_emitter
*emit
,
169 SVGA3dShaderInstToken inst
,
170 SVGA3dShaderDestToken dest
,
171 struct src_register src0
)
173 return (emit_instruction( emit
, inst
) &&
174 emit_dst( emit
, dest
) &&
175 emit_src( emit
, src0
));
178 static INLINE boolean
emit_op2( struct svga_shader_emitter
*emit
,
179 SVGA3dShaderInstToken inst
,
180 SVGA3dShaderDestToken dest
,
181 struct src_register src0
,
182 struct src_register src1
)
184 return (emit_instruction( emit
, inst
) &&
185 emit_dst( emit
, dest
) &&
186 emit_src( emit
, src0
) &&
187 emit_src( emit
, src1
));
190 static INLINE boolean
emit_op3( struct svga_shader_emitter
*emit
,
191 SVGA3dShaderInstToken inst
,
192 SVGA3dShaderDestToken dest
,
193 struct src_register src0
,
194 struct src_register src1
,
195 struct src_register src2
)
197 return (emit_instruction( emit
, inst
) &&
198 emit_dst( emit
, dest
) &&
199 emit_src( emit
, src0
) &&
200 emit_src( emit
, src1
) &&
201 emit_src( emit
, src2
));
205 static INLINE boolean
emit_op4( struct svga_shader_emitter
*emit
,
206 SVGA3dShaderInstToken inst
,
207 SVGA3dShaderDestToken dest
,
208 struct src_register src0
,
209 struct src_register src1
,
210 struct src_register src2
,
211 struct src_register src3
)
213 return (emit_instruction( emit
, inst
) &&
214 emit_dst( emit
, dest
) &&
215 emit_src( emit
, src0
) &&
216 emit_src( emit
, src1
) &&
217 emit_src( emit
, src2
) &&
218 emit_src( emit
, src3
));
222 #define TRANSLATE_SWIZZLE(x,y,z,w) ((x) | ((y) << 2) | ((z) << 4) | ((w) << 6))
223 #define SWIZZLE_XYZW \
224 TRANSLATE_SWIZZLE(TGSI_SWIZZLE_X,TGSI_SWIZZLE_Y,TGSI_SWIZZLE_Z,TGSI_SWIZZLE_W)
225 #define SWIZZLE_XXXX \
226 TRANSLATE_SWIZZLE(TGSI_SWIZZLE_X,TGSI_SWIZZLE_X,TGSI_SWIZZLE_X,TGSI_SWIZZLE_X)
227 #define SWIZZLE_YYYY \
228 TRANSLATE_SWIZZLE(TGSI_SWIZZLE_Y,TGSI_SWIZZLE_Y,TGSI_SWIZZLE_Y,TGSI_SWIZZLE_Y)
229 #define SWIZZLE_ZZZZ \
230 TRANSLATE_SWIZZLE(TGSI_SWIZZLE_Z,TGSI_SWIZZLE_Z,TGSI_SWIZZLE_Z,TGSI_SWIZZLE_Z)
231 #define SWIZZLE_WWWW \
232 TRANSLATE_SWIZZLE(TGSI_SWIZZLE_W,TGSI_SWIZZLE_W,TGSI_SWIZZLE_W,TGSI_SWIZZLE_W)
236 static INLINE SVGA3dShaderInstToken
237 inst_token( unsigned opcode
)
239 SVGA3dShaderInstToken inst
;
247 static INLINE SVGA3dShaderDestToken
248 dst_register( unsigned file
,
251 SVGA3dShaderDestToken dest
;
255 dest
.type_upper
= file
>> 3;
261 dest
.type_lower
= file
& 0x7;
262 dest
.reserved0
= 1; /* is_reg */
267 static INLINE SVGA3dShaderDestToken
268 writemask( SVGA3dShaderDestToken dest
,
271 assert(dest
.mask
& mask
);
277 static INLINE SVGA3dShaderSrcToken
278 src_token( unsigned file
, int number
)
280 SVGA3dShaderSrcToken src
;
284 src
.type_upper
= file
>> 3;
287 src
.swizzle
= SWIZZLE_XYZW
;
289 src
.type_lower
= file
& 0x7;
290 src
.reserved0
= 1; /* is_reg */
296 static INLINE
struct src_register
297 absolute( struct src_register src
)
299 src
.base
.srcMod
= SVGA3DSRCMOD_ABS
;
305 static INLINE
struct src_register
306 negate( struct src_register src
)
308 switch (src
.base
.srcMod
) {
309 case SVGA3DSRCMOD_ABS
:
310 src
.base
.srcMod
= SVGA3DSRCMOD_ABSNEG
;
312 case SVGA3DSRCMOD_ABSNEG
:
313 src
.base
.srcMod
= SVGA3DSRCMOD_ABS
;
315 case SVGA3DSRCMOD_NEG
:
316 src
.base
.srcMod
= SVGA3DSRCMOD_NONE
;
318 case SVGA3DSRCMOD_NONE
:
319 src
.base
.srcMod
= SVGA3DSRCMOD_NEG
;
326 static INLINE
struct src_register
327 src_register( unsigned file
, int number
)
329 struct src_register src
;
331 src
.base
= src_token( file
, number
);
332 src
.indirect
.value
= 0;
337 static INLINE SVGA3dShaderDestToken
dst( struct src_register src
)
339 return dst_register( SVGA3dShaderGetRegType( src
.base
.value
),
343 static INLINE
struct src_register
src( SVGA3dShaderDestToken dst
)
345 return src_register( SVGA3dShaderGetRegType( dst
.value
),
349 static INLINE ubyte
svga_tgsi_sampler_type( struct svga_shader_emitter
*emit
,
352 switch (emit
->key
.fkey
.tex
[idx
].texture_target
) {
353 case PIPE_TEXTURE_1D
:
354 return SVGA3DSAMP_2D
;
355 case PIPE_TEXTURE_2D
:
356 return SVGA3DSAMP_2D
;
357 case PIPE_TEXTURE_3D
:
358 return SVGA3DSAMP_VOLUME
;
359 case PIPE_TEXTURE_CUBE
:
360 return SVGA3DSAMP_CUBE
;
363 return SVGA3DSAMP_UNKNOWN
;