2 * Copyright 2015-2021 Arm Limited
3 * SPDX-License-Identifier: Apache-2.0 OR MIT
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
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>.
24 #ifndef SPIRV_CROSS_GLSL_HPP
25 #define SPIRV_CROSS_GLSL_HPP
27 #include "GLSL.std.450.h"
28 #include "spirv_cross.hpp"
29 #include <unordered_map>
30 #include <unordered_set>
33 namespace SPIRV_CROSS_NAMESPACE
61 enum AccessChainFlagBits
63 ACCESS_CHAIN_INDEX_IS_LITERAL_BIT
= 1 << 0,
64 ACCESS_CHAIN_CHAIN_ONLY_BIT
= 1 << 1,
65 ACCESS_CHAIN_PTR_CHAIN_BIT
= 1 << 2,
66 ACCESS_CHAIN_SKIP_REGISTER_EXPRESSION_READ_BIT
= 1 << 3,
67 ACCESS_CHAIN_LITERAL_MSB_FORCE_ID
= 1 << 4,
68 ACCESS_CHAIN_FLATTEN_ALL_MEMBERS_BIT
= 1 << 5,
69 ACCESS_CHAIN_FORCE_COMPOSITE_BIT
= 1 << 6
71 typedef uint32_t AccessChainFlags
;
73 class CompilerGLSL
: public Compiler
78 // The shading language version. Corresponds to #version $VALUE.
79 uint32_t version
= 450;
81 // Emit the OpenGL ES shading language instead of desktop OpenGL.
84 // Debug option to always emit temporary variables for all expressions.
85 bool force_temporary
= false;
86 // Debug option, can be increased in an attempt to workaround SPIRV-Cross bugs temporarily.
87 // If this limit has to be increased, it points to an implementation bug.
88 // In certain scenarios, the maximum number of debug iterations may increase beyond this limit
89 // as long as we can prove we're making certain kinds of forward progress.
90 uint32_t force_recompile_max_debug_iterations
= 3;
92 // If true, Vulkan GLSL features are used instead of GL-compatible features.
93 // Mostly useful for debugging SPIR-V files.
94 bool vulkan_semantics
= false;
96 // If true, gl_PerVertex is explicitly redeclared in vertex, geometry and tessellation shaders.
97 // The members of gl_PerVertex is determined by which built-ins are declared by the shader.
98 // This option is ignored in ES versions, as redeclaration in ES is not required, and it depends on a different extension
99 // (EXT_shader_io_blocks) which makes things a bit more fuzzy.
100 bool separate_shader_objects
= false;
102 // Flattens multidimensional arrays, e.g. float foo[a][b][c] into single-dimensional arrays,
103 // e.g. float foo[a * b * c].
104 // This function does not change the actual SPIRType of any object.
105 // Only the generated code, including declarations of interface variables are changed to be single array dimension.
106 bool flatten_multidimensional_arrays
= false;
108 // For older desktop GLSL targets than version 420, the
109 // GL_ARB_shading_language_420pack extensions is used to be able to support
110 // layout(binding) on UBOs and samplers.
111 // If disabled on older targets, binding decorations will be stripped.
112 bool enable_420pack_extension
= true;
114 // In non-Vulkan GLSL, emit push constant blocks as UBOs rather than plain uniforms.
115 bool emit_push_constant_as_uniform_buffer
= false;
117 // Always emit uniform blocks as plain uniforms, regardless of the GLSL version, even when UBOs are supported.
118 // Does not apply to shader storage or push constant blocks.
119 bool emit_uniform_buffer_as_plain_uniforms
= false;
121 // Emit OpLine directives if present in the module.
122 // May not correspond exactly to original source, but should be a good approximation.
123 bool emit_line_directives
= false;
125 // In cases where readonly/writeonly decoration are not used at all,
126 // we try to deduce which qualifier(s) we should actually used, since actually emitting
127 // read-write decoration is very rare, and older glslang/HLSL compilers tend to just emit readwrite as a matter of fact.
128 // The default (true) is to enable automatic deduction for these cases, but if you trust the decorations set
129 // by the SPIR-V, it's recommended to set this to false.
130 bool enable_storage_image_qualifier_deduction
= true;
132 // On some targets (WebGPU), uninitialized variables are banned.
133 // If this is enabled, all variables (temporaries, Private, Function)
134 // which would otherwise be uninitialized will now be initialized to 0 instead.
135 bool force_zero_initialized_variables
= false;
137 // In GLSL, force use of I/O block flattening, similar to
138 // what happens on legacy GLSL targets for blocks and structs.
139 bool force_flattened_io_blocks
= false;
141 // For opcodes where we have to perform explicit additional nan checks, very ugly code is generated.
142 // If we opt-in, ignore these requirements.
143 // In opcodes like NClamp/NMin/NMax and FP compare, ignore NaN behavior.
144 // Use FClamp/FMin/FMax semantics for clamps and lets implementation choose ordered or unordered
146 bool relax_nan_checks
= false;
148 // Loading row-major matrices from UBOs on older AMD Windows OpenGL drivers is problematic.
149 // To load these types correctly, we must generate a wrapper. them in a dummy function which only purpose is to
150 // ensure row_major decoration is actually respected.
151 // This workaround may cause significant performance degeneration on some Android devices.
152 bool enable_row_major_load_workaround
= true;
154 // If non-zero, controls layout(num_views = N) in; in GL_OVR_multiview2.
155 uint32_t ovr_multiview_view_count
= 0;
167 // "Vertex-like shader" here is any shader stage that can write BuiltInPosition.
169 // GLSL: In vertex-like shaders, rewrite [0, w] depth (Vulkan/D3D style) to [-w, w] depth (GL style).
170 // MSL: In vertex-like shaders, rewrite [-w, w] depth (GL style) to [0, w] depth.
171 // HLSL: In vertex-like shaders, rewrite [-w, w] depth (GL style) to [0, w] depth.
172 bool fixup_clipspace
= false;
174 // In vertex-like shaders, inverts gl_Position.y or equivalent.
175 bool flip_vert_y
= false;
177 // GLSL only, for HLSL version of this option, see CompilerHLSL.
178 // If true, the backend will assume that InstanceIndex will need to apply
179 // a base instance offset. Set to false if you know you will never use base instance
180 // functionality as it might remove some internal uniforms.
181 bool support_nonzero_base_instance
= true;
184 struct FragmentOptions
186 // Add precision mediump float in ES targets when emitting GLES source.
187 // Add precision highp int in ES targets when emitting GLES source.
188 Precision default_float_precision
= Mediump
;
189 Precision default_int_precision
= Highp
;
193 void remap_pixel_local_storage(std::vector
<PlsRemap
> inputs
, std::vector
<PlsRemap
> outputs
)
195 pls_inputs
= std::move(inputs
);
196 pls_outputs
= std::move(outputs
);
197 remap_pls_variables();
200 // Redirect a subpassInput reading from input_attachment_index to instead load its value from
201 // the color attachment at location = color_location. Requires ESSL.
202 // If coherent, uses GL_EXT_shader_framebuffer_fetch, if not, uses noncoherent variant.
203 void remap_ext_framebuffer_fetch(uint32_t input_attachment_index
, uint32_t color_location
, bool coherent
);
205 explicit CompilerGLSL(std::vector
<uint32_t> spirv_
)
206 : Compiler(std::move(spirv_
))
211 CompilerGLSL(const uint32_t *ir_
, size_t word_count
)
212 : Compiler(ir_
, word_count
)
217 explicit CompilerGLSL(const ParsedIR
&ir_
)
223 explicit CompilerGLSL(ParsedIR
&&ir_
)
224 : Compiler(std::move(ir_
))
229 const Options
&get_common_options() const
234 void set_common_options(const Options
&opts
)
239 std::string
compile() override
;
241 // Returns the current string held in the conversion buffer. Useful for
242 // capturing what has been converted so far when compile() throws an error.
243 std::string
get_partial_source();
245 // Adds a line to be added right after #version in GLSL backend.
246 // This is useful for enabling custom extensions which are outside the scope of SPIRV-Cross.
247 // This can be combined with variable remapping.
248 // A new-line will be added.
250 // While add_header_line() is a more generic way of adding arbitrary text to the header
251 // of a GLSL file, require_extension() should be used when adding extensions since it will
252 // avoid creating collisions with SPIRV-Cross generated extensions.
254 // Code added via add_header_line() is typically backend-specific.
255 void add_header_line(const std::string
&str
);
257 // Adds an extension which is required to run this shader, e.g.
258 // require_extension("GL_KHR_my_extension");
259 void require_extension(const std::string
&ext
);
261 // Legacy GLSL compatibility method.
262 // Takes a uniform or push constant variable and flattens it into a (i|u)vec4 array[N]; array instead.
263 // For this to work, all types in the block must be the same basic type, e.g. mixing vec2 and vec4 is fine, but
264 // mixing int and float is not.
265 // The name of the uniform array will be the same as the interface block name.
266 void flatten_buffer_block(VariableID id
);
268 // After compilation, query if a variable ID was used as a depth resource.
269 // This is meaningful for MSL since descriptor types depend on this knowledge.
270 // Cases which return true:
271 // - Images which are declared with depth = 1 image type.
272 // - Samplers which are statically used at least once with Dref opcodes.
273 // - Images which are statically used at least once with Dref opcodes.
274 bool variable_is_depth_or_compare(VariableID id
) const;
276 // If a shader output is active in this stage, but inactive in a subsequent stage,
277 // this can be signalled here. This can be used to work around certain cross-stage matching problems
278 // which plagues MSL and HLSL in certain scenarios.
279 // An output which matches one of these will not be emitted in stage output interfaces, but rather treated as a private
281 // This option is only meaningful for MSL and HLSL, since GLSL matches by location directly.
282 // Masking builtins only takes effect if the builtin in question is part of the stage output interface.
283 void mask_stage_output_by_location(uint32_t location
, uint32_t component
);
284 void mask_stage_output_by_builtin(spv::BuiltIn builtin
);
287 struct ShaderSubgroupSupportHelper
289 // lower enum value = greater priority
292 KHR_shader_subgroup_ballot
,
293 KHR_shader_subgroup_basic
,
294 KHR_shader_subgroup_vote
,
296 NV_shader_thread_group
,
297 NV_shader_thread_shuffle
,
299 ARB_shader_group_vote
,
305 static const char *get_extension_name(Candidate c
);
306 static SmallVector
<std::string
> get_extra_required_extension_names(Candidate c
);
307 static const char *get_extra_required_extension_predicate(Candidate c
);
313 SubgroupInvocationID
= 2,
316 SubgroupBroadcast_First
= 5,
317 SubgroupBallotFindLSB_MSB
= 6,
318 SubgroupAll_Any_AllEqualBool
= 7,
319 SubgroupAllEqualT
= 8,
321 SubgroupBarrier
= 10,
322 SubgroupMemBarrier
= 11,
324 SubgroupInverseBallot_InclBitCount_ExclBitCout
= 13,
325 SubgroupBallotBitExtract
= 14,
326 SubgroupBallotBitCount
= 15,
331 using FeatureMask
= uint32_t;
332 static_assert(sizeof(FeatureMask
) * 8u >= FeatureCount
, "Mask type needs more bits.");
334 using CandidateVector
= SmallVector
<Candidate
, CandidateCount
>;
335 using FeatureVector
= SmallVector
<Feature
>;
337 static FeatureVector
get_feature_dependencies(Feature feature
);
338 static FeatureMask
get_feature_dependency_mask(Feature feature
);
339 static bool can_feature_be_implemented_without_extensions(Feature feature
);
340 static Candidate
get_KHR_extension_for_feature(Feature feature
);
345 uint32_t weights
[CandidateCount
];
348 void request_feature(Feature feature
);
349 bool is_feature_requested(Feature feature
) const;
350 Result
resolve() const;
352 static CandidateVector
get_candidates_for_feature(Feature ft
, const Result
&r
);
355 static CandidateVector
get_candidates_for_feature(Feature ft
);
356 static FeatureMask
build_mask(const SmallVector
<Feature
> &features
);
357 FeatureMask feature_mask
= 0;
360 // TODO remove this function when all subgroup ops are supported (or make it always return true)
361 static bool is_supported_subgroup_op_in_opengl(spv::Op op
);
363 void reset(uint32_t iteration_count
);
364 void emit_function(SPIRFunction
&func
, const Bitset
&return_flags
);
366 bool has_extension(const std::string
&ext
) const;
367 void require_extension_internal(const std::string
&ext
);
369 // Virtualize methods which need to be overridden by subclass targets like C++ and such.
370 virtual void emit_function_prototype(SPIRFunction
&func
, const Bitset
&return_flags
);
372 SPIRBlock
*current_emitting_block
= nullptr;
373 SmallVector
<SPIRBlock
*> current_emitting_switch_stack
;
374 bool current_emitting_switch_fallthrough
= false;
376 virtual void emit_instruction(const Instruction
&instr
);
382 TemporaryCopy
handle_instruction_precision(const Instruction
&instr
);
383 void emit_block_instructions(SPIRBlock
&block
);
385 // For relax_nan_checks.
386 GLSLstd450
get_remapped_glsl_op(GLSLstd450 std450_op
) const;
387 spv::Op
get_remapped_spirv_op(spv::Op op
) const;
389 virtual void emit_glsl_op(uint32_t result_type
, uint32_t result_id
, uint32_t op
, const uint32_t *args
,
391 virtual void emit_spv_amd_shader_ballot_op(uint32_t result_type
, uint32_t result_id
, uint32_t op
,
392 const uint32_t *args
, uint32_t count
);
393 virtual void emit_spv_amd_shader_explicit_vertex_parameter_op(uint32_t result_type
, uint32_t result_id
, uint32_t op
,
394 const uint32_t *args
, uint32_t count
);
395 virtual void emit_spv_amd_shader_trinary_minmax_op(uint32_t result_type
, uint32_t result_id
, uint32_t op
,
396 const uint32_t *args
, uint32_t count
);
397 virtual void emit_spv_amd_gcn_shader_op(uint32_t result_type
, uint32_t result_id
, uint32_t op
, const uint32_t *args
,
399 virtual void emit_header();
400 void emit_line_directive(uint32_t file_id
, uint32_t line_literal
);
401 void build_workgroup_size(SmallVector
<std::string
> &arguments
, const SpecializationConstant
&x
,
402 const SpecializationConstant
&y
, const SpecializationConstant
&z
);
404 void request_subgroup_feature(ShaderSubgroupSupportHelper::Feature feature
);
406 virtual void emit_sampled_image_op(uint32_t result_type
, uint32_t result_id
, uint32_t image_id
, uint32_t samp_id
);
407 virtual void emit_texture_op(const Instruction
&i
, bool sparse
);
408 virtual std::string
to_texture_op(const Instruction
&i
, bool sparse
, bool *forward
,
409 SmallVector
<uint32_t> &inherited_expressions
);
410 virtual void emit_subgroup_op(const Instruction
&i
);
411 virtual std::string
type_to_glsl(const SPIRType
&type
, uint32_t id
= 0);
412 virtual std::string
builtin_to_glsl(spv::BuiltIn builtin
, spv::StorageClass storage
);
413 virtual void emit_struct_member(const SPIRType
&type
, uint32_t member_type_id
, uint32_t index
,
414 const std::string
&qualifier
= "", uint32_t base_offset
= 0);
415 virtual void emit_struct_padding_target(const SPIRType
&type
);
416 virtual std::string
image_type_glsl(const SPIRType
&type
, uint32_t id
= 0);
417 std::string
constant_expression(const SPIRConstant
&c
, bool inside_block_like_struct_scope
= false);
418 virtual std::string
constant_op_expression(const SPIRConstantOp
&cop
);
419 virtual std::string
constant_expression_vector(const SPIRConstant
&c
, uint32_t vector
);
420 virtual void emit_fixup();
421 virtual std::string
variable_decl(const SPIRType
&type
, const std::string
&name
, uint32_t id
= 0);
422 virtual bool variable_decl_is_remapped_storage(const SPIRVariable
&var
, spv::StorageClass storage
) const;
423 virtual std::string
to_func_call_arg(const SPIRFunction::Parameter
&arg
, uint32_t id
);
425 struct TextureFunctionBaseArguments
427 // GCC 4.8 workarounds, it doesn't understand '{}' constructor here, use explicit default constructor.
428 TextureFunctionBaseArguments() = default;
430 const SPIRType
*imgtype
= nullptr;
431 bool is_fetch
= false, is_gather
= false, is_proj
= false;
434 struct TextureFunctionNameArguments
436 // GCC 4.8 workarounds, it doesn't understand '{}' constructor here, use explicit default constructor.
437 TextureFunctionNameArguments() = default;
438 TextureFunctionBaseArguments base
;
439 bool has_array_offsets
= false, has_offset
= false, has_grad
= false;
440 bool has_dref
= false, is_sparse_feedback
= false, has_min_lod
= false;
443 virtual std::string
to_function_name(const TextureFunctionNameArguments
&args
);
445 struct TextureFunctionArguments
447 // GCC 4.8 workarounds, it doesn't understand '{}' constructor here, use explicit default constructor.
448 TextureFunctionArguments() = default;
449 TextureFunctionBaseArguments base
;
450 uint32_t coord
= 0, coord_components
= 0, dref
= 0;
451 uint32_t grad_x
= 0, grad_y
= 0, lod
= 0, offset
= 0;
452 uint32_t bias
= 0, component
= 0, sample
= 0, sparse_texel
= 0, min_lod
= 0;
453 bool nonuniform_expression
= false;
455 virtual std::string
to_function_args(const TextureFunctionArguments
&args
, bool *p_forward
);
457 void emit_sparse_feedback_temporaries(uint32_t result_type_id
, uint32_t id
, uint32_t &feedback_id
,
459 uint32_t get_sparse_feedback_texel_id(uint32_t id
) const;
460 virtual void emit_buffer_block(const SPIRVariable
&type
);
461 virtual void emit_push_constant_block(const SPIRVariable
&var
);
462 virtual void emit_uniform(const SPIRVariable
&var
);
463 virtual std::string
unpack_expression_type(std::string expr_str
, const SPIRType
&type
, uint32_t physical_type_id
,
464 bool packed_type
, bool row_major
);
466 virtual bool builtin_translates_to_nonarray(spv::BuiltIn builtin
) const;
468 void emit_copy_logical_type(uint32_t lhs_id
, uint32_t lhs_type_id
, uint32_t rhs_id
, uint32_t rhs_type_id
,
469 SmallVector
<uint32_t> chain
);
471 StringStream
<> buffer
;
473 template <typename T
>
474 inline void statement_inner(T
&&t
)
476 buffer
<< std::forward
<T
>(t
);
480 template <typename T
, typename
... Ts
>
481 inline void statement_inner(T
&&t
, Ts
&&... ts
)
483 buffer
<< std::forward
<T
>(t
);
485 statement_inner(std::forward
<Ts
>(ts
)...);
488 template <typename
... Ts
>
489 inline void statement(Ts
&&... ts
)
491 if (is_forcing_recompilation())
493 // Do not bother emitting code while force_recompile is active.
494 // We will compile again.
499 if (redirect_statement
)
501 redirect_statement
->push_back(join(std::forward
<Ts
>(ts
)...));
506 for (uint32_t i
= 0; i
< indent
; i
++)
508 statement_inner(std::forward
<Ts
>(ts
)...);
513 template <typename
... Ts
>
514 inline void statement_no_indent(Ts
&&... ts
)
516 auto old_indent
= indent
;
518 statement(std::forward
<Ts
>(ts
)...);
522 // Used for implementing continue blocks where
523 // we want to obtain a list of statements we can merge
524 // on a single line separated by comma.
525 SmallVector
<std::string
> *redirect_statement
= nullptr;
526 const SPIRBlock
*current_continue_block
= nullptr;
527 bool block_temporary_hoisting
= false;
531 void end_scope(const std::string
&trailer
);
532 void end_scope_decl();
533 void end_scope_decl(const std::string
&decl
);
537 virtual std::string
type_to_array_glsl(
538 const SPIRType
&type
); // Allow Metal to use the array<T> template to make arrays a value type
539 std::string
to_array_size(const SPIRType
&type
, uint32_t index
);
540 uint32_t to_array_size_literal(const SPIRType
&type
, uint32_t index
) const;
541 uint32_t to_array_size_literal(const SPIRType
&type
) const;
542 virtual std::string
variable_decl(const SPIRVariable
&variable
); // Threadgroup arrays can't have a wrapper type
543 std::string
variable_decl_function_local(SPIRVariable
&variable
);
545 void add_local_variable_name(uint32_t id
);
546 void add_resource_name(uint32_t id
);
547 void add_member_name(SPIRType
&type
, uint32_t name
);
548 void add_function_overload(const SPIRFunction
&func
);
550 virtual bool is_non_native_row_major_matrix(uint32_t id
);
551 virtual bool member_is_non_native_row_major_matrix(const SPIRType
&type
, uint32_t index
);
552 bool member_is_remapped_physical_type(const SPIRType
&type
, uint32_t index
) const;
553 bool member_is_packed_physical_type(const SPIRType
&type
, uint32_t index
) const;
554 virtual std::string
convert_row_major_matrix(std::string exp_str
, const SPIRType
&exp_type
,
555 uint32_t physical_type_id
, bool is_packed
);
557 std::unordered_set
<std::string
> local_variable_names
;
558 std::unordered_set
<std::string
> resource_names
;
559 std::unordered_set
<std::string
> block_input_names
;
560 std::unordered_set
<std::string
> block_output_names
;
561 std::unordered_set
<std::string
> block_ubo_names
;
562 std::unordered_set
<std::string
> block_ssbo_names
;
563 std::unordered_set
<std::string
> block_names
; // A union of all block_*_names.
564 std::unordered_map
<std::string
, std::unordered_set
<uint64_t>> function_overloads
;
565 std::unordered_map
<uint32_t, std::string
> preserved_aliases
;
566 void preserve_alias_on_reset(uint32_t id
);
567 void reset_name_caches();
569 bool processing_entry_point
= false;
571 // Can be overriden by subclass backends for trivial things which
572 // shouldn't need polymorphism.
573 struct BackendVariations
575 std::string discard_literal
= "discard";
576 std::string demote_literal
= "demote";
577 std::string null_pointer_literal
= "";
578 bool float_literal_suffix
= false;
579 bool double_literal_suffix
= true;
580 bool uint32_t_literal_suffix
= true;
581 bool long_long_literal_suffix
= false;
582 const char *basic_int_type
= "int";
583 const char *basic_uint_type
= "uint";
584 const char *basic_int8_type
= "int8_t";
585 const char *basic_uint8_type
= "uint8_t";
586 const char *basic_int16_type
= "int16_t";
587 const char *basic_uint16_type
= "uint16_t";
588 const char *int16_t_literal_suffix
= "s";
589 const char *uint16_t_literal_suffix
= "us";
590 const char *nonuniform_qualifier
= "nonuniformEXT";
591 const char *boolean_mix_function
= "mix";
592 bool swizzle_is_function
= false;
593 bool shared_is_implied
= false;
594 bool unsized_array_supported
= true;
595 bool explicit_struct_type
= false;
596 bool use_initializer_list
= false;
597 bool use_typed_initializer_list
= false;
598 bool can_declare_struct_inline
= true;
599 bool can_declare_arrays_inline
= true;
600 bool native_row_major_matrix
= true;
601 bool use_constructor_splatting
= true;
602 bool allow_precision_qualifiers
= false;
603 bool can_swizzle_scalar
= false;
604 bool force_gl_in_out_block
= false;
605 bool force_merged_mesh_block
= false;
606 bool can_return_array
= true;
607 bool allow_truncated_access_chain
= false;
608 bool supports_extensions
= false;
609 bool supports_empty_struct
= false;
610 bool array_is_value_type
= true;
611 bool array_is_value_type_in_buffer_blocks
= true;
612 bool comparison_image_samples_scalar
= false;
613 bool native_pointers
= false;
614 bool support_small_type_sampling_result
= false;
615 bool support_case_fallthrough
= true;
616 bool use_array_constructor
= false;
617 bool needs_row_major_load_workaround
= false;
618 bool support_pointer_to_pointer
= false;
619 bool support_precise_qualifier
= false;
620 bool support_64bit_switch
= false;
621 bool workgroup_size_is_hidden
= false;
622 bool requires_relaxed_precision_analysis
= false;
623 bool implicit_c_integer_promotion_rules
= false;
626 void emit_struct(SPIRType
&type
);
627 void emit_resources();
628 void emit_extension_workarounds(spv::ExecutionModel model
);
629 void emit_buffer_block_native(const SPIRVariable
&var
);
630 void emit_buffer_reference_block(uint32_t type_id
, bool forward_declaration
);
631 void emit_buffer_block_legacy(const SPIRVariable
&var
);
632 void emit_buffer_block_flattened(const SPIRVariable
&type
);
633 void fixup_implicit_builtin_block_names(spv::ExecutionModel model
);
634 void emit_declared_builtin_block(spv::StorageClass storage
, spv::ExecutionModel model
);
635 bool should_force_emit_builtin_block(spv::StorageClass storage
);
636 void emit_push_constant_block_vulkan(const SPIRVariable
&var
);
637 void emit_push_constant_block_glsl(const SPIRVariable
&var
);
638 void emit_interface_block(const SPIRVariable
&type
);
639 void emit_flattened_io_block(const SPIRVariable
&var
, const char *qual
);
640 void emit_flattened_io_block_struct(const std::string
&basename
, const SPIRType
&type
, const char *qual
,
641 const SmallVector
<uint32_t> &indices
);
642 void emit_flattened_io_block_member(const std::string
&basename
, const SPIRType
&type
, const char *qual
,
643 const SmallVector
<uint32_t> &indices
);
644 void emit_block_chain(SPIRBlock
&block
);
645 void emit_hoisted_temporaries(SmallVector
<std::pair
<TypeID
, ID
>> &temporaries
);
646 std::string
constant_value_macro_name(uint32_t id
);
647 int get_constant_mapping_to_workgroup_component(const SPIRConstant
&constant
) const;
648 void emit_constant(const SPIRConstant
&constant
);
649 void emit_specialization_constant_op(const SPIRConstantOp
&constant
);
650 std::string
emit_continue_block(uint32_t continue_block
, bool follow_true_block
, bool follow_false_block
);
651 bool attempt_emit_loop_header(SPIRBlock
&block
, SPIRBlock::Method method
);
653 void branch(BlockID from
, BlockID to
);
654 void branch_to_continue(BlockID from
, BlockID to
);
655 void branch(BlockID from
, uint32_t cond
, BlockID true_block
, BlockID false_block
);
656 void flush_phi(BlockID from
, BlockID to
);
657 void flush_variable_declaration(uint32_t id
);
658 void flush_undeclared_variables(SPIRBlock
&block
);
659 void emit_variable_temporary_copies(const SPIRVariable
&var
);
661 bool should_dereference(uint32_t id
);
662 bool should_forward(uint32_t id
) const;
663 bool should_suppress_usage_tracking(uint32_t id
) const;
664 void emit_mix_op(uint32_t result_type
, uint32_t id
, uint32_t left
, uint32_t right
, uint32_t lerp
);
665 void emit_nminmax_op(uint32_t result_type
, uint32_t id
, uint32_t op0
, uint32_t op1
, GLSLstd450 op
);
666 bool to_trivial_mix_op(const SPIRType
&type
, std::string
&op
, uint32_t left
, uint32_t right
, uint32_t lerp
);
667 void emit_quaternary_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, uint32_t op2
,
668 uint32_t op3
, const char *op
);
669 void emit_trinary_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, uint32_t op2
,
671 void emit_binary_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
);
672 void emit_atomic_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
);
673 void emit_atomic_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, uint32_t op2
, const char *op
);
675 void emit_unary_func_op_cast(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, const char *op
,
676 SPIRType::BaseType input_type
, SPIRType::BaseType expected_result_type
);
677 void emit_binary_func_op_cast(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
,
678 SPIRType::BaseType input_type
, bool skip_cast_if_equal_type
);
679 void emit_binary_func_op_cast_clustered(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
,
680 const char *op
, SPIRType::BaseType input_type
);
681 void emit_trinary_func_op_cast(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, uint32_t op2
,
682 const char *op
, SPIRType::BaseType input_type
);
683 void emit_trinary_func_op_bitextract(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
,
684 uint32_t op2
, const char *op
, SPIRType::BaseType expected_result_type
,
685 SPIRType::BaseType input_type0
, SPIRType::BaseType input_type1
,
686 SPIRType::BaseType input_type2
);
687 void emit_bitfield_insert_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, uint32_t op2
,
688 uint32_t op3
, const char *op
, SPIRType::BaseType offset_count_type
);
690 void emit_unary_func_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, const char *op
);
691 void emit_unrolled_unary_op(uint32_t result_type
, uint32_t result_id
, uint32_t operand
, const char *op
);
692 void emit_binary_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
);
693 void emit_unrolled_binary_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
,
694 bool negate
, SPIRType::BaseType expected_type
);
695 void emit_binary_op_cast(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, uint32_t op1
, const char *op
,
696 SPIRType::BaseType input_type
, bool skip_cast_if_equal_type
, bool implicit_integer_promotion
);
698 SPIRType
binary_op_bitcast_helper(std::string
&cast_op0
, std::string
&cast_op1
, SPIRType::BaseType
&input_type
,
699 uint32_t op0
, uint32_t op1
, bool skip_cast_if_equal_type
);
701 virtual bool emit_complex_bitcast(uint32_t result_type
, uint32_t id
, uint32_t op0
);
703 std::string
to_ternary_expression(const SPIRType
&result_type
, uint32_t select
, uint32_t true_value
,
704 uint32_t false_value
);
706 void emit_unary_op(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, const char *op
);
707 void emit_unary_op_cast(uint32_t result_type
, uint32_t result_id
, uint32_t op0
, const char *op
);
708 bool expression_is_forwarded(uint32_t id
) const;
709 bool expression_suppresses_usage_tracking(uint32_t id
) const;
710 bool expression_read_implies_multiple_reads(uint32_t id
) const;
711 SPIRExpression
&emit_op(uint32_t result_type
, uint32_t result_id
, const std::string
&rhs
, bool forward_rhs
,
712 bool suppress_usage_tracking
= false);
714 void access_chain_internal_append_index(std::string
&expr
, uint32_t base
, const SPIRType
*type
,
715 AccessChainFlags flags
, bool &access_chain_is_arrayed
, uint32_t index
);
717 std::string
access_chain_internal(uint32_t base
, const uint32_t *indices
, uint32_t count
, AccessChainFlags flags
,
718 AccessChainMeta
*meta
);
720 spv::StorageClass
get_expression_effective_storage_class(uint32_t ptr
);
721 virtual bool access_chain_needs_stage_io_builtin_translation(uint32_t base
);
723 virtual void check_physical_type_cast(std::string
&expr
, const SPIRType
*type
, uint32_t physical_type
);
724 virtual void prepare_access_chain_for_scalar_access(std::string
&expr
, const SPIRType
&type
,
725 spv::StorageClass storage
, bool &is_packed
);
727 std::string
access_chain(uint32_t base
, const uint32_t *indices
, uint32_t count
, const SPIRType
&target_type
,
728 AccessChainMeta
*meta
= nullptr, bool ptr_chain
= false);
730 std::string
flattened_access_chain(uint32_t base
, const uint32_t *indices
, uint32_t count
,
731 const SPIRType
&target_type
, uint32_t offset
, uint32_t matrix_stride
,
732 uint32_t array_stride
, bool need_transpose
);
733 std::string
flattened_access_chain_struct(uint32_t base
, const uint32_t *indices
, uint32_t count
,
734 const SPIRType
&target_type
, uint32_t offset
);
735 std::string
flattened_access_chain_matrix(uint32_t base
, const uint32_t *indices
, uint32_t count
,
736 const SPIRType
&target_type
, uint32_t offset
, uint32_t matrix_stride
,
737 bool need_transpose
);
738 std::string
flattened_access_chain_vector(uint32_t base
, const uint32_t *indices
, uint32_t count
,
739 const SPIRType
&target_type
, uint32_t offset
, uint32_t matrix_stride
,
740 bool need_transpose
);
741 std::pair
<std::string
, uint32_t> flattened_access_chain_offset(const SPIRType
&basetype
, const uint32_t *indices
,
742 uint32_t count
, uint32_t offset
,
743 uint32_t word_stride
, bool *need_transpose
= nullptr,
744 uint32_t *matrix_stride
= nullptr,
745 uint32_t *array_stride
= nullptr,
746 bool ptr_chain
= false);
748 const char *index_to_swizzle(uint32_t index
);
749 std::string
remap_swizzle(const SPIRType
&result_type
, uint32_t input_components
, const std::string
&expr
);
750 std::string
declare_temporary(uint32_t type
, uint32_t id
);
751 void emit_uninitialized_temporary(uint32_t type
, uint32_t id
);
752 SPIRExpression
&emit_uninitialized_temporary_expression(uint32_t type
, uint32_t id
);
753 void append_global_func_args(const SPIRFunction
&func
, uint32_t index
, SmallVector
<std::string
> &arglist
);
754 std::string
to_non_uniform_aware_expression(uint32_t id
);
755 std::string
to_expression(uint32_t id
, bool register_expression_read
= true);
756 std::string
to_composite_constructor_expression(uint32_t id
, bool block_like_type
);
757 std::string
to_rerolled_array_expression(const std::string
&expr
, const SPIRType
&type
);
758 std::string
to_enclosed_expression(uint32_t id
, bool register_expression_read
= true);
759 std::string
to_unpacked_expression(uint32_t id
, bool register_expression_read
= true);
760 std::string
to_unpacked_row_major_matrix_expression(uint32_t id
);
761 std::string
to_enclosed_unpacked_expression(uint32_t id
, bool register_expression_read
= true);
762 std::string
to_dereferenced_expression(uint32_t id
, bool register_expression_read
= true);
763 std::string
to_pointer_expression(uint32_t id
, bool register_expression_read
= true);
764 std::string
to_enclosed_pointer_expression(uint32_t id
, bool register_expression_read
= true);
765 std::string
to_extract_component_expression(uint32_t id
, uint32_t index
);
766 std::string
to_extract_constant_composite_expression(uint32_t result_type
, const SPIRConstant
&c
,
767 const uint32_t *chain
, uint32_t length
);
768 std::string
enclose_expression(const std::string
&expr
);
769 std::string
dereference_expression(const SPIRType
&expression_type
, const std::string
&expr
);
770 std::string
address_of_expression(const std::string
&expr
);
771 void strip_enclosed_expression(std::string
&expr
);
772 std::string
to_member_name(const SPIRType
&type
, uint32_t index
);
773 virtual std::string
to_member_reference(uint32_t base
, const SPIRType
&type
, uint32_t index
, bool ptr_chain_is_resolved
);
774 std::string
to_multi_member_reference(const SPIRType
&type
, const SmallVector
<uint32_t> &indices
);
775 std::string
type_to_glsl_constructor(const SPIRType
&type
);
776 std::string
argument_decl(const SPIRFunction::Parameter
&arg
);
777 virtual std::string
to_qualifiers_glsl(uint32_t id
);
778 void fixup_io_block_patch_primitive_qualifiers(const SPIRVariable
&var
);
779 void emit_output_variable_initializer(const SPIRVariable
&var
);
780 std::string
to_precision_qualifiers_glsl(uint32_t id
);
781 virtual const char *to_storage_qualifiers_glsl(const SPIRVariable
&var
);
782 std::string
flags_to_qualifiers_glsl(const SPIRType
&type
, const Bitset
&flags
);
783 const char *format_to_glsl(spv::ImageFormat format
);
784 virtual std::string
layout_for_member(const SPIRType
&type
, uint32_t index
);
785 virtual std::string
to_interpolation_qualifiers(const Bitset
&flags
);
786 std::string
layout_for_variable(const SPIRVariable
&variable
);
787 std::string
to_combined_image_sampler(VariableID image_id
, VariableID samp_id
);
788 virtual bool skip_argument(uint32_t id
) const;
789 virtual void emit_array_copy(const std::string
&lhs
, uint32_t lhs_id
, uint32_t rhs_id
,
790 spv::StorageClass lhs_storage
, spv::StorageClass rhs_storage
);
791 virtual void emit_block_hints(const SPIRBlock
&block
);
792 virtual std::string
to_initializer_expression(const SPIRVariable
&var
);
793 virtual std::string
to_zero_initialized_expression(uint32_t type_id
);
794 bool type_can_zero_initialize(const SPIRType
&type
) const;
796 bool buffer_is_packing_standard(const SPIRType
&type
, BufferPackingStandard packing
,
797 uint32_t *failed_index
= nullptr, uint32_t start_offset
= 0,
798 uint32_t end_offset
= ~(0u));
799 std::string
buffer_to_packing_standard(const SPIRType
&type
, bool support_std430_without_scalar_layout
);
801 uint32_t type_to_packed_base_size(const SPIRType
&type
, BufferPackingStandard packing
);
802 uint32_t type_to_packed_alignment(const SPIRType
&type
, const Bitset
&flags
, BufferPackingStandard packing
);
803 uint32_t type_to_packed_array_stride(const SPIRType
&type
, const Bitset
&flags
, BufferPackingStandard packing
);
804 uint32_t type_to_packed_size(const SPIRType
&type
, const Bitset
&flags
, BufferPackingStandard packing
);
805 uint32_t type_to_location_count(const SPIRType
&type
) const;
807 std::string
bitcast_glsl(const SPIRType
&result_type
, uint32_t arg
);
808 virtual std::string
bitcast_glsl_op(const SPIRType
&result_type
, const SPIRType
&argument_type
);
810 std::string
bitcast_expression(SPIRType::BaseType target_type
, uint32_t arg
);
811 std::string
bitcast_expression(const SPIRType
&target_type
, SPIRType::BaseType expr_type
, const std::string
&expr
);
813 std::string
build_composite_combiner(uint32_t result_type
, const uint32_t *elems
, uint32_t length
);
814 bool remove_duplicate_swizzle(std::string
&op
);
815 bool remove_unity_swizzle(uint32_t base
, std::string
&op
);
817 // Can modify flags to remote readonly/writeonly if image type
818 // and force recompile.
819 bool check_atomic_image(uint32_t id
);
821 virtual void replace_illegal_names();
822 void replace_illegal_names(const std::unordered_set
<std::string
> &keywords
);
823 virtual void emit_entry_point_declarations();
825 void replace_fragment_output(SPIRVariable
&var
);
826 void replace_fragment_outputs();
827 std::string
legacy_tex_op(const std::string
&op
, const SPIRType
&imgtype
, uint32_t id
);
829 void forward_relaxed_precision(uint32_t dst_id
, const uint32_t *args
, uint32_t length
);
830 void analyze_precision_requirements(uint32_t type_id
, uint32_t dst_id
, uint32_t *args
, uint32_t length
);
831 Options::Precision
analyze_expression_precision(const uint32_t *args
, uint32_t length
) const;
835 std::unordered_set
<uint32_t> emitted_functions
;
837 // Ensure that we declare phi-variable copies even if the original declaration isn't deferred
838 std::unordered_set
<uint32_t> flushed_phi_variables
;
840 std::unordered_set
<uint32_t> flattened_buffer_blocks
;
841 std::unordered_map
<uint32_t, bool> flattened_structs
;
843 ShaderSubgroupSupportHelper shader_subgroup_supporter
;
845 std::string
load_flattened_struct(const std::string
&basename
, const SPIRType
&type
);
846 std::string
to_flattened_struct_member(const std::string
&basename
, const SPIRType
&type
, uint32_t index
);
847 void store_flattened_struct(uint32_t lhs_id
, uint32_t value
);
848 void store_flattened_struct(const std::string
&basename
, uint32_t rhs
, const SPIRType
&type
,
849 const SmallVector
<uint32_t> &indices
);
850 std::string
to_flattened_access_chain_expression(uint32_t id
);
852 // Usage tracking. If a temporary is used more than once, use the temporary instead to
853 // avoid AST explosion when SPIRV is generated with pure SSA and doesn't write stuff to variables.
854 std::unordered_map
<uint32_t, uint32_t> expression_usage_counts
;
855 void track_expression_read(uint32_t id
);
857 SmallVector
<std::string
> forced_extensions
;
858 SmallVector
<std::string
> header_lines
;
860 // Used when expressions emit extra opcodes with their own unique IDs,
861 // and we need to reuse the IDs across recompilation loops.
862 // Currently used by NMin/Max/Clamp implementations.
863 std::unordered_map
<uint32_t, uint32_t> extra_sub_expressions
;
865 SmallVector
<TypeID
> workaround_ubo_load_overload_types
;
866 void request_workaround_wrapper_overload(TypeID id
);
867 void rewrite_load_for_wrapped_row_major(std::string
&expr
, TypeID loaded_type
, ID ptr
);
869 uint32_t statement_count
= 0;
871 inline bool is_legacy() const
873 return (options
.es
&& options
.version
< 300) || (!options
.es
&& options
.version
< 130);
876 inline bool is_legacy_es() const
878 return options
.es
&& options
.version
< 300;
881 inline bool is_legacy_desktop() const
883 return !options
.es
&& options
.version
< 130;
886 bool requires_transpose_2x2
= false;
887 bool requires_transpose_3x3
= false;
888 bool requires_transpose_4x4
= false;
889 bool ray_tracing_is_khr
= false;
890 bool barycentric_is_nv
= false;
891 void ray_tracing_khr_fixup_locations();
893 bool args_will_forward(uint32_t id
, const uint32_t *args
, uint32_t num_args
, bool pure
);
894 void register_call_out_argument(uint32_t id
);
895 void register_impure_function_call();
896 void register_control_dependent_expression(uint32_t expr
);
898 // GL_EXT_shader_pixel_local_storage support.
899 std::vector
<PlsRemap
> pls_inputs
;
900 std::vector
<PlsRemap
> pls_outputs
;
901 std::string
pls_decl(const PlsRemap
&variable
);
902 const char *to_pls_qualifiers_glsl(const SPIRVariable
&variable
);
904 void remap_pls_variables();
906 // GL_EXT_shader_framebuffer_fetch support.
907 std::vector
<std::pair
<uint32_t, uint32_t>> subpass_to_framebuffer_fetch_attachment
;
908 std::vector
<std::pair
<uint32_t, bool>> inout_color_attachments
;
909 bool location_is_framebuffer_fetch(uint32_t location
) const;
910 bool location_is_non_coherent_framebuffer_fetch(uint32_t location
) const;
911 bool subpass_input_is_framebuffer_fetch(uint32_t id
) const;
912 void emit_inout_fragment_outputs_copy_to_subpass_inputs();
913 const SPIRVariable
*find_subpass_input_by_attachment_index(uint32_t index
) const;
914 const SPIRVariable
*find_color_output_by_location(uint32_t location
) const;
916 // A variant which takes two sets of name. The secondary is only used to verify there are no collisions,
917 // but the set is not updated when we have found a new name.
918 // Used primarily when adding block interface names.
919 void add_variable(std::unordered_set
<std::string
> &variables_primary
,
920 const std::unordered_set
<std::string
> &variables_secondary
, std::string
&name
);
922 void check_function_call_constraints(const uint32_t *args
, uint32_t length
);
923 void handle_invalid_expression(uint32_t id
);
924 void force_temporary_and_recompile(uint32_t id
);
925 void find_static_extensions();
927 uint32_t consume_temporary_in_precision_context(uint32_t type_id
, uint32_t id
, Options::Precision precision
);
928 std::unordered_map
<uint32_t, uint32_t> temporary_to_mirror_precision_alias
;
929 std::unordered_set
<uint32_t> composite_insert_overwritten
;
930 std::unordered_set
<uint32_t> block_composite_insert_overwrite
;
932 std::string
emit_for_loop_initializers(const SPIRBlock
&block
);
933 void emit_while_loop_initializers(const SPIRBlock
&block
);
934 bool for_loop_initializers_are_same_type(const SPIRBlock
&block
);
935 bool optimize_read_modify_write(const SPIRType
&type
, const std::string
&lhs
, const std::string
&rhs
);
936 void fixup_image_load_store_access();
938 bool type_is_empty(const SPIRType
&type
);
940 bool can_use_io_location(spv::StorageClass storage
, bool block
);
941 const Instruction
*get_next_instruction_in_block(const Instruction
&instr
);
942 static uint32_t mask_relevant_memory_semantics(uint32_t semantics
);
944 std::string
convert_half_to_string(const SPIRConstant
&value
, uint32_t col
, uint32_t row
);
945 std::string
convert_float_to_string(const SPIRConstant
&value
, uint32_t col
, uint32_t row
);
946 std::string
convert_double_to_string(const SPIRConstant
&value
, uint32_t col
, uint32_t row
);
948 std::string
convert_separate_image_to_expression(uint32_t id
);
950 // Builtins in GLSL are always specific signedness, but the SPIR-V can declare them
951 // as either unsigned or signed.
952 // Sometimes we will need to automatically perform casts on load and store to make this work.
953 virtual void cast_to_variable_store(uint32_t target_id
, std::string
&expr
, const SPIRType
&expr_type
);
954 virtual void cast_from_variable_load(uint32_t source_id
, std::string
&expr
, const SPIRType
&expr_type
);
955 void unroll_array_from_complex_load(uint32_t target_id
, uint32_t source_id
, std::string
&expr
);
956 bool unroll_array_to_complex_store(uint32_t target_id
, uint32_t source_id
);
957 void convert_non_uniform_expression(std::string
&expr
, uint32_t ptr_id
);
959 void handle_store_to_invariant_variable(uint32_t store_id
, uint32_t value_id
);
960 void disallow_forwarding_in_expression_chain(const SPIRExpression
&expr
);
962 bool expression_is_constant_null(uint32_t id
) const;
963 bool expression_is_non_value_type_array(uint32_t ptr
);
964 virtual void emit_store_statement(uint32_t lhs_expression
, uint32_t rhs_expression
);
966 uint32_t get_integer_width_for_instruction(const Instruction
&instr
) const;
967 uint32_t get_integer_width_for_glsl_instruction(GLSLstd450 op
, const uint32_t *arguments
, uint32_t length
) const;
969 bool variable_is_lut(const SPIRVariable
&var
) const;
971 char current_locale_radix_character
= '.';
973 void fixup_type_alias();
974 void reorder_type_alias();
975 void fixup_anonymous_struct_names();
976 void fixup_anonymous_struct_names(std::unordered_set
<uint32_t> &visited
, const SPIRType
&type
);
978 static const char *vector_swizzle(int vecsize
, int index
);
980 bool is_stage_output_location_masked(uint32_t location
, uint32_t component
) const;
981 bool is_stage_output_builtin_masked(spv::BuiltIn builtin
) const;
982 bool is_stage_output_variable_masked(const SPIRVariable
&var
) const;
983 bool is_stage_output_block_member_masked(const SPIRVariable
&var
, uint32_t index
, bool strip_array
) const;
984 bool is_per_primitive_variable(const SPIRVariable
&var
) const;
985 uint32_t get_accumulated_member_location(const SPIRVariable
&var
, uint32_t mbr_idx
, bool strip_array
) const;
986 uint32_t get_declared_member_location(const SPIRVariable
&var
, uint32_t mbr_idx
, bool strip_array
) const;
987 std::unordered_set
<LocationComponentPair
, InternalHasher
> masked_output_locations
;
988 std::unordered_set
<uint32_t> masked_output_builtins
;
993 SmallVector
<ConstantID
> get_composite_constant_ids(ConstantID const_id
);
994 void fill_composite_constant(SPIRConstant
&constant
, TypeID type_id
, const SmallVector
<ConstantID
> &initializers
);
995 void set_composite_constant(ConstantID const_id
, TypeID type_id
, const SmallVector
<ConstantID
> &initializers
);
996 TypeID
get_composite_member_type(TypeID type_id
, uint32_t member_idx
);
997 std::unordered_map
<uint32_t, SmallVector
<ConstantID
>> const_composite_insert_ids
;
999 } // namespace SPIRV_CROSS_NAMESPACE