blob: 3aa271ea832a850e40b6afece57cd2fb34e53a86 [file] [log] [blame]
Tom Stellarda75c6162012-01-06 17:38:37 -05001
Christian Königce40e472012-08-02 12:14:59 +02002/*
3 * Copyright 2012 Advanced Micro Devices, Inc.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Tom Stellard <thomas.stellard@amd.com>
26 * Michel Dänzer <michel.daenzer@amd.com>
27 * Christian König <christian.koenig@amd.com>
28 */
29
Tom Stellarda75c6162012-01-06 17:38:37 -050030#include "gallivm/lp_bld_tgsi_action.h"
31#include "gallivm/lp_bld_const.h"
Michel Dänzerc2bae6b2012-08-02 17:19:22 +020032#include "gallivm/lp_bld_gather.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050033#include "gallivm/lp_bld_intr.h"
Michel Dänzer7708a862012-11-02 15:57:30 +010034#include "gallivm/lp_bld_logic.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050035#include "gallivm/lp_bld_tgsi.h"
Christian König5e616cf2013-03-07 11:58:56 +010036#include "gallivm/lp_bld_arit.h"
Marek Olšák8d03d922013-09-01 23:59:06 +020037#include "gallivm/lp_bld_flow.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050038#include "radeon_llvm.h"
Tom Stellard509ddb02012-04-16 17:48:44 -040039#include "radeon_llvm_emit.h"
Christian König0f6cf2b2013-03-15 15:53:25 +010040#include "util/u_memory.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050041#include "tgsi/tgsi_info.h"
42#include "tgsi/tgsi_parse.h"
43#include "tgsi/tgsi_scan.h"
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +010044#include "tgsi/tgsi_util.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050045#include "tgsi/tgsi_dump.h"
46
47#include "radeonsi_pipe.h"
48#include "radeonsi_shader.h"
Christian Königf67fae02012-07-17 23:43:00 +020049#include "si_state.h"
Tom Stellarda75c6162012-01-06 17:38:37 -050050#include "sid.h"
51
52#include <assert.h>
53#include <errno.h>
54#include <stdio.h>
55
Tom Stellarda75c6162012-01-06 17:38:37 -050056struct si_shader_context
57{
58 struct radeon_llvm_context radeon_bld;
Tom Stellarda75c6162012-01-06 17:38:37 -050059 struct tgsi_parse_context parse;
60 struct tgsi_token * tokens;
61 struct si_pipe_shader *shader;
62 unsigned type; /* TGSI_PROCESSOR_* specifies the type of shader. */
Marek Olšák8d03d922013-09-01 23:59:06 +020063 int param_streamout_config;
64 int param_streamout_write_index;
65 int param_streamout_offset[4];
66 int param_vertex_id;
67 int param_instance_id;
Christian König206f0592013-03-20 14:37:21 +010068 LLVMValueRef const_md;
Christian König0f6cf2b2013-03-15 15:53:25 +010069 LLVMValueRef const_resource;
Michel Dänzera06ee5a2013-06-19 18:14:01 +020070#if HAVE_LLVM >= 0x0304
71 LLVMValueRef ddxy_lds;
72#endif
Christian König0f6cf2b2013-03-15 15:53:25 +010073 LLVMValueRef *constants;
Christian König1c100182013-03-17 16:02:42 +010074 LLVMValueRef *resources;
75 LLVMValueRef *samplers;
Marek Olšák8d03d922013-09-01 23:59:06 +020076 LLVMValueRef so_buffers[4];
Tom Stellarda75c6162012-01-06 17:38:37 -050077};
78
79static struct si_shader_context * si_shader_context(
80 struct lp_build_tgsi_context * bld_base)
81{
82 return (struct si_shader_context *)bld_base;
83}
84
85
86#define PERSPECTIVE_BASE 0
87#define LINEAR_BASE 9
88
89#define SAMPLE_OFFSET 0
90#define CENTER_OFFSET 2
91#define CENTROID_OFSET 4
92
93#define USE_SGPR_MAX_SUFFIX_LEN 5
Tom Stellard467f5162012-05-16 15:15:35 -040094#define CONST_ADDR_SPACE 2
Michel Dänzera06ee5a2013-06-19 18:14:01 +020095#define LOCAL_ADDR_SPACE 3
Tom Stellard89ece082012-05-29 11:36:29 -040096#define USER_SGPR_ADDR_SPACE 8
Tom Stellarda75c6162012-01-06 17:38:37 -050097
Tom Stellard467f5162012-05-16 15:15:35 -040098/**
99 * Build an LLVM bytecode indexed load using LLVMBuildGEP + LLVMBuildLoad
100 *
101 * @param offset The offset parameter specifies the number of
102 * elements to offset, not the number of bytes or dwords. An element is the
103 * the type pointed to by the base_ptr parameter (e.g. int is the element of
104 * an int* pointer)
105 *
106 * When LLVM lowers the load instruction, it will convert the element offset
107 * into a dword offset automatically.
108 *
109 */
110static LLVMValueRef build_indexed_load(
Christian König206f0592013-03-20 14:37:21 +0100111 struct si_shader_context * si_shader_ctx,
Tom Stellard467f5162012-05-16 15:15:35 -0400112 LLVMValueRef base_ptr,
113 LLVMValueRef offset)
114{
Christian König206f0592013-03-20 14:37:21 +0100115 struct lp_build_context * base = &si_shader_ctx->radeon_bld.soa.bld_base.base;
Tom Stellard467f5162012-05-16 15:15:35 -0400116
Christian König206f0592013-03-20 14:37:21 +0100117 LLVMValueRef computed_ptr = LLVMBuildGEP(
118 base->gallivm->builder, base_ptr, &offset, 1, "");
119
120 LLVMValueRef result = LLVMBuildLoad(base->gallivm->builder, computed_ptr, "");
121 LLVMSetMetadata(result, 1, si_shader_ctx->const_md);
122 return result;
Tom Stellard467f5162012-05-16 15:15:35 -0400123}
124
Marek Olšákf317ce52013-09-05 15:39:57 +0200125static LLVMValueRef get_instance_index_for_fetch(
Christian Königa0dca442013-03-22 15:59:22 +0100126 struct radeon_llvm_context * radeon_bld,
127 unsigned divisor)
128{
Marek Olšák8d03d922013-09-01 23:59:06 +0200129 struct si_shader_context *si_shader_ctx =
130 si_shader_context(&radeon_bld->soa.bld_base);
Christian Königa0dca442013-03-22 15:59:22 +0100131 struct gallivm_state * gallivm = radeon_bld->soa.bld_base.base.gallivm;
132
Marek Olšák8d03d922013-09-01 23:59:06 +0200133 LLVMValueRef result = LLVMGetParam(radeon_bld->main_fn,
134 si_shader_ctx->param_instance_id);
Christian Königa0dca442013-03-22 15:59:22 +0100135 result = LLVMBuildAdd(gallivm->builder, result, LLVMGetParam(
136 radeon_bld->main_fn, SI_PARAM_START_INSTANCE), "");
137
138 if (divisor > 1)
139 result = LLVMBuildUDiv(gallivm->builder, result,
140 lp_build_const_int32(gallivm, divisor), "");
141
142 return result;
143}
144
Tom Stellarda75c6162012-01-06 17:38:37 -0500145static void declare_input_vs(
146 struct si_shader_context * si_shader_ctx,
147 unsigned input_index,
148 const struct tgsi_full_declaration *decl)
149{
Christian Königa0dca442013-03-22 15:59:22 +0100150 struct lp_build_context * base = &si_shader_ctx->radeon_bld.soa.bld_base.base;
151 unsigned divisor = si_shader_ctx->shader->key.vs.instance_divisors[input_index];
152
153 unsigned chan;
154
Tom Stellarda75c6162012-01-06 17:38:37 -0500155 LLVMValueRef t_list_ptr;
156 LLVMValueRef t_offset;
Tom Stellard467f5162012-05-16 15:15:35 -0400157 LLVMValueRef t_list;
Tom Stellarda75c6162012-01-06 17:38:37 -0500158 LLVMValueRef attribute_offset;
Christian Königa0dca442013-03-22 15:59:22 +0100159 LLVMValueRef buffer_index;
Tom Stellard467f5162012-05-16 15:15:35 -0400160 LLVMValueRef args[3];
Tom Stellarda75c6162012-01-06 17:38:37 -0500161 LLVMTypeRef vec4_type;
162 LLVMValueRef input;
Tom Stellarda75c6162012-01-06 17:38:37 -0500163
Tom Stellard467f5162012-05-16 15:15:35 -0400164 /* Load the T list */
Christian König55fe5cc2013-03-04 16:30:06 +0100165 t_list_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_VERTEX_BUFFER);
Tom Stellarda75c6162012-01-06 17:38:37 -0500166
Christian Königb15e3ae2012-07-25 11:22:59 +0200167 t_offset = lp_build_const_int32(base->gallivm, input_index);
Tom Stellard467f5162012-05-16 15:15:35 -0400168
Christian König206f0592013-03-20 14:37:21 +0100169 t_list = build_indexed_load(si_shader_ctx, t_list_ptr, t_offset);
Tom Stellard467f5162012-05-16 15:15:35 -0400170
171 /* Build the attribute offset */
Christian Königb15e3ae2012-07-25 11:22:59 +0200172 attribute_offset = lp_build_const_int32(base->gallivm, 0);
Tom Stellarda75c6162012-01-06 17:38:37 -0500173
Christian Königa0dca442013-03-22 15:59:22 +0100174 if (divisor) {
175 /* Build index from instance ID, start instance and divisor */
176 si_shader_ctx->shader->shader.uses_instanceid = true;
Marek Olšákf317ce52013-09-05 15:39:57 +0200177 buffer_index = get_instance_index_for_fetch(&si_shader_ctx->radeon_bld, divisor);
Christian Königa0dca442013-03-22 15:59:22 +0100178 } else {
179 /* Load the buffer index, which is always stored in VGPR0
180 * for Vertex Shaders */
Marek Olšák8d03d922013-09-01 23:59:06 +0200181 buffer_index = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn,
182 si_shader_ctx->param_vertex_id);
Christian Königa0dca442013-03-22 15:59:22 +0100183 }
Tom Stellarda75c6162012-01-06 17:38:37 -0500184
185 vec4_type = LLVMVectorType(base->elem_type, 4);
Tom Stellard467f5162012-05-16 15:15:35 -0400186 args[0] = t_list;
187 args[1] = attribute_offset;
Christian Königa0dca442013-03-22 15:59:22 +0100188 args[2] = buffer_index;
Christian König44e32242013-03-20 12:10:35 +0100189 input = build_intrinsic(base->gallivm->builder,
190 "llvm.SI.vs.load.input", vec4_type, args, 3,
191 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Tom Stellarda75c6162012-01-06 17:38:37 -0500192
193 /* Break up the vec4 into individual components */
194 for (chan = 0; chan < 4; chan++) {
195 LLVMValueRef llvm_chan = lp_build_const_int32(base->gallivm, chan);
196 /* XXX: Use a helper function for this. There is one in
197 * tgsi_llvm.c. */
198 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, chan)] =
199 LLVMBuildExtractElement(base->gallivm->builder,
200 input, llvm_chan, "");
201 }
202}
203
204static void declare_input_fs(
205 struct si_shader_context * si_shader_ctx,
206 unsigned input_index,
207 const struct tgsi_full_declaration *decl)
208{
Michel Dänzerc3db19e2012-09-27 20:01:33 +0200209 struct si_shader *shader = &si_shader_ctx->shader->shader;
Tom Stellarda75c6162012-01-06 17:38:37 -0500210 struct lp_build_context * base =
211 &si_shader_ctx->radeon_bld.soa.bld_base.base;
Michel Dänzer237cb072013-08-21 18:00:35 +0200212 struct lp_build_context *uint =
213 &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
Tom Stellarda75c6162012-01-06 17:38:37 -0500214 struct gallivm_state * gallivm = base->gallivm;
Tom Stellard0fb1e682012-09-06 16:18:11 -0400215 LLVMTypeRef input_type = LLVMFloatTypeInContext(gallivm->context);
Christian König0666ffd2013-03-05 15:07:39 +0100216 LLVMValueRef main_fn = si_shader_ctx->radeon_bld.main_fn;
217
218 LLVMValueRef interp_param;
219 const char * intr_name;
Tom Stellarda75c6162012-01-06 17:38:37 -0500220
221 /* This value is:
222 * [15:0] NewPrimMask (Bit mask for each quad. It is set it the
223 * quad begins a new primitive. Bit 0 always needs
224 * to be unset)
225 * [32:16] ParamOffset
226 *
227 */
Christian König55fe5cc2013-03-04 16:30:06 +0100228 LLVMValueRef params = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_PRIM_MASK);
Michel Dänzerc3db19e2012-09-27 20:01:33 +0200229 LLVMValueRef attr_number;
Tom Stellarda75c6162012-01-06 17:38:37 -0500230
Christian König0666ffd2013-03-05 15:07:39 +0100231 unsigned chan;
232
Tom Stellard0fb1e682012-09-06 16:18:11 -0400233 if (decl->Semantic.Name == TGSI_SEMANTIC_POSITION) {
234 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
Tom Stellard0fb1e682012-09-06 16:18:11 -0400235 unsigned soa_index =
236 radeon_llvm_reg_index_soa(input_index, chan);
Tom Stellard0fb1e682012-09-06 16:18:11 -0400237 si_shader_ctx->radeon_bld.inputs[soa_index] =
Christian König0666ffd2013-03-05 15:07:39 +0100238 LLVMGetParam(main_fn, SI_PARAM_POS_X_FLOAT + chan);
Michel Dänzer954bc4a2013-02-13 15:57:23 +0100239
240 if (chan == 3)
241 /* RCP for fragcoord.w */
242 si_shader_ctx->radeon_bld.inputs[soa_index] =
243 LLVMBuildFDiv(gallivm->builder,
244 lp_build_const_float(gallivm, 1.0f),
245 si_shader_ctx->radeon_bld.inputs[soa_index],
246 "");
Tom Stellard0fb1e682012-09-06 16:18:11 -0400247 }
248 return;
249 }
250
Michel Dänzer97078b12012-09-25 12:41:31 +0200251 if (decl->Semantic.Name == TGSI_SEMANTIC_FACE) {
252 LLVMValueRef face, is_face_positive;
253
Christian König0666ffd2013-03-05 15:07:39 +0100254 face = LLVMGetParam(main_fn, SI_PARAM_FRONT_FACE);
255
Michel Dänzer97078b12012-09-25 12:41:31 +0200256 is_face_positive = LLVMBuildFCmp(gallivm->builder,
257 LLVMRealUGT, face,
258 lp_build_const_float(gallivm, 0.0f),
259 "");
260
261 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 0)] =
262 LLVMBuildSelect(gallivm->builder,
263 is_face_positive,
264 lp_build_const_float(gallivm, 1.0f),
265 lp_build_const_float(gallivm, 0.0f),
266 "");
267 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 1)] =
268 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 2)] =
269 lp_build_const_float(gallivm, 0.0f);
270 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 3)] =
271 lp_build_const_float(gallivm, 1.0f);
272
273 return;
274 }
275
Michel Dänzerc3db19e2012-09-27 20:01:33 +0200276 shader->input[input_index].param_offset = shader->ninterp++;
277 attr_number = lp_build_const_int32(gallivm,
278 shader->input[input_index].param_offset);
279
Tom Stellarda75c6162012-01-06 17:38:37 -0500280 /* XXX: Handle all possible interpolation modes */
Francisco Jerez12799232012-04-30 18:27:52 +0200281 switch (decl->Interp.Interpolate) {
Tom Stellarda75c6162012-01-06 17:38:37 -0500282 case TGSI_INTERPOLATE_COLOR:
Christian Königa0dca442013-03-22 15:59:22 +0100283 if (si_shader_ctx->shader->key.ps.flatshade) {
Christian König0666ffd2013-03-05 15:07:39 +0100284 interp_param = 0;
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200285 } else {
286 if (decl->Interp.Centroid)
Christian König0666ffd2013-03-05 15:07:39 +0100287 interp_param = LLVMGetParam(main_fn, SI_PARAM_PERSP_CENTROID);
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200288 else
Christian König0666ffd2013-03-05 15:07:39 +0100289 interp_param = LLVMGetParam(main_fn, SI_PARAM_PERSP_CENTER);
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200290 }
Tom Stellarda75c6162012-01-06 17:38:37 -0500291 break;
292 case TGSI_INTERPOLATE_CONSTANT:
Christian König0666ffd2013-03-05 15:07:39 +0100293 interp_param = 0;
Tom Stellarda75c6162012-01-06 17:38:37 -0500294 break;
295 case TGSI_INTERPOLATE_LINEAR:
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200296 if (decl->Interp.Centroid)
Christian König0666ffd2013-03-05 15:07:39 +0100297 interp_param = LLVMGetParam(main_fn, SI_PARAM_LINEAR_CENTROID);
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200298 else
Christian König0666ffd2013-03-05 15:07:39 +0100299 interp_param = LLVMGetParam(main_fn, SI_PARAM_LINEAR_CENTER);
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200300 break;
301 case TGSI_INTERPOLATE_PERSPECTIVE:
302 if (decl->Interp.Centroid)
Christian König0666ffd2013-03-05 15:07:39 +0100303 interp_param = LLVMGetParam(main_fn, SI_PARAM_PERSP_CENTROID);
Michel Dänzer1deb2be2012-05-14 16:26:19 +0200304 else
Christian König0666ffd2013-03-05 15:07:39 +0100305 interp_param = LLVMGetParam(main_fn, SI_PARAM_PERSP_CENTER);
Tom Stellarda75c6162012-01-06 17:38:37 -0500306 break;
307 default:
308 fprintf(stderr, "Warning: Unhandled interpolation mode.\n");
309 return;
310 }
311
Christian König0666ffd2013-03-05 15:07:39 +0100312 intr_name = interp_param ? "llvm.SI.fs.interp" : "llvm.SI.fs.constant";
313
Tom Stellarda75c6162012-01-06 17:38:37 -0500314 /* XXX: Could there be more than TGSI_NUM_CHANNELS (4) ? */
Michel Dänzer691f08d2012-09-06 18:03:38 +0200315 if (decl->Semantic.Name == TGSI_SEMANTIC_COLOR &&
Christian Königa0dca442013-03-22 15:59:22 +0100316 si_shader_ctx->shader->key.ps.color_two_side) {
Christian König0666ffd2013-03-05 15:07:39 +0100317 LLVMValueRef args[4];
Michel Dänzer691f08d2012-09-06 18:03:38 +0200318 LLVMValueRef face, is_face_positive;
319 LLVMValueRef back_attr_number =
320 lp_build_const_int32(gallivm,
321 shader->input[input_index].param_offset + 1);
322
Christian König0666ffd2013-03-05 15:07:39 +0100323 face = LLVMGetParam(main_fn, SI_PARAM_FRONT_FACE);
324
Michel Dänzer691f08d2012-09-06 18:03:38 +0200325 is_face_positive = LLVMBuildFCmp(gallivm->builder,
326 LLVMRealUGT, face,
327 lp_build_const_float(gallivm, 0.0f),
328 "");
329
Tom Stellarda75c6162012-01-06 17:38:37 -0500330 args[2] = params;
Christian König0666ffd2013-03-05 15:07:39 +0100331 args[3] = interp_param;
Michel Dänzer691f08d2012-09-06 18:03:38 +0200332 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
333 LLVMValueRef llvm_chan = lp_build_const_int32(gallivm, chan);
334 unsigned soa_index = radeon_llvm_reg_index_soa(input_index, chan);
335 LLVMValueRef front, back;
336
337 args[0] = llvm_chan;
338 args[1] = attr_number;
339 front = build_intrinsic(base->gallivm->builder, intr_name,
Christian König0666ffd2013-03-05 15:07:39 +0100340 input_type, args, args[3] ? 4 : 3,
Christian König44e32242013-03-20 12:10:35 +0100341 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer691f08d2012-09-06 18:03:38 +0200342
343 args[1] = back_attr_number;
344 back = build_intrinsic(base->gallivm->builder, intr_name,
Christian König0666ffd2013-03-05 15:07:39 +0100345 input_type, args, args[3] ? 4 : 3,
Christian König44e32242013-03-20 12:10:35 +0100346 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer691f08d2012-09-06 18:03:38 +0200347
348 si_shader_ctx->radeon_bld.inputs[soa_index] =
349 LLVMBuildSelect(gallivm->builder,
350 is_face_positive,
351 front,
352 back,
353 "");
354 }
355
356 shader->ninterp++;
Michel Dänzer237cb072013-08-21 18:00:35 +0200357 } else if (decl->Semantic.Name == TGSI_SEMANTIC_FOG) {
358 LLVMValueRef args[4];
359
360 args[0] = uint->zero;
361 args[1] = attr_number;
362 args[2] = params;
363 args[3] = interp_param;
364 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 0)] =
365 build_intrinsic(base->gallivm->builder, intr_name,
366 input_type, args, args[3] ? 4 : 3,
367 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
368 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 1)] =
369 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 2)] =
370 lp_build_const_float(gallivm, 0.0f);
371 si_shader_ctx->radeon_bld.inputs[radeon_llvm_reg_index_soa(input_index, 3)] =
372 lp_build_const_float(gallivm, 1.0f);
Michel Dänzer691f08d2012-09-06 18:03:38 +0200373 } else {
374 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
Christian König0666ffd2013-03-05 15:07:39 +0100375 LLVMValueRef args[4];
Michel Dänzer691f08d2012-09-06 18:03:38 +0200376 LLVMValueRef llvm_chan = lp_build_const_int32(gallivm, chan);
377 unsigned soa_index = radeon_llvm_reg_index_soa(input_index, chan);
378 args[0] = llvm_chan;
379 args[1] = attr_number;
380 args[2] = params;
Christian König0666ffd2013-03-05 15:07:39 +0100381 args[3] = interp_param;
Michel Dänzer691f08d2012-09-06 18:03:38 +0200382 si_shader_ctx->radeon_bld.inputs[soa_index] =
383 build_intrinsic(base->gallivm->builder, intr_name,
Christian König0666ffd2013-03-05 15:07:39 +0100384 input_type, args, args[3] ? 4 : 3,
Christian König44e32242013-03-20 12:10:35 +0100385 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer691f08d2012-09-06 18:03:38 +0200386 }
Tom Stellarda75c6162012-01-06 17:38:37 -0500387 }
388}
389
390static void declare_input(
391 struct radeon_llvm_context * radeon_bld,
392 unsigned input_index,
393 const struct tgsi_full_declaration *decl)
394{
395 struct si_shader_context * si_shader_ctx =
396 si_shader_context(&radeon_bld->soa.bld_base);
397 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
398 declare_input_vs(si_shader_ctx, input_index, decl);
399 } else if (si_shader_ctx->type == TGSI_PROCESSOR_FRAGMENT) {
400 declare_input_fs(si_shader_ctx, input_index, decl);
401 } else {
402 fprintf(stderr, "Warning: Unsupported shader type,\n");
403 }
404}
405
Christian Könige4ed5872013-03-21 18:02:52 +0100406static void declare_system_value(
407 struct radeon_llvm_context * radeon_bld,
408 unsigned index,
409 const struct tgsi_full_declaration *decl)
410{
Marek Olšák8d03d922013-09-01 23:59:06 +0200411 struct si_shader_context *si_shader_ctx =
412 si_shader_context(&radeon_bld->soa.bld_base);
Christian Könige4ed5872013-03-21 18:02:52 +0100413 LLVMValueRef value = 0;
414
415 switch (decl->Semantic.Name) {
416 case TGSI_SEMANTIC_INSTANCEID:
Marek Olšákf317ce52013-09-05 15:39:57 +0200417 value = LLVMGetParam(radeon_bld->main_fn,
418 si_shader_ctx->param_instance_id);
Christian Könige4ed5872013-03-21 18:02:52 +0100419 break;
420
421 case TGSI_SEMANTIC_VERTEXID:
Marek Olšák8d03d922013-09-01 23:59:06 +0200422 value = LLVMGetParam(radeon_bld->main_fn,
423 si_shader_ctx->param_vertex_id);
Christian Könige4ed5872013-03-21 18:02:52 +0100424 break;
425
426 default:
427 assert(!"unknown system value");
428 return;
429 }
430
431 radeon_bld->system_values[index] = value;
432}
433
Tom Stellarda75c6162012-01-06 17:38:37 -0500434static LLVMValueRef fetch_constant(
435 struct lp_build_tgsi_context * bld_base,
436 const struct tgsi_full_src_register *reg,
437 enum tgsi_opcode_type type,
438 unsigned swizzle)
439{
Christian König55fe5cc2013-03-04 16:30:06 +0100440 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
Tom Stellarda75c6162012-01-06 17:38:37 -0500441 struct lp_build_context * base = &bld_base->base;
Christian König0f6cf2b2013-03-15 15:53:25 +0100442 const struct tgsi_ind_register *ireg = &reg->Indirect;
443 unsigned idx;
Tom Stellarda75c6162012-01-06 17:38:37 -0500444
Christian Königf5298b02013-02-28 14:50:07 +0100445 LLVMValueRef args[2];
Christian König0f6cf2b2013-03-15 15:53:25 +0100446 LLVMValueRef addr;
Christian Königf5298b02013-02-28 14:50:07 +0100447 LLVMValueRef result;
Tom Stellarda75c6162012-01-06 17:38:37 -0500448
Christian König8514f5a2013-02-04 17:46:42 +0100449 if (swizzle == LP_CHAN_ALL) {
450 unsigned chan;
451 LLVMValueRef values[4];
452 for (chan = 0; chan < TGSI_NUM_CHANNELS; ++chan)
453 values[chan] = fetch_constant(bld_base, reg, type, chan);
454
455 return lp_build_gather_values(bld_base->base.gallivm, values, 4);
456 }
457
Christian König0f6cf2b2013-03-15 15:53:25 +0100458 idx = reg->Register.Index * 4 + swizzle;
459 if (!reg->Register.Indirect)
460 return bitcast(bld_base, type, si_shader_ctx->constants[idx]);
Christian Königf5298b02013-02-28 14:50:07 +0100461
Christian König0f6cf2b2013-03-15 15:53:25 +0100462 args[0] = si_shader_ctx->const_resource;
463 args[1] = lp_build_const_int32(base->gallivm, idx * 4);
464 addr = si_shader_ctx->radeon_bld.soa.addr[ireg->Index][ireg->Swizzle];
465 addr = LLVMBuildLoad(base->gallivm->builder, addr, "load addr reg");
466 addr = lp_build_mul_imm(&bld_base->uint_bld, addr, 16);
467 args[1] = lp_build_add(&bld_base->uint_bld, addr, args[1]);
Christian Könige7723b52012-08-24 12:55:34 +0200468
Christian Königf5298b02013-02-28 14:50:07 +0100469 result = build_intrinsic(base->gallivm->builder, "llvm.SI.load.const", base->elem_type,
Christian König44e32242013-03-20 12:10:35 +0100470 args, 2, LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Tom Stellarda75c6162012-01-06 17:38:37 -0500471
Christian Königf5298b02013-02-28 14:50:07 +0100472 return bitcast(bld_base, type, result);
Tom Stellarda75c6162012-01-06 17:38:37 -0500473}
474
Michel Dänzer26c71392012-08-24 12:03:11 +0200475/* Initialize arguments for the shader export intrinsic */
476static void si_llvm_init_export_args(struct lp_build_tgsi_context *bld_base,
477 struct tgsi_full_declaration *d,
478 unsigned index,
479 unsigned target,
480 LLVMValueRef *args)
481{
482 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
483 struct lp_build_context *uint =
484 &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
485 struct lp_build_context *base = &bld_base->base;
486 unsigned compressed = 0;
487 unsigned chan;
488
Michel Dänzerf402acd2012-08-22 18:15:36 +0200489 if (si_shader_ctx->type == TGSI_PROCESSOR_FRAGMENT) {
490 int cbuf = target - V_008DFC_SQ_EXP_MRT;
491
492 if (cbuf >= 0 && cbuf < 8) {
Christian Königa0dca442013-03-22 15:59:22 +0100493 compressed = (si_shader_ctx->shader->key.ps.export_16bpc >> cbuf) & 0x1;
Michel Dänzer1ace2002012-12-21 15:39:26 +0100494
495 if (compressed)
496 si_shader_ctx->shader->spi_shader_col_format |=
497 V_028714_SPI_SHADER_FP16_ABGR << (4 * cbuf);
498 else
499 si_shader_ctx->shader->spi_shader_col_format |=
500 V_028714_SPI_SHADER_32_ABGR << (4 * cbuf);
Michel Dänzere369f402013-04-30 16:34:10 +0200501
502 si_shader_ctx->shader->cb_shader_mask |= 0xf << (4 * cbuf);
Michel Dänzerf402acd2012-08-22 18:15:36 +0200503 }
504 }
505
506 if (compressed) {
507 /* Pixel shader needs to pack output values before export */
508 for (chan = 0; chan < 2; chan++ ) {
509 LLVMValueRef *out_ptr =
510 si_shader_ctx->radeon_bld.soa.outputs[index];
511 args[0] = LLVMBuildLoad(base->gallivm->builder,
512 out_ptr[2 * chan], "");
513 args[1] = LLVMBuildLoad(base->gallivm->builder,
514 out_ptr[2 * chan + 1], "");
515 args[chan + 5] =
516 build_intrinsic(base->gallivm->builder,
517 "llvm.SI.packf16",
518 LLVMInt32TypeInContext(base->gallivm->context),
519 args, 2,
Christian Könige4188ee2013-02-27 22:39:26 +0100520 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer8b6aec62012-11-27 19:53:58 +0100521 args[chan + 7] = args[chan + 5] =
522 LLVMBuildBitCast(base->gallivm->builder,
523 args[chan + 5],
524 LLVMFloatTypeInContext(base->gallivm->context),
525 "");
Michel Dänzerf402acd2012-08-22 18:15:36 +0200526 }
527
528 /* Set COMPR flag */
529 args[4] = uint->one;
530 } else {
531 for (chan = 0; chan < 4; chan++ ) {
532 LLVMValueRef out_ptr =
533 si_shader_ctx->radeon_bld.soa.outputs[index][chan];
534 /* +5 because the first output value will be
535 * the 6th argument to the intrinsic. */
536 args[chan + 5] = LLVMBuildLoad(base->gallivm->builder,
537 out_ptr, "");
538 }
539
540 /* Clear COMPR flag */
541 args[4] = uint->zero;
Michel Dänzer26c71392012-08-24 12:03:11 +0200542 }
543
544 /* XXX: This controls which components of the output
545 * registers actually get exported. (e.g bit 0 means export
546 * X component, bit 1 means export Y component, etc.) I'm
547 * hard coding this to 0xf for now. In the future, we might
548 * want to do something else. */
549 args[0] = lp_build_const_int32(base->gallivm, 0xf);
550
551 /* Specify whether the EXEC mask represents the valid mask */
552 args[1] = uint->zero;
553
554 /* Specify whether this is the last export */
555 args[2] = uint->zero;
556
557 /* Specify the target we are exporting */
558 args[3] = lp_build_const_int32(base->gallivm, target);
559
Michel Dänzer26c71392012-08-24 12:03:11 +0200560 /* XXX: We probably need to keep track of the output
561 * values, so we know what we are passing to the next
562 * stage. */
563}
564
Michel Dänzer7708a862012-11-02 15:57:30 +0100565static void si_alpha_test(struct lp_build_tgsi_context *bld_base,
566 unsigned index)
567{
568 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
569 struct gallivm_state *gallivm = bld_base->base.gallivm;
570
Christian Königa0dca442013-03-22 15:59:22 +0100571 if (si_shader_ctx->shader->key.ps.alpha_func != PIPE_FUNC_NEVER) {
Michel Dänzer7708a862012-11-02 15:57:30 +0100572 LLVMValueRef out_ptr = si_shader_ctx->radeon_bld.soa.outputs[index][3];
Vadim Girlin453ea2d2013-10-13 19:53:54 +0400573 LLVMValueRef alpha_ref = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn,
574 SI_PARAM_ALPHA_REF);
575
Michel Dänzer7708a862012-11-02 15:57:30 +0100576 LLVMValueRef alpha_pass =
577 lp_build_cmp(&bld_base->base,
Christian Königa0dca442013-03-22 15:59:22 +0100578 si_shader_ctx->shader->key.ps.alpha_func,
Michel Dänzer7708a862012-11-02 15:57:30 +0100579 LLVMBuildLoad(gallivm->builder, out_ptr, ""),
Vadim Girlin453ea2d2013-10-13 19:53:54 +0400580 alpha_ref);
Michel Dänzer7708a862012-11-02 15:57:30 +0100581 LLVMValueRef arg =
582 lp_build_select(&bld_base->base,
583 alpha_pass,
584 lp_build_const_float(gallivm, 1.0f),
585 lp_build_const_float(gallivm, -1.0f));
586
587 build_intrinsic(gallivm->builder,
588 "llvm.AMDGPU.kill",
589 LLVMVoidTypeInContext(gallivm->context),
590 &arg, 1, 0);
591 } else {
592 build_intrinsic(gallivm->builder,
593 "llvm.AMDGPU.kilp",
594 LLVMVoidTypeInContext(gallivm->context),
595 NULL, 0, 0);
596 }
597}
598
Marek Olšák6d4755a2013-07-30 22:29:29 +0200599static void si_alpha_to_one(struct lp_build_tgsi_context *bld_base,
600 unsigned index)
601{
602 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
603
604 /* set alpha to one */
605 LLVMBuildStore(bld_base->base.gallivm->builder,
606 bld_base->base.one,
607 si_shader_ctx->radeon_bld.soa.outputs[index][3]);
608}
609
Michel Dänzere3befbc2013-05-15 18:09:50 +0200610static void si_llvm_emit_clipvertex(struct lp_build_tgsi_context * bld_base,
Michel Dänzerb00269a2013-08-07 18:14:16 +0200611 LLVMValueRef (*pos)[9], unsigned index)
Michel Dänzere3befbc2013-05-15 18:09:50 +0200612{
613 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200614 struct si_pipe_shader *shader = si_shader_ctx->shader;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200615 struct lp_build_context *base = &bld_base->base;
616 struct lp_build_context *uint = &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200617 unsigned reg_index;
618 unsigned chan;
619 unsigned const_chan;
620 LLVMValueRef out_elts[4];
621 LLVMValueRef base_elt;
622 LLVMValueRef ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_CONST);
623 LLVMValueRef const_resource = build_indexed_load(si_shader_ctx, ptr, uint->one);
624
625 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
626 LLVMValueRef out_ptr = si_shader_ctx->radeon_bld.soa.outputs[index][chan];
627 out_elts[chan] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
628 }
629
630 for (reg_index = 0; reg_index < 2; reg_index ++) {
Michel Dänzerb00269a2013-08-07 18:14:16 +0200631 LLVMValueRef *args = pos[2 + reg_index];
632
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200633 if (!(shader->key.vs.ucps_enabled & (1 << reg_index)))
634 continue;
635
636 shader->shader.clip_dist_write |= 0xf << (4 * reg_index);
637
Michel Dänzere3befbc2013-05-15 18:09:50 +0200638 args[5] =
639 args[6] =
640 args[7] =
641 args[8] = lp_build_const_float(base->gallivm, 0.0f);
642
643 /* Compute dot products of position and user clip plane vectors */
644 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
645 for (const_chan = 0; const_chan < TGSI_NUM_CHANNELS; const_chan++) {
646 args[0] = const_resource;
647 args[1] = lp_build_const_int32(base->gallivm,
648 ((reg_index * 4 + chan) * 4 +
649 const_chan) * 4);
650 base_elt = build_intrinsic(base->gallivm->builder,
651 "llvm.SI.load.const",
652 base->elem_type,
653 args, 2,
654 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
655 args[5 + chan] =
656 lp_build_add(base, args[5 + chan],
657 lp_build_mul(base, base_elt,
658 out_elts[const_chan]));
659 }
660 }
661
662 args[0] = lp_build_const_int32(base->gallivm, 0xf);
663 args[1] = uint->zero;
664 args[2] = uint->zero;
665 args[3] = lp_build_const_int32(base->gallivm,
666 V_008DFC_SQ_EXP_POS + 2 + reg_index);
667 args[4] = uint->zero;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200668 }
669}
670
Marek Olšák8d03d922013-09-01 23:59:06 +0200671static void si_dump_streamout(struct pipe_stream_output_info *so)
672{
673 unsigned i;
674
675 if (so->num_outputs)
676 fprintf(stderr, "STREAMOUT\n");
677
678 for (i = 0; i < so->num_outputs; i++) {
679 unsigned mask = ((1 << so->output[i].num_components) - 1) <<
680 so->output[i].start_component;
681 fprintf(stderr, " %i: BUF%i[%i..%i] <- OUT[%i].%s%s%s%s\n",
682 i, so->output[i].output_buffer,
683 so->output[i].dst_offset, so->output[i].dst_offset + so->output[i].num_components - 1,
684 so->output[i].register_index,
685 mask & 1 ? "x" : "",
686 mask & 2 ? "y" : "",
687 mask & 4 ? "z" : "",
688 mask & 8 ? "w" : "");
689 }
690}
691
692/* TBUFFER_STORE_FORMAT_{X,XY,XYZ,XYZW} <- the suffix is selected by num_channels=1..4.
693 * The type of vdata must be one of i32 (num_channels=1), v2i32 (num_channels=2),
694 * or v4i32 (num_channels=3,4). */
695static void build_tbuffer_store(struct si_shader_context *shader,
696 LLVMValueRef rsrc,
697 LLVMValueRef vdata,
698 unsigned num_channels,
699 LLVMValueRef vaddr,
700 LLVMValueRef soffset,
701 unsigned inst_offset,
702 unsigned dfmt,
703 unsigned nfmt,
704 unsigned offen,
705 unsigned idxen,
706 unsigned glc,
707 unsigned slc,
708 unsigned tfe)
709{
710 struct gallivm_state *gallivm = &shader->radeon_bld.gallivm;
711 LLVMTypeRef i32 = LLVMInt32TypeInContext(gallivm->context);
712 LLVMValueRef args[] = {
713 rsrc,
714 vdata,
715 LLVMConstInt(i32, num_channels, 0),
716 vaddr,
717 soffset,
718 LLVMConstInt(i32, inst_offset, 0),
719 LLVMConstInt(i32, dfmt, 0),
720 LLVMConstInt(i32, nfmt, 0),
721 LLVMConstInt(i32, offen, 0),
722 LLVMConstInt(i32, idxen, 0),
723 LLVMConstInt(i32, glc, 0),
724 LLVMConstInt(i32, slc, 0),
725 LLVMConstInt(i32, tfe, 0)
726 };
727
728 /* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */
729 unsigned func = CLAMP(num_channels, 1, 3) - 1;
730 const char *types[] = {"i32", "v2i32", "v4i32"};
731 char name[256];
732 snprintf(name, sizeof(name), "llvm.SI.tbuffer.store.%s", types[func]);
733
734 lp_build_intrinsic(gallivm->builder, name,
735 LLVMVoidTypeInContext(gallivm->context),
736 args, Elements(args));
737}
738
739static void build_streamout_store(struct si_shader_context *shader,
740 LLVMValueRef rsrc,
741 LLVMValueRef vdata,
742 unsigned num_channels,
743 LLVMValueRef vaddr,
744 LLVMValueRef soffset,
745 unsigned inst_offset)
746{
747 static unsigned dfmt[] = {
748 V_008F0C_BUF_DATA_FORMAT_32,
749 V_008F0C_BUF_DATA_FORMAT_32_32,
750 V_008F0C_BUF_DATA_FORMAT_32_32_32,
751 V_008F0C_BUF_DATA_FORMAT_32_32_32_32
752 };
753 assert(num_channels >= 1 && num_channels <= 4);
754
755 build_tbuffer_store(shader, rsrc, vdata, num_channels, vaddr, soffset,
756 inst_offset, dfmt[num_channels-1],
757 V_008F0C_BUF_NUM_FORMAT_UINT, 1, 0, 1, 1, 0);
758}
759
760/* On SI, the vertex shader is responsible for writing streamout data
761 * to buffers. */
762static void si_llvm_emit_streamout(struct si_shader_context *shader)
763{
764 struct pipe_stream_output_info *so = &shader->shader->selector->so;
765 struct gallivm_state *gallivm = &shader->radeon_bld.gallivm;
766 LLVMBuilderRef builder = gallivm->builder;
767 int i, j;
768 struct lp_build_if_state if_ctx;
769
770 LLVMTypeRef i32 = LLVMInt32TypeInContext(gallivm->context);
771
772 LLVMValueRef so_param =
773 LLVMGetParam(shader->radeon_bld.main_fn,
774 shader->param_streamout_config);
775
776 /* Get bits [22:16], i.e. (so_param >> 16) & 127; */
777 LLVMValueRef so_vtx_count =
778 LLVMBuildAnd(builder,
779 LLVMBuildLShr(builder, so_param,
780 LLVMConstInt(i32, 16, 0), ""),
781 LLVMConstInt(i32, 127, 0), "");
782
783 LLVMValueRef tid = build_intrinsic(builder, "llvm.SI.tid", i32,
784 NULL, 0, LLVMReadNoneAttribute);
785
786 /* can_emit = tid < so_vtx_count; */
787 LLVMValueRef can_emit =
788 LLVMBuildICmp(builder, LLVMIntULT, tid, so_vtx_count, "");
789
790 /* Emit the streamout code conditionally. This actually avoids
791 * out-of-bounds buffer access. The hw tells us via the SGPR
792 * (so_vtx_count) which threads are allowed to emit streamout data. */
793 lp_build_if(&if_ctx, gallivm, can_emit);
794 {
795 /* The buffer offset is computed as follows:
796 * ByteOffset = streamout_offset[buffer_id]*4 +
797 * (streamout_write_index + thread_id)*stride[buffer_id] +
798 * attrib_offset
799 */
800
801 LLVMValueRef so_write_index =
802 LLVMGetParam(shader->radeon_bld.main_fn,
803 shader->param_streamout_write_index);
804
805 /* Compute (streamout_write_index + thread_id). */
806 so_write_index = LLVMBuildAdd(builder, so_write_index, tid, "");
807
808 /* Compute the write offset for each enabled buffer. */
809 LLVMValueRef so_write_offset[4] = {};
810 for (i = 0; i < 4; i++) {
811 if (!so->stride[i])
812 continue;
813
814 LLVMValueRef so_offset = LLVMGetParam(shader->radeon_bld.main_fn,
815 shader->param_streamout_offset[i]);
816 so_offset = LLVMBuildMul(builder, so_offset, LLVMConstInt(i32, 4, 0), "");
817
818 so_write_offset[i] = LLVMBuildMul(builder, so_write_index,
819 LLVMConstInt(i32, so->stride[i]*4, 0), "");
820 so_write_offset[i] = LLVMBuildAdd(builder, so_write_offset[i], so_offset, "");
821 }
822
823 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS] = shader->radeon_bld.soa.outputs;
824
825 /* Write streamout data. */
826 for (i = 0; i < so->num_outputs; i++) {
827 unsigned buf_idx = so->output[i].output_buffer;
828 unsigned reg = so->output[i].register_index;
829 unsigned start = so->output[i].start_component;
830 unsigned num_comps = so->output[i].num_components;
831 LLVMValueRef out[4];
832
833 assert(num_comps && num_comps <= 4);
834 if (!num_comps || num_comps > 4)
835 continue;
836
837 /* Load the output as int. */
838 for (j = 0; j < num_comps; j++) {
839 out[j] = LLVMBuildLoad(builder, outputs[reg][start+j], "");
840 out[j] = LLVMBuildBitCast(builder, out[j], i32, "");
841 }
842
843 /* Pack the output. */
844 LLVMValueRef vdata = NULL;
845
846 switch (num_comps) {
847 case 1: /* as i32 */
848 vdata = out[0];
849 break;
850 case 2: /* as v2i32 */
851 case 3: /* as v4i32 (aligned to 4) */
852 case 4: /* as v4i32 */
853 vdata = LLVMGetUndef(LLVMVectorType(i32, util_next_power_of_two(num_comps)));
854 for (j = 0; j < num_comps; j++) {
855 vdata = LLVMBuildInsertElement(builder, vdata, out[j],
856 LLVMConstInt(i32, j, 0), "");
857 }
858 break;
859 }
860
861 build_streamout_store(shader, shader->so_buffers[buf_idx],
862 vdata, num_comps,
863 so_write_offset[buf_idx],
864 LLVMConstInt(i32, 0, 0),
865 so->output[i].dst_offset*4);
866 }
867 }
868 lp_build_endif(&if_ctx);
869}
870
Tom Stellarda75c6162012-01-06 17:38:37 -0500871/* XXX: This is partially implemented for VS only at this point. It is not complete */
872static void si_llvm_emit_epilogue(struct lp_build_tgsi_context * bld_base)
873{
874 struct si_shader_context * si_shader_ctx = si_shader_context(bld_base);
Christian König3c09f112012-07-18 17:39:15 +0200875 struct si_shader * shader = &si_shader_ctx->shader->shader;
Tom Stellarda75c6162012-01-06 17:38:37 -0500876 struct lp_build_context * base = &bld_base->base;
877 struct lp_build_context * uint =
878 &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
879 struct tgsi_parse_context *parse = &si_shader_ctx->parse;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100880 LLVMValueRef args[9];
Tom Stellarda75c6162012-01-06 17:38:37 -0500881 LLVMValueRef last_args[9] = { 0 };
Michel Dänzerb00269a2013-08-07 18:14:16 +0200882 LLVMValueRef pos_args[4][9] = { { 0 } };
Michel Dänzer0afeea52013-05-02 14:53:17 +0200883 unsigned semantic_name;
Christian König35088152012-08-01 22:35:24 +0200884 unsigned color_count = 0;
885 unsigned param_count = 0;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100886 int depth_index = -1, stencil_index = -1;
Michel Dänzerb00269a2013-08-07 18:14:16 +0200887 int i;
Tom Stellarda75c6162012-01-06 17:38:37 -0500888
Marek Olšák8d03d922013-09-01 23:59:06 +0200889 if (si_shader_ctx->shader->selector->so.num_outputs) {
890 si_llvm_emit_streamout(si_shader_ctx);
891 }
892
Tom Stellarda75c6162012-01-06 17:38:37 -0500893 while (!tgsi_parse_end_of_tokens(parse)) {
Tom Stellarda75c6162012-01-06 17:38:37 -0500894 struct tgsi_full_declaration *d =
895 &parse->FullToken.FullDeclaration;
Tom Stellarda75c6162012-01-06 17:38:37 -0500896 unsigned target;
897 unsigned index;
Tom Stellarda75c6162012-01-06 17:38:37 -0500898
899 tgsi_parse_token(parse);
Michel Dänzerc8402702013-02-12 18:37:22 +0100900
901 if (parse->FullToken.Token.Type == TGSI_TOKEN_TYPE_PROPERTY &&
902 parse->FullToken.FullProperty.Property.PropertyName ==
903 TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS)
904 shader->fs_write_all = TRUE;
905
Tom Stellarda75c6162012-01-06 17:38:37 -0500906 if (parse->FullToken.Token.Type != TGSI_TOKEN_TYPE_DECLARATION)
907 continue;
908
909 switch (d->Declaration.File) {
910 case TGSI_FILE_INPUT:
911 i = shader->ninput++;
Marek Olšák2eac0aa2013-05-14 19:37:17 +0200912 assert(i < Elements(shader->input));
Tom Stellarda75c6162012-01-06 17:38:37 -0500913 shader->input[i].name = d->Semantic.Name;
914 shader->input[i].sid = d->Semantic.Index;
Francisco Jerez12799232012-04-30 18:27:52 +0200915 shader->input[i].interpolate = d->Interp.Interpolate;
916 shader->input[i].centroid = d->Interp.Centroid;
Christian König35088152012-08-01 22:35:24 +0200917 continue;
918
Tom Stellarda75c6162012-01-06 17:38:37 -0500919 case TGSI_FILE_OUTPUT:
920 i = shader->noutput++;
Marek Olšák2eac0aa2013-05-14 19:37:17 +0200921 assert(i < Elements(shader->output));
Tom Stellarda75c6162012-01-06 17:38:37 -0500922 shader->output[i].name = d->Semantic.Name;
923 shader->output[i].sid = d->Semantic.Index;
Francisco Jerez12799232012-04-30 18:27:52 +0200924 shader->output[i].interpolate = d->Interp.Interpolate;
Tom Stellarda75c6162012-01-06 17:38:37 -0500925 break;
Tom Stellarda75c6162012-01-06 17:38:37 -0500926
Christian König35088152012-08-01 22:35:24 +0200927 default:
Tom Stellarda75c6162012-01-06 17:38:37 -0500928 continue;
Christian König35088152012-08-01 22:35:24 +0200929 }
Tom Stellarda75c6162012-01-06 17:38:37 -0500930
Michel Dänzer0afeea52013-05-02 14:53:17 +0200931 semantic_name = d->Semantic.Name;
932handle_semantic:
Tom Stellarda75c6162012-01-06 17:38:37 -0500933 for (index = d->Range.First; index <= d->Range.Last; index++) {
Tom Stellarda75c6162012-01-06 17:38:37 -0500934 /* Select the correct target */
Michel Dänzer0afeea52013-05-02 14:53:17 +0200935 switch(semantic_name) {
Tom Stellardc3c323a2012-08-30 10:35:36 -0400936 case TGSI_SEMANTIC_PSIZE:
Michel Dänzer4730dea2013-05-03 17:59:34 +0200937 shader->vs_out_misc_write = 1;
938 shader->vs_out_point_size = 1;
939 target = V_008DFC_SQ_EXP_POS + 1;
Tom Stellarda75c6162012-01-06 17:38:37 -0500940 break;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100941 case TGSI_SEMANTIC_POSITION:
942 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
943 target = V_008DFC_SQ_EXP_POS;
944 break;
945 } else {
946 depth_index = index;
947 continue;
948 }
949 case TGSI_SEMANTIC_STENCIL:
950 stencil_index = index;
951 continue;
Tom Stellarda75c6162012-01-06 17:38:37 -0500952 case TGSI_SEMANTIC_COLOR:
953 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
Michel Dänzer691f08d2012-09-06 18:03:38 +0200954 case TGSI_SEMANTIC_BCOLOR:
Tom Stellarda75c6162012-01-06 17:38:37 -0500955 target = V_008DFC_SQ_EXP_PARAM + param_count;
Michel Dänzerdd9d6192012-05-18 15:01:10 +0200956 shader->output[i].param_offset = param_count;
Tom Stellarda75c6162012-01-06 17:38:37 -0500957 param_count++;
958 } else {
959 target = V_008DFC_SQ_EXP_MRT + color_count;
Marek Olšák6d4755a2013-07-30 22:29:29 +0200960 if (si_shader_ctx->shader->key.ps.alpha_to_one) {
961 si_alpha_to_one(bld_base, index);
962 }
Michel Dänzer7708a862012-11-02 15:57:30 +0100963 if (color_count == 0 &&
Christian Königa0dca442013-03-22 15:59:22 +0100964 si_shader_ctx->shader->key.ps.alpha_func != PIPE_FUNC_ALWAYS)
Michel Dänzer7708a862012-11-02 15:57:30 +0100965 si_alpha_test(bld_base, index);
966
Tom Stellarda75c6162012-01-06 17:38:37 -0500967 color_count++;
968 }
969 break;
Michel Dänzer0afeea52013-05-02 14:53:17 +0200970 case TGSI_SEMANTIC_CLIPDIST:
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200971 if (!(si_shader_ctx->shader->key.vs.ucps_enabled &
972 (1 << d->Semantic.Index)))
973 continue;
Michel Dänzer0afeea52013-05-02 14:53:17 +0200974 shader->clip_dist_write |=
975 d->Declaration.UsageMask << (d->Semantic.Index << 2);
976 target = V_008DFC_SQ_EXP_POS + 2 + d->Semantic.Index;
977 break;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200978 case TGSI_SEMANTIC_CLIPVERTEX:
Michel Dänzerb00269a2013-08-07 18:14:16 +0200979 si_llvm_emit_clipvertex(bld_base, pos_args, index);
Michel Dänzere3befbc2013-05-15 18:09:50 +0200980 continue;
Michel Dänzer30b30372012-09-06 17:53:04 +0200981 case TGSI_SEMANTIC_FOG:
Tom Stellarda75c6162012-01-06 17:38:37 -0500982 case TGSI_SEMANTIC_GENERIC:
983 target = V_008DFC_SQ_EXP_PARAM + param_count;
Michel Dänzerdd9d6192012-05-18 15:01:10 +0200984 shader->output[i].param_offset = param_count;
Tom Stellarda75c6162012-01-06 17:38:37 -0500985 param_count++;
986 break;
987 default:
988 target = 0;
989 fprintf(stderr,
990 "Warning: SI unhandled output type:%d\n",
Michel Dänzer0afeea52013-05-02 14:53:17 +0200991 semantic_name);
Tom Stellarda75c6162012-01-06 17:38:37 -0500992 }
993
Michel Dänzer26c71392012-08-24 12:03:11 +0200994 si_llvm_init_export_args(bld_base, d, index, target, args);
Tom Stellarda75c6162012-01-06 17:38:37 -0500995
Michel Dänzerb00269a2013-08-07 18:14:16 +0200996 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX &&
997 target >= V_008DFC_SQ_EXP_POS &&
998 target <= (V_008DFC_SQ_EXP_POS + 3)) {
999 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
1000 args, sizeof(args));
1001 } else if (si_shader_ctx->type == TGSI_PROCESSOR_FRAGMENT &&
1002 semantic_name == TGSI_SEMANTIC_COLOR) {
Tom Stellarda75c6162012-01-06 17:38:37 -05001003 if (last_args[0]) {
1004 lp_build_intrinsic(base->gallivm->builder,
1005 "llvm.SI.export",
1006 LLVMVoidTypeInContext(base->gallivm->context),
1007 last_args, 9);
1008 }
1009
1010 memcpy(last_args, args, sizeof(args));
1011 } else {
1012 lp_build_intrinsic(base->gallivm->builder,
1013 "llvm.SI.export",
1014 LLVMVoidTypeInContext(base->gallivm->context),
1015 args, 9);
1016 }
1017
1018 }
Michel Dänzer0afeea52013-05-02 14:53:17 +02001019
1020 if (semantic_name == TGSI_SEMANTIC_CLIPDIST) {
1021 semantic_name = TGSI_SEMANTIC_GENERIC;
1022 goto handle_semantic;
1023 }
Tom Stellarda75c6162012-01-06 17:38:37 -05001024 }
1025
Michel Dänzer1a616c12012-11-13 17:35:09 +01001026 if (depth_index >= 0 || stencil_index >= 0) {
1027 LLVMValueRef out_ptr;
1028 unsigned mask = 0;
1029
1030 /* Specify the target we are exporting */
1031 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRTZ);
1032
1033 if (depth_index >= 0) {
1034 out_ptr = si_shader_ctx->radeon_bld.soa.outputs[depth_index][2];
1035 args[5] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
1036 mask |= 0x1;
1037
1038 if (stencil_index < 0) {
1039 args[6] =
1040 args[7] =
1041 args[8] = args[5];
1042 }
1043 }
1044
1045 if (stencil_index >= 0) {
1046 out_ptr = si_shader_ctx->radeon_bld.soa.outputs[stencil_index][1];
1047 args[7] =
1048 args[8] =
1049 args[6] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
Michel Dänzer46fd81e2013-08-23 14:55:45 +02001050 /* Only setting the stencil component bit (0x2) here
1051 * breaks some stencil piglit tests
1052 */
1053 mask |= 0x3;
Michel Dänzer1a616c12012-11-13 17:35:09 +01001054
1055 if (depth_index < 0)
1056 args[5] = args[6];
1057 }
1058
1059 /* Specify which components to enable */
1060 args[0] = lp_build_const_int32(base->gallivm, mask);
1061
1062 args[1] =
1063 args[2] =
1064 args[4] = uint->zero;
1065
1066 if (last_args[0])
1067 lp_build_intrinsic(base->gallivm->builder,
1068 "llvm.SI.export",
1069 LLVMVoidTypeInContext(base->gallivm->context),
1070 args, 9);
1071 else
1072 memcpy(last_args, args, sizeof(args));
1073 }
1074
Michel Dänzerb00269a2013-08-07 18:14:16 +02001075 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
1076 unsigned pos_idx = 0;
Christian Königf18fd252012-07-25 21:58:46 +02001077
Michel Dänzerb00269a2013-08-07 18:14:16 +02001078 for (i = 0; i < 4; i++)
1079 if (pos_args[i][0])
1080 shader->nr_pos_exports++;
Christian Königf18fd252012-07-25 21:58:46 +02001081
Michel Dänzerb00269a2013-08-07 18:14:16 +02001082 for (i = 0; i < 4; i++) {
1083 if (!pos_args[i][0])
1084 continue;
Christian Königf18fd252012-07-25 21:58:46 +02001085
Michel Dänzerc8402702013-02-12 18:37:22 +01001086 /* Specify the target we are exporting */
Michel Dänzerb00269a2013-08-07 18:14:16 +02001087 pos_args[i][3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_POS + pos_idx++);
1088
1089 if (pos_idx == shader->nr_pos_exports)
1090 /* Specify that this is the last export */
1091 pos_args[i][2] = uint->one;
Michel Dänzerc8402702013-02-12 18:37:22 +01001092
1093 lp_build_intrinsic(base->gallivm->builder,
1094 "llvm.SI.export",
1095 LLVMVoidTypeInContext(base->gallivm->context),
Michel Dänzerb00269a2013-08-07 18:14:16 +02001096 pos_args[i], 9);
1097 }
1098 } else {
1099 if (!last_args[0]) {
1100 /* Specify which components to enable */
1101 last_args[0] = lp_build_const_int32(base->gallivm, 0x0);
1102
1103 /* Specify the target we are exporting */
1104 last_args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRT);
1105
1106 /* Set COMPR flag to zero to export data as 32-bit */
1107 last_args[4] = uint->zero;
1108
1109 /* dummy bits */
1110 last_args[5]= uint->zero;
1111 last_args[6]= uint->zero;
1112 last_args[7]= uint->zero;
1113 last_args[8]= uint->zero;
Michel Dänzerc8402702013-02-12 18:37:22 +01001114
1115 si_shader_ctx->shader->spi_shader_col_format |=
Michel Dänzerb00269a2013-08-07 18:14:16 +02001116 V_028714_SPI_SHADER_32_ABGR;
1117 si_shader_ctx->shader->cb_shader_mask |= S_02823C_OUTPUT0_ENABLE(0xf);
Michel Dänzerc8402702013-02-12 18:37:22 +01001118 }
1119
Michel Dänzerb00269a2013-08-07 18:14:16 +02001120 /* Specify whether the EXEC mask represents the valid mask */
1121 last_args[1] = uint->one;
1122
1123 if (shader->fs_write_all && shader->nr_cbufs > 1) {
1124 int i;
1125
1126 /* Specify that this is not yet the last export */
1127 last_args[2] = lp_build_const_int32(base->gallivm, 0);
1128
1129 for (i = 1; i < shader->nr_cbufs; i++) {
1130 /* Specify the target we are exporting */
1131 last_args[3] = lp_build_const_int32(base->gallivm,
1132 V_008DFC_SQ_EXP_MRT + i);
1133
1134 lp_build_intrinsic(base->gallivm->builder,
1135 "llvm.SI.export",
1136 LLVMVoidTypeInContext(base->gallivm->context),
1137 last_args, 9);
1138
1139 si_shader_ctx->shader->spi_shader_col_format |=
1140 si_shader_ctx->shader->spi_shader_col_format << 4;
1141 si_shader_ctx->shader->cb_shader_mask |=
1142 si_shader_ctx->shader->cb_shader_mask << 4;
1143 }
1144
1145 last_args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRT);
1146 }
1147
1148 /* Specify that this is the last export */
1149 last_args[2] = lp_build_const_int32(base->gallivm, 1);
1150
1151 lp_build_intrinsic(base->gallivm->builder,
1152 "llvm.SI.export",
1153 LLVMVoidTypeInContext(base->gallivm->context),
1154 last_args, 9);
Michel Dänzerc8402702013-02-12 18:37:22 +01001155 }
Tom Stellarda75c6162012-01-06 17:38:37 -05001156/* XXX: Look up what this function does */
1157/* ctx->shader->output[i].spi_sid = r600_spi_sid(&ctx->shader->output[i]);*/
1158}
1159
Marek Olšák4855acd2013-08-06 15:08:54 +02001160static const struct lp_build_tgsi_action txf_action;
1161
1162static void build_tex_intrinsic(const struct lp_build_tgsi_action * action,
1163 struct lp_build_tgsi_context * bld_base,
1164 struct lp_build_emit_data * emit_data);
1165
Tom Stellarda75c6162012-01-06 17:38:37 -05001166static void tex_fetch_args(
1167 struct lp_build_tgsi_context * bld_base,
1168 struct lp_build_emit_data * emit_data)
1169{
Christian König55fe5cc2013-03-04 16:30:06 +01001170 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
Michel Dänzere5fb7342013-01-24 18:54:51 +01001171 struct gallivm_state *gallivm = bld_base->base.gallivm;
Michel Dänzerc2bae6b2012-08-02 17:19:22 +02001172 const struct tgsi_full_instruction * inst = emit_data->inst;
Michel Dänzer120efee2013-01-25 12:10:11 +01001173 unsigned opcode = inst->Instruction.Opcode;
1174 unsigned target = inst->Texture.Texture;
Marek Olšák4855acd2013-08-06 15:08:54 +02001175 unsigned sampler_src, sampler_index;
Michel Dänzer120efee2013-01-25 12:10:11 +01001176 LLVMValueRef coords[4];
1177 LLVMValueRef address[16];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001178 int ref_pos;
1179 unsigned num_coords = tgsi_util_get_texture_coord_dim(target, &ref_pos);
Michel Dänzer120efee2013-01-25 12:10:11 +01001180 unsigned count = 0;
Michel Dänzere5fb7342013-01-24 18:54:51 +01001181 unsigned chan;
Tom Stellard467f5162012-05-16 15:15:35 -04001182
Michel Dänzer120efee2013-01-25 12:10:11 +01001183 /* Fetch and project texture coordinates */
1184 coords[3] = lp_build_emit_fetch(bld_base, emit_data->inst, 0, TGSI_CHAN_W);
Michel Dänzere5fb7342013-01-24 18:54:51 +01001185 for (chan = 0; chan < 3; chan++ ) {
1186 coords[chan] = lp_build_emit_fetch(bld_base,
1187 emit_data->inst, 0,
1188 chan);
Michel Dänzer120efee2013-01-25 12:10:11 +01001189 if (opcode == TGSI_OPCODE_TXP)
Michel Dänzerc2bae6b2012-08-02 17:19:22 +02001190 coords[chan] = lp_build_emit_llvm_binary(bld_base,
1191 TGSI_OPCODE_DIV,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001192 coords[chan],
1193 coords[3]);
1194 }
1195
Michel Dänzer120efee2013-01-25 12:10:11 +01001196 if (opcode == TGSI_OPCODE_TXP)
1197 coords[3] = bld_base->base.one;
Tom Stellarda75c6162012-01-06 17:38:37 -05001198
Michel Dänzer120efee2013-01-25 12:10:11 +01001199 /* Pack LOD bias value */
1200 if (opcode == TGSI_OPCODE_TXB)
1201 address[count++] = coords[3];
Vadim Girlin8cf552b2012-12-18 17:39:19 +04001202
Michel Dänzer0495adb2013-05-06 12:45:14 +02001203 if (target == TGSI_TEXTURE_CUBE || target == TGSI_TEXTURE_SHADOWCUBE)
Michel Dänzere5fb7342013-01-24 18:54:51 +01001204 radeon_llvm_emit_prepare_cube_coords(bld_base, emit_data, coords);
Michel Dänzer120efee2013-01-25 12:10:11 +01001205
1206 /* Pack depth comparison value */
1207 switch (target) {
1208 case TGSI_TEXTURE_SHADOW1D:
1209 case TGSI_TEXTURE_SHADOW1D_ARRAY:
1210 case TGSI_TEXTURE_SHADOW2D:
1211 case TGSI_TEXTURE_SHADOWRECT:
Michel Dänzer120efee2013-01-25 12:10:11 +01001212 case TGSI_TEXTURE_SHADOWCUBE:
1213 case TGSI_TEXTURE_SHADOW2D_ARRAY:
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001214 assert(ref_pos >= 0);
1215 address[count++] = coords[ref_pos];
Michel Dänzer120efee2013-01-25 12:10:11 +01001216 break;
1217 case TGSI_TEXTURE_SHADOWCUBE_ARRAY:
1218 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, 0);
Michel Dänzere0f2ffc2012-12-03 12:46:30 +01001219 }
1220
Michel Dänzera6b83c02013-02-21 16:10:55 +01001221 /* Pack user derivatives */
1222 if (opcode == TGSI_OPCODE_TXD) {
1223 for (chan = 0; chan < 2; chan++) {
1224 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, chan);
1225 if (num_coords > 1)
1226 address[count++] = lp_build_emit_fetch(bld_base, inst, 2, chan);
1227 }
1228 }
1229
Michel Dänzer120efee2013-01-25 12:10:11 +01001230 /* Pack texture coordinates */
1231 address[count++] = coords[0];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001232 if (num_coords > 1)
Michel Dänzer120efee2013-01-25 12:10:11 +01001233 address[count++] = coords[1];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001234 if (num_coords > 2)
Michel Dänzer120efee2013-01-25 12:10:11 +01001235 address[count++] = coords[2];
Michel Dänzere5fb7342013-01-24 18:54:51 +01001236
Marek Olšákd2bd6342013-09-18 15:40:21 +02001237 /* Pack LOD or sample index */
Michel Dänzer36231112013-05-02 09:44:45 +02001238 if (opcode == TGSI_OPCODE_TXL || opcode == TGSI_OPCODE_TXF)
Michel Dänzer120efee2013-01-25 12:10:11 +01001239 address[count++] = coords[3];
1240
1241 if (count > 16) {
1242 assert(!"Cannot handle more than 16 texture address parameters");
1243 count = 16;
1244 }
1245
1246 for (chan = 0; chan < count; chan++ ) {
1247 address[chan] = LLVMBuildBitCast(gallivm->builder,
1248 address[chan],
1249 LLVMInt32TypeInContext(gallivm->context),
1250 "");
1251 }
1252
Michel Dänzera6b83c02013-02-21 16:10:55 +01001253 sampler_src = emit_data->inst->Instruction.NumSrcRegs - 1;
Marek Olšák4855acd2013-08-06 15:08:54 +02001254 sampler_index = emit_data->inst->Src[sampler_src].Register.Index;
1255
1256 /* Adjust the sample index according to FMASK.
1257 *
1258 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
1259 * which is the identity mapping. Each nibble says which physical sample
1260 * should be fetched to get that sample.
1261 *
1262 * For example, 0x11111100 means there are only 2 samples stored and
1263 * the second sample covers 3/4 of the pixel. When reading samples 0
1264 * and 1, return physical sample 0 (determined by the first two 0s
1265 * in FMASK), otherwise return physical sample 1.
1266 *
1267 * The sample index should be adjusted as follows:
1268 * sample_index = (fmask >> (sample_index * 4)) & 0xF;
1269 */
1270 if (target == TGSI_TEXTURE_2D_MSAA ||
1271 target == TGSI_TEXTURE_2D_ARRAY_MSAA) {
1272 struct lp_build_context *uint_bld = &bld_base->uint_bld;
1273 struct lp_build_emit_data txf_emit_data = *emit_data;
Marek Olšákd2bd6342013-09-18 15:40:21 +02001274 LLVMValueRef txf_address[4];
Marek Olšák4855acd2013-08-06 15:08:54 +02001275 unsigned txf_count = count;
1276
Marek Olšákd2bd6342013-09-18 15:40:21 +02001277 memcpy(txf_address, address, sizeof(txf_address));
1278
1279 if (target == TGSI_TEXTURE_2D_MSAA) {
1280 txf_address[2] = bld_base->uint_bld.zero;
1281 }
1282 txf_address[3] = bld_base->uint_bld.zero;
Marek Olšák4855acd2013-08-06 15:08:54 +02001283
1284 /* Pad to a power-of-two size. */
1285 while (txf_count < util_next_power_of_two(txf_count))
1286 txf_address[txf_count++] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
1287
1288 /* Read FMASK using TXF. */
1289 txf_emit_data.chan = 0;
1290 txf_emit_data.dst_type = LLVMVectorType(
1291 LLVMInt32TypeInContext(bld_base->base.gallivm->context), 4);
1292 txf_emit_data.args[0] = lp_build_gather_values(gallivm, txf_address, txf_count);
1293 txf_emit_data.args[1] = si_shader_ctx->resources[FMASK_TEX_OFFSET + sampler_index];
Marek Olšákd2bd6342013-09-18 15:40:21 +02001294 txf_emit_data.args[2] = lp_build_const_int32(bld_base->base.gallivm,
1295 target == TGSI_TEXTURE_2D_MSAA ? TGSI_TEXTURE_2D : TGSI_TEXTURE_2D_ARRAY);
Marek Olšák4855acd2013-08-06 15:08:54 +02001296 txf_emit_data.arg_count = 3;
1297
1298 build_tex_intrinsic(&txf_action, bld_base, &txf_emit_data);
1299
1300 /* Initialize some constants. */
Marek Olšák4855acd2013-08-06 15:08:54 +02001301 LLVMValueRef four = LLVMConstInt(uint_bld->elem_type, 4, 0);
1302 LLVMValueRef F = LLVMConstInt(uint_bld->elem_type, 0xF, 0);
1303
1304 /* Apply the formula. */
1305 LLVMValueRef fmask =
1306 LLVMBuildExtractElement(gallivm->builder,
1307 txf_emit_data.output[0],
1308 uint_bld->zero, "");
1309
Marek Olšákd2bd6342013-09-18 15:40:21 +02001310 unsigned sample_chan = target == TGSI_TEXTURE_2D_MSAA ? 2 : 3;
Marek Olšák4855acd2013-08-06 15:08:54 +02001311
1312 LLVMValueRef sample_index4 =
Marek Olšákd2bd6342013-09-18 15:40:21 +02001313 LLVMBuildMul(gallivm->builder, address[sample_chan], four, "");
Marek Olšák4855acd2013-08-06 15:08:54 +02001314
1315 LLVMValueRef shifted_fmask =
1316 LLVMBuildLShr(gallivm->builder, fmask, sample_index4, "");
1317
1318 LLVMValueRef final_sample =
1319 LLVMBuildAnd(gallivm->builder, shifted_fmask, F, "");
1320
1321 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
1322 * resource descriptor is 0 (invalid),
1323 */
1324 LLVMValueRef fmask_desc =
1325 LLVMBuildBitCast(gallivm->builder,
1326 si_shader_ctx->resources[FMASK_TEX_OFFSET + sampler_index],
1327 LLVMVectorType(uint_bld->elem_type, 8), "");
1328
1329 LLVMValueRef fmask_word1 =
1330 LLVMBuildExtractElement(gallivm->builder, fmask_desc,
1331 uint_bld->one, "");
1332
1333 LLVMValueRef word1_is_nonzero =
1334 LLVMBuildICmp(gallivm->builder, LLVMIntNE,
1335 fmask_word1, uint_bld->zero, "");
1336
Marek Olšákd2bd6342013-09-18 15:40:21 +02001337 /* Replace the MSAA sample index. */
1338 address[sample_chan] =
Marek Olšák4855acd2013-08-06 15:08:54 +02001339 LLVMBuildSelect(gallivm->builder, word1_is_nonzero,
Marek Olšákd2bd6342013-09-18 15:40:21 +02001340 final_sample, address[sample_chan], "");
Marek Olšák4855acd2013-08-06 15:08:54 +02001341 }
Michel Dänzera6b83c02013-02-21 16:10:55 +01001342
Michel Dänzer36231112013-05-02 09:44:45 +02001343 /* Resource */
Marek Olšák4855acd2013-08-06 15:08:54 +02001344 emit_data->args[1] = si_shader_ctx->resources[sampler_index];
Michel Dänzer36231112013-05-02 09:44:45 +02001345
1346 if (opcode == TGSI_OPCODE_TXF) {
1347 /* add tex offsets */
1348 if (inst->Texture.NumOffsets) {
1349 struct lp_build_context *uint_bld = &bld_base->uint_bld;
1350 struct lp_build_tgsi_soa_context *bld = lp_soa_context(bld_base);
1351 const struct tgsi_texture_offset * off = inst->TexOffsets;
1352
1353 assert(inst->Texture.NumOffsets == 1);
1354
Marek Olšákdefedc02013-09-18 15:36:38 +02001355 switch (target) {
1356 case TGSI_TEXTURE_3D:
1357 address[2] = lp_build_add(uint_bld, address[2],
1358 bld->immediates[off->Index][off->SwizzleZ]);
1359 /* fall through */
1360 case TGSI_TEXTURE_2D:
1361 case TGSI_TEXTURE_SHADOW2D:
1362 case TGSI_TEXTURE_RECT:
1363 case TGSI_TEXTURE_SHADOWRECT:
1364 case TGSI_TEXTURE_2D_ARRAY:
1365 case TGSI_TEXTURE_SHADOW2D_ARRAY:
Michel Dänzer36231112013-05-02 09:44:45 +02001366 address[1] =
1367 lp_build_add(uint_bld, address[1],
Marek Olšákdefedc02013-09-18 15:36:38 +02001368 bld->immediates[off->Index][off->SwizzleY]);
1369 /* fall through */
1370 case TGSI_TEXTURE_1D:
1371 case TGSI_TEXTURE_SHADOW1D:
1372 case TGSI_TEXTURE_1D_ARRAY:
1373 case TGSI_TEXTURE_SHADOW1D_ARRAY:
1374 address[0] =
1375 lp_build_add(uint_bld, address[0],
1376 bld->immediates[off->Index][off->SwizzleX]);
1377 break;
1378 /* texture offsets do not apply to other texture targets */
1379 }
Michel Dänzer36231112013-05-02 09:44:45 +02001380 }
1381
1382 emit_data->dst_type = LLVMVectorType(
1383 LLVMInt32TypeInContext(bld_base->base.gallivm->context),
1384 4);
1385
1386 emit_data->arg_count = 3;
1387 } else {
1388 /* Sampler */
Marek Olšák4855acd2013-08-06 15:08:54 +02001389 emit_data->args[2] = si_shader_ctx->samplers[sampler_index];
Michel Dänzer36231112013-05-02 09:44:45 +02001390
1391 emit_data->dst_type = LLVMVectorType(
1392 LLVMFloatTypeInContext(bld_base->base.gallivm->context),
1393 4);
1394
1395 emit_data->arg_count = 4;
1396 }
1397
1398 /* Dimensions */
1399 emit_data->args[emit_data->arg_count - 1] =
1400 lp_build_const_int32(bld_base->base.gallivm, target);
1401
Michel Dänzer120efee2013-01-25 12:10:11 +01001402 /* Pad to power of two vector */
1403 while (count < util_next_power_of_two(count))
1404 address[count++] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
1405
Christian Königccf3e8f2013-03-26 15:09:27 +01001406 emit_data->args[0] = lp_build_gather_values(gallivm, address, count);
Tom Stellarda75c6162012-01-06 17:38:37 -05001407}
1408
Michel Dänzer07eddc42013-02-06 15:43:10 +01001409static void build_tex_intrinsic(const struct lp_build_tgsi_action * action,
1410 struct lp_build_tgsi_context * bld_base,
1411 struct lp_build_emit_data * emit_data)
1412{
1413 struct lp_build_context * base = &bld_base->base;
1414 char intr_name[23];
1415
1416 sprintf(intr_name, "%sv%ui32", action->intr_name,
Christian Königccf3e8f2013-03-26 15:09:27 +01001417 LLVMGetVectorSize(LLVMTypeOf(emit_data->args[0])));
Michel Dänzer07eddc42013-02-06 15:43:10 +01001418
Christian König44e32242013-03-20 12:10:35 +01001419 emit_data->output[emit_data->chan] = build_intrinsic(
Michel Dänzer07eddc42013-02-06 15:43:10 +01001420 base->gallivm->builder, intr_name, emit_data->dst_type,
Christian König44e32242013-03-20 12:10:35 +01001421 emit_data->args, emit_data->arg_count,
1422 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer07eddc42013-02-06 15:43:10 +01001423}
1424
Michel Dänzer0495adb2013-05-06 12:45:14 +02001425static void txq_fetch_args(
1426 struct lp_build_tgsi_context * bld_base,
1427 struct lp_build_emit_data * emit_data)
1428{
1429 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
1430 const struct tgsi_full_instruction *inst = emit_data->inst;
1431
1432 /* Mip level */
1433 emit_data->args[0] = lp_build_emit_fetch(bld_base, inst, 0, TGSI_CHAN_X);
1434
1435 /* Resource */
1436 emit_data->args[1] = si_shader_ctx->resources[inst->Src[1].Register.Index];
1437
1438 /* Dimensions */
1439 emit_data->args[2] = lp_build_const_int32(bld_base->base.gallivm,
1440 inst->Texture.Texture);
1441
1442 emit_data->arg_count = 3;
1443
1444 emit_data->dst_type = LLVMVectorType(
1445 LLVMInt32TypeInContext(bld_base->base.gallivm->context),
1446 4);
1447}
1448
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001449#if HAVE_LLVM >= 0x0304
1450
1451static void si_llvm_emit_ddxy(
1452 const struct lp_build_tgsi_action * action,
1453 struct lp_build_tgsi_context * bld_base,
1454 struct lp_build_emit_data * emit_data)
1455{
1456 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
1457 struct gallivm_state *gallivm = bld_base->base.gallivm;
1458 struct lp_build_context * base = &bld_base->base;
1459 const struct tgsi_full_instruction *inst = emit_data->inst;
1460 unsigned opcode = inst->Instruction.Opcode;
1461 LLVMValueRef indices[2];
1462 LLVMValueRef store_ptr, load_ptr0, load_ptr1;
1463 LLVMValueRef tl, trbl, result[4];
1464 LLVMTypeRef i32;
1465 unsigned swizzle[4];
1466 unsigned c;
1467
1468 i32 = LLVMInt32TypeInContext(gallivm->context);
1469
1470 indices[0] = bld_base->uint_bld.zero;
1471 indices[1] = build_intrinsic(gallivm->builder, "llvm.SI.tid", i32,
1472 NULL, 0, LLVMReadNoneAttribute);
1473 store_ptr = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1474 indices, 2, "");
1475
1476 indices[1] = LLVMBuildAnd(gallivm->builder, indices[1],
1477 lp_build_const_int32(gallivm, 0xfffffffc), "");
1478 load_ptr0 = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1479 indices, 2, "");
1480
1481 indices[1] = LLVMBuildAdd(gallivm->builder, indices[1],
1482 lp_build_const_int32(gallivm,
1483 opcode == TGSI_OPCODE_DDX ? 1 : 2),
1484 "");
1485 load_ptr1 = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1486 indices, 2, "");
1487
1488 for (c = 0; c < 4; ++c) {
1489 unsigned i;
1490
1491 swizzle[c] = tgsi_util_get_full_src_register_swizzle(&inst->Src[0], c);
1492 for (i = 0; i < c; ++i) {
1493 if (swizzle[i] == swizzle[c]) {
1494 result[c] = result[i];
1495 break;
1496 }
1497 }
1498 if (i != c)
1499 continue;
1500
1501 LLVMBuildStore(gallivm->builder,
1502 LLVMBuildBitCast(gallivm->builder,
1503 lp_build_emit_fetch(bld_base, inst, 0, c),
1504 i32, ""),
1505 store_ptr);
1506
1507 tl = LLVMBuildLoad(gallivm->builder, load_ptr0, "");
1508 tl = LLVMBuildBitCast(gallivm->builder, tl, base->elem_type, "");
1509
1510 trbl = LLVMBuildLoad(gallivm->builder, load_ptr1, "");
1511 trbl = LLVMBuildBitCast(gallivm->builder, trbl, base->elem_type, "");
1512
1513 result[c] = LLVMBuildFSub(gallivm->builder, trbl, tl, "");
1514 }
1515
1516 emit_data->output[0] = lp_build_gather_values(gallivm, result, 4);
1517}
1518
1519#endif /* HAVE_LLVM >= 0x0304 */
1520
Tom Stellarda75c6162012-01-06 17:38:37 -05001521static const struct lp_build_tgsi_action tex_action = {
1522 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001523 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001524 .intr_name = "llvm.SI.sample."
Tom Stellarda75c6162012-01-06 17:38:37 -05001525};
1526
Michel Dänzer3e205132012-11-06 17:39:01 +01001527static const struct lp_build_tgsi_action txb_action = {
1528 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001529 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001530 .intr_name = "llvm.SI.sampleb."
Michel Dänzer3e205132012-11-06 17:39:01 +01001531};
1532
Michel Dänzera6b83c02013-02-21 16:10:55 +01001533#if HAVE_LLVM >= 0x0304
1534static const struct lp_build_tgsi_action txd_action = {
1535 .fetch_args = tex_fetch_args,
1536 .emit = build_tex_intrinsic,
1537 .intr_name = "llvm.SI.sampled."
1538};
1539#endif
1540
Michel Dänzer36231112013-05-02 09:44:45 +02001541static const struct lp_build_tgsi_action txf_action = {
1542 .fetch_args = tex_fetch_args,
1543 .emit = build_tex_intrinsic,
1544 .intr_name = "llvm.SI.imageload."
1545};
1546
Michel Dänzer56ae9be2012-11-06 17:41:50 +01001547static const struct lp_build_tgsi_action txl_action = {
1548 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001549 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001550 .intr_name = "llvm.SI.samplel."
Michel Dänzer56ae9be2012-11-06 17:41:50 +01001551};
1552
Michel Dänzer0495adb2013-05-06 12:45:14 +02001553static const struct lp_build_tgsi_action txq_action = {
1554 .fetch_args = txq_fetch_args,
1555 .emit = build_tgsi_intrinsic_nomem,
1556 .intr_name = "llvm.SI.resinfo"
1557};
1558
Christian König206f0592013-03-20 14:37:21 +01001559static void create_meta_data(struct si_shader_context *si_shader_ctx)
1560{
1561 struct gallivm_state *gallivm = si_shader_ctx->radeon_bld.soa.bld_base.base.gallivm;
1562 LLVMValueRef args[3];
1563
1564 args[0] = LLVMMDStringInContext(gallivm->context, "const", 5);
1565 args[1] = 0;
1566 args[2] = lp_build_const_int32(gallivm, 1);
1567
1568 si_shader_ctx->const_md = LLVMMDNodeInContext(gallivm->context, args, 3);
1569}
1570
Christian König55fe5cc2013-03-04 16:30:06 +01001571static void create_function(struct si_shader_context *si_shader_ctx)
1572{
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001573 struct lp_build_tgsi_context *bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1574 struct gallivm_state *gallivm = bld_base->base.gallivm;
Vadim Girlin453ea2d2013-10-13 19:53:54 +04001575 LLVMTypeRef params[21], f32, i8, i32, v2i32, v3i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001576 unsigned i, last_sgpr, num_params;
Christian König55fe5cc2013-03-04 16:30:06 +01001577
Christian König55fe5cc2013-03-04 16:30:06 +01001578 i8 = LLVMInt8TypeInContext(gallivm->context);
Christian Königc4973212013-03-05 12:14:02 +01001579 i32 = LLVMInt32TypeInContext(gallivm->context);
Christian König0666ffd2013-03-05 15:07:39 +01001580 f32 = LLVMFloatTypeInContext(gallivm->context);
1581 v2i32 = LLVMVectorType(i32, 2);
1582 v3i32 = LLVMVectorType(i32, 3);
Christian Königc4973212013-03-05 12:14:02 +01001583
Christian Königf5298b02013-02-28 14:50:07 +01001584 params[SI_PARAM_CONST] = LLVMPointerType(LLVMVectorType(i8, 16), CONST_ADDR_SPACE);
1585 params[SI_PARAM_SAMPLER] = params[SI_PARAM_CONST];
Christian König55fe5cc2013-03-04 16:30:06 +01001586 params[SI_PARAM_RESOURCE] = LLVMPointerType(LLVMVectorType(i8, 32), CONST_ADDR_SPACE);
1587
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001588 switch (si_shader_ctx->type) {
1589 case TGSI_PROCESSOR_VERTEX:
1590 params[SI_PARAM_VERTEX_BUFFER] = params[SI_PARAM_CONST];
Marek Olšák2993cca2013-08-18 02:34:23 +02001591 params[SI_PARAM_SO_BUFFER] = params[SI_PARAM_CONST];
Christian Königcf9b31f2013-03-21 18:30:23 +01001592 params[SI_PARAM_START_INSTANCE] = i32;
Marek Olšák8d03d922013-09-01 23:59:06 +02001593 num_params = SI_PARAM_START_INSTANCE+1;
1594
1595 /* The locations of the other parameters are assigned dynamically. */
1596
1597 /* Streamout SGPRs. */
1598 if (si_shader_ctx->shader->selector->so.num_outputs) {
1599 params[si_shader_ctx->param_streamout_config = num_params++] = i32;
1600 params[si_shader_ctx->param_streamout_write_index = num_params++] = i32;
1601 }
1602 /* A streamout buffer offset is loaded if the stride is non-zero. */
1603 for (i = 0; i < 4; i++) {
1604 if (!si_shader_ctx->shader->selector->so.stride[i])
1605 continue;
1606
1607 params[si_shader_ctx->param_streamout_offset[i] = num_params++] = i32;
1608 }
1609
1610 last_sgpr = num_params-1;
1611
1612 /* VGPRs */
1613 params[si_shader_ctx->param_vertex_id = num_params++] = i32;
1614 params[num_params++] = i32; /* unused*/
1615 params[num_params++] = i32; /* unused */
1616 params[si_shader_ctx->param_instance_id = num_params++] = i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001617 break;
Christian König0666ffd2013-03-05 15:07:39 +01001618
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001619 case TGSI_PROCESSOR_FRAGMENT:
Vadim Girlin453ea2d2013-10-13 19:53:54 +04001620 params[SI_PARAM_ALPHA_REF] = f32;
Christian König0666ffd2013-03-05 15:07:39 +01001621 params[SI_PARAM_PRIM_MASK] = i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001622 last_sgpr = SI_PARAM_PRIM_MASK;
Christian König0666ffd2013-03-05 15:07:39 +01001623 params[SI_PARAM_PERSP_SAMPLE] = v2i32;
1624 params[SI_PARAM_PERSP_CENTER] = v2i32;
1625 params[SI_PARAM_PERSP_CENTROID] = v2i32;
1626 params[SI_PARAM_PERSP_PULL_MODEL] = v3i32;
1627 params[SI_PARAM_LINEAR_SAMPLE] = v2i32;
1628 params[SI_PARAM_LINEAR_CENTER] = v2i32;
1629 params[SI_PARAM_LINEAR_CENTROID] = v2i32;
1630 params[SI_PARAM_LINE_STIPPLE_TEX] = f32;
1631 params[SI_PARAM_POS_X_FLOAT] = f32;
1632 params[SI_PARAM_POS_Y_FLOAT] = f32;
1633 params[SI_PARAM_POS_Z_FLOAT] = f32;
1634 params[SI_PARAM_POS_W_FLOAT] = f32;
1635 params[SI_PARAM_FRONT_FACE] = f32;
1636 params[SI_PARAM_ANCILLARY] = f32;
1637 params[SI_PARAM_SAMPLE_COVERAGE] = f32;
1638 params[SI_PARAM_POS_FIXED_PT] = f32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001639 num_params = SI_PARAM_POS_FIXED_PT+1;
1640 break;
1641
1642 default:
1643 assert(0 && "unimplemented shader");
1644 return;
Christian Königc4973212013-03-05 12:14:02 +01001645 }
Christian König55fe5cc2013-03-04 16:30:06 +01001646
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001647 assert(num_params <= Elements(params));
1648 radeon_llvm_create_func(&si_shader_ctx->radeon_bld, params, num_params);
Christian König55fe5cc2013-03-04 16:30:06 +01001649 radeon_llvm_shader_type(si_shader_ctx->radeon_bld.main_fn, si_shader_ctx->type);
Christian Königcf9b31f2013-03-21 18:30:23 +01001650
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001651 for (i = 0; i <= last_sgpr; ++i) {
1652 LLVMValueRef P = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, i);
Christian Königcf9b31f2013-03-21 18:30:23 +01001653 LLVMAddAttribute(P, LLVMInRegAttribute);
1654 }
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001655
1656#if HAVE_LLVM >= 0x0304
1657 if (bld_base->info->opcode_count[TGSI_OPCODE_DDX] > 0 ||
1658 bld_base->info->opcode_count[TGSI_OPCODE_DDY] > 0)
1659 si_shader_ctx->ddxy_lds =
1660 LLVMAddGlobalInAddressSpace(gallivm->module,
1661 LLVMArrayType(i32, 64),
1662 "ddxy_lds",
1663 LOCAL_ADDR_SPACE);
1664#endif
Christian König55fe5cc2013-03-04 16:30:06 +01001665}
Tom Stellarda75c6162012-01-06 17:38:37 -05001666
Christian König0f6cf2b2013-03-15 15:53:25 +01001667static void preload_constants(struct si_shader_context *si_shader_ctx)
1668{
1669 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1670 struct gallivm_state * gallivm = bld_base->base.gallivm;
1671 const struct tgsi_shader_info * info = bld_base->info;
1672
1673 unsigned i, num_const = info->file_max[TGSI_FILE_CONSTANT] + 1;
1674
1675 LLVMValueRef ptr;
1676
1677 if (num_const == 0)
1678 return;
1679
1680 /* Allocate space for the constant values */
1681 si_shader_ctx->constants = CALLOC(num_const * 4, sizeof(LLVMValueRef));
1682
1683 /* Load the resource descriptor */
1684 ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_CONST);
1685 si_shader_ctx->const_resource = build_indexed_load(si_shader_ctx, ptr, bld_base->uint_bld.zero);
1686
1687 /* Load the constants, we rely on the code sinking to do the rest */
1688 for (i = 0; i < num_const * 4; ++i) {
1689 LLVMValueRef args[2] = {
1690 si_shader_ctx->const_resource,
1691 lp_build_const_int32(gallivm, i * 4)
1692 };
1693 si_shader_ctx->constants[i] = build_intrinsic(gallivm->builder, "llvm.SI.load.const",
1694 bld_base->base.elem_type, args, 2, LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
1695 }
1696}
1697
Christian König1c100182013-03-17 16:02:42 +01001698static void preload_samplers(struct si_shader_context *si_shader_ctx)
1699{
1700 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1701 struct gallivm_state * gallivm = bld_base->base.gallivm;
1702 const struct tgsi_shader_info * info = bld_base->info;
1703
1704 unsigned i, num_samplers = info->file_max[TGSI_FILE_SAMPLER] + 1;
1705
1706 LLVMValueRef res_ptr, samp_ptr;
1707 LLVMValueRef offset;
1708
1709 if (num_samplers == 0)
1710 return;
1711
1712 /* Allocate space for the values */
Marek Olšák4855acd2013-08-06 15:08:54 +02001713 si_shader_ctx->resources = CALLOC(NUM_SAMPLER_VIEWS, sizeof(LLVMValueRef));
Christian König1c100182013-03-17 16:02:42 +01001714 si_shader_ctx->samplers = CALLOC(num_samplers, sizeof(LLVMValueRef));
1715
1716 res_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_RESOURCE);
1717 samp_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_SAMPLER);
1718
1719 /* Load the resources and samplers, we rely on the code sinking to do the rest */
1720 for (i = 0; i < num_samplers; ++i) {
Christian König1c100182013-03-17 16:02:42 +01001721 /* Resource */
1722 offset = lp_build_const_int32(gallivm, i);
1723 si_shader_ctx->resources[i] = build_indexed_load(si_shader_ctx, res_ptr, offset);
1724
1725 /* Sampler */
1726 offset = lp_build_const_int32(gallivm, i);
1727 si_shader_ctx->samplers[i] = build_indexed_load(si_shader_ctx, samp_ptr, offset);
Marek Olšák4855acd2013-08-06 15:08:54 +02001728
1729 /* FMASK resource */
1730 if (info->is_msaa_sampler[i]) {
1731 offset = lp_build_const_int32(gallivm, FMASK_TEX_OFFSET + i);
1732 si_shader_ctx->resources[FMASK_TEX_OFFSET + i] =
1733 build_indexed_load(si_shader_ctx, res_ptr, offset);
1734 }
Christian König1c100182013-03-17 16:02:42 +01001735 }
1736}
1737
Marek Olšák8d03d922013-09-01 23:59:06 +02001738static void preload_streamout_buffers(struct si_shader_context *si_shader_ctx)
1739{
1740 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1741 struct gallivm_state * gallivm = bld_base->base.gallivm;
1742 unsigned i;
1743
1744 if (!si_shader_ctx->shader->selector->so.num_outputs)
1745 return;
1746
1747 LLVMValueRef buf_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn,
1748 SI_PARAM_SO_BUFFER);
1749
1750 /* Load the resources, we rely on the code sinking to do the rest */
1751 for (i = 0; i < 4; ++i) {
1752 if (si_shader_ctx->shader->selector->so.stride[i]) {
1753 LLVMValueRef offset = lp_build_const_int32(gallivm, i);
1754
1755 si_shader_ctx->so_buffers[i] = build_indexed_load(si_shader_ctx, buf_ptr, offset);
1756 }
1757 }
1758}
1759
Tom Stellard302f53d2012-10-25 13:50:10 -04001760int si_compile_llvm(struct r600_context *rctx, struct si_pipe_shader *shader,
1761 LLVMModuleRef mod)
1762{
Tom Stellard302f53d2012-10-25 13:50:10 -04001763 unsigned i;
1764 uint32_t *ptr;
Tom Stellard7782d192013-04-04 09:57:13 -07001765 struct radeon_llvm_binary binary;
Tom Stellardb2805162013-10-03 17:39:59 -04001766 bool dump = r600_can_dump_shader(&rctx->screen->b,
1767 shader->selector ? shader->selector->tokens : NULL);
Tom Stellard7782d192013-04-04 09:57:13 -07001768 memset(&binary, 0, sizeof(binary));
1769 radeon_llvm_compile(mod, &binary,
Marek Olšáka81c3e02013-08-14 01:04:39 +02001770 r600_get_llvm_processor_name(rctx->screen->b.family), dump);
Jay Cornwalld7d539a2013-10-10 20:06:48 -05001771 if (dump && ! binary.disassembled) {
Tom Stellard302f53d2012-10-25 13:50:10 -04001772 fprintf(stderr, "SI CODE:\n");
Tom Stellard7782d192013-04-04 09:57:13 -07001773 for (i = 0; i < binary.code_size; i+=4 ) {
1774 fprintf(stderr, "%02x%02x%02x%02x\n", binary.code[i + 3],
1775 binary.code[i + 2], binary.code[i + 1],
1776 binary.code[i]);
Tom Stellard302f53d2012-10-25 13:50:10 -04001777 }
1778 }
1779
Tom Stellardd50343d2013-04-04 16:21:06 -04001780 /* XXX: We may be able to emit some of these values directly rather than
1781 * extracting fields to be emitted later.
1782 */
1783 for (i = 0; i < binary.config_size; i+= 8) {
1784 unsigned reg = util_le32_to_cpu(*(uint32_t*)(binary.config + i));
1785 unsigned value = util_le32_to_cpu(*(uint32_t*)(binary.config + i + 4));
1786 switch (reg) {
1787 case R_00B028_SPI_SHADER_PGM_RSRC1_PS:
1788 case R_00B128_SPI_SHADER_PGM_RSRC1_VS:
1789 case R_00B228_SPI_SHADER_PGM_RSRC1_GS:
1790 case R_00B848_COMPUTE_PGM_RSRC1:
1791 shader->num_sgprs = (G_00B028_SGPRS(value) + 1) * 8;
1792 shader->num_vgprs = (G_00B028_VGPRS(value) + 1) * 4;
1793 break;
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001794 case R_00B02C_SPI_SHADER_PGM_RSRC2_PS:
1795 shader->lds_size = G_00B02C_EXTRA_LDS_SIZE(value);
1796 break;
1797 case R_00B84C_COMPUTE_PGM_RSRC2:
1798 shader->lds_size = G_00B84C_LDS_SIZE(value);
1799 break;
Tom Stellardd50343d2013-04-04 16:21:06 -04001800 case R_0286CC_SPI_PS_INPUT_ENA:
1801 shader->spi_ps_input_ena = value;
1802 break;
1803 default:
1804 fprintf(stderr, "Warning: Compiler emitted unknown "
1805 "config register: 0x%x\n", reg);
1806 break;
1807 }
1808 }
Tom Stellard302f53d2012-10-25 13:50:10 -04001809
1810 /* copy new shader */
Marek Olšáka81c3e02013-08-14 01:04:39 +02001811 r600_resource_reference(&shader->bo, NULL);
1812 shader->bo = r600_resource_create_custom(rctx->b.b.screen, PIPE_USAGE_IMMUTABLE,
Tom Stellardd50343d2013-04-04 16:21:06 -04001813 binary.code_size);
Tom Stellard302f53d2012-10-25 13:50:10 -04001814 if (shader->bo == NULL) {
1815 return -ENOMEM;
1816 }
1817
Marek Olšáka81c3e02013-08-14 01:04:39 +02001818 ptr = (uint32_t*)rctx->b.ws->buffer_map(shader->bo->cs_buf, rctx->b.rings.gfx.cs, PIPE_TRANSFER_WRITE);
Tom Stellard302f53d2012-10-25 13:50:10 -04001819 if (0 /*R600_BIG_ENDIAN*/) {
Tom Stellardd50343d2013-04-04 16:21:06 -04001820 for (i = 0; i < binary.code_size / 4; ++i) {
1821 ptr[i] = util_bswap32(*(uint32_t*)(binary.code + i*4));
Tom Stellard302f53d2012-10-25 13:50:10 -04001822 }
1823 } else {
Tom Stellardd50343d2013-04-04 16:21:06 -04001824 memcpy(ptr, binary.code, binary.code_size);
Tom Stellard302f53d2012-10-25 13:50:10 -04001825 }
Marek Olšáka81c3e02013-08-14 01:04:39 +02001826 rctx->b.ws->buffer_unmap(shader->bo->cs_buf);
Tom Stellard302f53d2012-10-25 13:50:10 -04001827
Tom Stellard7782d192013-04-04 09:57:13 -07001828 free(binary.code);
1829 free(binary.config);
Tom Stellard302f53d2012-10-25 13:50:10 -04001830
1831 return 0;
1832}
1833
Tom Stellarda75c6162012-01-06 17:38:37 -05001834int si_pipe_shader_create(
1835 struct pipe_context *ctx,
Christian Königa0dca442013-03-22 15:59:22 +01001836 struct si_pipe_shader *shader)
Tom Stellarda75c6162012-01-06 17:38:37 -05001837{
1838 struct r600_context *rctx = (struct r600_context*)ctx;
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001839 struct si_pipe_shader_selector *sel = shader->selector;
Tom Stellarda75c6162012-01-06 17:38:37 -05001840 struct si_shader_context si_shader_ctx;
1841 struct tgsi_shader_info shader_info;
1842 struct lp_build_tgsi_context * bld_base;
1843 LLVMModuleRef mod;
Tom Stellard302f53d2012-10-25 13:50:10 -04001844 int r = 0;
Marek Olšák0cb9de12013-09-22 15:34:12 +02001845 bool dump = r600_can_dump_shader(&rctx->screen->b, shader->selector->tokens);
Tom Stellarda75c6162012-01-06 17:38:37 -05001846
Michel Dänzer82e38ac2012-09-27 16:39:26 +02001847 assert(shader->shader.noutput == 0);
1848 assert(shader->shader.ninterp == 0);
1849 assert(shader->shader.ninput == 0);
1850
Michel Dänzercfebaf92012-08-31 19:04:08 +02001851 memset(&si_shader_ctx, 0, sizeof(si_shader_ctx));
Tom Stellarda75c6162012-01-06 17:38:37 -05001852 radeon_llvm_context_init(&si_shader_ctx.radeon_bld);
1853 bld_base = &si_shader_ctx.radeon_bld.soa.bld_base;
1854
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001855 tgsi_scan_shader(sel->tokens, &shader_info);
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001856
Michel Dänzere44dfd42012-11-07 17:33:08 +01001857 shader->shader.uses_kill = shader_info.uses_kill;
Christian Könige4ed5872013-03-21 18:02:52 +01001858 shader->shader.uses_instanceid = shader_info.uses_instanceid;
Tom Stellarda75c6162012-01-06 17:38:37 -05001859 bld_base->info = &shader_info;
1860 bld_base->emit_fetch_funcs[TGSI_FILE_CONSTANT] = fetch_constant;
Tom Stellarda75c6162012-01-06 17:38:37 -05001861 bld_base->emit_epilogue = si_llvm_emit_epilogue;
1862
1863 bld_base->op_actions[TGSI_OPCODE_TEX] = tex_action;
Michel Dänzer3e205132012-11-06 17:39:01 +01001864 bld_base->op_actions[TGSI_OPCODE_TXB] = txb_action;
Michel Dänzera6b83c02013-02-21 16:10:55 +01001865#if HAVE_LLVM >= 0x0304
1866 bld_base->op_actions[TGSI_OPCODE_TXD] = txd_action;
1867#endif
Michel Dänzer36231112013-05-02 09:44:45 +02001868 bld_base->op_actions[TGSI_OPCODE_TXF] = txf_action;
Michel Dänzer56ae9be2012-11-06 17:41:50 +01001869 bld_base->op_actions[TGSI_OPCODE_TXL] = txl_action;
Michel Dänzerc2bae6b2012-08-02 17:19:22 +02001870 bld_base->op_actions[TGSI_OPCODE_TXP] = tex_action;
Michel Dänzer0495adb2013-05-06 12:45:14 +02001871 bld_base->op_actions[TGSI_OPCODE_TXQ] = txq_action;
Tom Stellarda75c6162012-01-06 17:38:37 -05001872
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001873#if HAVE_LLVM >= 0x0304
1874 bld_base->op_actions[TGSI_OPCODE_DDX].emit = si_llvm_emit_ddxy;
1875 bld_base->op_actions[TGSI_OPCODE_DDY].emit = si_llvm_emit_ddxy;
1876#endif
1877
Tom Stellarda75c6162012-01-06 17:38:37 -05001878 si_shader_ctx.radeon_bld.load_input = declare_input;
Christian Könige4ed5872013-03-21 18:02:52 +01001879 si_shader_ctx.radeon_bld.load_system_value = declare_system_value;
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001880 si_shader_ctx.tokens = sel->tokens;
Tom Stellarda75c6162012-01-06 17:38:37 -05001881 tgsi_parse_init(&si_shader_ctx.parse, si_shader_ctx.tokens);
1882 si_shader_ctx.shader = shader;
1883 si_shader_ctx.type = si_shader_ctx.parse.FullHeader.Processor.Processor;
Tom Stellarda75c6162012-01-06 17:38:37 -05001884
Christian König206f0592013-03-20 14:37:21 +01001885 create_meta_data(&si_shader_ctx);
Christian König55fe5cc2013-03-04 16:30:06 +01001886 create_function(&si_shader_ctx);
Christian König0f6cf2b2013-03-15 15:53:25 +01001887 preload_constants(&si_shader_ctx);
Christian König1c100182013-03-17 16:02:42 +01001888 preload_samplers(&si_shader_ctx);
Marek Olšák8d03d922013-09-01 23:59:06 +02001889 preload_streamout_buffers(&si_shader_ctx);
Christian Königb8f4ca32013-03-04 15:35:30 +01001890
Christian König835098a2012-07-17 21:28:10 +02001891 shader->shader.nr_cbufs = rctx->framebuffer.nr_cbufs;
Tom Stellarda75c6162012-01-06 17:38:37 -05001892
Tom Stellard185fc9a2012-07-12 10:40:47 -04001893 /* Dump TGSI code before doing TGSI->LLVM conversion in case the
1894 * conversion fails. */
1895 if (dump) {
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001896 tgsi_dump(sel->tokens, 0);
Marek Olšák8d03d922013-09-01 23:59:06 +02001897 si_dump_streamout(&sel->so);
Tom Stellard185fc9a2012-07-12 10:40:47 -04001898 }
1899
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001900 if (!lp_build_tgsi_llvm(bld_base, sel->tokens)) {
Michel Dänzer82cd9c02012-08-08 15:35:42 +02001901 fprintf(stderr, "Failed to translate shader from TGSI to LLVM\n");
Christian König0f6cf2b2013-03-15 15:53:25 +01001902 FREE(si_shader_ctx.constants);
Christian König1c100182013-03-17 16:02:42 +01001903 FREE(si_shader_ctx.resources);
1904 FREE(si_shader_ctx.samplers);
Michel Dänzer82cd9c02012-08-08 15:35:42 +02001905 return -EINVAL;
1906 }
Tom Stellarda75c6162012-01-06 17:38:37 -05001907
1908 radeon_llvm_finalize_module(&si_shader_ctx.radeon_bld);
1909
1910 mod = bld_base->base.gallivm->module;
Tom Stellard302f53d2012-10-25 13:50:10 -04001911 r = si_compile_llvm(rctx, shader, mod);
Tom Stellarda75c6162012-01-06 17:38:37 -05001912
Michel Dänzer4b64fa22012-08-15 18:22:46 +02001913 radeon_llvm_dispose(&si_shader_ctx.radeon_bld);
Tom Stellarda75c6162012-01-06 17:38:37 -05001914 tgsi_parse_free(&si_shader_ctx.parse);
1915
Christian König0f6cf2b2013-03-15 15:53:25 +01001916 FREE(si_shader_ctx.constants);
Christian König1c100182013-03-17 16:02:42 +01001917 FREE(si_shader_ctx.resources);
1918 FREE(si_shader_ctx.samplers);
Tom Stellarda75c6162012-01-06 17:38:37 -05001919
Tom Stellard302f53d2012-10-25 13:50:10 -04001920 return r;
Tom Stellarda75c6162012-01-06 17:38:37 -05001921}
1922
1923void si_pipe_shader_destroy(struct pipe_context *ctx, struct si_pipe_shader *shader)
1924{
Marek Olšáka81c3e02013-08-14 01:04:39 +02001925 r600_resource_reference(&shader->bo, NULL);
Tom Stellarda75c6162012-01-06 17:38:37 -05001926}