• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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/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 #include "lp_fence.h"
51 
52 static void
llvmpipe_destroy(struct pipe_context * pipe)53 llvmpipe_destroy(struct pipe_context *pipe)
54 {
55    struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
56    struct llvmpipe_screen *lp_screen = llvmpipe_screen(pipe->screen);
57    uint i;
58 
59    mtx_lock(&lp_screen->ctx_mutex);
60    list_del(&llvmpipe->list);
61    mtx_unlock(&lp_screen->ctx_mutex);
62    lp_print_counters();
63 
64    if (llvmpipe->csctx) {
65       lp_csctx_destroy(llvmpipe->csctx);
66    }
67    if (llvmpipe->task_ctx) {
68       lp_csctx_destroy(llvmpipe->task_ctx);
69    }
70    if (llvmpipe->mesh_ctx) {
71       lp_csctx_destroy(llvmpipe->mesh_ctx);
72    }
73    if (llvmpipe->blitter) {
74       util_blitter_destroy(llvmpipe->blitter);
75    }
76 
77    if (llvmpipe->pipe.stream_uploader)
78       u_upload_destroy(llvmpipe->pipe.stream_uploader);
79 
80    /* This will also destroy llvmpipe->setup:
81     */
82    if (llvmpipe->draw)
83       draw_destroy(llvmpipe->draw);
84 
85    util_unreference_framebuffer_state(&llvmpipe->framebuffer);
86 
87    for (enum pipe_shader_type s = PIPE_SHADER_VERTEX; s < PIPE_SHADER_MESH_TYPES; s++) {
88       for (i = 0; i < ARRAY_SIZE(llvmpipe->sampler_views[0]); i++) {
89          pipe_sampler_view_reference(&llvmpipe->sampler_views[s][i], NULL);
90       }
91       for (i = 0; i < LP_MAX_TGSI_SHADER_IMAGES; i++) {
92          pipe_resource_reference(&llvmpipe->images[s][i].resource, NULL);
93       }
94       for (i = 0; i < LP_MAX_TGSI_SHADER_BUFFERS; i++) {
95          pipe_resource_reference(&llvmpipe->ssbos[s][i].buffer, NULL);
96       }
97       for (i = 0; i < ARRAY_SIZE(llvmpipe->constants[s]); i++) {
98          pipe_resource_reference(&llvmpipe->constants[s][i].buffer, NULL);
99       }
100    }
101 
102    for (i = 0; i < llvmpipe->num_vertex_buffers; i++) {
103       pipe_vertex_buffer_unreference(&llvmpipe->vertex_buffer[i]);
104    }
105 
106    lp_delete_setup_variants(llvmpipe);
107 
108    llvmpipe_sampler_matrix_destroy(llvmpipe);
109 
110 #ifndef USE_GLOBAL_LLVM_CONTEXT
111    LLVMContextDispose(llvmpipe->context);
112 #endif
113    llvmpipe->context = NULL;
114 
115    align_free(llvmpipe);
116 }
117 
118 
119 static void
do_flush(struct pipe_context * pipe,struct pipe_fence_handle ** fence,unsigned flags)120 do_flush(struct pipe_context *pipe,
121          struct pipe_fence_handle **fence,
122          unsigned flags)
123 {
124    llvmpipe_flush(pipe, fence, __func__);
125 }
126 
127 
128 static void
llvmpipe_fence_server_sync(struct pipe_context * pipe,struct pipe_fence_handle * fence)129 llvmpipe_fence_server_sync(struct pipe_context *pipe,
130                            struct pipe_fence_handle *fence)
131 {
132    struct lp_fence *f = (struct lp_fence *)fence;
133 
134    if (!f->issued)
135       return;
136    lp_fence_wait(f);
137 }
138 
139 
140 static void
llvmpipe_render_condition(struct pipe_context * pipe,struct pipe_query * query,bool condition,enum pipe_render_cond_flag mode)141 llvmpipe_render_condition(struct pipe_context *pipe,
142                           struct pipe_query *query,
143                           bool condition,
144                           enum pipe_render_cond_flag mode)
145 {
146    struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
147 
148    llvmpipe->render_cond_query = query;
149    llvmpipe->render_cond_mode = mode;
150    llvmpipe->render_cond_cond = condition;
151 }
152 
153 
154 static void
llvmpipe_render_condition_mem(struct pipe_context * pipe,struct pipe_resource * buffer,unsigned offset,bool condition)155 llvmpipe_render_condition_mem(struct pipe_context *pipe,
156                               struct pipe_resource *buffer,
157                               unsigned offset,
158                               bool condition)
159 {
160    struct llvmpipe_context *llvmpipe = llvmpipe_context(pipe);
161 
162    llvmpipe->render_cond_buffer = llvmpipe_resource(buffer);
163    llvmpipe->render_cond_offset = offset;
164    llvmpipe->render_cond_cond = condition;
165 }
166 
167 
168 static void
llvmpipe_texture_barrier(struct pipe_context * pipe,unsigned flags)169 llvmpipe_texture_barrier(struct pipe_context *pipe, unsigned flags)
170 {
171    llvmpipe_finish(pipe, "barrier");
172 }
173 
174 
175 static void
lp_draw_disk_cache_find_shader(void * cookie,struct lp_cached_code * cache,unsigned char ir_sha1_cache_key[20])176 lp_draw_disk_cache_find_shader(void *cookie,
177                                struct lp_cached_code *cache,
178                                unsigned char ir_sha1_cache_key[20])
179 {
180    struct llvmpipe_screen *screen = cookie;
181    lp_disk_cache_find_shader(screen, cache, ir_sha1_cache_key);
182 }
183 
184 
185 static void
lp_draw_disk_cache_insert_shader(void * cookie,struct lp_cached_code * cache,unsigned char ir_sha1_cache_key[20])186 lp_draw_disk_cache_insert_shader(void *cookie,
187                                  struct lp_cached_code *cache,
188                                  unsigned char ir_sha1_cache_key[20])
189 {
190    struct llvmpipe_screen *screen = cookie;
191    lp_disk_cache_insert_shader(screen, cache, ir_sha1_cache_key);
192 }
193 
194 
195 static enum pipe_reset_status
llvmpipe_get_device_reset_status(struct pipe_context * pipe)196 llvmpipe_get_device_reset_status(struct pipe_context *pipe)
197 {
198    return PIPE_NO_RESET;
199 }
200 
201 
202 struct pipe_context *
llvmpipe_create_context(struct pipe_screen * screen,void * priv,unsigned flags)203 llvmpipe_create_context(struct pipe_screen *screen, void *priv,
204                         unsigned flags)
205 {
206    struct llvmpipe_context *llvmpipe;
207    struct llvmpipe_screen *lp_screen = llvmpipe_screen(screen);
208 
209    if (!llvmpipe_screen_late_init(lp_screen))
210       return NULL;
211 
212    llvmpipe = align_malloc(sizeof(struct llvmpipe_context), 16);
213    if (!llvmpipe)
214       return NULL;
215 
216    memset(llvmpipe, 0, sizeof *llvmpipe);
217 
218    list_inithead(&llvmpipe->fs_variants_list.list);
219 
220    list_inithead(&llvmpipe->setup_variants_list.list);
221 
222    list_inithead(&llvmpipe->cs_variants_list.list);
223 
224    llvmpipe->pipe.screen = screen;
225    llvmpipe->pipe.priv = priv;
226 
227    /* Init the pipe context methods */
228    llvmpipe->pipe.destroy = llvmpipe_destroy;
229    llvmpipe->pipe.set_framebuffer_state = llvmpipe_set_framebuffer_state;
230    llvmpipe->pipe.clear = llvmpipe_clear;
231    llvmpipe->pipe.flush = do_flush;
232    llvmpipe->pipe.texture_barrier = llvmpipe_texture_barrier;
233 
234    llvmpipe->pipe.render_condition = llvmpipe_render_condition;
235    llvmpipe->pipe.render_condition_mem = llvmpipe_render_condition_mem;
236 
237    llvmpipe->pipe.fence_server_sync = llvmpipe_fence_server_sync;
238    llvmpipe->pipe.get_device_reset_status = llvmpipe_get_device_reset_status;
239    llvmpipe_init_blend_funcs(llvmpipe);
240    llvmpipe_init_clip_funcs(llvmpipe);
241    llvmpipe_init_draw_funcs(llvmpipe);
242    llvmpipe_init_compute_funcs(llvmpipe);
243    llvmpipe_init_sampler_funcs(llvmpipe);
244    llvmpipe_init_query_funcs(llvmpipe);
245    llvmpipe_init_vertex_funcs(llvmpipe);
246    llvmpipe_init_so_funcs(llvmpipe);
247    llvmpipe_init_fs_funcs(llvmpipe);
248    llvmpipe_init_vs_funcs(llvmpipe);
249    llvmpipe_init_gs_funcs(llvmpipe);
250    llvmpipe_init_tess_funcs(llvmpipe);
251    llvmpipe_init_task_funcs(llvmpipe);
252    llvmpipe_init_mesh_funcs(llvmpipe);
253    llvmpipe_init_rasterizer_funcs(llvmpipe);
254    llvmpipe_init_context_resource_funcs(&llvmpipe->pipe);
255    llvmpipe_init_surface_functions(llvmpipe);
256 
257    llvmpipe_init_sampler_matrix(llvmpipe);
258 
259 #ifdef USE_GLOBAL_LLVM_CONTEXT
260    llvmpipe->context = LLVMGetGlobalContext();
261 #else
262    llvmpipe->context = LLVMContextCreate();
263 #endif
264 
265    if (!llvmpipe->context)
266       goto fail;
267 
268 #if LLVM_VERSION_MAJOR == 15
269    LLVMContextSetOpaquePointers(llvmpipe->context, false);
270 #endif
271 
272    /*
273     * Create drawing context and plug our rendering stage into it.
274     */
275    llvmpipe->draw = draw_create_with_llvm_context(&llvmpipe->pipe,
276                                                   llvmpipe->context);
277    if (!llvmpipe->draw)
278       goto fail;
279 
280    draw_set_disk_cache_callbacks(llvmpipe->draw,
281                                  lp_screen,
282                                  lp_draw_disk_cache_find_shader,
283                                  lp_draw_disk_cache_insert_shader);
284 
285    draw_set_constant_buffer_stride(llvmpipe->draw,
286                                    lp_get_constant_buffer_stride(screen));
287 
288    /* FIXME: devise alternative to draw_texture_samplers */
289 
290    llvmpipe->setup = lp_setup_create(&llvmpipe->pipe, llvmpipe->draw);
291    if (!llvmpipe->setup)
292       goto fail;
293 
294    llvmpipe->csctx = lp_csctx_create(&llvmpipe->pipe);
295    if (!llvmpipe->csctx)
296       goto fail;
297 
298    llvmpipe->task_ctx = lp_csctx_create(&llvmpipe->pipe);
299    if (!llvmpipe->task_ctx)
300       goto fail;
301 
302    llvmpipe->mesh_ctx = lp_csctx_create(&llvmpipe->pipe);
303    if (!llvmpipe->mesh_ctx)
304       goto fail;
305 
306    llvmpipe->pipe.stream_uploader = u_upload_create_default(&llvmpipe->pipe);
307    if (!llvmpipe->pipe.stream_uploader)
308       goto fail;
309 
310    llvmpipe->pipe.const_uploader = llvmpipe->pipe.stream_uploader;
311 
312    llvmpipe->blitter = util_blitter_create(&llvmpipe->pipe);
313    if (!llvmpipe->blitter) {
314       goto fail;
315    }
316 
317    /* must be done before installing Draw stages */
318    util_blitter_cache_all_shaders(llvmpipe->blitter);
319 
320    /* plug in AA line/point stages */
321    draw_install_aaline_stage(llvmpipe->draw, &llvmpipe->pipe);
322    draw_install_aapoint_stage(llvmpipe->draw, &llvmpipe->pipe, nir_type_bool32);
323    draw_install_pstipple_stage(llvmpipe->draw, &llvmpipe->pipe);
324 
325    /* convert points and lines into triangles:
326     * (otherwise, draw points and lines natively)
327     */
328    draw_wide_point_sprites(llvmpipe->draw, false);
329    draw_enable_point_sprites(llvmpipe->draw, false);
330    draw_wide_point_threshold(llvmpipe->draw, 10000.0);
331    draw_wide_line_threshold(llvmpipe->draw, 10000.0);
332 
333    /* initial state for clipping - enabled, with no guardband */
334    draw_set_driver_clipping(llvmpipe->draw, false, false, false, true);
335 
336    lp_reset_counters();
337 
338    /* If llvmpipe_set_scissor_states() is never called, we still need to
339     * make sure that derived scissor state is computed.
340     * See https://bugs.freedesktop.org/show_bug.cgi?id=101709
341     */
342    llvmpipe->dirty |= LP_NEW_SCISSOR;
343 
344    mtx_lock(&lp_screen->ctx_mutex);
345    list_addtail(&llvmpipe->list, &lp_screen->ctx_list);
346    mtx_unlock(&lp_screen->ctx_mutex);
347    return &llvmpipe->pipe;
348 
349  fail:
350    llvmpipe_destroy(&llvmpipe->pipe);
351    return NULL;
352 }
353