Skip to content

Commit 8f349be

Browse files
committed
Auto merge of rust-lang#82896 - Dylan-DPC:rollup-9setmme, r=Dylan-DPC
Rollup of 10 pull requests Successful merges: - rust-lang#82047 (bypass auto_da_alloc for metadata files) - rust-lang#82415 (expand: Refactor module loading) - rust-lang#82557 (Add natvis for Result, NonNull, CString, CStr, and Cow) - rust-lang#82613 (Remove Item::kind, use tagged enum. Rename variants to match) - rust-lang#82642 (Fix jemalloc usage on OSX) - rust-lang#82682 (Implement built-in attribute macro `#[cfg_eval]` + some refactoring) - rust-lang#82684 (Disable destination propagation on all mir-opt-levels) - rust-lang#82755 (Refactor confirm_builtin_call, remove partial if) - rust-lang#82857 (Edit ructc_ast_lowering docs) - rust-lang#82862 (Generalize Write impl for Vec<u8> to Vec<u8, A>) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
2 parents 1d6b0f6 + 3b0a02a commit 8f349be

Some content is hidden

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

62 files changed

+1365
-858
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -4568,6 +4568,7 @@ name = "rustdoc-json-types"
45684568
version = "0.1.0"
45694569
dependencies = [
45704570
"serde",
4571+
"serde_json",
45714572
]
45724573

45734574
[[package]]

compiler/rustc/src/main.rs

+14
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ fn main() {
2424
static _F5: unsafe extern "C" fn(*mut c_void, usize) -> *mut c_void = jemalloc_sys::realloc;
2525
#[used]
2626
static _F6: unsafe extern "C" fn(*mut c_void) = jemalloc_sys::free;
27+
28+
// On OSX, jemalloc doesn't directly override malloc/free, but instead
29+
// registers itself with the allocator's zone APIs in a ctor. However,
30+
// the linker doesn't seem to consider ctors as "used" when statically
31+
// linking, so we need to explicitly depend on the function.
32+
#[cfg(target_os = "macos")]
33+
{
34+
extern "C" {
35+
fn _rjem_je_zone_register();
36+
}
37+
38+
#[used]
39+
static _F7: unsafe extern "C" fn() = _rjem_je_zone_register;
40+
}
2741
}
2842

2943
rustc_driver::set_sigpipe_handler();

compiler/rustc_ast/src/ast.rs

-10
Original file line numberDiff line numberDiff line change
@@ -915,16 +915,6 @@ impl Stmt {
915915
}
916916
}
917917

918-
pub fn tokens_mut(&mut self) -> Option<&mut LazyTokenStream> {
919-
match self.kind {
920-
StmtKind::Local(ref mut local) => local.tokens.as_mut(),
921-
StmtKind::Item(ref mut item) => item.tokens.as_mut(),
922-
StmtKind::Expr(ref mut expr) | StmtKind::Semi(ref mut expr) => expr.tokens.as_mut(),
923-
StmtKind::Empty => None,
924-
StmtKind::MacCall(ref mut mac) => mac.tokens.as_mut(),
925-
}
926-
}
927-
928918
pub fn has_trailing_semicolon(&self) -> bool {
929919
match &self.kind {
930920
StmtKind::Semi(_) => true,

compiler/rustc_ast/src/ast_like.rs

+34-54
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,7 @@ use super::{AttrVec, Attribute, Stmt, StmtKind};
1111
pub trait AstLike: Sized {
1212
fn attrs(&self) -> &[Attribute];
1313
fn visit_attrs(&mut self, f: impl FnOnce(&mut Vec<Attribute>));
14-
/// Called by `Parser::collect_tokens` to store the collected
15-
/// tokens inside an AST node
16-
fn finalize_tokens(&mut self, _tokens: LazyTokenStream) {
17-
// This default impl makes this trait easier to implement
18-
// in tools like `rust-analyzer`
19-
panic!("`finalize_tokens` is not supported!")
20-
}
14+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>>;
2115
}
2216

2317
impl<T: AstLike + 'static> AstLike for P<T> {
@@ -27,8 +21,8 @@ impl<T: AstLike + 'static> AstLike for P<T> {
2721
fn visit_attrs(&mut self, f: impl FnOnce(&mut Vec<Attribute>)) {
2822
(**self).visit_attrs(f);
2923
}
30-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
31-
(**self).finalize_tokens(tokens)
24+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
25+
(**self).tokens_mut()
3226
}
3327
}
3428

@@ -42,12 +36,12 @@ fn visit_attrvec(attrs: &mut AttrVec, f: impl FnOnce(&mut Vec<Attribute>)) {
4236

4337
impl AstLike for StmtKind {
4438
fn attrs(&self) -> &[Attribute] {
45-
match *self {
46-
StmtKind::Local(ref local) => local.attrs(),
47-
StmtKind::Expr(ref expr) | StmtKind::Semi(ref expr) => expr.attrs(),
48-
StmtKind::Item(ref item) => item.attrs(),
39+
match self {
40+
StmtKind::Local(local) => local.attrs(),
41+
StmtKind::Expr(expr) | StmtKind::Semi(expr) => expr.attrs(),
42+
StmtKind::Item(item) => item.attrs(),
4943
StmtKind::Empty => &[],
50-
StmtKind::MacCall(ref mac) => &*mac.attrs,
44+
StmtKind::MacCall(mac) => &mac.attrs,
5145
}
5246
}
5347

@@ -60,17 +54,14 @@ impl AstLike for StmtKind {
6054
StmtKind::MacCall(mac) => visit_attrvec(&mut mac.attrs, f),
6155
}
6256
}
63-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
64-
let stmt_tokens = match self {
65-
StmtKind::Local(ref mut local) => &mut local.tokens,
66-
StmtKind::Item(ref mut item) => &mut item.tokens,
67-
StmtKind::Expr(ref mut expr) | StmtKind::Semi(ref mut expr) => &mut expr.tokens,
68-
StmtKind::Empty => return,
69-
StmtKind::MacCall(ref mut mac) => &mut mac.tokens,
70-
};
71-
if stmt_tokens.is_none() {
72-
*stmt_tokens = Some(tokens);
73-
}
57+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
58+
Some(match self {
59+
StmtKind::Local(local) => &mut local.tokens,
60+
StmtKind::Item(item) => &mut item.tokens,
61+
StmtKind::Expr(expr) | StmtKind::Semi(expr) => &mut expr.tokens,
62+
StmtKind::Empty => return None,
63+
StmtKind::MacCall(mac) => &mut mac.tokens,
64+
})
7465
}
7566
}
7667

@@ -82,8 +73,8 @@ impl AstLike for Stmt {
8273
fn visit_attrs(&mut self, f: impl FnOnce(&mut Vec<Attribute>)) {
8374
self.kind.visit_attrs(f);
8475
}
85-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
86-
self.kind.finalize_tokens(tokens)
76+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
77+
self.kind.tokens_mut()
8778
}
8879
}
8980

@@ -92,17 +83,13 @@ impl AstLike for Attribute {
9283
&[]
9384
}
9485
fn visit_attrs(&mut self, _f: impl FnOnce(&mut Vec<Attribute>)) {}
95-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
96-
match &mut self.kind {
97-
AttrKind::Normal(_, attr_tokens) => {
98-
if attr_tokens.is_none() {
99-
*attr_tokens = Some(tokens);
100-
}
86+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
87+
Some(match &mut self.kind {
88+
AttrKind::Normal(_, tokens) => tokens,
89+
kind @ AttrKind::DocComment(..) => {
90+
panic!("Called tokens_mut on doc comment attr {:?}", kind)
10191
}
102-
AttrKind::DocComment(..) => {
103-
panic!("Called finalize_tokens on doc comment attr {:?}", self)
104-
}
105-
}
92+
})
10693
}
10794
}
10895

@@ -115,10 +102,8 @@ impl<T: AstLike> AstLike for Option<T> {
115102
inner.visit_attrs(f);
116103
}
117104
}
118-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
119-
if let Some(inner) = self {
120-
inner.finalize_tokens(tokens);
121-
}
105+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
106+
self.as_mut().and_then(|inner| inner.tokens_mut())
122107
}
123108
}
124109

@@ -152,11 +137,8 @@ macro_rules! derive_has_tokens_and_attrs {
152137
VecOrAttrVec::visit(&mut self.attrs, f)
153138
}
154139

155-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
156-
if self.tokens.is_none() {
157-
self.tokens = Some(tokens);
158-
}
159-
140+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
141+
Some(&mut self.tokens)
160142
}
161143
}
162144
)* }
@@ -173,7 +155,9 @@ macro_rules! derive_has_attrs_no_tokens {
173155
VecOrAttrVec::visit(&mut self.attrs, f)
174156
}
175157

176-
fn finalize_tokens(&mut self, _tokens: LazyTokenStream) {}
158+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
159+
None
160+
}
177161
}
178162
)* }
179163
}
@@ -185,14 +169,10 @@ macro_rules! derive_has_tokens_no_attrs {
185169
&[]
186170
}
187171

188-
fn visit_attrs(&mut self, _f: impl FnOnce(&mut Vec<Attribute>)) {
189-
}
190-
191-
fn finalize_tokens(&mut self, tokens: LazyTokenStream) {
192-
if self.tokens.is_none() {
193-
self.tokens = Some(tokens);
194-
}
172+
fn visit_attrs(&mut self, _f: impl FnOnce(&mut Vec<Attribute>)) {}
195173

174+
fn tokens_mut(&mut self) -> Option<&mut Option<LazyTokenStream>> {
175+
Some(&mut self.tokens)
196176
}
197177
}
198178
)* }

compiler/rustc_ast_lowering/src/lib.rs

+9-7
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//! For the simpler lowering steps, IDs and spans should be preserved. Unlike
1313
//! expansion we do not preserve the process of lowering in the spans, so spans
1414
//! should not be modified here. When creating a new node (as opposed to
15-
//! 'folding' an existing one), then you create a new ID using `next_id()`.
15+
//! "folding" an existing one), create a new ID using `next_id()`.
1616
//!
1717
//! You must ensure that IDs are unique. That means that you should only use the
1818
//! ID from an AST node in a single HIR node (you can assume that AST node-IDs
@@ -26,7 +26,7 @@
2626
//! span and spans don't need to be kept in order, etc. Where code is preserved
2727
//! by lowering, it should have the same span as in the AST. Where HIR nodes are
2828
//! new it is probably best to give a span for the whole AST node being lowered.
29-
//! All nodes should have real spans, don't use dummy spans. Tools are likely to
29+
//! All nodes should have real spans; don't use dummy spans. Tools are likely to
3030
//! get confused if the spans from leaf AST nodes occur in multiple places
3131
//! in the HIR, especially for multiple identifiers.
3232
@@ -95,7 +95,7 @@ struct LoweringContext<'a, 'hir: 'a> {
9595
/// librustc_middle is independent of the parser, we use dynamic dispatch here.
9696
nt_to_tokenstream: NtToTokenstream,
9797

98-
/// Used to allocate HIR nodes
98+
/// Used to allocate HIR nodes.
9999
arena: &'hir Arena<'hir>,
100100

101101
/// The items being lowered are collected here.
@@ -128,7 +128,7 @@ struct LoweringContext<'a, 'hir: 'a> {
128128
is_in_trait_impl: bool,
129129
is_in_dyn_type: bool,
130130

131-
/// What to do when we encounter either an "anonymous lifetime
131+
/// What to do when we encounter an "anonymous lifetime
132132
/// reference". The term "anonymous" is meant to encompass both
133133
/// `'_` lifetimes as well as fully elided cases where nothing is
134134
/// written at all (e.g., `&T` or `std::cell::Ref<T>`).
@@ -238,11 +238,13 @@ enum ImplTraitContext<'b, 'a> {
238238
OtherOpaqueTy {
239239
/// Set of lifetimes that this opaque type can capture, if it uses
240240
/// them. This includes lifetimes bound since we entered this context.
241-
/// For example, in
241+
/// For example:
242242
///
243+
/// ```
243244
/// type A<'b> = impl for<'a> Trait<'a, Out = impl Sized + 'a>;
245+
/// ```
244246
///
245-
/// the inner opaque type captures `'a` because it uses it. It doesn't
247+
/// Here the inner opaque type captures `'a` because it uses it. It doesn't
246248
/// need to capture `'b` because it already inherits the lifetime
247249
/// parameter from `A`.
248250
// FIXME(impl_trait): but `required_region_bounds` will ICE later
@@ -2110,7 +2112,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
21102112
hir::FnRetTy::Return(self.arena.alloc(opaque_ty))
21112113
}
21122114

2113-
/// Transforms `-> T` into `Future<Output = T>`
2115+
/// Transforms `-> T` into `Future<Output = T>`.
21142116
fn lower_async_fn_output_type_to_future_bound(
21152117
&mut self,
21162118
output: &FnRetTy,

0 commit comments

Comments
 (0)