• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**********************************************************
2  * Copyright 2014-2022 VMware, Inc.  All rights reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person
5  * obtaining a copy of this software and associated documentation
6  * files (the "Software"), to deal in the Software without
7  * restriction, including without limitation the rights to use, copy,
8  * modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is
10  * furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be
13  * included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22  * SOFTWARE.
23  *
24  **********************************************************/
25 
26 #include "draw/draw_context.h"
27 #include "nir/nir_to_tgsi.h"
28 #include "util/u_inlines.h"
29 #include "util/u_memory.h"
30 #include "util/u_bitmask.h"
31 
32 #include "svga_context.h"
33 #include "svga_cmd.h"
34 #include "svga_debug.h"
35 #include "svga_shader.h"
36 #include "svga_streamout.h"
37 
38 static void *
svga_create_gs_state(struct pipe_context * pipe,const struct pipe_shader_state * templ)39 svga_create_gs_state(struct pipe_context *pipe,
40                      const struct pipe_shader_state *templ)
41 {
42    struct svga_context *svga = svga_context(pipe);
43    struct svga_geometry_shader *gs;
44 
45    SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_CREATEGS);
46 
47    gs = (struct svga_geometry_shader *)
48             svga_create_shader(pipe, templ, PIPE_SHADER_GEOMETRY,
49                                sizeof(struct svga_geometry_shader));
50 
51    if (!gs)
52       goto done;
53 
54    /* Original shader IR could have been deleted if it is converted from
55     * NIR to TGSI. So need to explicitly set the shader state type to TGSI
56     * before passing it to draw.
57     */
58    struct pipe_shader_state tmp = *templ;
59    tmp.type = PIPE_SHADER_IR_TGSI;
60    tmp.tokens = gs->base.tokens;
61 
62    gs->base.get_dummy_shader = svga_get_compiled_dummy_geometry_shader;
63    gs->draw_shader = draw_create_geometry_shader(svga->swtnl.draw, &tmp);
64 
65 done:
66    SVGA_STATS_TIME_POP(svga_sws(svga));
67    return gs;
68 }
69 
70 
71 static void
svga_bind_gs_state(struct pipe_context * pipe,void * shader)72 svga_bind_gs_state(struct pipe_context *pipe, void *shader)
73 {
74    struct svga_geometry_shader *gs = (struct svga_geometry_shader *)shader;
75    struct svga_context *svga = svga_context(pipe);
76 
77    svga->curr.user_gs = gs;
78    svga->dirty |= SVGA_NEW_GS;
79 
80    /* Check if the shader uses samplers */
81    svga_set_curr_shader_use_samplers_flag(svga, PIPE_SHADER_GEOMETRY,
82                                           svga_shader_use_samplers(&gs->base));
83 }
84 
85 
86 static void
svga_delete_gs_state(struct pipe_context * pipe,void * shader)87 svga_delete_gs_state(struct pipe_context *pipe, void *shader)
88 {
89    struct svga_context *svga = svga_context(pipe);
90    struct svga_geometry_shader *gs = (struct svga_geometry_shader *)shader;
91    struct svga_geometry_shader *next_gs;
92    struct svga_shader_variant *variant, *tmp;
93 
94    svga_hwtnl_flush_retry(svga);
95 
96    /* Start deletion from the original geometry shader state */
97    if (gs->base.parent != NULL)
98       gs = (struct svga_geometry_shader *)gs->base.parent;
99 
100    /* Free the list of geometry shaders */
101    while (gs) {
102       next_gs = (struct svga_geometry_shader *)gs->base.next;
103 
104       if (gs->base.stream_output != NULL)
105          svga_delete_stream_output(svga, gs->base.stream_output);
106 
107       draw_delete_geometry_shader(svga->swtnl.draw, gs->draw_shader);
108 
109       for (variant = gs->base.variants; variant; variant = tmp) {
110          tmp = variant->next;
111 
112          /* Check if deleting currently bound shader */
113          if (variant == svga->state.hw_draw.gs) {
114             SVGA_RETRY(svga, svga_set_shader(svga, SVGA3D_SHADERTYPE_GS, NULL));
115             svga->state.hw_draw.gs = NULL;
116          }
117 
118          svga_destroy_shader_variant(svga, variant);
119       }
120 
121       FREE((void *)gs->base.tokens);
122       FREE(gs);
123       gs = next_gs;
124    }
125 }
126 
127 
128 void
svga_init_gs_functions(struct svga_context * svga)129 svga_init_gs_functions(struct svga_context *svga)
130 {
131    svga->pipe.create_gs_state = svga_create_gs_state;
132    svga->pipe.bind_gs_state = svga_bind_gs_state;
133    svga->pipe.delete_gs_state = svga_delete_gs_state;
134 }
135