Skip to content

Commit de1026a

Browse files
committed
Auto merge of #96326 - JakobDegen:relax-operand, r=oli-obk
Relax restrictions for copy operands This was [discussed on Zulip](https://rust-lang.zulipchat.com/#narrow/stream/189540-t-compiler.2Fwg-mir-opt/topic/Removing.20requirement.20that.20.60Copy.60.20operands.20have.20.60Copy.60.20types/near/279102313). Details about motivation and such can be found there r? `@oli-obk`
2 parents 6b4563b + ae7d6fa commit de1026a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

compiler/rustc_const_eval/src/transform/validate.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,8 @@ impl<'a, 'tcx> Visitor<'tcx> for TypeChecker<'a, 'tcx> {
214214

215215
fn visit_operand(&mut self, operand: &Operand<'tcx>, location: Location) {
216216
// This check is somewhat expensive, so only run it when -Zvalidate-mir is passed.
217-
if self.tcx.sess.opts.debugging_opts.validate_mir {
217+
if self.tcx.sess.opts.debugging_opts.validate_mir && self.mir_phase < MirPhase::DropsLowered
218+
{
218219
// `Operand::Copy` is only supposed to be used with `Copy` types.
219220
if let Operand::Copy(place) = operand {
220221
let ty = place.ty(&self.body.local_decls, self.tcx).ty;

compiler/rustc_middle/src/mir/mod.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ pub enum MirPhase {
166166
/// * [`StatementKind::Retag`]
167167
///
168168
/// Furthermore, `Drop` now uses explicit drop flags visible in the MIR and reaching a `Drop`
169-
/// terminator means that the auto-generated drop glue will be invoked.
169+
/// terminator means that the auto-generated drop glue will be invoked. Also, `Copy` operands
170+
/// are allowed for non-`Copy` types.
170171
DropsLowered = 3,
171172
/// Beginning with this phase, the following variant is disallowed:
172173
/// * [`Rvalue::Aggregate`] for any `AggregateKind` except `Array`
@@ -2330,7 +2331,10 @@ pub struct SourceScopeLocalData {
23302331
/// validator.
23312332
#[derive(Clone, PartialEq, TyEncodable, TyDecodable, Hash, HashStable)]
23322333
pub enum Operand<'tcx> {
2333-
/// Creates a value by loading the given place. The type of the place must be `Copy`
2334+
/// Creates a value by loading the given place.
2335+
///
2336+
/// Before drop elaboration, the type of the place must be `Copy`. After drop elaboration there
2337+
/// is no such requirement.
23342338
Copy(Place<'tcx>),
23352339

23362340
/// Creates a value by performing loading the place, just like the `Copy` operand.

0 commit comments

Comments
 (0)