about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2020-07-29bump libc version to 0.2.74Paul Sajna-2/+2
2020-07-29Explain why inline default ToString implLzu Tao-0/+3
2020-07-29Update `fs::remove_file` docsImbolc-0/+1
Mention that absence of file causes an error
2020-07-29Auto merge of #74887 - Mark-Simulacrum:cache-non-exhaustive, r=petrochenkovbors-14/+16
Cache non-exhaustive separately from attributes This prevents cross-crate attribute loading from metadata just for non_exhaustive checking; cross-crate attribute loading implies disk reading and is relatively slow.
2020-07-29Auto merge of #74894 - JohnTitor:rollup-4ine62a, r=JohnTitorbors-8/+149
Rollup of 8 pull requests Successful merges: - #74266 (Clean up E0720 explanation) - #74671 (add const generics array coercion test) - #74707 (Add str::[r]split_once) - #74814 (Fix RefUnwindSafe & UnwinsSafe impls for lazy::SyncLazy) - #74859 (Update outdated readme) - #74864 (ayu theme: Change doccomment color to `#a1ac88`) - #74872 (Enable to ping RISC-V group via triagebot) - #74891 (handle ConstEquate in rustdoc) Failed merges: r? @ghost
2020-07-28FunctionCoverage: improve type checking with newtype_index typesRich Kadel-40/+88
2020-07-29Rollup merge of #74891 - lcnr:auto-trait-finder, r=varkorYuki Okushi-0/+50
handle ConstEquate in rustdoc fixes #74882 r? @varkor cc @eddyb
2020-07-29Rollup merge of #74872 - JohnTitor:ping-risc-v, r=Mark-SimulacrumYuki Okushi-0/+11
Enable to ping RISC-V group via triagebot We have the RISC-V group (https://github.com/rust-lang/team/blob/master/teams/risc-v.toml) but don't enable to ping on this repository (https://github.com/rust-lang/rust/pull/74813#issuecomment-664841177). We don't have the instructions on the rustc-dev-guide yet but I'll create it soonish.
2020-07-29Rollup merge of #74864 - lzutao:ayu-doccolor, r=GuillaumeGomezYuki Okushi-3/+2
ayu theme: Change doccomment color to `#a1ac88` Before: ![image](https://user-images.githubusercontent.com/15225902/88621499-d1cbff80-d0ca-11ea-99c3-5e2632709274.png) After: ![image](https://user-images.githubusercontent.com/15225902/88621471-bf51c600-d0ca-11ea-9455-9c297f50f15f.png) Close #74788
2020-07-29Rollup merge of #74859 - mark-i-m:patch-1, r=JohnTitorYuki Okushi-1/+1
Update outdated readme
2020-07-29Rollup merge of #74814 - matklad:unwind-safe, r=KodrAusYuki Okushi-1/+3
Fix RefUnwindSafe & UnwinsSafe impls for lazy::SyncLazy I *think* we should implement those unconditionally with respect to `F`. The user code can't observe the closure in any way, and we poison lazy if the closure itself panics. But I've never fully wrapped my head around `UnwindSafe` traits, so :man_shrugging:
2020-07-29Rollup merge of #74707 - matklad:split_once, r=dtolnayYuki Okushi-0/+66
Add str::[r]split_once This is useful for quick&dirty parsing of key: value config pairs. Used a bunch in Cargo and rust-analyzer: * https://github.com/rust-lang/cargo/search?q=splitn%282&unscoped_q=splitn%282 * https://github.com/rust-analyzer/rust-analyzer/search?q=split_delim&unscoped_q=split_delim In theory, once const-generics are done, this functionality could be achieved without a dedicated method with ```rust match s.splitn(delimier, 2).collect_array::<2>() { Some([prefix, suffix]) => todo!(), None => todo!(), } ``` Even in that world, having a dedicated method seems clearer on the intention. I am not sure about naming -- this is something I've just came up with yesterday, I don't know off the top of my head analogs in other languages. If T-libs thinks this is a reasonable API to have, I'll open a tracking issue and add more thorough tests.
2020-07-29Rollup merge of #74671 - rust-lang:const-generics-coerce-unsized, r=nikomatsakisYuki Okushi-0/+11
add const generics array coercion test
2020-07-29Rollup merge of #74266 - GuillaumeGomez:cleanup-e0720, r=Dylan-DPCYuki Okushi-3/+5
Clean up E0720 explanation r? @Dylan-DPC
2020-07-28Auto merge of #74791 - tmiasko:raw-waker-inline, r=LukasKalbertodtbors-0/+1
Add #[inline] to RawWaker::new `RawWaker::new` is used when creating a new waker or cloning an existing one, for example as in code below. The `RawWakerVTable::new` can be const evaluated, but `RawWaker::new` itself cannot since waker pointer is not known at compile time. Add `#[inline]` to avoid overhead of a function call. ```rust unsafe fn clone_waker<W: Wake + Send + Sync + 'static>(waker: *const ()) -> RawWaker { unsafe { Arc::incr_strong_count(waker as *const W) }; RawWaker::new( waker as *const (), &RawWakerVTable::new(clone_waker::<W>, wake::<W>, wake_by_ref::<W>, drop_waker::<W>), ) } ```
2020-07-28std: Switch from libbacktrace to gimliAlex Crichton-56/+129
This commit is a proof-of-concept for switching the standard library's backtrace symbolication mechanism on most platforms from libbacktrace to gimli. The standard library's support for `RUST_BACKTRACE=1` requires in-process parsing of object files and DWARF debug information to interpret it and print the filename/line number of stack frames as part of a backtrace. Historically this support in the standard library has come from a library called "libbacktrace". The libbacktrace library seems to have been extracted from gcc at some point and is written in C. We've had a lot of issues with libbacktrace over time, unfortunately, though. The library does not appear to be actively maintained since we've had patches sit for months-to-years without comments. We have discovered a good number of soundness issues with the library itself, both when parsing valid DWARF as well as invalid DWARF. This is enough of an issue that the libs team has previously decided that we cannot feed untrusted inputs to libbacktrace. This also doesn't take into account the portability of libbacktrace which has been difficult to manage and maintain over time. While possible there are lots of exceptions and it's the main C dependency of the standard library right now. For years it's been the desire to switch over to a Rust-based solution for symbolicating backtraces. It's been assumed that we'll be using the Gimli family of crates for this purpose, which are targeted at safely and efficiently parsing DWARF debug information. I've been working recently to shore up the Gimli support in the `backtrace` crate. As of a few weeks ago the `backtrace` crate, by default, uses Gimli when loaded from crates.io. This transition has gone well enough that I figured it was time to start talking seriously about this change to the standard library. This commit is a preview of what's probably the best way to integrate the `backtrace` crate into the standard library with the Gimli feature turned on. While today it's used as a crates.io dependency, this commit switches the `backtrace` crate to a submodule of this repository which will need to be updated manually. This is not done lightly, but is thought to be the best solution. The primary reason for this is that the `backtrace` crate needs to do some pretty nontrivial filesystem interactions to locate debug information. Working without `std::fs` is not an option, and while it might be possible to do some sort of trait-based solution when prototyped it was found to be too unergonomic. Using a submodule allows the `backtrace` crate to build as a submodule of the `std` crate itself, enabling it to use `std::fs` and such. Otherwise this adds new dependencies to the standard library. This step requires extra attention because this means that these crates are now going to be included with all Rust programs by default. It's important to note, however, that we're already shipping libbacktrace with all Rust programs by default and it has a bunch of C code implementing all of this internally anyway, so we're basically already switching already-shipping functionality to Rust from C. * `object` - this crate is used to parse object file headers and contents. Very low-level support is used from this crate and almost all of it is disabled. Largely we're just using struct definitions as well as convenience methods internally to read bytes and such. * `addr2line` - this is the main meat of the implementation for symbolication. This crate depends on `gimli` for DWARF parsing and then provides interfaces needed by the `backtrace` crate to turn an address into a filename / line number. This crate is actually pretty small (fits in a single file almost!) and mirrors most of what `dwarf.c` does for libbacktrace. * `miniz_oxide` - the libbacktrace crate transparently handles compressed debug information which is compressed with zlib. This crate is used to decompress compressed debug sections. * `gimli` - not actually used directly, but a dependency of `addr2line`. * `adler32`- not used directly either, but a dependency of `miniz_oxide`. The goal of this change is to improve the safety of backtrace symbolication in the standard library, especially in the face of possibly malformed DWARF debug information. Even to this day we're still seeing segfaults in libbacktrace which could possibly become security vulnerabilities. This change should almost entirely eliminate this possibility whilc also paving the way forward to adding more features like split debug information. Some references for those interested are: * Original addition of libbacktrace - #12602 * OOM with libbacktrace - #24231 * Backtrace failure due to use of uninitialized value - #28447 * Possibility to feed untrusted data to libbacktrace - #21889 * Soundness fix for libbacktrace - #33729 * Crash in libbacktrace - #39468 * Support for macOS, never merged - ianlancetaylor/libbacktrace#2 * Performance issues with libbacktrace - #29293, #37477 * Update procedure is quite complicated due to how many patches we need to carry - #50955 * Libbacktrace doesn't work on MinGW with dynamic libs - #71060 * Segfault in libbacktrace on macOS - #71397 Switching to Rust will not make us immune to all of these issues. The crashes are expected to go away, but correctness and performance may still have bugs arise. The gimli and `backtrace` crates, however, are actively maintained unlike libbacktrace, so this should enable us to at least efficiently apply fixes as situations come up.
2020-07-28Refactor MIR coverage instrumentationRich Kadel-120/+151
Lays a better foundation for injecting more counters in each function.
2020-07-29handle ConstEquate in rustdocBastian Kauschke-0/+50
2020-07-28Auto merge of #74861 - mark-i-m:mv-std-followup, r=Mark-Simulacrumbors-16/+16
Re-enable linkcheck after moving std
2020-07-28Cache non-exhaustive separately from attributesMark Rousskov-14/+16
2020-07-28Auto merge of #74471 - da-x:string-type-diagnostic-item, r=petrochenkovbors-1/+6
librustc_typeck: use diag item instead of string compare
2020-07-28Collect library features from library/Mark Rousskov-3/+6
2020-07-28reenable tests after moving stdmark-13/+10
2020-07-28Auto merge of #74482 - alexcrichton:update-stdarch, r=hanna-kruppebors-9/+9
Update stdarch submodule This commit updates the src/stdarch submodule primarily to include rust-lang/stdarch#874 which updated and revamped WebAssembly SIMD intrinsics and renamed WebAssembly atomics intrinsics. This is all unstable surface area of the standard library so the changes should be ok here. The SIMD updates also enable SIMD intrinsics to be used by any program any any time, yay! cc #74372, a tracking issue I've opened for the stabilization of SIMD intrinsics
2020-07-28Replace write-to-vec hack by introducing a display renderer for allocationsOliver Scherer-26/+32
2020-07-28Clarify the doc for MaybeUninit::zeroed on incorrect useAlexis Bourget-2/+3
2020-07-28Add note to clearly mark the RFC as rejectedAlexis Bourget-0/+6
2020-07-28Remove links to rejected errata 4406 for RFC 4291Alexis Bourget-6/+0
2020-07-28Update stdarch submoduleAlex Crichton-9/+9
This commit updates the src/stdarch submodule primarily to include rust-lang/stdarch#874 which updated and revamped WebAssembly SIMD intrinsics and renamed WebAssembly atomics intrinsics. This is all unstable surface area of the standard library so the changes should be ok here. The SIMD updates also enable SIMD intrinsics to be used by any program any any time, yay! cc #74372, a tracking issue I've opened for the stabilization of SIMD intrinsics
2020-07-28Replace all uses of `log::log_enabled` with `Debug` printersOliver Scherer-161/+219
2020-07-28Auto merge of #73964 - jyn514:sane-defaults, r=Mark-Simulacrumbors-536/+660
Improve defaults in x.py - Make the default stage dependent on the subcommand - Don't build stage1 rustc artifacts with x.py build --stage 1. If this is what you want, use x.py build --stage 2 instead, which gives you a working libstd. - Change default debuginfo when debug = true from 2 to 1 I tried to fix CI to use `--stage 2` everywhere it currently has no stage, but I might have missed a spot. This does not update much of the documentation - most of it is in https://github.com/rust-lang/rustc-dev-guide/ or https://github.com/rust-lang/rust-forge and will need a separate PR. See individual commits for a detailed rationale of each change. See also the MCP: https://github.com/rust-lang/compiler-team/issues/326 r? @Mark-Simulacrum , but anyone is free to give an opinion.
2020-07-28Use --stage 2 in checktoolsJoshua Nelson-7/+7
- Remove useless --stage 2 argument to checktools.sh - Fix help text for expand-yaml-anchors (it had a typo)
2020-07-28Remove into_slices and its unsafe blockStein Somers-10/+3
2020-07-28Fix bad rebaseJoshua Nelson-1/+1
2020-07-28symbol mangling: use ty::print::Print for constsBastian Kauschke-3/+1
2020-07-28Enable to ping RISC-V group via triagebotYuki Okushi-0/+11
2020-07-28Enable docs on dist-x86_64-muslDavid Sonder-1/+0
Add the rust-docs component to toolchain x86_64-unknown-linux-musl, which allows people using rustup on their musl-based linux distribution to download the rust-docs.
2020-07-28Auto merge of #74796 - infinity0:master, r=nikomatsakisbors-2/+1
config.toml.example: Update remap-debuginfo doc to be more general & accurate This makes it more obvious that the work-around to #74786 is actually correct, and a custom `--remap-path-prefix` isn't needed. In fact the previous comment `/rustc/$hash/$crate` was wrong, it is not `$crate` but whatever path exists in the rustc source tree, so either `src/$crate` or `vendor/$crate`. I've fixed that as well to avoid future confusion.
2020-07-28Add str::[r]split_onceAleksey Kladov-0/+66
This is useful for quick&dirty parsing of key: value config pairs
2020-07-28Fix RefUnwindSafe & UnwinsSafe impls for lazy::SyncLazyAleksey Kladov-1/+3
The logic here is the same as for Send&Sync impls.
2020-07-28Don't use "weak count" around Weak::from_raw_ptrMichal 'vorner' Vaner-20/+22
As `Rc/Arc::weak_count` returns 0 when having no strong counts, this could be confusing and it's better to avoid using that completely. Closes #73840.
2020-07-28Auto merge of #74855 - jyn514:separate-lints, r=Manishearthbors-103/+113
Separate `missing_doc_code_examples` from intra-doc links These two lints have no relation other than both being nightly-only. This allows stabilizing intra-doc links without stabilizing `missing_doc_code_examples`. Fixes one of the issues spotted by @ollie27 in https://github.com/rust-lang/rust/pull/74430#issuecomment-664693080. r? @Manishearth
2020-07-28ayu theme: Change doccomment color to `#a1ac88`Lzu Tao-3/+2
Co-authored-by: Cldfire <cldfire@3grid.net>
2020-07-28update stderr for polymorphic ui testAshley Mannix-4/+4
2020-07-28Add #[inline] to RawWaker::newTomasz Miąsko-0/+1
2020-07-28Auto merge of #74841 - infinity0:fix-exec, r=Mark-Simulacrumbors-26/+24
rustbuild: use Display for exit status instead of Debug, see #74832 for justification
2020-07-28remove unstable const_type_id featureAshley Mannix-2/+0
2020-07-28bump const type id stabilization to 1.46.0Ashley Mannix-2/+2
2020-07-28stabilize const_type_id featureAshley Mannix-22/+2
2020-07-27private_items_doc_tests -> doc_test_lintsJoshua Nelson-3/+3