llvmpipe/draw: handle constant buffer limits and robustness (v1.1)
[mesa.git] / src / gallium / drivers / llvmpipe / lp_context.c
1 /**************************************************************************
2 *
3 * Copyright 2007 VMware, Inc.
4 * All Rights Reserved.
5 * Copyright 2008 VMware, Inc. All rights reserved.
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 *
27 **************************************************************************/
28
29 /* Author:
30 * Keith Whitwell <keithw@vmware.com>
31 */
32
33 #include "draw/draw_context.h"
34 #include "draw/draw_vbuf.h"
35 #include "pipe/p_defines.h"
36 #include "util/u_inlines.h"
37 #include "util/u_math.h"
38 #include "util/u_memory.h"
39 #include "util/simple_list.h"
40 #include "util/u_upload_mgr.h"
41 #include "lp_clear.h"
42 #include "lp_context.h"
43 #include "lp_flush.h"
44 #include "lp_perf.h"
45 #include "lp_state.h"
46 #include "lp_surface.h"
47 #include "lp_query.h"
48 #include "lp_setup.h"
49 #include "lp_screen.h"
50
51 /* This is only safe if there's just one concurrent context */
52 #ifdef EMBEDDED_DEVICE
53 #define USE_GLOBAL_LLVM_CONTEXT
54 #endif
55
56 static void llvmpipe_destroy( struct pipe_context *pipe )
57 {
58 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
59 uint i;
60
61 lp_print_counters();
62
63 if (llvmpipe->csctx) {
64 lp_csctx_destroy(llvmpipe->csctx);
65 }
66 if (llvmpipe->blitter) {
67 util_blitter_destroy(llvmpipe->blitter);
68 }
69
70 if (llvmpipe->pipe.stream_uploader)
71 u_upload_destroy(llvmpipe->pipe.stream_uploader);
72
73 /* This will also destroy llvmpipe->setup:
74 */
75 if (llvmpipe->draw)
76 draw_destroy( llvmpipe->draw );
77
78 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
79 pipe_surface_reference(&llvmpipe->framebuffer.cbufs[i], NULL);
80 }
81
82 pipe_surface_reference(&llvmpipe->framebuffer.zsbuf, NULL);
83
84 for (enum pipe_shader_type s = PIPE_SHADER_VERTEX; s < PIPE_SHADER_TYPES; s++) {
85 for (i = 0; i < ARRAY_SIZE(llvmpipe->sampler_views[0]); i++) {
86 pipe_sampler_view_reference(&llvmpipe->sampler_views[s][i], NULL);
87 }
88 for (i = 0; i < LP_MAX_TGSI_SHADER_IMAGES; i++) {
89 pipe_resource_reference(&llvmpipe->images[s][i].resource, NULL);
90 }
91 for (i = 0; i < LP_MAX_TGSI_SHADER_BUFFERS; i++) {
92 pipe_resource_reference(&llvmpipe->ssbos[s][i].buffer, NULL);
93 }
94 for (i = 0; i < ARRAY_SIZE(llvmpipe->constants[s]); i++) {
95 pipe_resource_reference(&llvmpipe->constants[s][i].buffer, NULL);
96 }
97 }
98
99 for (i = 0; i < llvmpipe->num_vertex_buffers; i++) {
100 pipe_vertex_buffer_unreference(&llvmpipe->vertex_buffer[i]);
101 }
102
103 lp_delete_setup_variants(llvmpipe);
104
105 #ifndef USE_GLOBAL_LLVM_CONTEXT
106 LLVMContextDispose(llvmpipe->context);
107 #endif
108 llvmpipe->context = NULL;
109
110 align_free( llvmpipe );
111 }
112
113 static void
114 do_flush( struct pipe_context *pipe,
115 struct pipe_fence_handle **fence,
116 unsigned flags)
117 {
118 llvmpipe_flush(pipe, fence, __FUNCTION__);
119 }
120
121
122 static void
123 llvmpipe_render_condition(struct pipe_context *pipe,
124 struct pipe_query *query,
125 bool condition,
126 enum pipe_render_cond_flag mode)
127 {
128 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
129
130 llvmpipe->render_cond_query = query;
131 llvmpipe->render_cond_mode = mode;
132 llvmpipe->render_cond_cond = condition;
133 }
134
135 static void
136 llvmpipe_texture_barrier(struct pipe_context *pipe, unsigned flags)
137 {
138 llvmpipe_flush(pipe, NULL, __FUNCTION__);
139 }
140
141 static void lp_draw_disk_cache_find_shader(void *cookie,
142 struct lp_cached_code *cache,
143 unsigned char ir_sha1_cache_key[20])
144 {
145 struct llvmpipe_screen *screen = cookie;
146 lp_disk_cache_find_shader(screen, cache, ir_sha1_cache_key);
147 }
148
149 static void lp_draw_disk_cache_insert_shader(void *cookie,
150 struct lp_cached_code *cache,
151 unsigned char ir_sha1_cache_key[20])
152 {
153 struct llvmpipe_screen *screen = cookie;
154 lp_disk_cache_insert_shader(screen, cache, ir_sha1_cache_key);
155 }
156
157 struct pipe_context *
158 llvmpipe_create_context(struct pipe_screen *screen, void *priv,
159 unsigned flags)
160 {
161 struct llvmpipe_context *llvmpipe;
162
163 llvmpipe = align_malloc(sizeof(struct llvmpipe_context), 16);
164 if (!llvmpipe)
165 return NULL;
166
167 util_init_math();
168
169 memset(llvmpipe, 0, sizeof *llvmpipe);
170
171 make_empty_list(&llvmpipe->fs_variants_list);
172
173 make_empty_list(&llvmpipe->setup_variants_list);
174
175 make_empty_list(&llvmpipe->cs_variants_list);
176
177 llvmpipe->pipe.screen = screen;
178 llvmpipe->pipe.priv = priv;
179
180 /* Init the pipe context methods */
181 llvmpipe->pipe.destroy = llvmpipe_destroy;
182 llvmpipe->pipe.set_framebuffer_state = llvmpipe_set_framebuffer_state;
183 llvmpipe->pipe.clear = llvmpipe_clear;
184 llvmpipe->pipe.flush = do_flush;
185 llvmpipe->pipe.texture_barrier = llvmpipe_texture_barrier;
186
187 llvmpipe->pipe.render_condition = llvmpipe_render_condition;
188
189 llvmpipe_init_blend_funcs(llvmpipe);
190 llvmpipe_init_clip_funcs(llvmpipe);
191 llvmpipe_init_draw_funcs(llvmpipe);
192 llvmpipe_init_compute_funcs(llvmpipe);
193 llvmpipe_init_sampler_funcs(llvmpipe);
194 llvmpipe_init_query_funcs( llvmpipe );
195 llvmpipe_init_vertex_funcs(llvmpipe);
196 llvmpipe_init_so_funcs(llvmpipe);
197 llvmpipe_init_fs_funcs(llvmpipe);
198 llvmpipe_init_vs_funcs(llvmpipe);
199 llvmpipe_init_gs_funcs(llvmpipe);
200 llvmpipe_init_tess_funcs(llvmpipe);
201 llvmpipe_init_rasterizer_funcs(llvmpipe);
202 llvmpipe_init_context_resource_funcs( &llvmpipe->pipe );
203 llvmpipe_init_surface_functions(llvmpipe);
204
205 #ifdef USE_GLOBAL_LLVM_CONTEXT
206 llvmpipe->context = LLVMGetGlobalContext();
207 #else
208 llvmpipe->context = LLVMContextCreate();
209 #endif
210
211 if (!llvmpipe->context)
212 goto fail;
213
214 /*
215 * Create drawing context and plug our rendering stage into it.
216 */
217 llvmpipe->draw = draw_create_with_llvm_context(&llvmpipe->pipe,
218 llvmpipe->context);
219 if (!llvmpipe->draw)
220 goto fail;
221
222 draw_set_disk_cache_callbacks(llvmpipe->draw,
223 llvmpipe_screen(screen),
224 lp_draw_disk_cache_find_shader,
225 lp_draw_disk_cache_insert_shader);
226
227 draw_set_constant_buffer_stride(llvmpipe->draw, lp_get_constant_buffer_stride(screen));
228
229 /* FIXME: devise alternative to draw_texture_samplers */
230
231 llvmpipe->setup = lp_setup_create( &llvmpipe->pipe,
232 llvmpipe->draw );
233 if (!llvmpipe->setup)
234 goto fail;
235
236 llvmpipe->csctx = lp_csctx_create( &llvmpipe->pipe );
237 if (!llvmpipe->csctx)
238 goto fail;
239 llvmpipe->pipe.stream_uploader = u_upload_create_default(&llvmpipe->pipe);
240 if (!llvmpipe->pipe.stream_uploader)
241 goto fail;
242 llvmpipe->pipe.const_uploader = llvmpipe->pipe.stream_uploader;
243
244 llvmpipe->blitter = util_blitter_create(&llvmpipe->pipe);
245 if (!llvmpipe->blitter) {
246 goto fail;
247 }
248
249 /* must be done before installing Draw stages */
250 util_blitter_cache_all_shaders(llvmpipe->blitter);
251
252 /* plug in AA line/point stages */
253 draw_install_aaline_stage(llvmpipe->draw, &llvmpipe->pipe);
254 draw_install_aapoint_stage(llvmpipe->draw, &llvmpipe->pipe);
255 draw_install_pstipple_stage(llvmpipe->draw, &llvmpipe->pipe);
256
257 /* convert points and lines into triangles:
258 * (otherwise, draw points and lines natively)
259 */
260 draw_wide_point_sprites(llvmpipe->draw, FALSE);
261 draw_enable_point_sprites(llvmpipe->draw, FALSE);
262 draw_wide_point_threshold(llvmpipe->draw, 10000.0);
263 draw_wide_line_threshold(llvmpipe->draw, 10000.0);
264
265 lp_reset_counters();
266
267 /* If llvmpipe_set_scissor_states() is never called, we still need to
268 * make sure that derived scissor state is computed.
269 * See https://bugs.freedesktop.org/show_bug.cgi?id=101709
270 */
271 llvmpipe->dirty |= LP_NEW_SCISSOR;
272
273 return &llvmpipe->pipe;
274
275 fail:
276 llvmpipe_destroy(&llvmpipe->pipe);
277 return NULL;
278 }
279