blob: f37c21f3fe23b8ca670957ab30e33fb3fffff77f [file] [log] [blame]
José Fonseca946f4322009-07-26 23:44:38 +01001/**************************************************************************
2 *
José Fonseca73af91e2009-08-14 10:27:32 +01003 * Copyright 2009 VMware, Inc.
José Fonseca946f4322009-07-26 23:44:38 +01004 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
José Fonseca5811ed82009-08-22 22:26:55 +010029/**
30 * @file
31 * Code generate the whole fragment pipeline.
32 *
33 * The fragment pipeline consists of the following stages:
Brian Paul4d2dc9d2010-01-20 11:32:48 -070034 * - triangle edge in/out testing
35 * - scissor test
José Fonseca5811ed82009-08-22 22:26:55 +010036 * - stipple (TBI)
37 * - early depth test
38 * - fragment shader
39 * - alpha test
40 * - depth/stencil test (stencil TBI)
41 * - blending
42 *
43 * This file has only the glue to assembly the fragment pipeline. The actual
44 * plumbing of converting Gallium state into LLVM IR is done elsewhere, in the
45 * lp_bld_*.[ch] files, and in a complete generic and reusable way. Here we
46 * muster the LLVM JIT execution engine to create a function that follows an
47 * established binary interface and that can be called from C directly.
48 *
49 * A big source of complexity here is that we often want to run different
50 * stages with different precisions and data types and precisions. For example,
51 * the fragment shader needs typically to be done in floats, but the
52 * depth/stencil test and blending is better done in the type that most closely
53 * matches the depth/stencil and color buffer respectively.
54 *
55 * Since the width of a SIMD vector register stays the same regardless of the
56 * element type, different types imply different number of elements, so we must
57 * code generate more instances of the stages with larger types to be able to
58 * feed/consume the stages with smaller types.
59 *
60 * @author Jose Fonseca <jfonseca@vmware.com>
61 */
62
Brian Paulf4321fb2010-01-08 14:49:34 -070063#include <limits.h>
José Fonseca946f4322009-07-26 23:44:38 +010064#include "pipe/p_defines.h"
José Fonseca28486882010-02-02 14:42:17 +000065#include "util/u_inlines.h"
José Fonseca946f4322009-07-26 23:44:38 +010066#include "util/u_memory.h"
José Fonsecae3b38e52009-08-21 07:48:04 +010067#include "util/u_format.h"
José Fonseca9ae47062009-08-19 20:42:50 +010068#include "util/u_debug_dump.h"
Brian Paule95ad2a2010-01-27 13:49:43 -070069#include "util/u_time.h"
José Fonseca946f4322009-07-26 23:44:38 +010070#include "pipe/p_shader_tokens.h"
71#include "draw/draw_context.h"
72#include "tgsi/tgsi_dump.h"
73#include "tgsi/tgsi_scan.h"
74#include "tgsi/tgsi_parse.h"
Zack Rusinc61bf362010-02-08 18:05:22 -050075#include "gallivm/lp_bld_type.h"
76#include "gallivm/lp_bld_const.h"
77#include "gallivm/lp_bld_conv.h"
78#include "gallivm/lp_bld_intr.h"
79#include "gallivm/lp_bld_logic.h"
80#include "gallivm/lp_bld_depth.h"
81#include "gallivm/lp_bld_interp.h"
82#include "gallivm/lp_bld_tgsi.h"
83#include "gallivm/lp_bld_alpha.h"
84#include "gallivm/lp_bld_blend.h"
85#include "gallivm/lp_bld_swizzle.h"
86#include "gallivm/lp_bld_flow.h"
87#include "gallivm/lp_bld_debug.h"
José Fonseca69588d72009-10-09 11:29:33 +010088#include "lp_buffer.h"
Brian Paule95ad2a2010-01-27 13:49:43 -070089#include "lp_context.h"
90#include "lp_debug.h"
91#include "lp_perf.h"
92#include "lp_screen.h"
José Fonseca85999692009-10-09 15:52:18 +010093#include "lp_setup.h"
José Fonseca73af91e2009-08-14 10:27:32 +010094#include "lp_state.h"
José Fonseca8be72bb2009-09-06 11:20:14 +010095#include "lp_tex_sample.h"
José Fonseca73af91e2009-08-14 10:27:32 +010096
97
José Fonseca7c2dc3f2009-08-19 17:58:04 +010098static const unsigned char quad_offset_x[4] = {0, 1, 0, 1};
99static const unsigned char quad_offset_y[4] = {0, 0, 1, 1};
100
101
José Fonsecaf85c5f82009-08-23 12:28:34 +0100102/*
103 * Derive from the quad's upper left scalar coordinates the coordinates for
104 * all other quad pixels
José Fonseca5811ed82009-08-22 22:26:55 +0100105 */
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100106static void
José Fonsecaf85c5f82009-08-23 12:28:34 +0100107generate_pos0(LLVMBuilderRef builder,
108 LLVMValueRef x,
109 LLVMValueRef y,
110 LLVMValueRef *x0,
111 LLVMValueRef *y0)
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100112{
113 LLVMTypeRef int_elem_type = LLVMInt32Type();
114 LLVMTypeRef int_vec_type = LLVMVectorType(int_elem_type, QUAD_SIZE);
115 LLVMTypeRef elem_type = LLVMFloatType();
116 LLVMTypeRef vec_type = LLVMVectorType(elem_type, QUAD_SIZE);
117 LLVMValueRef x_offsets[QUAD_SIZE];
118 LLVMValueRef y_offsets[QUAD_SIZE];
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100119 unsigned i;
120
121 x = lp_build_broadcast(builder, int_vec_type, x);
122 y = lp_build_broadcast(builder, int_vec_type, y);
123
124 for(i = 0; i < QUAD_SIZE; ++i) {
125 x_offsets[i] = LLVMConstInt(int_elem_type, quad_offset_x[i], 0);
126 y_offsets[i] = LLVMConstInt(int_elem_type, quad_offset_y[i], 0);
127 }
128
129 x = LLVMBuildAdd(builder, x, LLVMConstVector(x_offsets, QUAD_SIZE), "");
130 y = LLVMBuildAdd(builder, y, LLVMConstVector(y_offsets, QUAD_SIZE), "");
131
José Fonsecaf85c5f82009-08-23 12:28:34 +0100132 *x0 = LLVMBuildSIToFP(builder, x, vec_type, "");
133 *y0 = LLVMBuildSIToFP(builder, y, vec_type, "");
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100134}
135
136
José Fonseca5811ed82009-08-22 22:26:55 +0100137/**
138 * Generate the depth test.
139 */
José Fonsecae3b38e52009-08-21 07:48:04 +0100140static void
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100141generate_depth(LLVMBuilderRef builder,
142 const struct lp_fragment_shader_variant_key *key,
José Fonsecab4835ea2009-09-14 11:05:06 +0100143 struct lp_type src_type,
José Fonseca98971802009-08-22 12:39:44 +0100144 struct lp_build_mask_context *mask,
145 LLVMValueRef src,
146 LLVMValueRef dst_ptr)
José Fonseca73af91e2009-08-14 10:27:32 +0100147{
José Fonsecae3b38e52009-08-21 07:48:04 +0100148 const struct util_format_description *format_desc;
José Fonsecab4835ea2009-09-14 11:05:06 +0100149 struct lp_type dst_type;
José Fonsecae3b38e52009-08-21 07:48:04 +0100150
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100151 if(!key->depth.enabled)
José Fonsecae3b38e52009-08-21 07:48:04 +0100152 return;
153
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100154 format_desc = util_format_description(key->zsbuf_format);
José Fonsecae3b38e52009-08-21 07:48:04 +0100155 assert(format_desc);
156
José Fonseca2282fb72009-11-10 17:52:53 -0800157 /*
158 * Depths are expected to be between 0 and 1, even if they are stored in
159 * floats. Setting these bits here will ensure that the lp_build_conv() call
160 * below won't try to unnecessarily clamp the incoming values.
161 */
162 if(src_type.floating) {
163 src_type.sign = FALSE;
164 src_type.norm = TRUE;
165 }
166 else {
167 assert(!src_type.sign);
168 assert(src_type.norm);
169 }
170
José Fonseca5811ed82009-08-22 22:26:55 +0100171 /* Pick the depth type. */
José Fonsecae3b38e52009-08-21 07:48:04 +0100172 dst_type = lp_depth_type(format_desc, src_type.width*src_type.length);
173
José Fonseca5811ed82009-08-22 22:26:55 +0100174 /* FIXME: Cope with a depth test type with a different bit width. */
José Fonsecae3b38e52009-08-21 07:48:04 +0100175 assert(dst_type.width == src_type.width);
176 assert(dst_type.length == src_type.length);
177
José Fonsecae3b38e52009-08-21 07:48:04 +0100178 lp_build_conv(builder, src_type, dst_type, &src, 1, &src, 1);
José Fonseca2282fb72009-11-10 17:52:53 -0800179
180 dst_ptr = LLVMBuildBitCast(builder,
181 dst_ptr,
182 LLVMPointerType(lp_build_vec_type(dst_type), 0), "");
José Fonsecae3b38e52009-08-21 07:48:04 +0100183
184 lp_build_depth_test(builder,
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100185 &key->depth,
José Fonsecae3b38e52009-08-21 07:48:04 +0100186 dst_type,
187 format_desc,
188 mask,
189 src,
190 dst_ptr);
191}
192
193
José Fonseca98971802009-08-22 12:39:44 +0100194/**
Brian Paulab943812009-12-16 16:02:59 -0700195 * Generate the code to do inside/outside triangle testing for the
196 * four pixels in a 2x2 quad. This will set the four elements of the
197 * quad mask vector to 0 or ~0.
198 * \param i which quad of the quad group to test, in [0,3]
199 */
200static void
201generate_tri_edge_mask(LLVMBuilderRef builder,
202 unsigned i,
203 LLVMValueRef *mask, /* ivec4, out */
204 LLVMValueRef c0, /* int32 */
205 LLVMValueRef c1, /* int32 */
206 LLVMValueRef c2, /* int32 */
207 LLVMValueRef step0_ptr, /* ivec4 */
208 LLVMValueRef step1_ptr, /* ivec4 */
209 LLVMValueRef step2_ptr) /* ivec4 */
210{
Brian Paul4061ca02010-01-12 13:01:32 -0700211#define OPTIMIZE_IN_OUT_TEST 0
212#if OPTIMIZE_IN_OUT_TEST
Brian Paulf4321fb2010-01-08 14:49:34 -0700213 struct lp_build_if_state ifctx;
Brian Paul4061ca02010-01-12 13:01:32 -0700214 LLVMValueRef not_draw_all;
215#endif
216 struct lp_build_flow_context *flow;
Brian Paulab943812009-12-16 16:02:59 -0700217 struct lp_type i32_type;
Brian Paulf4321fb2010-01-08 14:49:34 -0700218 LLVMTypeRef i32vec4_type, mask_type;
Brian Paulab943812009-12-16 16:02:59 -0700219 LLVMValueRef c0_vec, c1_vec, c2_vec;
Brian Paulf4321fb2010-01-08 14:49:34 -0700220 LLVMValueRef in_out_mask;
Brian Paulab943812009-12-16 16:02:59 -0700221
Brian Paulab943812009-12-16 16:02:59 -0700222 assert(i < 4);
223
224 /* int32 vector type */
225 memset(&i32_type, 0, sizeof i32_type);
226 i32_type.floating = FALSE; /* values are integers */
227 i32_type.sign = TRUE; /* values are signed */
228 i32_type.norm = FALSE; /* values are not normalized */
229 i32_type.width = 32; /* 32-bit int values */
230 i32_type.length = 4; /* 4 elements per vector */
231
232 i32vec4_type = lp_build_int32_vec4_type();
233
Brian Paulf4321fb2010-01-08 14:49:34 -0700234 mask_type = LLVMIntType(32 * 4);
235
Brian Paul5771f3d2009-12-17 10:52:50 -0700236 /*
Brian Paulf4321fb2010-01-08 14:49:34 -0700237 * Use a conditional here to do detailed pixel in/out testing.
Brian Paul9a10d142010-01-11 15:30:17 -0700238 * We only have to do this if c0 != INT_MIN.
Brian Paul5771f3d2009-12-17 10:52:50 -0700239 */
Brian Paulf4321fb2010-01-08 14:49:34 -0700240 flow = lp_build_flow_create(builder);
241 lp_build_flow_scope_begin(flow);
242
Brian Paul46b5bd62010-01-11 12:59:36 -0700243 {
Brian Paulf4321fb2010-01-08 14:49:34 -0700244#if OPTIMIZE_IN_OUT_TEST
Brian Paul9a10d142010-01-11 15:30:17 -0700245 /* not_draw_all = (c0 != INT_MIN) */
Brian Paulf4321fb2010-01-08 14:49:34 -0700246 not_draw_all = LLVMBuildICmp(builder,
Brian Paul46b5bd62010-01-11 12:59:36 -0700247 LLVMIntNE,
248 c0,
249 LLVMConstInt(LLVMInt32Type(), INT_MIN, 0),
Brian Paulf4321fb2010-01-08 14:49:34 -0700250 "");
251
Brian Paul46b5bd62010-01-11 12:59:36 -0700252 in_out_mask = lp_build_int_const_scalar(i32_type, ~0);
253
254
Brian Paulf4321fb2010-01-08 14:49:34 -0700255 lp_build_flow_scope_declare(flow, &in_out_mask);
256
Brian Paul9a10d142010-01-11 15:30:17 -0700257 /* if (not_draw_all) {... */
Brian Paulf4321fb2010-01-08 14:49:34 -0700258 lp_build_if(&ifctx, flow, builder, not_draw_all);
259#endif
260 {
261 LLVMValueRef step0_vec, step1_vec, step2_vec;
262 LLVMValueRef m0_vec, m1_vec, m2_vec;
263 LLVMValueRef index, m;
264
Brian Paul46b5bd62010-01-11 12:59:36 -0700265 /* c0_vec = {c0, c0, c0, c0}
266 * Note that we emit this code four times but LLVM optimizes away
267 * three instances of it.
268 */
269 c0_vec = lp_build_broadcast(builder, i32vec4_type, c0);
270 c1_vec = lp_build_broadcast(builder, i32vec4_type, c1);
271 c2_vec = lp_build_broadcast(builder, i32vec4_type, c2);
272 lp_build_name(c0_vec, "edgeconst0vec");
273 lp_build_name(c1_vec, "edgeconst1vec");
274 lp_build_name(c2_vec, "edgeconst2vec");
275
Brian Paul9a10d142010-01-11 15:30:17 -0700276 /* load step0vec, step1, step2 vec from memory */
Brian Paulf4321fb2010-01-08 14:49:34 -0700277 index = LLVMConstInt(LLVMInt32Type(), i, 0);
278 step0_vec = LLVMBuildLoad(builder, LLVMBuildGEP(builder, step0_ptr, &index, 1, ""), "");
279 step1_vec = LLVMBuildLoad(builder, LLVMBuildGEP(builder, step1_ptr, &index, 1, ""), "");
280 step2_vec = LLVMBuildLoad(builder, LLVMBuildGEP(builder, step2_ptr, &index, 1, ""), "");
Brian Paulf4321fb2010-01-08 14:49:34 -0700281 lp_build_name(step0_vec, "step0vec");
282 lp_build_name(step1_vec, "step1vec");
283 lp_build_name(step2_vec, "step2vec");
284
Brian Paul9a10d142010-01-11 15:30:17 -0700285 /* m0_vec = step0_ptr[i] > c0_vec */
Brian Paulf4321fb2010-01-08 14:49:34 -0700286 m0_vec = lp_build_compare(builder, i32_type, PIPE_FUNC_GREATER, step0_vec, c0_vec);
287 m1_vec = lp_build_compare(builder, i32_type, PIPE_FUNC_GREATER, step1_vec, c1_vec);
288 m2_vec = lp_build_compare(builder, i32_type, PIPE_FUNC_GREATER, step2_vec, c2_vec);
289
Brian Paul9a10d142010-01-11 15:30:17 -0700290 /* in_out_mask = m0_vec & m1_vec & m2_vec */
Brian Paulf4321fb2010-01-08 14:49:34 -0700291 m = LLVMBuildAnd(builder, m0_vec, m1_vec, "");
292 in_out_mask = LLVMBuildAnd(builder, m, m2_vec, "");
293 lp_build_name(in_out_mask, "inoutmaskvec");
Brian Paulf4321fb2010-01-08 14:49:34 -0700294 }
295#if OPTIMIZE_IN_OUT_TEST
296 lp_build_endif(&ifctx);
297#endif
298
Brian Paul46b5bd62010-01-11 12:59:36 -0700299 }
Brian Paulf4321fb2010-01-08 14:49:34 -0700300 lp_build_flow_scope_end(flow);
301 lp_build_flow_destroy(flow);
302
Brian Paul9a10d142010-01-11 15:30:17 -0700303 /* This is the initial alive/dead pixel mask for a quad of four pixels.
304 * It's an int[4] vector with each word set to 0 or ~0.
305 * Words will get cleared when pixels faile the Z test, etc.
306 */
Brian Paulf4321fb2010-01-08 14:49:34 -0700307 *mask = in_out_mask;
Brian Paulab943812009-12-16 16:02:59 -0700308}
309
310
Brian Paul44614422010-01-14 19:15:00 -0700311static LLVMValueRef
312generate_scissor_test(LLVMBuilderRef builder,
313 LLVMValueRef context_ptr,
314 const struct lp_build_interp_soa_context *interp,
315 struct lp_type type)
316{
317 LLVMTypeRef vec_type = lp_build_vec_type(type);
318 LLVMValueRef xpos = interp->pos[0], ypos = interp->pos[1];
319 LLVMValueRef xmin, ymin, xmax, ymax;
320 LLVMValueRef m0, m1, m2, m3, m;
321
322 /* xpos, ypos contain the window coords for the four pixels in the quad */
323 assert(xpos);
324 assert(ypos);
325
326 /* get the current scissor bounds, convert to vectors */
327 xmin = lp_jit_context_scissor_xmin_value(builder, context_ptr);
328 xmin = lp_build_broadcast(builder, vec_type, xmin);
329
330 ymin = lp_jit_context_scissor_ymin_value(builder, context_ptr);
331 ymin = lp_build_broadcast(builder, vec_type, ymin);
332
333 xmax = lp_jit_context_scissor_xmax_value(builder, context_ptr);
334 xmax = lp_build_broadcast(builder, vec_type, xmax);
335
336 ymax = lp_jit_context_scissor_ymax_value(builder, context_ptr);
337 ymax = lp_build_broadcast(builder, vec_type, ymax);
338
339 /* compare the fragment's position coordinates against the scissor bounds */
340 m0 = lp_build_compare(builder, type, PIPE_FUNC_GEQUAL, xpos, xmin);
341 m1 = lp_build_compare(builder, type, PIPE_FUNC_GEQUAL, ypos, ymin);
342 m2 = lp_build_compare(builder, type, PIPE_FUNC_LESS, xpos, xmax);
343 m3 = lp_build_compare(builder, type, PIPE_FUNC_LESS, ypos, ymax);
344
345 /* AND all the masks together */
346 m = LLVMBuildAnd(builder, m0, m1, "");
347 m = LLVMBuildAnd(builder, m, m2, "");
348 m = LLVMBuildAnd(builder, m, m3, "");
349
350 lp_build_name(m, "scissormask");
351
352 return m;
353}
354
355
Brian Paul2797f2b2010-01-15 11:21:16 -0700356static LLVMValueRef
357build_int32_vec_const(int value)
358{
359 struct lp_type i32_type;
360
361 memset(&i32_type, 0, sizeof i32_type);
362 i32_type.floating = FALSE; /* values are integers */
363 i32_type.sign = TRUE; /* values are signed */
364 i32_type.norm = FALSE; /* values are not normalized */
365 i32_type.width = 32; /* 32-bit int values */
366 i32_type.length = 4; /* 4 elements per vector */
367 return lp_build_int_const_scalar(i32_type, value);
368}
369
370
371
Brian Paulab943812009-12-16 16:02:59 -0700372/**
José Fonseca5811ed82009-08-22 22:26:55 +0100373 * Generate the fragment shader, depth/stencil test, and alpha tests.
Brian Paulab943812009-12-16 16:02:59 -0700374 * \param i which quad in the tile, in range [0,3]
Brian Paul2797f2b2010-01-15 11:21:16 -0700375 * \param do_tri_test if 1, do triangle edge in/out testing
José Fonseca98971802009-08-22 12:39:44 +0100376 */
377static void
378generate_fs(struct llvmpipe_context *lp,
379 struct lp_fragment_shader *shader,
380 const struct lp_fragment_shader_variant_key *key,
381 LLVMBuilderRef builder,
José Fonsecab4835ea2009-09-14 11:05:06 +0100382 struct lp_type type,
José Fonseca635c37e2009-08-23 07:38:41 +0100383 LLVMValueRef context_ptr,
José Fonseca98971802009-08-22 12:39:44 +0100384 unsigned i,
José Fonsecaf85c5f82009-08-23 12:28:34 +0100385 const struct lp_build_interp_soa_context *interp,
José Fonseca8be72bb2009-09-06 11:20:14 +0100386 struct lp_build_sampler_soa *sampler,
José Fonseca98971802009-08-22 12:39:44 +0100387 LLVMValueRef *pmask,
Keith Whitwellc1a04412010-01-10 17:22:09 +0000388 LLVMValueRef (*color)[4],
Brian Paulab943812009-12-16 16:02:59 -0700389 LLVMValueRef depth_ptr,
Brian Paul2797f2b2010-01-15 11:21:16 -0700390 unsigned do_tri_test,
Brian Paulab943812009-12-16 16:02:59 -0700391 LLVMValueRef c0,
392 LLVMValueRef c1,
393 LLVMValueRef c2,
394 LLVMValueRef step0_ptr,
395 LLVMValueRef step1_ptr,
396 LLVMValueRef step2_ptr)
José Fonsecae3b38e52009-08-21 07:48:04 +0100397{
José Fonseca73af91e2009-08-14 10:27:32 +0100398 const struct tgsi_token *tokens = shader->base.tokens;
José Fonseca73af91e2009-08-14 10:27:32 +0100399 LLVMTypeRef elem_type;
400 LLVMTypeRef vec_type;
José Fonseca78216642009-08-16 21:01:57 +0100401 LLVMTypeRef int_vec_type;
José Fonseca635c37e2009-08-23 07:38:41 +0100402 LLVMValueRef consts_ptr;
José Fonseca98971802009-08-22 12:39:44 +0100403 LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][NUM_CHANNELS];
José Fonsecaf85c5f82009-08-23 12:28:34 +0100404 LLVMValueRef z = interp->pos[2];
José Fonseca8e6b9252009-09-10 11:44:03 +0100405 struct lp_build_flow_context *flow;
José Fonseca98971802009-08-22 12:39:44 +0100406 struct lp_build_mask_context mask;
407 boolean early_depth_test;
408 unsigned attrib;
409 unsigned chan;
Keith Whitwellc1a04412010-01-10 17:22:09 +0000410 unsigned cbuf;
José Fonseca98971802009-08-22 12:39:44 +0100411
Brian Paulab943812009-12-16 16:02:59 -0700412 assert(i < 4);
José Fonseca98971802009-08-22 12:39:44 +0100413
414 elem_type = lp_build_elem_type(type);
415 vec_type = lp_build_vec_type(type);
416 int_vec_type = lp_build_int_vec_type(type);
417
José Fonseca635c37e2009-08-23 07:38:41 +0100418 consts_ptr = lp_jit_context_constants(builder, context_ptr);
José Fonseca635c37e2009-08-23 07:38:41 +0100419
José Fonseca8e6b9252009-09-10 11:44:03 +0100420 flow = lp_build_flow_create(builder);
421
422 memset(outputs, 0, sizeof outputs);
423
424 lp_build_flow_scope_begin(flow);
425
426 /* Declare the color and z variables */
Keith Whitwellc1a04412010-01-10 17:22:09 +0000427 for(cbuf = 0; cbuf < key->nr_cbufs; cbuf++) {
428 for(chan = 0; chan < NUM_CHANNELS; ++chan) {
429 color[cbuf][chan] = LLVMGetUndef(vec_type);
430 lp_build_flow_scope_declare(flow, &color[cbuf][chan]);
431 }
José Fonseca8e6b9252009-09-10 11:44:03 +0100432 }
José Fonseca6a405b42009-09-10 13:35:39 +0100433 lp_build_flow_scope_declare(flow, &z);
José Fonseca8e6b9252009-09-10 11:44:03 +0100434
Brian Paulab943812009-12-16 16:02:59 -0700435 /* do triangle edge testing */
Brian Paul2797f2b2010-01-15 11:21:16 -0700436 if (do_tri_test) {
437 generate_tri_edge_mask(builder, i, pmask,
438 c0, c1, c2, step0_ptr, step1_ptr, step2_ptr);
439 }
440 else {
441 *pmask = build_int32_vec_const(~0);
442 }
Brian Paulab943812009-12-16 16:02:59 -0700443
Brian Paul5771f3d2009-12-17 10:52:50 -0700444 /* 'mask' will control execution based on quad's pixel alive/killed state */
José Fonseca8e6b9252009-09-10 11:44:03 +0100445 lp_build_mask_begin(&mask, flow, type, *pmask);
José Fonseca98971802009-08-22 12:39:44 +0100446
Brian Paul44614422010-01-14 19:15:00 -0700447 if (key->scissor) {
448 LLVMValueRef smask =
449 generate_scissor_test(builder, context_ptr, interp, type);
450 lp_build_mask_update(&mask, smask);
451 }
Brian Paulab943812009-12-16 16:02:59 -0700452
José Fonseca98971802009-08-22 12:39:44 +0100453 early_depth_test =
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100454 key->depth.enabled &&
455 !key->alpha.enabled &&
456 !shader->info.uses_kill &&
457 !shader->info.writes_z;
José Fonseca98971802009-08-22 12:39:44 +0100458
459 if(early_depth_test)
José Fonsecacdbbcdf2009-09-09 21:16:06 +0100460 generate_depth(builder, key,
José Fonsecaf85c5f82009-08-23 12:28:34 +0100461 type, &mask,
462 z, depth_ptr);
José Fonseca98971802009-08-22 12:39:44 +0100463
José Fonseca98971802009-08-22 12:39:44 +0100464 lp_build_tgsi_soa(builder, tokens, type, &mask,
José Fonsecaf85c5f82009-08-23 12:28:34 +0100465 consts_ptr, interp->pos, interp->inputs,
José Fonseca8be72bb2009-09-06 11:20:14 +0100466 outputs, sampler);
José Fonseca98971802009-08-22 12:39:44 +0100467
468 for (attrib = 0; attrib < shader->info.num_outputs; ++attrib) {
469 for(chan = 0; chan < NUM_CHANNELS; ++chan) {
470 if(outputs[attrib][chan]) {
471 lp_build_name(outputs[attrib][chan], "output%u.%u.%c", i, attrib, "xyzw"[chan]);
472
473 switch (shader->info.output_semantic_name[attrib]) {
474 case TGSI_SEMANTIC_COLOR:
475 {
476 unsigned cbuf = shader->info.output_semantic_index[attrib];
477
478 lp_build_name(outputs[attrib][chan], "color%u.%u.%c", i, attrib, "rgba"[chan]);
479
480 /* Alpha test */
481 /* XXX: should the alpha reference value be passed separately? */
Keith Whitwellc1a04412010-01-10 17:22:09 +0000482 /* XXX: should only test the final assignment to alpha */
José Fonseca635c37e2009-08-23 07:38:41 +0100483 if(cbuf == 0 && chan == 3) {
484 LLVMValueRef alpha = outputs[attrib][chan];
485 LLVMValueRef alpha_ref_value;
486 alpha_ref_value = lp_jit_context_alpha_ref_value(builder, context_ptr);
487 alpha_ref_value = lp_build_broadcast(builder, vec_type, alpha_ref_value);
José Fonseca98971802009-08-22 12:39:44 +0100488 lp_build_alpha_test(builder, &key->alpha, type,
José Fonseca635c37e2009-08-23 07:38:41 +0100489 &mask, alpha, alpha_ref_value);
490 }
José Fonseca98971802009-08-22 12:39:44 +0100491
Keith Whitwellc1a04412010-01-10 17:22:09 +0000492 color[cbuf][chan] = outputs[attrib][chan];
José Fonseca98971802009-08-22 12:39:44 +0100493 break;
494 }
495
496 case TGSI_SEMANTIC_POSITION:
497 if(chan == 2)
José Fonsecaf85c5f82009-08-23 12:28:34 +0100498 z = outputs[attrib][chan];
José Fonseca98971802009-08-22 12:39:44 +0100499 break;
500 }
501 }
502 }
503 }
504
José Fonseca6a405b42009-09-10 13:35:39 +0100505 if(!early_depth_test)
506 generate_depth(builder, key,
507 type, &mask,
508 z, depth_ptr);
509
510 lp_build_mask_end(&mask);
511
512 lp_build_flow_scope_end(flow);
513
José Fonseca8e6b9252009-09-10 11:44:03 +0100514 lp_build_flow_destroy(flow);
José Fonseca98971802009-08-22 12:39:44 +0100515
516 *pmask = mask.value;
517
518}
519
520
521/**
José Fonseca5811ed82009-08-22 22:26:55 +0100522 * Generate color blending and color output.
José Fonseca98971802009-08-22 12:39:44 +0100523 */
524static void
525generate_blend(const struct pipe_blend_state *blend,
526 LLVMBuilderRef builder,
José Fonsecab4835ea2009-09-14 11:05:06 +0100527 struct lp_type type,
José Fonseca635c37e2009-08-23 07:38:41 +0100528 LLVMValueRef context_ptr,
José Fonseca98971802009-08-22 12:39:44 +0100529 LLVMValueRef mask,
530 LLVMValueRef *src,
José Fonseca98971802009-08-22 12:39:44 +0100531 LLVMValueRef dst_ptr)
532{
533 struct lp_build_context bld;
José Fonsecac3c80c52009-09-10 12:01:42 +0100534 struct lp_build_flow_context *flow;
535 struct lp_build_mask_context mask_ctx;
José Fonseca98971802009-08-22 12:39:44 +0100536 LLVMTypeRef vec_type;
537 LLVMTypeRef int_vec_type;
José Fonseca635c37e2009-08-23 07:38:41 +0100538 LLVMValueRef const_ptr;
José Fonseca98971802009-08-22 12:39:44 +0100539 LLVMValueRef con[4];
540 LLVMValueRef dst[4];
541 LLVMValueRef res[4];
542 unsigned chan;
543
José Fonsecac3c80c52009-09-10 12:01:42 +0100544 lp_build_context_init(&bld, builder, type);
545
546 flow = lp_build_flow_create(builder);
Brian Paulf4321fb2010-01-08 14:49:34 -0700547
548 /* we'll use this mask context to skip blending if all pixels are dead */
José Fonsecac3c80c52009-09-10 12:01:42 +0100549 lp_build_mask_begin(&mask_ctx, flow, type, mask);
550
José Fonseca98971802009-08-22 12:39:44 +0100551 vec_type = lp_build_vec_type(type);
552 int_vec_type = lp_build_int_vec_type(type);
553
José Fonseca635c37e2009-08-23 07:38:41 +0100554 const_ptr = lp_jit_context_blend_color(builder, context_ptr);
555 const_ptr = LLVMBuildBitCast(builder, const_ptr,
556 LLVMPointerType(vec_type, 0), "");
557
José Fonseca98971802009-08-22 12:39:44 +0100558 for(chan = 0; chan < 4; ++chan) {
559 LLVMValueRef index = LLVMConstInt(LLVMInt32Type(), chan, 0);
José Fonseca635c37e2009-08-23 07:38:41 +0100560 con[chan] = LLVMBuildLoad(builder, LLVMBuildGEP(builder, const_ptr, &index, 1, ""), "");
José Fonseca98971802009-08-22 12:39:44 +0100561
562 dst[chan] = LLVMBuildLoad(builder, LLVMBuildGEP(builder, dst_ptr, &index, 1, ""), "");
563
564 lp_build_name(con[chan], "con.%c", "rgba"[chan]);
565 lp_build_name(dst[chan], "dst.%c", "rgba"[chan]);
566 }
567
568 lp_build_blend_soa(builder, blend, type, src, dst, con, res);
569
570 for(chan = 0; chan < 4; ++chan) {
Roland Scheidegger04cb5df2010-01-20 18:27:53 +0100571 if(blend->rt[0].colormask & (1 << chan)) {
José Fonseca4c3a48a2009-09-10 12:37:44 +0100572 LLVMValueRef index = LLVMConstInt(LLVMInt32Type(), chan, 0);
573 lp_build_name(res[chan], "res.%c", "rgba"[chan]);
574 res[chan] = lp_build_select(&bld, mask, res[chan], dst[chan]);
575 LLVMBuildStore(builder, res[chan], LLVMBuildGEP(builder, dst_ptr, &index, 1, ""));
576 }
José Fonseca98971802009-08-22 12:39:44 +0100577 }
José Fonsecac3c80c52009-09-10 12:01:42 +0100578
579 lp_build_mask_end(&mask_ctx);
580 lp_build_flow_destroy(flow);
José Fonseca98971802009-08-22 12:39:44 +0100581}
582
583
José Fonseca5811ed82009-08-22 22:26:55 +0100584/**
585 * Generate the runtime callable function for the whole fragment pipeline.
Brian Paul866e6852009-12-02 15:13:45 -0700586 * Note that the function which we generate operates on a block of 16
587 * pixels at at time. The block contains 2x2 quads. Each quad contains
588 * 2x2 pixels.
José Fonseca5811ed82009-08-22 22:26:55 +0100589 */
Brian Paul3b5d8492010-01-11 13:16:00 -0700590static void
José Fonseca98971802009-08-22 12:39:44 +0100591generate_fragment(struct llvmpipe_context *lp,
592 struct lp_fragment_shader *shader,
Brian Paul2797f2b2010-01-15 11:21:16 -0700593 struct lp_fragment_shader_variant *variant,
594 unsigned do_tri_test)
José Fonseca98971802009-08-22 12:39:44 +0100595{
596 struct llvmpipe_screen *screen = llvmpipe_screen(lp->pipe.screen);
Brian Paul3b5d8492010-01-11 13:16:00 -0700597 const struct lp_fragment_shader_variant_key *key = &variant->key;
José Fonsecab4835ea2009-09-14 11:05:06 +0100598 struct lp_type fs_type;
599 struct lp_type blend_type;
José Fonseca98971802009-08-22 12:39:44 +0100600 LLVMTypeRef fs_elem_type;
601 LLVMTypeRef fs_vec_type;
602 LLVMTypeRef fs_int_vec_type;
603 LLVMTypeRef blend_vec_type;
604 LLVMTypeRef blend_int_vec_type;
Brian Paulab943812009-12-16 16:02:59 -0700605 LLVMTypeRef arg_types[14];
José Fonseca73af91e2009-08-14 10:27:32 +0100606 LLVMTypeRef func_type;
Brian Paulab943812009-12-16 16:02:59 -0700607 LLVMTypeRef int32_vec4_type = lp_build_int32_vec4_type();
José Fonsecac022e152009-08-23 06:35:09 +0100608 LLVMValueRef context_ptr;
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100609 LLVMValueRef x;
610 LLVMValueRef y;
José Fonseca73af91e2009-08-14 10:27:32 +0100611 LLVMValueRef a0_ptr;
612 LLVMValueRef dadx_ptr;
613 LLVMValueRef dady_ptr;
Keith Whitwellc1a04412010-01-10 17:22:09 +0000614 LLVMValueRef color_ptr_ptr;
José Fonseca39352b32009-08-19 09:24:20 +0100615 LLVMValueRef depth_ptr;
Brian Paulab943812009-12-16 16:02:59 -0700616 LLVMValueRef c0, c1, c2, step0_ptr, step1_ptr, step2_ptr;
José Fonseca73af91e2009-08-14 10:27:32 +0100617 LLVMBasicBlockRef block;
618 LLVMBuilderRef builder;
José Fonsecaf85c5f82009-08-23 12:28:34 +0100619 LLVMValueRef x0;
620 LLVMValueRef y0;
José Fonseca8be72bb2009-09-06 11:20:14 +0100621 struct lp_build_sampler_soa *sampler;
José Fonsecaf85c5f82009-08-23 12:28:34 +0100622 struct lp_build_interp_soa_context interp;
José Fonseca98971802009-08-22 12:39:44 +0100623 LLVMValueRef fs_mask[LP_MAX_VECTOR_LENGTH];
Keith Whitwellc1a04412010-01-10 17:22:09 +0000624 LLVMValueRef fs_out_color[PIPE_MAX_COLOR_BUFS][NUM_CHANNELS][LP_MAX_VECTOR_LENGTH];
José Fonseca98971802009-08-22 12:39:44 +0100625 LLVMValueRef blend_mask;
626 LLVMValueRef blend_in_color[NUM_CHANNELS];
Brian Paul3b1920a2010-01-15 10:25:59 -0700627 LLVMValueRef function;
José Fonseca98971802009-08-22 12:39:44 +0100628 unsigned num_fs;
José Fonseca39352b32009-08-19 09:24:20 +0100629 unsigned i;
José Fonseca39352b32009-08-19 09:24:20 +0100630 unsigned chan;
Keith Whitwellc1a04412010-01-10 17:22:09 +0000631 unsigned cbuf;
José Fonseca73af91e2009-08-14 10:27:32 +0100632
José Fonseca9ae47062009-08-19 20:42:50 +0100633
José Fonseca5811ed82009-08-22 22:26:55 +0100634 /* TODO: actually pick these based on the fs and color buffer
635 * characteristics. */
636
José Fonsecab4835ea2009-09-14 11:05:06 +0100637 memset(&fs_type, 0, sizeof fs_type);
José Fonseca98971802009-08-22 12:39:44 +0100638 fs_type.floating = TRUE; /* floating point values */
639 fs_type.sign = TRUE; /* values are signed */
640 fs_type.norm = FALSE; /* values are not limited to [0,1] or [-1,1] */
641 fs_type.width = 32; /* 32-bit float */
Brian Paul866e6852009-12-02 15:13:45 -0700642 fs_type.length = 4; /* 4 elements per vector */
643 num_fs = 4; /* number of quads per block */
José Fonseca73af91e2009-08-14 10:27:32 +0100644
José Fonsecab4835ea2009-09-14 11:05:06 +0100645 memset(&blend_type, 0, sizeof blend_type);
José Fonseca98971802009-08-22 12:39:44 +0100646 blend_type.floating = FALSE; /* values are integers */
647 blend_type.sign = FALSE; /* values are unsigned */
648 blend_type.norm = TRUE; /* values are in [0,1] or [-1,1] */
649 blend_type.width = 8; /* 8-bit ubyte values */
650 blend_type.length = 16; /* 16 elements per vector */
651
José Fonseca5811ed82009-08-22 22:26:55 +0100652 /*
653 * Generate the function prototype. Any change here must be reflected in
José Fonseca08dd41f2009-08-23 05:52:20 +0100654 * lp_jit.h's lp_jit_frag_func function pointer type, and vice-versa.
José Fonseca5811ed82009-08-22 22:26:55 +0100655 */
656
José Fonseca98971802009-08-22 12:39:44 +0100657 fs_elem_type = lp_build_elem_type(fs_type);
658 fs_vec_type = lp_build_vec_type(fs_type);
659 fs_int_vec_type = lp_build_int_vec_type(fs_type);
660
661 blend_vec_type = lp_build_vec_type(blend_type);
662 blend_int_vec_type = lp_build_int_vec_type(blend_type);
José Fonseca73af91e2009-08-14 10:27:32 +0100663
José Fonsecac022e152009-08-23 06:35:09 +0100664 arg_types[0] = screen->context_ptr_type; /* context */
665 arg_types[1] = LLVMInt32Type(); /* x */
666 arg_types[2] = LLVMInt32Type(); /* y */
667 arg_types[3] = LLVMPointerType(fs_elem_type, 0); /* a0 */
668 arg_types[4] = LLVMPointerType(fs_elem_type, 0); /* dadx */
669 arg_types[5] = LLVMPointerType(fs_elem_type, 0); /* dady */
Keith Whitwellc1a04412010-01-10 17:22:09 +0000670 arg_types[6] = LLVMPointerType(LLVMPointerType(blend_vec_type, 0), 0); /* color */
Brian Paulab943812009-12-16 16:02:59 -0700671 arg_types[7] = LLVMPointerType(fs_int_vec_type, 0); /* depth */
672 arg_types[8] = LLVMInt32Type(); /* c0 */
Brian Paul9a23d812010-01-18 17:39:54 -0700673 arg_types[9] = LLVMInt32Type(); /* c1 */
Brian Paulab943812009-12-16 16:02:59 -0700674 arg_types[10] = LLVMInt32Type(); /* c2 */
675 /* Note: the step arrays are built as int32[16] but we interpret
676 * them here as int32_vec4[4].
677 */
678 arg_types[11] = LLVMPointerType(int32_vec4_type, 0);/* step0 */
679 arg_types[12] = LLVMPointerType(int32_vec4_type, 0);/* step1 */
680 arg_types[13] = LLVMPointerType(int32_vec4_type, 0);/* step2 */
José Fonseca73af91e2009-08-14 10:27:32 +0100681
682 func_type = LLVMFunctionType(LLVMVoidType(), arg_types, Elements(arg_types), 0);
683
Brian Paul3b1920a2010-01-15 10:25:59 -0700684 function = LLVMAddFunction(screen->module, "shader", func_type);
685 LLVMSetFunctionCallConv(function, LLVMCCallConv);
686
Brian Paul2797f2b2010-01-15 11:21:16 -0700687 variant->function[do_tri_test] = function;
Brian Paul3b1920a2010-01-15 10:25:59 -0700688
Keith Whitwellc1a04412010-01-10 17:22:09 +0000689
690 /* XXX: need to propagate noalias down into color param now we are
691 * passing a pointer-to-pointer?
692 */
José Fonsecaa7f9b912009-08-16 10:02:17 +0100693 for(i = 0; i < Elements(arg_types); ++i)
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100694 if(LLVMGetTypeKind(arg_types[i]) == LLVMPointerTypeKind)
Brian Paul3b1920a2010-01-15 10:25:59 -0700695 LLVMAddAttribute(LLVMGetParam(function, i), LLVMNoAliasAttribute);
José Fonseca73af91e2009-08-14 10:27:32 +0100696
Brian Paul3b1920a2010-01-15 10:25:59 -0700697 context_ptr = LLVMGetParam(function, 0);
698 x = LLVMGetParam(function, 1);
699 y = LLVMGetParam(function, 2);
700 a0_ptr = LLVMGetParam(function, 3);
701 dadx_ptr = LLVMGetParam(function, 4);
702 dady_ptr = LLVMGetParam(function, 5);
703 color_ptr_ptr = LLVMGetParam(function, 6);
704 depth_ptr = LLVMGetParam(function, 7);
705 c0 = LLVMGetParam(function, 8);
706 c1 = LLVMGetParam(function, 9);
707 c2 = LLVMGetParam(function, 10);
708 step0_ptr = LLVMGetParam(function, 11);
709 step1_ptr = LLVMGetParam(function, 12);
710 step2_ptr = LLVMGetParam(function, 13);
José Fonseca73af91e2009-08-14 10:27:32 +0100711
José Fonsecac022e152009-08-23 06:35:09 +0100712 lp_build_name(context_ptr, "context");
José Fonseca7c2dc3f2009-08-19 17:58:04 +0100713 lp_build_name(x, "x");
714 lp_build_name(y, "y");
José Fonseca5999ebf2009-08-18 20:23:35 +0100715 lp_build_name(a0_ptr, "a0");
716 lp_build_name(dadx_ptr, "dadx");
717 lp_build_name(dady_ptr, "dady");
Keith Whitwellc1a04412010-01-10 17:22:09 +0000718 lp_build_name(color_ptr_ptr, "color_ptr");
José Fonseca39352b32009-08-19 09:24:20 +0100719 lp_build_name(depth_ptr, "depth");
Brian Paulab943812009-12-16 16:02:59 -0700720 lp_build_name(c0, "c0");
721 lp_build_name(c1, "c1");
722 lp_build_name(c2, "c2");
723 lp_build_name(step0_ptr, "step0");
724 lp_build_name(step1_ptr, "step1");
725 lp_build_name(step2_ptr, "step2");
José Fonseca73af91e2009-08-14 10:27:32 +0100726
José Fonseca5811ed82009-08-22 22:26:55 +0100727 /*
728 * Function body
729 */
730
Brian Paul3b1920a2010-01-15 10:25:59 -0700731 block = LLVMAppendBasicBlock(function, "entry");
José Fonseca73af91e2009-08-14 10:27:32 +0100732 builder = LLVMCreateBuilder();
733 LLVMPositionBuilderAtEnd(builder, block);
734
José Fonsecaf85c5f82009-08-23 12:28:34 +0100735 generate_pos0(builder, x, y, &x0, &y0);
736
Keith Whitwell86f45002010-01-11 12:06:51 +0000737 lp_build_interp_soa_init(&interp,
738 shader->base.tokens,
739 key->flatshade,
740 builder, fs_type,
José Fonsecaf85c5f82009-08-23 12:28:34 +0100741 a0_ptr, dadx_ptr, dady_ptr,
Brian Paul866e6852009-12-02 15:13:45 -0700742 x0, y0);
José Fonsecaf85c5f82009-08-23 12:28:34 +0100743
José Fonsecae4c76c02009-09-07 14:52:39 +0100744 /* code generated texture sampling */
745 sampler = lp_llvm_sampler_soa_create(key->sampler, context_ptr);
José Fonsecac40eddd2009-08-25 08:05:31 +0100746
Brian Paul866e6852009-12-02 15:13:45 -0700747 /* loop over quads in the block */
José Fonseca98971802009-08-22 12:39:44 +0100748 for(i = 0; i < num_fs; ++i) {
749 LLVMValueRef index = LLVMConstInt(LLVMInt32Type(), i, 0);
Keith Whitwellc1a04412010-01-10 17:22:09 +0000750 LLVMValueRef out_color[PIPE_MAX_COLOR_BUFS][NUM_CHANNELS];
José Fonseca98971802009-08-22 12:39:44 +0100751 LLVMValueRef depth_ptr_i;
Keith Whitwellc1a04412010-01-10 17:22:09 +0000752 int cbuf;
José Fonseca73af91e2009-08-14 10:27:32 +0100753
José Fonsecaf85c5f82009-08-23 12:28:34 +0100754 if(i != 0)
Brian Paul866e6852009-12-02 15:13:45 -0700755 lp_build_interp_soa_update(&interp, i);
José Fonsecac0472f92009-08-21 07:42:29 +0100756
José Fonseca98971802009-08-22 12:39:44 +0100757 depth_ptr_i = LLVMBuildGEP(builder, depth_ptr, &index, 1, "");
José Fonseca3d7a8862009-08-21 13:49:10 +0100758
José Fonseca635c37e2009-08-23 07:38:41 +0100759 generate_fs(lp, shader, key,
José Fonseca98971802009-08-22 12:39:44 +0100760 builder,
761 fs_type,
José Fonseca635c37e2009-08-23 07:38:41 +0100762 context_ptr,
José Fonseca98971802009-08-22 12:39:44 +0100763 i,
José Fonsecaf85c5f82009-08-23 12:28:34 +0100764 &interp,
José Fonseca8be72bb2009-09-06 11:20:14 +0100765 sampler,
Brian Paulab943812009-12-16 16:02:59 -0700766 &fs_mask[i], /* output */
José Fonseca98971802009-08-22 12:39:44 +0100767 out_color,
Brian Paulab943812009-12-16 16:02:59 -0700768 depth_ptr_i,
Brian Paul2797f2b2010-01-15 11:21:16 -0700769 do_tri_test,
Brian Paulab943812009-12-16 16:02:59 -0700770 c0, c1, c2,
771 step0_ptr, step1_ptr, step2_ptr);
José Fonsecae3b38e52009-08-21 07:48:04 +0100772
Keith Whitwellc1a04412010-01-10 17:22:09 +0000773 for(cbuf = 0; cbuf < key->nr_cbufs; cbuf++)
774 for(chan = 0; chan < NUM_CHANNELS; ++chan)
775 fs_out_color[cbuf][chan][i] = out_color[cbuf][chan];
José Fonseca73af91e2009-08-14 10:27:32 +0100776 }
777
José Fonseca8be72bb2009-09-06 11:20:14 +0100778 sampler->destroy(sampler);
779
Keith Whitwellc1a04412010-01-10 17:22:09 +0000780 /* Loop over color outputs / color buffers to do blending.
José Fonseca5811ed82009-08-22 22:26:55 +0100781 */
Keith Whitwellc1a04412010-01-10 17:22:09 +0000782 for(cbuf = 0; cbuf < key->nr_cbufs; cbuf++) {
783 LLVMValueRef color_ptr;
784 LLVMValueRef index = LLVMConstInt(LLVMInt32Type(), cbuf, 0);
José Fonseca5811ed82009-08-22 22:26:55 +0100785
Keith Whitwellc1a04412010-01-10 17:22:09 +0000786 /*
787 * Convert the fs's output color and mask to fit to the blending type.
788 */
789 for(chan = 0; chan < NUM_CHANNELS; ++chan) {
790 lp_build_conv(builder, fs_type, blend_type,
791 fs_out_color[cbuf][chan], num_fs,
792 &blend_in_color[chan], 1);
793 lp_build_name(blend_in_color[chan], "color%d.%c", cbuf, "rgba"[chan]);
794 }
José Fonseca635c37e2009-08-23 07:38:41 +0100795
Keith Whitwellc1a04412010-01-10 17:22:09 +0000796 lp_build_conv_mask(builder, fs_type, blend_type,
797 fs_mask, num_fs,
798 &blend_mask, 1);
799
800 color_ptr = LLVMBuildLoad(builder,
801 LLVMBuildGEP(builder, color_ptr_ptr, &index, 1, ""),
802 "");
803 lp_build_name(color_ptr, "color_ptr%d", cbuf);
804
805 /*
806 * Blending.
807 */
808 generate_blend(&key->blend,
809 builder,
810 blend_type,
811 context_ptr,
812 blend_mask,
813 blend_in_color,
814 color_ptr);
José Fonseca98971802009-08-22 12:39:44 +0100815 }
José Fonsecae3b38e52009-08-21 07:48:04 +0100816
José Fonseca5811ed82009-08-22 22:26:55 +0100817 LLVMBuildRetVoid(builder);
José Fonseca73af91e2009-08-14 10:27:32 +0100818
819 LLVMDisposeBuilder(builder);
José Fonseca946f4322009-07-26 23:44:38 +0100820
José Fonseca5811ed82009-08-22 22:26:55 +0100821
Brian Paulf4321fb2010-01-08 14:49:34 -0700822 /* Verify the LLVM IR. If invalid, dump and abort */
José Fonseca4ae3e882009-11-23 11:21:11 +0000823#ifdef DEBUG
Brian Paul3b1920a2010-01-15 10:25:59 -0700824 if(LLVMVerifyFunction(function, LLVMPrintMessageAction)) {
Brian Paulf4321fb2010-01-08 14:49:34 -0700825 if (1)
Brian Paul3b1920a2010-01-15 10:25:59 -0700826 LLVMDumpValue(function);
Brian Paulf4321fb2010-01-08 14:49:34 -0700827 abort();
José Fonsecaa02ecdf2009-09-29 17:22:39 +0100828 }
José Fonseca4ae3e882009-11-23 11:21:11 +0000829#endif
José Fonsecaa02ecdf2009-09-29 17:22:39 +0100830
Brian Paulf4321fb2010-01-08 14:49:34 -0700831 /* Apply optimizations to LLVM IR */
832 if (1)
Brian Paul3b1920a2010-01-15 10:25:59 -0700833 LLVMRunFunctionPassManager(screen->pass, function);
José Fonseca946f4322009-07-26 23:44:38 +0100834
835 if (LP_DEBUG & DEBUG_JIT) {
Brian Paulf4321fb2010-01-08 14:49:34 -0700836 /* Print the LLVM IR to stderr */
Brian Paul3b1920a2010-01-15 10:25:59 -0700837 LLVMDumpValue(function);
Keith Whitwelldec35d02009-10-09 14:59:35 +0100838 debug_printf("\n");
839 }
José Fonseca73af91e2009-08-14 10:27:32 +0100840
Brian Paulf4321fb2010-01-08 14:49:34 -0700841 /*
842 * Translate the LLVM IR into machine code.
843 */
Brian Paul2797f2b2010-01-15 11:21:16 -0700844 variant->jit_function[do_tri_test] = (lp_jit_frag_func)LLVMGetPointerToGlobal(screen->engine, function);
José Fonseca946f4322009-07-26 23:44:38 +0100845
Keith Whitwelldec35d02009-10-09 14:59:35 +0100846 if (LP_DEBUG & DEBUG_ASM)
Brian Paul2797f2b2010-01-15 11:21:16 -0700847 lp_disassemble(variant->jit_function[do_tri_test]);
Brian Paul3b5d8492010-01-11 13:16:00 -0700848}
849
850
851static struct lp_fragment_shader_variant *
852generate_variant(struct llvmpipe_context *lp,
853 struct lp_fragment_shader *shader,
854 const struct lp_fragment_shader_variant_key *key)
855{
856 struct lp_fragment_shader_variant *variant;
857
858 if (LP_DEBUG & DEBUG_JIT) {
859 unsigned i;
860
José Fonseca946f4322009-07-26 23:44:38 +0100861 tgsi_dump(shader->base.tokens, 0);
José Fonseca5fcb7572009-10-25 11:49:01 +0000862 if(key->depth.enabled) {
José Fonseca946f4322009-07-26 23:44:38 +0100863 debug_printf("depth.format = %s\n", pf_name(key->zsbuf_format));
864 debug_printf("depth.func = %s\n", debug_dump_func(key->depth.func, TRUE));
865 debug_printf("depth.writemask = %u\n", key->depth.writemask);
866 }
867 if(key->alpha.enabled) {
868 debug_printf("alpha.func = %s\n", debug_dump_func(key->alpha.func, TRUE));
869 debug_printf("alpha.ref_value = %f\n", key->alpha.ref_value);
870 }
871 if(key->blend.logicop_enable) {
872 debug_printf("blend.logicop_func = %u\n", key->blend.logicop_func);
873 }
Roland Scheidegger04cb5df2010-01-20 18:27:53 +0100874 else if(key->blend.rt[0].blend_enable) {
875 debug_printf("blend.rgb_func = %s\n", debug_dump_blend_func (key->blend.rt[0].rgb_func, TRUE));
876 debug_printf("rgb_src_factor = %s\n", debug_dump_blend_factor(key->blend.rt[0].rgb_src_factor, TRUE));
877 debug_printf("rgb_dst_factor = %s\n", debug_dump_blend_factor(key->blend.rt[0].rgb_dst_factor, TRUE));
878 debug_printf("alpha_func = %s\n", debug_dump_blend_func (key->blend.rt[0].alpha_func, TRUE));
879 debug_printf("alpha_src_factor = %s\n", debug_dump_blend_factor(key->blend.rt[0].alpha_src_factor, TRUE));
880 debug_printf("alpha_dst_factor = %s\n", debug_dump_blend_factor(key->blend.rt[0].alpha_dst_factor, TRUE));
José Fonseca946f4322009-07-26 23:44:38 +0100881 }
Roland Scheidegger04cb5df2010-01-20 18:27:53 +0100882 debug_printf("blend.colormask = 0x%x\n", key->blend.rt[0].colormask);
José Fonseca5fcb7572009-10-25 11:49:01 +0000883 for(i = 0; i < PIPE_MAX_SAMPLERS; ++i) {
884 if(key->sampler[i].format) {
José Fonseca88e08d72009-10-25 12:27:14 +0000885 debug_printf("sampler[%u] = \n", i);
886 debug_printf(" .format = %s\n",
887 pf_name(key->sampler[i].format));
888 debug_printf(" .target = %s\n",
889 debug_dump_tex_target(key->sampler[i].target, TRUE));
890 debug_printf(" .pot = %u %u %u\n",
891 key->sampler[i].pot_width,
892 key->sampler[i].pot_height,
893 key->sampler[i].pot_depth);
894 debug_printf(" .wrap = %s %s %s\n",
895 debug_dump_tex_wrap(key->sampler[i].wrap_s, TRUE),
896 debug_dump_tex_wrap(key->sampler[i].wrap_t, TRUE),
897 debug_dump_tex_wrap(key->sampler[i].wrap_r, TRUE));
898 debug_printf(" .min_img_filter = %s\n",
899 debug_dump_tex_filter(key->sampler[i].min_img_filter, TRUE));
900 debug_printf(" .min_mip_filter = %s\n",
901 debug_dump_tex_mipfilter(key->sampler[i].min_mip_filter, TRUE));
902 debug_printf(" .mag_img_filter = %s\n",
José Fonseca5fcb7572009-10-25 11:49:01 +0000903 debug_dump_tex_filter(key->sampler[i].mag_img_filter, TRUE));
José Fonseca88e08d72009-10-25 12:27:14 +0000904 if(key->sampler[i].compare_mode != PIPE_TEX_COMPARE_NONE)
José Fonseca5fcb7572009-10-25 11:49:01 +0000905 debug_printf(" .compare_func = %s\n", debug_dump_func(key->sampler[i].compare_func, TRUE));
906 debug_printf(" .normalized_coords = %u\n", key->sampler[i].normalized_coords);
907 debug_printf(" .prefilter = %u\n", key->sampler[i].prefilter);
908 }
909 }
José Fonseca946f4322009-07-26 23:44:38 +0100910 }
911
912 variant = CALLOC_STRUCT(lp_fragment_shader_variant);
913 if(!variant)
914 return NULL;
915
916 variant->shader = shader;
917 memcpy(&variant->key, key, sizeof *key);
918
Brian Paul2797f2b2010-01-15 11:21:16 -0700919 generate_fragment(lp, shader, variant, 0);
920 generate_fragment(lp, shader, variant, 1);
José Fonseca946f4322009-07-26 23:44:38 +0100921
Brian Paul3b1920a2010-01-15 10:25:59 -0700922 /* insert new variant into linked list */
José Fonseca9ae47062009-08-19 20:42:50 +0100923 variant->next = shader->variants;
924 shader->variants = variant;
925
926 return variant;
927}
928
929
930void *
931llvmpipe_create_fs_state(struct pipe_context *pipe,
932 const struct pipe_shader_state *templ)
933{
José Fonseca9ae47062009-08-19 20:42:50 +0100934 struct lp_fragment_shader *shader;
935
936 shader = CALLOC_STRUCT(lp_fragment_shader);
937 if (!shader)
938 return NULL;
939
940 /* get/save the summary info for this shader */
941 tgsi_scan_shader(templ->tokens, &shader->info);
942
943 /* we need to keep a local copy of the tokens */
944 shader->base.tokens = tgsi_dup_tokens(templ->tokens);
945
José Fonseca73af91e2009-08-14 10:27:32 +0100946 return shader;
José Fonseca946f4322009-07-26 23:44:38 +0100947}
948
949
950void
951llvmpipe_bind_fs_state(struct pipe_context *pipe, void *fs)
952{
953 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
954
José Fonseca080703e2009-12-26 15:21:16 +0000955 if (llvmpipe->fs == fs)
956 return;
957
958 draw_flush(llvmpipe->draw);
959
960 llvmpipe->fs = fs;
José Fonseca946f4322009-07-26 23:44:38 +0100961
José Fonsecac9a59302009-07-27 11:36:24 +0100962 llvmpipe->dirty |= LP_NEW_FS;
José Fonseca946f4322009-07-26 23:44:38 +0100963}
964
965
966void
967llvmpipe_delete_fs_state(struct pipe_context *pipe, void *fs)
968{
José Fonsecae3b38e52009-08-21 07:48:04 +0100969 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
970 struct llvmpipe_screen *screen = llvmpipe_screen(pipe->screen);
José Fonseca73af91e2009-08-14 10:27:32 +0100971 struct lp_fragment_shader *shader = fs;
José Fonseca9ae47062009-08-19 20:42:50 +0100972 struct lp_fragment_shader_variant *variant;
José Fonseca946f4322009-07-26 23:44:38 +0100973
José Fonsecae3b38e52009-08-21 07:48:04 +0100974 assert(fs != llvmpipe->fs);
Vinson Lee31d18222009-12-28 00:44:30 -0800975 (void) llvmpipe;
José Fonseca9ae47062009-08-19 20:42:50 +0100976
977 variant = shader->variants;
978 while(variant) {
979 struct lp_fragment_shader_variant *next = variant->next;
Brian Paul2797f2b2010-01-15 11:21:16 -0700980 unsigned i;
José Fonseca9ae47062009-08-19 20:42:50 +0100981
Brian Paul2797f2b2010-01-15 11:21:16 -0700982 for (i = 0; i < Elements(variant->function); i++) {
983 if (variant->function[i]) {
984 if (variant->jit_function[i])
985 LLVMFreeMachineCodeForFunction(screen->engine,
986 variant->function[i]);
987 LLVMDeleteFunction(variant->function[i]);
988 }
José Fonseca9ae47062009-08-19 20:42:50 +0100989 }
990
991 FREE(variant);
992
993 variant = next;
José Fonseca73af91e2009-08-14 10:27:32 +0100994 }
995
996 FREE((void *) shader->base.tokens);
997 FREE(shader);
José Fonseca946f4322009-07-26 23:44:38 +0100998}
999
1000
José Fonseca946f4322009-07-26 23:44:38 +01001001
1002void
1003llvmpipe_set_constant_buffer(struct pipe_context *pipe,
1004 uint shader, uint index,
Roland Scheidegger70c8d2a2010-01-11 16:30:48 +01001005 struct pipe_buffer *constants)
José Fonseca946f4322009-07-26 23:44:38 +01001006{
1007 struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
Roland Scheidegger12785072009-12-24 00:55:49 +01001008 unsigned size = constants ? constants->size : 0;
1009 const void *data = constants ? llvmpipe_buffer(constants)->data : NULL;
José Fonseca946f4322009-07-26 23:44:38 +01001010
1011 assert(shader < PIPE_SHADER_TYPES);
1012 assert(index == 0);
1013
José Fonsecaba5d6002010-01-16 23:21:06 +00001014 if(llvmpipe->constants[shader] == constants)
José Fonsecad904ed82009-10-09 13:41:33 +01001015 return;
1016
José Fonseca080703e2009-12-26 15:21:16 +00001017 draw_flush(llvmpipe->draw);
José Fonseca69588d72009-10-09 11:29:33 +01001018
José Fonseca946f4322009-07-26 23:44:38 +01001019 /* note: reference counting */
Roland Scheidegger12785072009-12-24 00:55:49 +01001020 pipe_buffer_reference(&llvmpipe->constants[shader], constants);
José Fonseca69588d72009-10-09 11:29:33 +01001021
José Fonseca69588d72009-10-09 11:29:33 +01001022 if(shader == PIPE_SHADER_VERTEX) {
Michal Krol98516442010-01-25 12:36:50 +01001023 draw_set_mapped_constant_buffer(llvmpipe->draw, PIPE_SHADER_VERTEX, 0,
Zack Rusin89d85772009-12-14 17:11:46 -05001024 data, size);
José Fonseca69588d72009-10-09 11:29:33 +01001025 }
José Fonseca946f4322009-07-26 23:44:38 +01001026
José Fonsecac9a59302009-07-27 11:36:24 +01001027 llvmpipe->dirty |= LP_NEW_CONSTANTS;
José Fonseca946f4322009-07-26 23:44:38 +01001028}
José Fonseca9ae47062009-08-19 20:42:50 +01001029
1030
José Fonseca635c37e2009-08-23 07:38:41 +01001031/**
1032 * We need to generate several variants of the fragment pipeline to match
1033 * all the combinations of the contributing state atoms.
1034 *
1035 * TODO: there is actually no reason to tie this to context state -- the
1036 * generated code could be cached globally in the screen.
1037 */
1038static void
1039make_variant_key(struct llvmpipe_context *lp,
José Fonsecae4c76c02009-09-07 14:52:39 +01001040 struct lp_fragment_shader *shader,
José Fonseca635c37e2009-08-23 07:38:41 +01001041 struct lp_fragment_shader_variant_key *key)
1042{
José Fonsecae4c76c02009-09-07 14:52:39 +01001043 unsigned i;
1044
José Fonseca635c37e2009-08-23 07:38:41 +01001045 memset(key, 0, sizeof *key);
1046
José Fonsecacdbbcdf2009-09-09 21:16:06 +01001047 if(lp->framebuffer.zsbuf &&
1048 lp->depth_stencil->depth.enabled) {
1049 key->zsbuf_format = lp->framebuffer.zsbuf->format;
1050 memcpy(&key->depth, &lp->depth_stencil->depth, sizeof key->depth);
1051 }
José Fonseca635c37e2009-08-23 07:38:41 +01001052
1053 key->alpha.enabled = lp->depth_stencil->alpha.enabled;
1054 if(key->alpha.enabled)
1055 key->alpha.func = lp->depth_stencil->alpha.func;
1056 /* alpha.ref_value is passed in jit_context */
1057
Keith Whitwell86f45002010-01-11 12:06:51 +00001058 key->flatshade = lp->rasterizer->flatshade;
Brian Paul44614422010-01-14 19:15:00 -07001059 key->scissor = lp->rasterizer->scissor;
Keith Whitwell86f45002010-01-11 12:06:51 +00001060
Keith Whitwellc1a04412010-01-10 17:22:09 +00001061 if (lp->framebuffer.nr_cbufs) {
1062 memcpy(&key->blend, lp->blend, sizeof key->blend);
1063 }
1064
1065 key->nr_cbufs = lp->framebuffer.nr_cbufs;
1066 for (i = 0; i < lp->framebuffer.nr_cbufs; i++) {
José Fonseca4c3a48a2009-09-10 12:37:44 +01001067 const struct util_format_description *format_desc;
1068 unsigned chan;
1069
Keith Whitwellc1a04412010-01-10 17:22:09 +00001070 format_desc = util_format_description(lp->framebuffer.cbufs[i]->format);
José Fonseca4c3a48a2009-09-10 12:37:44 +01001071 assert(format_desc->layout == UTIL_FORMAT_COLORSPACE_RGB ||
1072 format_desc->layout == UTIL_FORMAT_COLORSPACE_SRGB);
1073
Keith Whitwellc1a04412010-01-10 17:22:09 +00001074 /* mask out color channels not present in the color buffer.
1075 * Should be simple to incorporate per-cbuf writemasks:
1076 */
José Fonseca4c3a48a2009-09-10 12:37:44 +01001077 for(chan = 0; chan < 4; ++chan) {
1078 enum util_format_swizzle swizzle = format_desc->swizzle[chan];
Keith Whitwellc1a04412010-01-10 17:22:09 +00001079
1080 if(swizzle <= UTIL_FORMAT_SWIZZLE_W)
José Fonsecabee99642010-01-31 05:36:33 +00001081 key->blend.rt[0].colormask |= (1 << chan);
José Fonseca4c3a48a2009-09-10 12:37:44 +01001082 }
1083 }
José Fonsecae4c76c02009-09-07 14:52:39 +01001084
1085 for(i = 0; i < PIPE_MAX_SAMPLERS; ++i)
1086 if(shader->info.file_mask[TGSI_FILE_SAMPLER] & (1 << i))
1087 lp_sampler_static_state(&key->sampler[i], lp->texture[i], lp->sampler[i]);
José Fonseca635c37e2009-08-23 07:38:41 +01001088}
1089
1090
Brian Paul47693282010-01-13 10:58:36 -07001091/**
1092 * Update fragment state. This is called just prior to drawing
1093 * something when some fragment-related state has changed.
1094 */
José Fonseca5811ed82009-08-22 22:26:55 +01001095void
1096llvmpipe_update_fs(struct llvmpipe_context *lp)
José Fonseca9ae47062009-08-19 20:42:50 +01001097{
1098 struct lp_fragment_shader *shader = lp->fs;
José Fonsecae3b38e52009-08-21 07:48:04 +01001099 struct lp_fragment_shader_variant_key key;
José Fonseca9ae47062009-08-19 20:42:50 +01001100 struct lp_fragment_shader_variant *variant;
José Fonsecaa1acbff2010-01-13 21:51:47 +00001101 boolean opaque;
José Fonseca9ae47062009-08-19 20:42:50 +01001102
José Fonsecae4c76c02009-09-07 14:52:39 +01001103 make_variant_key(lp, shader, &key);
José Fonsecae3b38e52009-08-21 07:48:04 +01001104
José Fonseca9ae47062009-08-19 20:42:50 +01001105 variant = shader->variants;
1106 while(variant) {
José Fonsecae3b38e52009-08-21 07:48:04 +01001107 if(memcmp(&variant->key, &key, sizeof key) == 0)
José Fonseca9ae47062009-08-19 20:42:50 +01001108 break;
1109
1110 variant = variant->next;
1111 }
1112
Brian Paule95ad2a2010-01-27 13:49:43 -07001113 if (!variant) {
1114 struct util_time t0, t1;
1115 int64_t dt;
1116 util_time_get(&t0);
1117
Brian Paul3b5d8492010-01-11 13:16:00 -07001118 variant = generate_variant(lp, shader, &key);
José Fonseca9ae47062009-08-19 20:42:50 +01001119
Brian Paule95ad2a2010-01-27 13:49:43 -07001120 util_time_get(&t1);
1121 dt = util_time_diff(&t0, &t1);
1122 LP_COUNT_ADD(llvm_compile_time, dt);
1123 LP_COUNT_ADD(nr_llvm_compiles, 2); /* emit vs. omit in/out test */
1124 }
José Fonseca9ae47062009-08-19 20:42:50 +01001125
1126 shader->current = variant;
José Fonseca85999692009-10-09 15:52:18 +01001127
José Fonsecaa1acbff2010-01-13 21:51:47 +00001128 /* TODO: put this in the variant */
José Fonseca7df4c882010-01-13 22:07:24 +00001129 /* TODO: most of these can be relaxed, in particular the colormask */
José Fonsecaa1acbff2010-01-13 21:51:47 +00001130 opaque = !key.blend.logicop_enable &&
José Fonsecabee99642010-01-31 05:36:33 +00001131 !key.blend.rt[0].blend_enable &&
1132 key.blend.rt[0].colormask == 0xf &&
José Fonsecaa1acbff2010-01-13 21:51:47 +00001133 !key.alpha.enabled &&
1134 !key.depth.enabled &&
Brian Paul44614422010-01-14 19:15:00 -07001135 !key.scissor &&
José Fonsecaa1acbff2010-01-13 21:51:47 +00001136 !shader->info.uses_kill
1137 ? TRUE : FALSE;
1138
Brian Paul2797f2b2010-01-15 11:21:16 -07001139 lp_setup_set_fs_functions(lp->setup,
1140 shader->current->jit_function[0],
1141 shader->current->jit_function[1],
1142 opaque);
José Fonseca9ae47062009-08-19 20:42:50 +01001143}