-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
add transform for uniform array move out #47926
Merged
bors
merged 1 commit into
rust-lang:master
from
mikhail-m1:subslice_pattern_array_drop2
Feb 17, 2018
Merged
Changes from all commits
Commits
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// This pass converts move out from array by Subslice and | ||
// ConstIndex{.., from_end: true} to ConstIndex move out(s) from begin | ||
// of array. It allows detect error by mir borrowck and elaborate | ||
// drops for array without additional work. | ||
// | ||
// Example: | ||
// | ||
// let a = [ box 1,box 2, box 3]; | ||
// if b { | ||
// let [_a.., _] = a; | ||
// } else { | ||
// let [.., _b] = a; | ||
// } | ||
// | ||
// mir statement _10 = move _2[:-1]; replaced by: | ||
// StorageLive(_12); | ||
// _12 = move _2[0 of 3]; | ||
// StorageLive(_13); | ||
// _13 = move _2[1 of 3]; | ||
// _10 = [move _12, move _13] | ||
// StorageDead(_12); | ||
// StorageDead(_13); | ||
// | ||
// and mir statement _11 = move _2[-1 of 1]; replaced by: | ||
// _11 = move _2[2 of 3]; | ||
// | ||
// FIXME: convert to Subslice back for performance reason | ||
// FIXME: integrate this transformation to the mir build | ||
|
||
use rustc::ty; | ||
use rustc::ty::TyCtxt; | ||
use rustc::mir::*; | ||
use rustc::mir::visit::Visitor; | ||
use transform::{MirPass, MirSource}; | ||
use util::patch::MirPatch; | ||
|
||
pub struct UniformArrayMoveOut; | ||
|
||
impl MirPass for UniformArrayMoveOut { | ||
fn run_pass<'a, 'tcx>(&self, | ||
tcx: TyCtxt<'a, 'tcx, 'tcx>, | ||
_src: MirSource, | ||
mir: &mut Mir<'tcx>) { | ||
let mut patch = MirPatch::new(mir); | ||
{ | ||
let mut visitor = UniformArrayMoveOutVisitor{mir, patch: &mut patch, tcx}; | ||
visitor.visit_mir(mir); | ||
} | ||
patch.apply(mir); | ||
} | ||
} | ||
|
||
struct UniformArrayMoveOutVisitor<'a, 'tcx: 'a> { | ||
mir: &'a Mir<'tcx>, | ||
patch: &'a mut MirPatch<'tcx>, | ||
tcx: TyCtxt<'a, 'tcx, 'tcx>, | ||
} | ||
|
||
impl<'a, 'tcx> Visitor<'tcx> for UniformArrayMoveOutVisitor<'a, 'tcx> { | ||
fn visit_statement(&mut self, | ||
block: BasicBlock, | ||
statement: &Statement<'tcx>, | ||
location: Location) { | ||
if let StatementKind::Assign(ref dst_place, | ||
Rvalue::Use(Operand::Move(ref src_place))) = statement.kind { | ||
if let Place::Projection(ref proj) = *src_place { | ||
if let ProjectionElem::ConstantIndex{offset: _, | ||
min_length: _, | ||
from_end: false} = proj.elem { | ||
// no need to transformation | ||
} else { | ||
let place_ty = proj.base.ty(self.mir, self.tcx).to_ty(self.tcx); | ||
if let ty::TyArray(item_ty, const_size) = place_ty.sty { | ||
if let Some(size) = const_size.val.to_const_int().and_then(|v| v.to_u64()) { | ||
assert!(size <= (u32::max_value() as u64), | ||
"unform array move out doesn't supported | ||
for array bigger then u32"); | ||
self.uniform(location, dst_place, proj, item_ty, size as u32); | ||
} | ||
} | ||
|
||
} | ||
} | ||
} | ||
return self.super_statement(block, statement, location); | ||
} | ||
} | ||
|
||
impl<'a, 'tcx> UniformArrayMoveOutVisitor<'a, 'tcx> { | ||
fn uniform(&mut self, | ||
location: Location, | ||
dst_place: &Place<'tcx>, | ||
proj: &PlaceProjection<'tcx>, | ||
item_ty: &'tcx ty::TyS<'tcx>, | ||
size: u32) { | ||
match proj.elem { | ||
// uniform _10 = move _2[:-1]; | ||
ProjectionElem::Subslice{from, to} => { | ||
self.patch.make_nop(location); | ||
let temps : Vec<_> = (from..(size-to)).map(|i| { | ||
let temp = self.patch.new_temp(item_ty, self.mir.source_info(location).span); | ||
self.patch.add_statement(location, StatementKind::StorageLive(temp)); | ||
self.patch.add_assign(location, | ||
Place::Local(temp), | ||
Rvalue::Use( | ||
Operand::Move( | ||
Place::Projection(box PlaceProjection{ | ||
base: proj.base.clone(), | ||
elem: ProjectionElem::ConstantIndex{ | ||
offset: i, | ||
min_length: size, | ||
from_end: false} | ||
})))); | ||
temp | ||
}).collect(); | ||
self.patch.add_assign(location, | ||
dst_place.clone(), | ||
Rvalue::Aggregate(box AggregateKind::Array(item_ty), | ||
temps.iter().map( | ||
|x| Operand::Move(Place::Local(*x))).collect() | ||
)); | ||
for temp in temps { | ||
self.patch.add_statement(location, StatementKind::StorageDead(temp)); | ||
} | ||
} | ||
// _11 = move _2[-1 of 1]; | ||
ProjectionElem::ConstantIndex{offset, min_length: _, from_end: true} => { | ||
self.patch.make_nop(location); | ||
self.patch.add_assign(location, | ||
dst_place.clone(), | ||
Rvalue::Use( | ||
Operand::Move( | ||
Place::Projection(box PlaceProjection{ | ||
base: proj.base.clone(), | ||
elem: ProjectionElem::ConstantIndex{ | ||
offset: size - offset, | ||
min_length: size, | ||
from_end: false }})))); | ||
} | ||
_ => {} | ||
} | ||
} | ||
} |
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
30 changes: 30 additions & 0 deletions
30
src/test/compile-fail/borrowck/borrowck-move-out-from-array.rs
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,30 @@ | ||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// revisions: ast mir | ||
//[mir]compile-flags: -Z borrowck=mir | ||
|
||
#![feature(box_syntax, slice_patterns, advanced_slice_patterns)] | ||
|
||
fn move_out_from_begin_and_end() { | ||
let a = [box 1, box 2]; | ||
let [_, _x] = a; | ||
let [.., _y] = a; //[ast]~ ERROR [E0382] | ||
//[mir]~^ ERROR [E0382] | ||
} | ||
|
||
fn move_out_by_const_index_and_subslice() { | ||
let a = [box 1, box 2]; | ||
let [_x, _] = a; | ||
let [_y..] = a; //[ast]~ ERROR [E0382] | ||
//[mir]~^ ERROR [E0382] | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this transformation should have a |
||
|
||
fn main() {} |
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,59 @@ | ||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
#![feature(box_syntax, slice_patterns, advanced_slice_patterns)] | ||
|
||
fn move_out_from_end() { | ||
let a = [box 1, box 2]; | ||
let [.., _y] = a; | ||
} | ||
|
||
fn move_out_by_subslice() { | ||
let a = [box 1, box 2]; | ||
let [_y..] = a; | ||
} | ||
|
||
fn main() { | ||
move_out_by_subslice(); | ||
move_out_from_end(); | ||
} | ||
|
||
// END RUST SOURCE | ||
|
||
// START rustc.move_out_from_end.UniformArrayMoveOut.before.mir | ||
// StorageLive(_6); | ||
// _6 = move _1[-1 of 1]; | ||
// _0 = (); | ||
// END rustc.move_out_from_end.UniformArrayMoveOut.before.mir | ||
|
||
// START rustc.move_out_from_end.UniformArrayMoveOut.after.mir | ||
// StorageLive(_6); | ||
// _6 = move _1[1 of 2]; | ||
// nop; | ||
// _0 = (); | ||
// END rustc.move_out_from_end.UniformArrayMoveOut.after.mir | ||
|
||
// START rustc.move_out_by_subslice.UniformArrayMoveOut.before.mir | ||
// StorageLive(_6); | ||
// _6 = move _1[0:]; | ||
// END rustc.move_out_by_subslice.UniformArrayMoveOut.before.mir | ||
|
||
// START rustc.move_out_by_subslice.UniformArrayMoveOut.after.mir | ||
// StorageLive(_6); | ||
// StorageLive(_7); | ||
// _7 = move _1[0 of 2]; | ||
// StorageLive(_8); | ||
// _8 = move _1[1 of 2]; | ||
// _6 = [move _7, move _8]; | ||
// StorageDead(_7); | ||
// StorageDead(_8); | ||
// nop; | ||
// _0 = (); | ||
// END rustc.move_out_by_subslice.UniformArrayMoveOut.after.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
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.
I think that, to document this sort of thing, it is best if we can start with a comment that includes some kind of "before/after" -- e.g., show the MIR that we are starting with, and the MIR that we are ending with. Then, in the actual code, we can leave comments that reference this running example.