forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#134326 - scottmcm:slice-drop-shim-ptrmetadata…
…, r=saethlin Use `PtrMetadata` instead of `Len` in slice drop shims I tried to do a bigger change in rust-lang#134297 which didn't work, so here's the part I really wanted: Removing another use of `Len`, in favour of `PtrMetadata`. Split into two commits where the first just adds a test, so you can look at the second commit to see how the drop shim for an array changes with this PR. Reusing the same reviewer from the last one: r? BoxyUwU
- Loading branch information
Showing
4 changed files
with
132 additions
and
10 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
63 changes: 63 additions & 0 deletions
63
...-opt/slice_drop_shim.core.ptr-drop_in_place.[String;42].AddMovesForPackedDrops.before.mir
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,63 @@ | ||
// MIR for `std::ptr::drop_in_place` before AddMovesForPackedDrops | ||
|
||
fn std::ptr::drop_in_place(_1: *mut [String; 42]) -> () { | ||
let mut _0: (); | ||
let mut _2: *mut [std::string::String; 42]; | ||
let mut _3: *mut [std::string::String]; | ||
let mut _4: usize; | ||
let mut _5: usize; | ||
let mut _6: *mut std::string::String; | ||
let mut _7: bool; | ||
let mut _8: *mut std::string::String; | ||
let mut _9: bool; | ||
|
||
bb0: { | ||
goto -> bb9; | ||
} | ||
|
||
bb1: { | ||
return; | ||
} | ||
|
||
bb2 (cleanup): { | ||
resume; | ||
} | ||
|
||
bb3 (cleanup): { | ||
_6 = &raw mut (*_3)[_5]; | ||
_5 = Add(move _5, const 1_usize); | ||
drop((*_6)) -> [return: bb4, unwind terminate(cleanup)]; | ||
} | ||
|
||
bb4 (cleanup): { | ||
_7 = Eq(copy _5, copy _4); | ||
switchInt(move _7) -> [0: bb3, otherwise: bb2]; | ||
} | ||
|
||
bb5: { | ||
_8 = &raw mut (*_3)[_5]; | ||
_5 = Add(move _5, const 1_usize); | ||
drop((*_8)) -> [return: bb6, unwind: bb4]; | ||
} | ||
|
||
bb6: { | ||
_9 = Eq(copy _5, copy _4); | ||
switchInt(move _9) -> [0: bb5, otherwise: bb1]; | ||
} | ||
|
||
bb7: { | ||
_4 = PtrMetadata(copy _3); | ||
_5 = const 0_usize; | ||
goto -> bb6; | ||
} | ||
|
||
bb8: { | ||
goto -> bb7; | ||
} | ||
|
||
bb9: { | ||
_2 = &raw mut (*_1); | ||
_3 = move _2 as *mut [std::string::String] (PointerCoercion(Unsize, Implicit)); | ||
goto -> bb8; | ||
} | ||
} |
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