Skip to content

Latest commit

 

History

History
108 lines (73 loc) · 4.58 KB

0000-option-replace-with.md

File metadata and controls

108 lines (73 loc) · 4.58 KB
  • Feature Name: option-replace-with
  • Start Date: 2018-06-28
  • RFC PR: (leave this empty)
  • Rust Issue: (leave this empty)

Summary

This RFC proposes the addition of Option::replace_with to compliment Option::replace (RFC #2296) and Option::take methods. It replaces the actual value in the option with the value returned from a closure given as a parameter, while the old value is passed into the closure.

Motivation

Option::replace_with helps to clarify the intent and also improves the performance of a naive Option::take + assignment implementation.

Guide-level explanation

Option::replace_with is a replacement for the following code:

let mut some_option: Option<i32> = Some(123);

some_option = consume_option_i32_and_produce_option_i32(some_option.take());

With Option::replace_with you will write:

let mut some_option: Option<i32> = Some(123);

some_option.replace_with(|old_value| consume_option_i32_and_produce_option_i32(old_value));

// OR

some_option.replace_with(consume_option_i32_and_produce_option_i32);

While the first implementation works fine, it generates suboptimal code due to unnecessary "allocation" and "deallocation" of None value. The naive implementation is about 10% slower than the optimal solution:

let mut some_option: Option<i32> = Some(123);

let old_value = unsafe { mem::uninitialized() };
mem::swap(&mut some_option, old_value);
let mut new_value = consume_option_i32_and_produce_option_i32(old_value);
mem::swap(&mut some_option, &mut new_value);
mem::forget(new_value);

Option::replace_with can implement the trick and reach the maximum performance.

Reference-level explanation

This method will be added to the core::option::Option type implementation:

use core::mem;

impl<T> Option<T> {
    // ...

    #[inline]
    fn replace_with<F>(&mut self, f: F)
    where
        F: FnOnce(Option<T>) -> Option<T>,
    {
        let mut old_value = unsafe { mem::uninitialized() };
        mem::swap(self, &mut old_value);
        let mut new_value = f(old_value);
        mem::swap(self, &mut new_value);
        // After two swaps (`old_value` -> `self` -> `new_value`), `new_value`
        // holds an `uninitialized` value, so we just forget about it.
        mem::forget(new_value);
    }
}

Here is a benchmark: link.

Here is a generated assembly code comparison in Compiler Explorer: link (naive implementation is on the left, and optimized implementation is on the right).

Drawbacks

There will be no need in this method if the compiler can optimize the cases when it is clear that the variable holds None, i.e. Option::take and simple assignment would not produce unnecessary moveq 0 and drop_in_place call.

This Option::replace_with solves only a single case and even than it has limits, e.g. if the function you call inside the closure needs to produce some other value in addition to the value that is going to be a new replacement, that value cannot "leak" the closure efficiently in safe Rust.

Rationale and alternatives

The rationale for proposing Option::replace_with is that it is the simplest way to boost the performance for the use-case.

The alternative is to teach Rust compiler or LLVM to optimize the use-case expressed with a simple assignment.

Prior art

The performance issue and the workaround were initially discovered during the digging into Completely Unscientific Benchmark.

Naive searching through Rust codebase revealed only a single case where currently a simple assignment is used: src/librustdoc/passes/collapse_docs.rs.

Unresolved questions

  • Should Option::replace_with be introduced or LLVM/Rustc should implement a general optimization which will cover this use-case as well as many others?