about summary refs log tree commit diff
path: root/src/rustllvm/RustWrapper.cpp
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-10-25 11:11:30 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-10-25 16:18:01 -0700
commite4c6523c65c45d0fc4485b9e691043c7b5c61a94 (patch)
tree2e67b859221f0a6b54aa2e8f5a598a83309a9773 /src/rustllvm/RustWrapper.cpp
parent3f5b2219cc893b30863f9136703166f306fcc684 (diff)
downloadrust-e4c6523c65c45d0fc4485b9e691043c7b5c61a94.tar.gz
rust-e4c6523c65c45d0fc4485b9e691043c7b5c61a94.zip
Fire fewer homing missiles
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!).
Diffstat (limited to 'src/rustllvm/RustWrapper.cpp')
0 files changed, 0 insertions, 0 deletions