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

rustc_mir: promote references of statics from other statics. #46524

Merged
merged 1 commit into from
Dec 7, 2017

Conversation

eddyb
Copy link
Member

@eddyb eddyb commented Dec 5, 2017

Fixes #46522 by also allowing STATIC_REF in MIR const-qualification, not just AST rvalue promotion.

@rust-highfive
Copy link
Contributor

r? @nikomatsakis

(rust_highfive has picked a reviewer for you, use r? to override)

@@ -633,7 +633,14 @@ impl<'a, 'tcx> Visitor<'tcx> for Qualifier<'a, 'tcx, 'tcx> {

// We might have a candidate for promotion.
let candidate = Candidate::Ref(location);
if !self.qualif.intersects(Qualif::NEVER_PROMOTE) {
let mut unpromotable = self.qualif & Qualif::NEVER_PROMOTE;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: I would prefer that this codepath be shared with the shuffle index code into a fn can_promote

@arielb1
Copy link
Contributor

arielb1 commented Dec 5, 2017

r=me with nit fixed

if !self.qualif.intersects(Qualif::NEVER_PROMOTE) {
let mut unpromotable = self.qualif & Qualif::NEVER_PROMOTE;

// References to statics are allowed, but only in other statics.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why only in other statics? Couldn't references to statics always be promoted

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's just what we already allow. Must avoid letting in more until miri is in use.

@eddyb
Copy link
Member Author

eddyb commented Dec 6, 2017

@arielb1 The Travis failure suggests MIR borrowck doesn't handle this yet. Does it need your PR?

@kennytm kennytm added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Dec 6, 2017
@arielb1
Copy link
Contributor

arielb1 commented Dec 6, 2017

@eddyb

Maybe. I don't remember the state of MIR borrowck before this PR. I suppose we can wait - this doesn't block me.

@kennytm kennytm added S-blocked Status: Blocked on something else such as an RFC or other implementation work. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Dec 6, 2017
@kennytm
Copy link
Member

kennytm commented Dec 6, 2017

Marking as blocked by #46268.

@eddyb eddyb removed the S-blocked Status: Blocked on something else such as an RFC or other implementation work. label Dec 6, 2017
@eddyb
Copy link
Member Author

eddyb commented Dec 6, 2017

@bors r=arielb1

@bors
Copy link
Collaborator

bors commented Dec 6, 2017

📌 Commit 292c6ac has been approved by arielb1

@bors
Copy link
Collaborator

bors commented Dec 6, 2017

⌛ Testing commit 292c6ac with merge 061bdb5...

bors added a commit that referenced this pull request Dec 6, 2017
rustc_mir: promote references of statics from other statics.

Fixes #46522 by also allowing `STATIC_REF` in MIR const-qualification, not just AST rvalue promotion.
@bors
Copy link
Collaborator

bors commented Dec 7, 2017

☀️ Test successful - status-appveyor, status-travis
Approved by: arielb1
Pushing 061bdb5 to master...

@bors bors merged commit 292c6ac into rust-lang:master Dec 7, 2017
@eddyb eddyb deleted the static-static branch December 7, 2017 09:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

7 participants