Skip to content

Commit 6c2d704

Browse files
committed
Remove env_alloca hack
This is no longer necessary for LLVM >= 6.
1 parent 706e67b commit 6c2d704

File tree

3 files changed

+2
-30
lines changed

3 files changed

+2
-30
lines changed

src/librustc_codegen_llvm/context.rs

-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
use attributes;
1212
use llvm;
13-
use llvm_util;
1413
use rustc::dep_graph::DepGraphSafe;
1514
use rustc::hir;
1615
use debuginfo;
@@ -447,10 +446,6 @@ impl MiscMethods<'tcx> for CodegenCx<'ll, 'tcx> {
447446
attributes::apply_target_cpu_attr(self, llfn)
448447
}
449448

450-
fn closure_env_needs_indirect_debuginfo(&self) -> bool {
451-
llvm_util::get_major_version() < 6
452-
}
453-
454449
fn create_used_variable(&self) {
455450
let name = const_cstr!("llvm.used");
456451
let section = const_cstr!("llvm.metadata");

src/librustc_codegen_ssa/mir/mod.rs

+2-24
Original file line numberDiff line numberDiff line change
@@ -610,35 +610,13 @@ fn arg_local_refs<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>>(
610610
};
611611
let upvar_tys = upvar_substs.upvar_tys(def_id, tcx);
612612

613-
// Store the pointer to closure data in an alloca for debuginfo
614-
// because that's what the llvm.dbg.declare intrinsic expects.
615-
616-
// FIXME(eddyb) this shouldn't be necessary but SROA seems to
617-
// mishandle DW_OP_plus not preceded by DW_OP_deref, i.e., it
618-
// doesn't actually strip the offset when splitting the closure
619-
// environment into its components so it ends up out of bounds.
620-
// (cuviper) It seems to be fine without the alloca on LLVM 6 and later.
621-
let env_alloca = !env_ref && bx.closure_env_needs_indirect_debuginfo();
622-
let env_ptr = if env_alloca {
623-
let scratch = PlaceRef::alloca(bx,
624-
bx.layout_of(tcx.mk_mut_ptr(arg.layout.ty)),
625-
"__debuginfo_env_ptr");
626-
bx.store(place.llval, scratch.llval, scratch.align);
627-
scratch.llval
628-
} else {
629-
place.llval
630-
};
631-
632613
for (i, (decl, ty)) in mir.upvar_decls.iter().zip(upvar_tys).enumerate() {
633614
let byte_offset_of_var_in_env = closure_layout.fields.offset(i).bytes();
634615

635616
let ops = bx.debuginfo_upvar_decls_ops_sequence(byte_offset_of_var_in_env);
636617

637618
// The environment and the capture can each be indirect.
638-
639-
// FIXME(eddyb) see above why we sometimes have to keep
640-
// a pointer in an alloca for debuginfo atm.
641-
let mut ops = if env_ref || env_alloca { &ops[..] } else { &ops[1..] };
619+
let mut ops = if env_ref { &ops[..] } else { &ops[1..] };
642620

643621
let ty = if let (true, &ty::Ref(_, ty, _)) = (decl.by_ref, &ty.sty) {
644622
ty
@@ -648,7 +626,7 @@ fn arg_local_refs<'a, 'tcx: 'a, Bx: BuilderMethods<'a, 'tcx>>(
648626
};
649627

650628
let variable_access = VariableAccess::IndirectVariable {
651-
alloca: env_ptr,
629+
alloca: place.llval,
652630
address_operations: &ops
653631
};
654632
bx.declare_local(

src/librustc_codegen_ssa/traits/misc.rs

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ pub trait MiscMethods<'tcx>: BackendTypes {
3232
fn stats(&self) -> &RefCell<Stats>;
3333
fn consume_stats(self) -> RefCell<Stats>;
3434
fn codegen_unit(&self) -> &Arc<CodegenUnit<'tcx>>;
35-
fn closure_env_needs_indirect_debuginfo(&self) -> bool;
3635
fn used_statics(&self) -> &RefCell<Vec<Self::Value>>;
3736
fn set_frame_pointer_elimination(&self, llfn: Self::Value);
3837
fn apply_target_cpu_attr(&self, llfn: Self::Value);

0 commit comments

Comments
 (0)