2020-07-21 15:51:55 +03:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2020 Intel Corporation
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
|
* Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
#include "nir.h"
|
|
|
|
|
#include "nir_builder.h"
|
|
|
|
|
|
|
|
|
|
class nir_opt_if_test : public ::testing::Test {
|
|
|
|
|
protected:
|
|
|
|
|
nir_opt_if_test();
|
|
|
|
|
~nir_opt_if_test();
|
|
|
|
|
|
|
|
|
|
nir_builder bld;
|
|
|
|
|
|
|
|
|
|
nir_ssa_def *in_def;
|
|
|
|
|
nir_variable *out_var;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
nir_opt_if_test::nir_opt_if_test()
|
|
|
|
|
{
|
|
|
|
|
glsl_type_singleton_init_or_ref();
|
|
|
|
|
|
|
|
|
|
static const nir_shader_compiler_options options = { };
|
2020-10-26 11:37:25 -07:00
|
|
|
bld = nir_builder_init_simple_shader(MESA_SHADER_VERTEX, &options, "if test");
|
2020-07-21 15:51:55 +03:00
|
|
|
|
|
|
|
|
nir_variable *var = nir_variable_create(bld.shader, nir_var_shader_in, glsl_int_type(), "in");
|
|
|
|
|
in_def = nir_load_var(&bld, var);
|
|
|
|
|
|
|
|
|
|
out_var = nir_variable_create(bld.shader, nir_var_shader_out, glsl_int_type(), "out");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nir_opt_if_test::~nir_opt_if_test()
|
|
|
|
|
{
|
|
|
|
|
ralloc_free(bld.shader);
|
|
|
|
|
glsl_type_singleton_decref();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(nir_opt_if_test, opt_if_simplification)
|
|
|
|
|
{
|
|
|
|
|
/* Tests that opt_if_simplification correctly optimizes a simple case:
|
|
|
|
|
*
|
|
|
|
|
* vec1 1 ssa_2 = ieq ssa_0, ssa_1
|
|
|
|
|
* if ssa_2 {
|
|
|
|
|
* block block_2:
|
|
|
|
|
* } else {
|
|
|
|
|
* block block_3:
|
|
|
|
|
* do_work()
|
|
|
|
|
* }
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
nir_ssa_def *one = nir_imm_int(&bld, 1);
|
|
|
|
|
|
|
|
|
|
nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one);
|
|
|
|
|
nir_if *nif = nir_push_if(&bld, cmp_result);
|
|
|
|
|
|
|
|
|
|
nir_push_else(&bld, NULL);
|
|
|
|
|
|
|
|
|
|
// do_work
|
|
|
|
|
nir_store_var(&bld, out_var, one, 1);
|
|
|
|
|
|
|
|
|
|
nir_pop_if(&bld, NULL);
|
|
|
|
|
|
2022-08-08 17:12:14 +02:00
|
|
|
ASSERT_TRUE(nir_opt_if(bld.shader, nir_opt_if_optimize_phi_true_false));
|
2020-07-21 15:51:55 +03:00
|
|
|
|
|
|
|
|
nir_validate_shader(bld.shader, NULL);
|
|
|
|
|
|
|
|
|
|
ASSERT_TRUE(!exec_list_is_empty((&nir_if_first_then_block(nif)->instr_list)));
|
|
|
|
|
ASSERT_TRUE(exec_list_is_empty((&nir_if_first_else_block(nif)->instr_list)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(nir_opt_if_test, opt_if_simplification_single_source_phi_after_if)
|
|
|
|
|
{
|
|
|
|
|
/* Tests that opt_if_simplification correctly handles single-source
|
|
|
|
|
* phis after the if.
|
|
|
|
|
*
|
|
|
|
|
* vec1 1 ssa_2 = ieq ssa_0, ssa_1
|
|
|
|
|
* if ssa_2 {
|
|
|
|
|
* block block_2:
|
|
|
|
|
* } else {
|
|
|
|
|
* block block_3:
|
|
|
|
|
* do_work()
|
|
|
|
|
* return
|
|
|
|
|
* }
|
|
|
|
|
* block block_4:
|
|
|
|
|
* vec1 32 ssa_3 = phi block_2: ssa_0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
nir_ssa_def *one = nir_imm_int(&bld, 1);
|
|
|
|
|
|
|
|
|
|
nir_ssa_def *cmp_result = nir_ieq(&bld, in_def, one);
|
|
|
|
|
nir_if *nif = nir_push_if(&bld, cmp_result);
|
|
|
|
|
|
|
|
|
|
nir_push_else(&bld, NULL);
|
|
|
|
|
|
|
|
|
|
// do_work
|
|
|
|
|
nir_store_var(&bld, out_var, one, 1);
|
|
|
|
|
|
|
|
|
|
nir_jump_instr *jump = nir_jump_instr_create(bld.shader, nir_jump_return);
|
|
|
|
|
nir_builder_instr_insert(&bld, &jump->instr);
|
|
|
|
|
|
|
|
|
|
nir_pop_if(&bld, NULL);
|
|
|
|
|
|
|
|
|
|
nir_block *then_block = nir_if_last_then_block(nif);
|
|
|
|
|
|
|
|
|
|
nir_phi_instr *const phi = nir_phi_instr_create(bld.shader);
|
|
|
|
|
|
2021-07-07 13:24:45 -07:00
|
|
|
nir_phi_instr_add_src(phi, then_block, nir_src_for_ssa(one));
|
2020-07-21 15:51:55 +03:00
|
|
|
|
|
|
|
|
nir_ssa_dest_init(&phi->instr, &phi->dest,
|
nir: Drop unused name from nir_ssa_dest_init
Since 624e799cc34 ("nir: Drop nir_ssa_def::name and nir_register::name"), SSA
defs don't have names, making the name argument unused. Drop it from the
signature and fix the call sites. This was done with the help of the following
Coccinelle semantic patch:
@@
expression A, B, C, D, E;
@@
-nir_ssa_dest_init(A, B, C, D, E);
+nir_ssa_dest_init(A, B, C, D);
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23078>
2023-05-17 09:08:22 -04:00
|
|
|
one->num_components, one->bit_size);
|
2020-07-21 15:51:55 +03:00
|
|
|
|
|
|
|
|
nir_builder_instr_insert(&bld, &phi->instr);
|
|
|
|
|
|
2022-08-08 17:12:14 +02:00
|
|
|
ASSERT_TRUE(nir_opt_if(bld.shader, nir_opt_if_optimize_phi_true_false));
|
2020-07-21 15:51:55 +03:00
|
|
|
|
|
|
|
|
nir_validate_shader(bld.shader, NULL);
|
|
|
|
|
|
|
|
|
|
ASSERT_TRUE(nir_block_ends_in_jump(nir_if_last_then_block(nif)));
|
|
|
|
|
ASSERT_TRUE(exec_list_is_empty((&nir_if_first_else_block(nif)->instr_list)));
|
|
|
|
|
}
|
2021-06-23 15:28:40 -07:00
|
|
|
|
|
|
|
|
TEST_F(nir_opt_if_test, opt_if_alu_of_phi_progress)
|
|
|
|
|
{
|
|
|
|
|
nir_ssa_def *two = nir_imm_int(&bld, 2);
|
|
|
|
|
nir_ssa_def *x = nir_imm_int(&bld, 0);
|
|
|
|
|
|
|
|
|
|
nir_phi_instr *phi = nir_phi_instr_create(bld.shader);
|
|
|
|
|
|
|
|
|
|
nir_loop *loop = nir_push_loop(&bld);
|
|
|
|
|
{
|
|
|
|
|
nir_ssa_dest_init(&phi->instr, &phi->dest,
|
nir: Drop unused name from nir_ssa_dest_init
Since 624e799cc34 ("nir: Drop nir_ssa_def::name and nir_register::name"), SSA
defs don't have names, making the name argument unused. Drop it from the
signature and fix the call sites. This was done with the help of the following
Coccinelle semantic patch:
@@
expression A, B, C, D, E;
@@
-nir_ssa_dest_init(A, B, C, D, E);
+nir_ssa_dest_init(A, B, C, D);
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Reviewed-by: Emma Anholt <emma@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23078>
2023-05-17 09:08:22 -04:00
|
|
|
x->num_components, x->bit_size);
|
2021-06-23 15:28:40 -07:00
|
|
|
|
2021-07-07 13:24:45 -07:00
|
|
|
nir_phi_instr_add_src(phi, x->parent_instr->block, nir_src_for_ssa(x));
|
2021-06-23 15:28:40 -07:00
|
|
|
|
|
|
|
|
nir_ssa_def *y = nir_iadd(&bld, &phi->dest.ssa, two);
|
|
|
|
|
nir_store_var(&bld, out_var,
|
|
|
|
|
nir_imul(&bld, &phi->dest.ssa, two), 1);
|
|
|
|
|
|
2021-07-07 13:24:45 -07:00
|
|
|
nir_phi_instr_add_src(phi, nir_cursor_current_block(bld.cursor), nir_src_for_ssa(y));
|
2021-06-23 15:28:40 -07:00
|
|
|
}
|
|
|
|
|
nir_pop_loop(&bld, loop);
|
|
|
|
|
|
|
|
|
|
bld.cursor = nir_before_block(nir_loop_first_block(loop));
|
|
|
|
|
nir_builder_instr_insert(&bld, &phi->instr);
|
|
|
|
|
|
|
|
|
|
nir_validate_shader(bld.shader, "input");
|
|
|
|
|
|
|
|
|
|
bool progress;
|
|
|
|
|
|
|
|
|
|
int progress_count = 0;
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
2022-08-08 17:12:14 +02:00
|
|
|
progress = nir_opt_if(bld.shader, nir_opt_if_optimize_phi_true_false);
|
2021-06-23 15:28:40 -07:00
|
|
|
if (progress)
|
|
|
|
|
progress_count++;
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
nir_opt_constant_folding(bld.shader);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EXPECT_LE(progress_count, 2);
|
|
|
|
|
ASSERT_FALSE(progress);
|
|
|
|
|
}
|