Skip to content

Commit 33d7b8c

Browse files
authored
Rollup merge of #79548 - CraftSpider:76998, r=jyn514
Show since when a function is const in stdlib Fixes #76998 This makes it so that functions with the `#[rustc_const_stable()]` attribute now show from what version they were stably declared const, alongside what version they were declared stable. Example from `Result`: ![image](https://user-images.githubusercontent.com/13342132/100561194-1be60d00-3286-11eb-99ff-1e81201218a9.png) r? ``@jyn514``
2 parents f45e695 + ccbb0f5 commit 33d7b8c

File tree

7 files changed

+99
-18
lines changed

7 files changed

+99
-18
lines changed

src/librustdoc/clean/auto_trait.rs

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ impl<'a, 'tcx> AutoTraitFinder<'a, 'tcx> {
124124
visibility: Inherited,
125125
def_id: self.cx.next_def_id(param_env_def_id.krate),
126126
stability: None,
127+
const_stability: None,
127128
deprecation: None,
128129
kind: ImplItem(Impl {
129130
unsafety: hir::Unsafety::Normal,

src/librustdoc/clean/blanket_impl.rs

+1
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ impl<'a, 'tcx> BlanketImplFinder<'a, 'tcx> {
113113
visibility: Inherited,
114114
def_id: self.cx.next_def_id(impl_def_id.krate),
115115
stability: None,
116+
const_stability: None,
116117
deprecation: None,
117118
kind: ImplItem(Impl {
118119
unsafety: hir::Unsafety::Normal,

src/librustdoc/clean/inline.rs

+1
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ fn build_module(cx: &DocContext<'_>, did: DefId, visited: &mut FxHashSet<DefId>)
483483
def_id: DefId::local(CRATE_DEF_INDEX),
484484
visibility: clean::Public,
485485
stability: None,
486+
const_stability: None,
486487
deprecation: None,
487488
kind: clean::ImportItem(clean::Import::new_simple(
488489
item.ident.to_string(),

src/librustdoc/clean/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -2192,6 +2192,7 @@ fn clean_extern_crate(
21922192
def_id: crate_def_id,
21932193
visibility: krate.vis.clean(cx),
21942194
stability: None,
2195+
const_stability: None,
21952196
deprecation: None,
21962197
kind: ExternCrateItem(name.clean(cx), path),
21972198
}]
@@ -2262,6 +2263,7 @@ impl Clean<Vec<Item>> for doctree::Import<'_> {
22622263
def_id: cx.tcx.hir().local_def_id(self.id).to_def_id(),
22632264
visibility: self.vis.clean(cx),
22642265
stability: None,
2266+
const_stability: None,
22652267
deprecation: None,
22662268
kind: ImportItem(Import::new_simple(
22672269
self.name.clean(cx),
@@ -2282,6 +2284,7 @@ impl Clean<Vec<Item>> for doctree::Import<'_> {
22822284
def_id: DefId::local(CRATE_DEF_INDEX),
22832285
visibility: self.vis.clean(cx),
22842286
stability: None,
2287+
const_stability: None,
22852288
deprecation: None,
22862289
kind: ImportItem(inner),
22872290
}]

src/librustdoc/clean/types.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use rustc_ast::attr;
1212
use rustc_ast::util::comments::beautify_doc_string;
1313
use rustc_ast::{self as ast, AttrStyle};
1414
use rustc_ast::{FloatTy, IntTy, UintTy};
15-
use rustc_attr::{Stability, StabilityLevel};
15+
use rustc_attr::{ConstStability, Stability, StabilityLevel};
1616
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
1717
use rustc_feature::UnstableFeatures;
1818
use rustc_hir as hir;
@@ -87,6 +87,7 @@ crate struct Item {
8787
crate def_id: DefId,
8888
crate stability: Option<Stability>,
8989
crate deprecation: Option<Deprecation>,
90+
crate const_stability: Option<ConstStability>,
9091
}
9192

9293
impl fmt::Debug for Item {
@@ -155,6 +156,7 @@ impl Item {
155156
visibility: cx.tcx.visibility(def_id).clean(cx),
156157
stability: cx.tcx.lookup_stability(def_id).cloned(),
157158
deprecation: cx.tcx.lookup_deprecation(def_id).clean(cx),
159+
const_stability: cx.tcx.lookup_const_stability(def_id).cloned(),
158160
}
159161
}
160162

@@ -262,6 +264,13 @@ impl Item {
262264
}
263265
}
264266

267+
crate fn const_stable_since(&self) -> Option<SymbolStr> {
268+
match self.const_stability?.level {
269+
StabilityLevel::Stable { since, .. } => Some(since.as_str()),
270+
StabilityLevel::Unstable { .. } => None,
271+
}
272+
}
273+
265274
crate fn is_non_exhaustive(&self) -> bool {
266275
self.attrs.other_attrs.iter().any(|a| a.has_name(sym::non_exhaustive))
267276
}

src/librustdoc/html/render/mod.rs

+73-17
Original file line numberDiff line numberDiff line change
@@ -1692,13 +1692,13 @@ fn print_item(cx: &Context, item: &clean::Item, buf: &mut Buffer, cache: &Cache)
16921692
debug_assert!(!item.is_stripped());
16931693
// Write the breadcrumb trail header for the top
16941694
write!(buf, "<h1 class=\"fqn\"><span class=\"out-of-band\">");
1695-
if let Some(version) = item.stable_since() {
1696-
write!(
1697-
buf,
1698-
"<span class=\"since\" title=\"Stable since Rust version {0}\">{0}</span>",
1699-
version
1700-
);
1701-
}
1695+
render_stability_since_raw(
1696+
buf,
1697+
item.stable_since().as_deref(),
1698+
item.const_stable_since().as_deref(),
1699+
None,
1700+
None,
1701+
);
17021702
write!(
17031703
buf,
17041704
"<span id=\"render-detail\">\
@@ -2476,6 +2476,7 @@ fn render_implementor(
24762476
AssocItemLink::Anchor(None),
24772477
RenderMode::Normal,
24782478
implementor.impl_item.stable_since().as_deref(),
2479+
implementor.impl_item.const_stable_since().as_deref(),
24792480
false,
24802481
Some(use_absolute),
24812482
false,
@@ -2506,6 +2507,7 @@ fn render_impls(
25062507
assoc_link,
25072508
RenderMode::Normal,
25082509
containing_item.stable_since().as_deref(),
2510+
containing_item.const_stable_since().as_deref(),
25092511
true,
25102512
None,
25112513
false,
@@ -2756,6 +2758,7 @@ fn item_trait(w: &mut Buffer, cx: &Context, it: &clean::Item, t: &clean::Trait,
27562758
assoc_link,
27572759
RenderMode::Normal,
27582760
implementor.impl_item.stable_since().as_deref(),
2761+
implementor.impl_item.const_stable_since().as_deref(),
27592762
false,
27602763
None,
27612764
true,
@@ -2898,10 +2901,40 @@ fn assoc_type(
28982901
}
28992902
}
29002903

2901-
fn render_stability_since_raw(w: &mut Buffer, ver: Option<&str>, containing_ver: Option<&str>) {
2904+
fn render_stability_since_raw(
2905+
w: &mut Buffer,
2906+
ver: Option<&str>,
2907+
const_ver: Option<&str>,
2908+
containing_ver: Option<&str>,
2909+
containing_const_ver: Option<&str>,
2910+
) {
2911+
let ver = ver.and_then(|inner| if !inner.is_empty() { Some(inner) } else { None });
2912+
2913+
let const_ver = const_ver.and_then(|inner| if !inner.is_empty() { Some(inner) } else { None });
2914+
29022915
if let Some(v) = ver {
2903-
if containing_ver != ver && !v.is_empty() {
2904-
write!(w, "<span class=\"since\" title=\"Stable since Rust version {0}\">{0}</span>", v)
2916+
if let Some(cv) = const_ver {
2917+
if const_ver != containing_const_ver {
2918+
write!(
2919+
w,
2920+
"<span class=\"since\" title=\"Stable since Rust version {0}, const since {1}\">{0} (const: {1})</span>",
2921+
v, cv
2922+
);
2923+
} else if ver != containing_ver {
2924+
write!(
2925+
w,
2926+
"<span class=\"since\" title=\"Stable since Rust version {0}\">{0}</span>",
2927+
v
2928+
);
2929+
}
2930+
} else {
2931+
if ver != containing_ver {
2932+
write!(
2933+
w,
2934+
"<span class=\"since\" title=\"Stable since Rust version {0}\">{0}</span>",
2935+
v
2936+
);
2937+
}
29052938
}
29062939
}
29072940
}
@@ -2910,7 +2943,9 @@ fn render_stability_since(w: &mut Buffer, item: &clean::Item, containing_item: &
29102943
render_stability_since_raw(
29112944
w,
29122945
item.stable_since().as_deref(),
2946+
item.const_stable_since().as_deref(),
29132947
containing_item.stable_since().as_deref(),
2948+
containing_item.const_stable_since().as_deref(),
29142949
)
29152950
}
29162951

@@ -3462,6 +3497,7 @@ fn render_assoc_items(
34623497
AssocItemLink::Anchor(None),
34633498
render_mode,
34643499
containing_item.stable_since().as_deref(),
3500+
containing_item.const_stable_since().as_deref(),
34653501
true,
34663502
None,
34673503
false,
@@ -3654,6 +3690,7 @@ fn render_impl(
36543690
link: AssocItemLink<'_>,
36553691
render_mode: RenderMode,
36563692
outer_version: Option<&str>,
3693+
outer_const_version: Option<&str>,
36573694
show_def_docs: bool,
36583695
use_absolute: Option<bool>,
36593696
is_on_foreign_type: bool,
@@ -3705,11 +3742,13 @@ fn render_impl(
37053742
);
37063743
}
37073744
write!(w, "<a href=\"#{}\" class=\"anchor\"></a>", id);
3708-
let since = i.impl_item.stability.as_ref().and_then(|s| match s.level {
3709-
StabilityLevel::Stable { since } => Some(since.as_str()),
3710-
StabilityLevel::Unstable { .. } => None,
3711-
});
3712-
render_stability_since_raw(w, since.as_deref(), outer_version);
3745+
render_stability_since_raw(
3746+
w,
3747+
i.impl_item.stable_since().as_deref(),
3748+
i.impl_item.const_stable_since().as_deref(),
3749+
outer_version,
3750+
outer_const_version,
3751+
);
37133752
write_srclink(cx, &i.impl_item, w, cache);
37143753
write!(w, "</h3>");
37153754

@@ -3746,6 +3785,7 @@ fn render_impl(
37463785
render_mode: RenderMode,
37473786
is_default_item: bool,
37483787
outer_version: Option<&str>,
3788+
outer_const_version: Option<&str>,
37493789
trait_: Option<&clean::Trait>,
37503790
show_def_docs: bool,
37513791
cache: &Cache,
@@ -3775,7 +3815,13 @@ fn render_impl(
37753815
write!(w, "<code>");
37763816
render_assoc_item(w, item, link.anchor(&id), ItemType::Impl);
37773817
write!(w, "</code>");
3778-
render_stability_since_raw(w, item.stable_since().as_deref(), outer_version);
3818+
render_stability_since_raw(
3819+
w,
3820+
item.stable_since().as_deref(),
3821+
item.const_stable_since().as_deref(),
3822+
outer_version,
3823+
outer_const_version,
3824+
);
37793825
write_srclink(cx, item, w, cache);
37803826
write!(w, "</h4>");
37813827
}
@@ -3791,7 +3837,13 @@ fn render_impl(
37913837
write!(w, "<h4 id=\"{}\" class=\"{}{}\"><code>", id, item_type, extra_class);
37923838
assoc_const(w, item, ty, default.as_ref(), link.anchor(&id), "");
37933839
write!(w, "</code>");
3794-
render_stability_since_raw(w, item.stable_since().as_deref(), outer_version);
3840+
render_stability_since_raw(
3841+
w,
3842+
item.stable_since().as_deref(),
3843+
item.const_stable_since().as_deref(),
3844+
outer_version,
3845+
outer_const_version,
3846+
);
37953847
write_srclink(cx, item, w, cache);
37963848
write!(w, "</h4>");
37973849
}
@@ -3854,6 +3906,7 @@ fn render_impl(
38543906
render_mode,
38553907
false,
38563908
outer_version,
3909+
outer_const_version,
38573910
trait_,
38583911
show_def_docs,
38593912
cache,
@@ -3868,6 +3921,7 @@ fn render_impl(
38683921
parent: &clean::Item,
38693922
render_mode: RenderMode,
38703923
outer_version: Option<&str>,
3924+
outer_const_version: Option<&str>,
38713925
show_def_docs: bool,
38723926
cache: &Cache,
38733927
) {
@@ -3888,6 +3942,7 @@ fn render_impl(
38883942
render_mode,
38893943
true,
38903944
outer_version,
3945+
outer_const_version,
38913946
None,
38923947
show_def_docs,
38933948
cache,
@@ -3909,6 +3964,7 @@ fn render_impl(
39093964
&i.impl_item,
39103965
render_mode,
39113966
outer_version,
3967+
outer_const_version,
39123968
show_def_docs,
39133969
cache,
39143970
);

src/test/rustdoc/const-display.rs

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// ignore-tidy-linelength
2+
13
#![crate_name = "foo"]
24

35
#![unstable(feature = "humans",
@@ -17,6 +19,7 @@ pub const unsafe fn foo() -> u32 { 42 }
1719
pub const fn foo2() -> u32 { 42 }
1820

1921
// @has 'foo/fn.bar2.html' '//pre' 'pub const fn bar2() -> u32'
22+
// @has - //span '1.0.0 (const: 1.0.0)'
2023
#[stable(feature = "rust1", since = "1.0.0")]
2124
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
2225
pub const fn bar2() -> u32 { 42 }
@@ -26,6 +29,7 @@ pub const fn bar2() -> u32 { 42 }
2629
pub const unsafe fn foo2_gated() -> u32 { 42 }
2730

2831
// @has 'foo/fn.bar2_gated.html' '//pre' 'pub const unsafe fn bar2_gated() -> u32'
32+
// @has - '//span[@class="since"]' '1.0.0 (const: 1.0.0)'
2933
#[stable(feature = "rust1", since = "1.0.0")]
3034
#[rustc_const_stable(feature = "rust1", since = "1.0.0")]
3135
pub const unsafe fn bar2_gated() -> u32 { 42 }
@@ -40,4 +44,10 @@ impl Foo {
4044
#[stable(feature = "rust1", since = "1.0.0")]
4145
#[rustc_const_unstable(feature="foo", issue = "none")]
4246
pub const unsafe fn gated() -> u32 { 42 }
47+
48+
// @has 'foo/struct.Foo.html' '//h4[@id="method.stable_impl"]/code' 'pub const fn stable_impl() -> u32'
49+
// @has - '//span[@class="since"]' '1.0.0 (const: 1.2.0)'
50+
#[stable(feature = "rust1", since = "1.0.0")]
51+
#[rustc_const_stable(feature = "rust1", since = "1.2.0")]
52+
pub const fn stable_impl() -> u32 { 42 }
4353
}

0 commit comments

Comments
 (0)