i965/fs: Add support for translating ir_triop_fma into MAD.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_vec4_gs_visitor.h
1 /*
2 * Copyright © 2013 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
21 * DEALINGS IN THE SOFTWARE.
22 */
23
24 /**
25 * \file brw_vec4_gs_visitor.h
26 *
27 * Geometry-shader-specific code derived from the vec4_visitor class.
28 */
29
30 #ifndef BRW_VEC4_GS_VISITOR_H
31 #define BRW_VEC4_GS_VISITOR_H
32
33 #include "brw_vec4.h"
34
35
36 struct brw_vec4_gs_prog_key
37 {
38 struct brw_vec4_prog_key base;
39
40 struct brw_vue_map input_vue_map;
41 };
42
43
44 /**
45 * Scratch data used when compiling a GLSL geometry shader.
46 */
47 struct brw_vec4_gs_compile
48 {
49 struct brw_vec4_compile base;
50 struct brw_vec4_gs_prog_key key;
51 struct brw_vec4_gs_prog_data prog_data;
52
53 struct brw_geometry_program *gp;
54 };
55
56
57 #ifdef __cplusplus
58 namespace brw {
59
60 class vec4_gs_visitor : public vec4_visitor
61 {
62 public:
63 vec4_gs_visitor(struct brw_context *brw,
64 struct brw_vec4_gs_compile *c,
65 struct gl_shader_program *prog,
66 struct brw_shader *shader,
67 void *mem_ctx);
68
69 protected:
70 virtual dst_reg *make_reg_for_system_value(ir_variable *ir);
71 virtual void setup_payload();
72 virtual void emit_prolog();
73 virtual void emit_program_code();
74 virtual void emit_thread_end();
75 virtual void emit_urb_write_header(int mrf);
76 virtual vec4_instruction *emit_urb_write_opcode(bool complete);
77 virtual int compute_array_stride(ir_dereference_array *ir);
78 virtual void visit(ir_emit_vertex *);
79 virtual void visit(ir_end_primitive *);
80
81 private:
82 int setup_varying_inputs(int payload_reg, int *attribute_map);
83
84 src_reg vertex_count;
85 const struct brw_vec4_gs_compile * const c;
86 };
87
88 } /* namespace brw */
89 #endif /* __cplusplus */
90
91 #endif /* BRW_VEC4_GS_VISITOR_H */