Camille GILLOT
682f57656e
Do not create a new NodeId when not used.
2022-07-06 23:10:36 +02:00
Camille GILLOT
fb060fb774
Remove useless branch.
2022-07-06 23:09:29 +02:00
Camille GILLOT
250c71b85d
Make AST lowering a query.
2022-07-06 23:04:55 +02:00
Camille GILLOT
43bb31b954
Allow to create definitions inside the query system.
2022-07-06 22:50:55 +02:00
bors
7665c35430
Auto merge of #98987 - GuillaumeGomez:rollup-bcy32bp, r=GuillaumeGomez
...
Rollup of 7 pull requests
Successful merges:
- #96935 (Allow arithmetic and certain bitwise ops on AtomicPtr)
- #98519 (Replace some `guess_head_span` with `def_span`)
- #98911 (rustdoc: filter '_ lifetimes from ty::Generics)
- #98939 (rustdoc: Add more semantic information to impl IDs)
- #98971 (Fix typo in file descriptor docs)
- #98983 (docs: Add overview of `rustc_middle::mir::TerminatorKind`)
- #98984 (Remove erroneous doc comment)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
2022-07-06 20:09:41 +00:00
xFrednet
a2810cd277
Fix #[expect]
and #[allow]
for clippy::duplicate_mod
2022-07-06 22:01:40 +02:00
xFrednet
c8b4873cf9
Add function to manually fulfill lint expectations (RFC 2383)
2022-07-06 22:01:39 +02:00
xFrednet
6c6388cd6c
Document, that some lint have to be expected on the crate level (RFC 2383)
...
Examples: NON_ASCII_IDENTS, UNCOMMON_CODEPOINTS, CONFUSABLE_IDENTS, MIXED_SCRIPT_CONFUSABLES
2022-07-06 22:01:39 +02:00
Chris Denton
91a640176a
Fix ui-fulldep test
2022-07-06 19:50:37 +01:00
Guillaume Gomez
4b88cba353
Rollup merge of #98984 - pierwill:patch-4, r=RalfJung
...
Remove erroneous doc comment
Fixes the formatting issue shown here:
<img width="803" alt="Screen Shot 2022-07-06 at 12 50 56 PM" src="https://user-images.githubusercontent.com/19642016/177612734-2d881c6a-2850-4c1b-8f1a-08339ad5bfbc.png ">
2022-07-06 20:43:29 +02:00
Guillaume Gomez
47de8e96f8
Rollup merge of #98983 - pierwill:patch-3, r=RalfJung
...
docs: Add overview of `rustc_middle::mir::TerminatorKind`
2022-07-06 20:43:28 +02:00
Guillaume Gomez
e8ba11362b
Rollup merge of #98971 - MinnDevelopment:patch-1, r=Dylan-DPC
...
Fix typo in file descriptor docs
2022-07-06 20:43:28 +02:00
Guillaume Gomez
77ec591727
Rollup merge of #98939 - GuillaumeGomez:rustdoc-disamb-impls, r=notriddle
...
rustdoc: Add more semantic information to impl IDs
Take over of #92745 .
I fixed the last remaining issue for the links in the sidebar (mentioned by `@jsha)` and fixed the few links broken in the std/core docs.
cc `@camelid`
r? `@notriddle`
2022-07-06 20:43:27 +02:00
Guillaume Gomez
d87bf24925
Rollup merge of #98911 - notriddle:notriddle/rustdoc-string-impl, r=GuillaumeGomez
...
rustdoc: filter '_ lifetimes from ty::Generics
Fixes a weirdly-rendered section of the std::string::String docs.
Before:
![image](https://user-images.githubusercontent.com/1593513/177256873-20b9cf6e-2429-4865-853b-b269d74672f4.png )
After:
![image](https://user-images.githubusercontent.com/1593513/177256900-ef3efd17-f624-40c5-af90-fe709ec034f2.png )
2022-07-06 20:43:25 +02:00
Guillaume Gomez
d712f67897
Rollup merge of #98519 - TaKO8Ki:add-head-span-field-to-item-and-impl-item, r=cjgillot
...
Replace some `guess_head_span` with `def_span`
This patch fixes a part of #97417 .
r? `@cjgillot`
2022-07-06 20:43:24 +02:00
Guillaume Gomez
4755173cf6
Rollup merge of #96935 - thomcc:atomicptr-strict-prov, r=dtolnay
...
Allow arithmetic and certain bitwise ops on AtomicPtr
This is mainly to support migrating from `AtomicUsize`, for the strict provenance experiment.
This is a pretty dubious set of APIs, but it should be sufficient to allow code that's using `AtomicUsize` to manipulate a tagged pointer atomically. It's under a new feature gate, `#![feature(strict_provenance_atomic_ptr)]`, but I'm not sure if it needs its own tracking issue. I'm happy to make one, but it's not clear that it's needed.
I'm unsure if it needs changes in the various non-LLVM backends. Because we just cast things to integers anyway (and were already doing so), I doubt it.
API change proposal: https://github.com/rust-lang/libs-team/issues/60
Fixes #95492
2022-07-06 20:43:23 +02:00
pierwill
deaa92b34b
Fix missing word in comment
2022-07-06 13:26:26 -05:00
Ralf Jung
dc9e0bf782
fix a strange ConstProp ICE
2022-07-06 14:11:44 -04:00
Ralf Jung
e685530b07
deduplicate some copy_op code
2022-07-06 14:11:41 -04:00
Ralf Jung
924a4cd008
bless
2022-07-06 14:03:20 -04:00
Ralf Jung
47cb276ab8
support passing unsized fn arguments
2022-07-06 14:03:20 -04:00
Ralf Jung
8ef0caa23c
interpret: remove LocalValue::Unallocated, add Operand::Uninit
...
Operand::Uninit is an *allocated* operand that is fully uninitialized.
This lets us lazily allocate the actual backing store of *all* locals (no matter their ABI).
I also reordered things in pop_stack_frame at the same time.
I should probably have made that a separate commit...
2022-07-06 14:03:20 -04:00
Nilstrieb
211fb66810
Fix stacked borrows violation in rustc_arena
...
There was a problem with storing a `Box<T>` in a struct, where
the current rules would invalidate the value. this makes it store
a raw pointer instead, circumventing the aliasing problems.
2022-07-06 20:02:45 +02:00
pierwill
482bb39032
Remove erroneous doc comment
2022-07-06 12:52:02 -05:00
pierwill
fb579435a5
docs: Add overview of rustc_middle::mir::TerminatorKind
2022-07-06 12:48:19 -05:00
bors
3dcb616888
Auto merge of #98959 - cjgillot:late-bound-order, r=michaelwoerister
...
Return a FxIndexSet in is_late_bound query.
This return value is iterated upon by borrowck, hence the need to preserve
a deterministic iteration order.
Fixes https://github.com/rust-lang/rust/issues/98890
Affects https://github.com/rust-lang/rust/issues/96655
I don't know if this supersedes https://github.com/rust-lang/rust/pull/98924 or fixes an unrelated bug.
r? `@michaelwoerister`
This may deserve a backport.
2022-07-06 17:38:48 +00:00
Ralf Jung
a73e2557c7
fix ICE in ConstProp
2022-07-06 13:28:42 -04:00
David Wood
44c1fcc04d
session: output-width
-> diagnostic-width
...
Rename the `--output-width` flag to `--diagnostic-width` as this appears
to be the preferred name within the compiler team.
Signed-off-by: David Wood <david.wood@huawei.com>
2022-07-06 17:43:33 +01:00
Chris Denton
a8ffc7fd45
Tests for unsound Windows file methods
2022-07-06 17:40:21 +01:00
David Wood
cd23af6793
session: terminal-width
-> output-width
...
Rename the `--terminal-width` flag to `--output-width` as the behaviour
doesn't just apply to terminals (and so is slightly less accurate).
Signed-off-by: David Wood <david.wood@huawei.com>
2022-07-06 17:38:18 +01:00
David Wood
e5288842fa
sess: stabilize --terminal-width
...
Formerly `-Zterminal-width`, `--terminal-width` allows the user or build
tool to inform rustc of the width of the terminal so that diagnostics
can be truncated.
Signed-off-by: David Wood <david.wood@huawei.com>
2022-07-06 17:32:59 +01:00
pierwill
8c9a130056
Edit rustc_mir_dataflow::framework
documentation
2022-07-06 11:20:40 -05:00
Chris Denton
3ae47e76a8
Windows: Fallback for overlapped I/O
...
Try waiting on the file handle once. If that fails then give up.
2022-07-06 17:06:33 +01:00
Chris Denton
ae60dbdcac
Use rtabort!
instead of process::abort
2022-07-06 16:36:52 +01:00
Ralf Jung
dfd243e27c
add track_caller to some interpreter functions
2022-07-06 11:27:54 -04:00
bors
049308cf8b
Auto merge of #98970 - Dylan-DPC:rollup-j0od37w, r=Dylan-DPC
...
Rollup of 5 pull requests
Successful merges:
- #98881 (Only compute DefKind through the query.)
- #98884 (macros: `LintDiagnostic` derive)
- #98964 (fix typo in function name)
- #98967 (fix typo in note about multiple inaccessible type aliases)
- #98968 (assert Scalar sanity)
Failed merges:
r? `@ghost`
`@rustbot` modify labels: rollup
2022-07-06 15:10:37 +00:00
Ralf Jung
27b7b3dcd6
interpret: use AllocRange in UninitByteAccess
...
also use nice new format string syntax in interpret/error.rs
2022-07-06 10:55:06 -04:00
Guillaume Gomez
7967152eee
Add test for inherent impls anchors
2022-07-06 14:58:46 +02:00
bors
0aef72017f
Auto merge of #98567 - Patryk27:update-llvm, r=nikic
...
Update llvm-project
Closes https://github.com/rust-lang/rust/issues/98167 🙂
2022-07-06 12:29:40 +00:00
Nixon Enraght-Moony
02fb345964
Suggest using block for extern "abi" fn
with no body
2022-07-06 13:27:53 +01:00
Guillaume Gomez
7d205afae4
Don't generate anchors on inherent impl methods
2022-07-06 14:07:19 +02:00
David Wood
e1065239fe
ssa: abort if dwarf packaging fails
...
This should have been here from the start... oops. When `thorin` fails
to package a DWARF package, that should fail compilation.
2022-07-06 11:15:13 +01:00
David Wood
fc641f21c2
ssa: remove dwo of metadata and allocator module
...
Compiling with `-Csplit-debuginfo=packed` was leaving behind `.dwo`
files because either the metadata or allocator module contained a DWARF
object which was not being removed by the
`maybe_remove_temps_from_module` closure.
2022-07-06 11:15:13 +01:00
David Wood
8371a036ea
incr: cache dwarf objects in work products
...
Cache DWARF objects alongside object files in work products when those
exist so that DWARF object files are available for thorin in packed mode
in incremental scenarios.
Signed-off-by: David Wood <david.wood@huawei.com>
2022-07-06 11:15:13 +01:00
Takayuki Maeda
b730bc9f20
fix miri-opt tests
2022-07-06 19:09:50 +09:00
Takayuki Maeda
0541b4e034
use named_span
in case of tuple variant
2022-07-06 19:09:50 +09:00
Takayuki Maeda
3d1b679a3c
add Node::Variant
to Map::opt_span
2022-07-06 19:09:50 +09:00
Takayuki Maeda
83dea35384
replace guess_head_span
with def_span
2022-07-06 19:09:47 +09:00
Florian Spieß
75967cdad5
Fix typo in file descriptor docs
2022-07-06 11:57:58 +02:00
Michael Woerister
8ff4115b5b
Add link to issue for src/test/incremental/async-lifetimes.rs
2022-07-06 11:32:55 +02:00