2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -673,6 +673,7 @@ spv_result_t Parser::parseOperand(size_t inst_offset,
673
673
case SPV_OPERAND_TYPE_OPTIONAL_PACKED_VECTOR_FORMAT:
674
674
case SPV_OPERAND_TYPE_FPENCODING:
675
675
case SPV_OPERAND_TYPE_OPTIONAL_FPENCODING:
676
+ case SPV_OPERAND_TYPE_HOST_ACCESS_QUALIFIER:
676
677
case SPV_OPERAND_TYPE_LOAD_CACHE_CONTROL:
677
678
case SPV_OPERAND_TYPE_STORE_CACHE_CONTROL:
678
679
case SPV_OPERAND_TYPE_NAMED_MAXIMUM_NUMBER_OF_REGISTERS: {
Original file line number Diff line number Diff line change @@ -418,6 +418,16 @@ INSTANTIATE_TEST_SUITE_P(
418
418
" OpDecorate %1 CacheControlStoreINTEL 3 StreamingINTEL\n " ,
419
419
})));
420
420
421
+ INSTANTIATE_TEST_SUITE_P (
422
+ HostAccessINTEL, RoundTripInstructionsTest,
423
+ Combine (::testing::Values(SPV_ENV_UNIVERSAL_1_0),
424
+ ::testing::ValuesIn(std::vector<std::string>{
425
+ " OpDecorate %1 HostAccessINTEL NoneINTEL \" none\"\n " ,
426
+ " OpDecorate %1 HostAccessINTEL ReadINTEL \" read\"\n " ,
427
+ " OpDecorate %1 HostAccessINTEL WriteINTEL \" write\"\n " ,
428
+ " OpDecorate %1 HostAccessINTEL ReadWriteINTEL \" readwrite\"\n " ,
429
+ })));
430
+
421
431
using MaskSorting = TextToBinaryTest;
422
432
423
433
TEST_F (MaskSorting, MasksAreSortedFromLSBToMSB) {
0 commit comments