Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/spirv/unified1/OpenCLDebugInfo100.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ enum OpenCLDebugInfo100Instructions {
OpenCLDebugInfo100DebugMacroUndef = 33,
OpenCLDebugInfo100DebugImportedEntity = 34,
OpenCLDebugInfo100DebugSource = 35,
OpenCLDebugInfo100DebugModuleINTEL = 36,
OpenCLDebugInfo100InstructionsMax = 0x7fffffff
};

Expand Down
15 changes: 15 additions & 0 deletions include/spirv/unified1/extinst.opencl.debuginfo.100.grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,21 @@
{ "kind" : "IdRef", "name" : "'File'" },
{ "kind" : "IdRef", "name" : "'Text'", "quantifier" : "?" }
]
},
{
"opname" : "DebugModuleINTEL",
"opcode" : 36,
"operands" : [
{ "kind" : "IdRef", "name" : "'Name'" },
{ "kind" : "IdRef", "name" : "'Source'" },
{ "kind" : "IdRef", "name" : "'Parent'" },
{ "kind" : "LiteralInteger", "name" : "'Line'" },
{ "kind" : "IdRef", "name" : "'ConfigurationMacros'" },
{ "kind" : "IdRef", "name" : "'IncludePath'" },
{ "kind" : "IdRef", "name" : "'APINotesFile'" },
{ "kind" : "LiteralInteger", "name" : "'IsDeclaration'" }
],
"capability" : "DebugInfoModuleINTEL"
}
],
"operand_kinds" : [
Expand Down
6 changes: 6 additions & 0 deletions include/spirv/unified1/spirv.core.grammar.json
Original file line number Diff line number Diff line change
Expand Up @@ -13427,6 +13427,12 @@
"capabilities" : [ "Shader" ],
"extensions" : [ "SPV_EXT_shader_atomic_float16_add" ],
"version" : "None"
},
{
"enumerant" : "DebugInfoModuleINTEL",
"value" : 6114,
"extensions" : [ "SPV_INTEL_debug_module" ],
"version" : "None"
}
]
},
Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,7 @@ public enum Capability
AtomicFloat64AddEXT = 6034,
LongConstantCompositeINTEL = 6089,
AtomicFloat16AddEXT = 6095,
DebugInfoModuleINTEL = 6114,
}

public enum RayFlagsShift
Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1053,6 +1053,7 @@ typedef enum SpvCapability_ {
SpvCapabilityAtomicFloat64AddEXT = 6034,
SpvCapabilityLongConstantCompositeINTEL = 6089,
SpvCapabilityAtomicFloat16AddEXT = 6095,
SpvCapabilityDebugInfoModuleINTEL = 6114,
SpvCapabilityMax = 0x7fffffff,
} SpvCapability;

Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,7 @@ enum Capability {
CapabilityAtomicFloat64AddEXT = 6034,
CapabilityLongConstantCompositeINTEL = 6089,
CapabilityAtomicFloat16AddEXT = 6095,
CapabilityDebugInfoModuleINTEL = 6114,
CapabilityMax = 0x7fffffff,
};

Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.hpp11
Original file line number Diff line number Diff line change
Expand Up @@ -1049,6 +1049,7 @@ enum class Capability : unsigned {
AtomicFloat64AddEXT = 6034,
LongConstantCompositeINTEL = 6089,
AtomicFloat16AddEXT = 6095,
DebugInfoModuleINTEL = 6114,
Max = 0x7fffffff,
};

Expand Down
3 changes: 2 additions & 1 deletion include/spirv/unified1/spirv.json
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,8 @@
"AtomicFloat32AddEXT": 6033,
"AtomicFloat64AddEXT": 6034,
"LongConstantCompositeINTEL": 6089,
"AtomicFloat16AddEXT": 6095
"AtomicFloat16AddEXT": 6095,
"DebugInfoModuleINTEL": 6114
}
},
{
Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,7 @@ spv = {
AtomicFloat64AddEXT = 6034,
LongConstantCompositeINTEL = 6089,
AtomicFloat16AddEXT = 6095,
DebugInfoModuleINTEL = 6114,
},

RayFlagsShift = {
Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spirv.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,7 @@
'AtomicFloat64AddEXT' : 6034,
'LongConstantCompositeINTEL' : 6089,
'AtomicFloat16AddEXT' : 6095,
'DebugInfoModuleINTEL' : 6114,
},

'RayFlagsShift' : {
Expand Down
1 change: 1 addition & 0 deletions include/spirv/unified1/spv.d
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,7 @@ enum Capability : uint
AtomicFloat64AddEXT = 6034,
LongConstantCompositeINTEL = 6089,
AtomicFloat16AddEXT = 6095,
DebugInfoModuleINTEL = 6114,
}

enum RayFlagsShift : uint
Expand Down