| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- // Copyright (c) 2018 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 <string>
- #include "gmock/gmock.h"
- #include "source/opt/simplification_pass.h"
- #include "test/opt/pass_fixture.h"
- namespace spvtools {
- namespace opt {
- namespace {
- using SimplificationTest = PassTest<::testing::Test>;
- TEST_F(SimplificationTest, StraightLineTest) {
- // Testing that folding rules are combined in simple straight line code.
- const std::string text = R"(OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %i %o
- OpExecutionMode %main OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpName %main "main"
- OpName %i "i"
- OpName %o "o"
- OpDecorate %i Flat
- OpDecorate %i Location 0
- OpDecorate %o Location 0
- %void = OpTypeVoid
- %8 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %v4int = OpTypeVector %int 4
- %int_0 = OpConstant %int 0
- %13 = OpConstantComposite %v4int %int_0 %int_0 %int_0 %int_0
- %int_1 = OpConstant %int 1
- %_ptr_Input_v4int = OpTypePointer Input %v4int
- %i = OpVariable %_ptr_Input_v4int Input
- %_ptr_Output_int = OpTypePointer Output %int
- %o = OpVariable %_ptr_Output_int Output
- %main = OpFunction %void None %8
- %21 = OpLabel
- %31 = OpCompositeInsert %v4int %int_1 %13 0
- ; CHECK: [[load:%[a-zA-Z_\d]+]] = OpLoad
- %23 = OpLoad %v4int %i
- %33 = OpCompositeInsert %v4int %int_0 %23 0
- %35 = OpCompositeExtract %int %31 0
- ; CHECK: [[extract:%[a-zA-Z_\d]+]] = OpCompositeExtract %int [[load]] 1
- %37 = OpCompositeExtract %int %33 1
- ; CHECK: [[add:%[a-zA-Z_\d]+]] = OpIAdd %int %int_1 [[extract]]
- %29 = OpIAdd %int %35 %37
- OpStore %o %29
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<SimplificationPass>(text, false);
- }
- TEST_F(SimplificationTest, NewInstructionTest) {
- // Testing that new instructions are simplified. Specifically,
- // that the new add instruction generated by FactorAddMul is
- // further simplified by MergeGenericAddSub.
- const std::string text = R"(OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main"
- OpExecutionMode %main OriginUpperLeft
- OpSource GLSL 430
- OpName %main "main"
- %void = OpTypeVoid
- %4 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %_ptr_int = OpTypePointer Function %int
- ; CHECK: [[mul:%[a-zA-Z_\d]+]] = OpIMul %int %13 %11
- %main = OpFunction %void None %4
- %7 = OpLabel
- %8 = OpVariable %_ptr_int Function
- %9 = OpVariable %_ptr_int Function
- %10 = OpVariable %_ptr_int Function
- %11 = OpLoad %int %8
- %12 = OpLoad %int %9
- %13 = OpLoad %int %10
- %14 = OpISub %int %11 %12
- %15 = OpIMul %int %13 %11
- %16 = OpIMul %int %13 %12
- %17 = OpIAdd %int %14 %15
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<SimplificationPass>(text, false);
- }
- TEST_F(SimplificationTest, AcrossBasicBlocks) {
- // Testing that folding rules are combined across basic blocks.
- const std::string text = R"(OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %i %o
- OpExecutionMode %main OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpName %main "main"
- OpName %i "i"
- OpName %o "o"
- OpDecorate %i Flat
- OpDecorate %i Location 0
- OpDecorate %o Location 0
- %void = OpTypeVoid
- %8 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %v4int = OpTypeVector %int 4
- %int_0 = OpConstant %int 0
- %_ptr_Input_v4int = OpTypePointer Input %v4int
- %i = OpVariable %_ptr_Input_v4int Input
- %uint = OpTypeInt 32 0
- %uint_0 = OpConstant %uint 0
- %_ptr_Input_int = OpTypePointer Input %int
- %int_10 = OpConstant %int 10
- %bool = OpTypeBool
- %int_1 = OpConstant %int 1
- %_ptr_Output_int = OpTypePointer Output %int
- %o = OpVariable %_ptr_Output_int Output
- %main = OpFunction %void None %8
- %24 = OpLabel
- ; CHECK: [[load:%[a-zA-Z_\d]+]] = OpLoad %v4int %i
- %25 = OpLoad %v4int %i
- %41 = OpCompositeInsert %v4int %int_0 %25 0
- %27 = OpAccessChain %_ptr_Input_int %i %uint_0
- %28 = OpLoad %int %27
- %29 = OpSGreaterThan %bool %28 %int_10
- OpSelectionMerge %30 None
- OpBranchConditional %29 %31 %32
- %31 = OpLabel
- %43 = OpCopyObject %v4int %25
- OpBranch %30
- %32 = OpLabel
- %45 = OpCopyObject %v4int %25
- OpBranch %30
- %30 = OpLabel
- %50 = OpPhi %v4int %43 %31 %45 %32
- ; CHECK: [[extract1:%[a-zA-Z_\d]+]] = OpCompositeExtract %int [[load]] 0
- %47 = OpCompositeExtract %int %50 0
- ; CHECK: [[extract2:%[a-zA-Z_\d]+]] = OpCompositeExtract %int [[load]] 1
- %49 = OpCompositeExtract %int %41 1
- ; CHECK: [[add:%[a-zA-Z_\d]+]] = OpIAdd %int [[extract1]] [[extract2]]
- %39 = OpIAdd %int %47 %49
- OpStore %o %39
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<SimplificationPass>(text, false);
- }
- TEST_F(SimplificationTest, ThroughLoops) {
- // Testing that folding rules are applied multiple times to instructions
- // to be able to propagate across loop iterations.
- const std::string text = R"(
- OpCapability Shader
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %main "main" %o %i
- OpExecutionMode %main OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpName %main "main"
- OpName %o "o"
- OpName %i "i"
- OpDecorate %o Location 0
- OpDecorate %i Flat
- OpDecorate %i Location 0
- %void = OpTypeVoid
- %8 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %v4int = OpTypeVector %int 4
- %int_0 = OpConstant %int 0
- ; CHECK: [[constant:%[a-zA-Z_\d]+]] = OpConstantComposite %v4int %int_0 %int_0 %int_0 %int_0
- %13 = OpConstantComposite %v4int %int_0 %int_0 %int_0 %int_0
- %bool = OpTypeBool
- %_ptr_Output_int = OpTypePointer Output %int
- %o = OpVariable %_ptr_Output_int Output
- %_ptr_Input_v4int = OpTypePointer Input %v4int
- %i = OpVariable %_ptr_Input_v4int Input
- %68 = OpUndef %v4int
- %main = OpFunction %void None %8
- %23 = OpLabel
- ; CHECK: [[load:%[a-zA-Z_\d]+]] = OpLoad %v4int %i
- %load = OpLoad %v4int %i
- OpBranch %24
- %24 = OpLabel
- %67 = OpPhi %v4int %load %23 %64 %26
- ; CHECK: OpLoopMerge [[merge_lab:%[a-zA-Z_\d]+]]
- OpLoopMerge %25 %26 None
- OpBranch %27
- %27 = OpLabel
- %48 = OpCompositeExtract %int %67 0
- %30 = OpIEqual %bool %48 %int_0
- OpBranchConditional %30 %31 %25
- %31 = OpLabel
- %50 = OpCompositeExtract %int %67 0
- %54 = OpCompositeExtract %int %67 1
- %58 = OpCompositeExtract %int %67 2
- %62 = OpCompositeExtract %int %67 3
- %64 = OpCompositeConstruct %v4int %50 %54 %58 %62
- OpBranch %26
- %26 = OpLabel
- OpBranch %24
- %25 = OpLabel
- ; CHECK: [[merge_lab]] = OpLabel
- ; CHECK: [[extract:%[a-zA-Z_\d]+]] = OpCompositeExtract %int [[load]] 0
- %66 = OpCompositeExtract %int %67 0
- ; CHECK-NEXT: OpStore %o [[extract]]
- OpStore %o %66
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<SimplificationPass>(text, false);
- }
- TEST_F(SimplificationTest, CopyObjectWithDecorations1) {
- // Don't simplify OpCopyObject if the result id has a decoration that the
- // operand does not.
- const std::string text = R"(OpCapability Shader
- OpCapability ShaderNonUniform
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main"
- OpExecutionMode %2 OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpDecorate %3 NonUniform
- %void = OpTypeVoid
- %5 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %2 = OpFunction %void None %5
- %7 = OpLabel
- %8 = OpUndef %int
- %3 = OpCopyObject %int %8
- %9 = OpIAdd %int %3 %3
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndCheck<SimplificationPass>(text, text, false);
- }
- TEST_F(SimplificationTest, CopyObjectWithDecorations2) {
- // Simplify OpCopyObject if the result id is a subset of the decorations of
- // the operand.
- const std::string before = R"(OpCapability Shader
- OpCapability ShaderNonUniform
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main"
- OpExecutionMode %2 OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpDecorate %3 NonUniform
- %void = OpTypeVoid
- %5 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %2 = OpFunction %void None %5
- %7 = OpLabel
- %3 = OpUndef %int
- %8 = OpCopyObject %int %3
- %9 = OpIAdd %int %8 %8
- OpReturn
- OpFunctionEnd
- )";
- const std::string after = R"(OpCapability Shader
- OpCapability ShaderNonUniform
- %1 = OpExtInstImport "GLSL.std.450"
- OpMemoryModel Logical GLSL450
- OpEntryPoint Fragment %2 "main"
- OpExecutionMode %2 OriginUpperLeft
- OpSource GLSL 430
- OpSourceExtension "GL_GOOGLE_cpp_style_line_directive"
- OpSourceExtension "GL_GOOGLE_include_directive"
- OpDecorate %3 NonUniform
- %void = OpTypeVoid
- %5 = OpTypeFunction %void
- %int = OpTypeInt 32 1
- %2 = OpFunction %void None %5
- %7 = OpLabel
- %3 = OpUndef %int
- %9 = OpIAdd %int %3 %3
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndCheck<SimplificationPass>(before, after, false);
- }
- TEST_F(SimplificationTest, DontMoveDecorations) {
- const std::string spirv = R"(
- ; CHECK-NOT: RelaxedPrecision
- ; CHECK: [[sub:%\w+]] = OpFSub
- ; CHECK: OpStore {{.*}} [[sub]]
- OpCapability Shader
- OpMemoryModel Logical GLSL450
- OpEntryPoint GLCompute %main "main"
- OpExecutionMode %main LocalSize 1 1 1
- OpDecorate %add RelaxedPrecision
- OpDecorate %block Block
- OpMemberDecorate %block 0 Offset 0
- OpMemberDecorate %block 1 Offset 4
- OpDecorate %in DescriptorSet 0
- OpDecorate %in Binding 0
- OpDecorate %out DescriptorSet 0
- OpDecorate %out Binding 1
- %void = OpTypeVoid
- %float = OpTypeFloat 32
- %void_fn = OpTypeFunction %void
- %block = OpTypeStruct %float %float
- %ptr_ssbo_block = OpTypePointer StorageBuffer %block
- %in = OpVariable %ptr_ssbo_block StorageBuffer
- %out = OpVariable %ptr_ssbo_block StorageBuffer
- %ptr_ssbo_float = OpTypePointer StorageBuffer %float
- %int = OpTypeInt 32 0
- %int_0 = OpConstant %int 0
- %int_1 = OpConstant %int 1
- %float_0 = OpConstant %float 0
- %main = OpFunction %void None %void_fn
- %entry = OpLabel
- %in_gep_0 = OpAccessChain %ptr_ssbo_float %in %int_0
- %in_gep_1 = OpAccessChain %ptr_ssbo_float %in %int_1
- %load_0 = OpLoad %float %in_gep_0
- %load_1 = OpLoad %float %in_gep_1
- %sub = OpFSub %float %load_0 %load_1
- %add = OpFAdd %float %float_0 %sub
- %out_gep_0 = OpAccessChain %ptr_ssbo_float %out %int_0
- OpStore %out_gep_0 %add
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndMatch<SimplificationPass>(spirv, true);
- }
- TEST_F(SimplificationTest, FunctionDeclaration) {
- // Make sure the pass works with a function declaration that is called.
- const std::string text = R"(OpCapability Addresses
- OpCapability Linkage
- OpCapability Kernel
- OpCapability Int8
- %1 = OpExtInstImport "OpenCL.std"
- OpMemoryModel Physical64 OpenCL
- OpEntryPoint Kernel %2 "_Z23julia__1166_kernel_77094Bool"
- OpExecutionMode %2 ContractionOff
- OpSource Unknown 0
- OpDecorate %3 LinkageAttributes "julia_error_7712" Import
- %void = OpTypeVoid
- %5 = OpTypeFunction %void
- %3 = OpFunction %void None %5
- OpFunctionEnd
- %2 = OpFunction %void None %5
- %6 = OpLabel
- %7 = OpFunctionCall %void %3
- OpReturn
- OpFunctionEnd
- )";
- SinglePassRunAndCheck<SimplificationPass>(text, text, false);
- }
- } // namespace
- } // namespace opt
- } // namespace spvtools
|