/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/ |
D | strip_debug_info_test.cpp | 58 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 74 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 112 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 113 JoinAllInsts(output), in TEST_F() 149 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 150 JoinAllInsts(output), in TEST_F() 196 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 197 JoinAllInsts(output), in TEST_F() 210 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_P()
|
D | strength_reduction_test.cpp | 59 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 160 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 189 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 217 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 251 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 342 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 343 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F() 431 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 432 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F()
|
D | utils_test.cpp | 25 TEST(JoinAllInsts, Cases) { in TEST() argument 26 EXPECT_EQ("", JoinAllInsts({})); in TEST() 27 EXPECT_EQ("a\n", JoinAllInsts({"a"})); in TEST() 28 EXPECT_EQ("a\nb\n", JoinAllInsts({"a", "b"})); in TEST() 29 EXPECT_EQ("a\nb\nc\n", JoinAllInsts({"a", "b", "c"})); in TEST() 30 EXPECT_EQ("hello,\nworld!\n\n\n", JoinAllInsts({"hello,", "world!", "\n"})); in TEST()
|
D | assembly_builder_test.cpp | 48 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 161 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 244 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 277 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F()
|
D | freeze_spec_const_test.cpp | 46 JoinAllInsts(text), JoinAllInsts(expected), /* skip_nop = */ false); in TEST_P() 126 SinglePassRunAndCheck<FreezeSpecConstantValuePass>(JoinAllInsts(text), in TEST_F()
|
D | eliminate_dead_functions_test.cpp | 65 JoinAllInsts(Concat(common_code, dead_function)), in TEST_F() 66 JoinAllInsts(common_code), /* skip_nop = */ true); in TEST_F() 100 std::string assembly = JoinAllInsts(text); in TEST_F() 139 std::string assembly = JoinAllInsts(text); in TEST_F()
|
D | eliminate_dead_const_test.cpp | 79 JoinAllInsts(text), expected_disassembly, /* skip_nop = */ true); in TEST_F() 135 JoinAllInsts(text), JoinAllInsts(text), /* skip_nop = */ true); in TEST_F()
|
D | inline_test.cpp | 134 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 135 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 284 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 285 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 413 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 414 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 549 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 550 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 744 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 745 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() [all …]
|
/external/deqp-deps/SPIRV-Tools/test/opt/ |
D | strip_debug_info_test.cpp | 58 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 74 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 112 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 113 JoinAllInsts(output), in TEST_F() 149 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 150 JoinAllInsts(output), in TEST_F() 196 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 197 JoinAllInsts(output), in TEST_F() 210 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_P()
|
D | strength_reduction_test.cpp | 59 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 160 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 189 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 217 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 251 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 342 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 343 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F() 431 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 432 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F()
|
D | utils_test.cpp | 25 TEST(JoinAllInsts, Cases) { in TEST() argument 26 EXPECT_EQ("", JoinAllInsts({})); in TEST() 27 EXPECT_EQ("a\n", JoinAllInsts({"a"})); in TEST() 28 EXPECT_EQ("a\nb\n", JoinAllInsts({"a", "b"})); in TEST() 29 EXPECT_EQ("a\nb\nc\n", JoinAllInsts({"a", "b", "c"})); in TEST() 30 EXPECT_EQ("hello,\nworld!\n\n\n", JoinAllInsts({"hello,", "world!", "\n"})); in TEST()
|
D | assembly_builder_test.cpp | 48 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 161 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 244 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 277 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F()
|
D | freeze_spec_const_test.cpp | 46 JoinAllInsts(text), JoinAllInsts(expected), /* skip_nop = */ false); in TEST_P() 126 SinglePassRunAndCheck<FreezeSpecConstantValuePass>(JoinAllInsts(text), in TEST_F()
|
D | eliminate_dead_functions_test.cpp | 65 JoinAllInsts(Concat(common_code, dead_function)), in TEST_F() 66 JoinAllInsts(common_code), /* skip_nop = */ true); in TEST_F() 100 std::string assembly = JoinAllInsts(text); in TEST_F() 139 std::string assembly = JoinAllInsts(text); in TEST_F()
|
D | eliminate_dead_const_test.cpp | 79 JoinAllInsts(text), expected_disassembly, /* skip_nop = */ true); in TEST_F() 135 JoinAllInsts(text), JoinAllInsts(text), /* skip_nop = */ true); in TEST_F()
|
D | inline_test.cpp | 134 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 135 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 284 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 285 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 413 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 414 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 549 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 550 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 744 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 745 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/test/opt/ |
D | strip_debug_info_test.cpp | 58 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 74 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_F() 112 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 113 JoinAllInsts(output), in TEST_F() 149 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 150 JoinAllInsts(output), in TEST_F() 196 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(input), in TEST_F() 197 JoinAllInsts(output), in TEST_F() 210 SinglePassRunAndCheck<StripDebugInfoPass>(JoinAllInsts(text), in TEST_P()
|
D | strength_reduction_test.cpp | 59 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 160 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 189 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 217 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 251 JoinAllInsts(text), /* skip_nop = */ true, /* do_validation = */ false); in TEST_F() 342 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 343 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F() 431 JoinAllInsts(Concat(common_text, foo_before)), in TEST_F() 432 JoinAllInsts(Concat(common_text, foo_after)), in TEST_F()
|
D | utils_test.cpp | 25 TEST(JoinAllInsts, Cases) { in TEST() argument 26 EXPECT_EQ("", JoinAllInsts({})); in TEST() 27 EXPECT_EQ("a\n", JoinAllInsts({"a"})); in TEST() 28 EXPECT_EQ("a\nb\n", JoinAllInsts({"a", "b"})); in TEST() 29 EXPECT_EQ("a\nb\nc\n", JoinAllInsts({"a", "b", "c"})); in TEST() 30 EXPECT_EQ("hello,\nworld!\n\n\n", JoinAllInsts({"hello,", "world!", "\n"})); in TEST()
|
D | assembly_builder_test.cpp | 48 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 161 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 244 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F() 277 SinglePassRunAndCheck<NullPass>(builder.GetCode(), JoinAllInsts(expected), in TEST_F()
|
D | freeze_spec_const_test.cpp | 46 JoinAllInsts(text), JoinAllInsts(expected), /* skip_nop = */ false); in TEST_P() 126 SinglePassRunAndCheck<FreezeSpecConstantValuePass>(JoinAllInsts(text), in TEST_F()
|
D | eliminate_dead_functions_test.cpp | 65 JoinAllInsts(Concat(common_code, dead_function)), in TEST_F() 66 JoinAllInsts(common_code), /* skip_nop = */ true); in TEST_F() 100 std::string assembly = JoinAllInsts(text); in TEST_F() 139 std::string assembly = JoinAllInsts(text); in TEST_F()
|
D | eliminate_dead_const_test.cpp | 79 JoinAllInsts(text), expected_disassembly, /* skip_nop = */ true); in TEST_F() 135 JoinAllInsts(text), JoinAllInsts(text), /* skip_nop = */ true); in TEST_F()
|
D | inline_test.cpp | 134 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 135 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 284 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 285 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 413 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 414 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 549 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 550 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() 744 JoinAllInsts(Concat(Concat(predefs, before), nonEntryFuncs)), in TEST_F() 745 JoinAllInsts(Concat(Concat(predefs, after), nonEntryFuncs)), in TEST_F() [all …]
|
D | def_use_test.cpp | 197 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, JoinAllInsts(text), in TEST_P() 613 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, JoinAllInsts(text), in TEST_P() 968 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, JoinAllInsts(text), in TEST_P() 1699 BuildModule(SPV_ENV_UNIVERSAL_1_1, nullptr, JoinAllInsts(text), in TEST_F()
|