mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
Revert "intel/compiler: Silence unused parameter warning in update_inst_scoreboard"
This was a placeholder for the XeHP cross-pipeline synchronization code, bring it back. This reverts commita80e44902f. Reviewed-by: Francisco Jerez <currojerez@riseup.net> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10000> (cherry picked from commit78b643fb7f)
This commit is contained in:
parent
f6e8543ff7
commit
8e39721254
2 changed files with 4 additions and 4 deletions
|
|
@ -688,7 +688,7 @@
|
|||
"description": "Revert \"intel/compiler: Silence unused parameter warning in update_inst_scoreboard\"",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"master_sha": null,
|
||||
"because_sha": "a80e44902f66244d257c523afe77558cf334d624"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -791,7 +791,7 @@ namespace {
|
|||
* instruction \p inst.
|
||||
*/
|
||||
void
|
||||
update_inst_scoreboard(const ordered_address *jps,
|
||||
update_inst_scoreboard(const fs_visitor *shader, const ordered_address *jps,
|
||||
const fs_inst *inst, unsigned ip, scoreboard &sb)
|
||||
{
|
||||
const bool exec_all = inst->force_writemask_all;
|
||||
|
|
@ -844,7 +844,7 @@ namespace {
|
|||
unsigned ip = 0;
|
||||
|
||||
foreach_block_and_inst(block, fs_inst, inst, shader->cfg)
|
||||
update_inst_scoreboard(jps, inst, ip++, sbs[block->num]);
|
||||
update_inst_scoreboard(shader, jps, inst, ip++, sbs[block->num]);
|
||||
|
||||
return sbs;
|
||||
}
|
||||
|
|
@ -944,7 +944,7 @@ namespace {
|
|||
}
|
||||
}
|
||||
|
||||
update_inst_scoreboard(jps, inst, ip, sb);
|
||||
update_inst_scoreboard(shader, jps, inst, ip, sb);
|
||||
ip++;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue