| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- // GENERATED FILE - DO NOT EDIT.
- // Generated by generate_tests.py
- //
- // Copyright (c) 2022 Google LLC.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #include "../diff_test_utils.h"
- #include "gtest/gtest.h"
- namespace spvtools {
- namespace diff {
- namespace {
- // Tests OpSpecConstantComposite matching.
- constexpr char kSrc[] = R"( OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpSource GLSL 450
- OpName %main "main"
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %gl_WorkGroupSize BuiltIn WorkgroupSize
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %7 = OpSpecConstant %uint 1
- %8 = OpSpecConstant %uint 1
- %uint_1 = OpConstant %uint 1
- %v3uint = OpTypeVector %uint 3
- %gl_WorkGroupSize = OpSpecConstantComposite %v3uint %7 %8 %uint_1
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd)";
- constexpr char kDst[] = R"( OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpSource GLSL 450
- OpName %main "main"
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %gl_WorkGroupSize BuiltIn WorkgroupSize
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %7 = OpSpecConstant %uint 2048
- %8 = OpSpecConstant %uint 1
- %uint_1 = OpConstant %uint 1
- %v3uint = OpTypeVector %uint 3
- %gl_WorkGroupSize = OpSpecConstantComposite %v3uint %7 %8 %uint_1
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- TEST(DiffTest, SpecConstantComposite) {
- constexpr char kDiff[] = R"( ; SPIR-V
- ; Version: 1.6
- ; Generator: Khronos SPIR-V Tools Assembler; 0
- ; Bound: 12
- ; Schema: 0
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %2 "main"
- OpExecutionMode %2 LocalSize 1 1 1
- OpSource GLSL 450
- OpName %2 "main"
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %4 BuiltIn WorkgroupSize
- %6 = OpTypeVoid
- %3 = OpTypeFunction %6
- %9 = OpTypeInt 32 0
- -%7 = OpSpecConstant %9 1
- +%7 = OpSpecConstant %9 2048
- %8 = OpSpecConstant %9 1
- %10 = OpConstant %9 1
- %11 = OpTypeVector %9 3
- %4 = OpSpecConstantComposite %11 %7 %8 %10
- %2 = OpFunction %6 None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- Options options;
- DoStringDiffTest(kSrc, kDst, kDiff, options);
- }
- TEST(DiffTest, SpecConstantCompositeNoDebug) {
- constexpr char kSrcNoDebug[] = R"( OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpSource GLSL 450
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %gl_WorkGroupSize BuiltIn WorkgroupSize
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %7 = OpSpecConstant %uint 1
- %8 = OpSpecConstant %uint 1
- %uint_1 = OpConstant %uint 1
- %v3uint = OpTypeVector %uint 3
- %gl_WorkGroupSize = OpSpecConstantComposite %v3uint %7 %8 %uint_1
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- constexpr char kDstNoDebug[] = R"( OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpSource GLSL 450
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %gl_WorkGroupSize BuiltIn WorkgroupSize
- %void = OpTypeVoid
- %3 = OpTypeFunction %void
- %uint = OpTypeInt 32 0
- %7 = OpSpecConstant %uint 2048
- %8 = OpSpecConstant %uint 1
- %uint_1 = OpConstant %uint 1
- %v3uint = OpTypeVector %uint 3
- %gl_WorkGroupSize = OpSpecConstantComposite %v3uint %7 %8 %uint_1
- %main = OpFunction %void None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- constexpr char kDiff[] = R"( ; SPIR-V
- ; Version: 1.6
- ; Generator: Khronos SPIR-V Tools Assembler; 0
- ; Bound: 12
- ; Schema: 0
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %2 "main"
- OpExecutionMode %2 LocalSize 1 1 1
- OpSource GLSL 450
- OpDecorate %7 SpecId 3
- OpDecorate %8 SpecId 4
- OpDecorate %4 BuiltIn WorkgroupSize
- %6 = OpTypeVoid
- %3 = OpTypeFunction %6
- %9 = OpTypeInt 32 0
- -%7 = OpSpecConstant %9 1
- +%7 = OpSpecConstant %9 2048
- %8 = OpSpecConstant %9 1
- %10 = OpConstant %9 1
- %11 = OpTypeVector %9 3
- %4 = OpSpecConstantComposite %11 %7 %8 %10
- %2 = OpFunction %6 None %3
- %5 = OpLabel
- OpReturn
- OpFunctionEnd
- )";
- Options options;
- DoStringDiffTest(kSrcNoDebug, kDstNoDebug, kDiff, options);
- }
- } // namespace
- } // namespace diff
- } // namespace spvtools
|