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 elk_vec4_tcs.h 26 * 27 * The vec4-mode tessellation control shader compiler backend. 28 */ 29 30 #ifndef ELK_VEC4_TCS_H 31 #define ELK_VEC4_TCS_H 32 33 #include "elk_compiler.h" 34 #include "elk_eu.h" 35 #include "elk_vec4.h" 36 37 #ifdef __cplusplus 38 namespace elk { 39 40 class vec4_tcs_visitor : public vec4_visitor 41 { 42 public: 43 vec4_tcs_visitor(const struct elk_compiler *compiler, 44 const struct elk_compile_params *params, 45 const struct elk_tcs_prog_key *key, 46 struct elk_tcs_prog_data *prog_data, 47 const nir_shader *nir, 48 bool debug_enabled); 49 50 protected: 51 virtual void setup_payload(); 52 virtual void emit_prolog(); 53 virtual void emit_thread_end(); 54 55 virtual void nir_emit_intrinsic(nir_intrinsic_instr *instr); 56 57 void emit_input_urb_read(const dst_reg &dst, 58 const src_reg &vertex_index, 59 unsigned base_offset, 60 unsigned first_component, 61 const src_reg &indirect_offset); 62 void emit_output_urb_read(const dst_reg &dst, 63 unsigned base_offset, 64 unsigned first_component, 65 const src_reg &indirect_offset); 66 67 void emit_urb_write(const src_reg &value, unsigned writemask, 68 unsigned base_offset, const src_reg &indirect_offset); 69 70 /* we do not use the normal end-of-shader URB write mechanism -- but every 71 * vec4 stage must provide implementations of these: 72 */ emit_urb_write_header(int)73 virtual void emit_urb_write_header(int /* mrf */) {} emit_urb_write_opcode(bool)74 virtual vec4_instruction *emit_urb_write_opcode(bool /* complete */) { return NULL; } 75 76 const struct elk_tcs_prog_key *key; 77 src_reg invocation_id; 78 }; 79 80 } /* namespace elk */ 81 #endif /* __cplusplus */ 82 83 #endif /* ELK_VEC4_TCS_H */ 84