winsys/amdgpu: allow drivers to set/get opaque metadata
[mesa.git] / src / gallium / drivers / radeon / radeon_llvm.h
1 /*
2 * Copyright 2011 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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *
23 * Authors: Tom Stellard <thomas.stellard@amd.com>
24 *
25 */
26
27 #ifndef RADEON_LLVM_H
28 #define RADEON_LLVM_H
29
30 #include <llvm-c/Core.h>
31 #include "gallivm/lp_bld_init.h"
32 #include "gallivm/lp_bld_tgsi.h"
33
34 #define RADEON_LLVM_MAX_INPUTS 32 * 4
35 #define RADEON_LLVM_MAX_OUTPUTS 32 * 4
36
37 #define RADEON_LLVM_INITIAL_CF_DEPTH 4
38
39 #define RADEON_LLVM_MAX_SYSTEM_VALUES 4
40
41 struct radeon_llvm_branch {
42 LLVMBasicBlockRef endif_block;
43 LLVMBasicBlockRef if_block;
44 LLVMBasicBlockRef else_block;
45 unsigned has_else;
46 };
47
48 struct radeon_llvm_loop {
49 LLVMBasicBlockRef loop_block;
50 LLVMBasicBlockRef endloop_block;
51 };
52
53 struct radeon_llvm_context {
54
55 struct lp_build_tgsi_soa_context soa;
56
57 unsigned chip_class;
58 unsigned type;
59 unsigned face_gpr;
60 unsigned two_side;
61 unsigned inputs_count;
62 struct r600_shader_io * r600_inputs;
63 struct r600_shader_io * r600_outputs;
64 struct pipe_stream_output_info *stream_outputs;
65 unsigned color_buffer_count;
66 unsigned fs_color_all;
67 unsigned alpha_to_one;
68 unsigned has_txq_cube_array_z_comp;
69 unsigned uses_tex_buffers;
70 unsigned has_compressed_msaa_texturing;
71
72 /*=== Front end configuration ===*/
73
74 /* Instructions that are not described by any of the TGSI opcodes. */
75
76 /** This function is responsible for initilizing the inputs array and will be
77 * called once for each input declared in the TGSI shader.
78 */
79 void (*load_input)(struct radeon_llvm_context *,
80 unsigned input_index,
81 const struct tgsi_full_declaration *decl);
82
83 void (*load_system_value)(struct radeon_llvm_context *,
84 unsigned index,
85 const struct tgsi_full_declaration *decl);
86
87 /** This array contains the input values for the shader. Typically these
88 * values will be in the form of a target intrinsic that will inform the
89 * backend how to load the actual inputs to the shader.
90 */
91 LLVMValueRef inputs[RADEON_LLVM_MAX_INPUTS];
92 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS][TGSI_NUM_CHANNELS];
93 unsigned output_reg_count;
94
95 /** This pointer is used to contain the temporary values.
96 * The amount of temporary used in tgsi can't be bound to a max value and
97 * thus we must allocate this array at runtime.
98 */
99 LLVMValueRef *temps;
100 unsigned temps_count;
101 LLVMValueRef system_values[RADEON_LLVM_MAX_SYSTEM_VALUES];
102
103 /*=== Private Members ===*/
104
105 struct radeon_llvm_branch *branch;
106 struct radeon_llvm_loop *loop;
107
108 unsigned branch_depth;
109 unsigned branch_depth_max;
110 unsigned loop_depth;
111 unsigned loop_depth_max;
112
113 struct tgsi_declaration_range *arrays;
114
115 LLVMValueRef main_fn;
116 LLVMTypeRef return_type;
117
118 struct gallivm_state gallivm;
119 };
120
121 static inline LLVMTypeRef tgsi2llvmtype(
122 struct lp_build_tgsi_context * bld_base,
123 enum tgsi_opcode_type type)
124 {
125 LLVMContextRef ctx = bld_base->base.gallivm->context;
126
127 switch (type) {
128 case TGSI_TYPE_UNSIGNED:
129 case TGSI_TYPE_SIGNED:
130 return LLVMInt32TypeInContext(ctx);
131 case TGSI_TYPE_DOUBLE:
132 return LLVMDoubleTypeInContext(ctx);
133 case TGSI_TYPE_UNTYPED:
134 case TGSI_TYPE_FLOAT:
135 return LLVMFloatTypeInContext(ctx);
136 default: break;
137 }
138 return 0;
139 }
140
141 static inline LLVMValueRef bitcast(
142 struct lp_build_tgsi_context * bld_base,
143 enum tgsi_opcode_type type,
144 LLVMValueRef value
145 )
146 {
147 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
148 LLVMTypeRef dst_type = tgsi2llvmtype(bld_base, type);
149
150 if (dst_type)
151 return LLVMBuildBitCast(builder, value, dst_type, "");
152 else
153 return value;
154 }
155
156
157 void radeon_llvm_emit_prepare_cube_coords(struct lp_build_tgsi_context * bld_base,
158 struct lp_build_emit_data * emit_data,
159 LLVMValueRef *coords_arg,
160 LLVMValueRef *derivs_arg);
161
162 void radeon_llvm_context_init(struct radeon_llvm_context * ctx,
163 const char *triple);
164
165 void radeon_llvm_create_func(struct radeon_llvm_context * ctx,
166 LLVMTypeRef *return_types, unsigned num_return_elems,
167 LLVMTypeRef *ParamTypes, unsigned ParamCount);
168
169 void radeon_llvm_dispose(struct radeon_llvm_context * ctx);
170
171 inline static struct radeon_llvm_context * radeon_llvm_context(
172 struct lp_build_tgsi_context * bld_base)
173 {
174 return (struct radeon_llvm_context*)bld_base;
175 }
176
177 unsigned radeon_llvm_reg_index_soa(unsigned index, unsigned chan);
178
179 void radeon_llvm_finalize_module(struct radeon_llvm_context * ctx);
180
181 void
182 build_tgsi_intrinsic_nomem(
183 const struct lp_build_tgsi_action * action,
184 struct lp_build_tgsi_context * bld_base,
185 struct lp_build_emit_data * emit_data);
186
187 LLVMValueRef
188 radeon_llvm_emit_fetch_double(struct lp_build_tgsi_context *bld_base,
189 LLVMValueRef ptr,
190 LLVMValueRef ptr2);
191
192 LLVMValueRef radeon_llvm_saturate(struct lp_build_tgsi_context *bld_base,
193 LLVMValueRef value);
194
195 LLVMValueRef radeon_llvm_emit_fetch(struct lp_build_tgsi_context *bld_base,
196 const struct tgsi_full_src_register *reg,
197 enum tgsi_opcode_type type,
198 unsigned swizzle);
199
200 void radeon_llvm_emit_store(
201 struct lp_build_tgsi_context * bld_base,
202 const struct tgsi_full_instruction * inst,
203 const struct tgsi_opcode_info * info,
204 LLVMValueRef dst[4]);
205
206 #endif /* RADEON_LLVM_H */