Skip to content

Commit b5bd31e

Browse files
committed
Auto merge of #65223 - Centril:rollup-5sdvdni, r=Centril
Rollup of 7 pull requests Successful merges: - #64284 (Warn if include macro fails to include entire file) - #65081 (Remove -Zprofile-queries) - #65133 (typeck: prohibit foreign statics w/ generics) - #65135 (Add check for missing tests for error codes) - #65141 (Replace code of conduct with link) - #65194 (Use structured suggestion for removal of `as_str()` call) - #65213 (Ignore `ExprKind::DropTemps` for some ref suggestions) Failed merges: r? @ghost
2 parents 2748a9f + ff51611 commit b5bd31e

Some content is hidden

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

49 files changed

+582
-1053
lines changed

CODE_OF_CONDUCT.md

+1-38
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,3 @@
11
# The Rust Code of Conduct
22

3-
A version of this document [can be found online](https://www.rust-lang.org/conduct.html).
4-
5-
## Conduct
6-
7-
**Contact**: [[email protected]](mailto:[email protected])
8-
9-
* We are committed to providing a friendly, safe and welcoming environment for all, regardless of level of experience, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other similar characteristic.
10-
* On IRC, please avoid using overtly sexual nicknames or other nicknames that might detract from a friendly, safe and welcoming environment for all.
11-
* Please be kind and courteous. There's no need to be mean or rude.
12-
* Respect that people have differences of opinion and that every design or implementation choice carries a trade-off and numerous costs. There is seldom a right answer.
13-
* Please keep unstructured critique to a minimum. If you have solid ideas you want to experiment with, make a fork and see how it works.
14-
* We will exclude you from interaction if you insult, demean or harass anyone. That is not welcome behavior. We interpret the term "harassment" as including the definition in the <a href="http://citizencodeofconduct.org/">Citizen Code of Conduct</a>; if you have any lack of clarity about what might be included in that concept, please read their definition. In particular, we don't tolerate behavior that excludes people in socially marginalized groups.
15-
* Private harassment is also unacceptable. No matter who you are, if you feel you have been or are being harassed or made uncomfortable by a community member, please contact one of the channel ops or any of the [Rust moderation team][mod_team] immediately. Whether you're a regular contributor or a newcomer, we care about making this community a safe place for you and we've got your back.
16-
* Likewise any spamming, trolling, flaming, baiting or other attention-stealing behavior is not welcome.
17-
18-
## Moderation
19-
20-
21-
These are the policies for upholding our community's standards of conduct. If you feel that a thread needs moderation, please contact the [Rust moderation team][mod_team].
22-
23-
1. Remarks that violate the Rust standards of conduct, including hateful, hurtful, oppressive, or exclusionary remarks, are not allowed. (Cursing is allowed, but never targeting another user, and never in a hateful manner.)
24-
2. Remarks that moderators find inappropriate, whether listed in the code of conduct or not, are also not allowed.
25-
3. Moderators will first respond to such remarks with a warning.
26-
4. If the warning is unheeded, the user will be "kicked," i.e., kicked out of the communication channel to cool off.
27-
5. If the user comes back and continues to make trouble, they will be banned, i.e., indefinitely excluded.
28-
6. Moderators may choose at their discretion to un-ban the user if it was a first offense and they offer the offended party a genuine apology.
29-
7. If a moderator bans someone and you think it was unjustified, please take it up with that moderator, or with a different moderator, **in private**. Complaints about bans in-channel are not allowed.
30-
8. Moderators are held to a higher standard than other community members. If a moderator creates an inappropriate situation, they should expect less leeway than others.
31-
32-
In the Rust community we strive to go the extra step to look out for each other. Don't just aim to be technically unimpeachable, try to be your best self. In particular, avoid flirting with offensive or sensitive issues, particularly if they're off-topic; this all too often leads to unnecessary fights, hurt feelings, and damaged trust; worse, it can drive people away from the community entirely.
33-
34-
And if someone takes issue with something you said or did, resist the urge to be defensive. Just stop doing what it was they complained about and apologize. Even if you feel you were misinterpreted or unfairly accused, chances are good there was something you could've communicated better — remember that it's your responsibility to make your fellow Rustaceans comfortable. Everyone wants to get along and we are all here first and foremost because we want to talk about cool technology. You will find that people will be eager to assume good intent and forgive as long as you earn their trust.
35-
36-
The enforcement policies listed above apply to all official Rust venues; including all communication channels (Rust Discord server, Rust Zulip server); GitHub repositories under rust-lang, rust-lang-nursery, and rust-lang-deprecated; and all forums under rust-lang.org (users.rust-lang.org, internals.rust-lang.org). For other projects adopting the Rust Code of Conduct, please contact the maintainers of those projects for enforcement. If you wish to use this code of conduct for your own project, consider explicitly mentioning your moderation policy or making a copy with your own moderation policy so as to avoid confusion.
37-
38-
*Adapted from the [Node.js Policy on Trolling](https://blog.izs.me/2012/08/policy-on-trolling) as well as the [Contributor Covenant v1.3.0](https://www.contributor-covenant.org/version/1/3/0/).*
39-
40-
[mod_team]: https://www.rust-lang.org/team.html#Moderation-team
3+
The Code of Conduct for this repository [can be found online](https://www.rust-lang.org/conduct.html).

src/librustc/dep_graph/graph.rs

-9
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use std::hash::Hash;
99
use std::collections::hash_map::Entry;
1010
use std::mem;
1111
use crate::ty::{self, TyCtxt};
12-
use crate::util::common::{ProfileQueriesMsg, profq_msg};
1312
use parking_lot::{Mutex, Condvar};
1413

1514
use crate::ich::{StableHashingContext, StableHashingContextProvider, Fingerprint};
@@ -256,10 +255,6 @@ impl DepGraph {
256255
// - we can get an idea of the runtime cost.
257256
let mut hcx = cx.get_stable_hashing_context();
258257

259-
if cfg!(debug_assertions) {
260-
profq_msg(hcx.sess(), ProfileQueriesMsg::TaskBegin(key.clone()))
261-
};
262-
263258
let result = if no_tcx {
264259
task(cx, arg)
265260
} else {
@@ -275,10 +270,6 @@ impl DepGraph {
275270
})
276271
};
277272

278-
if cfg!(debug_assertions) {
279-
profq_msg(hcx.sess(), ProfileQueriesMsg::TaskEnd)
280-
};
281-
282273
let current_fingerprint = hash_result(&mut hcx, &result);
283274

284275
let dep_node_index = finish_task_and_alloc_depnode(

src/librustc/error_codes.rs

+11-7
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,6 @@ fn main() {
466466
```
467467
"##,
468468

469-
470469
E0139: r##"
471470
#### Note: this error code is no longer emitted by the compiler.
472471
@@ -1562,7 +1561,9 @@ fn transmute_lifetime<'a, T>(t: &'a (T,)) -> &'a T {
15621561
"##,
15631562

15641563
E0496: r##"
1565-
A lifetime name is shadowing another lifetime name. Erroneous code example:
1564+
A lifetime name is shadowing another lifetime name.
1565+
1566+
Erroneous code example:
15661567
15671568
```compile_fail,E0496
15681569
struct Foo<'a> {
@@ -1594,8 +1595,11 @@ fn main() {
15941595
"##,
15951596

15961597
E0497: r##"
1597-
A stability attribute was used outside of the standard library. Erroneous code
1598-
example:
1598+
#### Note: this error code is no longer emitted by the compiler.
1599+
1600+
A stability attribute was used outside of the standard library.
1601+
1602+
Erroneous code example:
15991603
16001604
```compile_fail
16011605
#[stable] // error: stability attributes may not be used outside of the
@@ -2125,7 +2129,7 @@ rejected in your own crates.
21252129
// E0272, // on_unimplemented #0
21262130
// E0273, // on_unimplemented #1
21272131
// E0274, // on_unimplemented #2
2128-
E0278, // requirement is not satisfied
2132+
// E0278, // requirement is not satisfied
21292133
E0279, // requirement is not satisfied
21302134
E0280, // requirement is not satisfied
21312135
// E0285, // overflow evaluation builtin bounds
@@ -2165,10 +2169,10 @@ rejected in your own crates.
21652169
E0687, // in-band lifetimes cannot be used in `fn`/`Fn` syntax
21662170
E0688, // in-band lifetimes cannot be mixed with explicit lifetime binders
21672171
E0697, // closures cannot be static
2168-
E0707, // multiple elided lifetimes used in arguments of `async fn`
2172+
// E0707, // multiple elided lifetimes used in arguments of `async fn`
21692173
E0708, // `async` non-`move` closures with parameters are not currently
21702174
// supported
2171-
E0709, // multiple different lifetimes used in arguments of `async fn`
2175+
// E0709, // multiple different lifetimes used in arguments of `async fn`
21722176
E0710, // an unknown tool name found in scoped lint
21732177
E0711, // a feature has been declared with conflicting stability attributes
21742178
// E0702, // replaced with a generic attribute input check

src/librustc/hir/mod.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1548,6 +1548,19 @@ impl Expr {
15481548
}
15491549
}
15501550
}
1551+
1552+
/// If `Self.kind` is `ExprKind::DropTemps(expr)`, drill down until we get a non-`DropTemps`
1553+
/// `Expr`. This is used in suggestions to ignore this `ExprKind` as it is semantically
1554+
/// silent, only signaling the ownership system. By doing this, suggestions that check the
1555+
/// `ExprKind` of any given `Expr` for presentation don't have to care about `DropTemps`
1556+
/// beyond remembering to call this function before doing analysis on it.
1557+
pub fn peel_drop_temps(&self) -> &Self {
1558+
let mut expr = self;
1559+
while let ExprKind::DropTemps(inner) = &expr.kind {
1560+
expr = inner;
1561+
}
1562+
expr
1563+
}
15511564
}
15521565

15531566
impl fmt::Debug for Expr {

src/librustc/lint/builtin.rs

+6
Original file line numberDiff line numberDiff line change
@@ -368,6 +368,12 @@ pub mod parser {
368368
Allow,
369369
"possible meta-variable misuse at macro definition"
370370
}
371+
372+
declare_lint! {
373+
pub INCOMPLETE_INCLUDE,
374+
Deny,
375+
"trailing content in included file"
376+
}
371377
}
372378

373379
declare_lint! {

src/librustc/lint/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ use crate::hir::intravisit;
2828
use crate::hir;
2929
use crate::lint::builtin::BuiltinLintDiagnostics;
3030
use crate::lint::builtin::parser::{ILL_FORMED_ATTRIBUTE_INPUT, META_VARIABLE_MISUSE};
31+
use crate::lint::builtin::parser::INCOMPLETE_INCLUDE;
3132
use crate::session::{Session, DiagnosticMessageId};
3233
use crate::ty::TyCtxt;
3334
use crate::ty::query::Providers;
@@ -83,6 +84,7 @@ impl Lint {
8384
match lint_id {
8485
BufferedEarlyLintId::IllFormedAttributeInput => ILL_FORMED_ATTRIBUTE_INPUT,
8586
BufferedEarlyLintId::MetaVariableMisuse => META_VARIABLE_MISUSE,
87+
BufferedEarlyLintId::IncompleteInclude => INCOMPLETE_INCLUDE,
8688
}
8789
}
8890

src/librustc/session/config.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1316,10 +1316,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
13161316
"dump the dependency graph to $RUST_DEP_GRAPH (default: /tmp/dep_graph.gv)"),
13171317
query_dep_graph: bool = (false, parse_bool, [UNTRACKED],
13181318
"enable queries of the dependency graph for regression testing"),
1319-
profile_queries: bool = (false, parse_bool, [UNTRACKED],
1320-
"trace and profile the queries of the incremental compilation framework"),
1321-
profile_queries_and_keys: bool = (false, parse_bool, [UNTRACKED],
1322-
"trace and profile the queries and keys of the incremental compilation framework"),
13231319
no_analysis: bool = (false, parse_bool, [UNTRACKED],
13241320
"parse and expand the source, but run no analysis"),
13251321
extra_plugins: Vec<String> = (Vec::new(), parse_list, [TRACKED],

src/librustc/session/mod.rs

+1-13
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ use crate::session::config::{OutputType, PrintRequest, SwitchWithOptPath};
1111
use crate::session::search_paths::{PathKind, SearchPath};
1212
use crate::util::nodemap::{FxHashMap, FxHashSet};
1313
use crate::util::common::{duration_to_secs_str, ErrorReported};
14-
use crate::util::common::ProfileQueriesMsg;
1514

1615
use rustc_data_structures::base_n;
1716
use rustc_data_structures::sync::{
@@ -46,7 +45,7 @@ use std::fmt;
4645
use std::io::Write;
4746
use std::path::PathBuf;
4847
use std::time::Duration;
49-
use std::sync::{Arc, mpsc};
48+
use std::sync::Arc;
5049

5150
mod code_stats;
5251
pub mod config;
@@ -125,9 +124,6 @@ pub struct Session {
125124
/// `-Zquery-dep-graph` is specified.
126125
pub cgu_reuse_tracker: CguReuseTracker,
127126

128-
/// Used by `-Z profile-queries` in `util::common`.
129-
pub profile_channel: Lock<Option<mpsc::Sender<ProfileQueriesMsg>>>,
130-
131127
/// Used by `-Z self-profile`.
132128
pub prof: SelfProfilerRef,
133129

@@ -509,13 +505,6 @@ impl Session {
509505
pub fn time_extended(&self) -> bool {
510506
self.opts.debugging_opts.time_passes
511507
}
512-
pub fn profile_queries(&self) -> bool {
513-
self.opts.debugging_opts.profile_queries
514-
|| self.opts.debugging_opts.profile_queries_and_keys
515-
}
516-
pub fn profile_queries_and_keys(&self) -> bool {
517-
self.opts.debugging_opts.profile_queries_and_keys
518-
}
519508
pub fn instrument_mcount(&self) -> bool {
520509
self.opts.debugging_opts.instrument_mcount
521510
}
@@ -1234,7 +1223,6 @@ fn build_session_(
12341223
incr_comp_session: OneThread::new(RefCell::new(IncrCompSession::NotInitialized)),
12351224
cgu_reuse_tracker,
12361225
prof: SelfProfilerRef::new(self_profiler),
1237-
profile_channel: Lock::new(None),
12381226
perf_stats: PerfStats {
12391227
symbol_hash_time: Lock::new(Duration::from_secs(0)),
12401228
decode_def_path_tables_time: Lock::new(Duration::from_secs(0)),

src/librustc/ty/query/on_disk_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ where
10751075
let desc = &format!("encode_query_results for {}",
10761076
::std::any::type_name::<Q>());
10771077

1078-
time_ext(tcx.sess.time_extended(), Some(tcx.sess), desc, || {
1078+
time_ext(tcx.sess.time_extended(), desc, || {
10791079
let shards = Q::query_cache(tcx).lock_shards();
10801080
assert!(shards.iter().all(|shard| shard.active.is_empty()));
10811081
for (key, entry) in shards.iter().flat_map(|shard| shard.results.iter()) {

src/librustc/ty/query/plumbing.rs

-49
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ use crate::ty::query::Query;
99
use crate::ty::query::config::{QueryConfig, QueryDescription};
1010
use crate::ty::query::job::{QueryJob, QueryResult, QueryInfo};
1111

12-
use crate::util::common::{profq_msg, ProfileQueriesMsg, QueryMsg};
13-
1412
use errors::DiagnosticBuilder;
1513
use errors::Level;
1614
use errors::Diagnostic;
@@ -62,33 +60,6 @@ impl<'tcx, M: QueryConfig<'tcx>> Default for QueryCache<'tcx, M> {
6260
}
6361
}
6462

65-
// If enabled, sends a message to the profile-queries thread.
66-
macro_rules! profq_msg {
67-
($tcx:expr, $msg:expr) => {
68-
if cfg!(debug_assertions) {
69-
if $tcx.sess.profile_queries() {
70-
profq_msg($tcx.sess, $msg)
71-
}
72-
}
73-
}
74-
}
75-
76-
// If enabled, formats a key using its debug string, which can be
77-
// expensive to compute (in terms of time).
78-
macro_rules! profq_query_msg {
79-
($query:expr, $tcx:expr, $key:expr) => {{
80-
let msg = if cfg!(debug_assertions) {
81-
if $tcx.sess.profile_queries_and_keys() {
82-
Some(format!("{:?}", $key))
83-
} else { None }
84-
} else { None };
85-
QueryMsg {
86-
query: $query,
87-
msg,
88-
}
89-
}}
90-
}
91-
9263
/// A type representing the responsibility to execute the job in the `job` field.
9364
/// This will poison the relevant query if dropped.
9465
pub(super) struct JobOwner<'a, 'tcx, Q: QueryDescription<'tcx>> {
@@ -111,7 +82,6 @@ impl<'a, 'tcx, Q: QueryDescription<'tcx>> JobOwner<'a, 'tcx, Q> {
11182
loop {
11283
let mut lock = cache.get_shard_by_value(key).lock();
11384
if let Some(value) = lock.results.get(key) {
114-
profq_msg!(tcx, ProfileQueriesMsg::CacheHit);
11585
tcx.prof.query_cache_hit(Q::NAME);
11686
let result = (value.value.clone(), value.index);
11787
#[cfg(debug_assertions)]
@@ -358,13 +328,6 @@ impl<'tcx> TyCtxt<'tcx> {
358328
key,
359329
span);
360330

361-
profq_msg!(self,
362-
ProfileQueriesMsg::QueryBegin(
363-
span.data(),
364-
profq_query_msg!(Q::NAME.as_str(), self, key),
365-
)
366-
);
367-
368331
let job = match JobOwner::try_get(self, span, &key) {
369332
TryGetJob::NotYetStarted(job) => job,
370333
TryGetJob::Cycle(result) => return result,
@@ -383,7 +346,6 @@ impl<'tcx> TyCtxt<'tcx> {
383346

384347
if Q::ANON {
385348

386-
profq_msg!(self, ProfileQueriesMsg::ProviderBegin);
387349
let prof_timer = self.prof.query_provider(Q::NAME);
388350

389351
let ((result, dep_node_index), diagnostics) = with_diagnostics(|diagnostics| {
@@ -395,7 +357,6 @@ impl<'tcx> TyCtxt<'tcx> {
395357
});
396358

397359
drop(prof_timer);
398-
profq_msg!(self, ProfileQueriesMsg::ProviderEnd);
399360

400361
self.dep_graph.read_index(dep_node_index);
401362

@@ -468,7 +429,6 @@ impl<'tcx> TyCtxt<'tcx> {
468429
};
469430

470431
let result = if let Some(result) = result {
471-
profq_msg!(self, ProfileQueriesMsg::CacheHit);
472432
result
473433
} else {
474434
// We could not load a result from the on-disk cache, so
@@ -542,7 +502,6 @@ impl<'tcx> TyCtxt<'tcx> {
542502
- dep-node: {:?}",
543503
key, dep_node);
544504

545-
profq_msg!(self, ProfileQueriesMsg::ProviderBegin);
546505
let prof_timer = self.prof.query_provider(Q::NAME);
547506

548507
let ((result, dep_node_index), diagnostics) = with_diagnostics(|diagnostics| {
@@ -564,7 +523,6 @@ impl<'tcx> TyCtxt<'tcx> {
564523
});
565524

566525
drop(prof_timer);
567-
profq_msg!(self, ProfileQueriesMsg::ProviderEnd);
568526

569527
if unlikely!(!diagnostics.is_empty()) {
570528
if dep_node.kind != crate::dep_graph::DepKind::Null {
@@ -606,19 +564,12 @@ impl<'tcx> TyCtxt<'tcx> {
606564

607565
let _ = self.get_query::<Q>(DUMMY_SP, key);
608566
} else {
609-
profq_msg!(self, ProfileQueriesMsg::CacheHit);
610567
self.prof.query_cache_hit(Q::NAME);
611568
}
612569
}
613570

614571
#[allow(dead_code)]
615572
fn force_query<Q: QueryDescription<'tcx>>(self, key: Q::Key, span: Span, dep_node: DepNode) {
616-
profq_msg!(
617-
self,
618-
ProfileQueriesMsg::QueryBegin(span.data(),
619-
profq_query_msg!(Q::NAME.as_str(), self, key))
620-
);
621-
622573
// We may be concurrently trying both execute and force a query.
623574
// Ensure that only one of them runs the query.
624575
let job = match JobOwner::try_get(self, span, &key) {

0 commit comments

Comments
 (0)