Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include adjustments to allow unsizing coercions for raw slice pointers in receiver position #82190

Closed
wants to merge 2 commits into from

Conversation

b-naber
Copy link
Contributor

@b-naber b-naber commented Feb 16, 2021

Tries to fix #74679

This change would allow calling methods defined for raw slice pointers directly on raw array pointers. The current implementation might have some problems, the idea is to insert adjustments for raw pointers in receiver position if the receiver type is a raw array pointer and a method candidate has a raw slice pointer as its self_ty. This could possibly be problematic, since we implicitly deref a raw pointer. However, currently the only methods that allow this type of unsizing coercion are unsafe, but we might need to only allow these types of coercions for unsafe methods in general.

cc @RalfJung

@rust-highfive
Copy link
Contributor

r? @oli-obk

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Feb 16, 2021
@oli-obk oli-obk added the T-lang Relevant to the language team, which will review and decide on the PR/issue. label Feb 18, 2021
@oli-obk
Copy link
Contributor

oli-obk commented Feb 18, 2021

I am surprised we need this much work inside the compiler. I thought unsizing had impls in libcore. I can try to review this, but I have little knowledge about the coercion part of typeck. It just feels suprising to me to have special cases added on top of the existing infrastructure.

cc @rust-lang/lang This adds a new unsizing coercion for raw pointers

@b-naber
Copy link
Contributor Author

b-naber commented Feb 19, 2021

The title was probably poorly chosen. What we do here is not actually the unsizing itself, but rather we just adjust the self_ty in a way that allows method candidate search to find the right method. The correct method candidate is generated for a self_ty of type [_], because the compiler previously didn't allow deref adjustments for raw pointers, we had to include this (in autoderef_self_ty). But then we also have to auto autoref this deref'd self_ty again, but the compiler previously only did this for references not raw pointers. We limit these raw pointer to adjustments to the case when we're dealing with raw array pointers and the generated candidate is a slice.

@oli-obk
Copy link
Contributor

oli-obk commented Feb 19, 2021

Ah, that does make more sense, thanks!

The artificial limitation to array->slice unsizings could go away entirely if we wanted to, right? There's no inherent limitation since any unsizing operation doesn't actually look at the pointer to the concrete type.

I can review the implementation, but this needs sign-off from the lang team

@b-naber
Copy link
Contributor Author

b-naber commented Feb 19, 2021

The artificial limitation to array->slice unsizings could go away entirely if we wanted to, right? There's no inherent limitation since any unsizing operation doesn't actually look at the pointer to the concrete type.

Ok cool, I didn't know that the unsizing operation doesn't look at the pointer. This would alleviate the safety concerns with the implementation and we could implement this in general and not just for array->slice unsizings.

@b-naber
Copy link
Contributor Author

b-naber commented Feb 19, 2021

@oli-obk I'm not sure I understand what kind of unsize operations you expect this to work for. Currently in method resolution when the compiler generates autoderef steps it uses an unsafe flag only if the final_ty is an Array (this is done here in method_autoderef_steps). But the compiler e.g. doesn't use adjustments that take into account CoerceUnsized implementations. Can you explain in what other situations you would expect this to work besides array -> slice unsizings?

@b-naber b-naber changed the title Allow unsizing coercions for raw slice pointers in receiver position Include adjustments to allow unsizing coercions for raw slice pointers in receiver position Feb 19, 2021
@oli-obk
Copy link
Contributor

oli-obk commented Feb 19, 2021

I think I am confusing this situation with a very similar one. The example I was thinking of is

#![feature(raw_ref_op)]

trait Foo {
}

impl Foo for i32 {
}

trait Bar: Sized {
    fn bar(self) {}
}

impl Bar for *const dyn Foo {
    fn bar(self) {}
}

fn main() {
    let x = 42_i32;
    let y = &raw const x;
    y.bar();
    let z: *const dyn Foo = y;
    z.bar();
}

but I do see that it is not exactly the same as the situation for slices here, since that is for inherent impls on raw pointers to slices instead of trait impls.

@RalfJung
Copy link
Member

any unsizing operation doesn't actually look at the pointer to the concrete type

That's true right now but might stop being true with user-defined DST.

@crlf0710 crlf0710 added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. A-coercions Area: implicit and explicit `expr as Type` coercions and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Mar 12, 2021
@crlf0710
Copy link
Member

Triage: Added needs-fcp label since this needs sign-off from the lang team.

@crlf0710 crlf0710 added the needs-fcp This change is insta-stable, so needs a completed FCP to proceed. label Mar 12, 2021
@bors
Copy link
Collaborator

bors commented Mar 13, 2021

☔ The latest upstream changes (presumably #82436) made this pull request unmergeable. Please resolve the merge conflicts.

@nikomatsakis
Copy link
Contributor

r? @nikomatsakis

@Mark-Simulacrum
Copy link
Member

Waiting on Niko before lang team discussion.

@crlf0710 crlf0710 added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Apr 9, 2021
@nikomatsakis
Copy link
Contributor

Hi @b-naber, @RalfJung et al.--

Sorry for being slow on this PR. I have some questions! If I understand correctly, this PR is modifying method dispatch to add a kind of special case. I guess the first question is, why doesn't the unsizing impl apply? I guess because it would have to deref a raw pointer?

@crlf0710 crlf0710 added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels May 15, 2021
@crlf0710
Copy link
Member

@b-naber Ping from triage, could you answer the question above here, or create a topic on zulip to discuss this further? thanks!

@crlf0710 crlf0710 added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jun 5, 2021
@crlf0710
Copy link
Member

crlf0710 commented Jun 5, 2021

@b-naber Ping from triage, any updates on this?

@crlf0710
Copy link
Member

@b-naber Ping from triage, any updates on this?

@crlf0710 crlf0710 added S-inactive Status: Inactive and waiting on the author. This is often applied to closed PRs. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jul 17, 2021
@crlf0710
Copy link
Member

@b-naber Triage: I'm gonna close this due to inactivity. Feel free to reopen or create a new pr when you've got time to work on this again. Thanks!

@crlf0710 crlf0710 closed this Jul 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-coercions Area: implicit and explicit `expr as Type` coercions needs-fcp This change is insta-stable, so needs a completed FCP to proceed. S-inactive Status: Inactive and waiting on the author. This is often applied to closed PRs. T-lang Relevant to the language team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Missing unsizing coercions for raw slice pointers
8 participants