Skip to content

Commit 3c361f7

Browse files
committed
Auto merge of rust-lang#138006 - jieyouxu:rollup-av2viwz, r=jieyouxu
Rollup of 10 pull requests Successful merges: - rust-lang#134063 (dec2flt: Clean up float parsing modules) - rust-lang#136662 (Count char width at most once in `Formatter::pad`) - rust-lang#137011 (Promote ohos targets to tier2 with host tools.) - rust-lang#137077 (Postprocess bootstrap metrics into GitHub job summary) - rust-lang#137327 (Undeprecate env::home_dir) - rust-lang#137373 (Compile run-make-support and run-make tests with the bootstrap compiler) - rust-lang#137463 ([illumos] attempt to use posix_spawn to spawn processes) - rust-lang#137477 (uefi: Add Service Binding Protocol abstraction) - rust-lang#137569 (Stablize `string_extend_from_within`) - rust-lang#137667 (Add `dist::Gcc` build step) r? `@ghost` `@rustbot` modify labels: rollup
2 parents f9e0239 + 41b6c76 commit 3c361f7

File tree

61 files changed

+1506
-1001
lines changed

Some content is hidden

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

61 files changed

+1506
-1001
lines changed

.github/workflows/ci.yml

+17
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,13 @@ jobs:
182182
- name: show the current environment
183183
run: src/ci/scripts/dump-environment.sh
184184

185+
# Pre-build citool before the following step uninstalls rustup
186+
# Build is into the build directory, to avoid modifying sources
187+
- name: build citool
188+
run: |
189+
cd src/ci/citool
190+
CARGO_TARGET_DIR=../../../build/citool cargo build
191+
185192
- name: run the build
186193
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
187194
run: src/ci/scripts/run-build-from-ci.sh 2>&1
@@ -218,6 +225,16 @@ jobs:
218225
# erroring about invalid credentials instead.
219226
if: github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1'
220227

228+
- name: postprocess metrics into the summary
229+
run: |
230+
if [ -f build/metrics.json ]; then
231+
./build/citool/debug/citool postprocess-metrics build/metrics.json ${GITHUB_STEP_SUMMARY}
232+
elif [ -f obj/build/metrics.json ]; then
233+
./build/citool/debug/citool postprocess-metrics obj/build/metrics.json ${GITHUB_STEP_SUMMARY}
234+
else
235+
echo "No metrics.json found"
236+
fi
237+
221238
- name: upload job metrics to DataDog
222239
if: needs.calculate_matrix.outputs.run_type != 'pr'
223240
env:

Cargo.lock

+18-5
Original file line numberDiff line numberDiff line change
@@ -2178,6 +2178,20 @@ dependencies = [
21782178
"smallvec",
21792179
]
21802180

2181+
[[package]]
2182+
name = "measureme"
2183+
version = "12.0.1"
2184+
source = "registry+https://github.com/rust-lang/crates.io-index"
2185+
checksum = "570a507d8948a66a97f42cbbaf8a6bb9516a51017d4ee949502ad7a10a864395"
2186+
dependencies = [
2187+
"log",
2188+
"memmap2",
2189+
"parking_lot",
2190+
"perf-event-open-sys",
2191+
"rustc-hash 1.1.0",
2192+
"smallvec",
2193+
]
2194+
21812195
[[package]]
21822196
name = "memchr"
21832197
version = "2.7.4"
@@ -2261,7 +2275,7 @@ dependencies = [
22612275
"libc",
22622276
"libffi",
22632277
"libloading",
2264-
"measureme",
2278+
"measureme 11.0.1",
22652279
"rand 0.9.0",
22662280
"regex",
22672281
"rustc_version",
@@ -3365,7 +3379,7 @@ dependencies = [
33653379
"gimli 0.30.0",
33663380
"itertools",
33673381
"libc",
3368-
"measureme",
3382+
"measureme 12.0.1",
33693383
"object 0.36.7",
33703384
"rustc-demangle",
33713385
"rustc_abi",
@@ -3483,7 +3497,7 @@ dependencies = [
34833497
"indexmap",
34843498
"jobserver",
34853499
"libc",
3486-
"measureme",
3500+
"measureme 12.0.1",
34873501
"memmap2",
34883502
"parking_lot",
34893503
"portable-atomic",
@@ -4249,8 +4263,7 @@ dependencies = [
42494263
name = "rustc_query_impl"
42504264
version = "0.0.0"
42514265
dependencies = [
4252-
"measureme",
4253-
"rustc_attr_data_structures",
4266+
"measureme 12.0.1",
42544267
"rustc_data_structures",
42554268
"rustc_errors",
42564269
"rustc_hashes",

compiler/rustc_codegen_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bitflags = "2.4.1"
1414
gimli = "0.30"
1515
itertools = "0.12"
1616
libc = "0.2"
17-
measureme = "11"
17+
measureme = "12.0.1"
1818
object = { version = "0.36.3", default-features = false, features = ["std", "read"] }
1919
rustc-demangle = "0.1.21"
2020
rustc_abi = { path = "../rustc_abi" }

compiler/rustc_data_structures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ elsa = "1.11.0"
1212
ena = "0.14.3"
1313
indexmap = "2.4.0"
1414
jobserver_crate = { version = "0.1.28", package = "jobserver" }
15-
measureme = "11"
15+
measureme = "12.0.1"
1616
rustc-hash = "2.0.0"
1717
rustc-rayon = { version = "0.5.1", features = ["indexmap"] }
1818
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }

compiler/rustc_llvm/build.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ fn main() {
241241
println!("cargo:rustc-link-lib=kstat");
242242
}
243243

244-
if (target.starts_with("arm") && !target.contains("freebsd"))
244+
if (target.starts_with("arm") && !target.contains("freebsd")) && !target.contains("ohos")
245245
|| target.starts_with("mips-")
246246
|| target.starts_with("mipsel-")
247247
|| target.starts_with("powerpc-")
@@ -371,6 +371,7 @@ fn main() {
371371
|| target.contains("freebsd")
372372
|| target.contains("windows-gnullvm")
373373
|| target.contains("aix")
374+
|| target.contains("ohos")
374375
{
375376
"c++"
376377
} else if target.contains("netbsd") && llvm_static_stdcpp.is_some() {

compiler/rustc_query_impl/Cargo.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
measureme = "11"
9-
rustc_attr_data_structures = { path = "../rustc_attr_data_structures" }
8+
measureme = "12.0.1"
109
rustc_data_structures = { path = "../rustc_data_structures" }
1110
rustc_errors = { path = "../rustc_errors" }
1211
rustc_hashes = { path = "../rustc_hashes" }

library/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ dependencies = [
151151

152152
[[package]]
153153
name = "libc"
154-
version = "0.2.169"
154+
version = "0.2.170"
155155
source = "registry+https://github.com/rust-lang/crates.io-index"
156-
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
156+
checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828"
157157
dependencies = [
158158
"rustc-std-workspace-core",
159159
]

library/alloc/src/string.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,6 @@ impl String {
11341134
/// # Examples
11351135
///
11361136
/// ```
1137-
/// #![feature(string_extend_from_within)]
11381137
/// let mut string = String::from("abcde");
11391138
///
11401139
/// string.extend_from_within(2..);
@@ -1147,7 +1146,7 @@ impl String {
11471146
/// assert_eq!(string, "abcdecdeabecde");
11481147
/// ```
11491148
#[cfg(not(no_global_oom_handling))]
1150-
#[unstable(feature = "string_extend_from_within", issue = "103806")]
1149+
#[stable(feature = "string_extend_from_within", since = "CURRENT_RUSTC_VERSION")]
11511150
pub fn extend_from_within<R>(&mut self, src: R)
11521151
where
11531152
R: RangeBounds<usize>,

library/core/src/fmt/mod.rs

+29-37
Original file line numberDiff line numberDiff line change
@@ -1693,49 +1693,41 @@ impl<'a> Formatter<'a> {
16931693
/// ```
16941694
#[stable(feature = "rust1", since = "1.0.0")]
16951695
pub fn pad(&mut self, s: &str) -> Result {
1696-
// Make sure there's a fast path up front
1696+
// Make sure there's a fast path up front.
16971697
if self.options.width.is_none() && self.options.precision.is_none() {
16981698
return self.buf.write_str(s);
16991699
}
1700-
// The `precision` field can be interpreted as a `max-width` for the
1700+
1701+
// The `precision` field can be interpreted as a maximum width for the
17011702
// string being formatted.
1702-
let s = if let Some(max) = self.options.precision {
1703-
// If our string is longer that the precision, then we must have
1704-
// truncation. However other flags like `fill`, `width` and `align`
1705-
// must act as always.
1706-
if let Some((i, _)) = s.char_indices().nth(max) {
1707-
// LLVM here can't prove that `..i` won't panic `&s[..i]`, but
1708-
// we know that it can't panic. Use `get` + `unwrap_or` to avoid
1709-
// `unsafe` and otherwise don't emit any panic-related code
1710-
// here.
1711-
s.get(..i).unwrap_or(s)
1712-
} else {
1713-
&s
1714-
}
1703+
let (s, char_count) = if let Some(max_char_count) = self.options.precision {
1704+
let mut iter = s.char_indices();
1705+
let remaining = match iter.advance_by(max_char_count) {
1706+
Ok(()) => 0,
1707+
Err(remaining) => remaining.get(),
1708+
};
1709+
// SAFETY: The offset of `.char_indices()` is guaranteed to be
1710+
// in-bounds and between character boundaries.
1711+
let truncated = unsafe { s.get_unchecked(..iter.offset()) };
1712+
(truncated, max_char_count - remaining)
17151713
} else {
1716-
&s
1714+
// Use the optimized char counting algorithm for the full string.
1715+
(s, s.chars().count())
17171716
};
1718-
// The `width` field is more of a `min-width` parameter at this point.
1719-
match self.options.width {
1720-
// If we're under the maximum length, and there's no minimum length
1721-
// requirements, then we can just emit the string
1722-
None => self.buf.write_str(s),
1723-
Some(width) => {
1724-
let chars_count = s.chars().count();
1725-
// If we're under the maximum width, check if we're over the minimum
1726-
// width, if so it's as easy as just emitting the string.
1727-
if chars_count >= width {
1728-
self.buf.write_str(s)
1729-
}
1730-
// If we're under both the maximum and the minimum width, then fill
1731-
// up the minimum width with the specified string + some alignment.
1732-
else {
1733-
let align = Alignment::Left;
1734-
let post_padding = self.padding(width - chars_count, align)?;
1735-
self.buf.write_str(s)?;
1736-
post_padding.write(self)
1737-
}
1738-
}
1717+
1718+
// The `width` field is more of a minimum width parameter at this point.
1719+
if let Some(width) = self.options.width
1720+
&& char_count < width
1721+
{
1722+
// If we're under the minimum width, then fill up the minimum width
1723+
// with the specified string + some alignment.
1724+
let post_padding = self.padding(width - char_count, Alignment::Left)?;
1725+
self.buf.write_str(s)?;
1726+
post_padding.write(self)
1727+
} else {
1728+
// If we're over the minimum width or there is no minimum width, we
1729+
// can just emit the string.
1730+
self.buf.write_str(s)
17391731
}
17401732
}
17411733

library/core/src/num/dec2flt/common.rs

+15-12
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ pub(crate) trait ByteSlice {
88
/// Writes a 64-bit integer as 8 bytes in little-endian order.
99
fn write_u64(&mut self, value: u64);
1010

11-
/// Calculate the offset of a slice from another.
11+
/// Calculate the difference in length between two slices.
1212
fn offset_from(&self, other: &Self) -> isize;
1313

1414
/// Iteratively parse and consume digits from bytes.
15-
/// Returns the same bytes with consumed digits being
16-
/// elided.
15+
///
16+
/// Returns the same bytes with consumed digits being elided. Breaks on invalid digits.
1717
fn parse_digits(&self, func: impl FnMut(u8)) -> &Self;
1818
}
1919

@@ -39,11 +39,11 @@ impl ByteSlice for [u8] {
3939
fn parse_digits(&self, mut func: impl FnMut(u8)) -> &Self {
4040
let mut s = self;
4141

42-
while let Some((c, s_next)) = s.split_first() {
42+
while let Some((c, rest)) = s.split_first() {
4343
let c = c.wrapping_sub(b'0');
4444
if c < 10 {
4545
func(c);
46-
s = s_next;
46+
s = rest;
4747
} else {
4848
break;
4949
}
@@ -53,27 +53,30 @@ impl ByteSlice for [u8] {
5353
}
5454
}
5555

56-
/// Determine if 8 bytes are all decimal digits.
56+
/// Determine if all characters in an 8-byte byte string (represented as a `u64`) are all decimal
57+
/// digits.
58+
///
5759
/// This does not care about the order in which the bytes were loaded.
5860
pub(crate) fn is_8digits(v: u64) -> bool {
5961
let a = v.wrapping_add(0x4646_4646_4646_4646);
6062
let b = v.wrapping_sub(0x3030_3030_3030_3030);
6163
(a | b) & 0x8080_8080_8080_8080 == 0
6264
}
6365

64-
/// A custom 64-bit floating point type, representing `f * 2^e`.
65-
/// e is biased, so it be directly shifted into the exponent bits.
66+
/// A custom 64-bit floating point type, representing `m * 2^p`.
67+
/// p is biased, so it be directly shifted into the exponent bits.
6668
#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)]
6769
pub struct BiasedFp {
6870
/// The significant digits.
69-
pub f: u64,
71+
pub m: u64,
7072
/// The biased, binary exponent.
71-
pub e: i32,
73+
pub p_biased: i32,
7274
}
7375

7476
impl BiasedFp {
77+
/// Represent `0 ^ p`
7578
#[inline]
76-
pub const fn zero_pow2(e: i32) -> Self {
77-
Self { f: 0, e }
79+
pub const fn zero_pow2(p_biased: i32) -> Self {
80+
Self { m: 0, p_biased }
7881
}
7982
}

0 commit comments

Comments
 (0)