mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 20:10:17 +01:00
i965/fs: Rename demote_pull_constants to lower_constant_loads
Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
8e76f664be
commit
71f8039f72
2 changed files with 3 additions and 3 deletions
|
|
@ -2031,7 +2031,7 @@ fs_visitor::assign_constant_locations()
|
|||
* or VARYING_PULL_CONSTANT_LOAD instructions which load values into VGRFs.
|
||||
*/
|
||||
void
|
||||
fs_visitor::demote_pull_constants()
|
||||
fs_visitor::lower_constant_loads()
|
||||
{
|
||||
const unsigned index = stage_prog_data->binding_table.pull_constants_start;
|
||||
|
||||
|
|
@ -5098,7 +5098,7 @@ fs_visitor::optimize()
|
|||
bld = fs_builder(this, 64);
|
||||
|
||||
assign_constant_locations();
|
||||
demote_pull_constants();
|
||||
lower_constant_loads();
|
||||
|
||||
validate();
|
||||
|
||||
|
|
|
|||
|
|
@ -139,7 +139,7 @@ public:
|
|||
void split_virtual_grfs();
|
||||
bool compact_virtual_grfs();
|
||||
void assign_constant_locations();
|
||||
void demote_pull_constants();
|
||||
void lower_constant_loads();
|
||||
void invalidate_live_intervals();
|
||||
void calculate_live_intervals();
|
||||
void calculate_register_pressure();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue