llvmpipe: fix the LP_NO_RAST debug option
[mesa.git] / src / gallium / drivers / llvmpipe / lp_context.c
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
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 TUNGSTEN GRAPHICS 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 <keith@tungstengraphics.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/u_simple_list.h"
40 #include "lp_clear.h"
41 #include "lp_context.h"
42 #include "lp_flush.h"
43 #include "lp_perf.h"
44 #include "lp_state.h"
45 #include "lp_surface.h"
46 #include "lp_query.h"
47 #include "lp_setup.h"
48
49
50 /** shared by all contexts */
51 unsigned llvmpipe_variant_count;
52
53
54 /**
55 * This function is called by the gallivm "garbage collector" when
56 * the LLVM global data structures are freed. We must free all LLVM-related
57 * data. Specifically, all JIT'd shader variants.
58 */
59 static void
60 garbage_collect_callback(void *cb_data)
61 {
62 struct llvmpipe_context *lp = (struct llvmpipe_context *) cb_data;
63 struct lp_fs_variant_list_item *li;
64
65 /* Free all the context's shader variants */
66 li = first_elem(&lp->fs_variants_list);
67 while (!at_end(&lp->fs_variants_list, li)) {
68 struct lp_fs_variant_list_item *next = next_elem(li);
69 llvmpipe_remove_shader_variant(lp, li->base);
70 li = next;
71 }
72
73 /* Free all the context's primitive setup variants */
74 lp_delete_setup_variants(lp);
75
76 /* release references to setup variants, shaders */
77 lp_setup_set_setup_variant(lp->setup, NULL);
78 lp_setup_set_fs_variant(lp->setup, NULL);
79 lp_setup_reset(lp->setup);
80
81 /* This type will be recreated upon demand */
82 lp->jit_context_ptr_type = NULL;
83
84 /* mark all state as dirty to ensure new shaders are jit'd, etc. */
85 lp->dirty = ~0;
86 }
87
88
89
90 static void llvmpipe_destroy( struct pipe_context *pipe )
91 {
92 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
93 uint i, j;
94
95 lp_print_counters();
96
97 gallivm_remove_garbage_collector_callback(garbage_collect_callback,
98 llvmpipe);
99
100 /* This will also destroy llvmpipe->setup:
101 */
102 if (llvmpipe->draw)
103 draw_destroy( llvmpipe->draw );
104
105 for (i = 0; i < PIPE_MAX_COLOR_BUFS; i++) {
106 pipe_surface_reference(&llvmpipe->framebuffer.cbufs[i], NULL);
107 }
108
109 pipe_surface_reference(&llvmpipe->framebuffer.zsbuf, NULL);
110
111 for (i = 0; i < PIPE_MAX_SAMPLERS; i++) {
112 pipe_sampler_view_reference(&llvmpipe->fragment_sampler_views[i], NULL);
113 }
114
115 for (i = 0; i < PIPE_MAX_VERTEX_SAMPLERS; i++) {
116 pipe_sampler_view_reference(&llvmpipe->vertex_sampler_views[i], NULL);
117 }
118
119 for (i = 0; i < Elements(llvmpipe->constants); i++) {
120 for (j = 0; j < Elements(llvmpipe->constants[i]); j++) {
121 pipe_resource_reference(&llvmpipe->constants[i][j], NULL);
122 }
123 }
124
125 for (i = 0; i < llvmpipe->num_vertex_buffers; i++) {
126 pipe_resource_reference(&llvmpipe->vertex_buffer[i].buffer, NULL);
127 }
128
129 gallivm_destroy(llvmpipe->gallivm);
130
131 align_free( llvmpipe );
132 }
133
134 static void
135 do_flush( struct pipe_context *pipe,
136 struct pipe_fence_handle **fence)
137 {
138 llvmpipe_flush(pipe, fence, __FUNCTION__);
139 }
140
141
142 static void
143 llvmpipe_render_condition ( struct pipe_context *pipe,
144 struct pipe_query *query,
145 uint mode )
146 {
147 struct llvmpipe_context *llvmpipe = llvmpipe_context( pipe );
148
149 llvmpipe->render_cond_query = query;
150 llvmpipe->render_cond_mode = mode;
151 }
152
153 struct pipe_context *
154 llvmpipe_create_context( struct pipe_screen *screen, void *priv )
155 {
156 struct llvmpipe_context *llvmpipe;
157
158 llvmpipe = align_malloc(sizeof(struct llvmpipe_context), 16);
159 if (!llvmpipe)
160 return NULL;
161
162 util_init_math();
163
164 memset(llvmpipe, 0, sizeof *llvmpipe);
165
166 make_empty_list(&llvmpipe->fs_variants_list);
167
168 make_empty_list(&llvmpipe->setup_variants_list);
169
170
171 llvmpipe->pipe.screen = screen;
172 llvmpipe->pipe.priv = priv;
173
174 /* Init the pipe context methods */
175 llvmpipe->pipe.destroy = llvmpipe_destroy;
176 llvmpipe->pipe.set_framebuffer_state = llvmpipe_set_framebuffer_state;
177 llvmpipe->pipe.clear = llvmpipe_clear;
178 llvmpipe->pipe.flush = do_flush;
179
180 llvmpipe->pipe.render_condition = llvmpipe_render_condition;
181
182 llvmpipe_init_blend_funcs(llvmpipe);
183 llvmpipe_init_clip_funcs(llvmpipe);
184 llvmpipe_init_draw_funcs(llvmpipe);
185 llvmpipe_init_sampler_funcs(llvmpipe);
186 llvmpipe_init_query_funcs( llvmpipe );
187 llvmpipe_init_vertex_funcs(llvmpipe);
188 llvmpipe_init_so_funcs(llvmpipe);
189 llvmpipe_init_fs_funcs(llvmpipe);
190 llvmpipe_init_vs_funcs(llvmpipe);
191 llvmpipe_init_gs_funcs(llvmpipe);
192 llvmpipe_init_rasterizer_funcs(llvmpipe);
193 llvmpipe_init_context_resource_funcs( &llvmpipe->pipe );
194 llvmpipe_init_surface_functions(llvmpipe);
195
196 llvmpipe->gallivm = gallivm_create();
197
198 /*
199 * Create drawing context and plug our rendering stage into it.
200 */
201 llvmpipe->draw = draw_create_gallivm(&llvmpipe->pipe, llvmpipe->gallivm);
202 if (!llvmpipe->draw)
203 goto fail;
204
205 /* FIXME: devise alternative to draw_texture_samplers */
206
207 llvmpipe->setup = lp_setup_create( &llvmpipe->pipe,
208 llvmpipe->draw );
209 if (!llvmpipe->setup)
210 goto fail;
211
212 /* plug in AA line/point stages */
213 draw_install_aaline_stage(llvmpipe->draw, &llvmpipe->pipe);
214 draw_install_aapoint_stage(llvmpipe->draw, &llvmpipe->pipe);
215 draw_install_pstipple_stage(llvmpipe->draw, &llvmpipe->pipe);
216
217 /* convert points and lines into triangles:
218 * (otherwise, draw points and lines natively)
219 */
220 draw_wide_point_sprites(llvmpipe->draw, FALSE);
221 draw_enable_point_sprites(llvmpipe->draw, FALSE);
222 draw_wide_point_threshold(llvmpipe->draw, 10000.0);
223 draw_wide_line_threshold(llvmpipe->draw, 10000.0);
224
225 lp_reset_counters();
226
227 gallivm_register_garbage_collector_callback(garbage_collect_callback,
228 llvmpipe);
229
230 return &llvmpipe->pipe;
231
232 fail:
233 llvmpipe_destroy(&llvmpipe->pipe);
234 return NULL;
235 }
236