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.
try_with_capacity for Vec, VecDeque, String
- Loading branch information
Showing
12 changed files
with
155 additions
and
4 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
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
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