Skip to content

Commit 79c0a9c

Browse files
committed
Support pointer base type in OpTypeVector when using extension
SPV_INTEL_masked_gather_scatter
1 parent ba1359d commit 79c0a9c

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

source/val/validate_type.cpp

+18-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,24 @@ spv_result_t ValidateTypeVector(ValidationState_t& _, const Instruction* inst) {
140140
const auto component_index = 1;
141141
const auto component_id = inst->GetOperandAs<uint32_t>(component_index);
142142
const auto component_type = _.FindDef(component_id);
143-
if (!component_type || !spvOpcodeIsScalarType(component_type->opcode())) {
143+
if (component_type) {
144+
bool isPointer = component_type->opcode() == spv::Op::OpTypePointer;
145+
bool isScalar = spvOpcodeIsScalarType(component_type->opcode());
146+
147+
if (_.HasExtension(Extension::kSPV_INTEL_masked_gather_scatter) &&
148+
!isPointer && !isScalar) {
149+
return _.diag(SPV_ERROR_INVALID_ID, inst)
150+
<< "Invalid OpTypeVector Component Type<id> "
151+
<< _.getIdName(component_id)
152+
<< ": Expected a scalar or pointer type when using the "
153+
"SPV_INTEL_masked_gather_scatter extension.";
154+
} else if (!_.HasExtension(Extension::kSPV_INTEL_masked_gather_scatter) &&
155+
!isScalar) {
156+
return _.diag(SPV_ERROR_INVALID_ID, inst)
157+
<< "OpTypeVector Component Type <id> " << _.getIdName(component_id)
158+
<< " is not a scalar type.";
159+
}
160+
} else {
144161
return _.diag(SPV_ERROR_INVALID_ID, inst)
145162
<< "OpTypeVector Component Type <id> " << _.getIdName(component_id)
146163
<< " is not a scalar type.";

0 commit comments

Comments
 (0)