@@ -99,6 +99,8 @@ impl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V> {
99
99
let offset = self . layout . fields . offset ( ix) ;
100
100
let effective_field_align = self . align . restrict_for_offset ( offset) ;
101
101
102
+ // `simple` is called when we don't need to adjust the offset to
103
+ // the dynamic alignment of the field.
102
104
let mut simple = || {
103
105
let llval = match self . layout . abi {
104
106
_ if offset. bytes ( ) == 0 => {
@@ -141,28 +143,21 @@ impl<'a, 'tcx, V: CodegenObject> PlaceRef<'tcx, V> {
141
143
} ;
142
144
143
145
// Simple cases, which don't need DST adjustment:
144
- // * no metadata available - just log the case
145
- // * known alignment - sized types, `[T]`, `str` or a foreign type
146
+ // * known alignment - sized types, `[T]`, `str`
147
+ // * offset 0 -- rounding up to alignment cannot change the offset
146
148
// Note that looking at `field.align` is incorrect since that is not necessarily equal
147
149
// to the dynamic alignment of the type.
148
150
match field. ty . kind ( ) {
149
- _ if self . llextra . is_none ( ) => {
150
- debug ! (
151
- "unsized field `{}`, of `{:?}` has no metadata for adjustment" ,
152
- ix, self . llval
153
- ) ;
154
- return simple ( ) ;
155
- }
156
151
_ if field. is_sized ( ) => return simple ( ) ,
157
- ty:: Slice ( ..) | ty:: Str | ty:: Foreign ( ..) => return simple ( ) ,
152
+ ty:: Slice ( ..) | ty:: Str => return simple ( ) ,
153
+ _ if offset. bytes ( ) == 0 => return simple ( ) ,
158
154
_ => { }
159
155
}
160
156
161
157
// We need to get the pointer manually now.
162
158
// We do this by casting to a `*i8`, then offsetting it by the appropriate amount.
163
159
// We do this instead of, say, simply adjusting the pointer from the result of a GEP
164
- // because the field may have an arbitrary alignment in the LLVM representation
165
- // anyway.
160
+ // because the field may have an arbitrary alignment in the LLVM representation.
166
161
//
167
162
// To demonstrate:
168
163
//
0 commit comments