Merge remote-tracking branch 'mesa-public/master' into vulkan
[mesa.git] / src / gallium / auxiliary / gallivm / lp_bld_tgsi.c
1 /**************************************************************************
2 *
3 * Copyright 2011-2012 Advanced Micro Devices, Inc.
4 * Copyright 2010 VMware, Inc.
5 * Copyright 2009 VMware, Inc.
6 * Copyright 2007-2008 VMware, Inc.
7 * All Rights Reserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the
11 * "Software"), to deal in the Software without restriction, including
12 * without limitation the rights to use, copy, modify, merge, publish,
13 * distribute, sub license, and/or sell copies of the Software, and to
14 * permit persons to whom the Software is furnished to do so, subject to
15 * the following conditions:
16 *
17 * The above copyright notice and this permission notice (including the
18 * next paragraph) shall be included in all copies or substantial portions
19 * of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
24 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
25 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
26 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
27 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 *
29 **************************************************************************/
30
31 #include "gallivm/lp_bld_tgsi.h"
32
33 #include "gallivm/lp_bld_arit.h"
34 #include "gallivm/lp_bld_gather.h"
35 #include "gallivm/lp_bld_init.h"
36 #include "gallivm/lp_bld_intr.h"
37 #include "tgsi/tgsi_info.h"
38 #include "tgsi/tgsi_parse.h"
39 #include "tgsi/tgsi_util.h"
40 #include "util/u_memory.h"
41
42 /* The user is responsible for freeing list->instructions */
43 unsigned lp_bld_tgsi_list_init(struct lp_build_tgsi_context * bld_base)
44 {
45 bld_base->instructions = (struct tgsi_full_instruction *)
46 MALLOC( LP_MAX_INSTRUCTIONS * sizeof(struct tgsi_full_instruction) );
47 if (!bld_base->instructions) {
48 return 0;
49 }
50 bld_base->max_instructions = LP_MAX_INSTRUCTIONS;
51 return 1;
52 }
53
54
55 unsigned lp_bld_tgsi_add_instruction(
56 struct lp_build_tgsi_context * bld_base,
57 const struct tgsi_full_instruction *inst_to_add)
58 {
59
60 if (bld_base->num_instructions == bld_base->max_instructions) {
61 struct tgsi_full_instruction *instructions;
62 instructions = REALLOC(bld_base->instructions, bld_base->max_instructions
63 * sizeof(struct tgsi_full_instruction),
64 (bld_base->max_instructions + LP_MAX_INSTRUCTIONS)
65 * sizeof(struct tgsi_full_instruction));
66 if (!instructions) {
67 return 0;
68 }
69 bld_base->instructions = instructions;
70 bld_base->max_instructions += LP_MAX_INSTRUCTIONS;
71 }
72 memcpy(bld_base->instructions + bld_base->num_instructions, inst_to_add,
73 sizeof(bld_base->instructions[0]));
74
75 bld_base->num_instructions++;
76
77 return 1;
78 }
79
80
81 /**
82 * This function assumes that all the args in emit_data have been set.
83 */
84 static void
85 lp_build_action_set_dst_type(
86 struct lp_build_emit_data * emit_data,
87 struct lp_build_tgsi_context *bld_base,
88 unsigned tgsi_opcode)
89 {
90 if (emit_data->arg_count == 0) {
91 emit_data->dst_type = LLVMVoidTypeInContext(bld_base->base.gallivm->context);
92 } else {
93 /* XXX: Not all opcodes have the same src and dst types. */
94 emit_data->dst_type = LLVMTypeOf(emit_data->args[0]);
95 }
96 }
97
98 void
99 lp_build_tgsi_intrinsic(
100 const struct lp_build_tgsi_action * action,
101 struct lp_build_tgsi_context * bld_base,
102 struct lp_build_emit_data * emit_data)
103 {
104 struct lp_build_context * base = &bld_base->base;
105 emit_data->output[emit_data->chan] = lp_build_intrinsic(
106 base->gallivm->builder, action->intr_name,
107 emit_data->dst_type, emit_data->args, emit_data->arg_count, 0);
108 }
109
110 LLVMValueRef
111 lp_build_emit_llvm(
112 struct lp_build_tgsi_context *bld_base,
113 unsigned tgsi_opcode,
114 struct lp_build_emit_data * emit_data)
115 {
116 struct lp_build_tgsi_action * action = &bld_base->op_actions[tgsi_opcode];
117 /* XXX: Assert that this is a componentwise or replicate instruction */
118
119 lp_build_action_set_dst_type(emit_data, bld_base, tgsi_opcode);
120 emit_data->chan = 0;
121 assert(action->emit);
122 action->emit(action, bld_base, emit_data);
123 return emit_data->output[0];
124 }
125
126 LLVMValueRef
127 lp_build_emit_llvm_unary(
128 struct lp_build_tgsi_context *bld_base,
129 unsigned tgsi_opcode,
130 LLVMValueRef arg0)
131 {
132 struct lp_build_emit_data emit_data = {{0}};
133 emit_data.info = tgsi_get_opcode_info(tgsi_opcode);
134 emit_data.arg_count = 1;
135 emit_data.args[0] = arg0;
136 return lp_build_emit_llvm(bld_base, tgsi_opcode, &emit_data);
137 }
138
139 LLVMValueRef
140 lp_build_emit_llvm_binary(
141 struct lp_build_tgsi_context *bld_base,
142 unsigned tgsi_opcode,
143 LLVMValueRef arg0,
144 LLVMValueRef arg1)
145 {
146 struct lp_build_emit_data emit_data = {{0}};
147 emit_data.info = tgsi_get_opcode_info(tgsi_opcode);
148 emit_data.arg_count = 2;
149 emit_data.args[0] = arg0;
150 emit_data.args[1] = arg1;
151 return lp_build_emit_llvm(bld_base, tgsi_opcode, &emit_data);
152 }
153
154 LLVMValueRef
155 lp_build_emit_llvm_ternary(
156 struct lp_build_tgsi_context *bld_base,
157 unsigned tgsi_opcode,
158 LLVMValueRef arg0,
159 LLVMValueRef arg1,
160 LLVMValueRef arg2)
161 {
162 struct lp_build_emit_data emit_data = {{0}};
163 emit_data.info = tgsi_get_opcode_info(tgsi_opcode);
164 emit_data.arg_count = 3;
165 emit_data.args[0] = arg0;
166 emit_data.args[1] = arg1;
167 emit_data.args[2] = arg2;
168 return lp_build_emit_llvm(bld_base, tgsi_opcode, &emit_data);
169 }
170
171 /**
172 * The default fetch implementation.
173 */
174 void lp_build_fetch_args(
175 struct lp_build_tgsi_context * bld_base,
176 struct lp_build_emit_data * emit_data)
177 {
178 unsigned src;
179 for (src = 0; src < emit_data->info->num_src; src++) {
180 emit_data->args[src] = lp_build_emit_fetch(bld_base, emit_data->inst, src,
181 emit_data->src_chan);
182 }
183 emit_data->arg_count = emit_data->info->num_src;
184 lp_build_action_set_dst_type(emit_data, bld_base,
185 emit_data->inst->Instruction.Opcode);
186 }
187
188 /**
189 * with doubles src and dst channels aren't 1:1.
190 * check the src/dst types for the opcode,
191 * 1. if neither is double then src == dst;
192 * 2. if dest is double
193 * - don't store to y or w
194 * - if src is double then src == dst.
195 * - else for f2d, d.xy = s.x
196 * - else for f2d, d.zw = s.y
197 * 3. if dst is single, src is double
198 * - map dst x,z to src xy;
199 * - map dst y,w to src zw;
200 */
201 static int get_src_chan_idx(unsigned opcode,
202 int dst_chan_index)
203 {
204 enum tgsi_opcode_type dtype = tgsi_opcode_infer_dst_type(opcode);
205 enum tgsi_opcode_type stype = tgsi_opcode_infer_src_type(opcode);
206
207 if (dtype != TGSI_TYPE_DOUBLE && stype != TGSI_TYPE_DOUBLE)
208 return dst_chan_index;
209 if (dtype == TGSI_TYPE_DOUBLE) {
210 if (dst_chan_index == 1 || dst_chan_index == 3)
211 return -1;
212 if (stype == TGSI_TYPE_DOUBLE)
213 return dst_chan_index;
214 if (dst_chan_index == 0)
215 return 0;
216 if (dst_chan_index == 2)
217 return 1;
218 } else {
219 if (dst_chan_index == 0 || dst_chan_index == 2)
220 return 0;
221 if (dst_chan_index == 1 || dst_chan_index == 3)
222 return 2;
223 }
224 return -1;
225 }
226
227 /* XXX: COMMENT
228 * It should be assumed that this function ignores writemasks
229 */
230 boolean
231 lp_build_tgsi_inst_llvm(
232 struct lp_build_tgsi_context * bld_base,
233 const struct tgsi_full_instruction * inst)
234 {
235 unsigned tgsi_opcode = inst->Instruction.Opcode;
236 const struct tgsi_opcode_info * info = tgsi_get_opcode_info(tgsi_opcode);
237 const struct lp_build_tgsi_action * action =
238 &bld_base->op_actions[tgsi_opcode];
239 struct lp_build_emit_data emit_data;
240 unsigned chan_index;
241 LLVMValueRef val;
242 bld_base->pc++;
243
244 if (bld_base->emit_debug) {
245 bld_base->emit_debug(bld_base, inst, info);
246 }
247
248 /* Ignore deprecated instructions */
249 switch (inst->Instruction.Opcode) {
250
251 case TGSI_OPCODE_UP2H:
252 case TGSI_OPCODE_UP2US:
253 case TGSI_OPCODE_UP4B:
254 case TGSI_OPCODE_UP4UB:
255 case TGSI_OPCODE_PUSHA:
256 case TGSI_OPCODE_POPA:
257 case TGSI_OPCODE_SAD:
258 /* deprecated? */
259 assert(0);
260 return FALSE;
261 break;
262 }
263
264 /* Check if the opcode has been implemented */
265 if (!action->emit) {
266 return FALSE;
267 }
268
269 memset(&emit_data, 0, sizeof(emit_data));
270
271 assert(info->num_dst <= 1);
272 if (info->num_dst) {
273 TGSI_FOR_EACH_DST0_ENABLED_CHANNEL( inst, chan_index ) {
274 emit_data.output[chan_index] = bld_base->base.undef;
275 }
276 }
277
278 emit_data.inst = inst;
279 emit_data.info = info;
280
281 /* Emit the instructions */
282 if (info->output_mode == TGSI_OUTPUT_COMPONENTWISE && bld_base->soa) {
283 TGSI_FOR_EACH_DST0_ENABLED_CHANNEL(inst, chan_index) {
284 int src_index = get_src_chan_idx(inst->Instruction.Opcode, chan_index);
285 /* ignore channels 1/3 in double dst */
286 if (src_index == -1)
287 continue;
288 emit_data.chan = chan_index;
289 emit_data.src_chan = src_index;
290 if (!action->fetch_args) {
291 lp_build_fetch_args(bld_base, &emit_data);
292 } else {
293 action->fetch_args(bld_base, &emit_data);
294 }
295 action->emit(action, bld_base, &emit_data);
296 }
297 } else {
298 emit_data.chan = LP_CHAN_ALL;
299 if (action->fetch_args) {
300 action->fetch_args(bld_base, &emit_data);
301 }
302 /* Make sure the output value is stored in emit_data.output[0], unless
303 * the opcode is channel dependent */
304 if (info->output_mode != TGSI_OUTPUT_CHAN_DEPENDENT) {
305 emit_data.chan = 0;
306 }
307 action->emit(action, bld_base, &emit_data);
308
309 /* Replicate the output values */
310 if (info->output_mode == TGSI_OUTPUT_REPLICATE && bld_base->soa) {
311 val = emit_data.output[0];
312 memset(emit_data.output, 0, sizeof(emit_data.output));
313 TGSI_FOR_EACH_DST0_ENABLED_CHANNEL(inst, chan_index) {
314 emit_data.output[chan_index] = val;
315 }
316 }
317 }
318
319 if (info->num_dst > 0) {
320 bld_base->emit_store(bld_base, inst, info, emit_data.output);
321 }
322 return TRUE;
323 }
324
325
326 LLVMValueRef
327 lp_build_emit_fetch(
328 struct lp_build_tgsi_context *bld_base,
329 const struct tgsi_full_instruction *inst,
330 unsigned src_op,
331 const unsigned chan_index)
332 {
333 const struct tgsi_full_src_register *reg = &inst->Src[src_op];
334 unsigned swizzle;
335 LLVMValueRef res;
336 enum tgsi_opcode_type stype = tgsi_opcode_infer_src_type(inst->Instruction.Opcode);
337
338 if (chan_index == LP_CHAN_ALL) {
339 swizzle = ~0;
340 } else {
341 swizzle = tgsi_util_get_full_src_register_swizzle(reg, chan_index);
342 if (swizzle > 3) {
343 assert(0 && "invalid swizzle in emit_fetch()");
344 return bld_base->base.undef;
345 }
346 }
347
348 assert(reg->Register.Index <= bld_base->info->file_max[reg->Register.File]);
349
350 if (bld_base->emit_fetch_funcs[reg->Register.File]) {
351 res = bld_base->emit_fetch_funcs[reg->Register.File](bld_base, reg, stype,
352 swizzle);
353 } else {
354 assert(0 && "invalid src register in emit_fetch()");
355 return bld_base->base.undef;
356 }
357
358 if (reg->Register.Absolute) {
359 switch (stype) {
360 case TGSI_TYPE_FLOAT:
361 case TGSI_TYPE_DOUBLE:
362 case TGSI_TYPE_UNTYPED:
363 /* modifiers on movs assume data is float */
364 res = lp_build_emit_llvm_unary(bld_base, TGSI_OPCODE_ABS, res);
365 break;
366 case TGSI_TYPE_UNSIGNED:
367 case TGSI_TYPE_SIGNED:
368 case TGSI_TYPE_VOID:
369 default:
370 /* abs modifier is only legal on floating point types */
371 assert(0);
372 break;
373 }
374 }
375
376 if (reg->Register.Negate) {
377 switch (stype) {
378 case TGSI_TYPE_FLOAT:
379 case TGSI_TYPE_UNTYPED:
380 /* modifiers on movs assume data is float */
381 res = lp_build_negate( &bld_base->base, res );
382 break;
383 case TGSI_TYPE_DOUBLE:
384 /* no double build context */
385 assert(0);
386 break;
387 case TGSI_TYPE_SIGNED:
388 case TGSI_TYPE_UNSIGNED:
389 res = lp_build_negate( &bld_base->int_bld, res );
390 break;
391 case TGSI_TYPE_VOID:
392 default:
393 assert(0);
394 break;
395 }
396 }
397
398 /*
399 * Swizzle the argument
400 */
401
402 if (swizzle == ~0) {
403 res = bld_base->emit_swizzle(bld_base, res,
404 reg->Register.SwizzleX,
405 reg->Register.SwizzleY,
406 reg->Register.SwizzleZ,
407 reg->Register.SwizzleW);
408 }
409
410 return res;
411
412 }
413
414
415 LLVMValueRef
416 lp_build_emit_fetch_texoffset(
417 struct lp_build_tgsi_context *bld_base,
418 const struct tgsi_full_instruction *inst,
419 unsigned tex_off_op,
420 const unsigned chan_index)
421 {
422 const struct tgsi_texture_offset *off = &inst->TexOffsets[tex_off_op];
423 struct tgsi_full_src_register reg;
424 unsigned swizzle;
425 LLVMValueRef res;
426 enum tgsi_opcode_type stype = TGSI_TYPE_SIGNED;
427
428 /* convert offset "register" to ordinary register so can use normal emit funcs */
429 memset(&reg, 0, sizeof(reg));
430 reg.Register.File = off->File;
431 reg.Register.Index = off->Index;
432 reg.Register.SwizzleX = off->SwizzleX;
433 reg.Register.SwizzleY = off->SwizzleY;
434 reg.Register.SwizzleZ = off->SwizzleZ;
435
436 if (chan_index == LP_CHAN_ALL) {
437 swizzle = ~0;
438 } else {
439 assert(chan_index < TGSI_SWIZZLE_W);
440 swizzle = tgsi_util_get_src_register_swizzle(&reg.Register, chan_index);
441 }
442
443 assert(off->Index <= bld_base->info->file_max[off->File]);
444
445 if (bld_base->emit_fetch_funcs[off->File]) {
446 res = bld_base->emit_fetch_funcs[off->File](bld_base, &reg, stype,
447 swizzle);
448 } else {
449 assert(0 && "invalid src register in emit_fetch_texoffset()");
450 return bld_base->base.undef;
451 }
452
453 /*
454 * Swizzle the argument
455 */
456
457 if (swizzle == ~0) {
458 res = bld_base->emit_swizzle(bld_base, res,
459 off->SwizzleX,
460 off->SwizzleY,
461 off->SwizzleZ,
462 /* there's no 4th channel */
463 off->SwizzleX);
464 }
465
466 return res;
467
468 }
469
470
471 boolean
472 lp_build_tgsi_llvm(
473 struct lp_build_tgsi_context * bld_base,
474 const struct tgsi_token *tokens)
475 {
476 struct tgsi_parse_context parse;
477
478 if (bld_base->emit_prologue) {
479 bld_base->emit_prologue(bld_base);
480 }
481
482 if (!lp_bld_tgsi_list_init(bld_base)) {
483 return FALSE;
484 }
485
486 tgsi_parse_init( &parse, tokens );
487
488 while( !tgsi_parse_end_of_tokens( &parse ) ) {
489 tgsi_parse_token( &parse );
490
491 switch( parse.FullToken.Token.Type ) {
492 case TGSI_TOKEN_TYPE_DECLARATION:
493 /* Inputs already interpolated */
494 bld_base->emit_declaration(bld_base, &parse.FullToken.FullDeclaration);
495 break;
496
497 case TGSI_TOKEN_TYPE_INSTRUCTION:
498 lp_bld_tgsi_add_instruction(bld_base, &parse.FullToken.FullInstruction);
499 break;
500
501 case TGSI_TOKEN_TYPE_IMMEDIATE:
502 bld_base->emit_immediate(bld_base, &parse.FullToken.FullImmediate);
503 break;
504
505 case TGSI_TOKEN_TYPE_PROPERTY:
506 break;
507
508 default:
509 assert( 0 );
510 }
511 }
512
513 while (bld_base->pc != -1) {
514 const struct tgsi_full_instruction *instr =
515 bld_base->instructions + bld_base->pc;
516 const struct tgsi_opcode_info *opcode_info =
517 tgsi_get_opcode_info(instr->Instruction.Opcode);
518 if (!lp_build_tgsi_inst_llvm(bld_base, instr)) {
519 _debug_printf("warning: failed to translate tgsi opcode %s to LLVM\n",
520 opcode_info->mnemonic);
521 return FALSE;
522 }
523 }
524
525 tgsi_parse_free(&parse);
526
527 FREE(bld_base->instructions);
528
529 if (bld_base->emit_epilogue) {
530 bld_base->emit_epilogue(bld_base);
531 }
532
533 return TRUE;
534 }