Home
last modified time | relevance | path

Searched refs:no_spill (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4_reg_allocate.cpp382 vec4_visitor::evaluate_spill_costs(float *spill_costs, bool *no_spill) in evaluate_spill_costs() argument
391 no_spill[i] = alloc.sizes[i] != 1 && alloc.sizes[i] != 2; in evaluate_spill_costs()
401 if (inst->src[i].file == VGRF && !no_spill[inst->src[i].nr]) { in evaluate_spill_costs()
411 no_spill[inst->src[i].nr] = true; in evaluate_spill_costs()
421 no_spill[inst->src[i].nr] = true; in evaluate_spill_costs()
431 no_spill[inst->src[i].nr] = true; in evaluate_spill_costs()
435 if (inst->dst.file == VGRF && !no_spill[inst->dst.nr]) { in evaluate_spill_costs()
439 no_spill[inst->dst.nr] = true; in evaluate_spill_costs()
448 no_spill[inst->dst.nr] = true; in evaluate_spill_costs()
460 no_spill[inst->dst.nr] = true; in evaluate_spill_costs()
[all …]
Dbrw_fs_reg_allocate.cpp811 bool no_spill[this->alloc.count]; in choose_spill_reg() local
815 no_spill[i] = false; in choose_spill_reg()
844 no_spill[inst->src[0].nr] = true; in choose_spill_reg()
850 no_spill[inst->dst.nr] = true; in choose_spill_reg()
859 if (!no_spill[i]) in choose_spill_reg()
Dbrw_vec4.h135 void evaluate_spill_costs(float *spill_costs, bool *no_spill);
Dbrw_vec4.cpp2658 bool no_spill[alloc.count]; in run() local
2659 evaluate_spill_costs(spill_costs, no_spill); in run()
2661 if (no_spill[i]) in run()