panfrost: Let precompile imply shaderdb
[mesa.git] / src / gallium / drivers / panfrost / pan_assemble.c
1 /*
2 * © Copyright 2018 Alyssa Rosenzweig
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 */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include "pan_bo.h"
29 #include "pan_context.h"
30 #include "pan_util.h"
31
32 #include "compiler/nir/nir.h"
33 #include "nir/tgsi_to_nir.h"
34 #include "midgard/midgard_compile.h"
35 #include "util/u_dynarray.h"
36
37 #include "tgsi/tgsi_dump.h"
38
39 void
40 panfrost_shader_compile(
41 struct panfrost_context *ctx,
42 struct mali_shader_meta *meta,
43 enum pipe_shader_ir ir_type,
44 const void *ir,
45 gl_shader_stage stage,
46 struct panfrost_shader_state *state,
47 uint64_t *outputs_written)
48 {
49 struct panfrost_screen *screen = pan_screen(ctx->base.screen);
50 uint8_t *dst;
51
52 nir_shader *s;
53
54 if (ir_type == PIPE_SHADER_IR_NIR) {
55 s = nir_shader_clone(NULL, ir);
56 } else {
57 assert (ir_type == PIPE_SHADER_IR_TGSI);
58 s = tgsi_to_nir(ir, ctx->base.screen);
59 }
60
61 s->info.stage = stage;
62
63 /* Call out to Midgard compiler given the above NIR */
64
65 midgard_program program = {
66 .alpha_ref = state->alpha_state.ref_value
67 };
68
69 midgard_compile_shader_nir(s, &program, false, 0, screen->gpu_id,
70 pan_debug & PAN_DBG_PRECOMPILE);
71
72 /* Prepare the compiled binary for upload */
73 int size = program.compiled.size;
74 dst = program.compiled.data;
75
76 /* Upload the shader. The lookahead tag is ORed on as a tagged pointer.
77 * I bet someone just thought that would be a cute pun. At least,
78 * that's how I'd do it. */
79
80 state->bo = panfrost_bo_create(screen, size, PAN_BO_EXECUTE);
81 memcpy(state->bo->cpu, dst, size);
82 meta->shader = state->bo->gpu | program.first_tag;
83
84 util_dynarray_fini(&program.compiled);
85
86 /* Sysvals are prepended */
87 program.uniform_count += program.sysval_count;
88 state->sysval_count = program.sysval_count;
89 memcpy(state->sysval, program.sysvals, sizeof(state->sysval[0]) * state->sysval_count);
90
91 meta->midgard1.uniform_count = MIN2(program.uniform_count, program.uniform_cutoff);
92 meta->midgard1.work_count = program.work_register_count;
93
94 switch (stage) {
95 case MESA_SHADER_VERTEX:
96 meta->attribute_count = util_bitcount64(s->info.inputs_read);
97 meta->varying_count = util_bitcount64(s->info.outputs_written);
98 break;
99 case MESA_SHADER_FRAGMENT:
100 meta->attribute_count = 0;
101 meta->varying_count = util_bitcount64(s->info.inputs_read);
102 break;
103 case MESA_SHADER_COMPUTE:
104 /* TODO: images */
105 meta->attribute_count = 0;
106 meta->varying_count = 0;
107 break;
108 default:
109 unreachable("Unknown shader state");
110 }
111
112 state->can_discard = s->info.fs.uses_discard;
113 state->writes_point_size = program.writes_point_size;
114 state->reads_point_coord = false;
115 state->helper_invocations = s->info.fs.needs_helper_invocations;
116 state->stack_size = program.tls_size;
117
118 if (outputs_written)
119 *outputs_written = s->info.outputs_written;
120
121 /* Separate as primary uniform count is truncated */
122 state->uniform_count = program.uniform_count;
123
124 meta->midgard1.unknown2 = 8; /* XXX */
125
126 unsigned default_vec1_swizzle = panfrost_get_default_swizzle(1);
127 unsigned default_vec2_swizzle = panfrost_get_default_swizzle(2);
128 unsigned default_vec4_swizzle = panfrost_get_default_swizzle(4);
129
130 /* Iterate the varyings and emit the corresponding descriptor */
131 for (unsigned i = 0; i < meta->varying_count; ++i) {
132 unsigned location = program.varyings[i];
133
134 /* Default to a vec4 varying */
135 struct mali_attr_meta v = {
136 .format = MALI_RGBA32F,
137 .swizzle = default_vec4_swizzle,
138 .unknown1 = 0x2,
139 };
140
141 /* Check for special cases, otherwise assume general varying */
142
143 if (location == VARYING_SLOT_POS) {
144 if (stage == MESA_SHADER_FRAGMENT)
145 state->reads_frag_coord = true;
146 else
147 v.format = MALI_VARYING_POS;
148 } else if (location == VARYING_SLOT_PSIZ) {
149 v.format = MALI_R16F;
150 v.swizzle = default_vec1_swizzle;
151
152 state->writes_point_size = true;
153 } else if (location == VARYING_SLOT_PNTC) {
154 v.format = MALI_RG16F;
155 v.swizzle = default_vec2_swizzle;
156
157 state->reads_point_coord = true;
158 } else if (location == VARYING_SLOT_FACE) {
159 v.format = MALI_R32I;
160 v.swizzle = default_vec1_swizzle;
161
162 state->reads_face = true;
163 }
164
165 state->varyings[i] = v;
166 state->varyings_loc[i] = location;
167 }
168 }