Implement SPV_KHR_subgroup_vote
doc.cpp: Add capabilities, scope to the opcodes. Add opcode and capability strings. GLSL.ext.KHR.h: Add extension string. GlslangToSpv.cpp: Fix handling of opcodes to generate appropriate SPIR-V. spirv.hpp: Add capability and opcode enums. spv.shaderGroupVote.comp.out: Update SPIR-V output for test shader.
This commit is contained in:
@@ -3,10 +3,11 @@ Warning, version 450 is not yet complete; most version-specific features are pre
|
||||
|
||||
// Module Version 10000
|
||||
// Generated by (magic number): 80001
|
||||
// Id's are bound by 37
|
||||
// Id's are bound by 33
|
||||
|
||||
Capability Shader
|
||||
Capability Groups
|
||||
Capability SubgroupVoteKHR
|
||||
Extension "SPV_KHR_subgroup_vote"
|
||||
1: ExtInstImport "GLSL.std.450"
|
||||
MemoryModel Logical GLSL450
|
||||
EntryPoint GLCompute 4 "main"
|
||||
@@ -22,7 +23,7 @@ Warning, version 450 is not yet complete; most version-specific features are pre
|
||||
Decorate 10(Buffers) BufferBlock
|
||||
Decorate 12 DescriptorSet 0
|
||||
Decorate 12 Binding 0
|
||||
Decorate 36 BuiltIn WorkgroupSize
|
||||
Decorate 32 BuiltIn WorkgroupSize
|
||||
2: TypeVoid
|
||||
3: TypeFunction 2
|
||||
6: TypeBool
|
||||
@@ -35,11 +36,10 @@ Warning, version 450 is not yet complete; most version-specific features are pre
|
||||
14: 13(int) Constant 0
|
||||
15: TypePointer Uniform 9(int)
|
||||
18: 9(int) Constant 0
|
||||
21: 9(int) Constant 3
|
||||
31: 9(int) Constant 1
|
||||
34: TypeVector 9(int) 3
|
||||
35: 9(int) Constant 4
|
||||
36: 34(ivec3) ConstantComposite 35 35 31
|
||||
27: 9(int) Constant 1
|
||||
30: TypeVector 9(int) 3
|
||||
31: 9(int) Constant 4
|
||||
32: 30(ivec3) ConstantComposite 31 31 27
|
||||
4(main): 2 Function None 3
|
||||
5: Label
|
||||
8(b1): 7(ptr) Variable Function
|
||||
@@ -48,20 +48,17 @@ Warning, version 450 is not yet complete; most version-specific features are pre
|
||||
19: 6(bool) INotEqual 17 18
|
||||
Store 8(b1) 19
|
||||
20: 6(bool) Load 8(b1)
|
||||
22: 6(bool) GroupAny 21 20
|
||||
Store 8(b1) 22
|
||||
23: 6(bool) Load 8(b1)
|
||||
24: 6(bool) GroupAll 21 23
|
||||
Store 8(b1) 24
|
||||
25: 6(bool) Load 8(b1)
|
||||
26: 6(bool) GroupAll 21 25
|
||||
27: 6(bool) GroupAny 21 25
|
||||
28: 6(bool) LogicalNot 27
|
||||
29: 6(bool) LogicalOr 26 28
|
||||
Store 8(b1) 29
|
||||
30: 6(bool) Load 8(b1)
|
||||
32: 9(int) Select 30 31 18
|
||||
33: 15(ptr) AccessChain 12 14
|
||||
Store 33 32
|
||||
21: 6(bool) SubgroupAllKHR 20
|
||||
Store 8(b1) 21
|
||||
22: 6(bool) Load 8(b1)
|
||||
23: 6(bool) SubgroupAnyKHR 22
|
||||
Store 8(b1) 23
|
||||
24: 6(bool) Load 8(b1)
|
||||
25: 6(bool) SubgroupAllEqualKHR 24
|
||||
Store 8(b1) 25
|
||||
26: 6(bool) Load 8(b1)
|
||||
28: 9(int) Select 26 27 18
|
||||
29: 15(ptr) AccessChain 12 14
|
||||
Store 29 28
|
||||
Return
|
||||
FunctionEnd
|
||||
|
||||
Reference in New Issue
Block a user