Skip to content

Commit 2c6ea02

Browse files
authoredFeb 6, 2025
Rollup merge of rust-lang#136191 - klensy:const_a, r=compiler-errors
compiler: replace few consts arrays with statics to remove const dupes Locally on `x86_64-pc-windows-msvc` -100kb for `rustc_driver.dll`
2 parents 65552b7 + dc62b8f commit 2c6ea02

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed
 

‎compiler/rustc_feature/src/accepted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ macro_rules! declare_features {
99
$(#[doc = $doc:tt])* (accepted, $feature:ident, $ver:expr, $issue:expr),
1010
)+) => {
1111
/// Formerly unstable features that have now been accepted (stabilized).
12-
pub const ACCEPTED_LANG_FEATURES: &[Feature] = &[
12+
pub static ACCEPTED_LANG_FEATURES: &[Feature] = &[
1313
$(Feature {
1414
name: sym::$feature,
1515
since: $ver,

‎compiler/rustc_feature/src/builtin_attrs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ pub struct BuiltinAttribute {
318318

319319
/// Attributes that have a special meaning to rustc or rustdoc.
320320
#[rustfmt::skip]
321-
pub const BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
321+
pub static BUILTIN_ATTRIBUTES: &[BuiltinAttribute] = &[
322322
// ==========================================================================
323323
// Stable attributes:
324324
// ==========================================================================

‎compiler/rustc_feature/src/removed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ macro_rules! declare_features {
1414
$(#[doc = $doc:tt])* (removed, $feature:ident, $ver:expr, $issue:expr, $reason:expr),
1515
)+) => {
1616
/// Formerly unstable features that have now been removed.
17-
pub const REMOVED_LANG_FEATURES: &[RemovedFeature] = &[
17+
pub static REMOVED_LANG_FEATURES: &[RemovedFeature] = &[
1818
$(RemovedFeature {
1919
feature: Feature {
2020
name: sym::$feature,

‎compiler/rustc_feature/src/unstable.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ macro_rules! declare_features {
104104
)+) => {
105105
/// Unstable language features that are being implemented or being
106106
/// considered for acceptance (stabilization) or removal.
107-
pub const UNSTABLE_LANG_FEATURES: &[Feature] = &[
107+
pub static UNSTABLE_LANG_FEATURES: &[Feature] = &[
108108
$(Feature {
109109
name: sym::$feature,
110110
since: $ver,

‎compiler/rustc_parse/src/lexer/unicode_chars.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::errors::TokenSubstitution;
88
use crate::token::{self, Delimiter};
99

1010
#[rustfmt::skip] // for line breaks
11-
pub(super) const UNICODE_ARRAY: &[(char, &str, &str)] = &[
11+
pub(super) static UNICODE_ARRAY: &[(char, &str, &str)] = &[
1212
('
', "Line Separator", " "),
1313
('
', "Paragraph Separator", " "),
1414
(' ', "Ogham Space mark", " "),

‎compiler/rustc_target/src/spec/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1651,7 +1651,7 @@ macro_rules! supported_targets {
16511651
}
16521652

16531653
/// List of supported targets
1654-
pub const TARGETS: &[&str] = &[$($tuple),+];
1654+
pub static TARGETS: &[&str] = &[$($tuple),+];
16551655

16561656
fn load_builtin(target: &str) -> Option<Target> {
16571657
let t = match target {

‎compiler/rustc_target/src/target_features.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ impl Stability {
131131
// Both of these are also applied transitively.
132132
type ImpliedFeatures = &'static [&'static str];
133133

134-
const ARM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
134+
static ARM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
135135
// tidy-alphabetical-start
136136
("aclass", Unstable(sym::arm_target_feature), &[]),
137137
("aes", Unstable(sym::arm_target_feature), &["neon"]),
@@ -175,7 +175,7 @@ const ARM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
175175
// tidy-alphabetical-end
176176
];
177177

178-
const AARCH64_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
178+
static AARCH64_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
179179
// tidy-alphabetical-start
180180
// FEAT_AES & FEAT_PMULL
181181
("aes", Stable, &["neon"]),
@@ -371,7 +371,7 @@ const AARCH64_TIED_FEATURES: &[&[&str]] = &[
371371
&["paca", "pacg"], // Together these represent `pauth` in LLVM
372372
];
373373

374-
const X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
374+
static X86_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
375375
// tidy-alphabetical-start
376376
("adx", Stable, &[]),
377377
("aes", Stable, &["sse2"]),
@@ -453,7 +453,7 @@ const HEXAGON_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
453453
// tidy-alphabetical-end
454454
];
455455

456-
const POWERPC_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
456+
static POWERPC_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
457457
// tidy-alphabetical-start
458458
("altivec", Unstable(sym::powerpc_target_feature), &[]),
459459
("partword-atomics", Unstable(sym::powerpc_target_feature), &[]),
@@ -476,7 +476,7 @@ const MIPS_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
476476
// tidy-alphabetical-end
477477
];
478478

479-
const RISCV_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
479+
static RISCV_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
480480
// tidy-alphabetical-start
481481
("a", Stable, &["zaamo", "zalrsc"]),
482482
("c", Stable, &[]),
@@ -521,7 +521,7 @@ const RISCV_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
521521
// tidy-alphabetical-end
522522
];
523523

524-
const WASM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
524+
static WASM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
525525
// tidy-alphabetical-start
526526
("atomics", Unstable(sym::wasm_target_feature), &[]),
527527
("bulk-memory", Stable, &[]),
@@ -542,7 +542,7 @@ const WASM_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
542542
const BPF_FEATURES: &[(&str, Stability, ImpliedFeatures)] =
543543
&[("alu32", Unstable(sym::bpf_target_feature), &[])];
544544

545-
const CSKY_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
545+
static CSKY_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
546546
// tidy-alphabetical-start
547547
("10e60", Unstable(sym::csky_target_feature), &["7e10"]),
548548
("2e3", Unstable(sym::csky_target_feature), &["e2"]),
@@ -589,7 +589,7 @@ const CSKY_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
589589
// tidy-alphabetical-end
590590
];
591591

592-
const LOONGARCH_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
592+
static LOONGARCH_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
593593
// tidy-alphabetical-start
594594
("d", Unstable(sym::loongarch_target_feature), &["f"]),
595595
("f", Unstable(sym::loongarch_target_feature), &[]),
@@ -618,7 +618,7 @@ const SPARC_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
618618
// tidy-alphabetical-end
619619
];
620620

621-
const M68K_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
621+
static M68K_FEATURES: &[(&str, Stability, ImpliedFeatures)] = &[
622622
// tidy-alphabetical-start
623623
("isa-68000", Unstable(sym::m68k_target_feature), &[]),
624624
("isa-68010", Unstable(sym::m68k_target_feature), &["isa-68000"]),

0 commit comments

Comments
 (0)
Please sign in to comment.