]> git.lizzy.rs Git - rust.git/commitdiff
auto merge of #10070 : alexcrichton/rust/fewer-missiles, r=brson
authorbors <bors@rust-lang.org>
Sat, 26 Oct 2013 07:06:09 +0000 (00:06 -0700)
committerbors <bors@rust-lang.org>
Sat, 26 Oct 2013 07:06:09 +0000 (00:06 -0700)
This optimizes the `home_for_io` code path by requiring fewer scheduler
operations in some situtations.

When moving to your home scheduler, this no longer forces a context switch if
you're already on the home scheduler. Instead, the homing code now simply pins
you to your current scheduler (making it so you can't be stolen away). If you're
not on your home scheduler, then we context switch away, sending you to your
home scheduler.

When the I/O operation is done, then we also no longer forcibly trigger a
context switch. Instead, the action is cased on whether the task is homed or
not. If a task does not have a home, then the task is re-flagged as not having a
home and no context switch is performed. If a task is homed to the current
scheduler, then we don't do anything, and if the task is homed to a foreign
scheduler, then it's sent along its merry way.

I verified that there are about a third as many `write` syscalls done in print
operations now. Libuv uses write to implement async handles, and the homing
before and after each I/O operation was triggering a write on these async
handles. Additionally, using the terrible benchmark of printing 10k times in a
loop, this drives the runtime from 0.6s down to 0.3s (yay!).

1  2 
src/libstd/rt/sched.rs
src/libstd/rt/uv/uvio.rs

Simple merge
Simple merge