@@ -79,8 +79,7 @@ std::string kOpVariablePtrSetUp = R"(
79
79
OpExtension "SPV_KHR_variable_pointers"
80
80
)" ;
81
81
82
- std::string kGLSL450MemoryModel =
83
- kOpCapabilitySetup + kOpVariablePtrSetUp + R"(
82
+ std::string kGLSL450MemoryModel = kOpCapabilitySetup + kOpVariablePtrSetUp + R"(
84
83
OpMemoryModel Logical GLSL450
85
84
)" ;
86
85
@@ -709,6 +708,24 @@ TEST_P(ValidateIdWithMessage, OpTypeVectorComponentTypeBad) {
709
708
" '2[%_ptr_UniformConstant_float]' is not a scalar type." )));
710
709
}
711
710
711
+ TEST_P (ValidateIdWithMessage, OpTypeVectorComponentTypeCanBePointerType) {
712
+ std::string spirv = R"(
713
+ OpCapability Addresses
714
+ OpCapability Linkage
715
+ OpCapability Kernel
716
+ OpCapability Int64
717
+ OpCapability GenericPointer
718
+ OpCapability MaskedGatherScatterINTEL
719
+ OpExtension "SPV_INTEL_masked_gather_scatter"
720
+ OpMemoryModel Physical64 OpenCL
721
+
722
+ %2 = OpTypeInt 32 0
723
+ %3 = OpTypePointer Generic %2
724
+ %4 = OpTypeVector %3 4)" ;
725
+ CompileSuccessfully (spirv.c_str ());
726
+ EXPECT_EQ (SPV_SUCCESS, ValidateInstructions ());
727
+ }
728
+
712
729
TEST_P (ValidateIdWithMessage, OpTypeVectorColumnCountLessThanTwoBad) {
713
730
std::string spirv = kGLSL450MemoryModel + R"(
714
731
%1 = OpTypeFloat 32
@@ -4024,8 +4041,7 @@ TEST_P(AccessChainInstructionTest, AccessChainResultTypeBad) {
4024
4041
const std::string instr = GetParam ();
4025
4042
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4026
4043
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4027
- %float_entry = )" +
4028
- instr +
4044
+ %float_entry = )" + instr +
4029
4045
R"( %float %my_matrix )" + elem +
4030
4046
R"( %int_0 %int_1
4031
4047
OpReturn
@@ -4045,8 +4061,8 @@ TEST_P(AccessChainInstructionTest, AccessChainBaseTypeVoidBad) {
4045
4061
const std::string instr = GetParam ();
4046
4062
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4047
4063
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4048
- %float_entry = )" +
4049
- instr + " %_ptr_Private_float %void " + elem +
4064
+ %float_entry = )" + instr +
4065
+ " %_ptr_Private_float %void " + elem +
4050
4066
R"( %int_0 %int_1
4051
4067
OpReturn
4052
4068
OpFunctionEnd
@@ -4062,8 +4078,7 @@ TEST_P(AccessChainInstructionTest, AccessChainBaseTypeNonPtrVariableBad) {
4062
4078
const std::string instr = GetParam ();
4063
4079
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4064
4080
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4065
- %entry = )" +
4066
- instr + R"( %_ptr_Private_float %_ptr_Private_float )" +
4081
+ %entry = )" + instr + R"( %_ptr_Private_float %_ptr_Private_float )" +
4067
4082
elem +
4068
4083
R"( %int_0 %int_1
4069
4084
OpReturn
@@ -4081,8 +4096,8 @@ TEST_P(AccessChainInstructionTest,
4081
4096
const std::string instr = GetParam ();
4082
4097
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4083
4098
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4084
- %entry = )" +
4085
- instr + R"( %_ptr_Function_float %my_matrix )" + elem +
4099
+ %entry = )" + instr + R"( %_ptr_Function_float %my_matrix )" +
4100
+ elem +
4086
4101
R"( %int_0 %int_1
4087
4102
OpReturn
4088
4103
OpFunctionEnd
@@ -4102,8 +4117,8 @@ TEST_P(AccessChainInstructionTest,
4102
4117
const std::string instr = GetParam ();
4103
4118
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4104
4119
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4105
- %entry = )" +
4106
- instr + R"( %_ptr_Private_float %my_float_var )" + elem +
4120
+ %entry = )" + instr + R"( %_ptr_Private_float %my_float_var )" +
4121
+ elem +
4107
4122
R"( %int_0
4108
4123
OpReturn
4109
4124
OpFunctionEnd
@@ -4122,8 +4137,8 @@ TEST_P(AccessChainInstructionTest, AccessChainNoIndexesGood) {
4122
4137
const std::string instr = GetParam ();
4123
4138
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4124
4139
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4125
- %entry = )" +
4126
- instr + R"( %_ptr_Private_float %my_float_var )" + elem +
4140
+ %entry = )" + instr + R"( %_ptr_Private_float %my_float_var )" +
4141
+ elem +
4127
4142
R"(
4128
4143
OpReturn
4129
4144
OpFunctionEnd
@@ -4138,8 +4153,8 @@ TEST_P(AccessChainInstructionTest, AccessChainNoIndexesBad) {
4138
4153
const std::string instr = GetParam ();
4139
4154
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4140
4155
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4141
- %entry = )" +
4142
- instr + R"( %_ptr_Private_mat4x3 %my_float_var )" + elem +
4156
+ %entry = )" + instr + R"( %_ptr_Private_mat4x3 %my_float_var )" +
4157
+ elem +
4143
4158
R"(
4144
4159
OpReturn
4145
4160
OpFunctionEnd
@@ -4295,8 +4310,8 @@ TEST_P(AccessChainInstructionTest, AccessChainUndefinedIndexBad) {
4295
4310
const std::string instr = GetParam ();
4296
4311
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4297
4312
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4298
- %entry = )" +
4299
- instr + R"( %_ptr_Private_float %my_matrix )" + elem +
4313
+ %entry = )" + instr + R"( %_ptr_Private_float %my_matrix )" +
4314
+ elem +
4300
4315
R"( %float_0 %int_1
4301
4316
OpReturn
4302
4317
OpFunctionEnd
@@ -4314,8 +4329,8 @@ TEST_P(AccessChainInstructionTest, AccessChainStructIndexNotConstantBad) {
4314
4329
const std::string instr = GetParam ();
4315
4330
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4316
4331
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4317
- %f = )" +
4318
- instr + R"( %_ptr_Uniform_float %blockName_var )" + elem +
4332
+ %f = )" + instr + R"( %_ptr_Uniform_float %blockName_var )" +
4333
+ elem +
4319
4334
R"( %int_0 %spec_int %int_2
4320
4335
OpReturn
4321
4336
OpFunctionEnd
@@ -4333,8 +4348,8 @@ TEST_P(AccessChainInstructionTest,
4333
4348
const std::string instr = GetParam ();
4334
4349
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4335
4350
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4336
- %entry = )" +
4337
- instr + R"( %_ptr_Uniform_float %blockName_var )" + elem +
4351
+ %entry = )" + instr + R"( %_ptr_Uniform_float %blockName_var )" +
4352
+ elem +
4338
4353
R"( %int_0 %int_1 %int_2
4339
4354
OpReturn
4340
4355
OpFunctionEnd
@@ -4353,8 +4368,8 @@ TEST_P(AccessChainInstructionTest, AccessChainStructTooManyIndexesBad) {
4353
4368
const std::string instr = GetParam ();
4354
4369
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4355
4370
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4356
- %entry = )" +
4357
- instr + R"( %_ptr_Uniform_float %blockName_var )" + elem +
4371
+ %entry = )" + instr + R"( %_ptr_Uniform_float %blockName_var )" +
4372
+ elem +
4358
4373
R"( %int_0 %int_2 %int_2
4359
4374
OpReturn
4360
4375
OpFunctionEnd
@@ -4372,8 +4387,8 @@ TEST_P(AccessChainInstructionTest, AccessChainStructIndexOutOfBoundBad) {
4372
4387
const std::string instr = GetParam ();
4373
4388
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4374
4389
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4375
- %entry = )" +
4376
- instr + R"( %_ptr_Uniform_float %blockName_var )" + elem +
4390
+ %entry = )" + instr + R"( %_ptr_Uniform_float %blockName_var )" +
4391
+ elem +
4377
4392
R"( %int_3 %int_2 %int_2
4378
4393
OpReturn
4379
4394
OpFunctionEnd
@@ -4428,8 +4443,8 @@ TEST_P(AccessChainInstructionTest, AccessChainIndexIntoRuntimeArrayGood) {
4428
4443
" OpDecorate %_ptr_Uniform_blockName ArrayStride 8 " ;
4429
4444
std::string spirv = kGLSL450MemoryModel + arrayStride +
4430
4445
kDeeplyNestedStructureSetup + R"(
4431
- %runtime_arr_entry = )" + instr +
4432
- R"( %_ptr_Uniform_float %blockName_var )" + elem +
4446
+ %runtime_arr_entry = )" +
4447
+ instr + R"( %_ptr_Uniform_float %blockName_var )" + elem +
4433
4448
R"( %int_2 %int_0
4434
4449
OpReturn
4435
4450
OpFunctionEnd
@@ -4463,8 +4478,8 @@ TEST_P(AccessChainInstructionTest, AccessChainMatrixMoreArgsThanNeededBad) {
4463
4478
const std::string instr = GetParam ();
4464
4479
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4465
4480
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4466
- %entry = )" +
4467
- instr + R"( %_ptr_Private_float %my_matrix )" + elem +
4481
+ %entry = )" + instr + R"( %_ptr_Private_float %my_matrix )" +
4482
+ elem +
4468
4483
R"( %int_0 %int_1 %int_0
4469
4484
OpReturn
4470
4485
OpFunctionEnd
@@ -4483,8 +4498,8 @@ TEST_P(AccessChainInstructionTest,
4483
4498
const std::string instr = GetParam ();
4484
4499
const std::string elem = AccessChainRequiresElemId (instr) ? " %int_0 " : " " ;
4485
4500
std::string spirv = kGLSL450MemoryModel + kDeeplyNestedStructureSetup + R"(
4486
- %entry = )" +
4487
- instr + R"( %_ptr_Private_mat4x3 %my_matrix )" + elem +
4501
+ %entry = )" + instr + R"( %_ptr_Private_mat4x3 %my_matrix )" +
4502
+ elem +
4488
4503
R"( %int_0 %int_1
4489
4504
OpReturn
4490
4505
OpFunctionEnd
0 commit comments