Skip to content

Commit 20788a4

Browse files
authoredSep 17, 2024
add support for SPV_INTEL_global_variable_host_access (#5786)
1 parent 04ad1e1 commit 20788a4

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
 

‎source/binary.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,7 @@ spv_result_t Parser::parseOperand(size_t inst_offset,
673673
case SPV_OPERAND_TYPE_OPTIONAL_PACKED_VECTOR_FORMAT:
674674
case SPV_OPERAND_TYPE_FPENCODING:
675675
case SPV_OPERAND_TYPE_OPTIONAL_FPENCODING:
676+
case SPV_OPERAND_TYPE_HOST_ACCESS_QUALIFIER:
676677
case SPV_OPERAND_TYPE_LOAD_CACHE_CONTROL:
677678
case SPV_OPERAND_TYPE_STORE_CACHE_CONTROL:
678679
case SPV_OPERAND_TYPE_NAMED_MAXIMUM_NUMBER_OF_REGISTERS: {

‎test/binary_to_text_test.cpp

+10
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,16 @@ INSTANTIATE_TEST_SUITE_P(
418418
"OpDecorate %1 CacheControlStoreINTEL 3 StreamingINTEL\n",
419419
})));
420420

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+
421431
using MaskSorting = TextToBinaryTest;
422432

423433
TEST_F(MaskSorting, MasksAreSortedFromLSBToMSB) {

0 commit comments

Comments
 (0)
Failed to load comments.