2012-04-11 13:12:33 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2012 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.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Eric Anholt <eric@anholt.net>
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2025-02-05 14:25:15 -08:00
|
|
|
#include "brw_shader.h"
|
2024-12-06 19:48:54 -08:00
|
|
|
#include "brw_analysis.h"
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2012-06-05 11:23:09 -07:00
|
|
|
#define MAX_INSTRUCTION (1 << 30)
|
|
|
|
|
|
2024-07-13 00:19:44 -07:00
|
|
|
/** @file
|
2012-04-11 13:12:33 -07:00
|
|
|
*
|
2012-06-04 16:00:32 -07:00
|
|
|
* Support for calculating liveness information about virtual GRFs.
|
|
|
|
|
*
|
|
|
|
|
* This produces a live interval for each whole virtual GRF. We could
|
|
|
|
|
* choose to expose per-component live intervals for VGRFs of size > 1,
|
|
|
|
|
* but we currently do not. It is easier for the consumers of this
|
|
|
|
|
* information to work with whole VGRFs.
|
|
|
|
|
*
|
2016-09-02 13:53:13 -07:00
|
|
|
* However, we internally track use/def information at the per-GRF level for
|
|
|
|
|
* greater accuracy. Large VGRFs may be accessed piecemeal over many
|
|
|
|
|
* (possibly non-adjacent) instructions. In this case, examining a single
|
|
|
|
|
* instruction is insufficient to decide whether a whole VGRF is ultimately
|
|
|
|
|
* used or defined. Tracking individual components allows us to easily
|
|
|
|
|
* assemble this information.
|
2012-04-11 13:12:33 -07:00
|
|
|
*
|
2013-10-19 16:40:19 -07:00
|
|
|
* See Muchnick's Advanced Compiler Design and Implementation, section
|
2012-04-11 13:12:33 -07:00
|
|
|
* 14.1 (p444).
|
|
|
|
|
*/
|
|
|
|
|
|
2013-04-05 14:20:43 -07:00
|
|
|
void
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::setup_one_read(struct block_data *bd,
|
|
|
|
|
int ip, const brw_reg ®)
|
2013-04-05 14:20:43 -07:00
|
|
|
{
|
2014-10-29 13:58:45 -07:00
|
|
|
int var = var_from_reg(reg);
|
2013-12-07 16:22:08 -08:00
|
|
|
assert(var < num_vars);
|
2013-04-05 14:20:43 -07:00
|
|
|
|
2025-03-26 19:38:50 -07:00
|
|
|
vars_range[var] = merge(vars_range[var], ip);
|
2012-06-05 11:23:09 -07:00
|
|
|
|
2013-04-05 14:20:43 -07:00
|
|
|
/* The use[] bitset marks when the block makes use of a variable (VGRF
|
|
|
|
|
* channel) without having completely defined that variable within the
|
|
|
|
|
* block.
|
|
|
|
|
*/
|
2014-10-29 13:35:16 -07:00
|
|
|
if (!BITSET_TEST(bd->def, var))
|
|
|
|
|
BITSET_SET(bd->use, var);
|
2013-04-05 14:20:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::setup_one_write(struct block_data *bd, brw_inst *inst,
|
|
|
|
|
int ip, const brw_reg ®)
|
2013-04-05 14:20:43 -07:00
|
|
|
{
|
2014-10-29 13:58:45 -07:00
|
|
|
int var = var_from_reg(reg);
|
2013-12-07 16:22:08 -08:00
|
|
|
assert(var < num_vars);
|
2013-04-05 14:20:43 -07:00
|
|
|
|
2025-03-26 19:38:50 -07:00
|
|
|
vars_range[var] = merge(vars_range[var], ip);
|
2012-06-05 11:23:09 -07:00
|
|
|
|
2013-04-05 14:20:43 -07:00
|
|
|
/* The def[] bitset marks when an initialization in a block completely
|
|
|
|
|
* screens off previous updates of that variable (VGRF channel).
|
|
|
|
|
*/
|
2017-09-07 00:26:03 -07:00
|
|
|
if (inst->dst.file == VGRF) {
|
2019-04-24 12:38:28 +02:00
|
|
|
if (!inst->is_partial_write() && !BITSET_TEST(bd->use, var))
|
2014-10-29 13:35:16 -07:00
|
|
|
BITSET_SET(bd->def, var);
|
2017-09-07 00:26:03 -07:00
|
|
|
|
|
|
|
|
BITSET_SET(bd->defout, var);
|
2013-04-05 14:20:43 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-11 13:12:33 -07:00
|
|
|
/**
|
2013-02-19 14:36:06 -08:00
|
|
|
* Sets up the use[] and def[] bitsets.
|
2012-04-11 13:12:33 -07:00
|
|
|
*
|
|
|
|
|
* The basic-block-level live variable analysis needs to know which
|
|
|
|
|
* variables get used before they're completely defined, and which
|
|
|
|
|
* variables are completely defined before they're used.
|
2012-06-04 16:00:32 -07:00
|
|
|
*
|
|
|
|
|
* These are tracked at the per-component level, rather than whole VGRFs.
|
2012-04-11 13:12:33 -07:00
|
|
|
*/
|
|
|
|
|
void
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::setup_def_use()
|
2012-04-11 13:12:33 -07:00
|
|
|
{
|
|
|
|
|
int ip = 0;
|
|
|
|
|
|
2014-07-11 22:31:39 -07:00
|
|
|
foreach_block (block, cfg) {
|
2016-03-09 16:56:29 -08:00
|
|
|
struct block_data *bd = &block_data[block->num];
|
2014-10-29 13:35:16 -07:00
|
|
|
|
2025-03-26 13:26:28 -07:00
|
|
|
assert(ip == bd->ip_range.start);
|
2025-03-11 13:20:09 -07:00
|
|
|
if (block->num > 0)
|
2025-03-26 13:26:28 -07:00
|
|
|
assert(block_data[block->num - 1].ip_range.end == ip - 1);
|
2025-03-11 13:20:09 -07:00
|
|
|
|
2024-12-07 00:23:07 -08:00
|
|
|
foreach_inst_in_block(brw_inst, inst, block) {
|
2023-03-31 15:47:48 -07:00
|
|
|
/* Set use[] for this instruction */
|
|
|
|
|
for (unsigned int i = 0; i < inst->sources; i++) {
|
2024-06-18 23:42:59 -07:00
|
|
|
brw_reg reg = inst->src[i];
|
2013-04-05 14:20:43 -07:00
|
|
|
|
2015-10-26 17:09:25 -07:00
|
|
|
if (reg.file != VGRF)
|
2013-08-06 00:47:00 -07:00
|
|
|
continue;
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2024-06-19 10:50:51 -07:00
|
|
|
for (unsigned j = 0; j < regs_read(devinfo, inst, i); j++) {
|
2020-04-13 16:55:43 -07:00
|
|
|
setup_one_read(bd, ip, reg);
|
2016-09-01 12:42:20 -07:00
|
|
|
reg.offset += REG_SIZE;
|
2012-06-04 16:00:32 -07:00
|
|
|
}
|
2023-03-31 15:47:48 -07:00
|
|
|
}
|
2016-05-18 21:34:27 -07:00
|
|
|
|
2016-03-13 16:41:23 -07:00
|
|
|
bd->flag_use[0] |= inst->flags_read(devinfo) & ~bd->flag_def[0];
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2013-04-05 14:20:43 -07:00
|
|
|
/* Set def[] for this instruction */
|
2015-10-26 17:09:25 -07:00
|
|
|
if (inst->dst.file == VGRF) {
|
2024-06-18 23:42:59 -07:00
|
|
|
brw_reg reg = inst->dst;
|
2016-09-07 16:59:35 -07:00
|
|
|
for (unsigned j = 0; j < regs_written(inst); j++) {
|
2014-10-29 13:35:16 -07:00
|
|
|
setup_one_write(bd, inst, ip, reg);
|
2016-09-01 12:42:20 -07:00
|
|
|
reg.offset += REG_SIZE;
|
2012-06-04 16:00:32 -07:00
|
|
|
}
|
2023-03-31 15:47:48 -07:00
|
|
|
}
|
2016-05-18 21:34:27 -07:00
|
|
|
|
|
|
|
|
if (!inst->predicate && inst->exec_size >= 8)
|
intel/fs: sel.cond writes the flags on Gfx4 and Gfx5
On Gfx4 and Gfx5, sel.l (for min) and sel.ge (for max) are implemented
using a separte cmpn and sel instruction. This lowering occurs in
fs_vistor::lower_minmax which is called very, very late... a long, long
time after the first calls to opt_cmod_propagation. As a result,
conditional modifiers can be incorrectly propagated across sel.cond on
those platforms.
No tests were affected by this change, and I find that quite shocking.
After just changing flags_written(), all of the atan tests started
failing on ILK. That required the change in cmod_propagatin (and the
addition of the prop_across_into_sel_gfx5 unit test).
Shader-db results for ILK and GM45 are below. I looked at a couple
before and after shaders... and every case that I looked at had
experienced incorrect cmod propagation. This affected a LOT of apps!
Euro Truck Simulator 2, The Talos Principle, Serious Sam 3, Sanctum 2,
Gang Beasts, and on and on... :(
I discovered this bug while working on a couple new optimization
passes. One of the passes attempts to remove condition modifiers that
are never used. The pass made no progress except on ILK and GM45.
After investigating a couple of the affected shaders, I noticed that
the code in those shaders looked wrong... investigation led to this
cause.
v2: Trivial changes in the unit tests.
v3: Fix type in comment in unit tests. Noticed by Jason and Priit.
v4: Tweak handling of BRW_OPCODE_SEL special case. Suggested by Jason.
Fixes: df1aec763eb ("i965/fs: Define methods to calculate the flag subset read or written by an fs_inst.")
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
Tested-by: Dave Airlie <airlied@redhat.com>
Iron Lake
total instructions in shared programs: 8180493 -> 8181781 (0.02%)
instructions in affected programs: 541796 -> 543084 (0.24%)
helped: 28
HURT: 1158
helped stats (abs) min: 1 max: 1 x̄: 1.00 x̃: 1
helped stats (rel) min: 0.35% max: 0.86% x̄: 0.53% x̃: 0.50%
HURT stats (abs) min: 1 max: 3 x̄: 1.14 x̃: 1
HURT stats (rel) min: 0.12% max: 4.00% x̄: 0.37% x̃: 0.23%
95% mean confidence interval for instructions value: 1.06 1.11
95% mean confidence interval for instructions %-change: 0.31% 0.38%
Instructions are HURT.
total cycles in shared programs: 239420470 -> 239421690 (<.01%)
cycles in affected programs: 2925992 -> 2927212 (0.04%)
helped: 49
HURT: 157
helped stats (abs) min: 2 max: 284 x̄: 62.69 x̃: 70
helped stats (rel) min: 0.04% max: 6.20% x̄: 1.68% x̃: 1.96%
HURT stats (abs) min: 2 max: 48 x̄: 27.34 x̃: 24
HURT stats (rel) min: 0.02% max: 2.91% x̄: 0.31% x̃: 0.20%
95% mean confidence interval for cycles value: -0.80 12.64
95% mean confidence interval for cycles %-change: -0.31% <.01%
Inconclusive result (value mean confidence interval includes 0).
GM45
total instructions in shared programs: 4985517 -> 4986207 (0.01%)
instructions in affected programs: 306935 -> 307625 (0.22%)
helped: 14
HURT: 625
helped stats (abs) min: 1 max: 1 x̄: 1.00 x̃: 1
helped stats (rel) min: 0.35% max: 0.82% x̄: 0.52% x̃: 0.49%
HURT stats (abs) min: 1 max: 3 x̄: 1.13 x̃: 1
HURT stats (rel) min: 0.12% max: 3.90% x̄: 0.34% x̃: 0.22%
95% mean confidence interval for instructions value: 1.04 1.12
95% mean confidence interval for instructions %-change: 0.29% 0.36%
Instructions are HURT.
total cycles in shared programs: 153827268 -> 153828052 (<.01%)
cycles in affected programs: 1669290 -> 1670074 (0.05%)
helped: 24
HURT: 84
helped stats (abs) min: 2 max: 232 x̄: 64.33 x̃: 67
helped stats (rel) min: 0.04% max: 4.62% x̄: 1.60% x̃: 1.94%
HURT stats (abs) min: 2 max: 48 x̄: 27.71 x̃: 24
HURT stats (rel) min: 0.02% max: 2.66% x̄: 0.34% x̃: 0.14%
95% mean confidence interval for cycles value: -1.94 16.46
95% mean confidence interval for cycles %-change: -0.29% 0.11%
Inconclusive result (value mean confidence interval includes 0).
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12191>
2021-08-02 21:33:17 -07:00
|
|
|
bd->flag_def[0] |= inst->flags_written(devinfo) & ~bd->flag_use[0];
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2023-03-31 15:47:48 -07:00
|
|
|
ip++;
|
2012-04-11 13:12:33 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The algorithm incrementally sets bits in liveout and livein,
|
|
|
|
|
* propagating it through control flow. It will eventually terminate
|
|
|
|
|
* because it only ever adds bits, and stops when no bits are added in
|
|
|
|
|
* a pass.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::compute_live_variables()
|
2012-04-11 13:12:33 -07:00
|
|
|
{
|
|
|
|
|
bool cont = true;
|
|
|
|
|
|
2023-06-13 16:14:50 -07:00
|
|
|
/* Propagate defin and defout down the CFG to calculate the union of live
|
|
|
|
|
* variables potentially defined along any possible control flow path.
|
|
|
|
|
*/
|
|
|
|
|
do {
|
|
|
|
|
cont = false;
|
|
|
|
|
|
|
|
|
|
foreach_block (block, cfg) {
|
|
|
|
|
const struct block_data *bd = &block_data[block->num];
|
|
|
|
|
|
|
|
|
|
foreach_list_typed(bblock_link, child_link, link, &block->children) {
|
|
|
|
|
struct block_data *child_bd = &block_data[child_link->block->num];
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < bitset_words; i++) {
|
|
|
|
|
const BITSET_WORD new_def = bd->defout[i] & ~child_bd->defin[i];
|
|
|
|
|
child_bd->defin[i] |= new_def;
|
|
|
|
|
child_bd->defout[i] |= new_def;
|
|
|
|
|
cont |= new_def;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while (cont);
|
|
|
|
|
|
|
|
|
|
do {
|
2012-04-11 13:12:33 -07:00
|
|
|
cont = false;
|
|
|
|
|
|
2015-06-08 16:03:19 -07:00
|
|
|
foreach_block_reverse (block, cfg) {
|
2016-03-09 16:56:29 -08:00
|
|
|
struct block_data *bd = &block_data[block->num];
|
2014-10-29 13:35:16 -07:00
|
|
|
|
2023-03-31 15:47:48 -07:00
|
|
|
/* Update liveout */
|
|
|
|
|
foreach_list_typed(bblock_link, child_link, link, &block->children) {
|
|
|
|
|
struct block_data *child_bd = &block_data[child_link->block->num];
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2023-03-31 15:47:48 -07:00
|
|
|
for (int i = 0; i < bitset_words; i++) {
|
2014-10-29 13:35:16 -07:00
|
|
|
BITSET_WORD new_liveout = (child_bd->livein[i] &
|
|
|
|
|
~bd->liveout[i]);
|
2023-06-13 16:18:09 -07:00
|
|
|
new_liveout &= bd->defout[i]; /* Screen off uses with no reaching def */
|
2023-03-31 18:13:57 -07:00
|
|
|
if (new_liveout)
|
2014-10-29 13:35:16 -07:00
|
|
|
bd->liveout[i] |= new_liveout;
|
2023-03-31 15:47:48 -07:00
|
|
|
}
|
2014-10-28 19:53:53 -07:00
|
|
|
BITSET_WORD new_liveout = (child_bd->flag_livein[0] &
|
|
|
|
|
~bd->flag_liveout[0]);
|
2023-03-31 18:13:57 -07:00
|
|
|
if (new_liveout)
|
2014-10-28 19:53:53 -07:00
|
|
|
bd->flag_liveout[0] |= new_liveout;
|
2023-03-31 15:47:48 -07:00
|
|
|
}
|
2015-06-08 16:03:19 -07:00
|
|
|
|
|
|
|
|
/* Update livein */
|
|
|
|
|
for (int i = 0; i < bitset_words; i++) {
|
|
|
|
|
BITSET_WORD new_livein = (bd->use[i] |
|
|
|
|
|
(bd->liveout[i] &
|
|
|
|
|
~bd->def[i]));
|
2023-06-13 16:18:09 -07:00
|
|
|
new_livein &= bd->defin[i]; /* Screen off uses with no reaching def */
|
2015-06-08 16:03:19 -07:00
|
|
|
if (new_livein & ~bd->livein[i]) {
|
|
|
|
|
bd->livein[i] |= new_livein;
|
|
|
|
|
cont = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
BITSET_WORD new_livein = (bd->flag_use[0] |
|
|
|
|
|
(bd->flag_liveout[0] &
|
|
|
|
|
~bd->flag_def[0]));
|
|
|
|
|
if (new_livein & ~bd->flag_livein[0]) {
|
|
|
|
|
bd->flag_livein[0] |= new_livein;
|
|
|
|
|
cont = true;
|
|
|
|
|
}
|
2012-04-11 13:12:33 -07:00
|
|
|
}
|
2017-09-07 00:26:03 -07:00
|
|
|
} while (cont);
|
2012-04-11 13:12:33 -07:00
|
|
|
}
|
|
|
|
|
|
2012-06-05 11:23:09 -07:00
|
|
|
/**
|
|
|
|
|
* Extend the start/end ranges for each variable to account for the
|
|
|
|
|
* new information calculated from control flow.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::compute_start_end()
|
2012-06-05 11:23:09 -07:00
|
|
|
{
|
2014-07-11 22:31:39 -07:00
|
|
|
foreach_block (block, cfg) {
|
2016-03-09 16:56:29 -08:00
|
|
|
struct block_data *bd = &block_data[block->num];
|
2023-06-14 10:46:44 -07:00
|
|
|
unsigned i;
|
2014-10-29 13:35:16 -07:00
|
|
|
|
2025-03-26 19:38:50 -07:00
|
|
|
BITSET_FOREACH_SET(i, bd->livein, (unsigned)num_vars)
|
|
|
|
|
vars_range[i] = merge(vars_range[i], bd->ip_range.start);
|
2023-06-14 10:46:44 -07:00
|
|
|
|
2025-03-26 19:38:50 -07:00
|
|
|
BITSET_FOREACH_SET(i, bd->liveout, (unsigned)num_vars)
|
2025-03-27 08:23:36 -07:00
|
|
|
vars_range[i] = merge(vars_range[i], bd->ip_range.last());
|
2012-06-05 11:23:09 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 10:25:45 -08:00
|
|
|
brw_live_variables::brw_live_variables(const brw_shader *s)
|
2016-03-13 16:41:23 -07:00
|
|
|
: devinfo(s->devinfo), cfg(s->cfg)
|
2012-04-11 13:12:33 -07:00
|
|
|
{
|
2013-10-23 11:16:26 -07:00
|
|
|
mem_ctx = ralloc_context(NULL);
|
2023-10-02 13:04:19 -07:00
|
|
|
linear_ctx *lin_ctx = linear_context(mem_ctx);
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2016-03-13 16:41:23 -07:00
|
|
|
num_vgrfs = s->alloc.count;
|
2012-06-04 16:00:32 -07:00
|
|
|
num_vars = 0;
|
2024-07-15 22:32:45 -07:00
|
|
|
var_from_vgrf = linear_alloc_array(lin_ctx, int, num_vgrfs);
|
2012-06-04 16:00:32 -07:00
|
|
|
for (int i = 0; i < num_vgrfs; i++) {
|
|
|
|
|
var_from_vgrf[i] = num_vars;
|
2016-03-13 16:41:23 -07:00
|
|
|
num_vars += s->alloc.sizes[i];
|
2012-06-04 16:00:32 -07:00
|
|
|
}
|
|
|
|
|
|
2024-07-15 22:32:45 -07:00
|
|
|
vgrf_from_var = linear_alloc_array(lin_ctx, int, num_vars);
|
2012-06-04 16:00:32 -07:00
|
|
|
for (int i = 0; i < num_vgrfs; i++) {
|
2016-03-13 16:41:23 -07:00
|
|
|
for (unsigned j = 0; j < s->alloc.sizes[i]; j++) {
|
2012-06-04 16:00:32 -07:00
|
|
|
vgrf_from_var[var_from_vgrf[i] + j] = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-26 19:38:50 -07:00
|
|
|
vars_range = linear_alloc_array(lin_ctx, brw_range, num_vars);
|
|
|
|
|
for (int i = 0; i < num_vars; i++)
|
|
|
|
|
vars_range[i] = { MAX_INSTRUCTION, -1 };
|
2012-06-05 11:23:09 -07:00
|
|
|
|
2025-03-26 14:16:16 -07:00
|
|
|
vgrf_range = linear_alloc_array(lin_ctx, brw_range, num_vgrfs);
|
|
|
|
|
for (int i = 0; i < num_vgrfs; i++)
|
|
|
|
|
vgrf_range[i] = { MAX_INSTRUCTION, -1 };
|
2016-03-09 17:46:16 -08:00
|
|
|
|
2024-07-15 22:32:45 -07:00
|
|
|
block_data = linear_alloc_array(lin_ctx, struct block_data, cfg->num_blocks);
|
2012-04-11 13:12:33 -07:00
|
|
|
|
2012-06-04 16:00:32 -07:00
|
|
|
bitset_words = BITSET_WORDS(num_vars);
|
2012-04-11 13:12:33 -07:00
|
|
|
for (int i = 0; i < cfg->num_blocks; i++) {
|
2023-10-02 13:04:19 -07:00
|
|
|
block_data[i].def = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
|
|
|
|
block_data[i].use = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
|
|
|
|
block_data[i].livein = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
|
|
|
|
block_data[i].liveout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
|
|
|
|
block_data[i].defin = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
|
|
|
|
block_data[i].defout = linear_zalloc_array(lin_ctx, BITSET_WORD, bitset_words);
|
2014-10-28 19:53:53 -07:00
|
|
|
|
|
|
|
|
block_data[i].flag_def[0] = 0;
|
|
|
|
|
block_data[i].flag_use[0] = 0;
|
|
|
|
|
block_data[i].flag_livein[0] = 0;
|
|
|
|
|
block_data[i].flag_liveout[0] = 0;
|
2012-04-11 13:12:33 -07:00
|
|
|
}
|
|
|
|
|
|
2025-03-11 13:20:09 -07:00
|
|
|
const brw_ip_ranges &ips = s->ip_ranges_analysis.require();
|
2025-03-26 13:26:28 -07:00
|
|
|
for (int i = 0; i < cfg->num_blocks; i++)
|
|
|
|
|
block_data[i].ip_range = ips.range(cfg->blocks[i]);
|
2025-03-11 13:20:09 -07:00
|
|
|
|
2012-04-11 13:12:33 -07:00
|
|
|
setup_def_use();
|
|
|
|
|
compute_live_variables();
|
2012-06-05 11:23:09 -07:00
|
|
|
compute_start_end();
|
2016-03-09 17:46:16 -08:00
|
|
|
|
|
|
|
|
/* Merge the per-component live ranges to whole VGRF live ranges. */
|
|
|
|
|
for (int i = 0; i < num_vars; i++) {
|
|
|
|
|
const unsigned vgrf = vgrf_from_var[i];
|
2025-03-26 19:38:50 -07:00
|
|
|
vgrf_range[vgrf] = merge(vgrf_range[vgrf], vars_range[i]);
|
2016-03-09 17:46:16 -08:00
|
|
|
}
|
2012-04-11 13:12:33 -07:00
|
|
|
}
|
|
|
|
|
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::~brw_live_variables()
|
2012-04-11 13:12:33 -07:00
|
|
|
{
|
|
|
|
|
ralloc_free(mem_ctx);
|
|
|
|
|
}
|
2012-04-11 13:14:27 -07:00
|
|
|
|
2016-03-09 22:41:31 -08:00
|
|
|
static bool
|
2024-12-06 21:20:58 -08:00
|
|
|
check_register_live_range(const brw_live_variables *live, int ip,
|
2024-06-18 23:42:59 -07:00
|
|
|
const brw_reg ®, unsigned n)
|
2016-03-09 22:41:31 -08:00
|
|
|
{
|
|
|
|
|
const unsigned var = live->var_from_reg(reg);
|
|
|
|
|
|
|
|
|
|
if (var + n > unsigned(live->num_vars) ||
|
2025-03-26 14:16:16 -07:00
|
|
|
!live->vgrf_range[reg.nr].contains(ip))
|
2016-03-09 22:41:31 -08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
for (unsigned j = 0; j < n; j++) {
|
2025-03-26 19:38:50 -07:00
|
|
|
if (!live->vars_range[var + j].contains(ip))
|
2016-03-09 22:41:31 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool
|
2024-12-07 10:25:45 -08:00
|
|
|
brw_live_variables::validate(const brw_shader *s) const
|
2016-03-09 22:41:31 -08:00
|
|
|
{
|
|
|
|
|
int ip = 0;
|
|
|
|
|
|
2024-12-07 00:23:07 -08:00
|
|
|
foreach_block_and_inst(block, brw_inst, inst, s->cfg) {
|
2016-03-09 22:41:31 -08:00
|
|
|
for (unsigned i = 0; i < inst->sources; i++) {
|
|
|
|
|
if (inst->src[i].file == VGRF &&
|
|
|
|
|
!check_register_live_range(this, ip,
|
2024-06-19 10:50:51 -07:00
|
|
|
inst->src[i], regs_read(devinfo, inst, i)))
|
2016-03-09 22:41:31 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (inst->dst.file == VGRF &&
|
|
|
|
|
!check_register_live_range(this, ip, inst->dst, regs_written(inst)))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
ip++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-30 14:30:19 -07:00
|
|
|
bool
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::vars_interfere(int a, int b) const
|
2013-04-30 14:30:19 -07:00
|
|
|
{
|
2025-03-26 13:26:28 -07:00
|
|
|
/* Clip the ranges so the end of a live range can overlap with
|
|
|
|
|
* the start of another live range. See details in vgrfs_interfere().
|
|
|
|
|
*/
|
2025-03-26 19:38:50 -07:00
|
|
|
return overlaps(clip_end(vars_range[a], 1),
|
|
|
|
|
clip_end(vars_range[b], 1));
|
2013-04-30 14:30:19 -07:00
|
|
|
}
|
|
|
|
|
|
2012-04-11 13:14:27 -07:00
|
|
|
bool
|
2024-12-06 21:20:58 -08:00
|
|
|
brw_live_variables::vgrfs_interfere(int a, int b) const
|
2012-04-11 13:14:27 -07:00
|
|
|
{
|
2025-03-26 13:26:28 -07:00
|
|
|
/* The live ranges are constructed such that at the start
|
|
|
|
|
* of the range there's a WRITE to the VGRF and at the
|
|
|
|
|
* end of the range there's a READ of the VGRF.
|
|
|
|
|
*
|
|
|
|
|
* Two VGRFs will not interfere if the same IP has both
|
|
|
|
|
* the READ at the end for one and the WRITE at the start
|
|
|
|
|
* for the other.
|
|
|
|
|
*
|
|
|
|
|
* Clip the ranges to cover this edge case.
|
|
|
|
|
*/
|
2025-03-26 14:16:16 -07:00
|
|
|
return overlaps(clip_end(vgrf_range[a], 1),
|
|
|
|
|
clip_end(vgrf_range[b], 1));
|
2012-04-11 13:14:27 -07:00
|
|
|
}
|