Skip to content

Commit 467454b

Browse files
committed
Incorporate review comments.
1 parent f2f7ace commit 467454b

File tree

6 files changed

+18
-33
lines changed

6 files changed

+18
-33
lines changed

src/librustc/ty/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ pub struct GlobalCtxt<'tcx> {
489489
/// Cache for layouts computed from types.
490490
pub layout_cache: RefCell<FnvHashMap<Ty<'tcx>, &'tcx Layout>>,
491491

492-
//Used to prevent layout from recursing too deeply.
492+
/// Used to prevent layout from recursing too deeply.
493493
pub layout_depth: Cell<usize>,
494494

495495
/// Map from function to the `#[derive]` mode that it's defining. Only used

src/librustc/ty/layout.rs

+3-14
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ pub enum Integer {
328328
}
329329

330330
impl Integer {
331-
332331
pub fn size(&self) -> Size {
333332
match *self {
334333
I1 => Size::from_bits(1),
@@ -350,7 +349,7 @@ impl Integer {
350349
}
351350

352351
pub fn to_ty<'a, 'tcx>(&self, tcx: &ty::TyCtxt<'a, 'tcx, 'tcx>,
353-
signed: bool) -> Ty<'tcx> {
352+
signed: bool) -> Ty<'tcx> {
354353
match (*self, signed) {
355354
(I1, false) => tcx.types.u8,
356355
(I8, false) => tcx.types.u8,
@@ -387,7 +386,7 @@ impl Integer {
387386
}
388387
}
389388

390-
//Find the smallest integer with the given alignment.
389+
/// Find the smallest integer with the given alignment.
391390
pub fn for_abi_align(dl: &TargetDataLayout, align: Align) -> Option<Integer> {
392391
let wanted = align.abi();
393392
for &candidate in &[I8, I16, I32, I64] {
@@ -1030,7 +1029,7 @@ impl<'a, 'gcx, 'tcx> Layout {
10301029
});
10311030
}
10321031

1033-
if def.variants.len() == 1 {
1032+
if !def.is_enum() || def.variants.len() == 1 && hint == attr::ReprAny {
10341033
// Struct, or union, or univariant enum equivalent to a struct.
10351034
// (Typechecking will reject discriminant-sizing attrs.)
10361035

@@ -1061,16 +1060,6 @@ impl<'a, 'gcx, 'tcx> Layout {
10611060
}
10621061
}
10631062

1064-
if def.variants.len() == 1 && hint == attr::ReprAny{
1065-
// Equivalent to a struct/tuple/newtype.
1066-
let fields = def.variants[0].fields.iter().map(|field| {
1067-
field.ty(tcx, substs).layout(infcx)
1068-
});
1069-
let mut st = Struct::new(dl, false);
1070-
st.extend(dl, fields, ty)?;
1071-
return success(Univariant { variant: st, non_zero: false });
1072-
}
1073-
10741063
// Cache the substituted and normalized variant field types.
10751064
let variants = def.variants.iter().map(|v| {
10761065
v.fields.iter().map(|field| field.ty(tcx, substs)).collect::<Vec<_>>()

src/librustc_trans/adt.rs

+10-14
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ impl MaybeSizedValue {
9494
}
9595
}
9696

97-
//Given an enum, struct, closure, or tuple, extracts fields.
98-
//treats closures as a struct with one variant.
99-
//`empty_if_no_variants` is a switch to deal with empty enums.
100-
//if true, `variant_index` is disregarded and an empty Vec returned in this case.
97+
/// Given an enum, struct, closure, or tuple, extracts fields.
98+
/// Treats closures as a struct with one variant.
99+
/// `empty_if_no_variants` is a switch to deal with empty enums.
100+
/// If true, `variant_index` is disregarded and an empty Vec returned in this case.
101101
fn compute_fields<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>, t: Ty<'tcx>,
102102
variant_index: usize,
103103
empty_if_no_variants: bool) -> Vec<Ty<'tcx>> {
@@ -156,11 +156,9 @@ pub fn finish_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
156156
layout::CEnum { .. } | layout::General { .. }
157157
| layout::UntaggedUnion { .. } | layout::RawNullablePointer { .. } => { }
158158
layout::Univariant { ..}
159-
| layout::StructWrappedNullablePointer { .. }
160-
| layout::Vector { .. } => {
159+
| layout::StructWrappedNullablePointer { .. } => {
161160
let (nonnull_variant, packed) = match *l {
162161
layout::Univariant { ref variant, .. } => (0, variant.packed),
163-
layout::Vector { .. } => (0, true),
164162
layout::StructWrappedNullablePointer { nndiscr, ref nonnull, .. } =>
165163
(nndiscr, nonnull.packed),
166164
_ => unreachable!()
@@ -206,8 +204,8 @@ fn generic_type_of<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
206204
}
207205
}
208206
layout::Univariant { ref variant, .. } => {
209-
//note that this case also handles empty enums.
210-
//Thus the true as the final parameter here.
207+
// Note that this case also handles empty enums.
208+
// Thus the true as the final parameter here.
211209
let fields = compute_fields(cx, t, 0, true);
212210
match name {
213211
None => {
@@ -425,7 +423,7 @@ pub fn trans_case<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, t: Ty<'tcx>, value: Disr)
425423
C_integral(Type::from_integer(bcx.ccx(), discr), value.0, true)
426424
}
427425
layout::RawNullablePointer { .. } |
428-
layout::StructWrappedNullablePointer { .. } => {
426+
layout::StructWrappedNullablePointer { .. } => {
429427
assert!(value == Disr(0) || value == Disr(1));
430428
C_bool(bcx.ccx(), value != Disr(0))
431429
}
@@ -774,10 +772,8 @@ fn build_const_struct<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>,
774772
// offset of current value
775773
let mut offset = 0;
776774
let mut cfields = Vec::new();
777-
for (&val, target_offset) in
778-
vals.iter().zip(
779-
offset_after_field.iter().map(|i| i.bytes())
780-
) {
775+
let target_offsets = offset_after_field.iter().map(|i| i.bytes());
776+
for (&val, target_offset) in vals.iter().zip(target_offsets) {
781777
assert!(!is_undef(val));
782778
cfields.push(val);
783779
offset += machine::llsize_of_alloc(ccx, val_ty(val));

src/librustc_trans/debuginfo/metadata.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1293,7 +1293,7 @@ impl<'tcx> EnumMemberDescriptionFactory<'tcx> {
12931293
let adt = &self.enum_type.ty_adt_def().unwrap();
12941294
let substs = match self.enum_type.sty {
12951295
ty::TyAdt(def, ref s) if def.adt_kind() == AdtKind::Enum => s,
1296-
ref t @ _ => bug!("{} is not an enum", t)
1296+
_ => bug!("{} is not an enum", self.enum_type)
12971297
};
12981298
match *self.type_rep {
12991299
layout::General { ref variants, .. } => {

src/librustc_trans/mir/constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ impl<'a, 'tcx> MirConstContext<'a, 'tcx> {
733733

734734
let base = match tr_lvalue.base {
735735
Base::Value(llval) => {
736-
//Fixme: may be wrong for &*(&simd_vec as &fmt::Debug)
736+
// FIXME: may be wrong for &*(&simd_vec as &fmt::Debug)
737737
let align = if type_is_sized(self.ccx.tcx(), ty) {
738738
type_of::align_of(self.ccx, ty)
739739
} else {

src/librustc_trans/type_.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ impl Type {
301301
}
302302
}
303303

304-
pub fn from_integer(cx: &CrateContext, i: layout::Integer)->Type {
304+
pub fn from_integer(cx: &CrateContext, i: layout::Integer) -> Type {
305305
use rustc::ty::layout::Integer::*;
306306
match i {
307307
I1 => Type::i1(cx),
@@ -312,7 +312,7 @@ impl Type {
312312
}
313313
}
314314

315-
pub fn from_primitive(ccx: &CrateContext, p: layout::Primitive)->Type {
315+
pub fn from_primitive(ccx: &CrateContext, p: layout::Primitive) -> Type {
316316
match p {
317317
layout::Int(i) => Type::from_integer(ccx, i),
318318
layout::F32 => Type::f32(ccx),

0 commit comments

Comments
 (0)