diff options
author | Eric Anholt <[email protected]> | 2013-11-05 23:30:33 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-11-12 15:06:00 -0800 |
commit | f72a0d99fed5d6205431a59775484cde3442cceb (patch) | |
tree | 6e682275c801e51df8c43fe366d87619e2e21702 /src/mesa | |
parent | 7c90947a0ba7f61b58a6fd5b94a08587e68d978e (diff) |
i965/fs: Ignore actual latency pre-reg-alloc.
We care about depth-until-program-end, as a proxy for "make sure I
schedule those early instructions that open up the other things that can
make progress while keeping register pressure low", not actual latency
(since we're relying on the post-register-alloc scheduling to actually
schedule for the hardware).
total instructions in shared programs: 1609931 -> 1609931 (0.00%)
instructions in affected programs: 0 -> 0
GAINED: 55
LOST: 43
Cc: "10.0" <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp | 50 |
1 files changed, 29 insertions, 21 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp b/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp index 53fffa72a85..5710380f12e 100644 --- a/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp +++ b/src/mesa/drivers/dri/i965/brw_schedule_instructions.cpp @@ -56,29 +56,12 @@ using namespace brw; static bool debug = false; +class instruction_scheduler; + class schedule_node : public exec_node { public: - schedule_node(backend_instruction *inst, const struct brw_context *brw) - { - this->inst = inst; - this->child_array_size = 0; - this->children = NULL; - this->child_latency = NULL; - this->child_count = 0; - this->parent_count = 0; - this->unblocked_time = 0; - this->cand_generation = 0; - - /* We can't measure Gen6 timings directly but expect them to be much - * closer to Gen7 than Gen4. - */ - if (brw->gen >= 6) - set_latency_gen7(brw->is_haswell); - else - set_latency_gen4(); - } - + schedule_node(backend_instruction *inst, instruction_scheduler *sched); void set_latency_gen4(); void set_latency_gen7(bool is_haswell); @@ -607,10 +590,35 @@ vec4_instruction_scheduler::get_register_pressure_benefit(backend_instruction *b return 0; } +schedule_node::schedule_node(backend_instruction *inst, + instruction_scheduler *sched) +{ + struct brw_context *brw = sched->bv->brw; + + this->inst = inst; + this->child_array_size = 0; + this->children = NULL; + this->child_latency = NULL; + this->child_count = 0; + this->parent_count = 0; + this->unblocked_time = 0; + this->cand_generation = 0; + + /* We can't measure Gen6 timings directly but expect them to be much + * closer to Gen7 than Gen4. + */ + if (!sched->post_reg_alloc) + this->latency = 1; + else if (brw->gen >= 6) + set_latency_gen7(brw->is_haswell); + else + set_latency_gen4(); +} + void instruction_scheduler::add_inst(backend_instruction *inst) { - schedule_node *n = new(mem_ctx) schedule_node(inst, bv->brw); + schedule_node *n = new(mem_ctx) schedule_node(inst, this); assert(!inst->is_head_sentinel()); assert(!inst->is_tail_sentinel()); |