forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#120504 - kornelski:try_with_capacity, r=Ama…
…nieu Vec::try_with_capacity Related to rust-lang#91913 Implements try_with_capacity for `Vec`, `VecDeque`, and `String`. I can follow it up with more collections if desired. `Vec::try_with_capacity()` is functionally equivalent to the current stable: ```rust let mut v = Vec::new(); v.try_reserve_exact(n)? ``` However, `try_reserve` calls non-inlined `finish_grow`, which requires old and new `Layout`, and is designed to reallocate memory. There is benefit to using `try_with_capacity`, besides syntax convenience, because it generates much smaller code at the call site with a direct call to the allocator. There's codegen test included. It's also a very desirable functionality for users of `no_global_oom_handling` (Rust-for-Linux), since it makes a very commonly used function available in that environment (`with_capacity` is used much more frequently than all `(try_)reserve(_exact)`).
- Loading branch information
Showing
14 changed files
with
189 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
//@ compile-flags: -O | ||
//@ ignore-debug | ||
// (with debug assertions turned on, `assert_unchecked` generates a real assertion) | ||
|
||
#![crate_type = "lib"] | ||
#![feature(try_with_capacity)] | ||
|
||
// CHECK-LABEL: @with_capacity_does_not_grow1 | ||
#[no_mangle] | ||
pub fn with_capacity_does_not_grow1() -> Vec<u32> { | ||
let v = Vec::with_capacity(1234); | ||
// CHECK: call {{.*}}__rust_alloc( | ||
// CHECK-NOT: call {{.*}}__rust_realloc | ||
// CHECK-NOT: call {{.*}}capacity_overflow | ||
// CHECK-NOT: call {{.*}}finish_grow | ||
// CHECK-NOT: call {{.*}}reserve | ||
// CHECK-NOT: memcpy | ||
// CHECK-NOT: memset | ||
v | ||
} | ||
|
||
// CHECK-LABEL: @try_with_capacity_does_not_grow2 | ||
#[no_mangle] | ||
pub fn try_with_capacity_does_not_grow2() -> Option<Vec<Vec<u8>>> { | ||
let v = Vec::try_with_capacity(1234).ok()?; | ||
// CHECK: call {{.*}}__rust_alloc( | ||
// CHECK-NOT: call {{.*}}__rust_realloc | ||
// CHECK-NOT: call {{.*}}capacity_overflow | ||
// CHECK-NOT: call {{.*}}finish_grow | ||
// CHECK-NOT: call {{.*}}handle_alloc_error | ||
// CHECK-NOT: call {{.*}}reserve | ||
// CHECK-NOT: memcpy | ||
// CHECK-NOT: memset | ||
Some(v) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
thread 'main' panicked at library/alloc/src/raw_vec.rs:571:5: | ||
thread 'main' panicked at library/alloc/src/raw_vec.rs:26:5: | ||
capacity overflow | ||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters