about summary refs log tree commit diff
path: root/src
AgeCommit message (Collapse)AuthorLines
2019-12-11Rollup merge of #67180 - NieDzejkob:vec-doc-copied, r=Dylan-DPCYuki Okushi-1/+1
doc: Use .copied() instead of .cloned() in Vec example None
2019-12-11Rollup merge of #67178 - GuillaumeGomez:move-non-clean-impls, r=kinnisonYuki Okushi-588/+608
Move non clean impls items This is another (and should be the last for the `clean` module) rustdoc cleanup. I tried to follow the same commit pattern as the last one to make the review as easy as possible. r? @kinnison
2019-12-11Rollup merge of #67168 - ryanswilson59:master, r=Dylan-DPCYuki Okushi-2/+2
corrected comment in E0478 I believe this fixes the issue that I opened, https://github.com/rust-lang/rust/issues/67040, about E0478 being contradictory.
2019-12-11Rollup merge of #67154 - kraai:alloc-typos, r=Dylan-DPCYuki Okushi-6/+6
Fix typos in src/libcore/alloc.rs docs
2019-12-11Rollup merge of #67152 - GuillaumeGomez:sort-auto-impls, r=kinnisonYuki Okushi-6/+28
Sort auto trait and blanket implementations display Fixes #63042 r? @kinnison
2019-12-11Rollup merge of #67134 - oli-obk:const_prop_zst, r=wesleywiserYuki Okushi-5/+58
Ensure that we get a hard error on generic ZST constants if their bod… …y causes an error during evaluation cc #67083 (does not fix because we still need the beta backport) r? @wesleywiser cc @RalfJung
2019-12-10Auto merge of #66277 - peter-wilkins:impl-from-wider-non-zeros, r=SimonSapinbors-85/+177
From<NonZero*> impls for wider NonZero types Closes: https://github.com/rust-lang/rust/issues/66291
2019-12-10Remove tidy commentGuillaume Gomez-2/+0
2019-12-10Auto merge of #67039 - xfix:manually-implement-pin-traits, r=nikomatsakisbors-17/+81
Use deref target in Pin trait implementations Using deref target instead of pointer itself avoids providing access to `&Rc<T>` for malicious implementations, which would allow calling `Rc::get_mut`. This is a breaking change necessary due to unsoundness, however the impact of it should be minimal. This only fixes the issue with malicious `PartialEq` implementations, other `Pin` soundness issues are still here. See <https://internals.rust-lang.org/t/unsoundness-in-pin/11311/73> for more details.
2019-12-09Rollup merge of #67169 - lzutao:inline_osstr, r=nagisaTyler Mandry-0/+11
inline some common methods on OsStr Closes #67150
2019-12-09Rollup merge of #67155 - kraai:move-instead-of-binding-to-reference, r=cramertjTyler Mandry-6/+6
Move `Layout`s instead of binding by reference
2019-12-09Rollup merge of #67149 - JohnTitor:fix-ice-1, r=Dylan-DPCTyler Mandry-1/+22
Do not ICE #67123 Fixes #67123 r? @matthewjasper
2019-12-09Rollup merge of #67145 - RalfJung:miri-step, r=oli-obkTyler Mandry-1/+3
fix miri step debug printing r? @oli-obk
2019-12-09Rollup merge of #67138 - kraai:simplify-Layout-extend_packed, r=AmanieuTyler Mandry-2/+1
Simplify `Layout::extend_packed`
2019-12-09Rollup merge of #67125 - hashedone:master, r=petrochenkovTyler Mandry-5/+9
Added ExactSizeIterator bound to return types Fixes #66865
2019-12-09Rollup merge of #67119 - RalfJung:miri-test-libstd, r=alexcrichtonTyler Mandry-42/+48
libstd miri tests: avoid warnings Ignore tests in a way that all the code still gets compiled, to get rid of all the "unused" warnings that otherwise show up when running the test suite in Miri.
2019-12-09Rollup merge of #67115 - Centril:simplify-check-decl-no-pat, r=davidtwcoTyler Mandry-5/+5
Simplify `check_decl_no_pat`. r? @davidtwco
2019-12-09Rollup merge of #67113 - Centril:enum-vis-pretty-fix, r=davidtwcoTyler Mandry-0/+9
Print the visibility in `print_variant`. r? @davidtwco cc @dtolnay for `syn` awareness.
2019-12-09Rollup merge of #67106 - petrochenkov:docerr, r=matthewjasperTyler Mandry-88/+162
resolve: Resolve visibilities on fields with non-builtin attributes Follow-up to https://github.com/rust-lang/rust/pull/66669. The first commit is primary (and also a backport candidate), the other ones are further cleanups. In this case it's not strictly necessary to avoid reporting errors during speculative resolution because 1) all visibilities are resolved non-speculatively sooner or later and 2) error reporting infrastructure merges identical errors with identical spans anyway. Fixes https://github.com/rust-lang/rust/issues/67006 r? @matthewjasper
2019-12-09Rollup merge of #66892 - dtolnay:fmt5, r=KodrAusTyler Mandry-1171/+1311
Format libcore with rustfmt (including tests and benches) Important: two small non-rustfmt changes that will need close review: - I added `#[rustfmt::skip]` to two manually arranged tables in src/libcore/benches/ascii.rs; see first commit in the PR. - I added `// ignore-tidy-filelength` to src/libcore/ptr/mod.rs because rustfmt puts it over tidy's 3000 line limit; see second commit in the PR. I filed #66891 to follow up on breaking up that file. For now though having it be formatted is more important than having it below the line limit. --- As with my previous formatting PRs, I am avoiding causing merge conflicts in other PRs by only touches those files that are not involved in any currently open PR. Files that appear in new PRs between when this PR is opened and when it makes it to the top of the bors queue will be reverted from this PR. The list of files involved in open PRs is determined by querying GitHub's GraphQL API [with this script](https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8). With the list of files from the script in outstanding_files, the relevant commands were: ``` $ find src/libcore -name '*.rs' \ | xargs rustfmt --edition=2018 --unstable-features --skip-children $ rg libcore outstanding_files | xargs git checkout -- ``` To confirm no funny business: ``` $ git checkout $THIS_COMMIT^ $ git show --pretty= --name-only $THIS_COMMIT \ | xargs rustfmt --edition=2018 --unstable-features --skip-children $ git diff $THIS_COMMIT # there should be no difference ``` r? @Dylan-DPC
2019-12-09Added ExactSizeIterator bound to return typesBartłomiej Kuras-53/+31
This reverts commit d97379a96e594820b9e865ae56cb8d753bf6b06a.
2019-12-09resolve: Make visibility resolution more speculativeVadim Petrochenkov-70/+87
To avoid potential duplicate diagnostics and separate the error reporting logic
2019-12-09resolve: Cleanup some field processing codeVadim Petrochenkov-32/+31
2019-12-09resolve: Resolve visibilities on fields with non-builtin attributesVadim Petrochenkov-4/+62
2019-12-09doc: Use .copied() instead of .cloned() in Vec exampleJakub Kądziołka-1/+1
2019-12-09Remove useless commentGuillaume Gomez-2/+0
2019-12-09Move RegionTarget and RegionDeps where they into clean/auto_traitGuillaume Gomez-14/+16
2019-12-09Remove unused importsGuillaume Gomez-10/+7
2019-12-09Fix usage of variants in clean/utilsGuillaume Gomez-7/+7
2019-12-09Make utils module publicGuillaume Gomez-19/+19
2019-12-09Fix missing importsGuillaume Gomez-1/+25
2019-12-09Remove functions from clean/mod.rsGuillaume Gomez-567/+0
2019-12-09Move clean functions to another fileGuillaume Gomez-0/+568
2019-12-09Auto merge of #67096 - mark-i-m:fix-rustc-guide-2, r=ehussbors-0/+0
Update rustc-guide
2019-12-09Show const_err lint in addition to the hard errorOliver Scherer-2/+16
2019-12-09Update E0478.mdDylan DPC-2/+2
2019-12-09Auto merge of #67016 - lqd:placeholder_loans, r=matthewjasperbors-36/+620
In which we implement illegal subset relations errors using Polonius This PR is the rustc side of implementing subset errors using Polonius. That is, in ```rust fn foo<'a, 'b>(x: &'a u32, y: &'b u32) -> &'a u32 { y } ``` returning `y` requires that `'b: 'a` but we have no evidence of that, so this is an error. (Evidence that the relation holds could come from explicit bounds, or via implied bounds). Polonius outputs one such error per CFG point where the free region's placeholder loan unexpectedly flowed into another free region. While all these CFG locations could be useful in diagnostics in the future, rustc does not do that (and the duplication is only partially handled in the rest of the errors/diagnostics infrastructure, e.g. duplicate suggestions will be shown by the "outlives suggestions" or some of the `#[rustc_*]` NLL/MIR debug dumps), so I deduplicated the errors. (The ordering also matters, otherwise some of the elided lifetime naming would change behaviour). I've blessed a couple of tests, where the output is currently suboptimal: - the `hrtb-perfect-forwarding` tests mix subset errors with higher-ranked subtyping, however the plan is for chalk to eventually take care of some of this to generate polonius constraints (i.e. it's not polonius' job). Until that happens, polonius will not see the error that NLL sees. - some other tests have errors and diagnostics specific to `'static`, I _believe_ this to be because of it being treated as more "special" than in polonius. I believe the output is not wrong, but could be better, and appears elsewhere (I feel we'll need to look at polonius' handling of `'static` at some point in the future, maybe to match a bit more what NLL does when it produces errors) I'll create a tracking issue in the polonius repo to record these 2 points (and a general "we'll need to go over the blessed output" issue, much like we did for NLLs) The last blessed test is because it's an improvement: in this case, more errors/suggestions were computed, instead of the existing code path where this case apparently stops at the first error. The `Naive` variant in Polonius computes those errors, so this PR also switches the default variant to that, as we're also in the process of temporarily deactivating all other variants (which exist mostly for performance considerations) until we have completed more work on completeness and correctness, before focusing on efficiency once again. While most of the correctness in this PR is hidden in the polonius compare-mode (which of course passes locally), I've added a couple of smoke-tests to the existing ones, so that we have some confidence that it works (and keeps working) until we're in a position where we can run them on CI. As mentioned during yesterday's wg-polonius meeting, @nikomatsakis has already read through most of this PR (and which is matching what they thought needed to be done [during the recent Polonius sprint](https://hackmd.io/CGMNjt1hR_qYtsR9hgdGmw#Compiler-notes-on-generating-the-placeholder-loans-support)), but Matthew was hopefully going to review (again, not urgent), so: r? @matthewjasper (This updates to the latest `polonius-engine` release, and I'm not sure whether `Cargo.lock` updates can easily be rolled up, but apart from that: this changes little that's tested on CI, so seems safe-ish to rollup ?)
2019-12-09inline some common methods on OsStrLzu Tao-0/+11
2019-12-09Do not ICE on closureYuki Okushi-1/+22
2019-12-09Auto merge of #67004 - estebank:issue-66958, r=eddybbors-9/+38
Do not ICE on async fn with non-Copy infered type arg Fix #66958.
2019-12-08corrected comment to reflect that 'SnowWhite lives longer than 'kiss in E0478ryan-2/+2
2019-12-09Auto merge of #67003 - cjgillot:corrida, r=Mark-Simulacrumbors-47/+12
Fix TypedArena returning wrong pointers for recursive allocations Closes #67001
2019-12-08move from non zero impls to `libcore/convert/num.rs`Peter-50828/+58011
2019-12-08Auto merge of #66984 - GuillaumeGomez:move-clean-types, r=kinnisonbors-1534/+1558
Move clean types into their own file This PR is just about moving clean types into their own files to make the code more clear and keep all `Clean` trait implementations on their own. r? @kinnison
2019-12-08Auto merge of #66981 - michaelwoerister:measureme-0.5.0, r=Mark-Simulacrumbors-15/+12
Update measureme crate to 0.5.0 This PR updates the `measureme` self-profiling crate to the latest release. Heads up, this version changes the trace file format, so the `summarize` tool on perf.rlo needs to be updated to 0.5 too. r? @Mark-Simulacrum cc @wesleywiser
2019-12-08Auto merge of #66730 - hermitcore:master, r=alexcrichtonbors-2/+0
remove dependency from libhermit The build process of the unikernel HermitCore is redesigned and doesn't longer depend on libhermit.
2019-12-08Move `Layout`s instead of binding by referenceMatthew Kraai-6/+6
2019-12-08Sort auto trait and blanket implementations displayGuillaume Gomez-6/+28
2019-12-08Change "attributes" to "attribute" in `Alloc`'s docsMatthew Kraai-1/+1
2019-12-08Change "`alloc`/`realloc`" to "`realloc/dealloc`"Matthew Kraai-3/+3