Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 1 | /* |
Hans-Kristian Arntzen | 4704482 | 2021-01-14 16:07:49 +0100 | [diff] [blame] | 2 | * Copyright 2016-2021 Robert Konrad |
Jon Leech | f2a6554 | 2021-05-08 01:47:48 -0700 | [diff] [blame] | 3 | * SPDX-License-Identifier: Apache-2.0 OR MIT |
Robert Konrad | 4358b2f | 2017-01-27 16:45:43 +0100 | [diff] [blame] | 4 | * |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 17 | |
Hans-Kristian Arntzen | cf1e9e0 | 2020-11-25 15:22:08 +0100 | [diff] [blame] | 18 | /* |
| 19 | * At your option, you may choose to accept this material under either: |
| 20 | * 1. The Apache License, Version 2.0, found at <http://www.apache.org/licenses/LICENSE-2.0>, or |
| 21 | * 2. The MIT License, found at <http://opensource.org/licenses/MIT>. |
Hans-Kristian Arntzen | cf1e9e0 | 2020-11-25 15:22:08 +0100 | [diff] [blame] | 22 | */ |
| 23 | |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 24 | #ifndef SPIRV_HLSL_HPP |
| 25 | #define SPIRV_HLSL_HPP |
| 26 | |
| 27 | #include "spirv_glsl.hpp" |
| 28 | #include <utility> |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 29 | |
Hans-Kristian Arntzen | 9b92e68 | 2019-03-29 10:29:44 +0100 | [diff] [blame] | 30 | namespace SPIRV_CROSS_NAMESPACE |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 31 | { |
Hans-Kristian Arntzen | 4f88f97 | 2017-11-13 09:46:45 +0100 | [diff] [blame] | 32 | // Interface which remaps vertex inputs to a fixed semantic name to make linking easier. |
| 33 | struct HLSLVertexAttributeRemap |
Amer Koleci | 7216d13 | 2017-11-06 20:10:04 +0100 | [diff] [blame] | 34 | { |
Hans-Kristian Arntzen | 4f88f97 | 2017-11-13 09:46:45 +0100 | [diff] [blame] | 35 | uint32_t location; |
Amer Koleci | 7216d13 | 2017-11-06 20:10:04 +0100 | [diff] [blame] | 36 | std::string semantic; |
Amer Koleci | 7216d13 | 2017-11-06 20:10:04 +0100 | [diff] [blame] | 37 | }; |
msiglreith | d096f5c | 2017-11-27 16:00:56 +0100 | [diff] [blame] | 38 | // Specifying a root constant (d3d12) or push constant range (vulkan). |
| 39 | // |
| 40 | // `start` and `end` denotes the range of the root constant in bytes. |
| 41 | // Both values need to be multiple of 4. |
| 42 | struct RootConstants |
| 43 | { |
| 44 | uint32_t start; |
| 45 | uint32_t end; |
| 46 | |
| 47 | uint32_t binding; |
| 48 | uint32_t space; |
| 49 | }; |
Amer Koleci | 7216d13 | 2017-11-06 20:10:04 +0100 | [diff] [blame] | 50 | |
Hans-Kristian Arntzen | b9e5fe0 | 2019-11-11 11:01:35 +0100 | [diff] [blame] | 51 | // For finer control, decorations may be removed from specific resources instead with unset_decoration(). |
| 52 | enum HLSLBindingFlagBits |
| 53 | { |
Hans-Kristian Arntzen | cc153f8 | 2020-01-09 11:18:14 +0100 | [diff] [blame] | 54 | HLSL_BINDING_AUTO_NONE_BIT = 0, |
| 55 | |
Hans-Kristian Arntzen | b9e5fe0 | 2019-11-11 11:01:35 +0100 | [diff] [blame] | 56 | // Push constant (root constant) resources will be declared as CBVs (b-space) without a register() declaration. |
| 57 | // A register will be automatically assigned by the D3D compiler, but must therefore be reflected in D3D-land. |
| 58 | // Push constants do not normally have a DecorationBinding set, but if they do, this can be used to ignore it. |
| 59 | HLSL_BINDING_AUTO_PUSH_CONSTANT_BIT = 1 << 0, |
| 60 | |
| 61 | // cbuffer resources will be declared as CBVs (b-space) without a register() declaration. |
| 62 | // A register will be automatically assigned, but must be reflected in D3D-land. |
| 63 | HLSL_BINDING_AUTO_CBV_BIT = 1 << 1, |
| 64 | |
| 65 | // All SRVs (t-space) will be declared without a register() declaration. |
| 66 | HLSL_BINDING_AUTO_SRV_BIT = 1 << 2, |
| 67 | |
| 68 | // All UAVs (u-space) will be declared without a register() declaration. |
| 69 | HLSL_BINDING_AUTO_UAV_BIT = 1 << 3, |
| 70 | |
| 71 | // All samplers (s-space) will be declared without a register() declaration. |
| 72 | HLSL_BINDING_AUTO_SAMPLER_BIT = 1 << 4, |
| 73 | |
| 74 | // No resources will be declared with register(). |
| 75 | HLSL_BINDING_AUTO_ALL = 0x7fffffff |
| 76 | }; |
| 77 | using HLSLBindingFlags = uint32_t; |
| 78 | |
Hans-Kristian Arntzen | cc153f8 | 2020-01-09 11:18:14 +0100 | [diff] [blame] | 79 | // By matching stage, desc_set and binding for a SPIR-V resource, |
| 80 | // register bindings are set based on whether the HLSL resource is a |
| 81 | // CBV, UAV, SRV or Sampler. A single binding in SPIR-V might contain multiple |
| 82 | // resource types, e.g. COMBINED_IMAGE_SAMPLER, and SRV/Sampler bindings will be used respectively. |
| 83 | // On SM 5.0 and lower, register_space is ignored. |
| 84 | // |
| 85 | // To remap a push constant block which does not have any desc_set/binding associated with it, |
| 86 | // use ResourceBindingPushConstant{DescriptorSet,Binding} as values for desc_set/binding. |
| 87 | // For deeper control of push constants, set_root_constant_layouts() can be used instead. |
| 88 | struct HLSLResourceBinding |
| 89 | { |
| 90 | spv::ExecutionModel stage = spv::ExecutionModelMax; |
| 91 | uint32_t desc_set = 0; |
| 92 | uint32_t binding = 0; |
| 93 | |
| 94 | struct Binding |
| 95 | { |
| 96 | uint32_t register_space = 0; |
| 97 | uint32_t register_binding = 0; |
| 98 | } cbv, uav, srv, sampler; |
| 99 | }; |
| 100 | |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 101 | class CompilerHLSL : public CompilerGLSL |
| 102 | { |
| 103 | public: |
Robert Konrad | f3740a0 | 2016-08-18 00:51:12 +0200 | [diff] [blame] | 104 | struct Options |
| 105 | { |
| 106 | uint32_t shader_model = 30; // TODO: map ps_4_0_level_9_0,... somehow |
Hans-Kristian Arntzen | 17d88ca | 2017-05-04 10:10:30 +0200 | [diff] [blame] | 107 | |
| 108 | // Allows the PointSize builtin, and ignores it, as PointSize is not supported in HLSL. |
Hans-Kristian Arntzen | 2b4c3db | 2017-05-04 10:32:43 +0200 | [diff] [blame] | 109 | bool point_size_compat = false; |
Hans-Kristian Arntzen | f6d08e6 | 2018-02-23 15:56:25 +0100 | [diff] [blame] | 110 | |
| 111 | // Allows the PointCoord builtin, returns float2(0.5, 0.5), as PointCoord is not supported in HLSL. |
| 112 | bool point_coord_compat = false; |
Hans-Kristian Arntzen | a2a44d9 | 2019-01-11 10:32:14 +0100 | [diff] [blame] | 113 | |
| 114 | // If true, the backend will assume that VertexIndex and InstanceIndex will need to apply |
| 115 | // a base offset, and you will need to fill in a cbuffer with offsets. |
| 116 | // Set to false if you know you will never use base instance or base vertex |
| 117 | // functionality as it might remove an internal cbuffer. |
| 118 | bool support_nonzero_base_vertex_base_instance = false; |
Hans-Kristian Arntzen | c27e1ef | 2020-03-04 16:32:52 +0100 | [diff] [blame] | 119 | |
| 120 | // Forces a storage buffer to always be declared as UAV, even if the readonly decoration is used. |
| 121 | // By default, a readonly storage buffer will be declared as ByteAddressBuffer (SRV) instead. |
Bryan Bernhart | 32bead8 | 2020-05-28 10:21:41 -0700 | [diff] [blame] | 122 | // Alternatively, use set_hlsl_force_storage_buffer_as_uav to specify individually. |
Hans-Kristian Arntzen | c27e1ef | 2020-03-04 16:32:52 +0100 | [diff] [blame] | 123 | bool force_storage_buffer_as_uav = false; |
Hans-Kristian Arntzen | 28bf905 | 2020-04-03 11:21:41 +0200 | [diff] [blame] | 124 | |
| 125 | // Forces any storage image type marked as NonWritable to be considered an SRV instead. |
| 126 | // For this to work with function call parameters, NonWritable must be considered to be part of the type system |
| 127 | // so that NonWritable image arguments are also translated to Texture rather than RWTexture. |
| 128 | bool nonwritable_uav_texture_as_srv = false; |
Hans-Kristian Arntzen | 2d52006 | 2020-06-04 11:35:21 +0200 | [diff] [blame] | 129 | |
| 130 | // Enables native 16-bit types. Needs SM 6.2. |
| 131 | // Uses half/int16_t/uint16_t instead of min16* types. |
| 132 | // Also adds support for 16-bit load-store from (RW)ByteAddressBuffer. |
| 133 | bool enable_16bit_types = false; |
Hans-Kristian Arntzen | b334417 | 2020-11-03 11:18:32 +0100 | [diff] [blame] | 134 | |
| 135 | // If matrices are used as IO variables, flatten the attribute declaration to use |
| 136 | // TEXCOORD{N,N+1,N+2,...} rather than TEXCOORDN_{0,1,2,3}. |
| 137 | // If add_vertex_attribute_remap is used and this feature is used, |
| 138 | // the semantic name will be queried once per active location. |
| 139 | bool flatten_matrix_vertex_input_semantics = false; |
Robert Konrad | f3740a0 | 2016-08-18 00:51:12 +0200 | [diff] [blame] | 140 | }; |
| 141 | |
Hans-Kristian Arntzen | 3fe57d3 | 2019-04-09 12:46:23 +0200 | [diff] [blame] | 142 | explicit CompilerHLSL(std::vector<uint32_t> spirv_) |
Hans-Kristian Arntzen | a489ba7 | 2019-04-02 11:19:03 +0200 | [diff] [blame] | 143 | : CompilerGLSL(std::move(spirv_)) |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 144 | { |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 145 | } |
Robert Konrad | f3740a0 | 2016-08-18 00:51:12 +0200 | [diff] [blame] | 146 | |
Hans-Kristian Arntzen | 5bcf02f | 2018-10-05 11:30:57 +0200 | [diff] [blame] | 147 | CompilerHLSL(const uint32_t *ir_, size_t size) |
| 148 | : CompilerGLSL(ir_, size) |
| 149 | { |
| 150 | } |
| 151 | |
| 152 | explicit CompilerHLSL(const ParsedIR &ir_) |
| 153 | : CompilerGLSL(ir_) |
| 154 | { |
| 155 | } |
| 156 | |
| 157 | explicit CompilerHLSL(ParsedIR &&ir_) |
| 158 | : CompilerGLSL(std::move(ir_)) |
Hans-Kristian Arntzen | 9bad477 | 2017-04-01 16:08:19 +0200 | [diff] [blame] | 159 | { |
| 160 | } |
| 161 | |
Hans-Kristian Arntzen | a803e5a | 2018-03-09 15:25:25 +0100 | [diff] [blame] | 162 | const Options &get_hlsl_options() const |
| 163 | { |
| 164 | return hlsl_options; |
| 165 | } |
| 166 | |
Hans-Kristian Arntzen | a803e5a | 2018-03-09 15:25:25 +0100 | [diff] [blame] | 167 | void set_hlsl_options(const Options &opts) |
| 168 | { |
| 169 | hlsl_options = opts; |
Robert Konrad | f3740a0 | 2016-08-18 00:51:12 +0200 | [diff] [blame] | 170 | } |
| 171 | |
msiglreith | d096f5c | 2017-11-27 16:00:56 +0100 | [diff] [blame] | 172 | // Optionally specify a custom root constant layout. |
| 173 | // |
| 174 | // Push constants ranges will be split up according to the |
| 175 | // layout specified. |
Hans-Kristian Arntzen | 3fe57d3 | 2019-04-09 12:46:23 +0200 | [diff] [blame] | 176 | void set_root_constant_layouts(std::vector<RootConstants> layout); |
msiglreith | d096f5c | 2017-11-27 16:00:56 +0100 | [diff] [blame] | 177 | |
Hans-Kristian Arntzen | 4f88f97 | 2017-11-13 09:46:45 +0100 | [diff] [blame] | 178 | // Compiles and remaps vertex attributes at specific locations to a fixed semantic. |
| 179 | // The default is TEXCOORD# where # denotes location. |
| 180 | // Matrices are unrolled to vectors with notation ${SEMANTIC}_#, where # denotes row. |
| 181 | // $SEMANTIC is either TEXCOORD# or a semantic name specified here. |
Hans-Kristian Arntzen | 9bbdccd | 2019-02-12 11:11:29 +0100 | [diff] [blame] | 182 | void add_vertex_attribute_remap(const HLSLVertexAttributeRemap &vertex_attributes); |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 183 | std::string compile() override; |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 184 | |
Hans-Kristian Arntzen | 18e8833 | 2018-02-05 10:27:42 +0100 | [diff] [blame] | 185 | // This is a special HLSL workaround for the NumWorkGroups builtin. |
| 186 | // This does not exist in HLSL, so the calling application must create a dummy cbuffer in |
| 187 | // which the application will store this builtin. |
| 188 | // The cbuffer layout will be: |
| 189 | // cbuffer SPIRV_Cross_NumWorkgroups : register(b#, space#) { uint3 SPIRV_Cross_NumWorkgroups_count; }; |
| 190 | // This must be called before compile(). |
| 191 | // The function returns 0 if NumWorkGroups builtin is not statically used in the shader from the current entry point. |
| 192 | // If non-zero, this returns the variable ID of a cbuffer which corresponds to |
| 193 | // the cbuffer declared above. By default, no binding or descriptor set decoration is set, |
| 194 | // so the calling application should declare explicit bindings on this ID before calling compile(). |
Hans-Kristian Arntzen | 333980a | 2019-09-05 12:43:40 +0200 | [diff] [blame] | 195 | VariableID remap_num_workgroups_builtin(); |
Hans-Kristian Arntzen | 18e8833 | 2018-02-05 10:27:42 +0100 | [diff] [blame] | 196 | |
Hans-Kristian Arntzen | b9e5fe0 | 2019-11-11 11:01:35 +0100 | [diff] [blame] | 197 | // Controls how resource bindings are declared in the output HLSL. |
| 198 | void set_resource_binding_flags(HLSLBindingFlags flags); |
| 199 | |
Hans-Kristian Arntzen | cc153f8 | 2020-01-09 11:18:14 +0100 | [diff] [blame] | 200 | // resource is a resource binding to indicate the HLSL CBV, SRV, UAV or sampler binding |
| 201 | // to use for a particular SPIR-V description set |
| 202 | // and binding. If resource bindings are provided, |
| 203 | // is_hlsl_resource_binding_used() will return true after calling ::compile() if |
| 204 | // the set/binding combination was used by the HLSL code. |
| 205 | void add_hlsl_resource_binding(const HLSLResourceBinding &resource); |
| 206 | bool is_hlsl_resource_binding_used(spv::ExecutionModel model, uint32_t set, uint32_t binding) const; |
| 207 | |
Bryan Bernhart | 17bccc9 | 2020-05-27 13:08:15 -0700 | [diff] [blame] | 208 | // Controls which storage buffer bindings will be forced to be declared as UAVs. |
Bryan Bernhart | 32bead8 | 2020-05-28 10:21:41 -0700 | [diff] [blame] | 209 | void set_hlsl_force_storage_buffer_as_uav(uint32_t desc_set, uint32_t binding); |
Bryan Bernhart | 17bccc9 | 2020-05-27 13:08:15 -0700 | [diff] [blame] | 210 | |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 211 | private: |
Bill Hollings | b41e148 | 2017-05-29 20:45:05 -0400 | [diff] [blame] | 212 | std::string type_to_glsl(const SPIRType &type, uint32_t id = 0) override; |
Hans-Kristian Arntzen | e044732 | 2018-07-04 14:25:10 +0200 | [diff] [blame] | 213 | std::string image_type_hlsl(const SPIRType &type, uint32_t id); |
| 214 | std::string image_type_hlsl_modern(const SPIRType &type, uint32_t id); |
| 215 | std::string image_type_hlsl_legacy(const SPIRType &type, uint32_t id); |
Hans-Kristian Arntzen | e8e5884 | 2018-03-12 13:09:25 +0100 | [diff] [blame] | 216 | void emit_function_prototype(SPIRFunction &func, const Bitset &return_flags) override; |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 217 | void emit_hlsl_entry_point(); |
| 218 | void emit_header() override; |
| 219 | void emit_resources(); |
Hans-Kristian Arntzen | e81c1b1 | 2020-02-08 13:39:50 +0100 | [diff] [blame] | 220 | void declare_undefined_values() override; |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 221 | void emit_interface_block_globally(const SPIRVariable &type); |
Hans-Kristian Arntzen | d6b29ab | 2021-06-28 14:24:29 +0200 | [diff] [blame] | 222 | void emit_interface_block_in_struct(const SPIRVariable &var, std::unordered_set<uint32_t> &active_locations); |
| 223 | void emit_interface_block_member_in_struct(const SPIRVariable &var, uint32_t member_index, |
| 224 | uint32_t location, |
| 225 | std::unordered_set<uint32_t> &active_locations); |
Hans-Kristian Arntzen | bdea1a4 | 2017-03-06 16:50:15 +0100 | [diff] [blame] | 226 | void emit_builtin_inputs_in_struct(); |
| 227 | void emit_builtin_outputs_in_struct(); |
Hans-Kristian Arntzen | 275974e | 2020-06-04 15:50:28 +0200 | [diff] [blame] | 228 | void emit_texture_op(const Instruction &i, bool sparse) override; |
Robert Konrad | da5f99b | 2016-08-14 23:54:51 +0200 | [diff] [blame] | 229 | void emit_instruction(const Instruction &instruction) override; |
Robert Konrad | 40e5d1e | 2017-01-23 14:49:32 +0100 | [diff] [blame] | 230 | void emit_glsl_op(uint32_t result_type, uint32_t result_id, uint32_t op, const uint32_t *args, |
| 231 | uint32_t count) override; |
Robert Konrad | 99469f0 | 2017-01-24 09:17:43 +0100 | [diff] [blame] | 232 | void emit_buffer_block(const SPIRVariable &type) override; |
| 233 | void emit_push_constant_block(const SPIRVariable &var) override; |
Robert Konrad | c3268c9 | 2017-01-24 09:23:22 +0100 | [diff] [blame] | 234 | void emit_uniform(const SPIRVariable &var) override; |
Hans-Kristian Arntzen | 100e9d3 | 2017-04-25 10:44:55 +0200 | [diff] [blame] | 235 | void emit_modern_uniform(const SPIRVariable &var); |
| 236 | void emit_legacy_uniform(const SPIRVariable &var); |
Hans-Kristian Arntzen | d92de00 | 2019-01-10 09:49:33 +0100 | [diff] [blame] | 237 | void emit_specialization_constants_and_structs(); |
Hans-Kristian Arntzen | 5d9df6a | 2018-02-02 10:10:17 +0100 | [diff] [blame] | 238 | void emit_composite_constants(); |
Hans-Kristian Arntzen | bdfa97a | 2017-08-03 13:02:59 +0200 | [diff] [blame] | 239 | void emit_fixup() override; |
Hans-Kristian Arntzen | 5e9b53e | 2017-12-06 11:01:32 +0100 | [diff] [blame] | 240 | std::string builtin_to_glsl(spv::BuiltIn builtin, spv::StorageClass storage) override; |
Hans-Kristian Arntzen | 439fa9f | 2017-03-07 16:18:43 +0100 | [diff] [blame] | 241 | std::string layout_for_member(const SPIRType &type, uint32_t index) override; |
Hans-Kristian Arntzen | e8e5884 | 2018-03-12 13:09:25 +0100 | [diff] [blame] | 242 | std::string to_interpolation_qualifiers(const Bitset &flags) override; |
Robert Konrad | a7e2a69 | 2017-03-24 14:13:59 +0100 | [diff] [blame] | 243 | std::string bitcast_glsl_op(const SPIRType &result_type, const SPIRType &argument_type) override; |
Hans-Kristian Arntzen | 5e5d1c2 | 2020-04-21 23:27:33 +0200 | [diff] [blame] | 244 | bool emit_complex_bitcast(uint32_t result_type, uint32_t id, uint32_t op0) override; |
Chip Davis | 39dce88 | 2019-08-02 15:11:19 -0500 | [diff] [blame] | 245 | std::string to_func_call_arg(const SPIRFunction::Parameter &arg, uint32_t id) override; |
Hans-Kristian Arntzen | 686ac68 | 2017-05-07 13:22:16 +0200 | [diff] [blame] | 246 | std::string to_sampler_expression(uint32_t id); |
Hans-Kristian Arntzen | 620da7b | 2017-06-17 10:15:32 +0200 | [diff] [blame] | 247 | std::string to_resource_binding(const SPIRVariable &var); |
| 248 | std::string to_resource_binding_sampler(const SPIRVariable &var); |
Hans-Kristian Arntzen | cc153f8 | 2020-01-09 11:18:14 +0100 | [diff] [blame] | 249 | std::string to_resource_register(HLSLBindingFlagBits flag, char space, uint32_t binding, uint32_t set); |
Hans-Kristian Arntzen | 9a304fe | 2021-01-04 11:16:58 +0100 | [diff] [blame] | 250 | std::string to_initializer_expression(const SPIRVariable &var) override; |
Hans-Kristian Arntzen | 947f701 | 2017-05-07 13:28:08 +0200 | [diff] [blame] | 251 | void emit_sampled_image_op(uint32_t result_type, uint32_t result_id, uint32_t image_id, uint32_t samp_id) override; |
Hans-Kristian Arntzen | 7d7f4b3 | 2017-08-10 17:12:48 +0200 | [diff] [blame] | 252 | void emit_access_chain(const Instruction &instruction); |
| 253 | void emit_load(const Instruction &instruction); |
Hans-Kristian Arntzen | ca9398c | 2020-01-08 13:05:56 +0100 | [diff] [blame] | 254 | void read_access_chain(std::string *expr, const std::string &lhs, const SPIRAccessChain &chain); |
| 255 | void read_access_chain_struct(const std::string &lhs, const SPIRAccessChain &chain); |
| 256 | void read_access_chain_array(const std::string &lhs, const SPIRAccessChain &chain); |
Hans-Kristian Arntzen | 151ff1e | 2020-01-08 14:17:28 +0100 | [diff] [blame] | 257 | void write_access_chain(const SPIRAccessChain &chain, uint32_t value, const SmallVector<uint32_t> &composite_chain); |
Hans-Kristian Arntzen | c256525 | 2020-01-08 14:27:34 +0100 | [diff] [blame] | 258 | void write_access_chain_struct(const SPIRAccessChain &chain, uint32_t value, |
| 259 | const SmallVector<uint32_t> &composite_chain); |
| 260 | void write_access_chain_array(const SPIRAccessChain &chain, uint32_t value, |
| 261 | const SmallVector<uint32_t> &composite_chain); |
Hans-Kristian Arntzen | 151ff1e | 2020-01-08 14:17:28 +0100 | [diff] [blame] | 262 | std::string write_access_chain_value(uint32_t value, const SmallVector<uint32_t> &composite_chain, bool enclose); |
Hans-Kristian Arntzen | 7d7f4b3 | 2017-08-10 17:12:48 +0200 | [diff] [blame] | 263 | void emit_store(const Instruction &instruction); |
Hans-Kristian Arntzen | 044d3c8 | 2017-10-20 14:56:37 +0200 | [diff] [blame] | 264 | void emit_atomic(const uint32_t *ops, uint32_t length, spv::Op op); |
Hans-Kristian Arntzen | c266429 | 2018-04-11 15:02:02 +0200 | [diff] [blame] | 265 | void emit_subgroup_op(const Instruction &i) override; |
Hans-Kristian Arntzen | 33c61d2 | 2018-06-25 10:33:13 +0200 | [diff] [blame] | 266 | void emit_block_hints(const SPIRBlock &block) override; |
Robert Konrad | f3740a0 | 2016-08-18 00:51:12 +0200 | [diff] [blame] | 267 | |
msiglreith | d096f5c | 2017-11-27 16:00:56 +0100 | [diff] [blame] | 268 | void emit_struct_member(const SPIRType &type, uint32_t member_type_id, uint32_t index, const std::string &qualifier, |
| 269 | uint32_t base_offset = 0) override; |
Hans-Kristian Arntzen | f0200bb | 2017-10-10 13:15:49 +0200 | [diff] [blame] | 270 | |
Hans-Kristian Arntzen | bcf2303 | 2017-02-24 11:15:34 +0100 | [diff] [blame] | 271 | const char *to_storage_qualifiers_glsl(const SPIRVariable &var) override; |
Pascal Muetschard | aced605 | 2018-05-04 14:53:32 -0700 | [diff] [blame] | 272 | void replace_illegal_names() override; |
Hans-Kristian Arntzen | bcf2303 | 2017-02-24 11:15:34 +0100 | [diff] [blame] | 273 | |
Bryan Bernhart | 32bead8 | 2020-05-28 10:21:41 -0700 | [diff] [blame] | 274 | bool is_hlsl_force_storage_buffer_as_uav(ID id) const; |
Bryan Bernhart | 17bccc9 | 2020-05-27 13:08:15 -0700 | [diff] [blame] | 275 | |
Hans-Kristian Arntzen | a803e5a | 2018-03-09 15:25:25 +0100 | [diff] [blame] | 276 | Options hlsl_options; |
Hans-Kristian Arntzen | 041f103 | 2019-07-03 12:24:58 +0200 | [diff] [blame] | 277 | |
| 278 | // TODO: Refactor this to be more similar to MSL, maybe have some common system in place? |
Robert Konrad | 1a48d7d | 2016-08-18 12:54:22 +0200 | [diff] [blame] | 279 | bool requires_op_fmod = false; |
Hans-Kristian Arntzen | 6c7c680 | 2017-11-27 14:24:30 +0100 | [diff] [blame] | 280 | bool requires_fp16_packing = false; |
Asuka | 55dfbea | 2020-04-17 22:46:06 +0800 | [diff] [blame] | 281 | bool requires_uint2_packing = false; |
Hans-Kristian Arntzen | 47d94ff | 2018-03-07 10:21:25 +0100 | [diff] [blame] | 282 | bool requires_explicit_fp16_packing = false; |
Hans-Kristian Arntzen | 719ba63 | 2017-11-27 14:44:21 +0100 | [diff] [blame] | 283 | bool requires_unorm8_packing = false; |
| 284 | bool requires_snorm8_packing = false; |
Hans-Kristian Arntzen | 656af7e | 2017-11-27 15:03:40 +0100 | [diff] [blame] | 285 | bool requires_unorm16_packing = false; |
| 286 | bool requires_snorm16_packing = false; |
Hans-Kristian Arntzen | 48f3fa4 | 2017-11-29 11:33:44 +0100 | [diff] [blame] | 287 | bool requires_bitfield_insert = false; |
| 288 | bool requires_bitfield_extract = false; |
Hans-Kristian Arntzen | b380a21 | 2018-02-23 16:36:12 +0100 | [diff] [blame] | 289 | bool requires_inverse_2x2 = false; |
| 290 | bool requires_inverse_3x3 = false; |
| 291 | bool requires_inverse_4x4 = false; |
Hans-Kristian Arntzen | 041f103 | 2019-07-03 12:24:58 +0200 | [diff] [blame] | 292 | bool requires_scalar_reflect = false; |
| 293 | bool requires_scalar_refract = false; |
Hans-Kristian Arntzen | c7eda1b | 2019-07-17 11:24:31 +0200 | [diff] [blame] | 294 | bool requires_scalar_faceforward = false; |
Hans-Kristian Arntzen | f3a362b | 2020-05-19 13:39:48 +0200 | [diff] [blame] | 295 | |
| 296 | struct TextureSizeVariants |
| 297 | { |
| 298 | // MSVC 2013 workaround. |
| 299 | TextureSizeVariants() |
| 300 | { |
| 301 | srv = 0; |
| 302 | for (auto &unorm : uav) |
| 303 | for (auto &u : unorm) |
| 304 | u = 0; |
| 305 | } |
| 306 | uint64_t srv; |
| 307 | uint64_t uav[3][4]; |
| 308 | } required_texture_size_variants; |
| 309 | |
| 310 | void require_texture_query_variant(uint32_t var_id); |
Hans-Kristian Arntzen | d573a95 | 2020-07-01 11:42:58 +0200 | [diff] [blame] | 311 | void emit_texture_size_variants(uint64_t variant_mask, const char *vecsize_qualifier, bool uav, |
| 312 | const char *type_qualifier); |
Hans-Kristian Arntzen | 9aa42a8 | 2017-09-20 10:31:05 +0200 | [diff] [blame] | 313 | |
| 314 | enum TextureQueryVariantDim |
| 315 | { |
| 316 | Query1D = 0, |
| 317 | Query1DArray, |
| 318 | Query2D, |
| 319 | Query2DArray, |
| 320 | Query3D, |
| 321 | QueryBuffer, |
| 322 | QueryCube, |
| 323 | QueryCubeArray, |
| 324 | Query2DMS, |
| 325 | Query2DMSArray, |
| 326 | QueryDimCount |
| 327 | }; |
| 328 | |
| 329 | enum TextureQueryVariantType |
| 330 | { |
| 331 | QueryTypeFloat = 0, |
| 332 | QueryTypeInt = 16, |
| 333 | QueryTypeUInt = 32, |
| 334 | QueryTypeCount = 3 |
| 335 | }; |
Hans-Kristian Arntzen | bdea1a4 | 2017-03-06 16:50:15 +0100 | [diff] [blame] | 336 | |
Asuka | 55dfbea | 2020-04-17 22:46:06 +0800 | [diff] [blame] | 337 | enum BitcastType |
| 338 | { |
| 339 | TypeNormal, |
| 340 | TypePackUint2x32, |
| 341 | TypeUnpackUint64 |
| 342 | }; |
| 343 | |
| 344 | BitcastType get_bitcast_type(uint32_t result_type, uint32_t op0); |
| 345 | |
Hans-Kristian Arntzen | bdea1a4 | 2017-03-06 16:50:15 +0100 | [diff] [blame] | 346 | void emit_builtin_variables(); |
| 347 | bool require_output = false; |
| 348 | bool require_input = false; |
Hans-Kristian Arntzen | a489ba7 | 2019-04-02 11:19:03 +0200 | [diff] [blame] | 349 | SmallVector<HLSLVertexAttributeRemap> remap_vertex_attributes; |
Hans-Kristian Arntzen | 61c31c6 | 2017-03-07 13:27:04 +0100 | [diff] [blame] | 350 | |
| 351 | uint32_t type_to_consumed_locations(const SPIRType &type) const; |
Hans-Kristian Arntzen | 439fa9f | 2017-03-07 16:18:43 +0100 | [diff] [blame] | 352 | |
Ashley Harris | cc2d290 | 2019-04-12 13:54:58 +0930 | [diff] [blame] | 353 | std::string to_semantic(uint32_t location, spv::ExecutionModel em, spv::StorageClass sc); |
Hans-Kristian Arntzen | 18e8833 | 2018-02-05 10:27:42 +0100 | [diff] [blame] | 354 | |
| 355 | uint32_t num_workgroups_builtin = 0; |
Hans-Kristian Arntzen | b9e5fe0 | 2019-11-11 11:01:35 +0100 | [diff] [blame] | 356 | HLSLBindingFlags resource_binding_flags = 0; |
msiglreith | d096f5c | 2017-11-27 16:00:56 +0100 | [diff] [blame] | 357 | |
| 358 | // Custom root constant layout, which should be emitted |
| 359 | // when translating push constant ranges. |
Hans-Kristian Arntzen | 3fe57d3 | 2019-04-09 12:46:23 +0200 | [diff] [blame] | 360 | std::vector<RootConstants> root_constants_layout; |
Hans-Kristian Arntzen | 647ddae | 2019-05-13 14:58:27 +0200 | [diff] [blame] | 361 | |
| 362 | void validate_shader_model(); |
Hans-Kristian Arntzen | ca9398c | 2020-01-08 13:05:56 +0100 | [diff] [blame] | 363 | |
| 364 | std::string get_unique_identifier(); |
| 365 | uint32_t unique_identifier_count = 0; |
Hans-Kristian Arntzen | cc153f8 | 2020-01-09 11:18:14 +0100 | [diff] [blame] | 366 | |
| 367 | std::unordered_map<StageSetBinding, std::pair<HLSLResourceBinding, bool>, InternalHasher> resource_bindings; |
| 368 | void remap_hlsl_resource_binding(HLSLBindingFlagBits type, uint32_t &desc_set, uint32_t &binding); |
Bryan Bernhart | 17bccc9 | 2020-05-27 13:08:15 -0700 | [diff] [blame] | 369 | |
Bryan Bernhart | 32bead8 | 2020-05-28 10:21:41 -0700 | [diff] [blame] | 370 | std::unordered_set<SetBindingPair, InternalHasher> force_uav_buffer_bindings; |
Tomek Ponitka | ba58f78 | 2020-07-23 19:09:43 +0200 | [diff] [blame] | 371 | |
| 372 | // Returns true for BuiltInSampleMask because gl_SampleMask[] is an array in SPIR-V, but SV_Coverage is a scalar in HLSL. |
| 373 | bool builtin_translates_to_nonarray(spv::BuiltIn builtin) const override; |
Hans-Kristian Arntzen | 8216e87 | 2021-06-28 11:10:55 +0200 | [diff] [blame] | 374 | |
| 375 | std::vector<TypeID> composite_selection_workaround_types; |
Robert Konrad | e9cd04e | 2016-08-14 22:02:38 +0200 | [diff] [blame] | 376 | }; |
Hans-Kristian Arntzen | a489ba7 | 2019-04-02 11:19:03 +0200 | [diff] [blame] | 377 | } // namespace SPIRV_CROSS_NAMESPACE |
Robert Konrad | 45270f6 | 2016-08-14 16:21:43 +0200 | [diff] [blame] | 378 | |
| 379 | #endif |