mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 21:24:08 +08:00
3dcb652a3a
Add the missing SPDX headers to these modules, which were just imported from the Rust stdlib. Doing this in a separate commit makes it easier to audit that the files have not been modified in the original import. See the preceding two commits for attribution and licensing details. Signed-off-by: Asahi Lina <lina@asahilina.net> Link: https://lore.kernel.org/r/20230224-rust-vec-v1-3-733b5b5a57c5@asahilina.net [ Reworded for typo. ] Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
31 lines
819 B
Rust
31 lines
819 B
Rust
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
// Set the length of the vec when the `SetLenOnDrop` value goes out of scope.
|
|
//
|
|
// The idea is: The length field in SetLenOnDrop is a local variable
|
|
// that the optimizer will see does not alias with any stores through the Vec's data
|
|
// pointer. This is a workaround for alias analysis issue #32155
|
|
pub(super) struct SetLenOnDrop<'a> {
|
|
len: &'a mut usize,
|
|
local_len: usize,
|
|
}
|
|
|
|
impl<'a> SetLenOnDrop<'a> {
|
|
#[inline]
|
|
pub(super) fn new(len: &'a mut usize) -> Self {
|
|
SetLenOnDrop { local_len: *len, len }
|
|
}
|
|
|
|
#[inline]
|
|
pub(super) fn increment_len(&mut self, increment: usize) {
|
|
self.local_len += increment;
|
|
}
|
|
}
|
|
|
|
impl Drop for SetLenOnDrop<'_> {
|
|
#[inline]
|
|
fn drop(&mut self) {
|
|
*self.len = self.local_len;
|
|
}
|
|
}
|