2016-08-14 14:21:43 +00:00
|
|
|
/*
|
2019-01-04 11:38:35 +00:00
|
|
|
* Copyright 2016-2019 Robert Konrad
|
2017-01-27 15:45:43 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2016-08-14 14:21:43 +00:00
|
|
|
|
|
|
|
#ifndef SPIRV_HLSL_HPP
|
|
|
|
#define SPIRV_HLSL_HPP
|
|
|
|
|
|
|
|
#include "spirv_glsl.hpp"
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-03-29 09:29:44 +00:00
|
|
|
namespace SPIRV_CROSS_NAMESPACE
|
2016-08-14 14:21:43 +00:00
|
|
|
{
|
2017-11-13 08:46:45 +00:00
|
|
|
// Interface which remaps vertex inputs to a fixed semantic name to make linking easier.
|
|
|
|
struct HLSLVertexAttributeRemap
|
2017-11-06 19:10:04 +00:00
|
|
|
{
|
2017-11-13 08:46:45 +00:00
|
|
|
uint32_t location;
|
2017-11-06 19:10:04 +00:00
|
|
|
std::string semantic;
|
|
|
|
};
|
2017-11-27 15:00:56 +00:00
|
|
|
// Specifying a root constant (d3d12) or push constant range (vulkan).
|
|
|
|
//
|
|
|
|
// `start` and `end` denotes the range of the root constant in bytes.
|
|
|
|
// Both values need to be multiple of 4.
|
|
|
|
struct RootConstants
|
|
|
|
{
|
|
|
|
uint32_t start;
|
|
|
|
uint32_t end;
|
|
|
|
|
|
|
|
uint32_t binding;
|
|
|
|
uint32_t space;
|
|
|
|
};
|
2017-11-06 19:10:04 +00:00
|
|
|
|
2016-08-14 20:02:38 +00:00
|
|
|
class CompilerHLSL : public CompilerGLSL
|
|
|
|
{
|
|
|
|
public:
|
2016-08-17 22:51:12 +00:00
|
|
|
struct Options
|
|
|
|
{
|
|
|
|
uint32_t shader_model = 30; // TODO: map ps_4_0_level_9_0,... somehow
|
2017-05-04 08:10:30 +00:00
|
|
|
|
|
|
|
// Allows the PointSize builtin, and ignores it, as PointSize is not supported in HLSL.
|
2017-05-04 08:32:43 +00:00
|
|
|
bool point_size_compat = false;
|
2018-02-23 14:56:25 +00:00
|
|
|
|
|
|
|
// Allows the PointCoord builtin, returns float2(0.5, 0.5), as PointCoord is not supported in HLSL.
|
|
|
|
bool point_coord_compat = false;
|
2019-01-11 09:32:14 +00:00
|
|
|
|
|
|
|
// If true, the backend will assume that VertexIndex and InstanceIndex will need to apply
|
|
|
|
// a base offset, and you will need to fill in a cbuffer with offsets.
|
|
|
|
// Set to false if you know you will never use base instance or base vertex
|
|
|
|
// functionality as it might remove an internal cbuffer.
|
|
|
|
bool support_nonzero_base_vertex_base_instance = false;
|
2016-08-17 22:51:12 +00:00
|
|
|
};
|
|
|
|
|
2018-10-05 09:30:57 +00:00
|
|
|
explicit CompilerHLSL(std::vector<uint32_t> spirv_)
|
2016-08-14 20:02:38 +00:00
|
|
|
: CompilerGLSL(move(spirv_))
|
2016-08-14 14:21:43 +00:00
|
|
|
{
|
2016-08-14 20:02:38 +00:00
|
|
|
}
|
2016-08-17 22:51:12 +00:00
|
|
|
|
2018-10-05 09:30:57 +00:00
|
|
|
CompilerHLSL(const uint32_t *ir_, size_t size)
|
|
|
|
: CompilerGLSL(ir_, size)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit CompilerHLSL(const ParsedIR &ir_)
|
|
|
|
: CompilerGLSL(ir_)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
explicit CompilerHLSL(ParsedIR &&ir_)
|
|
|
|
: CompilerGLSL(std::move(ir_))
|
2017-04-01 14:08:19 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-03-09 14:25:25 +00:00
|
|
|
const Options &get_hlsl_options() const
|
|
|
|
{
|
|
|
|
return hlsl_options;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_hlsl_options(const Options &opts)
|
|
|
|
{
|
|
|
|
hlsl_options = opts;
|
2016-08-17 22:51:12 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 15:00:56 +00:00
|
|
|
// Optionally specify a custom root constant layout.
|
|
|
|
//
|
|
|
|
// Push constants ranges will be split up according to the
|
|
|
|
// layout specified.
|
2019-02-12 10:11:29 +00:00
|
|
|
void set_root_constant_layouts(std::vector<RootConstants> layout);
|
2017-11-27 15:00:56 +00:00
|
|
|
|
2017-11-13 08:46:45 +00:00
|
|
|
// Compiles and remaps vertex attributes at specific locations to a fixed semantic.
|
|
|
|
// The default is TEXCOORD# where # denotes location.
|
|
|
|
// Matrices are unrolled to vectors with notation ${SEMANTIC}_#, where # denotes row.
|
|
|
|
// $SEMANTIC is either TEXCOORD# or a semantic name specified here.
|
2019-02-12 10:11:29 +00:00
|
|
|
void add_vertex_attribute_remap(const HLSLVertexAttributeRemap &vertex_attributes);
|
2016-08-14 20:02:38 +00:00
|
|
|
std::string compile() override;
|
2016-08-14 14:21:43 +00:00
|
|
|
|
2018-02-05 09:27:42 +00:00
|
|
|
// This is a special HLSL workaround for the NumWorkGroups builtin.
|
|
|
|
// This does not exist in HLSL, so the calling application must create a dummy cbuffer in
|
|
|
|
// which the application will store this builtin.
|
|
|
|
// The cbuffer layout will be:
|
|
|
|
// cbuffer SPIRV_Cross_NumWorkgroups : register(b#, space#) { uint3 SPIRV_Cross_NumWorkgroups_count; };
|
|
|
|
// This must be called before compile().
|
|
|
|
// The function returns 0 if NumWorkGroups builtin is not statically used in the shader from the current entry point.
|
|
|
|
// If non-zero, this returns the variable ID of a cbuffer which corresponds to
|
|
|
|
// the cbuffer declared above. By default, no binding or descriptor set decoration is set,
|
|
|
|
// so the calling application should declare explicit bindings on this ID before calling compile().
|
|
|
|
uint32_t remap_num_workgroups_builtin();
|
|
|
|
|
2016-08-14 20:02:38 +00:00
|
|
|
private:
|
2017-05-30 00:45:05 +00:00
|
|
|
std::string type_to_glsl(const SPIRType &type, uint32_t id = 0) override;
|
2018-07-04 12:25:10 +00:00
|
|
|
std::string image_type_hlsl(const SPIRType &type, uint32_t id);
|
|
|
|
std::string image_type_hlsl_modern(const SPIRType &type, uint32_t id);
|
|
|
|
std::string image_type_hlsl_legacy(const SPIRType &type, uint32_t id);
|
2018-03-12 12:09:25 +00:00
|
|
|
void emit_function_prototype(SPIRFunction &func, const Bitset &return_flags) override;
|
2016-08-14 20:02:38 +00:00
|
|
|
void emit_hlsl_entry_point();
|
|
|
|
void emit_header() override;
|
|
|
|
void emit_resources();
|
|
|
|
void emit_interface_block_globally(const SPIRVariable &type);
|
2017-03-07 12:27:04 +00:00
|
|
|
void emit_interface_block_in_struct(const SPIRVariable &type, std::unordered_set<uint32_t> &active_locations);
|
2017-03-06 15:50:15 +00:00
|
|
|
void emit_builtin_inputs_in_struct();
|
|
|
|
void emit_builtin_outputs_in_struct();
|
2016-08-14 21:09:06 +00:00
|
|
|
void emit_texture_op(const Instruction &i) override;
|
2016-08-14 21:54:51 +00:00
|
|
|
void emit_instruction(const Instruction &instruction) override;
|
2017-01-23 13:49:32 +00:00
|
|
|
void emit_glsl_op(uint32_t result_type, uint32_t result_id, uint32_t op, const uint32_t *args,
|
|
|
|
uint32_t count) override;
|
2017-01-24 08:17:43 +00:00
|
|
|
void emit_buffer_block(const SPIRVariable &type) override;
|
|
|
|
void emit_push_constant_block(const SPIRVariable &var) override;
|
2017-01-24 08:23:22 +00:00
|
|
|
void emit_uniform(const SPIRVariable &var) override;
|
2017-04-25 08:44:55 +00:00
|
|
|
void emit_modern_uniform(const SPIRVariable &var);
|
|
|
|
void emit_legacy_uniform(const SPIRVariable &var);
|
2019-01-10 08:49:33 +00:00
|
|
|
void emit_specialization_constants_and_structs();
|
2018-02-02 09:10:17 +00:00
|
|
|
void emit_composite_constants();
|
2017-08-03 11:02:59 +00:00
|
|
|
void emit_fixup() override;
|
2017-12-06 10:01:32 +00:00
|
|
|
std::string builtin_to_glsl(spv::BuiltIn builtin, spv::StorageClass storage) override;
|
2017-03-07 15:18:43 +00:00
|
|
|
std::string layout_for_member(const SPIRType &type, uint32_t index) override;
|
2018-03-12 12:09:25 +00:00
|
|
|
std::string to_interpolation_qualifiers(const Bitset &flags) override;
|
2017-03-24 13:13:59 +00:00
|
|
|
std::string bitcast_glsl_op(const SPIRType &result_type, const SPIRType &argument_type) override;
|
2017-05-07 11:22:16 +00:00
|
|
|
std::string to_func_call_arg(uint32_t id) override;
|
|
|
|
std::string to_sampler_expression(uint32_t id);
|
2017-06-17 08:15:32 +00:00
|
|
|
std::string to_resource_binding(const SPIRVariable &var);
|
|
|
|
std::string to_resource_binding_sampler(const SPIRVariable &var);
|
2017-11-27 15:00:56 +00:00
|
|
|
std::string to_resource_register(char space, uint32_t binding, uint32_t set);
|
2017-05-07 11:28:08 +00:00
|
|
|
void emit_sampled_image_op(uint32_t result_type, uint32_t result_id, uint32_t image_id, uint32_t samp_id) override;
|
2017-08-10 15:12:48 +00:00
|
|
|
void emit_access_chain(const Instruction &instruction);
|
|
|
|
void emit_load(const Instruction &instruction);
|
2017-08-15 08:12:08 +00:00
|
|
|
std::string read_access_chain(const SPIRAccessChain &chain);
|
2017-10-26 15:16:32 +00:00
|
|
|
void write_access_chain(const SPIRAccessChain &chain, uint32_t value);
|
2017-08-10 15:12:48 +00:00
|
|
|
void emit_store(const Instruction &instruction);
|
2017-10-20 12:56:37 +00:00
|
|
|
void emit_atomic(const uint32_t *ops, uint32_t length, spv::Op op);
|
2018-04-11 13:02:02 +00:00
|
|
|
void emit_subgroup_op(const Instruction &i) override;
|
2018-06-25 08:33:13 +00:00
|
|
|
void emit_block_hints(const SPIRBlock &block) override;
|
2016-08-17 22:51:12 +00:00
|
|
|
|
2017-11-27 15:00:56 +00:00
|
|
|
void emit_struct_member(const SPIRType &type, uint32_t member_type_id, uint32_t index, const std::string &qualifier,
|
|
|
|
uint32_t base_offset = 0) override;
|
2017-10-10 11:15:49 +00:00
|
|
|
|
2017-02-24 10:15:34 +00:00
|
|
|
const char *to_storage_qualifiers_glsl(const SPIRVariable &var) override;
|
2018-05-04 21:53:32 +00:00
|
|
|
void replace_illegal_names() override;
|
2017-02-24 10:15:34 +00:00
|
|
|
|
2018-03-09 14:25:25 +00:00
|
|
|
Options hlsl_options;
|
2016-08-18 10:54:22 +00:00
|
|
|
bool requires_op_fmod = false;
|
2017-11-27 13:24:30 +00:00
|
|
|
bool requires_fp16_packing = false;
|
2018-03-07 09:21:25 +00:00
|
|
|
bool requires_explicit_fp16_packing = false;
|
2017-11-27 13:44:21 +00:00
|
|
|
bool requires_unorm8_packing = false;
|
|
|
|
bool requires_snorm8_packing = false;
|
2017-11-27 14:03:40 +00:00
|
|
|
bool requires_unorm16_packing = false;
|
|
|
|
bool requires_snorm16_packing = false;
|
2017-11-29 10:33:44 +00:00
|
|
|
bool requires_bitfield_insert = false;
|
|
|
|
bool requires_bitfield_extract = false;
|
2018-02-23 15:36:12 +00:00
|
|
|
bool requires_inverse_2x2 = false;
|
|
|
|
bool requires_inverse_3x3 = false;
|
|
|
|
bool requires_inverse_4x4 = false;
|
2017-09-20 08:31:05 +00:00
|
|
|
uint64_t required_textureSizeVariants = 0;
|
|
|
|
void require_texture_query_variant(const SPIRType &type);
|
|
|
|
|
|
|
|
enum TextureQueryVariantDim
|
|
|
|
{
|
|
|
|
Query1D = 0,
|
|
|
|
Query1DArray,
|
|
|
|
Query2D,
|
|
|
|
Query2DArray,
|
|
|
|
Query3D,
|
|
|
|
QueryBuffer,
|
|
|
|
QueryCube,
|
|
|
|
QueryCubeArray,
|
|
|
|
Query2DMS,
|
|
|
|
Query2DMSArray,
|
|
|
|
QueryDimCount
|
|
|
|
};
|
|
|
|
|
|
|
|
enum TextureQueryVariantType
|
|
|
|
{
|
|
|
|
QueryTypeFloat = 0,
|
|
|
|
QueryTypeInt = 16,
|
|
|
|
QueryTypeUInt = 32,
|
|
|
|
QueryTypeCount = 3
|
|
|
|
};
|
2017-03-06 15:50:15 +00:00
|
|
|
|
|
|
|
void emit_builtin_variables();
|
|
|
|
bool require_output = false;
|
|
|
|
bool require_input = false;
|
2017-11-13 08:46:45 +00:00
|
|
|
std::vector<HLSLVertexAttributeRemap> remap_vertex_attributes;
|
2017-03-07 12:27:04 +00:00
|
|
|
|
|
|
|
uint32_t type_to_consumed_locations(const SPIRType &type) const;
|
2017-03-07 15:18:43 +00:00
|
|
|
|
|
|
|
void emit_io_block(const SPIRVariable &var);
|
2017-11-13 08:52:00 +00:00
|
|
|
std::string to_semantic(uint32_t vertex_location);
|
2018-02-05 09:27:42 +00:00
|
|
|
|
|
|
|
uint32_t num_workgroups_builtin = 0;
|
2017-11-27 15:00:56 +00:00
|
|
|
|
|
|
|
// Custom root constant layout, which should be emitted
|
|
|
|
// when translating push constant ranges.
|
|
|
|
std::vector<RootConstants> root_constants_layout;
|
2016-08-14 20:02:38 +00:00
|
|
|
};
|
2018-04-03 12:08:15 +00:00
|
|
|
} // namespace spirv_cross
|
2016-08-14 14:21:43 +00:00
|
|
|
|
|
|
|
#endif
|