-
Notifications
You must be signed in to change notification settings - Fork 13k
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
mir opt + codegen: handle subtyping #112307
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c594330
add tests for unsound subtype handling
lcnr be33ad8
fix types in shim building
lcnr 46af169
codegen: fix `OperandRef` subtype handling
lcnr 0589cd0
mir opt: fix subtype handling
lcnr 46973c9
add FIXME's for a later refactoring
lcnr File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
//! Locals are in a private module as updating `LocalRef::Operand` has to | ||
//! be careful wrt to subtyping. To deal with this we only allow updates by using | ||
//! `FunctionCx::overwrite_local` which handles it automatically. | ||
use crate::mir::{FunctionCx, LocalRef}; | ||
use crate::traits::BuilderMethods; | ||
use rustc_index::IndexVec; | ||
use rustc_middle::mir; | ||
use rustc_middle::ty::print::with_no_trimmed_paths; | ||
use std::ops::{Index, IndexMut}; | ||
|
||
pub(super) struct Locals<'tcx, V> { | ||
values: IndexVec<mir::Local, LocalRef<'tcx, V>>, | ||
} | ||
|
||
impl<'tcx, V> Index<mir::Local> for Locals<'tcx, V> { | ||
type Output = LocalRef<'tcx, V>; | ||
#[inline] | ||
fn index(&self, index: mir::Local) -> &LocalRef<'tcx, V> { | ||
&self.values[index] | ||
} | ||
} | ||
|
||
/// To mutate locals, use `FunctionCx::overwrite_local` instead. | ||
impl<'tcx, V, Idx: ?Sized> !IndexMut<Idx> for Locals<'tcx, V> {} | ||
|
||
impl<'tcx, V> Locals<'tcx, V> { | ||
pub(super) fn empty() -> Locals<'tcx, V> { | ||
Locals { values: IndexVec::default() } | ||
} | ||
|
||
pub(super) fn indices(&self) -> impl DoubleEndedIterator<Item = mir::Local> + Clone + 'tcx { | ||
self.values.indices() | ||
} | ||
} | ||
|
||
impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> { | ||
pub(super) fn initialize_locals(&mut self, values: Vec<LocalRef<'tcx, Bx::Value>>) { | ||
assert!(self.locals.values.is_empty()); | ||
|
||
for (local, value) in values.into_iter().enumerate() { | ||
match value { | ||
LocalRef::Place(_) | LocalRef::UnsizedPlace(_) | LocalRef::PendingOperand => (), | ||
LocalRef::Operand(op) => { | ||
let local = mir::Local::from_usize(local); | ||
let expected_ty = self.monomorphize(self.mir.local_decls[local].ty); | ||
assert_eq!(expected_ty, op.layout.ty, "unexpected initial operand type"); | ||
} | ||
} | ||
|
||
self.locals.values.push(value); | ||
} | ||
} | ||
|
||
pub(super) fn overwrite_local( | ||
&mut self, | ||
local: mir::Local, | ||
mut value: LocalRef<'tcx, Bx::Value>, | ||
) { | ||
match value { | ||
LocalRef::Place(_) | LocalRef::UnsizedPlace(_) | LocalRef::PendingOperand => (), | ||
LocalRef::Operand(ref mut op) => { | ||
let local_ty = self.monomorphize(self.mir.local_decls[local].ty); | ||
if local_ty != op.layout.ty { | ||
// FIXME(#112651): This can be changed to an ICE afterwards. | ||
debug!("updating type of operand due to subtyping"); | ||
with_no_trimmed_paths!(debug!(?op.layout.ty)); | ||
with_no_trimmed_paths!(debug!(?local_ty)); | ||
op.layout.ty = local_ty; | ||
} | ||
} | ||
}; | ||
|
||
self.locals.values[local] = value; | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
tests/mir-opt/fn_ptr_shim.core.ops-function-Fn-call.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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW in the MIR interpreter we avoid the risk of this by not having the type of the local in our
locals
map to begin with: we store aIndexVec<mir::Local, LocalState<'tcx, Prov>>
, whereLocalState
is basically justinterpret::Operand
. When we need the type we always go throughbody.local_decls
.So that might also be something codegen can do; storing the type in
self.locals
is redundant.