1. 07 9月, 2021 1 次提交
  2. 06 9月, 2021 11 次提交
    • B
      Auto merge of #88678 - matthewjasper:if-boolean-scoping, r=oli-obk · 1c858ba5
      bors 提交于
      Change scope of temporaries in match guards
      
      Each pattern in a match arm has its own copy of the match guard in MIR, with its own temporary, so it has to be dropped before the the guards are joined to the single copy of the arm. This PR changes `then_else_break` to allow it to put the temporary in the innermost scope possible. This change isn't done for `if` expressions because that affects a large number of mir-opt tests and could more significantly affect performance.
      
      closes #88649
      
      r? `@oli-obk`
      1c858ba5
    • B
      Auto merge of #88631 - camelid:sugg-span, r=davidtwco · d19d864e
      bors 提交于
      Improve structured tuple struct suggestion
      
      Previously, the span was just for the constructor name, which meant it
      would result in syntactically-invalid code when applied. Now, the span
      is for the entire expression.
      
      I also changed it to use `span_suggestion_verbose`, for two reasons:
      
      1. Now that the suggestion span has been corrected, the output is a bit
         cluttered and hard to read. Putting the suggestion its own window
         creates more space.
      
      2. It's easier to see what's being suggested, since now the version
         after the suggestion is applied is shown.
      
      r? `@davidtwco`
      d19d864e
    • B
      Auto merge of #88665 - falk-hueffner:int-log-return-value-u32, r=scottmcm · b2d9bcda
      bors 提交于
      Change return type for T::{log,log2,log10} to u32.
      
      The value is at most 128, and this is consistent with using u32 for small values elsewhere (e.g. BITS, count_ones, leading_zeros).
      b2d9bcda
    • B
      Auto merge of #88640 - SkiFire13:tests-for-85499, r=jackh726 · 0e0ce836
      bors 提交于
      Add tests for issues fixed by #85499
      
      Closes #80706
      Closes #80956
      Closes #81809
      Closes #85455
      0e0ce836
    • B
      Auto merge of #88493 - chenyukang:fix-duplicated-diagnostic, r=estebank · 8f3aa5e8
      bors 提交于
      Fix #88256 remove duplicated diagnostics
      
      Fix #88256
      8f3aa5e8
    • B
      Auto merge of #88435 - cjgillot:no-walk-crate, r=Aaron1011 · 7849e3e9
      bors 提交于
      Avoid invoking the hir_crate query to traverse the HIR
      
      Walking the HIR tree is done using the `hir_crate` query. However, this is unnecessary, since `hir_owner(CRATE_DEF_ID)` provides the same information. Since depending on `hir_crate` forces dependents to always be executed, this leads to unnecessary work.
      
      By splitting HIR and attributes visits, we can avoid an edge to `hir_crate` when trying to visit the HIR tree.
      7849e3e9
    • B
      Auto merge of #88552 - nbdd0121:vtable, r=nagisa · e30b6835
      bors 提交于
      Stop allocating vtable entries for non-object-safe methods
      
      Current a vtable entry is allocated for all associated fns, even if the method is not object-safe: https://godbolt.org/z/h7vx6f35T
      
      As a result, each vtable for `Iterator`' currently consumes 74 `usize`s. This PR stops allocating vtable entries for those methods, reducing vtable size of each `Iterator` vtable to 7 `usize`s.
      
      Note that this PR introduces will cause more invocations of `is_vtable_safe_method`. So a perf run might be needed. If result isn't favorable then we might need to query-ify `is_vtable_safe_method`.
      e30b6835
    • M
      Change scope of temporaries in match guards · ad7f109b
      Matthew Jasper 提交于
      Each pattern in a match arm has its own copy of the match guard in MIR,
      with its own temporary, so it has to be dropped before the the guards
      are joined to the single copy of the arm.
      ad7f109b
    • G
      Add query `own_existential_vtable_entries` · 97214eec
      Gary Guo 提交于
      97214eec
    • G
      871eb623
    • B
      Auto merge of #88499 - eddyb:layout-off, r=nagisa · e2750baf
      bors 提交于
      Provide `layout_of` automatically (given tcx + param_env + error handling).
      
      After #88337, there's no longer any uses of `LayoutOf` within `rustc_target` itself, so I realized I could move the trait to `rustc_middle::ty::layout` and redesign it a bit.
      
      This is similar to #88338 (and supersedes it), but at no ergonomic loss, since there's no funky `C: LayoutOf<Ty = Ty>` -> `Ty: TyAbiInterface<C>` generic `impl` chain, and each `LayoutOf` still corresponds to one `impl` (of `LayoutOfHelpers`) for the specific context.
      
      After this PR, this is what's needed to get `trait LayoutOf` (with the `layout_of` method) implemented on some context type:
      * `TyCtxt`, via `HasTyCtxt`
      * `ParamEnv`, via `HasParamEnv`
      * a way to transform `LayoutError`s into the desired error type
        * an error type of `!` can be paired with having `cx.layout_of(...)` return `TyAndLayout` *without* `Result<...>` around it, such as used by codegen
        * this is done through a new `LayoutOfHelpers` trait (and so is specifying the type of `cx.layout_of(...)`)
      
      When going through this path (and not bypassing it with a manual `impl` of `LayoutOf`), the end result is that only the error case can be customized, the query itself and the success paths are guaranteed to be uniform.
      
      (**EDIT**: just noticed that because of the supertrait relationship, you cannot actually implement `LayoutOf` yourself, the blanket `impl` fully covers all possible context types that could ever implement it)
      
      Part of the motivation for this shape of API is that I've been working on querifying `FnAbi::of_*`, and what I want/need to introduce for that looks a lot like the setup in this PR - in particular, it's harder to express the `FnAbi` methods in `rustc_target`, since they're much more tied to `rustc` concepts.
      
      r? `@nagisa` cc `@oli-obk` `@bjorn3`
      e2750baf
  3. 05 9月, 2021 15 次提交
    • F
      Change return type for T::{log,log2,log10} to u32. The value is at · d760c331
      Falk Hüffner 提交于
      most 128, and this is consistent with using u32 for small values
      elsewhere (e.g. BITS, count_ones, leading_zeros).
      d760c331
    • B
      Auto merge of #88604 - camelid:rustdoc-lifetime-bounds, r=GuillaumeGomez · f7c00dc4
      bors 提交于
      rustdoc: Clean up handling of lifetime bounds
      
      Previously, rustdoc recorded lifetime bounds by rendering them into the
      name of the lifetime parameter. Now, it leaves the name as the actual
      name and instead records lifetime bounds in an `outlives` list, similar
      to how type parameter bounds are recorded.
      
      Also, higher-ranked lifetimes cannot currently have bounds, so I simplified
      the code to reflect that.
      
      r? `@GuillaumeGomez`
      f7c00dc4
    • B
      Auto merge of #88662 - m-ou-se:rollup-h6lgp7k, r=m-ou-se · 7e1e3eb5
      bors 提交于
      Rollup of 4 pull requests
      
      Successful merges:
      
       - #88257 (Provide more context on incorrect inner attribute)
       - #88432 (Fix a typo in raw_vec)
       - #88511 (x.py clippy: don't run with --all-targets by default)
       - #88657 (Fix 2021 `dyn` suggestion that used code as label)
      
      Failed merges:
      
      r? `@ghost`
      `@rustbot` modify labels: rollup
      7e1e3eb5
    • G
      Add tests · b32a22eb
      Giacomo Stevanato 提交于
      b32a22eb
    • M
      Rollup merge of #88657 - camelid:fix-dyn-sugg, r=m-ou-se · b4d06bfa
      Mara Bos 提交于
      Fix 2021 `dyn` suggestion that used code as label
      
      The arguments to `span_suggestion` were in the wrong order, so the error
      looked like this:
      
          error[E0783]: trait objects without an explicit `dyn` are deprecated
            --> src/test/ui/editions/dyn-trait-sugg-2021.rs:10:5
             |
          10 |     Foo::hi(123);
             |     ^^^ help: <dyn Foo>: `use `dyn``
      
      Now the error looks like this, as expected:
      
          error[E0783]: trait objects without an explicit `dyn` are deprecated
            --> src/test/ui/editions/dyn-trait-sugg-2021.rs:10:5
             |
          10 |     Foo::hi(123);
             |     ^^^ help: use `dyn`: `<dyn Foo>`
      
      This issue was only present in the 2021 error; the 2018 lint was
      correct.
      
      r? `@m-ou-se`
      b4d06bfa
    • M
      Rollup merge of #88511 - matthiaskrgr:xpyclippydefaulttarget, r=jyn514 · 5fdc8eb2
      Mara Bos 提交于
      x.py clippy: don't run with --all-targets by default
      
      this caused a lot of noise because benchmarks and tests were also checked
      
      before:
      `./x.py clippy |& wc -l`
      `74026`
      
      with change:
      `./x.py clippy |& wc -l`
      `43269`
      
      Zulip thread: https://rust-lang.zulipchat.com/#narrow/stream/122651-general/topic/x.2Epy.20check.20default.20targets
      
      r?  `@jyn514` or `@Mark-Simulacrum`
      5fdc8eb2
    • M
      Rollup merge of #88432 - terrarier2111:patch-1, r=joshtriplett · 22dd6a4e
      Mara Bos 提交于
      Fix a typo in raw_vec
      22dd6a4e
    • M
      Rollup merge of #88257 - estebank:invalid-attr-error, r=oli-obk · c1ccc1b3
      Mara Bos 提交于
      Provide more context on incorrect inner attribute
      
      Suggest changing an inner attribute into an outer attribute if followed by an item.
      c1ccc1b3
    • B
      Auto merge of #88603 - nikic:llvm-update, r=cuviper · 6b9a227b
      bors 提交于
      Update LLVM submodule
      
      This merges upstream `release/13.x` changes to our fork. In particular, this fixes #85580.
      6b9a227b
    • B
      Auto merge of #88559 - bjorn3:archive_logic_dedup, r=cjgillot · d32dc80b
      bors 提交于
      Move add_rlib and add_native_library to cg_ssa
      
      This deduplicates logic between codegen backends.
      
      cc `@antoyo` and `@khyperia` for cg_gcc and rust-gpu.
      d32dc80b
    • B
      Auto merge of #88469 - patrick-gu:master, r=dtolnay · 0961e688
      bors 提交于
      Add links in docs for some primitive types
      
      This pull request adds additional links in existing documentation of some of the primitive types.
      
      Where items are linked only once, I have used the `[link](destination)` format. For items in `std`, I have linked directly to the HTML, since although the primitives are in `core`, they are not displayed on `core` documentation. I was unsure of what length I should keep lines of documentation to, so I tried to keep them within reason.
      
      Additionally, I have avoided excessively linking to keywords like `self` when they are not relevant to the documentation. I can add these links if it would be an improvement.
      
      I hope this can improve Rust. Please let me know if there's anything I did wrong!
      0961e688
    • N
      Fix 2021 `dyn` suggestion that used code as label · 486d79f1
      Noah Lev 提交于
      The arguments to `span_suggestion` were in the wrong order, so the error
      looked like this:
      
          error[E0783]: trait objects without an explicit `dyn` are deprecated
            --> src/test/ui/editions/dyn-trait-sugg-2021.rs:10:5
             |
          10 |     Foo::hi(123);
             |     ^^^ help: <dyn Foo>: `use `dyn``
      
      Now the error looks like this, as expected:
      
          error[E0783]: trait objects without an explicit `dyn` are deprecated
            --> src/test/ui/editions/dyn-trait-sugg-2021.rs:10:5
             |
          10 |     Foo::hi(123);
             |     ^^^ help: use `dyn`: `<dyn Foo>`
      
      This issue was only present in the 2021 error; the 2018 lint was
      correct.
      486d79f1
    • B
      Auto merge of #88626 - cjgillot:lfitb, r=petrochenkov · 3baa4664
      bors 提交于
      Simplify lifetimes_from_impl_trait_bounds
      
      Part of https://github.com/rust-lang/rust/pull/87234
      
      r? `@petrochenkov`
      3baa4664
    • B
      Auto merge of #88364 - pietroalbini:llvm-install-filecheck, r=Mark-Simulacrum · 5d2a410f
      bors 提交于
      Make sure FileCheck is copied in the LLVM output directory
      
      The tool, which is needed by parts of our test suite, is built as part of LLVM but is *not* copied to the directory containing the output LLVM binaries. This adds a flag to ensure the binary is copied. This shouldn't add any extra built time, as the flag just installs extra binaries that were already compiled.
      
      This is not strictly needed for the test suite to work (as it also checks `build/$target/llvm/build/bin` for the binary), but it allows deleting the `build/$TARGET/llvm/build` directory (which also contains the intermediary build artifacts) without affecting the test suite, saving disk space.
      5d2a410f
    • B
      Auto merge of #88574 - camelid:box-genericarg-const, r=GuillaumeGomez · b89e01cd
      bors 提交于
      rustdoc: Box `GenericArg::Const` to reduce enum size
      
      This should reduce the amount of memory allocated in the common cases
      where the `GenericArg` is a lifetime or type.
      b89e01cd
  4. 04 9月, 2021 13 次提交