i965: Enable EGL_KHR_gl_texture_3D_image
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4_gs_nir.cpp
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_vec4_gs_visitor.h"
25
26 namespace brw {
27
28 void
29 vec4_gs_visitor::nir_setup_inputs()
30 {
31 }
32
33 void
34 vec4_gs_visitor::nir_setup_system_value_intrinsic(nir_intrinsic_instr *instr)
35 {
36 dst_reg *reg;
37
38 switch (instr->intrinsic) {
39 case nir_intrinsic_load_primitive_id:
40 /* We'll just read g1 directly; don't create a temporary. */
41 break;
42
43 case nir_intrinsic_load_invocation_id:
44 reg = &this->nir_system_values[SYSTEM_VALUE_INVOCATION_ID];
45 if (reg->file == BAD_FILE)
46 *reg = *this->make_reg_for_system_value(SYSTEM_VALUE_INVOCATION_ID);
47 break;
48
49 default:
50 vec4_visitor::nir_setup_system_value_intrinsic(instr);
51 }
52
53 }
54
55 void
56 vec4_gs_visitor::nir_emit_intrinsic(nir_intrinsic_instr *instr)
57 {
58 dst_reg dest;
59 src_reg src;
60
61 switch (instr->intrinsic) {
62 case nir_intrinsic_load_per_vertex_input: {
63 /* The EmitNoIndirectInput flag guarantees our vertex index will
64 * be constant. We should handle indirects someday.
65 */
66 nir_const_value *vertex = nir_src_as_const_value(instr->src[0]);
67 nir_const_value *offset = nir_src_as_const_value(instr->src[1]);
68
69 /* Make up a type...we have no way of knowing... */
70 const glsl_type *const type = glsl_type::ivec(instr->num_components);
71
72 src = src_reg(ATTR, BRW_VARYING_SLOT_COUNT * vertex->u32[0] +
73 instr->const_index[0] + offset->u32[0],
74 type);
75 src.swizzle = BRW_SWZ_COMP_INPUT(nir_intrinsic_component(instr));
76
77 /* gl_PointSize is passed in the .w component of the VUE header */
78 if (instr->const_index[0] == VARYING_SLOT_PSIZ)
79 src.swizzle = BRW_SWIZZLE_WWWW;
80
81 dest = get_nir_dest(instr->dest, src.type);
82 dest.writemask = brw_writemask_for_size(instr->num_components);
83 emit(MOV(dest, src));
84 break;
85 }
86
87 case nir_intrinsic_load_input:
88 unreachable("nir_lower_io should have produced per_vertex intrinsics");
89
90 case nir_intrinsic_emit_vertex_with_counter: {
91 this->vertex_count =
92 retype(get_nir_src(instr->src[0], 1), BRW_REGISTER_TYPE_UD);
93 int stream_id = instr->const_index[0];
94 gs_emit_vertex(stream_id);
95 break;
96 }
97
98 case nir_intrinsic_end_primitive_with_counter:
99 this->vertex_count =
100 retype(get_nir_src(instr->src[0], 1), BRW_REGISTER_TYPE_UD);
101 gs_end_primitive();
102 break;
103
104 case nir_intrinsic_set_vertex_count:
105 this->vertex_count =
106 retype(get_nir_src(instr->src[0], 1), BRW_REGISTER_TYPE_UD);
107 break;
108
109 case nir_intrinsic_load_primitive_id:
110 assert(gs_prog_data->include_primitive_id);
111 dest = get_nir_dest(instr->dest, BRW_REGISTER_TYPE_D);
112 emit(MOV(dest, retype(brw_vec4_grf(1, 0), BRW_REGISTER_TYPE_D)));
113 break;
114
115 case nir_intrinsic_load_invocation_id: {
116 src_reg invocation_id =
117 src_reg(nir_system_values[SYSTEM_VALUE_INVOCATION_ID]);
118 assert(invocation_id.file != BAD_FILE);
119 dest = get_nir_dest(instr->dest, invocation_id.type);
120 emit(MOV(dest, invocation_id));
121 break;
122 }
123
124 default:
125 vec4_visitor::nir_emit_intrinsic(instr);
126 }
127 }
128 }