-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
old solver: improve normalization of
Pointee::Metadata
- Loading branch information
Lukas Markeffsky
committed
Feb 5, 2024
1 parent
77fb540
commit 0c1f401
Showing
5 changed files
with
113 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// check-pass | ||
|
||
#![feature(ptr_metadata)] | ||
|
||
use std::ptr::{self, Pointee}; | ||
|
||
fn cast_same_meta<T: ?Sized, U: ?Sized>(ptr: *const T) -> *const U | ||
where | ||
T: Pointee<Metadata = <U as Pointee>::Metadata>, | ||
{ | ||
let (thin, meta) = ptr.to_raw_parts(); | ||
ptr::from_raw_parts(thin, meta) | ||
} | ||
|
||
struct Wrapper<T: ?Sized>(T); | ||
|
||
// normalize `Wrapper<T>::Metadata` -> `T::Metadata` | ||
fn wrapper_to_tail<T: ?Sized>(ptr: *const T) -> *const Wrapper<T> { | ||
cast_same_meta(ptr) | ||
} | ||
|
||
// normalize `Wrapper<T>::Metadata` -> `T::Metadata` -> `()` | ||
fn wrapper_to_unit<T>(ptr: *const ()) -> *const Wrapper<T> { | ||
cast_same_meta(ptr) | ||
} | ||
|
||
trait Project { | ||
type Assoc: ?Sized; | ||
} | ||
|
||
struct WrapperProject<T: ?Sized + Project>(T::Assoc); | ||
|
||
// normalize `WrapperProject<T>::Metadata` -> `T::Assoc::Metadata` | ||
fn wrapper_project_tail<T: ?Sized + Project>(ptr: *const T::Assoc) -> *const WrapperProject<T> { | ||
cast_same_meta(ptr) | ||
} | ||
|
||
// normalize `WrapperProject<T>::Metadata` -> `T::Assoc::Metadata` -> `()` | ||
fn wrapper_project_unit<T: ?Sized + Project>(ptr: *const ()) -> *const WrapperProject<T> | ||
where | ||
T::Assoc: Sized, | ||
{ | ||
cast_same_meta(ptr) | ||
} | ||
|
||
// normalize `<[T] as Pointee>::Metadata` -> `usize`, even if `[T]: Sized` | ||
fn sized_slice<T>(ptr: *const [T]) -> *const str | ||
where | ||
[T]: Sized, | ||
{ | ||
cast_same_meta(ptr) | ||
} | ||
|
||
fn main() {} |