2019-09-17 13:22:17 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2019 Valve 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.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Rhys Perry (pendingchaos02@gmail.com)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
|
|
#include "aco_ir.h"
|
|
|
|
|
#include "aco_builder.h"
|
2019-08-12 20:40:37 +02:00
|
|
|
#include <algorithm>
|
2019-09-17 13:22:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace aco {
|
|
|
|
|
|
|
|
|
|
struct ssa_state {
|
2020-01-09 16:51:34 +00:00
|
|
|
bool checked_preds_for_uniform;
|
|
|
|
|
bool all_preds_uniform;
|
|
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
bool needs_init;
|
|
|
|
|
uint64_t cur_undef_operands;
|
|
|
|
|
|
|
|
|
|
unsigned phi_block_idx;
|
|
|
|
|
unsigned loop_nest_depth;
|
|
|
|
|
std::map<unsigned, unsigned> writes;
|
2020-07-10 16:31:31 +01:00
|
|
|
std::vector<Operand> latest;
|
|
|
|
|
std::vector<bool> visited;
|
2019-09-17 13:22:17 +02:00
|
|
|
};
|
|
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
Operand get_ssa(Program *program, unsigned block_idx, ssa_state *state, bool before_write)
|
2019-09-17 13:22:17 +02:00
|
|
|
{
|
2020-01-06 15:46:28 +00:00
|
|
|
if (!before_write) {
|
|
|
|
|
auto it = state->writes.find(block_idx);
|
|
|
|
|
if (it != state->writes.end())
|
|
|
|
|
return Operand(Temp(it->second, program->lane_mask));
|
2020-07-10 16:31:31 +01:00
|
|
|
if (state->visited[block_idx])
|
|
|
|
|
return state->latest[block_idx];
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
2020-07-10 16:31:31 +01:00
|
|
|
state->visited[block_idx] = true;
|
|
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
Block& block = program->blocks[block_idx];
|
|
|
|
|
size_t pred = block.linear_preds.size();
|
|
|
|
|
if (pred == 0 || block.loop_nest_depth < state->loop_nest_depth) {
|
|
|
|
|
return Operand(program->lane_mask);
|
|
|
|
|
} else if (block.loop_nest_depth > state->loop_nest_depth) {
|
|
|
|
|
Operand op = get_ssa(program, block_idx - 1, state, false);
|
2020-07-10 16:31:31 +01:00
|
|
|
state->latest[block_idx] = op;
|
2020-01-06 15:46:28 +00:00
|
|
|
return op;
|
|
|
|
|
} else if (pred == 1 || block.kind & block_kind_loop_exit) {
|
|
|
|
|
Operand op = get_ssa(program, block.linear_preds[0], state, false);
|
2020-07-10 16:31:31 +01:00
|
|
|
state->latest[block_idx] = op;
|
2020-01-06 15:46:28 +00:00
|
|
|
return op;
|
|
|
|
|
} else if (block.kind & block_kind_loop_header &&
|
|
|
|
|
!(program->blocks[state->phi_block_idx].kind & block_kind_loop_exit)) {
|
|
|
|
|
return Operand(program->lane_mask);
|
|
|
|
|
} else {
|
2020-09-14 20:58:33 +01:00
|
|
|
Temp res = Temp(program->allocateTmp(program->lane_mask));
|
2020-07-10 16:31:31 +01:00
|
|
|
state->latest[block_idx] = Operand(res);
|
|
|
|
|
|
2020-08-10 21:00:51 -07:00
|
|
|
Operand *const ops = (Operand *)alloca(pred * sizeof(Operand));
|
2020-07-10 16:31:31 +01:00
|
|
|
for (unsigned i = 0; i < pred; i++)
|
|
|
|
|
ops[i] = get_ssa(program, block.linear_preds[i], state, false);
|
|
|
|
|
|
|
|
|
|
bool all_undef = true;
|
|
|
|
|
for (unsigned i = 0; i < pred; i++)
|
|
|
|
|
all_undef = all_undef && ops[i].isUndefined();
|
|
|
|
|
if (all_undef) {
|
|
|
|
|
state->latest[block_idx] = ops[0];
|
|
|
|
|
return ops[0];
|
|
|
|
|
}
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
aco_ptr<Pseudo_instruction> phi{create_instruction<Pseudo_instruction>(aco_opcode::p_linear_phi, Format::PSEUDO, pred, 1)};
|
|
|
|
|
for (unsigned i = 0; i < pred; i++)
|
2020-07-10 16:31:31 +01:00
|
|
|
phi->operands[i] = ops[i];
|
|
|
|
|
phi->definitions[0] = Definition(res);
|
2020-01-06 15:46:28 +00:00
|
|
|
block.instructions.emplace(block.instructions.begin(), std::move(phi));
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2020-07-10 16:31:31 +01:00
|
|
|
return Operand(res);
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void insert_before_logical_end(Block *block, aco_ptr<Instruction> instr)
|
|
|
|
|
{
|
2020-11-03 14:40:05 +01:00
|
|
|
auto IsLogicalEnd = [] (const aco_ptr<Instruction>& inst) -> bool {
|
|
|
|
|
return inst->opcode == aco_opcode::p_logical_end;
|
2019-08-12 20:40:37 +02:00
|
|
|
};
|
|
|
|
|
auto it = std::find_if(block->instructions.crbegin(), block->instructions.crend(), IsLogicalEnd);
|
|
|
|
|
|
|
|
|
|
if (it == block->instructions.crend()) {
|
2021-01-20 15:27:16 +00:00
|
|
|
assert(block->instructions.back()->isBranch());
|
2019-08-12 20:40:37 +02:00
|
|
|
block->instructions.insert(std::prev(block->instructions.end()), std::move(instr));
|
2020-01-06 16:50:41 +00:00
|
|
|
} else {
|
2019-08-12 20:40:37 +02:00
|
|
|
block->instructions.insert(std::prev(it.base()), std::move(instr));
|
2020-01-06 16:50:41 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void build_merge_code(Program *program, Block *block, Definition dst, Operand prev, Operand cur)
|
|
|
|
|
{
|
|
|
|
|
Builder bld(program);
|
|
|
|
|
|
|
|
|
|
auto IsLogicalEnd = [] (const aco_ptr<Instruction>& instr) -> bool {
|
|
|
|
|
return instr->opcode == aco_opcode::p_logical_end;
|
|
|
|
|
};
|
|
|
|
|
auto it = std::find_if(block->instructions.rbegin(), block->instructions.rend(), IsLogicalEnd);
|
|
|
|
|
assert(it != block->instructions.rend());
|
|
|
|
|
bld.reset(&block->instructions, std::prev(it.base()));
|
|
|
|
|
|
|
|
|
|
if (prev.isUndefined()) {
|
2020-10-15 15:09:20 +01:00
|
|
|
bld.copy(dst, cur);
|
2020-01-06 16:50:41 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-03 11:05:16 +00:00
|
|
|
bool prev_is_constant = prev.isConstant() && prev.constantValue() + 1u < 2u;
|
|
|
|
|
bool cur_is_constant = cur.isConstant() && cur.constantValue() + 1u < 2u;
|
2020-01-06 16:50:41 +00:00
|
|
|
|
|
|
|
|
if (!prev_is_constant) {
|
|
|
|
|
if (!cur_is_constant) {
|
|
|
|
|
Temp tmp1 = bld.tmp(bld.lm), tmp2 = bld.tmp(bld.lm);
|
|
|
|
|
bld.sop2(Builder::s_andn2, Definition(tmp1), bld.def(s1, scc), prev, Operand(exec, bld.lm));
|
|
|
|
|
bld.sop2(Builder::s_and, Definition(tmp2), bld.def(s1, scc), cur, Operand(exec, bld.lm));
|
|
|
|
|
bld.sop2(Builder::s_or, dst, bld.def(s1, scc), tmp1, tmp2);
|
2020-12-03 11:05:16 +00:00
|
|
|
} else if (cur.constantValue()) {
|
2020-01-06 16:50:41 +00:00
|
|
|
bld.sop2(Builder::s_or, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm));
|
|
|
|
|
} else {
|
|
|
|
|
bld.sop2(Builder::s_andn2, dst, bld.def(s1, scc), prev, Operand(exec, bld.lm));
|
|
|
|
|
}
|
2020-12-03 11:05:16 +00:00
|
|
|
} else if (prev.constantValue()) {
|
2020-01-06 16:50:41 +00:00
|
|
|
if (!cur_is_constant)
|
|
|
|
|
bld.sop2(Builder::s_orn2, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm));
|
2020-12-03 11:05:16 +00:00
|
|
|
else if (cur.constantValue())
|
2020-10-15 15:09:20 +01:00
|
|
|
bld.copy(dst, Operand(UINT32_MAX, bld.lm == s2));
|
2020-01-06 16:50:41 +00:00
|
|
|
else
|
|
|
|
|
bld.sop1(Builder::s_not, dst, bld.def(s1, scc), Operand(exec, bld.lm));
|
|
|
|
|
} else {
|
|
|
|
|
if (!cur_is_constant)
|
|
|
|
|
bld.sop2(Builder::s_and, dst, bld.def(s1, scc), cur, Operand(exec, bld.lm));
|
2020-12-03 11:05:16 +00:00
|
|
|
else if (cur.constantValue())
|
2020-10-15 15:09:20 +01:00
|
|
|
bld.copy(dst, Operand(exec, bld.lm));
|
2020-01-06 16:50:41 +00:00
|
|
|
else
|
2020-10-15 15:09:20 +01:00
|
|
|
bld.copy(dst, Operand(0u, bld.lm == s2));
|
2020-01-06 16:50:41 +00:00
|
|
|
}
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
void lower_divergent_bool_phi(Program *program, ssa_state *state, Block *block, aco_ptr<Instruction>& phi)
|
2019-09-17 13:22:17 +02:00
|
|
|
{
|
|
|
|
|
Builder bld(program);
|
|
|
|
|
|
2020-01-09 16:51:34 +00:00
|
|
|
if (!state->checked_preds_for_uniform) {
|
2021-02-22 15:05:32 +00:00
|
|
|
state->all_preds_uniform = !(block->kind & block_kind_merge) &&
|
|
|
|
|
block->linear_preds.size() == block->logical_preds.size();
|
2020-01-09 16:51:34 +00:00
|
|
|
for (unsigned pred : block->logical_preds)
|
|
|
|
|
state->all_preds_uniform = state->all_preds_uniform && (program->blocks[pred].kind & block_kind_uniform);
|
|
|
|
|
state->checked_preds_for_uniform = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (state->all_preds_uniform) {
|
|
|
|
|
phi->opcode = aco_opcode::p_linear_phi;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
state->latest.resize(program->blocks.size());
|
2020-07-10 16:31:31 +01:00
|
|
|
state->visited.resize(program->blocks.size());
|
2020-01-06 15:46:28 +00:00
|
|
|
|
|
|
|
|
uint64_t undef_operands = 0;
|
|
|
|
|
for (unsigned i = 0; i < phi->operands.size(); i++)
|
2021-06-10 11:23:56 +01:00
|
|
|
undef_operands |= (uint64_t)phi->operands[i].isUndefined() << i;
|
2020-01-06 15:46:28 +00:00
|
|
|
|
|
|
|
|
if (state->needs_init || undef_operands != state->cur_undef_operands ||
|
|
|
|
|
block->logical_preds.size() > 64) {
|
|
|
|
|
/* this only has to be done once per block unless the set of predecessors
|
|
|
|
|
* which are undefined changes */
|
|
|
|
|
state->cur_undef_operands = undef_operands;
|
|
|
|
|
state->phi_block_idx = block->index;
|
|
|
|
|
state->loop_nest_depth = block->loop_nest_depth;
|
|
|
|
|
if (block->kind & block_kind_loop_exit) {
|
|
|
|
|
state->loop_nest_depth += 1;
|
|
|
|
|
}
|
|
|
|
|
state->writes.clear();
|
|
|
|
|
state->needs_init = false;
|
|
|
|
|
}
|
2020-07-10 16:31:31 +01:00
|
|
|
std::fill(state->latest.begin(), state->latest.end(), Operand(program->lane_mask));
|
|
|
|
|
std::fill(state->visited.begin(), state->visited.end(), false);
|
2020-01-06 15:46:28 +00:00
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < phi->operands.size(); i++) {
|
|
|
|
|
if (phi->operands[i].isUndefined())
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-09-14 20:58:33 +01:00
|
|
|
state->writes[block->logical_preds[i]] = program->allocateId(program->lane_mask);
|
2020-01-06 15:46:28 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-09 16:51:34 +00:00
|
|
|
bool uniform_merge = block->kind & block_kind_loop_header;
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
for (unsigned i = 0; i < phi->operands.size(); i++) {
|
|
|
|
|
Block *pred = &program->blocks[block->logical_preds[i]];
|
|
|
|
|
|
2020-01-09 16:51:34 +00:00
|
|
|
bool need_get_ssa = !uniform_merge;
|
|
|
|
|
if (block->kind & block_kind_loop_header && !(pred->kind & block_kind_uniform))
|
|
|
|
|
uniform_merge = false;
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
if (phi->operands[i].isUndefined())
|
|
|
|
|
continue;
|
|
|
|
|
|
2020-01-09 16:51:34 +00:00
|
|
|
Operand cur(bld.lm);
|
|
|
|
|
if (need_get_ssa)
|
|
|
|
|
cur = get_ssa(program, pred->index, state, true);
|
2019-11-27 11:04:47 +01:00
|
|
|
assert(cur.regClass() == bld.lm);
|
2020-01-09 16:51:34 +00:00
|
|
|
|
2020-01-06 15:46:28 +00:00
|
|
|
Temp new_cur = {state->writes.at(pred->index), program->lane_mask};
|
2019-11-27 11:04:47 +01:00
|
|
|
assert(new_cur.regClass() == bld.lm);
|
2019-09-17 13:22:17 +02:00
|
|
|
|
2020-01-06 16:50:41 +00:00
|
|
|
if (i == 1 && (block->kind & block_kind_merge) && phi->operands[0].isConstant())
|
|
|
|
|
cur = phi->operands[0];
|
|
|
|
|
build_merge_code(program, pred, Definition(new_cur), cur, phi->operands[i]);
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
2019-10-07 02:32:54 +02:00
|
|
|
unsigned num_preds = block->linear_preds.size();
|
|
|
|
|
if (phi->operands.size() != num_preds) {
|
|
|
|
|
Pseudo_instruction* new_phi{create_instruction<Pseudo_instruction>(aco_opcode::p_linear_phi, Format::PSEUDO, num_preds, 1)};
|
|
|
|
|
new_phi->definitions[0] = phi->definitions[0];
|
|
|
|
|
phi.reset(new_phi);
|
|
|
|
|
} else {
|
|
|
|
|
phi->opcode = aco_opcode::p_linear_phi;
|
|
|
|
|
}
|
|
|
|
|
assert(phi->operands.size() == num_preds);
|
|
|
|
|
|
|
|
|
|
for (unsigned i = 0; i < num_preds; i++)
|
2020-01-06 15:46:28 +00:00
|
|
|
phi->operands[i] = get_ssa(program, block->linear_preds[i], state, false);
|
2019-10-07 02:32:54 +02:00
|
|
|
|
|
|
|
|
return;
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
|
2020-04-07 12:16:57 +01:00
|
|
|
void lower_subdword_phis(Program *program, Block *block, aco_ptr<Instruction>& phi)
|
|
|
|
|
{
|
|
|
|
|
Builder bld(program);
|
|
|
|
|
for (unsigned i = 0; i < phi->operands.size(); i++) {
|
|
|
|
|
if (phi->operands[i].isUndefined())
|
|
|
|
|
continue;
|
|
|
|
|
if (phi->operands[i].regClass() == phi->definitions[0].regClass())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
assert(phi->operands[i].isTemp());
|
|
|
|
|
Block *pred = &program->blocks[block->logical_preds[i]];
|
|
|
|
|
Temp phi_src = phi->operands[i].getTemp();
|
|
|
|
|
|
|
|
|
|
assert(phi_src.regClass().type() == RegType::sgpr);
|
|
|
|
|
Temp tmp = bld.tmp(RegClass(RegType::vgpr, phi_src.size()));
|
2020-10-15 15:09:20 +01:00
|
|
|
insert_before_logical_end(pred, bld.copy(Definition(tmp), phi_src).get_ptr());
|
2020-04-07 12:16:57 +01:00
|
|
|
Temp new_phi_src = bld.tmp(phi->definitions[0].regClass());
|
|
|
|
|
insert_before_logical_end(pred, bld.pseudo(aco_opcode::p_extract_vector, Definition(new_phi_src), tmp, Operand(0u)).get_ptr());
|
|
|
|
|
|
|
|
|
|
phi->operands[i].setTemp(new_phi_src);
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-07 12:20:52 +01:00
|
|
|
void lower_phis(Program* program)
|
2019-09-17 13:22:17 +02:00
|
|
|
{
|
2020-01-06 15:46:28 +00:00
|
|
|
ssa_state state;
|
|
|
|
|
|
2019-09-17 13:22:17 +02:00
|
|
|
for (Block& block : program->blocks) {
|
2020-01-09 16:51:34 +00:00
|
|
|
state.checked_preds_for_uniform = false;
|
2020-01-06 15:46:28 +00:00
|
|
|
state.needs_init = true;
|
2019-10-07 02:52:55 +02:00
|
|
|
for (aco_ptr<Instruction>& phi : block.instructions) {
|
|
|
|
|
if (phi->opcode == aco_opcode::p_phi) {
|
2019-11-27 11:04:47 +01:00
|
|
|
assert(program->wave_size == 64 ? phi->definitions[0].regClass() != s1 : phi->definitions[0].regClass() != s2);
|
|
|
|
|
if (phi->definitions[0].regClass() == program->lane_mask)
|
2020-01-06 15:46:28 +00:00
|
|
|
lower_divergent_bool_phi(program, &state, &block, phi);
|
2020-04-07 12:16:57 +01:00
|
|
|
else if (phi->definitions[0].regClass().is_subdword())
|
|
|
|
|
lower_subdword_phis(program, &block, phi);
|
2019-11-21 12:31:14 +01:00
|
|
|
} else if (!is_phi(phi)) {
|
2019-10-07 02:52:55 +02:00
|
|
|
break;
|
2019-09-17 13:22:17 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|