
ppir has some code that operates on all ppir_src variables, and for that
uses ppir_node_get_src.
lod bias support introduced a separate ppir_src that is inaccessible by
that function, causing it to be missed by the compiler in some routines.
Ultimately this caused, in some cases, a bug in const lowering:
.../pp/lower.c:42: ppir_lower_const: Assertion `src != NULL' failed.
This fix moves the ppir_srcs in ppir_load_texture_node together so they
don't get missed.
Fixes: 721d82cf06
lima/ppir: add lod-bias support
Signed-off-by: Erico Nunes <nunes.erico@gmail.com>
Reviewed-by: Vasily Khoruzhick <anarsoul@gmail.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3185>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3185>
726 lines
19 KiB
C
726 lines
19 KiB
C
/*
|
|
* Copyright (c) 2017 Lima Project
|
|
*
|
|
* 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, sub license,
|
|
* 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 NON-INFRINGEMENT. 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 "util/u_math.h"
|
|
#include "util/ralloc.h"
|
|
#include "util/bitscan.h"
|
|
|
|
#include "ppir.h"
|
|
|
|
const ppir_op_info ppir_op_infos[] = {
|
|
[ppir_op_mov] = {
|
|
.name = "mov",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_abs] = {
|
|
.name = "abs",
|
|
},
|
|
[ppir_op_neg] = {
|
|
.name = "neg",
|
|
},
|
|
[ppir_op_sat] = {
|
|
.name = "sat",
|
|
},
|
|
[ppir_op_mul] = {
|
|
.name = "mul",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_add] = {
|
|
.name = "add",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_sum3] = {
|
|
.name = "sum3",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_sum4] = {
|
|
.name = "sum4",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_rsqrt] = {
|
|
.name = "rsqrt",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_log2] = {
|
|
.name = "log2",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_exp2] = {
|
|
.name = "exp2",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_sqrt] = {
|
|
.name = "sqrt",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_sin] = {
|
|
.name = "sin",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_cos] = {
|
|
.name = "cos",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_max] = {
|
|
.name = "max",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_min] = {
|
|
.name = "min",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_floor] = {
|
|
.name = "floor",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_ceil] = {
|
|
.name = "ceil",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_fract] = {
|
|
.name = "fract",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_ddx] = {
|
|
.name = "ddx",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_ddy] = {
|
|
.name = "ddy",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_and] = {
|
|
.name = "and",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_or] = {
|
|
.name = "or",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_xor] = {
|
|
.name = "xor",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_not] = {
|
|
.name = "not",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_lt] = {
|
|
.name = "lt",
|
|
},
|
|
[ppir_op_le] = {
|
|
.name = "le",
|
|
},
|
|
[ppir_op_gt] = {
|
|
.name = "gt",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
|
|
PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_ge] = {
|
|
.name = "ge",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
|
|
PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_eq] = {
|
|
.name = "eq",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
|
|
PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_ne] = {
|
|
.name = "ne",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
|
|
PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_sel_cond] = {
|
|
/* effectively mov, but must be scheduled only to
|
|
* PPIR_INSTR_SLOT_ALU_SCL_MUL */
|
|
.name = "sel_cond",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_select] = {
|
|
.name = "select",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_rcp] = {
|
|
.name = "rcp",
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_varying] = {
|
|
.name = "ld_var",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_coords] = {
|
|
.name = "ld_coords",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_coords_reg] = {
|
|
.name = "ld_coords_reg",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_fragcoord] = {
|
|
.name = "ld_fragcoord",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_pointcoord] = {
|
|
.name = "ld_pointcoord",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_frontface] = {
|
|
.name = "ld_frontface",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_uniform] = {
|
|
.name = "ld_uni",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_UNIFORM, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_texture] = {
|
|
.name = "ld_tex",
|
|
.type = ppir_node_type_load_texture,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_TEXLD, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_load_temp] = {
|
|
.name = "ld_temp",
|
|
.type = ppir_node_type_load,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_UNIFORM, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_const] = {
|
|
.name = "const",
|
|
.type = ppir_node_type_const,
|
|
},
|
|
[ppir_op_store_color] = {
|
|
.name = "st_col",
|
|
.type = ppir_node_type_alu,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
|
|
PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_store_temp] = {
|
|
.name = "st_temp",
|
|
.type = ppir_node_type_store,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_STORE_TEMP, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_discard] = {
|
|
.name = "discard",
|
|
.type = ppir_node_type_discard,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_BRANCH, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_branch] = {
|
|
.name = "branch",
|
|
.type = ppir_node_type_branch,
|
|
.slots = (int []) {
|
|
PPIR_INSTR_SLOT_BRANCH, PPIR_INSTR_SLOT_END
|
|
},
|
|
},
|
|
[ppir_op_undef] = {
|
|
.name = "undef",
|
|
.type = ppir_node_type_alu,
|
|
.slots = (int []) {
|
|
},
|
|
},
|
|
};
|
|
|
|
void *ppir_node_create(ppir_block *block, ppir_op op, int index, unsigned mask)
|
|
{
|
|
ppir_compiler *comp = block->comp;
|
|
static const int node_size[] = {
|
|
[ppir_node_type_alu] = sizeof(ppir_alu_node),
|
|
[ppir_node_type_const] = sizeof(ppir_const_node),
|
|
[ppir_node_type_load] = sizeof(ppir_load_node),
|
|
[ppir_node_type_store] = sizeof(ppir_store_node),
|
|
[ppir_node_type_load_texture] = sizeof(ppir_load_texture_node),
|
|
[ppir_node_type_discard] = sizeof(ppir_discard_node),
|
|
[ppir_node_type_branch] = sizeof(ppir_branch_node),
|
|
};
|
|
|
|
ppir_node_type type = ppir_op_infos[op].type;
|
|
int size = node_size[type];
|
|
ppir_node *node = rzalloc_size(block, size);
|
|
if (!node)
|
|
return NULL;
|
|
|
|
list_inithead(&node->succ_list);
|
|
list_inithead(&node->pred_list);
|
|
|
|
if (index >= 0) {
|
|
if (mask) {
|
|
/* reg has 4 slots for each componemt write node */
|
|
while (mask)
|
|
comp->var_nodes[(index << 2) + comp->reg_base + u_bit_scan(&mask)] = node;
|
|
snprintf(node->name, sizeof(node->name), "reg%d", index);
|
|
} else {
|
|
comp->var_nodes[index] = node;
|
|
snprintf(node->name, sizeof(node->name), "ssa%d", index);
|
|
}
|
|
}
|
|
else
|
|
snprintf(node->name, sizeof(node->name), "new");
|
|
|
|
node->op = op;
|
|
node->type = type;
|
|
node->index = comp->cur_index++;
|
|
node->block = block;
|
|
|
|
return node;
|
|
}
|
|
|
|
void ppir_node_add_dep(ppir_node *succ, ppir_node *pred,
|
|
ppir_dep_type type)
|
|
{
|
|
/* don't add dep for two nodes from different block */
|
|
if (succ->block != pred->block)
|
|
return;
|
|
|
|
/* don't add duplicated dep */
|
|
ppir_node_foreach_pred(succ, dep) {
|
|
if (dep->pred == pred)
|
|
return;
|
|
}
|
|
|
|
ppir_dep *dep = ralloc(succ, ppir_dep);
|
|
dep->pred = pred;
|
|
dep->succ = succ;
|
|
dep->type = type;
|
|
list_addtail(&dep->pred_link, &succ->pred_list);
|
|
list_addtail(&dep->succ_link, &pred->succ_list);
|
|
}
|
|
|
|
void ppir_node_remove_dep(ppir_dep *dep)
|
|
{
|
|
list_del(&dep->succ_link);
|
|
list_del(&dep->pred_link);
|
|
ralloc_free(dep);
|
|
}
|
|
|
|
static void _ppir_node_replace_child(ppir_src *src, ppir_node *old_child, ppir_node *new_child)
|
|
{
|
|
ppir_dest *od = ppir_node_get_dest(old_child);
|
|
if (ppir_node_target_equal(src, od)) {
|
|
ppir_node_target_assign(src, new_child);
|
|
}
|
|
}
|
|
|
|
void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child)
|
|
{
|
|
switch (parent->type) {
|
|
case ppir_node_type_alu:
|
|
{
|
|
ppir_alu_node *alu = ppir_node_to_alu(parent);
|
|
for (int i = 0; i < alu->num_src; i++)
|
|
_ppir_node_replace_child(alu->src + i, old_child, new_child);
|
|
break;
|
|
}
|
|
case ppir_node_type_branch:
|
|
{
|
|
ppir_branch_node *branch = ppir_node_to_branch(parent);
|
|
for (int i = 0; i < 2; i++)
|
|
_ppir_node_replace_child(branch->src + i, old_child, new_child);
|
|
break;
|
|
}
|
|
case ppir_node_type_load:
|
|
{
|
|
ppir_load_node *load = ppir_node_to_load(parent);
|
|
_ppir_node_replace_child(&load->src, old_child, new_child);
|
|
break;
|
|
}
|
|
case ppir_node_type_load_texture:
|
|
{
|
|
ppir_load_texture_node *load_texture = ppir_node_to_load_texture(parent);
|
|
for (int i = 0; i < load_texture->num_src; i++)
|
|
_ppir_node_replace_child(ppir_node_get_src(parent, i), old_child, new_child);
|
|
break;
|
|
}
|
|
case ppir_node_type_store:
|
|
{
|
|
ppir_store_node *store = ppir_node_to_store(parent);
|
|
_ppir_node_replace_child(&store->src, old_child, new_child);
|
|
break;
|
|
}
|
|
default:
|
|
ppir_debug("unknown node type in %s\n", __func__);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void ppir_node_replace_pred(ppir_dep *dep, ppir_node *new_pred)
|
|
{
|
|
list_del(&dep->succ_link);
|
|
dep->pred = new_pred;
|
|
list_addtail(&dep->succ_link, &new_pred->succ_list);
|
|
}
|
|
|
|
ppir_dep *ppir_dep_for_pred(ppir_node *node, ppir_node *pred)
|
|
{
|
|
if (!pred)
|
|
return NULL;
|
|
|
|
if (node->block != pred->block)
|
|
return NULL;
|
|
|
|
ppir_node_foreach_pred(node, dep) {
|
|
if (dep->pred == pred)
|
|
return dep;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void ppir_node_replace_all_succ(ppir_node *dst, ppir_node *src)
|
|
{
|
|
ppir_node_foreach_succ_safe(src, dep) {
|
|
ppir_node_replace_pred(dep, dst);
|
|
ppir_node_replace_child(dep->succ, src, dst);
|
|
}
|
|
}
|
|
|
|
void ppir_node_delete(ppir_node *node)
|
|
{
|
|
ppir_node_foreach_succ_safe(node, dep)
|
|
ppir_node_remove_dep(dep);
|
|
|
|
ppir_node_foreach_pred_safe(node, dep)
|
|
ppir_node_remove_dep(dep);
|
|
|
|
list_del(&node->list);
|
|
ralloc_free(node);
|
|
}
|
|
|
|
static void ppir_node_print_dest(ppir_dest *dest)
|
|
{
|
|
switch (dest->type) {
|
|
case ppir_target_ssa:
|
|
printf("ssa%d", dest->ssa.index);
|
|
break;
|
|
case ppir_target_pipeline:
|
|
printf("pipeline %d", dest->pipeline);
|
|
break;
|
|
case ppir_target_register:
|
|
printf("reg %d", dest->reg->index);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void ppir_node_print_src(ppir_src *src)
|
|
{
|
|
switch (src->type) {
|
|
case ppir_target_ssa: {
|
|
if (src->node)
|
|
printf("ssa node %d", src->node->index);
|
|
else
|
|
printf("ssa idx %d", src->ssa ? src->ssa->index : -1);
|
|
break;
|
|
}
|
|
case ppir_target_pipeline:
|
|
if (src->node)
|
|
printf("pipeline %d node %d", src->pipeline, src->node->index);
|
|
else
|
|
printf("pipeline %d", src->pipeline);
|
|
break;
|
|
case ppir_target_register:
|
|
printf("reg %d", src->reg->index);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void ppir_node_print_node(ppir_node *node, int space)
|
|
{
|
|
for (int i = 0; i < space; i++)
|
|
printf(" ");
|
|
|
|
printf("%s%d: %s %s: ", node->printed && !ppir_node_is_leaf(node) ? "+" : "",
|
|
node->index, ppir_op_infos[node->op].name, node->name);
|
|
|
|
ppir_dest *dest = ppir_node_get_dest(node);
|
|
if (dest) {
|
|
printf("dest: ");
|
|
ppir_node_print_dest(dest);
|
|
}
|
|
|
|
if (ppir_node_get_src_num(node) > 0) {
|
|
printf(" src: ");
|
|
}
|
|
for (int i = 0; i < ppir_node_get_src_num(node); i++) {
|
|
ppir_node_print_src(ppir_node_get_src(node, i));
|
|
if (i != (ppir_node_get_src_num(node) - 1))
|
|
printf(", ");
|
|
}
|
|
printf("\n");
|
|
|
|
if (!node->printed) {
|
|
ppir_node_foreach_pred(node, dep) {
|
|
ppir_node *pred = dep->pred;
|
|
ppir_node_print_node(pred, space + 2);
|
|
}
|
|
|
|
node->printed = true;
|
|
}
|
|
}
|
|
|
|
void ppir_node_print_prog(ppir_compiler *comp)
|
|
{
|
|
if (!(lima_debug & LIMA_DEBUG_PP))
|
|
return;
|
|
|
|
list_for_each_entry(ppir_block, block, &comp->block_list, list) {
|
|
list_for_each_entry(ppir_node, node, &block->node_list, list) {
|
|
node->printed = false;
|
|
}
|
|
}
|
|
|
|
printf("========prog========\n");
|
|
list_for_each_entry(ppir_block, block, &comp->block_list, list) {
|
|
printf("-------block %3d-------\n", block->index);
|
|
list_for_each_entry(ppir_node, node, &block->node_list, list) {
|
|
if (ppir_node_is_root(node))
|
|
ppir_node_print_node(node, 0);
|
|
}
|
|
}
|
|
printf("====================\n");
|
|
}
|
|
|
|
static ppir_node *ppir_node_clone_const(ppir_block *block, ppir_node *node)
|
|
{
|
|
ppir_const_node *cnode = ppir_node_to_const(node);
|
|
ppir_const_node *new_cnode = ppir_node_create(block, ppir_op_const, -1, 0);
|
|
|
|
if (!new_cnode)
|
|
return NULL;
|
|
|
|
list_addtail(&new_cnode->node.list, &block->node_list);
|
|
|
|
new_cnode->constant.num = cnode->constant.num;
|
|
for (int i = 0; i < cnode->constant.num; i++) {
|
|
new_cnode->constant.value[i] = cnode->constant.value[i];
|
|
}
|
|
new_cnode->dest.type = ppir_target_ssa;
|
|
new_cnode->dest.ssa.num_components = cnode->dest.ssa.num_components;
|
|
new_cnode->dest.ssa.live_in = INT_MAX;
|
|
new_cnode->dest.ssa.live_out = 0;
|
|
new_cnode->dest.write_mask = cnode->dest.write_mask;
|
|
|
|
return &new_cnode->node;
|
|
}
|
|
|
|
static ppir_node *
|
|
ppir_node_clone_load(ppir_block *block, ppir_node *node)
|
|
{
|
|
ppir_load_node *load_node = ppir_node_to_load(node);
|
|
ppir_load_node *new_lnode = ppir_node_create(block, node->op, -1, 0);
|
|
|
|
if (!new_lnode)
|
|
return NULL;
|
|
|
|
list_addtail(&new_lnode->node.list, &block->node_list);
|
|
|
|
new_lnode->num_components = load_node->num_components;
|
|
new_lnode->index = load_node->index;
|
|
|
|
ppir_dest *dest = ppir_node_get_dest(node);
|
|
new_lnode->dest = *dest;
|
|
|
|
ppir_src *src = ppir_node_get_src(node, 0);
|
|
if (src) {
|
|
new_lnode->num_src = 1;
|
|
switch (src->type) {
|
|
case ppir_target_ssa:
|
|
ppir_node_target_assign(&new_lnode->src, src->node);
|
|
ppir_node_add_dep(&new_lnode->node, src->node, ppir_dep_src);
|
|
break;
|
|
case ppir_target_register:
|
|
new_lnode->src.type = src->type;
|
|
new_lnode->src.reg = src->reg;
|
|
new_lnode->src.node = NULL;
|
|
break;
|
|
default:
|
|
/* Load nodes can't consume pipeline registers */
|
|
assert(0);
|
|
}
|
|
}
|
|
|
|
return &new_lnode->node;
|
|
}
|
|
|
|
ppir_node *ppir_node_clone(ppir_block *block, ppir_node *node)
|
|
{
|
|
switch (node->op) {
|
|
case ppir_op_const:
|
|
return ppir_node_clone_const(block, node);
|
|
case ppir_op_load_uniform:
|
|
case ppir_op_load_varying:
|
|
case ppir_op_load_temp:
|
|
case ppir_op_load_coords:
|
|
case ppir_op_load_coords_reg:
|
|
return ppir_node_clone_load(block, node);
|
|
default:
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
ppir_node *ppir_node_insert_mov(ppir_node *node)
|
|
{
|
|
ppir_node *move = ppir_node_create(node->block, ppir_op_mov, -1, 0);
|
|
if (unlikely(!move))
|
|
return NULL;
|
|
|
|
ppir_dest *dest = ppir_node_get_dest(node);
|
|
ppir_alu_node *alu = ppir_node_to_alu(move);
|
|
alu->dest = *dest;
|
|
alu->num_src = 1;
|
|
ppir_node_target_assign(alu->src, node);
|
|
|
|
for (int s = 0; s < 4; s++)
|
|
alu->src->swizzle[s] = s;
|
|
|
|
ppir_node_replace_all_succ(move, node);
|
|
ppir_node_add_dep(move, node, ppir_dep_src);
|
|
list_addtail(&move->list, &node->list);
|
|
|
|
return move;
|
|
}
|
|
|
|
bool ppir_node_has_single_src_succ(ppir_node *node)
|
|
{
|
|
if (list_is_singular(&node->succ_list) &&
|
|
list_first_entry(&node->succ_list,
|
|
ppir_dep, succ_link)->type == ppir_dep_src)
|
|
return true;
|
|
|
|
int cnt = 0;
|
|
ppir_node_foreach_succ(node, dep) {
|
|
if (dep->type != ppir_dep_src)
|
|
continue;
|
|
cnt++;
|
|
}
|
|
|
|
return cnt == 1;
|
|
}
|