// Copyright (c) 2016 Google Inc. // 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 "source/opt/fold.h" #include #include #include #include #include "effcee/effcee.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include "source/opt/build_module.h" #include "source/opt/def_use_manager.h" #include "source/opt/ir_context.h" #include "source/opt/module.h" #include "spirv-tools/libspirv.hpp" namespace spvtools { namespace opt { namespace { using ::testing::Contains; std::string Disassemble(const std::string& original, IRContext* context, uint32_t disassemble_options = 0) { std::vector optimized_bin; context->module()->ToBinary(&optimized_bin, true); spv_target_env target_env = SPV_ENV_UNIVERSAL_1_2; SpirvTools tools(target_env); std::string optimized_asm; EXPECT_TRUE( tools.Disassemble(optimized_bin, &optimized_asm, disassemble_options)) << "Disassembling failed for shader:\n" << original << std::endl; return optimized_asm; } void Match(const std::string& original, IRContext* context, uint32_t disassemble_options = 0) { std::string disassembly = Disassemble(original, context, disassemble_options); auto match_result = effcee::Match(disassembly, original); EXPECT_EQ(effcee::Result::Status::Ok, match_result.status()) << match_result.message() << "\nChecking result:\n" << disassembly; } template struct InstructionFoldingCase { InstructionFoldingCase(const std::string& tb, uint32_t id, ResultType result) : test_body(tb), id_to_fold(id), expected_result(result) {} std::string test_body; uint32_t id_to_fold; ResultType expected_result; }; std::tuple, Instruction*> GetInstructionToFold( const std::string test_body, const uint32_t id_to_fold, spv_target_env spv_env) { // Build module. std::unique_ptr context = BuildModule(spv_env, nullptr, test_body, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); EXPECT_NE(nullptr, context); if (context == nullptr) { return {nullptr, nullptr}; } // Fold the instruction to test. if (id_to_fold != 0) { analysis::DefUseManager* def_use_mgr = context->get_def_use_mgr(); Instruction* inst = def_use_mgr->GetDef(id_to_fold); return {std::move(context), inst}; } // If there is not ID, we get the instruction just before a terminator // instruction. That could be a return or abort. This is used for cases where // the instruction we want to fold does not have a result id. Function* func = &*context->module()->begin(); for (auto& bb : *func) { Instruction* terminator = bb.terminator(); if (terminator->IsReturnOrAbort()) { return {std::move(context), terminator->PreviousNode()}; } } return {nullptr, nullptr}; } std::tuple, Instruction*> FoldInstruction( const std::string test_body, const uint32_t id_to_fold, spv_target_env spv_env) { // Build module. std::unique_ptr context; Instruction* inst = nullptr; std::tie(context, inst) = GetInstructionToFold(test_body, id_to_fold, spv_env); if (context == nullptr) { return {nullptr, nullptr}; } std::unique_ptr original_inst(inst->Clone(context.get())); bool succeeded = context->get_instruction_folder().FoldInstruction(inst); EXPECT_EQ(inst->result_id(), original_inst->result_id()); EXPECT_EQ(inst->type_id(), original_inst->type_id()); if (!succeeded && inst != nullptr) { EXPECT_EQ(inst->NumInOperands(), original_inst->NumInOperands()); for (uint32_t i = 0; i < inst->NumInOperands(); ++i) { EXPECT_EQ(inst->GetOperand(i), original_inst->GetOperand(i)); } } return {std::move(context), succeeded ? inst : nullptr}; } template void CheckForExpectedScalarConstant(Instruction* inst, ElementType expected_result, Function GetValue) { ASSERT_TRUE(inst); IRContext* context = inst->context(); analysis::DefUseManager* def_use_mgr = context->get_def_use_mgr(); while (inst->opcode() == spv::Op::OpCopyObject) { inst = def_use_mgr->GetDef(inst->GetSingleWordInOperand(0)); } // Make sure we have a constant. analysis::ConstantManager* const_mrg = context->get_constant_mgr(); const analysis::Constant* constant = const_mrg->GetConstantFromInst(inst); ASSERT_TRUE(constant); // Make sure the constant is a scalar. const analysis::ScalarConstant* result = constant->AsScalarConstant(); ASSERT_TRUE(result); // Check if the result matches the expected value. // If ExpectedType is not a float type, it should cast the value to a double // and never get a nan. if (!std::isnan(static_cast(expected_result))) { EXPECT_EQ(expected_result, GetValue(result)); } else { EXPECT_TRUE(std::isnan(static_cast(GetValue(result)))); } } template void CheckForExpectedVectorConstant(Instruction* inst, std::vector expected_result, Function GetValue) { ASSERT_TRUE(inst); IRContext* context = inst->context(); EXPECT_EQ(inst->opcode(), spv::Op::OpCopyObject); analysis::DefUseManager* def_use_mgr = context->get_def_use_mgr(); inst = def_use_mgr->GetDef(inst->GetSingleWordInOperand(0)); std::vector opcodes = {spv::Op::OpConstantComposite}; EXPECT_THAT(opcodes, Contains(inst->opcode())); analysis::ConstantManager* const_mrg = context->get_constant_mgr(); const analysis::Constant* result = const_mrg->GetConstantFromInst(inst); EXPECT_NE(result, nullptr); if (result != nullptr) { const std::vector& componenets = result->AsVectorConstant()->GetComponents(); EXPECT_EQ(componenets.size(), expected_result.size()); for (size_t i = 0; i < componenets.size(); i++) { EXPECT_EQ(expected_result[i], GetValue(componenets[i])); } } } using IntegerInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(IntegerInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_1); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsScalarConstant()->GetU32BitValue(); }); } // Returns a common SPIR-V header for all of the test that follow. #define INT_0_ID 100 #define TRUE_ID 101 #define VEC2_0_ID 102 #define INT_7_ID 103 #define FLOAT_0_ID 104 #define DOUBLE_0_ID 105 #define VEC4_0_ID 106 #define DVEC4_0_ID 106 #define HALF_0_ID 108 #define UINT_0_ID 109 #define INT_NULL_ID 110 #define UINT_NULL_ID 111 #define ULONG_NULL_ID 120 #define UBYTE_NULL_ID 121 #define USHORT_NULL_ID 122 #define V2USHORT_NULL_ID 123 #define HALF_3_ID 112 #define FLOAT_NULL_ID 113 const std::string& Header() { static const std::string header = R"(OpCapability Shader OpCapability Float16 OpCapability Float64 OpCapability Int8 OpCapability Int16 OpCapability Int64 OpCapability CooperativeMatrixKHR OpExtension "SPV_KHR_cooperative_matrix" %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %main "main" OpExecutionMode %main OriginUpperLeft OpSource GLSL 140 OpName %main "main" %void = OpTypeVoid %void_func = OpTypeFunction %void %bool = OpTypeBool %float = OpTypeFloat 32 %double = OpTypeFloat 64 %half = OpTypeFloat 16 %101 = OpConstantTrue %bool ; Need a def with an numerical id to define id maps. %true = OpConstantTrue %bool %false = OpConstantFalse %bool %bool_null = OpConstantNull %bool %short = OpTypeInt 16 1 %ushort = OpTypeInt 16 0 %byte = OpTypeInt 8 1 %ubyte = OpTypeInt 8 0 %int = OpTypeInt 32 1 %long = OpTypeInt 64 1 %uint = OpTypeInt 32 0 %ulong = OpTypeInt 64 0 %v2int = OpTypeVector %int 2 %v4int = OpTypeVector %int 4 %v2ubyte = OpTypeVector %ubyte 2 %v4ubyte = OpTypeVector %ubyte 4 %v4byte = OpTypeVector %byte 4 %v2ushort = OpTypeVector %ushort 2 %v4ushort = OpTypeVector %ushort 4 %v2short = OpTypeVector %short 2 %v2long = OpTypeVector %long 2 %v4long = OpTypeVector %long 4 %v4float = OpTypeVector %float 4 %v4double = OpTypeVector %double 4 %v4uint = OpTypeVector %uint 4 %v2uint = OpTypeVector %uint 2 %v2ulong = OpTypeVector %ulong 2 %v2float = OpTypeVector %float 2 %v2double = OpTypeVector %double 2 %v2half = OpTypeVector %half 2 %v4half = OpTypeVector %half 4 %v2bool = OpTypeVector %bool 2 %m2x2int = OpTypeMatrix %v2int 2 %mat4v2float = OpTypeMatrix %v2float 4 %mat2v4float = OpTypeMatrix %v4float 2 %mat4v4float = OpTypeMatrix %v4float 4 %mat4v4double = OpTypeMatrix %v4double 4 %struct_v2int_int_int = OpTypeStruct %v2int %int %int %_ptr_int = OpTypePointer Function %int %_ptr_uint = OpTypePointer Function %uint %_ptr_bool = OpTypePointer Function %bool %_ptr_float = OpTypePointer Function %float %_ptr_double = OpTypePointer Function %double %_ptr_half = OpTypePointer Function %half %_ptr_long = OpTypePointer Function %long %_ptr_ulong = OpTypePointer Function %ulong %_ptr_ubyte = OpTypePointer Function %ubyte %_ptr_ushort = OpTypePointer Function %ushort %_ptr_v2int = OpTypePointer Function %v2int %_ptr_v4int = OpTypePointer Function %v4int %_ptr_v4float = OpTypePointer Function %v4float %_ptr_v4double = OpTypePointer Function %v4double %_ptr_v4half = OpTypePointer Function %v4half %_ptr_struct_v2int_int_int = OpTypePointer Function %struct_v2int_int_int %_ptr_v2float = OpTypePointer Function %v2float %_ptr_v2double = OpTypePointer Function %v2double %_ptr_v2ushort = OpTypePointer Function %v2ushort %int_2 = OpConstant %int 2 %int_arr_2 = OpTypeArray %int %int_2 %short_n1 = OpConstant %short -1 %short_0 = OpConstant %short 0 %short_2 = OpConstant %short 2 %short_3 = OpConstant %short 3 %short_n5 = OpConstant %short -5 %ubyte_1 = OpConstant %ubyte 1 %ubyte_a = OpConstant %ubyte 10 %ubyte_b = OpConstant %ubyte 11 %ubyte_c = OpConstant %ubyte 12 %ubyte_d = OpConstant %ubyte 13 %byte_n1 = OpConstant %byte -1 %byte_0 = OpConstant %byte 0 %ushort_0 = OpConstant %ushort 0 %ushort_1 = OpConstant %ushort 1 %ushort_2 = OpConstant %ushort 2 %ushort_3 = OpConstant %ushort 3 %122 = OpConstantNull %ushort ; Need a def with an numerical id to define id maps. %100 = OpConstant %int 0 ; Need a def with an numerical id to define id maps. %110 = OpConstantNull %int ; Need a def with an numerical id to define id maps. %103 = OpConstant %int 7 ; Need a def with an numerical id to define id maps. %int_0 = OpConstant %int 0 %int_1 = OpConstant %int 1 %int_3 = OpConstant %int 3 %int_4 = OpConstant %int 4 %int_10 = OpConstant %int 10 %int_1073741824 = OpConstant %int 1073741824 %int_n1 = OpConstant %int -1 %int_n24 = OpConstant %int -24 %int_n858993459 = OpConstant %int -858993459 %int_min = OpConstant %int -2147483648 %int_max = OpConstant %int 2147483647 %long_0 = OpConstant %long 0 %long_1 = OpConstant %long 1 %long_2 = OpConstant %long 2 %long_3 = OpConstant %long 3 %long_n3 = OpConstant %long -3 %long_7 = OpConstant %long 7 %long_n7 = OpConstant %long -7 %long_10 = OpConstant %long 10 %long_32768 = OpConstant %long 32768 %long_n57344 = OpConstant %long -57344 %long_n4611686018427387904 = OpConstant %long -4611686018427387904 %long_4611686018427387904 = OpConstant %long 4611686018427387904 %long_n1 = OpConstant %long -1 %long_n3689348814741910323 = OpConstant %long -3689348814741910323 %long_min = OpConstant %long -9223372036854775808 %long_max = OpConstant %long 9223372036854775807 %ulong_7 = OpConstant %ulong 7 %ulong_4611686018427387904 = OpConstant %ulong 4611686018427387904 %109 = OpConstant %uint 0 ; Need a def with an numerical id to define id maps. %111 = OpConstantNull %uint ; Need a def with an numerical id to define id maps. %120 = OpConstantNull %ulong ; Need a def with an numerical id to define id maps. %121 = OpConstantNull %ubyte ; Need a def with an numerical id to define id maps. %123 = OpConstantNull %v2ushort ; Need a def with an numerical id to define id maps. %uint_0 = OpConstant %uint 0 %uint_1 = OpConstant %uint 1 %uint_2 = OpConstant %uint 2 %uint_3 = OpConstant %uint 3 %uint_4 = OpConstant %uint 4 %uint_32 = OpConstant %uint 32 %uint_42 = OpConstant %uint 42 %uint_2147483649 = OpConstant %uint 2147483649 %uint_max = OpConstant %uint 4294967295 %uint_0x0000ffff = OpConstant %uint 65535 %ulong_0 = OpConstant %ulong 0 %ulong_1 = OpConstant %ulong 1 %ulong_2 = OpConstant %ulong 2 %ulong_9223372036854775809 = OpConstant %ulong 9223372036854775809 %ulong_max = OpConstant %ulong 18446744073709551615 %v2int_undef = OpUndef %v2int %v2int_0_0 = OpConstantComposite %v2int %int_0 %int_0 %v2int_1_0 = OpConstantComposite %v2int %int_1 %int_0 %v2int_2_2 = OpConstantComposite %v2int %int_2 %int_2 %v2int_2_3 = OpConstantComposite %v2int %int_2 %int_3 %v2int_3_2 = OpConstantComposite %v2int %int_3 %int_2 %v2int_n1_n24 = OpConstantComposite %v2int %int_n1 %int_n24 %v2int_4_4 = OpConstantComposite %v2int %int_4 %int_4 %v2int_min_max = OpConstantComposite %v2int %int_min %int_max %v2short_2_n5 = OpConstantComposite %v2short %short_2 %short_n5 %v2short_n1_0 = OpConstantComposite %v2short %short_n1 %short_0 %v2short_null = OpConstantNull %v2short %v2long_2_2 = OpConstantComposite %v2long %long_2 %long_2 %v2long_2_3 = OpConstantComposite %v2long %long_2 %long_3 %v2bool_null = OpConstantNull %v2bool %v2bool_true_false = OpConstantComposite %v2bool %true %false %v2bool_false_true = OpConstantComposite %v2bool %false %true %struct_v2int_int_int_null = OpConstantNull %struct_v2int_int_int %v2int_null = OpConstantNull %v2int %102 = OpConstantComposite %v2int %103 %103 %v4int_undef = OpUndef %v4int %v4int_0_0_0_0 = OpConstantComposite %v4int %int_0 %int_0 %int_0 %int_0 %m2x2int_undef = OpUndef %m2x2int %struct_undef_0_0 = OpConstantComposite %struct_v2int_int_int %v2int_undef %int_0 %int_0 %float_n1 = OpConstant %float -1 %104 = OpConstant %float 0 ; Need a def with an numerical id to define id maps. %113 = OpConstantNull %float ; Need a def with an numerical id to define id maps. %float_null = OpConstantNull %float %float_0 = OpConstant %float 0 %float_n0 = OpConstant %float -0.0 %float_1 = OpConstant %float 1 %float_2 = OpConstant %float 2 %float_3 = OpConstant %float 3 %float_4 = OpConstant %float 4 %float_2049 = OpConstant %float 2049 %float_n2049 = OpConstant %float -2049 %float_0p5 = OpConstant %float 0.5 %float_0p2 = OpConstant %float 0.2 %float_pi = OpConstant %float 1.5555 %float_1e16 = OpConstant %float 1e16 %float_n1e16 = OpConstant %float -1e16 %float_1en16 = OpConstant %float 1e-16 %float_n1en16 = OpConstant %float -1e-16 %v2float_0_0 = OpConstantComposite %v2float %float_0 %float_0 %v2float_2_2 = OpConstantComposite %v2float %float_2 %float_2 %v2float_2_3 = OpConstantComposite %v2float %float_2 %float_3 %v2float_3_2 = OpConstantComposite %v2float %float_3 %float_2 %v2float_4_4 = OpConstantComposite %v2float %float_4 %float_4 %v2float_2_0p5 = OpConstantComposite %v2float %float_2 %float_0p5 %v2float_0p2_0p5 = OpConstantComposite %v2float %float_0p2 %float_0p5 %v2float_null = OpConstantNull %v2float %double_n1 = OpConstant %double -1 %105 = OpConstant %double 0 ; Need a def with an numerical id to define id maps. %double_null = OpConstantNull %double %double_0 = OpConstant %double 0 %double_n0 = OpConstant %double -0.0 %double_1 = OpConstant %double 1 %double_2 = OpConstant %double 2 %double_3 = OpConstant %double 3 %double_4 = OpConstant %double 4 %double_5 = OpConstant %double 5 %double_0p5 = OpConstant %double 0.5 %double_0p2 = OpConstant %double 0.2 %v2double_0_0 = OpConstantComposite %v2double %double_0 %double_0 %v2double_2_2 = OpConstantComposite %v2double %double_2 %double_2 %v2double_2_3 = OpConstantComposite %v2double %double_2 %double_3 %v2double_3_2 = OpConstantComposite %v2double %double_3 %double_2 %v2double_4_4 = OpConstantComposite %v2double %double_4 %double_4 %v2double_2_0p5 = OpConstantComposite %v2double %double_2 %double_0p5 %v2double_null = OpConstantNull %v2double %108 = OpConstant %half 0 %half_0p5 = OpConstant %half 0.5 %half_1 = OpConstant %half 1 %half_2 = OpConstant %half 2 %112 = OpConstant %half 3 %half_null = OpConstantNull %half %half_0_1 = OpConstantComposite %v2half %108 %half_1 %v4half_0_1_0_0 = OpConstantComposite %v4half %108 %half_1 %108 %108 %106 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0 %v4float_0_0_0_0 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0 %v4float_0_0_0_1 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_1 %v4float_0_1_0_0 = OpConstantComposite %v4float %float_0 %float_1 %float_null %float_0 %v4float_1_1_1_1 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1 %v4float_1_2_3_4 = OpConstantComposite %v4float %float_1 %float_2 %float_3 %float_4 %v4float_null = OpConstantNull %v4float %mat2v4float_null = OpConstantNull %mat2v4float %mat4v4float_null = OpConstantNull %mat4v4float %mat4v4float_1_2_3_4 = OpConstantComposite %mat4v4float %v4float_1_2_3_4 %v4float_1_2_3_4 %v4float_1_2_3_4 %v4float_1_2_3_4 %mat4v4float_1_2_3_4_null = OpConstantComposite %mat4v4float %v4float_1_2_3_4 %v4float_null %v4float_1_2_3_4 %v4float_null %107 = OpConstantComposite %v4double %double_0 %double_0 %double_0 %double_0 %v4double_0_0_0_0 = OpConstantComposite %v4double %double_0 %double_0 %double_0 %double_0 %v4double_0_0_0_1 = OpConstantComposite %v4double %double_0 %double_0 %double_0 %double_1 %v4double_0_1_0_0 = OpConstantComposite %v4double %double_0 %double_1 %double_null %double_0 %v4double_1_1_1_1 = OpConstantComposite %v4double %double_1 %double_1 %double_1 %double_1 %v4double_1_2_3_4 = OpConstantComposite %v4double %double_1 %double_2 %double_3 %double_4 %v4double_1_1_1_0p5 = OpConstantComposite %v4double %double_1 %double_1 %double_1 %double_0p5 %v4double_null = OpConstantNull %v4double %mat4v4double_null = OpConstantNull %mat4v4double %mat4v4double_1_2_3_4 = OpConstantComposite %mat4v4double %v4double_1_2_3_4 %v4double_1_2_3_4 %v4double_1_2_3_4 %v4double_1_2_3_4 %mat4v4double_1_2_3_4_null = OpConstantComposite %mat4v4double %v4double_1_2_3_4 %v4double_null %v4double_1_2_3_4 %v4double_null %v4float_n1_2_1_3 = OpConstantComposite %v4float %float_n1 %float_2 %float_1 %float_3 %uint_0x3f800000 = OpConstant %uint 0x3f800000 %uint_0xbf800000 = OpConstant %uint 0xbf800000 %v2uint_0x3f800000_0xbf800000 = OpConstantComposite %v2uint %uint_0x3f800000 %uint_0xbf800000 %v4uint_1_0x0000ffff_uint_0_uint_max = OpConstantComposite %v4uint %uint_1 %uint_0x0000ffff %uint_0 %uint_max %v2uint_1_null = OpConstantComposite %v2uint %uint_1 %111 %v2uint_null = OpConstantNull %v2uint %v2ushort_1_null = OpConstantComposite %v2ushort %ushort_1 %122 %v4ushort_0_1_2_3 = OpConstantComposite %v4ushort %ushort_0 %ushort_1 %ushort_2 %ushort_3 %v2ubyte_a_b = OpConstantComposite %v2ubyte %ubyte_a %ubyte_b %v4ubyte_a_b_c_d = OpConstantComposite %v4ubyte %ubyte_a %ubyte_b %ubyte_c %ubyte_d %v4byte_n1_0_0_0 = OpConstantComposite %v4byte %byte_n1 %byte_0 %byte_0 %byte_0 %long_0xbf8000003f800000 = OpConstant %long 0xbf8000003f800000 %int_0x3FF00000 = OpConstant %int 0x3FF00000 %int_0x00000000 = OpConstant %int 0x00000000 %int_0xC05FD666 = OpConstant %int 0xC05FD666 %int_0x66666666 = OpConstant %int 0x66666666 %v4int_0x3FF00000_0x00000000_0xC05FD666_0x66666666 = OpConstantComposite %v4int %int_0x00000000 %int_0x3FF00000 %int_0x66666666 %int_0xC05FD666 %ushort_0x4400 = OpConstant %ushort 0x4400 %short_0x4400 = OpConstant %short 0x4400 %ushort_0xBC00 = OpConstant %ushort 0xBC00 %short_0xBC00 = OpConstant %short 0xBC00 %int_arr_2_undef = OpUndef %int_arr_2 %int_coop_matrix = OpTypeCooperativeMatrixKHR %int %uint_3 %uint_3 %uint_32 %uint_0 %undef_int_coop_matrix = OpUndef %int_coop_matrix %uint_coop_matrix = OpTypeCooperativeMatrixKHR %uint %uint_3 %uint_3 %uint_32 %uint_0 %undef_uint_coop_matrix = OpUndef %uint_coop_matrix %float_coop_matrix = OpTypeCooperativeMatrixKHR %float %uint_3 %uint_3 %uint_32 %uint_0 %undef_float_coop_matrix = OpUndef %float_coop_matrix )"; return header; } // Returns the header with definitions of float NaN and double NaN. Since FC // "; CHECK: [[double_n0:%\\w+]] = OpConstant [[double]] -0\n" finds // %double_nan = OpConstant %double -0x1.8p+1024 instead of // %double_n0 = OpConstant %double -0, // we separates those definitions from Header(). const std::string& HeaderWithNaN() { static const std::string headerWithNaN = Header() + R"(%float_nan = OpConstant %float -0x1.8p+128 %double_nan = OpConstant %double -0x1.8p+1024 )"; return headerWithNaN; } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, IntegerInstructionFoldingTest, ::testing::Values( // Test case 0: fold 0*n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpIMul %int %int_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: fold n*0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpIMul %int %load %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: fold 0/n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %int %int_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: fold n/0 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %int %load %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 4: fold 0/n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUDiv %uint %uint_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 5: fold n/0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %int %load %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 6: fold 0 remainder n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSRem %int %int_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 7: fold n remainder 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSRem %int %load %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 8: fold 0%n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSMod %int %int_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 9: fold n%0 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSMod %int %load %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 10: fold 0%n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUMod %uint %uint_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 11: fold n%0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUMod %uint %load %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 12: fold n << 32 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpShiftLeftLogical %uint %load %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 13: fold n >> 32 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpShiftRightLogical %uint %load %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 14: fold n | 0xFFFFFFFF InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpBitwiseOr %uint %load %uint_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFFFFF), // Test case 15: fold 0xFFFFFFFF | n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpBitwiseOr %uint %uint_max %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFFFFF), // Test case 16: fold n & 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpBitwiseAnd %uint %load %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 17: fold 1/0 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSDiv %int %int_1 %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 18: fold 1/0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUDiv %uint %uint_1 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 19: fold OpSRem 1 0 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSRem %int %int_1 %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 20: fold 1%0 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSMod %int %int_1 %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 21: fold 1%0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUMod %uint %uint_1 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 22: fold unsigned n >> 42 (undefined, so set to zero). InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpShiftRightLogical %uint %load %uint_42\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 23: fold signed n >> 42 (undefined, so set to zero). InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpShiftRightLogical %int %load %uint_42\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 24: fold n << 42 (undefined, so set to zero). InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpShiftLeftLogical %int %load %uint_42\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 25: fold -24 >> 32 (defined as -1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpShiftRightArithmetic %int %int_n24 %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1), // Test case 26: fold 2 >> 32 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpShiftRightArithmetic %int %int_2 %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 27: fold 2 >> 32 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpShiftRightLogical %int %int_2 %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 28: fold 2 << 32 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpShiftLeftLogical %int %int_2 %uint_32\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 29: fold -INT_MIN InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %int %int_min\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::min()), // Test case 30: fold UMin 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UMin %uint_3 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 31: fold UMin 4 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UMin %uint_4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 32: fold SMin 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMin %int_3 %int_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 33: fold SMin 4 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMin %int_4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 34: fold SMin short -5 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %short %1 SMin %short_n5 %short_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, -5), // Test case 35: fold UMin ushort 2 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %ushort %1 UMin %ushort_2 %ushort_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 36: fold SMin int OpConstNull -1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMin %110 %int_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1), // Test case 37: fold SMin int -1 OpConstNull InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMin %int_n1 %110\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1), // Test case 38: fold UMax 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UMax %uint_3 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4), // Test case 39: fold UMax 3 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UMax %uint_3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 40: fold SMax 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMax %int_3 %int_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4), // Test case 41: fold SMax 3 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMax %int_3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 42: fold SMax short -5 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %short %1 SMax %short_n5 %short_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 43: fold UMax ushort 2 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %ushort %1 UMax %ushort_2 %ushort_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 44: fold SMax int OpConstNull 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SMax %110 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 45: fold UClamp 2 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UClamp %uint_2 %uint_3 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 46: fold UClamp 2 0 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UClamp %uint_2 %uint_0 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 47: fold UClamp 2 0 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %uint %1 UClamp %uint_2 %uint_0 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 48: fold UClamp short 2 0 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %ushort %1 UClamp %ushort_2 %ushort_0 %ushort_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 49: fold SClamp 2 3 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SClamp %int_2 %int_3 %int_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 50: fold SClamp 2 0 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SClamp %int_2 %int_0 %int_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 51: fold SClamp 2 0 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %int %1 SClamp %int_2 %int_0 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 52: SClamp 1 2 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %int\n" + "%2 = OpExtInst %int %1 SClamp %int_1 %int_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 53: SClamp 2 x 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %int\n" + "%2 = OpExtInst %int %1 SClamp %int_2 %undef %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 54: UClamp 1 2 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %uint\n" + "%2 = OpExtInst %uint %1 UClamp %uint_1 %uint_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2), // Test case 55: UClamp 2 x 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %uint\n" + "%2 = OpExtInst %uint %1 UClamp %uint_2 %undef %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 56: Bit-cast int 0 to unsigned int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %int_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 57: Bit-cast int -24 to unsigned int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %int_n24\n" + "OpReturn\n" + "OpFunctionEnd", 2, static_cast(-24)), // Test case 58: Bit-cast int const null to unsigned int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %110\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 59: Bit-cast float 1.0f to unsigned int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, static_cast(0x3f800000)), // Test case 60: Bit-cast float constant null to unsigned int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %float_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 61: Bit-cast ushort 0xBC00 to ushort InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %ushort %ushort_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xBC00), // Test case 62: Bit-cast short 0xBC00 to ushort InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %ushort %short_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xBC00), // Test case 63: Bit-cast half 1 to ushort InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %ushort %half_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x3C00), // Test case 64: Bit-cast half const null to ushort InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %ushort %half_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x0000), // Test case 65: Bit-cast ushort 0xBC00 to short InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %short %ushort_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFBC00), // Test case 66: Bit-cast short 0xBC00 to short InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %short %short_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFBC00), // Test case 67: Bit-cast half 1 to short InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %short %half_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x3C00), // Test case 68: Bit-cast ushort 0xBC00 to half InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %half %ushort_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xBC00), // Test case 69: Bit-cast short 0xBC00 to half InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %half %short_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFBC00), // Test case 70: Bit-cast half 1 to half InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %half %half_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x3C00), // Test case 71: Bit-cast ubyte 1 to byte InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %byte %ubyte_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 72: Bit-cast byte -1 to ubyte InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %ubyte %byte_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFF), // Test case 73: Bit-cast v2shorts (-5,2) to uint InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %v2short_2_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFB0002), // Test case 74: Bit-cast v4ubytes (0xA, 0xB, 0xC, 0xD) to int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %int %v4ubyte_a_b_c_d\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x0D0C0B0A), // Test case 75: Bit-cast v2ushort (1, OpConstNull) to int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %int %v2ushort_1_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000001), // Test case 76: Bit-cast v2short OpConstNull to int InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %int %v2short_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 77: Bit-cast v2ubytes (0xA, 0xB) to ushort InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %int %v2ubyte_a_b\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x0B0A), // Test case 78: Bit-cast v2short (-1, 0) to uint InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %v2short_n1_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x0000FFFF), // Test case 79: Bit-cast v4bytes (-1, 0, 0, 0) to uint InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %uint %v4byte_n1_0_0_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x000000FF), // Test case 80: Negate 2. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %int %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, -2), // Test case 81: Negate negative short. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %short %short_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x4400 /* expected to be sign extended. */), // Test case 82: Negate positive short. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %short %short_0x4400\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xFFFFBC00 /* expected to be sign extended. */), // Test case 83: Negate a negative short. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %ushort %ushort_0xBC00\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x4400 /* expected to be zero extended. */), // Test case 84: Negate positive short. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %ushort %ushort_0x4400\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xBC00 /* expected to be zero extended. */), // Test case 85: Fold 2 + 3 (short) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIAdd %short %short_2 %short_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 5), // Test case 86: Fold 2 + -5 (short) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIAdd %short %short_2 %short_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, -3), // Test case 87: Fold int(3ll) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSConvert %int %long_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 88: Fold short(-3ll) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSConvert %short %long_n3\n" + "OpReturn\n" + "OpFunctionEnd", 2, -3), // Test case 89: Fold short(32768ll) - This should do a sign extend when // converting to short. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSConvert %short %long_32768\n" + "OpReturn\n" + "OpFunctionEnd", 2, -32768), // Test case 90: Fold short(-57344) - This should do a sign extend when // converting to short making the upper bits 0. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSConvert %short %long_n57344\n" + "OpReturn\n" + "OpFunctionEnd", 2, 8192), // Test case 91: Fold int(-5(short)). The -5 should be interpreted as an unsigned value, and be zero extended to 32-bits. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUConvert %uint %short_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 65531), // Test case 92: Fold short(-24(int)). The upper bits should be cleared. So 0xFFFFFFE8 should become 0x0000FFE8. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUConvert %ushort %int_n24\n" + "OpReturn\n" + "OpFunctionEnd", 2, 65512), // Test case 93: Fold BitReverse of 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %uint %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000), // Test case 94: Fold BitReverse of 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %uint %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 95: Fold BitReverse of uint max InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %uint %uint_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xffffffff), // Test case 96: Fold BitReverse of 0x0000FFFF InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %uint %uint_0x0000ffff\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0xffff0000), // Test case 97: Fold BitReverse of OpConstNull InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %uint %111\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); // clang-format on using LongIntegerInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(LongIntegerInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_1); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsScalarConstant()->GetU64BitValue(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P( TestCase, LongIntegerInstructionFoldingTest, ::testing::Values( // Test case 0: fold 1+4611686018427387904 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpIAdd %long %long_1 %long_4611686018427387904\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1 + 4611686018427387904), // Test case 1: fold 1-4611686018427387904 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpISub %long %long_1 %long_4611686018427387904\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1 - 4611686018427387904), // Test case 2: fold 2*4611686018427387904 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpIMul %long %long_2 %long_4611686018427387904\n" + "OpReturn\n" + "OpFunctionEnd", 2, 9223372036854775808ull), // Test case 3: fold 4611686018427387904/2 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpUDiv %ulong %ulong_4611686018427387904 %ulong_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4611686018427387904 / 2), // Test case 4: fold 4611686018427387904/2 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %long %long_4611686018427387904 %long_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4611686018427387904 / 2), // Test case 5: fold -4611686018427387904/2 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %long %long_n4611686018427387904 %long_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, -4611686018427387904 / 2), // Test case 6: fold 4611686018427387904 mod 7 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpUMod %ulong %ulong_4611686018427387904 %ulong_7\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4611686018427387904ull % 7ull), // Test case 7: fold 7 mod 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSMod %long %long_7 %long_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1ull), // Test case 8: fold 7 rem 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSRem %long %long_7 %long_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1ull), // Test case 9: fold 7 mod -3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSMod %long %long_7 %long_n3\n" + "OpReturn\n" + "OpFunctionEnd", 2, -2ll), // Test case 10: fold 7 rem 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSRem %long %long_7 %long_n3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1ll), // Test case 11: fold -7 mod 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSMod %long %long_n7 %long_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2ll), // Test case 12: fold -7 rem 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSRem %long %long_n7 %long_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1ll), // Test case 13: fold long(-24) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSConvert %long %int_n24\n" + "OpReturn\n" + "OpFunctionEnd", 2, -24ll), // Test case 14: fold long(-24) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSConvert %long %int_10\n" + "OpReturn\n" + "OpFunctionEnd", 2, 10ll), // Test case 15: fold long(-24(short)). // The upper bits should be cleared. So 0xFFFFFFE8 should become // 0x000000000000FFE8. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUConvert %ulong %short_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 65531ull), // Test case 16: fold SMin long 0 -1. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %long %1 SMin %long_0 %long_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1ll), // Test case 17: fold UMin ulong 9223372036854775809 max. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %ulong %1 UMin %ulong_9223372036854775809 %ulong_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, 9223372036854775809ull), // Test case 18: fold SMax long 0 -1. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %long %1 SMax %long_0 %long_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0ll), // Test case 19: fold UMax ulong 9223372036854775809 max. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %ulong %1 UMax %ulong_9223372036854775809 %ulong_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, 18446744073709551615ull) )); // clang-format on using UIntVectorInstructionFoldingTest = ::testing::TestWithParam>>; TEST_P(UIntVectorInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedVectorConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->GetU32(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, UIntVectorInstructionFoldingTest, ::testing::Values( // Test case 0: fold 0*n InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorShuffle %v2int %v2int_2_2 %v2int_2_3 0 3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {2,3}), // Test case 1: fold vectorshuffle of nullconstant of type vec2int InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorShuffle %v2int %v2int_null %v2int_2_3 0 3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0,3}), // Test case 2: fold bit-cast int -24 to unsigned int InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2uint %v2int_min_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, {2147483648, 2147483647}), // Test case 3: fold bit-cast nullconstant of type vec2uint to int2 InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2int %v2uint_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0, 0}), // Test case 4: fold bit-cast if any component is nullconstant InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2int %v2uint_1_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 0}), // Test case 5: fold bit-cast v4ushort (0, 1, 2, 3) to v2uint InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2uint %v4ushort_0_1_2_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0x00010000, 0x00030002}), // Test case 6: fold SNegate vector of uint InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %v2uint %v2uint_0x3f800000_0xbf800000\n" + "OpReturn\n" + "OpFunctionEnd", 2, {static_cast(-0x3f800000), static_cast(-0xbf800000ll)}), // Test case 7: fold vector components of uint (including integer overflow) InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIAdd %v2uint %v2uint_0x3f800000_0xbf800000 %v2uint_0x3f800000_0xbf800000\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0x7f000000u, 0x7f000000u}), // Test case 8: fold vector components of uint InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSConvert %v2int %v2short_2_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, {2,static_cast(-5)}), // Test case 9: fold vector components of uint (incuding integer overflow) InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUConvert %v2uint %v2short_2_n5\n" + "OpReturn\n" + "OpFunctionEnd", 2, {2,65531}), // Test case 10: fold bitreverse of a vector of uint InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %v4uint %v4uint_1_0x0000ffff_uint_0_uint_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0x80000000, 0xffff0000, 0, 0xffffffff}), // Test case 11: Fold bitreverse of ConstantNull of type v2uint InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %v2uint %v2uint_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0, 0}), // Test case 12: Fold bitreverse if any component is NullConstant InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitReverse %v2uint %v2uint_1_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0x80000000, 0}) )); // clang-format on using IntVectorInstructionFoldingTest = ::testing::TestWithParam>>; TEST_P(IntVectorInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedVectorConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->GetS32(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, IntVectorInstructionFoldingTest, ::testing::Values( // Test case 0: fold negate of a vector InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %v2int %v2int_2_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {-2, -3}), // Test case 1: fold negate of a vector containing negative values. InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %v2int %v2int_n1_n24\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 24}), // Test case 2: fold negate of a vector at the limits InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %v2int %v2int_min_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, {INT_MIN, -INT_MAX}), // Test case 3: fold vector components of int InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIMul %v2int %v2int_2_3 %v2int_2_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {4,9}) )); // clang-format on using LongIntVectorInstructionFoldingTest = ::testing::TestWithParam>>; TEST_P(LongIntVectorInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedVectorConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->GetU64(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, LongIntVectorInstructionFoldingTest, ::testing::Values( // Test case 0: fold {2,2} + {2,3} (Testing that the vector logic works // correctly. Scalar tests will check that the 64-bit values are correctly // folded.) InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpIAdd %v2long %v2long_2_2 %v2long_2_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {4,5}), // Test case 0: fold {2,2} / {2,3} (Testing that the vector logic works // correctly. Scalar tests will check that the 64-bit values are correctly // folded.) InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSDiv %v2long %v2long_2_2 %v2long_2_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1,0}) )); // clang-format on using DoubleVectorInstructionFoldingTest = ::testing::TestWithParam>>; TEST_P(DoubleVectorInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedVectorConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->GetDouble(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, DoubleVectorInstructionFoldingTest, ::testing::Values( // Test case 0: bit-cast int {0x3FF00000,0x00000000,0xC05FD666,0x66666666} // to double vector InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2double %v4int_0x3FF00000_0x00000000_0xC05FD666_0x66666666\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0,-127.35}), // Test case 1: OpVectorTimesMatrix Non-Zero Zero {{0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}} {1.0, 2.0, 3.0, 4.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4double %v4double_1_2_3_4 %mat4v4double_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0,0.0,0.0,0.0}), // Test case 2: OpVectorTimesMatrix Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {0.0, 0.0, 0.0, 0.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4double %v4double_null %mat4v4double_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0,0.0,0.0,0.0}), // Test case 3: OpVectorTimesMatrix Non-Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {1.0, 2.0, 3.0, 4.0} {30.0, 30.0, 30.0, 30.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4double %v4double_1_2_3_4 %mat4v4double_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {30.0,30.0,30.0,30.0}), // Test case 4: OpVectorTimesMatrix Non-Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, Null, {1.0, 2.0, 3.0, 4.0}, Null} {1.0, 2.0, 3.0, 4.0} {30.0, 0.0, 30.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4double %v4double_1_2_3_4 %mat4v4double_1_2_3_4_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {30.0,0.0,30.0,0.0}), // Test case 5: OpMatrixTimesVector Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4double %mat4v4double_null %v4double_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0,0.0,0.0,0.0}), // Test case 6: OpMatrixTimesVector Non-Zero Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {0.0, 0.0, 0.0, 0.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4double %mat4v4double_1_2_3_4 %v4double_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0,0.0,0.0,0.0}), // Test case 7: OpMatrixTimesVector Non-Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {10.0, 20.0, 30.0, 40.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4double %mat4v4double_1_2_3_4 %v4double_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {10.0,20.0,30.0,40.0}), // Test case 8: OpMatrixTimesVector Non-Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{1.0, 2.0, 3.0, 4.0}, Null, {1.0, 2.0, 3.0, 4.0}, Null} {10.0, 20.0, 30.0, 40.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4double %mat4v4double_1_2_3_4_null %v4double_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {4.0,8.0,12.0,16.0}) )); using FloatVectorInstructionFoldingTest = ::testing::TestWithParam>>; TEST_P(FloatVectorInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold,SPV_ENV_UNIVERSAL_1_5); CheckForExpectedVectorConstant(inst, tc.expected_result, [](const analysis::Constant* c){ return c->GetFloat();}); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, FloatVectorInstructionFoldingTest, ::testing::Values( // Test case 0: FMix {2.0, 3.0}, {0.0, 0.0} {0.2,0.5} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %v2float %1 FMix %v2float_2_3 %v2float_0_0 %v2float_0p2_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.6f,1.5f}), // Test case 0a: FMix v3float InstructionFoldingCase>( Header() + "%v3float = OpTypeVector %float 3\n" + "%float_0p1 = OpConstant %float 0.1\n" + "%v3float_2_3_4 = OpConstantComposite %v3float %float_2 %float_3 %float_4\n" + "%v3float_0_0_0 = OpConstantComposite %v3float %float_0 %float_0 %float_0\n" + "%v3float_0p2_0p5_0p1 = OpConstantComposite %v3float %float_0p2 %float_0p5 %float_0p1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %v3float %1 FMix %v3float_2_3_4 %v3float_0_0_0 %v3float_0p2_0p5_0p1\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.6f,1.5f,3.6f}), // Test case 0b: FMix v8float InstructionFoldingCase>( Header() + "%v8float = OpTypeVector %float 8\n" + "%v8float_ones = OpConstantComposite %v8float %float_1 %float_1 %float_1 %float_1 %float_1 %float_1 %float_1 %float_1\n" + "%v8float_zeros = OpConstantComposite %v8float %float_0 %float_0 %float_0 %float_0 %float_0 %float_0 %float_0 %float_0\n" + "%v8float_a = OpConstantComposite %v8float %float_0p5 %float_0p5 %float_0p5 %float_0p5 %float_0p5 %float_0p5 %float_0p5 %float_0p5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %v8float %1 FMix %v8float_ones %v8float_zeros %v8float_a\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.5f,0.5f,0.5f,0.5f,0.5f,0.5f,0.5f,0.5f}), // Test case 1: bit-cast unsigned int vector {0x3f800000, 0xbf800000} to // float vector InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2float %v2uint_0x3f800000_0xbf800000\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f,-1.0f}), // Test case 2: bit-cast long int 0xbf8000003f800000 to float vector InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpBitcast %v2float %long_0xbf8000003f800000\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f,-1.0f}), // Test case 3: OpVectorTimesMatrix Non-Zero Zero {{0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}} {1.0, 2.0, 3.0, 4.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4float %v4float_1_2_3_4 %mat4v4float_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0f,0.0f,0.0f,0.0f}), // Test case 4: OpVectorTimesMatrix Non-Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, Null, {1.0, 2.0, 3.0, 4.0}, Null} {1.0, 2.0, 3.0, 4.0} {30.0, 0.0, 30.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4float %v4float_1_2_3_4 %mat4v4float_1_2_3_4_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {30.0,0.0,30.0,0.0}), // Test case 5: OpVectorTimesMatrix Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {0.0, 0.0, 0.0, 0.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4float %v4float_null %mat4v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0f,0.0f,0.0f,0.0f}), // Test case 6: OpVectorTimesMatrix Non-Zero Non-Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {1.0, 2.0, 3.0, 4.0} {30.0, 30.0, 30.0, 30.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesMatrix %v4float %v4float_1_2_3_4 %mat4v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {30.0f,30.0f,30.0f,30.0f}), // Test case 7: OpMatrixTimesVector Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}, {0.0, 0.0, 0.0, 0.0}} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4float %mat4v4float_null %v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0f,0.0f,0.0f,0.0f}), // Test case 8: OpMatrixTimesVector Non-Zero Zero {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {0.0, 0.0, 0.0, 0.0} {0.0, 0.0, 0.0, 0.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4float %mat4v4float_1_2_3_4 %v4float_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {0.0f,0.0f,0.0f,0.0f}), // Test case 9: OpMatrixTimesVector Non-Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}, {1.0, 2.0, 3.0, 4.0}} {10.0, 20.0, 30.0, 40.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4float %mat4v4float_1_2_3_4 %v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {10.0f,20.0f,30.0f,40.0f}), // Test case 10: OpMatrixTimesVector Non-Zero Non-Zero {1.0, 2.0, 3.0, 4.0} {{1.0, 2.0, 3.0, 4.0}, Null, {1.0, 2.0, 3.0, 4.0}, Null} {10.0, 20.0, 30.0, 40.0} InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesVector %v4float %mat4v4float_1_2_3_4_null %v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {4.0,8.0,12.0,16.0}) )); // clang-format on INSTANTIATE_TEST_SUITE_P( RedundantDivVectorFloatTest, FloatVectorInstructionFoldingTest, ::testing::Values( // Test case 0: FDiv v2float self-division x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2float Function\n" + "%3 = OpLoad %v2float %n\n" + "%2 = OpFDiv %v2float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f, 1.0f}), // Test case 1: FDiv v2float -x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2float Function\n" + "%3 = OpLoad %v2float %n\n" + "%4 = OpFNegate %v2float %3\n" + "%2 = OpFDiv %v2float %4 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {-1.0f, -1.0f}), // Test case 2: FDiv v2float x / -x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2float Function\n" + "%3 = OpLoad %v2float %n\n" + "%4 = OpFNegate %v2float %3\n" + "%2 = OpFDiv %v2float %3 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {-1.0f, -1.0f}), // Test case 3: FDiv v3float self-division InstructionFoldingCase>( Header() + "%v3float = OpTypeVector %float 3\n" + "%_ptr_v3float = OpTypePointer Function %v3float\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v3float Function\n" + "%3 = OpLoad %v3float %n\n" + "%2 = OpFDiv %v3float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f, 1.0f, 1.0f}), // Test case 4: FDiv v4float self-division InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFDiv %v4float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f, 1.0f, 1.0f, 1.0f}), // Test case 5: FDiv v8float self-division InstructionFoldingCase>( Header() + "%v8float = OpTypeVector %float 8\n" + "%_ptr_v8float = OpTypePointer Function %v8float\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v8float Function\n" + "%3 = OpLoad %v8float %n\n" + "%2 = OpFDiv %v8float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f}), // Test case 6: FDiv v16float self-division InstructionFoldingCase>( Header() + "%v16float = OpTypeVector %float 16\n" + "%_ptr_v16float = OpTypePointer Function %v16float\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v16float Function\n" + "%3 = OpLoad %v16float %n\n" + "%2 = OpFDiv %v16float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f}))); INSTANTIATE_TEST_SUITE_P( RedundantDivVectorDoubleTest, DoubleVectorInstructionFoldingTest, ::testing::Values( // Test case 0: FDiv v2double self-division x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2double Function\n" + "%3 = OpLoad %v2double %n\n" + "%2 = OpFDiv %v2double %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0, 1.0}))); INSTANTIATE_TEST_SUITE_P( RedundantDivVectorIntTest, IntVectorInstructionFoldingTest, ::testing::Values( // Test case 0: SDiv v2int self-division x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpSDiv %v2int %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1}), // Test case 1: SDiv v2int -x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%4 = OpSNegate %v2int %3\n" + "%2 = OpSDiv %v2int %4 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {-1, -1}))); INSTANTIATE_TEST_SUITE_P( RedundantDivVectorUIntTest, UIntVectorInstructionFoldingTest, ::testing::Values( // Test case 0: UDiv v2uint self-division x / x InstructionFoldingCase>( Header() + "%_ptr_v2uint = OpTypePointer Function %v2uint\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2uint Function\n" + "%3 = OpLoad %v2uint %n\n" + "%2 = OpUDiv %v2uint %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1}))); INSTANTIATE_TEST_SUITE_P( ChallengerStressTest, FloatVectorInstructionFoldingTest, ::testing::Values( // Challenger Test case 0: FMix v3float InstructionFoldingCase>( Header() + "%v3float = OpTypeVector %float 3\n" + "%v3float_2_3_4 = OpConstantComposite %v3float %float_2 " "%float_3 %float_4\n" + "%v3float_0_0_0 = OpConstantComposite %v3float %float_0 " "%float_0 %float_0\n" + "%v3float_0p2_0p5_0p5 = OpConstantComposite %v3float " "%float_0p2 %float_0p5 %float_0p5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %v3float %1 FMix %v3float_2_3_4 %v3float_0_0_0 " "%v3float_0p2_0p5_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.6f, 1.5f, 2.0f}), // Challenger Test case 1: FMix v4float with different components InstructionFoldingCase>( Header() + "%v4float_2_3_4_5 = OpConstantComposite %v4float %float_2 " "%float_3 %float_4 %float_0\n" + "%v4float_0p2_0p5_0p5_0p1 = OpConstantComposite %v4float " "%float_0p2 %float_0p5 %float_0p5 %float_0p2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %v4float %1 FMix %v4float_2_3_4_5 " "%v4float_0_0_0_0 %v4float_0p2_0p5_0p5_0p1\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.6f, 1.5f, 2.0f, 0.0f}))); INSTANTIATE_TEST_SUITE_P( ChallengerStressTestInt, IntVectorInstructionFoldingTest, ::testing::Values( // Challenger Test case 0: SDiv v3int self-division x / x InstructionFoldingCase>( Header() + "%v3int = OpTypeVector %int 3\n" + "%_ptr_v3int = OpTypePointer Function %v3int\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v3int Function\n" + "%3 = OpLoad %v3int %n\n" + "%2 = OpSDiv %v3int %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1, 1}), // Challenger Test case 1: SDiv v4int self-division x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4int Function\n" + "%3 = OpLoad %v4int %n\n" + "%2 = OpSDiv %v4int %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1, 1, 1}))); INSTANTIATE_TEST_SUITE_P( ChallengerStressTestUInt, UIntVectorInstructionFoldingTest, ::testing::Values( // Challenger Test case 0: UDiv v3uint self-division x / x InstructionFoldingCase>( Header() + "%v3uint = OpTypeVector %uint 3\n" + "%_ptr_v3uint = OpTypePointer Function %v3uint\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v3uint Function\n" + "%3 = OpLoad %v3uint %n\n" + "%2 = OpUDiv %v3uint %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1, 1}), // Challenger Test case 1: UDiv v4uint self-division x / x InstructionFoldingCase>( Header() + "%_ptr_v4uint = OpTypePointer Function %v4uint\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4uint Function\n" + "%3 = OpLoad %v4uint %n\n" + "%2 = OpUDiv %v4uint %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1, 1, 1, 1}))); INSTANTIATE_TEST_SUITE_P( ChallengerStressTestDouble, DoubleVectorInstructionFoldingTest, ::testing::Values( // Challenger Test case 0: FDiv v3double self-division x / x InstructionFoldingCase>( Header() + "%v3double = OpTypeVector %double 3\n" + "%_ptr_v3double = OpTypePointer Function %v3double\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v3double Function\n" + "%3 = OpLoad %v3double %n\n" + "%2 = OpFDiv %v3double %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0, 1.0, 1.0}), // Challenger Test case 1: FDiv v4double self-division x / x InstructionFoldingCase>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFDiv %v4double %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, {1.0, 1.0, 1.0, 1.0}))); using FloatMatrixInstructionFoldingTest = ::testing::TestWithParam< InstructionFoldingCase>>>; TEST_P(FloatMatrixInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); EXPECT_EQ(inst->opcode(), spv::Op::OpCopyObject); if (inst->opcode() == spv::Op::OpCopyObject) { analysis::DefUseManager* def_use_mgr = context->get_def_use_mgr(); inst = def_use_mgr->GetDef(inst->GetSingleWordInOperand(0)); analysis::ConstantManager* const_mgr = context->get_constant_mgr(); const analysis::Constant* result = const_mgr->GetConstantFromInst(inst); EXPECT_NE(result, nullptr); if (result != nullptr) { std::vector matrix = result->AsMatrixConstant()->GetComponents(); EXPECT_EQ(matrix.size(), tc.expected_result.size()); for (size_t c = 0; c < matrix.size(); c++) { if (matrix[c]->AsNullConstant() != nullptr) { matrix[c] = const_mgr->GetNullCompositeConstant(matrix[c]->type()); } const analysis::VectorConstant* column_const = matrix[c]->AsVectorConstant(); ASSERT_NE(column_const, nullptr); const std::vector& column = column_const->GetComponents(); EXPECT_EQ(column.size(), tc.expected_result[c].size()); for (size_t r = 0; r < column.size(); r++) { EXPECT_EQ(tc.expected_result[c][r], column[r]->GetFloat()); } } } } } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, FloatMatrixInstructionFoldingTest, ::testing::Values( // Test case 0: OpTranspose square null matrix InstructionFoldingCase>>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpTranspose %mat4v4float %mat4v4float_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {{0.0f, 0.0f, 0.0f, 0.0f},{0.0f, 0.0f, 0.0f, 0.0f},{0.0f, 0.0f, 0.0f, 0.0f},{0.0f, 0.0f, 0.0f, 0.0f}}), // Test case 1: OpTranspose rectangular null matrix InstructionFoldingCase>>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpTranspose %mat4v2float %mat2v4float_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, {{0.0f, 0.0f},{0.0f, 0.0f},{0.0f, 0.0f},{0.0f, 0.0f}}), InstructionFoldingCase>>( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpTranspose %mat4v4float %mat4v4float_1_2_3_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, {{1.0f, 1.0f, 1.0f, 1.0f},{2.0f, 2.0f, 2.0f, 2.0f},{3.0f, 3.0f, 3.0f, 3.0f},{4.0f, 4.0f, 4.0f, 4.0f}}) )); // clang-format on using BooleanInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(BooleanInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsBoolConstant()->value(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold true || n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %true %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: fold n || true InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %load %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold false && n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpLogicalAnd %bool %false %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 3: fold n && false InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpLogicalAnd %bool %load %false\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold n < 0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpULessThan %bool %load %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 5: fold UINT_MAX < n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpULessThan %bool %uint_max %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold INT_MAX < n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSLessThan %bool %int_max %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 7: fold n < INT_MIN (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSLessThan %bool %load %int_min\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 0 > n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUGreaterThan %bool %uint_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold n > UINT_MAX (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUGreaterThan %bool %load %uint_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: fold n > INT_MAX (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSGreaterThan %bool %load %int_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 11: fold INT_MIN > n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpSGreaterThan %bool %int_min %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 12: fold 0 <= n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpULessThanEqual %bool %uint_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: fold n <= UINT_MAX (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpULessThanEqual %bool %load %uint_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: fold INT_MIN <= n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSLessThanEqual %bool %int_min %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: fold n <= INT_MAX (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSLessThanEqual %bool %load %int_max\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 16: fold n >= 0 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUGreaterThanEqual %bool %load %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 17: fold UINT_MAX >= n (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load = OpLoad %uint %n\n" + "%2 = OpUGreaterThanEqual %bool %uint_max %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 18: fold n >= INT_MIN (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSGreaterThanEqual %bool %load %int_min\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 19: fold INT_MAX >= n (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSGreaterThanEqual %bool %int_max %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FClampAndCmpLHS, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold 0.0 > clamp(n, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold 0.0 > clamp(n, -1.0, -1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_n1\n" + "%2 = OpFOrdGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold 0.0 >= clamp(n, 1, 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 3: fold 0.0 >= clamp(n, -1.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: fold 0.0 <= clamp(n, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold 0.0 <= clamp(n, -1.0, -1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_n1\n" + "%2 = OpFOrdLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold 0.0 < clamp(n, 1, 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold 0.0 < clamp(n, -1.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFOrdLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 0.0 > clamp(n, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFUnordGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold 0.0 > clamp(n, -1.0, -1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_n1\n" + "%2 = OpFUnordGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 10: fold 0.0 >= clamp(n, 1, 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 11: fold 0.0 >= clamp(n, -1.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold 0.0 <= clamp(n, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFUnordLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: fold 0.0 <= clamp(n, -1.0, -1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_n1\n" + "%2 = OpFUnordLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 14: fold 0.0 < clamp(n, 1, 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFUnordLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: fold 0.0 < clamp(n, -1.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, false) )); INSTANTIATE_TEST_SUITE_P(FClampAndCmpRHS, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold clamp(n, 0.0, 1.0) > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdGreaterThan %bool %clamp %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold clamp(n, 1.0, 1.0) > 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_1\n" + "%2 = OpFOrdGreaterThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold clamp(n, 1, 2) >= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdGreaterThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold clamp(n, 1.0, 2.0) >= 3.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdGreaterThanEqual %bool %clamp %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold clamp(n, 0.0, 1.0) <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdLessThanEqual %bool %clamp %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold clamp(n, 1.0, 2.0) <= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdLessThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold clamp(n, 1, 2) < 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFOrdLessThan %bool %clamp %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold clamp(n, -1.0, 0.0) < -1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFOrdLessThan %bool %clamp %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold clamp(n, 0.0, 1.0) > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFUnordGreaterThan %bool %clamp %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold clamp(n, 1.0, 2.0) > 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFUnordGreaterThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 10: fold clamp(n, 1, 2) >= 3.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFUnordGreaterThanEqual %bool %clamp %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 11: fold clamp(n, -1.0, 0.0) >= -1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordGreaterThanEqual %bool %clamp %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold clamp(n, 0.0, 1.0) <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFUnordLessThanEqual %bool %clamp %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: fold clamp(n, 1.0, 1.0) <= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_1\n" + "%2 = OpFUnordLessThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 14: fold clamp(n, 1, 2) < 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_1 %float_2\n" + "%2 = OpFUnordLessThan %bool %clamp %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: fold clamp(n, -1.0, 0.0) < -1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordLessThan %bool %clamp %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 16: fold clamp(n, -1.0, 0.0) < -1.0 (one test for double) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%ld = OpLoad %double %n\n" + "%clamp = OpExtInst %double %1 FClamp %ld %double_n1 %double_0\n" + "%2 = OpFUnordLessThan %bool %clamp %double_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false) )); // clang-format on using FloatInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(FloatInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedScalarConstant(inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsFloatConstant()->GetFloatValue(); }); } using FloatBitsInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(FloatBitsInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { float f = c->AsFloatConstant()->GetFloatValue(); uint32_t fbits{}; static_assert(sizeof(float) == sizeof(uint32_t)); std::memcpy(&fbits, &f, sizeof(uint32_t)); return fbits; }); } // Not testing NaNs because there are no expectations concerning NaNs according // to the "Precision and Operation of SPIR-V Instructions" section of the Vulkan // specification. // clang-format off INSTANTIATE_TEST_SUITE_P(FloatConstantFoldingTest, FloatInstructionFoldingTest, ::testing::Values( // Test case 0: Fold 2.0 - 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFSub %float %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 1: Fold 2.0 + 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFAdd %float %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3.0), // Test case 2: Fold 3.0 * 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFMul %float %float_3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 6.0), // Test case 3: Fold 1.0 / 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 4: Fold 1.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_1 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::infinity()), // Test case 5: Fold -1.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_n1 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, -std::numeric_limits::infinity()), // Test case 6: Fold (2.0, 3.0) dot (2.0, 0.5) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpDot %float %v2float_2_3 %v2float_2_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 5.5f), // Test case 7: Fold (0.0, 0.0) dot v InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %v\n" + "%3 = OpDot %float %v2float_0_0 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 8: Fold v dot (0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %v\n" + "%3 = OpDot %float %2 %v2float_0_0\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 9: Fold Null dot v InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %v\n" + "%3 = OpDot %float %v2float_null %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 10: Fold v dot Null InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %v\n" + "%3 = OpDot %float %2 %v2float_null\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 11: Fold -2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFNegate %float %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, -2), // Test case 12: QuantizeToF16 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 13: QuantizeToF16 positive non exact InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_2049\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2048), // Test case 14: QuantizeToF16 negative non exact InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_n2049\n" + "OpReturn\n" + "OpFunctionEnd", 2, -2048), // Test case 15: QuantizeToF16 large positive InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_1e16\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::infinity()), // Test case 16: QuantizeToF16 large negative InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_n1e16\n" + "OpReturn\n" + "OpFunctionEnd", 2, -std::numeric_limits::infinity()), // Test case 17: QuantizeToF16 small positive InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_1en16\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 18: QuantizeToF16 small negative InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_n1en16\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 19: QuantizeToF16 nan InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpQuantizeToF16 %float %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 20: FMix 1.0 4.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMix %float_1 %float_4 %float_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.6f), // Test case 21: FMin 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMin %float_1 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 22: FMin 4.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMin %float_4 %float_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.2f), // Test case 23: FMax 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMax %float_1 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 24: FMax 1.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMax %float_1 %float_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 25: FClamp 1.0 0.2 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_1 %float_0p2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 26: FClamp 0.2 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_0p2 %float_2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0f), // Test case 27: FClamp 2049.0 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_2049 %float_2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 28: FClamp 1.0 2.0 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %float\n" + "%2 = OpExtInst %float %1 FClamp %float_1 %float_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 29: FClamp 1.0 x 0.5 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %float\n" + "%2 = OpExtInst %float %1 FClamp %float_1 %undef %float_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 30: Sin 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Sin %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 31: Cos 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Cos %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 32: Tan 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Tan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 33: Asin 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Asin %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 34: Acos 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Acos %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 35: Atan 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Atan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 36: Exp 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Exp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 37: Log 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Log %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 38: Exp2 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Exp2 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 39: Log2 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Log2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 40: Sqrt 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Sqrt %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 41: Atan2 0.0 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Atan2 %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.0), // Test case 42: Pow 2.0 3.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 Pow %float_2 %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 8.0), // Test case 43: Fold 1.0 / -0.0. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_1 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, -std::numeric_limits::infinity()), // Test case 44: Fold -1.0 / -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_n1 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::infinity()), // Test case 45: Fold 0.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 46: Fold 0.0 / -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float %float_0 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 47: NMin 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_1 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 48: NMin 4.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_4 %float_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.2f), // Test case 49: NMin NaN 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_nan %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 50: NMin 2.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_2 %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0f), // Test case 51: NMin NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_nan %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 52: NMax 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_1 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 53: NMax 1.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_1 %float_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 54: NMax 1.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_1 %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 55: NMax NaN 0.5 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_nan %float_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5f), // Test case 56: NMax NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_nan %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 57: NClamp 1.0 0.2 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_1 %float_0p2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0f), // Test case 58: NClamp 0.2 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_0p2 %float_2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0f), // Test case 59: NClamp 2049.0 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_2049 %float_2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 60: NClamp 1.0 2.0 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %float\n" + "%2 = OpExtInst %float %1 NClamp %float_1 %float_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 61: NClamp 1.0 x 0.5 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %float\n" + "%2 = OpExtInst %float %1 NClamp %float_1 %undef %float_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 62: NClamp NaN 2.0 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_nan %float_2 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0f), // Test case 63: NClamp 2049.0 NaN 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_2049 %float_nan %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 64: NClamp 1.0 2.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_1 %float_2 %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0f), // Test case 65: NClamp 4.0 NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_4 %float_nan %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0f), // Test case 66: NClamp NaN NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_nan %float_nan %float_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()) )); INSTANTIATE_TEST_SUITE_P(MinMaxZeroFoldingTest, FloatBitsInstructionFoldingTest, ::testing::Values( // Test case 0: Fold FMin 0.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMin %float_0 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 1: Fold FMin -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMin %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 2: Fold FMax 0.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMax %float_0 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 3: Fold FMax -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FMax %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 4: Fold FClamp -0.0 0.0 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_n0 %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 5: Fold FClamp 0.0 -0.0 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_0 %float_n0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 6: Fold FClamp 1.0 -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_1 %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 7: Fold FClamp 0.0 -1.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_0 %float_n1 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 8: Fold FClamp -0.0 -1.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_n0 %float_n1 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 9: Fold FClamp -1.0 -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 FClamp %float_n1 %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 10: Fold NMin 0.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_0 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 11: Fold NMin -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMin %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 12: Fold NMax 0.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_0 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 13: Fold NMax -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NMax %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 14: Fold NClamp -0.0 0.0 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_n0 %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 15: Fold NClamp 0.0 -0.0 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_0 %float_n0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 16: Fold NClamp 1.0 -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_1 %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x00000000u), // Test case 17: Fold NClamp 0.0 -1.0 -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_0 %float_n1 %float_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 18: Fold NClamp -0.0 -1.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_n0 %float_n1 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u), // Test case 19: Fold NClamp -1.0 -0.0 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %float %1 NClamp %float_n1 %float_n0 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0x80000000u) )); INSTANTIATE_TEST_SUITE_P(RedundantDivFloatTest, FloatInstructionFoldingTest, ::testing::Values( // Test case 0: Fold x / x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFDiv %float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 1: Fold -x / x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpFNegate %float %3\n" + "%2 = OpFDiv %float %4 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1.0), // Test case 2: Fold x / -x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpFNegate %float %3\n" + "%2 = OpFDiv %float %3 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, -1.0) )); INSTANTIATE_TEST_SUITE_P(RedundantDivIntTest, IntegerInstructionFoldingTest, ::testing::Values( // Test case 0: Fold x / x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpSDiv %int %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 1: Fold x / x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpUDiv %uint %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1), // Test case 2: Fold -x / x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpSNegate %int %3\n" + "%2 = OpSDiv %int %4 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT32_MAX), // Test case 3: Fold x / -x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpSNegate %int %3\n" + "%2 = OpSDiv %int %3 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT32_MAX) )); // clang-format on using DoubleInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(DoubleInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsFloatConstant()->GetDoubleValue(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(DoubleConstantFoldingTest, DoubleInstructionFoldingTest, ::testing::Values( // Test case 0: Fold 2.0 - 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFSub %double %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 1: Fold 2.0 + 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFAdd %double %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3.0), // Test case 2: Fold 3.0 * 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFMul %double %double_3 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 6.0), // Test case 3: Fold 1.0 / 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 4: Fold 1.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_1 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::infinity()), // Test case 5: Fold -1.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_n1 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, -std::numeric_limits::infinity()), // Test case 6: Fold (2.0, 3.0) dot (2.0, 0.5) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpDot %double %v2double_2_3 %v2double_2_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 5.5f), // Test case 7: Fold (0.0, 0.0) dot v InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2double Function\n" + "%2 = OpLoad %v2double %v\n" + "%3 = OpDot %double %v2double_0_0 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 8: Fold v dot (0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2double Function\n" + "%2 = OpLoad %v2double %v\n" + "%3 = OpDot %double %2 %v2double_0_0\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 9: Fold Null dot v InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2double Function\n" + "%2 = OpLoad %v2double %v\n" + "%3 = OpDot %double %v2double_null %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 10: Fold v dot Null InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%v = OpVariable %_ptr_v2double Function\n" + "%2 = OpLoad %v2double %v\n" + "%3 = OpDot %double %2 %v2double_null\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0.0f), // Test case 11: Fold -2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFNegate %double %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, -2), // Test case 12: FMin 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FMin %double_1 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 13: FMin 4.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FMin %double_4 %double_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.2), // Test case 14: FMax 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FMax %double_1 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 15: FMax 1.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FMax %double_1 %double_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 16: FClamp 1.0 0.2 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FClamp %double_1 %double_0p2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 17: FClamp 0.2 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FClamp %double_0p2 %double_2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 18: FClamp 5.0 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 FClamp %double_5 %double_2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 19: FClamp 1.0 2.0 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 FClamp %double_1 %double_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 20: FClamp 1.0 x 0.5 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 FClamp %double_1 %undef %double_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 21: Sqrt 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 Sqrt %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 22: Pow 2.0 3.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 Pow %double_2 %double_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 8.0), // Test case 23: Fold 1.0 / -0.0. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_1 %double_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, -std::numeric_limits::infinity()), // Test case 24: Fold -1.0 / -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_n1 %double_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::infinity()), // Test case 25: Fold 0.0 / 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_0 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 26: Fold 0.0 / -0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %double %double_0 %double_n0\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 27: NMin 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMin %double_1 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 28: NMin 4.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMin %double_4 %double_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.2), // Test case 29: NMax 1.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMax %double_1 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 30: NMin NaN 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMin %double_nan %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 31: NMin 2.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMin %double_2 %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 32: NMin NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMin %double_nan %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 33: NMax 1.0 0.2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMax %double_1 %double_0p2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 34: NMax 1.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMax %double_1 %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 35: NMax NaN 0.5 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMax %double_nan %double_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 36: NMax NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NMax %double_nan %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()), // Test case 37: NClamp 1.0 0.2 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_1 %double_0p2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 1.0), // Test case 38: NClamp 0.2 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_0p2 %double_2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 39: NClamp 5.0 2.0 4.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_5 %double_2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 40: NClamp 1.0 2.0 x InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 NClamp %double_1 %double_2 %undef\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 41: NClamp 1.0 x 0.5 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%undef = OpUndef %double\n" + "%2 = OpExtInst %double %1 NClamp %double_1 %undef %double_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0.5), // Test case 42: NClamp NaN 2.0 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_nan %double_2 %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 43: NClamp 5.0 NaN 4.0 InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_5 %double_nan %double_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 44: NClamp 1.0 2.0 NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_1 %double_2 %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 2.0), // Test case 45: NClamp 4.0 NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_4 %double_nan %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4.0), // Test case 46: NClamp NaN NaN NaN InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %double %1 NClamp %double_nan %double_nan %double_nan\n" + "OpReturn\n" + "OpFunctionEnd", 2, std::numeric_limits::quiet_NaN()) )); // clang-format on // clang-format off INSTANTIATE_TEST_SUITE_P(DoubleOrderedCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold 1.0 == 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold 1.0 != 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold 1.0 < 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold 1.0 > 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold 1.0 <= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold 1.0 >= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold 1.0 == 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold 1.0 != 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 1.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold 1.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: fold 1.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: fold 1.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold 2.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 13: fold 2.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: fold 2.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 15: fold 2.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(DoubleUnorderedCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold 1.0 == 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold 1.0 != 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold 1.0 < 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold 1.0 > 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold 1.0 <= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold 1.0 >= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %double_1 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold 1.0 == 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold 1.0 != 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 1.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold 1.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: fold 1.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: fold 1.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %double_1 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold 2.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 13: fold 2.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: fold 2.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 15: fold 2.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %double_2 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FloatOrderedCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold 1.0 == 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold 1.0 != 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold 1.0 < 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold 1.0 > 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold 1.0 <= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold 1.0 >= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold 1.0 == 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold 1.0 != 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 1.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold 1.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: fold 1.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: fold 1.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold 2.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThan %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 13: fold 2.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThan %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: fold 2.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdLessThanEqual %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 15: fold 2.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FloatUnorderedCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold 1.0 == 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold 1.0 != 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold 1.0 < 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold 1.0 > 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 4: fold 1.0 <= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold 1.0 >= 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_1 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: fold 1.0 == 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold 1.0 != 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: fold 1.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: fold 1.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: fold 1.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: fold 1.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_1 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: fold 2.0 < 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThan %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 13: fold 2.0 > 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThan %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: fold 2.0 <= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordLessThanEqual %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 15: fold 2.0 >= 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_2 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(DoubleNaNCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold NaN == 0 (ord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %double_nan %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold NaN == NaN (unord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %double_nan %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold NaN != NaN (ord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %double_nan %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 3: fold NaN != NaN (unord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %double_nan %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FloatNaNCompareConstantFoldingTest, BooleanInstructionFoldingTest, ::testing::Values( // Test case 0: fold NaN == 0 (ord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdEqual %bool %float_nan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 1: fold NaN == NaN (unord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordEqual %bool %float_nan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold NaN != NaN (ord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFOrdNotEqual %bool %float_nan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 3: fold NaN != NaN (unord) InstructionFoldingCase( HeaderWithNaN() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFUnordNotEqual %bool %float_nan %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); // clang-format on template struct InstructionFoldingCaseWithMap { InstructionFoldingCaseWithMap(const std::string& tb, uint32_t id, ResultType result, std::function map) : test_body(tb), id_to_fold(id), expected_result(result), id_map(map) {} std::string test_body; uint32_t id_to_fold; ResultType expected_result; std::function id_map; }; using IntegerInstructionFoldingTestWithMap = ::testing::TestWithParam>; TEST_P(IntegerInstructionFoldingTestWithMap, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = GetInstructionToFold(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); inst = context->get_instruction_folder().FoldInstructionToConstant(inst, tc.id_map); EXPECT_NE(inst, nullptr); CheckForExpectedScalarConstant(inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsIntConstant()->GetU32BitValue(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, IntegerInstructionFoldingTestWithMap, ::testing::Values( // Test case 0: fold %3 = 0; %3 * n InstructionFoldingCaseWithMap( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%3 = OpCopyObject %int %int_0\n" "%2 = OpIMul %int %3 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0, [](uint32_t id) {return (id == 3 ? INT_0_ID : id);}) )); // clang-format on using BooleanInstructionFoldingTestWithMap = ::testing::TestWithParam>; TEST_P(BooleanInstructionFoldingTestWithMap, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = GetInstructionToFold(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); inst = context->get_instruction_folder().FoldInstructionToConstant(inst, tc.id_map); ASSERT_NE(inst, nullptr); CheckForExpectedScalarConstant( inst, tc.expected_result, [](const analysis::Constant* c) { return c->AsBoolConstant()->value(); }); } // clang-format off INSTANTIATE_TEST_SUITE_P(TestCase, BooleanInstructionFoldingTestWithMap, ::testing::Values( // Test case 0: fold %3 = true; %3 || n InstructionFoldingCaseWithMap( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%3 = OpCopyObject %bool %true\n" + "%2 = OpLogicalOr %bool %3 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true, [](uint32_t id) {return (id == 3 ? TRUE_ID : id);}) )); // clang-format on using GeneralInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(GeneralInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); EXPECT_TRUE((inst == nullptr) == (tc.expected_result == 0)); if (inst != nullptr) { EXPECT_EQ(inst->opcode(), spv::Op::OpCopyObject); EXPECT_EQ(inst->GetSingleWordInOperand(0), tc.expected_result); } } // clang-format off INSTANTIATE_TEST_SUITE_P(IntegerArithmeticTestCases, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold n * m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpIMul %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't fold n / m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpUDiv %uint %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Don't fold n / m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpSDiv %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Don't fold n remainder m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpSRem %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 4: Don't fold n % m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpSMod %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 5: Don't fold n % m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpUMod %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 6: Don't fold n << m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpShiftRightLogical %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 7: Don't fold n >> m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpShiftLeftLogical %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 8: Don't fold n | m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpBitwiseOr %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 9: Don't fold n & m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpBitwiseAnd %int %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 10: Don't fold n < m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpULessThan %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 11: Don't fold n > m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpUGreaterThan %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 12: Don't fold n <= m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpULessThanEqual %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 13: Don't fold n >= m (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%load_m = OpLoad %uint %m\n" + "%2 = OpUGreaterThanEqual %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 14: Don't fold n < m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpULessThan %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 15: Don't fold n > m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpUGreaterThan %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 16: Don't fold n <= m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpULessThanEqual %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 17: Don't fold n >= m (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%load_m = OpLoad %int %m\n" + "%2 = OpUGreaterThanEqual %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 18: Don't fold n || m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%m = OpVariable %_ptr_bool Function\n" + "%load_n = OpLoad %bool %n\n" + "%load_m = OpLoad %bool %m\n" + "%2 = OpLogicalOr %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 19: Don't fold n && m InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%m = OpVariable %_ptr_bool Function\n" + "%load_n = OpLoad %bool %n\n" + "%load_m = OpLoad %bool %m\n" + "%2 = OpLogicalAnd %bool %load_n %load_m\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 20: Don't fold n * 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpIMul %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 21: Don't fold n / 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpUDiv %uint %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 22: Don't fold n / 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpSDiv %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 23: Don't fold n remainder 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpSRem %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 24: Don't fold n % 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpSMod %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 25: Don't fold n % 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpUMod %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 26: Don't fold n << 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpShiftRightLogical %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 27: Don't fold n >> 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpShiftLeftLogical %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 28: Don't fold n | 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpBitwiseOr %int %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 29: Don't fold n & 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpBitwiseAnd %uint %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 30: Don't fold n < 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpULessThan %bool %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 31: Don't fold n > 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpUGreaterThan %bool %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 32: Don't fold n <= 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpULessThanEqual %bool %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 33: Don't fold n >= 3 (unsigned) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%load_n = OpLoad %uint %n\n" + "%2 = OpUGreaterThanEqual %bool %load_n %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 34: Don't fold n < 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpULessThan %bool %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 35: Don't fold n > 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpUGreaterThan %bool %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 36: Don't fold n <= 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpULessThanEqual %bool %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 37: Don't fold n >= 3 (signed) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load_n = OpLoad %int %n\n" + "%2 = OpUGreaterThanEqual %bool %load_n %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 38: fold 1*n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpIMul %int %int_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 39: fold n*1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpIMul %int %3 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 40: Don't fold comparisons of 64-bit types // (https://github.com/KhronosGroup/SPIRV-Tools/issues/3343). InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSLessThan %bool %long_0 %long_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 41: Don't fold OpSNegate for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSNegate %int_coop_matrix %undef_int_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 42: Don't fold OpIAdd for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIAdd %int_coop_matrix %undef_int_coop_matrix %undef_int_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 43: Don't fold OpISub for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpISub %int_coop_matrix %undef_int_coop_matrix %undef_int_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 44: Don't fold OpIMul for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpIMul %int_coop_matrix %undef_int_coop_matrix %undef_int_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 45: Don't fold OpSDiv for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpSDiv %int_coop_matrix %undef_int_coop_matrix %undef_int_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 46: Don't fold OpUDiv for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpUDiv %uint_coop_matrix %undef_uint_coop_matrix %undef_uint_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 47: Don't fold OpMatrixTimesScalar for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesScalar %uint_coop_matrix %undef_uint_coop_matrix %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); INSTANTIATE_TEST_SUITE_P(CompositeExtractFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: fold Insert feeding extract InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeInsert %v4int %2 %v4int_0_0_0_0 0\n" + "%4 = OpCompositeInsert %v4int %int_1 %3 1\n" + "%5 = OpCompositeInsert %v4int %int_1 %4 2\n" + "%6 = OpCompositeInsert %v4int %int_1 %5 3\n" + "%7 = OpCompositeExtract %int %6 0\n" + "OpReturn\n" + "OpFunctionEnd", 7, 2), // Test case 1: fold Composite construct feeding extract (position 0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v4int %2 %int_0 %int_0 %int_0\n" + "%4 = OpCompositeExtract %int %3 0\n" + "OpReturn\n" + "OpFunctionEnd", 4, 2), // Test case 2: fold Composite construct feeding extract (position 3) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v4int %2 %int_0 %int_0 %100\n" + "%4 = OpCompositeExtract %int %3 3\n" + "OpReturn\n" + "OpFunctionEnd", 4, INT_0_ID), // Test case 3: fold Composite construct with vectors feeding extract (scalar element) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v2int %2 %int_0\n" + "%4 = OpCompositeConstruct %v4int %3 %int_0 %100\n" + "%5 = OpCompositeExtract %int %4 3\n" + "OpReturn\n" + "OpFunctionEnd", 5, INT_0_ID), // Test case 4: fold Composite construct with vectors feeding extract (start of vector element) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v2int %2 %int_0\n" + "%4 = OpCompositeConstruct %v4int %3 %int_0 %100\n" + "%5 = OpCompositeExtract %int %4 0\n" + "OpReturn\n" + "OpFunctionEnd", 5, 2), // Test case 5: fold Composite construct with vectors feeding extract (middle of vector element) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v2int %int_0 %2\n" + "%4 = OpCompositeConstruct %v4int %3 %int_0 %100\n" + "%5 = OpCompositeExtract %int %4 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, 2), // Test case 6: fold Composite construct with multiple indices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %n\n" + "%3 = OpCompositeConstruct %v2int %int_0 %2\n" + "%4 = OpCompositeConstruct %struct_v2int_int_int %3 %int_0 %100\n" + "%5 = OpCompositeExtract %int %4 0 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, 2), // Test case 7: fold constant extract. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeExtract %int %102 1\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_7_ID), // Test case 8: constant struct has OpUndef InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeExtract %int %struct_undef_0_0 0 1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 9: Extracting a member of element inserted via Insert InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_struct_v2int_int_int Function\n" + "%2 = OpLoad %struct_v2int_int_int %n\n" + "%3 = OpCompositeInsert %struct_v2int_int_int %102 %2 0\n" + "%4 = OpCompositeExtract %int %3 0 1\n" + "OpReturn\n" + "OpFunctionEnd", 4, 103), // Test case 10: Extracting a element that is partially changed by Insert. (Don't fold) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_struct_v2int_int_int Function\n" + "%2 = OpLoad %struct_v2int_int_int %n\n" + "%3 = OpCompositeInsert %struct_v2int_int_int %int_0 %2 0 1\n" + "%4 = OpCompositeExtract %v2int %3 0\n" + "OpReturn\n" + "OpFunctionEnd", 4, 0), // Test case 11: Extracting from result of vector shuffle (first input) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %n\n" + "%3 = OpVectorShuffle %v2int %102 %2 3 0\n" + "%4 = OpCompositeExtract %int %3 1\n" + "OpReturn\n" + "OpFunctionEnd", 4, INT_7_ID), // Test case 12: Extracting from result of vector shuffle (second input) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %n\n" + "%3 = OpVectorShuffle %v2int %2 %102 2 0\n" + "%4 = OpCompositeExtract %int %3 0\n" + "OpReturn\n" + "OpFunctionEnd", 4, INT_7_ID), // Test case 13: https://github.com/KhronosGroup/SPIRV-Tools/issues/2608 // Out of bounds access. Do not fold. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpConstantComposite %v4float %float_1 %float_1 %float_1 %float_1\n" + "%3 = OpCompositeExtract %float %2 4\n" + "OpReturn\n" + "OpFunctionEnd", 3, 0), // Test case 14: https://github.com/KhronosGroup/SPIRV-Tools/issues/3631 // Extract the component right after the vector constituent. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeConstruct %v2int %int_0 %int_0\n" + "%3 = OpCompositeConstruct %v4int %2 %100 %int_0\n" + "%4 = OpCompositeExtract %int %3 2\n" + "OpReturn\n" + "OpFunctionEnd", 4, INT_0_ID), // Test case 15: // Don't fold extract fed by construct with vector result if the index is // past the last element. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeConstruct %v2int %int_0 %int_0\n" + "%3 = OpCompositeConstruct %v4int %2 %100 %int_0\n" + "%4 = OpCompositeExtract %int %3 4\n" + "OpReturn\n" + "OpFunctionEnd", 4, 0) )); INSTANTIATE_TEST_SUITE_P(CompositeConstructFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: fold Extracts feeding construct InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCopyObject %v4int %v4int_0_0_0_0\n" + "%3 = OpCompositeExtract %int %2 0\n" + "%4 = OpCompositeExtract %int %2 1\n" + "%5 = OpCompositeExtract %int %2 2\n" + "%6 = OpCompositeExtract %int %2 3\n" + "%7 = OpCompositeConstruct %v4int %3 %4 %5 %6\n" + "OpReturn\n" + "OpFunctionEnd", 7, 2), // Test case 1: Don't fold Extracts feeding construct (Different source) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCopyObject %v4int %v4int_0_0_0_0\n" + "%3 = OpCompositeExtract %int %2 0\n" + "%4 = OpCompositeExtract %int %2 1\n" + "%5 = OpCompositeExtract %int %2 2\n" + "%6 = OpCompositeExtract %int %v4int_0_0_0_0 3\n" + "%7 = OpCompositeConstruct %v4int %3 %4 %5 %6\n" + "OpReturn\n" + "OpFunctionEnd", 7, 0), // Test case 2: Don't fold Extracts feeding construct (bad indices) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCopyObject %v4int %v4int_0_0_0_0\n" + "%3 = OpCompositeExtract %int %2 0\n" + "%4 = OpCompositeExtract %int %2 0\n" + "%5 = OpCompositeExtract %int %2 2\n" + "%6 = OpCompositeExtract %int %2 3\n" + "%7 = OpCompositeConstruct %v4int %3 %4 %5 %6\n" + "OpReturn\n" + "OpFunctionEnd", 7, 0), // Test case 3: Don't fold Extracts feeding construct (different type) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCopyObject %struct_v2int_int_int %struct_v2int_int_int_null\n" + "%3 = OpCompositeExtract %v2int %2 0\n" + "%4 = OpCompositeExtract %int %2 1\n" + "%5 = OpCompositeExtract %int %2 2\n" + "%7 = OpCompositeConstruct %v4int %3 %4 %5\n" + "OpReturn\n" + "OpFunctionEnd", 7, 0), // Test case 4: Fold construct with constants to constant. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeConstruct %v2int %103 %103\n" + "OpReturn\n" + "OpFunctionEnd", 2, VEC2_0_ID), // Test case 5: Don't segfault when trying to fold an OpCompositeConstruct // for an empty struct, and we reached the id limit. InstructionFoldingCase( Header() + "%empty_struct = OpTypeStruct\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%4194303 = OpCompositeConstruct %empty_struct\n" + "OpReturn\n" + "OpFunctionEnd", 4194303, 0) )); INSTANTIATE_TEST_SUITE_P(PhiFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Fold phi with the same values for all edges. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + " OpBranchConditional %true %l1 %l2\n" + "%l1 = OpLabel\n" + " OpBranch %merge_lab\n" + "%l2 = OpLabel\n" + " OpBranch %merge_lab\n" + "%merge_lab = OpLabel\n" + "%2 = OpPhi %int %100 %l1 %100 %l2\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_0_ID), // Test case 1: Fold phi in pass through loop. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + " OpBranch %l1\n" + "%l1 = OpLabel\n" + "%2 = OpPhi %int %100 %main_lab %2 %l1\n" + " OpBranchConditional %true %l1 %merge_lab\n" + "%merge_lab = OpLabel\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_0_ID), // Test case 2: Don't Fold phi because of different values. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + " OpBranch %l1\n" + "%l1 = OpLabel\n" + "%2 = OpPhi %int %int_0 %main_lab %int_3 %l1\n" + " OpBranchConditional %true %l1 %merge_lab\n" + "%merge_lab = OpLabel\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); INSTANTIATE_TEST_SUITE_P(FloatRedundantFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold n + 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFAdd %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't fold n - 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFSub %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Don't fold n * 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMul %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Fold n + 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFAdd %float %3 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 4: Fold 0.0 + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFAdd %float %float_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 5: Fold n - 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFSub %float %3 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 6: Fold n * 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMul %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 7: Fold 1.0 * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMul %float %float_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 8: Fold n / 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFDiv %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 9: Don't fold n % 1.0 // If `n` is not a whole number, the answer is not 0. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMod %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 10: Fold n * 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMul %float %3 %104\n" + "OpReturn\n" + "OpFunctionEnd", 2, FLOAT_0_ID), // Test case 11: Fold 0.0 * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMul %float %104 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, FLOAT_0_ID), // Test case 12: Fold 0.0 / n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFDiv %float %104 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, FLOAT_0_ID), // Test case 13: Fold 0.0 % n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFMod %float %104 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, FLOAT_0_ID), // Test case 14: Don't fold mix(a, b, 2.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_float Function\n" + "%b = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %a\n" + "%4 = OpLoad %float %b\n" + "%2 = OpExtInst %float %1 FMix %3 %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 15: Fold mix(a, b, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_float Function\n" + "%b = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %a\n" + "%4 = OpLoad %float %b\n" + "%2 = OpExtInst %float %1 FMix %3 %4 %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 16: Fold mix(a, b, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_float Function\n" + "%b = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %a\n" + "%4 = OpLoad %float %b\n" + "%2 = OpExtInst %float %1 FMix %3 %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4), // Test case 17: Fold vector fadd with null InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %a\n" + "%3 = OpFAdd %v2float %2 %v2float_null\n" + "OpReturn\n" + "OpFunctionEnd", 3, 2), // Test case 18: Fold vector fadd with null InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %a\n" + "%3 = OpFAdd %v2float %v2float_null %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, 2), // Test case 19: Fold vector fsub with null InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %a\n" + "%3 = OpFSub %v2float %2 %v2float_null\n" + "OpReturn\n" + "OpFunctionEnd", 3, 2), // Test case 20: Fold 0.0(half) * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_half Function\n" + "%3 = OpLoad %half %n\n" + "%2 = OpFMul %half %108 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, HALF_0_ID), // Test case 21: Don't fold 1.0(half) * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_half Function\n" + "%3 = OpLoad %half %n\n" + "%2 = OpFMul %half %half_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 22: Don't fold 1.0 * 1.0 (half) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFMul %half %half_1 %half_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 23: Don't fold (0.0, 1.0) * (0.0, 1.0) (half) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFMul %v2half %half_0_1 %half_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 24: Don't fold (0.0, 1.0) dotp (0.0, 1.0) (half) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpDot %half %half_0_1 %half_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 25: Don't fold 1.0(half) / 2.0(half) // We do not have to code to emulate 16-bit float operations. Just make sure we do not crash. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_half Function\n" + "%3 = OpLoad %half %n\n" + "%2 = OpFDiv %half %half_1 %half_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 26: Don't fold OpFNegate for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFNegate %float_coop_matrix %undef_float_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 27: Don't fold OpFAdd for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFAdd %float_coop_matrix %undef_float_coop_matrix %undef_float_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 28: Don't fold OpFSub for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFSub %float_coop_matrix %undef_float_coop_matrix %undef_float_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 29: Don't fold OpFMul for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFMul %float_coop_matrix %undef_float_coop_matrix %undef_float_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 30: Don't fold OpFDiv for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFDiv %float_coop_matrix %undef_float_coop_matrix %undef_float_coop_matrix\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 31: Don't fold OpMatrixTimesScalar for cooperative matrices. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpMatrixTimesScalar %float_coop_matrix %undef_float_coop_matrix %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 32: Don't fold FMix half (1.0, 2.0, 0.5) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %half %1 FMix %half_1 %half_2 %half_0p5\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 33: Fold FMix half (3.0, 2.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %half %1 FMix %112 %half_2 %108\n" + "OpReturn\n" + "OpFunctionEnd", 2, HALF_3_ID), // Test case 34: Fold FMix half (3.0, 2.0, null) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %half %1 FMix %112 %half_2 %half_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, HALF_3_ID), // Test case 35: Don't fold FMix half (1.0, 2.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpExtInst %half %1 FMix %half_1 %half_2 %half_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 36: Fold n - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFSub %float %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, FLOAT_NULL_ID), // Test case 37: Fold n - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpISub %int %3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_NULL_ID) )); INSTANTIATE_TEST_SUITE_P(DoubleRedundantFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold n + 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFAdd %double %3 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't fold n - 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFSub %double %3 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Don't fold n * 2.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFMul %double %3 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Fold n + 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFAdd %double %3 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 4: Fold 0.0 + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFAdd %double %double_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 5: Fold n - 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFSub %double %3 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 6: Fold n * 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFMul %double %3 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 7: Fold 1.0 * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFMul %double %double_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 8: Fold n / 1.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFDiv %double %3 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 9: Fold n * 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFMul %double %3 %105\n" + "OpReturn\n" + "OpFunctionEnd", 2, DOUBLE_0_ID), // Test case 10: Fold 0.0 * n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFMul %double %105 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, DOUBLE_0_ID), // Test case 11: Fold 0.0 / n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFDiv %double %105 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, DOUBLE_0_ID), // Test case 12: Don't fold mix(a, b, 2.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_double Function\n" + "%b = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %a\n" + "%4 = OpLoad %double %b\n" + "%2 = OpExtInst %double %1 FMix %3 %4 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 13: Fold mix(a, b, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_double Function\n" + "%b = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %a\n" + "%4 = OpLoad %double %b\n" + "%2 = OpExtInst %double %1 FMix %3 %4 %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 14: Fold mix(a, b, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%a = OpVariable %_ptr_double Function\n" + "%b = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %a\n" + "%4 = OpLoad %double %b\n" + "%2 = OpExtInst %double %1 FMix %3 %4 %double_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 4) )); INSTANTIATE_TEST_SUITE_P(FloatVectorRedundantFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold a * vec4(0.0, 0.0, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFMul %v4float %3 %v4float_0_0_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Fold a * vec4(0.0, 0.0, 0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFMul %v4float %3 %106\n" + "OpReturn\n" + "OpFunctionEnd", 2, VEC4_0_ID), // Test case 2: Fold a * vec4(1.0, 1.0, 1.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFMul %v4float %3 %v4float_1_1_1_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3) )); INSTANTIATE_TEST_SUITE_P(DoubleVectorRedundantFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold a * vec4(0.0, 0.0, 0.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFMul %v4double %3 %v4double_0_0_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Fold a * vec4(0.0, 0.0, 0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFMul %v4double %3 %106\n" + "OpReturn\n" + "OpFunctionEnd", 2, DVEC4_0_ID), // Test case 2: Fold a + vec4(0.0, 0.0, 0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFAdd %v4double %3 %106\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 3: Fold a - vec4(0.0, 0.0, 0.0, 0.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFSub %v4double %3 %106\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 4: Fold a * vec4(1.0, 1.0, 1.0, 1.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFMul %v4double %3 %v4double_1_1_1_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3) )); INSTANTIATE_TEST_SUITE_P(IntegerRedundantFoldingTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold n + 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpIAdd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't fold 1 + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpIAdd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Fold n | 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpBitwiseOr %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 3: Fold n ^ 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpBitwiseXor %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 4: Fold n >> 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftRightLogical %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 5: Fold n >> 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftRightArithmetic %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 6: Fold n << 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftLeftLogical %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 7: Fold n + 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpIAdd %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 8: Fold n - 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpISub %uint %3 %uint_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 9: Fold 0 | n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpBitwiseOr %uint %uint_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 10: Fold 0 ^ n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpBitwiseXor %uint %uint_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 11: Fold 0 + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpIAdd %uint %uint_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 12: Don't fold n + (1,0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpIAdd %v2int %3 %v2int_1_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 13: Don't fold (1,0) + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpIAdd %v2int %v2int_1_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 14: Fold n + (0,0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpIAdd %v2int %3 %v2int_0_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 15: Fold (0,0) + n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpIAdd %v2int %v2int_0_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 16: Fold n | (0,0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpBitwiseOr %v2int %3 %v2int_0_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 17: Fold (0,0) | n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%3 = OpLoad %v2int %n\n" + "%2 = OpBitwiseOr %v2int %v2int_0_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 18: Fold 0 >> n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftRightLogical %uint %109 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_0_ID), // Test case 19: Fold 0 >> n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftRightArithmetic %uint %109 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_0_ID), // Test case 20: Fold 0 << n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpShiftLeftLogical %uint %109 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_0_ID), // Test case 21: Fold 0 / n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpSDiv %int %100 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_0_ID), // Test case 22: Fold 0 / n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpUDiv %uint %109 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_0_ID), // Test case 23: Fold 0 % n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpSMod %int %int_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_0_ID), // Test case 24: Fold 0 % n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpUMod %uint %109 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_0_ID), // Test case 25: Fold n % 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpSMod %int %3 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, INT_NULL_ID), // Test case 26: Fold n % 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpUMod %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 27: Don't fold because of undefined value. Using 4294967295 // means that entry is undefined. We do not expect it to ever happen, so // not worth folding. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpVectorShuffle %v2int %v2int_null %v2int_2_3 4294967295 3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 28: Don't fold because of undefined value. Using 4294967295 // means that entry is undefined. We do not expect it to ever happen, so // not worth folding. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpVectorShuffle %v2int %v2int_null %v2int_2_3 0 4294967295 \n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); INSTANTIATE_TEST_SUITE_P(ClampAndCmpLHS, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't Fold 0.0 < clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't Fold 0.0 < clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Don't Fold 0.0 <= clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Don't Fold 0.0 <= clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdLessThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 4: Don't Fold 0.0 > clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 5: Don't Fold 0.0 > clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 6: Don't Fold 0.0 >= clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 7: Don't Fold 0.0 >= clamp(-1, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdGreaterThanEqual %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 8: Don't Fold 0.0 < clamp(0, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFUnordLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 9: Don't Fold 0.0 < clamp(0, 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdLessThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 10: Don't Fold 0.0 > clamp(-1, 0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 11: Don't Fold 0.0 > clamp(-1, 0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFOrdGreaterThan %bool %float_0 %clamp\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); INSTANTIATE_TEST_SUITE_P(ClampAndCmpRHS, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Don't Fold clamp(-1, 1) < 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordLessThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Don't Fold clamp(-1, 1) < 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdLessThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 2: Don't Fold clamp(-1, 1) <= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordLessThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Don't Fold clamp(-1, 1) <= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdLessThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 4: Don't Fold clamp(-1, 1) > 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordGreaterThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 5: Don't Fold clamp(-1, 1) > 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdGreaterThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 6: Don't Fold clamp(-1, 1) >= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFUnordGreaterThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 7: Don't Fold clamp(-1, 1) >= 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_1\n" + "%2 = OpFOrdGreaterThanEqual %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 8: Don't Fold clamp(-1, 0) < 0.0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordLessThan %bool %clamp %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 9: Don't Fold clamp(0, 1) < 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_0 %float_1\n" + "%2 = OpFOrdLessThan %bool %clamp %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 10: Don't Fold clamp(-1, 0) > -1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFUnordGreaterThan %bool %clamp %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 11: Don't Fold clamp(-1, 0) > -1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%ld = OpLoad %float %n\n" + "%clamp = OpExtInst %float %1 FClamp %ld %float_n1 %float_0\n" + "%2 = OpFOrdGreaterThan %bool %clamp %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0) )); INSTANTIATE_TEST_SUITE_P(FToIConstantFoldingTest, IntegerInstructionFoldingTest, ::testing::Values( // Test case 0: Fold int(3.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpConvertFToS %int %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 1: Fold uint(3.0) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpConvertFToU %int %float_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3) )); INSTANTIATE_TEST_SUITE_P(IToFConstantFoldingTest, FloatInstructionFoldingTest, ::testing::Values( // Test case 0: Fold float(3) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpConvertSToF %float %int_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3.0), // Test case 1: Fold float(3u) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpConvertUToF %float %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3.0) )); // clang-format on using ToNegateFoldingTest = ::testing::TestWithParam>; TEST_P(ToNegateFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_5); EXPECT_TRUE((inst == nullptr) == (tc.expected_result == 0)); if (inst != nullptr) { EXPECT_EQ(inst->opcode(), spv::Op::OpFNegate); EXPECT_EQ(inst->GetSingleWordInOperand(0), tc.expected_result); } } // clang-format off INSTANTIATE_TEST_SUITE_P(FloatRedundantSubFoldingTest, ToNegateFoldingTest, ::testing::Values( // Test case 0: Don't fold 1.0 - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFSub %float %float_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Fold 0.0 - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%2 = OpFSub %float %float_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 2: Don't fold (0,0,0,1) - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFSub %v4float %v4float_0_0_0_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Fold (0,0,0,0) - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%3 = OpLoad %v4float %n\n" + "%2 = OpFSub %v4float %v4float_0_0_0_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3) )); INSTANTIATE_TEST_SUITE_P(DoubleRedundantSubFoldingTest, ToNegateFoldingTest, ::testing::Values( // Test case 0: Don't fold 1.0 - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFSub %double %double_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 1: Fold 0.0 - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%3 = OpLoad %double %n\n" + "%2 = OpFSub %double %double_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3), // Test case 2: Don't fold (0,0,0,1) - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFSub %v4double %v4double_0_0_0_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Fold (0,0,0,0) - n InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%3 = OpLoad %v4double %n\n" + "%2 = OpFSub %v4double %v4double_0_0_0_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 3) )); using MatchingInstructionFoldingTest = ::testing::TestWithParam>; TEST_P(MatchingInstructionFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; //std::cerr << "[\n" << tc.test_body << "\n]"; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold,SPV_ENV_UNIVERSAL_1_5); EXPECT_EQ(inst != nullptr, tc.expected_result); if (inst != nullptr) { Match(tc.test_body, context.get()); } } INSTANTIATE_TEST_SUITE_P(RedundantIntegerMatching, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Fold 0 + n (change sign) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: %2 = OpBitcast [[uint]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%2 = OpIAdd %uint %int_0 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 2, true), // Test case 0: Fold 0 + n (change sign) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: %2 = OpBitcast [[int]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpIAdd %int %uint_0 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantBitcastTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: uint32 x; asuint32(x) => x InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: %2 = OpCopyObject [[uint]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%2 = OpBitcast %uint %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 2, true), // Test case 1: uint32 x; asuint32(asint32(x)) => x InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: %2 = OpCopyObject [[uint]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%4 = OpBitcast %int %3\n" + "%2 = OpBitcast %uint %4\n" + "OpReturn\n" + "OpFunctionEnd\n", 2, true), // Test case 2: float32 x; asuint32(asint32(x)) => asuint32(x) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: %2 = OpBitcast [[uint]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpBitcast %int %3\n" + "%2 = OpBitcast %uint %4\n" + "OpReturn\n" + "OpFunctionEnd\n", 2, true) )); INSTANTIATE_TEST_SUITE_P(MergeNegateTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: fold consecutive fnegate // -(-x) = x InstructionFoldingCase( Header() + "; CHECK: [[ld:%\\w+]] = OpLoad [[float:%\\w+]]\n" + "; CHECK: %4 = OpCopyObject [[float]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFNegate %float %2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 1: fold fnegate(fmul with const). // -(x * 2.0) = x * -2.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFMul %float %2 %float_2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 2: fold fnegate(fmul with const). // -(2.0 * x) = x * 2.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFMul %float %float_2 %2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 3: fold fnegate(fdiv with const). // -(x / 2.0) = x * -0.5 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n0p5:%\\w+]] = OpConstant [[float]] -0.5\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_n0p5]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %2 %float_2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 4: fold fnegate(fdiv with const). // -(2.0 / x) = -2.0 / x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %float_2 %2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 5: fold fnegate(fadd with const). // -(2.0 + x) = -2.0 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %float_2 %2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 6: fold fnegate(fadd with const). // -(x + 2.0) = -2.0 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %2 %float_2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 7: fold fnegate(fsub with const). // -(2.0 - x) = x - 2.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[ld]] [[float_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_2 %2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 8: fold fnegate(fsub with const). // -(x - 2.0) = 2.0 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %2 %float_2\n" + "%4 = OpFNegate %float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 9: fold consecutive snegate // -(-x) = x InstructionFoldingCase( Header() + "; CHECK: [[ld:%\\w+]] = OpLoad [[int:%\\w+]]\n" + "; CHECK: %4 = OpCopyObject [[int]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSNegate %int %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 10: fold consecutive vector negate // -(-x) = x InstructionFoldingCase( Header() + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2float:%\\w+]]\n" + "; CHECK: %4 = OpCopyObject [[v2float]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %var\n" + "%3 = OpFNegate %v2float %2\n" + "%4 = OpFNegate %v2float %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 11: fold snegate(iadd with const). // -(2 + x) = -2 - x InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: OpConstant [[int]] -2147483648\n" + "; CHECK: [[int_n2:%\\w+]] = OpConstant [[int]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpISub [[int]] [[int_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIAdd %int %int_2 %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 12: fold snegate(iadd with const). // -(x + 2) = -2 - x InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: OpConstant [[int]] -2147483648\n" + "; CHECK: [[int_n2:%\\w+]] = OpConstant [[int]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpISub [[int]] [[int_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIAdd %int %2 %int_2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 13: fold snegate(isub with const). // -(2 - x) = x - 2 InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpISub [[int]] [[ld]] [[int_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpISub %int %int_2 %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 14: fold snegate(isub with const). // -(x - 2) = 2 - x InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpISub [[int]] [[int_2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpISub %int %2 %int_2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 15: fold snegate(iadd with const). // -(x + 2) = -2 - x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_n2:%\\w+]] = OpConstant [[long]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[long_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIAdd %long %2 %long_2\n" + "%4 = OpSNegate %long %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 16: fold snegate(isub with const). // -(2 - x) = x - 2 InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_2:%\\w+]] = OpConstant [[long]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[ld]] [[long_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpISub %long %long_2 %2\n" + "%4 = OpSNegate %long %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 17: fold snegate(isub with const). // -(x - 2) = 2 - x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_2:%\\w+]] = OpConstant [[long]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[long_2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpISub %long %2 %long_2\n" + "%4 = OpSNegate %long %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 18: fold -vec4(-1.0, 2.0, 1.0, 3.0) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v4float:%\\w+]] = OpTypeVector [[float]] 4{{[[:space:]]}}\n" + "; CHECK: [[float_n1:%\\w+]] = OpConstant [[float]] -1{{[[:space:]]}}\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1{{[[:space:]]}}\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[float_n3:%\\w+]] = OpConstant [[float]] -3{{[[:space:]]}}\n" + "; CHECK: [[v4float_1_n2_n1_n3:%\\w+]] = OpConstantComposite [[v4float]] [[float_1]] [[float_n2]] [[float_n1]] [[float_n3]]\n" + "; CHECK: %2 = OpCopyObject [[v4float]] [[v4float_1_n2_n1_n3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFNegate %v4float %v4float_n1_2_1_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 19: fold vector fnegate with null InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v2double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[double_n0:%\\w+]] = OpConstant [[double]] -0\n" + "; CHECK: [[v2double_0_0:%\\w+]] = OpConstantComposite [[v2double]] [[double_n0]] [[double_n0]]\n" + "; CHECK: %2 = OpCopyObject [[v2double]] [[v2double_0_0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpFNegate %v2double %v2double_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 20: fold snegate with OpIMul. // -(x * 2) = x * -2 InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_n2:%\\w+]] = OpConstant [[long]] -2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIMul [[long]] [[ld]] [[long_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIMul %long %2 %long_2\n" + "%4 = OpSNegate %long %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 21: fold snegate with OpIMul. // -(x * 2) = x * -2 InstructionFoldingCase( Header() + "; CHECK-DAG: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_n2:%\\w+]] = OpConstant [[uint]] 4294967294\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[uint_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %uint_2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 22: fold snegate with OpIMul. // -(-24 * x) = x * 24 InstructionFoldingCase( Header() + "; CHECK-DAG: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_24:%\\w+]] = OpConstant [[int]] 24\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[int_24]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %int_n24 %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 23: fold snegate with OpIMul with UINT_MAX // -(UINT_MAX * x) = x InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpCopyObject [[int]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %uint_max %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 24: fold snegate with OpIMul using -INT_MAX // -(x * 2147483649u) = x * 2147483647u InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_2147483647:%\\w+]] = OpConstant [[uint]] 2147483647\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[uint_2147483647]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %uint_2147483649\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 25: fold snegate with OpSDiv (long). // -(x / 2) = x / -2 InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_n2:%\\w+]] = OpConstant [[long]] -2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpSDiv [[long]] [[ld]] [[long_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpSDiv %long %2 %long_2\n" + "%4 = OpSNegate %long %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 26: fold snegate with OpSDiv (int). // -(x / 2) = x / -2 InstructionFoldingCase( Header() + "; CHECK-DAG: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_n2:%\\w+]] = OpConstant [[uint]] 4294967294\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpSDiv [[int]] [[ld]] [[uint_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %uint_2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 27: fold snegate with OpSDiv. // -(-24 / x) = 24 / x InstructionFoldingCase( Header() + "; CHECK-DAG: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_24:%\\w+]] = OpConstant [[int]] 24\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpSDiv [[int]] [[int_24]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %int_n24 %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 28: fold snegate with OpSDiv with UINT_MAX // -(UINT_MAX / x) = (1 / x) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpSDiv [[int]] [[uint_1]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %uint_max %2\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 29: fold snegate with OpSDiv using -INT_MAX // -(x / 2147483647u) = x / 2147483647 InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_2147483647:%\\w+]] = OpConstant [[uint]] 2147483647\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpSDiv [[int]] [[ld]] [[uint_2147483647]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %uint_2147483649\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 30: Don't fold snegate int OpUDiv. The operands are interpreted // as unsigned, so negating an operand is not the same a negating the // result. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpUDiv %int %2 %uint_1\n" + "%4 = OpSNegate %int %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, false) )); INSTANTIATE_TEST_SUITE_P(ReassociateCommutiveBitwiseTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: fold (n ^ 248) ^ 31 = n ^ 231 InstructionFoldingCase( Header() + "%uint_248 = OpConstant %uint 248\n" + "%uint_31 = OpConstant %uint 31\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_231:%\\w+]] = OpConstant [[uint]] 231\n" + "; CHECK: %2 = OpBitwiseXor [[uint]] %4 [[uint_231]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_248\n" + "%2 = OpBitwiseXor %uint %3 %uint_31\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: fold 31 ^ (n ^ 248) = n ^ 231 InstructionFoldingCase( Header() + "%uint_248 = OpConstant %uint 248\n" + "%uint_31 = OpConstant %uint 31\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_231:%\\w+]] = OpConstant [[uint]] 231\n" + "; CHECK: %2 = OpBitwiseXor [[uint]] %4 [[uint_231]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_248\n" + "%2 = OpBitwiseXor %uint %uint_31 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: fold (248 ^ n) ^ 31 = n ^ 231 InstructionFoldingCase( Header() + "%uint_248 = OpConstant %uint 248\n" + "%uint_31 = OpConstant %uint 31\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_231:%\\w+]] = OpConstant [[uint]] 231\n" + "; CHECK: %2 = OpBitwiseXor [[uint]] %4 [[uint_231]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_248 %4\n" + "%2 = OpBitwiseXor %uint %3 %uint_31\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: fold 31 ^ (248 ^ n) = n ^ 231 InstructionFoldingCase( Header() + "%uint_248 = OpConstant %uint 248\n" + "%uint_31 = OpConstant %uint 31\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_231:%\\w+]] = OpConstant [[uint]] 231\n" + "; CHECK: %2 = OpBitwiseXor [[uint]] %4 [[uint_231]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_248 %4\n" + "%2 = OpBitwiseXor %uint %uint_31 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: fold 3 | (n | 193) = n | 195 InstructionFoldingCase( Header() + "%uint_193 = OpConstant %uint 193\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_195:%\\w+]] = OpConstant [[uint]] 195\n" + "; CHECK: %2 = OpBitwiseOr [[uint]] %4 [[uint_195]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_193\n" + "%2 = OpBitwiseOr %uint %uint_3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: fold (n | 193) | 3 = n | 195 InstructionFoldingCase( Header() + "%uint_193 = OpConstant %uint 193\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_195:%\\w+]] = OpConstant [[uint]] 195\n" + "; CHECK: %2 = OpBitwiseOr [[uint]] %4 [[uint_195]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_193\n" + "%2 = OpBitwiseOr %uint %3 %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 6: fold 3 | (193 | n) = n | 195 InstructionFoldingCase( Header() + "%uint_193 = OpConstant %uint 193\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_195:%\\w+]] = OpConstant [[uint]] 195\n" + "; CHECK: %2 = OpBitwiseOr [[uint]] %4 [[uint_195]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_193 %4\n" + "%2 = OpBitwiseOr %uint %uint_3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: fold (193 | n) | 3 = n | 195 InstructionFoldingCase( Header() + "%uint_193 = OpConstant %uint 193\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_195:%\\w+]] = OpConstant [[uint]] 195\n" + "; CHECK: %2 = OpBitwiseOr [[uint]] %4 [[uint_195]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_193 %4\n" + "%2 = OpBitwiseOr %uint %3 %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 8: fold 65520 & (n & 4095) = n & 4080 InstructionFoldingCase( Header() + "%uint_65520 = OpConstant %uint 65520\n" + "%uint_4095 = OpConstant %uint 4095\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4080:%\\w+]] = OpConstant [[uint]] 4080\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_4080]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseAnd %uint %4 %uint_4095\n" + "%2 = OpBitwiseAnd %uint %uint_65520 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 9: fold (n & 4095) & 65520 = n & 4080 InstructionFoldingCase( Header() + "%uint_65520 = OpConstant %uint 65520\n" + "%uint_4095 = OpConstant %uint 4095\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4080:%\\w+]] = OpConstant [[uint]] 4080\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_4080]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseAnd %uint %4 %uint_4095\n" + "%2 = OpBitwiseAnd %uint %3 %uint_65520\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 10: fold 65520 & (4095 & n) = n & 4080 InstructionFoldingCase( Header() + "%uint_65520 = OpConstant %uint 65520\n" + "%uint_4095 = OpConstant %uint 4095\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4080:%\\w+]] = OpConstant [[uint]] 4080\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_4080]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseAnd %uint %uint_4095 %4\n" + "%2 = OpBitwiseAnd %uint %uint_65520 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: fold (4095 & n) & 65520 = n & 4080 InstructionFoldingCase( Header() + "%uint_65520 = OpConstant %uint 65520\n" + "%uint_4095 = OpConstant %uint 4095\n" + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4080:%\\w+]] = OpConstant [[uint]] 4080\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_4080]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseAnd %uint %uint_4095 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_65520\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(ReassociateNestedGenericInt, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // (a * 3) * (b * 8) = 24 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_24:%\\w+]] = OpConstant [[uint]] 24\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpIMul [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpIMul [[uint]] [[uint_24]] [[rhs]]\n" + "%C0 = OpConstant %uint 3\n" + "%C1 = OpConstant %uint 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpIMul %uint %a %C0\n" + "%rhs = OpIMul %uint %b %C1\n" + "%4 = OpIMul %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: // (a * 34) * (5 * b) = 170 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_170:%\\w+]] = OpConstant [[uint]] 170\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpIMul [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpIMul [[uint]] [[uint_170]] [[rhs]]\n" + "%C0 = OpConstant %uint 34\n" + "%C1 = OpConstant %uint 5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpIMul %uint %a %C0\n" + "%rhs = OpIMul %uint %C1 %b\n" + "%4 = OpIMul %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: // (42 * a) * (b * 7) = 24 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_294:%\\w+]] = OpConstant [[uint]] 294\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpIMul [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpIMul [[uint]] [[uint_294]] [[rhs]]\n" + "%C0 = OpConstant %uint 42\n" + "%C1 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpIMul %uint %C0 %a\n" + "%rhs = OpIMul %uint %b %C1\n" + "%4 = OpIMul %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: // (5 * a) * (14 * b) = 70 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_70:%\\w+]] = OpConstant [[uint]] 70\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpIMul [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpIMul [[uint]] [[uint_70]] [[rhs]]\n" + "%C0 = OpConstant %uint 5\n" + "%C1 = OpConstant %uint 14\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpIMul %uint %C0 %a\n" + "%rhs = OpIMul %uint %C1 %b\n" + "%4 = OpIMul %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: // (a ^ 3) ^ (b ^ 8) = 11 ^ (a ^ b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_11:%\\w+]] = OpConstant [[uint]] 11\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseXor [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseXor [[uint]] [[uint_11]] [[rhs]]\n" + "%C0 = OpConstant %uint 3\n" + "%C1 = OpConstant %uint 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseXor %uint %a %C0\n" + "%rhs = OpBitwiseXor %uint %b %C1\n" + "%4 = OpBitwiseXor %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: // (a ^ 34) ^ (5 ^ b) = 39 ^ (a ^ b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_39:%\\w+]] = OpConstant [[uint]] 39\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseXor [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseXor [[uint]] [[uint_39]] [[rhs]]\n" + "%C0 = OpConstant %uint 34\n" + "%C1 = OpConstant %uint 5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseXor %uint %a %C0\n" + "%rhs = OpBitwiseXor %uint %C1 %b\n" + "%4 = OpBitwiseXor %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: // (42 ^ a) ^ (b ^ 7) = 45 ^ (a ^ b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_45:%\\w+]] = OpConstant [[uint]] 45\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseXor [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseXor [[uint]] [[uint_45]] [[rhs]]\n" + "%C0 = OpConstant %uint 42\n" + "%C1 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseXor %uint %C0 %a\n" + "%rhs = OpBitwiseXor %uint %b %C1\n" + "%4 = OpBitwiseXor %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: // (5 ^ a) ^ (14 ^ b) = 11 ^ (a ^ b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_11:%\\w+]] = OpConstant [[uint]] 11\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseXor [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseXor [[uint]] [[uint_11]] [[rhs]]\n" + "%C0 = OpConstant %uint 5\n" + "%C1 = OpConstant %uint 14\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseXor %uint %C0 %a\n" + "%rhs = OpBitwiseXor %uint %C1 %b\n" + "%4 = OpBitwiseXor %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: // (a | 3) | (b | 8) = 11 | (a | b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_11:%\\w+]] = OpConstant [[uint]] 11\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseOr [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseOr [[uint]] [[uint_11]] [[rhs]]\n" + "%C0 = OpConstant %uint 3\n" + "%C1 = OpConstant %uint 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseOr %uint %a %C0\n" + "%rhs = OpBitwiseOr %uint %b %C1\n" + "%4 = OpBitwiseOr %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: // (a | 34) | (5 | b) = 39 | (a | b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_39:%\\w+]] = OpConstant [[uint]] 39\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseOr [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseOr [[uint]] [[uint_39]] [[rhs]]\n" + "%C0 = OpConstant %uint 34\n" + "%C1 = OpConstant %uint 5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseOr %uint %a %C0\n" + "%rhs = OpBitwiseOr %uint %C1 %b\n" + "%4 = OpBitwiseOr %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: // (42 | a) | (b | 7) = 47 | (a | b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_47:%\\w+]] = OpConstant [[uint]] 47\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseOr [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseOr [[uint]] [[uint_47]] [[rhs]]\n" + "%C0 = OpConstant %uint 42\n" + "%C1 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseOr %uint %C0 %a\n" + "%rhs = OpBitwiseOr %uint %b %C1\n" + "%4 = OpBitwiseOr %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 11: // (5 | a) | (14 | b) = 15 | (a | b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_15:%\\w+]] = OpConstant [[uint]] 15\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseOr [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseOr [[uint]] [[uint_15]] [[rhs]]\n" + "%C0 = OpConstant %uint 5\n" + "%C1 = OpConstant %uint 14\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseOr %uint %C0 %a\n" + "%rhs = OpBitwiseOr %uint %C1 %b\n" + "%4 = OpBitwiseOr %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 12: // (a & 12) & (b & 24) = 8 & (a & b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_8:%\\w+]] = OpConstant [[uint]] 8\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseAnd [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseAnd [[uint]] [[uint_8]] [[rhs]]\n" + "%C0 = OpConstant %uint 12\n" + "%C1 = OpConstant %uint 24\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseAnd %uint %a %C0\n" + "%rhs = OpBitwiseAnd %uint %b %C1\n" + "%4 = OpBitwiseAnd %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 13: // (a & 34) & (6 & b) = 2 & (a & b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_2:%\\w+]] = OpConstant [[uint]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseAnd [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseAnd [[uint]] [[uint_2]] [[rhs]]\n" + "%C0 = OpConstant %uint 34\n" + "%C1 = OpConstant %uint 6\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseAnd %uint %a %C0\n" + "%rhs = OpBitwiseAnd %uint %C1 %b\n" + "%4 = OpBitwiseAnd %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 14: // (43 & a) & (b & 15) = 11 & (a & b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_11:%\\w+]] = OpConstant [[uint]] 11\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseAnd [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseAnd [[uint]] [[uint_11]] [[rhs]]\n" + "%C0 = OpConstant %uint 43\n" + "%C1 = OpConstant %uint 15\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseAnd %uint %C0 %a\n" + "%rhs = OpBitwiseAnd %uint %b %C1\n" + "%4 = OpBitwiseAnd %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 15: // (5 & a) & (14 & b) = 4 & (a & b) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4:%\\w+]] = OpConstant [[uint]] 4\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: [[rhs:%\\w+]] = OpBitwiseAnd [[uint]] [[a]] [[b]]\n" + "; CHECK: %4 = OpBitwiseAnd [[uint]] [[uint_4]] [[rhs]]\n" + "%C0 = OpConstant %uint 5\n" + "%C1 = OpConstant %uint 14\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%a = OpLoad %uint %var\n" + "%b = OpLoad %uint %var\n" + "%lhs = OpBitwiseAnd %uint %C0 %a\n" + "%rhs = OpBitwiseAnd %uint %C1 %b\n" + "%4 = OpBitwiseAnd %uint %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(ReassociateNestedMulDivFloat, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // (a * 9) * (b * 12) = 108 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_108:%\\w+]] = OpConstant [[float]] 108\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_108]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: // (a * 24) * (b / 10) = 2.4 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2p4:%\\w+]] = OpConstant [[float]] 2.4\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2p4]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: // (a * 102) * (4 * b) = 408 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_408:%\\w+]] = OpConstant [[float]] 408\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_408]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: // (a * 37) * (8 / b) = 296 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_296:%\\w+]] = OpConstant [[float]] 296\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_296]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: // (a * 11) / (b * 2) = 5.5 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_5p5:%\\w+]] = OpConstant [[float]] 5.5\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_5p5]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: // (a * 8) / (b / 53) = 424 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_424:%\\w+]] = OpConstant [[float]] 424\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_424]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: // (a * 13) / (5 * b) = 2.6 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2p6:%\\w+]] = OpConstant [[float]] 2.6\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2p6]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: // (a * 21) / (2 / b) = 10.5 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_10p5:%\\w+]] = OpConstant [[float]] 10.5\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_10p5]] [[rhs]]\n" + "%C0 = OpConstant %float 21\n" + "%C1 = OpConstant %float 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %a %C0\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: // (9 * a) * (b * 12) = 108 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_108:%\\w+]] = OpConstant [[float]] 108\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_108]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: // (24 * a) * (b / 4) = 6 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_6:%\\w+]] = OpConstant [[float]] 6\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_6]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: // (102 * a) * (4 * b) = 408 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_408:%\\w+]] = OpConstant [[float]] 408\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_408]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 11: // (37 * a) * (8 / b) = 296 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_296:%\\w+]] = OpConstant [[float]] 296\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_296]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 12: // (11 * a) / (b * 8) = 1.375 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1p375:%\\w+]] = OpConstant [[float]] 1.375\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_1p375]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 13: // (8 * a) / (b / 53) = 424 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_424:%\\w+]] = OpConstant [[float]] 424\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_424]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 14: // (20 * a) / (10 * b) = 2 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2]] [[rhs]]\n" + "%C0 = OpConstant %float 20\n" + "%C1 = OpConstant %float 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 15: // (21 * a) / (3 / b) = 7 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_7:%\\w+]] = OpConstant [[float]] 7\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_7]] [[rhs]]\n" + "%C0 = OpConstant %float 21\n" + "%C1 = OpConstant %float 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFMul %float %C0 %a\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 16: // (a / 12) * (b * 9) = 0.75 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0p75:%\\w+]] = OpConstant [[float]] 0.75\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_0p75]] [[rhs]]\n" + "%C0 = OpConstant %float 12\n" + "%C1 = OpConstant %float 9\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 17: // (a / 0.5) * (b / 0.2) = 10 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_10:%\\w+]] = OpConstant [[float]] 10\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_10]] [[rhs]]\n" + "%C0 = OpConstant %float 0.5\n" + "%C1 = OpConstant %float 0.2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 18: // (a / 4) * (102 * b) = 25.5 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_25p5:%\\w+]] = OpConstant [[float]] 25.5\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_25p5]] [[rhs]]\n" + "%C0 = OpConstant %float 4\n" + "%C1 = OpConstant %float 102\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 19: // (a / 8) * (37 / b) = 4.625 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_4p625:%\\w+]] = OpConstant [[float]] 4.625\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_4p625]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 37\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 20: // (a / 10) / (b * 2) = 0.05 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0p05:%\\w+]] = OpConstant [[float]] 0.05\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_0p05]] [[rhs]]\n" + "%C0 = OpConstant %float 10\n" + "%C1 = OpConstant %float 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 21: // (a / 8) / (b / 53) = 6.625 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_6p625:%\\w+]] = OpConstant [[float]] 6.625\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_6p625]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 22: // (a / 4) / (8 * b) = 0.03125 * (a / b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0p03125:%\\w+]] = OpConstant [[float]] 0.03125\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_0p03125]] [[rhs]]\n" + "%C0 = OpConstant %float 4\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 23: // (a / 2) / (0.25 / b) = 2 * (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2]] [[rhs]]\n" + "%C0 = OpConstant %float 2\n" + "%C1 = OpConstant %float 0.25\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %a %C0\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 24: // (9 / a) * (b * 12) = 108 * (b / a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_108:%\\w+]] = OpConstant [[float]] 108\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_108]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 25: // (24 / a) * (b / 10) = 2.4 * (b / a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2p4:%\\w+]] = OpConstant [[float]] 2.4\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2p4]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 26: // (102 / a) * (4 * b) = 408 * (b / a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_408:%\\w+]] = OpConstant [[float]] 408\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_408]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 27: // (37 / a) * (8 / b) = 296 / (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_296:%\\w+]] = OpConstant [[float]] 296\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_296]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFMul %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 28: // (11 / a) / (b * 8) = 1.375 / (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1p375:%\\w+]] = OpConstant [[float]] 1.375\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_1p375]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFMul %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 29: // (8 / a) / (b / 53) = 424 / (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_424:%\\w+]] = OpConstant [[float]] 424\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_424]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFDiv %float %b %C1\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 30: // (13 / a) / (10 * b) = 1.3 / (a * b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1p3:%\\w+]] = OpConstant [[float]] 1.3\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFMul [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_1p3]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFMul %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 31: // (21 / a) / (2 / b) = 10.5 * (b / a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_10p5:%\\w+]] = OpConstant [[float]] 10.5\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFDiv [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_10p5]] [[rhs]]\n" + "%C0 = OpConstant %float 21\n" + "%C1 = OpConstant %float 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFDiv %float %C0 %a\n" + "%rhs = OpFDiv %float %C1 %b\n" + "%4 = OpFDiv %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(ReassociateNestedAddSubTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // (a + 9) + (b + 12) = 21 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_21:%\\w+]] = OpConstant [[float]] 21\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_21]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: // (a + 24) + (b - 11) = 13 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_13:%\\w+]] = OpConstant [[float]] 13\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_13]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 11\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: // (a + 102) + (4 + b) = 106 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_106:%\\w+]] = OpConstant [[float]] 106\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_106]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: // (a + 37) + (8 - b) = 45 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_45:%\\w+]] = OpConstant [[float]] 45\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_45]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: // (a + 11) - (b + 9) = 2 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_2]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 9\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: // (a + 8) - (b - 53) = 61 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_61:%\\w+]] = OpConstant [[float]] 61\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_61]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: // (a + 13) - (12 + b) = 1 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_1]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: // (a + 2) - (21 - b) = -19 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n19:%\\w+]] = OpConstant [[float]] -19\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n19]] [[rhs]]\n" + "%C0 = OpConstant %float 2\n" + "%C1 = OpConstant %float 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %a %C0\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: // (9 + a) + (b + 12) = 21 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_21:%\\w+]] = OpConstant [[float]] 21\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_21]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: // (24 + a) + (b - 11) = 13 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_13:%\\w+]] = OpConstant [[float]] 13\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_13]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 11\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: // (102 + a) + (4 + b) = 106 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_106:%\\w+]] = OpConstant [[float]] 106\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_106]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 11: // (37 + a) + (8 - b) = 45 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_45:%\\w+]] = OpConstant [[float]] 45\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_45]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 12: // (11 + a) - (b + 9) = 2 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_2]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 9\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 13: // (8 + a) - (b - 53) = 61 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_61:%\\w+]] = OpConstant [[float]] 61\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_61]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 14: // (13 + a) - (12 + b) = 1 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_1]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 15: // (2 + a) - (21 - b) = -19 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n19:%\\w+]] = OpConstant [[float]] -19\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n19]] [[rhs]]\n" + "%C0 = OpConstant %float 2\n" + "%C1 = OpConstant %float 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFAdd %float %C0 %a\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 16: // (a - 9) + (b + 12) = 3 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_3]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 17: // (a - 24) + (b - 11) = -35 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n35:%\\w+]] = OpConstant [[float]] -35\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n35]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 11\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 18: // (a - 102) + (4 + b) = -98 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n98:%\\w+]] = OpConstant [[float]] -98\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n98]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 19: // (a - 37) + (8 - b) = -29 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n29:%\\w+]] = OpConstant [[float]] -29\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n29]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 20: // (a - 11) - (b + 10) = -21 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n21:%\\w+]] = OpConstant [[float]] -21\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n21]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 21: // (a - 8) - (b - 53) = 45 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_45:%\\w+]] = OpConstant [[float]] 45\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_45]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 22: // (a - 13) - (12 + b) = -25 + (a - b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n25:%\\w+]] = OpConstant [[float]] -25\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n25]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 23: // (a - 2) - (21 - b) = -23 + (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n23:%\\w+]] = OpConstant [[float]] -23\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n23]] [[rhs]]\n" + "%C0 = OpConstant %float 2\n" + "%C1 = OpConstant %float 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %a %C0\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 24: // (9 - a) + (b + 12) = 21 + (b - a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_21:%\\w+]] = OpConstant [[float]] 21\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_21]] [[rhs]]\n" + "%C0 = OpConstant %float 9\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 25: // (24 - a) + (b - 11) = 13 + (b - a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_13:%\\w+]] = OpConstant [[float]] 13\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_13]] [[rhs]]\n" + "%C0 = OpConstant %float 24\n" + "%C1 = OpConstant %float 11\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 26: // (102 - a) + (4 + b) = 106 + (b - a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_106:%\\w+]] = OpConstant [[float]] 106\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_106]] [[rhs]]\n" + "%C0 = OpConstant %float 102\n" + "%C1 = OpConstant %float 4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 27: // (37 - a) + (8 - b) = 45 - (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_45:%\\w+]] = OpConstant [[float]] 45\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_45]] [[rhs]]\n" + "%C0 = OpConstant %float 37\n" + "%C1 = OpConstant %float 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFAdd %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 28: // (11 - a) - (b + 9) = 2 - (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_2]] [[rhs]]\n" + "%C0 = OpConstant %float 11\n" + "%C1 = OpConstant %float 9\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFAdd %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 29: // (8 - a) - (b - 53) = 61 - (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_61:%\\w+]] = OpConstant [[float]] 61\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_61]] [[rhs]]\n" + "%C0 = OpConstant %float 8\n" + "%C1 = OpConstant %float 53\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFSub %float %b %C1\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 30: // (13 - a) - (12 + b) = 1 - (a + b) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFAdd [[float]] [[a]] [[b]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_1]] [[rhs]]\n" + "%C0 = OpConstant %float 13\n" + "%C1 = OpConstant %float 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFAdd %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 31: // (2 - a) - (21 - b) = -19 + (b - a) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n19:%\\w+]] = OpConstant [[float]] -19\n" + "; CHECK: [[a:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[b:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[rhs:%\\w+]] = OpFSub [[float]] [[b]] [[a]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[float_n19]] [[rhs]]\n" + "%C0 = OpConstant %float 2\n" + "%C1 = OpConstant %float 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%a = OpLoad %float %var\n" + "%b = OpLoad %float %var\n" + "%lhs = OpFSub %float %C0 %a\n" + "%rhs = OpFSub %float %C1 %b\n" + "%4 = OpFSub %float %lhs %rhs\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(ReciprocalFDivTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: scalar reicprocal // x / 0.5 = x * 2.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %3 = OpFMul [[float]] [[ld]] [[float_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %2 %float_0p5\n" + "OpReturn\n" + "OpFunctionEnd\n", 3, true), // Test case 1: Unfoldable InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0:%\\w+]] = OpConstant [[float]] 0\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %3 = OpFDiv [[float]] [[ld]] [[float_0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %2 %104\n" + "OpReturn\n" + "OpFunctionEnd\n", 3, false), // Test case 2: Vector reciprocal // x / {2.0, 0.5} = x * {0.5, 2.0} InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[float_0p5:%\\w+]] = OpConstant [[float]] 0.5\n" + "; CHECK: [[v2float_0p5_2:%\\w+]] = OpConstantComposite [[v2float]] [[float_0p5]] [[float_2]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2float]]\n" + "; CHECK: %3 = OpFMul [[v2float]] [[ld]] [[v2float_0p5_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %var\n" + "%3 = OpFDiv %v2float %2 %v2float_2_0p5\n" + "OpReturn\n" + "OpFunctionEnd\n", 3, true), // Test case 3: double reciprocal // x / 2.0 = x * 0.5 InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[double_0p5:%\\w+]] = OpConstant [[double]] 0.5\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[double]]\n" + "; CHECK: %3 = OpFMul [[double]] [[ld]] [[double_0p5]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_double Function\n" + "%2 = OpLoad %double %var\n" + "%3 = OpFDiv %double %2 %double_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 3, true), // Test case 4: don't fold x / 0. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %var\n" + "%3 = OpFDiv %v2float %2 %v2float_null\n" + "OpReturn\n" + "OpFunctionEnd\n", 3, false) )); INSTANTIATE_TEST_SUITE_P(MergeMulTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: fold consecutive fmuls // (x * 3.0) * 2.0 = x * 6.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_6:%\\w+]] = OpConstant [[float]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFMul %float %2 %float_3\n" + "%4 = OpFMul %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: fold consecutive fmuls // 2.0 * (x * 3.0) = x * 6.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_6:%\\w+]] = OpConstant [[float]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFMul %float %2 %float_3\n" + "%4 = OpFMul %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: fold consecutive fmuls // (3.0 * x) * 2.0 = x * 6.0 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_6:%\\w+]] = OpConstant [[float]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[ld]] [[float_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFMul %float %float_3 %2\n" + "%4 = OpFMul %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: fold vector fmul InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[float_6:%\\w+]] = OpConstant [[float]] 6\n" + "; CHECK: [[v2float_6_6:%\\w+]] = OpConstantComposite [[v2float]] [[float_6]] [[float_6]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2float]]\n" + "; CHECK: %4 = OpFMul [[v2float]] [[ld]] [[v2float_6_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %var\n" + "%3 = OpFMul %v2float %2 %v2float_2_3\n" + "%4 = OpFMul %v2float %3 %v2float_3_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: fold double fmuls // (x * 3.0) * 2.0 = x * 6.0 InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[double_6:%\\w+]] = OpConstant [[double]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[double]]\n" + "; CHECK: %4 = OpFMul [[double]] [[ld]] [[double_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_double Function\n" + "%2 = OpLoad %double %var\n" + "%3 = OpFMul %double %2 %double_3\n" + "%4 = OpFMul %double %3 %double_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: fold 32 bit imuls // (x * 3) * 2 = x * 6 InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_6:%\\w+]] = OpConstant [[int]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[int_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %int_3\n" + "%4 = OpIMul %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: fold 64 bit imuls // (x * 3) * 2 = x * 6 InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_6:%\\w+]] = OpConstant [[long]] 6\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIMul [[long]] [[ld]] [[long_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIMul %long %2 %long_3\n" + "%4 = OpIMul %long %3 %long_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: merge vector integer mults InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: [[int_6:%\\w+]] = OpConstant [[int]] 6\n" + "; CHECK: [[v2int_6_6:%\\w+]] = OpConstantComposite [[v2int]] [[int_6]] [[int_6]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2int]]\n" + "; CHECK: %4 = OpIMul [[v2int]] [[ld]] [[v2int_6_6]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %var\n" + "%3 = OpIMul %v2int %2 %v2int_2_3\n" + "%4 = OpIMul %v2int %3 %v2int_3_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: merge fmul of fdiv // 2.0 * (2.0 / x) = 4.0 / x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_4]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %float_2 %2\n" + "%4 = OpFMul %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: merge fmul of fdiv // (2.0 / x) * 2.0 = 4.0 / x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_4]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %float_2 %2\n" + "%4 = OpFMul %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: Do not merge imul of sdiv // 4 * (x / 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %int_2\n" + "%4 = OpIMul %int %int_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 11: Do not merge imul of sdiv // (x / 2) * 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %int_2\n" + "%4 = OpIMul %int %3 %int_4\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 12: Do not merge imul of udiv // 4 * (x / 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpUDiv %uint %2 %uint_2\n" + "%4 = OpIMul %uint %uint_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 13: Do not merge imul of udiv // (x / 2) * 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpUDiv %uint %2 %uint_2\n" + "%4 = OpIMul %uint %3 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 14: Don't fold // (x / 3) * 4 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpUDiv %uint %2 %uint_3\n" + "%4 = OpIMul %uint %3 %uint_4\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 15: merge vector fmul of fdiv // (x / {2,2}) * {4,4} = x * {2,2} InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[v2float_2_2:%\\w+]] = OpConstantComposite [[v2float]] [[float_2]] [[float_2]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2float]]\n" + "; CHECK: %4 = OpFMul [[v2float]] [[ld]] [[v2float_2_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %v2float %var\n" + "%3 = OpFDiv %v2float %2 %v2float_2_2\n" + "%4 = OpFMul %v2float %3 %v2float_4_4\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 16: merge vector imul of snegate // (-x) * {2,2} = x * {-2,-2} InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2{{[[:space:]]}}\n" + "; CHECK: OpConstant [[int]] -2147483648{{[[:space:]]}}\n" + "; CHECK: [[int_n2:%\\w+]] = OpConstant [[int]] -2{{[[:space:]]}}\n" + "; CHECK: [[v2int_n2_n2:%\\w+]] = OpConstantComposite [[v2int]] [[int_n2]] [[int_n2]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2int]]\n" + "; CHECK: %4 = OpIMul [[v2int]] [[ld]] [[v2int_n2_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %var\n" + "%3 = OpSNegate %v2int %2\n" + "%4 = OpIMul %v2int %3 %v2int_2_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 17: merge vector imul of snegate // {2,2} * (-x) = x * {-2,-2} InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2{{[[:space:]]}}\n" + "; CHECK: OpConstant [[int]] -2147483648{{[[:space:]]}}\n" + "; CHECK: [[int_n2:%\\w+]] = OpConstant [[int]] -2{{[[:space:]]}}\n" + "; CHECK: [[v2int_n2_n2:%\\w+]] = OpConstantComposite [[v2int]] [[int_n2]] [[int_n2]]\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v2int]]\n" + "; CHECK: %4 = OpIMul [[v2int]] [[ld]] [[v2int_n2_n2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %var\n" + "%3 = OpSNegate %v2int %2\n" + "%4 = OpIMul %v2int %v2int_2_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 18: Fold OpVectorTimesScalar // {4,4} = OpVectorTimesScalar v2float {2,2} 2 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: [[v2float_4_4:%\\w+]] = OpConstantComposite [[v2float]] [[float_4]] [[float_4]]\n" + "; CHECK: %2 = OpCopyObject [[v2float]] [[v2float_4_4]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesScalar %v2float %v2float_2_2 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 19: Fold OpVectorTimesScalar // {0,0} = OpVectorTimesScalar v2float v2float_null -1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[v2float_null:%\\w+]] = OpConstantNull [[v2float]]\n" + "; CHECK: %2 = OpCopyObject [[v2float]] [[v2float_null]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesScalar %v2float %v2float_null %float_n1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 20: Fold OpVectorTimesScalar // {4,4} = OpVectorTimesScalar v2double {2,2} 2 InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v2double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[double_4:%\\w+]] = OpConstant [[double]] 4\n" + "; CHECK: [[v2double_4_4:%\\w+]] = OpConstantComposite [[v2double]] [[double_4]] [[double_4]]\n" + "; CHECK: %2 = OpCopyObject [[v2double]] [[v2double_4_4]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVectorTimesScalar %v2double %v2double_2_2 %double_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 21: Fold OpVectorTimesScalar // {0,0} = OpVectorTimesScalar v2double {0,0} n InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v2double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: {{%\\w+}} = OpConstant [[double]] 0\n" + "; CHECK: [[double_0:%\\w+]] = OpConstant [[double]] 0\n" + "; CHECK: [[v2double_0_0:%\\w+]] = OpConstantComposite [[v2double]] [[double_0]] [[double_0]]\n" + "; CHECK: %2 = OpCopyObject [[v2double]] [[v2double_0_0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_double Function\n" + "%load = OpLoad %double %n\n" + "%2 = OpVectorTimesScalar %v2double %v2double_0_0 %load\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 22: Fold OpVectorTimesScalar // {0,0} = OpVectorTimesScalar v2double n 0 InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v2double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[v2double_null:%\\w+]] = OpConstantNull [[v2double]]\n" + "; CHECK: %2 = OpCopyObject [[v2double]] [[v2double_null]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2double Function\n" + "%load = OpLoad %v2double %n\n" + "%2 = OpVectorTimesScalar %v2double %load %double_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 23: merge fmul of fdiv // x * (y / x) = y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[ldx:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[ldy:%\\w+]] = OpLoad [[float]] [[y:%\\w+]]\n" + "; CHECK: %5 = OpCopyObject [[float]] [[ldy]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %x\n" + "%3 = OpLoad %float %y\n" + "%4 = OpFDiv %float %3 %2\n" + "%5 = OpFMul %float %2 %4\n" + "OpReturn\n" + "OpFunctionEnd\n", 5, true), // Test case 24: merge fmul of fdiv // (y / x) * x = y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[ldx:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[ldy:%\\w+]] = OpLoad [[float]] [[y:%\\w+]]\n" + "; CHECK: %5 = OpCopyObject [[float]] [[ldy]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %x\n" + "%3 = OpLoad %float %y\n" + "%4 = OpFDiv %float %3 %2\n" + "%5 = OpFMul %float %4 %2\n" + "OpReturn\n" + "OpFunctionEnd\n", 5, true), // Test case 25: fold overflowing signed 32 bit imuls // (x * 1073741824) * 2 = x * int_min InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32\n" + "; CHECK: [[int_min:%\\w+]] = OpConstant [[int]] -2147483648\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[int_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %int_1073741824\n" + "%4 = OpIMul %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 26: fold overflowing signed 64 bit imuls // (x * 4611686018427387904) * 2 = x * long_min InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_min:%\\w+]] = OpConstant [[long]] -9223372036854775808\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIMul [[long]] [[ld]] [[long_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIMul %long %2 %long_4611686018427387904\n" + "%4 = OpIMul %long %3 %long_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 27: fold overflowing 32 bit unsigned imuls // (x * 2147483649) * 2 = x * 2 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_2:%\\w+]] = OpConstant [[uint]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: %4 = OpIMul [[uint]] [[ld]] [[uint_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpIMul %uint %2 %uint_2147483649\n" + "%4 = OpIMul %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 28: fold overflowing 64 bit unsigned imuls // (x * 9223372036854775809) * 2 = x * 2 InstructionFoldingCase( Header() + "; CHECK: [[ulong:%\\w+]] = OpTypeInt 64 0\n" + "; CHECK: [[ulong_2:%\\w+]] = OpConstant [[ulong]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[ulong]]\n" + "; CHECK: %4 = OpIMul [[ulong]] [[ld]] [[ulong_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_ulong Function\n" + "%2 = OpLoad %ulong %var\n" + "%3 = OpIMul %ulong %2 %ulong_9223372036854775809\n" + "%4 = OpIMul %ulong %3 %ulong_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 29: fold underflowing signed 32 bit imuls // (x * (-858993459)) * 10 = x * 2 InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32\n" + "; CHECK: [[int_2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIMul [[int]] [[ld]] [[int_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %int_n858993459\n" + "%4 = OpIMul %int %3 %int_10\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 30: fold underflowing signed 64 bit imuls // (x * (-3689348814741910323)) * 10 = x * 2 InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_2:%\\w+]] = OpConstant [[long]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIMul [[long]] [[ld]] [[long_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIMul %long %2 %long_n3689348814741910323\n" + "%4 = OpIMul %long %3 %long_10\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 31: merge fmul with two negatives // (-x) * (-y) = x * y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[x]] [[y]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %float %var\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %float %x\n" + "%ny = OpFNegate %float %y\n" + "%4 = OpFMul %float %nx %ny\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 32: merge OpVectorTimesScalar with two negatives // (-x) * (-y) = x * y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float2:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float2]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpVectorTimesScalar [[float2]] [[x]] [[y]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var_f2 = OpVariable %_ptr_v2float Function\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %v2float %var_f2\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %v2float %x\n" + "%ny = OpFNegate %float %y\n" + "%4 = OpVectorTimesScalar %v2float %nx %ny\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 33: merge smul with two negatives // (-x) * (-y) = x * y InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIMul [[long]] [[x]] [[y]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%x = OpLoad %long %var\n" + "%y = OpLoad %long %var\n" + "%nx = OpSNegate %long %x\n" + "%ny = OpSNegate %long %y\n" + "%4 = OpIMul %long %nx %ny\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 34: merge fdiv with two negatives // (-x) / (-y) = x / y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[x]] [[y]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %float %var\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %float %x\n" + "%ny = OpFNegate %float %y\n" + "%4 = OpFDiv %float %nx %ny\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 35: merge sdiv with two negatives // (-x) / (-y) = x / y InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpSDiv [[long]] [[x]] [[y]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%x = OpLoad %long %var\n" + "%y = OpLoad %long %var\n" + "%nx = OpSNegate %long %x\n" + "%ny = OpSNegate %long %y\n" + "%4 = OpSDiv %long %nx %ny\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(MergeDivTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: merge consecutive fdiv // 4.0 / (2.0 / x) = 2.0 * x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFMul [[float]] [[float_2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %float_2 %2\n" + "%4 = OpFDiv %float %float_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: merge consecutive fdiv // 4.0 / (x / 2.0) = 8.0 / x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_8:%\\w+]] = OpConstant [[float]] 8\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_8]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %2 %float_2\n" + "%4 = OpFDiv %float %float_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: merge consecutive fdiv // (4.0 / x) / 2.0 = 2.0 / x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFDiv [[float]] [[float_2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %float_4 %2\n" + "%4 = OpFDiv %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: Do not merge consecutive sdiv // 4 / (2 / x) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %int_2 %2\n" + "%4 = OpSDiv %int %int_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 4: Do not merge consecutive sdiv // 4 / (x / 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %int_2\n" + "%4 = OpSDiv %int %int_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 5: Do not merge consecutive sdiv // (4 / x) / 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %int_4 %2\n" + "%4 = OpSDiv %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 6: Do not merge consecutive sdiv // (x / 4) / 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSDiv %int %2 %int_4\n" + "%4 = OpSDiv %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 7: Do not merge sdiv of imul // 4 / (2 * x) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %int_2 %2\n" + "%4 = OpSDiv %int %int_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 8: Do not merge sdiv of imul // 4 / (x * 2) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %int_2\n" + "%4 = OpSDiv %int %int_4 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 9: Do not merge sdiv of imul // (4 * x) / 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %int_4 %2\n" + "%4 = OpSDiv %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 10: Do not merge sdiv of imul // (x * 4) / 2 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIMul %int %2 %int_4\n" + "%4 = OpSDiv %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 11: Do not merge sdiv of snegate. If %2 is INT_MIN, then the // sign of %3 will be the same as %2. This cannot be accounted for in OpSDiv. // Specifically, (-INT_MIN) / 2 != INT_MIN / -2. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSNegate %int %2\n" + "%4 = OpSDiv %int %3 %int_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 12: Do not merge sdiv of snegate. If %2 is INT_MIN, then the // sign of %3 will be the same as %2. This cannot be accounted for in OpSDiv. // Specifically, 2 / (-INT_MIN) != -2 / INT_MIN. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpSNegate %int %2\n" + "%4 = OpSDiv %int %int_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 13: Don't merge // (x / {null}) / {null} InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_v2float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFDiv %float %2 %v2float_null\n" + "%4 = OpFDiv %float %3 %v2float_null\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 14: merge fmul of fdiv // (y * x) / x = y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[ldx:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[ldy:%\\w+]] = OpLoad [[float]] [[y:%\\w+]]\n" + "; CHECK: %5 = OpCopyObject [[float]] [[ldy]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %x\n" + "%3 = OpLoad %float %y\n" + "%4 = OpFMul %float %3 %2\n" + "%5 = OpFDiv %float %4 %2\n" + "OpReturn\n" + "OpFunctionEnd\n", 5, true), // Test case 15: merge fmul of fdiv // (x * y) / x = y InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[ldx:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[ldy:%\\w+]] = OpLoad [[float]] [[y:%\\w+]]\n" + "; CHECK: %5 = OpCopyObject [[float]] [[ldy]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %x\n" + "%3 = OpLoad %float %y\n" + "%4 = OpFMul %float %2 %3\n" + "%5 = OpFDiv %float %4 %2\n" + "OpReturn\n" + "OpFunctionEnd\n", 5, true), // Test case 16: Do not merge udiv of snegate // (-x) / 2u InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpSNegate %uint %2\n" + "%4 = OpUDiv %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false), // Test case 17: Do not merge udiv of snegate // 2u / (-x) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpSNegate %uint %2\n" + "%4 = OpUDiv %uint %uint_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, false) )); INSTANTIATE_TEST_SUITE_P(RedundantAndOrXorTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Fold // 1 & (n | 2) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: Fold // 1 & (2 | n) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: Fold // (n | 2) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: Fold // (2 | n) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: Fold // 1 & (n | 3) = 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpCopyObject [[uint]] [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: Fold // 1 & (3 | n) = 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpCopyObject [[uint]] [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_3 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 6: Fold // (n | 3) & 1 = 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpCopyObject [[uint]] [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: Fold // (3 | n) & 1 = 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpCopyObject [[uint]] [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_3 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 8: Do not fold // 3 & (n | 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %uint_3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: Do not fold // 3 & (1 | n) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_1 %4\n" + "%2 = OpBitwiseAnd %uint %uint_3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: Do not fold // (n | 1) & 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 11: Do not fold // (1 | n) & 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %uint_1 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 12: Fold // 1 & (n ^ 2) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: Fold // 1 & (2 ^ n) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: Fold // (n ^ 2) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: Fold // (2 ^ n) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 16: Do not fold // 1 & (n ^ 3) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 17: Do not fold // 1 & (3 ^ n) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_3 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 18: Do not fold // (n ^ 3) & 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 19: Do not fold // (3 ^ n) & 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %uint_3 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 20: Fold // 0b101 & (n | 0b10101) = 0b101 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_5:%\\w+]] = OpConstant [[uint]] 5\n" + "; CHECK: %2 = OpCopyObject [[uint]] [[uint_5]]\n" + "%uint_5 = OpConstant %uint 5\n" + "%uint_21 = OpConstant %uint 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_21\n" + "%2 = OpBitwiseAnd %uint %uint_5 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 21: Do not fold // 0b101 & (n ^ 0b10101) InstructionFoldingCase( Header() + "%uint_5 = OpConstant %uint 5\n" + "%uint_21 = OpConstant %uint 21\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_21\n" + "%2 = OpBitwiseAnd %uint %uint_5 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 22: Fold // 0b101 & (n ^ 0b1010) = n & 0b101 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_5:%\\w+]] = OpConstant [[uint]] 5\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_5]]\n" + "%uint_5 = OpConstant %uint 5\n" + "%uint_10 = OpConstant %uint 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_10\n" + "%2 = OpBitwiseAnd %uint %uint_5 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 23: Fold // 0b101 & (n | 0b1010) = n & 0b101 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_5:%\\w+]] = OpConstant [[uint]] 5\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_5]]\n" + "%uint_5 = OpConstant %uint 5\n" + "%uint_10 = OpConstant %uint 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_10\n" + "%2 = OpBitwiseAnd %uint %uint_5 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 24: Fold // 0b11000 & (n ^ 0b00111) = n & 0b11000 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_24:%\\w+]] = OpConstant [[uint]] 24\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_24]]\n" + "%uint_24 = OpConstant %uint 24\n" + "%uint_7 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseXor %uint %4 %uint_7\n" + "%2 = OpBitwiseAnd %uint %uint_24 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 25: Fold // 0b11000 & (n | 0b00111) = n & 0b11000 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_24:%\\w+]] = OpConstant [[uint]] 24\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_24]]\n" + "%uint_24 = OpConstant %uint 24\n" + "%uint_7 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpBitwiseOr %uint %4 %uint_7\n" + "%2 = OpBitwiseAnd %uint %uint_24 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantAndAddSubTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Fold // 1 & (n + 2) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: Fold // 1 & (2 + n) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: Fold // (n + 2) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: Fold // (2 + n) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: Fold // 1 & (n - 2) = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: Do not fold // 1 & (2 - n) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 6: Fold // (n - 2) & 1 = n & 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %4 %uint_2\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: Do not fold // (2 - n) & 1 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %uint_2 %4\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 8: Do not fold // 1 & (n + 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 9: Do not fold // 1 & (n - 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 10: Do not fold // 2 & (n + 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 11: Do not fold // 2 & (n - 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpISub %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 12: Do not fold // 0b10 & (n + 0b101) InstructionFoldingCase( Header() + "%uint_5 = OpConstant %uint 5\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_5\n" + "%2 = OpBitwiseAnd %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, false), // Test case 13: Fold // 0b10010 & (n + 0b11100000) = n & 0b10010 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_18:%\\w+]] = OpConstant [[uint]] 18\n" + "; CHECK: %2 = OpBitwiseAnd [[uint]] %4 [[uint_18]]\n" + "%uint_18 = OpConstant %uint 18\n" + "%uint_224 = OpConstant %uint 224\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_224\n" + "%2 = OpBitwiseAnd %uint %3 %uint_18\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Testcase 14: Do not fold // 0b10000 & (n + 0b11100001) InstructionFoldingCase( Header() + "%uint_16 = OpConstant %uint 16\n" + "%uint_225 = OpConstant %uint 225\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpIAdd %uint %4 %uint_225\n" + "%2 = OpBitwiseAnd %uint %3 %uint_16\n" + "OpReturn\n" + "OpFunctionEnd", 2, false) )); INSTANTIATE_TEST_SUITE_P(RedundantAndShiftTest, GeneralInstructionFoldingTest, ::testing::Values( // Test case 0: Fold // 1 & (n << 1) = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %uint_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 1: Fold // (n << 1) & 1 = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 2: Do not fold // 3 & (n << 1) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %uint_3 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 3: Do not fold // (n << 1) & 3 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 4: Fold // 0x80000000 & (n >> 1) = 0 InstructionFoldingCase( Header() + "%uint_2147483648 = OpConstant %uint 2147483648\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %uint_2147483648 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 5: Fold // (n >> 1) & 0x80000000 = 0 InstructionFoldingCase( Header() + "%uint_2147483648 = OpConstant %uint 2147483648\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_2147483648\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 6: Do not fold // (n >> 1) & 0xc0000000 InstructionFoldingCase( Header() + "%uint_3221225472 = OpConstant %uint 3221225472\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %3 %uint_3221225472\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 7: Do not fold // 0xc0000000 & (n >> 1) InstructionFoldingCase( Header() + "%uint_3221225472 = OpConstant %uint 3221225472\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_1\n" + "%2 = OpBitwiseAnd %uint %uint_3221225472 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 8: Fold // 0b1111 & (n << 4) = 0 InstructionFoldingCase( Header() + "%uint_15 = OpConstant %uint 15\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_4\n" + "%2 = OpBitwiseAnd %uint %uint_15 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 9: Fold // 0b1000 & (n << 4) = 0 InstructionFoldingCase( Header() + "%uint_8 = OpConstant %uint 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_4\n" + "%2 = OpBitwiseAnd %uint %uint_8 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 10: Do not fold // 0b1111 & (n << 3) InstructionFoldingCase( Header() + "%uint_15 = OpConstant %uint 15\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %uint_15 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 11: Do not fold // 0b1000 & (n << 3) InstructionFoldingCase( Header() + "%uint_8 = OpConstant %uint 8\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftLeftLogical %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %uint_8 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 12: Fold // 0xf0000000 & (n >> 4) = 0 InstructionFoldingCase( Header() + "%uint_4026531840 = OpConstant %uint 4026531840\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_4\n" + "%2 = OpBitwiseAnd %uint %uint_4026531840 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UINT_NULL_ID), // Test case 13: Do not fold // 0xf0000000 & (n >> 3) InstructionFoldingCase( Header() + "%uint_4026531840 = OpConstant %uint 4026531840\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_3\n" + "%2 = OpBitwiseAnd %uint %uint_4026531840 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 14: Do not fold // 0xf0000001 & (n >> 4) InstructionFoldingCase( Header() + "%uint_4026531841 = OpConstant %uint 4026531841\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%4 = OpLoad %uint %n\n" + "%3 = OpShiftRightLogical %uint %4 %uint_4\n" + "%2 = OpBitwiseAnd %uint %uint_4026531841 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, 0), // Test case 15: Fold (mixed-width shift amount) // 1u64 & (n << 1u32) = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_ulong Function\n" + "%4 = OpLoad %ulong %n\n" + "%3 = OpShiftLeftLogical %ulong %4 %uint_1\n" + "%2 = OpBitwiseAnd %ulong %ulong_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, ULONG_NULL_ID), // Test case 16: Fold (8-bit base, 32-bit shift amount) // 1u8 & (n << 1u32) = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_ubyte Function\n" + "%4 = OpLoad %ubyte %n\n" + "%3 = OpShiftLeftLogical %ubyte %4 %uint_1\n" + "%2 = OpBitwiseAnd %ubyte %ubyte_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UBYTE_NULL_ID), // Test case 17: Fold (16-bit base, 32-bit shift amount) // 1u16 & (n << 1u32) = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_ushort Function\n" + "%4 = OpLoad %ushort %n\n" + "%3 = OpShiftLeftLogical %ushort %4 %uint_1\n" + "%2 = OpBitwiseAnd %ushort %ushort_1 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, USHORT_NULL_ID), // Test case 18: Fold (vector, mixed-width shift amount) // <1,0>u16 & (n << <1,0>u32) = 0 InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2ushort Function\n" + "%4 = OpLoad %v2ushort %n\n" + "%3 = OpShiftLeftLogical %v2ushort %4 %v2uint_1_null\n" + "%2 = OpBitwiseAnd %v2ushort %v2ushort_1_null %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, V2USHORT_NULL_ID), // Test case 19: Fold (8-bit base, 32-bit shift amount, right shift) // 0x80u8 & (n >> 1u32) = 0 InstructionFoldingCase( Header() + "%ubyte_128 = OpConstant %ubyte 128\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_ubyte Function\n" + "%4 = OpLoad %ubyte %n\n" + "%3 = OpShiftRightLogical %ubyte %4 %uint_1\n" + "%2 = OpBitwiseAnd %ubyte %ubyte_128 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, UBYTE_NULL_ID), // Test case 20: Fold (vector, mixed-width shift amount, right shift) // <0x8000,0>u16 & (n >> <1,0>u32) = 0 InstructionFoldingCase( Header() + "%ushort_32768 = OpConstant %ushort 32768\n" + "%v2ushort_32768_0 = OpConstantComposite %v2ushort %ushort_32768 %ushort_0\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2ushort Function\n" + "%4 = OpLoad %v2ushort %n\n" + "%3 = OpShiftRightLogical %v2ushort %4 %v2uint_1_null\n" + "%2 = OpBitwiseAnd %v2ushort %v2ushort_32768_0 %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, V2USHORT_NULL_ID) )); INSTANTIATE_TEST_SUITE_P(MergeAddTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: merge add of negate // (-x) + y = y - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %float %var\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %float %x\n" + "%4 = OpFAdd %float %nx %y\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: merge add of negate // y + (-x) = y - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %float %var\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %float %x\n" + "%4 = OpFAdd %float %y %nx\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: merge add of negate // (-x) + y = y - x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%x = OpLoad %long %var\n" + "%y = OpLoad %long %var\n" + "%nx = OpSNegate %long %x\n" + "%4 = OpIAdd %long %nx %y\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: merge add of negate // y + (-x) = y - x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%x = OpLoad %long %var\n" + "%y = OpLoad %long %var\n" + "%nx = OpSNegate %long %x\n" + "%4 = OpIAdd %long %y %nx\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: merge add of subtract // (x - 1) + 2 = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %2 %float_1\n" + "%4 = OpFAdd %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: merge add of subtract // (1 - x) + 2 = 3 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_3]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_1 %2\n" + "%4 = OpFAdd %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: merge add of subtract // 2 + (x - 1) = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %2 %float_1\n" + "%4 = OpFAdd %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: merge add of subtract // 2 + (1 - x) = 3 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_3]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_1 %2\n" + "%4 = OpFAdd %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: merge add of add // (x + 1) + 2 = x + 3 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %2 %float_1\n" + "%4 = OpFAdd %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: merge add of add // (1 + x) + 2 = 3 + x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %float_1 %2\n" + "%4 = OpFAdd %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: merge add of add // 2 + (x + 1) = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %2 %float_1\n" + "%4 = OpFAdd %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 11: merge add of add // 2 + (1 + x) = 3 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %float_1 %2\n" + "%4 = OpFAdd %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 12: fold overflowing signed 32 bit iadds // (x + int_max) + 1 = x + int_min InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32\n" + "; CHECK: [[int_min:%\\w+]] = OpConstant [[int]] -2147483648\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIAdd [[int]] [[ld]] [[int_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIAdd %int %2 %int_max\n" + "%4 = OpIAdd %int %3 %int_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 13: fold overflowing signed 64 bit iadds // (x + long_max) + 1 = x + long_min InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_min:%\\w+]] = OpConstant [[long]] -9223372036854775808\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIAdd [[long]] [[ld]] [[long_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIAdd %long %2 %long_max\n" + "%4 = OpIAdd %long %3 %long_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 14: fold overflowing 32 bit unsigned iadds // (x + uint_max) + 2 = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[uint]]\n" + "; CHECK: %4 = OpIAdd [[uint]] [[ld]] [[uint_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_uint Function\n" + "%2 = OpLoad %uint %var\n" + "%3 = OpIAdd %uint %2 %uint_max\n" + "%4 = OpIAdd %uint %3 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 15: fold overflowing 64 bit unsigned iadds // (x + ulong_max) + 2 = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[ulong:%\\w+]] = OpTypeInt 64 0\n" + "; CHECK: [[ulong_1:%\\w+]] = OpConstant [[ulong]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[ulong]]\n" + "; CHECK: %4 = OpIAdd [[ulong]] [[ld]] [[ulong_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_ulong Function\n" + "%2 = OpLoad %ulong %var\n" + "%3 = OpIAdd %ulong %2 %ulong_max\n" + "%4 = OpIAdd %ulong %3 %ulong_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 16: fold underflowing signed 32 bit iadds // (x + int_min) + (-1) = x + int_max InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32\n" + "; CHECK: [[int_max:%\\w+]] = OpConstant [[int]] 2147483647\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIAdd [[int]] [[ld]] [[int_max]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpIAdd %int %2 %int_min\n" + "%4 = OpIAdd %int %3 %int_n1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 17: fold underflowing signed 64 bit iadds // (x + long_min) + (-1) = x + long_max InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_max:%\\w+]] = OpConstant [[long]] 9223372036854775807\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIAdd [[long]] [[ld]] [[long_max]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpIAdd %long %2 %long_min\n" + "%4 = OpIAdd %long %3 %long_n1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(MergeGenericAddSub, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: merge of add of sub // (a - b) + b => a InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: %6 = OpCopyObject [[float]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %var0\n" + "%4 = OpLoad %float %var1\n" + "%5 = OpFSub %float %3 %4\n" + "%6 = OpFAdd %float %5 %4\n" + "OpReturn\n" + "OpFunctionEnd\n", 6, true), // Test case 1: merge of add of sub // b + (a - b) => a InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: %6 = OpCopyObject [[float]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %var0\n" + "%4 = OpLoad %float %var1\n" + "%5 = OpFSub %float %3 %4\n" + "%6 = OpFAdd %float %4 %5\n" + "OpReturn\n" + "OpFunctionEnd\n", 6, true) )); INSTANTIATE_TEST_SUITE_P(FactorAddMul, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: factor of add of muls // (a * b) + (a * c) => a * (b + c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newadd:%\\w+]] = OpFAdd [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newadd]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %6 %4\n" + "%8 = OpFMul %float %6 %5\n" + "%9 = OpFAdd %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 1: factor of add of muls // (b * a) + (a * c) => a * (b + c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newadd:%\\w+]] = OpFAdd [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newadd]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %4 %6\n" + "%8 = OpFMul %float %6 %5\n" + "%9 = OpFAdd %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 2: factor of add of muls // (a * b) + (c * a) => a * (b + c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newadd:%\\w+]] = OpFAdd [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newadd]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %6 %4\n" + "%8 = OpFMul %float %5 %6\n" + "%9 = OpFAdd %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 3: factor of add of muls // (b * a) + (c * a) => a * (b + c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newadd:%\\w+]] = OpFAdd [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newadd]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %4 %6\n" + "%8 = OpFMul %float %5 %6\n" + "%9 = OpFAdd %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true) )); INSTANTIATE_TEST_SUITE_P(FactorSubMul, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: factor of sub of muls // (a * b) - (a * c) => a * (b - c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newsub:%\\w+]] = OpFSub [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newsub]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %6 %4\n" + "%8 = OpFMul %float %6 %5\n" + "%9 = OpFSub %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 1: factor of sub of muls // (b * a) - (a * c) => a * (b - c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newsub:%\\w+]] = OpFSub [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newsub]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %4 %6\n" + "%8 = OpFMul %float %6 %5\n" + "%9 = OpFSub %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 2: factor of sub of muls // (a * b) - (c * a) => a * (b - c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newsub:%\\w+]] = OpFSub [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newsub]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %6 %4\n" + "%8 = OpFMul %float %5 %6\n" + "%9 = OpFSub %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), // Test case 3: factor of sub of muls // (b * a) - (c * a) => a * (b - c) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[newsub:%\\w+]] = OpFSub [[float]] %4 %5\n" + "; CHECK: %9 = OpFMul [[float]] %6 [[newsub]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var0 = OpVariable %_ptr_float Function\n" + "%var1 = OpVariable %_ptr_float Function\n" + "%var2 = OpVariable %_ptr_float Function\n" + "%4 = OpLoad %float %var0\n" + "%5 = OpLoad %float %var1\n" + "%6 = OpLoad %float %var2\n" + "%7 = OpFMul %float %4 %6\n" + "%8 = OpFMul %float %5 %6\n" + "%9 = OpFSub %float %7 %8\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true) )); INSTANTIATE_TEST_SUITE_P(MergeSubTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: merge sub of negate // (-x) - 2 = -2 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n2:%\\w+]] = OpConstant [[float]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFNegate %float %2\n" + "%4 = OpFSub %float %3 %float_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 1: merge sub of negate // y - (-x) = y + x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%x = OpLoad %float %var\n" + "%y = OpLoad %float %var\n" + "%nx = OpFNegate %float %x\n" + "%4 = OpFSub %float %y %nx\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 2: merge sub of negate // (-x) - 2 = -2 - x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[long_n2:%\\w+]] = OpConstant [[long]] -2{{[[:space:]]}}\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[long_n2]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpSNegate %long %2\n" + "%4 = OpISub %long %3 %long_2\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 3: merge sub of negate // y - (-x) = y + x InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64 1\n" + "; CHECK: [[x:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: [[y:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpIAdd [[long]] [[y]] [[x]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%x = OpLoad %long %var\n" + "%y = OpLoad %long %var\n" + "%nx = OpSNegate %long %x\n" + "%4 = OpISub %long %y %nx\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 4: merge add of subtract // (x + 2) - 1 = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %2 %float_2\n" + "%4 = OpFSub %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 5: merge add of subtract // (2 + x) - 1 = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %float_2 %2\n" + "%4 = OpFSub %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 6: merge add of subtract // 2 - (x + 1) = 1 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_1]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %2 %float_1\n" + "%4 = OpFSub %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 7: merge add of subtract // 2 - (1 + x) = 1 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_1]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFAdd %float %float_1 %2\n" + "%4 = OpFSub %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 8: merge subtract of subtract // (x - 2) - 1 = x - 3 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[ld]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %2 %float_2\n" + "%4 = OpFSub %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 9: merge subtract of subtract // (2 - x) - 1 = 1 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_1]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_2 %2\n" + "%4 = OpFSub %float %3 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 10: merge subtract of subtract // 2 - (x - 1) = 3 - x InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFSub [[float]] [[float_3]] [[ld]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %2 %float_1\n" + "%4 = OpFSub %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 11: merge subtract of subtract // 1 - (2 - x) = x + (-1) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_n1:%\\w+]] = OpConstant [[float]] -1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_n1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_2 %2\n" + "%4 = OpFSub %float %float_1 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 12: merge subtract of subtract // 2 - (1 - x) = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[float]]\n" + "; CHECK: %4 = OpFAdd [[float]] [[ld]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_float Function\n" + "%2 = OpLoad %float %var\n" + "%3 = OpFSub %float %float_1 %2\n" + "%4 = OpFSub %float %float_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 13: merge subtract of subtract with mixed types. // 2 - (1 - x) = x + 1 InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpIAdd [[int]] [[ld]] [[int_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpISub %int %uint_1 %2\n" + "%4 = OpISub %int %int_2 %3\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 14: fold overflowing signed 32 bit isubs // (x - int_max) - 1 = x - int_min InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32\n" + "; CHECK: [[int_min:%\\w+]] = OpConstant [[int]] -2147483648\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[int]]\n" + "; CHECK: %4 = OpISub [[int]] [[ld]] [[int_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_int Function\n" + "%2 = OpLoad %int %var\n" + "%3 = OpISub %int %2 %int_max\n" + "%4 = OpISub %int %3 %int_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true), // Test case 15: fold overflowing signed 64 bit isubs // (x - long_max) - 1 = x - long_min InstructionFoldingCase( Header() + "; CHECK: [[long:%\\w+]] = OpTypeInt 64\n" + "; CHECK: [[long_min:%\\w+]] = OpConstant [[long]] -9223372036854775808\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[long]]\n" + "; CHECK: %4 = OpISub [[long]] [[ld]] [[long_min]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%var = OpVariable %_ptr_long Function\n" + "%2 = OpLoad %long %var\n" + "%3 = OpISub %long %2 %long_max\n" + "%4 = OpISub %long %3 %long_1\n" + "OpReturn\n" + "OpFunctionEnd\n", 4, true) )); INSTANTIATE_TEST_SUITE_P(SelectFoldingTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Fold select with the same values for both sides InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int0:%\\w+]] = OpConstant [[int]] 0\n" + "; CHECK: %2 = OpCopyObject [[int]] [[int0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpSelect %int %load %100 %100\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: Fold select true to left side InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int0:%\\w+]] = OpConstant [[int]] 0\n" + "; CHECK: %2 = OpCopyObject [[int]] [[int0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpSelect %int %true %100 %n\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: Fold select false to right side InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int0:%\\w+]] = OpConstant [[int]] 0\n" + "; CHECK: %2 = OpCopyObject [[int]] [[int0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpSelect %int %false %n %100\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: Fold select null to right side InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int0:%\\w+]] = OpConstant [[int]] 0\n" + "; CHECK: %2 = OpCopyObject [[int]] [[int0]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpSelect %int %bool_null %load %100\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: vector null InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[v2int2_2:%\\w+]] = OpConstantComposite [[v2int]] [[int2]] [[int2]]\n" + "; CHECK: %2 = OpCopyObject [[v2int]] [[v2int2_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%load = OpLoad %v2int %n\n" + "%2 = OpSelect %v2int %v2bool_null %load %v2int_2_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: vector select InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: %4 = OpVectorShuffle [[v2int]] %2 %3 0 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v2int Function\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %n\n" + "%3 = OpLoad %v2int %n\n" + "%4 = OpSelect %v2int %v2bool_true_false %2 %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 6: vector select InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: %4 = OpVectorShuffle [[v2int]] %2 %3 2 1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v2int Function\n" + "%n = OpVariable %_ptr_v2int Function\n" + "%2 = OpLoad %v2int %n\n" + "%3 = OpLoad %v2int %n\n" + "%4 = OpSelect %v2int %v2bool_false_true %2 %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 7: Fold select with different type of zeros for both sides InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_null:%\\w+]] = OpConstantNull [[float]]\n" + "; CHECK: %2 = OpCopyObject [[float]] [[float_null]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%load = OpLoad %bool %n\n" + "%2 = OpSelect %float %load %float_null %float_0\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FoldConstantBooleanSelectTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // x ? true : false = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpSelect %bool %3 %true %false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // x ? false : true = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpSelect %bool %3 %false %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: // x ? true : null_false = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpSelect %bool %3 %true %bool_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: // x ? null_false : true = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpSelect %bool %3 %bool_null %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantLogicalAndTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // x && true = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalAnd %bool %3 %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // true && x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalAnd %bool %true %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantLogicalOrTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // x || false = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %3 %false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // false || x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %false %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: // x || null_false = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %3 %bool_null\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: // null_false || x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalOr %bool %bool_null %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantLogicalNotTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // !!x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpLogicalNot %bool %3\n" + "%2 = OpLogicalNot %bool %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(RedundantLogicalEqualTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // x == true = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalEqual %bool %3 %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // true == x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalEqual %bool %true %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: // x == false = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalEqual %bool %3 %false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: // false == x = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalEqual %bool %false %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: // x != true = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalNotEqual %bool %3 %true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: // true != x = !x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalNotEqual %bool %true %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 6: // x != false = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalNotEqual %bool %3 %false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: // false != x = x InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%2 = OpLogicalNotEqual %bool %false %3\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(FoldLogicalNotComparisonTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // !(a == b) = (a != b) [OpIEqual => OpINotEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpINotEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpIEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // !(a != b) = (a == b) [OpINotEqual => OpIEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpIEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpINotEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: // !(a == b) = (a != b) [OpFOrdEqual => OpFUnordNotEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordNotEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: // !(a != b) = (a == b) [OpFUnordNotEqual => OpFOrdEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordNotEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: // !(a == b) = (a != b) [OpFUnordEqual => OpFOrdNotEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdNotEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: // !(a != b) = (a == b) [OpFOrdNotEqual => OpFUnordEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdNotEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 6: // !(a == b) = (a != b) [OpLogicalEqual => OpLogicalNotEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNotEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%m = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpLoad %bool %m\n" + "%5 = OpLogicalEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: // !(a != b) = (a == b) [OpLogicalNotEqual => OpLogicalEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%m = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpLoad %bool %m\n" + "%5 = OpLogicalNotEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 8: // !(a > b) = (a <= b) [OpUGreaterThan => OpULessThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpULessThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%4 = OpLoad %uint %m\n" + "%5 = OpUGreaterThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 9: // !(a <= b) = (a > b) [OpULessThanEqual => OpUGreaterThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpUGreaterThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%4 = OpLoad %uint %m\n" + "%5 = OpULessThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 10: // !(a > b) = (a <= b) [OpSGreaterThan => OpSLessThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpSLessThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpSGreaterThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: // !(a <= b) = (a > b) [OpSLessThanEqual => OpSGreaterThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpSGreaterThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpSLessThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: // !(a > b) = (a <= b) [OpFOrdGreaterThan => OpFUnordLessThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordLessThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdGreaterThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: // !(a <= b) = (a > b) [OpFUnordLessThanEqual => OpFOrdGreaterThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdGreaterThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordLessThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: // !(a > b) = (a <= b) [OpFUnordGreaterThan => OpFOrdLessThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdLessThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordGreaterThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: // !(a <= b) = (a > b) [OpFOrdLessThanEqual => OpFUnordGreaterThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordGreaterThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdLessThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 16: // !(a < b) = (a >= b) [OpULessThan => OpUGreaterThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpUGreaterThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%4 = OpLoad %uint %m\n" + "%5 = OpULessThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 17: // !(a >= b) = (a < b) [OpUGreaterThanEqual => OpULessThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpULessThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_uint Function\n" + "%m = OpVariable %_ptr_uint Function\n" + "%3 = OpLoad %uint %n\n" + "%4 = OpLoad %uint %m\n" + "%5 = OpUGreaterThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 18: // !(a < b) = (a >= b) [OpSLessThan => OpSGreaterThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpSGreaterThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpSLessThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 19: // !(a >= b) = (a < b) [OpSGreaterThanEqual => OpSLessThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpSLessThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%m = OpVariable %_ptr_int Function\n" + "%3 = OpLoad %int %n\n" + "%4 = OpLoad %int %m\n" + "%5 = OpSGreaterThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 20: // !(a < b) = (a >= b) [OpFOrdLessThan => OpFUnordGreaterThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordGreaterThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdLessThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 21: // !(a >= b) = (a < b) [OpFUnordGreaterThanEqual => OpFOrdLessThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdLessThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordGreaterThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 22: // !(a < b) = (a >= b) [OpFUnordLessThan => OpFOrdGreaterThanEqual] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFOrdGreaterThanEqual [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFUnordLessThan %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 23: // !(a >= b) = (a < b) [OpFOrdGreaterThanEqual => OpFUnordLessThan] InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpFUnordLessThan [[bool]] %3 %4\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_float Function\n" + "%m = OpVariable %_ptr_float Function\n" + "%3 = OpLoad %float %n\n" + "%4 = OpLoad %float %m\n" + "%5 = OpFOrdGreaterThanEqual %bool %3 %4\n" + "%2 = OpLogicalNot %bool %5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(MergeBinaryComparisonSelectTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: // [OpLogicalEqual] ((a ? [true, false] : [false, true] == [true, false])) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[v2bool:%\\w+]] = OpTypeVector [[bool]] 2\n" + "; CHECK: %2 = OpCopyObject [[v2bool]] %3\n" + "%_ptr_v2bool = OpTypePointer Function %v2bool\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2bool Function\n" + "%3 = OpLoad %v2bool %n\n" + "%4 = OpSelect %v2bool %3 %v2bool_true_false %v2bool_false_true\n" + "%2 = OpLogicalEqual %v2bool %4 %v2bool_true_false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 1: // [OpLogicalEqual] ((a ? [true, false] : [false, true] == [false, true])) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[v2bool:%\\w+]] = OpTypeVector [[bool]] 2\n" + "; CHECK: %2 = OpLogicalNot [[v2bool]] %3\n" + "%_ptr_v2bool = OpTypePointer Function %v2bool\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2bool Function\n" + "%3 = OpLoad %v2bool %n\n" + "%4 = OpSelect %v2bool %3 %v2bool_true_false %v2bool_false_true\n" + "%2 = OpLogicalEqual %v2bool %4 %v2bool_false_true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 2: // [OpLogicalNotEqual] ((a ? [true, false] : [false, true] != [true, false])) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[v2bool:%\\w+]] = OpTypeVector [[bool]] 2\n" + "; CHECK: %2 = OpLogicalNot [[v2bool]] %3\n" + "%_ptr_v2bool = OpTypePointer Function %v2bool\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2bool Function\n" + "%3 = OpLoad %v2bool %n\n" + "%4 = OpSelect %v2bool %3 %v2bool_true_false %v2bool_false_true\n" + "%2 = OpLogicalNotEqual %v2bool %4 %v2bool_true_false\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 3: // [OpLogicalNotEqual] ((a ? [true, false] : [false, true]) != [false, true]) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[v2bool:%\\w+]] = OpTypeVector [[bool]] 2\n" + "; CHECK: %2 = OpCopyObject [[v2bool]] %3\n" + "%_ptr_v2bool = OpTypePointer Function %v2bool\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v2bool Function\n" + "%3 = OpLoad %v2bool %n\n" + "%4 = OpSelect %v2bool %3 %v2bool_true_false %v2bool_false_true\n" + "%2 = OpLogicalNotEqual %v2bool %4 %v2bool_false_true\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 4: // [OpIEqual] ((a ? 1 : 0) == 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_1 %uint_0\n" + "%2 = OpIEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 5: // [OpIEqual] ((a ? 0 : 1) == 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_1\n" + "%2 = OpIEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 6: // [OpINotEqual] ((a ? 1 : 0) != 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_1 %uint_0\n" + "%2 = OpINotEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 7: // [OpINotEqual] ((a ? 0 : 1) != 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_1\n" + "%2 = OpINotEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 8: // [OpUGreaterThan] ((a ? 2 : 0) > 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpUGreaterThan %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 9: // [OpUGreaterThan] (1 > (a ? 2 : 0)) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpUGreaterThan %bool %uint_1 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 10: // [OpUGreaterThan] ((a ? 0 : 2) > 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpUGreaterThan %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 11: // [OpUGreaterThan] (1 > (a ? 0 : 2)) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpUGreaterThan %bool %uint_1 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 12: // [OpSGreaterThan] ((a ? 2 : 0) > 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpSGreaterThan %bool %4 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 13: // [OpSGreaterThan] ((a ? 0 : 2) > 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_0 %int_2\n" + "%2 = OpSGreaterThan %bool %4 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 14: // [OpUGreaterThanEqual] ((a ? 2 : 0) >= 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpUGreaterThanEqual %bool %4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 15: // [OpUGreaterThanEqual] ((a ? 0 : 2) >= 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpUGreaterThanEqual %bool %4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 16: // [OpSGreaterThanEqual] ((a ? 2 : 0) >= 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpSGreaterThanEqual %bool %4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 17: // [OpSGreaterThanEqual] ((a ? 0 : 2) >= 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_0 %int_2\n" + "%2 = OpSGreaterThanEqual %bool %4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 18: // [OpULessThan] ((a ? 0 : 2) < 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpULessThan %bool %4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 19: // [OpULessThan] (2 < (a ? 0 : 2)) = false InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[false:%\\w+]] = OpConstantFalse [[bool]]\n" + "; CHECK: %2 = OpCopyObject [[bool]] [[false]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpULessThan %bool %uint_2 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 20: // [OpULessThan] ((a ? 2 : 0) < 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpULessThan %bool %4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 21: // [OpULessThan] (2 > (a ? 2 : 0)) = false InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: [[false:%\\w+]] = OpConstantFalse [[bool]]\n" + "; CHECK: %2 = OpCopyObject [[bool]] [[false]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpULessThan %bool %uint_2 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 22: // [OpSLessThan] ((a ? 0 : 2) < 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_0 %int_2\n" + "%2 = OpSLessThan %bool %4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 23: // [OpSLessThan] ((a ? 2 : 0) < 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpSLessThan %bool %4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 24: // [OpULessThanEqual] ((a ? 0 : 2) <= 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_0 %uint_2\n" + "%2 = OpULessThanEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 25: // [OpULessThanEqual] ((a ? 2 : 0) <= 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_2 %uint_0\n" + "%2 = OpULessThanEqual %bool %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 26: // [OpSLessThanEqual] ((a ? 0 : 2) <= 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_0 %int_2\n" + "%2 = OpSLessThanEqual %bool %4 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 27: // [OpSLessThanEqual] ((a ? 2 : 0) <= 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpSLessThanEqual %bool %4 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 28: // [OpFUnordEqual] ((a ? 1 : 0) == 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_0\n" + "%2 = OpFUnordEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 29: // [OpFUnordEqual] ((a ? 0 : 1) == 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_1\n" + "%2 = OpFUnordEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 30: // [OpFUnordNotEqual] ((a ? 1 : 0) != 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_0\n" + "%2 = OpFUnordNotEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 31: // [OpFUnordNotEqual] ((a ? 0 : 1) != 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_1\n" + "%2 = OpFUnordNotEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 32: // [OpFOrdEqual] ((a ? 1 : 0) == 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_0\n" + "%2 = OpFOrdEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 33: // [OpFOrdEqual] ((a ? 0 : 1) == 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_1\n" + "%2 = OpFOrdEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 34: // [OpFOrdNotEqual] ((a ? 1 : 0) != 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_0\n" + "%2 = OpFOrdNotEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 35: // [OpFOrdNotEqual] ((a ? 0 : 1) != 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_1\n" + "%2 = OpFOrdNotEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 36: // [OpFOrdGreaterThan] ((a ? 2 : 0) > 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFOrdGreaterThan %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 37: // [OpFOrdGreaterThan] ((a ? 0 : 2) > 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFOrdGreaterThan %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 38: // [OpFUnordGreaterThan] ((a ? 2 : 0) > 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFUnordGreaterThan %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 39: // [OpFUnordGreaterThan] ((a ? 0 : 2) > 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFUnordGreaterThan %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 40: // [OpFOrdGreaterThanEqual] ((a ? 2 : 0) >= 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFOrdGreaterThanEqual %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 41: // [OpFOrdGreaterThanEqual] ((a ? 0 : 2) >= 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFOrdGreaterThanEqual %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 42: // [OpFUnordGreaterThanEqual] ((a ? 2 : 0) >= 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFUnordGreaterThanEqual %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 43: // [OpFUnordGreaterThanEqual] ((a ? 0 : 2) >= 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFUnordGreaterThanEqual %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 44: // [OpFUnordLessThan] ((a ? 0 : 2) < 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFUnordLessThan %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 45: // [OpFUnordLessThan] ((a ? 2 : 0) < 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFUnordLessThan %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 46: // [OpFOrdLessThan] ((a ? 0 : 2) < 2) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFOrdLessThan %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 47: // [OpFOrdLessThan] ((a ? 2 : 0) < 2) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFOrdLessThan %bool %4 %float_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 48: // [OpFUnordLessThanEqual] ((a ? 0 : 2) <= 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFUnordLessThanEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 49: // [OpFUnordLessThanEqual] ((a ? 2 : 0) <= 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFUnordLessThanEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 50: // [OpFOrdLessThanEqual] ((a ? 0 : 2) <= 1) = a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpCopyObject [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_0 %float_2\n" + "%2 = OpFOrdLessThanEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 51: // [OpFOrdLessThanEqual] ((a ? 2 : 0) <= 1) = !a InstructionFoldingCase( Header() + "; CHECK: [[bool:%\\w+]] = OpTypeBool\n" + "; CHECK: %2 = OpLogicalNot [[bool]] %3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_2 %float_0\n" + "%2 = OpFOrdLessThanEqual %bool %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 52: // [OpIAdd] (1 + (a ? 2 : 0)) = (a ? 3 : 1) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK: [[int_3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: %2 = OpSelect [[int]] %3 [[int_3]] [[int_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpIAdd %int %int_1 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 53: // [OpFAdd] ((a ? 1 : 2) + 1) = (a ? 2 : 3) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[float_3:%\\w+]] = OpConstant [[float]] 3\n" + "; CHECK: %2 = OpSelect [[float]] %3 [[float_2]] [[float_3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_2\n" + "%2 = OpFAdd %float %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 54: // [OpISub] (1 - (a ? 2 : 0)) = (a ? -1 : 1) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK: [[int_n1:%\\w+]] = OpConstant [[int]] -1\n" + "; CHECK: %2 = OpSelect [[int]] %3 [[int_n1]] [[int_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpISub %int %int_1 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 55: // [OpISub] ((a ? 2 : 0) - 1) = (a ? 1 : -1) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK: [[int_n1:%\\w+]] = OpConstant [[int]] -1\n" + "; CHECK: %2 = OpSelect [[int]] %3 [[int_1]] [[int_n1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_0\n" + "%2 = OpISub %int %4 %int_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 56: // [OpFSub] (1 - (a ? 1 : 4)) = (a ? 0 : -3) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0:%\\w+]] = OpConstant [[float]] 0\n" + "; CHECK: [[float_n3:%\\w+]] = OpConstant [[float]] -3\n" + "; CHECK: %2 = OpSelect [[float]] %3 [[float_0]] [[float_n3]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_4\n" + "%2 = OpFSub %float %float_1 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 57: // [OpFSub] ((a ? 1 : 2) - 1) = (a ? 0 : 1) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_0:%\\w+]] = OpConstant [[float]] 0\n" + "; CHECK: [[float_1:%\\w+]] = OpConstant [[float]] 1\n" + "; CHECK: %2 = OpSelect [[float]] %3 [[float_0]] [[float_1]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_2\n" + "%2 = OpFSub %float %4 %float_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 58: // [OpIMul] ((a ? 2 : 1) * 2) = (a ? 4 : 2) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[int_4:%\\w+]] = OpConstant [[int]] 4\n" + "; CHECK: %2 = OpSelect [[int]] %3 [[int_4]] [[int_2]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_2 %int_1\n" + "%2 = OpIMul %int %4 %int_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 59: // [OpFMul] (2 * (a ? 1 : 2)) = (a ? 2 : 4) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: %2 = OpSelect [[float]] %3 [[float_2]] [[float_4]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_1 %float_2\n" + "%2 = OpFMul %float %float_2 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 60: // [OpUDiv] ((a ? 10 : 5) / 5) = (a ? 2 : 1) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_1:%\\w+]] = OpConstant [[uint]] 1\n" + "; CHECK: [[uint_2:%\\w+]] = OpConstant [[uint]] 2\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_2]] [[uint_1]]\n" + "%uint_5 = OpConstant %uint 5\n" + "%uint_10 = OpConstant %uint 10\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_10 %uint_5\n" + "%2 = OpUDiv %uint %4 %uint_5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 61: // [OpSDiv] ((a ? 15 : 10) / 5) = (a ? 3 : 2) InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int_2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK: [[int_3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: %2 = OpSelect [[int]] %3 [[int_3]] [[int_2]]\n" + "%int_5 = OpConstant %int 5\n" + "%int_15 = OpConstant %int 15\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %int %3 %int_15 %int_10\n" + "%2 = OpSDiv %int %4 %int_5\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 62: // [OpFDiv] ((a ? 8 : 16) / 4) = (a ? 2 : 4) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[float_2:%\\w+]] = OpConstant [[float]] 2\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: %2 = OpSelect [[float]] %3 [[float_2]] [[float_4]]\n" + "%float_8 = OpConstant %float 8\n" + "%float_16 = OpConstant %float 16\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %float %3 %float_8 %float_16\n" + "%2 = OpFDiv %float %4 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 63: // [OpVectorTimesScalar] ((a ? [1,2] : [2,1]) * 4) = (a ? [4,8] : [8,4]) InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: [[v2float:%\\w+]] = OpTypeVector [[float]] 2\n" + "; CHECK: [[float_4:%\\w+]] = OpConstant [[float]] 4\n" + "; CHECK: [[float_8:%\\w+]] = OpConstant [[float]] 8\n" + "; CHECK: [[v2float_4_8:%\\w+]] = OpConstantComposite [[v2float]] [[float_4]] [[float_8]]\n" + "; CHECK: [[v2float_8_4:%\\w+]] = OpConstantComposite [[v2float]] [[float_8]] [[float_4]]\n" + "; CHECK: %2 = OpSelect [[v2float]] %3 [[v2float_4_8]] [[v2float_8_4]]\n" + "%v2float_1_2 = OpConstantComposite %v2float %float_1 %float_2\n" + "%v2float_2_1 = OpConstantComposite %v2float %float_2 %float_1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %v2float %3 %v2float_1_2 %v2float_2_1\n" + "%2 = OpVectorTimesScalar %v2float %4 %float_4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 64: // [OpShiftRightLogical] ((a ? 32 : 16) >> 2) = (a ? 8 : 4) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4:%\\w+]] = OpConstant [[uint]] 4\n" + "; CHECK: [[uint_8:%\\w+]] = OpConstant [[uint]] 8\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_8]] [[uint_4]]\n" + "%uint_16 = OpConstant %uint 16\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_32 %uint_16\n" + "%2 = OpShiftRightLogical %uint %4 %uint_2\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 65: // [OpShiftRightArithmetic] ((a ? 16 : 32) >> 1) = (a ? 8 : 16) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_16:%\\w+]] = OpConstant [[uint]] 16\n" + "; CHECK: [[uint_8:%\\w+]] = OpConstant [[uint]] 8\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_8]] [[uint_16]]\n" + "%uint_16 = OpConstant %uint 16\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_16 %uint_32\n" + "%2 = OpShiftRightArithmetic %uint %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 66: // [OpShiftLeftLogical] ((a ? 7 : 3) << 1) = (a ? 14 : 6) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_14:%\\w+]] = OpConstant [[uint]] 14\n" + "; CHECK: [[uint_6:%\\w+]] = OpConstant [[uint]] 6\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_14]] [[uint_6]]\n" + "%uint_7 = OpConstant %uint 7\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_7 %uint_3\n" + "%2 = OpShiftLeftLogical %uint %4 %uint_1\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 67: // [OpBitwiseXor] (19 ^ (a ? 65 : 17)) = (a ? 82 : 2) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_2:%\\w+]] = OpConstant [[uint]] 2\n" + "; CHECK: [[uint_82:%\\w+]] = OpConstant [[uint]] 82\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_82]] [[uint_2]]\n" + "%uint_65 = OpConstant %uint 65\n" + "%uint_17 = OpConstant %uint 17\n" + "%uint_19 = OpConstant %uint 19\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_65 %uint_17\n" + "%2 = OpBitwiseXor %uint %uint_19 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 68: // [OpBitwiseOr] ((a ? 12 : 13) | 20) = (a ? 28 : 29) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_28:%\\w+]] = OpConstant [[uint]] 28\n" + "; CHECK: [[uint_29:%\\w+]] = OpConstant [[uint]] 29\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_28]] [[uint_29]]\n" + "%uint_12 = OpConstant %uint 12\n" + "%uint_13 = OpConstant %uint 13\n" + "%uint_20 = OpConstant %uint 20\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_12 %uint_13\n" + "%2 = OpBitwiseOr %uint %4 %uint_20\n" + "OpReturn\n" + "OpFunctionEnd", 2, true), // Test case 69: // [OpBitwiseAnd] (12 & (a ? 53 : 58)) = (a ? 4 : 8) InstructionFoldingCase( Header() + "; CHECK: [[uint:%\\w+]] = OpTypeInt 32 0\n" + "; CHECK: [[uint_4:%\\w+]] = OpConstant [[uint]] 4\n" + "; CHECK: [[uint_8:%\\w+]] = OpConstant [[uint]] 8\n" + "; CHECK: %2 = OpSelect [[uint]] %3 [[uint_4]] [[uint_8]]\n" + "%uint_53 = OpConstant %uint 53\n" + "%uint_58 = OpConstant %uint 58\n" + "%uint_12 = OpConstant %uint 12\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_bool Function\n" + "%3 = OpLoad %bool %n\n" + "%4 = OpSelect %uint %3 %uint_53 %uint_58\n" + "%2 = OpBitwiseAnd %uint %uint_12 %4\n" + "OpReturn\n" + "OpFunctionEnd", 2, true) )); INSTANTIATE_TEST_SUITE_P(CompositeExtractOrInsertMatchingTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Extracting from result of consecutive shuffles of differing // size. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: %5 = OpCompositeExtract [[int]] %2 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4int Function\n" + "%2 = OpLoad %v4int %n\n" + "%3 = OpVectorShuffle %v2int %2 %2 2 3\n" + "%4 = OpVectorShuffle %v4int %2 %3 0 4 2 5\n" + "%5 = OpCompositeExtract %int %4 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 1: Extracting from result of vector shuffle of differing // input and result sizes. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: %4 = OpCompositeExtract [[int]] %2 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4int Function\n" + "%2 = OpLoad %v4int %n\n" + "%3 = OpVectorShuffle %v2int %2 %2 2 3\n" + "%4 = OpCompositeExtract %int %3 0\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 2: Extracting from result of vector shuffle of differing // input and result sizes. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: %4 = OpCompositeExtract [[int]] %2 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4int Function\n" + "%2 = OpLoad %v4int %n\n" + "%3 = OpVectorShuffle %v2int %2 %2 2 3\n" + "%4 = OpCompositeExtract %int %3 1\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 3: Using fmix feeding extract with a 1 in the a position. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 4\n" + "; CHECK: [[ptr_v4double:%\\w+]] = OpTypePointer Function [[v4double]]\n" + "; CHECK: [[m:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[n:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v4double]] [[n]]\n" + "; CHECK: %5 = OpCompositeExtract [[double]] [[ld]] 1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v4double Function\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %m\n" + "%3 = OpLoad %v4double %n\n" + "%4 = OpExtInst %v4double %1 FMix %2 %3 %v4double_0_1_0_0\n" + "%5 = OpCompositeExtract %double %4 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 4: Using fmix feeding extract with a 0 in the a position. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 4\n" + "; CHECK: [[ptr_v4double:%\\w+]] = OpTypePointer Function [[v4double]]\n" + "; CHECK: [[m:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[n:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v4double]] [[m]]\n" + "; CHECK: %5 = OpCompositeExtract [[double]] [[ld]] 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v4double Function\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %m\n" + "%3 = OpLoad %v4double %n\n" + "%4 = OpExtInst %v4double %1 FMix %2 %3 %v4double_0_1_0_0\n" + "%5 = OpCompositeExtract %double %4 2\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 5: Using fmix feeding extract with a null for the alpha InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 4\n" + "; CHECK: [[ptr_v4double:%\\w+]] = OpTypePointer Function [[v4double]]\n" + "; CHECK: [[m:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[n:%\\w+]] = OpVariable [[ptr_v4double]] Function\n" + "; CHECK: [[ld:%\\w+]] = OpLoad [[v4double]] [[m]]\n" + "; CHECK: %5 = OpCompositeExtract [[double]] [[ld]] 0\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v4double Function\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %m\n" + "%3 = OpLoad %v4double %n\n" + "%4 = OpExtInst %v4double %1 FMix %2 %3 %v4double_null\n" + "%5 = OpCompositeExtract %double %4 0\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 6: Don't fold: Using fmix feeding extract with 0.5 in the a // position. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v4double Function\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %m\n" + "%3 = OpLoad %v4double %n\n" + "%4 = OpExtInst %v4double %1 FMix %2 %3 %v4double_1_1_1_0p5\n" + "%5 = OpCompositeExtract %double %4 3\n" + "OpReturn\n" + "OpFunctionEnd", 5, false), // Test case 7: Don't fold: Using fmix feeding extract with half type in // the a position. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%m = OpVariable %_ptr_v4half Function\n" + "%n = OpVariable %_ptr_v4half Function\n" + "%2 = OpLoad %v4half %m\n" + "%3 = OpLoad %v4half %n\n" + "%4 = OpExtInst %v4half %1 FMix %2 %3 %v4half_0_1_0_0\n" + "%5 = OpCompositeExtract %half %4 0\n" + "OpReturn\n" + "OpFunctionEnd", 5, false), // Test case 8: Extracting the undefined literal value from a vector // shuffle. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: %4 = OpUndef [[int]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4int Function\n" + "%2 = OpLoad %v4int %n\n" + "%3 = OpVectorShuffle %v2int %2 %2 2 4294967295\n" + "%4 = OpCompositeExtract %int %3 1\n" + "OpReturn\n" + "OpFunctionEnd", 4, true), // Test case 9: Inserting every element of a vector turns into a composite construct. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[v4:%\\w+]] = OpTypeVector [[int]] 4\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK-DAG: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK-DAG: [[int3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: [[construct:%\\w+]] = OpCompositeConstruct [[v4]] %100 [[int1]] [[int2]] [[int3]]\n" + "; CHECK: %5 = OpCopyObject [[v4]] [[construct]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %v4int %100 %v4int_undef 0\n" + "%3 = OpCompositeInsert %v4int %int_1 %2 1\n" + "%4 = OpCompositeInsert %v4int %int_2 %3 2\n" + "%5 = OpCompositeInsert %v4int %int_3 %4 3\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 10: Inserting every element of a vector turns into a composite construct in a different order. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[v4:%\\w+]] = OpTypeVector [[int]] 4\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK-DAG: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK-DAG: [[int3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: [[construct:%\\w+]] = OpCompositeConstruct [[v4]] %100 [[int1]] [[int2]] [[int3]]\n" + "; CHECK: %5 = OpCopyObject [[v4]] [[construct]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %v4int %100 %v4int_undef 0\n" + "%4 = OpCompositeInsert %v4int %int_2 %2 2\n" + "%3 = OpCompositeInsert %v4int %int_1 %4 1\n" + "%5 = OpCompositeInsert %v4int %int_3 %3 3\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 11: Check multiple inserts to the same position are handled correctly. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[v4:%\\w+]] = OpTypeVector [[int]] 4\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK-DAG: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK-DAG: [[int3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: [[construct:%\\w+]] = OpCompositeConstruct [[v4]] %100 [[int1]] [[int2]] [[int3]]\n" + "; CHECK: %6 = OpCopyObject [[v4]] [[construct]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %v4int %100 %v4int_undef 0\n" + "%3 = OpCompositeInsert %v4int %int_2 %2 2\n" + "%4 = OpCompositeInsert %v4int %int_4 %3 1\n" + "%5 = OpCompositeInsert %v4int %int_1 %4 1\n" + "%6 = OpCompositeInsert %v4int %int_3 %5 3\n" + "OpReturn\n" + "OpFunctionEnd", 6, true), // Test case 12: The last indexes are 0 and 1, but they have different first indexes. This should not be folded. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %m2x2int %100 %m2x2int_undef 0 0\n" + "%3 = OpCompositeInsert %m2x2int %int_1 %2 1 1\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test case 13: Don't fold when there is a partial insertion. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %m2x2int %v2int_1_0 %m2x2int_undef 0\n" + "%3 = OpCompositeInsert %m2x2int %int_4 %2 0 0\n" + "%4 = OpCompositeInsert %m2x2int %v2int_2_3 %3 1\n" + "OpReturn\n" + "OpFunctionEnd", 4, false), // Test case 14: Insert into a column of a matrix InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[v2:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: [[m2x2:%\\w+]] = OpTypeMatrix [[v2]] 2\n" + "; CHECK-DAG: [[m2x2_undef:%\\w+]] = OpUndef [[m2x2]]\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + // We keep this insert in the chain. DeadInsertElimPass should remove it. "; CHECK: [[insert:%\\w+]] = OpCompositeInsert [[m2x2]] %100 [[m2x2_undef]] 0 0\n" + "; CHECK: [[construct:%\\w+]] = OpCompositeConstruct [[v2]] %100 [[int1]]\n" + "; CHECK: %3 = OpCompositeInsert [[m2x2]] [[construct]] [[insert]] 0\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeInsert %m2x2int %100 %m2x2int_undef 0 0\n" + "%3 = OpCompositeInsert %m2x2int %int_1 %2 0 1\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 15: Insert all elements of the matrix. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK-DAG: [[v2:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: [[m2x2:%\\w+]] = OpTypeMatrix [[v2]] 2\n" + "; CHECK-DAG: [[m2x2_undef:%\\w+]] = OpUndef [[m2x2]]\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK-DAG: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK-DAG: [[int3:%\\w+]] = OpConstant [[int]] 3\n" + "; CHECK: [[c0:%\\w+]] = OpCompositeConstruct [[v2]] %100 [[int1]]\n" + "; CHECK: [[c1:%\\w+]] = OpCompositeConstruct [[v2]] [[int2]] [[int3]]\n" + "; CHECK: [[matrix:%\\w+]] = OpCompositeConstruct [[m2x2]] [[c0]] [[c1]]\n" + "; CHECK: %5 = OpCopyObject [[m2x2]] [[matrix]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpCompositeConstruct %v2int %100 %int_1\n" + "%3 = OpCompositeInsert %m2x2int %2 %m2x2int_undef 0\n" + "%4 = OpCompositeInsert %m2x2int %int_2 %3 1 0\n" + "%5 = OpCompositeInsert %m2x2int %int_3 %4 1 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 16: Replace construct with extract when reconstructing a member // of another object. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2:%\\w+]] = OpTypeVector [[int]] 2\n" + "; CHECK: [[m2x2:%\\w+]] = OpTypeMatrix [[v2]] 2\n" + "; CHECK: [[m2x2_undef:%\\w+]] = OpUndef [[m2x2]]\n" + "; CHECK: %5 = OpCompositeExtract [[v2]] [[m2x2_undef]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%3 = OpCompositeExtract %int %m2x2int_undef 1 0\n" + "%4 = OpCompositeExtract %int %m2x2int_undef 1 1\n" + "%5 = OpCompositeConstruct %v2int %3 %4\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 17: Don't fold when type cannot be deduced to a constant. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%4 = OpCompositeInsert %struct_v2int_int_int %int_1 %struct_v2int_int_int_null 2\n" + "OpReturn\n" + "OpFunctionEnd", 4, false), // Test case 18: Don't fold when index into composite is out of bounds. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%4 = OpCompositeExtract %int %struct_v2int_int_int 3\n" + "OpReturn\n" + "OpFunctionEnd", 4, false), // Test case 19: Fold when every element of an array is inserted. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[int2:%\\w+]] = OpConstant [[int]] 2\n" + "; CHECK-DAG: [[arr_type:%\\w+]] = OpTypeArray [[int]] [[int2]]\n" + "; CHECK-DAG: [[int10:%\\w+]] = OpConstant [[int]] 10\n" + "; CHECK-DAG: [[int1:%\\w+]] = OpConstant [[int]] 1\n" + "; CHECK: [[construct:%\\w+]] = OpCompositeConstruct [[arr_type]] [[int10]] [[int1]]\n" + "; CHECK: %5 = OpCopyObject [[arr_type]] [[construct]]\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%4 = OpCompositeInsert %int_arr_2 %int_10 %int_arr_2_undef 0\n" + "%5 = OpCompositeInsert %int_arr_2 %int_1 %4 1\n" + "OpReturn\n" + "OpFunctionEnd", 5, true), // Test case 20: Don't fold for isomorphic structs InstructionFoldingCase( Header() + "%structA = OpTypeStruct %ulong\n" + "%structB = OpTypeStruct %ulong\n" + "%structC = OpTypeStruct %structB\n" + "%struct_a_undef = OpUndef %structA\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%3 = OpCompositeExtract %ulong %struct_a_undef 0\n" + "%4 = OpCompositeConstruct %structB %3\n" + "OpReturn\n" + "OpFunctionEnd", 4, false), // Test case 21: Fold OpCopyLogical feeding extract. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[struct_type1:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[struct_type2:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[ld:%\w+]] = OpLoad [[struct_type1]] [[var]] ; CHECK: [[ex:%\w+]] = OpCompositeExtract [[uint]] [[ld]] 0 ; CHECK: %13 = OpCopyObject [[uint]] [[ex]] %struct1 = OpTypeStruct %uint %uint %struct2 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct1 = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct1 StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 %12 = OpCopyLogical %struct2 %11 %13 = OpCompositeExtract %uint %12 0 OpReturn OpFunctionEnd )", 13, true), // Test case 22: Fold OpCopyLogical feeding extract with struct result. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[struct_type1:%\w+]] = OpTypeStruct [[uint]] ; CHECK: [[struct_type2:%\w+]] = OpTypeStruct [[uint]] ; CHECK: [[struct_type3:%\w+]] = OpTypeStruct [[struct_type1]] ; CHECK: [[struct_type4:%\w+]] = OpTypeStruct [[struct_type2]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[ld:%\w+]] = OpLoad [[struct_type3]] [[var]] ; CHECK: [[ex:%\w+]] = OpCompositeExtract [[struct_type1]] [[ld]] 0 ; CHECK: %13 = OpCopyLogical [[struct_type2]] [[ex]] %struct1 = OpTypeStruct %uint %struct2 = OpTypeStruct %uint %struct3 = OpTypeStruct %struct1 %struct4 = OpTypeStruct %struct2 %_ptr_StorageBuffer_struct3 = OpTypePointer StorageBuffer %struct3 %var1 = OpVariable %_ptr_StorageBuffer_struct3 StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct3 %var1 %12 = OpCopyLogical %struct4 %11 %13 = OpCompositeExtract %struct2 %12 0 OpReturn OpFunctionEnd )", 13, true), // Test case 23: Fold OpCopyLogical feeding extract, even if multiple uses. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[struct_type1:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[struct_type2:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[ld:%\w+]] = OpLoad [[struct_type1]] [[var]] ; CHECK: [[ex:%\w+]] = OpCompositeExtract [[uint]] [[ld]] 0 ; CHECK: %13 = OpCopyObject [[uint]] [[ex]] %struct1 = OpTypeStruct %uint %uint %struct2 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct1 = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct1 StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 %12 = OpCopyLogical %struct2 %11 %13 = OpCompositeExtract %uint %12 0 %14 = OpCompositeExtract %uint %12 1 OpReturn OpFunctionEnd )", 13, true), // Test case 24: LoadFeedingExtract InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[uint_1:%\w+]] = OpConstant [[uint]] 1 ; CHECK: [[struct_type:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[int_ptr:%\w+]] = OpTypePointer StorageBuffer [[uint]] ; CHECK: [[ac:%\w+]] = OpAccessChain [[int_ptr]] [[var]] [[uint_1]] ; CHECK: [[new_ld:%\w+]] = OpLoad [[uint]] [[ac]] ; CHECK: OpCopyObject [[uint]] [[new_ld]] %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 %13 = OpCompositeExtract %uint %11 1 OpReturn OpFunctionEnd )", 13, true), // Test case 25: Fold multiple extracts InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[uint_0:%\w+]] = OpConstant [[uint]] 0 ; CHECK: [[struct_type:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[int_ptr:%\w+]] = OpTypePointer StorageBuffer [[uint]] ; CHECK: [[ac:%\w+]] = OpAccessChain [[int_ptr]] [[var]] [[uint_0]] ; CHECK: [[new_ld:%\w+]] = OpLoad [[uint]] [[ac]] ; CHECK: OpCopyObject [[uint]] [[new_ld]] %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 %13 = OpCompositeExtract %uint %11 0 %14 = OpCompositeExtract %uint %11 1 OpReturn OpFunctionEnd )", 13, true), // Test case 26: Don't fold function scope load. InstructionFoldingCase( Header() + R"( %struct1 = OpTypeStruct %uint %uint %_ptr_Function_struct = OpTypePointer Function %struct1 %main = OpFunction %void None %void_func %4 = OpLabel %var1 = OpVariable %_ptr_Function_struct Function %11 = OpLoad %struct1 %var1 %13 = OpCompositeExtract %uint %11 0 OpReturn OpFunctionEnd )", 13, false), // Test case 27: Don't fold volatile load feeding extract. InstructionFoldingCase( Header() + R"( %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %_ptr_StorageBuffer_uint = OpTypePointer StorageBuffer %uint %3 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %3 Volatile %13 = OpCompositeExtract %uint %11 0 OpReturn OpFunctionEnd )", 13, false), // Test case 28: Fold with Aligned memory operand. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[uint_1:%\w+]] = OpConstant [[uint]] 1 ; CHECK: [[struct_type:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[int_ptr:%\w+]] = OpTypePointer StorageBuffer [[uint]] ; CHECK: [[ac:%\w+]] = OpAccessChain [[int_ptr]] [[var]] [[uint_1]] ; CHECK: [[new_ld:%\w+]] = OpLoad [[uint]] [[ac]] Aligned 4 ; CHECK: OpCopyObject [[uint]] [[new_ld]] OpDecorate %struct1 Offset 0 OpMemberDecorate %struct1 1 Offset 4 %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 Aligned 16 %13 = OpCompositeExtract %uint %11 1 OpReturn OpFunctionEnd )", 13, true), // Test case 29: Fold with Aligned and Nontemporal memory operands. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[uint_1:%\w+]] = OpConstant [[uint]] 1 ; CHECK: [[struct_type:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[int_ptr:%\w+]] = OpTypePointer StorageBuffer [[uint]] ; CHECK: [[ac:%\w+]] = OpAccessChain [[int_ptr]] [[var]] [[uint_1]] ; CHECK: [[new_ld:%\w+]] = OpLoad [[uint]] [[ac]] Aligned|Nontemporal 4 ; CHECK: OpCopyObject [[uint]] [[new_ld]] OpDecorate %struct1 Offset 0 OpMemberDecorate %struct1 1 Offset 4 %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 Aligned|Nontemporal 16 %13 = OpCompositeExtract %uint %11 1 OpReturn OpFunctionEnd )", 13, true), // Test case 30: Fold with MakePointerVisible memory operand and scope. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[struct_type:%\w+]] = OpTypeStruct [[uint]] [[uint]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[int_ptr:%\w+]] = OpTypePointer StorageBuffer [[uint]] ; CHECK: [[ac:%\w+]] = OpAccessChain [[int_ptr]] [[var]] [[idx:%\w+]] ; CHECK: [[new_ld:%\w+]] = OpLoad [[uint]] [[ac]] MakePointerVisible [[idx]] ; CHECK: OpCopyObject [[uint]] [[new_ld]] OpDecorate %struct1 Offset 0 OpMemberDecorate %struct1 1 Offset 4 %struct1 = OpTypeStruct %uint %uint %_ptr_StorageBuffer_struct = OpTypePointer StorageBuffer %struct1 %var1 = OpVariable %_ptr_StorageBuffer_struct StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct1 %var1 MakePointerVisible %uint_1 %13 = OpCompositeExtract %uint %11 1 OpReturn OpFunctionEnd )", 13, true), // Test case 31: Fold OpCopyLogical feeding extract into vector. InstructionFoldingCase( Header() + R"( ; CHECK: [[uint:%\w+]] = OpTypeInt 32 0 ; CHECK: [[v2uint:%\w+]] = OpTypeVector [[uint]] 2 ; CHECK: [[struct_type1:%\w+]] = OpTypeStruct [[v2uint]] ; CHECK: [[struct_type2:%\w+]] = OpTypeStruct [[v2uint]] ; CHECK: [[struct_type3:%\w+]] = OpTypeStruct [[struct_type1]] ; CHECK: [[struct_type4:%\w+]] = OpTypeStruct [[struct_type2]] ; CHECK: [[var:%\w+]] = OpVariable ; CHECK: [[ld:%\w+]] = OpLoad [[struct_type3]] [[var]] ; CHECK: [[ex:%\w+]] = OpCompositeExtract [[uint]] [[ld]] 0 0 0 ; CHECK: %13 = OpCopyObject [[uint]] [[ex]] %struct1 = OpTypeStruct %v2uint %struct2 = OpTypeStruct %v2uint %struct3 = OpTypeStruct %struct1 %struct4 = OpTypeStruct %struct2 %_ptr_StorageBuffer_struct3 = OpTypePointer StorageBuffer %struct3 %var1 = OpVariable %_ptr_StorageBuffer_struct3 StorageBuffer %main = OpFunction %void None %void_func %4 = OpLabel %11 = OpLoad %struct3 %var1 %12 = OpCopyLogical %struct4 %11 %13 = OpCompositeExtract %uint %12 0 0 0 OpReturn OpFunctionEnd )", 13, true) )); INSTANTIATE_TEST_SUITE_P(DotProductMatchingTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Using OpDot to extract last element. InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: %3 = OpCompositeExtract [[float]] %2 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%2 = OpLoad %v4float %n\n" + "%3 = OpDot %float %2 %v4float_0_0_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 1: Using OpDot to extract last element. InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: %3 = OpCompositeExtract [[float]] %2 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%2 = OpLoad %v4float %n\n" + "%3 = OpDot %float %v4float_0_0_0_1 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 2: Using OpDot to extract second element. InstructionFoldingCase( Header() + "; CHECK: [[float:%\\w+]] = OpTypeFloat 32\n" + "; CHECK: %3 = OpCompositeExtract [[float]] %2 1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4float Function\n" + "%2 = OpLoad %v4float %n\n" + "%3 = OpDot %float %v4float_0_1_0_0 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 3: Using OpDot to extract last element. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: %3 = OpCompositeExtract [[double]] %2 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %n\n" + "%3 = OpDot %double %2 %v4double_0_0_0_1\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 4: Using OpDot to extract last element. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: %3 = OpCompositeExtract [[double]] %2 3\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %n\n" + "%3 = OpDot %double %v4double_0_0_0_1 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, true), // Test case 5: Using OpDot to extract second element. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: %3 = OpCompositeExtract [[double]] %2 1\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%2 = OpLoad %v4double %n\n" + "%3 = OpDot %double %v4double_0_1_0_0 %2\n" + "OpReturn\n" + "OpFunctionEnd", 3, true) )); INSTANTIATE_TEST_SUITE_P(VectorShuffleMatchingTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Using OpDot to extract last element. InstructionFoldingCase( Header() + "; CHECK: [[int:%\\w+]] = OpTypeInt 32 1\n" + "; CHECK: [[v2int:%\\w+]] = OpTypeVector [[int]] 2{{[[:space:]]}}\n" + "; CHECK: [[null:%\\w+]] = OpConstantNull [[v2int]]\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: %3 = OpVectorShuffle [[v2int]] [[null]] {{%\\w+}} 4294967295 2\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_int Function\n" + "%load = OpLoad %int %n\n" + "%2 = OpVectorShuffle %v2int %v2int_null %v2int_2_3 3 0xFFFFFFFF \n" + "%3 = OpVectorShuffle %v2int %2 %v2int_2_3 1 2 \n" + "OpReturn\n" + "OpFunctionEnd", 3, true) )); // Issue #5658: The Adreno compiler does not handle 16-bit FMA instructions well. // We want to avoid this by not generating FMA. We decided to never generate // FMAs because, from a SPIR-V perspective, it is neutral. The ICD can generate // the FMA if it wants. The simplest code is no code. INSTANTIATE_TEST_SUITE_P(FmaGenerationMatchingTest, MatchingInstructionFoldingTest, ::testing::Values( // Test case 0: Don't fold (x * y) + a InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFAdd %float %mul %la\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test case 1: Don't fold a + (x * y) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFAdd %float %la %mul\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test case 2: Don't fold (x * y) + a with vectors InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_v4float Function\n" + "%y = OpVariable %_ptr_v4float Function\n" + "%a = OpVariable %_ptr_v4float Function\n" + "%lx = OpLoad %v4float %x\n" + "%ly = OpLoad %v4float %y\n" + "%mul = OpFMul %v4float %lx %ly\n" + "%la = OpLoad %v4float %a\n" + "%3 = OpFAdd %v4float %mul %la\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3,false), // Test case 3: Don't fold a + (x * y) with vectors InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFAdd %float %la %mul\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test 4: Don't fold if the multiple is marked no contract. InstructionFoldingCase( std::string() + "OpCapability Shader\n" + "OpMemoryModel Logical GLSL450\n" + "OpEntryPoint Fragment %main \"main\"\n" + "OpExecutionMode %main OriginUpperLeft\n" + "OpSource GLSL 140\n" + "OpName %main \"main\"\n" + "OpDecorate %mul NoContraction\n" + "%void = OpTypeVoid\n" + "%void_func = OpTypeFunction %void\n" + "%bool = OpTypeBool\n" + "%float = OpTypeFloat 32\n" + "%_ptr_float = OpTypePointer Function %float\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFAdd %float %mul %la\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test 5: Don't fold if the add is marked no contract. InstructionFoldingCase( std::string() + "OpCapability Shader\n" + "OpMemoryModel Logical GLSL450\n" + "OpEntryPoint Fragment %main \"main\"\n" + "OpExecutionMode %main OriginUpperLeft\n" + "OpSource GLSL 140\n" + "OpName %main \"main\"\n" + "OpDecorate %3 NoContraction\n" + "%void = OpTypeVoid\n" + "%void_func = OpTypeFunction %void\n" + "%bool = OpTypeBool\n" + "%float = OpTypeFloat 32\n" + "%_ptr_float = OpTypePointer Function %float\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFAdd %float %mul %la\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test case 6: Don't fold (x * y) - a InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFSub %float %mul %la\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false), // Test case 7: Don't fold a - (x * y) InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%x = OpVariable %_ptr_float Function\n" + "%y = OpVariable %_ptr_float Function\n" + "%a = OpVariable %_ptr_float Function\n" + "%lx = OpLoad %float %x\n" + "%ly = OpLoad %float %y\n" + "%mul = OpFMul %float %lx %ly\n" + "%la = OpLoad %float %a\n" + "%3 = OpFSub %float %la %mul\n" + "OpStore %a %3\n" + "OpReturn\n" + "OpFunctionEnd", 3, false) )); using MatchingInstructionWithNoResultFoldingTest = ::testing::TestWithParam>; // Test folding instructions that do not have a result. The instruction // that will be folded is the last instruction before the return. If there // are multiple returns, there is not guarantee which one is used. TEST_P(MatchingInstructionWithNoResultFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold,SPV_ENV_UNIVERSAL_1_5); // Find the instruction to test. EXPECT_EQ(inst != nullptr, tc.expected_result); if (inst != nullptr) { Match(tc.test_body, context.get()); } } INSTANTIATE_TEST_SUITE_P(StoreMatchingTest, MatchingInstructionWithNoResultFoldingTest, ::testing::Values( // Test case 0: Remove store of undef. InstructionFoldingCase( Header() + "; CHECK: OpLabel\n" + "; CHECK-NOT: OpStore\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%undef = OpUndef %v4double\n" + "OpStore %n %undef\n" + "OpReturn\n" + "OpFunctionEnd", 0 /* OpStore */, true), // Test case 1: Keep volatile store. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%n = OpVariable %_ptr_v4double Function\n" + "%undef = OpUndef %v4double\n" + "OpStore %n %undef Volatile\n" + "OpReturn\n" + "OpFunctionEnd", 0 /* OpStore */, false) )); INSTANTIATE_TEST_SUITE_P(VectorShuffleMatchingTest, MatchingInstructionWithNoResultFoldingTest, ::testing::Values( // Test case 0: Basic test 1 InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %7 %5 2 3 6 7\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 3 4 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 1: Basic test 2 InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %6 %7 0 1 4 5\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %8 %7 2 3 4 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 2: Basic test 3 InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %5 %7 3 2 4 5\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %8 %7 1 0 4 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 3: Basic test 4 InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %7 %6 2 3 5 4\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 3 7 6\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 4: Don't fold, need both operands of the feeder. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 3 7 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, false), // Test case 5: Don't fold, need both operands of the feeder. InstructionFoldingCase( Header() + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %6 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %8 %7 2 0 7 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, false), // Test case 6: Fold, need both operands of the feeder, but they are the same. InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %5 %7 0 2 7 5\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %5 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %8 %7 2 0 7 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 7: Fold, need both operands of the feeder, but they are the same. InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %7 %5 2 0 5 7\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %5 2 3 4 5\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 0 7 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 8: Replace first operand with a smaller vector. InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %5 %7 0 0 5 3\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v2double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v2double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v4double %5 %5 0 1 2 3\n" + "%9 = OpVectorShuffle %v4double %8 %7 2 0 7 5\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 9: Replace first operand with a larger vector. InstructionFoldingCase( Header() + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %5 %7 3 0 7 5\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 3\n" + "%9 = OpVectorShuffle %v4double %8 %7 1 0 5 3\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 10: Replace unused operand with null. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[null:%\\w+]] = OpConstantNull [[v4double]]\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} [[null]] %7 4 2 5 3\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 3\n" + "%9 = OpVectorShuffle %v4double %8 %7 4 2 5 3\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 11: Replace unused operand with null. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[null:%\\w+]] = OpConstantNull [[v4double]]\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} [[null]] %5 2 2 5 5\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 3\n" + "%9 = OpVectorShuffle %v4double %8 %8 2 2 3 3\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 12: Replace unused operand with null. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: [[null:%\\w+]] = OpConstantNull [[v4double]]\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %7 [[null]] 2 0 1 3\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 3\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 0 1 3\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 13: Shuffle with undef literal. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %7 {{%\\w+}} 2 0 1 4294967295\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 1\n" + "%9 = OpVectorShuffle %v4double %7 %8 2 0 1 4294967295\n" + "OpReturn\n" + "OpFunctionEnd", 9, true), // Test case 14: Shuffle with undef literal and change size of first input vector. InstructionFoldingCase( Header() + "; CHECK: [[double:%\\w+]] = OpTypeFloat 64\n" + "; CHECK: [[v4double:%\\w+]] = OpTypeVector [[double]] 2\n" + "; CHECK: OpVectorShuffle\n" + "; CHECK: OpVectorShuffle {{%\\w+}} %5 %7 0 1 4 4294967295\n" + "; CHECK: OpReturn\n" + "%main = OpFunction %void None %void_func\n" + "%main_lab = OpLabel\n" + "%2 = OpVariable %_ptr_v4double Function\n" + "%3 = OpVariable %_ptr_v4double Function\n" + "%4 = OpVariable %_ptr_v4double Function\n" + "%5 = OpLoad %v4double %2\n" + "%6 = OpLoad %v4double %3\n" + "%7 = OpLoad %v4double %4\n" + "%8 = OpVectorShuffle %v2double %5 %5 0 1\n" + "%9 = OpVectorShuffle %v4double %8 %7 0 1 2 4294967295\n" + "OpReturn\n" + "OpFunctionEnd", 9, true) )); using EntryPointFoldingTest = ::testing::TestWithParam>; TEST_P(EntryPointFoldingTest, Case) { const auto& tc = GetParam(); // Build module. std::unique_ptr context = BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, tc.test_body, SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS); ASSERT_NE(nullptr, context); // Find the first entry point. That is the instruction we want to fold. Instruction* inst = nullptr; ASSERT_FALSE(context->module()->entry_points().empty()); inst = &*context->module()->entry_points().begin(); assert(inst && "Invalid test. Could not find entry point instruction to fold."); std::unique_ptr original_inst(inst->Clone(context.get())); bool succeeded = context->get_instruction_folder().FoldInstruction(inst); EXPECT_EQ(succeeded, tc.expected_result); if (succeeded) { Match(tc.test_body, context.get()); } } INSTANTIATE_TEST_SUITE_P(OpEntryPointFoldingTest, EntryPointFoldingTest, ::testing::Values( // Test case 0: Basic test 1 InstructionFoldingCase(std::string() + "; CHECK: OpEntryPoint Fragment %2 \"main\" %3\n" + "OpCapability Shader\n" + "%1 = OpExtInstImport \"GLSL.std.450\"\n" + "OpMemoryModel Logical GLSL450\n" + "OpEntryPoint Fragment %2 \"main\" %3 %3 %3\n" + "OpExecutionMode %2 OriginUpperLeft\n" + "OpSource GLSL 430\n" + "OpDecorate %3 Location 0\n" + "%void = OpTypeVoid\n" + "%5 = OpTypeFunction %void\n" + "%float = OpTypeFloat 32\n" + "%v4float = OpTypeVector %float 4\n" + "%_ptr_Output_v4float = OpTypePointer Output %v4float\n" + "%3 = OpVariable %_ptr_Output_v4float Output\n" + "%int = OpTypeInt 32 1\n" + "%int_0 = OpConstant %int 0\n" + "%_ptr_PushConstant_v4float = OpTypePointer PushConstant %v4float\n" + "%2 = OpFunction %void None %5\n" + "%12 = OpLabel\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), InstructionFoldingCase(std::string() + "; CHECK: OpEntryPoint Fragment %2 \"main\" %3 %4\n" + "OpCapability Shader\n" + "%1 = OpExtInstImport \"GLSL.std.450\"\n" + "OpMemoryModel Logical GLSL450\n" + "OpEntryPoint Fragment %2 \"main\" %3 %4 %3\n" + "OpExecutionMode %2 OriginUpperLeft\n" + "OpSource GLSL 430\n" + "OpDecorate %3 Location 0\n" + "%void = OpTypeVoid\n" + "%5 = OpTypeFunction %void\n" + "%float = OpTypeFloat 32\n" + "%v4float = OpTypeVector %float 4\n" + "%_ptr_Output_v4float = OpTypePointer Output %v4float\n" + "%3 = OpVariable %_ptr_Output_v4float Output\n" + "%4 = OpVariable %_ptr_Output_v4float Output\n" + "%int = OpTypeInt 32 1\n" + "%int_0 = OpConstant %int 0\n" + "%_ptr_PushConstant_v4float = OpTypePointer PushConstant %v4float\n" + "%2 = OpFunction %void None %5\n" + "%12 = OpLabel\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true), InstructionFoldingCase(std::string() + "; CHECK: OpEntryPoint Fragment %2 \"main\" %4 %3\n" + "OpCapability Shader\n" + "%1 = OpExtInstImport \"GLSL.std.450\"\n" + "OpMemoryModel Logical GLSL450\n" + "OpEntryPoint Fragment %2 \"main\" %4 %4 %3\n" + "OpExecutionMode %2 OriginUpperLeft\n" + "OpSource GLSL 430\n" + "OpDecorate %3 Location 0\n" + "%void = OpTypeVoid\n" + "%5 = OpTypeFunction %void\n" + "%float = OpTypeFloat 32\n" + "%v4float = OpTypeVector %float 4\n" + "%_ptr_Output_v4float = OpTypePointer Output %v4float\n" + "%3 = OpVariable %_ptr_Output_v4float Output\n" + "%4 = OpVariable %_ptr_Output_v4float Output\n" + "%int = OpTypeInt 32 1\n" + "%int_0 = OpConstant %int 0\n" + "%_ptr_PushConstant_v4float = OpTypePointer PushConstant %v4float\n" + "%2 = OpFunction %void None %5\n" + "%12 = OpLabel\n" + "OpReturn\n" + "OpFunctionEnd\n", 9, true) )); using SPV14FoldingTest = ::testing::TestWithParam>; TEST_P(SPV14FoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold,SPV_ENV_UNIVERSAL_1_4); EXPECT_EQ(inst != nullptr, tc.expected_result); if (inst != nullptr) { Match(tc.test_body, context.get()); } } INSTANTIATE_TEST_SUITE_P(SPV14FoldingTest, SPV14FoldingTest, ::testing::Values( // Test case 0: select vectors with scalar condition. InstructionFoldingCase(std::string() + "; CHECK-NOT: OpSelect\n" + "; CHECK: %3 = OpCopyObject {{%\\w+}} %1\n" + "OpCapability Shader\n" + "OpCapability Linkage\n" + "%void = OpTypeVoid\n" + "%bool = OpTypeBool\n" + "%true = OpConstantTrue %bool\n" + "%int = OpTypeInt 32 0\n" + "%int4 = OpTypeVector %int 4\n" + "%int_0 = OpConstant %int 0\n" + "%int_1 = OpConstant %int 1\n" + "%1 = OpUndef %int4\n" + "%2 = OpUndef %int4\n" + "%void_fn = OpTypeFunction %void\n" + "%func = OpFunction %void None %void_fn\n" + "%entry = OpLabel\n" + "%3 = OpSelect %int4 %true %1 %2\n" + "OpReturn\n" + "OpFunctionEnd\n" , 3, true), // Test case 1: select struct with scalar condition. InstructionFoldingCase(std::string() + "; CHECK-NOT: OpSelect\n" + "; CHECK: %3 = OpCopyObject {{%\\w+}} %2\n" + "OpCapability Shader\n" + "OpCapability Linkage\n" + "%void = OpTypeVoid\n" + "%bool = OpTypeBool\n" + "%true = OpConstantFalse %bool\n" + "%int = OpTypeInt 32 0\n" + "%struct = OpTypeStruct %int %int %int %int\n" + "%int_0 = OpConstant %int 0\n" + "%int_1 = OpConstant %int 1\n" + "%1 = OpUndef %struct\n" + "%2 = OpUndef %struct\n" + "%void_fn = OpTypeFunction %void\n" + "%func = OpFunction %void None %void_fn\n" + "%entry = OpLabel\n" + "%3 = OpSelect %struct %true %1 %2\n" + "OpReturn\n" + "OpFunctionEnd\n" , 3, true), // Test case 1: select array with scalar condition. InstructionFoldingCase(std::string() + "; CHECK-NOT: OpSelect\n" + "; CHECK: %3 = OpCopyObject {{%\\w+}} %2\n" + "OpCapability Shader\n" + "OpCapability Linkage\n" + "%void = OpTypeVoid\n" + "%bool = OpTypeBool\n" + "%true = OpConstantFalse %bool\n" + "%int = OpTypeInt 32 0\n" + "%int_0 = OpConstant %int 0\n" + "%int_1 = OpConstant %int 1\n" + "%int_4 = OpConstant %int 4\n" + "%array = OpTypeStruct %int %int %int %int\n" + "%1 = OpUndef %array\n" + "%2 = OpUndef %array\n" + "%void_fn = OpTypeFunction %void\n" + "%func = OpFunction %void None %void_fn\n" + "%entry = OpLabel\n" + "%3 = OpSelect %array %true %1 %2\n" + "OpReturn\n" + "OpFunctionEnd\n" , 3, true) )); std::string FloatControlsHeader(const std::string& capabilities) { std::string header = R"( OpCapability Shader )" + capabilities + R"( %void = OpTypeVoid %float = OpTypeFloat 32 %float_0 = OpConstant %float 0 %float_1 = OpConstant %float 1 %void_fn = OpTypeFunction %void %func = OpFunction %void None %void_fn %entry = OpLabel )"; return header; } using FloatControlsFoldingTest = ::testing::TestWithParam>; TEST_P(FloatControlsFoldingTest, Case) { const auto& tc = GetParam(); std::unique_ptr context; Instruction* inst; std::tie(context, inst) = FoldInstruction(tc.test_body, tc.id_to_fold, SPV_ENV_UNIVERSAL_1_4); EXPECT_EQ(inst != nullptr, tc.expected_result); if (inst != nullptr) { Match(tc.test_body, context.get()); } } INSTANTIATE_TEST_SUITE_P(FloatControlsFoldingTest, FloatControlsFoldingTest, ::testing::Values( // Test case 0: no folding with DenormPreserve InstructionFoldingCase(FloatControlsHeader("OpCapability DenormPreserve") + "%1 = OpFAdd %float %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n" , 1, false), // Test case 1: no folding with DenormFlushToZero InstructionFoldingCase(FloatControlsHeader("OpCapability DenormFlushToZero") + "%1 = OpFAdd %float %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n" , 1, false), // Test case 2: no folding with SignedZeroInfNanPreserve InstructionFoldingCase(FloatControlsHeader("OpCapability SignedZeroInfNanPreserve") + "%1 = OpFAdd %float %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n" , 1, false), // Test case 3: no folding with RoundingModeRTE InstructionFoldingCase(FloatControlsHeader("OpCapability RoundingModeRTE") + "%1 = OpFAdd %float %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n" , 1, false), // Test case 4: no folding with RoundingModeRTZ InstructionFoldingCase(FloatControlsHeader("OpCapability RoundingModeRTZ") + "%1 = OpFAdd %float %float_0 %float_1\n" + "OpReturn\n" + "OpFunctionEnd\n" , 1, false) )); std::string ImageOperandsTestBody(const std::string& image_instruction) { std::string body = R"( OpCapability Shader OpCapability ImageGatherExtended OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %main "main" OpExecutionMode %main OriginUpperLeft OpDecorate %Texture DescriptorSet 0 OpDecorate %Texture Binding 0 %int = OpTypeInt 32 1 %int_n1 = OpConstant %int -1 %5 = OpConstant %int 0 %float = OpTypeFloat 32 %float_0 = OpConstant %float 0 %type_2d_image = OpTypeImage %float 2D 2 0 0 1 Unknown %type_sampled_image = OpTypeSampledImage %type_2d_image %type_sampler = OpTypeSampler %_ptr_UniformConstant_type_sampler = OpTypePointer UniformConstant %type_sampler %_ptr_UniformConstant_type_2d_image = OpTypePointer UniformConstant %type_2d_image %_ptr_int = OpTypePointer Function %int %v2int = OpTypeVector %int 2 %10 = OpTypeVector %float 4 %void = OpTypeVoid %22 = OpTypeFunction %void %v2float = OpTypeVector %float 2 %v3int = OpTypeVector %int 3 %Texture = OpVariable %_ptr_UniformConstant_type_2d_image UniformConstant %gSampler = OpVariable %_ptr_UniformConstant_type_sampler UniformConstant %110 = OpConstantComposite %v2int %5 %5 %101 = OpConstantComposite %v2int %int_n1 %int_n1 %20 = OpConstantComposite %v2float %float_0 %float_0 %main = OpFunction %void None %22 %23 = OpLabel %var = OpVariable %_ptr_int Function %88 = OpLoad %type_2d_image %Texture %val = OpLoad %int %var %sampler = OpLoad %type_sampler %gSampler %26 = OpSampledImage %type_sampled_image %88 %sampler )" + image_instruction + R"( OpReturn OpFunctionEnd )"; return body; } INSTANTIATE_TEST_SUITE_P(ImageOperandsBitmaskFoldingTest, MatchingInstructionWithNoResultFoldingTest, ::testing::Values( // Test case 0: OpImageFetch without Offset InstructionFoldingCase(ImageOperandsTestBody( "%89 = OpImageFetch %10 %88 %101 Lod %5 \n") , 89, false), // Test case 1: OpImageFetch with non-const offset InstructionFoldingCase(ImageOperandsTestBody( "%89 = OpImageFetch %10 %88 %101 Lod|Offset %5 %val \n") , 89, false), // Test case 2: OpImageFetch with Lod and Offset InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageFetch %10 %88 %101 Lod|Offset %5 %101 \n" "; CHECK: %89 = OpImageFetch %10 %88 %101 Lod|ConstOffset %5 %101 \n") , 89, true), // Test case 3: OpImageFetch with Bias and Offset InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageFetch %10 %88 %101 Bias|Offset %5 %101 \n" "; CHECK: %89 = OpImageFetch %10 %88 %101 Bias|ConstOffset %5 %101 \n") , 89, true), // Test case 4: OpImageFetch with Grad and Offset. // Grad adds 2 operands to the instruction. InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageFetch %10 %88 %101 Grad|Offset %5 %5 %101 \n" "; CHECK: %89 = OpImageFetch %10 %88 %101 Grad|ConstOffset %5 %5 %101 \n") , 89, true), // Test case 5: OpImageFetch with Offset and MinLod. // This is an example of a case where the bitmask bit-offset is larger than // that of the Offset. InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageFetch %10 %88 %101 Offset|MinLod %101 %5 \n" "; CHECK: %89 = OpImageFetch %10 %88 %101 ConstOffset|MinLod %101 %5 \n") , 89, true), // Test case 6: OpImageGather with constant Offset InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageGather %10 %26 %20 %5 Offset %101 \n" "; CHECK: %89 = OpImageGather %10 %26 %20 %5 ConstOffset %101 \n") , 89, true), // Test case 7: OpImageWrite with constant Offset InstructionFoldingCase(ImageOperandsTestBody( " OpImageWrite %88 %5 %101 Offset %101 \n" "; CHECK: OpImageWrite %88 %5 %101 ConstOffset %101 \n") , 0 /* No result-id */, true), // Test case 8: OpImageFetch with zero constant Offset InstructionFoldingCase(ImageOperandsTestBody( " %89 = OpImageFetch %10 %88 %101 Lod|Offset %5 %110 \n" "; CHECK: %89 = OpImageFetch %10 %88 %101 Lod %5 \n") , 89, true) )); } // namespace } // namespace opt } // namespace spvtools