r600/llvm: Allow arbitrary amount of temps in tgsi to llvm
[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 #define RADEON_LLVM_MAX_BRANCH_DEPTH 16
37 #define RADEON_LLVM_MAX_LOOP_DEPTH 16
38 #define RADEON_LLVM_MAX_ARRAYS 16
39
40 #define RADEON_LLVM_MAX_SYSTEM_VALUES 4
41
42 struct radeon_llvm_branch {
43 LLVMBasicBlockRef endif_block;
44 LLVMBasicBlockRef if_block;
45 LLVMBasicBlockRef else_block;
46 unsigned has_else;
47 };
48
49 struct radeon_llvm_loop {
50 LLVMBasicBlockRef loop_block;
51 LLVMBasicBlockRef endloop_block;
52 };
53
54 struct radeon_llvm_context {
55
56 struct lp_build_tgsi_soa_context soa;
57
58 unsigned chip_class;
59 unsigned type;
60 unsigned face_gpr;
61 unsigned two_side;
62 unsigned clip_vertex;
63 unsigned inputs_count;
64 struct r600_shader_io * r600_inputs;
65 struct r600_shader_io * r600_outputs;
66 struct pipe_stream_output_info *stream_outputs;
67 unsigned color_buffer_count;
68 unsigned fs_color_all;
69 unsigned alpha_to_one;
70 unsigned has_txq_cube_array_z_comp;
71 unsigned uses_tex_buffers;
72 unsigned has_compressed_msaa_texturing;
73
74 /*=== Front end configuration ===*/
75
76 /* Special Intrinsics */
77
78 /** Write to an output register: float store_output(float, i32) */
79 const char * store_output_intr;
80
81 /** Swizzle a vector value: <4 x float> swizzle(<4 x float>, i32)
82 * The swizzle is an unsigned integer that encodes a TGSI_SWIZZLE_* value
83 * in 2-bits.
84 * Swizzle{0-1} = X Channel
85 * Swizzle{2-3} = Y Channel
86 * Swizzle{4-5} = Z Channel
87 * Swizzle{6-7} = W Channel
88 */
89 const char * swizzle_intr;
90
91 /* Instructions that are not described by any of the TGSI opcodes. */
92
93 /** This function is responsible for initilizing the inputs array and will be
94 * called once for each input declared in the TGSI shader.
95 */
96 void (*load_input)(struct radeon_llvm_context *,
97 unsigned input_index,
98 const struct tgsi_full_declaration *decl);
99
100 void (*load_system_value)(struct radeon_llvm_context *,
101 unsigned index,
102 const struct tgsi_full_declaration *decl);
103
104 /** User data to use with the callbacks */
105 void * userdata;
106
107 /** This array contains the input values for the shader. Typically these
108 * values will be in the form of a target intrinsic that will inform the
109 * backend how to load the actual inputs to the shader.
110 */
111 LLVMValueRef inputs[RADEON_LLVM_MAX_INPUTS];
112 LLVMValueRef outputs[RADEON_LLVM_MAX_OUTPUTS][TGSI_NUM_CHANNELS];
113 unsigned output_reg_count;
114
115 /** This pointer is used to contain the temporary values.
116 * The amount of temporary used in tgsi can't be bound to a max value and
117 * thus we must allocate this array at runtime.
118 */
119 LLVMValueRef *temps;
120 unsigned temps_count;
121 LLVMValueRef system_values[RADEON_LLVM_MAX_SYSTEM_VALUES];
122
123 /*=== Private Members ===*/
124
125 struct radeon_llvm_branch branch[RADEON_LLVM_MAX_BRANCH_DEPTH];
126 struct radeon_llvm_loop loop[RADEON_LLVM_MAX_LOOP_DEPTH];
127
128 unsigned branch_depth;
129 unsigned loop_depth;
130
131 struct tgsi_declaration_range arrays[RADEON_LLVM_MAX_ARRAYS];
132 unsigned num_arrays;
133
134 LLVMValueRef main_fn;
135
136 struct gallivm_state gallivm;
137 };
138
139 static inline LLVMTypeRef tgsi2llvmtype(
140 struct lp_build_tgsi_context * bld_base,
141 enum tgsi_opcode_type type)
142 {
143 LLVMContextRef ctx = bld_base->base.gallivm->context;
144
145 switch (type) {
146 case TGSI_TYPE_UNSIGNED:
147 case TGSI_TYPE_SIGNED:
148 return LLVMInt32TypeInContext(ctx);
149 case TGSI_TYPE_UNTYPED:
150 case TGSI_TYPE_FLOAT:
151 return LLVMFloatTypeInContext(ctx);
152 default: break;
153 }
154 return 0;
155 }
156
157 static inline LLVMValueRef bitcast(
158 struct lp_build_tgsi_context * bld_base,
159 enum tgsi_opcode_type type,
160 LLVMValueRef value
161 )
162 {
163 LLVMBuilderRef builder = bld_base->base.gallivm->builder;
164 LLVMTypeRef dst_type = tgsi2llvmtype(bld_base, type);
165
166 if (dst_type)
167 return LLVMBuildBitCast(builder, value, dst_type, "");
168 else
169 return value;
170 }
171
172
173 void radeon_llvm_emit_prepare_cube_coords(struct lp_build_tgsi_context * bld_base,
174 struct lp_build_emit_data * emit_data,
175 LLVMValueRef *coords_arg);
176
177 void radeon_llvm_context_init(struct radeon_llvm_context * ctx);
178
179 void radeon_llvm_create_func(struct radeon_llvm_context * ctx,
180 LLVMTypeRef *ParamTypes, unsigned ParamCount);
181
182 void radeon_llvm_dispose(struct radeon_llvm_context * ctx);
183
184 inline static struct radeon_llvm_context * radeon_llvm_context(
185 struct lp_build_tgsi_context * bld_base)
186 {
187 return (struct radeon_llvm_context*)bld_base;
188 }
189
190 unsigned radeon_llvm_reg_index_soa(unsigned index, unsigned chan);
191
192 void radeon_llvm_finalize_module(struct radeon_llvm_context * ctx);
193
194 LLVMValueRef
195 build_intrinsic(LLVMBuilderRef builder,
196 const char *name,
197 LLVMTypeRef ret_type,
198 LLVMValueRef *args,
199 unsigned num_args,
200 LLVMAttribute attr);
201
202 void
203 build_tgsi_intrinsic_nomem(
204 const struct lp_build_tgsi_action * action,
205 struct lp_build_tgsi_context * bld_base,
206 struct lp_build_emit_data * emit_data);
207
208
209
210 #endif /* RADEON_LLVM_H */