Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deduplicate object safety errors on impl dyn Trait { .. } #121200

Closed

Conversation

estebank
Copy link
Contributor

impl dyn Trait {} has an implicit dyn Trait: 'static bound. We add it in inferred_outlives_of for more context in errors. With this we point at impl dyn Trait and not to it's associated functions, deduplicating errors to a single one per impl dyn Trait instead of one for it plus one for each associated function.

CC #83246, as this is necessary but not sufficient to help with the lack of tracking of 'static obligations.

`impl dyn Trait {}` has an implicit `dyn Trait: 'static` bound. We add it in
`inferred_outlives_of` for more context in errors. With this we point at
`impl dyn Trait` and not to it's associated functions, deduplicating errors
to a single one per `impl dyn Trait` instead of one for it plus one for each
associated function.
@rustbot
Copy link
Collaborator

rustbot commented Feb 16, 2024

r? @davidtwco

rustbot has assigned @davidtwco.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Feb 16, 2024
@estebank estebank changed the title Deduplicate oject safety errors on impl dyn Trait { .. } Deduplicate object safety errors on impl dyn Trait { .. } Feb 16, 2024
@estebank
Copy link
Contributor Author

@bors try @rust-timer queue

@rust-timer
Copy link
Collaborator

Awaiting bors try build completion.

@rustbot label: +S-waiting-on-perf

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Feb 16, 2024
bors added a commit to rust-lang-ci/rust that referenced this pull request Feb 16, 2024
…r=<try>

Deduplicate object safety errors on `impl dyn Trait { .. }`

`impl dyn Trait {}` has an implicit `dyn Trait: 'static` bound. We add it in `inferred_outlives_of` for more context in errors. With this we point at `impl dyn Trait` and not to it's associated functions, deduplicating errors to a single one per `impl dyn Trait` instead of one for it plus one for each associated function.

CC rust-lang#83246, as this is necessary but not sufficient to help with the lack of tracking of `'static` obligations.
@bors
Copy link
Contributor

bors commented Feb 16, 2024

⌛ Trying commit 1e03e2b with merge 4795a5a...

| ----- this trait cannot be made into an object...
LL | const N: usize;
| ^ ...because it contains this associated `const`
= help: consider moving `N` to another trait
Copy link
Member

@fmease fmease Feb 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Totally unrelated but if tcx.features().generic_const_items we could suggest alternatively, consider constraining `N` so it does not apply to trait objects // const N: usize where Self: Sized;

@@ -46,6 +47,24 @@ fn inferred_outlives_of(tcx: TyCtxt<'_>, item_def_id: LocalDefId) -> &[(ty::Clau
&[]
}
}
DefKind::Impl { of_trait: false }
Copy link
Member

@compiler-errors compiler-errors Feb 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd prefer a solution that doesn't involve changing the rules for where we add implicit outlives obligations. This code is really delicate, and I'm worried this could turn out to be unsound without us really knowing why.

Is it possible to instead modify the object safety violation error reporting code to instead prefer pointing at Self type rather than arguments? We can get away with corner cases in diagnostics reporting code, but can't really get away with it in good-path code 😅

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, could you explain why adding this outlives obligation actually solves the problem? It's not necessarily clear why this is fixing what it does, and I'm not yet convinced its worth the changes to the inferred_outlives_of function for such a special case.

// more context in errors. With this we point at `impl dyn Trait` and not to it's
// associated functions, deduplicating errors to a single one per `impl dyn Trait` instead
// of one for it plus one for each associated function.
let ty = tcx.type_of(item_def_id).instantiate_identity();
Copy link
Member

@compiler-errors compiler-errors Feb 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, this should at least be asserting that the implicit object outlives is actually static:

let ty::Dynamic(_, outlives, _) = *ty.kind() else {
    bug!("expected dyn self type");
};
assert_eq!(outlives, tcx.regions.re_static);

Then at least if the object outlives bound computation changes down the road, this will ICE.

@bors
Copy link
Contributor

bors commented Feb 16, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Feb 16, 2024
@rust-log-analyzer
Copy link
Collaborator

The job dist-x86_64-linux failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
[2024-02-16T20:10:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:10:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:10:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpIZXkwB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIZXkwB#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:10:50Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:10:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpIZXkwB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIZXkwB#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpIZXkwB/incremental-state"
[2024-02-16T20:10:51Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:10:51Z DEBUG collector::compile::execute] cd "/tmp/.tmpIZXkwB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIZXkwB#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpIZXkwB/incremental-state"
[2024-02-16T20:10:52Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpIZXkwB"
[2024-02-16T20:10:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:10:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:10:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpIZXkwB" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIZXkwB#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpIZXkwB/incremental-state"
[2024-02-16T20:10:52Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:10:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:10:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpMf2HOe" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpMf2HOe#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:10:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
Preparing ctfe-stress-5
[2024-02-16T20:14:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:14:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:14:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T20:14:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpR36mHr" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpR36mHr#ctfe-stress-5@0.1.0" "--" "--skip-this-rustc"
[2024-02-16T20:14:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpvmTDMS" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvmTDMS#ctfe-stress-5@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:14:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpTwySsF" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTwySsF#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-02-16T20:14:12Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:14:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:14:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpUNzGbz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUNzGbz#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:14:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:16Z DEBUG collector::compile::execute] cd "/tmp/.tmpUNzGbz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUNzGbz#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUNzGbz/incremental-state"
[2024-02-16T20:14:21Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:14:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpUNzGbz" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUNzGbz#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpUNzGbz/incremental-state"
[2024-02-16T20:14:21Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:14:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:14:21Z DEBUG collector::compile::execute] cd "/tmp/.tmp7Cn4xb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7Cn4xb#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:14:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:25Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:25Z DEBUG collector::compile::execute] cd "/tmp/.tmp7Cn4xb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7Cn4xb#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp7Cn4xb/incremental-state"
[2024-02-16T20:14:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:14:30Z DEBUG collector::compile::execute] cd "/tmp/.tmp7Cn4xb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7Cn4xb#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp7Cn4xb/incremental-state"
Running ctfe-stress-5: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T20:14:31Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:14:31Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:14:31Z DEBUG collector::compile::execute] cd "/tmp/.tmpqiSHjw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpqiSHjw#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:14:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpqiSHjw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpqiSHjw#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpqiSHjw/incremental-state"
[2024-02-16T20:14:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:14:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpqiSHjw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpqiSHjw#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpqiSHjw/incremental-state"
Executing benchmark diesel-1.4.8 (4/8)
Preparing diesel-1.4.8
[2024-02-16T20:14:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T20:14:39Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2024-02-16T20:14:48Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:14:48Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:14:48Z DEBUG collector::compile::execute] cd "/tmp/.tmphMFMLy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphMFMLy#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:14:53Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:14:53Z DEBUG collector::compile::execute] cd "/tmp/.tmphMFMLy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphMFMLy#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphMFMLy/incremental-state"
[2024-02-16T20:14:59Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:14:59Z DEBUG collector::compile::execute] cd "/tmp/.tmphMFMLy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphMFMLy#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphMFMLy/incremental-state"
[2024-02-16T20:15:00Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmphMFMLy"
[2024-02-16T20:15:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:00Z DEBUG collector::compile::execute] cd "/tmp/.tmphMFMLy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphMFMLy#diesel@1.4.8" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmphMFMLy/incremental-state"
[2024-02-16T20:15:01Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:01Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:15:01Z DEBUG collector::compile::execute] cd "/tmp/.tmpxT5ZZF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxT5ZZF#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpxT5ZZF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxT5ZZF#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxT5ZZF/incremental-state"
[2024-02-16T20:15:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpxT5ZZF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxT5ZZF#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxT5ZZF/incremental-state"
[2024-02-16T20:15:15Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpxT5ZZF"
[2024-02-16T20:15:15Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:15Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpxT5ZZF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxT5ZZF#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpxT5ZZF/incremental-state"
[2024-02-16T20:15:17Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:15:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpWfIB6b" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWfIB6b#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpWfIB6b" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWfIB6b#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWfIB6b/incremental-state"
[2024-02-16T20:15:30Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpWfIB6b" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWfIB6b#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWfIB6b/incremental-state"
[2024-02-16T20:15:32Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpWfIB6b"
[2024-02-16T20:15:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T20:15:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpWfIB6b" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWfIB6b#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWfIB6b/incremental-state"
Executing benchmark externs (5/8)
Preparing externs
[2024-02-16T20:15:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T20:15:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:15:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:15:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:15:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpd9HMbR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpd9HMbR#externs@0.1.0" "--" "--skip-this-rustc"
[2024-02-16T20:15:33Z DEBUG collector::compile::execute] cd "/tmp/.tmp6qO9mI" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp6qO9mI#externs@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-02-16T20:15:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpx9RU0S" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpx9RU0S#externs@0.1.0" "--release" "--" "--skip-this-rustc"
Running externs: Check + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T20:15:33Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:15:33Z DEBUG collector::compile::execute] cd "/tmp/.tmp1smGgb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1smGgb#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:34Z DEBUG collector::compile::execute] cd "/tmp/.tmp1smGgb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1smGgb#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1smGgb/incremental-state"
[2024-02-16T20:15:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:34Z DEBUG collector::compile::execute] cd "/tmp/.tmp1smGgb" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp1smGgb#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp1smGgb/incremental-state"
[2024-02-16T20:15:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:15:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpxnr8LP" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxnr8LP#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-02-16T20:15:36Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:36Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:15:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpVfmcMR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVfmcMR#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpVfmcMR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVfmcMR#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVfmcMR/incremental-state"
[2024-02-16T20:15:38Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpVfmcMR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVfmcMR#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVfmcMR/incremental-state"
[2024-02-16T20:15:38Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:15:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpSUXB7d" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSUXB7d#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpSUXB7d" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSUXB7d#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSUXB7d/incremental-state"
[2024-02-16T20:15:41Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpSUXB7d" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpSUXB7d#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpSUXB7d/incremental-state"
[2024-02-16T20:15:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:15:41Z DEBUG collector::compile::execute] cd "/tmp/.tmp5JZwem" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5JZwem#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing token-stream-stress
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpc5W0tE" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpc5W0tE#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpJJnsPN" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJJnsPN#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpOcvLBl" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOcvLBl#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T20:15:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpNpJexw" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpNpJexw#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2024-02-16T20:15:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpK3OgMd" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpK3OgMd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpK3OgMd" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpK3OgMd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpK3OgMd/incremental-state"
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpK3OgMd" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpK3OgMd#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpK3OgMd/incremental-state"
[2024-02-16T20:15:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:15:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp7yTlWR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7yTlWR#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T20:15:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp7yTlWR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7yTlWR#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp7yTlWR/incremental-state"
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T20:15:45Z DEBUG collector::compile::execute] cd "/tmp/.tmp7yTlWR" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7yTlWR#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp7yTlWR/incremental-state"
Executing benchmark tuple-stress (8/8)
Preparing tuple-stress
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:15:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
[2024-02-16T20:30:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpX6tA6K" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpX6tA6K#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
[2024-02-16T20:31:03Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:31:04Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:31:04Z DEBUG collector::compile::execute] cd "/tmp/.tmpQURqwA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpQURqwA#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark clap-3.1.6 (2/8)
Preparing clap-3.1.6
[2024-02-16T20:31:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:31:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:31:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:31:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpIUHsCR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpIUHsCR#clap@3.1.6" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:31:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpYao12L" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYao12L#clap@3.1.6" "--" "--skip-this-rustc"
[2024-02-16T20:31:52Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:31:52Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:31:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpnliMBF" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpnliMBF#clap@3.1.6" "--" "--wrap-rustc-with" "Eprintln"
Running clap-3.1.6: Opt + [Full]
---
Executing benchmark hyper-0.14.18 (3/8)
Preparing hyper-0.14.18
[2024-02-16T20:31:59Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:31:59Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:31:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpdVYHz3" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpdVYHz3#hyper@0.14.18" "--release" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-02-16T20:31:59Z DEBUG collector::compile::execute] cd "/tmp/.tmpeIopuR" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpeIopuR#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--skip-this-rustc"
[2024-02-16T20:32:16Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:32:16Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:32:16Z DEBUG collector::compile::execute] cd "/tmp/.tmproaRDE" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmproaRDE#hyper@0.14.18" "--features=client,http1,http2,server,stream" "--" "--wrap-rustc-with" "Eprintln"
Running hyper-0.14.18: Opt + [Full]
---
[2024-02-16T20:32:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpyWlPq8" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpyWlPq8#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
Running regex-1.5.5: Opt + [Full]
[2024-02-16T20:32:30Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:32:30Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:32:30Z DEBUG collector::compile::execute] cd "/tmp/.tmpJUjibd" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpJUjibd#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-02-16T20:32:37Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:32:37Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
---
Executing benchmark serde-1.0.136 (7/8)
Preparing serde-1.0.136
[2024-02-16T20:33:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:33:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:33:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpthJVNd" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpthJVNd#serde@1.0.136" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:33:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpagJMSU" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpagJMSU#serde@1.0.136" "--" "--skip-this-rustc"
[2024-02-16T20:33:49Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:33:49Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:33:49Z DEBUG collector::compile::execute] cd "/tmp/.tmps7ucup" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmps7ucup#serde@1.0.136" "--" "--wrap-rustc-with" "Eprintln"
Running serde-1.0.136: Opt + [Full]
---
Executing benchmark syn-1.0.89 (8/8)
Preparing syn-1.0.89
[2024-02-16T20:33:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:33:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:33:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpphDKDP" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpphDKDP#syn@1.0.89" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:33:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpfXDSQW" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfXDSQW#syn@1.0.89" "--" "--skip-this-rustc"
[2024-02-16T20:33:55Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:33:55Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:33:55Z DEBUG collector::compile::execute] cd "/tmp/.tmp2Ajlry" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp2Ajlry#syn@1.0.89" "--" "--wrap-rustc-with" "Eprintln"
Running syn-1.0.89: Opt + [Full]
---
[2024-02-16T20:55:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpYbZjEl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYbZjEl#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Running cargo-0.60.0: Opt + [Full]
[2024-02-16T20:56:11Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:56:11Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:56:11Z DEBUG collector::compile::execute] cd "/tmp/.tmpvTSCfO" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpvTSCfO#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
Executing benchmark clap-3.1.6 (2/8)
Preparing clap-3.1.6
[2024-02-16T20:56:46Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:56:46Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
---
[2024-02-16T20:57:35Z DEBUG collector::compile::execute] cd "/tmp/.tmpq2cE9U" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpq2cE9U#regex@1.5.5" "--" "--skip-this-rustc"
Running regex-1.5.5: Debug + [Full]
[2024-02-16T20:57:43Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:57:43Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:57:43Z DEBUG collector::compile::execute] cd "/tmp/.tmpAHyJqT" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAHyJqT#regex@1.5.5" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:57:45Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:57:45Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:57:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpTtUOFM" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTtUOFM#regex@1.5.5" "--release" "--" "--wrap-rustc-with" "Eprintln"
Finished benchmark regex-1.5.5 (4/8)
Finished benchmark regex-1.5.5 (4/8)
Executing benchmark ripgrep-13.0.0 (5/8)
Preparing ripgrep-13.0.0
[2024-02-16T20:57:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:57:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:57:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpKLMfEK" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKLMfEK#ripgrep@13.0.0" "--" "--skip-this-rustc"
[2024-02-16T20:57:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpx2YwrH" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpx2YwrH#ripgrep@13.0.0" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:58:21Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:58:21Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:58:21Z DEBUG collector::compile::execute] cd "/tmp/.tmpHPIcHa" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHPIcHa#ripgrep@13.0.0" "--" "--wrap-rustc-with" "Eprintln"
Running ripgrep-13.0.0: Opt + [Full]
---
Executing benchmark syn-1.0.89 (8/8)
Preparing syn-1.0.89
[2024-02-16T20:59:27Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T20:59:27Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T20:59:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpXCc62x" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpXCc62x#syn@1.0.89" "--release" "--" "--skip-this-rustc"
[2024-02-16T20:59:27Z DEBUG collector::compile::execute] cd "/tmp/.tmpRvrrtq" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpRvrrtq#syn@1.0.89" "--" "--skip-this-rustc"
[2024-02-16T20:59:32Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:59:32Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T20:59:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpHFbODl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpHFbODl#syn@1.0.89" "--" "--wrap-rustc-with" "Eprintln"
Running syn-1.0.89: Opt + [Full]
Running syn-1.0.89: Opt + [Full]
[2024-02-16T20:59:34Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T20:59:34Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T20:59:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpAaxdYA" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpAaxdYA#syn@1.0.89" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T20:59:39.913Z INFO  opt_dist::training] Merging LLVM BOLT profiles from /tmp/.tmplOh02c/prof.fdata to /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata
##[endgroup]
##[group]Merging BOLT profiles
##[group]Merging BOLT profiles
[2024-02-16T20:59:39.914Z INFO  opt_dist::exec] Executing `merge-fdata /tmp/.tmplOh02c/prof.fdata.122182.fdata /tmp/.tmplOh02c/prof.fdata.122192.fdata /tmp/.tmplOh02c/prof.fdata.122193.fdata /tmp/.tmplOh02c/prof.fdata.122194.fdata /tmp/.tmplOh02c/prof.fdata.122195.fdata /tmp/.tmplOh02c/prof.fdata.122198.fdata /tmp/.tmplOh02c/prof.fdata.122199.fdata /tmp/.tmplOh02c/prof.fdata.122207.fdata /tmp/.tmplOh02c/prof.fdata.122210.fdata /tmp/.tmplOh02c/prof.fdata.122212.fdata /tmp/.tmplOh02c/prof.fdata.122213.fdata /tmp/.tmplOh02c/prof.fdata.122214.fdata /tmp/.tmplOh02c/prof.fdata.122216.fdata /tmp/.tmplOh02c/prof.fdata.122218.fdata /tmp/.tmplOh02c/prof.fdata.122221.fdata /tmp/.tmplOh02c/prof.fdata.122222.fdata /tmp/.tmplOh02c/prof.fdata.122223.fdata /tmp/.tmplOh02c/prof.fdata.122224.fdata /tmp/.tmplOh02c/prof.fdata.122226.fdata /tmp/.tmplOh02c/prof.fdata.122230.fdata /tmp/.tmplOh02c/prof.fdata.122233.fdata /tmp/.tmplOh02c/prof.fdata.122234.fdata /tmp/.tmplOh02c/prof.fdata.122235.fdata /tmp/.tmplOh02c/prof.fdata.122236.fdata /tmp/.tmplOh02c/prof.fdata.122245.fdata /tmp/.tmplOh02c/prof.fdata.122350.fdata /tmp/.tmplOh02c/prof.fdata.122355.fdata /tmp/.tmplOh02c/prof.fdata.122357.fdata /tmp/.tmplOh02c/prof.fdata.122359.fdata /tmp/.tmplOh02c/prof.fdata.122385.fdata /tmp/.tmplOh02c/prof.fdata.122395.fdata /tmp/.tmplOh02c/prof.fdata.122405.fdata /tmp/.tmplOh02c/prof.fdata.122415.fdata /tmp/.tmplOh02c/prof.fdata.122420.fdata /tmp/.tmplOh02c/prof.fdata.122421.fdata /tmp/.tmplOh02c/prof.fdata.122424.fdata /tmp/.tmplOh02c/prof.fdata.122426.fdata /tmp/.tmplOh02c/prof.fdata.122430.fdata /tmp/.tmplOh02c/prof.fdata.122433.fdata /tmp/.tmplOh02c/prof.fdata.122436.fdata /tmp/.tmplOh02c/prof.fdata.122440.fdata /tmp/.tmplOh02c/prof.fdata.122446.fdata /tmp/.tmplOh02c/prof.fdata.122449.fdata /tmp/.tmplOh02c/prof.fdata.122453.fdata /tmp/.tmplOh02c/prof.fdata.122461.fdata /tmp/.tmplOh02c/prof.fdata.122462.fdata /tmp/.tmplOh02c/prof.fdata.122470.fdata /tmp/.tmplOh02c/prof.fdata.122476.fdata /tmp/.tmplOh02c/prof.fdata.122481.fdata /tmp/.tmplOh02c/prof.fdata.122489.fdata /tmp/.tmplOh02c/prof.fdata.122493.fdata /tmp/.tmplOh02c/prof.fdata.122501.fdata /tmp/.tmplOh02c/prof.fdata.122511.fdata /tmp/.tmplOh02c/prof.fdata.122522.fdata /tmp/.tmplOh02c/prof.fdata.122527.fdata /tmp/.tmplOh02c/prof.fdata.122535.fdata /tmp/.tmplOh02c/prof.fdata.122543.fdata /tmp/.tmplOh02c/prof.fdata.122559.fdata /tmp/.tmplOh02c/prof.fdata.122572.fdata /tmp/.tmplOh02c/prof.fdata.122574.fdata /tmp/.tmplOh02c/prof.fdata.122579.fdata /tmp/.tmplOh02c/prof.fdata.122593.fdata /tmp/.tmplOh02c/prof.fdata.122595.fdata /tmp/.tmplOh02c/prof.fdata.122600.fdata /tmp/.tmplOh02c/prof.fdata.122603.fdata /tmp/.tmplOh02c/prof.fdata.122610.fdata /tmp/.tmplOh02c/prof.fdata.122612.fdata /tmp/.tmplOh02c/prof.fdata.122625.fdata /tmp/.tmplOh02c/prof.fdata.122635.fdata /tmp/.tmplOh02c/prof.fdata.122659.fdata /tmp/.tmplOh02c/prof.fdata.122674.fdata /tmp/.tmplOh02c/prof.fdata.122691.fdata /tmp/.tmplOh02c/prof.fdata.122698.fdata /tmp/.tmplOh02c/prof.fdata.122702.fdata /tmp/.tmplOh02c/prof.fdata.122704.fdata /tmp/.tmplOh02c/prof.fdata.122720.fdata /tmp/.tmplOh02c/prof.fdata.122734.fdata /tmp/.tmplOh02c/prof.fdata.122750.fdata /tmp/.tmplOh02c/prof.fdata.122759.fdata /tmp/.tmplOh02c/prof.fdata.122764.fdata /tmp/.tmplOh02c/prof.fdata.122769.fdata /tmp/.tmplOh02c/prof.fdata.122782.fdata /tmp/.tmplOh02c/prof.fdata.122796.fdata /tmp/.tmplOh02c/prof.fdata.122804.fdata /tmp/.tmplOh02c/prof.fdata.122815.fdata /tmp/.tmplOh02c/prof.fdata.122818.fdata /tmp/.tmplOh02c/prof.fdata.122831.fdata /tmp/.tmplOh02c/prof.fdata.122839.fdata /tmp/.tmplOh02c/prof.fdata.122853.fdata /tmp/.tmplOh02c/prof.fdata.122877.fdata /tmp/.tmplOh02c/prof.fdata.122894.fdata /tmp/.tmplOh02c/prof.fdata.122895.fdata /tmp/.tmplOh02c/prof.fdata.122898.fdata /tmp/.tmplOh02c/prof.fdata.122923.fdata /tmp/.tmplOh02c/prof.fdata.122934.fdata /tmp/.tmplOh02c/prof.fdata.122943.fdata /tmp/.tmplOh02c/prof.fdata.122955.fdata /tmp/.tmplOh02c/prof.fdata.122969.fdata /tmp/.tmplOh02c/prof.fdata.122970.fdata /tmp/.tmplOh02c/prof.fdata.122971.fdata /tmp/.tmplOh02c/prof.fdata.122974.fdata /tmp/.tmplOh02c/prof.fdata.122985.fdata /tmp/.tmplOh02c/prof.fdata.122989.fdata /tmp/.tmplOh02c/prof.fdata.122995.fdata /tmp/.tmplOh02c/prof.fdata.122998.fdata /tmp/.tmplOh02c/prof.fdata.123009.fdata /tmp/.tmplOh02c/prof.fdata.123010.fdata /tmp/.tmplOh02c/prof.fdata.123018.fdata /tmp/.tmplOh02c/prof.fdata.123021.fdata /tmp/.tmplOh02c/prof.fdata.123026.fdata /tmp/.tmplOh02c/prof.fdata.123027.fdata /tmp/.tmplOh02c/prof.fdata.123035.fdata /tmp/.tmplOh02c/prof.fdata.123037.fdata /tmp/.tmplOh02c/prof.fdata.123054.fdata /tmp/.tmplOh02c/prof.fdata.123078.fdata /tmp/.tmplOh02c/prof.fdata.123079.fdata /tmp/.tmplOh02c/prof.fdata.123088.fdata /tmp/.tmplOh02c/prof.fdata.123093.fdata /tmp/.tmplOh02c/prof.fdata.123101.fdata /tmp/.tmplOh02c/prof.fdata.123125.fdata /tmp/.tmplOh02c/prof.fdata.123130.fdata /tmp/.tmplOh02c/prof.fdata.123132.fdata /tmp/.tmplOh02c/prof.fdata.123152.fdata /tmp/.tmplOh02c/prof.fdata.123153.fdata /tmp/.tmplOh02c/prof.fdata.123171.fdata /tmp/.tmplOh02c/prof.fdata.123176.fdata /tmp/.tmplOh02c/prof.fdata.123177.fdata /tmp/.tmplOh02c/prof.fdata.123180.fdata /tmp/.tmplOh02c/prof.fdata.123186.fdata /tmp/.tmplOh02c/prof.fdata.123190.fdata /tmp/.tmplOh02c/prof.fdata.123192.fdata /tmp/.tmplOh02c/prof.fdata.123196.fdata /tmp/.tmplOh02c/prof.fdata.123207.fdata /tmp/.tmplOh02c/prof.fdata.123231.fdata /tmp/.tmplOh02c/prof.fdata.123240.fdata /tmp/.tmplOh02c/prof.fdata.123245.fdata /tmp/.tmplOh02c/prof.fdata.123250.fdata /tmp/.tmplOh02c/prof.fdata.123267.fdata /tmp/.tmplOh02c/prof.fdata.123282.fdata /tmp/.tmplOh02c/prof.fdata.123283.fdata /tmp/.tmplOh02c/prof.fdata.123305.fdata /tmp/.tmplOh02c/prof.fdata.123317.fdata /tmp/.tmplOh02c/prof.fdata.123319.fdata /tmp/.tmplOh02c/prof.fdata.123331.fdata /tmp/.tmplOh02c/prof.fdata.123335.fdata /tmp/.tmplOh02c/prof.fdata.123356.fdata /tmp/.tmplOh02c/prof.fdata.123372.fdata /tmp/.tmplOh02c/prof.fdata.123382.fdata /tmp/.tmplOh02c/prof.fdata.123405.fdata /tmp/.tmplOh02c/prof.fdata.123408.fdata /tmp/.tmplOh02c/prof.fdata.123422.fdata /tmp/.tmplOh02c/prof.fdata.123432.fdata /tmp/.tmplOh02c/prof.fdata.123445.fdata /tmp/.tmplOh02c/prof.fdata.123470.fdata /tmp/.tmplOh02c/prof.fdata.123484.fdata /tmp/.tmplOh02c/prof.fdata.123507.fdata /tmp/.tmplOh02c/prof.fdata.123526.fdata /tmp/.tmplOh02c/prof.fdata.123528.fdata /tmp/.tmplOh02c/prof.fdata.123549.fdata /tmp/.tmplOh02c/prof.fdata.123551.fdata /tmp/.tmplOh02c/prof.fdata.123566.fdata /tmp/.tmplOh02c/prof.fdata.123576.fdata /tmp/.tmplOh02c/prof.fdata.123595.fdata /tmp/.tmplOh02c/prof.fdata.123601.fdata /tmp/.tmplOh02c/prof.fdata.123617.fdata /tmp/.tmplOh02c/prof.fdata.123623.fdata /tmp/.tmplOh02c/prof.fdata.123629.fdata /tmp/.tmplOh02c/prof.fdata.123640.fdata /tmp/.tmplOh02c/prof.fdata.123645.fdata /tmp/.tmplOh02c/prof.fdata.123654.fdata /tmp/.tmplOh02c/prof.fdata.123657.fdata /tmp/.tmplOh02c/prof.fdata.123676.fdata /tmp/.tmplOh02c/prof.fdata.123678.fdata /tmp/.tmplOh02c/prof.fdata.123684.fdata /tmp/.tmplOh02c/prof.fdata.123694.fdata /tmp/.tmplOh02c/prof.fdata.123702.fdata /tmp/.tmplOh02c/prof.fdata.123715.fdata /tmp/.tmplOh02c/prof.fdata.123716.fdata /tmp/.tmplOh02c/prof.fdata.123722.fdata /tmp/.tmplOh02c/prof.fdata.123737.fdata /tmp/.tmplOh02c/prof.fdata.123741.fdata /tmp/.tmplOh02c/prof.fdata.123751.fdata /tmp/.tmplOh02c/prof.fdata.123755.fdata /tmp/.tmplOh02c/prof.fdata.123758.fdata /tmp/.tmplOh02c/prof.fdata.123763.fdata /tmp/.tmplOh02c/prof.fdata.123777.fdata /tmp/.tmplOh02c/prof.fdata.123784.fdata /tmp/.tmplOh02c/prof.fdata.123800.fdata /tmp/.tmplOh02c/prof.fdata.123814.fdata /tmp/.tmplOh02c/prof.fdata.123819.fdata /tmp/.tmplOh02c/prof.fdata.123832.fdata /tmp/.tmplOh02c/prof.fdata.123882.fdata /tmp/.tmplOh02c/prof.fdata.123883.fdata /tmp/.tmplOh02c/prof.fdata.123888.fdata /tmp/.tmplOh02c/prof.fdata.123903.fdata /tmp/.tmplOh02c/prof.fdata.123914.fdata /tmp/.tmplOh02c/prof.fdata.123924.fdata /tmp/.tmplOh02c/prof.fdata.123932.fdata /tmp/.tmplOh02c/prof.fdata.123943.fdata /tmp/.tmplOh02c/prof.fdata.123962.fdata /tmp/.tmplOh02c/prof.fdata.123983.fdata /tmp/.tmplOh02c/prof.fdata.123993.fdata /tmp/.tmplOh02c/prof.fdata.123998.fdata /tmp/.tmplOh02c/prof.fdata.124001.fdata /tmp/.tmplOh02c/prof.fdata.124014.fdata /tmp/.tmplOh02c/prof.fdata.124021.fdata /tmp/.tmplOh02c/prof.fdata.124022.fdata /tmp/.tmplOh02c/prof.fdata.124048.fdata /tmp/.tmplOh02c/prof.fdata.124050.fdata /tmp/.tmplOh02c/prof.fdata.124055.fdata /tmp/.tmplOh02c/prof.fdata.124075.fdata /tmp/.tmplOh02c/prof.fdata.124087.fdata /tmp/.tmplOh02c/prof.fdata.124092.fdata /tmp/.tmplOh02c/prof.fdata.124105.fdata /tmp/.tmplOh02c/prof.fdata.124106.fdata /tmp/.tmplOh02c/prof.fdata.124132.fdata /tmp/.tmplOh02c/prof.fdata.124137.fdata /tmp/.tmplOh02c/prof.fdata.124143.fdata /tmp/.tmplOh02c/prof.fdata.124165.fdata /tmp/.tmplOh02c/prof.fdata.124182.fdata /tmp/.tmplOh02c/prof.fdata.124185.fdata /tmp/.tmplOh02c/prof.fdata.124191.fdata /tmp/.tmplOh02c/prof.fdata.124200.fdata /tmp/.tmplOh02c/prof.fdata.124220.fdata /tmp/.tmplOh02c/prof.fdata.124240.fdata /tmp/.tmplOh02c/prof.fdata.124246.fdata /tmp/.tmplOh02c/prof.fdata.124265.fdata /tmp/.tmplOh02c/prof.fdata.124275.fdata /tmp/.tmplOh02c/prof.fdata.124284.fdata /tmp/.tmplOh02c/prof.fdata.124295.fdata /tmp/.tmplOh02c/prof.fdata.124300.fdata /tmp/.tmplOh02c/prof.fdata.124318.fdata /tmp/.tmplOh02c/prof.fdata.124335.fdata /tmp/.tmplOh02c/prof.fdata.124348.fdata /tmp/.tmplOh02c/prof.fdata.124354.fdata /tmp/.tmplOh02c/prof.fdata.124368.fdata /tmp/.tmplOh02c/prof.fdata.124378.fdata /tmp/.tmplOh02c/prof.fdata.124388.fdata /tmp/.tmplOh02c/prof.fdata.124394.fdata /tmp/.tmplOh02c/prof.fdata.124400.fdata /tmp/.tmplOh02c/prof.fdata.124417.fdata /tmp/.tmplOh02c/prof.fdata.124433.fdata /tmp/.tmplOh02c/prof.fdata.124438.fdata /tmp/.tmplOh02c/prof.fdata.124440.fdata /tmp/.tmplOh02c/prof.fdata.124446.fdata /tmp/.tmplOh02c/prof.fdata.124464.fdata /tmp/.tmplOh02c/prof.fdata.124486.fdata /tmp/.tmplOh02c/prof.fdata.124497.fdata /tmp/.tmplOh02c/prof.fdata.124500.fdata /tmp/.tmplOh02c/prof.fdata.124503.fdata /tmp/.tmplOh02c/prof.fdata.124510.fdata /tmp/.tmplOh02c/prof.fdata.124520.fdata /tmp/.tmplOh02c/prof.fdata.124530.fdata /tmp/.tmplOh02c/prof.fdata.124534.fdata /tmp/.tmplOh02c/prof.fdata.124549.fdata /tmp/.tmplOh02c/prof.fdata.124552.fdata /tmp/.tmplOh02c/prof.fdata.124574.fdata /tmp/.tmplOh02c/prof.fdata.124579.fdata /tmp/.tmplOh02c/prof.fdata.124622.fdata /tmp/.tmplOh02c/prof.fdata.124645.fdata /tmp/.tmplOh02c/prof.fdata.124663.fdata /tmp/.tmplOh02c/prof.fdata.124671.fdata /tmp/.tmplOh02c/prof.fdata.124682.fdata /tmp/.tmplOh02c/prof.fdata.124709.fdata /tmp/.tmplOh02c/prof.fdata.124715.fdata /tmp/.tmplOh02c/prof.fdata.124718.fdata /tmp/.tmplOh02c/prof.fdata.124728.fdata /tmp/.tmplOh02c/prof.fdata.124734.fdata /tmp/.tmplOh02c/prof.fdata.124742.fdata /tmp/.tmplOh02c/prof.fdata.124751.fdata /tmp/.tmplOh02c/prof.fdata.124758.fdata /tmp/.tmplOh02c/prof.fdata.124775.fdata /tmp/.tmplOh02c/prof.fdata.124812.fdata /tmp/.tmplOh02c/prof.fdata.124820.fdata /tmp/.tmplOh02c/prof.fdata.124847.fdata /tmp/.tmplOh02c/prof.fdata.124850.fdata /tmp/.tmplOh02c/prof.fdata.124854.fdata /tmp/.tmplOh02c/prof.fdata.124863.fdata /tmp/.tmplOh02c/prof.fdata.124887.fdata /tmp/.tmplOh02c/prof.fdata.124919.fdata /tmp/.tmplOh02c/prof.fdata.124926.fdata /tmp/.tmplOh02c/prof.fdata.124957.fdata /tmp/.tmplOh02c/prof.fdata.124984.fdata /tmp/.tmplOh02c/prof.fdata.124990.fdata /tmp/.tmplOh02c/prof.fdata.125025.fdata /tmp/.tmplOh02c/prof.fdata.125040.fdata /tmp/.tmplOh02c/prof.fdata.125073.fdata /tmp/.tmplOh02c/prof.fdata.125078.fdata /tmp/.tmplOh02c/prof.fdata.125093.fdata /tmp/.tmplOh02c/prof.fdata.125106.fdata /tmp/.tmplOh02c/prof.fdata.125217.fdata /tmp/.tmplOh02c/prof.fdata.125302.fdata /tmp/.tmplOh02c/prof.fdata.125604.fdata /tmp/.tmplOh02c/prof.fdata.125850.fdata /tmp/.tmplOh02c/prof.fdata.126102.fdata /tmp/.tmplOh02c/prof.fdata.126161.fdata /tmp/.tmplOh02c/prof.fdata.126283.fdata /tmp/.tmplOh02c/prof.fdata.126926.fdata /tmp/.tmplOh02c/prof.fdata.126970.fdata /tmp/.tmplOh02c/prof.fdata.127036.fdata /tmp/.tmplOh02c/prof.fdata.127099.fdata /tmp/.tmplOh02c/prof.fdata.127103.fdata /tmp/.tmplOh02c/prof.fdata.127154.fdata /tmp/.tmplOh02c/prof.fdata.127189.fdata /tmp/.tmplOh02c/prof.fdata.127193.fdata /tmp/.tmplOh02c/prof.fdata.127200.fdata /tmp/.tmplOh02c/prof.fdata.127256.fdata /tmp/.tmplOh02c/prof.fdata.127282.fdata /tmp/.tmplOh02c/prof.fdata.127326.fdata /tmp/.tmplOh02c/prof.fdata.127327.fdata /tmp/.tmplOh02c/prof.fdata.127328.fdata /tmp/.tmplOh02c/prof.fdata.127329.fdata /tmp/.tmplOh02c/prof.fdata.127332.fdata /tmp/.tmplOh02c/prof.fdata.127333.fdata /tmp/.tmplOh02c/prof.fdata.127345.fdata /tmp/.tmplOh02c/prof.fdata.127346.fdata /tmp/.tmplOh02c/prof.fdata.127348.fdata /tmp/.tmplOh02c/prof.fdata.127349.fdata /tmp/.tmplOh02c/prof.fdata.127350.fdata /tmp/.tmplOh02c/prof.fdata.127352.fdata /tmp/.tmplOh02c/prof.fdata.127354.fdata /tmp/.tmplOh02c/prof.fdata.127355.fdata /tmp/.tmplOh02c/prof.fdata.127357.fdata /tmp/.tmplOh02c/prof.fdata.127358.fdata /tmp/.tmplOh02c/prof.fdata.127360.fdata /tmp/.tmplOh02c/prof.fdata.127362.fdata /tmp/.tmplOh02c/prof.fdata.127363.fdata /tmp/.tmplOh02c/prof.fdata.127365.fdata /tmp/.tmplOh02c/prof.fdata.127366.fdata /tmp/.tmplOh02c/prof.fdata.127367.fdata /tmp/.tmplOh02c/prof.fdata.127494.fdata /tmp/.tmplOh02c/prof.fdata.127497.fdata /tmp/.tmplOh02c/prof.fdata.127500.fdata /tmp/.tmplOh02c/prof.fdata.127503.fdata /tmp/.tmplOh02c/prof.fdata.127508.fdata /tmp/.tmplOh02c/prof.fdata.127519.fdata /tmp/.tmplOh02c/prof.fdata.127522.fdata /tmp/.tmplOh02c/prof.fdata.127526.fdata /tmp/.tmplOh02c/prof.fdata.127536.fdata /tmp/.tmplOh02c/prof.fdata.127544.fdata /tmp/.tmplOh02c/prof.fdata.127557.fdata /tmp/.tmplOh02c/prof.fdata.127580.fdata /tmp/.tmplOh02c/prof.fdata.127590.fdata /tmp/.tmplOh02c/prof.fdata.127595.fdata /tmp/.tmplOh02c/prof.fdata.127614.fdata /tmp/.tmplOh02c/prof.fdata.127640.fdata /tmp/.tmplOh02c/prof.fdata.127684.fdata /tmp/.tmplOh02c/prof.fdata.127685.fdata /tmp/.tmplOh02c/prof.fdata.127686.fdata /tmp/.tmplOh02c/prof.fdata.127687.fdata /tmp/.tmplOh02c/prof.fdata.127690.fdata /tmp/.tmplOh02c/prof.fdata.127691.fdata /tmp/.tmplOh02c/prof.fdata.127701.fdata /tmp/.tmplOh02c/prof.fdata.127703.fdata /tmp/.tmplOh02c/prof.fdata.127704.fdata /tmp/.tmplOh02c/prof.fdata.127706.fdata /tmp/.tmplOh02c/prof.fdata.127708.fdata /tmp/.tmplOh02c/prof.fdata.127709.fdata /tmp/.tmplOh02c/prof.fdata.127711.fdata /tmp/.tmplOh02c/prof.fdata.127712.fdata /tmp/.tmplOh02c/prof.fdata.127713.fdata /tmp/.tmplOh02c/prof.fdata.127714.fdata /tmp/.tmplOh02c/prof.fdata.127717.fdata /tmp/.tmplOh02c/prof.fdata.127719.fdata /tmp/.tmplOh02c/prof.fdata.127721.fdata /tmp/.tmplOh02c/prof.fdata.127722.fdata /tmp/.tmplOh02c/prof.fdata.127724.fdata /tmp/.tmplOh02c/prof.fdata.127726.fdata /tmp/.tmplOh02c/prof.fdata.127728.fdata /tmp/.tmplOh02c/prof.fdata.127729.fdata /tmp/.tmplOh02c/prof.fdata.127844.fdata /tmp/.tmplOh02c/prof.fdata.127847.fdata /tmp/.tmplOh02c/prof.fdata.127848.fdata /tmp/.tmplOh02c/prof.fdata.127853.fdata /tmp/.tmplOh02c/prof.fdata.127863.fdata /tmp/.tmplOh02c/prof.fdata.127874.fdata /tmp/.tmplOh02c/prof.fdata.127881.fdata /tmp/.tmplOh02c/prof.fdata.127893.fdata /tmp/.tmplOh02c/prof.fdata.127901.fdata /tmp/.tmplOh02c/prof.fdata.127902.fdata /tmp/.tmplOh02c/prof.fdata.127909.fdata /tmp/.tmplOh02c/prof.fdata.127913.fdata /tmp/.tmplOh02c/prof.fdata.127927.fdata /tmp/.tmplOh02c/prof.fdata.127935.fdata /tmp/.tmplOh02c/prof.fdata.127941.fdata /tmp/.tmplOh02c/prof.fdata.127943.fdata /tmp/.tmplOh02c/prof.fdata.127949.fdata /tmp/.tmplOh02c/prof.fdata.127953.fdata /tmp/.tmplOh02c/prof.fdata.127954.fdata /tmp/.tmplOh02c/prof.fdata.127958.fdata /tmp/.tmplOh02c/prof.fdata.127961.fdata /tmp/.tmplOh02c/prof.fdata.127965.fdata /tmp/.tmplOh02c/prof.fdata.127967.fdata /tmp/.tmplOh02c/prof.fdata.127973.fdata /tmp/.tmplOh02c/prof.fdata.127990.fdata /tmp/.tmplOh02c/prof.fdata.127996.fdata /tmp/.tmplOh02c/prof.fdata.128000.fdata /tmp/.tmplOh02c/prof.fdata.128001.fdata /tmp/.tmplOh02c/prof.fdata.128019.fdata /tmp/.tmplOh02c/prof.fdata.128040.fdata /tmp/.tmplOh02c/prof.fdata.128047.fdata /tmp/.tmplOh02c/prof.fdata.128049.fdata /tmp/.tmplOh02c/prof.fdata.128074.fdata /tmp/.tmplOh02c/prof.fdata.128082.fdata /tmp/.tmplOh02c/prof.fdata.128097.fdata /tmp/.tmplOh02c/prof.fdata.128100.fdata /tmp/.tmplOh02c/prof.fdata.128108.fdata /tmp/.tmplOh02c/prof.fdata.128112.fdata /tmp/.tmplOh02c/prof.fdata.128118.fdata /tmp/.tmplOh02c/prof.fdata.128136.fdata /tmp/.tmplOh02c/prof.fdata.128146.fdata /tmp/.tmplOh02c/prof.fdata.128147.fdata /tmp/.tmplOh02c/prof.fdata.128155.fdata /tmp/.tmplOh02c/prof.fdata.128166.fdata /tmp/.tmplOh02c/prof.fdata.128180.fdata /tmp/.tmplOh02c/prof.fdata.128186.fdata /tmp/.tmplOh02c/prof.fdata.128187.fdata /tmp/.tmplOh02c/prof.fdata.128194.fdata /tmp/.tmplOh02c/prof.fdata.128200.fdata /tmp/.tmplOh02c/prof.fdata.128207.fdata /tmp/.tmplOh02c/prof.fdata.128214.fdata /tmp/.tmplOh02c/prof.fdata.128217.fdata /tmp/.tmplOh02c/prof.fdata.128226.fdata /tmp/.tmplOh02c/prof.fdata.128234.fdata /tmp/.tmplOh02c/prof.fdata.128238.fdata /tmp/.tmplOh02c/prof.fdata.128240.fdata /tmp/.tmplOh02c/prof.fdata.128242.fdata /tmp/.tmplOh02c/prof.fdata.128249.fdata /tmp/.tmplOh02c/prof.fdata.128252.fdata /tmp/.tmplOh02c/prof.fdata.128267.fdata /tmp/.tmplOh02c/prof.fdata.128268.fdata /tmp/.tmplOh02c/prof.fdata.128280.fdata /tmp/.tmplOh02c/prof.fdata.128281.fdata /tmp/.tmplOh02c/prof.fdata.128286.fdata /tmp/.tmplOh02c/prof.fdata.128293.fdata /tmp/.tmplOh02c/prof.fdata.128308.fdata /tmp/.tmplOh02c/prof.fdata.128311.fdata /tmp/.tmplOh02c/prof.fdata.128327.fdata /tmp/.tmplOh02c/prof.fdata.128337.fdata /tmp/.tmplOh02c/prof.fdata.128338.fdata /tmp/.tmplOh02c/prof.fdata.128354.fdata /tmp/.tmplOh02c/prof.fdata.128358.fdata /tmp/.tmplOh02c/prof.fdata.128370.fdata /tmp/.tmplOh02c/prof.fdata.128374.fdata /tmp/.tmplOh02c/prof.fdata.128416.fdata /tmp/.tmplOh02c/prof.fdata.128417.fdata /tmp/.tmplOh02c/prof.fdata.128456.fdata /tmp/.tmplOh02c/prof.fdata.128457.fdata /tmp/.tmplOh02c/prof.fdata.128495.fdata /tmp/.tmplOh02c/prof.fdata.128498.fdata /tmp/.tmplOh02c/prof.fdata.128504.fdata /tmp/.tmplOh02c/prof.fdata.128507.fdata /tmp/.tmplOh02c/prof.fdata.128513.fdata /tmp/.tmplOh02c/prof.fdata.128525.fdata /tmp/.tmplOh02c/prof.fdata.128541.fdata /tmp/.tmplOh02c/prof.fdata.128547.fdata /tmp/.tmplOh02c/prof.fdata.128583.fdata /tmp/.tmplOh02c/prof.fdata.128609.fdata /tmp/.tmplOh02c/prof.fdata.128622.fdata /tmp/.tmplOh02c/prof.fdata.128623.fdata /tmp/.tmplOh02c/prof.fdata.128624.fdata /tmp/.tmplOh02c/prof.fdata.128625.fdata /tmp/.tmplOh02c/prof.fdata.128628.fdata /tmp/.tmplOh02c/prof.fdata.128629.fdata /tmp/.tmplOh02c/prof.fdata.128636.fdata /tmp/.tmplOh02c/prof.fdata.128637.fdata /tmp/.tmplOh02c/prof.fdata.128638.fdata /tmp/.tmplOh02c/prof.fdata.128639.fdata /tmp/.tmplOh02c/prof.fdata.128661.fdata /tmp/.tmplOh02c/prof.fdata.128665.fdata /tmp/.tmplOh02c/prof.fdata.128688.fdata /tmp/.tmplOh02c/prof.fdata.128692.fdata /tmp/.tmplOh02c/prof.fdata.128788.fdata /tmp/.tmplOh02c/prof.fdata.128814.fdata /tmp/.tmplOh02c/prof.fdata.128858.fdata /tmp/.tmplOh02c/prof.fdata.128859.fdata /tmp/.tmplOh02c/prof.fdata.128860.fdata /tmp/.tmplOh02c/prof.fdata.128861.fdata /tmp/.tmplOh02c/prof.fdata.128864.fdata /tmp/.tmplOh02c/prof.fdata.128865.fdata /tmp/.tmplOh02c/prof.fdata.128875.fdata /tmp/.tmplOh02c/prof.fdata.128877.fdata /tmp/.tmplOh02c/prof.fdata.128878.fdata /tmp/.tmplOh02c/prof.fdata.128879.fdata /tmp/.tmplOh02c/prof.fdata.128880.fdata /tmp/.tmplOh02c/prof.fdata.128881.fdata /tmp/.tmplOh02c/prof.fdata.128883.fdata /tmp/.tmplOh02c/prof.fdata.128884.fdata /tmp/.tmplOh02c/prof.fdata.128887.fdata /tmp/.tmplOh02c/prof.fdata.128891.fdata /tmp/.tmplOh02c/prof.fdata.128892.fdata /tmp/.tmplOh02c/prof.fdata.128893.fdata /tmp/.tmplOh02c/prof.fdata.128895.fdata /tmp/.tmplOh02c/prof.fdata.128896.fdata /tmp/.tmplOh02c/prof.fdata.128899.fdata /tmp/.tmplOh02c/prof.fdata.128901.fdata /tmp/.tmplOh02c/prof.fdata.128902.fdata /tmp/.tmplOh02c/prof.fdata.128903.fdata /tmp/.tmplOh02c/prof.fdata.129012.fdata /tmp/.tmplOh02c/prof.fdata.129014.fdata /tmp/.tmplOh02c/prof.fdata.129024.fdata /tmp/.tmplOh02c/prof.fdata.129033.fdata /tmp/.tmplOh02c/prof.fdata.129038.fdata /tmp/.tmplOh02c/prof.fdata.129044.fdata /tmp/.tmplOh02c/prof.fdata.129052.fdata /tmp/.tmplOh02c/prof.fdata.129061.fdata /tmp/.tmplOh02c/prof.fdata.129064.fdata /tmp/.tmplOh02c/prof.fdata.129068.fdata /tmp/.tmplOh02c/prof.fdata.129071.fdata /tmp/.tmplOh02c/prof.fdata.129073.fdata /tmp/.tmplOh02c/prof.fdata.129079.fdata /tmp/.tmplOh02c/prof.fdata.129088.fdata /tmp/.tmplOh02c/prof.fdata.129096.fdata /tmp/.tmplOh02c/prof.fdata.129100.fdata /tmp/.tmplOh02c/prof.fdata.129105.fdata /tmp/.tmplOh02c/prof.fdata.129107.fdata /tmp/.tmplOh02c/prof.fdata.129108.fdata /tmp/.tmplOh02c/prof.fdata.129116.fdata /tmp/.tmplOh02c/prof.fdata.129120.fdata /tmp/.tmplOh02c/prof.fdata.129125.fdata /tmp/.tmplOh02c/prof.fdata.129131.fdata /tmp/.tmplOh02c/prof.fdata.129133.fdata /tmp/.tmplOh02c/prof.fdata.129142.fdata /tmp/.tmplOh02c/prof.fdata.129150.fdata /tmp/.tmplOh02c/prof.fdata.129161.fdata /tmp/.tmplOh02c/prof.fdata.129164.fdata /tmp/.tmplOh02c/prof.fdata.129178.fdata /tmp/.tmplOh02c/prof.fdata.129202.fdata /tmp/.tmplOh02c/prof.fdata.129209.fdata /tmp/.tmplOh02c/prof.fdata.129218.fdata /tmp/.tmplOh02c/prof.fdata.129229.fdata /tmp/.tmplOh02c/prof.fdata.129245.fdata /tmp/.tmplOh02c/prof.fdata.129250.fdata /tmp/.tmplOh02c/prof.fdata.129257.fdata /tmp/.tmplOh02c/prof.fdata.129265.fdata /tmp/.tmplOh02c/prof.fdata.129282.fdata /tmp/.tmplOh02c/prof.fdata.129288.fdata /tmp/.tmplOh02c/prof.fdata.129293.fdata /tmp/.tmplOh02c/prof.fdata.129312.fdata /tmp/.tmplOh02c/prof.fdata.129313.fdata /tmp/.tmplOh02c/prof.fdata.129319.fdata /tmp/.tmplOh02c/prof.fdata.129321.fdata /tmp/.tmplOh02c/prof.fdata.129328.fdata /tmp/.tmplOh02c/prof.fdata.129353.fdata /tmp/.tmplOh02c/prof.fdata.129382.fdata /tmp/.tmplOh02c/prof.fdata.129413.fdata /tmp/.tmplOh02c/prof.fdata.129424.fdata /tmp/.tmplOh02c/prof.fdata.129450.fdata /tmp/.tmplOh02c/prof.fdata.129467.fdata /tmp/.tmplOh02c/prof.fdata.129476.fdata /tmp/.tmplOh02c/prof.fdata.129486.fdata /tmp/.tmplOh02c/prof.fdata.129497.fdata /tmp/.tmplOh02c/prof.fdata.129504.fdata /tmp/.tmplOh02c/prof.fdata.129510.fdata /tmp/.tmplOh02c/prof.fdata.129518.fdata /tmp/.tmplOh02c/prof.fdata.129519.fdata /tmp/.tmplOh02c/prof.fdata.129523.fdata /tmp/.tmplOh02c/prof.fdata.129527.fdata /tmp/.tmplOh02c/prof.fdata.129550.fdata /tmp/.tmplOh02c/prof.fdata.129554.fdata /tmp/.tmplOh02c/prof.fdata.129557.fdata /tmp/.tmplOh02c/prof.fdata.129563.fdata /tmp/.tmplOh02c/prof.fdata.129575.fdata /tmp/.tmplOh02c/prof.fdata.129581.fdata /tmp/.tmplOh02c/prof.fdata.129582.fdata /tmp/.tmplOh02c/prof.fdata.129590.fdata /tmp/.tmplOh02c/prof.fdata.129607.fdata /tmp/.tmplOh02c/prof.fdata.129615.fdata /tmp/.tmplOh02c/prof.fdata.129629.fdata /tmp/.tmplOh02c/prof.fdata.129638.fdata /tmp/.tmplOh02c/prof.fdata.129643.fdata /tmp/.tmplOh02c/prof.fdata.129645.fdata /tmp/.tmplOh02c/prof.fdata.129650.fdata /tmp/.tmplOh02c/prof.fdata.129660.fdata /tmp/.tmplOh02c/prof.fdata.129665.fdata /tmp/.tmplOh02c/prof.fdata.129670.fdata /tmp/.tmplOh02c/prof.fdata.129673.fdata /tmp/.tmplOh02c/prof.fdata.129680.fdata /tmp/.tmplOh02c/prof.fdata.129686.fdata /tmp/.tmplOh02c/prof.fdata.129695.fdata /tmp/.tmplOh02c/prof.fdata.129698.fdata /tmp/.tmplOh02c/prof.fdata.129704.fdata /tmp/.tmplOh02c/prof.fdata.129724.fdata /tmp/.tmplOh02c/prof.fdata.129730.fdata /tmp/.tmplOh02c/prof.fdata.129751.fdata /tmp/.tmplOh02c/prof.fdata.129755.fdata /tmp/.tmplOh02c/prof.fdata.129762.fdata /tmp/.tmplOh02c/prof.fdata.129771.fdata /tmp/.tmplOh02c/prof.fdata.129794.fdata /tmp/.tmplOh02c/prof.fdata.129805.fdata /tmp/.tmplOh02c/prof.fdata.129806.fdata /tmp/.tmplOh02c/prof.fdata.129831.fdata /tmp/.tmplOh02c/prof.fdata.129847.fdata /tmp/.tmplOh02c/prof.fdata.129884.fdata /tmp/.tmplOh02c/prof.fdata.129888.fdata /tmp/.tmplOh02c/prof.fdata.129898.fdata /tmp/.tmplOh02c/prof.fdata.129911.fdata /tmp/.tmplOh02c/prof.fdata.129923.fdata /tmp/.tmplOh02c/prof.fdata.129927.fdata /tmp/.tmplOh02c/prof.fdata.129941.fdata /tmp/.tmplOh02c/prof.fdata.129947.fdata /tmp/.tmplOh02c/prof.fdata.129958.fdata /tmp/.tmplOh02c/prof.fdata.129977.fdata /tmp/.tmplOh02c/prof.fdata.129979.fdata /tmp/.tmplOh02c/prof.fdata.129991.fdata /tmp/.tmplOh02c/prof.fdata.130001.fdata /tmp/.tmplOh02c/prof.fdata.130009.fdata /tmp/.tmplOh02c/prof.fdata.130018.fdata /tmp/.tmplOh02c/prof.fdata.130021.fdata /tmp/.tmplOh02c/prof.fdata.130038.fdata /tmp/.tmplOh02c/prof.fdata.130046.fdata /tmp/.tmplOh02c/prof.fdata.130117.fdata /tmp/.tmplOh02c/prof.fdata.130129.fdata /tmp/.tmplOh02c/prof.fdata.130206.fdata /tmp/.tmplOh02c/prof.fdata.130251.fdata /tmp/.tmplOh02c/prof.fdata.130259.fdata /tmp/.tmplOh02c/prof.fdata.130299.fdata /tmp/.tmplOh02c/prof.fdata.130307.fdata /tmp/.tmplOh02c/prof.fdata.130364.fdata /tmp/.tmplOh02c/prof.fdata.130369.fdata /tmp/.tmplOh02c/prof.fdata.130384.fdata /tmp/.tmplOh02c/prof.fdata.130423.fdata /tmp/.tmplOh02c/prof.fdata.130457.fdata /tmp/.tmplOh02c/prof.fdata.130500.fdata /tmp/.tmplOh02c/prof.fdata.130501.fdata /tmp/.tmplOh02c/prof.fdata.130503.fdata /tmp/.tmplOh02c/prof.fdata.130511.fdata /tmp/.tmplOh02c/prof.fdata.130513.fdata /tmp/.tmplOh02c/prof.fdata.130514.fdata /tmp/.tmplOh02c/prof.fdata.130515.fdata /tmp/.tmplOh02c/prof.fdata.130516.fdata /tmp/.tmplOh02c/prof.fdata.130517.fdata /tmp/.tmplOh02c/prof.fdata.130519.fdata /tmp/.tmplOh02c/prof.fdata.130521.fdata /tmp/.tmplOh02c/prof.fdata.130525.fdata /tmp/.tmplOh02c/prof.fdata.130527.fdata /tmp/.tmplOh02c/prof.fdata.130528.fdata /tmp/.tmplOh02c/prof.fdata.130530.fdata /tmp/.tmplOh02c/prof.fdata.130532.fdata /tmp/.tmplOh02c/prof.fdata.130533.fdata /tmp/.tmplOh02c/prof.fdata.130535.fdata /tmp/.tmplOh02c/prof.fdata.130536.fdata /tmp/.tmplOh02c/prof.fdata.130538.fdata /tmp/.tmplOh02c/prof.fdata.130643.fdata /tmp/.tmplOh02c/prof.fdata.130648.fdata /tmp/.tmplOh02c/prof.fdata.130656.fdata /tmp/.tmplOh02c/prof.fdata.130657.fdata /tmp/.tmplOh02c/prof.fdata.130663.fdata /tmp/.tmplOh02c/prof.fdata.130674.fdata /tmp/.tmplOh02c/prof.fdata.130681.fdata /tmp/.tmplOh02c/prof.fdata.130684.fdata /tmp/.tmplOh02c/prof.fdata.130687.fdata /tmp/.tmplOh02c/prof.fdata.130689.fdata /tmp/.tmplOh02c/prof.fdata.130693.fdata /tmp/.tmplOh02c/prof.fdata.130700.fdata /tmp/.tmplOh02c/prof.fdata.130701.fdata /tmp/.tmplOh02c/prof.fdata.130702.fdata /tmp/.tmplOh02c/prof.fdata.130710.fdata /tmp/.tmplOh02c/prof.fdata.130720.fdata /tmp/.tmplOh02c/prof.fdata.130725.fdata /tmp/.tmplOh02c/prof.fdata.130729.fdata /tmp/.tmplOh02c/prof.fdata.130734.fdata /tmp/.tmplOh02c/prof.fdata.130736.fdata /tmp/.tmplOh02c/prof.fdata.130739.fdata /tmp/.tmplOh02c/prof.fdata.130746.fdata /tmp/.tmplOh02c/prof.fdata.130751.fdata /tmp/.tmplOh02c/prof.fdata.130761.fdata /tmp/.tmplOh02c/prof.fdata.130763.fdata /tmp/.tmplOh02c/prof.fdata.130767.fdata /tmp/.tmplOh02c/prof.fdata.130780.fdata /tmp/.tmplOh02c/prof.fdata.130783.fdata /tmp/.tmplOh02c/prof.fdata.130786.fdata /tmp/.tmplOh02c/prof.fdata.130811.fdata /tmp/.tmplOh02c/prof.fdata.130818.fdata /tmp/.tmplOh02c/prof.fdata.130823.fdata /tmp/.tmplOh02c/prof.fdata.130828.fdata /tmp/.tmplOh02c/prof.fdata.130829.fdata /tmp/.tmplOh02c/prof.fdata.130839.fdata /tmp/.tmplOh02c/prof.fdata.130844.fdata /tmp/.tmplOh02c/prof.fdata.130857.fdata /tmp/.tmplOh02c/prof.fdata.130862.fdata /tmp/.tmplOh02c/prof.fdata.130865.fdata /tmp/.tmplOh02c/prof.fdata.130871.fdata /tmp/.tmplOh02c/prof.fdata.130874.fdata /tmp/.tmplOh02c/prof.fdata.130879.fdata /tmp/.tmplOh02c/prof.fdata.130887.fdata /tmp/.tmplOh02c/prof.fdata.130907.fdata /tmp/.tmplOh02c/prof.fdata.130909.fdata /tmp/.tmplOh02c/prof.fdata.130910.fdata /tmp/.tmplOh02c/prof.fdata.130913.fdata /tmp/.tmplOh02c/prof.fdata.130919.fdata /tmp/.tmplOh02c/prof.fdata.130922.fdata /tmp/.tmplOh02c/prof.fdata.130959.fdata /tmp/.tmplOh02c/prof.fdata.130964.fdata /tmp/.tmplOh02c/prof.fdata.130976.fdata /tmp/.tmplOh02c/prof.fdata.130981.fdata /tmp/.tmplOh02c/prof.fdata.131020.fdata /tmp/.tmplOh02c/prof.fdata.131025.fdata /tmp/.tmplOh02c/prof.fdata.131030.fdata /tmp/.tmplOh02c/prof.fdata.131037.fdata /tmp/.tmplOh02c/prof.fdata.131056.fdata /tmp/.tmplOh02c/prof.fdata.131073.fdata /tmp/.tmplOh02c/prof.fdata.131074.fdata /tmp/.tmplOh02c/prof.fdata.131075.fdata /tmp/.tmplOh02c/prof.fdata.131076.fdata /tmp/.tmplOh02c/prof.fdata.131079.fdata /tmp/.tmplOh02c/prof.fdata.131080.fdata /tmp/.tmplOh02c/prof.fdata.131085.fdata /tmp/.tmplOh02c/prof.fdata.131086.fdata /tmp/.tmplOh02c/prof.fdata.131103.fdata /tmp/.tmplOh02c/prof.fdata.131106.fdata /tmp/.tmplOh02c/prof.fdata.131120.fdata /tmp/.tmplOh02c/prof.fdata.131134.fdata /tmp/.tmplOh02c/prof.fdata.131148.fdata /tmp/.tmplOh02c/prof.fdata.131149.fdata /tmp/.tmplOh02c/prof.fdata.131150.fdata /tmp/.tmplOh02c/prof.fdata.131151.fdata /tmp/.tmplOh02c/prof.fdata.131154.fdata /tmp/.tmplOh02c/prof.fdata.131155.fdata /tmp/.tmplOh02c/prof.fdata.131164.fdata /tmp/.tmplOh02c/prof.fdata.131165.fdata /tmp/.tmplOh02c/prof.fdata.131166.fdata /tmp/.tmplOh02c/prof.fdata.131167.fdata /tmp/.tmplOh02c/prof.fdata.131168.fdata /tmp/.tmplOh02c/prof.fdata.131169.fdata /tmp/.tmplOh02c/prof.fdata.131219.fdata /tmp/.tmplOh02c/prof.fdata.131220.fdata /tmp/.tmplOh02c/prof.fdata.131223.fdata /tmp/.tmplOh02c/prof.fdata.131226.fdata /tmp/.tmplOh02c/prof.fdata.131228.fdata /tmp/.tmplOh02c/prof.fdata.131231.fdata /tmp/.tmplOh02c/prof.fdata.131234.fdata /tmp/.tmplOh02c/prof.fdata.131238.fdata /tmp/.tmplOh02c/prof.fdata.131295.fdata /tmp/.tmplOh02c/prof.fdata.131324.fdata > "/tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata" [at /checkout/obj]`
Profile from 735 files merged.
[2024-02-16T20:59:49.111Z INFO  opt_dist::training] LLVM BOLT statistics
[2024-02-16T20:59:49.111Z INFO  opt_dist::training] /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata: 147.80 MiB
##[endgroup]
---
Preparing bitmaps-3.1.0
[2024-02-16T21:01:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:01:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T21:01:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T21:01:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpUqnlJb" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpUqnlJb#bitmaps@3.1.0" "--release" "--" "--skip-this-rustc"
[2024-02-16T21:01:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpYeZMHK" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYeZMHK#bitmaps@3.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-02-16T21:01:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpEVABup" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpEVABup#bitmaps@3.1.0" "--" "--skip-this-rustc"
[2024-02-16T21:01:09Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:01:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T21:01:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpn2u7lq" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpn2u7lq#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:01:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:01:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpn2u7lq" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpn2u7lq#bitmaps@3.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpn2u7lq/incremental-state"
Running bitmaps-3.1.0: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T21:01:17Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:01:17Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:01:17Z DEBUG collector::compile::execute] cd "/tmp/.tmpliXzFl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpliXzFl#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:01:19Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:01:19Z DEBUG collector::compile::execute] cd "/tmp/.tmpliXzFl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpliXzFl#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpliXzFl/incremental-state"
[2024-02-16T21:01:22Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:01:22Z DEBUG collector::compile::execute] cd "/tmp/.tmpliXzFl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpliXzFl#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpliXzFl/incremental-state"
[2024-02-16T21:01:23Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpliXzFl"
[2024-02-16T21:01:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:01:23Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:01:23Z DEBUG collector::compile::execute] cd "/tmp/.tmpliXzFl" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpliXzFl#bitmaps@3.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpliXzFl/incremental-state"
[2024-02-16T21:01:25Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:01:25Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:01:26Z DEBUG collector::compile::execute] cd "/tmp/.tmpfCzkov" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpfCzkov#bitmaps@3.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:01:28Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:04:26Z DEBUG collector::compile::execute] cd "/tmp/.tmplFnD0C" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmplFnD0C#cargo@0.60.0" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmplFnD0C/incremental-state"
Running cargo-0.60.0: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T21:04:33Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:04:33Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:04:33Z DEBUG collector::compile::execute] cd "/tmp/.tmpWYiKhU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWYiKhU#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:05:02Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T21:05:02Z DEBUG collector::compile::execute] cd "/tmp/.tmpWYiKhU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWYiKhU#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWYiKhU/incremental-state"
[2024-02-16T21:05:29Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:05:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpWYiKhU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWYiKhU#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWYiKhU/incremental-state"
[2024-02-16T21:05:34Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpWYiKhU"
[2024-02-16T21:05:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:05:34Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:05:34Z DEBUG collector::compile::execute] cd "/tmp/.tmpWYiKhU" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpWYiKhU#cargo@0.60.0" "--release" "--lib" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpWYiKhU/incremental-state"
Executing benchmark ctfe-stress-5 (3/8)
Preparing ctfe-stress-5
[2024-02-16T21:05:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:05:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
---
[2024-02-16T21:05:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:05:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T21:05:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpRshYVW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpRshYVW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:05:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T21:05:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpRshYVW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpRshYVW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpRshYVW/incremental-state"
[2024-02-16T21:05:54Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:05:54Z DEBUG collector::compile::execute] cd "/tmp/.tmpRshYVW" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpRshYVW#ctfe-stress-5@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpRshYVW/incremental-state"
[2024-02-16T21:05:55Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:05:55Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:05:55Z DEBUG collector::compile::execute] cd "/tmp/.tmpOwHAwi" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOwHAwi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:06:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:06:00Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:06:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpOwHAwi" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOwHAwi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOwHAwi/incremental-state"
[2024-02-16T21:06:05Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:06:05Z DEBUG collector::compile::execute] cd "/tmp/.tmpOwHAwi" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOwHAwi#ctfe-stress-5@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOwHAwi/incremental-state"
[2024-02-16T21:06:06Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:06:06Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:06:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpspiJFS" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpspiJFS#ctfe-stress-5@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:06:11Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:06:50Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:06:50Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:06:50Z DEBUG collector::compile::execute] cd "/tmp/.tmpYnqCaj" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYnqCaj#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:06:58Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:06:58Z DEBUG collector::compile::execute] cd "/tmp/.tmpYnqCaj" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYnqCaj#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpYnqCaj/incremental-state"
[2024-02-16T21:07:07Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:07:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpYnqCaj" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYnqCaj#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpYnqCaj/incremental-state"
[2024-02-16T21:07:10Z DEBUG collector::compile::benchmark::patch] applying println to "/tmp/.tmpYnqCaj"
[2024-02-16T21:07:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:07:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("println"), path: "0-println.patch" })
[2024-02-16T21:07:10Z DEBUG collector::compile::execute] cd "/tmp/.tmpYnqCaj" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpYnqCaj#diesel@1.4.8" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpYnqCaj/incremental-state"
[2024-02-16T21:07:13Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:13Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:07:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpCqQ1N1" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpCqQ1N1#diesel@1.4.8" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:22Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
Preparing externs
[2024-02-16T21:07:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T21:07:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:07:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T21:07:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpxNFh6u" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpxNFh6u#externs@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-02-16T21:07:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpyYTzXH" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpyYTzXH#externs@0.1.0" "--" "--skip-this-rustc"
[2024-02-16T21:07:38Z DEBUG collector::compile::execute] cd "/tmp/.tmp0FBiKz" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp0FBiKz#externs@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
[2024-02-16T21:07:38Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:38Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T21:07:38Z DEBUG collector::compile::execute] cd "/tmp/.tmpedpIje" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpedpIje#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T21:07:39Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T21:07:39Z DEBUG collector::compile::execute] cd "/tmp/.tmpedpIje" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpedpIje#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpedpIje/incremental-state"
[2024-02-16T21:07:40Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:07:40Z DEBUG collector::compile::execute] cd "/tmp/.tmpedpIje" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpedpIje#externs@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpedpIje/incremental-state"
[2024-02-16T21:07:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:07:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpggcVzo" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpggcVzo#externs@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:42Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:07:44Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:44Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:07:44Z DEBUG collector::compile::execute] cd "/tmp/.tmpTZMcjJ" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTZMcjJ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:45Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T21:07:45Z DEBUG collector::compile::execute] cd "/tmp/.tmpTZMcjJ" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTZMcjJ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTZMcjJ/incremental-state"
[2024-02-16T21:07:46Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:07:46Z DEBUG collector::compile::execute] cd "/tmp/.tmpTZMcjJ" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpTZMcjJ#externs@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpTZMcjJ/incremental-state"
Executing benchmark match-stress (6/8)
Preparing match-stress
[2024-02-16T21:07:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T21:07:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T21:07:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T21:07:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:07:47Z DEBUG collector::compile::execute] cd "/tmp/.tmp5WAcqX" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp5WAcqX#match-stress@0.1.0" "--" "--skip-this-rustc"
[2024-02-16T21:07:47Z DEBUG collector::compile::execute] cd "/tmp/.tmp9AnAs2" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp9AnAs2#match-stress@0.1.0" "--release" "--" "--skip-this-rustc"
[2024-02-16T21:07:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpqTkgG9" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpqTkgG9#match-stress@0.1.0" "--profile" "check" "--" "--skip-this-rustc"
Running match-stress: Check + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T21:07:47Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:47Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T21:07:47Z DEBUG collector::compile::execute] cd "/tmp/.tmpmQjMtI" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmQjMtI#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:49Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
[2024-02-16T21:07:49Z DEBUG collector::compile::execute] cd "/tmp/.tmpmQjMtI" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmQjMtI#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmQjMtI/incremental-state"
[2024-02-16T21:07:52Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:07:52Z DEBUG collector::compile::execute] cd "/tmp/.tmpmQjMtI" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmQjMtI#match-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpmQjMtI/incremental-state"
[2024-02-16T21:07:53Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:07:53Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:07:53Z DEBUG collector::compile::execute] cd "/tmp/.tmpmd20Oy" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpmd20Oy#match-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:07:56Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:08:00Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:00Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:08:00Z DEBUG collector::compile::execute] cd "/tmp/.tmpOTbn1x" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOTbn1x#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:03Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
[2024-02-16T21:08:03Z DEBUG collector::compile::execute] cd "/tmp/.tmpOTbn1x" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOTbn1x#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOTbn1x/incremental-state"
[2024-02-16T21:08:06Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:08:06Z DEBUG collector::compile::execute] cd "/tmp/.tmpOTbn1x" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpOTbn1x#match-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpOTbn1x/incremental-state"
Executing benchmark token-stream-stress (7/8)
Preparing token-stream-stress
[2024-02-16T21:08:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=None, patch=None
[2024-02-16T21:08:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:08:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=None, patch=None
[2024-02-16T21:08:07Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=None, patch=None
[2024-02-16T21:08:07Z DEBUG collector::compile::execute] cd "/tmp/.tmpFzbwQ0" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpFzbwQ0#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T21:08:07Z DEBUG collector::compile::execute] cd "/tmp/.tmphMyhQL" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmphMyhQL#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T21:08:07Z DEBUG collector::compile::execute] cd "/tmp/.tmp7cqC9r" && CARGO_INCREMENTAL="0" CARGO_MAKEFLAGS="-j --jobserver-fds=13,14 --jobserver-auth=13,14" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp7cqC9r#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--skip-this-rustc"
[2024-02-16T21:08:09Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:09Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Check, scenario=Some(Full), patch=None
[2024-02-16T21:08:09Z DEBUG collector::compile::execute] cd "/tmp/.tmpW8gyzq" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpW8gyzq#token-stream-stress@0.0.0" "--profile" "check" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:10Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Check, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:08:12Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:12Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:08:12Z DEBUG collector::compile::execute] cd "/tmp/.tmpKwafbh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKwafbh#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:13Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:08:13Z DEBUG collector::compile::execute] cd "/tmp/.tmpKwafbh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKwafbh#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKwafbh/incremental-state"
[2024-02-16T21:08:14Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:08:14Z DEBUG collector::compile::execute] cd "/tmp/.tmpKwafbh" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpKwafbh#token-stream-stress@0.0.0" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpKwafbh/incremental-state"
[2024-02-16T21:08:15Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:15Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:08:15Z DEBUG collector::compile::execute] cd "/tmp/.tmpsPPluu" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpsPPluu#token-stream-stress@0.0.0" "--release" "--bin" "token-stream-stress-bin" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:16Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
[2024-02-16T21:08:26Z DEBUG collector::compile::execute] cd "/tmp/.tmp0exJXG" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmp0exJXG#tuple-stress@0.1.0" "--profile" "check" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmp0exJXG/incremental-state"
Running tuple-stress: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched]
[2024-02-16T21:08:29Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:29Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Debug, scenario=Some(Full), patch=None
[2024-02-16T21:08:29Z DEBUG collector::compile::execute] cd "/tmp/.tmpVMKeDK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVMKeDK#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:32Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrFull), patch=None
[2024-02-16T21:08:32Z DEBUG collector::compile::execute] cd "/tmp/.tmpVMKeDK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVMKeDK#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVMKeDK/incremental-state"
[2024-02-16T21:08:36Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrUnchanged), patch=None
[2024-02-16T21:08:36Z DEBUG collector::compile::execute] cd "/tmp/.tmpVMKeDK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVMKeDK#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVMKeDK/incremental-state"
[2024-02-16T21:08:37Z DEBUG collector::compile::benchmark::patch] applying new row to "/tmp/.tmpVMKeDK"
[2024-02-16T21:08:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-02-16T21:08:37Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Debug, scenario=Some(IncrPatched), patch=Some(Patch { index: 0, name: PatchName("new row"), path: "0-new-row.patch" })
[2024-02-16T21:08:37Z DEBUG collector::compile::execute] cd "/tmp/.tmpVMKeDK" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpVMKeDK#tuple-stress@0.1.0" "--" "--wrap-rustc-with" "Eprintln" "-C" "incremental=/tmp/.tmpVMKeDK/incremental-state"
[2024-02-16T21:08:41Z DEBUG collector::compile::benchmark] Benchmark iteration 1/1
[2024-02-16T21:08:41Z INFO  collector::compile::execute] run_rustc with incremental=false, profile=Opt, scenario=Some(Full), patch=None
[2024-02-16T21:08:41Z DEBUG collector::compile::execute] cd "/tmp/.tmpNovK6W" && CARGO_INCREMENTAL="0" EXPECT_ONLY_WRAPPED_RUSTC="1" RUSTC="/tmp/tmp-multistage/opt-artifacts/rustc-perf/target/debug/rustc-fake" RUSTC_BOOTSTRAP="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "rustc" "--manifest-path" "Cargo.toml" "-p" "path+file:///tmp/.tmpNovK6W#tuple-stress@0.1.0" "--release" "--" "--wrap-rustc-with" "Eprintln"
[2024-02-16T21:08:44Z INFO  collector::compile::execute] run_rustc with incremental=true, profile=Opt, scenario=Some(IncrFull), patch=None
---
BOLT-INFO: setting __hot_start to 0x4000000
BOLT-INFO: setting __hot_end to 0x5128cd7
[2024-02-16T21:09:30.139Z INFO  opt_dist::timer] Section `Stage 3 (BOLT)` ended: OK (2109.53s)`
[2024-02-16T21:09:30.139Z INFO  opt_dist::timer] Section `Stage 5 (final build)` starts
[2024-02-16T21:09:30.139Z INFO  opt_dist::exec] Executing `RUST_BACKTRACE=full python3 ../x.py dist --host x86_64-unknown-linux-gnu --target x86_64-unknown-linux-gnu --include-default-paths build-manifest bootstrap --skip rust-docs --skip rustc-docs --skip rust-docs-json --skip rust-analyzer --skip rustc-src --skip clippy --skip miri --skip rustfmt --llvm-profile-use /tmp/tmp-multistage/opt-artifacts/llvm-pgo.profdata --rust-profile-use /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata --keep-stage 0 --keep-stage 1 --reproducible-artifact /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata --reproducible-artifact /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata [at /checkout/obj]`
    Finished dev [unoptimized] target(s) in 0.04s
##[endgroup]
Skipping Set({dist::rust-docs}) because it is excluded
Skipping Set({dist::rustc-docs}) because it is excluded
---
   Compiling gix-credentials v0.24.0
error: lifetime may not live long enough
  --> /rust/deps/serde-untagged-0.1.5/src/seed.rs:34:37
   |
27 | impl<'de> DeserializeSeed<'de> for &mut dyn ErasedDeserializeSeed<'de> {
   |      --- lifetime `'de` defined here
...
34 |         let deserializer = Box::new(<dyn erased_serde::Deserializer>::erase(deserializer));
   |                                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'de` must outlive `'static`
[RUSTC-TIMING] gix_features test:false 1.214
   Compiling gix-attributes v0.22.0
[RUSTC-TIMING] serde_untagged test:false 0.238
error: could not compile `serde-untagged` (lib) due to 1 previous error
---
[RUSTC-TIMING] time test:false 6.351
[RUSTC-TIMING] toml_edit test:false 10.921


command did not execute successfully: cd "/checkout" && env -u MAKEFLAGS -u MFLAGS AR_x86_64_unknown_linux_gnu="/rustroot/bin/llvm-ar" CARGO_INCREMENTAL="0" CARGO_PROFILE_RELEASE_CODEGEN_UNITS="1" CARGO_PROFILE_RELEASE_DEBUG="0" CARGO_PROFILE_RELEASE_DEBUG_ASSERTIONS="false" CARGO_PROFILE_RELEASE_OVERFLOW_CHECKS="false" CARGO_PROFILE_RELEASE_STRIP="false" CARGO_TARGET_DIR="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1-tools" CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER="clang" CC_x86_64_unknown_linux_gnu="sccache clang" CFG_COMMIT_DATE="2024-02-09" CFG_COMMIT_HASH="fc1d58fd0531a57a6b942a14cdcdbcb82ece16f3" CFG_COMPILER_BUILD_TRIPLE="x86_64-unknown-linux-gnu" CFG_COMPILER_HOST_TRIPLE="x86_64-unknown-linux-gnu" CFG_RELEASE="1.78.0-nightly" CFG_RELEASE_CHANNEL="nightly" CFG_RELEASE_NUM="1.78.0" CFG_SHORT_COMMIT_HASH="fc1d58fd0" CFG_VERSION="1.78.0-nightly (4795a5a0a 2024-02-16)" CFG_VER_DATE="2024-02-16" CFG_VER_HASH="4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d" CFG_VIRTUAL_RUST_SOURCE_BASE_DIR="/rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d" CFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC --target=x86_64-unknown-linux-gnu -fdebug-prefix-map=/checkout=/rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d" CXXFLAGS_x86_64_unknown_linux_gnu="-ffunction-sections -fdata-sections -fPIC --target=x86_64-unknown-linux-gnu -fdebug-prefix-map=/checkout=/rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d" CXX_x86_64_unknown_linux_gnu="sccache clang++" DOC_RUST_LANG_ORG_CHANNEL="https://doc.rust-lang.org/nightly" LIBC_CHECK_CFG="1" LIBRARY_PATH="/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/lib" LIBZ_SYS_STATIC="1" LZMA_API_STATIC="1" RANLIB_x86_64_unknown_linux_gnu="/rustroot/bin/llvm-ar s" REAL_LIBRARY_PATH="/rustroot/lib64:/rustroot/lib32:/rustroot/lib" REAL_LIBRARY_PATH_VAR="LD_LIBRARY_PATH" RUSTBUILD_NATIVE_DIR="/checkout/obj/build/x86_64-unknown-linux-gnu/native" RUSTC="/checkout/obj/build/bootstrap/debug/rustc" RUSTC_BOOTSTRAP="1" RUSTC_BREAK_ON_ICE="1" RUSTC_CARGO_REGISTRY_SRC_TO_REMAP="/cargo/registry/src/index.crates.io-6f17d22bba15001f=/rust/deps" RUSTC_DEBUGINFO_MAP="/checkout=/rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d" RUSTC_ERROR_METADATA_DST="/checkout/obj/build/tmp/extended-error-metadata" RUSTC_HOST_FLAGS="-Zunstable-options --check-cfg=cfg(bootstrap) -Clink-arg=-fuse-ld=lld -Clinker=clang" RUSTC_INSTALL_BINDIR="bin" RUSTC_LIBDIR="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib" RUSTC_PRINT_STEP_TIMINGS="1" RUSTC_REAL="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" RUSTC_SNAPSHOT="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc" RUSTC_SNAPSHOT_LIBDIR="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/lib" RUSTC_STAGE="1" RUSTC_SYSROOT="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1" RUSTC_TLS_MODEL_INITIAL_EXEC="1" RUSTC_VERBOSE="0" RUSTC_WRAPPER="/checkout/obj/build/bootstrap/debug/rustc" RUSTDOC="/checkout/obj/build/bootstrap/debug/rustdoc" RUSTDOCFLAGS="--cfg=windows_raw_dylib -Csymbol-mangling-version=v0 -Zunstable-options --check-cfg=cfg(bootstrap) --check-cfg=cfg(parallel_compiler) --check-cfg=cfg(rust_analyzer) --check-cfg=cfg(no_btreemap_remove_entry) --check-cfg=cfg(crossbeam_loom) --check-cfg=cfg(span_locations) --check-cfg=cfg(rustix_use_libc) --check-cfg=cfg(emulate_second_only_system) --check-cfg=cfg(windows_raw_dylib) --crate-version 1.78.0-nightly\t(4795a5a0a\t2024-02-16) -Clink-arg=-fuse-ld=lld -Clinker=clang" RUSTDOC_REAL="/path/to/nowhere/rustdoc/not/required" RUSTFLAGS="--cfg=windows_raw_dylib -Csymbol-mangling-version=v0 -Zunstable-options --check-cfg=cfg(bootstrap) --check-cfg=cfg(parallel_compiler) --check-cfg=cfg(rust_analyzer) --check-cfg=cfg(no_btreemap_remove_entry) --check-cfg=cfg(crossbeam_loom) --check-cfg=cfg(span_locations) --check-cfg=cfg(rustix_use_libc) --check-cfg=cfg(emulate_second_only_system) --check-cfg=cfg(windows_raw_dylib) -Zmacro-backtrace -Csplit-debuginfo=off -Clink-args=-Wl,-z,origin -Clink-args=-Wl,-rpath,$ORIGIN/../lib -Clink-arg=-fuse-ld=lld -Zunstable-options" RUST_TEST_THREADS="16" SYSROOT="/checkout/obj/build/x86_64-unknown-linux-gnu/stage1" TERM="xterm" __CARGO_DEFAULT_LIB_METADATA="nightlytool-rustc" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "--release" "-Zcheck-cfg" "-Zbinary-dep-depinfo" "-j" "16" "--locked" "--color" "always" "--manifest-path" "/checkout/src/tools/cargo/Cargo.toml" "--features" "all-static"

Build completed unsuccessfully in 0:03:58
stdout ----

---
[2024-02-16T21:13:28.266Z INFO  opt_dist::utils] Free disk space: 4.97 TiB out of total 5.68 TiB (12.38% used)
Error: Optimized build pipeline has failed

Caused by:
    Command RUST_BACKTRACE=full python3 ../x.py dist --host x86_64-unknown-linux-gnu --target x86_64-unknown-linux-gnu --include-default-paths build-manifest bootstrap --skip rust-docs --skip rustc-docs --skip rust-docs-json --skip rust-analyzer --skip rustc-src --skip clippy --skip miri --skip rustfmt --llvm-profile-use /tmp/tmp-multistage/opt-artifacts/llvm-pgo.profdata --rust-profile-use /tmp/tmp-multistage/opt-artifacts/rustc-pgo.profdata --keep-stage 0 --keep-stage 1 --reproducible-artifact /tmp/tmp-multistage/opt-artifacts/LLVM-bolt.profdata --reproducible-artifact /tmp/tmp-multistage/opt-artifacts/rustc-bolt.profdata [at /checkout/obj] has failed with exit code Some(1)
Stack backtrace:
Stack backtrace:
   0: <anyhow::Error>::msg::<alloc::string::String>
             at /rust/deps/anyhow-1.0.79/src/error.rs:83:36
   1: <opt_dist::exec::CmdBuilder>::run
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/exec.rs:78:17
   2: <opt_dist::exec::Bootstrap>::run
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/exec.rs:179:9
   3: opt_dist::execute_pipeline::{closure#4}
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/main.rs:327:52
   4: <opt_dist::timer::TimerSection>::section::<opt_dist::execute_pipeline::{closure#4}, ()>
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/timer.rs:111:22
   5: opt_dist::execute_pipeline
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/main.rs:327:5
             at /rustc/4795a5a0ac483da65aa9eecf4bbe7a0194ed1c0d/src/tools/opt-dist/src/main.rs:385:18
   7: <fn() -> core::result::Result<(), anyhow::Error> as core::ops::function::FnOnce<()>>::call_once
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/core/src/ops/function.rs:250:5
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/core/src/ops/function.rs:250:5
   8: std::sys_common::backtrace::__rust_begin_short_backtrace::<fn() -> core::result::Result<(), anyhow::Error>, core::result::Result<(), anyhow::Error>>
   9: std::rt::lang_start::<core::result::Result<(), anyhow::Error>>::{closure#0}
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/std/src/rt.rs:166:18
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/std/src/rt.rs:166:18
  10: core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once
  11: std::panicking::try::do_call
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/std/src/panicking.rs:554:40
  12: std::panicking::try
             at /rustc/04ba4521971a83d71477a406b5ce7a479e9d7af8/library/std/src/panicking.rs:518:19

@fmease
Copy link
Member

fmease commented Feb 16, 2024

impl dyn Trait {} has an implicit dyn Trait: 'static bound

I'm not sure if that's actually true in general (*). Just so you know dyn Trait expands to dyn Trait + 'static in this context which may or may not imply dyn Trait/* + 'static */: 'static (I'd need to think harder about this to be able to give a more precise answer).

In any case I think it's the wrong approach to look at implicit outlives bounds. #83246 is strictly about default object lifetimes (which I'm fairly acquainted with by now). So any PR that wants to improve diagnostics for them should look at the trait object lifetime directly instead of any derived outlives bounds.


(*) I'm saying that I don't know if (pseudo syntax):

Γ, 'a0,, T0, … ⊢ dyn for<'h0, …> Trait<P0('a0),, Q0(T0),, R0('h0),> + 'r
'r ∊ {'static, 'a0,, 'h0,}
Pn, Qm, Ro parametrized lifetime/type
-------------------------------------------------------------------------------------
Γ, 'a0,, T0, … ⊢ dyn for<'h0, …> Trait<P0('a0),, Q0(T0),, R0('h0),> + 'r : 'r

So if dyn GenericTraitObjectType + 'r implies dyn GenericTraitObjectType + 'r : 'r. Maybe it does, maybe it doesn't, I'd need to dig into that. My point above still holds though.

@Dylan-DPC Dylan-DPC removed the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Apr 26, 2024
@JohnCSimon
Copy link
Member

@estebank
ping from triage: can you post your status on this PR? This PR has not received an update in a few months.

@bors
Copy link
Contributor

bors commented Oct 10, 2024

☔ The latest upstream changes (presumably #131511) made this pull request unmergeable. Please resolve the merge conflicts.

@estebank estebank closed this Oct 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

10 participants