draw: fix draw_llvm_variant_key struct padding to avoid recompiles
[mesa.git] / src / gallium / auxiliary / draw / draw_llvm.c
1 /**************************************************************************
2 *
3 * Copyright 2010 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 "draw_llvm.h"
29
30 #include "draw_context.h"
31 #include "draw_vs.h"
32
33 #include "gallivm/lp_bld_arit.h"
34 #include "gallivm/lp_bld_logic.h"
35 #include "gallivm/lp_bld_const.h"
36 #include "gallivm/lp_bld_swizzle.h"
37 #include "gallivm/lp_bld_struct.h"
38 #include "gallivm/lp_bld_type.h"
39 #include "gallivm/lp_bld_flow.h"
40 #include "gallivm/lp_bld_debug.h"
41 #include "gallivm/lp_bld_tgsi.h"
42 #include "gallivm/lp_bld_printf.h"
43 #include "gallivm/lp_bld_intr.h"
44 #include "gallivm/lp_bld_init.h"
45 #include "gallivm/lp_bld_type.h"
46 #include "gallivm/lp_bld_pack.h"
47 #include "gallivm/lp_bld_format.h"
48
49 #include "tgsi/tgsi_exec.h"
50 #include "tgsi/tgsi_dump.h"
51
52 #include "util/u_math.h"
53 #include "util/u_pointer.h"
54 #include "util/u_string.h"
55 #include "util/u_simple_list.h"
56
57
58 #define DEBUG_STORE 0
59
60
61 static void
62 draw_llvm_generate(struct draw_llvm *llvm, struct draw_llvm_variant *var,
63 boolean elts);
64
65
66 /**
67 * Create LLVM type for struct draw_jit_texture
68 */
69 static LLVMTypeRef
70 create_jit_texture_type(struct gallivm_state *gallivm, const char *struct_name)
71 {
72 LLVMTargetDataRef target = gallivm->target;
73 LLVMTypeRef texture_type;
74 LLVMTypeRef elem_types[DRAW_JIT_TEXTURE_NUM_FIELDS];
75 LLVMTypeRef int32_type = LLVMInt32TypeInContext(gallivm->context);
76
77 elem_types[DRAW_JIT_TEXTURE_WIDTH] =
78 elem_types[DRAW_JIT_TEXTURE_HEIGHT] =
79 elem_types[DRAW_JIT_TEXTURE_DEPTH] =
80 elem_types[DRAW_JIT_TEXTURE_FIRST_LEVEL] =
81 elem_types[DRAW_JIT_TEXTURE_LAST_LEVEL] = int32_type;
82 elem_types[DRAW_JIT_TEXTURE_BASE] =
83 LLVMPointerType(LLVMInt8TypeInContext(gallivm->context), 0);
84 elem_types[DRAW_JIT_TEXTURE_ROW_STRIDE] =
85 elem_types[DRAW_JIT_TEXTURE_IMG_STRIDE] =
86 elem_types[DRAW_JIT_TEXTURE_MIP_OFFSETS] =
87 LLVMArrayType(int32_type, PIPE_MAX_TEXTURE_LEVELS);
88
89 texture_type = LLVMStructTypeInContext(gallivm->context, elem_types,
90 Elements(elem_types), 0);
91
92 #if HAVE_LLVM < 0x0300
93 LLVMAddTypeName(gallivm->module, struct_name, texture_type);
94
95 /* Make sure the target's struct layout cache doesn't return
96 * stale/invalid data.
97 */
98 LLVMInvalidateStructLayout(gallivm->target, texture_type);
99 #endif
100
101 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, width,
102 target, texture_type,
103 DRAW_JIT_TEXTURE_WIDTH);
104 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, height,
105 target, texture_type,
106 DRAW_JIT_TEXTURE_HEIGHT);
107 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, depth,
108 target, texture_type,
109 DRAW_JIT_TEXTURE_DEPTH);
110 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, first_level,
111 target, texture_type,
112 DRAW_JIT_TEXTURE_FIRST_LEVEL);
113 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, last_level,
114 target, texture_type,
115 DRAW_JIT_TEXTURE_LAST_LEVEL);
116 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, base,
117 target, texture_type,
118 DRAW_JIT_TEXTURE_BASE);
119 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, row_stride,
120 target, texture_type,
121 DRAW_JIT_TEXTURE_ROW_STRIDE);
122 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, img_stride,
123 target, texture_type,
124 DRAW_JIT_TEXTURE_IMG_STRIDE);
125 LP_CHECK_MEMBER_OFFSET(struct draw_jit_texture, mip_offsets,
126 target, texture_type,
127 DRAW_JIT_TEXTURE_MIP_OFFSETS);
128
129 LP_CHECK_STRUCT_SIZE(struct draw_jit_texture, target, texture_type);
130
131 return texture_type;
132 }
133
134
135 /**
136 * Create LLVM type for struct draw_jit_sampler
137 */
138 static LLVMTypeRef
139 create_jit_sampler_type(struct gallivm_state *gallivm, const char *struct_name)
140 {
141 LLVMTargetDataRef target = gallivm->target;
142 LLVMTypeRef sampler_type;
143 LLVMTypeRef elem_types[DRAW_JIT_SAMPLER_NUM_FIELDS];
144
145 elem_types[DRAW_JIT_SAMPLER_MIN_LOD] =
146 elem_types[DRAW_JIT_SAMPLER_MAX_LOD] =
147 elem_types[DRAW_JIT_SAMPLER_LOD_BIAS] = LLVMFloatTypeInContext(gallivm->context);
148 elem_types[DRAW_JIT_SAMPLER_BORDER_COLOR] =
149 LLVMArrayType(LLVMFloatTypeInContext(gallivm->context), 4);
150
151 sampler_type = LLVMStructTypeInContext(gallivm->context, elem_types,
152 Elements(elem_types), 0);
153
154 #if HAVE_LLVM < 0x0300
155 LLVMAddTypeName(gallivm->module, struct_name, sampler_type);
156
157 /* Make sure the target's struct layout cache doesn't return
158 * stale/invalid data.
159 */
160 LLVMInvalidateStructLayout(gallivm->target, sampler_type);
161 #endif
162
163 LP_CHECK_MEMBER_OFFSET(struct draw_jit_sampler, min_lod,
164 target, sampler_type,
165 DRAW_JIT_SAMPLER_MIN_LOD);
166 LP_CHECK_MEMBER_OFFSET(struct draw_jit_sampler, max_lod,
167 target, sampler_type,
168 DRAW_JIT_SAMPLER_MAX_LOD);
169 LP_CHECK_MEMBER_OFFSET(struct draw_jit_sampler, lod_bias,
170 target, sampler_type,
171 DRAW_JIT_SAMPLER_LOD_BIAS);
172 LP_CHECK_MEMBER_OFFSET(struct draw_jit_sampler, border_color,
173 target, sampler_type,
174 DRAW_JIT_SAMPLER_BORDER_COLOR);
175
176 LP_CHECK_STRUCT_SIZE(struct draw_jit_sampler, target, sampler_type);
177
178 return sampler_type;
179 }
180
181
182 /**
183 * Create LLVM type for struct draw_jit_context
184 */
185 static LLVMTypeRef
186 create_jit_context_type(struct gallivm_state *gallivm,
187 LLVMTypeRef texture_type, LLVMTypeRef sampler_type,
188 const char *struct_name)
189 {
190 LLVMTargetDataRef target = gallivm->target;
191 LLVMTypeRef float_type = LLVMFloatTypeInContext(gallivm->context);
192 LLVMTypeRef elem_types[6];
193 LLVMTypeRef context_type;
194
195 elem_types[0] = LLVMArrayType(LLVMPointerType(float_type, 0), /* vs_constants */
196 LP_MAX_TGSI_CONST_BUFFERS);
197 elem_types[1] = elem_types[0]; /* gs_constants */
198 elem_types[2] = LLVMPointerType(LLVMArrayType(LLVMArrayType(float_type, 4),
199 DRAW_TOTAL_CLIP_PLANES), 0);
200 elem_types[3] = LLVMPointerType(float_type, 0); /* viewport */
201 elem_types[4] = LLVMArrayType(texture_type,
202 PIPE_MAX_SHADER_SAMPLER_VIEWS); /* textures */
203 elem_types[5] = LLVMArrayType(sampler_type,
204 PIPE_MAX_SAMPLERS); /* samplers */
205 context_type = LLVMStructTypeInContext(gallivm->context, elem_types,
206 Elements(elem_types), 0);
207 #if HAVE_LLVM < 0x0300
208 LLVMAddTypeName(gallivm->module, struct_name, context_type);
209
210 LLVMInvalidateStructLayout(gallivm->target, context_type);
211 #endif
212
213 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, vs_constants,
214 target, context_type, 0);
215 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, gs_constants,
216 target, context_type, 1);
217 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, planes,
218 target, context_type, 2);
219 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, viewport,
220 target, context_type, 3);
221 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, textures,
222 target, context_type,
223 DRAW_JIT_CTX_TEXTURES);
224 LP_CHECK_MEMBER_OFFSET(struct draw_jit_context, samplers,
225 target, context_type,
226 DRAW_JIT_CTX_SAMPLERS);
227 LP_CHECK_STRUCT_SIZE(struct draw_jit_context,
228 target, context_type);
229
230 return context_type;
231 }
232
233
234 /**
235 * Create LLVM type for struct pipe_vertex_buffer
236 */
237 static LLVMTypeRef
238 create_jit_vertex_buffer_type(struct gallivm_state *gallivm, const char *struct_name)
239 {
240 LLVMTargetDataRef target = gallivm->target;
241 LLVMTypeRef elem_types[4];
242 LLVMTypeRef vb_type;
243
244 elem_types[0] =
245 elem_types[1] = LLVMInt32TypeInContext(gallivm->context);
246 elem_types[2] =
247 elem_types[3] = LLVMPointerType(LLVMInt8TypeInContext(gallivm->context), 0); /* vs_constants */
248
249 vb_type = LLVMStructTypeInContext(gallivm->context, elem_types,
250 Elements(elem_types), 0);
251 #if HAVE_LLVM < 0x0300
252 LLVMAddTypeName(gallivm->module, struct_name, vb_type);
253
254 LLVMInvalidateStructLayout(gallivm->target, vb_type);
255 #endif
256
257 LP_CHECK_MEMBER_OFFSET(struct pipe_vertex_buffer, stride,
258 target, vb_type, 0);
259 LP_CHECK_MEMBER_OFFSET(struct pipe_vertex_buffer, buffer_offset,
260 target, vb_type, 1);
261
262 LP_CHECK_STRUCT_SIZE(struct pipe_vertex_buffer, target, vb_type);
263
264 return vb_type;
265 }
266
267
268 /**
269 * Create LLVM type for struct vertex_header;
270 */
271 static LLVMTypeRef
272 create_jit_vertex_header(struct gallivm_state *gallivm, int data_elems)
273 {
274 LLVMTargetDataRef target = gallivm->target;
275 LLVMTypeRef elem_types[4];
276 LLVMTypeRef vertex_header;
277 char struct_name[24];
278
279 util_snprintf(struct_name, 23, "vertex_header%d", data_elems);
280
281 elem_types[DRAW_JIT_VERTEX_VERTEX_ID] = LLVMIntTypeInContext(gallivm->context, 32);
282 elem_types[DRAW_JIT_VERTEX_CLIP] = LLVMArrayType(LLVMFloatTypeInContext(gallivm->context), 4);
283 elem_types[DRAW_JIT_VERTEX_PRE_CLIP_POS] = LLVMArrayType(LLVMFloatTypeInContext(gallivm->context), 4);
284 elem_types[DRAW_JIT_VERTEX_DATA] = LLVMArrayType(elem_types[1], data_elems);
285
286 vertex_header = LLVMStructTypeInContext(gallivm->context, elem_types,
287 Elements(elem_types), 0);
288 #if HAVE_LLVM < 0x0300
289 LLVMAddTypeName(gallivm->module, struct_name, vertex_header);
290
291 LLVMInvalidateStructLayout(gallivm->target, vertex_header);
292 #endif
293
294 /* these are bit-fields and we can't take address of them
295 LP_CHECK_MEMBER_OFFSET(struct vertex_header, clipmask,
296 target, vertex_header,
297 DRAW_JIT_VERTEX_CLIPMASK);
298 LP_CHECK_MEMBER_OFFSET(struct vertex_header, edgeflag,
299 target, vertex_header,
300 DRAW_JIT_VERTEX_EDGEFLAG);
301 LP_CHECK_MEMBER_OFFSET(struct vertex_header, pad,
302 target, vertex_header,
303 DRAW_JIT_VERTEX_PAD);
304 LP_CHECK_MEMBER_OFFSET(struct vertex_header, vertex_id,
305 target, vertex_header,
306 DRAW_JIT_VERTEX_VERTEX_ID);
307 */
308 LP_CHECK_MEMBER_OFFSET(struct vertex_header, clip,
309 target, vertex_header,
310 DRAW_JIT_VERTEX_CLIP);
311 LP_CHECK_MEMBER_OFFSET(struct vertex_header, pre_clip_pos,
312 target, vertex_header,
313 DRAW_JIT_VERTEX_PRE_CLIP_POS);
314 LP_CHECK_MEMBER_OFFSET(struct vertex_header, data,
315 target, vertex_header,
316 DRAW_JIT_VERTEX_DATA);
317
318 assert(LLVMABISizeOfType(target, vertex_header) ==
319 offsetof(struct vertex_header, data[data_elems]));
320
321 return vertex_header;
322 }
323
324
325 /**
326 * Create LLVM types for various structures.
327 */
328 static void
329 create_jit_types(struct draw_llvm_variant *variant)
330 {
331 struct gallivm_state *gallivm = variant->gallivm;
332 LLVMTypeRef texture_type, sampler_type, context_type, buffer_type, vb_type;
333
334 texture_type = create_jit_texture_type(gallivm, "texture");
335 sampler_type = create_jit_sampler_type(gallivm, "sampler");
336
337 context_type = create_jit_context_type(gallivm, texture_type, sampler_type,
338 "draw_jit_context");
339 variant->context_ptr_type = LLVMPointerType(context_type, 0);
340
341 buffer_type = LLVMPointerType(LLVMIntTypeInContext(gallivm->context, 8), 0);
342 variant->buffer_ptr_type = LLVMPointerType(buffer_type, 0);
343
344 vb_type = create_jit_vertex_buffer_type(gallivm, "pipe_vertex_buffer");
345 variant->vb_ptr_type = LLVMPointerType(vb_type, 0);
346 }
347
348
349 static LLVMTypeRef
350 get_context_ptr_type(struct draw_llvm_variant *variant)
351 {
352 if (!variant->context_ptr_type)
353 create_jit_types(variant);
354 return variant->context_ptr_type;
355 }
356
357
358 static LLVMTypeRef
359 get_buffer_ptr_type(struct draw_llvm_variant *variant)
360 {
361 if (!variant->buffer_ptr_type)
362 create_jit_types(variant);
363 return variant->buffer_ptr_type;
364 }
365
366
367 static LLVMTypeRef
368 get_vb_ptr_type(struct draw_llvm_variant *variant)
369 {
370 if (!variant->vb_ptr_type)
371 create_jit_types(variant);
372 return variant->vb_ptr_type;
373 }
374
375 static LLVMTypeRef
376 get_vertex_header_ptr_type(struct draw_llvm_variant *variant)
377 {
378 if (!variant->vertex_header_ptr_type)
379 create_jit_types(variant);
380 return variant->vertex_header_ptr_type;
381 }
382
383
384 /**
385 * Create per-context LLVM info.
386 */
387 struct draw_llvm *
388 draw_llvm_create(struct draw_context *draw)
389 {
390 struct draw_llvm *llvm;
391
392 llvm = CALLOC_STRUCT( draw_llvm );
393 if (!llvm)
394 return NULL;
395
396 lp_build_init();
397
398 llvm->draw = draw;
399
400 llvm->nr_variants = 0;
401 make_empty_list(&llvm->vs_variants_list);
402
403 return llvm;
404 }
405
406
407 /**
408 * Free per-context LLVM info.
409 */
410 void
411 draw_llvm_destroy(struct draw_llvm *llvm)
412 {
413 /* XXX free other draw_llvm data? */
414 FREE(llvm);
415 }
416
417
418 /**
419 * Create LLVM-generated code for a vertex shader.
420 */
421 struct draw_llvm_variant *
422 draw_llvm_create_variant(struct draw_llvm *llvm,
423 unsigned num_inputs,
424 const struct draw_llvm_variant_key *key)
425 {
426 struct draw_llvm_variant *variant;
427 struct llvm_vertex_shader *shader =
428 llvm_vertex_shader(llvm->draw->vs.vertex_shader);
429 LLVMTypeRef vertex_header;
430
431 variant = MALLOC(sizeof *variant +
432 shader->variant_key_size -
433 sizeof variant->key);
434 if (variant == NULL)
435 return NULL;
436
437 variant->llvm = llvm;
438
439 variant->gallivm = gallivm_create();
440
441 create_jit_types(variant);
442
443 memcpy(&variant->key, key, shader->variant_key_size);
444
445 vertex_header = create_jit_vertex_header(variant->gallivm, num_inputs);
446
447 variant->vertex_header_ptr_type = LLVMPointerType(vertex_header, 0);
448
449 draw_llvm_generate(llvm, variant, FALSE); /* linear */
450 draw_llvm_generate(llvm, variant, TRUE); /* elts */
451
452 gallivm_compile_module(variant->gallivm);
453
454 variant->jit_func = (draw_jit_vert_func)
455 gallivm_jit_function(variant->gallivm, variant->function);
456
457 variant->jit_func_elts = (draw_jit_vert_func_elts)
458 gallivm_jit_function(variant->gallivm, variant->function_elts);
459
460 variant->shader = shader;
461 variant->list_item_global.base = variant;
462 variant->list_item_local.base = variant;
463 /*variant->no = */shader->variants_created++;
464 variant->list_item_global.base = variant;
465
466 return variant;
467 }
468
469
470 static void
471 generate_vs(struct draw_llvm_variant *variant,
472 LLVMBuilderRef builder,
473 struct lp_type vs_type,
474 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
475 const LLVMValueRef (*inputs)[TGSI_NUM_CHANNELS],
476 const struct lp_bld_tgsi_system_values *system_values,
477 LLVMValueRef context_ptr,
478 struct lp_build_sampler_soa *draw_sampler,
479 boolean clamp_vertex_color)
480 {
481 struct draw_llvm *llvm = variant->llvm;
482 const struct tgsi_token *tokens = llvm->draw->vs.vertex_shader->state.tokens;
483 LLVMValueRef consts_ptr = draw_jit_context_vs_constants(variant->gallivm, context_ptr);
484 struct lp_build_sampler_soa *sampler = 0;
485
486 if (gallivm_debug & (GALLIVM_DEBUG_TGSI | GALLIVM_DEBUG_IR)) {
487 tgsi_dump(tokens, 0);
488 draw_llvm_dump_variant_key(&variant->key);
489 }
490
491 if (llvm->draw->num_sampler_views && llvm->draw->num_samplers)
492 sampler = draw_sampler;
493
494 lp_build_tgsi_soa(variant->gallivm,
495 tokens,
496 vs_type,
497 NULL /*struct lp_build_mask_context *mask*/,
498 consts_ptr,
499 system_values,
500 NULL /*pos*/,
501 inputs,
502 outputs,
503 sampler,
504 &llvm->draw->vs.vertex_shader->info);
505
506 {
507 LLVMValueRef out;
508 unsigned chan, attrib;
509 struct lp_build_context bld;
510 struct tgsi_shader_info* info = &llvm->draw->vs.vertex_shader->info;
511 lp_build_context_init(&bld, variant->gallivm, vs_type);
512
513 for (attrib = 0; attrib < info->num_outputs; ++attrib) {
514 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
515 if (outputs[attrib][chan]) {
516 switch (info->output_semantic_name[attrib]) {
517 case TGSI_SEMANTIC_COLOR:
518 case TGSI_SEMANTIC_BCOLOR:
519 if (clamp_vertex_color) {
520 out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
521 out = lp_build_clamp(&bld, out, bld.zero, bld.one);
522 LLVMBuildStore(builder, out, outputs[attrib][chan]);
523 }
524 break;
525 case TGSI_SEMANTIC_FOG:
526 if (chan == 1 || chan == 2)
527 LLVMBuildStore(builder, bld.zero, outputs[attrib][chan]);
528 else if (chan == 3)
529 LLVMBuildStore(builder, bld.one, outputs[attrib][chan]);
530 break;
531 }
532 }
533 }
534 }
535 }
536 }
537
538
539 static void
540 generate_fetch(struct gallivm_state *gallivm,
541 LLVMValueRef vbuffers_ptr,
542 LLVMValueRef *res,
543 struct pipe_vertex_element *velem,
544 LLVMValueRef vbuf,
545 LLVMValueRef index,
546 LLVMValueRef instance_id)
547 {
548 const struct util_format_description *format_desc = util_format_description(velem->src_format);
549 LLVMValueRef zero = LLVMConstNull(LLVMInt32TypeInContext(gallivm->context));
550 LLVMBuilderRef builder = gallivm->builder;
551 LLVMValueRef indices =
552 LLVMConstInt(LLVMInt64TypeInContext(gallivm->context),
553 velem->vertex_buffer_index, 0);
554 LLVMValueRef vbuffer_ptr = LLVMBuildGEP(builder, vbuffers_ptr,
555 &indices, 1, "");
556 LLVMValueRef vb_stride = draw_jit_vbuffer_stride(gallivm, vbuf);
557 LLVMValueRef vb_buffer_offset = draw_jit_vbuffer_offset(gallivm, vbuf);
558 LLVMValueRef stride;
559
560 if (velem->instance_divisor) {
561 /* array index = instance_id / instance_divisor */
562 index = LLVMBuildUDiv(builder, instance_id,
563 lp_build_const_int32(gallivm, velem->instance_divisor),
564 "instance_divisor");
565 }
566
567 stride = LLVMBuildMul(builder, vb_stride, index, "");
568
569 vbuffer_ptr = LLVMBuildLoad(builder, vbuffer_ptr, "vbuffer");
570
571 stride = LLVMBuildAdd(builder, stride,
572 vb_buffer_offset,
573 "");
574 stride = LLVMBuildAdd(builder, stride,
575 lp_build_const_int32(gallivm, velem->src_offset),
576 "");
577
578 /* lp_build_printf(gallivm, "vbuf index = %d, stride is %d\n", indices, stride);*/
579 vbuffer_ptr = LLVMBuildGEP(builder, vbuffer_ptr, &stride, 1, "");
580
581 *res = lp_build_fetch_rgba_aos(gallivm,
582 format_desc,
583 lp_float32_vec4_type(),
584 vbuffer_ptr,
585 zero, zero, zero);
586 }
587
588 static void
589 convert_to_soa(struct gallivm_state *gallivm,
590 LLVMValueRef (*src_aos)[LP_MAX_VECTOR_WIDTH / 32],
591 LLVMValueRef (*dst_soa)[TGSI_NUM_CHANNELS],
592 unsigned num_attribs, const struct lp_type soa_type)
593 {
594 unsigned i, j, k;
595 struct lp_type aos_channel_type = soa_type;
596
597 debug_assert(TGSI_NUM_CHANNELS == 4);
598 debug_assert((soa_type.length % TGSI_NUM_CHANNELS) == 0);
599
600 aos_channel_type.length >>= 1;
601
602 for (i = 0; i < num_attribs; ++i) {
603 LLVMValueRef aos_channels[TGSI_NUM_CHANNELS];
604 unsigned pixels_per_channel = soa_type.length / TGSI_NUM_CHANNELS;
605
606 for (j = 0; j < TGSI_NUM_CHANNELS; ++j) {
607 LLVMValueRef channel[LP_MAX_VECTOR_LENGTH] = { 0 };
608
609 assert(pixels_per_channel <= LP_MAX_VECTOR_LENGTH);
610
611 for (k = 0; k < pixels_per_channel; ++k) {
612 channel[k] = src_aos[i][j + TGSI_NUM_CHANNELS * k];
613 }
614
615 aos_channels[j] = lp_build_concat(gallivm, channel, aos_channel_type, pixels_per_channel);
616 }
617
618 lp_build_transpose_aos(gallivm, soa_type, aos_channels, dst_soa[i]);
619 }
620 }
621
622
623 static void
624 store_aos(struct gallivm_state *gallivm,
625 LLVMValueRef io_ptr,
626 LLVMValueRef index,
627 LLVMValueRef value)
628 {
629 LLVMTypeRef data_ptr_type = LLVMPointerType(lp_build_vec_type(gallivm, lp_float32_vec4_type()), 0);
630 LLVMBuilderRef builder = gallivm->builder;
631 LLVMValueRef data_ptr = draw_jit_header_data(gallivm, io_ptr);
632 LLVMValueRef indices[3];
633
634 indices[0] = lp_build_const_int32(gallivm, 0);
635 indices[1] = index;
636 indices[2] = lp_build_const_int32(gallivm, 0);
637
638 #if DEBUG_STORE
639 lp_build_printf(gallivm, " ---- %p storing attribute %d (io = %p)\n", data_ptr, index, io_ptr);
640 #endif
641
642 data_ptr = LLVMBuildGEP(builder, data_ptr, indices, 3, "");
643 data_ptr = LLVMBuildPointerCast(builder, data_ptr, data_ptr_type, "");
644
645 /* Unaligned store due to the vertex header */
646 lp_set_store_alignment(LLVMBuildStore(builder, value, data_ptr), sizeof(float));
647 }
648
649
650 static void
651 store_aos_array(struct gallivm_state *gallivm,
652 struct lp_type soa_type,
653 LLVMValueRef io_ptr,
654 LLVMValueRef* aos,
655 int attrib,
656 int num_outputs,
657 LLVMValueRef clipmask,
658 boolean have_clipdist)
659 {
660 LLVMBuilderRef builder = gallivm->builder;
661 LLVMValueRef attr_index = lp_build_const_int32(gallivm, attrib);
662 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32];
663 LLVMValueRef io_ptrs[LP_MAX_VECTOR_WIDTH / 32];
664 int vector_length = soa_type.length;
665 int i;
666
667 debug_assert(TGSI_NUM_CHANNELS == 4);
668
669 for (i = 0; i < vector_length; i++) {
670 inds[i] = lp_build_const_int32(gallivm, i);
671 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
672 }
673
674 if (attrib == 0) {
675 /* store vertex header for each of the n vertices */
676 LLVMValueRef val, cliptmp;
677 int vertex_id_pad_edgeflag;
678
679 /* If this assertion fails, it means we need to update the bit twidding
680 * code here. See struct vertex_header in draw_private.h.
681 */
682 assert(DRAW_TOTAL_CLIP_PLANES==14);
683 /* initialize vertex id:16 = 0xffff, have_clipdist:1 = 0, edgeflag:1 = 1 */
684 vertex_id_pad_edgeflag = (0xffff << 16) | (1 << DRAW_TOTAL_CLIP_PLANES);
685 if (have_clipdist)
686 vertex_id_pad_edgeflag |= 1 << (DRAW_TOTAL_CLIP_PLANES+1);
687 val = lp_build_const_int_vec(gallivm, lp_int_type(soa_type), vertex_id_pad_edgeflag);
688 /* OR with the clipmask */
689 cliptmp = LLVMBuildOr(builder, val, clipmask, "");
690 for (i = 0; i < vector_length; i++) {
691 LLVMValueRef id_ptr = draw_jit_header_id(gallivm, io_ptrs[i]);
692 val = LLVMBuildExtractElement(builder, cliptmp, inds[i], "");
693 LLVMBuildStore(builder, val, id_ptr);
694 #if DEBUG_STORE
695 lp_build_printf(gallivm, "io = %p, index %d\n, clipmask = %x\n",
696 io_ptrs[i], inds[i], val);
697 #endif
698 }
699 }
700
701 /* store for each of the n vertices */
702 for (i = 0; i < vector_length; i++) {
703 store_aos(gallivm, io_ptrs[i], attr_index, aos[i]);
704 }
705 }
706
707
708 static void
709 convert_to_aos(struct gallivm_state *gallivm,
710 LLVMValueRef io,
711 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
712 LLVMValueRef clipmask,
713 int num_outputs,
714 struct lp_type soa_type,
715 boolean have_clipdist)
716 {
717 LLVMBuilderRef builder = gallivm->builder;
718 unsigned chan, attrib, i;
719
720 #if DEBUG_STORE
721 lp_build_printf(gallivm, " # storing begin\n");
722 #endif
723 for (attrib = 0; attrib < num_outputs; ++attrib) {
724 LLVMValueRef soa[TGSI_NUM_CHANNELS];
725 LLVMValueRef aos[LP_MAX_VECTOR_WIDTH / 32];
726 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan) {
727 if (outputs[attrib][chan]) {
728 LLVMValueRef out = LLVMBuildLoad(builder, outputs[attrib][chan], "");
729 lp_build_name(out, "output%u.%c", attrib, "xyzw"[chan]);
730 #if DEBUG_STORE
731 lp_build_printf(gallivm, "output %d : %d ",
732 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context),
733 attrib, 0),
734 LLVMConstInt(LLVMInt32TypeInContext(gallivm->context),
735 chan, 0));
736 lp_build_print_value(gallivm, "val = ", out);
737 #endif
738 soa[chan] = out;
739 }
740 else {
741 soa[chan] = 0;
742 }
743 }
744
745
746 if (soa_type.length == TGSI_NUM_CHANNELS) {
747 lp_build_transpose_aos(gallivm, soa_type, soa, aos);
748 } else {
749 lp_build_transpose_aos(gallivm, soa_type, soa, soa);
750
751 for (i = 0; i < soa_type.length; ++i) {
752 aos[i] = lp_build_extract_range(gallivm,
753 soa[i % TGSI_NUM_CHANNELS],
754 (i / TGSI_NUM_CHANNELS) * TGSI_NUM_CHANNELS,
755 TGSI_NUM_CHANNELS);
756 }
757 }
758
759 store_aos_array(gallivm,
760 soa_type,
761 io,
762 aos,
763 attrib,
764 num_outputs,
765 clipmask, have_clipdist);
766 }
767 #if DEBUG_STORE
768 lp_build_printf(gallivm, " # storing end\n");
769 #endif
770 }
771
772
773 /**
774 * Stores original vertex positions in clip coordinates
775 */
776 static void
777 store_clip(struct gallivm_state *gallivm,
778 const struct lp_type vs_type,
779 LLVMValueRef io_ptr,
780 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
781 boolean pre_clip_pos, int idx)
782 {
783 LLVMBuilderRef builder = gallivm->builder;
784 LLVMValueRef soa[4];
785 LLVMValueRef aos[LP_MAX_VECTOR_LENGTH];
786 LLVMValueRef indices[2];
787 LLVMValueRef io_ptrs[LP_MAX_VECTOR_WIDTH / 32];
788 LLVMValueRef inds[LP_MAX_VECTOR_WIDTH / 32];
789 LLVMValueRef clip_ptrs[LP_MAX_VECTOR_WIDTH / 32];
790 int i, j;
791
792 indices[0] =
793 indices[1] = lp_build_const_int32(gallivm, 0);
794
795 for (i = 0; i < vs_type.length; i++) {
796 inds[i] = lp_build_const_int32(gallivm, i);
797 io_ptrs[i] = LLVMBuildGEP(builder, io_ptr, &inds[i], 1, "");
798 }
799
800 soa[0] = LLVMBuildLoad(builder, outputs[idx][0], ""); /*x0 x1 .. xn*/
801 soa[1] = LLVMBuildLoad(builder, outputs[idx][1], ""); /*y0 y1 .. yn*/
802 soa[2] = LLVMBuildLoad(builder, outputs[idx][2], ""); /*z0 z1 .. zn*/
803 soa[3] = LLVMBuildLoad(builder, outputs[idx][3], ""); /*w0 w1 .. wn*/
804
805 if (!pre_clip_pos) {
806 for (i = 0; i < vs_type.length; i++) {
807 clip_ptrs[i] = draw_jit_header_clip(gallivm, io_ptrs[i]);
808 }
809 } else {
810 for (i = 0; i < vs_type.length; i++) {
811 clip_ptrs[i] = draw_jit_header_pre_clip_pos(gallivm, io_ptrs[i]);
812 }
813 }
814
815 lp_build_transpose_aos(gallivm, vs_type, soa, soa);
816 for (i = 0; i < vs_type.length; ++i) {
817 aos[i] = lp_build_extract_range(gallivm,
818 soa[i % TGSI_NUM_CHANNELS],
819 (i / TGSI_NUM_CHANNELS) * TGSI_NUM_CHANNELS,
820 TGSI_NUM_CHANNELS);
821 }
822
823 for (j = 0; j < vs_type.length; j++) {
824 LLVMTypeRef clip_ptr_type = LLVMPointerType(LLVMVectorType(LLVMFloatTypeInContext(gallivm->context), 4), 0);
825 LLVMValueRef clip_ptr;
826
827 clip_ptr = LLVMBuildGEP(builder, clip_ptrs[j], indices, 2, "clipo");
828 clip_ptr = LLVMBuildPointerCast(builder, clip_ptr, clip_ptr_type, "");
829
830 /* Unaligned store */
831 lp_set_store_alignment(LLVMBuildStore(builder, aos[j], clip_ptr), sizeof(float));
832 }
833 }
834
835
836 /**
837 * Transforms the outputs for viewport mapping
838 */
839 static void
840 generate_viewport(struct draw_llvm_variant *variant,
841 LLVMBuilderRef builder,
842 struct lp_type vs_type,
843 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
844 LLVMValueRef context_ptr)
845 {
846 int i;
847 struct gallivm_state *gallivm = variant->gallivm;
848 struct lp_type f32_type = vs_type;
849 LLVMTypeRef vs_type_llvm = lp_build_vec_type(gallivm, vs_type);
850 LLVMValueRef out3 = LLVMBuildLoad(builder, outputs[0][3], ""); /*w0 w1 .. wn*/
851 LLVMValueRef const1 = lp_build_const_vec(gallivm, f32_type, 1.0); /*1.0 1.0 1.0 1.0*/
852 LLVMValueRef vp_ptr = draw_jit_context_viewport(gallivm, context_ptr);
853
854 /* for 1/w convention*/
855 out3 = LLVMBuildFDiv(builder, const1, out3, "");
856 LLVMBuildStore(builder, out3, outputs[0][3]);
857
858 /* Viewport Mapping */
859 for (i=0; i<3; i++) {
860 LLVMValueRef out = LLVMBuildLoad(builder, outputs[0][i], ""); /*x0 x1 .. xn*/
861 LLVMValueRef scale;
862 LLVMValueRef trans;
863 LLVMValueRef scale_i;
864 LLVMValueRef trans_i;
865 LLVMValueRef index;
866
867 index = lp_build_const_int32(gallivm, i);
868 scale_i = LLVMBuildGEP(builder, vp_ptr, &index, 1, "");
869
870 index = lp_build_const_int32(gallivm, i+4);
871 trans_i = LLVMBuildGEP(builder, vp_ptr, &index, 1, "");
872
873 scale = lp_build_broadcast(gallivm, vs_type_llvm,
874 LLVMBuildLoad(builder, scale_i, "scale"));
875 trans = lp_build_broadcast(gallivm, vs_type_llvm,
876 LLVMBuildLoad(builder, trans_i, "trans"));
877
878 /* divide by w */
879 out = LLVMBuildFMul(builder, out, out3, "");
880 /* mult by scale */
881 out = LLVMBuildFMul(builder, out, scale, "");
882 /* add translation */
883 out = LLVMBuildFAdd(builder, out, trans, "");
884
885 /* store transformed outputs */
886 LLVMBuildStore(builder, out, outputs[0][i]);
887 }
888
889 }
890
891
892 /**
893 * Returns clipmask as nxi32 bitmask for the n vertices
894 */
895 static LLVMValueRef
896 generate_clipmask(struct draw_llvm *llvm,
897 struct gallivm_state *gallivm,
898 struct lp_type vs_type,
899 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS],
900 boolean clip_xy,
901 boolean clip_z,
902 boolean clip_user,
903 boolean clip_halfz,
904 unsigned ucp_enable,
905 LLVMValueRef context_ptr,
906 boolean *have_clipdist)
907 {
908 LLVMBuilderRef builder = gallivm->builder;
909 LLVMValueRef mask; /* stores the <nxi32> clipmasks */
910 LLVMValueRef test, temp;
911 LLVMValueRef zero, shift;
912 LLVMValueRef pos_x, pos_y, pos_z, pos_w;
913 LLVMValueRef cv_x, cv_y, cv_z, cv_w;
914 LLVMValueRef plane1, planes, plane_ptr, sum;
915 struct lp_type f32_type = vs_type;
916 struct lp_type i32_type = lp_int_type(vs_type);
917 const unsigned pos = draw_current_shader_position_output(llvm->draw);
918 const unsigned cv = draw_current_shader_clipvertex_output(llvm->draw);
919 int num_written_clipdistance = llvm->draw->vs.vertex_shader->info.num_written_clipdistance;
920 bool have_cd = false;
921 unsigned cd[2];
922
923 cd[0] = draw_current_shader_clipdistance_output(llvm->draw, 0);
924 cd[1] = draw_current_shader_clipdistance_output(llvm->draw, 1);
925
926 if (cd[0] != pos || cd[1] != pos)
927 have_cd = true;
928
929 mask = lp_build_const_int_vec(gallivm, i32_type, 0);
930 temp = lp_build_const_int_vec(gallivm, i32_type, 0);
931 zero = lp_build_const_vec(gallivm, f32_type, 0); /* 0.0f 0.0f 0.0f 0.0f */
932 shift = lp_build_const_int_vec(gallivm, i32_type, 1); /* 1 1 1 1 */
933
934 /*
935 * load clipvertex and position from correct locations.
936 * if they are the same just load them once.
937 */
938 pos_x = LLVMBuildLoad(builder, outputs[pos][0], ""); /*x0 x1 .. xn */
939 pos_y = LLVMBuildLoad(builder, outputs[pos][1], ""); /*y0 y1 .. yn */
940 pos_z = LLVMBuildLoad(builder, outputs[pos][2], ""); /*z0 z1 .. zn */
941 pos_w = LLVMBuildLoad(builder, outputs[pos][3], ""); /*w0 w1 .. wn */
942
943 if (clip_user && cv != pos) {
944 cv_x = LLVMBuildLoad(builder, outputs[cv][0], ""); /*x0 x1 .. xn */
945 cv_y = LLVMBuildLoad(builder, outputs[cv][1], ""); /*y0 y1 .. yn */
946 cv_z = LLVMBuildLoad(builder, outputs[cv][2], ""); /*z0 z1 .. zn */
947 cv_w = LLVMBuildLoad(builder, outputs[cv][3], ""); /*w0 w1 .. wn */
948 } else {
949 cv_x = pos_x;
950 cv_y = pos_y;
951 cv_z = pos_z;
952 cv_w = pos_w;
953 }
954
955 /* Cliptest, for hardwired planes */
956 if (clip_xy) {
957 /* plane 1 */
958 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, pos_x , pos_w);
959 temp = shift;
960 test = LLVMBuildAnd(builder, test, temp, "");
961 mask = test;
962
963 /* plane 2 */
964 test = LLVMBuildFAdd(builder, pos_x, pos_w, "");
965 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, test);
966 temp = LLVMBuildShl(builder, temp, shift, "");
967 test = LLVMBuildAnd(builder, test, temp, "");
968 mask = LLVMBuildOr(builder, mask, test, "");
969
970 /* plane 3 */
971 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, pos_y, pos_w);
972 temp = LLVMBuildShl(builder, temp, shift, "");
973 test = LLVMBuildAnd(builder, test, temp, "");
974 mask = LLVMBuildOr(builder, mask, test, "");
975
976 /* plane 4 */
977 test = LLVMBuildFAdd(builder, pos_y, pos_w, "");
978 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, test);
979 temp = LLVMBuildShl(builder, temp, shift, "");
980 test = LLVMBuildAnd(builder, test, temp, "");
981 mask = LLVMBuildOr(builder, mask, test, "");
982 }
983
984 if (clip_z) {
985 temp = lp_build_const_int_vec(gallivm, i32_type, 16);
986 if (clip_halfz) {
987 /* plane 5 */
988 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, pos_z);
989 test = LLVMBuildAnd(builder, test, temp, "");
990 mask = LLVMBuildOr(builder, mask, test, "");
991 }
992 else {
993 /* plane 5 */
994 test = LLVMBuildFAdd(builder, pos_z, pos_w, "");
995 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, test);
996 test = LLVMBuildAnd(builder, test, temp, "");
997 mask = LLVMBuildOr(builder, mask, test, "");
998 }
999 /* plane 6 */
1000 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, pos_z, pos_w);
1001 temp = LLVMBuildShl(builder, temp, shift, "");
1002 test = LLVMBuildAnd(builder, test, temp, "");
1003 mask = LLVMBuildOr(builder, mask, test, "");
1004 }
1005
1006 if (clip_user) {
1007 LLVMValueRef planes_ptr = draw_jit_context_planes(gallivm, context_ptr);
1008 LLVMValueRef indices[3];
1009
1010 /* userclip planes */
1011 while (ucp_enable) {
1012 unsigned plane_idx = ffs(ucp_enable)-1;
1013 ucp_enable &= ~(1 << plane_idx);
1014 plane_idx += 6;
1015
1016 if (have_cd && num_written_clipdistance) {
1017 LLVMValueRef clipdist;
1018 int i;
1019 i = plane_idx - 6;
1020
1021 *have_clipdist = TRUE;
1022 if (i < 4) {
1023 clipdist = LLVMBuildLoad(builder, outputs[cd[0]][i], "");
1024 } else {
1025 clipdist = LLVMBuildLoad(builder, outputs[cd[1]][i-4], "");
1026 }
1027 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, clipdist);
1028 temp = lp_build_const_int_vec(gallivm, i32_type, 1 << plane_idx);
1029 test = LLVMBuildAnd(builder, test, temp, "");
1030 mask = LLVMBuildOr(builder, mask, test, "");
1031 } else {
1032 LLVMTypeRef vs_type_llvm = lp_build_vec_type(gallivm, vs_type);
1033 indices[0] = lp_build_const_int32(gallivm, 0);
1034 indices[1] = lp_build_const_int32(gallivm, plane_idx);
1035
1036 indices[2] = lp_build_const_int32(gallivm, 0);
1037 plane_ptr = LLVMBuildGEP(builder, planes_ptr, indices, 3, "");
1038 plane1 = LLVMBuildLoad(builder, plane_ptr, "plane_x");
1039 planes = lp_build_broadcast(gallivm, vs_type_llvm, plane1);
1040 sum = LLVMBuildFMul(builder, planes, cv_x, "");
1041
1042 indices[2] = lp_build_const_int32(gallivm, 1);
1043 plane_ptr = LLVMBuildGEP(builder, planes_ptr, indices, 3, "");
1044 plane1 = LLVMBuildLoad(builder, plane_ptr, "plane_y");
1045 planes = lp_build_broadcast(gallivm, vs_type_llvm, plane1);
1046 test = LLVMBuildFMul(builder, planes, cv_y, "");
1047 sum = LLVMBuildFAdd(builder, sum, test, "");
1048
1049 indices[2] = lp_build_const_int32(gallivm, 2);
1050 plane_ptr = LLVMBuildGEP(builder, planes_ptr, indices, 3, "");
1051 plane1 = LLVMBuildLoad(builder, plane_ptr, "plane_z");
1052 planes = lp_build_broadcast(gallivm, vs_type_llvm, plane1);
1053 test = LLVMBuildFMul(builder, planes, cv_z, "");
1054 sum = LLVMBuildFAdd(builder, sum, test, "");
1055
1056 indices[2] = lp_build_const_int32(gallivm, 3);
1057 plane_ptr = LLVMBuildGEP(builder, planes_ptr, indices, 3, "");
1058 plane1 = LLVMBuildLoad(builder, plane_ptr, "plane_w");
1059 planes = lp_build_broadcast(gallivm, vs_type_llvm, plane1);
1060 test = LLVMBuildFMul(builder, planes, cv_w, "");
1061 sum = LLVMBuildFAdd(builder, sum, test, "");
1062
1063 test = lp_build_compare(gallivm, f32_type, PIPE_FUNC_GREATER, zero, sum);
1064 temp = lp_build_const_int_vec(gallivm, i32_type, 1 << plane_idx);
1065 test = LLVMBuildAnd(builder, test, temp, "");
1066 mask = LLVMBuildOr(builder, mask, test, "");
1067 }
1068 }
1069 }
1070 return mask;
1071 }
1072
1073
1074 /**
1075 * Returns boolean if any clipping has occurred
1076 * Used zero/non-zero i32 value to represent boolean
1077 */
1078 static LLVMValueRef
1079 clipmask_booli32(struct gallivm_state *gallivm,
1080 const struct lp_type vs_type,
1081 LLVMValueRef clipmask_bool_ptr)
1082 {
1083 LLVMBuilderRef builder = gallivm->builder;
1084 LLVMTypeRef int32_type = LLVMInt32TypeInContext(gallivm->context);
1085 LLVMValueRef clipmask_bool = LLVMBuildLoad(builder, clipmask_bool_ptr, "");
1086 LLVMValueRef ret = LLVMConstNull(int32_type);
1087 LLVMValueRef temp;
1088 int i;
1089
1090 /*
1091 * Can do this with log2(vector length) pack instructions and one extract
1092 * (as we don't actually need a or) with sse2 which would be way better.
1093 */
1094 for (i=0; i < vs_type.length; i++) {
1095 temp = LLVMBuildExtractElement(builder, clipmask_bool,
1096 lp_build_const_int32(gallivm, i) , "");
1097 ret = LLVMBuildOr(builder, ret, temp, "");
1098 }
1099 return ret;
1100 }
1101
1102
1103 static void
1104 draw_llvm_generate(struct draw_llvm *llvm, struct draw_llvm_variant *variant,
1105 boolean elts)
1106 {
1107 struct gallivm_state *gallivm = variant->gallivm;
1108 LLVMContextRef context = gallivm->context;
1109 LLVMTypeRef int32_type = LLVMInt32TypeInContext(context);
1110 LLVMTypeRef arg_types[8];
1111 LLVMTypeRef func_type;
1112 LLVMValueRef context_ptr;
1113 LLVMBasicBlockRef block;
1114 LLVMBuilderRef builder;
1115 struct lp_type vs_type;
1116 LLVMValueRef end, start;
1117 LLVMValueRef count, fetch_elts, fetch_count;
1118 LLVMValueRef stride, step, io_itr;
1119 LLVMValueRef io_ptr, vbuffers_ptr, vb_ptr;
1120 LLVMValueRef zero = lp_build_const_int32(gallivm, 0);
1121 LLVMValueRef one = lp_build_const_int32(gallivm, 1);
1122 struct draw_context *draw = llvm->draw;
1123 const struct tgsi_shader_info *vs_info = &draw->vs.vertex_shader->info;
1124 unsigned i, j;
1125 struct lp_build_context bld;
1126 struct lp_build_loop_state lp_loop;
1127 const int vector_length = lp_native_vector_width / 32;
1128 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][TGSI_NUM_CHANNELS];
1129 LLVMValueRef fetch_max;
1130 struct lp_build_sampler_soa *sampler = 0;
1131 LLVMValueRef ret, clipmask_bool_ptr;
1132 const boolean bypass_viewport = variant->key.bypass_viewport;
1133 const boolean enable_cliptest = variant->key.clip_xy ||
1134 variant->key.clip_z ||
1135 variant->key.clip_user;
1136 LLVMValueRef variant_func;
1137 const unsigned pos = draw_current_shader_position_output(llvm->draw);
1138 const unsigned cv = draw_current_shader_clipvertex_output(llvm->draw);
1139 boolean have_clipdist = FALSE;
1140 struct lp_bld_tgsi_system_values system_values;
1141
1142 memset(&system_values, 0, sizeof(system_values));
1143
1144 arg_types[0] = get_context_ptr_type(variant); /* context */
1145 arg_types[1] = get_vertex_header_ptr_type(variant); /* vertex_header */
1146 arg_types[2] = get_buffer_ptr_type(variant); /* vbuffers */
1147 if (elts)
1148 arg_types[3] = LLVMPointerType(int32_type, 0);/* fetch_elts * */
1149 else
1150 arg_types[3] = int32_type; /* start */
1151 arg_types[4] = int32_type; /* fetch_count / count */
1152 arg_types[5] = int32_type; /* stride */
1153 arg_types[6] = get_vb_ptr_type(variant); /* pipe_vertex_buffer's */
1154 arg_types[7] = int32_type; /* instance_id */
1155
1156 func_type = LLVMFunctionType(int32_type, arg_types, Elements(arg_types), 0);
1157
1158 variant_func = LLVMAddFunction(gallivm->module,
1159 elts ? "draw_llvm_shader_elts" : "draw_llvm_shader",
1160 func_type);
1161
1162 if (elts)
1163 variant->function_elts = variant_func;
1164 else
1165 variant->function = variant_func;
1166
1167 LLVMSetFunctionCallConv(variant_func, LLVMCCallConv);
1168 for (i = 0; i < Elements(arg_types); ++i)
1169 if (LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind)
1170 LLVMAddAttribute(LLVMGetParam(variant_func, i),
1171 LLVMNoAliasAttribute);
1172
1173 context_ptr = LLVMGetParam(variant_func, 0);
1174 io_ptr = LLVMGetParam(variant_func, 1);
1175 vbuffers_ptr = LLVMGetParam(variant_func, 2);
1176 stride = LLVMGetParam(variant_func, 5);
1177 vb_ptr = LLVMGetParam(variant_func, 6);
1178 system_values.instance_id = LLVMGetParam(variant_func, 7);
1179
1180 lp_build_name(context_ptr, "context");
1181 lp_build_name(io_ptr, "io");
1182 lp_build_name(vbuffers_ptr, "vbuffers");
1183 lp_build_name(stride, "stride");
1184 lp_build_name(vb_ptr, "vb");
1185 lp_build_name(system_values.instance_id, "instance_id");
1186
1187 if (elts) {
1188 fetch_elts = LLVMGetParam(variant_func, 3);
1189 fetch_count = LLVMGetParam(variant_func, 4);
1190 lp_build_name(fetch_elts, "fetch_elts");
1191 lp_build_name(fetch_count, "fetch_count");
1192 start = count = NULL;
1193 }
1194 else {
1195 start = LLVMGetParam(variant_func, 3);
1196 count = LLVMGetParam(variant_func, 4);
1197 lp_build_name(start, "start");
1198 lp_build_name(count, "count");
1199 fetch_elts = fetch_count = NULL;
1200 }
1201
1202 /*
1203 * Function body
1204 */
1205
1206 block = LLVMAppendBasicBlockInContext(gallivm->context, variant_func, "entry");
1207 builder = gallivm->builder;
1208 LLVMPositionBuilderAtEnd(builder, block);
1209
1210 lp_build_context_init(&bld, gallivm, lp_type_int(32));
1211
1212 memset(&vs_type, 0, sizeof vs_type);
1213 vs_type.floating = TRUE; /* floating point values */
1214 vs_type.sign = TRUE; /* values are signed */
1215 vs_type.norm = FALSE; /* values are not limited to [0,1] or [-1,1] */
1216 vs_type.width = 32; /* 32-bit float */
1217 vs_type.length = vector_length;
1218
1219 /* hold temporary "bool" clipmask */
1220 clipmask_bool_ptr = lp_build_alloca(gallivm, lp_build_int_vec_type(gallivm, vs_type), "");
1221 LLVMBuildStore(builder, lp_build_zero(gallivm, lp_int_type(vs_type)), clipmask_bool_ptr);
1222
1223 /* code generated texture sampling */
1224 sampler = draw_llvm_sampler_soa_create(
1225 draw_llvm_variant_key_samplers(&variant->key),
1226 context_ptr);
1227
1228 if (elts) {
1229 start = zero;
1230 end = fetch_count;
1231 }
1232 else {
1233 end = lp_build_add(&bld, start, count);
1234 }
1235
1236 step = lp_build_const_int32(gallivm, vector_length);
1237
1238 fetch_max = LLVMBuildSub(builder, end, one, "fetch_max");
1239
1240 lp_build_loop_begin(&lp_loop, gallivm, start);
1241 {
1242 LLVMValueRef inputs[PIPE_MAX_SHADER_INPUTS][TGSI_NUM_CHANNELS];
1243 LLVMValueRef aos_attribs[PIPE_MAX_SHADER_INPUTS][LP_MAX_VECTOR_WIDTH / 32] = { { 0 } };
1244 LLVMValueRef io;
1245 LLVMValueRef clipmask; /* holds the clipmask value */
1246 const LLVMValueRef (*ptr_aos)[TGSI_NUM_CHANNELS];
1247
1248 if (elts)
1249 io_itr = lp_loop.counter;
1250 else
1251 io_itr = LLVMBuildSub(builder, lp_loop.counter, start, "");
1252
1253 io = LLVMBuildGEP(builder, io_ptr, &io_itr, 1, "");
1254 #if DEBUG_STORE
1255 lp_build_printf(gallivm, " --- io %d = %p, loop counter %d\n",
1256 io_itr, io, lp_loop.counter);
1257 #endif
1258 system_values.vertex_id = lp_build_zero(gallivm, lp_type_uint_vec(32, 32*vector_length));
1259 for (i = 0; i < vector_length; ++i) {
1260 LLVMValueRef true_index =
1261 LLVMBuildAdd(builder,
1262 lp_loop.counter,
1263 lp_build_const_int32(gallivm, i), "");
1264
1265 /* make sure we're not out of bounds which can happen
1266 * if fetch_count % 4 != 0, because on the last iteration
1267 * a few of the 4 vertex fetches will be out of bounds */
1268 true_index = lp_build_min(&bld, true_index, fetch_max);
1269
1270 if (elts) {
1271 LLVMValueRef fetch_ptr;
1272 fetch_ptr = LLVMBuildGEP(builder, fetch_elts,
1273 &true_index, 1, "");
1274 true_index = LLVMBuildLoad(builder, fetch_ptr, "fetch_elt");
1275 }
1276
1277 system_values.vertex_id = LLVMBuildInsertElement(gallivm->builder,
1278 system_values.vertex_id, true_index,
1279 lp_build_const_int32(gallivm, i), "");
1280 for (j = 0; j < draw->pt.nr_vertex_elements; ++j) {
1281 struct pipe_vertex_element *velem = &draw->pt.vertex_element[j];
1282 LLVMValueRef vb_index =
1283 lp_build_const_int32(gallivm, velem->vertex_buffer_index);
1284 LLVMValueRef vb = LLVMBuildGEP(builder, vb_ptr, &vb_index, 1, "");
1285 generate_fetch(gallivm, vbuffers_ptr,
1286 &aos_attribs[j][i], velem, vb, true_index,
1287 system_values.instance_id);
1288 }
1289 }
1290 convert_to_soa(gallivm, aos_attribs, inputs,
1291 draw->pt.nr_vertex_elements, vs_type);
1292
1293 ptr_aos = (const LLVMValueRef (*)[TGSI_NUM_CHANNELS]) inputs;
1294 generate_vs(variant,
1295 builder,
1296 vs_type,
1297 outputs,
1298 ptr_aos,
1299 &system_values,
1300 context_ptr,
1301 sampler,
1302 variant->key.clamp_vertex_color);
1303
1304 /* store original positions in clip before further manipulation */
1305 store_clip(gallivm, vs_type, io, outputs, 0, cv);
1306 store_clip(gallivm, vs_type, io, outputs, 1, pos);
1307
1308 /* do cliptest */
1309 if (enable_cliptest) {
1310 LLVMValueRef temp = LLVMBuildLoad(builder, clipmask_bool_ptr, "");
1311 /* allocate clipmask, assign it integer type */
1312 clipmask = generate_clipmask(llvm,
1313 gallivm,
1314 vs_type,
1315 outputs,
1316 variant->key.clip_xy,
1317 variant->key.clip_z,
1318 variant->key.clip_user,
1319 variant->key.clip_halfz,
1320 variant->key.ucp_enable,
1321 context_ptr, &have_clipdist);
1322 temp = LLVMBuildOr(builder, clipmask, temp, "");
1323 /* store temporary clipping boolean value */
1324 LLVMBuildStore(builder, temp, clipmask_bool_ptr);
1325 }
1326 else {
1327 clipmask = lp_build_const_int_vec(gallivm, lp_int_type(vs_type), 0);
1328 }
1329
1330 /* do viewport mapping */
1331 if (!bypass_viewport) {
1332 generate_viewport(variant, builder, vs_type, outputs, context_ptr);
1333 }
1334
1335 /* store clipmask in vertex header,
1336 * original positions in clip
1337 * and transformed positions in data
1338 */
1339 convert_to_aos(gallivm, io, outputs, clipmask,
1340 vs_info->num_outputs, vs_type,
1341 have_clipdist);
1342 }
1343
1344 lp_build_loop_end_cond(&lp_loop, end, step, LLVMIntUGE);
1345
1346 sampler->destroy(sampler);
1347
1348 /* return clipping boolean value for function */
1349 ret = clipmask_booli32(gallivm, vs_type, clipmask_bool_ptr);
1350
1351 LLVMBuildRet(builder, ret);
1352
1353 gallivm_verify_function(gallivm, variant_func);
1354 }
1355
1356
1357 struct draw_llvm_variant_key *
1358 draw_llvm_make_variant_key(struct draw_llvm *llvm, char *store)
1359 {
1360 unsigned i;
1361 struct draw_llvm_variant_key *key;
1362 struct draw_sampler_static_state *draw_sampler;
1363
1364 key = (struct draw_llvm_variant_key *)store;
1365
1366 key->clamp_vertex_color = llvm->draw->rasterizer->clamp_vertex_color; /**/
1367
1368 /* Presumably all variants of the shader should have the same
1369 * number of vertex elements - ie the number of shader inputs.
1370 */
1371 key->nr_vertex_elements = llvm->draw->pt.nr_vertex_elements;
1372
1373 /* will have to rig this up properly later */
1374 key->clip_xy = llvm->draw->clip_xy;
1375 key->clip_z = llvm->draw->clip_z;
1376 key->clip_user = llvm->draw->clip_user;
1377 key->bypass_viewport = llvm->draw->identity_viewport;
1378 key->clip_halfz = !llvm->draw->rasterizer->gl_rasterization_rules;
1379 key->need_edgeflags = (llvm->draw->vs.edgeflag_output ? TRUE : FALSE);
1380 key->ucp_enable = llvm->draw->rasterizer->clip_plane_enable;
1381 key->pad1 = 0;
1382 key->pad2 = 0;
1383
1384 /* All variants of this shader will have the same value for
1385 * nr_samplers. Not yet trying to compact away holes in the
1386 * sampler array.
1387 */
1388 key->nr_samplers = llvm->draw->vs.vertex_shader->info.file_max[TGSI_FILE_SAMPLER] + 1;
1389 if (llvm->draw->vs.vertex_shader->info.file_max[TGSI_FILE_SAMPLER_VIEW] != -1) {
1390 key->nr_sampler_views =
1391 llvm->draw->vs.vertex_shader->info.file_max[TGSI_FILE_SAMPLER_VIEW] + 1;
1392 }
1393 else {
1394 key->nr_sampler_views = key->nr_samplers;
1395 }
1396
1397 draw_sampler = draw_llvm_variant_key_samplers(key);
1398
1399 memcpy(key->vertex_element,
1400 llvm->draw->pt.vertex_element,
1401 sizeof(struct pipe_vertex_element) * key->nr_vertex_elements);
1402
1403 memset(draw_sampler, 0, MAX2(key->nr_samplers, key->nr_sampler_views) * sizeof *draw_sampler);
1404
1405 for (i = 0 ; i < key->nr_samplers; i++) {
1406 lp_sampler_static_sampler_state(&draw_sampler[i].sampler_state,
1407 llvm->draw->samplers[PIPE_SHADER_VERTEX][i]);
1408 }
1409 for (i = 0 ; i < key->nr_sampler_views; i++) {
1410 lp_sampler_static_texture_state(&draw_sampler[i].texture_state,
1411 llvm->draw->sampler_views[PIPE_SHADER_VERTEX][i]);
1412 }
1413
1414 return key;
1415 }
1416
1417
1418 void
1419 draw_llvm_dump_variant_key(struct draw_llvm_variant_key *key)
1420 {
1421 unsigned i;
1422 struct draw_sampler_static_state *sampler = draw_llvm_variant_key_samplers(key);
1423
1424 debug_printf("clamp_vertex_color = %u\n", key->clamp_vertex_color);
1425 debug_printf("clip_xy = %u\n", key->clip_xy);
1426 debug_printf("clip_z = %u\n", key->clip_z);
1427 debug_printf("clip_user = %u\n", key->clip_user);
1428 debug_printf("bypass_viewport = %u\n", key->bypass_viewport);
1429 debug_printf("clip_halfz = %u\n", key->clip_halfz);
1430 debug_printf("need_edgeflags = %u\n", key->need_edgeflags);
1431 debug_printf("ucp_enable = %u\n", key->ucp_enable);
1432
1433 for (i = 0 ; i < key->nr_vertex_elements; i++) {
1434 debug_printf("vertex_element[%i].src_offset = %u\n", i, key->vertex_element[i].src_offset);
1435 debug_printf("vertex_element[%i].instance_divisor = %u\n", i, key->vertex_element[i].instance_divisor);
1436 debug_printf("vertex_element[%i].vertex_buffer_index = %u\n", i, key->vertex_element[i].vertex_buffer_index);
1437 debug_printf("vertex_element[%i].src_format = %s\n", i, util_format_name(key->vertex_element[i].src_format));
1438 }
1439
1440 for (i = 0 ; i < key->nr_sampler_views; i++) {
1441 debug_printf("sampler[%i].src_format = %s\n", i, util_format_name(sampler[i].texture_state.format));
1442 }
1443 }
1444
1445
1446 void
1447 draw_llvm_set_mapped_texture(struct draw_context *draw,
1448 unsigned sampler_idx,
1449 uint32_t width, uint32_t height, uint32_t depth,
1450 uint32_t first_level, uint32_t last_level,
1451 const void *base_ptr,
1452 uint32_t row_stride[PIPE_MAX_TEXTURE_LEVELS],
1453 uint32_t img_stride[PIPE_MAX_TEXTURE_LEVELS],
1454 uint32_t mip_offsets[PIPE_MAX_TEXTURE_LEVELS])
1455 {
1456 unsigned j;
1457 struct draw_jit_texture *jit_tex;
1458
1459 assert(sampler_idx < Elements(draw->llvm->jit_context.textures));
1460
1461 jit_tex = &draw->llvm->jit_context.textures[sampler_idx];
1462
1463 jit_tex->width = width;
1464 jit_tex->height = height;
1465 jit_tex->depth = depth;
1466 jit_tex->first_level = first_level;
1467 jit_tex->last_level = last_level;
1468 jit_tex->base = base_ptr;
1469
1470 for (j = first_level; j <= last_level; j++) {
1471 jit_tex->mip_offsets[j] = mip_offsets[j];
1472 jit_tex->row_stride[j] = row_stride[j];
1473 jit_tex->img_stride[j] = img_stride[j];
1474 }
1475 }
1476
1477
1478 void
1479 draw_llvm_set_sampler_state(struct draw_context *draw)
1480 {
1481 unsigned i;
1482
1483 for (i = 0; i < draw->num_samplers[PIPE_SHADER_VERTEX]; i++) {
1484 struct draw_jit_sampler *jit_sam = &draw->llvm->jit_context.samplers[i];
1485
1486 if (draw->samplers[i]) {
1487 const struct pipe_sampler_state *s
1488 = draw->samplers[PIPE_SHADER_VERTEX][i];
1489 jit_sam->min_lod = s->min_lod;
1490 jit_sam->max_lod = s->max_lod;
1491 jit_sam->lod_bias = s->lod_bias;
1492 COPY_4V(jit_sam->border_color, s->border_color.f);
1493 }
1494 }
1495 }
1496
1497
1498 void
1499 draw_llvm_destroy_variant(struct draw_llvm_variant *variant)
1500 {
1501 struct draw_llvm *llvm = variant->llvm;
1502
1503 if (variant->function_elts) {
1504 gallivm_free_function(variant->gallivm,
1505 variant->function_elts, variant->jit_func_elts);
1506 }
1507
1508 if (variant->function) {
1509 gallivm_free_function(variant->gallivm,
1510 variant->function, variant->jit_func);
1511 }
1512
1513 gallivm_destroy(variant->gallivm);
1514
1515 remove_from_list(&variant->list_item_local);
1516 variant->shader->variants_cached--;
1517 remove_from_list(&variant->list_item_global);
1518 llvm->nr_variants--;
1519 FREE(variant);
1520 }