blob: 8d8cc4da8ecfe3121e9129e2fd3c8ba13a88f9fb [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];
573 LLVMValueRef alpha_pass =
574 lp_build_cmp(&bld_base->base,
Christian Königa0dca442013-03-22 15:59:22 +0100575 si_shader_ctx->shader->key.ps.alpha_func,
Michel Dänzer7708a862012-11-02 15:57:30 +0100576 LLVMBuildLoad(gallivm->builder, out_ptr, ""),
Christian Königa0dca442013-03-22 15:59:22 +0100577 lp_build_const_float(gallivm, si_shader_ctx->shader->key.ps.alpha_ref));
Michel Dänzer7708a862012-11-02 15:57:30 +0100578 LLVMValueRef arg =
579 lp_build_select(&bld_base->base,
580 alpha_pass,
581 lp_build_const_float(gallivm, 1.0f),
582 lp_build_const_float(gallivm, -1.0f));
583
584 build_intrinsic(gallivm->builder,
585 "llvm.AMDGPU.kill",
586 LLVMVoidTypeInContext(gallivm->context),
587 &arg, 1, 0);
588 } else {
589 build_intrinsic(gallivm->builder,
590 "llvm.AMDGPU.kilp",
591 LLVMVoidTypeInContext(gallivm->context),
592 NULL, 0, 0);
593 }
594}
595
Marek Olšák6d4755a2013-07-30 22:29:29 +0200596static void si_alpha_to_one(struct lp_build_tgsi_context *bld_base,
597 unsigned index)
598{
599 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
600
601 /* set alpha to one */
602 LLVMBuildStore(bld_base->base.gallivm->builder,
603 bld_base->base.one,
604 si_shader_ctx->radeon_bld.soa.outputs[index][3]);
605}
606
Michel Dänzere3befbc2013-05-15 18:09:50 +0200607static void si_llvm_emit_clipvertex(struct lp_build_tgsi_context * bld_base,
Michel Dänzerb00269a2013-08-07 18:14:16 +0200608 LLVMValueRef (*pos)[9], unsigned index)
Michel Dänzere3befbc2013-05-15 18:09:50 +0200609{
610 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200611 struct si_pipe_shader *shader = si_shader_ctx->shader;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200612 struct lp_build_context *base = &bld_base->base;
613 struct lp_build_context *uint = &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200614 unsigned reg_index;
615 unsigned chan;
616 unsigned const_chan;
617 LLVMValueRef out_elts[4];
618 LLVMValueRef base_elt;
619 LLVMValueRef ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_CONST);
620 LLVMValueRef const_resource = build_indexed_load(si_shader_ctx, ptr, uint->one);
621
622 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
623 LLVMValueRef out_ptr = si_shader_ctx->radeon_bld.soa.outputs[index][chan];
624 out_elts[chan] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
625 }
626
627 for (reg_index = 0; reg_index < 2; reg_index ++) {
Michel Dänzerb00269a2013-08-07 18:14:16 +0200628 LLVMValueRef *args = pos[2 + reg_index];
629
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200630 if (!(shader->key.vs.ucps_enabled & (1 << reg_index)))
631 continue;
632
633 shader->shader.clip_dist_write |= 0xf << (4 * reg_index);
634
Michel Dänzere3befbc2013-05-15 18:09:50 +0200635 args[5] =
636 args[6] =
637 args[7] =
638 args[8] = lp_build_const_float(base->gallivm, 0.0f);
639
640 /* Compute dot products of position and user clip plane vectors */
641 for (chan = 0; chan < TGSI_NUM_CHANNELS; chan++) {
642 for (const_chan = 0; const_chan < TGSI_NUM_CHANNELS; const_chan++) {
643 args[0] = const_resource;
644 args[1] = lp_build_const_int32(base->gallivm,
645 ((reg_index * 4 + chan) * 4 +
646 const_chan) * 4);
647 base_elt = build_intrinsic(base->gallivm->builder,
648 "llvm.SI.load.const",
649 base->elem_type,
650 args, 2,
651 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
652 args[5 + chan] =
653 lp_build_add(base, args[5 + chan],
654 lp_build_mul(base, base_elt,
655 out_elts[const_chan]));
656 }
657 }
658
659 args[0] = lp_build_const_int32(base->gallivm, 0xf);
660 args[1] = uint->zero;
661 args[2] = uint->zero;
662 args[3] = lp_build_const_int32(base->gallivm,
663 V_008DFC_SQ_EXP_POS + 2 + reg_index);
664 args[4] = uint->zero;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200665 }
666}
667
Marek Olšák8d03d922013-09-01 23:59:06 +0200668static void si_dump_streamout(struct pipe_stream_output_info *so)
669{
670 unsigned i;
671
672 if (so->num_outputs)
673 fprintf(stderr, "STREAMOUT\n");
674
675 for (i = 0; i < so->num_outputs; i++) {
676 unsigned mask = ((1 << so->output[i].num_components) - 1) <<
677 so->output[i].start_component;
678 fprintf(stderr, " %i: BUF%i[%i..%i] <- OUT[%i].%s%s%s%s\n",
679 i, so->output[i].output_buffer,
680 so->output[i].dst_offset, so->output[i].dst_offset + so->output[i].num_components - 1,
681 so->output[i].register_index,
682 mask & 1 ? "x" : "",
683 mask & 2 ? "y" : "",
684 mask & 4 ? "z" : "",
685 mask & 8 ? "w" : "");
686 }
687}
688
689/* TBUFFER_STORE_FORMAT_{X,XY,XYZ,XYZW} <- the suffix is selected by num_channels=1..4.
690 * The type of vdata must be one of i32 (num_channels=1), v2i32 (num_channels=2),
691 * or v4i32 (num_channels=3,4). */
692static void build_tbuffer_store(struct si_shader_context *shader,
693 LLVMValueRef rsrc,
694 LLVMValueRef vdata,
695 unsigned num_channels,
696 LLVMValueRef vaddr,
697 LLVMValueRef soffset,
698 unsigned inst_offset,
699 unsigned dfmt,
700 unsigned nfmt,
701 unsigned offen,
702 unsigned idxen,
703 unsigned glc,
704 unsigned slc,
705 unsigned tfe)
706{
707 struct gallivm_state *gallivm = &shader->radeon_bld.gallivm;
708 LLVMTypeRef i32 = LLVMInt32TypeInContext(gallivm->context);
709 LLVMValueRef args[] = {
710 rsrc,
711 vdata,
712 LLVMConstInt(i32, num_channels, 0),
713 vaddr,
714 soffset,
715 LLVMConstInt(i32, inst_offset, 0),
716 LLVMConstInt(i32, dfmt, 0),
717 LLVMConstInt(i32, nfmt, 0),
718 LLVMConstInt(i32, offen, 0),
719 LLVMConstInt(i32, idxen, 0),
720 LLVMConstInt(i32, glc, 0),
721 LLVMConstInt(i32, slc, 0),
722 LLVMConstInt(i32, tfe, 0)
723 };
724
725 /* The intrinsic is overloaded, we need to add a type suffix for overloading to work. */
726 unsigned func = CLAMP(num_channels, 1, 3) - 1;
727 const char *types[] = {"i32", "v2i32", "v4i32"};
728 char name[256];
729 snprintf(name, sizeof(name), "llvm.SI.tbuffer.store.%s", types[func]);
730
731 lp_build_intrinsic(gallivm->builder, name,
732 LLVMVoidTypeInContext(gallivm->context),
733 args, Elements(args));
734}
735
736static void build_streamout_store(struct si_shader_context *shader,
737 LLVMValueRef rsrc,
738 LLVMValueRef vdata,
739 unsigned num_channels,
740 LLVMValueRef vaddr,
741 LLVMValueRef soffset,
742 unsigned inst_offset)
743{
744 static unsigned dfmt[] = {
745 V_008F0C_BUF_DATA_FORMAT_32,
746 V_008F0C_BUF_DATA_FORMAT_32_32,
747 V_008F0C_BUF_DATA_FORMAT_32_32_32,
748 V_008F0C_BUF_DATA_FORMAT_32_32_32_32
749 };
750 assert(num_channels >= 1 && num_channels <= 4);
751
752 build_tbuffer_store(shader, rsrc, vdata, num_channels, vaddr, soffset,
753 inst_offset, dfmt[num_channels-1],
754 V_008F0C_BUF_NUM_FORMAT_UINT, 1, 0, 1, 1, 0);
755}
756
757/* On SI, the vertex shader is responsible for writing streamout data
758 * to buffers. */
759static void si_llvm_emit_streamout(struct si_shader_context *shader)
760{
761 struct pipe_stream_output_info *so = &shader->shader->selector->so;
762 struct gallivm_state *gallivm = &shader->radeon_bld.gallivm;
763 LLVMBuilderRef builder = gallivm->builder;
764 int i, j;
765 struct lp_build_if_state if_ctx;
766
767 LLVMTypeRef i32 = LLVMInt32TypeInContext(gallivm->context);
768
769 LLVMValueRef so_param =
770 LLVMGetParam(shader->radeon_bld.main_fn,
771 shader->param_streamout_config);
772
773 /* Get bits [22:16], i.e. (so_param >> 16) & 127; */
774 LLVMValueRef so_vtx_count =
775 LLVMBuildAnd(builder,
776 LLVMBuildLShr(builder, so_param,
777 LLVMConstInt(i32, 16, 0), ""),
778 LLVMConstInt(i32, 127, 0), "");
779
780 LLVMValueRef tid = build_intrinsic(builder, "llvm.SI.tid", i32,
781 NULL, 0, LLVMReadNoneAttribute);
782
783 /* can_emit = tid < so_vtx_count; */
784 LLVMValueRef can_emit =
785 LLVMBuildICmp(builder, LLVMIntULT, tid, so_vtx_count, "");
786
787 /* Emit the streamout code conditionally. This actually avoids
788 * out-of-bounds buffer access. The hw tells us via the SGPR
789 * (so_vtx_count) which threads are allowed to emit streamout data. */
790 lp_build_if(&if_ctx, gallivm, can_emit);
791 {
792 /* The buffer offset is computed as follows:
793 * ByteOffset = streamout_offset[buffer_id]*4 +
794 * (streamout_write_index + thread_id)*stride[buffer_id] +
795 * attrib_offset
796 */
797
798 LLVMValueRef so_write_index =
799 LLVMGetParam(shader->radeon_bld.main_fn,
800 shader->param_streamout_write_index);
801
802 /* Compute (streamout_write_index + thread_id). */
803 so_write_index = LLVMBuildAdd(builder, so_write_index, tid, "");
804
805 /* Compute the write offset for each enabled buffer. */
806 LLVMValueRef so_write_offset[4] = {};
807 for (i = 0; i < 4; i++) {
808 if (!so->stride[i])
809 continue;
810
811 LLVMValueRef so_offset = LLVMGetParam(shader->radeon_bld.main_fn,
812 shader->param_streamout_offset[i]);
813 so_offset = LLVMBuildMul(builder, so_offset, LLVMConstInt(i32, 4, 0), "");
814
815 so_write_offset[i] = LLVMBuildMul(builder, so_write_index,
816 LLVMConstInt(i32, so->stride[i]*4, 0), "");
817 so_write_offset[i] = LLVMBuildAdd(builder, so_write_offset[i], so_offset, "");
818 }
819
820 LLVMValueRef (*outputs)[TGSI_NUM_CHANNELS] = shader->radeon_bld.soa.outputs;
821
822 /* Write streamout data. */
823 for (i = 0; i < so->num_outputs; i++) {
824 unsigned buf_idx = so->output[i].output_buffer;
825 unsigned reg = so->output[i].register_index;
826 unsigned start = so->output[i].start_component;
827 unsigned num_comps = so->output[i].num_components;
828 LLVMValueRef out[4];
829
830 assert(num_comps && num_comps <= 4);
831 if (!num_comps || num_comps > 4)
832 continue;
833
834 /* Load the output as int. */
835 for (j = 0; j < num_comps; j++) {
836 out[j] = LLVMBuildLoad(builder, outputs[reg][start+j], "");
837 out[j] = LLVMBuildBitCast(builder, out[j], i32, "");
838 }
839
840 /* Pack the output. */
841 LLVMValueRef vdata = NULL;
842
843 switch (num_comps) {
844 case 1: /* as i32 */
845 vdata = out[0];
846 break;
847 case 2: /* as v2i32 */
848 case 3: /* as v4i32 (aligned to 4) */
849 case 4: /* as v4i32 */
850 vdata = LLVMGetUndef(LLVMVectorType(i32, util_next_power_of_two(num_comps)));
851 for (j = 0; j < num_comps; j++) {
852 vdata = LLVMBuildInsertElement(builder, vdata, out[j],
853 LLVMConstInt(i32, j, 0), "");
854 }
855 break;
856 }
857
858 build_streamout_store(shader, shader->so_buffers[buf_idx],
859 vdata, num_comps,
860 so_write_offset[buf_idx],
861 LLVMConstInt(i32, 0, 0),
862 so->output[i].dst_offset*4);
863 }
864 }
865 lp_build_endif(&if_ctx);
866}
867
Tom Stellarda75c6162012-01-06 17:38:37 -0500868/* XXX: This is partially implemented for VS only at this point. It is not complete */
869static void si_llvm_emit_epilogue(struct lp_build_tgsi_context * bld_base)
870{
871 struct si_shader_context * si_shader_ctx = si_shader_context(bld_base);
Christian König3c09f112012-07-18 17:39:15 +0200872 struct si_shader * shader = &si_shader_ctx->shader->shader;
Tom Stellarda75c6162012-01-06 17:38:37 -0500873 struct lp_build_context * base = &bld_base->base;
874 struct lp_build_context * uint =
875 &si_shader_ctx->radeon_bld.soa.bld_base.uint_bld;
876 struct tgsi_parse_context *parse = &si_shader_ctx->parse;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100877 LLVMValueRef args[9];
Tom Stellarda75c6162012-01-06 17:38:37 -0500878 LLVMValueRef last_args[9] = { 0 };
Michel Dänzerb00269a2013-08-07 18:14:16 +0200879 LLVMValueRef pos_args[4][9] = { { 0 } };
Michel Dänzer0afeea52013-05-02 14:53:17 +0200880 unsigned semantic_name;
Christian König35088152012-08-01 22:35:24 +0200881 unsigned color_count = 0;
882 unsigned param_count = 0;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100883 int depth_index = -1, stencil_index = -1;
Michel Dänzerb00269a2013-08-07 18:14:16 +0200884 int i;
Tom Stellarda75c6162012-01-06 17:38:37 -0500885
Marek Olšák8d03d922013-09-01 23:59:06 +0200886 if (si_shader_ctx->shader->selector->so.num_outputs) {
887 si_llvm_emit_streamout(si_shader_ctx);
888 }
889
Tom Stellarda75c6162012-01-06 17:38:37 -0500890 while (!tgsi_parse_end_of_tokens(parse)) {
Tom Stellarda75c6162012-01-06 17:38:37 -0500891 struct tgsi_full_declaration *d =
892 &parse->FullToken.FullDeclaration;
Tom Stellarda75c6162012-01-06 17:38:37 -0500893 unsigned target;
894 unsigned index;
Tom Stellarda75c6162012-01-06 17:38:37 -0500895
896 tgsi_parse_token(parse);
Michel Dänzerc8402702013-02-12 18:37:22 +0100897
898 if (parse->FullToken.Token.Type == TGSI_TOKEN_TYPE_PROPERTY &&
899 parse->FullToken.FullProperty.Property.PropertyName ==
900 TGSI_PROPERTY_FS_COLOR0_WRITES_ALL_CBUFS)
901 shader->fs_write_all = TRUE;
902
Tom Stellarda75c6162012-01-06 17:38:37 -0500903 if (parse->FullToken.Token.Type != TGSI_TOKEN_TYPE_DECLARATION)
904 continue;
905
906 switch (d->Declaration.File) {
907 case TGSI_FILE_INPUT:
908 i = shader->ninput++;
Marek Olšák2eac0aa2013-05-14 19:37:17 +0200909 assert(i < Elements(shader->input));
Tom Stellarda75c6162012-01-06 17:38:37 -0500910 shader->input[i].name = d->Semantic.Name;
911 shader->input[i].sid = d->Semantic.Index;
Francisco Jerez12799232012-04-30 18:27:52 +0200912 shader->input[i].interpolate = d->Interp.Interpolate;
913 shader->input[i].centroid = d->Interp.Centroid;
Christian König35088152012-08-01 22:35:24 +0200914 continue;
915
Tom Stellarda75c6162012-01-06 17:38:37 -0500916 case TGSI_FILE_OUTPUT:
917 i = shader->noutput++;
Marek Olšák2eac0aa2013-05-14 19:37:17 +0200918 assert(i < Elements(shader->output));
Tom Stellarda75c6162012-01-06 17:38:37 -0500919 shader->output[i].name = d->Semantic.Name;
920 shader->output[i].sid = d->Semantic.Index;
Francisco Jerez12799232012-04-30 18:27:52 +0200921 shader->output[i].interpolate = d->Interp.Interpolate;
Tom Stellarda75c6162012-01-06 17:38:37 -0500922 break;
Tom Stellarda75c6162012-01-06 17:38:37 -0500923
Christian König35088152012-08-01 22:35:24 +0200924 default:
Tom Stellarda75c6162012-01-06 17:38:37 -0500925 continue;
Christian König35088152012-08-01 22:35:24 +0200926 }
Tom Stellarda75c6162012-01-06 17:38:37 -0500927
Michel Dänzer0afeea52013-05-02 14:53:17 +0200928 semantic_name = d->Semantic.Name;
929handle_semantic:
Tom Stellarda75c6162012-01-06 17:38:37 -0500930 for (index = d->Range.First; index <= d->Range.Last; index++) {
Tom Stellarda75c6162012-01-06 17:38:37 -0500931 /* Select the correct target */
Michel Dänzer0afeea52013-05-02 14:53:17 +0200932 switch(semantic_name) {
Tom Stellardc3c323a2012-08-30 10:35:36 -0400933 case TGSI_SEMANTIC_PSIZE:
Michel Dänzer4730dea2013-05-03 17:59:34 +0200934 shader->vs_out_misc_write = 1;
935 shader->vs_out_point_size = 1;
936 target = V_008DFC_SQ_EXP_POS + 1;
Tom Stellarda75c6162012-01-06 17:38:37 -0500937 break;
Michel Dänzer1a616c12012-11-13 17:35:09 +0100938 case TGSI_SEMANTIC_POSITION:
939 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
940 target = V_008DFC_SQ_EXP_POS;
941 break;
942 } else {
943 depth_index = index;
944 continue;
945 }
946 case TGSI_SEMANTIC_STENCIL:
947 stencil_index = index;
948 continue;
Tom Stellarda75c6162012-01-06 17:38:37 -0500949 case TGSI_SEMANTIC_COLOR:
950 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
Michel Dänzer691f08d2012-09-06 18:03:38 +0200951 case TGSI_SEMANTIC_BCOLOR:
Tom Stellarda75c6162012-01-06 17:38:37 -0500952 target = V_008DFC_SQ_EXP_PARAM + param_count;
Michel Dänzerdd9d6192012-05-18 15:01:10 +0200953 shader->output[i].param_offset = param_count;
Tom Stellarda75c6162012-01-06 17:38:37 -0500954 param_count++;
955 } else {
956 target = V_008DFC_SQ_EXP_MRT + color_count;
Marek Olšák6d4755a2013-07-30 22:29:29 +0200957 if (si_shader_ctx->shader->key.ps.alpha_to_one) {
958 si_alpha_to_one(bld_base, index);
959 }
Michel Dänzer7708a862012-11-02 15:57:30 +0100960 if (color_count == 0 &&
Christian Königa0dca442013-03-22 15:59:22 +0100961 si_shader_ctx->shader->key.ps.alpha_func != PIPE_FUNC_ALWAYS)
Michel Dänzer7708a862012-11-02 15:57:30 +0100962 si_alpha_test(bld_base, index);
963
Tom Stellarda75c6162012-01-06 17:38:37 -0500964 color_count++;
965 }
966 break;
Michel Dänzer0afeea52013-05-02 14:53:17 +0200967 case TGSI_SEMANTIC_CLIPDIST:
Michel Dänzer2f98dc22013-08-08 16:58:00 +0200968 if (!(si_shader_ctx->shader->key.vs.ucps_enabled &
969 (1 << d->Semantic.Index)))
970 continue;
Michel Dänzer0afeea52013-05-02 14:53:17 +0200971 shader->clip_dist_write |=
972 d->Declaration.UsageMask << (d->Semantic.Index << 2);
973 target = V_008DFC_SQ_EXP_POS + 2 + d->Semantic.Index;
974 break;
Michel Dänzere3befbc2013-05-15 18:09:50 +0200975 case TGSI_SEMANTIC_CLIPVERTEX:
Michel Dänzerb00269a2013-08-07 18:14:16 +0200976 si_llvm_emit_clipvertex(bld_base, pos_args, index);
Michel Dänzere3befbc2013-05-15 18:09:50 +0200977 continue;
Michel Dänzer30b30372012-09-06 17:53:04 +0200978 case TGSI_SEMANTIC_FOG:
Tom Stellarda75c6162012-01-06 17:38:37 -0500979 case TGSI_SEMANTIC_GENERIC:
980 target = V_008DFC_SQ_EXP_PARAM + param_count;
Michel Dänzerdd9d6192012-05-18 15:01:10 +0200981 shader->output[i].param_offset = param_count;
Tom Stellarda75c6162012-01-06 17:38:37 -0500982 param_count++;
983 break;
984 default:
985 target = 0;
986 fprintf(stderr,
987 "Warning: SI unhandled output type:%d\n",
Michel Dänzer0afeea52013-05-02 14:53:17 +0200988 semantic_name);
Tom Stellarda75c6162012-01-06 17:38:37 -0500989 }
990
Michel Dänzer26c71392012-08-24 12:03:11 +0200991 si_llvm_init_export_args(bld_base, d, index, target, args);
Tom Stellarda75c6162012-01-06 17:38:37 -0500992
Michel Dänzerb00269a2013-08-07 18:14:16 +0200993 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX &&
994 target >= V_008DFC_SQ_EXP_POS &&
995 target <= (V_008DFC_SQ_EXP_POS + 3)) {
996 memcpy(pos_args[target - V_008DFC_SQ_EXP_POS],
997 args, sizeof(args));
998 } else if (si_shader_ctx->type == TGSI_PROCESSOR_FRAGMENT &&
999 semantic_name == TGSI_SEMANTIC_COLOR) {
Tom Stellarda75c6162012-01-06 17:38:37 -05001000 if (last_args[0]) {
1001 lp_build_intrinsic(base->gallivm->builder,
1002 "llvm.SI.export",
1003 LLVMVoidTypeInContext(base->gallivm->context),
1004 last_args, 9);
1005 }
1006
1007 memcpy(last_args, args, sizeof(args));
1008 } else {
1009 lp_build_intrinsic(base->gallivm->builder,
1010 "llvm.SI.export",
1011 LLVMVoidTypeInContext(base->gallivm->context),
1012 args, 9);
1013 }
1014
1015 }
Michel Dänzer0afeea52013-05-02 14:53:17 +02001016
1017 if (semantic_name == TGSI_SEMANTIC_CLIPDIST) {
1018 semantic_name = TGSI_SEMANTIC_GENERIC;
1019 goto handle_semantic;
1020 }
Tom Stellarda75c6162012-01-06 17:38:37 -05001021 }
1022
Michel Dänzer1a616c12012-11-13 17:35:09 +01001023 if (depth_index >= 0 || stencil_index >= 0) {
1024 LLVMValueRef out_ptr;
1025 unsigned mask = 0;
1026
1027 /* Specify the target we are exporting */
1028 args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRTZ);
1029
1030 if (depth_index >= 0) {
1031 out_ptr = si_shader_ctx->radeon_bld.soa.outputs[depth_index][2];
1032 args[5] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
1033 mask |= 0x1;
1034
1035 if (stencil_index < 0) {
1036 args[6] =
1037 args[7] =
1038 args[8] = args[5];
1039 }
1040 }
1041
1042 if (stencil_index >= 0) {
1043 out_ptr = si_shader_ctx->radeon_bld.soa.outputs[stencil_index][1];
1044 args[7] =
1045 args[8] =
1046 args[6] = LLVMBuildLoad(base->gallivm->builder, out_ptr, "");
Michel Dänzer46fd81e2013-08-23 14:55:45 +02001047 /* Only setting the stencil component bit (0x2) here
1048 * breaks some stencil piglit tests
1049 */
1050 mask |= 0x3;
Michel Dänzer1a616c12012-11-13 17:35:09 +01001051
1052 if (depth_index < 0)
1053 args[5] = args[6];
1054 }
1055
1056 /* Specify which components to enable */
1057 args[0] = lp_build_const_int32(base->gallivm, mask);
1058
1059 args[1] =
1060 args[2] =
1061 args[4] = uint->zero;
1062
1063 if (last_args[0])
1064 lp_build_intrinsic(base->gallivm->builder,
1065 "llvm.SI.export",
1066 LLVMVoidTypeInContext(base->gallivm->context),
1067 args, 9);
1068 else
1069 memcpy(last_args, args, sizeof(args));
1070 }
1071
Michel Dänzerb00269a2013-08-07 18:14:16 +02001072 if (si_shader_ctx->type == TGSI_PROCESSOR_VERTEX) {
1073 unsigned pos_idx = 0;
Christian Königf18fd252012-07-25 21:58:46 +02001074
Michel Dänzerb00269a2013-08-07 18:14:16 +02001075 for (i = 0; i < 4; i++)
1076 if (pos_args[i][0])
1077 shader->nr_pos_exports++;
Christian Königf18fd252012-07-25 21:58:46 +02001078
Michel Dänzerb00269a2013-08-07 18:14:16 +02001079 for (i = 0; i < 4; i++) {
1080 if (!pos_args[i][0])
1081 continue;
Christian Königf18fd252012-07-25 21:58:46 +02001082
Michel Dänzerc8402702013-02-12 18:37:22 +01001083 /* Specify the target we are exporting */
Michel Dänzerb00269a2013-08-07 18:14:16 +02001084 pos_args[i][3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_POS + pos_idx++);
1085
1086 if (pos_idx == shader->nr_pos_exports)
1087 /* Specify that this is the last export */
1088 pos_args[i][2] = uint->one;
Michel Dänzerc8402702013-02-12 18:37:22 +01001089
1090 lp_build_intrinsic(base->gallivm->builder,
1091 "llvm.SI.export",
1092 LLVMVoidTypeInContext(base->gallivm->context),
Michel Dänzerb00269a2013-08-07 18:14:16 +02001093 pos_args[i], 9);
1094 }
1095 } else {
1096 if (!last_args[0]) {
1097 /* Specify which components to enable */
1098 last_args[0] = lp_build_const_int32(base->gallivm, 0x0);
1099
1100 /* Specify the target we are exporting */
1101 last_args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRT);
1102
1103 /* Set COMPR flag to zero to export data as 32-bit */
1104 last_args[4] = uint->zero;
1105
1106 /* dummy bits */
1107 last_args[5]= uint->zero;
1108 last_args[6]= uint->zero;
1109 last_args[7]= uint->zero;
1110 last_args[8]= uint->zero;
Michel Dänzerc8402702013-02-12 18:37:22 +01001111
1112 si_shader_ctx->shader->spi_shader_col_format |=
Michel Dänzerb00269a2013-08-07 18:14:16 +02001113 V_028714_SPI_SHADER_32_ABGR;
1114 si_shader_ctx->shader->cb_shader_mask |= S_02823C_OUTPUT0_ENABLE(0xf);
Michel Dänzerc8402702013-02-12 18:37:22 +01001115 }
1116
Michel Dänzerb00269a2013-08-07 18:14:16 +02001117 /* Specify whether the EXEC mask represents the valid mask */
1118 last_args[1] = uint->one;
1119
1120 if (shader->fs_write_all && shader->nr_cbufs > 1) {
1121 int i;
1122
1123 /* Specify that this is not yet the last export */
1124 last_args[2] = lp_build_const_int32(base->gallivm, 0);
1125
1126 for (i = 1; i < shader->nr_cbufs; i++) {
1127 /* Specify the target we are exporting */
1128 last_args[3] = lp_build_const_int32(base->gallivm,
1129 V_008DFC_SQ_EXP_MRT + i);
1130
1131 lp_build_intrinsic(base->gallivm->builder,
1132 "llvm.SI.export",
1133 LLVMVoidTypeInContext(base->gallivm->context),
1134 last_args, 9);
1135
1136 si_shader_ctx->shader->spi_shader_col_format |=
1137 si_shader_ctx->shader->spi_shader_col_format << 4;
1138 si_shader_ctx->shader->cb_shader_mask |=
1139 si_shader_ctx->shader->cb_shader_mask << 4;
1140 }
1141
1142 last_args[3] = lp_build_const_int32(base->gallivm, V_008DFC_SQ_EXP_MRT);
1143 }
1144
1145 /* Specify that this is the last export */
1146 last_args[2] = lp_build_const_int32(base->gallivm, 1);
1147
1148 lp_build_intrinsic(base->gallivm->builder,
1149 "llvm.SI.export",
1150 LLVMVoidTypeInContext(base->gallivm->context),
1151 last_args, 9);
Michel Dänzerc8402702013-02-12 18:37:22 +01001152 }
Tom Stellarda75c6162012-01-06 17:38:37 -05001153/* XXX: Look up what this function does */
1154/* ctx->shader->output[i].spi_sid = r600_spi_sid(&ctx->shader->output[i]);*/
1155}
1156
Marek Olšák4855acd2013-08-06 15:08:54 +02001157static const struct lp_build_tgsi_action txf_action;
1158
1159static void build_tex_intrinsic(const struct lp_build_tgsi_action * action,
1160 struct lp_build_tgsi_context * bld_base,
1161 struct lp_build_emit_data * emit_data);
1162
Tom Stellarda75c6162012-01-06 17:38:37 -05001163static void tex_fetch_args(
1164 struct lp_build_tgsi_context * bld_base,
1165 struct lp_build_emit_data * emit_data)
1166{
Christian König55fe5cc2013-03-04 16:30:06 +01001167 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
Michel Dänzere5fb7342013-01-24 18:54:51 +01001168 struct gallivm_state *gallivm = bld_base->base.gallivm;
Michel Dänzerc2bae6b2012-08-02 17:19:22 +02001169 const struct tgsi_full_instruction * inst = emit_data->inst;
Michel Dänzer120efee2013-01-25 12:10:11 +01001170 unsigned opcode = inst->Instruction.Opcode;
1171 unsigned target = inst->Texture.Texture;
Marek Olšák4855acd2013-08-06 15:08:54 +02001172 unsigned sampler_src, sampler_index;
Michel Dänzer120efee2013-01-25 12:10:11 +01001173 LLVMValueRef coords[4];
1174 LLVMValueRef address[16];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001175 int ref_pos;
1176 unsigned num_coords = tgsi_util_get_texture_coord_dim(target, &ref_pos);
Michel Dänzer120efee2013-01-25 12:10:11 +01001177 unsigned count = 0;
Michel Dänzere5fb7342013-01-24 18:54:51 +01001178 unsigned chan;
Tom Stellard467f5162012-05-16 15:15:35 -04001179
Michel Dänzer120efee2013-01-25 12:10:11 +01001180 /* Fetch and project texture coordinates */
1181 coords[3] = lp_build_emit_fetch(bld_base, emit_data->inst, 0, TGSI_CHAN_W);
Michel Dänzere5fb7342013-01-24 18:54:51 +01001182 for (chan = 0; chan < 3; chan++ ) {
1183 coords[chan] = lp_build_emit_fetch(bld_base,
1184 emit_data->inst, 0,
1185 chan);
Michel Dänzer120efee2013-01-25 12:10:11 +01001186 if (opcode == TGSI_OPCODE_TXP)
Michel Dänzerc2bae6b2012-08-02 17:19:22 +02001187 coords[chan] = lp_build_emit_llvm_binary(bld_base,
1188 TGSI_OPCODE_DIV,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001189 coords[chan],
1190 coords[3]);
1191 }
1192
Michel Dänzer120efee2013-01-25 12:10:11 +01001193 if (opcode == TGSI_OPCODE_TXP)
1194 coords[3] = bld_base->base.one;
Tom Stellarda75c6162012-01-06 17:38:37 -05001195
Michel Dänzer120efee2013-01-25 12:10:11 +01001196 /* Pack LOD bias value */
1197 if (opcode == TGSI_OPCODE_TXB)
1198 address[count++] = coords[3];
Vadim Girlin8cf552b2012-12-18 17:39:19 +04001199
Michel Dänzer0495adb2013-05-06 12:45:14 +02001200 if (target == TGSI_TEXTURE_CUBE || target == TGSI_TEXTURE_SHADOWCUBE)
Michel Dänzere5fb7342013-01-24 18:54:51 +01001201 radeon_llvm_emit_prepare_cube_coords(bld_base, emit_data, coords);
Michel Dänzer120efee2013-01-25 12:10:11 +01001202
1203 /* Pack depth comparison value */
1204 switch (target) {
1205 case TGSI_TEXTURE_SHADOW1D:
1206 case TGSI_TEXTURE_SHADOW1D_ARRAY:
1207 case TGSI_TEXTURE_SHADOW2D:
1208 case TGSI_TEXTURE_SHADOWRECT:
Michel Dänzer120efee2013-01-25 12:10:11 +01001209 case TGSI_TEXTURE_SHADOWCUBE:
1210 case TGSI_TEXTURE_SHADOW2D_ARRAY:
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001211 assert(ref_pos >= 0);
1212 address[count++] = coords[ref_pos];
Michel Dänzer120efee2013-01-25 12:10:11 +01001213 break;
1214 case TGSI_TEXTURE_SHADOWCUBE_ARRAY:
1215 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, 0);
Michel Dänzere0f2ffc2012-12-03 12:46:30 +01001216 }
1217
Michel Dänzera6b83c02013-02-21 16:10:55 +01001218 /* Pack user derivatives */
1219 if (opcode == TGSI_OPCODE_TXD) {
1220 for (chan = 0; chan < 2; chan++) {
1221 address[count++] = lp_build_emit_fetch(bld_base, inst, 1, chan);
1222 if (num_coords > 1)
1223 address[count++] = lp_build_emit_fetch(bld_base, inst, 2, chan);
1224 }
1225 }
1226
Michel Dänzer120efee2013-01-25 12:10:11 +01001227 /* Pack texture coordinates */
1228 address[count++] = coords[0];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001229 if (num_coords > 1)
Michel Dänzer120efee2013-01-25 12:10:11 +01001230 address[count++] = coords[1];
Michel Dänzerbeaa5eb2013-05-24 13:23:26 +01001231 if (num_coords > 2)
Michel Dänzer120efee2013-01-25 12:10:11 +01001232 address[count++] = coords[2];
Michel Dänzere5fb7342013-01-24 18:54:51 +01001233
Marek Olšákd2bd6342013-09-18 15:40:21 +02001234 /* Pack LOD or sample index */
Michel Dänzer36231112013-05-02 09:44:45 +02001235 if (opcode == TGSI_OPCODE_TXL || opcode == TGSI_OPCODE_TXF)
Michel Dänzer120efee2013-01-25 12:10:11 +01001236 address[count++] = coords[3];
1237
1238 if (count > 16) {
1239 assert(!"Cannot handle more than 16 texture address parameters");
1240 count = 16;
1241 }
1242
1243 for (chan = 0; chan < count; chan++ ) {
1244 address[chan] = LLVMBuildBitCast(gallivm->builder,
1245 address[chan],
1246 LLVMInt32TypeInContext(gallivm->context),
1247 "");
1248 }
1249
Michel Dänzera6b83c02013-02-21 16:10:55 +01001250 sampler_src = emit_data->inst->Instruction.NumSrcRegs - 1;
Marek Olšák4855acd2013-08-06 15:08:54 +02001251 sampler_index = emit_data->inst->Src[sampler_src].Register.Index;
1252
1253 /* Adjust the sample index according to FMASK.
1254 *
1255 * For uncompressed MSAA surfaces, FMASK should return 0x76543210,
1256 * which is the identity mapping. Each nibble says which physical sample
1257 * should be fetched to get that sample.
1258 *
1259 * For example, 0x11111100 means there are only 2 samples stored and
1260 * the second sample covers 3/4 of the pixel. When reading samples 0
1261 * and 1, return physical sample 0 (determined by the first two 0s
1262 * in FMASK), otherwise return physical sample 1.
1263 *
1264 * The sample index should be adjusted as follows:
1265 * sample_index = (fmask >> (sample_index * 4)) & 0xF;
1266 */
1267 if (target == TGSI_TEXTURE_2D_MSAA ||
1268 target == TGSI_TEXTURE_2D_ARRAY_MSAA) {
1269 struct lp_build_context *uint_bld = &bld_base->uint_bld;
1270 struct lp_build_emit_data txf_emit_data = *emit_data;
Marek Olšákd2bd6342013-09-18 15:40:21 +02001271 LLVMValueRef txf_address[4];
Marek Olšák4855acd2013-08-06 15:08:54 +02001272 unsigned txf_count = count;
1273
Marek Olšákd2bd6342013-09-18 15:40:21 +02001274 memcpy(txf_address, address, sizeof(txf_address));
1275
1276 if (target == TGSI_TEXTURE_2D_MSAA) {
1277 txf_address[2] = bld_base->uint_bld.zero;
1278 }
1279 txf_address[3] = bld_base->uint_bld.zero;
Marek Olšák4855acd2013-08-06 15:08:54 +02001280
1281 /* Pad to a power-of-two size. */
1282 while (txf_count < util_next_power_of_two(txf_count))
1283 txf_address[txf_count++] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
1284
1285 /* Read FMASK using TXF. */
1286 txf_emit_data.chan = 0;
1287 txf_emit_data.dst_type = LLVMVectorType(
1288 LLVMInt32TypeInContext(bld_base->base.gallivm->context), 4);
1289 txf_emit_data.args[0] = lp_build_gather_values(gallivm, txf_address, txf_count);
1290 txf_emit_data.args[1] = si_shader_ctx->resources[FMASK_TEX_OFFSET + sampler_index];
Marek Olšákd2bd6342013-09-18 15:40:21 +02001291 txf_emit_data.args[2] = lp_build_const_int32(bld_base->base.gallivm,
1292 target == TGSI_TEXTURE_2D_MSAA ? TGSI_TEXTURE_2D : TGSI_TEXTURE_2D_ARRAY);
Marek Olšák4855acd2013-08-06 15:08:54 +02001293 txf_emit_data.arg_count = 3;
1294
1295 build_tex_intrinsic(&txf_action, bld_base, &txf_emit_data);
1296
1297 /* Initialize some constants. */
Marek Olšák4855acd2013-08-06 15:08:54 +02001298 LLVMValueRef four = LLVMConstInt(uint_bld->elem_type, 4, 0);
1299 LLVMValueRef F = LLVMConstInt(uint_bld->elem_type, 0xF, 0);
1300
1301 /* Apply the formula. */
1302 LLVMValueRef fmask =
1303 LLVMBuildExtractElement(gallivm->builder,
1304 txf_emit_data.output[0],
1305 uint_bld->zero, "");
1306
Marek Olšákd2bd6342013-09-18 15:40:21 +02001307 unsigned sample_chan = target == TGSI_TEXTURE_2D_MSAA ? 2 : 3;
Marek Olšák4855acd2013-08-06 15:08:54 +02001308
1309 LLVMValueRef sample_index4 =
Marek Olšákd2bd6342013-09-18 15:40:21 +02001310 LLVMBuildMul(gallivm->builder, address[sample_chan], four, "");
Marek Olšák4855acd2013-08-06 15:08:54 +02001311
1312 LLVMValueRef shifted_fmask =
1313 LLVMBuildLShr(gallivm->builder, fmask, sample_index4, "");
1314
1315 LLVMValueRef final_sample =
1316 LLVMBuildAnd(gallivm->builder, shifted_fmask, F, "");
1317
1318 /* Don't rewrite the sample index if WORD1.DATA_FORMAT of the FMASK
1319 * resource descriptor is 0 (invalid),
1320 */
1321 LLVMValueRef fmask_desc =
1322 LLVMBuildBitCast(gallivm->builder,
1323 si_shader_ctx->resources[FMASK_TEX_OFFSET + sampler_index],
1324 LLVMVectorType(uint_bld->elem_type, 8), "");
1325
1326 LLVMValueRef fmask_word1 =
1327 LLVMBuildExtractElement(gallivm->builder, fmask_desc,
1328 uint_bld->one, "");
1329
1330 LLVMValueRef word1_is_nonzero =
1331 LLVMBuildICmp(gallivm->builder, LLVMIntNE,
1332 fmask_word1, uint_bld->zero, "");
1333
Marek Olšákd2bd6342013-09-18 15:40:21 +02001334 /* Replace the MSAA sample index. */
1335 address[sample_chan] =
Marek Olšák4855acd2013-08-06 15:08:54 +02001336 LLVMBuildSelect(gallivm->builder, word1_is_nonzero,
Marek Olšákd2bd6342013-09-18 15:40:21 +02001337 final_sample, address[sample_chan], "");
Marek Olšák4855acd2013-08-06 15:08:54 +02001338 }
Michel Dänzera6b83c02013-02-21 16:10:55 +01001339
Michel Dänzer36231112013-05-02 09:44:45 +02001340 /* Resource */
Marek Olšák4855acd2013-08-06 15:08:54 +02001341 emit_data->args[1] = si_shader_ctx->resources[sampler_index];
Michel Dänzer36231112013-05-02 09:44:45 +02001342
1343 if (opcode == TGSI_OPCODE_TXF) {
1344 /* add tex offsets */
1345 if (inst->Texture.NumOffsets) {
1346 struct lp_build_context *uint_bld = &bld_base->uint_bld;
1347 struct lp_build_tgsi_soa_context *bld = lp_soa_context(bld_base);
1348 const struct tgsi_texture_offset * off = inst->TexOffsets;
1349
1350 assert(inst->Texture.NumOffsets == 1);
1351
Marek Olšákdefedc02013-09-18 15:36:38 +02001352 switch (target) {
1353 case TGSI_TEXTURE_3D:
1354 address[2] = lp_build_add(uint_bld, address[2],
1355 bld->immediates[off->Index][off->SwizzleZ]);
1356 /* fall through */
1357 case TGSI_TEXTURE_2D:
1358 case TGSI_TEXTURE_SHADOW2D:
1359 case TGSI_TEXTURE_RECT:
1360 case TGSI_TEXTURE_SHADOWRECT:
1361 case TGSI_TEXTURE_2D_ARRAY:
1362 case TGSI_TEXTURE_SHADOW2D_ARRAY:
Michel Dänzer36231112013-05-02 09:44:45 +02001363 address[1] =
1364 lp_build_add(uint_bld, address[1],
Marek Olšákdefedc02013-09-18 15:36:38 +02001365 bld->immediates[off->Index][off->SwizzleY]);
1366 /* fall through */
1367 case TGSI_TEXTURE_1D:
1368 case TGSI_TEXTURE_SHADOW1D:
1369 case TGSI_TEXTURE_1D_ARRAY:
1370 case TGSI_TEXTURE_SHADOW1D_ARRAY:
1371 address[0] =
1372 lp_build_add(uint_bld, address[0],
1373 bld->immediates[off->Index][off->SwizzleX]);
1374 break;
1375 /* texture offsets do not apply to other texture targets */
1376 }
Michel Dänzer36231112013-05-02 09:44:45 +02001377 }
1378
1379 emit_data->dst_type = LLVMVectorType(
1380 LLVMInt32TypeInContext(bld_base->base.gallivm->context),
1381 4);
1382
1383 emit_data->arg_count = 3;
1384 } else {
1385 /* Sampler */
Marek Olšák4855acd2013-08-06 15:08:54 +02001386 emit_data->args[2] = si_shader_ctx->samplers[sampler_index];
Michel Dänzer36231112013-05-02 09:44:45 +02001387
1388 emit_data->dst_type = LLVMVectorType(
1389 LLVMFloatTypeInContext(bld_base->base.gallivm->context),
1390 4);
1391
1392 emit_data->arg_count = 4;
1393 }
1394
1395 /* Dimensions */
1396 emit_data->args[emit_data->arg_count - 1] =
1397 lp_build_const_int32(bld_base->base.gallivm, target);
1398
Michel Dänzer120efee2013-01-25 12:10:11 +01001399 /* Pad to power of two vector */
1400 while (count < util_next_power_of_two(count))
1401 address[count++] = LLVMGetUndef(LLVMInt32TypeInContext(gallivm->context));
1402
Christian Königccf3e8f2013-03-26 15:09:27 +01001403 emit_data->args[0] = lp_build_gather_values(gallivm, address, count);
Tom Stellarda75c6162012-01-06 17:38:37 -05001404}
1405
Michel Dänzer07eddc42013-02-06 15:43:10 +01001406static void build_tex_intrinsic(const struct lp_build_tgsi_action * action,
1407 struct lp_build_tgsi_context * bld_base,
1408 struct lp_build_emit_data * emit_data)
1409{
1410 struct lp_build_context * base = &bld_base->base;
1411 char intr_name[23];
1412
1413 sprintf(intr_name, "%sv%ui32", action->intr_name,
Christian Königccf3e8f2013-03-26 15:09:27 +01001414 LLVMGetVectorSize(LLVMTypeOf(emit_data->args[0])));
Michel Dänzer07eddc42013-02-06 15:43:10 +01001415
Christian König44e32242013-03-20 12:10:35 +01001416 emit_data->output[emit_data->chan] = build_intrinsic(
Michel Dänzer07eddc42013-02-06 15:43:10 +01001417 base->gallivm->builder, intr_name, emit_data->dst_type,
Christian König44e32242013-03-20 12:10:35 +01001418 emit_data->args, emit_data->arg_count,
1419 LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
Michel Dänzer07eddc42013-02-06 15:43:10 +01001420}
1421
Michel Dänzer0495adb2013-05-06 12:45:14 +02001422static void txq_fetch_args(
1423 struct lp_build_tgsi_context * bld_base,
1424 struct lp_build_emit_data * emit_data)
1425{
1426 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
1427 const struct tgsi_full_instruction *inst = emit_data->inst;
1428
1429 /* Mip level */
1430 emit_data->args[0] = lp_build_emit_fetch(bld_base, inst, 0, TGSI_CHAN_X);
1431
1432 /* Resource */
1433 emit_data->args[1] = si_shader_ctx->resources[inst->Src[1].Register.Index];
1434
1435 /* Dimensions */
1436 emit_data->args[2] = lp_build_const_int32(bld_base->base.gallivm,
1437 inst->Texture.Texture);
1438
1439 emit_data->arg_count = 3;
1440
1441 emit_data->dst_type = LLVMVectorType(
1442 LLVMInt32TypeInContext(bld_base->base.gallivm->context),
1443 4);
1444}
1445
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001446#if HAVE_LLVM >= 0x0304
1447
1448static void si_llvm_emit_ddxy(
1449 const struct lp_build_tgsi_action * action,
1450 struct lp_build_tgsi_context * bld_base,
1451 struct lp_build_emit_data * emit_data)
1452{
1453 struct si_shader_context *si_shader_ctx = si_shader_context(bld_base);
1454 struct gallivm_state *gallivm = bld_base->base.gallivm;
1455 struct lp_build_context * base = &bld_base->base;
1456 const struct tgsi_full_instruction *inst = emit_data->inst;
1457 unsigned opcode = inst->Instruction.Opcode;
1458 LLVMValueRef indices[2];
1459 LLVMValueRef store_ptr, load_ptr0, load_ptr1;
1460 LLVMValueRef tl, trbl, result[4];
1461 LLVMTypeRef i32;
1462 unsigned swizzle[4];
1463 unsigned c;
1464
1465 i32 = LLVMInt32TypeInContext(gallivm->context);
1466
1467 indices[0] = bld_base->uint_bld.zero;
1468 indices[1] = build_intrinsic(gallivm->builder, "llvm.SI.tid", i32,
1469 NULL, 0, LLVMReadNoneAttribute);
1470 store_ptr = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1471 indices, 2, "");
1472
1473 indices[1] = LLVMBuildAnd(gallivm->builder, indices[1],
1474 lp_build_const_int32(gallivm, 0xfffffffc), "");
1475 load_ptr0 = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1476 indices, 2, "");
1477
1478 indices[1] = LLVMBuildAdd(gallivm->builder, indices[1],
1479 lp_build_const_int32(gallivm,
1480 opcode == TGSI_OPCODE_DDX ? 1 : 2),
1481 "");
1482 load_ptr1 = LLVMBuildGEP(gallivm->builder, si_shader_ctx->ddxy_lds,
1483 indices, 2, "");
1484
1485 for (c = 0; c < 4; ++c) {
1486 unsigned i;
1487
1488 swizzle[c] = tgsi_util_get_full_src_register_swizzle(&inst->Src[0], c);
1489 for (i = 0; i < c; ++i) {
1490 if (swizzle[i] == swizzle[c]) {
1491 result[c] = result[i];
1492 break;
1493 }
1494 }
1495 if (i != c)
1496 continue;
1497
1498 LLVMBuildStore(gallivm->builder,
1499 LLVMBuildBitCast(gallivm->builder,
1500 lp_build_emit_fetch(bld_base, inst, 0, c),
1501 i32, ""),
1502 store_ptr);
1503
1504 tl = LLVMBuildLoad(gallivm->builder, load_ptr0, "");
1505 tl = LLVMBuildBitCast(gallivm->builder, tl, base->elem_type, "");
1506
1507 trbl = LLVMBuildLoad(gallivm->builder, load_ptr1, "");
1508 trbl = LLVMBuildBitCast(gallivm->builder, trbl, base->elem_type, "");
1509
1510 result[c] = LLVMBuildFSub(gallivm->builder, trbl, tl, "");
1511 }
1512
1513 emit_data->output[0] = lp_build_gather_values(gallivm, result, 4);
1514}
1515
1516#endif /* HAVE_LLVM >= 0x0304 */
1517
Tom Stellarda75c6162012-01-06 17:38:37 -05001518static const struct lp_build_tgsi_action tex_action = {
1519 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001520 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001521 .intr_name = "llvm.SI.sample."
Tom Stellarda75c6162012-01-06 17:38:37 -05001522};
1523
Michel Dänzer3e205132012-11-06 17:39:01 +01001524static const struct lp_build_tgsi_action txb_action = {
1525 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001526 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001527 .intr_name = "llvm.SI.sampleb."
Michel Dänzer3e205132012-11-06 17:39:01 +01001528};
1529
Michel Dänzera6b83c02013-02-21 16:10:55 +01001530#if HAVE_LLVM >= 0x0304
1531static const struct lp_build_tgsi_action txd_action = {
1532 .fetch_args = tex_fetch_args,
1533 .emit = build_tex_intrinsic,
1534 .intr_name = "llvm.SI.sampled."
1535};
1536#endif
1537
Michel Dänzer36231112013-05-02 09:44:45 +02001538static const struct lp_build_tgsi_action txf_action = {
1539 .fetch_args = tex_fetch_args,
1540 .emit = build_tex_intrinsic,
1541 .intr_name = "llvm.SI.imageload."
1542};
1543
Michel Dänzer56ae9be2012-11-06 17:41:50 +01001544static const struct lp_build_tgsi_action txl_action = {
1545 .fetch_args = tex_fetch_args,
Michel Dänzer07eddc42013-02-06 15:43:10 +01001546 .emit = build_tex_intrinsic,
Michel Dänzere5fb7342013-01-24 18:54:51 +01001547 .intr_name = "llvm.SI.samplel."
Michel Dänzer56ae9be2012-11-06 17:41:50 +01001548};
1549
Michel Dänzer0495adb2013-05-06 12:45:14 +02001550static const struct lp_build_tgsi_action txq_action = {
1551 .fetch_args = txq_fetch_args,
1552 .emit = build_tgsi_intrinsic_nomem,
1553 .intr_name = "llvm.SI.resinfo"
1554};
1555
Christian König206f0592013-03-20 14:37:21 +01001556static void create_meta_data(struct si_shader_context *si_shader_ctx)
1557{
1558 struct gallivm_state *gallivm = si_shader_ctx->radeon_bld.soa.bld_base.base.gallivm;
1559 LLVMValueRef args[3];
1560
1561 args[0] = LLVMMDStringInContext(gallivm->context, "const", 5);
1562 args[1] = 0;
1563 args[2] = lp_build_const_int32(gallivm, 1);
1564
1565 si_shader_ctx->const_md = LLVMMDNodeInContext(gallivm->context, args, 3);
1566}
1567
Christian König55fe5cc2013-03-04 16:30:06 +01001568static void create_function(struct si_shader_context *si_shader_ctx)
1569{
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001570 struct lp_build_tgsi_context *bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1571 struct gallivm_state *gallivm = bld_base->base.gallivm;
Christian König0666ffd2013-03-05 15:07:39 +01001572 LLVMTypeRef params[20], f32, i8, i32, v2i32, v3i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001573 unsigned i, last_sgpr, num_params;
Christian König55fe5cc2013-03-04 16:30:06 +01001574
Christian König55fe5cc2013-03-04 16:30:06 +01001575 i8 = LLVMInt8TypeInContext(gallivm->context);
Christian Königc4973212013-03-05 12:14:02 +01001576 i32 = LLVMInt32TypeInContext(gallivm->context);
Christian König0666ffd2013-03-05 15:07:39 +01001577 f32 = LLVMFloatTypeInContext(gallivm->context);
1578 v2i32 = LLVMVectorType(i32, 2);
1579 v3i32 = LLVMVectorType(i32, 3);
Christian Königc4973212013-03-05 12:14:02 +01001580
Christian Königf5298b02013-02-28 14:50:07 +01001581 params[SI_PARAM_CONST] = LLVMPointerType(LLVMVectorType(i8, 16), CONST_ADDR_SPACE);
1582 params[SI_PARAM_SAMPLER] = params[SI_PARAM_CONST];
Christian König55fe5cc2013-03-04 16:30:06 +01001583 params[SI_PARAM_RESOURCE] = LLVMPointerType(LLVMVectorType(i8, 32), CONST_ADDR_SPACE);
1584
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001585 switch (si_shader_ctx->type) {
1586 case TGSI_PROCESSOR_VERTEX:
1587 params[SI_PARAM_VERTEX_BUFFER] = params[SI_PARAM_CONST];
Marek Olšák2993cca2013-08-18 02:34:23 +02001588 params[SI_PARAM_SO_BUFFER] = params[SI_PARAM_CONST];
Christian Königcf9b31f2013-03-21 18:30:23 +01001589 params[SI_PARAM_START_INSTANCE] = i32;
Marek Olšák8d03d922013-09-01 23:59:06 +02001590 num_params = SI_PARAM_START_INSTANCE+1;
1591
1592 /* The locations of the other parameters are assigned dynamically. */
1593
1594 /* Streamout SGPRs. */
1595 if (si_shader_ctx->shader->selector->so.num_outputs) {
1596 params[si_shader_ctx->param_streamout_config = num_params++] = i32;
1597 params[si_shader_ctx->param_streamout_write_index = num_params++] = i32;
1598 }
1599 /* A streamout buffer offset is loaded if the stride is non-zero. */
1600 for (i = 0; i < 4; i++) {
1601 if (!si_shader_ctx->shader->selector->so.stride[i])
1602 continue;
1603
1604 params[si_shader_ctx->param_streamout_offset[i] = num_params++] = i32;
1605 }
1606
1607 last_sgpr = num_params-1;
1608
1609 /* VGPRs */
1610 params[si_shader_ctx->param_vertex_id = num_params++] = i32;
1611 params[num_params++] = i32; /* unused*/
1612 params[num_params++] = i32; /* unused */
1613 params[si_shader_ctx->param_instance_id = num_params++] = i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001614 break;
Christian König0666ffd2013-03-05 15:07:39 +01001615
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001616 case TGSI_PROCESSOR_FRAGMENT:
Christian König0666ffd2013-03-05 15:07:39 +01001617 params[SI_PARAM_PRIM_MASK] = i32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001618 last_sgpr = SI_PARAM_PRIM_MASK;
Christian König0666ffd2013-03-05 15:07:39 +01001619 params[SI_PARAM_PERSP_SAMPLE] = v2i32;
1620 params[SI_PARAM_PERSP_CENTER] = v2i32;
1621 params[SI_PARAM_PERSP_CENTROID] = v2i32;
1622 params[SI_PARAM_PERSP_PULL_MODEL] = v3i32;
1623 params[SI_PARAM_LINEAR_SAMPLE] = v2i32;
1624 params[SI_PARAM_LINEAR_CENTER] = v2i32;
1625 params[SI_PARAM_LINEAR_CENTROID] = v2i32;
1626 params[SI_PARAM_LINE_STIPPLE_TEX] = f32;
1627 params[SI_PARAM_POS_X_FLOAT] = f32;
1628 params[SI_PARAM_POS_Y_FLOAT] = f32;
1629 params[SI_PARAM_POS_Z_FLOAT] = f32;
1630 params[SI_PARAM_POS_W_FLOAT] = f32;
1631 params[SI_PARAM_FRONT_FACE] = f32;
1632 params[SI_PARAM_ANCILLARY] = f32;
1633 params[SI_PARAM_SAMPLE_COVERAGE] = f32;
1634 params[SI_PARAM_POS_FIXED_PT] = f32;
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001635 num_params = SI_PARAM_POS_FIXED_PT+1;
1636 break;
1637
1638 default:
1639 assert(0 && "unimplemented shader");
1640 return;
Christian Königc4973212013-03-05 12:14:02 +01001641 }
Christian König55fe5cc2013-03-04 16:30:06 +01001642
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001643 assert(num_params <= Elements(params));
1644 radeon_llvm_create_func(&si_shader_ctx->radeon_bld, params, num_params);
Christian König55fe5cc2013-03-04 16:30:06 +01001645 radeon_llvm_shader_type(si_shader_ctx->radeon_bld.main_fn, si_shader_ctx->type);
Christian Königcf9b31f2013-03-21 18:30:23 +01001646
Marek Olšák13a1a8b2013-08-18 01:57:40 +02001647 for (i = 0; i <= last_sgpr; ++i) {
1648 LLVMValueRef P = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, i);
Christian Königcf9b31f2013-03-21 18:30:23 +01001649 LLVMAddAttribute(P, LLVMInRegAttribute);
1650 }
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001651
1652#if HAVE_LLVM >= 0x0304
1653 if (bld_base->info->opcode_count[TGSI_OPCODE_DDX] > 0 ||
1654 bld_base->info->opcode_count[TGSI_OPCODE_DDY] > 0)
1655 si_shader_ctx->ddxy_lds =
1656 LLVMAddGlobalInAddressSpace(gallivm->module,
1657 LLVMArrayType(i32, 64),
1658 "ddxy_lds",
1659 LOCAL_ADDR_SPACE);
1660#endif
Christian König55fe5cc2013-03-04 16:30:06 +01001661}
Tom Stellarda75c6162012-01-06 17:38:37 -05001662
Christian König0f6cf2b2013-03-15 15:53:25 +01001663static void preload_constants(struct si_shader_context *si_shader_ctx)
1664{
1665 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1666 struct gallivm_state * gallivm = bld_base->base.gallivm;
1667 const struct tgsi_shader_info * info = bld_base->info;
1668
1669 unsigned i, num_const = info->file_max[TGSI_FILE_CONSTANT] + 1;
1670
1671 LLVMValueRef ptr;
1672
1673 if (num_const == 0)
1674 return;
1675
1676 /* Allocate space for the constant values */
1677 si_shader_ctx->constants = CALLOC(num_const * 4, sizeof(LLVMValueRef));
1678
1679 /* Load the resource descriptor */
1680 ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_CONST);
1681 si_shader_ctx->const_resource = build_indexed_load(si_shader_ctx, ptr, bld_base->uint_bld.zero);
1682
1683 /* Load the constants, we rely on the code sinking to do the rest */
1684 for (i = 0; i < num_const * 4; ++i) {
1685 LLVMValueRef args[2] = {
1686 si_shader_ctx->const_resource,
1687 lp_build_const_int32(gallivm, i * 4)
1688 };
1689 si_shader_ctx->constants[i] = build_intrinsic(gallivm->builder, "llvm.SI.load.const",
1690 bld_base->base.elem_type, args, 2, LLVMReadNoneAttribute | LLVMNoUnwindAttribute);
1691 }
1692}
1693
Christian König1c100182013-03-17 16:02:42 +01001694static void preload_samplers(struct si_shader_context *si_shader_ctx)
1695{
1696 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1697 struct gallivm_state * gallivm = bld_base->base.gallivm;
1698 const struct tgsi_shader_info * info = bld_base->info;
1699
1700 unsigned i, num_samplers = info->file_max[TGSI_FILE_SAMPLER] + 1;
1701
1702 LLVMValueRef res_ptr, samp_ptr;
1703 LLVMValueRef offset;
1704
1705 if (num_samplers == 0)
1706 return;
1707
1708 /* Allocate space for the values */
Marek Olšák4855acd2013-08-06 15:08:54 +02001709 si_shader_ctx->resources = CALLOC(NUM_SAMPLER_VIEWS, sizeof(LLVMValueRef));
Christian König1c100182013-03-17 16:02:42 +01001710 si_shader_ctx->samplers = CALLOC(num_samplers, sizeof(LLVMValueRef));
1711
1712 res_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_RESOURCE);
1713 samp_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn, SI_PARAM_SAMPLER);
1714
1715 /* Load the resources and samplers, we rely on the code sinking to do the rest */
1716 for (i = 0; i < num_samplers; ++i) {
Christian König1c100182013-03-17 16:02:42 +01001717 /* Resource */
1718 offset = lp_build_const_int32(gallivm, i);
1719 si_shader_ctx->resources[i] = build_indexed_load(si_shader_ctx, res_ptr, offset);
1720
1721 /* Sampler */
1722 offset = lp_build_const_int32(gallivm, i);
1723 si_shader_ctx->samplers[i] = build_indexed_load(si_shader_ctx, samp_ptr, offset);
Marek Olšák4855acd2013-08-06 15:08:54 +02001724
1725 /* FMASK resource */
1726 if (info->is_msaa_sampler[i]) {
1727 offset = lp_build_const_int32(gallivm, FMASK_TEX_OFFSET + i);
1728 si_shader_ctx->resources[FMASK_TEX_OFFSET + i] =
1729 build_indexed_load(si_shader_ctx, res_ptr, offset);
1730 }
Christian König1c100182013-03-17 16:02:42 +01001731 }
1732}
1733
Marek Olšák8d03d922013-09-01 23:59:06 +02001734static void preload_streamout_buffers(struct si_shader_context *si_shader_ctx)
1735{
1736 struct lp_build_tgsi_context * bld_base = &si_shader_ctx->radeon_bld.soa.bld_base;
1737 struct gallivm_state * gallivm = bld_base->base.gallivm;
1738 unsigned i;
1739
1740 if (!si_shader_ctx->shader->selector->so.num_outputs)
1741 return;
1742
1743 LLVMValueRef buf_ptr = LLVMGetParam(si_shader_ctx->radeon_bld.main_fn,
1744 SI_PARAM_SO_BUFFER);
1745
1746 /* Load the resources, we rely on the code sinking to do the rest */
1747 for (i = 0; i < 4; ++i) {
1748 if (si_shader_ctx->shader->selector->so.stride[i]) {
1749 LLVMValueRef offset = lp_build_const_int32(gallivm, i);
1750
1751 si_shader_ctx->so_buffers[i] = build_indexed_load(si_shader_ctx, buf_ptr, offset);
1752 }
1753 }
1754}
1755
Tom Stellard302f53d2012-10-25 13:50:10 -04001756int si_compile_llvm(struct r600_context *rctx, struct si_pipe_shader *shader,
1757 LLVMModuleRef mod)
1758{
Tom Stellard302f53d2012-10-25 13:50:10 -04001759 unsigned i;
1760 uint32_t *ptr;
1761 bool dump;
Tom Stellard7782d192013-04-04 09:57:13 -07001762 struct radeon_llvm_binary binary;
Tom Stellard302f53d2012-10-25 13:50:10 -04001763
1764 dump = debug_get_bool_option("RADEON_DUMP_SHADERS", FALSE);
1765
Tom Stellard7782d192013-04-04 09:57:13 -07001766 memset(&binary, 0, sizeof(binary));
1767 radeon_llvm_compile(mod, &binary,
Marek Olšáka81c3e02013-08-14 01:04:39 +02001768 r600_get_llvm_processor_name(rctx->screen->b.family), dump);
Tom Stellard302f53d2012-10-25 13:50:10 -04001769 if (dump) {
1770 fprintf(stderr, "SI CODE:\n");
Tom Stellard7782d192013-04-04 09:57:13 -07001771 for (i = 0; i < binary.code_size; i+=4 ) {
1772 fprintf(stderr, "%02x%02x%02x%02x\n", binary.code[i + 3],
1773 binary.code[i + 2], binary.code[i + 1],
1774 binary.code[i]);
Tom Stellard302f53d2012-10-25 13:50:10 -04001775 }
1776 }
1777
Tom Stellardd50343d2013-04-04 16:21:06 -04001778 /* XXX: We may be able to emit some of these values directly rather than
1779 * extracting fields to be emitted later.
1780 */
1781 for (i = 0; i < binary.config_size; i+= 8) {
1782 unsigned reg = util_le32_to_cpu(*(uint32_t*)(binary.config + i));
1783 unsigned value = util_le32_to_cpu(*(uint32_t*)(binary.config + i + 4));
1784 switch (reg) {
1785 case R_00B028_SPI_SHADER_PGM_RSRC1_PS:
1786 case R_00B128_SPI_SHADER_PGM_RSRC1_VS:
1787 case R_00B228_SPI_SHADER_PGM_RSRC1_GS:
1788 case R_00B848_COMPUTE_PGM_RSRC1:
1789 shader->num_sgprs = (G_00B028_SGPRS(value) + 1) * 8;
1790 shader->num_vgprs = (G_00B028_VGPRS(value) + 1) * 4;
1791 break;
Michel Dänzera06ee5a2013-06-19 18:14:01 +02001792 case R_00B02C_SPI_SHADER_PGM_RSRC2_PS:
1793 shader->lds_size = G_00B02C_EXTRA_LDS_SIZE(value);
1794 break;
1795 case R_00B84C_COMPUTE_PGM_RSRC2:
1796 shader->lds_size = G_00B84C_LDS_SIZE(value);
1797 break;
Tom Stellardd50343d2013-04-04 16:21:06 -04001798 case R_0286CC_SPI_PS_INPUT_ENA:
1799 shader->spi_ps_input_ena = value;
1800 break;
1801 default:
1802 fprintf(stderr, "Warning: Compiler emitted unknown "
1803 "config register: 0x%x\n", reg);
1804 break;
1805 }
1806 }
Tom Stellard302f53d2012-10-25 13:50:10 -04001807
1808 /* copy new shader */
Marek Olšáka81c3e02013-08-14 01:04:39 +02001809 r600_resource_reference(&shader->bo, NULL);
1810 shader->bo = r600_resource_create_custom(rctx->b.b.screen, PIPE_USAGE_IMMUTABLE,
Tom Stellardd50343d2013-04-04 16:21:06 -04001811 binary.code_size);
Tom Stellard302f53d2012-10-25 13:50:10 -04001812 if (shader->bo == NULL) {
1813 return -ENOMEM;
1814 }
1815
Marek Olšáka81c3e02013-08-14 01:04:39 +02001816 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 -04001817 if (0 /*R600_BIG_ENDIAN*/) {
Tom Stellardd50343d2013-04-04 16:21:06 -04001818 for (i = 0; i < binary.code_size / 4; ++i) {
1819 ptr[i] = util_bswap32(*(uint32_t*)(binary.code + i*4));
Tom Stellard302f53d2012-10-25 13:50:10 -04001820 }
1821 } else {
Tom Stellardd50343d2013-04-04 16:21:06 -04001822 memcpy(ptr, binary.code, binary.code_size);
Tom Stellard302f53d2012-10-25 13:50:10 -04001823 }
Marek Olšáka81c3e02013-08-14 01:04:39 +02001824 rctx->b.ws->buffer_unmap(shader->bo->cs_buf);
Tom Stellard302f53d2012-10-25 13:50:10 -04001825
Tom Stellard7782d192013-04-04 09:57:13 -07001826 free(binary.code);
1827 free(binary.config);
Tom Stellard302f53d2012-10-25 13:50:10 -04001828
1829 return 0;
1830}
1831
Tom Stellarda75c6162012-01-06 17:38:37 -05001832int si_pipe_shader_create(
1833 struct pipe_context *ctx,
Christian Königa0dca442013-03-22 15:59:22 +01001834 struct si_pipe_shader *shader)
Tom Stellarda75c6162012-01-06 17:38:37 -05001835{
1836 struct r600_context *rctx = (struct r600_context*)ctx;
Michel Dänzerd1e40b32012-08-23 17:10:37 +02001837 struct si_pipe_shader_selector *sel = shader->selector;
Tom Stellarda75c6162012-01-06 17:38:37 -05001838 struct si_shader_context si_shader_ctx;
1839 struct tgsi_shader_info shader_info;
1840 struct lp_build_tgsi_context * bld_base;
1841 LLVMModuleRef mod;
Michel Dänzer4c4ef9c2012-06-07 19:30:47 +02001842 bool dump;
Tom Stellard302f53d2012-10-25 13:50:10 -04001843 int r = 0;
Michel Dänzer4c4ef9c2012-06-07 19:30:47 +02001844
1845 dump = debug_get_bool_option("RADEON_DUMP_SHADERS", FALSE);
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}