Skip to content

Emit lifetime end markers for function arguments #18007

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

Merged
merged 1 commit into from
Oct 14, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/librustc/middle/trans/callee.rs
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ pub fn trans_call_inner<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
llself.is_some(),
abi);

fcx.pop_custom_cleanup_scope(arg_cleanup_scope);
fcx.scopes.borrow_mut().last_mut().unwrap().drop_non_lifetime_clean();

// Invoke the actual rust fn and update bcx/llresult.
let (llret, b) = base::invoke(bcx,
Expand Down Expand Up @@ -829,12 +829,15 @@ pub fn trans_call_inner<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
cleanup::CustomScope(arg_cleanup_scope),
false,
abi);
fcx.pop_custom_cleanup_scope(arg_cleanup_scope);
fcx.scopes.borrow_mut().last_mut().unwrap().drop_non_lifetime_clean();

bcx = foreign::trans_native_call(bcx, callee_ty,
llfn, opt_llretslot.unwrap(),
llargs.as_slice(), arg_tys);
}

fcx.pop_and_trans_custom_cleanup_scope(bcx, arg_cleanup_scope);

// If the caller doesn't care about the result of this fn call,
// drop the temporary slot we made.
match (dest, opt_llretslot) {
Expand Down
21 changes: 21 additions & 0 deletions src/librustc/middle/trans/cleanup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ pub struct CachedEarlyExit {
pub trait Cleanup {
fn must_unwind(&self) -> bool;
fn clean_on_unwind(&self) -> bool;
fn is_lifetime_end(&self) -> bool;
fn trans<'blk, 'tcx>(&self,
bcx: Block<'blk, 'tcx>,
debug_loc: Option<NodeInfo>)
Expand Down Expand Up @@ -875,6 +876,10 @@ impl<'blk, 'tcx> CleanupScope<'blk, 'tcx> {
LoopScopeKind(id, _) => format!("{}_loop_{}_", prefix, id),
}
}

pub fn drop_non_lifetime_clean(&mut self) {
self.cleanups.retain(|c| c.is_lifetime_end());
}
}

impl<'blk, 'tcx> CleanupScopeKind<'blk, 'tcx> {
Expand Down Expand Up @@ -943,6 +948,10 @@ impl Cleanup for DropValue {
self.must_unwind
}

fn is_lifetime_end(&self) -> bool {
false
}

fn trans<'blk, 'tcx>(&self,
bcx: Block<'blk, 'tcx>,
debug_loc: Option<NodeInfo>)
Expand Down Expand Up @@ -978,6 +987,10 @@ impl Cleanup for FreeValue {
true
}

fn is_lifetime_end(&self) -> bool {
false
}

fn trans<'blk, 'tcx>(&self,
bcx: Block<'blk, 'tcx>,
debug_loc: Option<NodeInfo>)
Expand Down Expand Up @@ -1008,6 +1021,10 @@ impl Cleanup for FreeSlice {
true
}

fn is_lifetime_end(&self) -> bool {
false
}

fn trans<'blk, 'tcx>(&self,
bcx: Block<'blk, 'tcx>,
debug_loc: Option<NodeInfo>)
Expand Down Expand Up @@ -1035,6 +1052,10 @@ impl Cleanup for LifetimeEnd {
true
}

fn is_lifetime_end(&self) -> bool {
true
}

fn trans<'blk, 'tcx>(&self,
bcx: Block<'blk, 'tcx>,
debug_loc: Option<NodeInfo>)
Expand Down