Skip to content

Commit b76ee83

Browse files
committed
Auto merge of #55859 - pietroalbini:rollup, r=kennytm
Rollup of 17 pull requests Successful merges: - #55630 (resolve: Filter away macro prelude in modules with `#[no_implicit_prelude]` on 2018 edition) - #55687 (Take supertraits into account when calculating associated types) - #55745 (Convert `outlives_components`' return value to a `SmallVec` outparam.) - #55764 (Fix Rc/Arc allocation layout) - #55792 (Prevent ICE in const-prop array oob check) - #55799 (Removed unneeded instance of `// revisions` from a lint test) - #55800 (Fix ICE in `return_type_impl_trait`) - #55801 (NLL: Update box insensitivity test) - #55802 (Don't inline virtual calls (take 2)) - #55816 (Use `SmallVec` to avoid allocations in `from_decimal_string`.) - #55819 (Typecheck patterns of all match arms first, so we get types for bindings) - #55822 (ICE with #![feature(nll)] and elided lifetimes) - #55828 (Add missing `rustc_promotable` attribute to unsigned `min_value` and `max_value`) - #55839 (Fix docstring spelling mistakes) - #55844 (Fix documentation typos.) - #55845 (Set BINARYEN_TRAP_MODE=clamp) - #55856 (rustdoc: refactor: move all static-file include!s into a single module)
2 parents 9b8f902 + 7031e4e commit b76ee83

File tree

85 files changed

+1117
-666
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1117
-666
lines changed

src/Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -2096,6 +2096,7 @@ version = "0.0.0"
20962096
dependencies = [
20972097
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
20982098
"rustc_cratesio_shim 0.0.0",
2099+
"smallvec 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)",
20992100
]
21002101

21012102
[[package]]

src/liballoc/rc.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -672,14 +672,16 @@ impl<T: ?Sized> Rc<T> {
672672
// Previously, layout was calculated on the expression
673673
// `&*(ptr as *const RcBox<T>)`, but this created a misaligned
674674
// reference (see #54908).
675-
let (layout, _) = Layout::new::<RcBox<()>>()
676-
.extend(Layout::for_value(&*ptr)).unwrap();
675+
let layout = Layout::new::<RcBox<()>>()
676+
.extend(Layout::for_value(&*ptr)).unwrap().0
677+
.pad_to_align().unwrap();
677678

678679
let mem = Global.alloc(layout)
679680
.unwrap_or_else(|_| handle_alloc_error(layout));
680681

681682
// Initialize the RcBox
682683
let inner = set_data_ptr(ptr as *mut T, mem.as_ptr() as *mut u8) as *mut RcBox<T>;
684+
debug_assert_eq!(Layout::for_value(&*inner), layout);
683685

684686
ptr::write(&mut (*inner).strong, Cell::new(1));
685687
ptr::write(&mut (*inner).weak, Cell::new(1));

src/liballoc/sync.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -575,14 +575,16 @@ impl<T: ?Sized> Arc<T> {
575575
// Previously, layout was calculated on the expression
576576
// `&*(ptr as *const ArcInner<T>)`, but this created a misaligned
577577
// reference (see #54908).
578-
let (layout, _) = Layout::new::<ArcInner<()>>()
579-
.extend(Layout::for_value(&*ptr)).unwrap();
578+
let layout = Layout::new::<ArcInner<()>>()
579+
.extend(Layout::for_value(&*ptr)).unwrap().0
580+
.pad_to_align().unwrap();
580581

581582
let mem = Global.alloc(layout)
582583
.unwrap_or_else(|_| handle_alloc_error(layout));
583584

584585
// Initialize the ArcInner
585586
let inner = set_data_ptr(ptr as *mut T, mem.as_ptr() as *mut u8) as *mut ArcInner<T>;
587+
debug_assert_eq!(Layout::for_value(&*inner), layout);
586588

587589
ptr::write(&mut (*inner).strong, atomic::AtomicUsize::new(1));
588590
ptr::write(&mut (*inner).weak, atomic::AtomicUsize::new(1));

src/libcore/alloc.rs

+19-2
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,23 @@ impl Layout {
218218
len_rounded_up.wrapping_sub(len)
219219
}
220220

221+
/// Creates a layout by rounding the size of this layout up to a multiple
222+
/// of the layout's alignment.
223+
///
224+
/// Returns `Err` if the padded size would overflow.
225+
///
226+
/// This is equivalent to adding the result of `padding_needed_for`
227+
/// to the layout's current size.
228+
#[unstable(feature = "alloc_layout_extra", issue = "55724")]
229+
#[inline]
230+
pub fn pad_to_align(&self) -> Result<Layout, LayoutErr> {
231+
let pad = self.padding_needed_for(self.align());
232+
let new_size = self.size().checked_add(pad)
233+
.ok_or(LayoutErr { private: () })?;
234+
235+
Layout::from_size_align(new_size, self.align())
236+
}
237+
221238
/// Creates a layout describing the record for `n` instances of
222239
/// `self`, with a suitable amount of padding between each to
223240
/// ensure that each instance is given its requested size and
@@ -506,7 +523,7 @@ pub unsafe trait GlobalAlloc {
506523
ptr
507524
}
508525

509-
/// Shink or grow a block of memory to the given `new_size`.
526+
/// Shrink or grow a block of memory to the given `new_size`.
510527
/// The block is described by the given `ptr` pointer and `layout`.
511528
///
512529
/// If this returns a non-null pointer, then ownership of the memory block
@@ -757,7 +774,7 @@ pub unsafe trait Alloc {
757774
// realloc. alloc_excess, realloc_excess
758775

759776
/// Returns a pointer suitable for holding data described by
760-
/// a new layout with `layout`’s alginment and a size given
777+
/// a new layout with `layout`’s alignment and a size given
761778
/// by `new_size`. To
762779
/// accomplish this, this may extend or shrink the allocation
763780
/// referenced by `ptr` to fit the new layout.

src/libcore/future/future.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use ops;
1717
use pin::Pin;
1818
use task::{Poll, LocalWaker};
1919

20-
/// A future represents an asychronous computation.
20+
/// A future represents an asynchronous computation.
2121
///
2222
/// A future is a value that may not have finished computing yet. This kind of
2323
/// "asynchronous value" makes it possible for a thread to continue doing useful

src/libcore/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ mod nonzero;
228228
mod tuple;
229229
mod unit;
230230

231-
// Pull in the the `coresimd` crate directly into libcore. This is where all the
231+
// Pull in the `coresimd` crate directly into libcore. This is where all the
232232
// architecture-specific (and vendor-specific) intrinsics are defined. AKA
233233
// things like SIMD and such. Note that the actual source for all this lies in a
234234
// different repository, rust-lang-nursery/stdsimd. That's why the setup here is

src/libcore/macros.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -350,9 +350,8 @@ macro_rules! try {
350350
/// assert_eq!(v, b"s = \"abc 123\"");
351351
/// ```
352352
///
353-
/// Note: This macro can be used in `no_std` setups as well
354-
/// In a `no_std` setup you are responsible for the
355-
/// implementation details of the components.
353+
/// Note: This macro can be used in `no_std` setups as well.
354+
/// In a `no_std` setup you are responsible for the implementation details of the components.
356355
///
357356
/// ```no_run
358357
/// # extern crate core;
@@ -440,7 +439,7 @@ macro_rules! writeln {
440439
///
441440
/// If the determination that the code is unreachable proves incorrect, the
442441
/// program immediately terminates with a [`panic!`]. The function [`unreachable_unchecked`],
443-
/// which belongs to the [`std::hint`] module, informs the compilier to
442+
/// which belongs to the [`std::hint`] module, informs the compiler to
444443
/// optimize the code out of the release version entirely.
445444
///
446445
/// [`panic!`]: ../std/macro.panic.html

src/libcore/mem.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ pub fn forget<T>(t: T) {
202202
///
203203
/// ## Size of Enums
204204
///
205-
/// Enums that carry no data other than the descriminant have the same size as C enums
205+
/// Enums that carry no data other than the discriminant have the same size as C enums
206206
/// on the platform they are compiled for.
207207
///
208208
/// ## Size of Unions
@@ -1081,7 +1081,7 @@ impl<T> MaybeUninit<T> {
10811081
///
10821082
/// # Unsafety
10831083
///
1084-
/// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1084+
/// It is up to the caller to guarantee that the `MaybeUninit` really is in an initialized
10851085
/// state, otherwise this will immediately cause undefined behavior.
10861086
#[unstable(feature = "maybe_uninit", issue = "53491")]
10871087
pub unsafe fn into_inner(self) -> T {
@@ -1092,7 +1092,7 @@ impl<T> MaybeUninit<T> {
10921092
///
10931093
/// # Unsafety
10941094
///
1095-
/// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1095+
/// It is up to the caller to guarantee that the `MaybeUninit` really is in an initialized
10961096
/// state, otherwise this will immediately cause undefined behavior.
10971097
#[unstable(feature = "maybe_uninit", issue = "53491")]
10981098
pub unsafe fn get_ref(&self) -> &T {
@@ -1103,7 +1103,7 @@ impl<T> MaybeUninit<T> {
11031103
///
11041104
/// # Unsafety
11051105
///
1106-
/// It is up to the caller to guarantee that the the `MaybeUninit` really is in an initialized
1106+
/// It is up to the caller to guarantee that the `MaybeUninit` really is in an initialized
11071107
/// state, otherwise this will immediately cause undefined behavior.
11081108
#[unstable(feature = "maybe_uninit", issue = "53491")]
11091109
pub unsafe fn get_mut(&mut self) -> &mut T {

src/libcore/num/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2152,6 +2152,7 @@ Basic usage:
21522152
", $Feature, "assert_eq!(", stringify!($SelfT), "::min_value(), 0);", $EndFeature, "
21532153
```"),
21542154
#[stable(feature = "rust1", since = "1.0.0")]
2155+
#[rustc_promotable]
21552156
#[inline]
21562157
pub const fn min_value() -> Self { 0 }
21572158
}
@@ -2168,6 +2169,7 @@ Basic usage:
21682169
stringify!($MaxV), ");", $EndFeature, "
21692170
```"),
21702171
#[stable(feature = "rust1", since = "1.0.0")]
2172+
#[rustc_promotable]
21712173
#[inline]
21722174
pub const fn max_value() -> Self { !0 }
21732175
}

src/libcore/pin.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! It is sometimes useful to have objects that are guaranteed to not move,
44
//! in the sense that their placement in memory does not change, and can thus be relied upon.
55
//!
6-
//! A prime example of such a scenario would be building self-referencial structs,
6+
//! A prime example of such a scenario would be building self-referential structs,
77
//! since moving an object with pointers to itself will invalidate them,
88
//! which could cause undefined behavior.
99
//!
@@ -39,7 +39,7 @@
3939
//! use std::marker::Pinned;
4040
//! use std::ptr::NonNull;
4141
//!
42-
//! // This is a self referencial struct since the slice field points to the data field.
42+
//! // This is a self-referential struct since the slice field points to the data field.
4343
//! // We cannot inform the compiler about that with a normal reference,
4444
//! // since this pattern cannot be described with the usual borrowing rules.
4545
//! // Instead we use a raw pointer, though one which is known to not be null,

src/libcore/ptr.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pub use intrinsics::write_bytes;
120120
///
121121
/// Additionally, if `T` is not [`Copy`], using the pointed-to value after
122122
/// calling `drop_in_place` can cause undefined behavior. Note that `*to_drop =
123-
/// foo` counts as a use because it will cause the the value to be dropped
123+
/// foo` counts as a use because it will cause the value to be dropped
124124
/// again. [`write`] can be used to overwrite data without causing it to be
125125
/// dropped.
126126
///
@@ -371,7 +371,7 @@ pub(crate) unsafe fn swap_nonoverlapping_one<T>(x: *mut T, y: *mut T) {
371371
#[inline]
372372
unsafe fn swap_nonoverlapping_bytes(x: *mut u8, y: *mut u8, len: usize) {
373373
// The approach here is to utilize simd to swap x & y efficiently. Testing reveals
374-
// that swapping either 32 bytes or 64 bytes at a time is most efficient for intel
374+
// that swapping either 32 bytes or 64 bytes at a time is most efficient for Intel
375375
// Haswell E processors. LLVM is more able to optimize if we give a struct a
376376
// #[repr(simd)], even if we don't actually use this struct directly.
377377
//
@@ -1005,7 +1005,7 @@ impl<T: ?Sized> *const T {
10051005
/// # Null-unchecked version
10061006
///
10071007
/// If you are sure the pointer can never be null and are looking for some kind of
1008-
/// `as_ref_unchecked` that returns the `&T` instead of `Option<&T>, know that you can
1008+
/// `as_ref_unchecked` that returns the `&T` instead of `Option<&T>`, know that you can
10091009
/// dereference the pointer directly.
10101010
///
10111011
/// ```
@@ -1625,7 +1625,7 @@ impl<T: ?Sized> *mut T {
16251625
/// # Null-unchecked version
16261626
///
16271627
/// If you are sure the pointer can never be null and are looking for some kind of
1628-
/// `as_ref_unchecked` that returns the `&T` instead of `Option<&T>, know that you can
1628+
/// `as_ref_unchecked` that returns the `&T` instead of `Option<&T>`, know that you can
16291629
/// dereference the pointer directly.
16301630
///
16311631
/// ```

src/librustc/diagnostics.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2134,7 +2134,7 @@ static X: u32 = 42;
21342134

21352135

21362136
register_diagnostics! {
2137-
// E0006 // merged with E0005
2137+
// E0006, // merged with E0005
21382138
// E0101, // replaced with E0282
21392139
// E0102, // replaced with E0282
21402140
// E0134,
@@ -2183,9 +2183,7 @@ register_diagnostics! {
21832183
E0657, // `impl Trait` can only capture lifetimes bound at the fn level
21842184
E0687, // in-band lifetimes cannot be used in `fn`/`Fn` syntax
21852185
E0688, // in-band lifetimes cannot be mixed with explicit lifetime binders
2186-
21872186
E0697, // closures cannot be static
2188-
21892187
E0707, // multiple elided lifetimes used in arguments of `async fn`
21902188
E0708, // `async` non-`move` closures with arguments are not currently supported
21912189
E0709, // multiple different lifetimes used in arguments of `async fn`

src/librustc/hir/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -506,9 +506,9 @@ pub enum TraitBoundModifier {
506506
}
507507

508508
/// The AST represents all type param bounds as types.
509-
/// typeck::collect::compute_bounds matches these against
510-
/// the "special" built-in traits (see middle::lang_items) and
511-
/// detects Copy, Send and Sync.
509+
/// `typeck::collect::compute_bounds` matches these against
510+
/// the "special" built-in traits (see `middle::lang_items`) and
511+
/// detects `Copy`, `Send` and `Sync`.
512512
#[derive(Clone, RustcEncodable, RustcDecodable, Debug)]
513513
pub enum GenericBound {
514514
Trait(PolyTraitRef, TraitBoundModifier),

src/librustc/infer/opaque_types/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,8 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
366366
let mut types = vec![concrete_ty];
367367
let bound_region = |r| self.sub_regions(infer::CallReturn(span), least_region, r);
368368
while let Some(ty) = types.pop() {
369-
let mut components = self.tcx.outlives_components(ty);
369+
let mut components = smallvec![];
370+
self.tcx.push_outlives_components(ty, &mut components);
370371
while let Some(component) = components.pop() {
371372
match component {
372373
Component::Region(r) => {

src/librustc/infer/outlives/obligations.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
//! Code that handles "type-outlives" constraints like `T: 'a`. This
12-
//! is based on the `outlives_components` function defined on the tcx,
12+
//! is based on the `push_outlives_components` function defined on the tcx,
1313
//! but it adds a bit of heuristics on top, in particular to deal with
1414
//! associated types and projections.
1515
//!
@@ -307,31 +307,32 @@ where
307307

308308
assert!(!ty.has_escaping_bound_vars());
309309

310-
let components = self.tcx.outlives_components(ty);
311-
self.components_must_outlive(origin, components, region);
310+
let mut components = smallvec![];
311+
self.tcx.push_outlives_components(ty, &mut components);
312+
self.components_must_outlive(origin, &components, region);
312313
}
313314

314315
fn components_must_outlive(
315316
&mut self,
316317
origin: infer::SubregionOrigin<'tcx>,
317-
components: Vec<Component<'tcx>>,
318+
components: &[Component<'tcx>],
318319
region: ty::Region<'tcx>,
319320
) {
320-
for component in components {
321+
for component in components.iter() {
321322
let origin = origin.clone();
322323
match component {
323324
Component::Region(region1) => {
324325
self.delegate
325326
.push_sub_region_constraint(origin, region, region1);
326327
}
327328
Component::Param(param_ty) => {
328-
self.param_ty_must_outlive(origin, region, param_ty);
329+
self.param_ty_must_outlive(origin, region, *param_ty);
329330
}
330331
Component::Projection(projection_ty) => {
331-
self.projection_must_outlive(origin, region, projection_ty);
332+
self.projection_must_outlive(origin, region, *projection_ty);
332333
}
333334
Component::EscapingProjection(subcomponents) => {
334-
self.components_must_outlive(origin, subcomponents, region);
335+
self.components_must_outlive(origin, &subcomponents, region);
335336
}
336337
Component::UnresolvedInferenceVariable(v) => {
337338
// ignore this, we presume it will yield an error

src/librustc/infer/outlives/verify.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,8 @@ impl<'cx, 'gcx, 'tcx> VerifyBoundCx<'cx, 'gcx, 'tcx> {
155155
.map(|subty| self.type_bound(subty))
156156
.collect::<Vec<_>>();
157157

158-
let mut regions = ty.regions();
158+
let mut regions = smallvec![];
159+
ty.push_regions(&mut regions);
159160
regions.retain(|r| !r.is_late_bound()); // ignore late-bound regions
160161
bounds.push(VerifyBound::AllBounds(
161162
regions

src/librustc/lint/builtin.rs

-7
Original file line numberDiff line numberDiff line change
@@ -300,12 +300,6 @@ declare_lint! {
300300
"detects labels that are never used"
301301
}
302302

303-
declare_lint! {
304-
pub DUPLICATE_ASSOCIATED_TYPE_BINDINGS,
305-
Warn,
306-
"warns about duplicate associated type bindings in generics"
307-
}
308-
309303
declare_lint! {
310304
pub DUPLICATE_MACRO_EXPORTS,
311305
Deny,
@@ -418,7 +412,6 @@ impl LintPass for HardwiredLints {
418412
ABSOLUTE_PATHS_NOT_STARTING_WITH_CRATE,
419413
UNSTABLE_NAME_COLLISIONS,
420414
IRREFUTABLE_LET_PATTERNS,
421-
DUPLICATE_ASSOCIATED_TYPE_BINDINGS,
422415
DUPLICATE_MACRO_EXPORTS,
423416
INTRA_DOC_LINK_RESOLUTION_FAILURE,
424417
MISSING_DOC_CODE_EXAMPLES,

src/librustc/session/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -963,6 +963,10 @@ impl Session {
963963
self.opts.debugging_opts.teach && self.diagnostic().must_teach(code)
964964
}
965965

966+
pub fn rust_2015(&self) -> bool {
967+
self.opts.edition == Edition::Edition2015
968+
}
969+
966970
/// Are we allowed to use features from the Rust 2018 edition?
967971
pub fn rust_2018(&self) -> bool {
968972
self.opts.edition >= Edition::Edition2018

src/librustc/traits/mod.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,8 @@ pub use self::select::{EvaluationResult, IntercrateAmbiguityCause, OverflowError
5050
pub use self::specialize::{OverlapError, specialization_graph, translate_substs};
5151
pub use self::specialize::find_associated_item;
5252
pub use self::engine::{TraitEngine, TraitEngineExt};
53-
pub use self::util::elaborate_predicates;
54-
pub use self::util::supertraits;
55-
pub use self::util::Supertraits;
56-
pub use self::util::supertrait_def_ids;
57-
pub use self::util::SupertraitDefIds;
53+
pub use self::util::{elaborate_predicates, elaborate_trait_ref, elaborate_trait_refs};
54+
pub use self::util::{supertraits, supertrait_def_ids, Supertraits, SupertraitDefIds};
5855
pub use self::util::transitive_bounds;
5956

6057
#[allow(dead_code)]

0 commit comments

Comments
 (0)