i965/miptree: Replace is_lossless_compressed with mt->aux_usage checks
[mesa.git] / src / mesa / drivers / dri / i965 / gen6_constant_state.c
1 /*
2 * Copyright © 2015 Intel Corporation
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
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "brw_context.h"
25 #include "brw_state.h"
26 #include "brw_defines.h"
27 #include "intel_batchbuffer.h"
28 #include "intel_buffer_objects.h"
29 #include "program/prog_parameter.h"
30
31 /**
32 * Creates a streamed BO containing the push constants for the VS or GS on
33 * gen6+.
34 *
35 * Push constants are constant values (such as GLSL uniforms) that are
36 * pre-loaded into a shader stage's register space at thread spawn time.
37 *
38 * Not all GLSL uniforms will be uploaded as push constants: The hardware has
39 * a limitation of 32 or 64 EU registers (256 or 512 floats) per stage to be
40 * uploaded as push constants, while GL 4.4 requires at least 1024 components
41 * to be usable for the VS. Plus, currently we always use pull constants
42 * instead of push constants when doing variable-index array access.
43 *
44 * See brw_curbe.c for the equivalent gen4/5 code.
45 */
46 void
47 gen6_upload_push_constants(struct brw_context *brw,
48 const struct gl_program *prog,
49 const struct brw_stage_prog_data *prog_data,
50 struct brw_stage_state *stage_state)
51 {
52 struct gl_context *ctx = &brw->ctx;
53
54 if (prog_data->nr_params == 0) {
55 stage_state->push_const_size = 0;
56 } else {
57 /* Updates the ParamaterValues[i] pointers for all parameters of the
58 * basic type of PROGRAM_STATE_VAR.
59 */
60 /* XXX: Should this happen somewhere before to get our state flag set? */
61 if (prog)
62 _mesa_load_state_parameters(ctx, prog->Parameters);
63
64 int i;
65 const int size = prog_data->nr_params * sizeof(gl_constant_value);
66 gl_constant_value *param;
67 if (brw->gen >= 8 || brw->is_haswell) {
68 param = intel_upload_space(brw, size, 32,
69 &stage_state->push_const_bo,
70 &stage_state->push_const_offset);
71 } else {
72 param = brw_state_batch(brw, size, 32,
73 &stage_state->push_const_offset);
74 }
75
76 STATIC_ASSERT(sizeof(gl_constant_value) == sizeof(float));
77
78 /* _NEW_PROGRAM_CONSTANTS
79 *
80 * Also _NEW_TRANSFORM -- we may reference clip planes other than as a
81 * side effect of dereferencing uniforms, so _NEW_PROGRAM_CONSTANTS
82 * wouldn't be set for them.
83 */
84 for (i = 0; i < prog_data->nr_params; i++) {
85 param[i] = *prog_data->param[i];
86 }
87
88 if (0) {
89 fprintf(stderr, "%s constants:\n",
90 _mesa_shader_stage_to_string(stage_state->stage));
91 for (i = 0; i < prog_data->nr_params; i++) {
92 if ((i & 7) == 0)
93 fprintf(stderr, "g%d: ",
94 prog_data->dispatch_grf_start_reg + i / 8);
95 fprintf(stderr, "%8f ", param[i].f);
96 if ((i & 7) == 7)
97 fprintf(stderr, "\n");
98 }
99 if ((i & 7) != 0)
100 fprintf(stderr, "\n");
101 fprintf(stderr, "\n");
102 }
103
104 stage_state->push_const_size = ALIGN(prog_data->nr_params, 8) / 8;
105 /* We can only push 32 registers of constants at a time. */
106
107 /* From the SNB PRM (vol2, part 1, section 3.2.1.4: 3DSTATE_CONSTANT_VS:
108 *
109 * "The sum of all four read length fields (each incremented to
110 * represent the actual read length) must be less than or equal to
111 * 32"
112 *
113 * From the IVB PRM (vol2, part 1, section 3.2.1.3: 3DSTATE_CONSTANT_VS:
114 *
115 * "The sum of all four read length fields must be less than or
116 * equal to the size of 64"
117 *
118 * The other shader stages all match the VS's limits.
119 */
120 assert(stage_state->push_const_size <= 32);
121 }
122
123 stage_state->push_constants_dirty = true;
124 }