radeonsi: remove si_shader_context::is_gs_copy_shader
[mesa.git] / src / gallium / drivers / radeonsi / si_shader_internal.h
1 /*
2 * Copyright 2016 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE.
22 */
23
24 #ifndef SI_SHADER_PRIVATE_H
25 #define SI_SHADER_PRIVATE_H
26
27 #include "si_shader.h"
28 #include "gallivm/lp_bld_init.h"
29 #include "gallivm/lp_bld_tgsi.h"
30 #include "tgsi/tgsi_parse.h"
31
32 #include <llvm-c/Core.h>
33 #include <llvm-c/TargetMachine.h>
34
35 struct pipe_debug_callback;
36 struct radeon_shader_binary;
37
38 #define RADEON_LLVM_MAX_INPUT_SLOTS 32
39 #define RADEON_LLVM_MAX_INPUTS 32 * 4
40 #define RADEON_LLVM_MAX_OUTPUTS 32 * 4
41
42 #define RADEON_LLVM_INITIAL_CF_DEPTH 4
43
44 #define RADEON_LLVM_MAX_SYSTEM_VALUES 4
45
46 struct si_llvm_flow;
47
48 struct si_shader_context {
49 struct lp_build_tgsi_soa_context soa;
50 struct gallivm_state gallivm;
51 struct si_shader *shader;
52 struct si_screen *screen;
53
54 unsigned type; /* PIPE_SHADER_* specifies the type of shader. */
55
56 /* Whether the prolog will be compiled separately. */
57 bool separate_prolog;
58
59 /** This function is responsible for initilizing the inputs array and will be
60 * called once for each input declared in the TGSI shader.
61 */
62 void (*load_input)(struct si_shader_context *,
63 unsigned input_index,
64 const struct tgsi_full_declaration *decl,
65 LLVMValueRef out[4]);
66
67 void (*load_system_value)(struct si_shader_context *,
68 unsigned index,
69 const struct tgsi_full_declaration *decl);
70
71 void (*declare_memory_region)(struct si_shader_context *,
72 const struct tgsi_full_declaration *decl);
73
74 /** This array contains the input values for the shader. Typically these
75 * values will be in the form of a target intrinsic that will inform the
76 * backend how to load the actual inputs to the shader.
77 */
78 struct tgsi_full_declaration input_decls[RADEON_LLVM_MAX_INPUT_SLOTS];
79 LLVMValueRef inputs[RADEON_LLVM_MAX_INPUTS];
80 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS][TGSI_NUM_CHANNELS];
81
82 /** This pointer is used to contain the temporary values.
83 * The amount of temporary used in tgsi can't be bound to a max value and
84 * thus we must allocate this array at runtime.
85 */
86 LLVMValueRef *temps;
87 unsigned temps_count;
88 LLVMValueRef system_values[RADEON_LLVM_MAX_SYSTEM_VALUES];
89
90 struct si_llvm_flow *flow;
91 unsigned flow_depth;
92 unsigned flow_depth_max;
93
94 struct tgsi_array_info *temp_arrays;
95 LLVMValueRef *temp_array_allocas;
96
97 LLVMValueRef undef_alloca;
98
99 LLVMValueRef main_fn;
100 LLVMTypeRef return_type;
101
102 int param_streamout_config;
103 int param_streamout_write_index;
104 int param_streamout_offset[4];
105 int param_vertex_id;
106 int param_rel_auto_id;
107 int param_vs_prim_id;
108 int param_instance_id;
109 int param_vertex_index0;
110 int param_tes_u;
111 int param_tes_v;
112 int param_tes_rel_patch_id;
113 int param_tes_patch_id;
114 int param_es2gs_offset;
115 int param_oc_lds;
116
117 /* Sets a bit if the dynamic HS control word was 0x80000000. The bit is
118 * 0x800000 for VS, 0x1 for ES.
119 */
120 int param_tess_offchip;
121
122 LLVMTargetMachineRef tm;
123
124 unsigned invariant_load_md_kind;
125 unsigned range_md_kind;
126 unsigned uniform_md_kind;
127 unsigned fpmath_md_kind;
128 LLVMValueRef fpmath_md_2p5_ulp;
129 LLVMValueRef empty_md;
130
131 /* Preloaded descriptors. */
132 LLVMValueRef esgs_ring;
133 LLVMValueRef gsvs_ring[4];
134
135 LLVMValueRef lds;
136 LLVMValueRef gs_next_vertex[4];
137 LLVMValueRef return_value;
138
139 LLVMTypeRef voidt;
140 LLVMTypeRef i1;
141 LLVMTypeRef i8;
142 LLVMTypeRef i32;
143 LLVMTypeRef i64;
144 LLVMTypeRef i128;
145 LLVMTypeRef f32;
146 LLVMTypeRef v16i8;
147 LLVMTypeRef v2i32;
148 LLVMTypeRef v4i32;
149 LLVMTypeRef v4f32;
150 LLVMTypeRef v8i32;
151
152 LLVMValueRef shared_memory;
153 };
154
155 static inline struct si_shader_context *
156 si_shader_context(struct lp_build_tgsi_context *bld_base)
157 {
158 return (struct si_shader_context*)bld_base;
159 }
160
161 void si_llvm_add_attribute(LLVMValueRef F, const char *name, int value);
162 void si_llvm_shader_type(LLVMValueRef F, unsigned type);
163
164 LLVMTargetRef si_llvm_get_amdgpu_target(const char *triple);
165
166 unsigned si_llvm_compile(LLVMModuleRef M, struct radeon_shader_binary *binary,
167 LLVMTargetMachineRef tm,
168 struct pipe_debug_callback *debug);
169
170 LLVMTypeRef tgsi2llvmtype(struct lp_build_tgsi_context *bld_base,
171 enum tgsi_opcode_type type);
172
173 LLVMValueRef bitcast(struct lp_build_tgsi_context *bld_base,
174 enum tgsi_opcode_type type, LLVMValueRef value);
175
176 LLVMValueRef si_llvm_bound_index(struct si_shader_context *ctx,
177 LLVMValueRef index,
178 unsigned num);
179
180 void si_llvm_context_init(struct si_shader_context *ctx,
181 const char *triple,
182 const struct tgsi_shader_info *info,
183 const struct tgsi_token *tokens);
184
185 void si_llvm_create_func(struct si_shader_context *ctx,
186 const char *name,
187 LLVMTypeRef *return_types, unsigned num_return_elems,
188 LLVMTypeRef *ParamTypes, unsigned ParamCount);
189
190 void si_llvm_dispose(struct si_shader_context *ctx);
191
192 void si_llvm_finalize_module(struct si_shader_context *ctx,
193 bool run_verifier);
194
195 LLVMValueRef si_llvm_emit_fetch_64bit(struct lp_build_tgsi_context *bld_base,
196 enum tgsi_opcode_type type,
197 LLVMValueRef ptr,
198 LLVMValueRef ptr2);
199
200 LLVMValueRef si_llvm_saturate(struct lp_build_tgsi_context *bld_base,
201 LLVMValueRef value);
202
203 LLVMValueRef si_llvm_emit_fetch(struct lp_build_tgsi_context *bld_base,
204 const struct tgsi_full_src_register *reg,
205 enum tgsi_opcode_type type,
206 unsigned swizzle);
207
208 void si_llvm_emit_store(struct lp_build_tgsi_context *bld_base,
209 const struct tgsi_full_instruction *inst,
210 const struct tgsi_opcode_info *info,
211 LLVMValueRef dst[4]);
212
213 void si_shader_context_init_alu(struct lp_build_tgsi_context *bld_base);
214 void si_prepare_cube_coords(struct lp_build_tgsi_context *bld_base,
215 struct lp_build_emit_data *emit_data,
216 LLVMValueRef *coords_arg,
217 LLVMValueRef *derivs_arg);
218
219 #endif